diff -u linux-azure-5.4.0/Documentation/ABI/testing/sysfs-bus-iio linux-azure-5.4.0/Documentation/ABI/testing/sysfs-bus-iio --- linux-azure-5.4.0/Documentation/ABI/testing/sysfs-bus-iio +++ linux-azure-5.4.0/Documentation/ABI/testing/sysfs-bus-iio @@ -138,7 +138,7 @@ Raw capacitance measurement from channel Y. Units after application of scale and offset are nanofarads. -What: /sys/.../iio:deviceX/in_capacitanceY-in_capacitanceZ_raw +What: /sys/.../iio:deviceX/in_capacitanceY-capacitanceZ_raw KernelVersion: 3.2 Contact: linux-iio@vger.kernel.org Description: diff -u linux-azure-5.4.0/Documentation/ABI/testing/sysfs-devices-system-cpu linux-azure-5.4.0/Documentation/ABI/testing/sysfs-devices-system-cpu --- linux-azure-5.4.0/Documentation/ABI/testing/sysfs-devices-system-cpu +++ linux-azure-5.4.0/Documentation/ABI/testing/sysfs-devices-system-cpu @@ -489,6 +489,7 @@ /sys/devices/system/cpu/vulnerabilities/srbds /sys/devices/system/cpu/vulnerabilities/tsx_async_abort /sys/devices/system/cpu/vulnerabilities/itlb_multihit + /sys/devices/system/cpu/vulnerabilities/mmio_stale_data Date: January 2018 Contact: Linux kernel mailing list Description: Information about CPU vulnerabilities diff -u linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/index.rst linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/index.rst --- linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/index.rst +++ linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/index.rst @@ -17,0 +18 @@ + processor_mmio_stale_data.rst diff -u linux-azure-5.4.0/Documentation/admin-guide/kernel-parameters.txt linux-azure-5.4.0/Documentation/admin-guide/kernel-parameters.txt --- linux-azure-5.4.0/Documentation/admin-guide/kernel-parameters.txt +++ linux-azure-5.4.0/Documentation/admin-guide/kernel-parameters.txt @@ -567,6 +567,12 @@ loops can be debugged more effectively on production systems. + clocksource.max_cswd_read_retries= [KNL] + Number of clocksource_watchdog() retries due to + external delays before the clock will be marked + unstable. Defaults to three retries, that is, + four attempts to read the clock under test. + clearcpuid=BITNUM[,BITNUM...] [X86] Disable CPUID feature X for the kernel. See arch/x86/include/asm/cpufeatures.h for the valid bit @@ -1497,6 +1503,8 @@ architectures force reset to be always executed i8042.unlock [HW] Unlock (ignore) the keylock i8042.kbdreset [HW] Reset device connected to KBD port + i8042.probe_defer + [HW] Allow deferred probing upon i8042 probe errors i810= [HW,DRM] @@ -2122,8 +2130,12 @@ Default is 1 (enabled) kvm-intel.emulate_invalid_guest_state= - [KVM,Intel] Enable emulation of invalid guest states - Default is 0 (disabled) + [KVM,Intel] Disable emulation of invalid guest state. + Ignored if kvm-intel.enable_unrestricted_guest=1, as + guest state is never invalid for unrestricted guests. + This param doesn't apply to nested guests (L2), as KVM + never emulates invalid L2 guest state. + Default is 1 (enabled) kvm-intel.flexpriority= [KVM,Intel] Disable FlexPriority feature (TPR shadow). @@ -2685,6 +2697,7 @@ kvm.nx_huge_pages=off [X86] no_entry_flush [PPC] no_uaccess_flush [PPC] + mmio_stale_data=off [X86] Exceptions: This does not have any effect on @@ -2706,6 +2719,7 @@ Equivalent to: l1tf=flush,nosmt [X86] mds=full,nosmt [X86] tsx_async_abort=full,nosmt [X86] + mmio_stale_data=full,nosmt [X86] mminit_loglevel= [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this @@ -2715,6 +2729,40 @@ log everything. Information is printed at KERN_DEBUG so loglevel=8 may also need to be specified. + mmio_stale_data= + [X86,INTEL] Control mitigation for the Processor + MMIO Stale Data vulnerabilities. + + Processor MMIO Stale Data is a class of + vulnerabilities that may expose data after an MMIO + operation. Exposed data could originate or end in + the same CPU buffers as affected by MDS and TAA. + Therefore, similar to MDS and TAA, the mitigation + is to clear the affected CPU buffers. + + This parameter controls the mitigation. The + options are: + + full - Enable mitigation on vulnerable CPUs + + full,nosmt - Enable mitigation and disable SMT on + vulnerable CPUs. + + off - Unconditionally disable mitigation + + On MDS or TAA affected machines, + mmio_stale_data=off can be prevented by an active + MDS or TAA mitigation as these vulnerabilities are + mitigated with the same mechanism so in order to + disable this mitigation, you need to specify + mds=off and tsx_async_abort=off too. + + Not specifying this option is equivalent to + mmio_stale_data=full. + + For details see: + Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst + module.sig_enforce [KNL] When CONFIG_MODULE_SIG is set, this means that modules without (valid) signatures will fail to load. @@ -3827,6 +3875,12 @@ fully seed the kernel's CRNG. Default is controlled by CONFIG_RANDOM_TRUST_CPU. + random.trust_bootloader={on,off} + [KNL] Enable or disable trusting the use of a + seed passed by the bootloader (if available) to + fully seed the kernel's CRNG. Default is controlled + by CONFIG_RANDOM_TRUST_BOOTLOADER. + ras=option[,option,...] [KNL] RAS-specific options cec_disable [X86] @@ -4277,6 +4331,18 @@ retain_initrd [RAM] Keep initrd memory after extraction + retbleed= [X86] Control mitigation of RETBleed (Arbitrary + Speculative Code Execution with Return Instructions) + vulnerability. + + off - unconditionally disable + auto - automatically select a migitation + + Selecting 'auto' will choose a mitigation method at run + time according to the CPU. + + Not specifying this option is equivalent to retbleed=auto. + rfkill.default_state= 0 "airplane mode". All wifi, bluetooth, wimax, gps, fm, etc. communication is blocked by default. @@ -4514,8 +4580,13 @@ Specific mitigations can also be selected manually: retpoline - replace indirect branches - retpoline,generic - google's original retpoline - retpoline,amd - AMD-specific minimal thunk + retpoline,generic - Retpolines + retpoline,lfence - LFENCE; indirect branch + retpoline,amd - alias for retpoline,lfence + eibrs - enhanced IBRS + eibrs,retpoline - enhanced IBRS + Retpolines + eibrs,lfence - enhanced IBRS + LFENCE + ibrs - use IBRS to protect kernel Not specifying this option is equivalent to spectre_v2=auto. @@ -5507,6 +5578,13 @@ as generic guest with no PV drivers. Currently support XEN HVM, KVM, HYPER_V and VMWARE guest. + xen.balloon_boot_timeout= [XEN] + The time (in seconds) to wait before giving up to boot + in case initial ballooning fails to free enough memory. + Applies only when running as HVM or PVH guest and + started with less memory configured than allowed at + max. Default is 180. + xen.event_eoi_delay= [XEN] How long to delay EOI handling in case of event storms (jiffies). Default is 10. diff -u linux-azure-5.4.0/Documentation/arm64/silicon-errata.rst linux-azure-5.4.0/Documentation/arm64/silicon-errata.rst --- linux-azure-5.4.0/Documentation/arm64/silicon-errata.rst +++ linux-azure-5.4.0/Documentation/arm64/silicon-errata.rst @@ -70,8 +70,12 @@ +----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A57 | #834220 | ARM64_ERRATUM_834220 | +----------------+-----------------+-----------------+-----------------------------+ +| ARM | Cortex-A57 | #1742098 | ARM64_ERRATUM_1742098 | ++----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A72 | #853709 | N/A | +----------------+-----------------+-----------------+-----------------------------+ +| ARM | Cortex-A72 | #1655431 | ARM64_ERRATUM_1742098 | ++----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A73 | #858921 | ARM64_ERRATUM_858921 | +----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A55 | #1024718 | ARM64_ERRATUM_1024718 | diff -u linux-azure-5.4.0/Documentation/arm64/tagged-address-abi.rst linux-azure-5.4.0/Documentation/arm64/tagged-address-abi.rst --- linux-azure-5.4.0/Documentation/arm64/tagged-address-abi.rst +++ linux-azure-5.4.0/Documentation/arm64/tagged-address-abi.rst @@ -45,14 +45,24 @@ 1. User addresses not accessed by the kernel but used for address space management (e.g. ``mprotect()``, ``madvise()``). The use of valid - tagged pointers in this context is allowed with the exception of - ``brk()``, ``mmap()`` and the ``new_address`` argument to - ``mremap()`` as these have the potential to alias with existing - user addresses. - - NOTE: This behaviour changed in v5.6 and so some earlier kernels may - incorrectly accept valid tagged pointers for the ``brk()``, - ``mmap()`` and ``mremap()`` system calls. + tagged pointers in this context is allowed with these exceptions: + + - ``brk()``, ``mmap()`` and the ``new_address`` argument to + ``mremap()`` as these have the potential to alias with existing + user addresses. + + NOTE: This behaviour changed in v5.6 and so some earlier kernels may + incorrectly accept valid tagged pointers for the ``brk()``, + ``mmap()`` and ``mremap()`` system calls. + + - The ``range.start``, ``start`` and ``dst`` arguments to the + ``UFFDIO_*`` ``ioctl()``s used on a file descriptor obtained from + ``userfaultfd()``, as fault addresses subsequently obtained by reading + the file descriptor will be untagged, which may otherwise confuse + tag-unaware programs. + + NOTE: This behaviour changed in v5.14 and so some earlier kernels may + incorrectly accept valid tagged pointers for this system call. 2. User addresses accessed by the kernel (e.g. ``write()``). This ABI relaxation is disabled by default and the application thread needs to diff -u linux-azure-5.4.0/Documentation/devicetree/bindings/net/can/tcan4x5x.txt linux-azure-5.4.0/Documentation/devicetree/bindings/net/can/tcan4x5x.txt --- linux-azure-5.4.0/Documentation/devicetree/bindings/net/can/tcan4x5x.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/net/can/tcan4x5x.txt @@ -31,7 +31,7 @@ #address-cells = <1>; #size-cells = <1>; spi-max-frequency = <10000000>; - bosch,mram-cfg = <0x0 0 0 32 0 0 1 1>; + bosch,mram-cfg = <0x0 0 0 16 0 0 1 1>; interrupt-parent = <&gpio1>; interrupts = <14 IRQ_TYPE_LEVEL_LOW>; device-state-gpios = <&gpio3 21 GPIO_ACTIVE_HIGH>; diff -u linux-azure-5.4.0/Documentation/networking/ip-sysctl.txt linux-azure-5.4.0/Documentation/networking/ip-sysctl.txt --- linux-azure-5.4.0/Documentation/networking/ip-sysctl.txt +++ linux-azure-5.4.0/Documentation/networking/ip-sysctl.txt @@ -876,7 +876,7 @@ cipso_cache_bucket_size - INTEGER The CIPSO label cache consists of a fixed size hash table with each hash bucket containing a number of cache entries. This variable limits - the number of entries in each hash bucket; the larger the value the + the number of entries in each hash bucket; the larger the value is, the more CIPSO label mappings that can be cached. When the number of entries in a given hash bucket reaches this limit adding new entries causes the oldest entry in the bucket to be removed to make room. @@ -953,7 +953,7 @@ which can be quite useful - but may break some applications. Default: 0 -ip_dynaddr - BOOLEAN +ip_dynaddr - INTEGER If set non-zero, enables support for dynamic addresses. If set to a non-zero value larger than 1, a kernel log message will be printed when dynamic address rewriting @@ -2284,7 +2284,14 @@ Default: 4K sctp_wmem - vector of 3 INTEGERs: min, default, max - Currently this tunable has no effect. + Only the first value ("min") is used, "default" and "max" are + ignored. + + min: Minimum size of send buffer that can be used by SCTP sockets. + It is guaranteed to each SCTP socket (but not association) even + under moderate memory pressure. + + Default: 4K addr_scope_policy - INTEGER Control IPv4 address scoping - draft-stewart-tsvwg-sctp-ipv4-00 diff -u linux-azure-5.4.0/Documentation/sound/hd-audio/models.rst linux-azure-5.4.0/Documentation/sound/hd-audio/models.rst --- linux-azure-5.4.0/Documentation/sound/hd-audio/models.rst +++ linux-azure-5.4.0/Documentation/sound/hd-audio/models.rst @@ -261,6 +261,10 @@ huawei-mbx-stereo Enable initialization verbs for Huawei MBX stereo speakers; might be risky, try this at your own risk +alc298-samsung-headphone + Samsung laptops with ALC298 +alc256-samsung-headphone + Samsung laptops with ALC256 ALC66x/67x/892 ============== diff -u linux-azure-5.4.0/Documentation/virt/kvm/api.txt linux-azure-5.4.0/Documentation/virt/kvm/api.txt --- linux-azure-5.4.0/Documentation/virt/kvm/api.txt +++ linux-azure-5.4.0/Documentation/virt/kvm/api.txt @@ -3068,51 +3068,116 @@ 4.89 KVM_S390_MEM_OP -Capability: KVM_CAP_S390_MEM_OP -Architectures: s390 -Type: vcpu ioctl -Parameters: struct kvm_s390_mem_op (in) -Returns: = 0 on success, - < 0 on generic error (e.g. -EFAULT or -ENOMEM), - > 0 if an exception occurred while walking the page tables +:Capability: KVM_CAP_S390_MEM_OP, KVM_CAP_S390_PROTECTED, KVM_CAP_S390_MEM_OP_EXTENSION +:Architectures: s390 +:Type: vm ioctl, vcpu ioctl +:Parameters: struct kvm_s390_mem_op (in) +:Returns: = 0 on success, + < 0 on generic error (e.g. -EFAULT or -ENOMEM), + > 0 if an exception occurred while walking the page tables + +Read or write data from/to the VM's memory. +The KVM_CAP_S390_MEM_OP_EXTENSION capability specifies what functionality is +supported. -Read or write data from/to the logical (virtual) memory of a VCPU. +Parameters are specified via the following structure:: -Parameters are specified via the following structure: - -struct kvm_s390_mem_op { + struct kvm_s390_mem_op { __u64 gaddr; /* the guest address */ __u64 flags; /* flags */ __u32 size; /* amount of bytes */ __u32 op; /* type of operation */ __u64 buf; /* buffer in userspace */ - __u8 ar; /* the access register number */ - __u8 reserved[31]; /* should be set to 0 */ -}; - -The type of operation is specified in the "op" field. It is either -KVM_S390_MEMOP_LOGICAL_READ for reading from logical memory space or -KVM_S390_MEMOP_LOGICAL_WRITE for writing to logical memory space. The -KVM_S390_MEMOP_F_CHECK_ONLY flag can be set in the "flags" field to check -whether the corresponding memory access would create an access exception -(without touching the data in the memory at the destination). In case an -access exception occurred while walking the MMU tables of the guest, the -ioctl returns a positive error number to indicate the type of exception. -This exception is also raised directly at the corresponding VCPU if the -flag KVM_S390_MEMOP_F_INJECT_EXCEPTION is set in the "flags" field. + union { + struct { + __u8 ar; /* the access register number */ + __u8 key; /* access key, ignored if flag unset */ + }; + __u32 sida_offset; /* offset into the sida */ + __u8 reserved[32]; /* ignored */ + }; + }; The start address of the memory region has to be specified in the "gaddr" field, and the length of the region in the "size" field (which must not be 0). The maximum value for "size" can be obtained by checking the KVM_CAP_S390_MEM_OP capability. "buf" is the buffer supplied by the userspace application where the read data should be written to for -KVM_S390_MEMOP_LOGICAL_READ, or where the data that should be written is -stored for a KVM_S390_MEMOP_LOGICAL_WRITE. When KVM_S390_MEMOP_F_CHECK_ONLY -is specified, "buf" is unused and can be NULL. "ar" designates the access -register number to be used; the valid range is 0..15. +a read access, or where the data that should be written is stored for +a write access. The "reserved" field is meant for future extensions. +Reserved and unused values are ignored. Future extension that add members must +introduce new flags. + +The type of operation is specified in the "op" field. Flags modifying +their behavior can be set in the "flags" field. Undefined flag bits must +be set to 0. + +Possible operations are: + * ``KVM_S390_MEMOP_LOGICAL_READ`` + * ``KVM_S390_MEMOP_LOGICAL_WRITE`` + * ``KVM_S390_MEMOP_ABSOLUTE_READ`` + * ``KVM_S390_MEMOP_ABSOLUTE_WRITE`` + * ``KVM_S390_MEMOP_SIDA_READ`` + * ``KVM_S390_MEMOP_SIDA_WRITE`` + +Logical read/write: + +Access logical memory, i.e. translate the given guest address to an absolute +address given the state of the VCPU and use the absolute address as target of +the access. "ar" designates the access register number to be used; the valid +range is 0..15. +Logical accesses are permitted for the VCPU ioctl only. +Logical accesses are permitted for non-protected guests only. + +Supported flags: + * ``KVM_S390_MEMOP_F_CHECK_ONLY`` + * ``KVM_S390_MEMOP_F_INJECT_EXCEPTION`` + * ``KVM_S390_MEMOP_F_SKEY_PROTECTION`` + +The KVM_S390_MEMOP_F_CHECK_ONLY flag can be set to check whether the +corresponding memory access would cause an access exception; however, +no actual access to the data in memory at the destination is performed. +In this case, "buf" is unused and can be NULL. + +In case an access exception occurred during the access (or would occur +in case of KVM_S390_MEMOP_F_CHECK_ONLY), the ioctl returns a positive +error number indicating the type of exception. This exception is also +raised directly at the corresponding VCPU if the flag +KVM_S390_MEMOP_F_INJECT_EXCEPTION is set. + +If the KVM_S390_MEMOP_F_SKEY_PROTECTION flag is set, storage key +protection is also in effect and may cause exceptions if accesses are +prohibited given the access key designated by "key"; the valid range is 0..15. +KVM_S390_MEMOP_F_SKEY_PROTECTION is available if KVM_CAP_S390_MEM_OP_EXTENSION +is > 0. + +Absolute read/write: + +Access absolute memory. This operation is intended to be used with the +KVM_S390_MEMOP_F_SKEY_PROTECTION flag, to allow accessing memory and performing +the checks required for storage key protection as one operation (as opposed to +user space getting the storage keys, performing the checks, and accessing +memory thereafter, which could lead to a delay between check and access). +Absolute accesses are permitted for the VM ioctl if KVM_CAP_S390_MEM_OP_EXTENSION +is > 0. +Currently absolute accesses are not permitted for VCPU ioctls. +Absolute accesses are permitted for non-protected guests only. + +Supported flags: + * ``KVM_S390_MEMOP_F_CHECK_ONLY`` + * ``KVM_S390_MEMOP_F_SKEY_PROTECTION`` + +The semantics of the flags are as for logical accesses. + +SIDA read/write: + +Access the secure instruction data area which contains memory operands necessary +for instruction emulation for protected guests. +SIDA accesses are available if the KVM_CAP_S390_PROTECTED capability is available. +SIDA accesses are permitted for the VCPU ioctl only. +SIDA accesses are permitted for protected guests only. -The "reserved" field is meant for future extensions. It is not used by -KVM with the currently defined set of flags. +No flags are supported. 4.90 KVM_S390_GET_SKEYS diff -u linux-azure-5.4.0/Documentation/virt/kvm/mmu.txt linux-azure-5.4.0/Documentation/virt/kvm/mmu.txt --- linux-azure-5.4.0/Documentation/virt/kvm/mmu.txt +++ linux-azure-5.4.0/Documentation/virt/kvm/mmu.txt @@ -152,8 +152,8 @@ shadow pages) so role.quadrant takes values in the range 0..3. Each quadrant maps 1GB virtual address space. role.access: - Inherited guest access permissions in the form uwx. Note execute - permission is positive, not negative. + Inherited guest access permissions from the parent ptes in the form uwx. + Note execute permission is positive, not negative. role.invalid: The page is invalid and should not be used. It is a root page that is currently pinned (by a cpu hardware register pointing to it); once it is diff -u linux-azure-5.4.0/MAINTAINERS linux-azure-5.4.0/MAINTAINERS --- linux-azure-5.4.0/MAINTAINERS +++ linux-azure-5.4.0/MAINTAINERS @@ -7609,7 +7609,15 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git L: linux-hyperv@vger.kernel.org S: Supported -F: Documentation/networking/device_drivers/microsoft/netvsc.txt +T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git +F: Documentation/ABI/stable/sysfs-bus-vmbus +F: Documentation/ABI/testing/debugfs-hyperv +F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst +F: arch/arm64/hyperv +F: arch/arm64/include/asm/hyperv-tlfs.h +F: arch/arm64/include/asm/mshyperv.h +F: arch/x86/hyperv +F: arch/x86/include/asm/hyperv-tlfs.h F: arch/x86/include/asm/mshyperv.h F: arch/x86/include/asm/trace/hyperv.h F: arch/x86/include/asm/hyperv-tlfs.h @@ -7628,6 +7636,8 @@ F: drivers/iommu/hyperv-iommu.c F: drivers/net/ethernet/microsoft/ F: net/vmw_vsock/hyperv_transport.c +F: include/asm-generic/hyperv-tlfs.h +F: include/asm-generic/mshyperv.h F: include/clocksource/hyperv_timer.h F: include/linux/hyperv.h F: include/uapi/linux/hyperv.h @@ -13696,6 +13706,7 @@ RANDOM NUMBER DRIVER M: "Theodore Ts'o" +M: Jason A. Donenfeld S: Maintained F: drivers/char/random.c @@ -17920,7 +17931,8 @@ F: sound/xen/* XFS FILESYSTEM -M: Darrick J. Wong +M: Chandan Babu R +M: Darrick J. Wong M: linux-xfs@vger.kernel.org L: linux-xfs@vger.kernel.org W: http://xfs.org/ diff -u linux-azure-5.4.0/Makefile linux-azure-5.4.0/Makefile --- linux-azure-5.4.0/Makefile +++ linux-azure-5.4.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 4 -SUBLEVEL = 124 +SUBLEVEL = 224 EXTRAVERSION = NAME = Kleptomaniac Octopus @@ -829,7 +829,9 @@ else DEBUG_CFLAGS += -g endif -ifneq ($(LLVM_IAS),1) +ifeq ($(LLVM_IAS),1) +KBUILD_AFLAGS += -g +else KBUILD_AFLAGS += -Wa,-gdwarf-2 endif endif @@ -959,12 +961,15 @@ KBUILD_LDFLAGS_MODULE += --build-id LDFLAGS_vmlinux += --build-id +KBUILD_LDFLAGS += -z noexecstack +KBUILD_LDFLAGS += $(call ld-option,--no-warn-rwx-segments) + ifeq ($(CONFIG_STRIP_ASM_SYMS),y) LDFLAGS_vmlinux += $(call ld-option, -X,) endif ifeq ($(CONFIG_RELR),y) -LDFLAGS_vmlinux += --pack-dyn-relocs=relr +LDFLAGS_vmlinux += --pack-dyn-relocs=relr --use-android-relr-tags endif # make the checker run with the right architecture @@ -1049,7 +1054,7 @@ ifdef CONFIG_STACK_VALIDATION has_libelf := $(call try-run,\ - echo "int main() {}" | $(HOSTCC) -xc -o /dev/null $(HOST_LIBELF_LIBS) -,1,0) + echo "int main() {}" | $(HOSTCC) $(KBUILD_HOSTLDFLAGS) -xc -o /dev/null $(HOST_LIBELF_LIBS) -,1,0) ifeq ($(has_libelf),1) objtool_target := tools/objtool FORCE else @@ -1100,7 +1105,7 @@ ifdef CONFIG_TRIM_UNUSED_KSYMS autoksyms_recursive: descend modules.order $(Q)$(CONFIG_SHELL) $(srctree)/scripts/adjust_autoksyms.sh \ - "$(MAKE) -f $(srctree)/Makefile vmlinux" + "$(MAKE) -f $(srctree)/Makefile autoksyms_recursive" endif # For the kernel to actually contain only the needed exported symbols, diff -u linux-azure-5.4.0/arch/Kconfig linux-azure-5.4.0/arch/Kconfig --- linux-azure-5.4.0/arch/Kconfig +++ linux-azure-5.4.0/arch/Kconfig @@ -915,27 +915,6 @@ config ARCH_HAS_PHYS_TO_DMA bool -config ARCH_HAS_REFCOUNT - bool - help - An architecture selects this when it has implemented refcount_t - using open coded assembly primitives that provide an optimized - refcount_t implementation, possibly at the expense of some full - refcount state checks of CONFIG_REFCOUNT_FULL=y. - - The refcount overflow check behavior, however, must be retained. - Catching overflows is the primary security concern for protecting - against bugs in reference counts. - -config REFCOUNT_FULL - bool "Perform full reference count validation at the expense of speed" - help - Enabling this switches the refcounting infrastructure from a fast - unchecked atomic_t implementation to a fully state checked - implementation, which can be (slightly) slower but provides protections - against various use-after-free conditions that can be used in - security flaw exploits. - config HAVE_ARCH_COMPILER_H bool help diff -u linux-azure-5.4.0/arch/alpha/include/asm/io.h linux-azure-5.4.0/arch/alpha/include/asm/io.h --- linux-azure-5.4.0/arch/alpha/include/asm/io.h +++ linux-azure-5.4.0/arch/alpha/include/asm/io.h @@ -61,7 +61,7 @@ * Change virtual addresses to physical addresses and vv. */ #ifdef USE_48_BIT_KSEG -static inline unsigned long virt_to_phys(void *address) +static inline unsigned long virt_to_phys(volatile void *address) { return (unsigned long)address - IDENT_ADDR; } @@ -71,7 +71,7 @@ return (void *) (address + IDENT_ADDR); } #else -static inline unsigned long virt_to_phys(void *address) +static inline unsigned long virt_to_phys(volatile void *address) { unsigned long phys = (unsigned long)address; @@ -107,7 +107,7 @@ extern unsigned long __direct_map_base; extern unsigned long __direct_map_size; -static inline unsigned long __deprecated virt_to_bus(void *address) +static inline unsigned long __deprecated virt_to_bus(volatile void *address) { unsigned long phys = virt_to_phys(address); unsigned long bus = phys + __direct_map_base; diff -u linux-azure-5.4.0/arch/arc/kernel/entry.S linux-azure-5.4.0/arch/arc/kernel/entry.S --- linux-azure-5.4.0/arch/arc/kernel/entry.S +++ linux-azure-5.4.0/arch/arc/kernel/entry.S @@ -35,6 +35,18 @@ b .Lret_from_system_call END(sys_clone_wrapper) +ENTRY(sys_clone3_wrapper) + SAVE_CALLEE_SAVED_USER + bl @sys_clone3 + DISCARD_CALLEE_SAVED_USER + + GET_CURR_THR_INFO_FLAGS r10 + btst r10, TIF_SYSCALL_TRACE + bnz tracesys_exit + + b .Lret_from_system_call +END(sys_clone3_wrapper) + ENTRY(ret_from_fork) ; when the forked child comes here from the __switch_to function ; r0 has the last task pointer. @@ -187,6 +199,7 @@ st r0, [sp, PT_r0] ; sys call return value in pt_regs ;POST Sys Call Ptrace Hook + mov r0, sp ; pt_regs needed bl @syscall_trace_exit b ret_from_exception ; NOT ret_from_system_call at is saves r0 which ; we'd done before calling post hook above diff -u linux-azure-5.4.0/arch/arc/kernel/signal.c linux-azure-5.4.0/arch/arc/kernel/signal.c --- linux-azure-5.4.0/arch/arc/kernel/signal.c +++ linux-azure-5.4.0/arch/arc/kernel/signal.c @@ -61,6 +61,41 @@ unsigned int sigret_magic; }; +static int save_arcv2_regs(struct sigcontext *mctx, struct pt_regs *regs) +{ + int err = 0; +#ifndef CONFIG_ISA_ARCOMPACT + struct user_regs_arcv2 v2abi; + + v2abi.r30 = regs->r30; +#ifdef CONFIG_ARC_HAS_ACCL_REGS + v2abi.r58 = regs->r58; + v2abi.r59 = regs->r59; +#else + v2abi.r58 = v2abi.r59 = 0; +#endif + err = __copy_to_user(&mctx->v2abi, &v2abi, sizeof(v2abi)); +#endif + return err; +} + +static int restore_arcv2_regs(struct sigcontext *mctx, struct pt_regs *regs) +{ + int err = 0; +#ifndef CONFIG_ISA_ARCOMPACT + struct user_regs_arcv2 v2abi; + + err = __copy_from_user(&v2abi, &mctx->v2abi, sizeof(v2abi)); + + regs->r30 = v2abi.r30; +#ifdef CONFIG_ARC_HAS_ACCL_REGS + regs->r58 = v2abi.r58; + regs->r59 = v2abi.r59; +#endif +#endif + return err; +} + static int stash_usr_regs(struct rt_sigframe __user *sf, struct pt_regs *regs, sigset_t *set) @@ -94,6 +129,10 @@ err = __copy_to_user(&(sf->uc.uc_mcontext.regs.scratch), &uregs.scratch, sizeof(sf->uc.uc_mcontext.regs.scratch)); + + if (is_isa_arcv2()) + err |= save_arcv2_regs(&(sf->uc.uc_mcontext), regs); + err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(sigset_t)); return err ? -EFAULT : 0; @@ -109,6 +148,10 @@ err |= __copy_from_user(&uregs.scratch, &(sf->uc.uc_mcontext.regs.scratch), sizeof(sf->uc.uc_mcontext.regs.scratch)); + + if (is_isa_arcv2()) + err |= restore_arcv2_regs(&(sf->uc.uc_mcontext), regs); + if (err) return -EFAULT; diff -u linux-azure-5.4.0/arch/arc/mm/ioremap.c linux-azure-5.4.0/arch/arc/mm/ioremap.c --- linux-azure-5.4.0/arch/arc/mm/ioremap.c +++ linux-azure-5.4.0/arch/arc/mm/ioremap.c @@ -93,7 +93,7 @@ EXPORT_SYMBOL(ioremap_prot); -void iounmap(const void __iomem *addr) +void iounmap(const volatile void __iomem *addr) { /* weird double cast to handle phys_addr_t > 32 bits */ if (arc_uncached_addr_space((phys_addr_t)(u32)addr)) diff -u linux-azure-5.4.0/arch/arm/Kconfig linux-azure-5.4.0/arch/arm/Kconfig --- linux-azure-5.4.0/arch/arm/Kconfig +++ linux-azure-5.4.0/arch/arm/Kconfig @@ -26,7 +26,7 @@ select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST select ARCH_HAVE_CUSTOM_GPIO_H select ARCH_HAS_GCOV_PROFILE_ALL - select ARCH_KEEP_MEMBLOCK if HAVE_ARCH_PFN_VALID || KEXEC + select ARCH_KEEP_MEMBLOCK select ARCH_MIGHT_HAVE_PC_PARPORT select ARCH_NO_SG_CHAIN if !ARM_HAS_SG_CHAIN select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX @@ -85,6 +85,7 @@ select HAVE_FTRACE_MCOUNT_RECORD if !XIP_KERNEL select HAVE_FUNCTION_GRAPH_TRACER if !THUMB2_KERNEL && !CC_IS_CLANG select HAVE_FUNCTION_TRACER if !XIP_KERNEL && (CC_IS_GCC || CLANG_VERSION >= 100000) + select HAVE_FUTEX_CMPXCHG if FUTEX select HAVE_GCC_PLUGINS select HAVE_HW_BREAKPOINT if PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7) select HAVE_IDE if PCI || ISA || PCMCIA @@ -118,7 +119,6 @@ select OLD_SIGSUSPEND3 select PCI_SYSCALL if PCI select PERF_USE_VMALLOC - select REFCOUNT_FULL select RTC_LIB select SYS_SUPPORTS_APM_EMULATION # Above selects are sorted alphabetically; please add new ones @@ -520,7 +520,6 @@ config ARCH_OMAP1 bool "TI OMAP1" depends on MMU - select ARCH_HAS_HOLES_MEMORYMODEL select ARCH_OMAP select CLKDEV_LOOKUP select CLKSRC_MMIO @@ -1517,9 +1516,6 @@ UNPREDICTABLE (in fact it can be predicted that it won't work at all). If in doubt say N. -config ARCH_HAS_HOLES_MEMORYMODEL - bool - config ARCH_SPARSEMEM_ENABLE bool @@ -1527,7 +1523,7 @@ def_bool ARCH_SPARSEMEM_ENABLE config HAVE_ARCH_PFN_VALID - def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM + def_bool y config HIGHMEM bool "High Memory Support" @@ -1841,7 +1837,6 @@ choice prompt "Kernel command line type" if CMDLINE != "" default CMDLINE_FROM_BOOTLOADER - depends on ATAGS config CMDLINE_FROM_BOOTLOADER bool "Use bootloader kernel arguments if available" diff -u linux-azure-5.4.0/arch/arm/Makefile linux-azure-5.4.0/arch/arm/Makefile --- linux-azure-5.4.0/arch/arm/Makefile +++ linux-azure-5.4.0/arch/arm/Makefile @@ -66,15 +66,15 @@ # Note that GCC does not numerically define an architecture version # macro, but instead defines a whole series of macros which makes # testing for a specific architecture or later rather impossible. -arch-$(CONFIG_CPU_32v7M) =-D__LINUX_ARM_ARCH__=7 -march=armv7-m -Wa,-march=armv7-m -arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a) -arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6) +arch-$(CONFIG_CPU_32v7M) =-D__LINUX_ARM_ARCH__=7 -march=armv7-m +arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 -march=armv7-a +arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 -march=armv6 # Only override the compiler option if ARMv6. The ARMv6K extensions are # always available in ARMv7 ifeq ($(CONFIG_CPU_32v6),y) -arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(comma)-march=armv6k) +arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 -march=armv6k endif -arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t) +arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 -march=armv5te arch-$(CONFIG_CPU_32v4T) =-D__LINUX_ARM_ARCH__=4 -march=armv4t arch-$(CONFIG_CPU_32v4) =-D__LINUX_ARM_ARCH__=4 -march=armv4 arch-$(CONFIG_CPU_32v3) =-D__LINUX_ARM_ARCH__=3 -march=armv3m @@ -88,7 +88,7 @@ tune-$(CONFIG_CPU_ARM740T) =-mtune=arm7tdmi tune-$(CONFIG_CPU_ARM9TDMI) =-mtune=arm9tdmi tune-$(CONFIG_CPU_ARM940T) =-mtune=arm9tdmi -tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi) +tune-$(CONFIG_CPU_ARM946E) =-mtune=arm9e tune-$(CONFIG_CPU_ARM920T) =-mtune=arm9tdmi tune-$(CONFIG_CPU_ARM922T) =-mtune=arm9tdmi tune-$(CONFIG_CPU_ARM925T) =-mtune=arm9tdmi @@ -96,11 +96,11 @@ tune-$(CONFIG_CPU_FA526) =-mtune=arm9tdmi tune-$(CONFIG_CPU_SA110) =-mtune=strongarm110 tune-$(CONFIG_CPU_SA1100) =-mtune=strongarm1100 -tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale -tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale -tune-$(CONFIG_CPU_FEROCEON) =$(call cc-option,-mtune=marvell-f,-mtune=xscale) -tune-$(CONFIG_CPU_V6) =$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm) -tune-$(CONFIG_CPU_V6K) =$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm) +tune-$(CONFIG_CPU_XSCALE) =-mtune=xscale +tune-$(CONFIG_CPU_XSC3) =-mtune=xscale +tune-$(CONFIG_CPU_FEROCEON) =-mtune=xscale +tune-$(CONFIG_CPU_V6) =-mtune=arm1136j-s +tune-$(CONFIG_CPU_V6K) =-mtune=arm1136j-s # Evaluate tune cc-option calls now tune-y := $(tune-y) diff -u linux-azure-5.4.0/arch/arm/boot/compressed/Makefile linux-azure-5.4.0/arch/arm/boot/compressed/Makefile --- linux-azure-5.4.0/arch/arm/boot/compressed/Makefile +++ linux-azure-5.4.0/arch/arm/boot/compressed/Makefile @@ -90,6 +90,8 @@ $(addprefix $(obj)/,$(libfdt_hdrs)) ifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y) +CFLAGS_REMOVE_atags_to_fdt.o += -Wframe-larger-than=${CONFIG_FRAME_WARN} +CFLAGS_atags_to_fdt.o += -Wframe-larger-than=1280 OBJS += $(libfdt_objs) atags_to_fdt.o endif diff -u linux-azure-5.4.0/arch/arm/boot/compressed/head.S linux-azure-5.4.0/arch/arm/boot/compressed/head.S --- linux-azure-5.4.0/arch/arm/boot/compressed/head.S +++ linux-azure-5.4.0/arch/arm/boot/compressed/head.S @@ -140,7 +140,7 @@ #endif .endm - .section ".start", #alloc, #execinstr + .section ".start", "ax" /* * sort out different calling conventions */ @@ -165,7 +165,8 @@ * were patching the initial instructions of the kernel, i.e * had started to exploit this "patch area". */ - .rept 7 + __initial_nops + .rept 5 __nop .endr #ifndef CONFIG_THUMB2_KERNEL @@ -1273,7 +1274,7 @@ __armv5tej_mmu_cache_flush: tst r4, #1 movne pc, lr -1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate D cache +1: mrc p15, 0, APSR_nzcv, c7, c14, 3 @ test,clean,invalidate D cache bne 1b mcr p15, 0, r0, c7, c5, 0 @ flush I cache mcr p15, 0, r0, c7, c10, 4 @ drain WB diff -u linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblack-common.dtsi linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblack-common.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblack-common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblack-common.dtsi @@ -22,6 +22,7 @@ pinctrl-0 = <&emmc_pins>; bus-width = <8>; status = "okay"; + non-removable; }; &am33xx_pinmux { diff -u linux-azure-5.4.0/arch/arm/boot/dts/am33xx.dtsi linux-azure-5.4.0/arch/arm/boot/dts/am33xx.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/am33xx.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am33xx.dtsi @@ -259,10 +259,11 @@ ranges = <0x0 0x47810000 0x1000>; mmc3: mmc@0 { - compatible = "ti,omap4-hsmmc"; + compatible = "ti,am335-sdhci"; ti,needs-special-reset; interrupts = <29>; reg = <0x0 0x1000>; + status = "disabled"; }; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/am437x-gp-evm.dts linux-azure-5.4.0/arch/arm/boot/dts/am437x-gp-evm.dts --- linux-azure-5.4.0/arch/arm/boot/dts/am437x-gp-evm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am437x-gp-evm.dts @@ -829,11 +829,14 @@ status = "okay"; }; +&gpio5_target { + ti,no-reset-on-init; +}; + &gpio5 { pinctrl-names = "default"; pinctrl-0 = <&display_mux_pins>; status = "okay"; - ti,no-reset-on-init; p8 { /* @@ -869,7 +872,7 @@ pinctrl-names = "default", "sleep"; pinctrl-0 = <&emmc_pins_default>; pinctrl-1 = <&emmc_pins_sleep>; - ti,non-removable; + non-removable; }; &mmc3 { @@ -886,7 +889,7 @@ pinctrl-1 = <&mmc3_pins_sleep>; cap-power-off-card; keep-power-in-suspend; - ti,non-removable; + non-removable; #address-cells = <1>; #size-cells = <0>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/am437x-l4.dtsi linux-azure-5.4.0/arch/arm/boot/dts/am437x-l4.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/am437x-l4.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am437x-l4.dtsi @@ -1104,9 +1104,8 @@ ranges = <0x0 0x60000 0x1000>; mmc1: mmc@0 { - compatible = "ti,omap4-hsmmc"; + compatible = "ti,am437-sdhci"; reg = <0x0 0x1000>; - ti,dual-volt; ti,needs-special-reset; dmas = <&edma 24 0>, <&edma 25 0>; @@ -1611,7 +1610,7 @@ compatible = "ti,am4372-d_can", "ti,am3352-d_can"; reg = <0x0 0x2000>; clocks = <&dcan1_fck>; - clock-name = "fck"; + clock-names = "fck"; syscon-raminit = <&scm_conf 0x644 1>; interrupts = ; status = "disabled"; @@ -1641,7 +1640,7 @@ ranges = <0x0 0xd8000 0x1000>; mmc2: mmc@0 { - compatible = "ti,omap4-hsmmc"; + compatible = "ti,am437-sdhci"; reg = <0x0 0x1000>; ti,needs-special-reset; dmas = <&edma 2 0>, @@ -2077,7 +2076,7 @@ }; }; - target-module@22000 { /* 0x48322000, ap 116 64.0 */ + gpio5_target: target-module@22000 { /* 0x48322000, ap 116 64.0 */ compatible = "ti,sysc-omap2", "ti,sysc"; ti,hwmods = "gpio6"; reg = <0x22000 0x4>, diff -u linux-azure-5.4.0/arch/arm/boot/dts/am43x-epos-evm.dts linux-azure-5.4.0/arch/arm/boot/dts/am43x-epos-evm.dts --- linux-azure-5.4.0/arch/arm/boot/dts/am43x-epos-evm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am43x-epos-evm.dts @@ -589,7 +589,7 @@ status = "okay"; pinctrl-names = "default"; pinctrl-0 = <&i2c0_pins>; - clock-frequency = <400000>; + clock-frequency = <100000>; tps65218: tps65218@24 { reg = <0x24>; @@ -848,7 +848,7 @@ pinctrl-names = "default", "sleep"; pinctrl-0 = <&spi0_pins_default>; pinctrl-1 = <&spi0_pins_sleep>; - ti,pindir-d0-out-d1-in = <1>; + ti,pindir-d0-out-d1-in; }; &spi1 { @@ -856,7 +856,7 @@ pinctrl-names = "default", "sleep"; pinctrl-0 = <&spi1_pins_default>; pinctrl-1 = <&spi1_pins_sleep>; - ti,pindir-d0-out-d1-in = <1>; + ti,pindir-d0-out-d1-in; }; &usb2_phy1 { diff -u linux-azure-5.4.0/arch/arm/boot/dts/armada-385-turris-omnia.dts linux-azure-5.4.0/arch/arm/boot/dts/armada-385-turris-omnia.dts --- linux-azure-5.4.0/arch/arm/boot/dts/armada-385-turris-omnia.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/armada-385-turris-omnia.dts @@ -307,7 +307,7 @@ marvell,function = "spi0"; }; - spi0cs1_pins: spi0cs1-pins { + spi0cs2_pins: spi0cs2-pins { marvell,pins = "mpp26"; marvell,function = "spi0"; }; @@ -342,7 +342,7 @@ }; }; - /* MISO, MOSI, SCLK and CS1 are routed to pin header CN11 */ + /* MISO, MOSI, SCLK and CS2 are routed to pin header CN11 */ }; &uart0 { diff -u linux-azure-5.4.0/arch/arm/boot/dts/armada-38x.dtsi linux-azure-5.4.0/arch/arm/boot/dts/armada-38x.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/armada-38x.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/armada-38x.dtsi @@ -165,7 +165,7 @@ }; uart0: serial@12000 { - compatible = "marvell,armada-38x-uart"; + compatible = "marvell,armada-38x-uart", "ns16550a"; reg = <0x12000 0x100>; reg-shift = <2>; interrupts = ; @@ -175,7 +175,7 @@ }; uart1: serial@12100 { - compatible = "marvell,armada-38x-uart"; + compatible = "marvell,armada-38x-uart", "ns16550a"; reg = <0x12100 0x100>; reg-shift = <2>; interrupts = ; diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm-cygnus.dtsi linux-azure-5.4.0/arch/arm/boot/dts/bcm-cygnus.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/bcm-cygnus.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm-cygnus.dtsi @@ -460,7 +460,7 @@ status = "disabled"; }; - nand: nand@18046000 { + nand_controller: nand-controller@18046000 { compatible = "brcm,nand-iproc", "brcm,brcmnand-v6.1"; reg = <0x18046000 0x600>, <0xf8105408 0x600>, <0x18046f00 0x20>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm-hr2.dtsi linux-azure-5.4.0/arch/arm/boot/dts/bcm-hr2.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/bcm-hr2.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm-hr2.dtsi @@ -179,7 +179,7 @@ status = "disabled"; }; - nand: nand@26000 { + nand_controller: nand-controller@26000 { compatible = "brcm,nand-iproc", "brcm,brcmnand-v6.1"; reg = <0x26000 0x600>, <0x11b408 0x600>, diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm-nsp.dtsi linux-azure-5.4.0/arch/arm/boot/dts/bcm-nsp.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/bcm-nsp.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm-nsp.dtsi @@ -77,7 +77,7 @@ interrupt-affinity = <&cpu0>, <&cpu1>; }; - mpcore@19000000 { + mpcore-bus@19000000 { compatible = "simple-bus"; ranges = <0x00000000 0x19000000 0x00023000>; #address-cells = <1>; @@ -217,7 +217,7 @@ #dma-cells = <1>; }; - sdio: sdhci@21000 { + sdio: mmc@21000 { compatible = "brcm,sdhci-iproc-cygnus"; reg = <0x21000 0x100>; interrupts = ; @@ -267,7 +267,7 @@ dma-coherent; }; - nand: nand@26000 { + nand_controller: nand-controller@26000 { compatible = "brcm,nand-iproc", "brcm,brcmnand-v6.1"; reg = <0x026000 0x600>, <0x11b408 0x600>, diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts linux-azure-5.4.0/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts --- linux-azure-5.4.0/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm2835-rpi-zero-w.dts @@ -74,16 +74,18 @@ "GPIO27", "SDA0", "SCL0", - "NC", /* GPIO30 */ - "NC", /* GPIO31 */ - "NC", /* GPIO32 */ - "NC", /* GPIO33 */ - "NC", /* GPIO34 */ - "NC", /* GPIO35 */ - "NC", /* GPIO36 */ - "NC", /* GPIO37 */ - "NC", /* GPIO38 */ - "NC", /* GPIO39 */ + /* Used by BT module */ + "CTS0", + "RTS0", + "TXD0", + "RXD0", + /* Used by Wifi */ + "SD1_CLK", + "SD1_CMD", + "SD1_DATA0", + "SD1_DATA1", + "SD1_DATA2", + "SD1_DATA3", "CAM_GPIO1", /* GPIO40 */ "WL_ON", /* GPIO41 */ "NC", /* GPIO42 */ diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm283x.dtsi linux-azure-5.4.0/arch/arm/boot/dts/bcm283x.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/bcm283x.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm283x.dtsi @@ -183,6 +183,7 @@ interrupt-controller; #interrupt-cells = <2>; + gpio-ranges = <&gpio 0 0 54>; /* Defines pin muxing groups according to * BCM2835-ARM-Peripherals.pdf page 102. diff -u linux-azure-5.4.0/arch/arm/boot/dts/bcm5301x.dtsi linux-azure-5.4.0/arch/arm/boot/dts/bcm5301x.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/bcm5301x.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm5301x.dtsi @@ -242,6 +242,8 @@ gpio-controller; #gpio-cells = <2>; + interrupt-controller; + #interrupt-cells = <2>; }; pcie0: pcie@12000 { @@ -387,7 +389,7 @@ i2c0: i2c@18009000 { compatible = "brcm,iproc-i2c"; reg = <0x18009000 0x50>; - interrupts = ; + interrupts = ; #address-cells = <1>; #size-cells = <0>; clock-frequency = <100000>; @@ -494,27 +496,27 @@ <0x1811b408 0x004>, <0x180293a0 0x01c>; reg-names = "mspi", "bspi", "intr_regs", "intr_status_reg"; - interrupts = , + interrupts = , + , + , , , , - , - , - ; - interrupt-names = "spi_lr_fullness_reached", + ; + interrupt-names = "mspi_done", + "mspi_halted", + "spi_lr_fullness_reached", "spi_lr_session_aborted", "spi_lr_impatient", "spi_lr_session_done", - "spi_lr_overhead", - "mspi_done", - "mspi_halted"; + "spi_lr_overread"; clocks = <&iprocmed>; clock-names = "iprocmed"; num-cs = <2>; #address-cells = <1>; #size-cells = <0>; - spi_nor: spi-nor@0 { + spi_nor: flash@0 { compatible = "jedec,spi-nor"; reg = <0>; spi-max-frequency = <20000000>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/dra7-l4.dtsi linux-azure-5.4.0/arch/arm/boot/dts/dra7-l4.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/dra7-l4.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/dra7-l4.dtsi @@ -1176,7 +1176,7 @@ }; }; - target-module@34000 { /* 0x48034000, ap 7 46.0 */ + timer3_target: target-module@34000 { /* 0x48034000, ap 7 46.0 */ compatible = "ti,sysc-omap4-timer", "ti,sysc"; ti,hwmods = "timer3"; reg = <0x34000 0x4>, @@ -1204,7 +1204,7 @@ }; }; - target-module@36000 { /* 0x48036000, ap 9 4e.0 */ + timer4_target: target-module@36000 { /* 0x48036000, ap 9 4e.0 */ compatible = "ti,sysc-omap4-timer", "ti,sysc"; ti,hwmods = "timer4"; reg = <0x36000 0x4>, @@ -1326,7 +1326,7 @@ }; }; - target-module@55000 { /* 0x48055000, ap 13 0e.0 */ + gpio2_target: target-module@55000 { /* 0x48055000, ap 13 0e.0 */ compatible = "ti,sysc-omap2", "ti,sysc"; reg = <0x55000 0x4>, <0x55010 0x4>, @@ -1359,7 +1359,7 @@ }; }; - target-module@57000 { /* 0x48057000, ap 15 06.0 */ + gpio3_target: target-module@57000 { /* 0x48057000, ap 15 06.0 */ compatible = "ti,sysc-omap2", "ti,sysc"; reg = <0x57000 0x4>, <0x57010 0x4>, diff -u linux-azure-5.4.0/arch/arm/boot/dts/dra7.dtsi linux-azure-5.4.0/arch/arm/boot/dts/dra7.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/dra7.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/dra7.dtsi @@ -46,6 +46,7 @@ timer { compatible = "arm,armv7-timer"; + status = "disabled"; /* See ARM architected timer wrap erratum i940 */ interrupts = , , , @@ -768,0 +770,19 @@ + +/* Local timers, see ARM architected timer wrap erratum i940 */ +&timer3_target { + ti,no-reset-on-init; + ti,no-idle; + timer@0 { + assigned-clocks = <&l4per_clkctrl DRA7_L4PER_TIMER3_CLKCTRL 24>; + assigned-clock-parents = <&timer_sys_clk_div>; + }; +}; + +&timer4_target { + ti,no-reset-on-init; + ti,no-idle; + timer@0 { + assigned-clocks = <&l4per_clkctrl DRA7_L4PER_TIMER4_CLKCTRL 24>; + assigned-clock-parents = <&timer_sys_clk_div>; + }; +}; diff -u linux-azure-5.4.0/arch/arm/boot/dts/exynos4412-midas.dtsi linux-azure-5.4.0/arch/arm/boot/dts/exynos4412-midas.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/exynos4412-midas.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos4412-midas.dtsi @@ -534,7 +534,7 @@ clocks = <&camera 1>; clock-names = "extclk"; samsung,camclk-out = <1>; - gpios = <&gpm1 6 GPIO_ACTIVE_HIGH>; + gpios = <&gpm1 6 GPIO_ACTIVE_LOW>; port { is_s5k6a3_ep: endpoint { diff -u linux-azure-5.4.0/arch/arm/boot/dts/exynos5250-smdk5250.dts linux-azure-5.4.0/arch/arm/boot/dts/exynos5250-smdk5250.dts --- linux-azure-5.4.0/arch/arm/boot/dts/exynos5250-smdk5250.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos5250-smdk5250.dts @@ -117,6 +117,9 @@ status = "okay"; ddc = <&i2c_2>; hpd-gpios = <&gpx3 7 GPIO_ACTIVE_HIGH>; + vdd-supply = <&ldo8_reg>; + vdd_osc-supply = <&ldo10_reg>; + vdd_pll-supply = <&ldo8_reg>; }; &i2c_0 { @@ -125,7 +128,7 @@ samsung,i2c-max-bus-freq = <20000>; eeprom@50 { - compatible = "samsung,s524ad0xd1"; + compatible = "samsung,s524ad0xd1", "atmel,24c128"; reg = <0x50>; }; @@ -284,7 +287,7 @@ samsung,i2c-max-bus-freq = <20000>; eeprom@51 { - compatible = "samsung,s524ad0xd1"; + compatible = "samsung,s524ad0xd1", "atmel,24c128"; reg = <0x51>; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6q-dhcom-som.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6q-dhcom-som.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6q-dhcom-som.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6q-dhcom-som.dtsi @@ -98,30 +98,40 @@ reg = <0>; max-speed = <100>; reset-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>; - reset-delay-us = <1000>; - reset-post-delay-us = <1000>; + reset-assert-us = <1000>; + reset-deassert-us = <1000>; + smsc,disable-energy-detect; /* Make plugin detection reliable */ }; }; }; &i2c1 { clock-frequency = <100000>; - pinctrl-names = "default"; + pinctrl-names = "default", "gpio"; pinctrl-0 = <&pinctrl_i2c1>; + pinctrl-1 = <&pinctrl_i2c1_gpio>; + scl-gpios = <&gpio3 21 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; + sda-gpios = <&gpio3 28 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; status = "okay"; }; &i2c2 { clock-frequency = <100000>; - pinctrl-names = "default"; + pinctrl-names = "default", "gpio"; pinctrl-0 = <&pinctrl_i2c2>; + pinctrl-1 = <&pinctrl_i2c2_gpio>; + scl-gpios = <&gpio4 12 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; + sda-gpios = <&gpio4 13 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; status = "okay"; }; &i2c3 { clock-frequency = <100000>; - pinctrl-names = "default"; + pinctrl-names = "default", "gpio"; pinctrl-0 = <&pinctrl_i2c3>; + pinctrl-1 = <&pinctrl_i2c3_gpio>; + scl-gpios = <&gpio1 3 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; + sda-gpios = <&gpio1 6 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; status = "okay"; ltc3676: pmic@3c { @@ -287,6 +297,13 @@ >; }; + pinctrl_i2c1_gpio: i2c1-gpio-grp { + fsl,pins = < + MX6QDL_PAD_EIM_D21__GPIO3_IO21 0x4001b8b1 + MX6QDL_PAD_EIM_D28__GPIO3_IO28 0x4001b8b1 + >; + }; + pinctrl_i2c2: i2c2-grp { fsl,pins = < MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b8b1 @@ -294,6 +311,13 @@ >; }; + pinctrl_i2c2_gpio: i2c2-gpio-grp { + fsl,pins = < + MX6QDL_PAD_KEY_COL3__GPIO4_IO12 0x4001b8b1 + MX6QDL_PAD_KEY_ROW3__GPIO4_IO13 0x4001b8b1 + >; + }; + pinctrl_i2c3: i2c3-grp { fsl,pins = < MX6QDL_PAD_GPIO_3__I2C3_SCL 0x4001b8b1 @@ -301,6 +325,13 @@ >; }; + pinctrl_i2c3_gpio: i2c3-gpio-grp { + fsl,pins = < + MX6QDL_PAD_GPIO_3__GPIO1_IO03 0x4001b8b1 + MX6QDL_PAD_GPIO_6__GPIO1_IO06 0x4001b8b1 + >; + }; + pinctrl_pmic_hw300: pmic-hw300-grp { fsl,pins = < MX6QDL_PAD_EIM_A25__GPIO5_IO02 0x1B0B0 @@ -408,6 +439,18 @@ vin-supply = <&sw1_reg>; }; +®_pu { + vin-supply = <&sw1_reg>; +}; + +®_vdd1p1 { + vin-supply = <&sw2_reg>; +}; + +®_vdd2p5 { + vin-supply = <&sw2_reg>; +}; + &uart1 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart1>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi @@ -51,16 +51,6 @@ vin-supply = <®_3p3v_s5>; }; - reg_3p3v_s0: regulator-3p3v-s0 { - compatible = "regulator-fixed"; - regulator-name = "V_3V3_S0"; - regulator-min-microvolt = <3300000>; - regulator-max-microvolt = <3300000>; - regulator-always-on; - regulator-boot-on; - vin-supply = <®_3p3v_s5>; - }; - reg_3p3v_s5: regulator-3p3v-s5 { compatible = "regulator-fixed"; regulator-name = "V_3V3_S5"; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi @@ -315,8 +315,8 @@ fsl,pins = < MX6QDL_PAD_EIM_D24__UART3_TX_DATA 0x1b0b1 MX6QDL_PAD_EIM_D25__UART3_RX_DATA 0x1b0b1 - MX6QDL_PAD_EIM_D30__UART3_RTS_B 0x1b0b1 - MX6QDL_PAD_EIM_D31__UART3_CTS_B 0x1b0b1 + MX6QDL_PAD_EIM_D31__UART3_RTS_B 0x1b0b1 + MX6QDL_PAD_EIM_D30__UART3_CTS_B 0x1b0b1 >; }; @@ -403,6 +403,7 @@ &uart3 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3>; + uart-has-rtscts; status = "disabled"; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-udoo.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-udoo.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-udoo.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-udoo.dtsi @@ -5,6 +5,8 @@ * Author: Fabio Estevam */ +#include + / { aliases { backlight = &backlight; @@ -218,6 +220,7 @@ MX6QDL_PAD_SD3_DAT1__SD3_DATA1 0x17059 MX6QDL_PAD_SD3_DAT2__SD3_DATA2 0x17059 MX6QDL_PAD_SD3_DAT3__SD3_DATA3 0x17059 + MX6QDL_PAD_SD3_DAT5__GPIO7_IO00 0x1b0b0 >; }; @@ -290,7 +293,7 @@ &usdhc3 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usdhc3>; - non-removable; + cd-gpios = <&gpio7 0 GPIO_ACTIVE_LOW>; status = "okay"; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl.dtsi @@ -766,7 +766,7 @@ regulator-name = "vddpu"; regulator-min-microvolt = <725000>; regulator-max-microvolt = <1450000>; - regulator-enable-ramp-delay = <150>; + regulator-enable-ramp-delay = <380>; anatop-reg-offset = <0x140>; anatop-vol-bit-shift = <9>; anatop-vol-bit-width = <5>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6qp.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6qp.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6qp.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qp.dtsi @@ -9,12 +9,18 @@ ocram2: sram@940000 { compatible = "mmio-sram"; reg = <0x00940000 0x20000>; + ranges = <0 0x00940000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; ocram3: sram@960000 { compatible = "mmio-sram"; reg = <0x00960000 0x20000>; + ranges = <0 0x00960000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx6sl.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx6sl.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx6sl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6sl.dtsi @@ -121,6 +121,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6SL_CLK_OCRAM>; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/imx7-colibri.dtsi linux-azure-5.4.0/arch/arm/boot/dts/imx7-colibri.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/imx7-colibri.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7-colibri.dtsi @@ -77,7 +77,7 @@ dailink_master: simple-audio-card,codec { sound-dai = <&codec>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; }; }; }; @@ -152,7 +152,7 @@ compatible = "fsl,sgtl5000"; #sound-dai-cells = <0>; reg = <0x0a>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_sai1_mclk>; VDDA-supply = <®_module_3v3_avdd>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/ls1021a.dtsi linux-azure-5.4.0/arch/arm/boot/dts/ls1021a.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/ls1021a.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/ls1021a.dtsi @@ -311,39 +311,6 @@ #thermal-sensor-cells = <1>; }; - thermal-zones { - cpu_thermal: cpu-thermal { - polling-delay-passive = <1000>; - polling-delay = <5000>; - - thermal-sensors = <&tmu 0>; - - trips { - cpu_alert: cpu-alert { - temperature = <85000>; - hysteresis = <2000>; - type = "passive"; - }; - cpu_crit: cpu-crit { - temperature = <95000>; - hysteresis = <2000>; - type = "critical"; - }; - }; - - cooling-maps { - map0 { - trip = <&cpu_alert>; - cooling-device = - <&cpu0 THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu1 THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>; - }; - }; - }; - }; - dspi0: spi@2100000 { compatible = "fsl,ls1021a-v1.0-dspi"; #address-cells = <1>; @@ -986,2 +953,35 @@ }; + + thermal-zones { + cpu_thermal: cpu-thermal { + polling-delay-passive = <1000>; + polling-delay = <5000>; + + thermal-sensors = <&tmu 0>; + + trips { + cpu_alert: cpu-alert { + temperature = <85000>; + hysteresis = <2000>; + type = "passive"; + }; + cpu_crit: cpu-crit { + temperature = <95000>; + hysteresis = <2000>; + type = "critical"; + }; + }; + + cooling-maps { + map0 { + trip = <&cpu_alert>; + cooling-device = + <&cpu0 THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu1 THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>; + }; + }; + }; + }; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/meson8.dtsi linux-azure-5.4.0/arch/arm/boot/dts/meson8.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/meson8.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/meson8.dtsi @@ -241,8 +241,13 @@ "pp2", "ppmmu2", "pp4", "ppmmu4", "pp5", "ppmmu5", "pp6", "ppmmu6"; resets = <&reset RESET_MALI>; + clocks = <&clkc CLKID_CLK81>, <&clkc CLKID_MALI>; clock-names = "bus", "core"; + + assigned-clocks = <&clkc CLKID_MALI>; + assigned-clock-rates = <318750000>; + operating-points-v2 = <&gpu_opp_table>; }; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/meson8b-odroidc1.dts linux-azure-5.4.0/arch/arm/boot/dts/meson8b-odroidc1.dts --- linux-azure-5.4.0/arch/arm/boot/dts/meson8b-odroidc1.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/meson8b-odroidc1.dts @@ -130,7 +130,7 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; - vin-supply = <&p5v0>; + pwm-supply = <&p5v0>; pwms = <&pwm_cd 0 12218 0>; pwm-dutycycle-range = <91 0>; @@ -162,7 +162,7 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; - vin-supply = <&p5v0>; + pwm-supply = <&p5v0>; pwms = <&pwm_cd 1 12218 0>; pwm-dutycycle-range = <91 0>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/ox820.dtsi linux-azure-5.4.0/arch/arm/boot/dts/ox820.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/ox820.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/ox820.dtsi @@ -287,7 +287,7 @@ clocks = <&armclk>; }; - gic: gic@1000 { + gic: interrupt-controller@1000 { compatible = "arm,arm11mp-gic"; interrupt-controller; #interrupt-cells = <3>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/r8a7779.dtsi linux-azure-5.4.0/arch/arm/boot/dts/r8a7779.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/r8a7779.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/r8a7779.dtsi @@ -463,6 +463,7 @@ reg = <0xfff80000 0x40000>; interrupts = ; clocks = <&mstp1_clks R8A7779_CLK_DU>; + clock-names = "du.0"; power-domains = <&sysc R8A7779_PD_ALWAYS_ON>; status = "disabled"; diff -u linux-azure-5.4.0/arch/arm/boot/dts/rk322x.dtsi linux-azure-5.4.0/arch/arm/boot/dts/rk322x.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/rk322x.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/rk322x.dtsi @@ -570,10 +570,9 @@ compatible = "rockchip,iommu"; reg = <0x20020800 0x100>; interrupts = ; - interrupt-names = "vpu_mmu"; clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>; clock-names = "aclk", "iface"; - iommu-cells = <0>; + #iommu-cells = <0>; status = "disabled"; }; @@ -581,10 +580,9 @@ compatible = "rockchip,iommu"; reg = <0x20030480 0x40>, <0x200304c0 0x40>; interrupts = ; - interrupt-names = "vdec_mmu"; clocks = <&cru ACLK_RKVDEC>, <&cru HCLK_RKVDEC>; clock-names = "aclk", "iface"; - iommu-cells = <0>; + #iommu-cells = <0>; status = "disabled"; }; @@ -614,7 +612,6 @@ compatible = "rockchip,iommu"; reg = <0x20053f00 0x100>; interrupts = ; - interrupt-names = "vop_mmu"; clocks = <&cru ACLK_VOP>, <&cru HCLK_VOP>; clock-names = "aclk", "iface"; #iommu-cells = <0>; @@ -625,10 +622,9 @@ compatible = "rockchip,iommu"; reg = <0x20070800 0x100>; interrupts = ; - interrupt-names = "iep_mmu"; clocks = <&cru ACLK_IEP>, <&cru HCLK_IEP>; clock-names = "aclk", "iface"; - iommu-cells = <0>; + #iommu-cells = <0>; status = "disabled"; }; @@ -639,8 +635,8 @@ interrupts = ; assigned-clocks = <&cru SCLK_HDMI_PHY>; assigned-clock-parents = <&hdmi_phy>; - clocks = <&cru SCLK_HDMI_HDCP>, <&cru PCLK_HDMI_CTRL>, <&cru SCLK_HDMI_CEC>; - clock-names = "isfr", "iahb", "cec"; + clocks = <&cru PCLK_HDMI_CTRL>, <&cru SCLK_HDMI_HDCP>, <&cru SCLK_HDMI_CEC>; + clock-names = "iahb", "isfr", "cec"; pinctrl-names = "default"; pinctrl-0 = <&hdmii2c_xfer &hdmi_hpd &hdmi_cec>; resets = <&cru SRST_HDMI_P>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/sama5d2.dtsi linux-azure-5.4.0/arch/arm/boot/dts/sama5d2.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/sama5d2.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/sama5d2.dtsi @@ -526,7 +526,7 @@ pmecc: ecc-engine@f8014070 { compatible = "atmel,sama5d2-pmecc"; reg = <0xf8014070 0x490>, - <0xf8014500 0x100>; + <0xf8014500 0x200>; }; }; @@ -933,7 +933,7 @@ clocks = <&pmc PMC_TYPE_PERIPHERAL 55>, <&pmc PMC_TYPE_GCK 55>; clock-names = "pclk", "gclk"; assigned-clocks = <&pmc PMC_TYPE_CORE PMC_I2S1_MUX>; - assigned-parrents = <&pmc PMC_TYPE_GCK 55>; + assigned-clock-parents = <&pmc PMC_TYPE_GCK 55>; status = "disabled"; }; diff -u linux-azure-5.4.0/arch/arm/boot/dts/stm32f469-disco.dts linux-azure-5.4.0/arch/arm/boot/dts/stm32f469-disco.dts --- linux-azure-5.4.0/arch/arm/boot/dts/stm32f469-disco.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32f469-disco.dts @@ -104,12 +104,10 @@ }; }; - gpio_keys { + gpio-keys { compatible = "gpio-keys"; - #address-cells = <1>; - #size-cells = <0>; autorepeat; - button@0 { + button-0 { label = "User"; linux,code = ; gpios = <&gpioa 0 GPIO_ACTIVE_HIGH>; diff -u linux-azure-5.4.0/arch/arm/boot/dts/uniphier-pxs2.dtsi linux-azure-5.4.0/arch/arm/boot/dts/uniphier-pxs2.dtsi --- linux-azure-5.4.0/arch/arm/boot/dts/uniphier-pxs2.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/uniphier-pxs2.dtsi @@ -585,8 +585,8 @@ compatible = "socionext,uniphier-dwc3", "snps,dwc3"; status = "disabled"; reg = <0x65a00000 0xcd00>; - interrupt-names = "host", "peripheral"; - interrupts = <0 134 4>, <0 135 4>; + interrupt-names = "dwc_usb3"; + interrupts = <0 134 4>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usb0>, <&pinctrl_usb2>; clock-names = "ref", "bus_early", "suspend"; @@ -681,8 +681,8 @@ compatible = "socionext,uniphier-dwc3", "snps,dwc3"; status = "disabled"; reg = <0x65c00000 0xcd00>; - interrupt-names = "host", "peripheral"; - interrupts = <0 137 4>, <0 138 4>; + interrupt-names = "dwc_usb3"; + interrupts = <0 137 4>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usb1>, <&pinctrl_usb3>; clock-names = "ref", "bus_early", "suspend"; diff -u linux-azure-5.4.0/arch/arm/include/asm/assembler.h linux-azure-5.4.0/arch/arm/include/asm/assembler.h --- linux-azure-5.4.0/arch/arm/include/asm/assembler.h +++ linux-azure-5.4.0/arch/arm/include/asm/assembler.h @@ -107,6 +107,16 @@ .endm #endif +#if __LINUX_ARM_ARCH__ < 7 + .macro dsb, args + mcr p15, 0, r0, c7, c10, 4 + .endm + + .macro isb, args + mcr p15, 0, r0, c7, c5, 4 + .endm +#endif + .macro asm_trace_hardirqs_off, save=1 #if defined(CONFIG_TRACE_IRQFLAGS) .if \save @@ -269,10 +279,9 @@ .endif ;\ .popsection #define ALT_UP_B(label) \ - .equ up_b_offset, label - 9998b ;\ .pushsection ".alt.smp.init", "a" ;\ .long 9998b ;\ - W(b) . + up_b_offset ;\ + W(b) . + (label - 9998b) ;\ .popsection #else #define ALT_SMP(instr...) diff -u linux-azure-5.4.0/arch/arm/kernel/entry-armv.S linux-azure-5.4.0/arch/arm/kernel/entry-armv.S --- linux-azure-5.4.0/arch/arm/kernel/entry-armv.S +++ linux-azure-5.4.0/arch/arm/kernel/entry-armv.S @@ -596,11 +596,9 @@ tstne r0, #0x04000000 @ bit 26 set on both ARM and Thumb-2 reteq lr and r8, r0, #0x00000f00 @ mask out CP number - THUMB( lsr r8, r8, #8 ) mov r7, #1 - add r6, r10, #TI_USED_CP - ARM( strb r7, [r6, r8, lsr #8] ) @ set appropriate used_cp[] - THUMB( strb r7, [r6, r8] ) @ set appropriate used_cp[] + add r6, r10, r8, lsr #8 @ add used_cp[] array offset first + strb r7, [r6, #TI_USED_CP] @ set appropriate used_cp[] #ifdef CONFIG_IWMMXT @ Test if we need to give access to iWMMXt coprocessors ldr r5, [r10, #TI_FLAGS] @@ -609,7 +607,7 @@ bcs iwmmxt_task_enable #endif ARM( add pc, pc, r8, lsr #6 ) - THUMB( lsl r8, r8, #2 ) + THUMB( lsr r8, r8, #6 ) THUMB( add pc, r8 ) nop @@ -1007,12 +1005,11 @@ sub lr, lr, #\correction .endif - @ - @ Save r0, lr_ (parent PC) and spsr_ - @ (parent CPSR) - @ + @ Save r0, lr_ (parent PC) stmia sp, {r0, lr} @ save r0, lr - mrs lr, spsr + + @ Save spsr_ (parent CPSR) +2: mrs lr, spsr str lr, [sp, #8] @ save spsr @ @@ -1033,6 +1030,44 @@ movs pc, lr @ branch to handler in SVC mode ENDPROC(vector_\name) +#ifdef CONFIG_HARDEN_BRANCH_HISTORY + .subsection 1 + .align 5 +vector_bhb_loop8_\name: + .if \correction + sub lr, lr, #\correction + .endif + + @ Save r0, lr_ (parent PC) + stmia sp, {r0, lr} + + @ bhb workaround + mov r0, #8 +3: W(b) . + 4 + subs r0, r0, #1 + bne 3b + dsb + isb + b 2b +ENDPROC(vector_bhb_loop8_\name) + +vector_bhb_bpiall_\name: + .if \correction + sub lr, lr, #\correction + .endif + + @ Save r0, lr_ (parent PC) + stmia sp, {r0, lr} + + @ bhb workaround + mcr p15, 0, r0, c7, c5, 6 @ BPIALL + @ isb not needed due to "movs pc, lr" in the vector stub + @ which gives a "context synchronisation". + b 2b +ENDPROC(vector_bhb_bpiall_\name) + .previous +#endif + .align 2 @ handler addresses follow this label 1: @@ -1041,6 +1076,10 @@ .section .stubs, "ax", %progbits @ This must be the first word .word vector_swi +#ifdef CONFIG_HARDEN_BRANCH_HISTORY + .word vector_bhb_loop8_swi + .word vector_bhb_bpiall_swi +#endif vector_rst: ARM( swi SYS_ERROR0 ) @@ -1155,8 +1194,10 @@ * FIQ "NMI" handler *----------------------------------------------------------------------------- * Handle a FIQ using the SVC stack allowing FIQ act like NMI on x86 - * systems. + * systems. This must be the last vector stub, so lets place it in its own + * subsection. */ + .subsection 2 vector_stub fiq, FIQ_MODE, 4 .long __fiq_usr @ 0 (USR_26 / USR_32) @@ -1189,6 +1230,30 @@ W(b) vector_irq W(b) vector_fiq +#ifdef CONFIG_HARDEN_BRANCH_HISTORY + .section .vectors.bhb.loop8, "ax", %progbits +.L__vectors_bhb_loop8_start: + W(b) vector_rst + W(b) vector_bhb_loop8_und + W(ldr) pc, .L__vectors_bhb_loop8_start + 0x1004 + W(b) vector_bhb_loop8_pabt + W(b) vector_bhb_loop8_dabt + W(b) vector_addrexcptn + W(b) vector_bhb_loop8_irq + W(b) vector_bhb_loop8_fiq + + .section .vectors.bhb.bpiall, "ax", %progbits +.L__vectors_bhb_bpiall_start: + W(b) vector_rst + W(b) vector_bhb_bpiall_und + W(ldr) pc, .L__vectors_bhb_bpiall_start + 0x1008 + W(b) vector_bhb_bpiall_pabt + W(b) vector_bhb_bpiall_dabt + W(b) vector_addrexcptn + W(b) vector_bhb_bpiall_irq + W(b) vector_bhb_bpiall_fiq +#endif + .data .align 2 diff -u linux-azure-5.4.0/arch/arm/kernel/setup.c linux-azure-5.4.0/arch/arm/kernel/setup.c --- linux-azure-5.4.0/arch/arm/kernel/setup.c +++ linux-azure-5.4.0/arch/arm/kernel/setup.c @@ -544,9 +544,11 @@ * In Thumb-2, msr with an immediate value is not allowed. */ #ifdef CONFIG_THUMB2_KERNEL -#define PLC "r" +#define PLC_l "l" +#define PLC_r "r" #else -#define PLC "I" +#define PLC_l "I" +#define PLC_r "I" #endif /* @@ -568,15 +570,15 @@ "msr cpsr_c, %9" : : "r" (stk), - PLC (PSR_F_BIT | PSR_I_BIT | IRQ_MODE), + PLC_r (PSR_F_BIT | PSR_I_BIT | IRQ_MODE), "I" (offsetof(struct stack, irq[0])), - PLC (PSR_F_BIT | PSR_I_BIT | ABT_MODE), + PLC_r (PSR_F_BIT | PSR_I_BIT | ABT_MODE), "I" (offsetof(struct stack, abt[0])), - PLC (PSR_F_BIT | PSR_I_BIT | UND_MODE), + PLC_r (PSR_F_BIT | PSR_I_BIT | UND_MODE), "I" (offsetof(struct stack, und[0])), - PLC (PSR_F_BIT | PSR_I_BIT | FIQ_MODE), + PLC_r (PSR_F_BIT | PSR_I_BIT | FIQ_MODE), "I" (offsetof(struct stack, fiq[0])), - PLC (PSR_F_BIT | PSR_I_BIT | SVC_MODE) + PLC_l (PSR_F_BIT | PSR_I_BIT | SVC_MODE) : "r14"); #endif } diff -u linux-azure-5.4.0/arch/arm/kernel/stacktrace.c linux-azure-5.4.0/arch/arm/kernel/stacktrace.c --- linux-azure-5.4.0/arch/arm/kernel/stacktrace.c +++ linux-azure-5.4.0/arch/arm/kernel/stacktrace.c @@ -53,18 +53,17 @@ return -EINVAL; frame->sp = frame->fp; - frame->fp = *(unsigned long *)(fp); - frame->pc = frame->lr; - frame->lr = *(unsigned long *)(fp + 4); + frame->fp = READ_ONCE_NOCHECK(*(unsigned long *)(fp)); + frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp + 4)); #else /* check current frame pointer is within bounds */ if (fp < low + 12 || fp > high - 4) return -EINVAL; /* restore the registers from the stack frame */ - frame->fp = *(unsigned long *)(fp - 12); - frame->sp = *(unsigned long *)(fp - 8); - frame->pc = *(unsigned long *)(fp - 4); + frame->fp = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 12)); + frame->sp = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 8)); + frame->pc = READ_ONCE_NOCHECK(*(unsigned long *)(fp - 4)); #endif return 0; diff -u linux-azure-5.4.0/arch/arm/kernel/traps.c linux-azure-5.4.0/arch/arm/kernel/traps.c --- linux-azure-5.4.0/arch/arm/kernel/traps.c +++ linux-azure-5.4.0/arch/arm/kernel/traps.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -799,10 +800,59 @@ } #endif +#ifndef CONFIG_CPU_V7M +static void copy_from_lma(void *vma, void *lma_start, void *lma_end) +{ + memcpy(vma, lma_start, lma_end - lma_start); +} + +static void flush_vectors(void *vma, size_t offset, size_t size) +{ + unsigned long start = (unsigned long)vma + offset; + unsigned long end = start + size; + + flush_icache_range(start, end); +} + +#ifdef CONFIG_HARDEN_BRANCH_HISTORY +int spectre_bhb_update_vectors(unsigned int method) +{ + extern char __vectors_bhb_bpiall_start[], __vectors_bhb_bpiall_end[]; + extern char __vectors_bhb_loop8_start[], __vectors_bhb_loop8_end[]; + void *vec_start, *vec_end; + + if (system_state > SYSTEM_SCHEDULING) { + pr_err("CPU%u: Spectre BHB workaround too late - system vulnerable\n", + smp_processor_id()); + return SPECTRE_VULNERABLE; + } + + switch (method) { + case SPECTRE_V2_METHOD_LOOP8: + vec_start = __vectors_bhb_loop8_start; + vec_end = __vectors_bhb_loop8_end; + break; + + case SPECTRE_V2_METHOD_BPIALL: + vec_start = __vectors_bhb_bpiall_start; + vec_end = __vectors_bhb_bpiall_end; + break; + + default: + pr_err("CPU%u: unknown Spectre BHB state %d\n", + smp_processor_id(), method); + return SPECTRE_VULNERABLE; + } + + copy_from_lma(vectors_page, vec_start, vec_end); + flush_vectors(vectors_page, 0, vec_end - vec_start); + + return SPECTRE_MITIGATED; +} +#endif + void __init early_trap_init(void *vectors_base) { -#ifndef CONFIG_CPU_V7M - unsigned long vectors = (unsigned long)vectors_base; extern char __stubs_start[], __stubs_end[]; extern char __vectors_start[], __vectors_end[]; unsigned i; @@ -826,14 +876,17 @@ - memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start); - memcpy((void *)vectors + 0x1000, __stubs_start, __stubs_end - __stubs_start); + copy_from_lma(vectors_base, __vectors_start, __vectors_end); + copy_from_lma(vectors_base + 0x1000, __stubs_start, __stubs_end); kuser_init(vectors_base); - flush_icache_range(vectors, vectors + PAGE_SIZE * 2); + flush_vectors(vectors_base, 0, PAGE_SIZE * 2); +} #else /* ifndef CONFIG_CPU_V7M */ +void __init early_trap_init(void *vectors_base) +{ /* * on V7-M there is no need to copy the vector table to a dedicated * memory area. The address is configurable and so a table in the kernel * image can be used. */ -#endif } +#endif diff -u linux-azure-5.4.0/arch/arm/mach-at91/pm.c linux-azure-5.4.0/arch/arm/mach-at91/pm.c --- linux-azure-5.4.0/arch/arm/mach-at91/pm.c +++ linux-azure-5.4.0/arch/arm/mach-at91/pm.c @@ -103,7 +103,7 @@ static const struct of_device_id sama5d2_ws_ids[] = { { .compatible = "atmel,sama5d2-gem", .data = &ws_info[0] }, - { .compatible = "atmel,at91rm9200-rtc", .data = &ws_info[1] }, + { .compatible = "atmel,sama5d2-rtc", .data = &ws_info[1] }, { .compatible = "atmel,sama5d3-udc", .data = &ws_info[2] }, { .compatible = "atmel,at91rm9200-ohci", .data = &ws_info[2] }, { .compatible = "usb-ohci", .data = &ws_info[2] }, @@ -114,12 +114,12 @@ }; static const struct of_device_id sam9x60_ws_ids[] = { - { .compatible = "atmel,at91sam9x5-rtc", .data = &ws_info[1] }, + { .compatible = "microchip,sam9x60-rtc", .data = &ws_info[1] }, { .compatible = "atmel,at91rm9200-ohci", .data = &ws_info[2] }, { .compatible = "usb-ohci", .data = &ws_info[2] }, { .compatible = "atmel,at91sam9g45-ehci", .data = &ws_info[2] }, { .compatible = "usb-ehci", .data = &ws_info[2] }, - { .compatible = "atmel,at91sam9260-rtt", .data = &ws_info[4] }, + { .compatible = "microchip,sam9x60-rtt", .data = &ws_info[4] }, { .compatible = "cdns,sam9x60-macb", .data = &ws_info[5] }, { /* sentinel */ } }; diff -u linux-azure-5.4.0/arch/arm/mach-davinci/Kconfig linux-azure-5.4.0/arch/arm/mach-davinci/Kconfig --- linux-azure-5.4.0/arch/arm/mach-davinci/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-davinci/Kconfig @@ -5,7 +5,6 @@ depends on ARCH_MULTI_V5 select DAVINCI_TIMER select ZONE_DMA - select ARCH_HAS_HOLES_MEMORYMODEL select PM_GENERIC_DOMAINS if PM select PM_GENERIC_DOMAINS_OF if PM && OF select REGMAP_MMIO diff -u linux-azure-5.4.0/arch/arm/mach-imx/pm-imx6.c linux-azure-5.4.0/arch/arm/mach-imx/pm-imx6.c --- linux-azure-5.4.0/arch/arm/mach-imx/pm-imx6.c +++ linux-azure-5.4.0/arch/arm/mach-imx/pm-imx6.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -618,6 +619,7 @@ static void imx6_pm_stby_poweroff(void) { + gic_cpu_if_down(0); imx6_set_lpm(STOP_POWER_OFF); imx6q_suspend_finish(0); diff -u linux-azure-5.4.0/arch/arm/mach-omap2/display.c linux-azure-5.4.0/arch/arm/mach-omap2/display.c --- linux-azure-5.4.0/arch/arm/mach-omap2/display.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/display.c @@ -211,6 +211,7 @@ node = of_find_node_by_name(NULL, "omap4_padconf_global"); if (node) omap4_dsi_mux_syscon = syscon_node_to_regmap(node); + of_node_put(node); return 0; } @@ -259,13 +260,15 @@ if (!pdev) { pr_err("Unable to find DSS platform device\n"); + of_node_put(node); return -ENODEV; } r = of_platform_populate(node, NULL, NULL, &pdev->dev); + put_device(&pdev->dev); + of_node_put(node); if (r) { pr_err("Unable to populate DSS submodule devices\n"); - put_device(&pdev->dev); return r; } diff -u linux-azure-5.4.0/arch/arm/mach-omap2/omap_hwmod.c linux-azure-5.4.0/arch/arm/mach-omap2/omap_hwmod.c --- linux-azure-5.4.0/arch/arm/mach-omap2/omap_hwmod.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/omap_hwmod.c @@ -782,8 +782,10 @@ for_each_matching_node(np, ti_clkctrl_match_table) { ret = _setup_clkctrl_provider(np); - if (ret) + if (ret) { + of_node_put(np); break; + } } return ret; @@ -3656,6 +3658,8 @@ oh->flags |= HWMOD_SWSUP_SIDLE_ACT; if (data->cfg->quirks & SYSC_QUIRK_SWSUP_MSTANDBY) oh->flags |= HWMOD_SWSUP_MSTANDBY; + if (data->cfg->quirks & SYSC_QUIRK_CLKDM_NOAUTO) + oh->flags |= HWMOD_CLKDM_NOAUTO; error = omap_hwmod_check_module(dev, oh, data, sysc_fields, rev_offs, sysc_offs, syss_offs, diff -u linux-azure-5.4.0/arch/arm/mach-vexpress/spc.c linux-azure-5.4.0/arch/arm/mach-vexpress/spc.c --- linux-azure-5.4.0/arch/arm/mach-vexpress/spc.c +++ linux-azure-5.4.0/arch/arm/mach-vexpress/spc.c @@ -580,7 +580,7 @@ } cluster = topology_physical_package_id(cpu_dev->id); - if (init_opp_table[cluster]) + if (cluster < 0 || init_opp_table[cluster]) continue; if (ve_init_opp_table(cpu_dev)) diff -u linux-azure-5.4.0/arch/arm/mm/init.c linux-azure-5.4.0/arch/arm/mm/init.c --- linux-azure-5.4.0/arch/arm/mm/init.c +++ linux-azure-5.4.0/arch/arm/mm/init.c @@ -176,11 +176,22 @@ int pfn_valid(unsigned long pfn) { phys_addr_t addr = __pfn_to_phys(pfn); + unsigned long pageblock_size = PAGE_SIZE * pageblock_nr_pages; if (__phys_to_pfn(addr) != pfn) return 0; - return memblock_is_map_memory(__pfn_to_phys(pfn)); + /* + * If address less than pageblock_size bytes away from a present + * memory chunk there still will be a memory map entry for it + * because we round freed memory map to the pageblock boundaries. + */ + if (memblock_overlaps_region(&memblock.memory, + ALIGN_DOWN(addr, pageblock_size), + pageblock_size)) + return 1; + + return 0; } EXPORT_SYMBOL(pfn_valid); #endif @@ -371,14 +382,14 @@ */ start = min(start, ALIGN(prev_end, PAGES_PER_SECTION)); -#else +#endif /* - * Align down here since the VM subsystem insists that the - * memmap entries are valid from the bank start aligned to - * MAX_ORDER_NR_PAGES. + * Align down here since many operations in VM subsystem + * presume that there are no holes in the memory map inside + * a pageblock */ - start = round_down(start, MAX_ORDER_NR_PAGES); -#endif + start = round_down(start, pageblock_nr_pages); + /* * If we had a previous bank, and there is a space * between the current bank and the previous, free it. @@ -387,18 +398,20 @@ free_memmap(prev_end, start); /* - * Align up here since the VM subsystem insists that the - * memmap entries are valid from the bank end aligned to - * MAX_ORDER_NR_PAGES. + * Align up here since many operations in VM subsystem + * presume that there are no holes in the memory map inside + * a pageblock */ prev_end = ALIGN(memblock_region_memory_end_pfn(reg), - MAX_ORDER_NR_PAGES); + pageblock_nr_pages); } #ifdef CONFIG_SPARSEMEM - if (!IS_ALIGNED(prev_end, PAGES_PER_SECTION)) + if (!IS_ALIGNED(prev_end, PAGES_PER_SECTION)) { + prev_end = ALIGN(prev_end, pageblock_nr_pages); free_memmap(prev_end, ALIGN(prev_end, PAGES_PER_SECTION)); + } #endif } @@ -469,7 +482,11 @@ void __init mem_init(void) { #ifdef CONFIG_ARM_LPAE - swiotlb_init(1); + if (swiotlb_force == SWIOTLB_FORCE || + max_pfn > arm_dma_pfn_limit) + swiotlb_init(1); + else + swiotlb_force = SWIOTLB_NO_FORCE; #endif set_max_mapnr(pfn_to_page(max_pfn) - mem_map); diff -u linux-azure-5.4.0/arch/arm/mm/mmu.c linux-azure-5.4.0/arch/arm/mm/mmu.c --- linux-azure-5.4.0/arch/arm/mm/mmu.c +++ linux-azure-5.4.0/arch/arm/mm/mmu.c @@ -229,12 +229,14 @@ static int __init early_cachepolicy(char *p) { pr_warn("cachepolicy kernel parameter not supported without cp15\n"); + return 0; } early_param("cachepolicy", early_cachepolicy); static int __init noalign_setup(char *__unused) { pr_warn("noalign kernel parameter not supported without cp15\n"); + return 1; } __setup("noalign", noalign_setup); @@ -314,6 +316,17 @@ .prot_sect = PMD_TYPE_SECT | PMD_SECT_AP_WRITE, .domain = DOMAIN_KERNEL, }, + [MT_MEMORY_RO] = { + .prot_pte = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | + L_PTE_XN | L_PTE_RDONLY, + .prot_l1 = PMD_TYPE_TABLE, +#ifdef CONFIG_ARM_LPAE + .prot_sect = PMD_TYPE_SECT | L_PMD_SECT_RDONLY | PMD_SECT_AP2, +#else + .prot_sect = PMD_TYPE_SECT, +#endif + .domain = DOMAIN_KERNEL, + }, [MT_ROM] = { .prot_sect = PMD_TYPE_SECT, .domain = DOMAIN_KERNEL, @@ -415,9 +428,9 @@ FIXADDR_END); BUG_ON(idx >= __end_of_fixed_addresses); - /* we only support device mappings until pgprot_kernel has been set */ + /* We support only device mappings before pgprot_kernel is set. */ if (WARN_ON(pgprot_val(prot) != pgprot_val(FIXMAP_PAGE_IO) && - pgprot_val(pgprot_kernel) == 0)) + pgprot_val(prot) && pgprot_val(pgprot_kernel) == 0)) return; if (pgprot_val(prot)) @@ -513,6 +526,7 @@ /* Also setup NX memory mapping */ mem_types[MT_MEMORY_RW].prot_sect |= PMD_SECT_XN; + mem_types[MT_MEMORY_RO].prot_sect |= PMD_SECT_XN; } if (cpu_arch >= CPU_ARCH_ARMv7 && (cr & CR_TRE)) { /* @@ -595,6 +609,7 @@ mem_types[MT_ROM].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE; mem_types[MT_MINICLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE; mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE; + mem_types[MT_MEMORY_RO].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE; #endif /* @@ -615,6 +630,8 @@ mem_types[MT_MEMORY_RWX].prot_pte |= L_PTE_SHARED; mem_types[MT_MEMORY_RW].prot_sect |= PMD_SECT_S; mem_types[MT_MEMORY_RW].prot_pte |= L_PTE_SHARED; + mem_types[MT_MEMORY_RO].prot_sect |= PMD_SECT_S; + mem_types[MT_MEMORY_RO].prot_pte |= L_PTE_SHARED; mem_types[MT_MEMORY_DMA_READY].prot_pte |= L_PTE_SHARED; mem_types[MT_MEMORY_RWX_NONCACHED].prot_sect |= PMD_SECT_S; mem_types[MT_MEMORY_RWX_NONCACHED].prot_pte |= L_PTE_SHARED; @@ -678,6 +695,8 @@ mem_types[MT_MEMORY_RWX].prot_pte |= kern_pgprot; mem_types[MT_MEMORY_RW].prot_sect |= ecc_mask | cp->pmd; mem_types[MT_MEMORY_RW].prot_pte |= kern_pgprot; + mem_types[MT_MEMORY_RO].prot_sect |= ecc_mask | cp->pmd; + mem_types[MT_MEMORY_RO].prot_pte |= kern_pgprot; mem_types[MT_MEMORY_DMA_READY].prot_pte |= kern_pgprot; mem_types[MT_MEMORY_RWX_NONCACHED].prot_sect |= ecc_mask; mem_types[MT_ROM].prot_sect |= cp->pmd; @@ -1359,7 +1378,7 @@ map.pfn = __phys_to_pfn(__atags_pointer & SECTION_MASK); map.virtual = FDT_FIXED_BASE; map.length = FDT_FIXED_SIZE; - map.type = MT_ROM; + map.type = MT_MEMORY_RO; create_mapping(&map); } diff -u linux-azure-5.4.0/arch/arm/mm/proc-macros.S linux-azure-5.4.0/arch/arm/mm/proc-macros.S --- linux-azure-5.4.0/arch/arm/mm/proc-macros.S +++ linux-azure-5.4.0/arch/arm/mm/proc-macros.S @@ -342,6 +342,7 @@ .macro define_tlb_functions name:req, flags_up:req, flags_smp .type \name\()_tlb_fns, #object + .align 2 ENTRY(\name\()_tlb_fns) .long \name\()_flush_user_tlb_range .long \name\()_flush_kern_tlb_range diff -u linux-azure-5.4.0/arch/arm/mm/proc-v7-bugs.c linux-azure-5.4.0/arch/arm/mm/proc-v7-bugs.c --- linux-azure-5.4.0/arch/arm/mm/proc-v7-bugs.c +++ linux-azure-5.4.0/arch/arm/mm/proc-v7-bugs.c @@ -7,8 +7,35 @@ #include #include #include +#include #include +#ifdef CONFIG_ARM_PSCI +static int __maybe_unused spectre_v2_get_cpu_fw_mitigation_state(void) +{ + struct arm_smccc_res res; + + arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, + ARM_SMCCC_ARCH_WORKAROUND_1, &res); + + switch ((int)res.a0) { + case SMCCC_RET_SUCCESS: + return SPECTRE_MITIGATED; + + case SMCCC_ARCH_WORKAROUND_RET_UNAFFECTED: + return SPECTRE_UNAFFECTED; + + default: + return SPECTRE_VULNERABLE; + } +} +#else +static int __maybe_unused spectre_v2_get_cpu_fw_mitigation_state(void) +{ + return SPECTRE_VULNERABLE; +} +#endif + #ifdef CONFIG_HARDEN_BRANCH_PREDICTOR DEFINE_PER_CPU(harden_branch_predictor_fn_t, harden_branch_predictor_fn); @@ -37,13 +64,60 @@ arm_smccc_1_1_hvc(ARM_SMCCC_ARCH_WORKAROUND_1, NULL); } -static void cpu_v7_spectre_init(void) +static unsigned int spectre_v2_install_workaround(unsigned int method) { const char *spectre_v2_method = NULL; int cpu = smp_processor_id(); if (per_cpu(harden_branch_predictor_fn, cpu)) - return; + return SPECTRE_MITIGATED; + + switch (method) { + case SPECTRE_V2_METHOD_BPIALL: + per_cpu(harden_branch_predictor_fn, cpu) = + harden_branch_predictor_bpiall; + spectre_v2_method = "BPIALL"; + break; + + case SPECTRE_V2_METHOD_ICIALLU: + per_cpu(harden_branch_predictor_fn, cpu) = + harden_branch_predictor_iciallu; + spectre_v2_method = "ICIALLU"; + break; + + case SPECTRE_V2_METHOD_HVC: + per_cpu(harden_branch_predictor_fn, cpu) = + call_hvc_arch_workaround_1; + cpu_do_switch_mm = cpu_v7_hvc_switch_mm; + spectre_v2_method = "hypervisor"; + break; + + case SPECTRE_V2_METHOD_SMC: + per_cpu(harden_branch_predictor_fn, cpu) = + call_smc_arch_workaround_1; + cpu_do_switch_mm = cpu_v7_smc_switch_mm; + spectre_v2_method = "firmware"; + break; + } + + if (spectre_v2_method) + pr_info("CPU%u: Spectre v2: using %s workaround\n", + smp_processor_id(), spectre_v2_method); + + return SPECTRE_MITIGATED; +} +#else +static unsigned int spectre_v2_install_workaround(unsigned int method) +{ + pr_info_once("Spectre V2: workarounds disabled by configuration\n"); + + return SPECTRE_VULNERABLE; +} +#endif + +static void cpu_v7_spectre_v2_init(void) +{ + unsigned int state, method = 0; switch (read_cpuid_part()) { case ARM_CPU_PART_CORTEX_A8: @@ -52,32 +126,37 @@ case ARM_CPU_PART_CORTEX_A17: case ARM_CPU_PART_CORTEX_A73: case ARM_CPU_PART_CORTEX_A75: - per_cpu(harden_branch_predictor_fn, cpu) = - harden_branch_predictor_bpiall; - spectre_v2_method = "BPIALL"; + state = SPECTRE_MITIGATED; + method = SPECTRE_V2_METHOD_BPIALL; break; case ARM_CPU_PART_CORTEX_A15: case ARM_CPU_PART_BRAHMA_B15: - per_cpu(harden_branch_predictor_fn, cpu) = - harden_branch_predictor_iciallu; - spectre_v2_method = "ICIALLU"; + state = SPECTRE_MITIGATED; + method = SPECTRE_V2_METHOD_ICIALLU; break; -#ifdef CONFIG_ARM_PSCI case ARM_CPU_PART_BRAHMA_B53: /* Requires no workaround */ + state = SPECTRE_UNAFFECTED; break; + default: /* Other ARM CPUs require no workaround */ - if (read_cpuid_implementor() == ARM_CPU_IMP_ARM) + if (read_cpuid_implementor() == ARM_CPU_IMP_ARM) { + state = SPECTRE_UNAFFECTED; break; + } /* fallthrough */ - /* Cortex A57/A72 require firmware workaround */ + /* Cortex A57/A72 require firmware workaround */ case ARM_CPU_PART_CORTEX_A57: case ARM_CPU_PART_CORTEX_A72: { struct arm_smccc_res res; + state = spectre_v2_get_cpu_fw_mitigation_state(); + if (state != SPECTRE_MITIGATED) + break; + if (psci_ops.smccc_version == SMCCC_VERSION_1_0) break; @@ -87,10 +166,7 @@ ARM_SMCCC_ARCH_WORKAROUND_1, &res); if ((int)res.a0 != 0) break; - per_cpu(harden_branch_predictor_fn, cpu) = - call_hvc_arch_workaround_1; - cpu_do_switch_mm = cpu_v7_hvc_switch_mm; - spectre_v2_method = "hypervisor"; + method = SPECTRE_V2_METHOD_HVC; break; case PSCI_CONDUIT_SMC: @@ -98,29 +174,97 @@ ARM_SMCCC_ARCH_WORKAROUND_1, &res); if ((int)res.a0 != 0) break; - per_cpu(harden_branch_predictor_fn, cpu) = - call_smc_arch_workaround_1; - cpu_do_switch_mm = cpu_v7_smc_switch_mm; - spectre_v2_method = "firmware"; + method = SPECTRE_V2_METHOD_SMC; break; default: + state = SPECTRE_VULNERABLE; break; } } -#endif } - if (spectre_v2_method) - pr_info("CPU%u: Spectre v2: using %s workaround\n", - smp_processor_id(), spectre_v2_method); + if (state == SPECTRE_MITIGATED) + state = spectre_v2_install_workaround(method); + + spectre_v2_update_state(state, method); +} + +#ifdef CONFIG_HARDEN_BRANCH_HISTORY +static int spectre_bhb_method; + +static const char *spectre_bhb_method_name(int method) +{ + switch (method) { + case SPECTRE_V2_METHOD_LOOP8: + return "loop"; + + case SPECTRE_V2_METHOD_BPIALL: + return "BPIALL"; + + default: + return "unknown"; + } +} + +static int spectre_bhb_install_workaround(int method) +{ + if (spectre_bhb_method != method) { + if (spectre_bhb_method) { + pr_err("CPU%u: Spectre BHB: method disagreement, system vulnerable\n", + smp_processor_id()); + + return SPECTRE_VULNERABLE; + } + + if (spectre_bhb_update_vectors(method) == SPECTRE_VULNERABLE) + return SPECTRE_VULNERABLE; + + spectre_bhb_method = method; + + pr_info("CPU%u: Spectre BHB: enabling %s workaround for all CPUs\n", + smp_processor_id(), spectre_bhb_method_name(method)); + } + + return SPECTRE_MITIGATED; } #else -static void cpu_v7_spectre_init(void) +static int spectre_bhb_install_workaround(int method) { + return SPECTRE_VULNERABLE; } #endif +static void cpu_v7_spectre_bhb_init(void) +{ + unsigned int state, method = 0; + + switch (read_cpuid_part()) { + case ARM_CPU_PART_CORTEX_A15: + case ARM_CPU_PART_BRAHMA_B15: + case ARM_CPU_PART_CORTEX_A57: + case ARM_CPU_PART_CORTEX_A72: + state = SPECTRE_MITIGATED; + method = SPECTRE_V2_METHOD_LOOP8; + break; + + case ARM_CPU_PART_CORTEX_A73: + case ARM_CPU_PART_CORTEX_A75: + state = SPECTRE_MITIGATED; + method = SPECTRE_V2_METHOD_BPIALL; + break; + + default: + state = SPECTRE_UNAFFECTED; + break; + } + + if (state == SPECTRE_MITIGATED) + state = spectre_bhb_install_workaround(method); + + spectre_v2_update_state(state, method); +} + static __maybe_unused bool cpu_v7_check_auxcr_set(bool *warned, u32 mask, const char *msg) { @@ -151,14 +295,16 @@ if (check_spectre_auxcr(this_cpu_ptr(&spectre_warned), BIT(6))) - cpu_v7_spectre_init(); + cpu_v7_spectre_v2_init(); } void cpu_v7_ca15_ibe(void) { if (check_spectre_auxcr(this_cpu_ptr(&spectre_warned), BIT(0))) - cpu_v7_spectre_init(); + cpu_v7_spectre_v2_init(); + cpu_v7_spectre_bhb_init(); } void cpu_v7_bugs_init(void) { - cpu_v7_spectre_init(); + cpu_v7_spectre_v2_init(); + cpu_v7_spectre_bhb_init(); } diff -u linux-azure-5.4.0/arch/arm/net/bpf_jit_32.c linux-azure-5.4.0/arch/arm/net/bpf_jit_32.c --- linux-azure-5.4.0/arch/arm/net/bpf_jit_32.c +++ linux-azure-5.4.0/arch/arm/net/bpf_jit_32.c @@ -36,6 +36,10 @@ * +-----+ * |RSVD | JIT scratchpad * current ARM_SP => +-----+ <= (BPF_FP - STACK_SIZE + SCRATCH_SIZE) + * | ... | caller-saved registers + * +-----+ + * | ... | arguments passed on stack + * ARM_SP during call => +-----| * | | * | ... | Function call stack * | | @@ -63,6 +67,12 @@ * * When popping registers off the stack at the end of a BPF function, we * reference them via the current ARM_FP register. + * + * Some eBPF operations are implemented via a call to a helper function. + * Such calls are "invisible" in the eBPF code, so it is up to the calling + * program to preserve any caller-saved ARM registers during the call. The + * JIT emits code to push and pop those registers onto the stack, immediately + * above the callee stack frame. */ #define CALLEE_MASK (1 << ARM_R4 | 1 << ARM_R5 | 1 << ARM_R6 | \ 1 << ARM_R7 | 1 << ARM_R8 | 1 << ARM_R9 | \ @@ -70,6 +80,8 @@ #define CALLEE_PUSH_MASK (CALLEE_MASK | 1 << ARM_LR) #define CALLEE_POP_MASK (CALLEE_MASK | 1 << ARM_PC) +#define CALLER_MASK (1 << ARM_R0 | 1 << ARM_R1 | 1 << ARM_R2 | 1 << ARM_R3) + enum { /* Stack layout - these are offsets from (top of stack - 4) */ BPF_R2_HI, @@ -464,6 +476,7 @@ static inline void emit_udivmod(u8 rd, u8 rm, u8 rn, struct jit_ctx *ctx, u8 op) { + const int exclude_mask = BIT(ARM_R0) | BIT(ARM_R1); const s8 *tmp = bpf2a32[TMP_REG_1]; #if __LINUX_ARM_ARCH__ == 7 @@ -495,11 +508,17 @@ emit(ARM_MOV_R(ARM_R0, rm), ctx); } + /* Push caller-saved registers on stack */ + emit(ARM_PUSH(CALLER_MASK & ~exclude_mask), ctx); + /* Call appropriate function */ emit_mov_i(ARM_IP, op == BPF_DIV ? (u32)jit_udiv32 : (u32)jit_mod32, ctx); emit_blx_r(ARM_IP, ctx); + /* Restore caller-saved registers from stack */ + emit(ARM_POP(CALLER_MASK & ~exclude_mask), ctx); + /* Save return value */ if (rd != ARM_R0) emit(ARM_MOV_R(rd, ARM_R0), ctx); @@ -1602,6 +1621,9 @@ rn = arm_bpf_get_reg32(src_lo, tmp2[1], ctx); emit_ldx_r(dst, rn, off, ctx, BPF_SIZE(code)); break; + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + break; /* ST: *(size *)(dst + off) = imm */ case BPF_ST | BPF_MEM | BPF_W: case BPF_ST | BPF_MEM | BPF_H: diff -u linux-azure-5.4.0/arch/arm/vfp/vfphw.S linux-azure-5.4.0/arch/arm/vfp/vfphw.S --- linux-azure-5.4.0/arch/arm/vfp/vfphw.S +++ linux-azure-5.4.0/arch/arm/vfp/vfphw.S @@ -253,11 +253,14 @@ ENTRY(vfp_get_float) tbl_branch r0, r3, #3 + .fpu vfpv2 .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: mrc p10, 0, r0, c\dr, c0, 0 @ fmrs r0, s0 +1: vmov r0, s\dr ret lr .org 1b + 8 -1: mrc p10, 0, r0, c\dr, c0, 4 @ fmrs r0, s1 + .endr + .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 +1: vmov r0, s\dr ret lr .org 1b + 8 .endr @@ -265,11 +268,14 @@ ENTRY(vfp_put_float) tbl_branch r1, r3, #3 + .fpu vfpv2 .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: mcr p10, 0, r0, c\dr, c0, 0 @ fmsr r0, s0 +1: vmov s\dr, r0 ret lr .org 1b + 8 -1: mcr p10, 0, r0, c\dr, c0, 4 @ fmsr r0, s1 + .endr + .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 +1: vmov s\dr, r0 ret lr .org 1b + 8 .endr @@ -277,15 +283,17 @@ ENTRY(vfp_get_double) tbl_branch r0, r3, #3 + .fpu vfpv2 .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: fmrrd r0, r1, d\dr +1: vmov r0, r1, d\dr ret lr .org 1b + 8 .endr #ifdef CONFIG_VFPv3 @ d16 - d31 registers - .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: mrrc p11, 3, r0, r1, c\dr @ fmrrd r0, r1, d\dr + .fpu vfpv3 + .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 +1: vmov r0, r1, d\dr ret lr .org 1b + 8 .endr @@ -299,15 +307,17 @@ ENTRY(vfp_put_double) tbl_branch r2, r3, #3 + .fpu vfpv2 .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: fmdrr d\dr, r0, r1 +1: vmov d\dr, r0, r1 ret lr .org 1b + 8 .endr #ifdef CONFIG_VFPv3 + .fpu vfpv3 @ d16 - d31 registers - .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -1: mcrr p11, 3, r0, r1, c\dr @ fmdrr r0, r1, d\dr + .irp dr,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 +1: vmov d\dr, r0, r1 ret lr .org 1b + 8 .endr diff -u linux-azure-5.4.0/arch/arm/xen/p2m.c linux-azure-5.4.0/arch/arm/xen/p2m.c --- linux-azure-5.4.0/arch/arm/xen/p2m.c +++ linux-azure-5.4.0/arch/arm/xen/p2m.c @@ -62,11 +62,12 @@ unsigned long __pfn_to_mfn(unsigned long pfn) { - struct rb_node *n = phys_to_mach.rb_node; + struct rb_node *n; struct xen_p2m_entry *entry; unsigned long irqflags; read_lock_irqsave(&p2m_lock, irqflags); + n = phys_to_mach.rb_node; while (n) { entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); if (entry->pfn <= pfn && @@ -153,10 +154,11 @@ int rc; unsigned long irqflags; struct xen_p2m_entry *p2m_entry; - struct rb_node *n = phys_to_mach.rb_node; + struct rb_node *n; if (mfn == INVALID_P2M_ENTRY) { write_lock_irqsave(&p2m_lock, irqflags); + n = phys_to_mach.rb_node; while (n) { p2m_entry = rb_entry(n, struct xen_p2m_entry, rbnode_phys); if (p2m_entry->pfn <= pfn && diff -u linux-azure-5.4.0/arch/arm64/Kconfig linux-azure-5.4.0/arch/arm64/Kconfig --- linux-azure-5.4.0/arch/arm64/Kconfig +++ linux-azure-5.4.0/arch/arm64/Kconfig @@ -181,7 +181,6 @@ select PCI_SYSCALL if PCI select POWER_RESET select POWER_SUPPLY - select REFCOUNT_FULL select SPARSE_IRQ select SWIOTLB select SYSCTL_EXCEPTION_TRACE @@ -575,6 +574,22 @@ If unsure, say Y. +config ARM64_ERRATUM_1742098 + bool "Cortex-A57/A72: 1742098: ELR recorded incorrectly on interrupt taken between cryptographic instructions in a sequence" + depends on COMPAT + default y + help + This option removes the AES hwcap for aarch32 user-space to + workaround erratum 1742098 on Cortex-A57 and Cortex-A72. + + Affected parts may corrupt the AES state if an interrupt is + taken between a pair of AES instructions. These instructions + are only present if the cryptography extensions are present. + All software should have a fallback implementation for CPUs + that don't implement the cryptography extensions. + + If unsure, say Y. + config CAVIUM_ERRATUM_22375 bool "Cavium erratum 22375, 24313" default y @@ -1140,6 +1155,15 @@ If unsure, say Y. +config MITIGATE_SPECTRE_BRANCH_HISTORY + bool "Mitigate Spectre style attacks against branch history" if EXPERT + default y + help + Speculation attacks against some high-performance processors can + make use of branch history to influence future speculation. + When taking an exception from user-space, a sequence of branches + or a firmware call overwrites the branch history. + config RODATA_FULL_DEFAULT_ENABLED bool "Apply r/o permissions of VM areas also to their linear aliases" default y diff -u linux-azure-5.4.0/arch/arm64/Kconfig.platforms linux-azure-5.4.0/arch/arm64/Kconfig.platforms --- linux-azure-5.4.0/arch/arm64/Kconfig.platforms +++ linux-azure-5.4.0/arch/arm64/Kconfig.platforms @@ -225,6 +225,7 @@ config ARCH_SYNQUACER bool "Socionext SynQuacer SoC Family" + select IRQ_FASTEOI_HIERARCHY_HANDLERS config ARCH_TEGRA bool "NVIDIA Tegra SoC Family" diff -u linux-azure-5.4.0/arch/arm64/Makefile linux-azure-5.4.0/arch/arm64/Makefile --- linux-azure-5.4.0/arch/arm64/Makefile +++ linux-azure-5.4.0/arch/arm64/Makefile @@ -10,7 +10,7 @@ # # Copyright (C) 1995-2001 by Russell King -LDFLAGS_vmlinux :=--no-undefined -X -z norelro +LDFLAGS_vmlinux :=--no-undefined -X CPPFLAGS_vmlinux.lds = -DTEXT_OFFSET=$(TEXT_OFFSET) GZFLAGS :=-9 @@ -82,17 +82,21 @@ AS += -EB # Prefer the baremetal ELF build target, but not all toolchains include # it so fall back to the standard linux version if needed. -KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb) +KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb -z norelro) UTS_MACHINE := aarch64_be else KBUILD_CPPFLAGS += -mlittle-endian CHECKFLAGS += -D__AARCH64EL__ AS += -EL # Same as above, prefer ELF but fall back to linux target if needed. -KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux) +KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux -z norelro) UTS_MACHINE := aarch64 endif +ifeq ($(CONFIG_LD_IS_LLD), y) +KBUILD_LDFLAGS += -z norelro +endif + CHECKFLAGS += -D__aarch64__ ifeq ($(CONFIG_ARM64_MODULE_PLTS),y) diff -u linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts @@ -78,7 +78,7 @@ leds { compatible = "gpio-leds"; - status { + led-0 { label = "orangepi:green:status"; gpios = <&pio 7 11 GPIO_ACTIVE_HIGH>; /* PH11 */ }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi @@ -76,6 +76,12 @@ no-map; }; + /* 32 MiB reserved for ARM Trusted Firmware (BL32) */ + secmon_reserved_bl32: secmon@5300000 { + reg = <0x0 0x05300000 0x0 0x2000000>; + no-map; + }; + linux,cma { compatible = "shared-dma-pool"; reusable; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts @@ -139,7 +139,7 @@ regulator-min-microvolt = <721000>; regulator-max-microvolt = <1022000>; - vin-supply = <&dc_in>; + pwm-supply = <&dc_in>; pwms = <&pwm_AO_cd 1 1250 0>; pwm-dutycycle-range = <100 0>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gx.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gx.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gx.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gx.dtsi @@ -41,6 +41,12 @@ no-map; }; + /* 32 MiB reserved for ARM Trusted Firmware (BL32) */ + secmon_reserved_bl32: secmon@5300000 { + reg = <0x0 0x05300000 0x0 0x2000000>; + no-map; + }; + linux,cma { compatible = "shared-dma-pool"; reusable; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi @@ -6,6 +6,7 @@ */ #include "meson-gxbb.dtsi" +#include / { aliases { @@ -64,6 +65,7 @@ regulator-name = "VDDIO_AO18"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; + regulator-always-on; }; vcc_3v3: regulator-vcc_3v3 { @@ -157,6 +159,7 @@ status = "okay"; pinctrl-0 = <&hdmi_hpd_pins>, <&hdmi_i2c_pins>; pinctrl-names = "default"; + hdmi-supply = <&vddio_ao18>; }; &hdmi_tx_tmds_port { diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts @@ -164,14 +164,6 @@ regulator-always-on; }; - reserved-memory { - /* TEE Reserved Memory */ - bl32_reserved: bl32@5000000 { - reg = <0x0 0x05300000 0x0 0x2000000>; - no-map; - }; - }; - sdio_pwrseq: sdio-pwrseq { compatible = "mmc-pwrseq-simple"; reset-gpios = <&gpio GPIOX_6 GPIO_ACTIVE_LOW>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-sm1.dtsi @@ -55,26 +55,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <730000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <730000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <730000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <666666666>; - opp-microvolt = <750000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <770000>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/arm/juno-base.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/arm/juno-base.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/arm/juno-base.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/arm/juno-base.dtsi @@ -537,13 +537,13 @@ clocks { compatible = "arm,scpi-clocks"; - scpi_dvfs: scpi-dvfs { + scpi_dvfs: clocks-0 { compatible = "arm,scpi-dvfs-clocks"; #clock-cells = <1>; clock-indices = <0>, <1>, <2>; clock-output-names = "atlclk", "aplclk","gpuclk"; }; - scpi_clk: scpi-clk { + scpi_clk: clocks-1 { compatible = "arm,scpi-variable-clocks"; #clock-cells = <1>; clock-indices = <3>; @@ -551,7 +551,7 @@ }; }; - scpi_devpd: scpi-power-domains { + scpi_devpd: power-controller { compatible = "arm,scpi-power-domains"; num-domains = <2>; #power-domain-cells = <1>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi @@ -687,7 +687,7 @@ }; }; - sata: ahci@663f2000 { + sata: sata@663f2000 { compatible = "brcm,iproc-ahci", "generic-ahci"; reg = <0x663f2000 0x1000>; dma-coherent; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/exynos/exynos7.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/exynos/exynos7.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/exynos/exynos7.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/exynos/exynos7.dtsi @@ -113,7 +113,7 @@ #address-cells = <0>; interrupt-controller; reg = <0x11001000 0x1000>, - <0x11002000 0x1000>, + <0x11002000 0x2000>, <0x11004000 0x2000>, <0x11006000 0x2000>; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi @@ -65,7 +65,7 @@ }; }; - sysclk: clock-sysclk { + sysclk: sysclk { compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <100000000>; @@ -151,8 +151,8 @@ ddr: memory-controller@1080000 { compatible = "fsl,qoriq-memory-controller"; reg = <0x0 0x1080000 0x0 0x1000>; - interrupts = ; - big-endian; + interrupts = ; + little-endian; }; dcfg: syscon@1e00000 { @@ -287,6 +287,24 @@ status = "disabled"; }; + can0: can@2180000 { + compatible = "fsl,ls1028ar1-flexcan", "fsl,lx2160ar1-flexcan"; + reg = <0x0 0x2180000 0x0 0x10000>; + interrupts = ; + clocks = <&sysclk>, <&clockgen 4 1>; + clock-names = "ipg", "per"; + status = "disabled"; + }; + + can1: can@2190000 { + compatible = "fsl,ls1028ar1-flexcan", "fsl,lx2160ar1-flexcan"; + reg = <0x0 0x2190000 0x0 0x10000>; + interrupts = ; + clocks = <&sysclk>, <&clockgen 4 1>; + clock-names = "ipg", "per"; + status = "disabled"; + }; + duart0: serial@21c0500 { compatible = "fsl,ns16550", "ns16550a"; reg = <0x00 0x21c0500 0x0 0x100>; @@ -496,14 +514,14 @@ compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc000000 0x0 0x1000>; clocks = <&clockgen 4 15>, <&clockgen 4 15>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster1_core1_watchdog: watchdog@c010000 { compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc010000 0x0 0x1000>; clocks = <&clockgen 4 15>, <&clockgen 4 15>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; sai1: audio-controller@f100000 { diff -u linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts @@ -58,14 +58,9 @@ }; eeprom@52 { - compatible = "atmel,24c512"; + compatible = "onnn,cat24c05", "atmel,24c04"; reg = <0x52>; }; - - eeprom@53 { - compatible = "atmel,24c512"; - reg = <0x53>; - }; }; &i2c3 { diff -u linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts @@ -213,6 +213,10 @@ interrupts = <3 GPIO_ACTIVE_LOW>; rohm,reset-snvs-powered; + #clock-cells = <0>; + clocks = <&osc_32k 0>; + clock-output-names = "clk-32k-out"; + regulators { buck1_reg: BUCK1 { regulator-name = "BUCK1"; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi @@ -1056,6 +1056,14 @@ <&src IMX8MQ_RESET_PCIE_CTRL_APPS_EN>, <&src IMX8MQ_RESET_PCIE_CTRL_APPS_TURNOFF>; reset-names = "pciephy", "apps", "turnoff"; + assigned-clocks = <&clk IMX8MQ_CLK_PCIE1_CTRL>, + <&clk IMX8MQ_CLK_PCIE1_PHY>, + <&clk IMX8MQ_CLK_PCIE1_AUX>; + assigned-clock-parents = <&clk IMX8MQ_SYS2_PLL_250M>, + <&clk IMX8MQ_SYS2_PLL_100M>, + <&clk IMX8MQ_SYS1_PLL_80M>; + assigned-clock-rates = <250000000>, <100000000>, + <10000000>; status = "disabled"; }; @@ -1085,6 +1093,14 @@ <&src IMX8MQ_RESET_PCIE2_CTRL_APPS_EN>, <&src IMX8MQ_RESET_PCIE2_CTRL_APPS_TURNOFF>; reset-names = "pciephy", "apps", "turnoff"; + assigned-clocks = <&clk IMX8MQ_CLK_PCIE2_CTRL>, + <&clk IMX8MQ_CLK_PCIE2_PHY>, + <&clk IMX8MQ_CLK_PCIE2_AUX>; + assigned-clock-parents = <&clk IMX8MQ_SYS2_PLL_250M>, + <&clk IMX8MQ_SYS2_PLL_100M>, + <&clk IMX8MQ_SYS1_PLL_80M>; + assigned-clock-rates = <250000000>, <100000000>, + <10000000>; status = "disabled"; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi @@ -369,7 +369,7 @@ }; usb0: usb@ffb00000 { - compatible = "snps,dwc2"; + compatible = "intel,socfpga-agilex-hsotg", "snps,dwc2"; reg = <0xffb00000 0x40000>; interrupts = <0 93 4>; phys = <&usbphy0>; @@ -381,7 +381,7 @@ }; usb1: usb@ffb40000 { - compatible = "snps,dwc2"; + compatible = "intel,socfpga-agilex-hsotg", "snps,dwc2"; reg = <0xffb40000 0x40000>; interrupts = <0 94 4>; phys = <&usbphy0>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts @@ -59,6 +59,7 @@ phys = <&comphy1 0>; pinctrl-names = "default"; pinctrl-0 = <&pcie_reset_pins &pcie_clkreq_pins>; + reset-gpios = <&gpiosb 3 GPIO_ACTIVE_LOW>; }; /* J6 */ diff -u linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts @@ -18,6 +18,7 @@ aliases { spi0 = &spi0; + ethernet0 = ð0; ethernet1 = ð1; }; @@ -106,12 +107,19 @@ /* enabled by U-Boot if SFP module is present */ status = "disabled"; }; + + firmware { + armada-3700-rwtm { + compatible = "marvell,armada-3700-rwtm-firmware", "cznic,turris-mox-rwtm"; + }; + }; }; &i2c0 { pinctrl-names = "default"; pinctrl-0 = <&i2c1_pins>; clock-frequency = <100000>; + /delete-property/ mrvl,i2c-fast-mode; status = "okay"; rtc@6f { @@ -120,10 +128,6 @@ }; }; -&pcie_reset_pins { - function = "gpio"; -}; - &pcie0 { pinctrl-names = "default"; pinctrl-0 = <&pcie_reset_pins &pcie_clkreq_pins>; @@ -131,6 +135,28 @@ max-link-speed = <2>; reset-gpios = <&gpiosb 3 GPIO_ACTIVE_LOW>; phys = <&comphy1 0>; + /* + * U-Boot port for Turris Mox has a bug which always expects that "ranges" DT property + * contains exactly 2 ranges with 3 (child) address cells, 2 (parent) address cells and + * 2 size cells and also expects that the second range starts at 16 MB offset. Also it + * expects that first range uses same address for PCI (child) and CPU (parent) cells (so + * no remapping) and that this address is the lowest from all specified ranges. If these + * conditions are not met then U-Boot crashes during loading kernel DTB file. PCIe address + * space is 128 MB long, so the best split between MEM and IO is to use fixed 16 MB window + * for IO and the rest 112 MB (64+32+16) for MEM, despite that maximal IO size is just 64 kB. + * This bug is not present in U-Boot ports for other Armada 3700 devices and is fixed in + * U-Boot version 2021.07. See relevant U-Boot commits (the last one contains fix): + * https://source.denx.de/u-boot/u-boot/-/commit/cb2ddb291ee6fcbddd6d8f4ff49089dfe580f5d7 + * https://source.denx.de/u-boot/u-boot/-/commit/c64ac3b3185aeb3846297ad7391fc6df8ecd73bf + * https://source.denx.de/u-boot/u-boot/-/commit/4a82fca8e330157081fc132a591ebd99ba02ee33 + * Bug related to requirement of same child and parent addresses for first range is fixed + * in U-Boot version 2022.04 by following commit: + * https://source.denx.de/u-boot/u-boot/-/commit/1fd54253bca7d43d046bba4853fe5fafd034bc17 + */ + #address-cells = <3>; + #size-cells = <2>; + ranges = <0x81000000 0 0xe8000000 0 0xe8000000 0 0x01000000 /* Port 0 IO */ + 0x82000000 0 0xe9000000 0 0xe9000000 0 0x07000000>; /* Port 0 MEM */ /* enabled by U-Boot if PCIe module is present */ status = "disabled"; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-37xx.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-37xx.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-37xx.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-37xx.dtsi @@ -134,7 +134,7 @@ uart0: serial@12000 { compatible = "marvell,armada-3700-uart"; - reg = <0x12000 0x200>; + reg = <0x12000 0x18>; clocks = <&xtalclk>; interrupts = , @@ -318,7 +318,7 @@ pcie_reset_pins: pcie-reset-pins { groups = "pcie1"; - function = "pcie"; + function = "gpio"; }; pcie_clkreq_pins: pcie-clkreq-pins { @@ -487,8 +487,15 @@ #interrupt-cells = <1>; msi-parent = <&pcie0>; msi-controller; - ranges = <0x82000000 0 0xe8000000 0 0xe8000000 0 0x1000000 /* Port 0 MEM */ - 0x81000000 0 0xe9000000 0 0xe9000000 0 0x10000>; /* Port 0 IO*/ + /* + * The 128 MiB address range [0xe8000000-0xf0000000] is + * dedicated for PCIe and can be assigned to 8 windows + * with size a power of two. Use one 64 KiB window for + * IO at the end and the remaining seven windows + * (totaling 127 MiB) for MEM. + */ + ranges = <0x82000000 0 0xe8000000 0 0xe8000000 0 0x07f00000 /* Port 0 MEM */ + 0x81000000 0 0x00000000 0 0xefff0000 0 0x00010000>; /* Port 0 IO */ interrupt-map-mask = <0 0 0 7>; interrupt-map = <0 0 0 1 &pcie_intc 0>, <0 0 0 2 &pcie_intc 1>, @@ -502,2 +509,10 @@ }; + + firmware { + armada-3700-rwtm { + compatible = "marvell,armada-3700-rwtm-firmware"; + mboxes = <&rwtm 0>; + status = "okay"; + }; + }; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra186.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra186.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra186.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra186.dtsi @@ -709,7 +709,7 @@ ccplex@e000000 { compatible = "nvidia,tegra186-ccplex-cluster"; - reg = <0x0 0x0e000000 0x0 0x3fffff>; + reg = <0x0 0x0e000000 0x0 0x400000>; nvidia,bpmp = <&bpmp>; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi @@ -1434,7 +1434,7 @@ }; pcie_ep@14160000 { - compatible = "nvidia,tegra194-pcie-ep", "snps,dw-pcie-ep"; + compatible = "nvidia,tegra194-pcie-ep"; power-domains = <&bpmp TEGRA194_POWER_DOMAIN_PCIEX4A>; reg = <0x00 0x14160000 0x0 0x00020000 /* appl registers (128K) */ 0x00 0x36040000 0x0 0x00040000 /* iATU_DMA reg space (256K) */ @@ -1466,7 +1466,7 @@ }; pcie_ep@14180000 { - compatible = "nvidia,tegra194-pcie-ep", "snps,dw-pcie-ep"; + compatible = "nvidia,tegra194-pcie-ep"; power-domains = <&bpmp TEGRA194_POWER_DOMAIN_PCIEX8B>; reg = <0x00 0x14180000 0x0 0x00020000 /* appl registers (128K) */ 0x00 0x38040000 0x0 0x00040000 /* iATU_DMA reg space (256K) */ @@ -1498,7 +1498,7 @@ }; pcie_ep@141a0000 { - compatible = "nvidia,tegra194-pcie-ep", "snps,dw-pcie-ep"; + compatible = "nvidia,tegra194-pcie-ep"; power-domains = <&bpmp TEGRA194_POWER_DOMAIN_PCIEX8A>; reg = <0x00 0x141a0000 0x0 0x00020000 /* appl registers (128K) */ 0x00 0x3a040000 0x0 0x00040000 /* iATU_DMA reg space (256K) */ diff -u linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8916.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8916.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8916.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8916.dtsi @@ -16,8 +16,8 @@ #size-cells = <2>; aliases { - sdhc1 = &sdhc_1; /* SDC1 eMMC slot */ - sdhc2 = &sdhc_2; /* SDC2 SD card slot */ + mmc0 = &sdhc_1; /* SDC1 eMMC slot */ + mmc1 = &sdhc_2; /* SDC2 SD card slot */ }; chosen { }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8996.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8996.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -2098,9 +2098,6 @@ nvmem-cells = <&gpu_speed_bin>; nvmem-cell-names = "speed_bin"; - qcom,gpu-quirk-two-pass-use-wfi; - qcom,gpu-quirk-fault-detect-mask; - operating-points-v2 = <&gpu_opp_table>; gpu_opp_table: opp-table { diff -u linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8998.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8998.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8998.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8998.dtsi @@ -246,38 +246,42 @@ LITTLE_CPU_SLEEP_0: cpu-sleep-0-0 { compatible = "arm,idle-state"; idle-state-name = "little-retention"; + /* CPU Retention (C2D), L2 Active */ arm,psci-suspend-param = <0x00000002>; entry-latency-us = <81>; exit-latency-us = <86>; - min-residency-us = <200>; + min-residency-us = <504>; }; LITTLE_CPU_SLEEP_1: cpu-sleep-0-1 { compatible = "arm,idle-state"; idle-state-name = "little-power-collapse"; + /* CPU + L2 Power Collapse (C3, D4) */ arm,psci-suspend-param = <0x40000003>; - entry-latency-us = <273>; - exit-latency-us = <612>; - min-residency-us = <1000>; + entry-latency-us = <814>; + exit-latency-us = <4562>; + min-residency-us = <9183>; local-timer-stop; }; BIG_CPU_SLEEP_0: cpu-sleep-1-0 { compatible = "arm,idle-state"; idle-state-name = "big-retention"; + /* CPU Retention (C2D), L2 Active */ arm,psci-suspend-param = <0x00000002>; entry-latency-us = <79>; exit-latency-us = <82>; - min-residency-us = <200>; + min-residency-us = <1302>; }; BIG_CPU_SLEEP_1: cpu-sleep-1-1 { compatible = "arm,idle-state"; idle-state-name = "big-power-collapse"; + /* CPU + L2 Power Collapse (C3, D4) */ arm,psci-suspend-param = <0x40000003>; - entry-latency-us = <336>; - exit-latency-us = <525>; - min-residency-us = <1000>; + entry-latency-us = <724>; + exit-latency-us = <2027>; + min-residency-us = <9419>; local-timer-stop; }; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/qcom/pm8150.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/qcom/pm8150.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/qcom/pm8150.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/pm8150.dtsi @@ -17,7 +17,7 @@ #size-cells = <0>; pon: power-on@800 { - compatible = "qcom,pm8916-pon"; + compatible = "qcom,pm8998-pon"; reg = <0x0800>; pwrkey { compatible = "qcom,pm8941-pwrkey"; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/qcom/sm8150.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/qcom/sm8150.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -459,9 +459,9 @@ qcom,tcs-offset = <0xd00>; qcom,drv-id = <2>; qcom,tcs-config = , - , - , - ; + , + , + ; rpmhcc: clock-controller { compatible = "qcom,sm8150-rpmh-clk"; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/px30.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/px30.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/px30.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/px30.dtsi @@ -213,20 +213,20 @@ #size-cells = <0>; /* These power domains are grouped by VD_LOGIC */ - pd_usb@PX30_PD_USB { + power-domain@PX30_PD_USB { reg = ; clocks = <&cru HCLK_HOST>, <&cru HCLK_OTG>, <&cru SCLK_OTG_ADP>; pm_qos = <&qos_usb_host>, <&qos_usb_otg>; }; - pd_sdcard@PX30_PD_SDCARD { + power-domain@PX30_PD_SDCARD { reg = ; clocks = <&cru HCLK_SDMMC>, <&cru SCLK_SDMMC>; pm_qos = <&qos_sdmmc>; }; - pd_gmac@PX30_PD_GMAC { + power-domain@PX30_PD_GMAC { reg = ; clocks = <&cru ACLK_GMAC>, <&cru PCLK_GMAC>, @@ -234,7 +234,7 @@ <&cru SCLK_GMAC_RX_TX>; pm_qos = <&qos_gmac>; }; - pd_mmc_nand@PX30_PD_MMC_NAND { + power-domain@PX30_PD_MMC_NAND { reg = ; clocks = <&cru HCLK_NANDC>, <&cru HCLK_EMMC>, @@ -247,14 +247,14 @@ pm_qos = <&qos_emmc>, <&qos_nand>, <&qos_sdio>, <&qos_sfc>; }; - pd_vpu@PX30_PD_VPU { + power-domain@PX30_PD_VPU { reg = ; clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>, <&cru SCLK_CORE_VPU>; pm_qos = <&qos_vpu>, <&qos_vpu_r128>; }; - pd_vo@PX30_PD_VO { + power-domain@PX30_PD_VO { reg = ; clocks = <&cru ACLK_RGA>, <&cru ACLK_VOPB>, @@ -270,7 +270,7 @@ pm_qos = <&qos_rga_rd>, <&qos_rga_wr>, <&qos_vop_m0>, <&qos_vop_m1>; }; - pd_vi@PX30_PD_VI { + power-domain@PX30_PD_VI { reg = ; clocks = <&cru ACLK_CIF>, <&cru ACLK_ISP>, @@ -281,7 +281,7 @@ <&qos_isp_wr>, <&qos_isp_m1>, <&qos_vip>; }; - pd_gpu@PX30_PD_GPU { + power-domain@PX30_PD_GPU { reg = ; clocks = <&cru SCLK_GPU>; pm_qos = <&qos_gpu>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3328.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3328.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3328.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3328.dtsi @@ -270,13 +270,13 @@ #address-cells = <1>; #size-cells = <0>; - pd_hevc@RK3328_PD_HEVC { + power-domain@RK3328_PD_HEVC { reg = ; }; - pd_video@RK3328_PD_VIDEO { + power-domain@RK3328_PD_VIDEO { reg = ; }; - pd_vpu@RK3328_PD_VPU { + power-domain@RK3328_PD_VPU { reg = ; clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>; }; @@ -555,7 +555,7 @@ gpu: gpu@ff300000 { compatible = "rockchip,rk3328-mali", "arm,mali-450"; - reg = <0x0 0xff300000 0x0 0x40000>; + reg = <0x0 0xff300000 0x0 0x30000>; interrupts = , , , diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts @@ -666,8 +666,8 @@ sd-uhs-sdr104; /* Power supply */ - vqmmc-supply = &vcc1v8_s3; /* IO line */ - vmmc-supply = &vcc_sdio; /* card's power */ + vqmmc-supply = <&vcc1v8_s3>; /* IO line */ + vmmc-supply = <&vcc_sdio>; /* card's power */ #address-cells = <1>; #size-cells = <0>; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi @@ -685,7 +685,6 @@ &sdhci { bus-width = <8>; mmc-hs400-1_8v; - mmc-hs400-enhanced-strobe; non-removable; status = "okay"; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi @@ -102,7 +102,6 @@ vcc5v0_host: vcc5v0-host-regulator { compatible = "regulator-fixed"; gpio = <&gpio4 RK_PA3 GPIO_ACTIVE_LOW>; - enable-active-low; pinctrl-names = "default"; pinctrl-0 = <&vcc5v0_host_en>; regulator-name = "vcc5v0_host"; @@ -467,6 +466,12 @@ }; &sdhci { + /* + * Signal integrity isn't great at 200MHz but 100MHz has proven stable + * enough. + */ + max-frequency = <100000000>; + bus-width = <8>; mmc-hs400-1_8v; mmc-hs400-enhanced-strobe; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi @@ -1447,6 +1447,7 @@ reg = <0xf780 0x24>; clocks = <&sdhci>; clock-names = "emmcclk"; + drive-impedance-ohm = <50>; #phy-cells = <0>; status = "disabled"; }; @@ -1457,7 +1458,6 @@ clock-names = "refclk"; #phy-cells = <1>; resets = <&cru SRST_PCIEPHY>; - drive-impedance-ohm = <50>; reset-names = "phy"; status = "disabled"; }; @@ -1746,10 +1746,10 @@ interrupts = ; clocks = <&cru PCLK_HDMI_CTRL>, <&cru SCLK_HDMI_SFR>, - <&cru PLL_VPLL>, + <&cru SCLK_HDMI_CEC>, <&cru PCLK_VIO_GRF>, - <&cru SCLK_HDMI_CEC>; - clock-names = "iahb", "isfr", "vpll", "grf", "cec"; + <&cru PLL_VPLL>; + clock-names = "iahb", "isfr", "cec", "grf", "vpll"; power-domains = <&power RK3399_PD_HDCP>; reg-io-width = <4>; rockchip,grf = <&grf>; @@ -2317,7 +2317,7 @@ }; }; - sleep { + suspend { ap_pwroff: ap-pwroff { rockchip,pins = <1 RK_PA5 1 &pcfg_pull_none>; }; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi @@ -544,8 +544,8 @@ compatible = "socionext,uniphier-dwc3", "snps,dwc3"; status = "disabled"; reg = <0x65a00000 0xcd00>; - interrupt-names = "host", "peripheral"; - interrupts = <0 134 4>, <0 135 4>; + interrupt-names = "dwc_usb3"; + interrupts = <0 134 4>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usb0>, <&pinctrl_usb2>; clock-names = "ref", "bus_early", "suspend"; @@ -646,8 +646,8 @@ compatible = "socionext,uniphier-dwc3", "snps,dwc3"; status = "disabled"; reg = <0x65c00000 0xcd00>; - interrupt-names = "host", "peripheral"; - interrupts = <0 137 4>, <0 138 4>; + interrupt-names = "dwc_usb3"; + interrupts = <0 137 4>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usb1>, <&pinctrl_usb3>; clock-names = "ref", "bus_early", "suspend"; diff -u linux-azure-5.4.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi linux-azure-5.4.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi --- linux-azure-5.4.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/xilinx/zynqmp.dtsi @@ -582,7 +582,7 @@ }; uart0: serial@ff000000 { - compatible = "cdns,uart-r1p12", "xlnx,xuartps"; + compatible = "xlnx,zynqmp-uart", "cdns,uart-r1p12"; status = "disabled"; interrupt-parent = <&gic>; interrupts = <0 21 4>; @@ -591,7 +591,7 @@ }; uart1: serial@ff010000 { - compatible = "cdns,uart-r1p12", "xlnx,xuartps"; + compatible = "xlnx,zynqmp-uart", "cdns,uart-r1p12"; status = "disabled"; interrupt-parent = <&gic>; interrupts = <0 22 4>; diff -u linux-azure-5.4.0/arch/arm64/include/asm/arch_timer.h linux-azure-5.4.0/arch/arm64/include/asm/arch_timer.h --- linux-azure-5.4.0/arch/arm64/include/asm/arch_timer.h +++ linux-azure-5.4.0/arch/arm64/include/asm/arch_timer.h @@ -165,25 +165,6 @@ isb(); } -/* - * Ensure that reads of the counter are treated the same as memory reads - * for the purposes of ordering by subsequent memory barriers. - * - * This insanity brought to you by speculative system register reads, - * out-of-order memory accesses, sequence locks and Thomas Gleixner. - * - * http://lists.infradead.org/pipermail/linux-arm-kernel/2019-February/631195.html - */ -#define arch_counter_enforce_ordering(val) do { \ - u64 tmp, _val = (val); \ - \ - asm volatile( \ - " eor %0, %1, %1\n" \ - " add %0, sp, %0\n" \ - " ldr xzr, [%0]" \ - : "=r" (tmp) : "r" (_val)); \ -} while (0) - static __always_inline u64 __arch_counter_get_cntpct_stable(void) { u64 cnt; @@ -224,8 +205,6 @@ return cnt; } -#undef arch_counter_enforce_ordering - static inline int arch_timer_arch_init(void) { return 0; diff -u linux-azure-5.4.0/arch/arm64/include/asm/assembler.h linux-azure-5.4.0/arch/arm64/include/asm/assembler.h --- linux-azure-5.4.0/arch/arm64/include/asm/assembler.h +++ linux-azure-5.4.0/arch/arm64/include/asm/assembler.h @@ -111,6 +111,13 @@ .endm /* + * Clear Branch History instruction + */ + .macro clearbhb + hint #22 + .endm + +/* * Speculation barrier */ .macro sb @@ -759,2 +766,28 @@ + .macro __mitigate_spectre_bhb_loop tmp +#ifdef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY +alternative_cb spectre_bhb_patch_loop_iter + mov \tmp, #32 // Patched to correct the immediate +alternative_cb_end +.Lspectre_bhb_loop\@: + b . + 4 + subs \tmp, \tmp, #1 + b.ne .Lspectre_bhb_loop\@ + sb +#endif /* CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ + .endm + + /* Save/restores x0-x3 to the stack */ + .macro __mitigate_spectre_bhb_fw +#ifdef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY + stp x0, x1, [sp, #-16]! + stp x2, x3, [sp, #-16]! + mov w0, #ARM_SMCCC_ARCH_WORKAROUND_3 +alternative_cb arm64_update_smccc_conduit + nop // Patched to SMC/HVC #0 +alternative_cb_end + ldp x2, x3, [sp], #16 + ldp x0, x1, [sp], #16 +#endif /* CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ + .endm #endif /* __ASM_ASSEMBLER_H */ diff -u linux-azure-5.4.0/arch/arm64/include/asm/cpucaps.h linux-azure-5.4.0/arch/arm64/include/asm/cpucaps.h --- linux-azure-5.4.0/arch/arm64/include/asm/cpucaps.h +++ linux-azure-5.4.0/arch/arm64/include/asm/cpucaps.h @@ -56,6 +56,8 @@ #define ARM64_WORKAROUND_CAVIUM_TX2_219_PRFM 46 #define ARM64_WORKAROUND_1542419 47 +#define ARM64_SPECTRE_BHB 48 +#define ARM64_WORKAROUND_1742098 49 -#define ARM64_NCAPS 48 +#define ARM64_NCAPS 50 #endif /* __ASM_CPUCAPS_H */ diff -u linux-azure-5.4.0/arch/arm64/include/asm/cpufeature.h linux-azure-5.4.0/arch/arm64/include/asm/cpufeature.h --- linux-azure-5.4.0/arch/arm64/include/asm/cpufeature.h +++ linux-azure-5.4.0/arch/arm64/include/asm/cpufeature.h @@ -508,6 +508,34 @@ return id_aa64mmfr0_mixed_endian_el0(read_cpuid(ID_AA64MMFR0_EL1)); } +static inline bool supports_csv2p3(int scope) +{ + u64 pfr0; + u8 csv2_val; + + if (scope == SCOPE_LOCAL_CPU) + pfr0 = read_sysreg_s(SYS_ID_AA64PFR0_EL1); + else + pfr0 = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1); + + csv2_val = cpuid_feature_extract_unsigned_field(pfr0, + ID_AA64PFR0_CSV2_SHIFT); + return csv2_val == 3; +} + +static inline bool supports_clearbhb(int scope) +{ + u64 isar2; + + if (scope == SCOPE_LOCAL_CPU) + isar2 = read_sysreg_s(SYS_ID_AA64ISAR2_EL1); + else + isar2 = read_sanitised_ftr_reg(SYS_ID_AA64ISAR2_EL1); + + return cpuid_feature_extract_unsigned_field(isar2, + ID_AA64ISAR2_CLEARBHB_SHIFT); +} + static inline bool system_supports_32bit_el0(void) { return cpus_have_const_cap(ARM64_HAS_32BIT_EL0); @@ -639,6 +667,18 @@ void arm64_set_ssbd_mitigation(bool state); +/* Watch out, ordering is important here. */ +enum mitigation_state { + SPECTRE_UNAFFECTED, + SPECTRE_MITIGATED, + SPECTRE_VULNERABLE, +}; + +enum mitigation_state arm64_get_spectre_bhb_state(void); +bool is_spectre_bhb_affected(const struct arm64_cpu_capabilities *entry, int scope); +u8 spectre_bhb_loop_affected(int scope); +void spectre_bhb_enable_mitigation(const struct arm64_cpu_capabilities *__unused); + extern int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt); static inline u32 id_aa64mmfr0_parange_to_phys_shift(int parange) diff -u linux-azure-5.4.0/arch/arm64/include/asm/debug-monitors.h linux-azure-5.4.0/arch/arm64/include/asm/debug-monitors.h --- linux-azure-5.4.0/arch/arm64/include/asm/debug-monitors.h +++ linux-azure-5.4.0/arch/arm64/include/asm/debug-monitors.h @@ -53,6 +53,7 @@ /* kprobes BRK opcodes with ESR encoding */ #define BRK64_OPCODE_KPROBES (AARCH64_BREAK_MON | (KPROBES_BRK_IMM << 5)) +#define BRK64_OPCODE_KPROBES_SS (AARCH64_BREAK_MON | (KPROBES_BRK_SS_IMM << 5)) /* uprobes BRK opcodes with ESR encoding */ #define BRK64_OPCODE_UPROBES (AARCH64_BREAK_MON | (UPROBES_BRK_IMM << 5)) diff -u linux-azure-5.4.0/arch/arm64/include/asm/mmu_context.h linux-azure-5.4.0/arch/arm64/include/asm/mmu_context.h --- linux-azure-5.4.0/arch/arm64/include/asm/mmu_context.h +++ linux-azure-5.4.0/arch/arm64/include/asm/mmu_context.h @@ -36,11 +36,11 @@ } /* - * Set TTBR0 to empty_zero_page. No translations will be possible via TTBR0. + * Set TTBR0 to reserved_pg_dir. No translations will be possible via TTBR0. */ static inline void cpu_set_reserved_ttbr0(void) { - unsigned long ttbr = phys_to_ttbr(__pa_symbol(empty_zero_page)); + unsigned long ttbr = phys_to_ttbr(__pa_symbol(reserved_pg_dir)); write_sysreg(ttbr, ttbr0_el1); isb(); @@ -184,9 +184,9 @@ return; if (mm == &init_mm) - ttbr = __pa_symbol(empty_zero_page); + ttbr = phys_to_ttbr(__pa_symbol(reserved_pg_dir)); else - ttbr = virt_to_phys(mm->pgd) | ASID(mm) << 48; + ttbr = phys_to_ttbr(virt_to_phys(mm->pgd)) | ASID(mm) << 48; WRITE_ONCE(task_thread_info(tsk)->ttbr0, ttbr); } diff -u linux-azure-5.4.0/arch/arm64/include/asm/pgtable.h linux-azure-5.4.0/arch/arm64/include/asm/pgtable.h --- linux-azure-5.4.0/arch/arm64/include/asm/pgtable.h +++ linux-azure-5.4.0/arch/arm64/include/asm/pgtable.h @@ -54,9 +54,15 @@ * page table entry, taking care of 52-bit addresses. */ #ifdef CONFIG_ARM64_PA_BITS_52 -#define __pte_to_phys(pte) \ - ((pte_val(pte) & PTE_ADDR_LOW) | ((pte_val(pte) & PTE_ADDR_HIGH) << 36)) -#define __phys_to_pte_val(phys) (((phys) | ((phys) >> 36)) & PTE_ADDR_MASK) +static inline phys_addr_t __pte_to_phys(pte_t pte) +{ + return (pte_val(pte) & PTE_ADDR_LOW) | + ((pte_val(pte) & PTE_ADDR_HIGH) << 36); +} +static inline pteval_t __phys_to_pte_val(phys_addr_t phys) +{ + return (phys | (phys >> 36)) & PTE_ADDR_MASK; +} #else #define __pte_to_phys(pte) (pte_val(pte) & PTE_ADDR_MASK) #define __phys_to_pte_val(phys) (phys) @@ -466,6 +472,7 @@ extern pgd_t idmap_pg_dir[PTRS_PER_PGD]; extern pgd_t idmap_pg_end[]; extern pgd_t tramp_pg_dir[PTRS_PER_PGD]; +extern pgd_t reserved_pg_dir[PTRS_PER_PGD]; extern void set_swapper_pgd(pgd_t *pgdp, pgd_t pgd); diff -u linux-azure-5.4.0/arch/arm64/include/asm/ptrace.h linux-azure-5.4.0/arch/arm64/include/asm/ptrace.h --- linux-azure-5.4.0/arch/arm64/include/asm/ptrace.h +++ linux-azure-5.4.0/arch/arm64/include/asm/ptrace.h @@ -299,7 +299,17 @@ static inline unsigned long regs_return_value(struct pt_regs *regs) { - return regs->regs[0]; + unsigned long val = regs->regs[0]; + + /* + * Audit currently uses regs_return_value() instead of + * syscall_get_return_value(). Apply the same sign-extension here until + * audit is updated to use syscall_get_return_value(). + */ + if (compat_user_mode(regs)) + val = sign_extend64(val, 31); + + return val; } static inline void regs_set_return_value(struct pt_regs *regs, unsigned long rc) diff -u linux-azure-5.4.0/arch/arm64/include/asm/sections.h linux-azure-5.4.0/arch/arm64/include/asm/sections.h --- linux-azure-5.4.0/arch/arm64/include/asm/sections.h +++ linux-azure-5.4.0/arch/arm64/include/asm/sections.h @@ -22,2 +22,7 @@ +static inline size_t entry_tramp_text_size(void) +{ + return __entry_tramp_text_end - __entry_tramp_text_start; +} + #endif /* __ASM_SECTIONS_H */ diff -u linux-azure-5.4.0/arch/arm64/include/asm/syscall.h linux-azure-5.4.0/arch/arm64/include/asm/syscall.h --- linux-azure-5.4.0/arch/arm64/include/asm/syscall.h +++ linux-azure-5.4.0/arch/arm64/include/asm/syscall.h @@ -29,22 +29,23 @@ regs->regs[0] = regs->orig_x0; } - -static inline long syscall_get_error(struct task_struct *task, - struct pt_regs *regs) +static inline long syscall_get_return_value(struct task_struct *task, + struct pt_regs *regs) { - unsigned long error = regs->regs[0]; + unsigned long val = regs->regs[0]; if (is_compat_thread(task_thread_info(task))) - error = sign_extend64(error, 31); + val = sign_extend64(val, 31); - return IS_ERR_VALUE(error) ? error : 0; + return val; } -static inline long syscall_get_return_value(struct task_struct *task, - struct pt_regs *regs) +static inline long syscall_get_error(struct task_struct *task, + struct pt_regs *regs) { - return regs->regs[0]; + unsigned long error = syscall_get_return_value(task, regs); + + return IS_ERR_VALUE(error) ? error : 0; } static inline void syscall_set_return_value(struct task_struct *task, diff -u linux-azure-5.4.0/arch/arm64/include/asm/sysreg.h linux-azure-5.4.0/arch/arm64/include/asm/sysreg.h --- linux-azure-5.4.0/arch/arm64/include/asm/sysreg.h +++ linux-azure-5.4.0/arch/arm64/include/asm/sysreg.h @@ -165,6 +165,7 @@ #define SYS_ID_AA64ISAR0_EL1 sys_reg(3, 0, 0, 6, 0) #define SYS_ID_AA64ISAR1_EL1 sys_reg(3, 0, 0, 6, 1) +#define SYS_ID_AA64ISAR2_EL1 sys_reg(3, 0, 0, 6, 2) #define SYS_ID_AA64MMFR0_EL1 sys_reg(3, 0, 0, 7, 0) #define SYS_ID_AA64MMFR1_EL1 sys_reg(3, 0, 0, 7, 1) @@ -575,6 +576,21 @@ #define ID_AA64ISAR1_GPI_NI 0x0 #define ID_AA64ISAR1_GPI_IMP_DEF 0x1 +/* id_aa64isar2 */ +#define ID_AA64ISAR2_CLEARBHB_SHIFT 28 +#define ID_AA64ISAR2_RPRES_SHIFT 4 +#define ID_AA64ISAR2_WFXT_SHIFT 0 + +#define ID_AA64ISAR2_RPRES_8BIT 0x0 +#define ID_AA64ISAR2_RPRES_12BIT 0x1 +/* + * Value 0x1 has been removed from the architecture, and is + * reserved, but has not yet been removed from the ARM ARM + * as of ARM DDI 0487G.b. + */ +#define ID_AA64ISAR2_WFXT_NI 0x0 +#define ID_AA64ISAR2_WFXT_SUPPORTED 0x2 + /* id_aa64pfr0 */ #define ID_AA64PFR0_CSV3_SHIFT 60 #define ID_AA64PFR0_CSV2_SHIFT 56 @@ -646,6 +662,7 @@ #endif /* id_aa64mmfr1 */ +#define ID_AA64MMFR1_ECBHB_SHIFT 60 #define ID_AA64MMFR1_PAN_SHIFT 20 #define ID_AA64MMFR1_LOR_SHIFT 16 #define ID_AA64MMFR1_HPD_SHIFT 12 diff -u linux-azure-5.4.0/arch/arm64/include/asm/uaccess.h linux-azure-5.4.0/arch/arm64/include/asm/uaccess.h --- linux-azure-5.4.0/arch/arm64/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/arm64/include/asm/uaccess.h @@ -112,8 +112,8 @@ local_irq_save(flags); ttbr = read_sysreg(ttbr1_el1); ttbr &= ~TTBR_ASID_MASK; - /* reserved_ttbr0 placed before swapper_pg_dir */ - write_sysreg(ttbr - RESERVED_TTBR0_SIZE, ttbr0_el1); + /* reserved_pg_dir placed before swapper_pg_dir */ + write_sysreg(ttbr - PAGE_SIZE, ttbr0_el1); isb(); /* Set reserved ASID */ write_sysreg(ttbr, ttbr1_el1); diff -u linux-azure-5.4.0/arch/arm64/include/asm/vdso/gettimeofday.h linux-azure-5.4.0/arch/arm64/include/asm/vdso/gettimeofday.h --- linux-azure-5.4.0/arch/arm64/include/asm/vdso/gettimeofday.h +++ linux-azure-5.4.0/arch/arm64/include/asm/vdso/gettimeofday.h @@ -85,11 +85,7 @@ */ isb(); asm volatile("mrs %0, cntvct_el0" : "=r" (res) :: "memory"); - /* - * This isb() is required to prevent that the seq lock is - * speculated.# - */ - isb(); + arch_counter_enforce_ordering(res); return res; } diff -u linux-azure-5.4.0/arch/arm64/kernel/alternative.c linux-azure-5.4.0/arch/arm64/kernel/alternative.c --- linux-azure-5.4.0/arch/arm64/kernel/alternative.c +++ linux-azure-5.4.0/arch/arm64/kernel/alternative.c @@ -41,7 +41,7 @@ /* * Check if the target PC is within an alternative block. */ -static bool branch_insn_requires_update(struct alt_instr *alt, unsigned long pc) +static __always_inline bool branch_insn_requires_update(struct alt_instr *alt, unsigned long pc) { unsigned long replptr = (unsigned long)ALT_REPL_PTR(alt); return !(pc >= replptr && pc <= (replptr + alt->alt_len)); @@ -49,7 +49,7 @@ #define align_down(x, a) ((unsigned long)(x) & ~(((unsigned long)(a)) - 1)) -static u32 get_alt_insn(struct alt_instr *alt, __le32 *insnptr, __le32 *altinsnptr) +static __always_inline u32 get_alt_insn(struct alt_instr *alt, __le32 *insnptr, __le32 *altinsnptr) { u32 insn; @@ -94,7 +94,7 @@ return insn; } -static void patch_alternative(struct alt_instr *alt, +static noinstr void patch_alternative(struct alt_instr *alt, __le32 *origptr, __le32 *updptr, int nr_inst) { __le32 *replptr; diff -u linux-azure-5.4.0/arch/arm64/kernel/armv8_deprecated.c linux-azure-5.4.0/arch/arm64/kernel/armv8_deprecated.c --- linux-azure-5.4.0/arch/arm64/kernel/armv8_deprecated.c +++ linux-azure-5.4.0/arch/arm64/kernel/armv8_deprecated.c @@ -59,6 +59,7 @@ static LIST_HEAD(insn_emulation); static int nr_insn_emulated __initdata; static DEFINE_RAW_SPINLOCK(insn_emulation_lock); +static DEFINE_MUTEX(insn_emulation_mutex); static void register_emulation_hooks(struct insn_emulation_ops *ops) { @@ -207,10 +208,10 @@ loff_t *ppos) { int ret = 0; - struct insn_emulation *insn = (struct insn_emulation *) table->data; + struct insn_emulation *insn = container_of(table->data, struct insn_emulation, current_mode); enum insn_emulation_mode prev_mode = insn->current_mode; - table->data = &insn->current_mode; + mutex_lock(&insn_emulation_mutex); ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); if (ret || !write || prev_mode == insn->current_mode) @@ -223,7 +224,7 @@ update_insn_emulation_mode(insn, INSN_UNDEF); } ret: - table->data = insn; + mutex_unlock(&insn_emulation_mutex); return ret; } @@ -247,7 +248,7 @@ sysctl->maxlen = sizeof(int); sysctl->procname = insn->ops->name; - sysctl->data = insn; + sysctl->data = &insn->current_mode; sysctl->extra1 = &insn->min; sysctl->extra2 = &insn->max; sysctl->proc_handler = emulation_proc_handler; diff -u linux-azure-5.4.0/arch/arm64/kernel/cpu_errata.c linux-azure-5.4.0/arch/arm64/kernel/cpu_errata.c --- linux-azure-5.4.0/arch/arm64/kernel/cpu_errata.c +++ linux-azure-5.4.0/arch/arm64/kernel/cpu_errata.c @@ -13,6 +13,7 @@ #include #include #include +#include static bool __maybe_unused is_affected_midr_range(const struct arm64_cpu_capabilities *entry, int scope) @@ -116,6 +117,16 @@ #ifdef CONFIG_KVM_INDIRECT_VECTORS extern char __smccc_workaround_1_smc_start[]; extern char __smccc_workaround_1_smc_end[]; +extern char __smccc_workaround_3_smc_start[]; +extern char __smccc_workaround_3_smc_end[]; +extern char __spectre_bhb_loop_k8_start[]; +extern char __spectre_bhb_loop_k8_end[]; +extern char __spectre_bhb_loop_k24_start[]; +extern char __spectre_bhb_loop_k24_end[]; +extern char __spectre_bhb_loop_k32_start[]; +extern char __spectre_bhb_loop_k32_end[]; +extern char __spectre_bhb_clearbhb_start[]; +extern char __spectre_bhb_clearbhb_end[]; static void __copy_hyp_vect_bpi(int slot, const char *hyp_vecs_start, const char *hyp_vecs_end) @@ -129,11 +140,11 @@ __flush_icache_range((uintptr_t)dst, (uintptr_t)dst + SZ_2K); } +static DEFINE_RAW_SPINLOCK(bp_lock); static void install_bp_hardening_cb(bp_hardening_cb_t fn, const char *hyp_vecs_start, const char *hyp_vecs_end) { - static DEFINE_RAW_SPINLOCK(bp_lock); int cpu, slot = -1; /* @@ -161,6 +172,7 @@ __this_cpu_write(bp_hardening_data.hyp_vectors_slot, slot); __this_cpu_write(bp_hardening_data.fn, fn); + __this_cpu_write(bp_hardening_data.template_start, hyp_vecs_start); raw_spin_unlock(&bp_lock); } #else @@ -805,6 +817,14 @@ }; #endif +#ifdef CONFIG_ARM64_ERRATUM_1742098 +static struct midr_range broken_aarch32_aes[] = { + MIDR_RANGE(MIDR_CORTEX_A57, 0, 1, 0xf, 0xf), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A72), + {}, +}; +#endif + const struct arm64_cpu_capabilities arm64_errata[] = { #ifdef CONFIG_ARM64_WORKAROUND_CLEAN_CACHE { @@ -927,6 +947,13 @@ .cpu_enable = cpu_enable_ssbd_mitigation, .midr_range_list = arm64_ssb_cpus, }, + { + .desc = "Spectre-BHB", + .capability = ARM64_SPECTRE_BHB, + .type = ARM64_CPUCAP_LOCAL_CPU_ERRATUM, + .matches = is_spectre_bhb_affected, + .cpu_enable = spectre_bhb_enable_mitigation, + }, #ifdef CONFIG_ARM64_ERRATUM_1418040 { .desc = "ARM erratum 1418040", @@ -979,6 +1006,14 @@ .cpu_enable = cpu_enable_trap_ctr_access, }, #endif +#ifdef CONFIG_ARM64_ERRATUM_1742098 + { + .desc = "ARM erratum 1742098", + .capability = ARM64_WORKAROUND_1742098, + CAP_MIDR_RANGE_LIST(broken_aarch32_aes), + .type = ARM64_CPUCAP_LOCAL_CPU_ERRATUM, + }, +#endif { } }; @@ -989,15 +1024,41 @@ return sprintf(buf, "Mitigation: __user pointer sanitization\n"); } +static const char *get_bhb_affected_string(enum mitigation_state bhb_state) +{ + switch (bhb_state) { + case SPECTRE_UNAFFECTED: + return ""; + default: + case SPECTRE_VULNERABLE: + return ", but not BHB"; + case SPECTRE_MITIGATED: + return ", BHB"; + } +} + ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf) { + enum mitigation_state bhb_state = arm64_get_spectre_bhb_state(); + const char *bhb_str = get_bhb_affected_string(bhb_state); + const char *v2_str = "Branch predictor hardening"; + switch (get_spectre_v2_workaround_state()) { case ARM64_BP_HARDEN_NOT_REQUIRED: - return sprintf(buf, "Not affected\n"); - case ARM64_BP_HARDEN_WA_NEEDED: - return sprintf(buf, "Mitigation: Branch predictor hardening\n"); - case ARM64_BP_HARDEN_UNKNOWN: + if (bhb_state == SPECTRE_UNAFFECTED) + return sprintf(buf, "Not affected\n"); + + /* + * Platforms affected by Spectre-BHB can't report + * "Not affected" for Spectre-v2. + */ + v2_str = "CSV2"; + fallthrough; + case ARM64_BP_HARDEN_WA_NEEDED: + return sprintf(buf, "Mitigation: %s%s\n", v2_str, bhb_str); + case ARM64_BP_HARDEN_UNKNOWN: + fallthrough; default: return sprintf(buf, "Vulnerable\n"); } @@ -1021,0 +1083,330 @@ + +/* + * We try to ensure that the mitigation state can never change as the result of + * onlining a late CPU. + */ +static void update_mitigation_state(enum mitigation_state *oldp, + enum mitigation_state new) +{ + enum mitigation_state state; + + do { + state = READ_ONCE(*oldp); + if (new <= state) + break; + } while (cmpxchg_relaxed(oldp, state, new) != state); +} + +/* + * Spectre BHB. + * + * A CPU is either: + * - Mitigated by a branchy loop a CPU specific number of times, and listed + * in our "loop mitigated list". + * - Mitigated in software by the firmware Spectre v2 call. + * - Has the ClearBHB instruction to perform the mitigation. + * - Has the 'Exception Clears Branch History Buffer' (ECBHB) feature, so no + * software mitigation in the vectors is needed. + * - Has CSV2.3, so is unaffected. + */ +static enum mitigation_state spectre_bhb_state; + +enum mitigation_state arm64_get_spectre_bhb_state(void) +{ + return spectre_bhb_state; +} + +/* + * This must be called with SCOPE_LOCAL_CPU for each type of CPU, before any + * SCOPE_SYSTEM call will give the right answer. + */ +u8 spectre_bhb_loop_affected(int scope) +{ + u8 k = 0; + static u8 max_bhb_k; + + if (scope == SCOPE_LOCAL_CPU) { + static const struct midr_range spectre_bhb_k32_list[] = { + MIDR_ALL_VERSIONS(MIDR_CORTEX_A78), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A78C), + MIDR_ALL_VERSIONS(MIDR_CORTEX_X1), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A710), + MIDR_ALL_VERSIONS(MIDR_CORTEX_X2), + MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N2), + MIDR_ALL_VERSIONS(MIDR_NEOVERSE_V1), + {}, + }; + static const struct midr_range spectre_bhb_k24_list[] = { + MIDR_ALL_VERSIONS(MIDR_CORTEX_A76), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A77), + MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N1), + {}, + }; + static const struct midr_range spectre_bhb_k8_list[] = { + MIDR_ALL_VERSIONS(MIDR_CORTEX_A72), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A57), + {}, + }; + + if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k32_list)) + k = 32; + else if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k24_list)) + k = 24; + else if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k8_list)) + k = 8; + + max_bhb_k = max(max_bhb_k, k); + } else { + k = max_bhb_k; + } + + return k; +} + +static enum mitigation_state spectre_bhb_get_cpu_fw_mitigation_state(void) +{ + int ret; + struct arm_smccc_res res; + + if (psci_ops.smccc_version == SMCCC_VERSION_1_0) + return SPECTRE_VULNERABLE; + + switch (psci_ops.conduit) { + case PSCI_CONDUIT_HVC: + arm_smccc_1_1_hvc(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, + ARM_SMCCC_ARCH_WORKAROUND_3, &res); + break; + + case PSCI_CONDUIT_SMC: + arm_smccc_1_1_smc(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, + ARM_SMCCC_ARCH_WORKAROUND_3, &res); + break; + + default: + return SPECTRE_VULNERABLE; + } + + ret = res.a0; + switch (ret) { + case SMCCC_RET_SUCCESS: + return SPECTRE_MITIGATED; + case SMCCC_ARCH_WORKAROUND_RET_UNAFFECTED: + return SPECTRE_UNAFFECTED; + default: + fallthrough; + case SMCCC_RET_NOT_SUPPORTED: + return SPECTRE_VULNERABLE; + } +} + +static bool is_spectre_bhb_fw_affected(int scope) +{ + static bool system_affected; + enum mitigation_state fw_state; + bool has_smccc = (psci_ops.smccc_version >= SMCCC_VERSION_1_1); + static const struct midr_range spectre_bhb_firmware_mitigated_list[] = { + MIDR_ALL_VERSIONS(MIDR_CORTEX_A73), + MIDR_ALL_VERSIONS(MIDR_CORTEX_A75), + {}, + }; + bool cpu_in_list = is_midr_in_range_list(read_cpuid_id(), + spectre_bhb_firmware_mitigated_list); + + if (scope != SCOPE_LOCAL_CPU) + return system_affected; + + fw_state = spectre_bhb_get_cpu_fw_mitigation_state(); + if (cpu_in_list || (has_smccc && fw_state == SPECTRE_MITIGATED)) { + system_affected = true; + return true; + } + + return false; +} + +static bool supports_ecbhb(int scope) +{ + u64 mmfr1; + + if (scope == SCOPE_LOCAL_CPU) + mmfr1 = read_sysreg_s(SYS_ID_AA64MMFR1_EL1); + else + mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1); + + return cpuid_feature_extract_unsigned_field(mmfr1, + ID_AA64MMFR1_ECBHB_SHIFT); +} + +bool is_spectre_bhb_affected(const struct arm64_cpu_capabilities *entry, + int scope) +{ + WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); + + if (supports_csv2p3(scope)) + return false; + + if (supports_clearbhb(scope)) + return true; + + if (spectre_bhb_loop_affected(scope)) + return true; + + if (is_spectre_bhb_fw_affected(scope)) + return true; + + return false; +} + +static void this_cpu_set_vectors(enum arm64_bp_harden_el1_vectors slot) +{ + const char *v = arm64_get_bp_hardening_vector(slot); + + if (slot < 0) + return; + + __this_cpu_write(this_cpu_vector, v); + + /* + * When KPTI is in use, the vectors are switched when exiting to + * user-space. + */ + if (arm64_kernel_unmapped_at_el0()) + return; + + write_sysreg(v, vbar_el1); + isb(); +} + +#ifdef CONFIG_KVM_INDIRECT_VECTORS +static const char *kvm_bhb_get_vecs_end(const char *start) +{ + if (start == __smccc_workaround_3_smc_start) + return __smccc_workaround_3_smc_end; + else if (start == __spectre_bhb_loop_k8_start) + return __spectre_bhb_loop_k8_end; + else if (start == __spectre_bhb_loop_k24_start) + return __spectre_bhb_loop_k24_end; + else if (start == __spectre_bhb_loop_k32_start) + return __spectre_bhb_loop_k32_end; + else if (start == __spectre_bhb_clearbhb_start) + return __spectre_bhb_clearbhb_end; + + return NULL; +} + +static void kvm_setup_bhb_slot(const char *hyp_vecs_start) +{ + int cpu, slot = -1; + const char *hyp_vecs_end; + + if (!IS_ENABLED(CONFIG_KVM) || !is_hyp_mode_available()) + return; + + hyp_vecs_end = kvm_bhb_get_vecs_end(hyp_vecs_start); + if (WARN_ON_ONCE(!hyp_vecs_start || !hyp_vecs_end)) + return; + + raw_spin_lock(&bp_lock); + for_each_possible_cpu(cpu) { + if (per_cpu(bp_hardening_data.template_start, cpu) == hyp_vecs_start) { + slot = per_cpu(bp_hardening_data.hyp_vectors_slot, cpu); + break; + } + } + + if (slot == -1) { + slot = atomic_inc_return(&arm64_el2_vector_last_slot); + BUG_ON(slot >= BP_HARDEN_EL2_SLOTS); + __copy_hyp_vect_bpi(slot, hyp_vecs_start, hyp_vecs_end); + } + + __this_cpu_write(bp_hardening_data.hyp_vectors_slot, slot); + __this_cpu_write(bp_hardening_data.template_start, hyp_vecs_start); + raw_spin_unlock(&bp_lock); +} +#else +#define __smccc_workaround_3_smc_start NULL +#define __spectre_bhb_loop_k8_start NULL +#define __spectre_bhb_loop_k24_start NULL +#define __spectre_bhb_loop_k32_start NULL +#define __spectre_bhb_clearbhb_start NULL + +static void kvm_setup_bhb_slot(const char *hyp_vecs_start) { } +#endif + +void spectre_bhb_enable_mitigation(const struct arm64_cpu_capabilities *entry) +{ + enum mitigation_state fw_state, state = SPECTRE_VULNERABLE; + + if (!is_spectre_bhb_affected(entry, SCOPE_LOCAL_CPU)) + return; + + if (get_spectre_v2_workaround_state() == ARM64_BP_HARDEN_UNKNOWN) { + /* No point mitigating Spectre-BHB alone. */ + } else if (!IS_ENABLED(CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY)) { + pr_info_once("spectre-bhb mitigation disabled by compile time option\n"); + } else if (cpu_mitigations_off()) { + pr_info_once("spectre-bhb mitigation disabled by command line option\n"); + } else if (supports_ecbhb(SCOPE_LOCAL_CPU)) { + state = SPECTRE_MITIGATED; + } else if (supports_clearbhb(SCOPE_LOCAL_CPU)) { + kvm_setup_bhb_slot(__spectre_bhb_clearbhb_start); + this_cpu_set_vectors(EL1_VECTOR_BHB_CLEAR_INSN); + + state = SPECTRE_MITIGATED; + } else if (spectre_bhb_loop_affected(SCOPE_LOCAL_CPU)) { + switch (spectre_bhb_loop_affected(SCOPE_SYSTEM)) { + case 8: + kvm_setup_bhb_slot(__spectre_bhb_loop_k8_start); + break; + case 24: + kvm_setup_bhb_slot(__spectre_bhb_loop_k24_start); + break; + case 32: + kvm_setup_bhb_slot(__spectre_bhb_loop_k32_start); + break; + default: + WARN_ON_ONCE(1); + } + this_cpu_set_vectors(EL1_VECTOR_BHB_LOOP); + + state = SPECTRE_MITIGATED; + } else if (is_spectre_bhb_fw_affected(SCOPE_LOCAL_CPU)) { + fw_state = spectre_bhb_get_cpu_fw_mitigation_state(); + if (fw_state == SPECTRE_MITIGATED) { + kvm_setup_bhb_slot(__smccc_workaround_3_smc_start); + this_cpu_set_vectors(EL1_VECTOR_BHB_FW); + + /* + * With WA3 in the vectors, the WA1 calls can be + * removed. + */ + __this_cpu_write(bp_hardening_data.fn, NULL); + + state = SPECTRE_MITIGATED; + } + } + + update_mitigation_state(&spectre_bhb_state, state); +} + +/* Patched to correct the immediate */ +void noinstr spectre_bhb_patch_loop_iter(struct alt_instr *alt, + __le32 *origptr, __le32 *updptr, int nr_inst) +{ + u8 rd; + u32 insn; + u16 loop_count = spectre_bhb_loop_affected(SCOPE_SYSTEM); + + BUG_ON(nr_inst != 1); /* MOV -> MOV */ + + if (!IS_ENABLED(CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY)) + return; + + insn = le32_to_cpu(*origptr); + rd = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RD, insn); + insn = aarch64_insn_gen_movewide(rd, loop_count, 0, + AARCH64_INSN_VARIANT_64BIT, + AARCH64_INSN_MOVEWIDE_ZERO); + *updptr++ = cpu_to_le32(insn); +} diff -u linux-azure-5.4.0/arch/arm64/kernel/cpufeature.c linux-azure-5.4.0/arch/arm64/kernel/cpufeature.c --- linux-azure-5.4.0/arch/arm64/kernel/cpufeature.c +++ linux-azure-5.4.0/arch/arm64/kernel/cpufeature.c @@ -10,19 +10,23 @@ #include #include #include +#include #include #include #include #include #include + #include #include #include #include +#include #include #include #include #include +#include #include /* Kernel representation of AT_HWCAP and AT_HWCAP2 */ @@ -45,6 +49,8 @@ /* Need also bit for ARM64_CB_PATCH */ DECLARE_BITMAP(boot_capabilities, ARM64_NPATCHABLE); +DEFINE_PER_CPU_READ_MOSTLY(const char *, this_cpu_vector) = vectors; + /* * Flag to indicate if we have computed the system wide * capabilities based on the boot time active CPUs. This @@ -150,6 +156,11 @@ ARM64_FTR_END, }; +static const struct arm64_ftr_bits ftr_id_aa64isar2[] = { + ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_AA64ISAR2_CLEARBHB_SHIFT, 4, 0), + ARM64_FTR_END, +}; + static const struct arm64_ftr_bits ftr_id_aa64pfr0[] = { ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV3_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_HIDDEN, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64PFR0_CSV2_SHIFT, 4, 0), @@ -410,6 +421,7 @@ /* Op1 = 0, CRn = 0, CRm = 6 */ ARM64_FTR_REG(SYS_ID_AA64ISAR0_EL1, ftr_id_aa64isar0), ARM64_FTR_REG(SYS_ID_AA64ISAR1_EL1, ftr_id_aa64isar1), + ARM64_FTR_REG(SYS_ID_AA64ISAR2_EL1, ftr_id_aa64isar2), /* Op1 = 0, CRn = 0, CRm = 7 */ ARM64_FTR_REG(SYS_ID_AA64MMFR0_EL1, ftr_id_aa64mmfr0), @@ -581,6 +593,7 @@ init_cpu_ftr_reg(SYS_ID_AA64DFR1_EL1, info->reg_id_aa64dfr1); init_cpu_ftr_reg(SYS_ID_AA64ISAR0_EL1, info->reg_id_aa64isar0); init_cpu_ftr_reg(SYS_ID_AA64ISAR1_EL1, info->reg_id_aa64isar1); + init_cpu_ftr_reg(SYS_ID_AA64ISAR2_EL1, info->reg_id_aa64isar2); init_cpu_ftr_reg(SYS_ID_AA64MMFR0_EL1, info->reg_id_aa64mmfr0); init_cpu_ftr_reg(SYS_ID_AA64MMFR1_EL1, info->reg_id_aa64mmfr1); init_cpu_ftr_reg(SYS_ID_AA64MMFR2_EL1, info->reg_id_aa64mmfr2); @@ -704,6 +717,8 @@ info->reg_id_aa64isar0, boot->reg_id_aa64isar0); taint |= check_update_ftr_reg(SYS_ID_AA64ISAR1_EL1, cpu, info->reg_id_aa64isar1, boot->reg_id_aa64isar1); + taint |= check_update_ftr_reg(SYS_ID_AA64ISAR2_EL1, cpu, + info->reg_id_aa64isar2, boot->reg_id_aa64isar2); /* * Differing PARange support is fine as long as all peripherals and @@ -838,6 +853,7 @@ read_sysreg_case(SYS_ID_AA64MMFR2_EL1); read_sysreg_case(SYS_ID_AA64ISAR0_EL1); read_sysreg_case(SYS_ID_AA64ISAR1_EL1); + read_sysreg_case(SYS_ID_AA64ISAR2_EL1); read_sysreg_case(SYS_CNTFRQ_EL0); read_sysreg_case(SYS_CTR_EL0); @@ -1038,6 +1054,12 @@ static bool kpti_applied = false; int cpu = smp_processor_id(); + if (__this_cpu_read(this_cpu_vector) == vectors) { + const char *v = arm64_get_bp_hardening_vector(EL1_VECTOR_KPTI); + + __this_cpu_write(this_cpu_vector, v); + } + /* * We don't need to rewrite the page-tables if either we've done * it already or we have KASLR enabled and therefore have not @@ -1259,6 +1281,14 @@ } #endif +static void elf_hwcap_fixup(void) +{ +#ifdef CONFIG_ARM64_ERRATUM_1742098 + if (cpus_have_const_cap(ARM64_WORKAROUND_1742098)) + compat_elf_hwcap2 &= ~COMPAT_HWCAP2_AES; +#endif /* ARM64_ERRATUM_1742098 */ +} + static const struct arm64_cpu_capabilities arm64_features[] = { { .desc = "GIC system register CPU interface", @@ -2082,8 +2112,10 @@ mark_const_caps_ready(); setup_elf_hwcaps(arm64_elf_hwcaps); - if (system_supports_32bit_el0()) + if (system_supports_32bit_el0()) { setup_elf_hwcaps(compat_elf_hwcaps); + elf_hwcap_fixup(); + } if (system_uses_ttbr0_pan()) pr_info("emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching\n"); diff -u linux-azure-5.4.0/arch/arm64/kernel/fpsimd.c linux-azure-5.4.0/arch/arm64/kernel/fpsimd.c --- linux-azure-5.4.0/arch/arm64/kernel/fpsimd.c +++ linux-azure-5.4.0/arch/arm64/kernel/fpsimd.c @@ -498,7 +498,7 @@ void sve_alloc(struct task_struct *task) { if (task->thread.sve_state) { - memset(task->thread.sve_state, 0, sve_state_size(current)); + memset(task->thread.sve_state, 0, sve_state_size(task)); return; } diff -u linux-azure-5.4.0/arch/arm64/kernel/head.S linux-azure-5.4.0/arch/arm64/kernel/head.S --- linux-azure-5.4.0/arch/arm64/kernel/head.S +++ linux-azure-5.4.0/arch/arm64/kernel/head.S @@ -194,7 +194,7 @@ * to be composed of multiple pages. (This effectively scales the end index). * * vstart: virtual address of start of range - * vend: virtual address of end of range + * vend: virtual address of end of range - we map [vstart, vend] * shift: shift used to transform virtual address into index * ptrs: number of entries in page table * istart: index in table corresponding to vstart @@ -231,17 +231,18 @@ * * tbl: location of page table * rtbl: address to be used for first level page table entry (typically tbl + PAGE_SIZE) - * vstart: start address to map - * vend: end address to map - we map [vstart, vend] + * vstart: virtual address of start of range + * vend: virtual address of end of range - we map [vstart, vend - 1] * flags: flags to use to map last level entries * phys: physical address corresponding to vstart - physical memory is contiguous * pgds: the number of pgd entries * * Temporaries: istart, iend, tmp, count, sv - these need to be different registers - * Preserves: vstart, vend, flags - * Corrupts: tbl, rtbl, istart, iend, tmp, count, sv + * Preserves: vstart, flags + * Corrupts: tbl, rtbl, vend, istart, iend, tmp, count, sv */ .macro map_memory, tbl, rtbl, vstart, vend, flags, phys, pgds, istart, iend, tmp, count, sv + sub \vend, \vend, #1 add \rtbl, \tbl, #PAGE_SIZE mov \sv, \rtbl mov \count, #0 diff -u linux-azure-5.4.0/arch/arm64/kernel/insn.c linux-azure-5.4.0/arch/arm64/kernel/insn.c --- linux-azure-5.4.0/arch/arm64/kernel/insn.c +++ linux-azure-5.4.0/arch/arm64/kernel/insn.c @@ -207,8 +207,8 @@ int i, ret = 0; struct aarch64_insn_patch *pp = arg; - /* The first CPU becomes master */ - if (atomic_inc_return(&pp->cpu_count) == 1) { + /* The last CPU becomes master */ + if (atomic_inc_return(&pp->cpu_count) == num_online_cpus()) { for (i = 0; ret == 0 && i < pp->insn_cnt; i++) ret = aarch64_insn_patch_text_nosync(pp->text_addrs[i], pp->new_insns[i]); diff -u linux-azure-5.4.0/arch/arm64/kernel/module.lds linux-azure-5.4.0/arch/arm64/kernel/module.lds --- linux-azure-5.4.0/arch/arm64/kernel/module.lds +++ linux-azure-5.4.0/arch/arm64/kernel/module.lds @@ -1,5 +1,5 @@ SECTIONS { - .plt 0 (NOLOAD) : { BYTE(0) } - .init.plt 0 (NOLOAD) : { BYTE(0) } - .text.ftrace_trampoline 0 (NOLOAD) : { BYTE(0) } + .plt 0 : { BYTE(0) } + .init.plt 0 : { BYTE(0) } + .text.ftrace_trampoline 0 : { BYTE(0) } } diff -u linux-azure-5.4.0/arch/arm64/kernel/process.c linux-azure-5.4.0/arch/arm64/kernel/process.c --- linux-azure-5.4.0/arch/arm64/kernel/process.c +++ linux-azure-5.4.0/arch/arm64/kernel/process.c @@ -56,7 +56,7 @@ #if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_STACKPROTECTOR_PER_TASK) #include -unsigned long __stack_chk_guard __read_mostly; +unsigned long __stack_chk_guard __ro_after_init; EXPORT_SYMBOL(__stack_chk_guard); #endif @@ -500,34 +500,26 @@ /* * ARM erratum 1418040 handling, affecting the 32bit view of CNTVCT. - * Assuming the virtual counter is enabled at the beginning of times: - * - * - disable access when switching from a 64bit task to a 32bit task - * - enable access when switching from a 32bit task to a 64bit task + * Ensure access is disabled when switching to a 32bit task, ensure + * access is enabled when switching to a 64bit task. */ -static void erratum_1418040_thread_switch(struct task_struct *prev, - struct task_struct *next) +static void erratum_1418040_thread_switch(struct task_struct *next) { - bool prev32, next32; - u64 val; - - if (!IS_ENABLED(CONFIG_ARM64_ERRATUM_1418040)) - return; - - prev32 = is_compat_thread(task_thread_info(prev)); - next32 = is_compat_thread(task_thread_info(next)); - - if (prev32 == next32 || !this_cpu_has_cap(ARM64_WORKAROUND_1418040)) + if (!IS_ENABLED(CONFIG_ARM64_ERRATUM_1418040) || + !this_cpu_has_cap(ARM64_WORKAROUND_1418040)) return; - val = read_sysreg(cntkctl_el1); - - if (!next32) - val |= ARCH_TIMER_USR_VCT_ACCESS_EN; + if (is_compat_thread(task_thread_info(next))) + sysreg_clear_set(cntkctl_el1, ARCH_TIMER_USR_VCT_ACCESS_EN, 0); else - val &= ~ARCH_TIMER_USR_VCT_ACCESS_EN; + sysreg_clear_set(cntkctl_el1, 0, ARCH_TIMER_USR_VCT_ACCESS_EN); +} - write_sysreg(val, cntkctl_el1); +static void erratum_1418040_new_exec(void) +{ + preempt_disable(); + erratum_1418040_thread_switch(current); + preempt_enable(); } /* @@ -546,7 +538,7 @@ uao_thread_switch(next); ptrauth_thread_switch(next); ssbs_thread_switch(next); - erratum_1418040_thread_switch(prev, next); + erratum_1418040_thread_switch(next); /* * Complete any pending TLB or cache maintenance on this CPU in case @@ -605,6 +597,7 @@ current->mm->context.flags = is_compat_task() ? MMCF_AARCH32 : 0; ptrauth_thread_init_user(current); + erratum_1418040_new_exec(); } #ifdef CONFIG_ARM64_TAGGED_ADDR_ABI diff -u linux-azure-5.4.0/arch/arm64/kernel/ptrace.c linux-azure-5.4.0/arch/arm64/kernel/ptrace.c --- linux-azure-5.4.0/arch/arm64/kernel/ptrace.c +++ linux-azure-5.4.0/arch/arm64/kernel/ptrace.c @@ -1868,7 +1868,7 @@ audit_syscall_exit(regs); if (flags & _TIF_SYSCALL_TRACEPOINT) - trace_sys_exit(regs, regs_return_value(regs)); + trace_sys_exit(regs, syscall_get_return_value(current, regs)); if (flags & (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP)) tracehook_report_syscall(regs, PTRACE_SYSCALL_EXIT); diff -u linux-azure-5.4.0/arch/arm64/kernel/setup.c linux-azure-5.4.0/arch/arm64/kernel/setup.c --- linux-azure-5.4.0/arch/arm64/kernel/setup.c +++ linux-azure-5.4.0/arch/arm64/kernel/setup.c @@ -356,7 +356,7 @@ * faults in case uaccess_enable() is inadvertently called by the init * thread. */ - init_task.thread_info.ttbr0 = __pa_symbol(empty_zero_page); + init_task.thread_info.ttbr0 = phys_to_ttbr(__pa_symbol(reserved_pg_dir)); #endif #ifdef CONFIG_VT diff -u linux-azure-5.4.0/arch/arm64/kernel/signal.c linux-azure-5.4.0/arch/arm64/kernel/signal.c --- linux-azure-5.4.0/arch/arm64/kernel/signal.c +++ linux-azure-5.4.0/arch/arm64/kernel/signal.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include @@ -868,7 +869,7 @@ retval == -ERESTART_RESTARTBLOCK || (retval == -ERESTARTSYS && !(ksig.ka.sa.sa_flags & SA_RESTART)))) { - regs->regs[0] = -EINTR; + syscall_set_return_value(current, regs, -EINTR, 0); regs->pc = continue_addr; } diff -u linux-azure-5.4.0/arch/arm64/kernel/sys_compat.c linux-azure-5.4.0/arch/arm64/kernel/sys_compat.c --- linux-azure-5.4.0/arch/arm64/kernel/sys_compat.c +++ linux-azure-5.4.0/arch/arm64/kernel/sys_compat.c @@ -116,5 +116,5 @@ arm64_notify_die("Oops - bad compat syscall(2)", regs, - SIGILL, ILL_ILLTRP, addr, scno); + SIGILL, ILL_ILLTRP, addr, 0); return 0; } diff -u linux-azure-5.4.0/arch/arm64/kernel/syscall.c linux-azure-5.4.0/arch/arm64/kernel/syscall.c --- linux-azure-5.4.0/arch/arm64/kernel/syscall.c +++ linux-azure-5.4.0/arch/arm64/kernel/syscall.c @@ -50,10 +50,7 @@ ret = do_ni_syscall(regs, scno); } - if (is_compat_task()) - ret = lower_32_bits(ret); - - regs->regs[0] = ret; + syscall_set_return_value(current, regs, 0, ret); } static inline bool has_syscall_work(unsigned long flags) @@ -108,7 +105,7 @@ if (has_syscall_work(flags)) { /* set default errno for user-issued syscall(-1) */ if (scno == NO_SYSCALL) - regs->regs[0] = -ENOSYS; + syscall_set_return_value(current, regs, -ENOSYS, 0); scno = syscall_trace_enter(regs); if (scno == NO_SYSCALL) goto trace_exit; diff -u linux-azure-5.4.0/arch/arm64/kernel/topology.c linux-azure-5.4.0/arch/arm64/kernel/topology.c --- linux-azure-5.4.0/arch/arm64/kernel/topology.c +++ linux-azure-5.4.0/arch/arm64/kernel/topology.c @@ -21,46 +21,6 @@ #include #include -void store_cpu_topology(unsigned int cpuid) -{ - struct cpu_topology *cpuid_topo = &cpu_topology[cpuid]; - u64 mpidr; - - if (cpuid_topo->package_id != -1) - goto topology_populated; - - mpidr = read_cpuid_mpidr(); - - /* Uniprocessor systems can rely on default topology values */ - if (mpidr & MPIDR_UP_BITMASK) - return; - - /* - * This would be the place to create cpu topology based on MPIDR. - * - * However, it cannot be trusted to depict the actual topology; some - * pieces of the architecture enforce an artificial cap on Aff0 values - * (e.g. GICv3's ICC_SGI1R_EL1 limits it to 15), leading to an - * artificial cycling of Aff1, Aff2 and Aff3 values. IOW, these end up - * having absolutely no relationship to the actual underlying system - * topology, and cannot be reasonably used as core / package ID. - * - * If the MT bit is set, Aff0 *could* be used to define a thread ID, but - * we still wouldn't be able to obtain a sane core ID. This means we - * need to entirely ignore MPIDR for any topology deduction. - */ - cpuid_topo->thread_id = -1; - cpuid_topo->core_id = cpuid; - cpuid_topo->package_id = cpu_to_node(cpuid); - - pr_debug("CPU%u: cluster %d core %d thread %d mpidr %#016llx\n", - cpuid, cpuid_topo->package_id, cpuid_topo->core_id, - cpuid_topo->thread_id, mpidr); - -topology_populated: - update_siblings_masks(cpuid); -} - #ifdef CONFIG_ACPI static bool __init acpi_cpu_is_threaded(int cpu) { diff -u linux-azure-5.4.0/arch/arm64/kernel/vdso32/Makefile linux-azure-5.4.0/arch/arm64/kernel/vdso32/Makefile --- linux-azure-5.4.0/arch/arm64/kernel/vdso32/Makefile +++ linux-azure-5.4.0/arch/arm64/kernel/vdso32/Makefile @@ -32,7 +32,8 @@ # As a result we set our own flags here. # KBUILD_CPPFLAGS and NOSTDINC_FLAGS from top-level Makefile -VDSO_CPPFLAGS := -D__KERNEL__ -nostdinc -isystem $(shell $(CC_COMPAT) -print-file-name=include) +VDSO_CPPFLAGS := -D__KERNEL__ -nostdinc +VDSO_CPPFLAGS += -isystem $(shell $(CC_COMPAT) -print-file-name=include 2>/dev/null) VDSO_CPPFLAGS += $(LINUXINCLUDE) # Common C and assembly flags diff -u linux-azure-5.4.0/arch/arm64/kernel/vmlinux.lds.S linux-azure-5.4.0/arch/arm64/kernel/vmlinux.lds.S --- linux-azure-5.4.0/arch/arm64/kernel/vmlinux.lds.S +++ linux-azure-5.4.0/arch/arm64/kernel/vmlinux.lds.S @@ -157,13 +157,11 @@ . += PAGE_SIZE; #endif -#ifdef CONFIG_ARM64_SW_TTBR0_PAN - reserved_ttbr0 = .; - . += RESERVED_TTBR0_SIZE; -#endif + reserved_pg_dir = .; + . += PAGE_SIZE; + swapper_pg_dir = .; . += PAGE_SIZE; - swapper_pg_end = .; . = ALIGN(SEGMENT_ALIGN); __init_begin = .; @@ -278,7 +276,7 @@ <= SZ_4K, "Hibernate exit text too big or misaligned") #endif #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 -ASSERT((__entry_tramp_text_end - __entry_tramp_text_start) == PAGE_SIZE, +ASSERT((__entry_tramp_text_end - __entry_tramp_text_start) <= 3*PAGE_SIZE, "Entry trampoline text too big") #endif /* diff -u linux-azure-5.4.0/arch/arm64/kvm/hyp/hyp-entry.S linux-azure-5.4.0/arch/arm64/kvm/hyp/hyp-entry.S --- linux-azure-5.4.0/arch/arm64/kvm/hyp/hyp-entry.S +++ linux-azure-5.4.0/arch/arm64/kvm/hyp/hyp-entry.S @@ -113,6 +113,10 @@ /* ARM_SMCCC_ARCH_WORKAROUND_2 handling */ eor w1, w1, #(ARM_SMCCC_ARCH_WORKAROUND_1 ^ \ ARM_SMCCC_ARCH_WORKAROUND_2) + cbz w1, wa_epilogue + + eor w1, w1, #(ARM_SMCCC_ARCH_WORKAROUND_2 ^ \ + ARM_SMCCC_ARCH_WORKAROUND_3) cbnz w1, el1_trap #ifdef CONFIG_ARM64_SSBD @@ -349,2 +353,62 @@ ENTRY(__smccc_workaround_1_smc_end) + +ENTRY(__smccc_workaround_3_smc_start) + esb + sub sp, sp, #(8 * 4) + stp x2, x3, [sp, #(8 * 0)] + stp x0, x1, [sp, #(8 * 2)] + mov w0, #ARM_SMCCC_ARCH_WORKAROUND_3 + smc #0 + ldp x2, x3, [sp, #(8 * 0)] + ldp x0, x1, [sp, #(8 * 2)] + add sp, sp, #(8 * 4) +ENTRY(__smccc_workaround_3_smc_end) + +ENTRY(__spectre_bhb_loop_k8_start) + esb + sub sp, sp, #(8 * 2) + stp x0, x1, [sp, #(8 * 0)] + mov x0, #8 +2: b . + 4 + subs x0, x0, #1 + b.ne 2b + dsb nsh + isb + ldp x0, x1, [sp, #(8 * 0)] + add sp, sp, #(8 * 2) +ENTRY(__spectre_bhb_loop_k8_end) + +ENTRY(__spectre_bhb_loop_k24_start) + esb + sub sp, sp, #(8 * 2) + stp x0, x1, [sp, #(8 * 0)] + mov x0, #8 +2: b . + 4 + subs x0, x0, #1 + b.ne 2b + dsb nsh + isb + ldp x0, x1, [sp, #(8 * 0)] + add sp, sp, #(8 * 2) +ENTRY(__spectre_bhb_loop_k24_end) + +ENTRY(__spectre_bhb_loop_k32_start) + esb + sub sp, sp, #(8 * 2) + stp x0, x1, [sp, #(8 * 0)] + mov x0, #8 +2: b . + 4 + subs x0, x0, #1 + b.ne 2b + dsb nsh + isb + ldp x0, x1, [sp, #(8 * 0)] + add sp, sp, #(8 * 2) +ENTRY(__spectre_bhb_loop_k32_end) + +ENTRY(__spectre_bhb_clearbhb_start) + esb + clearbhb + isb +ENTRY(__spectre_bhb_clearbhb_end) #endif diff -u linux-azure-5.4.0/arch/arm64/kvm/hyp/switch.c linux-azure-5.4.0/arch/arm64/kvm/hyp/switch.c --- linux-azure-5.4.0/arch/arm64/kvm/hyp/switch.c +++ linux-azure-5.4.0/arch/arm64/kvm/hyp/switch.c @@ -25,6 +25,7 @@ #include #include #include +#include extern struct exception_table_entry __start___kvm_ex_table; extern struct exception_table_entry __stop___kvm_ex_table; @@ -152,7 +153,7 @@ static void deactivate_traps_vhe(void) { - extern char vectors[]; /* kernel exception vectors */ + const char *host_vectors = vectors; write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2); /* @@ -163,7 +164,10 @@ asm(ALTERNATIVE("nop", "isb", ARM64_WORKAROUND_1165522)); write_sysreg(CPACR_EL1_DEFAULT, cpacr_el1); - write_sysreg(vectors, vbar_el1); + + if (!arm64_kernel_unmapped_at_el0()) + host_vectors = __this_cpu_read(this_cpu_vector); + write_sysreg(host_vectors, vbar_el1); } NOKPROBE_SYMBOL(deactivate_traps_vhe); diff -u linux-azure-5.4.0/arch/arm64/kvm/sys_regs.c linux-azure-5.4.0/arch/arm64/kvm/sys_regs.c --- linux-azure-5.4.0/arch/arm64/kvm/sys_regs.c +++ linux-azure-5.4.0/arch/arm64/kvm/sys_regs.c @@ -432,14 +432,14 @@ struct sys_reg_params *p, const struct sys_reg_desc *rd) { - u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->reg]; + u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->CRm]; if (p->is_write) reg_to_dbg(vcpu, p, dbg_reg); else dbg_to_reg(vcpu, p, dbg_reg); - trace_trap_reg(__func__, rd->reg, p->is_write, *dbg_reg); + trace_trap_reg(__func__, rd->CRm, p->is_write, *dbg_reg); return true; } @@ -447,7 +447,7 @@ static int set_bvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->CRm]; if (copy_from_user(r, uaddr, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -457,7 +457,7 @@ static int get_bvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bvr[rd->CRm]; if (copy_to_user(uaddr, r, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -467,21 +467,21 @@ static void reset_bvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd) { - vcpu->arch.vcpu_debug_state.dbg_bvr[rd->reg] = rd->val; + vcpu->arch.vcpu_debug_state.dbg_bvr[rd->CRm] = rd->val; } static bool trap_bcr(struct kvm_vcpu *vcpu, struct sys_reg_params *p, const struct sys_reg_desc *rd) { - u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->reg]; + u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->CRm]; if (p->is_write) reg_to_dbg(vcpu, p, dbg_reg); else dbg_to_reg(vcpu, p, dbg_reg); - trace_trap_reg(__func__, rd->reg, p->is_write, *dbg_reg); + trace_trap_reg(__func__, rd->CRm, p->is_write, *dbg_reg); return true; } @@ -489,7 +489,7 @@ static int set_bcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->CRm]; if (copy_from_user(r, uaddr, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -500,7 +500,7 @@ static int get_bcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_bcr[rd->CRm]; if (copy_to_user(uaddr, r, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -510,22 +510,22 @@ static void reset_bcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd) { - vcpu->arch.vcpu_debug_state.dbg_bcr[rd->reg] = rd->val; + vcpu->arch.vcpu_debug_state.dbg_bcr[rd->CRm] = rd->val; } static bool trap_wvr(struct kvm_vcpu *vcpu, struct sys_reg_params *p, const struct sys_reg_desc *rd) { - u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->reg]; + u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->CRm]; if (p->is_write) reg_to_dbg(vcpu, p, dbg_reg); else dbg_to_reg(vcpu, p, dbg_reg); - trace_trap_reg(__func__, rd->reg, p->is_write, - vcpu->arch.vcpu_debug_state.dbg_wvr[rd->reg]); + trace_trap_reg(__func__, rd->CRm, p->is_write, + vcpu->arch.vcpu_debug_state.dbg_wvr[rd->CRm]); return true; } @@ -533,7 +533,7 @@ static int set_wvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->CRm]; if (copy_from_user(r, uaddr, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -543,7 +543,7 @@ static int get_wvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wvr[rd->CRm]; if (copy_to_user(uaddr, r, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -553,21 +553,21 @@ static void reset_wvr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd) { - vcpu->arch.vcpu_debug_state.dbg_wvr[rd->reg] = rd->val; + vcpu->arch.vcpu_debug_state.dbg_wvr[rd->CRm] = rd->val; } static bool trap_wcr(struct kvm_vcpu *vcpu, struct sys_reg_params *p, const struct sys_reg_desc *rd) { - u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->reg]; + u64 *dbg_reg = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->CRm]; if (p->is_write) reg_to_dbg(vcpu, p, dbg_reg); else dbg_to_reg(vcpu, p, dbg_reg); - trace_trap_reg(__func__, rd->reg, p->is_write, *dbg_reg); + trace_trap_reg(__func__, rd->CRm, p->is_write, *dbg_reg); return true; } @@ -575,7 +575,7 @@ static int set_wcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->CRm]; if (copy_from_user(r, uaddr, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -585,7 +585,7 @@ static int get_wcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd, const struct kvm_one_reg *reg, void __user *uaddr) { - __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->reg]; + __u64 *r = &vcpu->arch.vcpu_debug_state.dbg_wcr[rd->CRm]; if (copy_to_user(uaddr, r, KVM_REG_SIZE(reg->id)) != 0) return -EFAULT; @@ -595,7 +595,7 @@ static void reset_wcr(struct kvm_vcpu *vcpu, const struct sys_reg_desc *rd) { - vcpu->arch.vcpu_debug_state.dbg_wcr[rd->reg] = rd->val; + vcpu->arch.vcpu_debug_state.dbg_wcr[rd->CRm] = rd->val; } static void reset_amair_el1(struct kvm_vcpu *vcpu, const struct sys_reg_desc *r) @@ -1454,7 +1454,7 @@ /* CRm=6 */ ID_SANITISED(ID_AA64ISAR0_EL1), ID_SANITISED(ID_AA64ISAR1_EL1), - ID_UNALLOCATED(6,2), + ID_SANITISED(ID_AA64ISAR2_EL1), ID_UNALLOCATED(6,3), ID_UNALLOCATED(6,4), ID_UNALLOCATED(6,5), diff -u linux-azure-5.4.0/arch/arm64/mm/mmu.c linux-azure-5.4.0/arch/arm64/mm/mmu.c --- linux-azure-5.4.0/arch/arm64/mm/mmu.c +++ linux-azure-5.4.0/arch/arm64/mm/mmu.c @@ -583,6 +583,8 @@ #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 static int __init map_entry_trampoline(void) { + int i; + pgprot_t prot = rodata_enabled ? PAGE_KERNEL_ROX : PAGE_KERNEL_EXEC; phys_addr_t pa_start = __pa_symbol(__entry_tramp_text_start); @@ -591,11 +593,15 @@ /* Map only the text into the trampoline page table */ memset(tramp_pg_dir, 0, PGD_SIZE); - __create_pgd_mapping(tramp_pg_dir, pa_start, TRAMP_VALIAS, PAGE_SIZE, - prot, __pgd_pgtable_alloc, 0); + __create_pgd_mapping(tramp_pg_dir, pa_start, TRAMP_VALIAS, + entry_tramp_text_size(), prot, + __pgd_pgtable_alloc, NO_BLOCK_MAPPINGS); /* Map both the text and data into the kernel page table */ - __set_fixmap(FIX_ENTRY_TRAMP_TEXT, pa_start, prot); + for (i = 0; i < DIV_ROUND_UP(entry_tramp_text_size(), PAGE_SIZE); i++) + __set_fixmap(FIX_ENTRY_TRAMP_TEXT1 - i, + pa_start + i * PAGE_SIZE, prot); + if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) { extern char __entry_tramp_data_start[]; diff -u linux-azure-5.4.0/arch/arm64/mm/numa.c linux-azure-5.4.0/arch/arm64/mm/numa.c --- linux-azure-5.4.0/arch/arm64/mm/numa.c +++ linux-azure-5.4.0/arch/arm64/mm/numa.c @@ -474,0 +475 @@ +EXPORT_SYMBOL(memory_add_physaddr_to_nid); diff -u linux-azure-5.4.0/arch/arm64/net/bpf_jit_comp.c linux-azure-5.4.0/arch/arm64/net/bpf_jit_comp.c --- linux-azure-5.4.0/arch/arm64/net/bpf_jit_comp.c +++ linux-azure-5.4.0/arch/arm64/net/bpf_jit_comp.c @@ -701,6 +701,19 @@ } break; + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + /* + * Nothing required here. + * + * In case of arm64, we rely on the firmware mitigation of + * Speculative Store Bypass as controlled via the ssbd kernel + * parameter. Whenever the mitigation is enabled, it works + * for all of the kernel code with no need to provide any + * additional instructions. + */ + break; + /* ST: *(size *)(dst + off) = imm */ case BPF_ST | BPF_MEM | BPF_W: case BPF_ST | BPF_MEM | BPF_H: @@ -896,15 +909,18 @@ goto out_off; } - /* 1. Initial fake pass to compute ctx->idx. */ - - /* Fake pass to fill in ctx->offset. */ - if (build_body(&ctx, extra_pass)) { + /* + * 1. Initial fake pass to compute ctx->idx and ctx->offset. + * + * BPF line info needs ctx->offset[i] to be the offset of + * instruction[i] in jited image, so build prologue first. + */ + if (build_prologue(&ctx, was_classic)) { prog = orig_prog; goto out_off; } - if (build_prologue(&ctx, was_classic)) { + if (build_body(&ctx, extra_pass)) { prog = orig_prog; goto out_off; } @@ -957,6 +973,7 @@ bpf_jit_binary_free(header); prog->bpf_func = NULL; prog->jited = 0; + prog->jited_len = 0; goto out_off; } bpf_jit_binary_lock_ro(header); @@ -970,6 +987,11 @@ prog->jited_len = image_size; if (!prog->is_func || extra_pass) { + int i; + + /* offset[prog->len] is the size of program */ + for (i = 0; i <= prog->len; i++) + ctx.offset[i] *= AARCH64_INSN_SIZE; bpf_prog_fill_jited_linfo(prog, ctx.offset + 1); out_off: kfree(ctx.offset); @@ -983,6 +1005,11 @@ return prog; } +u64 bpf_jit_alloc_exec_limit(void) +{ + return BPF_JIT_REGION_SIZE; +} + void *bpf_jit_alloc_exec(unsigned long size) { return __vmalloc_node_range(size, PAGE_SIZE, BPF_JIT_REGION_START, diff -u linux-azure-5.4.0/arch/csky/kernel/perf_callchain.c linux-azure-5.4.0/arch/csky/kernel/perf_callchain.c --- linux-azure-5.4.0/arch/csky/kernel/perf_callchain.c +++ linux-azure-5.4.0/arch/csky/kernel/perf_callchain.c @@ -86,10 +86,11 @@ void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); unsigned long fp = 0; /* C-SKY does not support virtualization. */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) + if (guest_cbs && guest_cbs->is_in_guest()) return; fp = regs->regs[4]; @@ -110,10 +111,11 @@ void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct stackframe fr; /* C-SKY does not support virtualization. */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { pr_warn("C-SKY does not support perf in guest mode!"); return; } diff -u linux-azure-5.4.0/arch/ia64/kernel/kprobes.c linux-azure-5.4.0/arch/ia64/kernel/kprobes.c --- linux-azure-5.4.0/arch/ia64/kernel/kprobes.c +++ linux-azure-5.4.0/arch/ia64/kernel/kprobes.c @@ -396,9 +396,83 @@ { } +/* + * At this point the target function has been tricked into + * returning into our trampoline. Lookup the associated instance + * and then: + * - call the handler function + * - cleanup by marking the instance as unused + * - long jump back to the original return address + */ int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs) { - regs->cr_iip = __kretprobe_trampoline_handler(regs, kretprobe_trampoline, NULL); + struct kretprobe_instance *ri = NULL; + struct hlist_head *head, empty_rp; + struct hlist_node *tmp; + unsigned long flags, orig_ret_address = 0; + unsigned long trampoline_address = + (unsigned long)dereference_function_descriptor(kretprobe_trampoline); + + INIT_HLIST_HEAD(&empty_rp); + kretprobe_hash_lock(current, &head, &flags); + + /* + * It is possible to have multiple instances associated with a given + * task either because an multiple functions in the call path + * have a return probe installed on them, and/or more than one return + * return probe was registered for a target function. + * + * We can handle this because: + * - instances are always inserted at the head of the list + * - when multiple return probes are registered for the same + * function, the first instance's ret_addr will point to the + * real return address, and all the rest will point to + * kretprobe_trampoline + */ + hlist_for_each_entry_safe(ri, tmp, head, hlist) { + if (ri->task != current) + /* another task is sharing our hash bucket */ + continue; + + orig_ret_address = (unsigned long)ri->ret_addr; + if (orig_ret_address != trampoline_address) + /* + * This is the real return address. Any other + * instances associated with this task are for + * other calls deeper on the call stack + */ + break; + } + + regs->cr_iip = orig_ret_address; + + hlist_for_each_entry_safe(ri, tmp, head, hlist) { + if (ri->task != current) + /* another task is sharing our hash bucket */ + continue; + + if (ri->rp && ri->rp->handler) + ri->rp->handler(ri, regs); + + orig_ret_address = (unsigned long)ri->ret_addr; + recycle_rp_inst(ri, &empty_rp); + + if (orig_ret_address != trampoline_address) + /* + * This is the real return address. Any other + * instances associated with this task are for + * other calls deeper on the call stack + */ + break; + } + kretprobe_assert(ri, orig_ret_address, trampoline_address); + + kretprobe_hash_unlock(current, &flags); + + hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) { + hlist_del(&ri->hlist); + kfree(ri); + } /* * By returning a non-zero value, we are telling * kprobe_handler() that we don't want the post_handler @@ -411,10 +485,9 @@ struct pt_regs *regs) { ri->ret_addr = (kprobe_opcode_t *)regs->b0; - ri->fp = NULL; /* Replace the return addr with trampoline addr */ - regs->b0 = ((struct fnptr *)kretprobe_trampoline)->ip; + regs->b0 = (unsigned long)dereference_function_descriptor(kretprobe_trampoline); } /* Check the instruction in the slot is break */ @@ -918,14 +991,14 @@ int __init arch_init_kprobes(void) { trampoline_p.addr = - (kprobe_opcode_t *)((struct fnptr *)kretprobe_trampoline)->ip; + dereference_function_descriptor(kretprobe_trampoline); return register_kprobe(&trampoline_p); } int __kprobes arch_trampoline_kprobe(struct kprobe *p) { if (p->addr == - (kprobe_opcode_t *)((struct fnptr *)kretprobe_trampoline)->ip) + dereference_function_descriptor(kretprobe_trampoline)) return 1; return 0; diff -u linux-azure-5.4.0/arch/mips/Kconfig linux-azure-5.4.0/arch/mips/Kconfig --- linux-azure-5.4.0/arch/mips/Kconfig +++ linux-azure-5.4.0/arch/mips/Kconfig @@ -46,6 +46,7 @@ select HAVE_ARCH_TRACEHOOK select HAVE_ARCH_TRANSPARENT_HUGEPAGE if CPU_SUPPORTS_HUGEPAGES select HAVE_ASM_MODVERSIONS + select HAVE_CBPF_JIT if !64BIT && !CPU_MICROMIPS select HAVE_EBPF_JIT if 64BIT && !CPU_MICROMIPS && TARGET_ISA_REV >= 2 select HAVE_CONTEXT_TRACKING select HAVE_COPY_THREAD_TLS @@ -293,6 +294,9 @@ select SYS_SUPPORTS_32BIT_KERNEL select SYS_SUPPORTS_BIG_ENDIAN select SYS_HAS_EARLY_PRINTK + select SYS_HAS_CPU_BMIPS32_3300 + select SYS_HAS_CPU_BMIPS4350 + select SYS_HAS_CPU_BMIPS4380 select SWAP_IO_SPACE select GPIOLIB select HAVE_CLK @@ -1392,6 +1396,7 @@ select WEAK_REORDERING_BEYOND_LLSC select MIPS_PGD_C0_CONTEXT select MIPS_L1_CACHE_SHIFT_6 + select MIPS_FP_SUPPORT select GPIOLIB select SWIOTLB help @@ -3054,7 +3059,7 @@ config PGTABLE_LEVELS int default 4 if PAGE_SIZE_4KB && MIPS_VA_BITS_48 - default 3 if 64BIT && !PAGE_SIZE_64KB + default 3 if 64BIT && (!PAGE_SIZE_64KB || MIPS_VA_BITS_48) default 2 config MIPS_AUTO_PFN_OFFSET diff -u linux-azure-5.4.0/arch/mips/Makefile linux-azure-5.4.0/arch/mips/Makefile --- linux-azure-5.4.0/arch/mips/Makefile +++ linux-azure-5.4.0/arch/mips/Makefile @@ -320,7 +320,7 @@ ifdef CONFIG_MIPS CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ - egrep -vw '__GNUC_(|MINOR_|PATCHLEVEL_)_' | \ + egrep -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g') endif diff -u linux-azure-5.4.0/arch/mips/boot/compressed/Makefile linux-azure-5.4.0/arch/mips/boot/compressed/Makefile --- linux-azure-5.4.0/arch/mips/boot/compressed/Makefile +++ linux-azure-5.4.0/arch/mips/boot/compressed/Makefile @@ -33,7 +33,7 @@ KCOV_INSTRUMENT := n # decompressor objects (linked with vmlinuz) -vmlinuzobjs-y := $(obj)/head.o $(obj)/decompress.o $(obj)/string.o +vmlinuzobjs-y := $(obj)/head.o $(obj)/decompress.o $(obj)/string.o $(obj)/bswapsi.o ifdef CONFIG_DEBUG_ZBOOT vmlinuzobjs-$(CONFIG_DEBUG_ZBOOT) += $(obj)/dbg.o @@ -47,7 +47,7 @@ $(obj)/uart-ath79.c: $(srctree)/arch/mips/ath79/early_printk.c $(call cmd,shipped) -vmlinuzobjs-$(CONFIG_KERNEL_XZ) += $(obj)/ashldi3.o $(obj)/bswapsi.o +vmlinuzobjs-$(CONFIG_KERNEL_XZ) += $(obj)/ashldi3.o extra-y += ashldi3.c $(obj)/ashldi3.c: $(obj)/%.c: $(srctree)/lib/%.c FORCE diff -u linux-azure-5.4.0/arch/mips/boot/compressed/decompress.c linux-azure-5.4.0/arch/mips/boot/compressed/decompress.c --- linux-azure-5.4.0/arch/mips/boot/compressed/decompress.c +++ linux-azure-5.4.0/arch/mips/boot/compressed/decompress.c @@ -7,6 +7,8 @@ * Author: Wu Zhangjin */ +#define DISABLE_BRANCH_PROFILING + #include #include #include diff -u linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-irq.c linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-irq.c --- linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-irq.c +++ linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-irq.c @@ -127,6 +127,16 @@ static int octeon_irq_force_ciu_mapping(struct irq_domain *domain, int irq, int line, int bit) { + struct device_node *of_node; + int ret; + + of_node = irq_domain_get_of_node(domain); + if (!of_node) + return -EINVAL; + ret = irq_alloc_desc_at(irq, of_node_to_nid(of_node)); + if (ret < 0) + return ret; + return irq_domain_associate(domain, irq, line << 6 | bit); } diff -u linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-usb.c linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-usb.c --- linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-usb.c +++ linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-usb.c @@ -544,6 +544,7 @@ devm_iounmap(&pdev->dev, base); devm_release_mem_region(&pdev->dev, res->start, resource_size(res)); + put_device(&pdev->dev); } } while (node != NULL); diff -u linux-azure-5.4.0/arch/mips/dec/setup.c linux-azure-5.4.0/arch/mips/dec/setup.c --- linux-azure-5.4.0/arch/mips/dec/setup.c +++ linux-azure-5.4.0/arch/mips/dec/setup.c @@ -766,7 +766,8 @@ dec_interrupt[DEC_IRQ_HALT] = -1; /* Register board interrupts: FPU and cascade. */ - if (dec_interrupt[DEC_IRQ_FPU] >= 0 && cpu_has_fpu) { + if (IS_ENABLED(CONFIG_MIPS_FP_SUPPORT) && + dec_interrupt[DEC_IRQ_FPU] >= 0 && cpu_has_fpu) { struct irq_desc *desc_fpu; int irq_fpu; diff -u linux-azure-5.4.0/arch/mips/include/asm/mipsregs.h linux-azure-5.4.0/arch/mips/include/asm/mipsregs.h --- linux-azure-5.4.0/arch/mips/include/asm/mipsregs.h +++ linux-azure-5.4.0/arch/mips/include/asm/mipsregs.h @@ -2007,7 +2007,7 @@ ({ int __res; \ __asm__ __volatile__( \ ".set\tpush\n\t" \ - ".set\tmips32r2\n\t" \ + ".set\tmips32r5\n\t" \ _ASM_SET_VIRT \ "mfgc0\t%0, " #source ", %1\n\t" \ ".set\tpop" \ @@ -2020,7 +2020,7 @@ ({ unsigned long long __res; \ __asm__ __volatile__( \ ".set\tpush\n\t" \ - ".set\tmips64r2\n\t" \ + ".set\tmips64r5\n\t" \ _ASM_SET_VIRT \ "dmfgc0\t%0, " #source ", %1\n\t" \ ".set\tpop" \ @@ -2033,7 +2033,7 @@ do { \ __asm__ __volatile__( \ ".set\tpush\n\t" \ - ".set\tmips32r2\n\t" \ + ".set\tmips32r5\n\t" \ _ASM_SET_VIRT \ "mtgc0\t%z0, " #register ", %1\n\t" \ ".set\tpop" \ @@ -2045,7 +2045,7 @@ do { \ __asm__ __volatile__( \ ".set\tpush\n\t" \ - ".set\tmips64r2\n\t" \ + ".set\tmips64r5\n\t" \ _ASM_SET_VIRT \ "dmtgc0\t%z0, " #register ", %1\n\t" \ ".set\tpop" \ diff -u linux-azure-5.4.0/arch/mips/kernel/cacheinfo.c linux-azure-5.4.0/arch/mips/kernel/cacheinfo.c --- linux-azure-5.4.0/arch/mips/kernel/cacheinfo.c +++ linux-azure-5.4.0/arch/mips/kernel/cacheinfo.c @@ -17,7 +17,7 @@ leaf++; \ } while (0) -static int __init_cache_level(unsigned int cpu) +int init_cache_level(unsigned int cpu) { struct cpuinfo_mips *c = ¤t_cpu_data; struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); @@ -69,7 +69,7 @@ cpumask_set_cpu(cpu1, cpu_map); } -static int __populate_cache_leaves(unsigned int cpu) +int populate_cache_leaves(unsigned int cpu) { struct cpuinfo_mips *c = ¤t_cpu_data; struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); @@ -101,3 +100,0 @@ - -DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level) -DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves) diff -u linux-azure-5.4.0/arch/mips/kernel/mips-cm.c linux-azure-5.4.0/arch/mips/kernel/mips-cm.c --- linux-azure-5.4.0/arch/mips/kernel/mips-cm.c +++ linux-azure-5.4.0/arch/mips/kernel/mips-cm.c @@ -179,8 +179,7 @@ phys_addr_t addr; /* L2-only sync was introduced with CM major revision 6 */ - major_rev = (read_gcr_rev() & CM_GCR_REV_MAJOR) >> - __ffs(CM_GCR_REV_MAJOR); + major_rev = FIELD_GET(CM_GCR_REV_MAJOR, read_gcr_rev()); if (major_rev < 6) return; @@ -263,13 +262,13 @@ preempt_disable(); if (cm_rev >= CM_REV_CM3) { - val = core << __ffs(CM3_GCR_Cx_OTHER_CORE); - val |= vp << __ffs(CM3_GCR_Cx_OTHER_VP); + val = FIELD_PREP(CM3_GCR_Cx_OTHER_CORE, core) | + FIELD_PREP(CM3_GCR_Cx_OTHER_VP, vp); if (cm_rev >= CM_REV_CM3_5) { val |= CM_GCR_Cx_OTHER_CLUSTER_EN; - val |= cluster << __ffs(CM_GCR_Cx_OTHER_CLUSTER); - val |= block << __ffs(CM_GCR_Cx_OTHER_BLOCK); + val |= FIELD_PREP(CM_GCR_Cx_OTHER_CLUSTER, cluster); + val |= FIELD_PREP(CM_GCR_Cx_OTHER_BLOCK, block); } else { WARN_ON(cluster != 0); WARN_ON(block != CM_GCR_Cx_OTHER_BLOCK_LOCAL); @@ -299,7 +298,7 @@ spin_lock_irqsave(&per_cpu(cm_core_lock, curr_core), per_cpu(cm_core_lock_flags, curr_core)); - val = core << __ffs(CM_GCR_Cx_OTHER_CORENUM); + val = FIELD_PREP(CM_GCR_Cx_OTHER_CORENUM, core); } write_gcr_cl_other(val); @@ -343,8 +342,8 @@ cm_other = read_gcr_error_mult(); if (revision < CM_REV_CM3) { /* CM2 */ - cause = cm_error >> __ffs(CM_GCR_ERROR_CAUSE_ERRTYPE); - ocause = cm_other >> __ffs(CM_GCR_ERROR_MULT_ERR2ND); + cause = FIELD_GET(CM_GCR_ERROR_CAUSE_ERRTYPE, cm_error); + ocause = FIELD_GET(CM_GCR_ERROR_MULT_ERR2ND, cm_other); if (!cause) return; @@ -386,8 +385,8 @@ ulong core_id_bits, vp_id_bits, cmd_bits, cmd_group_bits; ulong cm3_cca_bits, mcp_bits, cm3_tr_bits, sched_bit; - cause = cm_error >> __ffs64(CM3_GCR_ERROR_CAUSE_ERRTYPE); - ocause = cm_other >> __ffs(CM_GCR_ERROR_MULT_ERR2ND); + cause = FIELD_GET(CM3_GCR_ERROR_CAUSE_ERRTYPE, cm_error); + ocause = FIELD_GET(CM_GCR_ERROR_MULT_ERR2ND, cm_other); if (!cause) return; diff -u linux-azure-5.4.0/arch/mips/kernel/time.c linux-azure-5.4.0/arch/mips/kernel/time.c --- linux-azure-5.4.0/arch/mips/kernel/time.c +++ linux-azure-5.4.0/arch/mips/kernel/time.c @@ -141,15 +141,10 @@ case CPU_R4400MC: /* * The published errata for the R4400 up to 3.0 say the CPU - * has the mfc0 from count bug. + * has the mfc0 from count bug. This seems the last version + * produced. */ - if ((current_cpu_data.processor_id & 0xff) <= 0x30) - return 1; - - /* - * we assume newer revisions are ok - */ - return 0; + return 1; } return 0; diff -u linux-azure-5.4.0/arch/mips/kernel/traps.c linux-azure-5.4.0/arch/mips/kernel/traps.c --- linux-azure-5.4.0/arch/mips/kernel/traps.c +++ linux-azure-5.4.0/arch/mips/kernel/traps.c @@ -2020,19 +2020,19 @@ * If no shadow set is selected then use the default handler * that does normal register saving and standard interrupt exit */ - extern char except_vec_vi, except_vec_vi_lui; - extern char except_vec_vi_ori, except_vec_vi_end; - extern char rollback_except_vec_vi; - char *vec_start = using_rollback_handler() ? - &rollback_except_vec_vi : &except_vec_vi; + extern const u8 except_vec_vi[], except_vec_vi_lui[]; + extern const u8 except_vec_vi_ori[], except_vec_vi_end[]; + extern const u8 rollback_except_vec_vi[]; + const u8 *vec_start = using_rollback_handler() ? + rollback_except_vec_vi : except_vec_vi; #if defined(CONFIG_CPU_MICROMIPS) || defined(CONFIG_CPU_BIG_ENDIAN) - const int lui_offset = &except_vec_vi_lui - vec_start + 2; - const int ori_offset = &except_vec_vi_ori - vec_start + 2; + const int lui_offset = except_vec_vi_lui - vec_start + 2; + const int ori_offset = except_vec_vi_ori - vec_start + 2; #else - const int lui_offset = &except_vec_vi_lui - vec_start; - const int ori_offset = &except_vec_vi_ori - vec_start; + const int lui_offset = except_vec_vi_lui - vec_start; + const int ori_offset = except_vec_vi_ori - vec_start; #endif - const int handler_len = &except_vec_vi_end - vec_start; + const int handler_len = except_vec_vi_end - vec_start; if (handler_len > VECTORSPACING) { /* @@ -2240,7 +2240,7 @@ } /* Install CPU exception handler */ -void set_handler(unsigned long offset, void *addr, unsigned long size) +void set_handler(unsigned long offset, const void *addr, unsigned long size) { #ifdef CONFIG_CPU_MICROMIPS memcpy((void *)(ebase + offset), ((unsigned char *)addr - 1), size); diff -u linux-azure-5.4.0/arch/mips/lantiq/xway/sysctrl.c linux-azure-5.4.0/arch/mips/lantiq/xway/sysctrl.c --- linux-azure-5.4.0/arch/mips/lantiq/xway/sysctrl.c +++ linux-azure-5.4.0/arch/mips/lantiq/xway/sysctrl.c @@ -311,6 +311,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = con; clk->cl.clk = clk; @@ -334,6 +336,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = con; clk->cl.clk = clk; @@ -352,24 +356,28 @@ struct clk *clk_ext = kzalloc(sizeof(struct clk), GFP_KERNEL); /* main pci clock */ - clk->cl.dev_id = "17000000.pci"; - clk->cl.con_id = NULL; - clk->cl.clk = clk; - clk->rate = CLOCK_33M; - clk->rates = valid_pci_rates; - clk->enable = pci_enable; - clk->disable = pmu_disable; - clk->module = 0; - clk->bits = PMU_PCI; - clkdev_add(&clk->cl); + if (clk) { + clk->cl.dev_id = "17000000.pci"; + clk->cl.con_id = NULL; + clk->cl.clk = clk; + clk->rate = CLOCK_33M; + clk->rates = valid_pci_rates; + clk->enable = pci_enable; + clk->disable = pmu_disable; + clk->module = 0; + clk->bits = PMU_PCI; + clkdev_add(&clk->cl); + } /* use internal/external bus clock */ - clk_ext->cl.dev_id = "17000000.pci"; - clk_ext->cl.con_id = "external"; - clk_ext->cl.clk = clk_ext; - clk_ext->enable = pci_ext_enable; - clk_ext->disable = pci_ext_disable; - clkdev_add(&clk_ext->cl); + if (clk_ext) { + clk_ext->cl.dev_id = "17000000.pci"; + clk_ext->cl.con_id = "external"; + clk_ext->cl.clk = clk_ext; + clk_ext->enable = pci_ext_enable; + clk_ext->disable = pci_ext_disable; + clkdev_add(&clk_ext->cl); + } } /* xway socs can generate clocks on gpio pins */ @@ -389,9 +397,15 @@ char *name; name = kzalloc(sizeof("clkout0"), GFP_KERNEL); + if (!name) + continue; sprintf(name, "clkout%d", i); clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) { + kfree(name); + continue; + } clk->cl.dev_id = "1f103000.cgu"; clk->cl.con_id = name; clk->cl.clk = clk; diff -u linux-azure-5.4.0/arch/mips/mm/tlbex.c linux-azure-5.4.0/arch/mips/mm/tlbex.c --- linux-azure-5.4.0/arch/mips/mm/tlbex.c +++ linux-azure-5.4.0/arch/mips/mm/tlbex.c @@ -629,7 +629,7 @@ return; } - if (cpu_has_rixi && !!_PAGE_NO_EXEC) { + if (cpu_has_rixi && _PAGE_NO_EXEC != 0) { if (fill_includes_sw_bits) { UASM_i_ROTR(p, reg, reg, ilog2(_PAGE_GLOBAL)); } else { @@ -2568,7 +2568,7 @@ unsigned long entry; unsigned pabits, fillbits; - if (!cpu_has_rixi || !_PAGE_NO_EXEC) { + if (!cpu_has_rixi || _PAGE_NO_EXEC == 0) { /* * We'll only be making use of the fact that we can rotate bits * into the fill if the CPU supports RIXI, so don't bother diff -u linux-azure-5.4.0/arch/mips/net/ebpf_jit.c linux-azure-5.4.0/arch/mips/net/ebpf_jit.c --- linux-azure-5.4.0/arch/mips/net/ebpf_jit.c +++ linux-azure-5.4.0/arch/mips/net/ebpf_jit.c @@ -1355,6 +1355,9 @@ } break; + case BPF_ST | BPF_NOSPEC: /* speculation barrier */ + break; + case BPF_ST | BPF_B | BPF_MEM: case BPF_ST | BPF_H | BPF_MEM: case BPF_ST | BPF_W | BPF_MEM: diff -u linux-azure-5.4.0/arch/mips/ralink/of.c linux-azure-5.4.0/arch/mips/ralink/of.c --- linux-azure-5.4.0/arch/mips/ralink/of.c +++ linux-azure-5.4.0/arch/mips/ralink/of.c @@ -77,7 +77,7 @@ */ if (fw_passed_dtb) dtb = (void *)fw_passed_dtb; - else if (__dtb_start != __dtb_end) + else if (&__dtb_start != &__dtb_end) dtb = (void *)__dtb_start; __dt_setup_arch(dtb); diff -u linux-azure-5.4.0/arch/openrisc/kernel/entry.S linux-azure-5.4.0/arch/openrisc/kernel/entry.S --- linux-azure-5.4.0/arch/openrisc/kernel/entry.S +++ linux-azure-5.4.0/arch/openrisc/kernel/entry.S @@ -547,6 +547,7 @@ l.bnf 1f // ext irq enabled, all ok. l.nop +#ifdef CONFIG_PRINTK l.addi r1,r1,-0x8 l.movhi r3,hi(42f) l.ori r3,r3,lo(42f) @@ -560,6 +561,7 @@ .string "\n\rESR interrupt bug: in _external_irq_handler (ESR %x)\n\r" .align 4 .previous +#endif l.ori r4,r4,SPR_SR_IEE // fix the bug // l.sw PT_SR(r1),r4 diff -u linux-azure-5.4.0/arch/parisc/Kconfig linux-azure-5.4.0/arch/parisc/Kconfig --- linux-azure-5.4.0/arch/parisc/Kconfig +++ linux-azure-5.4.0/arch/parisc/Kconfig @@ -11,6 +11,7 @@ select ARCH_WANT_FRAME_POINTERS select ARCH_HAS_ELF_RANDOMIZE select ARCH_HAS_STRICT_KERNEL_RWX + select ARCH_HAS_STRICT_MODULE_RWX select ARCH_HAS_UBSAN_SANITIZE_ALL select ARCH_NO_SG_CHAIN select ARCH_SUPPORTS_MEMORY_FAILURE diff -u linux-azure-5.4.0/arch/parisc/Makefile linux-azure-5.4.0/arch/parisc/Makefile --- linux-azure-5.4.0/arch/parisc/Makefile +++ linux-azure-5.4.0/arch/parisc/Makefile @@ -17,7 +17,12 @@ # Mike Shaver, Helge Deller and Martin K. Petersen # +ifdef CONFIG_PARISC_SELF_EXTRACT +boot := arch/parisc/boot +KBUILD_IMAGE := $(boot)/bzImage +else KBUILD_IMAGE := vmlinuz +endif NM = sh $(srctree)/arch/parisc/nm CHECKFLAGS += -D__hppa__=1 @@ -60,7 +65,6 @@ -DFTRACE_PATCHABLE_FUNCTION_SIZE=$(NOP_COUNT) CC_FLAGS_FTRACE := -fpatchable-function-entry=$(NOP_COUNT),$(shell echo $$(($(NOP_COUNT)-1))) -KBUILD_LDS_MODULE += $(srctree)/arch/parisc/kernel/module.lds endif OBJCOPY_FLAGS =-O binary -R .note -R .comment -S diff -u linux-azure-5.4.0/arch/parisc/kernel/drivers.c linux-azure-5.4.0/arch/parisc/kernel/drivers.c --- linux-azure-5.4.0/arch/parisc/kernel/drivers.c +++ linux-azure-5.4.0/arch/parisc/kernel/drivers.c @@ -520,7 +520,6 @@ dev->id.hversion_rev = iodc_data[1] & 0x0f; dev->id.sversion = ((iodc_data[4] & 0x0f) << 16) | (iodc_data[5] << 8) | iodc_data[6]; - dev->hpa.name = parisc_pathname(dev); dev->hpa.start = hpa; /* This is awkward. The STI spec says that gfx devices may occupy * 32MB or 64MB. Unfortunately, we don't know how to tell whether @@ -534,10 +533,10 @@ dev->hpa.end = hpa + 0xfff; } dev->hpa.flags = IORESOURCE_MEM; - name = parisc_hardware_description(&dev->id); - if (name) { - strlcpy(dev->name, name, sizeof(dev->name)); - } + dev->hpa.name = dev->name; + name = parisc_hardware_description(&dev->id) ? : "unknown"; + snprintf(dev->name, sizeof(dev->name), "%s [%s]", + name, parisc_pathname(dev)); /* Silently fail things like mouse ports which are subsumed within * the keyboard controller @@ -883,15 +882,13 @@ &root); } -static void print_parisc_device(struct parisc_device *dev) +static __init void print_parisc_device(struct parisc_device *dev) { - char hw_path[64]; - static int count; + static int count __initdata; - print_pa_hwpath(dev, hw_path); - pr_info("%d. %s at %pap [%s] { %d, 0x%x, 0x%.3x, 0x%.5x }", - ++count, dev->name, &(dev->hpa.start), hw_path, dev->id.hw_type, - dev->id.hversion_rev, dev->id.hversion, dev->id.sversion); + pr_info("%d. %s at %pap { type:%d, hv:%#x, sv:%#x, rev:%#x }", + ++count, dev->name, &(dev->hpa.start), dev->id.hw_type, + dev->id.hversion, dev->id.sversion, dev->id.hversion_rev); if (dev->num_addrs) { int k; @@ -1080,7 +1077,7 @@ -static int print_one_device(struct device * dev, void * data) +static __init int print_one_device(struct device * dev, void * data) { struct parisc_device * pdev = to_parisc_device(dev); diff -u linux-azure-5.4.0/arch/parisc/kernel/entry.S linux-azure-5.4.0/arch/parisc/kernel/entry.S --- linux-azure-5.4.0/arch/parisc/kernel/entry.S +++ linux-azure-5.4.0/arch/parisc/kernel/entry.S @@ -1841,8 +1841,8 @@ LDREG TI_TASK-THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* Are we being ptraced? */ - ldw TASK_FLAGS(%r1),%r19 - ldi _TIF_SYSCALL_TRACE_MASK,%r2 + LDREG TI_FLAGS-THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r19 + ldi _TIF_SINGLESTEP|_TIF_BLOCKSTEP,%r2 and,COND(=) %r19,%r2,%r0 b,n syscall_restore_rfi diff -u linux-azure-5.4.0/arch/parisc/kernel/syscall.S linux-azure-5.4.0/arch/parisc/kernel/syscall.S --- linux-azure-5.4.0/arch/parisc/kernel/syscall.S +++ linux-azure-5.4.0/arch/parisc/kernel/syscall.S @@ -478,7 +478,7 @@ extrd,u %r1,PSW_W_BIT,1,%r1 /* sp must be aligned on 4, so deposit the W bit setting into * the bottom of sp temporarily */ - or,ev %r1,%r30,%r30 + or,od %r1,%r30,%r30 /* Clip LWS number to a 32-bit value for 32-bit processes */ depdi 0, 31, 32, %r20 diff -u linux-azure-5.4.0/arch/parisc/mm/init.c linux-azure-5.4.0/arch/parisc/mm/init.c --- linux-azure-5.4.0/arch/parisc/mm/init.c +++ linux-azure-5.4.0/arch/parisc/mm/init.c @@ -347,9 +347,9 @@ static bool kernel_set_to_readonly; -static void __init map_pages(unsigned long start_vaddr, - unsigned long start_paddr, unsigned long size, - pgprot_t pgprot, int force) +static void __ref map_pages(unsigned long start_vaddr, + unsigned long start_paddr, unsigned long size, + pgprot_t pgprot, int force) { pgd_t *pg_dir; pmd_t *pmd; @@ -485,7 +485,7 @@ flush_tlb_all(); } -void __ref free_initmem(void) +void free_initmem(void) { unsigned long init_begin = (unsigned long)__init_begin; unsigned long init_end = (unsigned long)__init_end; @@ -499,7 +499,6 @@ /* The init text pages are marked R-X. We have to * flush the icache and mark them RW- * - * This is tricky, because map_pages is in the init section. * Do a dummy remap of the data section first (the data * section is already PAGE_KERNEL) to pull in the TLB entries * for map_kernel */ @@ -892,9 +891,9 @@ { int do_recycle; - __inc_irq_stat(irq_tlb_count); do_recycle = 0; spin_lock(&sid_lock); + __inc_irq_stat(irq_tlb_count); if (dirty_space_ids > RECYCLE_THRESHOLD) { BUG_ON(recycle_inuse); /* FIXME: Use a semaphore/wait queue here */ get_dirty_sids(&recycle_ndirty,recycle_dirty_array); @@ -913,8 +912,8 @@ #else void flush_tlb_all(void) { - __inc_irq_stat(irq_tlb_count); spin_lock(&sid_lock); + __inc_irq_stat(irq_tlb_count); flush_tlb_all_local(NULL); recycle_sids(); spin_unlock(&sid_lock); diff -u linux-azure-5.4.0/arch/powerpc/Makefile linux-azure-5.4.0/arch/powerpc/Makefile --- linux-azure-5.4.0/arch/powerpc/Makefile +++ linux-azure-5.4.0/arch/powerpc/Makefile @@ -17,23 +17,6 @@ # Set default 32 bits cross compilers for vdso and boot wrapper CROSS32_COMPILE ?= -ifeq ($(HAS_BIARCH),y) -ifeq ($(CROSS32_COMPILE),) -ifdef CONFIG_PPC32 -# These options will be overridden by any -mcpu option that the CPU -# or platform code sets later on the command line, but they are needed -# to set a sane 32-bit cpu target for the 64-bit cross compiler which -# may default to the wrong ISA. -KBUILD_CFLAGS += -mcpu=powerpc -KBUILD_AFLAGS += -mcpu=powerpc -endif -endif -endif - -ifdef CONFIG_PPC_BOOK3S_32 -KBUILD_CFLAGS += -mcpu=powerpc -endif - # If we're on a ppc/ppc64/ppc64le machine use that defconfig, otherwise just use # ppc64_defconfig because we have nothing better to go on. uname := $(shell uname -m) @@ -172,9 +155,9 @@ CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power9,-mtune=power8) else CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power7,$(call cc-option,-mtune=power5)) -CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mcpu=power5,-mcpu=power4) +CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=power4 endif -else +else ifdef CONFIG_PPC_BOOK3E_64 CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=powerpc64 endif @@ -192,6 +175,7 @@ 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)) # Altivec option not allowed with e500mc64 in GCC. ifdef CONFIG_ALTIVEC @@ -202,14 +186,6 @@ CFLAGS-$(CONFIG_E5500_CPU) += $(E5500_CPU) CFLAGS-$(CONFIG_E6500_CPU) += $(call cc-option,-mcpu=e6500,$(E5500_CPU)) -ifdef CONFIG_PPC32 -ifdef CONFIG_PPC_E500MC -CFLAGS-y += $(call cc-option,-mcpu=e500mc,-mcpu=powerpc) -else -CFLAGS-$(CONFIG_E500) += $(call cc-option,-mcpu=8540 -msoft-float,-mcpu=powerpc) -endif -endif - asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1) KBUILD_CPPFLAGS += -I $(srctree)/arch/$(ARCH) $(asinstr) diff -u linux-azure-5.4.0/arch/powerpc/boot/Makefile linux-azure-5.4.0/arch/powerpc/boot/Makefile --- linux-azure-5.4.0/arch/powerpc/boot/Makefile +++ linux-azure-5.4.0/arch/powerpc/boot/Makefile @@ -30,6 +30,7 @@ BOOTCFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -O2 -msoft-float -mno-altivec -mno-vsx \ + $(call cc-option,-mno-spe) $(call cc-option,-mspe=no) \ -pipe -fomit-frame-pointer -fno-builtin -fPIC -nostdinc \ $(LINUXINCLUDE) diff -u linux-azure-5.4.0/arch/powerpc/include/asm/archrandom.h linux-azure-5.4.0/arch/powerpc/include/asm/archrandom.h --- linux-azure-5.4.0/arch/powerpc/include/asm/archrandom.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/archrandom.h @@ -6,27 +6,28 @@ #include -static inline int arch_get_random_long(unsigned long *v) +static inline bool arch_get_random_long(unsigned long *v) { - return 0; + return false; } -static inline int arch_get_random_int(unsigned int *v) +static inline bool arch_get_random_int(unsigned int *v) { - return 0; + return false; } -static inline int arch_get_random_seed_long(unsigned long *v) +static inline bool arch_get_random_seed_long(unsigned long *v) { if (ppc_md.get_random_seed) return ppc_md.get_random_seed(v); - return 0; + return false; } -static inline int arch_get_random_seed_int(unsigned int *v) + +static inline bool arch_get_random_seed_int(unsigned int *v) { unsigned long val; - int rc; + bool rc; rc = arch_get_random_seed_long(&val); if (rc) @@ -34,16 +35,6 @@ return rc; } - -static inline int arch_has_random(void) -{ - return 0; -} - -static inline int arch_has_random_seed(void) -{ - return !!ppc_md.get_random_seed; -} #endif /* CONFIG_ARCH_RANDOM */ #ifdef CONFIG_PPC_POWERNV diff -u linux-azure-5.4.0/arch/powerpc/include/asm/code-patching.h linux-azure-5.4.0/arch/powerpc/include/asm/code-patching.h --- linux-azure-5.4.0/arch/powerpc/include/asm/code-patching.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/code-patching.h @@ -22,6 +22,7 @@ #define BRANCH_ABSOLUTE 0x2 bool is_offset_in_branch_range(long offset); +bool is_offset_in_cond_branch_range(long offset); unsigned int create_branch(const unsigned int *addr, unsigned long target, int flags); unsigned int create_cond_branch(const unsigned int *addr, diff -u linux-azure-5.4.0/arch/powerpc/include/asm/cputhreads.h linux-azure-5.4.0/arch/powerpc/include/asm/cputhreads.h --- linux-azure-5.4.0/arch/powerpc/include/asm/cputhreads.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/cputhreads.h @@ -100,6 +100,36 @@ return cpu | (threads_per_core - 1); } +/* + * tlb_thread_siblings are siblings which share a TLB. This is not + * architected, is not something a hypervisor could emulate and a future + * CPU may change behaviour even in compat mode, so this should only be + * used on PowerNV, and only with care. + */ +static inline int cpu_first_tlb_thread_sibling(int cpu) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && (threads_per_core == 8)) + return cpu & ~0x6; /* Big Core */ + else + return cpu_first_thread_sibling(cpu); +} + +static inline int cpu_last_tlb_thread_sibling(int cpu) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && (threads_per_core == 8)) + return cpu | 0x6; /* Big Core */ + else + return cpu_last_thread_sibling(cpu); +} + +static inline int cpu_tlb_thread_sibling_step(void) +{ + if (cpu_has_feature(CPU_FTR_ARCH_300) && (threads_per_core == 8)) + return 2; /* Big Core */ + else + return 1; +} + static inline u32 get_tensr(void) { #ifdef CONFIG_BOOKE diff -u linux-azure-5.4.0/arch/powerpc/include/asm/page.h linux-azure-5.4.0/arch/powerpc/include/asm/page.h --- linux-azure-5.4.0/arch/powerpc/include/asm/page.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/page.h @@ -132,7 +132,11 @@ #define virt_to_page(kaddr) pfn_to_page(virt_to_pfn(kaddr)) #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) -#define virt_addr_valid(kaddr) pfn_valid(virt_to_pfn(kaddr)) +#define virt_addr_valid(vaddr) ({ \ + unsigned long _addr = (unsigned long)vaddr; \ + _addr >= PAGE_OFFSET && _addr < (unsigned long)high_memory && \ + pfn_valid(virt_to_pfn(_addr)); \ +}) /* * On Book-E parts we need __va to parse the device tree and we can't @@ -212,6 +216,9 @@ #define __pa(x) ((unsigned long)(x) - VIRT_PHYS_OFFSET) #else #ifdef CONFIG_PPC64 + +#define VIRTUAL_WARN_ON(x) WARN_ON(IS_ENABLED(CONFIG_DEBUG_VIRTUAL) && (x)) + /* * gcc miscompiles (unsigned long)(&static_var) - PAGE_OFFSET * with -mcmodel=medium, so we use & and | instead of - and + on 64-bit. @@ -219,13 +226,13 @@ */ #define __va(x) \ ({ \ - VIRTUAL_BUG_ON((unsigned long)(x) >= PAGE_OFFSET); \ + VIRTUAL_WARN_ON((unsigned long)(x) >= PAGE_OFFSET); \ (void *)(unsigned long)((phys_addr_t)(x) | PAGE_OFFSET); \ }) #define __pa(x) \ ({ \ - VIRTUAL_BUG_ON((unsigned long)(x) < PAGE_OFFSET); \ + VIRTUAL_WARN_ON((unsigned long)(x) < PAGE_OFFSET); \ (unsigned long)(x) & 0x0fffffffffffffffUL; \ }) diff -u linux-azure-5.4.0/arch/powerpc/include/asm/security_features.h linux-azure-5.4.0/arch/powerpc/include/asm/security_features.h --- linux-azure-5.4.0/arch/powerpc/include/asm/security_features.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/security_features.h @@ -39,6 +39,11 @@ return !!(powerpc_security_features & feature); } +#ifdef CONFIG_PPC_BOOK3S_64 +enum stf_barrier_type stf_barrier_type_get(void); +#else +static inline enum stf_barrier_type stf_barrier_type_get(void) { return STF_BARRIER_NONE; } +#endif // Features indicating support for Spectre/Meltdown mitigations diff -u linux-azure-5.4.0/arch/powerpc/include/asm/timex.h linux-azure-5.4.0/arch/powerpc/include/asm/timex.h --- linux-azure-5.4.0/arch/powerpc/include/asm/timex.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/timex.h @@ -22,6 +22,7 @@ return mftb(); } +#define get_cycles get_cycles #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_TIMEX_H */ diff -u linux-azure-5.4.0/arch/powerpc/include/asm/uaccess.h linux-azure-5.4.0/arch/powerpc/include/asm/uaccess.h --- linux-azure-5.4.0/arch/powerpc/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/uaccess.h @@ -191,8 +191,11 @@ */ #define __get_user_atomic_128_aligned(kaddr, uaddr, err) \ __asm__ __volatile__( \ + ".machine push\n" \ + ".machine altivec\n" \ "1: lvx 0,0,%1 # get user\n" \ " stvx 0,0,%2 # put kernel\n" \ + ".machine pop\n" \ "2:\n" \ ".section .fixup,\"ax\"\n" \ "3: li %0,%3\n" \ diff -u linux-azure-5.4.0/arch/powerpc/kernel/Makefile linux-azure-5.4.0/arch/powerpc/kernel/Makefile --- linux-azure-5.4.0/arch/powerpc/kernel/Makefile +++ linux-azure-5.4.0/arch/powerpc/kernel/Makefile @@ -13,6 +13,7 @@ CFLAGS_btext.o += -fPIC endif +CFLAGS_early_32.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) CFLAGS_cputable.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) CFLAGS_prom_init.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) CFLAGS_btext.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) diff -u linux-azure-5.4.0/arch/powerpc/kernel/fadump.c linux-azure-5.4.0/arch/powerpc/kernel/fadump.c --- linux-azure-5.4.0/arch/powerpc/kernel/fadump.c +++ linux-azure-5.4.0/arch/powerpc/kernel/fadump.c @@ -835,7 +835,6 @@ sizeof(struct fadump_memory_range)); return 0; } - static inline int fadump_add_mem_range(struct fadump_mrange_info *mrange_info, u64 base, u64 end) { @@ -854,7 +853,12 @@ start = mem_ranges[mrange_info->mem_range_cnt - 1].base; size = mem_ranges[mrange_info->mem_range_cnt - 1].size; - if ((start + size) == base) + /* + * Boot memory area needs separate PT_LOAD segment(s) as it + * is moved to a different location at the time of crash. + * So, fold only if the region is not boot memory area. + */ + if ((start + size) == base && start >= fw_dump.boot_mem_top) is_adjacent = true; } if (!is_adjacent) { diff -u linux-azure-5.4.0/arch/powerpc/kernel/kprobes.c linux-azure-5.4.0/arch/powerpc/kernel/kprobes.c --- linux-azure-5.4.0/arch/powerpc/kernel/kprobes.c +++ linux-azure-5.4.0/arch/powerpc/kernel/kprobes.c @@ -264,7 +264,8 @@ if (user_mode(regs)) return 0; - if (!(regs->msr & MSR_IR) || !(regs->msr & MSR_DR)) + if (!IS_ENABLED(CONFIG_BOOKE) && + (!(regs->msr & MSR_IR) || !(regs->msr & MSR_DR))) return 0; /* diff -u linux-azure-5.4.0/arch/powerpc/kernel/machine_kexec.c linux-azure-5.4.0/arch/powerpc/kernel/machine_kexec.c --- linux-azure-5.4.0/arch/powerpc/kernel/machine_kexec.c +++ linux-azure-5.4.0/arch/powerpc/kernel/machine_kexec.c @@ -146,11 +146,18 @@ if (!crashk_res.start) { #ifdef CONFIG_PPC64 /* - * On 64bit we split the RMO in half but cap it at half of - * a small SLB (128MB) since the crash kernel needs to place - * itself and some stacks to be in the first segment. + * On the LPAR platform place the crash kernel to mid of + * RMA size (512MB or more) to ensure the crash kernel + * gets enough space to place itself and some stack to be + * in the first segment. At the same time normal kernel + * also get enough space to allocate memory for essential + * system resource in the first segment. Keep the crash + * kernel starts at 128MB offset on other platforms. */ - crashk_res.start = min(0x8000000ULL, (ppc64_rma_size / 2)); + if (firmware_has_feature(FW_FEATURE_LPAR)) + crashk_res.start = ppc64_rma_size / 2; + else + crashk_res.start = min(0x8000000ULL, (ppc64_rma_size / 2)); #else crashk_res.start = KDUMP_KERNELBASE; #endif diff -u linux-azure-5.4.0/arch/powerpc/kernel/pci-common.c linux-azure-5.4.0/arch/powerpc/kernel/pci-common.c --- linux-azure-5.4.0/arch/powerpc/kernel/pci-common.c +++ linux-azure-5.4.0/arch/powerpc/kernel/pci-common.c @@ -66,23 +66,35 @@ pci_dma_ops = dma_ops; } -/* - * This function should run under locking protection, specifically - * hose_spinlock. - */ static int get_phb_number(struct device_node *dn) { int ret, phb_id = -1; - u32 prop_32; u64 prop; /* * Try fixed PHB numbering first, by checking archs and reading - * the respective device-tree properties. Firstly, try powernv by - * reading "ibm,opal-phbid", only present in OPAL environment. + * the respective device-tree properties. Firstly, try reading + * standard "linux,pci-domain", then try reading "ibm,opal-phbid" + * (only present in powernv OPAL environment), then try device-tree + * alias and as the last try to use lower bits of "reg" property. */ - ret = of_property_read_u64(dn, "ibm,opal-phbid", &prop); + ret = of_get_pci_domain_nr(dn); + if (ret >= 0) { + prop = ret; + ret = 0; + } + if (ret) + ret = of_property_read_u64(dn, "ibm,opal-phbid", &prop); + + if (ret) { + ret = of_alias_get_id(dn, "pci"); + if (ret >= 0) { + prop = ret; + ret = 0; + } + } if (ret) { + u32 prop_32; ret = of_property_read_u32_index(dn, "reg", 1, &prop_32); prop = prop_32; } @@ -90,18 +102,20 @@ if (!ret) phb_id = (int)(prop & (MAX_PHBS - 1)); + spin_lock(&hose_spinlock); + /* We need to be sure to not use the same PHB number twice. */ if ((phb_id >= 0) && !test_and_set_bit(phb_id, phb_bitmap)) - return phb_id; + goto out_unlock; - /* - * If not pseries nor powernv, or if fixed PHB numbering tried to add - * the same PHB number twice, then fallback to dynamic PHB numbering. - */ + /* If everything fails then fallback to dynamic PHB numbering. */ phb_id = find_first_zero_bit(phb_bitmap, MAX_PHBS); BUG_ON(phb_id >= MAX_PHBS); set_bit(phb_id, phb_bitmap); +out_unlock: + spin_unlock(&hose_spinlock); + return phb_id; } @@ -112,10 +126,13 @@ phb = zalloc_maybe_bootmem(sizeof(struct pci_controller), GFP_KERNEL); if (phb == NULL) return NULL; - spin_lock(&hose_spinlock); + phb->global_number = get_phb_number(dev); + + spin_lock(&hose_spinlock); list_add_tail(&phb->list_node, &hose_list); spin_unlock(&hose_spinlock); + phb->dn = dev; phb->is_dynamic = slab_is_available(); #ifdef CONFIG_PPC64 diff -u linux-azure-5.4.0/arch/powerpc/kernel/pci_dn.c linux-azure-5.4.0/arch/powerpc/kernel/pci_dn.c --- linux-azure-5.4.0/arch/powerpc/kernel/pci_dn.c +++ linux-azure-5.4.0/arch/powerpc/kernel/pci_dn.c @@ -325,6 +325,7 @@ INIT_LIST_HEAD(&pdn->list); parent = of_get_parent(dn); pdn->parent = parent ? PCI_DN(parent) : NULL; + of_node_put(parent); if (pdn->parent) list_add_tail(&pdn->list, &pdn->parent->child_list); diff -u linux-azure-5.4.0/arch/powerpc/kernel/process.c linux-azure-5.4.0/arch/powerpc/kernel/process.c --- linux-azure-5.4.0/arch/powerpc/kernel/process.c +++ linux-azure-5.4.0/arch/powerpc/kernel/process.c @@ -1719,7 +1719,7 @@ tm_reclaim_current(0); #endif - memset(regs->gpr, 0, sizeof(regs->gpr)); + memset(®s->gpr[1], 0, sizeof(regs->gpr) - sizeof(regs->gpr[0])); regs->ctr = 0; regs->link = 0; regs->xer = 0; @@ -2001,12 +2001,12 @@ return 0; do { - sp = *(unsigned long *)sp; + sp = READ_ONCE_NOCHECK(*(unsigned long *)sp); if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD) || p->state == TASK_RUNNING) return 0; if (count > 0) { - ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE]; + ip = READ_ONCE_NOCHECK(((unsigned long *)sp)[STACK_FRAME_LR_SAVE]); if (!in_sched_functions(ip)) return ip; } diff -u linux-azure-5.4.0/arch/powerpc/kernel/prom.c linux-azure-5.4.0/arch/powerpc/kernel/prom.c --- linux-azure-5.4.0/arch/powerpc/kernel/prom.c +++ linux-azure-5.4.0/arch/powerpc/kernel/prom.c @@ -740,6 +740,13 @@ of_scan_flat_dt(early_init_dt_scan_root, NULL); of_scan_flat_dt(early_init_dt_scan_memory_ppc, NULL); + /* + * As generic code authors expect to be able to use static keys + * in early_param() handlers, we initialize the static keys just + * before parsing early params (it's fine to call jump_label_init() + * more than once). + */ + jump_label_init(); parse_early_param(); /* make sure we've parsed cmdline for mem= before this */ diff -u linux-azure-5.4.0/arch/powerpc/kernel/prom_init.c linux-azure-5.4.0/arch/powerpc/kernel/prom_init.c --- linux-azure-5.4.0/arch/powerpc/kernel/prom_init.c +++ linux-azure-5.4.0/arch/powerpc/kernel/prom_init.c @@ -2919,7 +2919,7 @@ /* Check if the phy-handle property exists - bail if it does */ rv = prom_getprop(node, "phy-handle", prop, sizeof(prop)); - if (!rv) + if (rv <= 0) return; /* diff -u linux-azure-5.4.0/arch/powerpc/kernel/rtas.c linux-azure-5.4.0/arch/powerpc/kernel/rtas.c --- linux-azure-5.4.0/arch/powerpc/kernel/rtas.c +++ linux-azure-5.4.0/arch/powerpc/kernel/rtas.c @@ -988,7 +988,7 @@ { "get-time-of-day", -1, -1, -1, -1, -1 }, { "ibm,get-vpd", -1, 0, -1, 1, 2 }, { "ibm,lpar-perftools", -1, 2, 3, -1, -1 }, - { "ibm,platform-dump", -1, 4, 5, -1, -1 }, + { "ibm,platform-dump", -1, 4, 5, -1, -1 }, /* Special cased */ { "ibm,read-slot-reset-state", -1, -1, -1, -1, -1 }, { "ibm,scan-log-dump", -1, 0, 1, -1, -1 }, { "ibm,set-dynamic-indicator", -1, 2, -1, -1, -1 }, @@ -1035,6 +1035,15 @@ size = 1; end = base + size - 1; + + /* + * Special case for ibm,platform-dump - NULL buffer + * address is used to indicate end of dump processing + */ + if (!strcmp(f->name, "ibm,platform-dump") && + base == 0) + return false; + if (!in_rmo_buf(base, end)) goto err; } @@ -1244,6 +1253,12 @@ entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL); sizep = of_get_flat_dt_prop(node, "rtas-size", NULL); +#ifdef CONFIG_PPC64 + /* need this feature to decide the crashkernel offset */ + if (of_get_flat_dt_prop(node, "ibm,hypertas-functions", NULL)) + powerpc_firmware_features |= FW_FEATURE_LPAR; +#endif + if (basep && entryp && sizep) { rtas.base = *basep; rtas.entry = *entryp; diff -u linux-azure-5.4.0/arch/powerpc/kernel/security.c linux-azure-5.4.0/arch/powerpc/kernel/security.c --- linux-azure-5.4.0/arch/powerpc/kernel/security.c +++ linux-azure-5.4.0/arch/powerpc/kernel/security.c @@ -256,6 +256,11 @@ early_param("no_stf_barrier", handle_no_stf_barrier); +enum stf_barrier_type stf_barrier_type_get(void) +{ + return stf_enabled_flush_types; +} + /* This is the generic flag used by other architectures */ static int __init handle_ssbd(char *p) { diff -u linux-azure-5.4.0/arch/powerpc/kernel/smp.c linux-azure-5.4.0/arch/powerpc/kernel/smp.c --- linux-azure-5.4.0/arch/powerpc/kernel/smp.c +++ linux-azure-5.4.0/arch/powerpc/kernel/smp.c @@ -583,11 +583,43 @@ #endif #ifdef CONFIG_NMI_IPI +static void crash_stop_this_cpu(struct pt_regs *regs) +#else +static void crash_stop_this_cpu(void *dummy) +#endif +{ + /* + * Just busy wait here and avoid marking CPU as offline to ensure + * register data is captured appropriately. + */ + while (1) + cpu_relax(); +} + +void crash_smp_send_stop(void) +{ + static bool stopped = false; + + if (stopped) + return; + + stopped = true; + +#ifdef CONFIG_NMI_IPI + smp_send_nmi_ipi(NMI_IPI_ALL_OTHERS, crash_stop_this_cpu, 1000000); +#else + smp_call_function(crash_stop_this_cpu, NULL, 0); +#endif /* CONFIG_NMI_IPI */ +} + +#ifdef CONFIG_NMI_IPI static void nmi_stop_this_cpu(struct pt_regs *regs) { /* * IRQs are already hard disabled by the smp_handle_nmi_ipi. */ + set_cpu_online(smp_processor_id(), false); + spin_begin(); while (1) spin_cpu_relax(); @@ -603,6 +635,15 @@ static void stop_this_cpu(void *dummy) { hard_irq_disable(); + + /* + * Offlining CPUs in stop_this_cpu can result in scheduler warnings, + * (see commit de6e5d38417e), but printk_safe_flush_on_panic() wants + * to know other CPUs are offline before it breaks locks to flush + * printk buffers, in case we panic()ed while holding the lock. + */ + set_cpu_online(smp_processor_id(), false); + spin_begin(); while (1) spin_cpu_relax(); @@ -1285,10 +1326,12 @@ BUG(); } +#ifdef CONFIG_PROFILING int setup_profiling_timer(unsigned int multiplier) { return 0; } +#endif #ifdef CONFIG_SCHED_SMT /* cpumask of CPUs with asymetric SMT dependancy */ diff -u linux-azure-5.4.0/arch/powerpc/kvm/book3s_64_vio.c linux-azure-5.4.0/arch/powerpc/kvm/book3s_64_vio.c --- linux-azure-5.4.0/arch/powerpc/kvm/book3s_64_vio.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_64_vio.c @@ -420,13 +420,19 @@ tbl[idx % TCES_PER_PAGE] = tce; } -static void kvmppc_clear_tce(struct mm_struct *mm, struct iommu_table *tbl, - unsigned long entry) +static void kvmppc_clear_tce(struct mm_struct *mm, struct kvmppc_spapr_tce_table *stt, + struct iommu_table *tbl, unsigned long entry) { - unsigned long hpa = 0; - enum dma_data_direction dir = DMA_NONE; + unsigned long i; + unsigned long subpages = 1ULL << (stt->page_shift - tbl->it_page_shift); + unsigned long io_entry = entry << (stt->page_shift - tbl->it_page_shift); + + for (i = 0; i < subpages; ++i) { + unsigned long hpa = 0; + enum dma_data_direction dir = DMA_NONE; - iommu_tce_xchg_no_kill(mm, tbl, entry, &hpa, &dir); + iommu_tce_xchg_no_kill(mm, tbl, io_entry + i, &hpa, &dir); + } } static long kvmppc_tce_iommu_mapped_dec(struct kvm *kvm, @@ -485,6 +491,8 @@ break; } + iommu_tce_kill(tbl, io_entry, subpages); + return ret; } @@ -544,6 +552,8 @@ break; } + iommu_tce_kill(tbl, io_entry, subpages); + return ret; } @@ -590,10 +600,9 @@ ret = kvmppc_tce_iommu_map(vcpu->kvm, stt, stit->tbl, entry, ua, dir); - iommu_tce_kill(stit->tbl, entry, 1); if (ret != H_SUCCESS) { - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, entry); + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, entry); goto unlock_exit; } } @@ -669,13 +678,13 @@ */ if (get_user(tce, tces + i)) { ret = H_TOO_HARD; - goto invalidate_exit; + goto unlock_exit; } tce = be64_to_cpu(tce); if (kvmppc_tce_to_ua(vcpu->kvm, tce, &ua)) { ret = H_PARAMETER; - goto invalidate_exit; + goto unlock_exit; } list_for_each_entry_lockless(stit, &stt->iommu_tables, next) { @@ -684,19 +693,15 @@ iommu_tce_direction(tce)); if (ret != H_SUCCESS) { - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, - entry); - goto invalidate_exit; + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, + entry + i); + goto unlock_exit; } } kvmppc_tce_put(stt, entry + i, tce); } -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill(stit->tbl, entry, npages); - unlock_exit: srcu_read_unlock(&vcpu->kvm->srcu, idx); @@ -735,20 +740,16 @@ continue; if (ret == H_TOO_HARD) - goto invalidate_exit; + return ret; WARN_ON_ONCE(1); - kvmppc_clear_tce(vcpu->kvm->mm, stit->tbl, entry); + kvmppc_clear_tce(vcpu->kvm->mm, stt, stit->tbl, entry + i); } } for (i = 0; i < npages; ++i, ioba += (1ULL << stt->page_shift)) kvmppc_tce_put(stt, ioba >> stt->page_shift, tce_value); -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill(stit->tbl, ioba >> stt->page_shift, npages); - return ret; } EXPORT_SYMBOL_GPL(kvmppc_h_stuff_tce); diff -u linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv.c linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv.c --- linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv.c @@ -58,6 +58,7 @@ #include #include #include +#include #include #include #include @@ -2306,8 +2307,10 @@ HFSCR_DSCR | HFSCR_VECVSX | HFSCR_FP; if (cpu_has_feature(CPU_FTR_HVMODE)) { vcpu->arch.hfscr &= mfspr(SPRN_HFSCR); +#ifdef CONFIG_PPC_TRANSACTIONAL_MEM if (cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST)) vcpu->arch.hfscr |= HFSCR_TM; +#endif } if (cpu_has_feature(CPU_FTR_TM_COMP)) vcpu->arch.hfscr |= HFSCR_TM; @@ -2536,7 +2539,7 @@ cpumask_t *cpu_in_guest; int i; - cpu = cpu_first_thread_sibling(cpu); + cpu = cpu_first_tlb_thread_sibling(cpu); if (nested) { cpumask_set_cpu(cpu, &nested->need_tlb_flush); cpu_in_guest = &nested->cpu_in_guest; @@ -2550,9 +2553,10 @@ * the other side is the first smp_mb() in kvmppc_run_core(). */ smp_mb(); - for (i = 0; i < threads_per_core; ++i) - if (cpumask_test_cpu(cpu + i, cpu_in_guest)) - smp_call_function_single(cpu + i, do_nothing, NULL, 1); + for (i = cpu; i <= cpu_last_tlb_thread_sibling(cpu); + i += cpu_tlb_thread_sibling_step()) + if (cpumask_test_cpu(i, cpu_in_guest)) + smp_call_function_single(i, do_nothing, NULL, 1); } static void kvmppc_prepare_radix_vcpu(struct kvm_vcpu *vcpu, int pcpu) @@ -2583,8 +2587,8 @@ */ if (prev_cpu != pcpu) { if (prev_cpu >= 0 && - cpu_first_thread_sibling(prev_cpu) != - cpu_first_thread_sibling(pcpu)) + cpu_first_tlb_thread_sibling(prev_cpu) != + cpu_first_tlb_thread_sibling(pcpu)) radix_flush_cpu(kvm, prev_cpu, vcpu); if (nested) nested->prev_cpu[vcpu->arch.nested_vcpu_id] = pcpu; @@ -3556,6 +3560,18 @@ cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST)) kvmppc_restore_tm_hv(vcpu, vcpu->arch.shregs.msr, true); +#ifdef CONFIG_PPC_PSERIES + if (kvmhv_on_pseries()) { + barrier(); + if (vcpu->arch.vpa.pinned_addr) { + struct lppaca *lp = vcpu->arch.vpa.pinned_addr; + get_lppaca()->pmcregs_in_use = lp->pmcregs_in_use; + } else { + get_lppaca()->pmcregs_in_use = 1; + } + barrier(); + } +#endif kvmhv_load_guest_pmu(vcpu); msr_check_and_set(MSR_FP | MSR_VEC | MSR_VSX); @@ -3690,6 +3706,13 @@ save_pmu |= nesting_enabled(vcpu->kvm); kvmhv_save_guest_pmu(vcpu, save_pmu); +#ifdef CONFIG_PPC_PSERIES + if (kvmhv_on_pseries()) { + barrier(); + get_lppaca()->pmcregs_in_use = ppc_get_pmu_inuse(); + barrier(); + } +#endif vc->entry_exit_map = 0x101; vc->in_guest = 0; diff -u linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S --- linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S @@ -292,13 +292,16 @@ * r3 contains the SRR1 wakeup value, SRR1 is trashed. */ _GLOBAL(idle_kvm_start_guest) - ld r4,PACAEMERGSP(r13) mfcr r5 mflr r0 - std r1,0(r4) - std r5,8(r4) - std r0,16(r4) - subi r1,r4,STACK_FRAME_OVERHEAD + std r5, 8(r1) // Save CR in caller's frame + std r0, 16(r1) // Save LR in caller's frame + // Create frame on emergency stack + ld r4, PACAEMERGSP(r13) + stdu r1, -SWITCH_FRAME_SIZE(r4) + // Switch to new frame on emergency stack + mr r1, r4 + std r3, 32(r1) // Save SRR1 wakeup value SAVE_NVGPRS(r1) /* @@ -350,6 +353,10 @@ kvm_secondary_got_guest: + // About to go to guest, clear saved SRR1 + li r0, 0 + std r0, 32(r1) + /* Set HSTATE_DSCR(r13) to something sensible */ ld r6, PACA_DSCR_DEFAULT(r13) std r6, HSTATE_DSCR(r13) @@ -441,13 +448,12 @@ mfspr r4, SPRN_LPCR rlwimi r4, r3, 0, LPCR_PECE0 | LPCR_PECE1 mtspr SPRN_LPCR, r4 - /* set up r3 for return */ - mfspr r3,SPRN_SRR1 + // Return SRR1 wakeup value, or 0 if we went into the guest + ld r3, 32(r1) REST_NVGPRS(r1) - addi r1, r1, STACK_FRAME_OVERHEAD - ld r0, 16(r1) - ld r5, 8(r1) - ld r1, 0(r1) + ld r1, 0(r1) // Switch back to caller stack + ld r0, 16(r1) // Reload LR + ld r5, 8(r1) // Reload CR mtlr r0 mtcr r5 blr @@ -2529,7 +2535,7 @@ .globl hcall_real_table_end hcall_real_table_end: -_GLOBAL(kvmppc_h_set_xdabr) +_GLOBAL_TOC(kvmppc_h_set_xdabr) EXPORT_SYMBOL_GPL(kvmppc_h_set_xdabr) andi. r0, r5, DABRX_USER | DABRX_KERNEL beq 6f @@ -2539,7 +2545,7 @@ 6: li r3, H_PARAMETER blr -_GLOBAL(kvmppc_h_set_dabr) +_GLOBAL_TOC(kvmppc_h_set_dabr) EXPORT_SYMBOL_GPL(kvmppc_h_set_dabr) li r5, DABRX_USER | DABRX_KERNEL 3: @@ -3137,7 +3143,7 @@ /* The following code handles the fake_suspend = 1 case */ mflr r0 std r0, PPC_LR_STKOFF(r1) - stdu r1, -PPC_MIN_STKFRM(r1) + stdu r1, -TM_FRAME_SIZE(r1) /* Turn on TM. */ mfmsr r8 @@ -3152,10 +3158,42 @@ END_FTR_SECTION_IFSET(CPU_FTR_P9_TM_XER_SO_BUG) nop + /* + * It's possible that treclaim. may modify registers, if we have lost + * track of fake-suspend state in the guest due to it using rfscv. + * Save and restore registers in case this occurs. + */ + mfspr r3, SPRN_DSCR + mfspr r4, SPRN_XER + mfspr r5, SPRN_AMR + /* SPRN_TAR would need to be saved here if the kernel ever used it */ + mfcr r12 + SAVE_NVGPRS(r1) + SAVE_GPR(2, r1) + SAVE_GPR(3, r1) + SAVE_GPR(4, r1) + SAVE_GPR(5, r1) + stw r12, 8(r1) + std r1, HSTATE_HOST_R1(r13) + /* We have to treclaim here because that's the only way to do S->N */ li r3, TM_CAUSE_KVM_RESCHED TRECLAIM(R3) + GET_PACA(r13) + ld r1, HSTATE_HOST_R1(r13) + REST_GPR(2, r1) + REST_GPR(3, r1) + REST_GPR(4, r1) + REST_GPR(5, r1) + lwz r12, 8(r1) + REST_NVGPRS(r1) + mtspr SPRN_DSCR, r3 + mtspr SPRN_XER, r4 + mtspr SPRN_AMR, r5 + mtcr r12 + HMT_MEDIUM + /* * We were in fake suspend, so we are not going to save the * register state as the guest checkpointed state (since @@ -3183,7 +3221,7 @@ std r5, VCPU_TFHAR(r9) std r6, VCPU_TFIAR(r9) - addi r1, r1, PPC_MIN_STKFRM + addi r1, r1, TM_FRAME_SIZE ld r0, PPC_LR_STKOFF(r1) mtlr r0 blr diff -u linux-azure-5.4.0/arch/powerpc/kvm/powerpc.c linux-azure-5.4.0/arch/powerpc/kvm/powerpc.c --- linux-azure-5.4.0/arch/powerpc/kvm/powerpc.c +++ linux-azure-5.4.0/arch/powerpc/kvm/powerpc.c @@ -1495,7 +1495,7 @@ { enum emulation_result emulated = EMULATE_DONE; - if (vcpu->arch.mmio_vsx_copy_nums > 2) + if (vcpu->arch.mmio_vmx_copy_nums > 2) return EMULATE_FAIL; while (vcpu->arch.mmio_vmx_copy_nums) { @@ -1592,7 +1592,7 @@ unsigned int index = rs & KVM_MMIO_REG_MASK; enum emulation_result emulated = EMULATE_DONE; - if (vcpu->arch.mmio_vsx_copy_nums > 2) + if (vcpu->arch.mmio_vmx_copy_nums > 2) return EMULATE_FAIL; vcpu->arch.io_gpr = rs; @@ -2035,9 +2035,9 @@ { struct kvm_enable_cap cap; r = -EFAULT; - vcpu_load(vcpu); if (copy_from_user(&cap, argp, sizeof(cap))) goto out; + vcpu_load(vcpu); r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap); vcpu_put(vcpu); break; @@ -2061,9 +2061,9 @@ case KVM_DIRTY_TLB: { struct kvm_dirty_tlb dirty; r = -EFAULT; - vcpu_load(vcpu); if (copy_from_user(&dirty, argp, sizeof(dirty))) goto out; + vcpu_load(vcpu); r = kvm_vcpu_ioctl_dirty_tlb(vcpu, &dirty); vcpu_put(vcpu); break; diff -u linux-azure-5.4.0/arch/powerpc/lib/sstep.c linux-azure-5.4.0/arch/powerpc/lib/sstep.c --- linux-azure-5.4.0/arch/powerpc/lib/sstep.c +++ linux-azure-5.4.0/arch/powerpc/lib/sstep.c @@ -907,7 +907,10 @@ #define __put_user_asmx(x, addr, err, op, cr) \ __asm__ __volatile__( \ + ".machine push\n" \ + ".machine power8\n" \ "1: " op " %2,0,%3\n" \ + ".machine pop\n" \ " mfcr %1\n" \ "2:\n" \ ".section .fixup,\"ax\"\n" \ @@ -920,7 +923,10 @@ #define __get_user_asmx(x, addr, err, op) \ __asm__ __volatile__( \ + ".machine push\n" \ + ".machine power8\n" \ "1: "op" %1,0,%2\n" \ + ".machine pop\n" \ "2:\n" \ ".section .fixup,\"ax\"\n" \ "3: li %0,%3\n" \ @@ -2788,12 +2794,14 @@ case BARRIER_EIEIO: eieio(); break; +#ifdef CONFIG_PPC64 case BARRIER_LWSYNC: asm volatile("lwsync" : : : "memory"); break; case BARRIER_PTESYNC: asm volatile("ptesync" : : : "memory"); break; +#endif } break; @@ -2911,7 +2919,7 @@ __put_user_asmx(op->val, ea, err, "stbcx.", cr); break; case 2: - __put_user_asmx(op->val, ea, err, "stbcx.", cr); + __put_user_asmx(op->val, ea, err, "sthcx.", cr); break; #endif case 4: diff -u linux-azure-5.4.0/arch/powerpc/mm/fault.c linux-azure-5.4.0/arch/powerpc/mm/fault.c --- linux-azure-5.4.0/arch/powerpc/mm/fault.c +++ linux-azure-5.4.0/arch/powerpc/mm/fault.c @@ -204,9 +204,7 @@ { int is_exec = TRAP(regs) == 0x400; - /* NX faults set DSISR_PROTFAULT on the 8xx, DSISR_NOEXEC_OR_G on others */ - if (is_exec && (error_code & (DSISR_NOEXEC_OR_G | DSISR_KEYFAULT | - DSISR_PROTFAULT))) { + if (is_exec) { pr_crit_ratelimited("kernel tried to execute %s page (%lx) - exploit attempt? (uid: %d)\n", address >= TASK_SIZE ? "exec-protected" : "user", address, diff -u linux-azure-5.4.0/arch/powerpc/mm/kasan/kasan_init_32.c linux-azure-5.4.0/arch/powerpc/mm/kasan/kasan_init_32.c --- linux-azure-5.4.0/arch/powerpc/mm/kasan/kasan_init_32.c +++ linux-azure-5.4.0/arch/powerpc/mm/kasan/kasan_init_32.c @@ -121,7 +121,7 @@ pmd_t *pmd = pmd_offset(pud_offset(pgd_offset_k(k_cur), k_cur), k_cur); pte_t *ptep = pte_offset_kernel(pmd, k_cur); - if ((pte_val(*ptep) & PTE_RPN_MASK) != pa) + if (pte_page(*ptep) != virt_to_page(lm_alias(kasan_early_shadow_page))) continue; __set_pte_at(&init_mm, k_cur, ptep, pfn_pte(PHYS_PFN(pa), prot), 0); diff -u linux-azure-5.4.0/arch/powerpc/mm/mem.c linux-azure-5.4.0/arch/powerpc/mm/mem.c --- linux-azure-5.4.0/arch/powerpc/mm/mem.c +++ linux-azure-5.4.0/arch/powerpc/mm/mem.c @@ -48,6 +48,7 @@ #include #include #include +#include #include @@ -346,6 +347,7 @@ mark_initmem_nx(); init_mem_is_free = true; free_initmem_default(POISON_FREE_INITMEM); + ftrace_free_init_tramp(); } /** diff -u linux-azure-5.4.0/arch/powerpc/mm/ptdump/shared.c linux-azure-5.4.0/arch/powerpc/mm/ptdump/shared.c --- linux-azure-5.4.0/arch/powerpc/mm/ptdump/shared.c +++ linux-azure-5.4.0/arch/powerpc/mm/ptdump/shared.c @@ -17,9 +17,9 @@ .clear = " ", }, { .mask = _PAGE_RW, - .val = _PAGE_RW, - .set = "rw", - .clear = "r ", + .val = 0, + .set = "r ", + .clear = "rw", }, { .mask = _PAGE_EXEC, .val = _PAGE_EXEC, diff -u linux-azure-5.4.0/arch/powerpc/perf/imc-pmu.c linux-azure-5.4.0/arch/powerpc/perf/imc-pmu.c --- linux-azure-5.4.0/arch/powerpc/perf/imc-pmu.c +++ linux-azure-5.4.0/arch/powerpc/perf/imc-pmu.c @@ -1441,7 +1441,11 @@ event->hw.idx = -1; target = event->hw.target; - event->pmu->task_ctx_nr = perf_hw_context; + /* + * There can only be a single PMU for perf_hw_context events which is assigned to + * core PMU. Hence use "perf_sw_context" for trace_imc. + */ + event->pmu->task_ctx_nr = perf_sw_context; event->destroy = reset_global_refc; return 0; } diff -u linux-azure-5.4.0/arch/powerpc/perf/isa207-common.c linux-azure-5.4.0/arch/powerpc/perf/isa207-common.c --- linux-azure-5.4.0/arch/powerpc/perf/isa207-common.c +++ linux-azure-5.4.0/arch/powerpc/perf/isa207-common.c @@ -326,7 +326,8 @@ if (event_is_threshold(event) && is_thresh_cmp_valid(event)) { mask |= CNST_THRESH_MASK; value |= CNST_THRESH_VAL(event >> EVENT_THRESH_SHIFT); - } + } else if (event_is_threshold(event)) + return -1; } else { /* * Special case for PM_MRK_FAB_RSP_MATCH and PM_MRK_FAB_RSP_MATCH_CYC, diff -u linux-azure-5.4.0/arch/powerpc/platforms/Kconfig.cputype linux-azure-5.4.0/arch/powerpc/platforms/Kconfig.cputype --- linux-azure-5.4.0/arch/powerpc/platforms/Kconfig.cputype +++ linux-azure-5.4.0/arch/powerpc/platforms/Kconfig.cputype @@ -118,9 +118,9 @@ depends on PPC64 && CPU_LITTLE_ENDIAN select ARCH_HAS_FAST_MULTIPLIER -config GENERIC_CPU +config POWERPC_CPU bool "Generic 32 bits powerpc" - depends on PPC32 && !PPC_8xx + depends on PPC32 && !PPC_8xx && !PPC_85xx config CELL_CPU bool "Cell Broadband Engine" @@ -151,11 +151,11 @@ config E5500_CPU bool "Freescale e5500" - depends on E500 + depends on PPC64 && E500 config E6500_CPU bool "Freescale e6500" - depends on E500 + depends on PPC64 && E500 config 860_CPU bool "8xx family" @@ -174,11 +174,23 @@ depends on PPC_BOOK3S_32 select ALTIVEC +config E500_CPU + bool "e500 (8540)" + depends on PPC_85xx && !PPC_E500MC + +config E500MC_CPU + bool "e500mc" + depends on PPC_85xx && PPC_E500MC + +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 + default !GENERIC_CPU && !TOOLCHAIN_DEFAULT_CPU config TARGET_CPU string @@ -193,6 +205,9 @@ default "e300c2" if E300C2_CPU default "e300c3" if E300C3_CPU default "G4" if G4_CPU + default "8540" if E500_CPU + default "e500mc" if E500MC_CPU + default "powerpc" if POWERPC_CPU config PPC_BOOK3S def_bool y diff -u linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal.c linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal.c --- linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal.c @@ -776,6 +776,7 @@ kobj = kobject_create_and_add("exports", opal_kobj); if (!kobj) { pr_warn("kobject_create_and_add() of exports failed\n"); + of_node_put(np); return; } diff -u linux-azure-5.4.0/arch/powerpc/platforms/powernv/setup.c linux-azure-5.4.0/arch/powerpc/platforms/powernv/setup.c --- linux-azure-5.4.0/arch/powerpc/platforms/powernv/setup.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/setup.c @@ -168,6 +168,8 @@ powersave_nap = 1; /* XXX PMCS */ + + pnv_rng_init(); } static void __init pnv_init(void) diff -u linux-azure-5.4.0/arch/powerpc/platforms/ps3/mm.c linux-azure-5.4.0/arch/powerpc/platforms/ps3/mm.c --- linux-azure-5.4.0/arch/powerpc/platforms/ps3/mm.c +++ linux-azure-5.4.0/arch/powerpc/platforms/ps3/mm.c @@ -6,6 +6,7 @@ * Copyright 2006 Sony Corp. */ +#include #include #include #include @@ -1118,6 +1119,7 @@ enum ps3_dma_region_type region_type, void *addr, unsigned long len) { unsigned long lpar_addr; + int result; lpar_addr = addr ? ps3_mm_phys_to_lpar(__pa(addr)) : 0; @@ -1129,6 +1131,16 @@ r->offset -= map.r1.offset; r->len = len ? len : _ALIGN_UP(map.total, 1 << r->page_size); + dev->core.dma_mask = &r->dma_mask; + + result = dma_set_mask_and_coherent(&dev->core, DMA_BIT_MASK(32)); + + if (result < 0) { + dev_err(&dev->core, "%s:%d: dma_set_mask_and_coherent failed: %d\n", + __func__, __LINE__, result); + return result; + } + switch (dev->dev_type) { case PS3_DEVICE_TYPE_SB: r->region_ops = (USE_DYNAMIC_DMA) diff -u linux-azure-5.4.0/arch/powerpc/platforms/pseries/rng.c linux-azure-5.4.0/arch/powerpc/platforms/pseries/rng.c --- linux-azure-5.4.0/arch/powerpc/platforms/pseries/rng.c +++ linux-azure-5.4.0/arch/powerpc/platforms/pseries/rng.c @@ -10,6 +10,7 @@ #include #include #include +#include "pseries.h" static int pseries_get_random_long(unsigned long *v) @@ -27,16 +28,10 @@ -static __init int rng_init(void) +void __init pseries_rng_init(void) { struct device_node *dn; dn = of_find_compatible_node(NULL, NULL, "ibm,random"); if (!dn) - return -ENODEV; - - pr_info("Registering arch random hook.\n"); - + return; ppc_md.get_random_seed = pseries_get_random_long; - of_node_put(dn); - return 0; } -machine_subsys_initcall(pseries, rng_init); diff -u linux-azure-5.4.0/arch/powerpc/platforms/pseries/setup.c linux-azure-5.4.0/arch/powerpc/platforms/pseries/setup.c --- linux-azure-5.4.0/arch/powerpc/platforms/pseries/setup.c +++ linux-azure-5.4.0/arch/powerpc/platforms/pseries/setup.c @@ -75,7 +75,7 @@ #include "../../../../drivers/pci/pci.h" DEFINE_STATIC_KEY_FALSE(shared_processor); -EXPORT_SYMBOL_GPL(shared_processor); +EXPORT_SYMBOL(shared_processor); int CMO_PrPSP = -1; int CMO_SecPSP = -1; @@ -792,6 +792,8 @@ if (swiotlb_force == SWIOTLB_FORCE) ppc_swiotlb_enable = 1; + + pseries_rng_init(); } static void pseries_panic(char *str) diff -u linux-azure-5.4.0/arch/powerpc/sysdev/xive/common.c linux-azure-5.4.0/arch/powerpc/sysdev/xive/common.c --- linux-azure-5.4.0/arch/powerpc/sysdev/xive/common.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/xive/common.c @@ -990,7 +990,8 @@ * interrupt to be inactive in that case. */ *state = (pq != XIVE_ESB_INVALID) && !xd->stale_p && - (xd->saved_p || !!(pq & XIVE_ESB_VAL_P)); + (xd->saved_p || (!!(pq & XIVE_ESB_VAL_P) && + !irqd_irq_disabled(data))); return 0; default: return -EINVAL; diff -u linux-azure-5.4.0/arch/powerpc/sysdev/xive/spapr.c linux-azure-5.4.0/arch/powerpc/sysdev/xive/spapr.c --- linux-azure-5.4.0/arch/powerpc/sysdev/xive/spapr.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/xive/spapr.c @@ -683,6 +683,7 @@ } reg = of_get_property(rootdn, "ibm,plat-res-int-priorities", &len); + of_node_put(rootdn); if (!reg) { pr_err("Failed to read 'ibm,plat-res-int-priorities' property\n"); return false; diff -u linux-azure-5.4.0/arch/riscv/Kconfig linux-azure-5.4.0/arch/riscv/Kconfig --- linux-azure-5.4.0/arch/riscv/Kconfig +++ linux-azure-5.4.0/arch/riscv/Kconfig @@ -52,7 +52,7 @@ select PCI_MSI if PCI select RISCV_TIMER select GENERIC_IRQ_MULTI_HANDLER - select GENERIC_ARCH_TOPOLOGY if SMP + select GENERIC_ARCH_TOPOLOGY select ARCH_HAS_PTE_SPECIAL select ARCH_HAS_MMIOWB select HAVE_EBPF_JIT if 64BIT diff -u linux-azure-5.4.0/arch/riscv/kernel/module.c linux-azure-5.4.0/arch/riscv/kernel/module.c --- linux-azure-5.4.0/arch/riscv/kernel/module.c +++ linux-azure-5.4.0/arch/riscv/kernel/module.c @@ -14,4 +14,17 @@ #include +/* + * The auipc+jalr instruction pair can reach any PC-relative offset + * in the range [-2^31 - 2^11, 2^31 - 2^11) + */ +static bool riscv_insn_valid_32bit_offset(ptrdiff_t val) +{ +#ifdef CONFIG_32BIT + return true; +#else + return (-(1L << 31) - (1L << 11)) <= val && val < ((1L << 31) - (1L << 11)); +#endif +} + static int apply_r_riscv_32_rela(struct module *me, u32 *location, Elf_Addr v) { @@ -95,7 +108,7 @@ ptrdiff_t offset = (void *)v - (void *)location; s32 hi20; - if (offset != (s32)offset) { + if (!riscv_insn_valid_32bit_offset(offset)) { pr_err( "%s: target %016llx can not be addressed by the 32-bit offset from PC = %p\n", me->name, (long long)v, location); @@ -197,10 +210,9 @@ Elf_Addr v) { ptrdiff_t offset = (void *)v - (void *)location; - s32 fill_v = offset; u32 hi20, lo12; - if (offset != fill_v) { + if (!riscv_insn_valid_32bit_offset(offset)) { /* Only emit the plt entry if offset over 32-bit range */ if (IS_ENABLED(CONFIG_MODULE_SECTIONS)) { offset = module_emit_plt_entry(me, v); @@ -224,10 +236,9 @@ Elf_Addr v) { ptrdiff_t offset = (void *)v - (void *)location; - s32 fill_v = offset; u32 hi20, lo12; - if (offset != fill_v) { + if (!riscv_insn_valid_32bit_offset(offset)) { pr_err( "%s: target %016llx can not be addressed by the 32-bit offset from PC = %p\n", me->name, (long long)v, location); diff -u linux-azure-5.4.0/arch/riscv/kernel/sys_riscv.c linux-azure-5.4.0/arch/riscv/kernel/sys_riscv.c --- linux-azure-5.4.0/arch/riscv/kernel/sys_riscv.c +++ linux-azure-5.4.0/arch/riscv/kernel/sys_riscv.c @@ -18,10 +18,6 @@ if (unlikely(offset & (~PAGE_MASK >> page_shift_offset))) return -EINVAL; - if ((prot & PROT_WRITE) && (prot & PROT_EXEC)) - if (unlikely(!(prot & PROT_READ))) - return -EINVAL; - return ksys_mmap_pgoff(addr, len, prot, flags, fd, offset >> (PAGE_SHIFT - page_shift_offset)); } diff -u linux-azure-5.4.0/arch/riscv/net/bpf_jit_comp.c linux-azure-5.4.0/arch/riscv/net/bpf_jit_comp.c --- linux-azure-5.4.0/arch/riscv/net/bpf_jit_comp.c +++ linux-azure-5.4.0/arch/riscv/net/bpf_jit_comp.c @@ -1313,6 +1313,10 @@ emit(rv_ld(rd, 0, RV_REG_T1), ctx); break; + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + break; + /* ST: *(size *)(dst + off) = imm */ case BPF_ST | BPF_MEM | BPF_B: emit_imm(RV_REG_T1, imm, ctx); diff -u linux-azure-5.4.0/arch/s390/Kconfig linux-azure-5.4.0/arch/s390/Kconfig --- linux-azure-5.4.0/arch/s390/Kconfig +++ linux-azure-5.4.0/arch/s390/Kconfig @@ -542,7 +542,6 @@ config KEXEC_FILE bool "kexec file based system call" select KEXEC_CORE - select BUILD_BIN2C depends on CRYPTO depends on CRYPTO_SHA256 depends on CRYPTO_SHA256_S390 @@ -921,7 +920,7 @@ config APPLDATA_BASE def_bool n prompt "Linux - VM Monitor Stream, base infrastructure" - depends on PROC_FS + depends on PROC_SYSCTL help This provides a kernel interface for creating and updating z/VM APPLDATA monitor records. The monitor records are updated at certain time diff -u linux-azure-5.4.0/arch/s390/Makefile linux-azure-5.4.0/arch/s390/Makefile --- linux-azure-5.4.0/arch/s390/Makefile +++ linux-azure-5.4.0/arch/s390/Makefile @@ -31,6 +31,16 @@ KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-disable-warning, address-of-packed-member) KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),-g) KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO_DWARF4), $(call cc-option, -gdwarf-4,)) + +ifdef CONFIG_CC_IS_GCC + ifeq ($(call cc-ifversion, -ge, 1200, y), y) + ifeq ($(call cc-ifversion, -lt, 1300, y), y) + KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds) + KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-disable-warning, array-bounds) + endif + endif +endif + UTS_MACHINE := s390x STACK_SIZE := $(if $(CONFIG_KASAN),65536,16384) CHECKFLAGS += -D__s390__ -D__s390x__ diff -u linux-azure-5.4.0/arch/s390/boot/ipl_parm.c linux-azure-5.4.0/arch/s390/boot/ipl_parm.c --- linux-azure-5.4.0/arch/s390/boot/ipl_parm.c +++ linux-azure-5.4.0/arch/s390/boot/ipl_parm.c @@ -28,22 +28,25 @@ register unsigned long _addr asm("0") = (unsigned long)addr; register unsigned long _rc asm("1") = 0; unsigned long reg1, reg2; - psw_t old = S390_lowcore.program_new_psw; + psw_t old; asm volatile( + " mvc 0(16,%[psw_old]),0(%[psw_pgm])\n" " epsw %0,%1\n" - " st %0,%[psw_pgm]\n" - " st %1,%[psw_pgm]+4\n" + " st %0,0(%[psw_pgm])\n" + " st %1,4(%[psw_pgm])\n" " larl %0,1f\n" - " stg %0,%[psw_pgm]+8\n" + " stg %0,8(%[psw_pgm])\n" " diag %[addr],%[subcode],0x308\n" - "1: nopr %%r7\n" + "1: mvc 0(16,%[psw_pgm]),0(%[psw_old])\n" : "=&d" (reg1), "=&a" (reg2), - [psw_pgm] "=Q" (S390_lowcore.program_new_psw), + "+Q" (S390_lowcore.program_new_psw), + "=Q" (old), [addr] "+d" (_addr), "+d" (_rc) - : [subcode] "d" (subcode) + : [subcode] "d" (subcode), + [psw_old] "a" (&old), + [psw_pgm] "a" (&S390_lowcore.program_new_psw) : "cc", "memory"); - S390_lowcore.program_new_psw = old; return _rc; } diff -u linux-azure-5.4.0/arch/s390/crypto/arch_random.c linux-azure-5.4.0/arch/s390/crypto/arch_random.c --- linux-azure-5.4.0/arch/s390/crypto/arch_random.c +++ linux-azure-5.4.0/arch/s390/crypto/arch_random.c @@ -5,123 +5,14 @@ - * Copyright IBM Corp. 2017, 2018 + * Copyright IBM Corp. 2017, 2020 * Author(s): Harald Freudenberger - * - * The s390_arch_random_generate() function may be called from random.c - * in interrupt context. So this implementation does the best to be very - * fast. There is a buffer of random data which is asynchronously checked - * and filled by a workqueue thread. - * If there are enough bytes in the buffer the s390_arch_random_generate() - * just delivers these bytes. Otherwise false is returned until the - * worker thread refills the buffer. - * The worker fills the rng buffer by pulling fresh entropy from the - * high quality (but slow) true hardware random generator. This entropy - * is then spread over the buffer with an pseudo random generator PRNG. - * As the arch_get_random_seed_long() fetches 8 bytes and the calling - * function add_interrupt_randomness() counts this as 1 bit entropy the - * distribution needs to make sure there is in fact 1 bit entropy contained - * in 8 bytes of the buffer. The current values pull 32 byte entropy - * and scatter this into a 2048 byte buffer. So 8 byte in the buffer - * will contain 1 bit of entropy. - * The worker thread is rescheduled based on the charge level of the - * buffer but at least with 500 ms delay to avoid too much CPU consumption. - * So the max. amount of rng data delivered via arch_get_random_seed is - * limited to 4k bytes per second. */ #include #include #include -#include #include -#include #include DEFINE_STATIC_KEY_FALSE(s390_arch_random_available); atomic64_t s390_arch_random_counter = ATOMIC64_INIT(0); EXPORT_SYMBOL(s390_arch_random_counter); - -#define ARCH_REFILL_TICKS (HZ/2) -#define ARCH_PRNG_SEED_SIZE 32 -#define ARCH_RNG_BUF_SIZE 2048 - -static DEFINE_SPINLOCK(arch_rng_lock); -static u8 *arch_rng_buf; -static unsigned int arch_rng_buf_idx; - -static void arch_rng_refill_buffer(struct work_struct *); -static DECLARE_DELAYED_WORK(arch_rng_work, arch_rng_refill_buffer); - -bool s390_arch_random_generate(u8 *buf, unsigned int nbytes) -{ - /* max hunk is ARCH_RNG_BUF_SIZE */ - if (nbytes > ARCH_RNG_BUF_SIZE) - return false; - - /* lock rng buffer */ - if (!spin_trylock(&arch_rng_lock)) - return false; - - /* try to resolve the requested amount of bytes from the buffer */ - arch_rng_buf_idx -= nbytes; - if (arch_rng_buf_idx < ARCH_RNG_BUF_SIZE) { - memcpy(buf, arch_rng_buf + arch_rng_buf_idx, nbytes); - atomic64_add(nbytes, &s390_arch_random_counter); - spin_unlock(&arch_rng_lock); - return true; - } - - /* not enough bytes in rng buffer, refill is done asynchronously */ - spin_unlock(&arch_rng_lock); - - return false; -} -EXPORT_SYMBOL(s390_arch_random_generate); - -static void arch_rng_refill_buffer(struct work_struct *unused) -{ - unsigned int delay = ARCH_REFILL_TICKS; - - spin_lock(&arch_rng_lock); - if (arch_rng_buf_idx > ARCH_RNG_BUF_SIZE) { - /* buffer is exhausted and needs refill */ - u8 seed[ARCH_PRNG_SEED_SIZE]; - u8 prng_wa[240]; - /* fetch ARCH_PRNG_SEED_SIZE bytes of entropy */ - cpacf_trng(NULL, 0, seed, sizeof(seed)); - /* blow this entropy up to ARCH_RNG_BUF_SIZE with PRNG */ - memset(prng_wa, 0, sizeof(prng_wa)); - cpacf_prno(CPACF_PRNO_SHA512_DRNG_SEED, - &prng_wa, NULL, 0, seed, sizeof(seed)); - cpacf_prno(CPACF_PRNO_SHA512_DRNG_GEN, - &prng_wa, arch_rng_buf, ARCH_RNG_BUF_SIZE, NULL, 0); - arch_rng_buf_idx = ARCH_RNG_BUF_SIZE; - } - delay += (ARCH_REFILL_TICKS * arch_rng_buf_idx) / ARCH_RNG_BUF_SIZE; - spin_unlock(&arch_rng_lock); - - /* kick next check */ - queue_delayed_work(system_long_wq, &arch_rng_work, delay); -} - -static int __init s390_arch_random_init(void) -{ - /* all the needed PRNO subfunctions available ? */ - if (cpacf_query_func(CPACF_PRNO, CPACF_PRNO_TRNG) && - cpacf_query_func(CPACF_PRNO, CPACF_PRNO_SHA512_DRNG_GEN)) { - - /* alloc arch random working buffer */ - arch_rng_buf = kmalloc(ARCH_RNG_BUF_SIZE, GFP_KERNEL); - if (!arch_rng_buf) - return -ENOMEM; - - /* kick worker queue job to fill the random buffer */ - queue_delayed_work(system_long_wq, - &arch_rng_work, ARCH_REFILL_TICKS); - - /* enable arch random to the outside world */ - static_branch_enable(&s390_arch_random_available); - } - - return 0; -} -arch_initcall(s390_arch_random_init); diff -u linux-azure-5.4.0/arch/s390/include/asm/kvm_host.h linux-azure-5.4.0/arch/s390/include/asm/kvm_host.h --- linux-azure-5.4.0/arch/s390/include/asm/kvm_host.h +++ linux-azure-5.4.0/arch/s390/include/asm/kvm_host.h @@ -260,7 +260,8 @@ __u32 scaol; /* 0x0064 */ __u8 sdf; /* 0x0068 */ __u8 epdx; /* 0x0069 */ - __u8 reserved6a[2]; /* 0x006a */ + __u8 cpnc; /* 0x006a */ + __u8 reserved6b; /* 0x006b */ __u32 todpr; /* 0x006c */ #define GISA_FORMAT1 0x00000001 __u32 gd; /* 0x0070 */ @@ -742,6 +743,7 @@ bool gs_enabled; bool skey_enabled; struct kvm_s390_pv_vcpu pv; + union diag318_info diag318_info; }; struct kvm_vm_stat { @@ -952,6 +954,7 @@ atomic64_t cmma_dirty_pages; /* subset of available cpu features enabled by user space */ DECLARE_BITMAP(cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS); + /* indexed by vcpu_idx */ DECLARE_BITMAP(idle_mask, KVM_MAX_VCPUS); struct kvm_s390_gisa_interrupt gisa_int; struct kvm_s390_pv pv; diff -u linux-azure-5.4.0/arch/s390/include/asm/page.h linux-azure-5.4.0/arch/s390/include/asm/page.h --- linux-azure-5.4.0/arch/s390/include/asm/page.h +++ linux-azure-5.4.0/arch/s390/include/asm/page.h @@ -20,6 +20,8 @@ #define PAGE_SIZE _PAGE_SIZE #define PAGE_MASK _PAGE_MASK #define PAGE_DEFAULT_ACC 0 +/* storage-protection override */ +#define PAGE_SPO_ACC 9 #define PAGE_DEFAULT_KEY (PAGE_DEFAULT_ACC << 4) #define HPAGE_SHIFT 20 diff -u linux-azure-5.4.0/arch/s390/include/asm/pci.h linux-azure-5.4.0/arch/s390/include/asm/pci.h --- linux-azure-5.4.0/arch/s390/include/asm/pci.h +++ linux-azure-5.4.0/arch/s390/include/asm/pci.h @@ -201,10 +201,13 @@ Prototypes ----------------------------------------------------------------------------- */ /* Base stuff */ -int zpci_create_device(struct zpci_dev *); -void zpci_remove_device(struct zpci_dev *zdev); +int zpci_create_device(struct zpci_dev *zdev); +void zpci_remove_device(struct zpci_dev *zdev, bool set_error); int zpci_enable_device(struct zpci_dev *); int zpci_disable_device(struct zpci_dev *); +void zpci_device_reserved(struct zpci_dev *zdev); +bool zpci_is_device_configured(struct zpci_dev *zdev); + int zpci_register_ioat(struct zpci_dev *, u8, u64, u64, u64); int zpci_unregister_ioat(struct zpci_dev *, u8); void zpci_remove_reserved_devices(void); diff -u linux-azure-5.4.0/arch/s390/include/asm/pci_io.h linux-azure-5.4.0/arch/s390/include/asm/pci_io.h --- linux-azure-5.4.0/arch/s390/include/asm/pci_io.h +++ linux-azure-5.4.0/arch/s390/include/asm/pci_io.h @@ -14,12 +14,13 @@ /* I/O Map */ #define ZPCI_IOMAP_SHIFT 48 -#define ZPCI_IOMAP_ADDR_BASE 0x8000000000000000UL +#define ZPCI_IOMAP_ADDR_SHIFT 62 +#define ZPCI_IOMAP_ADDR_BASE (1UL << ZPCI_IOMAP_ADDR_SHIFT) #define ZPCI_IOMAP_ADDR_OFF_MASK ((1UL << ZPCI_IOMAP_SHIFT) - 1) #define ZPCI_IOMAP_MAX_ENTRIES \ - ((ULONG_MAX - ZPCI_IOMAP_ADDR_BASE + 1) / (1UL << ZPCI_IOMAP_SHIFT)) + (1UL << (ZPCI_IOMAP_ADDR_SHIFT - ZPCI_IOMAP_SHIFT)) #define ZPCI_IOMAP_ADDR_IDX_MASK \ - (~ZPCI_IOMAP_ADDR_OFF_MASK - ZPCI_IOMAP_ADDR_BASE) + ((ZPCI_IOMAP_ADDR_BASE - 1) & ~ZPCI_IOMAP_ADDR_OFF_MASK) struct zpci_iomap_entry { u32 fh; diff -u linux-azure-5.4.0/arch/s390/include/asm/processor.h linux-azure-5.4.0/arch/s390/include/asm/processor.h --- linux-azure-5.4.0/arch/s390/include/asm/processor.h +++ linux-azure-5.4.0/arch/s390/include/asm/processor.h @@ -215,7 +215,7 @@ return sp; } -static __no_kasan_or_inline unsigned short stap(void) +static __always_inline unsigned short stap(void) { unsigned short cpu_address; @@ -254,7 +254,7 @@ * Set PSW mask to specified value, while leaving the * PSW addr pointing to the next instruction. */ -static __no_kasan_or_inline void __load_psw_mask(unsigned long mask) +static __always_inline void __load_psw_mask(unsigned long mask) { unsigned long addr; psw_t psw; diff -u linux-azure-5.4.0/arch/s390/include/asm/setup.h linux-azure-5.4.0/arch/s390/include/asm/setup.h --- linux-azure-5.4.0/arch/s390/include/asm/setup.h +++ linux-azure-5.4.0/arch/s390/include/asm/setup.h @@ -39,6 +39,7 @@ #define MACHINE_FLAG_NX BIT(15) #define MACHINE_FLAG_GS BIT(16) #define MACHINE_FLAG_SCC BIT(17) +#define MACHINE_FLAG_PCI_MIO BIT(18) #define LPP_MAGIC BIT(31) #define LPP_PID_MASK _AC(0xffffffff, UL) @@ -113,6 +114,7 @@ #define MACHINE_HAS_NX (S390_lowcore.machine_flags & MACHINE_FLAG_NX) #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) /* * Console mode. Override with conmode= diff -u linux-azure-5.4.0/arch/s390/include/asm/stacktrace.h linux-azure-5.4.0/arch/s390/include/asm/stacktrace.h --- linux-azure-5.4.0/arch/s390/include/asm/stacktrace.h +++ linux-azure-5.4.0/arch/s390/include/asm/stacktrace.h @@ -79,12 +79,16 @@ CALL_ARGS_4(arg1, arg2, arg3, arg4); \ register unsigned long r4 asm("6") = (unsigned long)(arg5) -#define CALL_FMT_0 "=&d" (r2) : -#define CALL_FMT_1 "+&d" (r2) : -#define CALL_FMT_2 CALL_FMT_1 "d" (r3), -#define CALL_FMT_3 CALL_FMT_2 "d" (r4), -#define CALL_FMT_4 CALL_FMT_3 "d" (r5), -#define CALL_FMT_5 CALL_FMT_4 "d" (r6), +/* + * To keep this simple mark register 2-6 as being changed (volatile) + * by the called function, even though register 6 is saved/nonvolatile. + */ +#define CALL_FMT_0 "=&d" (r2) +#define CALL_FMT_1 "+&d" (r2) +#define CALL_FMT_2 CALL_FMT_1, "+&d" (r3) +#define CALL_FMT_3 CALL_FMT_2, "+&d" (r4) +#define CALL_FMT_4 CALL_FMT_3, "+&d" (r5) +#define CALL_FMT_5 CALL_FMT_4, "+&d" (r6) #define CALL_CLOBBER_5 "0", "1", "14", "cc", "memory" #define CALL_CLOBBER_4 CALL_CLOBBER_5 @@ -105,12 +109,109 @@ " brasl 14,%[_fn]\n" \ " la 15,0(%[_prev])\n" \ : [_prev] "=&a" (prev), CALL_FMT_##nr \ - [_stack] "a" (stack), \ + : [_stack] "a" (stack), \ [_bc] "i" (offsetof(struct stack_frame, back_chain)), \ [_fn] "X" (fn) : CALL_CLOBBER_##nr); \ r2; \ }) +#define CALL_LARGS_0(...) \ + long dummy = 0 +#define CALL_LARGS_1(t1, a1) \ + long arg1 = (long)(t1)(a1) +#define CALL_LARGS_2(t1, a1, t2, a2) \ + CALL_LARGS_1(t1, a1); \ + long arg2 = (long)(t2)(a2) +#define CALL_LARGS_3(t1, a1, t2, a2, t3, a3) \ + CALL_LARGS_2(t1, a1, t2, a2); \ + long arg3 = (long)(t3)(a3) +#define CALL_LARGS_4(t1, a1, t2, a2, t3, a3, t4, a4) \ + CALL_LARGS_3(t1, a1, t2, a2, t3, a3); \ + long arg4 = (long)(t4)(a4) +#define CALL_LARGS_5(t1, a1, t2, a2, t3, a3, t4, a4, t5, a5) \ + CALL_LARGS_4(t1, a1, t2, a2, t3, a3, t4, a4); \ + long arg5 = (long)(t5)(a5) + +#define CALL_REGS_0 \ + register long r2 asm("2") = dummy +#define CALL_REGS_1 \ + register long r2 asm("2") = arg1 +#define CALL_REGS_2 \ + CALL_REGS_1; \ + register long r3 asm("3") = arg2 +#define CALL_REGS_3 \ + CALL_REGS_2; \ + register long r4 asm("4") = arg3 +#define CALL_REGS_4 \ + CALL_REGS_3; \ + register long r5 asm("5") = arg4 +#define CALL_REGS_5 \ + CALL_REGS_4; \ + register long r6 asm("6") = arg5 + +#define CALL_TYPECHECK_0(...) +#define CALL_TYPECHECK_1(t, a, ...) \ + typecheck(t, a) +#define CALL_TYPECHECK_2(t, a, ...) \ + CALL_TYPECHECK_1(__VA_ARGS__); \ + typecheck(t, a) +#define CALL_TYPECHECK_3(t, a, ...) \ + CALL_TYPECHECK_2(__VA_ARGS__); \ + typecheck(t, a) +#define CALL_TYPECHECK_4(t, a, ...) \ + CALL_TYPECHECK_3(__VA_ARGS__); \ + typecheck(t, a) +#define CALL_TYPECHECK_5(t, a, ...) \ + CALL_TYPECHECK_4(__VA_ARGS__); \ + typecheck(t, a) + +#define CALL_PARM_0(...) void +#define CALL_PARM_1(t, a, ...) t +#define CALL_PARM_2(t, a, ...) t, CALL_PARM_1(__VA_ARGS__) +#define CALL_PARM_3(t, a, ...) t, CALL_PARM_2(__VA_ARGS__) +#define CALL_PARM_4(t, a, ...) t, CALL_PARM_3(__VA_ARGS__) +#define CALL_PARM_5(t, a, ...) t, CALL_PARM_4(__VA_ARGS__) +#define CALL_PARM_6(t, a, ...) t, CALL_PARM_5(__VA_ARGS__) + +/* + * Use call_on_stack() to call a function switching to a specified + * stack. Proper sign and zero extension of function arguments is + * done. Usage: + * + * rc = call_on_stack(nr, stack, rettype, fn, t1, a1, t2, a2, ...) + * + * - nr specifies the number of function arguments of fn. + * - stack specifies the stack to be used. + * - fn is the function to be called. + * - rettype is the return type of fn. + * - t1, a1, ... are pairs, where t1 must match the type of the first + * argument of fn, t2 the second, etc. a1 is the corresponding + * first function argument (not name), etc. + */ +#define call_on_stack(nr, stack, rettype, fn, ...) \ +({ \ + rettype (*__fn)(CALL_PARM_##nr(__VA_ARGS__)) = fn; \ + unsigned long frame = current_frame_address(); \ + unsigned long __stack = stack; \ + unsigned long prev; \ + CALL_LARGS_##nr(__VA_ARGS__); \ + CALL_REGS_##nr; \ + \ + CALL_TYPECHECK_##nr(__VA_ARGS__); \ + asm volatile( \ + " lgr %[_prev],15\n" \ + " lg 15,%[_stack]\n" \ + " stg %[_frame],%[_bc](15)\n" \ + " brasl 14,%[_fn]\n" \ + " lgr 15,%[_prev]\n" \ + : [_prev] "=&d" (prev), CALL_FMT_##nr \ + : [_stack] "R" (__stack), \ + [_bc] "i" (offsetof(struct stack_frame, back_chain)), \ + [_frame] "d" (frame), \ + [_fn] "X" (__fn) : CALL_CLOBBER_##nr); \ + (rettype)r2; \ +}) + #define CALL_ON_STACK_NORETURN(fn, stack) \ ({ \ asm volatile( \ diff -u linux-azure-5.4.0/arch/s390/include/asm/timex.h linux-azure-5.4.0/arch/s390/include/asm/timex.h --- linux-azure-5.4.0/arch/s390/include/asm/timex.h +++ linux-azure-5.4.0/arch/s390/include/asm/timex.h @@ -177,6 +177,7 @@ { return (cycles_t) get_tod_clock() >> 2; } +#define get_cycles get_cycles int get_phys_clock(unsigned long *clock); void init_cpu_timer(void); diff -u linux-azure-5.4.0/arch/s390/include/asm/uaccess.h linux-azure-5.4.0/arch/s390/include/asm/uaccess.h --- linux-azure-5.4.0/arch/s390/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/s390/include/asm/uaccess.h @@ -60,54 +60,109 @@ #define INLINE_COPY_TO_USER #endif +unsigned long __must_check +_copy_from_user_key(void *to, const void __user *from, unsigned long n, unsigned long key); + +static __always_inline unsigned long __must_check +copy_from_user_key(void *to, const void __user *from, unsigned long n, unsigned long key) +{ + if (likely(check_copy_size(to, n, false))) + n = _copy_from_user_key(to, from, n, key); + return n; +} + +unsigned long __must_check +_copy_to_user_key(void __user *to, const void *from, unsigned long n, unsigned long key); + +static __always_inline unsigned long __must_check +copy_to_user_key(void __user *to, const void *from, unsigned long n, unsigned long key) +{ + if (likely(check_copy_size(from, n, true))) + n = _copy_to_user_key(to, from, n, key); + return n; +} + +union oac { + unsigned int val; + struct { + struct { + unsigned short key : 4; + unsigned short : 4; + unsigned short as : 2; + unsigned short : 4; + unsigned short k : 1; + unsigned short a : 1; + } oac1; + struct { + unsigned short key : 4; + unsigned short : 4; + unsigned short as : 2; + unsigned short : 4; + unsigned short k : 1; + unsigned short a : 1; + } oac2; + }; +}; + #ifdef CONFIG_HAVE_MARCH_Z10_FEATURES -#define __put_get_user_asm(to, from, size, spec) \ -({ \ - register unsigned long __reg0 asm("0") = spec; \ - int __rc; \ - \ - asm volatile( \ - "0: mvcos %1,%3,%2\n" \ - "1: xr %0,%0\n" \ - "2:\n" \ - ".pushsection .fixup, \"ax\"\n" \ - "3: lhi %0,%5\n" \ - " jg 2b\n" \ - ".popsection\n" \ - EX_TABLE(0b,3b) EX_TABLE(1b,3b) \ - : "=d" (__rc), "+Q" (*(to)) \ - : "d" (size), "Q" (*(from)), \ - "d" (__reg0), "K" (-EFAULT) \ - : "cc"); \ - __rc; \ +#define __put_get_user_asm(to, from, size, oac_spec) \ +({ \ + int __rc; \ + \ + asm volatile( \ + " lr 0,%[spec]\n" \ + "0: mvcos %[_to],%[_from],%[_size]\n" \ + "1: xr %[rc],%[rc]\n" \ + "2:\n" \ + ".pushsection .fixup, \"ax\"\n" \ + "3: lhi %[rc],%[retval]\n" \ + " jg 2b\n" \ + ".popsection\n" \ + EX_TABLE(0b,3b) EX_TABLE(1b,3b) \ + : [rc] "=&d" (__rc), [_to] "+Q" (*(to)) \ + : [_size] "d" (size), [_from] "Q" (*(from)), \ + [retval] "K" (-EFAULT), [spec] "d" (oac_spec.val) \ + : "cc", "0"); \ + __rc; \ }) +#define __put_user_asm(to, from, size) \ + __put_get_user_asm(to, from, size, ((union oac) { \ + .oac1.as = PSW_BITS_AS_PRIMARY, \ + .oac1.a = 1 \ + })) + +#define __get_user_asm(to, from, size) \ + __put_get_user_asm(to, from, size, ((union oac) { \ + .oac2.as = PSW_BITS_AS_PRIMARY, \ + .oac2.a = 1 \ + })) \ + static __always_inline int __put_user_fn(void *x, void __user *ptr, unsigned long size) { - unsigned long spec = 0x010000UL; int rc; switch (size) { case 1: - rc = __put_get_user_asm((unsigned char __user *)ptr, - (unsigned char *)x, - size, spec); + rc = __put_user_asm((unsigned char __user *)ptr, + (unsigned char *)x, + size); break; case 2: - rc = __put_get_user_asm((unsigned short __user *)ptr, - (unsigned short *)x, - size, spec); + rc = __put_user_asm((unsigned short __user *)ptr, + (unsigned short *)x, + size); break; case 4: - rc = __put_get_user_asm((unsigned int __user *)ptr, - (unsigned int *)x, - size, spec); + rc = __put_user_asm((unsigned int __user *)ptr, + (unsigned int *)x, + size); break; case 8: - rc = __put_get_user_asm((unsigned long __user *)ptr, - (unsigned long *)x, - size, spec); + rc = __put_user_asm((unsigned long __user *)ptr, + (unsigned long *)x, + size); break; } return rc; @@ -115,29 +170,28 @@ static __always_inline int __get_user_fn(void *x, const void __user *ptr, unsigned long size) { - unsigned long spec = 0x01UL; int rc; switch (size) { case 1: - rc = __put_get_user_asm((unsigned char *)x, - (unsigned char __user *)ptr, - size, spec); + rc = __get_user_asm((unsigned char *)x, + (unsigned char __user *)ptr, + size); break; case 2: - rc = __put_get_user_asm((unsigned short *)x, - (unsigned short __user *)ptr, - size, spec); + rc = __get_user_asm((unsigned short *)x, + (unsigned short __user *)ptr, + size); break; case 4: - rc = __put_get_user_asm((unsigned int *)x, - (unsigned int __user *)ptr, - size, spec); + rc = __get_user_asm((unsigned int *)x, + (unsigned int __user *)ptr, + size); break; case 8: - rc = __put_get_user_asm((unsigned long *)x, - (unsigned long __user *)ptr, - size, spec); + rc = __get_user_asm((unsigned long *)x, + (unsigned long __user *)ptr, + size); break; } return rc; diff -u linux-azure-5.4.0/arch/s390/include/asm/uv.h linux-azure-5.4.0/arch/s390/include/asm/uv.h --- linux-azure-5.4.0/arch/s390/include/asm/uv.h +++ linux-azure-5.4.0/arch/s390/include/asm/uv.h @@ -18,6 +18,11 @@ #include #include +#define UVC_CC_OK 0 +#define UVC_CC_ERROR 1 +#define UVC_CC_BUSY 2 +#define UVC_CC_PARTIAL 3 + #define UVC_RC_EXECUTED 0x0001 #define UVC_RC_INV_CMD 0x0002 #define UVC_RC_INV_STATE 0x0003 diff -u linux-azure-5.4.0/arch/s390/include/uapi/asm/zcrypt.h linux-azure-5.4.0/arch/s390/include/uapi/asm/zcrypt.h --- linux-azure-5.4.0/arch/s390/include/uapi/asm/zcrypt.h +++ linux-azure-5.4.0/arch/s390/include/uapi/asm/zcrypt.h @@ -36,12 +36,12 @@ * - length(n_modulus) = inputdatalength */ struct ica_rsa_modexpo { - char __user *inputdata; - unsigned int inputdatalength; - char __user *outputdata; - unsigned int outputdatalength; - char __user *b_key; - char __user *n_modulus; + __u8 __user *inputdata; + __u32 inputdatalength; + __u8 __user *outputdata; + __u32 outputdatalength; + __u8 __user *b_key; + __u8 __user *n_modulus; }; /** @@ -59,15 +59,15 @@ * - length(u_mult_inv) = inputdatalength/2 + 8 */ struct ica_rsa_modexpo_crt { - char __user *inputdata; - unsigned int inputdatalength; - char __user *outputdata; - unsigned int outputdatalength; - char __user *bp_key; - char __user *bq_key; - char __user *np_prime; - char __user *nq_prime; - char __user *u_mult_inv; + __u8 __user *inputdata; + __u32 inputdatalength; + __u8 __user *outputdata; + __u32 outputdatalength; + __u8 __user *bp_key; + __u8 __user *bq_key; + __u8 __user *np_prime; + __u8 __user *nq_prime; + __u8 __user *u_mult_inv; }; /** @@ -83,67 +83,67 @@ * key block */ struct CPRBX { - unsigned short cprb_len; /* CPRB length 220 */ - unsigned char cprb_ver_id; /* CPRB version id. 0x02 */ - unsigned char pad_000[3]; /* Alignment pad bytes */ - unsigned char func_id[2]; /* function id 0x5432 */ - unsigned char cprb_flags[4]; /* Flags */ - unsigned int req_parml; /* request parameter buffer len */ - unsigned int req_datal; /* request data buffer */ - unsigned int rpl_msgbl; /* reply message block length */ - unsigned int rpld_parml; /* replied parameter block len */ - unsigned int rpl_datal; /* reply data block len */ - unsigned int rpld_datal; /* replied data block len */ - unsigned int req_extbl; /* request extension block len */ - unsigned char pad_001[4]; /* reserved */ - unsigned int rpld_extbl; /* replied extension block len */ - unsigned char padx000[16 - sizeof(char *)]; - unsigned char *req_parmb; /* request parm block 'address' */ - unsigned char padx001[16 - sizeof(char *)]; - unsigned char *req_datab; /* request data block 'address' */ - unsigned char padx002[16 - sizeof(char *)]; - unsigned char *rpl_parmb; /* reply parm block 'address' */ - unsigned char padx003[16 - sizeof(char *)]; - unsigned char *rpl_datab; /* reply data block 'address' */ - unsigned char padx004[16 - sizeof(char *)]; - unsigned char *req_extb; /* request extension block 'addr'*/ - unsigned char padx005[16 - sizeof(char *)]; - unsigned char *rpl_extb; /* reply extension block 'address'*/ - unsigned short ccp_rtcode; /* server return code */ - unsigned short ccp_rscode; /* server reason code */ - unsigned int mac_data_len; /* Mac Data Length */ - unsigned char logon_id[8]; /* Logon Identifier */ - unsigned char mac_value[8]; /* Mac Value */ - unsigned char mac_content_flgs;/* Mac content flag byte */ - unsigned char pad_002; /* Alignment */ - unsigned short domain; /* Domain */ - unsigned char usage_domain[4];/* Usage domain */ - unsigned char cntrl_domain[4];/* Control domain */ - unsigned char S390enf_mask[4];/* S/390 enforcement mask */ - unsigned char pad_004[36]; /* reserved */ + __u16 cprb_len; /* CPRB length 220 */ + __u8 cprb_ver_id; /* CPRB version id. 0x02 */ + __u8 pad_000[3]; /* Alignment pad bytes */ + __u8 func_id[2]; /* function id 0x5432 */ + __u8 cprb_flags[4]; /* Flags */ + __u32 req_parml; /* request parameter buffer len */ + __u32 req_datal; /* request data buffer */ + __u32 rpl_msgbl; /* reply message block length */ + __u32 rpld_parml; /* replied parameter block len */ + __u32 rpl_datal; /* reply data block len */ + __u32 rpld_datal; /* replied data block len */ + __u32 req_extbl; /* request extension block len */ + __u8 pad_001[4]; /* reserved */ + __u32 rpld_extbl; /* replied extension block len */ + __u8 padx000[16 - sizeof(__u8 *)]; + __u8 __user *req_parmb; /* request parm block 'address' */ + __u8 padx001[16 - sizeof(__u8 *)]; + __u8 __user *req_datab; /* request data block 'address' */ + __u8 padx002[16 - sizeof(__u8 *)]; + __u8 __user *rpl_parmb; /* reply parm block 'address' */ + __u8 padx003[16 - sizeof(__u8 *)]; + __u8 __user *rpl_datab; /* reply data block 'address' */ + __u8 padx004[16 - sizeof(__u8 *)]; + __u8 __user *req_extb; /* request extension block 'addr'*/ + __u8 padx005[16 - sizeof(__u8 *)]; + __u8 __user *rpl_extb; /* reply extension block 'address'*/ + __u16 ccp_rtcode; /* server return code */ + __u16 ccp_rscode; /* server reason code */ + __u32 mac_data_len; /* Mac Data Length */ + __u8 logon_id[8]; /* Logon Identifier */ + __u8 mac_value[8]; /* Mac Value */ + __u8 mac_content_flgs; /* Mac content flag byte */ + __u8 pad_002; /* Alignment */ + __u16 domain; /* Domain */ + __u8 usage_domain[4]; /* Usage domain */ + __u8 cntrl_domain[4]; /* Control domain */ + __u8 S390enf_mask[4]; /* S/390 enforcement mask */ + __u8 pad_004[36]; /* reserved */ } __attribute__((packed)); /** * xcRB */ struct ica_xcRB { - unsigned short agent_ID; - unsigned int user_defined; - unsigned short request_ID; - unsigned int request_control_blk_length; - unsigned char padding1[16 - sizeof(char *)]; - char __user *request_control_blk_addr; - unsigned int request_data_length; - char padding2[16 - sizeof(char *)]; - char __user *request_data_address; - unsigned int reply_control_blk_length; - char padding3[16 - sizeof(char *)]; - char __user *reply_control_blk_addr; - unsigned int reply_data_length; - char padding4[16 - sizeof(char *)]; - char __user *reply_data_addr; - unsigned short priority_window; - unsigned int status; + __u16 agent_ID; + __u32 user_defined; + __u16 request_ID; + __u32 request_control_blk_length; + __u8 _padding1[16 - sizeof(__u8 *)]; + __u8 __user *request_control_blk_addr; + __u32 request_data_length; + __u8 _padding2[16 - sizeof(__u8 *)]; + __u8 __user *request_data_address; + __u32 reply_control_blk_length; + __u8 _padding3[16 - sizeof(__u8 *)]; + __u8 __user *reply_control_blk_addr; + __u32 reply_data_length; + __u8 __padding4[16 - sizeof(__u8 *)]; + __u8 __user *reply_data_addr; + __u16 priority_window; + __u32 status; } __attribute__((packed)); /** diff -u linux-azure-5.4.0/arch/s390/kernel/debug.c linux-azure-5.4.0/arch/s390/kernel/debug.c --- linux-azure-5.4.0/arch/s390/kernel/debug.c +++ linux-azure-5.4.0/arch/s390/kernel/debug.c @@ -327,24 +327,6 @@ goto out; rc->mode = mode & ~S_IFMT; - - /* create root directory */ - rc->debugfs_root_entry = debugfs_create_dir(rc->name, - debug_debugfs_root_entry); - - /* append new element to linked list */ - if (!debug_area_first) { - /* first element in list */ - debug_area_first = rc; - rc->prev = NULL; - } else { - /* append element to end of list */ - debug_area_last->next = rc; - rc->prev = debug_area_last; - } - debug_area_last = rc; - rc->next = NULL; - refcount_set(&rc->ref_count, 1); out: return rc; @@ -404,27 +386,10 @@ */ static void debug_info_put(debug_info_t *db_info) { - int i; - if (!db_info) return; - if (refcount_dec_and_test(&db_info->ref_count)) { - for (i = 0; i < DEBUG_MAX_VIEWS; i++) { - if (!db_info->views[i]) - continue; - debugfs_remove(db_info->debugfs_entries[i]); - } - debugfs_remove(db_info->debugfs_root_entry); - if (db_info == debug_area_first) - debug_area_first = db_info->next; - if (db_info == debug_area_last) - debug_area_last = db_info->prev; - if (db_info->prev) - db_info->prev->next = db_info->next; - if (db_info->next) - db_info->next->prev = db_info->prev; + if (refcount_dec_and_test(&db_info->ref_count)) debug_info_free(db_info); - } } /* @@ -648,6 +613,31 @@ return 0; /* success */ } +/* Create debugfs entries and add to internal list. */ +static void _debug_register(debug_info_t *id) +{ + /* create root directory */ + id->debugfs_root_entry = debugfs_create_dir(id->name, + debug_debugfs_root_entry); + + /* append new element to linked list */ + if (!debug_area_first) { + /* first element in list */ + debug_area_first = id; + id->prev = NULL; + } else { + /* append element to end of list */ + debug_area_last->next = id; + id->prev = debug_area_last; + } + debug_area_last = id; + id->next = NULL; + + debug_register_view(id, &debug_level_view); + debug_register_view(id, &debug_flush_view); + debug_register_view(id, &debug_pages_view); +} + /** * debug_register_mode() - creates and initializes debug area. * @@ -677,19 +667,16 @@ if ((uid != 0) || (gid != 0)) pr_warn("Root becomes the owner of all s390dbf files in sysfs\n"); BUG_ON(!initialized); - mutex_lock(&debug_mutex); /* create new debug_info */ rc = debug_info_create(name, pages_per_area, nr_areas, buf_size, mode); - if (!rc) - goto out; - debug_register_view(rc, &debug_level_view); - debug_register_view(rc, &debug_flush_view); - debug_register_view(rc, &debug_pages_view); -out: - if (!rc) + if (rc) { + mutex_lock(&debug_mutex); + _debug_register(rc); + mutex_unlock(&debug_mutex); + } else { pr_err("Registering debug feature %s failed\n", name); - mutex_unlock(&debug_mutex); + } return rc; } EXPORT_SYMBOL(debug_register_mode); @@ -718,6 +705,27 @@ } EXPORT_SYMBOL(debug_register); +/* Remove debugfs entries and remove from internal list. */ +static void _debug_unregister(debug_info_t *id) +{ + int i; + + for (i = 0; i < DEBUG_MAX_VIEWS; i++) { + if (!id->views[i]) + continue; + debugfs_remove(id->debugfs_entries[i]); + } + debugfs_remove(id->debugfs_root_entry); + if (id == debug_area_first) + debug_area_first = id->next; + if (id == debug_area_last) + debug_area_last = id->prev; + if (id->prev) + id->prev->next = id->next; + if (id->next) + id->next->prev = id->prev; +} + /** * debug_unregister() - give back debug area. * @@ -731,8 +739,10 @@ if (!id) return; mutex_lock(&debug_mutex); - debug_info_put(id); + _debug_unregister(id); mutex_unlock(&debug_mutex); + + debug_info_put(id); } EXPORT_SYMBOL(debug_unregister); diff -u linux-azure-5.4.0/arch/s390/kernel/early.c linux-azure-5.4.0/arch/s390/kernel/early.c --- linux-azure-5.4.0/arch/s390/kernel/early.c +++ linux-azure-5.4.0/arch/s390/kernel/early.c @@ -252,6 +252,10 @@ clock_comparator_max = -1ULL >> 1; __ctl_set_bit(0, 53); } + if (IS_ENABLED(CONFIG_PCI) && test_facility(153)) { + S390_lowcore.machine_flags |= MACHINE_FLAG_PCI_MIO; + /* the control bit is set during PCI initialization */ + } } static inline void save_vector_registers(void) diff -u linux-azure-5.4.0/arch/s390/kernel/ftrace.c linux-azure-5.4.0/arch/s390/kernel/ftrace.c --- linux-azure-5.4.0/arch/s390/kernel/ftrace.c +++ linux-azure-5.4.0/arch/s390/kernel/ftrace.c @@ -57,6 +57,7 @@ * > brasl %r0,ftrace_caller # offset 0 */ +void *ftrace_func __read_mostly = ftrace_stub; unsigned long ftrace_plt; static inline void ftrace_generate_orig_insn(struct ftrace_insn *insn) @@ -136,6 +137,7 @@ int ftrace_update_ftrace_func(ftrace_func_t func) { + ftrace_func = func; return 0; } diff -u linux-azure-5.4.0/arch/s390/kernel/ipl.c linux-azure-5.4.0/arch/s390/kernel/ipl.c --- linux-azure-5.4.0/arch/s390/kernel/ipl.c +++ linux-azure-5.4.0/arch/s390/kernel/ipl.c @@ -1992,7 +1992,7 @@ buf = vzalloc(report->size); if (!buf) - return ERR_PTR(-ENOMEM); + goto out; ptr = buf; memcpy(ptr, report->ipib, report->ipib->hdr.len); @@ -2031,6 +2031,7 @@ } BUG_ON(ptr > buf + report->size); +out: return buf; } diff -u linux-azure-5.4.0/arch/s390/kernel/machine_kexec_file.c linux-azure-5.4.0/arch/s390/kernel/machine_kexec_file.c --- linux-azure-5.4.0/arch/s390/kernel/machine_kexec_file.c +++ linux-azure-5.4.0/arch/s390/kernel/machine_kexec_file.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -28,6 +29,7 @@ const unsigned long marker_len = sizeof(MODULE_SIG_STRING) - 1; struct module_signature *ms; unsigned long sig_len; + int ret; /* Skip signature verification when not secure IPLed. */ if (!ipl_secure_flag) @@ -62,11 +64,18 @@ return -EBADMSG; } - return verify_pkcs7_signature(kernel, kernel_len, - kernel + kernel_len, sig_len, - VERIFY_USE_PLATFORM_KEYRING, - VERIFYING_MODULE_SIGNATURE, - NULL, NULL); + ret = verify_pkcs7_signature(kernel, kernel_len, + kernel + kernel_len, sig_len, + VERIFY_USE_SECONDARY_KEYRING, + VERIFYING_MODULE_SIGNATURE, + NULL, NULL); + if (ret == -ENOKEY && IS_ENABLED(CONFIG_INTEGRITY_PLATFORM_KEYRING)) + ret = verify_pkcs7_signature(kernel, kernel_len, + kernel + kernel_len, sig_len, + VERIFY_USE_PLATFORM_KEYRING, + VERIFYING_MODULE_SIGNATURE, + NULL, NULL); + return ret; } #endif /* CONFIG_KEXEC_SIG */ @@ -170,6 +179,7 @@ struct kexec_buf buf; unsigned long addr; void *ptr, *end; + int ret; buf.image = image; @@ -199,9 +209,13 @@ ptr += len; } + ret = -ENOMEM; buf.buffer = ipl_report_finish(data->report); + if (!buf.buffer) + goto out; buf.bufsz = data->report->size; buf.memsz = buf.bufsz; + image->arch.ipl_buf = buf.buffer; data->memsz += buf.memsz; @@ -209,7 +223,9 @@ data->kernel_buf + offsetof(struct lowcore, ipl_parmblock_ptr); *lc_ipl_parmblock_ptr = (__u32)buf.mem; - return kexec_add_buffer(&buf); + ret = kexec_add_buffer(&buf); +out: + return ret; } void *kexec_file_add_components(struct kimage *image, @@ -269,6 +285,7 @@ { Elf_Rela *relas; int i, r_type; + int ret; relas = (void *)pi->ehdr + relsec->sh_offset; @@ -303,7 +320,11 @@ addr = section->sh_addr + relas[i].r_offset; r_type = ELF64_R_TYPE(relas[i].r_info); - arch_kexec_do_relocs(r_type, loc, val, addr); + ret = arch_kexec_do_relocs(r_type, loc, val, addr); + if (ret) { + pr_err("Unknown rela relocation: %d\n", r_type); + return -ENOEXEC; + } } return 0; } @@ -323,0 +345,8 @@ + +int arch_kimage_file_post_load_cleanup(struct kimage *image) +{ + vfree(image->arch.ipl_buf); + image->arch.ipl_buf = NULL; + + return kexec_image_post_load_cleanup_default(image); +} diff -u linux-azure-5.4.0/arch/s390/kernel/mcount.S linux-azure-5.4.0/arch/s390/kernel/mcount.S --- linux-azure-5.4.0/arch/s390/kernel/mcount.S +++ linux-azure-5.4.0/arch/s390/kernel/mcount.S @@ -67,13 +67,13 @@ #ifdef CONFIG_HAVE_MARCH_Z196_FEATURES aghik %r2,%r0,-MCOUNT_INSN_SIZE lgrl %r4,function_trace_op - lgrl %r1,ftrace_trace_function + lgrl %r1,ftrace_func #else lgr %r2,%r0 aghi %r2,-MCOUNT_INSN_SIZE larl %r4,function_trace_op lg %r4,0(%r4) - larl %r1,ftrace_trace_function + larl %r1,ftrace_func lg %r1,0(%r1) #endif lgr %r3,%r14 diff -u linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf.c linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf.c --- linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf.c +++ linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf.c @@ -292,6 +292,26 @@ return err; } +/* Events CPU_CYLCES and INSTRUCTIONS can be submitted with two different + * attribute::type values: + * - PERF_TYPE_HARDWARE: + * - pmu->type: + * Handle both type of invocations identical. They address the same hardware. + * The result is different when event modifiers exclude_kernel and/or + * exclude_user are also set. + */ +static int cpumf_pmu_event_type(struct perf_event *event) +{ + u64 ev = event->attr.config; + + if (cpumf_generic_events_basic[PERF_COUNT_HW_CPU_CYCLES] == ev || + cpumf_generic_events_basic[PERF_COUNT_HW_INSTRUCTIONS] == ev || + cpumf_generic_events_user[PERF_COUNT_HW_CPU_CYCLES] == ev || + cpumf_generic_events_user[PERF_COUNT_HW_INSTRUCTIONS] == ev) + return PERF_TYPE_HARDWARE; + return PERF_TYPE_RAW; +} + static int cpumf_pmu_event_init(struct perf_event *event) { unsigned int type = event->attr.type; @@ -301,7 +321,7 @@ err = __hw_perf_event_init(event, type); else if (event->pmu->type == type) /* Registered as unknown PMU */ - err = __hw_perf_event_init(event, PERF_TYPE_RAW); + err = __hw_perf_event_init(event, cpumf_pmu_event_type(event)); else return -ENOENT; diff -u linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_diag.c linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_diag.c --- linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_diag.c +++ linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_diag.c @@ -308,7 +308,7 @@ case CPUMF_CTR_SET_CRYPTO: if (info->csvn >= 1 && info->csvn <= 5) ctrset_size = 16; - else if (info->csvn == 6) + else if (info->csvn == 6 || info->csvn == 7) ctrset_size = 20; break; case CPUMF_CTR_SET_EXT: @@ -318,7 +318,7 @@ ctrset_size = 48; else if (info->csvn >= 3 && info->csvn <= 5) ctrset_size = 128; - else if (info->csvn == 6) + else if (info->csvn == 6 || info->csvn == 7) ctrset_size = 160; break; case CPUMF_CTR_SET_MT_DIAG: diff -u linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_events.c linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_events.c --- linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_events.c +++ linux-azure-5.4.0/arch/s390/kernel/perf_cpum_cf_events.c @@ -295,6 +295,76 @@ CPUMF_EVENT_ATTR(cf_z15, DFLT_CCFINISH, 0x00109); CPUMF_EVENT_ATTR(cf_z15, MT_DIAG_CYCLES_ONE_THR_ACTIVE, 0x01c0); CPUMF_EVENT_ATTR(cf_z15, MT_DIAG_CYCLES_TWO_THR_ACTIVE, 0x01c1); +CPUMF_EVENT_ATTR(cf_z16, L1D_RO_EXCL_WRITES, 0x0080); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_WRITES, 0x0081); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_MISSES, 0x0082); +CPUMF_EVENT_ATTR(cf_z16, CRSTE_1MB_WRITES, 0x0083); +CPUMF_EVENT_ATTR(cf_z16, DTLB2_GPAGE_WRITES, 0x0084); +CPUMF_EVENT_ATTR(cf_z16, ITLB2_WRITES, 0x0086); +CPUMF_EVENT_ATTR(cf_z16, ITLB2_MISSES, 0x0087); +CPUMF_EVENT_ATTR(cf_z16, TLB2_PTE_WRITES, 0x0089); +CPUMF_EVENT_ATTR(cf_z16, TLB2_CRSTE_WRITES, 0x008a); +CPUMF_EVENT_ATTR(cf_z16, TLB2_ENGINES_BUSY, 0x008b); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TEND, 0x008c); +CPUMF_EVENT_ATTR(cf_z16, TX_NC_TEND, 0x008d); +CPUMF_EVENT_ATTR(cf_z16, L1C_TLB2_MISSES, 0x008f); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ, 0x0091); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_IV, 0x0092); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_CHIP_HIT, 0x0093); +CPUMF_EVENT_ATTR(cf_z16, DCW_REQ_DRAWER_HIT, 0x0094); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP, 0x0095); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_IV, 0x0096); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_CHIP_HIT, 0x0097); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_DRAWER_HIT, 0x0098); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_MODULE, 0x0099); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_DRAWER, 0x009a); +CPUMF_EVENT_ATTR(cf_z16, DCW_OFF_DRAWER, 0x009b); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_CHIP_MEMORY, 0x009c); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_MODULE_MEMORY, 0x009d); +CPUMF_EVENT_ATTR(cf_z16, DCW_ON_DRAWER_MEMORY, 0x009e); +CPUMF_EVENT_ATTR(cf_z16, DCW_OFF_DRAWER_MEMORY, 0x009f); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_IV, 0x00a0); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_CHIP_HIT, 0x00a1); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_MODULE_DRAWER_HIT, 0x00a2); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_IV, 0x00a3); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_CHIP_HIT, 0x00a4); +CPUMF_EVENT_ATTR(cf_z16, IDCW_ON_DRAWER_DRAWER_HIT, 0x00a5); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_IV, 0x00a6); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_CHIP_HIT, 0x00a7); +CPUMF_EVENT_ATTR(cf_z16, IDCW_OFF_DRAWER_DRAWER_HIT, 0x00a8); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ, 0x00a9); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_IV, 0x00aa); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_CHIP_HIT, 0x00ab); +CPUMF_EVENT_ATTR(cf_z16, ICW_REQ_DRAWER_HIT, 0x00ac); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP, 0x00ad); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_IV, 0x00ae); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_CHIP_HIT, 0x00af); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_DRAWER_HIT, 0x00b0); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_MODULE, 0x00b1); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_DRAWER, 0x00b2); +CPUMF_EVENT_ATTR(cf_z16, ICW_OFF_DRAWER, 0x00b3); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_CHIP_MEMORY, 0x00b4); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_MODULE_MEMORY, 0x00b5); +CPUMF_EVENT_ATTR(cf_z16, ICW_ON_DRAWER_MEMORY, 0x00b6); +CPUMF_EVENT_ATTR(cf_z16, ICW_OFF_DRAWER_MEMORY, 0x00b7); +CPUMF_EVENT_ATTR(cf_z16, BCD_DFP_EXECUTION_SLOTS, 0x00e0); +CPUMF_EVENT_ATTR(cf_z16, VX_BCD_EXECUTION_SLOTS, 0x00e1); +CPUMF_EVENT_ATTR(cf_z16, DECIMAL_INSTRUCTIONS, 0x00e2); +CPUMF_EVENT_ATTR(cf_z16, LAST_HOST_TRANSLATIONS, 0x00e8); +CPUMF_EVENT_ATTR(cf_z16, TX_NC_TABORT, 0x00f4); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TABORT_NO_SPECIAL, 0x00f5); +CPUMF_EVENT_ATTR(cf_z16, TX_C_TABORT_SPECIAL, 0x00f6); +CPUMF_EVENT_ATTR(cf_z16, DFLT_ACCESS, 0x00f8); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CYCLES, 0x00fd); +CPUMF_EVENT_ATTR(cf_z16, SORTL, 0x0100); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CC, 0x0109); +CPUMF_EVENT_ATTR(cf_z16, DFLT_CCFINISH, 0x010a); +CPUMF_EVENT_ATTR(cf_z16, NNPA_INVOCATIONS, 0x010b); +CPUMF_EVENT_ATTR(cf_z16, NNPA_COMPLETIONS, 0x010c); +CPUMF_EVENT_ATTR(cf_z16, NNPA_WAIT_LOCK, 0x010d); +CPUMF_EVENT_ATTR(cf_z16, NNPA_HOLD_LOCK, 0x010e); +CPUMF_EVENT_ATTR(cf_z16, MT_DIAG_CYCLES_ONE_THR_ACTIVE, 0x01c0); +CPUMF_EVENT_ATTR(cf_z16, MT_DIAG_CYCLES_TWO_THR_ACTIVE, 0x01c1); static struct attribute *cpumcf_fvn1_pmu_event_attr[] __initdata = { CPUMF_EVENT_PTR(cf_fvn1, CPU_CYCLES), @@ -344,7 +414,7 @@ NULL, }; -static struct attribute *cpumcf_svn_6_pmu_event_attr[] __initdata = { +static struct attribute *cpumcf_svn_67_pmu_event_attr[] __initdata = { CPUMF_EVENT_PTR(cf_svn_12345, PRNG_FUNCTIONS), CPUMF_EVENT_PTR(cf_svn_12345, PRNG_CYCLES), CPUMF_EVENT_PTR(cf_svn_12345, PRNG_BLOCKED_FUNCTIONS), @@ -635,6 +705,80 @@ NULL, }; +static struct attribute *cpumcf_z16_pmu_event_attr[] __initdata = { + CPUMF_EVENT_PTR(cf_z16, L1D_RO_EXCL_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, CRSTE_1MB_WRITES), + CPUMF_EVENT_PTR(cf_z16, DTLB2_GPAGE_WRITES), + CPUMF_EVENT_PTR(cf_z16, ITLB2_WRITES), + CPUMF_EVENT_PTR(cf_z16, ITLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, TLB2_PTE_WRITES), + CPUMF_EVENT_PTR(cf_z16, TLB2_CRSTE_WRITES), + CPUMF_EVENT_PTR(cf_z16, TLB2_ENGINES_BUSY), + CPUMF_EVENT_PTR(cf_z16, TX_C_TEND), + CPUMF_EVENT_PTR(cf_z16, TX_NC_TEND), + CPUMF_EVENT_PTR(cf_z16, L1C_TLB2_MISSES), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_IV), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_REQ_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_IV), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_MODULE), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_DRAWER), + CPUMF_EVENT_PTR(cf_z16, DCW_OFF_DRAWER), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_CHIP_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_MODULE_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_ON_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, DCW_OFF_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_MODULE_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_ON_DRAWER_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_IV), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, IDCW_OFF_DRAWER_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_IV), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_REQ_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_IV), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_CHIP_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_DRAWER_HIT), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_MODULE), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_DRAWER), + CPUMF_EVENT_PTR(cf_z16, ICW_OFF_DRAWER), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_CHIP_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_MODULE_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_ON_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, ICW_OFF_DRAWER_MEMORY), + CPUMF_EVENT_PTR(cf_z16, BCD_DFP_EXECUTION_SLOTS), + CPUMF_EVENT_PTR(cf_z16, VX_BCD_EXECUTION_SLOTS), + CPUMF_EVENT_PTR(cf_z16, DECIMAL_INSTRUCTIONS), + CPUMF_EVENT_PTR(cf_z16, LAST_HOST_TRANSLATIONS), + CPUMF_EVENT_PTR(cf_z16, TX_NC_TABORT), + CPUMF_EVENT_PTR(cf_z16, TX_C_TABORT_NO_SPECIAL), + CPUMF_EVENT_PTR(cf_z16, TX_C_TABORT_SPECIAL), + CPUMF_EVENT_PTR(cf_z16, DFLT_ACCESS), + CPUMF_EVENT_PTR(cf_z16, DFLT_CYCLES), + CPUMF_EVENT_PTR(cf_z16, SORTL), + CPUMF_EVENT_PTR(cf_z16, DFLT_CC), + CPUMF_EVENT_PTR(cf_z16, DFLT_CCFINISH), + CPUMF_EVENT_PTR(cf_z16, NNPA_INVOCATIONS), + CPUMF_EVENT_PTR(cf_z16, NNPA_COMPLETIONS), + CPUMF_EVENT_PTR(cf_z16, NNPA_WAIT_LOCK), + CPUMF_EVENT_PTR(cf_z16, NNPA_HOLD_LOCK), + CPUMF_EVENT_PTR(cf_z16, MT_DIAG_CYCLES_ONE_THR_ACTIVE), + CPUMF_EVENT_PTR(cf_z16, MT_DIAG_CYCLES_TWO_THR_ACTIVE), + NULL, +}; + /* END: CPUM_CF COUNTER DEFINITIONS ===================================== */ static struct attribute_group cpumcf_pmu_events_group = { @@ -715,8 +859,8 @@ case 1 ... 5: csvn = cpumcf_svn_12345_pmu_event_attr; break; - case 6: - csvn = cpumcf_svn_6_pmu_event_attr; + case 6 ... 7: + csvn = cpumcf_svn_67_pmu_event_attr; break; default: csvn = none; @@ -750,4 +894,8 @@ model = cpumcf_z15_pmu_event_attr; break; + case 0x3931: + case 0x3932: + model = cpumcf_z16_pmu_event_attr; + break; default: model = none; diff -u linux-azure-5.4.0/arch/s390/kernel/perf_cpum_sf.c linux-azure-5.4.0/arch/s390/kernel/perf_cpum_sf.c --- linux-azure-5.4.0/arch/s390/kernel/perf_cpum_sf.c +++ linux-azure-5.4.0/arch/s390/kernel/perf_cpum_sf.c @@ -1182,7 +1182,7 @@ sample = (struct hws_basic_entry *) *sdbt; while ((unsigned long *) sample < (unsigned long *) te) { /* Check for an empty sample */ - if (!sample->def) + if (!sample->def || sample->LS) break; /* Update perf event period */ diff -u linux-azure-5.4.0/arch/s390/kernel/process.c linux-azure-5.4.0/arch/s390/kernel/process.c --- linux-azure-5.4.0/arch/s390/kernel/process.c +++ linux-azure-5.4.0/arch/s390/kernel/process.c @@ -76,6 +76,18 @@ memcpy(dst, src, arch_task_struct_size); dst->thread.fpu.regs = dst->thread.fpu.fprs; + + /* + * Don't transfer over the runtime instrumentation or the guarded + * storage control block pointers. These fields are cleared here instead + * of in copy_thread() to avoid premature freeing of associated memory + * on fork() failure. Wait to clear the RI flag because ->stack still + * refers to the source thread. + */ + dst->thread.ri_cb = NULL; + dst->thread.gs_cb = NULL; + dst->thread.gs_bc_cb = NULL; + return 0; } @@ -133,13 +145,11 @@ frame->childregs.flags = 0; if (new_stackp) frame->childregs.gprs[15] = new_stackp; - - /* Don't copy runtime instrumentation info */ - p->thread.ri_cb = NULL; + /* + * Clear the runtime instrumentation flag after the above childregs + * copy. The CB pointer was already cleared in arch_dup_task_struct(). + */ frame->childregs.psw.mask &= ~PSW_MASK_RI; - /* Don't copy guarded storage control block */ - p->thread.gs_cb = NULL; - p->thread.gs_bc_cb = NULL; /* Set a new TLS ? */ if (clone_flags & CLONE_SETTLS) { diff -u linux-azure-5.4.0/arch/s390/kernel/setup.c linux-azure-5.4.0/arch/s390/kernel/setup.c --- linux-azure-5.4.0/arch/s390/kernel/setup.c +++ linux-azure-5.4.0/arch/s390/kernel/setup.c @@ -161,7 +161,7 @@ else if (CONSOLE_IS_3270) add_preferred_console("tty3270", 0, NULL); else if (CONSOLE_IS_VT220) - add_preferred_console("ttyS", 1, NULL); + add_preferred_console("ttysclp", 0, NULL); else if (CONSOLE_IS_HVC) add_preferred_console("hvc", 0, NULL); } @@ -843,9 +843,6 @@ storage_key_init_range(reg->base, reg->base + reg->size); } psw_set_key(PAGE_DEFAULT_KEY); - - /* Only cosmetics */ - memblock_enforce_memory_limit(memblock_end_of_DRAM()); } /* @@ -1010,6 +1007,11 @@ if (stsi(vmms, 3, 2, 2) == 0 && vmms->count) add_device_randomness(&vmms->vm, sizeof(vmms->vm[0]) * vmms->count); memblock_free((unsigned long) vmms, PAGE_SIZE); + +#ifdef CONFIG_ARCH_RANDOM + if (cpacf_query_func(CPACF_PRNO, CPACF_PRNO_TRNG)) + static_branch_enable(&s390_arch_random_available); +#endif } /* @@ -1036,8 +1038,7 @@ { union diag318_info diag318_info = { .cpnc = CPNC_LINUX, - .cpvc_linux = 0, - .cpvc_distro = {0}, + .cpvc = 0, }; if (!sclp.has_diag318) diff -u linux-azure-5.4.0/arch/s390/kernel/uv.c linux-azure-5.4.0/arch/s390/kernel/uv.c --- linux-azure-5.4.0/arch/s390/kernel/uv.c +++ linux-azure-5.4.0/arch/s390/kernel/uv.c @@ -162,7 +162,7 @@ { pte_t entry = READ_ONCE(*ptep); struct page *page; - int expected, rc = 0; + int expected, cc = 0; if (!pte_present(entry)) return -ENXIO; @@ -178,12 +178,25 @@ if (!page_ref_freeze(page, expected)) return -EBUSY; set_bit(PG_arch_1, &page->flags); - rc = uv_call(0, (u64)uvcb); + /* + * If the UVC does not succeed or fail immediately, we don't want to + * loop for long, or we might get stall notifications. + * On the other hand, this is a complex scenario and we are holding a lot of + * locks, so we can't easily sleep and reschedule. We try only once, + * and if the UVC returned busy or partial completion, we return + * -EAGAIN and we let the callers deal with it. + */ + cc = __uv_call(0, (u64)uvcb); page_ref_unfreeze(page, expected); - /* Return -ENXIO if the page was not mapped, -EINVAL otherwise */ - if (rc) - rc = uvcb->rc == 0x10a ? -ENXIO : -EINVAL; - return rc; + /* + * Return -ENXIO if the page was not mapped, -EINVAL for other errors. + * If busy or partially completed, return -EAGAIN. + */ + if (cc == UVC_CC_OK) + return 0; + else if (cc == UVC_CC_BUSY || cc == UVC_CC_PARTIAL) + return -EAGAIN; + return uvcb->rc == 0x10a ? -ENXIO : -EINVAL; } /* @@ -236,6 +249,10 @@ up_read(&gmap->mm->mmap_sem); if (rc == -EAGAIN) { + /* + * If we are here because the UVC returned busy or partial + * completion, this is just a useless check, but it is safe. + */ wait_on_page_writeback(page); } else if (rc == -EBUSY) { /* @@ -382,6 +399,41 @@ .attrs = uv_query_attrs, }; +static ssize_t uv_is_prot_virt_guest(struct kobject *kobj, + struct kobj_attribute *attr, char *page) +{ + int val = 0; + +#ifdef CONFIG_PROTECTED_VIRTUALIZATION_GUEST + val = prot_virt_guest; +#endif + return scnprintf(page, PAGE_SIZE, "%d\n", val); +} + +static ssize_t uv_is_prot_virt_host(struct kobject *kobj, + struct kobj_attribute *attr, char *page) +{ + int val = 0; + +#if IS_ENABLED(CONFIG_KVM) + val = prot_virt_host; +#endif + + return scnprintf(page, PAGE_SIZE, "%d\n", val); +} + +static struct kobj_attribute uv_prot_virt_guest = + __ATTR(prot_virt_guest, 0444, uv_is_prot_virt_guest, NULL); + +static struct kobj_attribute uv_prot_virt_host = + __ATTR(prot_virt_host, 0444, uv_is_prot_virt_host, NULL); + +static const struct attribute *uv_prot_virt_attrs[] = { + &uv_prot_virt_guest.attr, + &uv_prot_virt_host.attr, + NULL, +}; + static struct kset *uv_query_kset; static struct kobject *uv_kobj; @@ -396,15 +448,21 @@ if (!uv_kobj) return -ENOMEM; + rc = sysfs_create_files(uv_kobj, uv_prot_virt_attrs); + if (rc) + goto out_kobj; + uv_query_kset = kset_create_and_add("query", NULL, uv_kobj); if (!uv_query_kset) - goto out_kobj; + goto out_ind_files; rc = sysfs_create_group(&uv_query_kset->kobj, &uv_query_attr_group); if (!rc) return 0; kset_unregister(uv_query_kset); +out_ind_files: + sysfs_remove_files(uv_kobj, uv_prot_virt_attrs); out_kobj: kobject_del(uv_kobj); kobject_put(uv_kobj); diff -u linux-azure-5.4.0/arch/s390/kvm/gaccess.h linux-azure-5.4.0/arch/s390/kvm/gaccess.h --- linux-azure-5.4.0/arch/s390/kvm/gaccess.h +++ linux-azure-5.4.0/arch/s390/kvm/gaccess.h @@ -186,24 +186,34 @@ GACC_IFETCH, }; -int guest_translate_address(struct kvm_vcpu *vcpu, unsigned long gva, - u8 ar, unsigned long *gpa, enum gacc_mode mode); +int guest_translate_address_with_key(struct kvm_vcpu *vcpu, unsigned long gva, u8 ar, + unsigned long *gpa, enum gacc_mode mode, + u8 access_key); + int check_gva_range(struct kvm_vcpu *vcpu, unsigned long gva, u8 ar, - unsigned long length, enum gacc_mode mode); + unsigned long length, enum gacc_mode mode, u8 access_key); + +int check_gpa_range(struct kvm *kvm, unsigned long gpa, unsigned long length, + enum gacc_mode mode, u8 access_key); + +int access_guest_abs_with_key(struct kvm *kvm, gpa_t gpa, void *data, + unsigned long len, enum gacc_mode mode, u8 access_key); -int access_guest(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, void *data, - unsigned long len, enum gacc_mode mode); +int access_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, + void *data, unsigned long len, enum gacc_mode mode, + u8 access_key); int access_guest_real(struct kvm_vcpu *vcpu, unsigned long gra, void *data, unsigned long len, enum gacc_mode mode); /** - * write_guest - copy data from kernel space to guest space + * write_guest_with_key - copy data from kernel space to guest space * @vcpu: virtual cpu * @ga: guest address * @ar: access register * @data: source address in kernel space * @len: number of bytes to copy + * @access_key: access key the storage key needs to match * * Copy @len bytes from @data (kernel space) to @ga (guest address). * In order to copy data to guest space the PSW of the vcpu is inspected: @@ -214,8 +224,8 @@ * The addressing mode of the PSW is also inspected, so that address wrap * around is taken into account for 24-, 31- and 64-bit addressing mode, * if the to be copied data crosses page boundaries in guest address space. - * In addition also low address and DAT protection are inspected before - * copying any data (key protection is currently not implemented). + * In addition low address, DAT and key protection checks are performed before + * copying any data. * * This function modifies the 'struct kvm_s390_pgm_info pgm' member of @vcpu. * In case of an access exception (e.g. protection exception) pgm will contain @@ -243,10 +253,53 @@ * if data has been changed in guest space in case of an exception. */ static inline __must_check +int write_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, + void *data, unsigned long len, u8 access_key) +{ + return access_guest_with_key(vcpu, ga, ar, data, len, GACC_STORE, + access_key); +} + +/** + * write_guest - copy data from kernel space to guest space + * @vcpu: virtual cpu + * @ga: guest address + * @ar: access register + * @data: source address in kernel space + * @len: number of bytes to copy + * + * The behaviour of write_guest is identical to write_guest_with_key, except + * that the PSW access key is used instead of an explicit argument. + */ +static inline __must_check int write_guest(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, void *data, unsigned long len) { - return access_guest(vcpu, ga, ar, data, len, GACC_STORE); + u8 access_key = psw_bits(vcpu->arch.sie_block->gpsw).key; + + return write_guest_with_key(vcpu, ga, ar, data, len, access_key); +} + +/** + * read_guest_with_key - copy data from guest space to kernel space + * @vcpu: virtual cpu + * @ga: guest address + * @ar: access register + * @data: destination address in kernel space + * @len: number of bytes to copy + * @access_key: access key the storage key needs to match + * + * Copy @len bytes from @ga (guest address) to @data (kernel space). + * + * The behaviour of read_guest_with_key is identical to write_guest_with_key, + * except that data will be copied from guest space to kernel space. + */ +static inline __must_check +int read_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, + void *data, unsigned long len, u8 access_key) +{ + return access_guest_with_key(vcpu, ga, ar, data, len, GACC_FETCH, + access_key); } /** @@ -259,14 +312,16 @@ * * Copy @len bytes from @ga (guest address) to @data (kernel space). * - * The behaviour of read_guest is identical to write_guest, except that - * data will be copied from guest space to kernel space. + * The behaviour of read_guest is identical to read_guest_with_key, except + * that the PSW access key is used instead of an explicit argument. */ static inline __must_check int read_guest(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, void *data, unsigned long len) { - return access_guest(vcpu, ga, ar, data, len, GACC_FETCH); + u8 access_key = psw_bits(vcpu->arch.sie_block->gpsw).key; + + return read_guest_with_key(vcpu, ga, ar, data, len, access_key); } /** @@ -287,7 +342,10 @@ int read_guest_instr(struct kvm_vcpu *vcpu, unsigned long ga, void *data, unsigned long len) { - return access_guest(vcpu, ga, 0, data, len, GACC_IFETCH); + u8 access_key = psw_bits(vcpu->arch.sie_block->gpsw).key; + + return access_guest_with_key(vcpu, ga, 0, data, len, GACC_IFETCH, + access_key); } /** diff -u linux-azure-5.4.0/arch/s390/kvm/intercept.c linux-azure-5.4.0/arch/s390/kvm/intercept.c --- linux-azure-5.4.0/arch/s390/kvm/intercept.c +++ linux-azure-5.4.0/arch/s390/kvm/intercept.c @@ -330,18 +330,18 @@ kvm_s390_get_regs_rre(vcpu, ®1, ®2); - /* Make sure that the source is paged-in */ - rc = guest_translate_address(vcpu, vcpu->run->s.regs.gprs[reg2], - reg2, &srcaddr, GACC_FETCH); + /* Ensure that the source is paged-in, no actual access -> no key checking */ + rc = guest_translate_address_with_key(vcpu, vcpu->run->s.regs.gprs[reg2], + reg2, &srcaddr, GACC_FETCH, 0); if (rc) return kvm_s390_inject_prog_cond(vcpu, rc); rc = kvm_arch_fault_in_page(vcpu, srcaddr, 0); if (rc != 0) return rc; - /* Make sure that the destination is paged-in */ - rc = guest_translate_address(vcpu, vcpu->run->s.regs.gprs[reg1], - reg1, &dstaddr, GACC_STORE); + /* Ensure that the source is paged-in, no actual access -> no key checking */ + rc = guest_translate_address_with_key(vcpu, vcpu->run->s.regs.gprs[reg1], + reg1, &dstaddr, GACC_STORE, 0); if (rc) return kvm_s390_inject_prog_cond(vcpu, rc); rc = kvm_arch_fault_in_page(vcpu, dstaddr, 1); @@ -517,17 +517,37 @@ */ if (rc == -EINVAL) return 0; + /* + * If we got -EAGAIN here, we simply return it. It will eventually + * get propagated all the way to userspace, which should then try + * again. + */ return rc; } static int handle_pv_notification(struct kvm_vcpu *vcpu) { + int ret; + if (vcpu->arch.sie_block->ipa == 0xb210) return handle_pv_spx(vcpu); if (vcpu->arch.sie_block->ipa == 0xb220) return handle_pv_sclp(vcpu); if (vcpu->arch.sie_block->ipa == 0xb9a4) return handle_pv_uvc(vcpu); + if (vcpu->arch.sie_block->ipa >> 8 == 0xae) { + /* + * Besides external call, other SIGP orders also cause a + * 108 (pv notify) intercept. In contrast to external call, + * these orders need to be emulated and hence the appropriate + * place to handle them is in handle_instruction(). + * So first try kvm_s390_handle_sigp_pei() and if that isn't + * successful, go on with handle_instruction(). + */ + ret = kvm_s390_handle_sigp_pei(vcpu); + if (!ret) + return ret; + } return handle_instruction(vcpu); } diff -u linux-azure-5.4.0/arch/s390/kvm/interrupt.c linux-azure-5.4.0/arch/s390/kvm/interrupt.c --- linux-azure-5.4.0/arch/s390/kvm/interrupt.c +++ linux-azure-5.4.0/arch/s390/kvm/interrupt.c @@ -419,13 +419,13 @@ static void __set_cpu_idle(struct kvm_vcpu *vcpu) { kvm_s390_set_cpuflags(vcpu, CPUSTAT_WAIT); - set_bit(vcpu->vcpu_id, vcpu->kvm->arch.idle_mask); + set_bit(kvm_vcpu_get_idx(vcpu), vcpu->kvm->arch.idle_mask); } static void __unset_cpu_idle(struct kvm_vcpu *vcpu) { kvm_s390_clear_cpuflags(vcpu, CPUSTAT_WAIT); - clear_bit(vcpu->vcpu_id, vcpu->kvm->arch.idle_mask); + clear_bit(kvm_vcpu_get_idx(vcpu), vcpu->kvm->arch.idle_mask); } static void __reset_intercept_indicators(struct kvm_vcpu *vcpu) @@ -2116,6 +2116,13 @@ return test_bit(IRQ_PEND_SIGP_STOP, &li->pending_irqs); } +int kvm_s390_is_restart_irq_pending(struct kvm_vcpu *vcpu) +{ + struct kvm_s390_local_interrupt *li = &vcpu->arch.local_int; + + return test_bit(IRQ_PEND_RESTART, &li->pending_irqs); +} + void kvm_s390_clear_stop_irq(struct kvm_vcpu *vcpu) { struct kvm_s390_local_interrupt *li = &vcpu->arch.local_int; @@ -3051,18 +3058,19 @@ static void __airqs_kick_single_vcpu(struct kvm *kvm, u8 deliverable_mask) { - int vcpu_id, online_vcpus = atomic_read(&kvm->online_vcpus); + int vcpu_idx, online_vcpus = atomic_read(&kvm->online_vcpus); struct kvm_s390_gisa_interrupt *gi = &kvm->arch.gisa_int; struct kvm_vcpu *vcpu; + u8 vcpu_isc_mask; - for_each_set_bit(vcpu_id, kvm->arch.idle_mask, online_vcpus) { - vcpu = kvm_get_vcpu(kvm, vcpu_id); + for_each_set_bit(vcpu_idx, kvm->arch.idle_mask, online_vcpus) { + vcpu = kvm_get_vcpu(kvm, vcpu_idx); if (psw_ioint_disabled(vcpu)) continue; - deliverable_mask &= (u8)(vcpu->arch.sie_block->gcr[6] >> 24); - if (deliverable_mask) { + vcpu_isc_mask = (u8)(vcpu->arch.sie_block->gcr[6] >> 24); + if (deliverable_mask & vcpu_isc_mask) { /* lately kicked but not yet running */ - if (test_and_set_bit(vcpu_id, gi->kicked_mask)) + if (test_and_set_bit(vcpu_idx, gi->kicked_mask)) return; kvm_s390_vcpu_wakeup(vcpu); return; diff -u linux-azure-5.4.0/arch/s390/kvm/kvm-s390.c linux-azure-5.4.0/arch/s390/kvm/kvm-s390.c --- linux-azure-5.4.0/arch/s390/kvm/kvm-s390.c +++ linux-azure-5.4.0/arch/s390/kvm/kvm-s390.c @@ -322,31 +322,31 @@ static inline int plo_test_bit(unsigned char nr) { - register unsigned long r0 asm("0") = (unsigned long) nr | 0x100; + unsigned long function = (unsigned long)nr | 0x100; int cc; asm volatile( + " lgr 0,%[function]\n" /* Parameter registers are ignored for "test bit" */ " plo 0,0,0,0(0)\n" " ipm %0\n" " srl %0,28\n" : "=d" (cc) - : "d" (r0) - : "cc"); + : [function] "d" (function) + : "cc", "0"); return cc == 0; } static __always_inline void __insn32_query(unsigned int opcode, u8 *query) { - register unsigned long r0 asm("0") = 0; /* query function */ - register unsigned long r1 asm("1") = (unsigned long) query; - asm volatile( - /* Parameter regs are ignored */ + " lghi 0,0\n" + " lgr 1,%[query]\n" + /* Parameter registers are ignored */ " .insn rrf,%[opc] << 16,2,4,6,0\n" : - : "d" (r0), "a" (r1), [opc] "i" (opcode) - : "cc", "memory"); + : [query] "d" ((unsigned long)query), [opc] "i" (opcode) + : "cc", "memory", "0", "1"); } #define INSN_SORTL 0xb938 @@ -539,6 +539,8 @@ case KVM_CAP_S390_AIS: case KVM_CAP_S390_AIS_MIGRATION: case KVM_CAP_S390_VCPU_RESETS: + case KVM_CAP_S390_DIAG318: + case KVM_CAP_S390_MEM_OP_EXTENSION: r = 1; break; case KVM_CAP_S390_HPAGE_1M: @@ -2361,6 +2363,83 @@ return r; } +static bool access_key_invalid(u8 access_key) +{ + return access_key > 0xf; +} + +static int kvm_s390_vm_mem_op(struct kvm *kvm, struct kvm_s390_mem_op *mop) +{ + void __user *uaddr = (void __user *)mop->buf; + u64 supported_flags; + void *tmpbuf = NULL; + int r, srcu_idx; + + supported_flags = KVM_S390_MEMOP_F_SKEY_PROTECTION + | KVM_S390_MEMOP_F_CHECK_ONLY; + if (mop->flags & ~supported_flags || !mop->size) + return -EINVAL; + if (mop->size > MEM_OP_MAX_SIZE) + return -E2BIG; + if (kvm_s390_pv_is_protected(kvm)) + return -EINVAL; + if (mop->flags & KVM_S390_MEMOP_F_SKEY_PROTECTION) { + if (access_key_invalid(mop->key)) + return -EINVAL; + } else { + mop->key = 0; + } + if (!(mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY)) { + tmpbuf = vmalloc(mop->size); + if (!tmpbuf) + return -ENOMEM; + } + + srcu_idx = srcu_read_lock(&kvm->srcu); + + if (kvm_is_error_gpa(kvm, mop->gaddr)) { + r = PGM_ADDRESSING; + goto out_unlock; + } + + switch (mop->op) { + case KVM_S390_MEMOP_ABSOLUTE_READ: { + if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) { + r = check_gpa_range(kvm, mop->gaddr, mop->size, GACC_FETCH, mop->key); + } else { + r = access_guest_abs_with_key(kvm, mop->gaddr, tmpbuf, + mop->size, GACC_FETCH, mop->key); + if (r == 0) { + if (copy_to_user(uaddr, tmpbuf, mop->size)) + r = -EFAULT; + } + } + break; + } + case KVM_S390_MEMOP_ABSOLUTE_WRITE: { + if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) { + r = check_gpa_range(kvm, mop->gaddr, mop->size, GACC_STORE, mop->key); + } else { + if (copy_from_user(tmpbuf, uaddr, mop->size)) { + r = -EFAULT; + break; + } + r = access_guest_abs_with_key(kvm, mop->gaddr, tmpbuf, + mop->size, GACC_STORE, mop->key); + } + break; + } + default: + r = -EINVAL; + } + +out_unlock: + srcu_read_unlock(&kvm->srcu, srcu_idx); + + vfree(tmpbuf); + return r; +} + long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) { @@ -2461,8 +2540,8 @@ case KVM_S390_PV_COMMAND: { struct kvm_pv_cmd args; - /* protvirt means user sigp */ - kvm->arch.user_cpu_state_ctrl = 1; + /* protvirt means user cpu state */ + kvm_s390_set_user_cpu_state_ctrl(kvm); r = 0; if (!is_prot_virt_host()) { r = -EINVAL; @@ -2485,6 +2564,15 @@ } break; } + case KVM_S390_MEM_OP: { + struct kvm_s390_mem_op mem_op; + + if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0) + r = kvm_s390_vm_mem_op(kvm, &mem_op); + else + r = -EFAULT; + break; + } default: r = -ENOTTY; } @@ -2961,7 +3049,8 @@ KVM_SYNC_ACRS | KVM_SYNC_CRS | KVM_SYNC_ARCH0 | - KVM_SYNC_PFAULT; + KVM_SYNC_PFAULT | + KVM_SYNC_DIAG318; kvm_s390_set_prefix(vcpu, 0); if (test_kvm_facility(vcpu->kvm, 64)) vcpu->run->kvm_valid_regs |= KVM_SYNC_RICCB; @@ -3317,6 +3406,7 @@ int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) { + clear_bit(vcpu->vcpu_idx, vcpu->kvm->arch.gisa_int.kicked_mask); return kvm_s390_vcpu_has_irq(vcpu, 0); } @@ -3739,7 +3829,7 @@ vcpu_load(vcpu); /* user space knows about this interface - let it control the state */ - vcpu->kvm->arch.user_cpu_state_ctrl = 1; + kvm_s390_set_user_cpu_state_ctrl(vcpu->kvm); switch (mp_state->mp_state) { case KVM_MP_STATE_STOPPED: @@ -4007,7 +4097,7 @@ kvm_s390_patch_guest_per_regs(vcpu); } - clear_bit(vcpu->vcpu_id, vcpu->kvm->arch.gisa_int.kicked_mask); + clear_bit(kvm_vcpu_get_idx(vcpu), vcpu->kvm->arch.gisa_int.kicked_mask); vcpu->arch.sie_block->icptcode = 0; cpuflags = atomic_read(&vcpu->arch.sie_block->cpuflags); @@ -4188,6 +4278,11 @@ if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID) kvm_clear_async_pf_completion_queue(vcpu); } + if (kvm_run->kvm_dirty_regs & KVM_SYNC_DIAG318) { + vcpu->arch.diag318_info.val = kvm_run->s.regs.diag318; + vcpu->arch.sie_block->cpnc = vcpu->arch.diag318_info.cpnc; + VCPU_EVENT(vcpu, 3, "setting cpnc to %d", vcpu->arch.diag318_info.cpnc); + } /* * If userspace sets the riccb (e.g. after migration) to a valid state, * we should enable RI here instead of doing the lazy enablement. @@ -4289,6 +4384,7 @@ kvm_run->s.regs.pp = vcpu->arch.sie_block->pp; kvm_run->s.regs.gbea = vcpu->arch.sie_block->gbea; kvm_run->s.regs.bpbc = (vcpu->arch.sie_block->fpf & FPF_BPBC) == FPF_BPBC; + kvm_run->s.regs.diag318 = vcpu->arch.diag318_info.val; if (MACHINE_HAS_GS) { preempt_disable(); __ctl_set_bit(2, 4); @@ -4566,10 +4662,15 @@ } } - /* SIGP STOP and SIGP STOP AND STORE STATUS has been fully processed */ + /* + * Set the VCPU to STOPPED and THEN clear the interrupt flag, + * now that the SIGP STOP and SIGP STOP AND STORE STATUS orders + * have been fully processed. This will ensure that the VCPU + * is kept BUSY if another VCPU is inquiring with SIGP SENSE. + */ + kvm_s390_set_cpuflags(vcpu, CPUSTAT_STOPPED); kvm_s390_clear_stop_irq(vcpu); - kvm_s390_set_cpuflags(vcpu, CPUSTAT_STOPPED); __disable_ibs_on_vcpu(vcpu); for (i = 0; i < online_vcpus; i++) { @@ -4615,8 +4716,8 @@ return r; } -static long kvm_s390_guest_sida_op(struct kvm_vcpu *vcpu, - struct kvm_s390_mem_op *mop) +static long kvm_s390_vcpu_sida_op(struct kvm_vcpu *vcpu, + struct kvm_s390_mem_op *mop) { void __user *uaddr = (void __user *)mop->buf; int r = 0; @@ -4627,6 +4728,8 @@ return -EINVAL; if (mop->size + mop->sida_offset > sida_size(vcpu->arch.sie_block)) return -E2BIG; + if (!kvm_s390_pv_cpu_is_protected(vcpu)) + return -EINVAL; switch (mop->op) { case KVM_S390_MEMOP_SIDA_READ: @@ -4643,24 +4746,29 @@ } return r; } -static long kvm_s390_guest_mem_op(struct kvm_vcpu *vcpu, - struct kvm_s390_mem_op *mop) + +static long kvm_s390_vcpu_mem_op(struct kvm_vcpu *vcpu, + struct kvm_s390_mem_op *mop) { void __user *uaddr = (void __user *)mop->buf; void *tmpbuf = NULL; int r = 0; const u64 supported_flags = KVM_S390_MEMOP_F_INJECT_EXCEPTION - | KVM_S390_MEMOP_F_CHECK_ONLY; + | KVM_S390_MEMOP_F_CHECK_ONLY + | KVM_S390_MEMOP_F_SKEY_PROTECTION; if (mop->flags & ~supported_flags || mop->ar >= NUM_ACRS || !mop->size) return -EINVAL; - if (mop->size > MEM_OP_MAX_SIZE) return -E2BIG; - if (kvm_s390_pv_cpu_is_protected(vcpu)) return -EINVAL; - + if (mop->flags & KVM_S390_MEMOP_F_SKEY_PROTECTION) { + if (access_key_invalid(mop->key)) + return -EINVAL; + } else { + mop->key = 0; + } if (!(mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY)) { tmpbuf = vmalloc(mop->size); if (!tmpbuf) @@ -4670,11 +4778,12 @@ switch (mop->op) { case KVM_S390_MEMOP_LOGICAL_READ: if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) { - r = check_gva_range(vcpu, mop->gaddr, mop->ar, - mop->size, GACC_FETCH); + r = check_gva_range(vcpu, mop->gaddr, mop->ar, mop->size, + GACC_FETCH, mop->key); break; } - r = read_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size); + r = read_guest_with_key(vcpu, mop->gaddr, mop->ar, tmpbuf, + mop->size, mop->key); if (r == 0) { if (copy_to_user(uaddr, tmpbuf, mop->size)) r = -EFAULT; @@ -4682,15 +4791,16 @@ break; case KVM_S390_MEMOP_LOGICAL_WRITE: if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) { - r = check_gva_range(vcpu, mop->gaddr, mop->ar, - mop->size, GACC_STORE); + r = check_gva_range(vcpu, mop->gaddr, mop->ar, mop->size, + GACC_STORE, mop->key); break; } if (copy_from_user(tmpbuf, uaddr, mop->size)) { r = -EFAULT; break; } - r = write_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size); + r = write_guest_with_key(vcpu, mop->gaddr, mop->ar, tmpbuf, + mop->size, mop->key); break; } @@ -4701,8 +4811,8 @@ return r; } -static long kvm_s390_guest_memsida_op(struct kvm_vcpu *vcpu, - struct kvm_s390_mem_op *mop) +static long kvm_s390_vcpu_memsida_op(struct kvm_vcpu *vcpu, + struct kvm_s390_mem_op *mop) { int r, srcu_idx; @@ -4711,12 +4821,12 @@ switch (mop->op) { case KVM_S390_MEMOP_LOGICAL_READ: case KVM_S390_MEMOP_LOGICAL_WRITE: - r = kvm_s390_guest_mem_op(vcpu, mop); + r = kvm_s390_vcpu_mem_op(vcpu, mop); break; case KVM_S390_MEMOP_SIDA_READ: case KVM_S390_MEMOP_SIDA_WRITE: /* we are locked against sida going away by the vcpu->mutex */ - r = kvm_s390_guest_sida_op(vcpu, mop); + r = kvm_s390_vcpu_sida_op(vcpu, mop); break; default: r = -EINVAL; @@ -4879,7 +4989,7 @@ struct kvm_s390_mem_op mem_op; if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0) - r = kvm_s390_guest_memsida_op(vcpu, &mem_op); + r = kvm_s390_vcpu_memsida_op(vcpu, &mem_op); else r = -EFAULT; break; diff -u linux-azure-5.4.0/arch/s390/kvm/kvm-s390.h linux-azure-5.4.0/arch/s390/kvm/kvm-s390.h --- linux-azure-5.4.0/arch/s390/kvm/kvm-s390.h +++ linux-azure-5.4.0/arch/s390/kvm/kvm-s390.h @@ -79,7 +79,7 @@ static inline int is_vcpu_idle(struct kvm_vcpu *vcpu) { - return test_bit(vcpu->vcpu_id, vcpu->kvm->arch.idle_mask); + return test_bit(kvm_vcpu_get_idx(vcpu), vcpu->kvm->arch.idle_mask); } static inline int kvm_is_ucontrol(struct kvm *kvm) @@ -208,6 +208,15 @@ return kvm->arch.user_cpu_state_ctrl != 0; } +static inline void kvm_s390_set_user_cpu_state_ctrl(struct kvm *kvm) +{ + if (kvm->arch.user_cpu_state_ctrl) + return; + + VM_EVENT(kvm, 3, "%s", "ENABLE: Userspace CPU state control"); + kvm->arch.user_cpu_state_ctrl = 1; +} + /* implemented in pv.c */ int kvm_s390_pv_destroy_cpu(struct kvm_vcpu *vcpu, u16 *rc, u16 *rrc); int kvm_s390_pv_create_cpu(struct kvm_vcpu *vcpu, u16 *rc, u16 *rrc); @@ -418,6 +427,7 @@ int kvm_s390_ext_call_pending(struct kvm_vcpu *vcpu); extern struct kvm_device_ops kvm_flic_ops; int kvm_s390_is_stop_irq_pending(struct kvm_vcpu *vcpu); +int kvm_s390_is_restart_irq_pending(struct kvm_vcpu *vcpu); void kvm_s390_clear_stop_irq(struct kvm_vcpu *vcpu); int kvm_s390_set_irq_state(struct kvm_vcpu *vcpu, void __user *buf, int len); diff -u linux-azure-5.4.0/arch/s390/kvm/priv.c linux-azure-5.4.0/arch/s390/kvm/priv.c --- linux-azure-5.4.0/arch/s390/kvm/priv.c +++ linux-azure-5.4.0/arch/s390/kvm/priv.c @@ -398,6 +398,8 @@ up_read(¤t->mm->mmap_sem); if (rc == -EFAULT) return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); + if (rc == -EAGAIN) + continue; if (rc < 0) return rc; start += PAGE_SIZE; @@ -1439,10 +1441,11 @@ static int handle_tprot(struct kvm_vcpu *vcpu) { - u64 address1, address2; - unsigned long hva, gpa; - int ret = 0, cc = 0; + u64 address, operand2; + unsigned long gpa; + u8 access_key; bool writable; + int ret, cc; u8 ar; vcpu->stat.instruction_tprot++; @@ -1450,43 +1453,46 @@ if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE) return kvm_s390_inject_program_int(vcpu, PGM_PRIVILEGED_OP); - kvm_s390_get_base_disp_sse(vcpu, &address1, &address2, &ar, NULL); + kvm_s390_get_base_disp_sse(vcpu, &address, &operand2, &ar, NULL); + access_key = (operand2 & 0xf0) >> 4; - /* we only handle the Linux memory detection case: - * access key == 0 - * everything else goes to userspace. */ - if (address2 & 0xf0) - return -EOPNOTSUPP; if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT) ipte_lock(vcpu); - ret = guest_translate_address(vcpu, address1, ar, &gpa, GACC_STORE); - if (ret == PGM_PROTECTION) { + + ret = guest_translate_address_with_key(vcpu, address, ar, &gpa, + GACC_STORE, access_key); + if (ret == 0) { + gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable); + } else if (ret == PGM_PROTECTION) { + writable = false; /* Write protected? Try again with read-only... */ - cc = 1; - ret = guest_translate_address(vcpu, address1, ar, &gpa, - GACC_FETCH); + ret = guest_translate_address_with_key(vcpu, address, ar, &gpa, + GACC_FETCH, access_key); } - if (ret) { - if (ret == PGM_ADDRESSING || ret == PGM_TRANSLATION_SPEC) { - ret = kvm_s390_inject_program_int(vcpu, ret); - } else if (ret > 0) { - /* Translation not available */ - kvm_s390_set_psw_cc(vcpu, 3); + if (ret >= 0) { + cc = -1; + + /* Fetching permitted; storing permitted */ + if (ret == 0 && writable) + cc = 0; + /* Fetching permitted; storing not permitted */ + else if (ret == 0 && !writable) + cc = 1; + /* Fetching not permitted; storing not permitted */ + else if (ret == PGM_PROTECTION) + cc = 2; + /* Translation not available */ + else if (ret != PGM_ADDRESSING && ret != PGM_TRANSLATION_SPEC) + cc = 3; + + if (cc != -1) { + kvm_s390_set_psw_cc(vcpu, cc); ret = 0; + } else { + ret = kvm_s390_inject_program_int(vcpu, ret); } - goto out_unlock; } - hva = gfn_to_hva_prot(vcpu->kvm, gpa_to_gfn(gpa), &writable); - if (kvm_is_error_hva(hva)) { - ret = kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING); - } else { - if (!writable) - cc = 1; /* Write not permitted ==> read-only */ - kvm_s390_set_psw_cc(vcpu, cc); - /* Note: CC2 only occurs for storage keys (not supported yet) */ - } -out_unlock: if (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_DAT) ipte_unlock(vcpu); return ret; diff -u linux-azure-5.4.0/arch/s390/kvm/pv.c linux-azure-5.4.0/arch/s390/kvm/pv.c --- linux-azure-5.4.0/arch/s390/kvm/pv.c +++ linux-azure-5.4.0/arch/s390/kvm/pv.c @@ -192,7 +192,7 @@ uvcb.conf_base_stor_origin = (u64)kvm->arch.pv.stor_base; uvcb.conf_virt_stor_origin = (u64)kvm->arch.pv.stor_var; - cc = uv_call(0, (u64)&uvcb); + cc = uv_call_sched(0, (u64)&uvcb); *rc = uvcb.header.rc; *rrc = uvcb.header.rrc; KVM_UV_EVENT(kvm, 3, "PROTVIRT CREATE VM: handle %llx len %llx rc %x rrc %x", diff -u linux-azure-5.4.0/arch/s390/kvm/vsie.c linux-azure-5.4.0/arch/s390/kvm/vsie.c --- linux-azure-5.4.0/arch/s390/kvm/vsie.c +++ linux-azure-5.4.0/arch/s390/kvm/vsie.c @@ -548,6 +548,7 @@ scb_s->ecd |= scb_o->ecd & ECD_ETOKENF; scb_s->hpid = HPID_VSIE; + scb_s->cpnc = scb_o->cpnc; prepare_ibc(vcpu, vsie_page); rc = shadow_crycb(vcpu, vsie_page); diff -u linux-azure-5.4.0/arch/s390/lib/uaccess.c linux-azure-5.4.0/arch/s390/lib/uaccess.c --- linux-azure-5.4.0/arch/s390/lib/uaccess.c +++ linux-azure-5.4.0/arch/s390/lib/uaccess.c @@ -102,10 +102,16 @@ EXPORT_SYMBOL(disable_sacf_uaccess); static inline unsigned long copy_from_user_mvcos(void *x, const void __user *ptr, - unsigned long size) + unsigned long size, unsigned long key) { - register unsigned long reg0 asm("0") = 0x01UL; unsigned long tmp1, tmp2; + union oac spec = { + .oac2.key = key, + .oac2.as = PSW_BITS_AS_PRIMARY, + .oac2.k = 1, + .oac2.a = 1, + }; + register unsigned long reg0 asm("0") = spec.val; tmp1 = -4096UL; asm volatile( @@ -132,7 +138,7 @@ } static inline unsigned long copy_from_user_mvcp(void *x, const void __user *ptr, - unsigned long size) + unsigned long size, unsigned long key) { unsigned long tmp1, tmp2; mm_segment_t old_fs; @@ -141,12 +147,12 @@ tmp1 = -256UL; asm volatile( " sacf 0\n" - "0: mvcp 0(%0,%2),0(%1),%3\n" + "0: mvcp 0(%0,%2),0(%1),%[key]\n" "7: jz 5f\n" "1: algr %0,%3\n" " la %1,256(%1)\n" " la %2,256(%2)\n" - "2: mvcp 0(%0,%2),0(%1),%3\n" + "2: mvcp 0(%0,%2),0(%1),%[key]\n" "8: jnz 1b\n" " j 5f\n" "3: la %4,255(%1)\n" /* %4 = ptr + 255 */ @@ -155,7 +161,7 @@ " slgr %4,%1\n" " clgr %0,%4\n" /* copy crosses next page boundary? */ " jnh 6f\n" - "4: mvcp 0(%4,%2),0(%1),%3\n" + "4: mvcp 0(%4,%2),0(%1),%[key]\n" "9: slgr %0,%4\n" " j 6f\n" "5: slgr %0,%0\n" @@ -163,24 +169,53 @@ EX_TABLE(0b,3b) EX_TABLE(2b,3b) EX_TABLE(4b,6b) EX_TABLE(7b,3b) EX_TABLE(8b,3b) EX_TABLE(9b,6b) : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2) - : : "cc", "memory"); + : [key] "d" (key << 4) + : "cc", "memory"); disable_sacf_uaccess(old_fs); return size; } -unsigned long raw_copy_from_user(void *to, const void __user *from, unsigned long n) +static unsigned long raw_copy_from_user_key(void *to, const void __user *from, + unsigned long n, unsigned long key) { if (copy_with_mvcos()) - return copy_from_user_mvcos(to, from, n); - return copy_from_user_mvcp(to, from, n); + return copy_from_user_mvcos(to, from, n, key); + return copy_from_user_mvcp(to, from, n, key); +} + +unsigned long raw_copy_from_user(void *to, const void __user *from, unsigned long n) +{ + return raw_copy_from_user_key(to, from, n, 0); } EXPORT_SYMBOL(raw_copy_from_user); +unsigned long _copy_from_user_key(void *to, const void __user *from, + unsigned long n, unsigned long key) +{ + unsigned long res = n; + + might_fault(); + if (likely(access_ok(from, n))) { + kasan_check_write(to, n); + res = raw_copy_from_user_key(to, from, n, key); + } + if (unlikely(res)) + memset(to + (n - res), 0, res); + return res; +} +EXPORT_SYMBOL(_copy_from_user_key); + static inline unsigned long copy_to_user_mvcos(void __user *ptr, const void *x, - unsigned long size) + unsigned long size, unsigned long key) { - register unsigned long reg0 asm("0") = 0x010000UL; unsigned long tmp1, tmp2; + union oac spec = { + .oac1.key = key, + .oac1.as = PSW_BITS_AS_PRIMARY, + .oac1.k = 1, + .oac1.a = 1, + }; + register unsigned long reg0 asm("0") = spec.val; tmp1 = -4096UL; asm volatile( @@ -207,7 +242,7 @@ } static inline unsigned long copy_to_user_mvcs(void __user *ptr, const void *x, - unsigned long size) + unsigned long size, unsigned long key) { unsigned long tmp1, tmp2; mm_segment_t old_fs; @@ -216,12 +251,12 @@ tmp1 = -256UL; asm volatile( " sacf 0\n" - "0: mvcs 0(%0,%1),0(%2),%3\n" + "0: mvcs 0(%0,%1),0(%2),%[key]\n" "7: jz 5f\n" "1: algr %0,%3\n" " la %1,256(%1)\n" " la %2,256(%2)\n" - "2: mvcs 0(%0,%1),0(%2),%3\n" + "2: mvcs 0(%0,%1),0(%2),%[key]\n" "8: jnz 1b\n" " j 5f\n" "3: la %4,255(%1)\n" /* %4 = ptr + 255 */ @@ -230,7 +265,7 @@ " slgr %4,%1\n" " clgr %0,%4\n" /* copy crosses next page boundary? */ " jnh 6f\n" - "4: mvcs 0(%4,%1),0(%2),%3\n" + "4: mvcs 0(%4,%1),0(%2),%[key]\n" "9: slgr %0,%4\n" " j 6f\n" "5: slgr %0,%0\n" @@ -238,24 +273,49 @@ EX_TABLE(0b,3b) EX_TABLE(2b,3b) EX_TABLE(4b,6b) EX_TABLE(7b,3b) EX_TABLE(8b,3b) EX_TABLE(9b,6b) : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2) - : : "cc", "memory"); + : [key] "d" (key << 4) + : "cc", "memory"); disable_sacf_uaccess(old_fs); return size; } -unsigned long raw_copy_to_user(void __user *to, const void *from, unsigned long n) +static unsigned long raw_copy_to_user_key(void __user *to, const void *from, + unsigned long n, unsigned long key) { if (copy_with_mvcos()) - return copy_to_user_mvcos(to, from, n); - return copy_to_user_mvcs(to, from, n); + return copy_to_user_mvcos(to, from, n, key); + return copy_to_user_mvcs(to, from, n, key); +} + +unsigned long raw_copy_to_user(void __user *to, const void *from, unsigned long n) +{ + return raw_copy_to_user_key(to, from, n, 0); } EXPORT_SYMBOL(raw_copy_to_user); +unsigned long _copy_to_user_key(void __user *to, const void *from, + unsigned long n, unsigned long key) +{ + might_fault(); + if (access_ok(to, n)) { + kasan_check_read(from, n); + n = raw_copy_to_user_key(to, from, n, key); + } + return n; +} +EXPORT_SYMBOL(_copy_to_user_key); + static inline unsigned long copy_in_user_mvcos(void __user *to, const void __user *from, unsigned long size) { - register unsigned long reg0 asm("0") = 0x010001UL; unsigned long tmp1, tmp2; + union oac spec = { + .oac1.as = PSW_BITS_AS_PRIMARY, + .oac1.a = 1, + .oac2.as = PSW_BITS_AS_PRIMARY, + .oac2.a = 1, + }; + register unsigned long reg0 asm("0") = spec.val; tmp1 = -4096UL; /* FIXME: copy with reduced length. */ @@ -318,8 +378,12 @@ static inline unsigned long clear_user_mvcos(void __user *to, unsigned long size) { - register unsigned long reg0 asm("0") = 0x010000UL; unsigned long tmp1, tmp2; + union oac spec = { + .oac1.as = PSW_BITS_AS_PRIMARY, + .oac1.a = 1, + }; + register unsigned long reg0 asm("0") = spec.val; tmp1 = -4096UL; asm volatile( diff -u linux-azure-5.4.0/arch/s390/mm/fault.c linux-azure-5.4.0/arch/s390/mm/fault.c --- linux-azure-5.4.0/arch/s390/mm/fault.c +++ linux-azure-5.4.0/arch/s390/mm/fault.c @@ -433,7 +433,9 @@ flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE; if (user_mode(regs)) flags |= FAULT_FLAG_USER; - if (access == VM_WRITE || (trans_exc_code & store_indication) == 0x400) + if ((trans_exc_code & store_indication) == 0x400) + access = VM_WRITE; + if (access == VM_WRITE) flags |= FAULT_FLAG_WRITE; down_read(&mm->mmap_sem); diff -u linux-azure-5.4.0/arch/s390/mm/gmap.c linux-azure-5.4.0/arch/s390/mm/gmap.c --- linux-azure-5.4.0/arch/s390/mm/gmap.c +++ linux-azure-5.4.0/arch/s390/mm/gmap.c @@ -684,9 +684,10 @@ vmaddr |= gaddr & ~PMD_MASK; /* Get pointer to the page table entry */ ptep = get_locked_pte(gmap->mm, vmaddr, &ptl); - if (likely(ptep)) + if (likely(ptep)) { ptep_zap_unused(gmap->mm, vmaddr, ptep, 0); - pte_unmap_unlock(ptep, ptl); + pte_unmap_unlock(ptep, ptl); + } } } EXPORT_SYMBOL_GPL(__gmap_zap); @@ -1177,6 +1178,7 @@ static inline void gmap_insert_rmap(struct gmap *sg, unsigned long vmaddr, struct gmap_rmap *rmap) { + struct gmap_rmap *temp; void __rcu **slot; BUG_ON(!gmap_is_shadow(sg)); @@ -1184,6 +1186,12 @@ if (slot) { rmap->next = radix_tree_deref_slot_protected(slot, &sg->guest_table_lock); + for (temp = rmap->next; temp; temp = temp->next) { + if (temp->raddr == rmap->raddr) { + kfree(rmap); + return; + } + } radix_tree_replace_slot(&sg->host_to_rmap, slot, rmap); } else { rmap->next = NULL; @@ -2594,6 +2602,18 @@ return 0; } +/* + * Give a chance to schedule after setting a key to 256 pages. + * We only hold the mm lock, which is a rwsem and the kvm srcu. + * Both can sleep. + */ +static int __s390_enable_skey_pmd(pmd_t *pmd, unsigned long addr, + unsigned long next, struct mm_walk *walk) +{ + cond_resched(); + return 0; +} + static int __s390_enable_skey_hugetlb(pte_t *pte, unsigned long addr, unsigned long hmask, unsigned long next, struct mm_walk *walk) @@ -2616,12 +2636,14 @@ end = start + HPAGE_SIZE - 1; __storage_key_init_range(start, end); set_bit(PG_arch_1, &page->flags); + cond_resched(); return 0; } static const struct mm_walk_ops enable_skey_walk_ops = { .hugetlb_entry = __s390_enable_skey_hugetlb, .pte_entry = __s390_enable_skey_pte, + .pmd_entry = __s390_enable_skey_pmd, }; int s390_enable_skey(void) diff -u linux-azure-5.4.0/arch/s390/mm/init.c linux-azure-5.4.0/arch/s390/mm/init.c --- linux-azure-5.4.0/arch/s390/mm/init.c +++ linux-azure-5.4.0/arch/s390/mm/init.c @@ -168,9 +168,9 @@ return; /* make sure bounce buffers are shared */ + swiotlb_force = SWIOTLB_FORCE; swiotlb_init(1); swiotlb_update_mem_attributes(); - swiotlb_force = SWIOTLB_FORCE; } void __init mem_init(void) diff -u linux-azure-5.4.0/arch/s390/mm/pgalloc.c linux-azure-5.4.0/arch/s390/mm/pgalloc.c --- linux-azure-5.4.0/arch/s390/mm/pgalloc.c +++ linux-azure-5.4.0/arch/s390/mm/pgalloc.c @@ -255,13 +255,15 @@ /* Free 2K page table fragment of a 4K page */ bit = (__pa(table) & ~PAGE_MASK)/(PTRS_PER_PTE*sizeof(pte_t)); spin_lock_bh(&mm->context.lock); - mask = atomic_xor_bits(&page->_refcount, 1U << (bit + 24)); + mask = atomic_xor_bits(&page->_refcount, 0x11U << (bit + 24)); mask >>= 24; if (mask & 3) list_add(&page->lru, &mm->context.pgtable_list); else list_del(&page->lru); spin_unlock_bh(&mm->context.lock); + mask = atomic_xor_bits(&page->_refcount, 0x10U << (bit + 24)); + mask >>= 24; if (mask != 0) return; } else { diff -u linux-azure-5.4.0/arch/s390/net/bpf_jit_comp.c linux-azure-5.4.0/arch/s390/net/bpf_jit_comp.c --- linux-azure-5.4.0/arch/s390/net/bpf_jit_comp.c +++ linux-azure-5.4.0/arch/s390/net/bpf_jit_comp.c @@ -114,7 +114,7 @@ { u32 r1 = reg2hex[b1]; - if (!jit->seen_reg[r1] && r1 >= 6 && r1 <= 15) + if (r1 >= 6 && r1 <= 15 && !jit->seen_reg[r1]) jit->seen_reg[r1] = 1; } @@ -569,10 +569,10 @@ EMIT4(0xb9080000, dst_reg, src_reg); break; case BPF_ALU | BPF_ADD | BPF_K: /* dst = (u32) dst + (u32) imm */ - if (!imm) - break; - /* alfi %dst,imm */ - EMIT6_IMM(0xc20b0000, dst_reg, imm); + if (imm != 0) { + /* alfi %dst,imm */ + EMIT6_IMM(0xc20b0000, dst_reg, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_ADD | BPF_K: /* dst = dst + imm */ @@ -594,17 +594,22 @@ EMIT4(0xb9090000, dst_reg, src_reg); break; case BPF_ALU | BPF_SUB | BPF_K: /* dst = (u32) dst - (u32) imm */ - if (!imm) - break; - /* alfi %dst,-imm */ - EMIT6_IMM(0xc20b0000, dst_reg, -imm); + if (imm != 0) { + /* alfi %dst,-imm */ + EMIT6_IMM(0xc20b0000, dst_reg, -imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_SUB | BPF_K: /* dst = dst - imm */ if (!imm) break; - /* agfi %dst,-imm */ - EMIT6_IMM(0xc2080000, dst_reg, -imm); + if (imm == -0x80000000) { + /* algfi %dst,0x80000000 */ + EMIT6_IMM(0xc20a0000, dst_reg, 0x80000000); + } else { + /* agfi %dst,-imm */ + EMIT6_IMM(0xc2080000, dst_reg, -imm); + } break; /* * BPF_MUL @@ -619,10 +624,10 @@ EMIT4(0xb90c0000, dst_reg, src_reg); break; case BPF_ALU | BPF_MUL | BPF_K: /* dst = (u32) dst * (u32) imm */ - if (imm == 1) - break; - /* msfi %r5,imm */ - EMIT6_IMM(0xc2010000, dst_reg, imm); + if (imm != 1) { + /* msfi %r5,imm */ + EMIT6_IMM(0xc2010000, dst_reg, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_MUL | BPF_K: /* dst = dst * imm */ @@ -675,6 +680,8 @@ if (BPF_OP(insn->code) == BPF_MOD) /* lhgi %dst,0 */ EMIT4_IMM(0xa7090000, dst_reg, 0); + else + EMIT_ZERO(dst_reg); break; } /* lhi %w0,0 */ @@ -769,10 +776,10 @@ EMIT4(0xb9820000, dst_reg, src_reg); break; case BPF_ALU | BPF_XOR | BPF_K: /* dst = (u32) dst ^ (u32) imm */ - if (!imm) - break; - /* xilf %dst,imm */ - EMIT6_IMM(0xc0070000, dst_reg, imm); + if (imm != 0) { + /* xilf %dst,imm */ + EMIT6_IMM(0xc0070000, dst_reg, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_XOR | BPF_K: /* dst = dst ^ imm */ @@ -793,10 +800,10 @@ EMIT6_DISP_LH(0xeb000000, 0x000d, dst_reg, dst_reg, src_reg, 0); break; case BPF_ALU | BPF_LSH | BPF_K: /* dst = (u32) dst << (u32) imm */ - if (imm == 0) - break; - /* sll %dst,imm(%r0) */ - EMIT4_DISP(0x89000000, dst_reg, REG_0, imm); + if (imm != 0) { + /* sll %dst,imm(%r0) */ + EMIT4_DISP(0x89000000, dst_reg, REG_0, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_LSH | BPF_K: /* dst = dst << imm */ @@ -818,10 +825,10 @@ EMIT6_DISP_LH(0xeb000000, 0x000c, dst_reg, dst_reg, src_reg, 0); break; case BPF_ALU | BPF_RSH | BPF_K: /* dst = (u32) dst >> (u32) imm */ - if (imm == 0) - break; - /* srl %dst,imm(%r0) */ - EMIT4_DISP(0x88000000, dst_reg, REG_0, imm); + if (imm != 0) { + /* srl %dst,imm(%r0) */ + EMIT4_DISP(0x88000000, dst_reg, REG_0, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_RSH | BPF_K: /* dst = dst >> imm */ @@ -843,10 +850,10 @@ EMIT6_DISP_LH(0xeb000000, 0x000a, dst_reg, dst_reg, src_reg, 0); break; case BPF_ALU | BPF_ARSH | BPF_K: /* ((s32) dst >> imm */ - if (imm == 0) - break; - /* sra %dst,imm(%r0) */ - EMIT4_DISP(0x8a000000, dst_reg, REG_0, imm); + if (imm != 0) { + /* sra %dst,imm(%r0) */ + EMIT4_DISP(0x8a000000, dst_reg, REG_0, imm); + } EMIT_ZERO(dst_reg); break; case BPF_ALU64 | BPF_ARSH | BPF_K: /* ((s64) dst) >>= imm */ @@ -914,6 +921,11 @@ } break; /* + * BPF_NOSPEC (speculation barrier) + */ + case BPF_ST | BPF_NOSPEC: + break; + /* * BPF_ST(X) */ case BPF_STX | BPF_MEM | BPF_B: /* *(u8 *)(dst + off) = src_reg */ @@ -1373,7 +1385,7 @@ jit.addrs = kvcalloc(fp->len + 1, sizeof(*jit.addrs), GFP_KERNEL); if (jit.addrs == NULL) { fp = orig_fp; - goto out; + goto free_addrs; } /* * Three initial passes: diff -u linux-azure-5.4.0/arch/s390/pci/pci.c linux-azure-5.4.0/arch/s390/pci/pci.c --- linux-azure-5.4.0/arch/s390/pci/pci.c +++ linux-azure-5.4.0/arch/s390/pci/pci.c @@ -90,7 +90,7 @@ spin_unlock(&zpci_list_lock); list_for_each_entry_safe(zdev, tmp, &remove, entry) - zpci_zdev_put(zdev); + zpci_device_reserved(zdev); } int pci_domain_nr(struct pci_bus *bus) @@ -550,9 +550,12 @@ int pcibios_add_device(struct pci_dev *pdev) { + struct zpci_dev *zdev = to_zpci(pdev); struct resource *res; int i; + /* The pdev has a reference to the zdev via its bus */ + zpci_zdev_get(zdev); if (pdev->is_physfn) pdev->no_vf_scan = 1; @@ -572,7 +575,10 @@ void pcibios_release_device(struct pci_dev *pdev) { + struct zpci_dev *zdev = to_zpci(pdev); + zpci_unmap_resources(pdev); + zpci_zdev_put(zdev); } int pcibios_enable_device(struct pci_dev *pdev, int mask) @@ -717,16 +723,44 @@ } EXPORT_SYMBOL_GPL(zpci_disable_device); -void zpci_remove_device(struct zpci_dev *zdev) +bool zpci_is_device_configured(struct zpci_dev *zdev) +{ + enum zpci_state state = zdev->state; + + return state != ZPCI_FN_STATE_RESERVED && + state != ZPCI_FN_STATE_STANDBY; +} + +/* zpci_remove_device - Removes the given zdev from the PCI core + * @zdev: the zdev to be removed from the PCI core + * @set_error: if true the device's error state is set to permanent failure + * + * Sets a zPCI device to a configured but offline state; the zPCI + * device is still accessible through its hotplug slot and the zPCI + * API but is removed from the common code PCI bus, making it + * no longer available to drivers. + */ +void zpci_remove_device(struct zpci_dev *zdev, bool set_error) { struct zpci_bus *zbus = zdev->zbus; struct pci_dev *pdev; + if (!zdev->zbus->bus) + return; + pdev = pci_get_slot(zbus->bus, zdev->devfn); if (pdev) { - if (pdev->is_virtfn) - return zpci_remove_virtfn(pdev, zdev->vfn); + if (set_error) + pdev->error_state = pci_channel_io_perm_failure; + if (pdev->is_virtfn) { + zpci_remove_virtfn(pdev, zdev->vfn); + /* balance pci_get_slot */ + pci_dev_put(pdev); + return; + } pci_stop_and_remove_bus_device_locked(pdev); + /* balance pci_get_slot */ + pci_dev_put(pdev); } } @@ -770,12 +804,37 @@ return rc; } +/** + * zpci_device_reserved() - Mark device as resverved + * @zdev: the zpci_dev that was reserved + * + * Handle the case that a given zPCI function was reserved by another system. + * After a call to this function the zpci_dev can not be found via + * get_zdev_by_fid() anymore but may still be accessible via existing + * references though it will not be functional anymore. + */ +void zpci_device_reserved(struct zpci_dev *zdev) +{ + if (zdev->has_hp_slot) + zpci_exit_slot(zdev); + /* + * Remove device from zpci_list as it is going away. This also + * makes sure we ignore subsequent zPCI events for this device. + */ + spin_lock(&zpci_list_lock); + list_del(&zdev->entry); + spin_unlock(&zpci_list_lock); + zdev->state = ZPCI_FN_STATE_RESERVED; + zpci_dbg(3, "rsv fid:%x\n", zdev->fid); + zpci_zdev_put(zdev); +} + void zpci_release_device(struct kref *kref) { struct zpci_dev *zdev = container_of(kref, struct zpci_dev, kref); if (zdev->zbus->bus) - zpci_remove_device(zdev); + zpci_remove_device(zdev, false); switch (zdev->state) { case ZPCI_FN_STATE_ONLINE: @@ -785,6 +844,12 @@ case ZPCI_FN_STATE_STANDBY: if (zdev->has_hp_slot) zpci_exit_slot(zdev); + spin_lock(&zpci_list_lock); + list_del(&zdev->entry); + spin_unlock(&zpci_list_lock); + zpci_dbg(3, "rsv fid:%x\n", zdev->fid); + fallthrough; + case ZPCI_FN_STATE_RESERVED: zpci_cleanup_bus_resources(zdev); zpci_bus_device_unregister(zdev); zpci_destroy_iommu(zdev); @@ -792,10 +857,6 @@ default: break; } - - spin_lock(&zpci_list_lock); - list_del(&zdev->entry); - spin_unlock(&zpci_list_lock); zpci_dbg(3, "rem fid:%x\n", zdev->fid); kfree(zdev); } @@ -846,7 +907,6 @@ } static unsigned int s390_pci_probe __initdata = 1; -static unsigned int s390_pci_no_mio __initdata; unsigned int s390_pci_force_floating __initdata; static unsigned int s390_pci_initialized; @@ -857,7 +917,7 @@ return NULL; } if (!strcmp(str, "nomio")) { - s390_pci_no_mio = 1; + S390_lowcore.machine_flags &= ~MACHINE_FLAG_PCI_MIO; return NULL; } if (!strcmp(str, "force_floating")) { @@ -886,7 +946,7 @@ if (!test_facility(69) || !test_facility(71)) return 0; - if (test_facility(153) && !s390_pci_no_mio) { + if (MACHINE_HAS_PCI_MIO) { static_branch_enable(&have_mio); ctl_set_bit(2, 5); } diff -u linux-azure-5.4.0/arch/s390/pci/pci_bus.h linux-azure-5.4.0/arch/s390/pci/pci_bus.h --- linux-azure-5.4.0/arch/s390/pci/pci_bus.h +++ linux-azure-5.4.0/arch/s390/pci/pci_bus.h @@ -17,6 +17,11 @@ kref_put(&zdev->kref, zpci_release_device); } +static inline void zpci_zdev_get(struct zpci_dev *zdev) +{ + kref_get(&zdev->kref); +} + int zpci_alloc_domain(int domain); void zpci_free_domain(int domain); int zpci_setup_bus_resources(struct zpci_dev *zdev, diff -u linux-azure-5.4.0/arch/s390/pci/pci_event.c linux-azure-5.4.0/arch/s390/pci/pci_event.c --- linux-azure-5.4.0/arch/s390/pci/pci_event.c +++ linux-azure-5.4.0/arch/s390/pci/pci_event.c @@ -76,13 +76,10 @@ static void __zpci_event_availability(struct zpci_ccdf_avail *ccdf) { struct zpci_dev *zdev = get_zdev_by_fid(ccdf->fid); - struct pci_dev *pdev = NULL; enum zpci_state state; + struct pci_dev *pdev; int ret; - if (zdev && zdev->zbus && zdev->zbus->bus) - pdev = pci_get_slot(zdev->zbus->bus, zdev->devfn); - zpci_err("avail CCDF:\n"); zpci_err_hex(ccdf, sizeof(*ccdf)); @@ -124,8 +121,7 @@ case 0x0303: /* Deconfiguration requested */ if (!zdev) break; - if (pdev) - zpci_remove_device(zdev); + zpci_remove_device(zdev, false); ret = zpci_disable_device(zdev); if (ret) @@ -140,19 +136,17 @@ case 0x0304: /* Configured -> Standby|Reserved */ if (!zdev) break; - if (pdev) { - /* Give the driver a hint that the function is - * already unusable. */ - pdev->error_state = pci_channel_io_perm_failure; - zpci_remove_device(zdev); - } + /* Give the driver a hint that the function is + * already unusable. + */ + zpci_remove_device(zdev, true); zdev->fh = ccdf->fh; zpci_disable_device(zdev); zdev->state = ZPCI_FN_STATE_STANDBY; if (!clp_get_state(ccdf->fid, &state) && state == ZPCI_FN_STATE_RESERVED) { - zpci_zdev_put(zdev); + zpci_device_reserved(zdev); } break; case 0x0306: /* 0x308 or 0x302 for multiple devices */ @@ -161,7 +155,7 @@ case 0x0308: /* Standby -> Reserved */ if (!zdev) break; - zpci_zdev_put(zdev); + zpci_device_reserved(zdev); break; default: break; diff -u linux-azure-5.4.0/arch/s390/pci/pci_mmio.c linux-azure-5.4.0/arch/s390/pci/pci_mmio.c --- linux-azure-5.4.0/arch/s390/pci/pci_mmio.c +++ linux-azure-5.4.0/arch/s390/pci/pci_mmio.c @@ -64,7 +64,7 @@ asm volatile ( " sacf 256\n" "0: llgc %[tmp],0(%[src])\n" - " sllg %[val],%[val],8\n" + "4: sllg %[val],%[val],8\n" " aghi %[src],1\n" " ogr %[val],%[tmp]\n" " brctg %[cnt],0b\n" @@ -72,7 +72,7 @@ "2: ipm %[cc]\n" " srl %[cc],28\n" "3: sacf 768\n" - EX_TABLE(0b, 3b) EX_TABLE(1b, 3b) EX_TABLE(2b, 3b) + EX_TABLE(0b, 3b) EX_TABLE(4b, 3b) EX_TABLE(1b, 3b) EX_TABLE(2b, 3b) : [src] "+a" (src), [cnt] "+d" (cnt), [val] "+d" (val), [tmp] "=d" (tmp), @@ -128,7 +128,7 @@ down_read(¤t->mm->mmap_sem); ret = -EINVAL; vma = find_vma(current->mm, user_addr); - if (!vma) + if (!vma || user_addr < vma->vm_start) goto out; ret = -EACCES; if (!(vma->vm_flags & access)) @@ -220,10 +220,10 @@ "2: ahi %[shift],-8\n" " srlg %[tmp],%[val],0(%[shift])\n" "3: stc %[tmp],0(%[dst])\n" - " aghi %[dst],1\n" + "5: aghi %[dst],1\n" " brctg %[cnt],2b\n" "4: sacf 768\n" - EX_TABLE(0b, 4b) EX_TABLE(1b, 4b) EX_TABLE(3b, 4b) + EX_TABLE(0b, 4b) EX_TABLE(1b, 4b) EX_TABLE(3b, 4b) EX_TABLE(5b, 4b) : [cc] "+d" (cc), [val] "=d" (val), [len] "+d" (len), [dst] "+a" (dst), [cnt] "+d" (cnt), [tmp] "=d" (tmp), diff -u linux-azure-5.4.0/arch/um/Makefile linux-azure-5.4.0/arch/um/Makefile --- linux-azure-5.4.0/arch/um/Makefile +++ linux-azure-5.4.0/arch/um/Makefile @@ -132,10 +132,18 @@ # The wrappers will select whether using "malloc" or the kernel allocator. LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc +# Avoid binutils 2.39+ warnings by marking the stack non-executable and +# ignorning warnings for the kallsyms sections. +LDFLAGS_EXECSTACK = -z noexecstack +ifeq ($(CONFIG_LD_IS_BFD),y) +LDFLAGS_EXECSTACK += $(call ld-option,--no-warn-rwx-segments) +endif + LD_FLAGS_CMDLINE = $(foreach opt,$(KBUILD_LDFLAGS),-Wl,$(opt)) # Used by link-vmlinux.sh which has special support for um link export CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE) +export LDFLAGS_vmlinux := $(LDFLAGS_EXECSTACK) # When cleaning we don't include .config, so we don't include # TT or skas makefiles and don't clean skas_ptregs.h. diff -u linux-azure-5.4.0/arch/um/drivers/chan_user.c linux-azure-5.4.0/arch/um/drivers/chan_user.c --- linux-azure-5.4.0/arch/um/drivers/chan_user.c +++ linux-azure-5.4.0/arch/um/drivers/chan_user.c @@ -220,7 +220,7 @@ unsigned long *stack_out) { struct winch_data data; - int fds[2], n, err; + int fds[2], n, err, pid; char c; err = os_pipe(fds, 1, 1); @@ -238,8 +238,9 @@ * problem with /dev/net/tun, which if held open by this * thread, prevents the TUN/TAP device from being reused. */ - err = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out); - if (err < 0) { + pid = run_helper_thread(winch_thread, &data, CLONE_FILES, stack_out); + if (pid < 0) { + err = pid; printk(UM_KERN_ERR "fork of winch_thread failed - errno = %d\n", -err); goto out_close; @@ -256,13 +257,14 @@ goto out_close; } - if (os_set_fd_block(*fd_out, 0)) { + err = os_set_fd_block(*fd_out, 0); + if (err) { printk(UM_KERN_ERR "winch_tramp: failed to set thread_fd " "non-blocking.\n"); goto out_close; } - return err; + return pid; out_close: close(fds[1]); diff -u linux-azure-5.4.0/arch/um/drivers/virtio_uml.c linux-azure-5.4.0/arch/um/drivers/virtio_uml.c --- linux-azure-5.4.0/arch/um/drivers/virtio_uml.c +++ linux-azure-5.4.0/arch/um/drivers/virtio_uml.c @@ -994,7 +994,7 @@ rc = os_connect_socket(pdata->socket_path); } while (rc == -EINTR); if (rc < 0) - return rc; + goto error_free; vu_dev->sock = rc; rc = vhost_user_init(vu_dev); @@ -1010,6 +1010,8 @@ error_init: os_close_file(vu_dev->sock); +error_free: + kfree(vu_dev); return rc; } diff -u linux-azure-5.4.0/arch/um/kernel/process.c linux-azure-5.4.0/arch/um/kernel/process.c --- linux-azure-5.4.0/arch/um/kernel/process.c +++ linux-azure-5.4.0/arch/um/kernel/process.c @@ -380,7 +380,7 @@ { struct task_struct *task = t ? t : current; - if (!(task->ptrace & PT_DTRACE)) + if (!test_thread_flag(TIF_SINGLESTEP)) return 0; if (task->thread.singlestep_syscall) diff -u linux-azure-5.4.0/arch/x86/Kconfig linux-azure-5.4.0/arch/x86/Kconfig --- linux-azure-5.4.0/arch/x86/Kconfig +++ linux-azure-5.4.0/arch/x86/Kconfig @@ -73,7 +73,6 @@ select ARCH_HAS_PMEM_API if X86_64 select ARCH_HAS_PTE_DEVMAP if X86_64 select ARCH_HAS_PTE_SPECIAL - select ARCH_HAS_REFCOUNT select ARCH_HAS_UACCESS_FLUSHCACHE if X86_64 select ARCH_HAS_UACCESS_MCSAFE if X86_64 && X86_MCE select ARCH_HAS_SET_MEMORY @@ -1425,7 +1424,7 @@ config HIGHMEM64G bool "64GB" - depends on !M486 && !M586 && !M586TSC && !M586MMX && !MGEODE_LX && !MGEODEGX1 && !MCYRIXIII && !MELAN && !MWINCHIPC6 && !WINCHIP3D && !MK6 + depends on !M486 && !M586 && !M586TSC && !M586MMX && !MGEODE_LX && !MGEODEGX1 && !MCYRIXIII && !MELAN && !MWINCHIPC6 && !MWINCHIP3D && !MK6 select X86_PAE ---help--- Select this if you have a 32-bit processor and more than 4 @@ -1541,7 +1540,6 @@ config AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT bool "Activate AMD Secure Memory Encryption (SME) by default" - default y depends on AMD_MEM_ENCRYPT ---help--- Say yes to have system memory encrypted by default if running on @@ -1991,6 +1989,7 @@ depends on ACPI select UCS2_STRING select EFI_RUNTIME_WRAPPERS + select ARCH_USE_MEMREMAP_PROT ---help--- This enables the kernel to use EFI runtime services that are available (such as the EFI variable services). diff -u linux-azure-5.4.0/arch/x86/boot/Makefile linux-azure-5.4.0/arch/x86/boot/Makefile --- linux-azure-5.4.0/arch/x86/boot/Makefile +++ linux-azure-5.4.0/arch/x86/boot/Makefile @@ -100,7 +100,7 @@ AFLAGS_header.o += -I$(objtree)/$(obj) $(obj)/header.o: $(obj)/zoffset.h -LDFLAGS_setup.elf := -m elf_i386 -T +LDFLAGS_setup.elf := -m elf_i386 -z noexecstack -T $(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE $(call if_changed,ld) diff -u linux-azure-5.4.0/arch/x86/boot/compressed/Makefile linux-azure-5.4.0/arch/x86/boot/compressed/Makefile --- linux-azure-5.4.0/arch/x86/boot/compressed/Makefile +++ linux-azure-5.4.0/arch/x86/boot/compressed/Makefile @@ -57,6 +57,10 @@ KBUILD_LDFLAGS += $(shell $(LD) --help 2>&1 | grep -q "\-z noreloc-overflow" \ && echo "-z noreloc-overflow -pie --no-dynamic-linker") endif + +KBUILD_LDFLAGS += -z noexecstack +KBUILD_LDFLAGS += $(call ld-option,--no-warn-rwx-segments) + LDFLAGS_vmlinux := -T hostprogs-y := mkpiggy diff -u linux-azure-5.4.0/arch/x86/entry/calling.h linux-azure-5.4.0/arch/x86/entry/calling.h --- linux-azure-5.4.0/arch/x86/entry/calling.h +++ linux-azure-5.4.0/arch/x86/entry/calling.h @@ -6,6 +6,8 @@ #include #include #include +#include +#include #include /* @@ -147,27 +149,19 @@ .endm -.macro POP_REGS pop_rdi=1 skip_r11rcx=0 +.macro POP_REGS pop_rdi=1 popq %r15 popq %r14 popq %r13 popq %r12 popq %rbp popq %rbx - .if \skip_r11rcx - popq %rsi - .else popq %r11 - .endif popq %r10 popq %r9 popq %r8 popq %rax - .if \skip_r11rcx - popq %rsi - .else popq %rcx - .endif popq %rdx popq %rsi .if \pop_rdi @@ -318,6 +312,62 @@ #endif /* + * IBRS kernel mitigation for Spectre_v2. + * + * Assumes full context is established (PUSH_REGS, CR3 and GS) and it clobbers + * the regs it uses (AX, CX, DX). Must be called before the first RET + * instruction (NOTE! UNTRAIN_RET includes a RET instruction) + * + * The optional argument is used to save/restore the current value, + * which is used on the paranoid paths. + * + * Assumes x86_spec_ctrl_{base,current} to have SPEC_CTRL_IBRS set. + */ +.macro IBRS_ENTER save_reg + ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_KERNEL_IBRS + movl $MSR_IA32_SPEC_CTRL, %ecx + +.ifnb \save_reg + rdmsr + shl $32, %rdx + or %rdx, %rax + mov %rax, \save_reg + test $SPEC_CTRL_IBRS, %eax + jz .Ldo_wrmsr_\@ + lfence + jmp .Lend_\@ +.Ldo_wrmsr_\@: +.endif + + movq PER_CPU_VAR(x86_spec_ctrl_current), %rdx + movl %edx, %eax + shr $32, %rdx + wrmsr +.Lend_\@: +.endm + +/* + * Similar to IBRS_ENTER, requires KERNEL GS,CR3 and clobbers (AX, CX, DX) + * regs. Must be called after the last RET. + */ +.macro IBRS_EXIT save_reg + ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_KERNEL_IBRS + movl $MSR_IA32_SPEC_CTRL, %ecx + +.ifnb \save_reg + mov \save_reg, %rdx +.else + movq PER_CPU_VAR(x86_spec_ctrl_current), %rdx + andl $(~SPEC_CTRL_IBRS), %edx +.endif + + movl %edx, %eax + shr $32, %rdx + wrmsr +.Lend_\@: +.endm + +/* * Mitigate Spectre v1 for conditional swapgs code paths. * * FENCE_SWAPGS_USER_ENTRY is used in the user entry swapgs code path, to diff -u linux-azure-5.4.0/arch/x86/entry/entry_32.S linux-azure-5.4.0/arch/x86/entry/entry_32.S --- linux-azure-5.4.0/arch/x86/entry/entry_32.S +++ linux-azure-5.4.0/arch/x86/entry/entry_32.S @@ -750,7 +750,6 @@ movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset #endif -#ifdef CONFIG_RETPOLINE /* * When switching from a shallower to a deeper call stack * the RSB may either underflow or use entries populated @@ -759,7 +758,6 @@ * speculative execution to prevent attack. */ FILL_RETURN_BUFFER %ebx, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW -#endif /* restore callee-saved registers */ popfl diff -u linux-azure-5.4.0/arch/x86/entry/entry_64.S linux-azure-5.4.0/arch/x86/entry/entry_64.S --- linux-azure-5.4.0/arch/x86/entry/entry_64.S +++ linux-azure-5.4.0/arch/x86/entry/entry_64.S @@ -173,6 +173,10 @@ /* IRQs are off. */ movq %rax, %rdi movq %rsp, %rsi + + /* clobbers %rax, make sure it is after saving the syscall nr */ + IBRS_ENTER + call do_syscall_64 /* returns with IRQs disabled */ TRACE_IRQS_IRETQ /* we're about to change IF */ @@ -249,8 +253,8 @@ * perf profiles. Nothing jumps here. */ syscall_return_via_sysret: - /* rcx and r11 are already restored (see code above) */ - POP_REGS pop_rdi=0 skip_r11rcx=1 + IBRS_EXIT + POP_REGS pop_rdi=0 /* * Now all regs are restored except RSP and RDI. @@ -302,7 +306,6 @@ movq %rbx, PER_CPU_VAR(fixed_percpu_data) + stack_canary_offset #endif -#ifdef CONFIG_RETPOLINE /* * When switching from a shallower to a deeper call stack * the RSB may either underflow or use entries populated @@ -311,7 +314,6 @@ * speculative execution to prevent attack. */ FILL_RETURN_BUFFER %r12, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW -#endif /* restore callee-saved registers */ popq %r15 @@ -623,6 +625,7 @@ TRACE_IRQS_IRETQ GLOBAL(swapgs_restore_regs_and_return_to_usermode) + IBRS_EXIT #ifdef CONFIG_DEBUG_ENTRY /* Assert that pt_regs indicates user mode. */ testb $3, CS(%rsp) @@ -1337,6 +1340,7 @@ jmp restore_regs_and_return_to_kernel END(paranoid_exit) + /* * Save all registers in pt_regs, and switch GS if needed. */ @@ -1356,6 +1360,7 @@ FENCE_SWAPGS_USER_ENTRY /* We have user CR3. Change to kernel CR3. */ SWITCH_TO_KERNEL_CR3 scratch_reg=%rax + IBRS_ENTER .Lerror_entry_from_usermode_after_swapgs: /* Put us onto the real thread stack. */ @@ -1411,6 +1416,7 @@ SWAPGS FENCE_SWAPGS_USER_ENTRY SWITCH_TO_KERNEL_CR3 scratch_reg=%rax + IBRS_ENTER /* * Pretend that the exception came from user mode: set up pt_regs @@ -1516,6 +1522,8 @@ PUSH_AND_CLEAR_REGS rdx=(%rdx) ENCODE_FRAME_POINTER + IBRS_ENTER + /* * At this point we no longer need to worry about stack damage * due to nesting -- we're on the normal thread stack and we're @@ -1739,6 +1747,9 @@ movq $-1, %rsi call do_nmi + /* Always restore stashed SPEC_CTRL value (see paranoid_entry) */ + IBRS_EXIT save_reg=%r15 + /* Always restore stashed CR3 value (see paranoid_entry) */ RESTORE_CR3 scratch_reg=%r15 save_reg=%r14 diff -u linux-azure-5.4.0/arch/x86/events/amd/ibs.c linux-azure-5.4.0/arch/x86/events/amd/ibs.c --- linux-azure-5.4.0/arch/x86/events/amd/ibs.c +++ linux-azure-5.4.0/arch/x86/events/amd/ibs.c @@ -90,6 +90,7 @@ unsigned long offset_mask[1]; int offset_max; unsigned int fetch_count_reset_broken : 1; + unsigned int fetch_ignore_if_zero_rip : 1; struct cpu_perf_ibs __percpu *pcpu; struct attribute **format_attrs; @@ -311,6 +312,16 @@ hwc->config_base = perf_ibs->msr; hwc->config = config; + /* + * rip recorded by IbsOpRip will not be consistent with rsp and rbp + * recorded as part of interrupt regs. Thus we need to use rip from + * interrupt regs while unwinding call stack. Setting _EARLY flag + * makes sure we unwind call-stack before perf sample rip is set to + * IbsOpRip. + */ + if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) + event->attr.sample_type |= __PERF_SAMPLE_CALLCHAIN_EARLY; + return 0; } @@ -561,6 +572,7 @@ .start = perf_ibs_start, .stop = perf_ibs_stop, .read = perf_ibs_read, + .capabilities = PERF_PMU_CAP_NO_EXCLUDE, }, .msr = MSR_AMD64_IBSOPCTL, .config_mask = IBS_OP_CONFIG_MASK, @@ -663,6 +675,10 @@ if (check_rip && (ibs_data.regs[2] & IBS_RIP_INVALID)) { regs.flags &= ~PERF_EFLAGS_EXACT; } else { + /* Workaround for erratum #1197 */ + if (perf_ibs->fetch_ignore_if_zero_rip && !(ibs_data.regs[1])) + goto out; + set_linear_ip(®s, ibs_data.regs[1]); regs.flags |= PERF_EFLAGS_EXACT; } @@ -677,6 +693,14 @@ data.raw = &raw; } + /* + * rip recorded by IbsOpRip will not be consistent with rsp and rbp + * recorded as part of interrupt regs. Thus we need to use rip from + * interrupt regs while unwinding call stack. + */ + if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) + data.callchain = perf_callchain(event, iregs); + throttle = perf_event_overflow(event, &data, ®s); out: if (throttle) { @@ -756,6 +780,9 @@ if (boot_cpu_data.x86 >= 0x16 && boot_cpu_data.x86 <= 0x18) perf_ibs_fetch.fetch_count_reset_broken = 1; + if (boot_cpu_data.x86 == 0x19 && boot_cpu_data.x86_model < 0x10) + perf_ibs_fetch.fetch_ignore_if_zero_rip = 1; + perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch"); if (ibs_caps & IBS_CAPS_OPCNT) { diff -u linux-azure-5.4.0/arch/x86/events/amd/iommu.c linux-azure-5.4.0/arch/x86/events/amd/iommu.c --- linux-azure-5.4.0/arch/x86/events/amd/iommu.c +++ linux-azure-5.4.0/arch/x86/events/amd/iommu.c @@ -18,8 +18,6 @@ #include "../perf_event.h" #include "iommu.h" -#define COUNTER_SHIFT 16 - /* iommu pmu conf masks */ #define GET_CSOURCE(x) ((x)->conf & 0xFFULL) #define GET_DEVID(x) (((x)->conf >> 8) & 0xFFFFULL) @@ -285,22 +283,31 @@ WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE)); hwc->state = 0; + /* + * To account for power-gating, which prevents write to + * the counter, we need to enable the counter + * before setting up counter register. + */ + perf_iommu_enable_event(event); + if (flags & PERF_EF_RELOAD) { - u64 prev_raw_count = local64_read(&hwc->prev_count); + u64 count = 0; struct amd_iommu *iommu = perf_event_2_iommu(event); + /* + * Since the IOMMU PMU only support counting mode, + * the counter always start with value zero. + */ amd_iommu_pc_set_reg(iommu, hwc->iommu_bank, hwc->iommu_cntr, - IOMMU_PC_COUNTER_REG, &prev_raw_count); + IOMMU_PC_COUNTER_REG, &count); } - perf_iommu_enable_event(event); perf_event_update_userpage(event); - } static void perf_iommu_read(struct perf_event *event) { - u64 count, prev, delta; + u64 count; struct hw_perf_event *hwc = &event->hw; struct amd_iommu *iommu = perf_event_2_iommu(event); @@ -311,14 +318,11 @@ /* IOMMU pc counter register is only 48 bits */ count &= GENMASK_ULL(47, 0); - prev = local64_read(&hwc->prev_count); - if (local64_cmpxchg(&hwc->prev_count, prev, count) != prev) - return; - - /* Handle 48-bit counter overflow */ - delta = (count << COUNTER_SHIFT) - (prev << COUNTER_SHIFT); - delta >>= COUNTER_SHIFT; - local64_add(delta, &event->count); + /* + * Since the counter always start with value zero, + * simply just accumulate the count for the event. + */ + local64_add(count, &event->count); } static void perf_iommu_stop(struct perf_event *event, int flags) @@ -328,15 +332,16 @@ if (hwc->state & PERF_HES_UPTODATE) return; + /* + * To account for power-gating, in which reading the counter would + * return zero, we need to read the register before disabling. + */ + perf_iommu_read(event); + hwc->state |= PERF_HES_UPTODATE; + perf_iommu_disable_event(event); WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED); hwc->state |= PERF_HES_STOPPED; - - if (hwc->state & PERF_HES_UPTODATE) - return; - - perf_iommu_read(event); - hwc->state |= PERF_HES_UPTODATE; } static int perf_iommu_add(struct perf_event *event, int flags) diff -u linux-azure-5.4.0/arch/x86/events/core.c linux-azure-5.4.0/arch/x86/events/core.c --- linux-azure-5.4.0/arch/x86/events/core.c +++ linux-azure-5.4.0/arch/x86/events/core.c @@ -2152,6 +2152,7 @@ if (err) { if (event->destroy) event->destroy(event); + event->destroy = NULL; } if (READ_ONCE(x86_pmu.attr_rdpmc) && @@ -2409,10 +2410,11 @@ void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct unwind_state state; unsigned long addr; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* TODO: We don't support guest os callchain now */ return; } @@ -2518,10 +2520,11 @@ void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct stack_frame frame; const unsigned long __user *fp; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* TODO: We don't support guest os callchain now */ return; } @@ -2605,18 +2608,21 @@ unsigned long perf_instruction_pointer(struct pt_regs *regs) { - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) - return perf_guest_cbs->get_guest_ip(); + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + + if (guest_cbs && guest_cbs->is_in_guest()) + return guest_cbs->get_guest_ip(); return regs->ip + code_segment_base(regs); } unsigned long perf_misc_flags(struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); int misc = 0; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { - if (perf_guest_cbs->is_user_mode()) + if (guest_cbs && guest_cbs->is_in_guest()) { + if (guest_cbs->is_user_mode()) misc |= PERF_RECORD_MISC_GUEST_USER; else misc |= PERF_RECORD_MISC_GUEST_KERNEL; diff -u linux-azure-5.4.0/arch/x86/events/intel/core.c linux-azure-5.4.0/arch/x86/events/intel/core.c --- linux-azure-5.4.0/arch/x86/events/intel/core.c +++ linux-azure-5.4.0/arch/x86/events/intel/core.c @@ -250,7 +250,7 @@ INTEL_EVENT_CONSTRAINT_RANGE(0x03, 0x0a, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0x1f, 0x28, 0xf), INTEL_EVENT_CONSTRAINT(0x32, 0xf), /* SW_PREFETCH_ACCESS.* */ - INTEL_EVENT_CONSTRAINT_RANGE(0x48, 0x54, 0xf), + INTEL_EVENT_CONSTRAINT_RANGE(0x48, 0x56, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0x60, 0x8b, 0xf), INTEL_UEVENT_CONSTRAINT(0x04a3, 0xff), /* CYCLE_ACTIVITY.STALLS_TOTAL */ INTEL_UEVENT_CONSTRAINT(0x10a3, 0xff), /* CYCLE_ACTIVITY.CYCLES_MEM_ANY */ @@ -259,6 +259,7 @@ INTEL_EVENT_CONSTRAINT_RANGE(0xa8, 0xb0, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0xb7, 0xbd, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0xd0, 0xe6, 0xf), + INTEL_EVENT_CONSTRAINT(0xef, 0xf), INTEL_EVENT_CONSTRAINT_RANGE(0xf0, 0xf4, 0xf), EVENT_CONSTRAINT_END }; @@ -2332,6 +2333,7 @@ { struct perf_sample_data data; struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events); + struct perf_guest_info_callbacks *guest_cbs; int bit; int handled = 0; @@ -2385,9 +2387,11 @@ */ if (__test_and_clear_bit(55, (unsigned long *)&status)) { handled++; - if (unlikely(perf_guest_cbs && perf_guest_cbs->is_in_guest() && - perf_guest_cbs->handle_intel_pt_intr)) - perf_guest_cbs->handle_intel_pt_intr(); + + guest_cbs = perf_get_guest_cbs(); + if (unlikely(guest_cbs && guest_cbs->is_in_guest() && + guest_cbs->handle_intel_pt_intr)) + guest_cbs->handle_intel_pt_intr(); else intel_pt_interrupt(); } @@ -4005,6 +4009,7 @@ INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE_X, 5, 0x00000000), INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE_X, 6, 0x00000000), INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE_X, 7, 0x00000000), + INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE_X, 11, 0x00000000), INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE_L, 3, 0x0000007c), INTEL_CPU_DESC(INTEL_FAM6_SKYLAKE, 3, 0x0000007c), INTEL_CPU_DESC(INTEL_FAM6_KABYLAKE, 9, 0x0000004e), diff -u linux-azure-5.4.0/arch/x86/events/intel/ds.c linux-azure-5.4.0/arch/x86/events/intel/ds.c --- linux-azure-5.4.0/arch/x86/events/intel/ds.c +++ linux-azure-5.4.0/arch/x86/events/intel/ds.c @@ -852,8 +852,13 @@ INTEL_FLAGS_UEVENT_CONSTRAINT(0x0400, 0x800000000ULL), /* SLOTS */ INTEL_PLD_CONSTRAINT(0x1cd, 0xff), /* MEM_TRANS_RETIRED.LOAD_LATENCY */ - INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x1d0, 0xf), /* MEM_INST_RETIRED.LOAD */ - INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x2d0, 0xf), /* MEM_INST_RETIRED.STORE */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_LOADS */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_STORES */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_INST_RETIRED.LOCK_LOADS */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_INST_RETIRED.SPLIT_LOADS */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_INST_RETIRED.SPLIT_STORES */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_INST_RETIRED.ALL_LOADS */ + INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_INST_RETIRED.ALL_STORES */ INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD_RANGE(0xd1, 0xd4, 0xf), /* MEM_LOAD_*_RETIRED.* */ diff -u linux-azure-5.4.0/arch/x86/events/intel/uncore_snb.c linux-azure-5.4.0/arch/x86/events/intel/uncore_snb.c --- linux-azure-5.4.0/arch/x86/events/intel/uncore_snb.c +++ linux-azure-5.4.0/arch/x86/events/intel/uncore_snb.c @@ -575,6 +575,22 @@ return 0; } +static u64 snb_uncore_imc_read_counter(struct intel_uncore_box *box, struct perf_event *event) +{ + struct hw_perf_event *hwc = &event->hw; + + /* + * SNB IMC counters are 32-bit and are laid out back to back + * in MMIO space. Therefore we must use a 32-bit accessor function + * using readq() from uncore_mmio_read_counter() causes problems + * because it is reading 64-bit at a time. This is okay for the + * uncore_perf_event_update() function because it drops the upper + * 32-bits but not okay for plain uncore_read_counter() as invoked + * in uncore_pmu_event_start(). + */ + return (u64)readl(box->io_addr + hwc->event_base); +} + static struct pmu snb_uncore_imc_pmu = { .task_ctx_nr = perf_invalid_context, .event_init = snb_uncore_imc_event_init, @@ -594,7 +610,7 @@ .disable_event = snb_uncore_imc_disable_event, .enable_event = snb_uncore_imc_enable_event, .hw_config = snb_uncore_imc_hw_config, - .read_counter = uncore_mmio_read_counter, + .read_counter = snb_uncore_imc_read_counter, }; static struct intel_uncore_type snb_uncore_imc = { diff -u linux-azure-5.4.0/arch/x86/events/intel/uncore_snbep.c linux-azure-5.4.0/arch/x86/events/intel/uncore_snbep.c --- linux-azure-5.4.0/arch/x86/events/intel/uncore_snbep.c +++ linux-azure-5.4.0/arch/x86/events/intel/uncore_snbep.c @@ -3479,6 +3479,9 @@ struct hw_perf_event_extra *reg1 = &event->hw.extra_reg; struct extra_reg *er; int idx = 0; + /* Any of the CHA events may be filtered by Thread/Core-ID.*/ + if (event->hw.config & SNBEP_CBO_PMON_CTL_TID_EN) + idx = SKX_CHA_MSR_PMON_BOX_FILTER_TID; for (er = skx_uncore_cha_extra_regs; er->msr; er++) { if (er->event != (event->hw.config & er->config_mask)) @@ -3546,6 +3549,7 @@ UNCORE_EVENT_CONSTRAINT(0xc0, 0xc), UNCORE_EVENT_CONSTRAINT(0xc5, 0xc), UNCORE_EVENT_CONSTRAINT(0xd4, 0xc), + UNCORE_EVENT_CONSTRAINT(0xd5, 0xc), EVENT_CONSTRAINT_END }; @@ -4382,7 +4386,7 @@ return; pci_read_config_dword(pdev, SNR_IMC_MMIO_BASE_OFFSET, &pci_dword); - addr = (pci_dword & SNR_IMC_MMIO_BASE_MASK) << 23; + addr = ((resource_size_t)pci_dword & SNR_IMC_MMIO_BASE_MASK) << 23; pci_read_config_dword(pdev, SNR_IMC_MMIO_MEM0_OFFSET, &pci_dword); addr |= (pci_dword & SNR_IMC_MMIO_MEM0_MASK) << 12; diff -u linux-azure-5.4.0/arch/x86/events/perf_event.h linux-azure-5.4.0/arch/x86/events/perf_event.h --- linux-azure-5.4.0/arch/x86/events/perf_event.h +++ linux-azure-5.4.0/arch/x86/events/perf_event.h @@ -867,9 +867,10 @@ static inline void x86_pmu_disable_event(struct perf_event *event) { + u64 disable_mask = __this_cpu_read(cpu_hw_events.perf_ctr_virt_mask); struct hw_perf_event *hwc = &event->hw; - wrmsrl(hwc->config_base, hwc->config); + wrmsrl(hwc->config_base, hwc->config & ~disable_mask); if (is_counter_pair(hwc)) wrmsrl(x86_pmu_config_addr(hwc->idx + 1), 0); diff -u linux-azure-5.4.0/arch/x86/hyperv/hv_init.c linux-azure-5.4.0/arch/x86/hyperv/hv_init.c --- linux-azure-5.4.0/arch/x86/hyperv/hv_init.c +++ linux-azure-5.4.0/arch/x86/hyperv/hv_init.c @@ -7,9 +7,10 @@ * Author : K. Y. Srinivasan */ -#include #include #include +#include +#include #include #include #include @@ -39,52 +40,17 @@ /* Storage to save the hypercall page temporarily for hibernation */ static void *hv_hypercall_pg_saved; -u32 *hv_vp_index; -EXPORT_SYMBOL_GPL(hv_vp_index); - struct hv_vp_assist_page **hv_vp_assist_page; EXPORT_SYMBOL_GPL(hv_vp_assist_page); -void __percpu **hyperv_pcpu_input_arg; -EXPORT_SYMBOL_GPL(hyperv_pcpu_input_arg); - -u32 hv_max_vp_index; -EXPORT_SYMBOL_GPL(hv_max_vp_index); - -void *hv_alloc_hyperv_page(void) -{ - BUILD_BUG_ON(PAGE_SIZE != HV_HYP_PAGE_SIZE); - - return (void *)__get_free_page(GFP_KERNEL); -} -EXPORT_SYMBOL_GPL(hv_alloc_hyperv_page); - -void hv_free_hyperv_page(unsigned long addr) -{ - free_page(addr); -} -EXPORT_SYMBOL_GPL(hv_free_hyperv_page); - static int hv_cpu_init(unsigned int cpu) { - u64 msr_vp_index; struct hv_vp_assist_page **hvp = &hv_vp_assist_page[smp_processor_id()]; - void **input_arg; - struct page *pg; - - input_arg = (void **)this_cpu_ptr(hyperv_pcpu_input_arg); - /* hv_cpu_init() can be called with IRQs disabled from hv_resume() */ - pg = alloc_page(irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL); - if (unlikely(!pg)) - return -ENOMEM; - *input_arg = page_address(pg); - - hv_get_vp_index(msr_vp_index); - - hv_vp_index[smp_processor_id()] = msr_vp_index; + int ret; - if (msr_vp_index > hv_max_vp_index) - hv_max_vp_index = msr_vp_index; + ret = hv_common_cpu_init(cpu); + if (ret) + return ret; if (!hv_vp_assist_page) return 0; @@ -169,7 +135,6 @@ struct hv_reenlightenment_control re_ctrl = { .vector = HYPERV_REENLIGHTENMENT_VECTOR, .enabled = 1, - .target_vp = hv_vp_index[smp_processor_id()] }; struct hv_tsc_emulation_control emu_ctrl = {.enabled = 1}; @@ -178,13 +143,20 @@ return; } + if (!hv_vp_index) + return; + hv_reenlightenment_cb = cb; /* Make sure callback is registered before we write to MSRs */ wmb(); + re_ctrl.target_vp = hv_vp_index[get_cpu()]; + wrmsrl(HV_X64_MSR_REENLIGHTENMENT_CONTROL, *((u64 *)&re_ctrl)); wrmsrl(HV_X64_MSR_TSC_EMULATION_CONTROL, *((u64 *)&emu_ctrl)); + + put_cpu(); } EXPORT_SYMBOL_GPL(set_hv_tscchange_cb); @@ -207,16 +179,8 @@ { struct hv_reenlightenment_control re_ctrl; unsigned int new_cpu; - unsigned long flags; - void **input_arg; - void *input_pg = NULL; - - local_irq_save(flags); - input_arg = (void **)this_cpu_ptr(hyperv_pcpu_input_arg); - input_pg = *input_arg; - *input_arg = NULL; - local_irq_restore(flags); - free_page((unsigned long)input_pg); + + hv_common_cpu_die(cpu); if (hv_vp_assist_page && hv_vp_assist_page[cpu]) wrmsrl(HV_X64_MSR_VP_ASSIST_PAGE, 0); @@ -328,7 +292,7 @@ { u64 guest_id, required_msrs; union hv_x64_msr_hypercall_contents hypercall_msr; - int cpuhp, i; + int cpuhp; if (x86_hyper_type != X86_HYPER_MS_HYPERV) return; @@ -340,30 +304,14 @@ if ((ms_hyperv.features & required_msrs) != required_msrs) return; - /* - * Allocate the per-CPU state for the hypercall input arg. - * If this allocation fails, we will not be able to setup - * (per-CPU) hypercall input page and thus this failure is - * fatal on Hyper-V. - */ - hyperv_pcpu_input_arg = alloc_percpu(void *); - - BUG_ON(hyperv_pcpu_input_arg == NULL); - - /* Allocate percpu VP index */ - hv_vp_index = kmalloc_array(num_possible_cpus(), sizeof(*hv_vp_index), - GFP_KERNEL); - if (!hv_vp_index) + if (hv_common_init()) return; - for (i = 0; i < num_possible_cpus(); i++) - hv_vp_index[i] = VP_INVAL; - hv_vp_assist_page = kcalloc(num_possible_cpus(), sizeof(*hv_vp_assist_page), GFP_KERNEL); if (!hv_vp_assist_page) { ms_hyperv.hints &= ~HV_X64_ENLIGHTENED_VMCS_RECOMMENDED; - goto free_vp_index; + goto common_free; } cpuhp = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "x86/hyperv_init:online", @@ -394,7 +342,7 @@ * Ignore any errors in setting up stimer clockevents * as we can run with the LAPIC timer as a fallback. */ - (void)hv_stimer_alloc(); + (void)hv_stimer_alloc(false); hv_apic_init(); @@ -409,9 +357,8 @@ free_vp_assist_page: kfree(hv_vp_assist_page); hv_vp_assist_page = NULL; -free_vp_index: - kfree(hv_vp_index); - hv_vp_index = NULL; +common_free: + hv_common_free(); } /* @@ -441,7 +388,6 @@ hypercall_msr.as_uint64 = 0; wrmsrl(HV_X64_MSR_REFERENCE_TSC, hypercall_msr.as_uint64); } -EXPORT_SYMBOL_GPL(hyperv_cleanup); void hyperv_report_panic(struct pt_regs *regs, long err, bool in_die) { @@ -475,33 +421,6 @@ } EXPORT_SYMBOL_GPL(hyperv_report_panic); -/** - * hyperv_report_panic_msg - report panic message to Hyper-V - * @pa: physical address of the panic page containing the message - * @size: size of the message in the page - */ -void hyperv_report_panic_msg(phys_addr_t pa, size_t size) -{ - /* - * P3 to contain the physical address of the panic page & P4 to - * contain the size of the panic data in that page. Rest of the - * registers are no-op when the NOTIFY_MSG flag is set. - */ - wrmsrl(HV_X64_MSR_CRASH_P0, 0); - wrmsrl(HV_X64_MSR_CRASH_P1, 0); - wrmsrl(HV_X64_MSR_CRASH_P2, 0); - wrmsrl(HV_X64_MSR_CRASH_P3, pa); - wrmsrl(HV_X64_MSR_CRASH_P4, size); - - /* - * Let Hyper-V know there is crash data available along with - * the panic message. - */ - wrmsrl(HV_X64_MSR_CRASH_CTL, - (HV_CRASH_CTL_CRASH_NOTIFY | HV_CRASH_CTL_CRASH_NOTIFY_MSG)); -} -EXPORT_SYMBOL_GPL(hyperv_report_panic_msg); - bool hv_is_hyperv_initialized(void) { union hv_x64_msr_hypercall_contents hypercall_msr; @@ -526,6 +444,0 @@ - -bool hv_is_hibernation_supported(void) -{ - return acpi_sleep_state_supported(ACPI_STATE_S4); -} -EXPORT_SYMBOL_GPL(hv_is_hibernation_supported); diff -u linux-azure-5.4.0/arch/x86/hyperv/mmu.c linux-azure-5.4.0/arch/x86/hyperv/mmu.c --- linux-azure-5.4.0/arch/x86/hyperv/mmu.c +++ linux-azure-5.4.0/arch/x86/hyperv/mmu.c @@ -58,7 +58,7 @@ int cpu, vcpu, gva_n, max_gvas; struct hv_tlb_flush **flush_pcpu; struct hv_tlb_flush *flush; - u64 status = U64_MAX; + u64 status; unsigned long flags; trace_hyperv_mmu_flush_tlb_others(cpus, info); @@ -161,7 +161,7 @@ check_status: local_irq_restore(flags); - if (!(status & HV_HYPERCALL_RESULT_MASK)) + if (hv_result_success(status)) return; do_native: native_flush_tlb_others(cpus, info); @@ -176,7 +176,7 @@ u64 status; if (!(ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED)) - return U64_MAX; + return HV_STATUS_INVALID_PARAMETER; flush_pcpu = (struct hv_tlb_flush_ex **) this_cpu_ptr(hyperv_pcpu_input_arg); @@ -201,7 +201,7 @@ flush->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; nr_bank = cpumask_to_vpset(&(flush->hv_vp_set), cpus); if (nr_bank < 0) - return U64_MAX; + return HV_STATUS_INVALID_PARAMETER; /* * We can flush not more than max_gvas with one hypercall. Flush the diff -u linux-azure-5.4.0/arch/x86/include/asm/apic.h linux-azure-5.4.0/arch/x86/include/asm/apic.h --- linux-azure-5.4.0/arch/x86/include/asm/apic.h +++ linux-azure-5.4.0/arch/x86/include/asm/apic.h @@ -174,6 +174,7 @@ extern int setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask); extern void lapic_assign_system_vectors(void); extern void lapic_assign_legacy_vector(unsigned int isairq, bool replace); +extern void lapic_update_legacy_vectors(void); extern void lapic_online(void); extern void lapic_offline(void); extern bool apic_needs_pit(void); @@ -299,7 +300,8 @@ /* dest_logical is used by the IPI functions */ u32 dest_logical; u32 disable_esr; - u32 irq_delivery_mode; + + enum apic_delivery_modes delivery_mode; u32 irq_dest_mode; u32 (*calc_dest_apicid)(unsigned int cpu); diff -u linux-azure-5.4.0/arch/x86/include/asm/cpu_device_id.h linux-azure-5.4.0/arch/x86/include/asm/cpu_device_id.h --- linux-azure-5.4.0/arch/x86/include/asm/cpu_device_id.h +++ linux-azure-5.4.0/arch/x86/include/asm/cpu_device_id.h @@ -5,15 +5,22 @@ /* * Declare drivers belonging to specific x86 CPUs * Similar in spirit to pci_device_id and related PCI functions + * + * The wildcard initializers are in mod_devicetable.h because + * file2alias needs them. Sigh. */ - #include +/* Get the INTEL_FAM* model defines */ +#include +/* And the X86_VENDOR_* ones */ +#include +/* Centaur FAM6 models */ +#define X86_CENTAUR_FAM6_C7_A 0xa #define X86_CENTAUR_FAM6_C7_D 0xd #define X86_CENTAUR_FAM6_NANO 0xf #define X86_STEPPINGS(mins, maxs) GENMASK(maxs, mins) - /** * X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE - Base macro for CPU matching * @_vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY @@ -26,8 +33,11 @@ * format is unsigned long. The supplied value, pointer * etc. is casted to unsigned long internally. * - * Backport version to keep the SRBDS pile consistant. No shorter variants - * required for this. + * Use only if you need all selectors. Otherwise use one of the shorter + * macros of the X86_MATCH_* family. If there is no matching shorthand + * macro, consider to add one. If you really need to wrap one of the macros + * into another macro at the usage site for good reasons, then please + * start this local macro with X86_MATCH to allow easy grepping. */ #define X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(_vendor, _family, _model, \ _steppings, _feature, _data) { \ @@ -39,6 +49,120 @@ .driver_data = (unsigned long) _data \ } +/** + * X86_MATCH_VENDOR_FAM_MODEL_FEATURE - Macro for CPU matching + * @_vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY + * The name is expanded to X86_VENDOR_@_vendor + * @_family: The family number or X86_FAMILY_ANY + * @_model: The model number, model constant or X86_MODEL_ANY + * @_feature: A X86_FEATURE bit or X86_FEATURE_ANY + * @_data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * The steppings arguments of X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE() is + * set to wildcards. + */ +#define X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, model, feature, data) \ + X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(vendor, family, model, \ + X86_STEPPING_ANY, feature, data) + +/** + * X86_MATCH_VENDOR_FAM_FEATURE - Macro for matching vendor, family and CPU feature + * @vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY + * The name is expanded to X86_VENDOR_@vendor + * @family: The family number or X86_FAMILY_ANY + * @feature: A X86_FEATURE bit + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * All other missing arguments of X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are + * set to wildcards. + */ +#define X86_MATCH_VENDOR_FAM_FEATURE(vendor, family, feature, data) \ + X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, \ + X86_MODEL_ANY, feature, data) + +/** + * X86_MATCH_VENDOR_FEATURE - Macro for matching vendor and CPU feature + * @vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY + * The name is expanded to X86_VENDOR_@vendor + * @feature: A X86_FEATURE bit + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * All other missing arguments of X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are + * set to wildcards. + */ +#define X86_MATCH_VENDOR_FEATURE(vendor, feature, data) \ + X86_MATCH_VENDOR_FAM_FEATURE(vendor, X86_FAMILY_ANY, feature, data) + +/** + * X86_MATCH_FEATURE - Macro for matching a CPU feature + * @feature: A X86_FEATURE bit + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * All other missing arguments of X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are + * set to wildcards. + */ +#define X86_MATCH_FEATURE(feature, data) \ + X86_MATCH_VENDOR_FEATURE(ANY, feature, data) + +/* Transitional to keep the existing code working */ +#define X86_FEATURE_MATCH(feature) X86_MATCH_FEATURE(feature, NULL) + +/** + * X86_MATCH_VENDOR_FAM_MODEL - Match vendor, family and model + * @vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY + * The name is expanded to X86_VENDOR_@vendor + * @family: The family number or X86_FAMILY_ANY + * @model: The model number, model constant or X86_MODEL_ANY + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * All other missing arguments of X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are + * set to wildcards. + */ +#define X86_MATCH_VENDOR_FAM_MODEL(vendor, family, model, data) \ + X86_MATCH_VENDOR_FAM_MODEL_FEATURE(vendor, family, model, \ + X86_FEATURE_ANY, data) + +/** + * X86_MATCH_VENDOR_FAM - Match vendor and family + * @vendor: The vendor name, e.g. INTEL, AMD, HYGON, ..., ANY + * The name is expanded to X86_VENDOR_@vendor + * @family: The family number or X86_FAMILY_ANY + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * All other missing arguments to X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are + * set of wildcards. + */ +#define X86_MATCH_VENDOR_FAM(vendor, family, data) \ + X86_MATCH_VENDOR_FAM_MODEL(vendor, family, X86_MODEL_ANY, data) + +/** + * X86_MATCH_INTEL_FAM6_MODEL - Match vendor INTEL, family 6 and model + * @model: The model name without the INTEL_FAM6_ prefix or ANY + * The model name is expanded to INTEL_FAM6_@model internally + * @data: Driver specific data or NULL. The internal storage + * format is unsigned long. The supplied value, pointer + * etc. is casted to unsigned long internally. + * + * The vendor is set to INTEL, the family to 6 and all other missing + * arguments of X86_MATCH_VENDOR_FAM_MODEL_FEATURE() are set to wildcards. + * + * See X86_MATCH_VENDOR_FAM_MODEL_FEATURE() for further information. + */ +#define X86_MATCH_INTEL_FAM6_MODEL(model, data) \ + X86_MATCH_VENDOR_FAM_MODEL(INTEL, 6, INTEL_FAM6_##model, data) + /* * Match specific microcode revisions. * diff -u linux-azure-5.4.0/arch/x86/include/asm/cpu_entry_area.h linux-azure-5.4.0/arch/x86/include/asm/cpu_entry_area.h --- linux-azure-5.4.0/arch/x86/include/asm/cpu_entry_area.h +++ linux-azure-5.4.0/arch/x86/include/asm/cpu_entry_area.h @@ -133,7 +133,7 @@ extern struct cpu_entry_area *get_cpu_entry_area(int cpu); -static inline struct entry_stack *cpu_entry_stack(int cpu) +static __always_inline struct entry_stack *cpu_entry_stack(int cpu) { return &get_cpu_entry_area(cpu)->entry_stack_page.stack; } diff -u linux-azure-5.4.0/arch/x86/include/asm/cpufeatures.h linux-azure-5.4.0/arch/x86/include/asm/cpufeatures.h --- linux-azure-5.4.0/arch/x86/include/asm/cpufeatures.h +++ linux-azure-5.4.0/arch/x86/include/asm/cpufeatures.h @@ -96,6 +96,7 @@ #define X86_FEATURE_SYSCALL32 ( 3*32+14) /* "" syscall in IA32 userspace */ #define X86_FEATURE_SYSENTER32 ( 3*32+15) /* "" sysenter in IA32 userspace */ #define X86_FEATURE_REP_GOOD ( 3*32+16) /* REP microcode works well */ +#define X86_FEATURE_SME_COHERENT ( 3*32+17) /* "" AMD hardware-enforced cache coherency */ #define X86_FEATURE_LFENCE_RDTSC ( 3*32+18) /* "" LFENCE synchronizes RDTSC */ #define X86_FEATURE_ACC_POWER ( 3*32+19) /* AMD Accumulated Power Mechanism */ #define X86_FEATURE_NOPL ( 3*32+20) /* The NOPL (0F 1F) instructions */ @@ -107,6 +108,7 @@ #define X86_FEATURE_EXTD_APICID ( 3*32+26) /* Extended APICID (8 bits) */ #define X86_FEATURE_AMD_DCM ( 3*32+27) /* AMD multi-node processor */ #define X86_FEATURE_APERFMPERF ( 3*32+28) /* P-State hardware coordination feedback capability (APERF/MPERF MSRs) */ +/* free ( 3*32+29) */ #define X86_FEATURE_NONSTOP_TSC_S3 ( 3*32+30) /* TSC doesn't stop in S3 state */ #define X86_FEATURE_TSC_KNOWN_FREQ ( 3*32+31) /* TSC has known frequency */ @@ -201,8 +203,8 @@ #define X86_FEATURE_PROC_FEEDBACK ( 7*32+ 9) /* AMD ProcFeedbackInterface */ #define X86_FEATURE_SME ( 7*32+10) /* AMD Secure Memory Encryption */ #define X86_FEATURE_PTI ( 7*32+11) /* Kernel Page Table Isolation enabled */ -#define X86_FEATURE_RETPOLINE ( 7*32+12) /* "" Generic Retpoline mitigation for Spectre variant 2 */ -#define X86_FEATURE_RETPOLINE_AMD ( 7*32+13) /* "" AMD Retpoline mitigation for Spectre variant 2 */ +#define X86_FEATURE_KERNEL_IBRS ( 7*32+12) /* "" Set/clear IBRS on kernel entry/exit */ +#define X86_FEATURE_RSB_VMEXIT ( 7*32+13) /* "" Fill RSB on VM-Exit */ #define X86_FEATURE_INTEL_PPIN ( 7*32+14) /* Intel Processor Inventory Number */ #define X86_FEATURE_CDP_L2 ( 7*32+15) /* Code and Data Prioritization L2 */ #define X86_FEATURE_MSR_SPEC_CTRL ( 7*32+16) /* "" MSR SPEC_CTRL is implemented */ @@ -284,6 +286,10 @@ #define X86_FEATURE_CQM_MBM_LOCAL (11*32+ 3) /* LLC Local MBM monitoring */ #define X86_FEATURE_FENCE_SWAPGS_USER (11*32+ 4) /* "" LFENCE in user entry SWAPGS path */ #define X86_FEATURE_FENCE_SWAPGS_KERNEL (11*32+ 5) /* "" LFENCE in kernel entry SWAPGS path */ +#define X86_FEATURE_RRSBA_CTRL (11*32+11) /* "" RET prediction control */ +#define X86_FEATURE_RETPOLINE (11*32+12) /* "" Generic Retpoline mitigation for Spectre variant 2 */ +#define X86_FEATURE_RETPOLINE_LFENCE (11*32+13) /* "" Use LFENCE for Spectre variant 2 */ +#define X86_FEATURE_RSB_VMEXIT_LITE (11*32+17) /* "" Fill RSB on VM exit when EIBRS is enabled */ /* Intel-defined CPU features, CPUID level 0x00000007:1 (EAX), word 12 */ #define X86_FEATURE_AVX512_BF16 (12*32+ 5) /* AVX512 BFLOAT16 instructions */ @@ -300,6 +306,7 @@ #define X86_FEATURE_AMD_SSBD (13*32+24) /* "" Speculative Store Bypass Disable */ #define X86_FEATURE_VIRT_SSBD (13*32+25) /* Virtualized Speculative Store Bypass Disable */ #define X86_FEATURE_AMD_SSB_NO (13*32+26) /* "" Speculative Store Bypass is fixed in hardware. */ +#define X86_FEATURE_BTC_NO (13*32+29) /* "" Not vulnerable to Branch Type Confusion */ /* Thermal and Power Management Leaf, CPUID level 0x00000006 (EAX), word 14 */ #define X86_FEATURE_DTHERM (14*32+ 0) /* Digital Thermal Sensor */ @@ -404,4 +411,8 @@ #define X86_BUG_ITLB_MULTIHIT X86_BUG(23) /* CPU may incur MCE during certain page attribute changes */ #define X86_BUG_SRBDS X86_BUG(24) /* CPU may leak RNG bits if not mitigated */ +#define X86_BUG_MMIO_STALE_DATA X86_BUG(25) /* CPU is affected by Processor MMIO Stale Data vulnerabilities */ +#define X86_BUG_RETBLEED X86_BUG(26) /* CPU is affected by RETBleed */ +#define X86_BUG_EIBRS_PBRSB X86_BUG(27) /* EIBRS is vulnerable to Post Barrier RSB Predictions */ +#define X86_BUG_MMIO_UNKNOWN X86_BUG(28) /* CPU is too old and its MMIO Stale Data status is unknown */ #endif /* _ASM_X86_CPUFEATURES_H */ diff -u linux-azure-5.4.0/arch/x86/include/asm/fpu/internal.h linux-azure-5.4.0/arch/x86/include/asm/fpu/internal.h --- linux-azure-5.4.0/arch/x86/include/asm/fpu/internal.h +++ linux-azure-5.4.0/arch/x86/include/asm/fpu/internal.h @@ -102,6 +102,7 @@ } extern void fpstate_sanitize_xstate(struct fpu *fpu); +/* Returns 0 or the negated trap number, which results in -EFAULT for #PF */ #define user_insn(insn, output, input...) \ ({ \ int err; \ @@ -109,14 +110,14 @@ might_fault(); \ \ asm volatile(ASM_STAC "\n" \ - "1:" #insn "\n\t" \ + "1: " #insn "\n" \ "2: " ASM_CLAC "\n" \ ".section .fixup,\"ax\"\n" \ - "3: movl $-1,%[err]\n" \ + "3: negl %%eax\n" \ " jmp 2b\n" \ ".previous\n" \ - _ASM_EXTABLE(1b, 3b) \ - : [err] "=r" (err), output \ + _ASM_EXTABLE_FAULT(1b, 3b) \ + : [err] "=a" (err), output \ : "0"(0), input); \ err; \ }) @@ -203,6 +204,14 @@ asm volatile("fxsaveq %[fx]" : [fx] "=m" (fpu->state.fxsave)); } +static inline void fxsave(struct fxregs_state *fx) +{ + if (IS_ENABLED(CONFIG_X86_32)) + asm volatile( "fxsave %[fx]" : [fx] "=m" (*fx)); + else + asm volatile("fxsaveq %[fx]" : [fx] "=m" (*fx)); +} + /* These macros all use (%edi)/(%rdi) as the single memory argument. */ #define XSAVE ".byte " REX_PREFIX "0x0f,0xae,0x27" #define XSAVEOPT ".byte " REX_PREFIX "0x0f,0xae,0x37" @@ -210,16 +219,20 @@ #define XRSTOR ".byte " REX_PREFIX "0x0f,0xae,0x2f" #define XRSTORS ".byte " REX_PREFIX "0x0f,0xc7,0x1f" +/* + * After this @err contains 0 on success or the negated trap number when + * the operation raises an exception. For faults this results in -EFAULT. + */ #define XSTATE_OP(op, st, lmask, hmask, err) \ asm volatile("1:" op "\n\t" \ "xor %[err], %[err]\n" \ "2:\n\t" \ ".pushsection .fixup,\"ax\"\n\t" \ - "3: movl $-2,%[err]\n\t" \ + "3: negl %%eax\n\t" \ "jmp 2b\n\t" \ ".popsection\n\t" \ - _ASM_EXTABLE(1b, 3b) \ - : [err] "=r" (err) \ + _ASM_EXTABLE_FAULT(1b, 3b) \ + : [err] "=a" (err) \ : "D" (st), "m" (*st), "a" (lmask), "d" (hmask) \ : "memory") @@ -271,28 +284,6 @@ * This function is called only during boot time when x86 caps are not set * up and alternative can not be used yet. */ -static inline void copy_xregs_to_kernel_booting(struct xregs_state *xstate) -{ - u64 mask = -1; - u32 lmask = mask; - u32 hmask = mask >> 32; - int err; - - WARN_ON(system_state != SYSTEM_BOOTING); - - if (boot_cpu_has(X86_FEATURE_XSAVES)) - XSTATE_OP(XSAVES, xstate, lmask, hmask, err); - else - XSTATE_OP(XSAVE, xstate, lmask, hmask, err); - - /* We should never fault when copying to a kernel buffer: */ - WARN_ON_FPU(err); -} - -/* - * This function is called only during boot time when x86 caps are not set - * up and alternative can not be used yet. - */ static inline void copy_kernel_to_xregs_booting(struct xregs_state *xstate) { u64 mask = -1; @@ -569,9 +560,11 @@ * The FPU context is only stored/restored for a user task and * PF_KTHREAD is used to distinguish between kernel and user threads. */ -static inline void switch_fpu_prepare(struct fpu *old_fpu, int cpu) +static inline void switch_fpu_prepare(struct task_struct *prev, int cpu) { - if (static_cpu_has(X86_FEATURE_FPU) && !(current->flags & PF_KTHREAD)) { + struct fpu *old_fpu = &prev->thread.fpu; + + if (static_cpu_has(X86_FEATURE_FPU) && !(prev->flags & PF_KTHREAD)) { if (!copy_fpregs_to_fpstate(old_fpu)) old_fpu->last_cpu = -1; else @@ -590,10 +583,11 @@ * Load PKRU from the FPU context if available. Delay loading of the * complete FPU state until the return to userland. */ -static inline void switch_fpu_finish(struct fpu *new_fpu) +static inline void switch_fpu_finish(struct task_struct *next) { u32 pkru_val = init_pkru_value; struct pkru_state *pk; + struct fpu *next_fpu = &next->thread.fpu; if (!static_cpu_has(X86_FEATURE_FPU)) return; @@ -607,10 +601,17 @@ * PKRU state is switched eagerly because it needs to be valid before we * return to userland e.g. for a copy_to_user() operation. */ - if (current->mm) { - pk = get_xsave_addr(&new_fpu->state.xsave, XFEATURE_PKRU); - if (pk) - pkru_val = pk->pkru; + if (!(next->flags & PF_KTHREAD)) { + /* + * If the PKRU bit in xsave.header.xfeatures is not set, + * then the PKRU component was in init state, which means + * XRSTOR will set PKRU to 0. If the bit is not set then + * get_xsave_addr() will return NULL because the PKRU value + * in memory is not valid. This means pkru_val has to be + * set to 0 and not to init_pkru_value. + */ + pk = get_xsave_addr(&next_fpu->state.xsave, XFEATURE_PKRU); + pkru_val = pk ? pk->pkru : 0; } __write_pkru(pkru_val); } diff -u linux-azure-5.4.0/arch/x86/include/asm/hyperv-tlfs.h linux-azure-5.4.0/arch/x86/include/asm/hyperv-tlfs.h --- linux-azure-5.4.0/arch/x86/include/asm/hyperv-tlfs.h +++ linux-azure-5.4.0/arch/x86/include/asm/hyperv-tlfs.h @@ -11,17 +11,6 @@ #include #include - -/* - * While not explicitly listed in the TLFS, Hyper-V always runs with a page size - * of 4096. These definitions are used when communicating with Hyper-V using - * guest physical pages and guest physical page addresses, since the guest page - * size may not be 4096 on all architectures. - */ -#define HV_HYP_PAGE_SHIFT 12 -#define HV_HYP_PAGE_SIZE BIT(HV_HYP_PAGE_SHIFT) -#define HV_HYP_PAGE_MASK (~(HV_HYP_PAGE_SIZE - 1)) - /* * The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent * is set by CPUID(HvCpuIdFunctionVersionAndFeatures). @@ -39,78 +28,41 @@ #define HYPERV_CPUID_MAX 0x4000ffff /* - * Feature identification. EAX indicates which features are available - * to the partition based upon the current partition privileges. - * These are HYPERV_CPUID_FEATURES.EAX bits. - */ - -/* VP Runtime (HV_X64_MSR_VP_RUNTIME) available */ -#define HV_X64_MSR_VP_RUNTIME_AVAILABLE BIT(0) -/* Partition Reference Counter (HV_X64_MSR_TIME_REF_COUNT) available*/ -#define HV_MSR_TIME_REF_COUNT_AVAILABLE BIT(1) -/* - * Basic SynIC MSRs (HV_X64_MSR_SCONTROL through HV_X64_MSR_EOM - * and HV_X64_MSR_SINT0 through HV_X64_MSR_SINT15) available - */ -#define HV_X64_MSR_SYNIC_AVAILABLE BIT(2) -/* - * Synthetic Timer MSRs (HV_X64_MSR_STIMER0_CONFIG through - * HV_X64_MSR_STIMER3_COUNT) available - */ -#define HV_MSR_SYNTIMER_AVAILABLE BIT(3) -/* - * APIC access MSRs (HV_X64_MSR_EOI, HV_X64_MSR_ICR and HV_X64_MSR_TPR) - * are available - */ -#define HV_X64_MSR_APIC_ACCESS_AVAILABLE BIT(4) -/* Hypercall MSRs (HV_X64_MSR_GUEST_OS_ID and HV_X64_MSR_HYPERCALL) available*/ -#define HV_X64_MSR_HYPERCALL_AVAILABLE BIT(5) -/* Access virtual processor index MSR (HV_X64_MSR_VP_INDEX) available*/ -#define HV_X64_MSR_VP_INDEX_AVAILABLE BIT(6) -/* Virtual system reset MSR (HV_X64_MSR_RESET) is available*/ -#define HV_X64_MSR_RESET_AVAILABLE BIT(7) -/* - * Access statistics pages MSRs (HV_X64_MSR_STATS_PARTITION_RETAIL_PAGE, - * HV_X64_MSR_STATS_PARTITION_INTERNAL_PAGE, HV_X64_MSR_STATS_VP_RETAIL_PAGE, - * HV_X64_MSR_STATS_VP_INTERNAL_PAGE) available + * Aliases for Group A features that have X64 in the name. + * On x86/x64 these are HYPERV_CPUID_FEATURES.EAX bits. */ -#define HV_X64_MSR_STAT_PAGES_AVAILABLE BIT(8) -/* Partition reference TSC MSR is available */ -#define HV_MSR_REFERENCE_TSC_AVAILABLE BIT(9) -/* Partition Guest IDLE MSR is available */ -#define HV_X64_MSR_GUEST_IDLE_AVAILABLE BIT(10) -/* - * There is a single feature flag that signifies if the partition has access - * to MSRs with local APIC and TSC frequencies. - */ -#define HV_X64_ACCESS_FREQUENCY_MSRS BIT(11) -/* AccessReenlightenmentControls privilege */ -#define HV_X64_ACCESS_REENLIGHTENMENT BIT(13) -/* AccessTscInvariantControls privilege */ -#define HV_X64_ACCESS_TSC_INVARIANT BIT(15) -/* - * Feature identification: indicates which flags were specified at partition - * creation. The format is the same as the partition creation flag structure - * defined in section Partition Creation Flags. - * These are HYPERV_CPUID_FEATURES.EBX bits. +#define HV_X64_MSR_VP_RUNTIME_AVAILABLE \ + HV_MSR_VP_RUNTIME_AVAILABLE +#define HV_X64_MSR_SYNIC_AVAILABLE \ + HV_MSR_SYNIC_AVAILABLE +#define HV_X64_MSR_APIC_ACCESS_AVAILABLE \ + HV_MSR_APIC_ACCESS_AVAILABLE +#define HV_X64_MSR_HYPERCALL_AVAILABLE \ + HV_MSR_HYPERCALL_AVAILABLE +#define HV_X64_MSR_VP_INDEX_AVAILABLE \ + HV_MSR_VP_INDEX_AVAILABLE +#define HV_X64_MSR_RESET_AVAILABLE \ + HV_MSR_RESET_AVAILABLE +#define HV_X64_MSR_GUEST_IDLE_AVAILABLE \ + HV_MSR_GUEST_IDLE_AVAILABLE +#define HV_X64_ACCESS_FREQUENCY_MSRS \ + HV_ACCESS_FREQUENCY_MSRS +#define HV_X64_ACCESS_REENLIGHTENMENT \ + HV_ACCESS_REENLIGHTENMENT +#define HV_X64_ACCESS_TSC_INVARIANT \ + HV_ACCESS_TSC_INVARIANT + +/* + * Aliases for Group B features that have X64 in the name. + * On x86/x64 these are HYPERV_CPUID_FEATURES.EBX bits. */ -#define HV_X64_CREATE_PARTITIONS BIT(0) -#define HV_X64_ACCESS_PARTITION_ID BIT(1) -#define HV_X64_ACCESS_MEMORY_POOL BIT(2) -#define HV_X64_ADJUST_MESSAGE_BUFFERS BIT(3) -#define HV_X64_POST_MESSAGES BIT(4) -#define HV_X64_SIGNAL_EVENTS BIT(5) -#define HV_X64_CREATE_PORT BIT(6) -#define HV_X64_CONNECT_PORT BIT(7) -#define HV_X64_ACCESS_STATS BIT(8) -#define HV_X64_DEBUGGING BIT(11) -#define HV_X64_CPU_POWER_MANAGEMENT BIT(12) +#define HV_X64_POST_MESSAGES HV_POST_MESSAGES +#define HV_X64_SIGNAL_EVENTS HV_SIGNAL_EVENTS /* - * Feature identification. EDX indicates which miscellaneous features - * are available to the partition. - * These are HYPERV_CPUID_FEATURES.EDX bits. + * Group D Features. The bit assignments are custom to each architecture. + * On x86/x64 these are HYPERV_CPUID_FEATURES.EDX bits. */ /* The MWAIT instruction is available (per section MONITOR / MWAIT) */ #define HV_X64_MWAIT_AVAILABLE BIT(0) @@ -187,7 +139,7 @@ * processor, except for virtual processors that are reported as sibling SMT * threads. */ -#define HV_X64_NO_NONARCH_CORESHARING BIT(18) +#define HV_X64_NO_NONARCH_CORESHARING BIT(18) /* Nested features. These are HYPERV_CPUID_NESTED_FEATURES.EAX bits. */ #define HV_X64_NESTED_DIRECT_FLUSH BIT(17) @@ -203,7 +155,7 @@ #define HV_X64_MSR_HYPERCALL 0x40000001 /* MSR used to provide vcpu index */ -#define HV_X64_MSR_VP_INDEX 0x40000002 +#define HV_REGISTER_VP_INDEX 0x40000002 /* MSR used to reset the guest OS. */ #define HV_X64_MSR_RESET 0x40000003 @@ -212,10 +164,10 @@ #define HV_X64_MSR_VP_RUNTIME 0x40000010 /* MSR used to read the per-partition time reference counter */ -#define HV_X64_MSR_TIME_REF_COUNT 0x40000020 +#define HV_REGISTER_TIME_REF_COUNT 0x40000020 /* A partition's reference time stamp counter (TSC) page */ -#define HV_X64_MSR_REFERENCE_TSC 0x40000021 +#define HV_REGISTER_REFERENCE_TSC 0x40000021 /* MSR used to retrieve the TSC frequency */ #define HV_X64_MSR_TSC_FREQUENCY 0x40000022 @@ -230,50 +182,50 @@ #define HV_X64_MSR_VP_ASSIST_PAGE 0x40000073 /* Define synthetic interrupt controller model specific registers. */ -#define HV_X64_MSR_SCONTROL 0x40000080 -#define HV_X64_MSR_SVERSION 0x40000081 -#define HV_X64_MSR_SIEFP 0x40000082 -#define HV_X64_MSR_SIMP 0x40000083 -#define HV_X64_MSR_EOM 0x40000084 -#define HV_X64_MSR_SINT0 0x40000090 -#define HV_X64_MSR_SINT1 0x40000091 -#define HV_X64_MSR_SINT2 0x40000092 -#define HV_X64_MSR_SINT3 0x40000093 -#define HV_X64_MSR_SINT4 0x40000094 -#define HV_X64_MSR_SINT5 0x40000095 -#define HV_X64_MSR_SINT6 0x40000096 -#define HV_X64_MSR_SINT7 0x40000097 -#define HV_X64_MSR_SINT8 0x40000098 -#define HV_X64_MSR_SINT9 0x40000099 -#define HV_X64_MSR_SINT10 0x4000009A -#define HV_X64_MSR_SINT11 0x4000009B -#define HV_X64_MSR_SINT12 0x4000009C -#define HV_X64_MSR_SINT13 0x4000009D -#define HV_X64_MSR_SINT14 0x4000009E -#define HV_X64_MSR_SINT15 0x4000009F +#define HV_REGISTER_SCONTROL 0x40000080 +#define HV_REGISTER_SVERSION 0x40000081 +#define HV_REGISTER_SIEFP 0x40000082 +#define HV_REGISTER_SIMP 0x40000083 +#define HV_REGISTER_EOM 0x40000084 +#define HV_REGISTER_SINT0 0x40000090 +#define HV_REGISTER_SINT1 0x40000091 +#define HV_REGISTER_SINT2 0x40000092 +#define HV_REGISTER_SINT3 0x40000093 +#define HV_REGISTER_SINT4 0x40000094 +#define HV_REGISTER_SINT5 0x40000095 +#define HV_REGISTER_SINT6 0x40000096 +#define HV_REGISTER_SINT7 0x40000097 +#define HV_REGISTER_SINT8 0x40000098 +#define HV_REGISTER_SINT9 0x40000099 +#define HV_REGISTER_SINT10 0x4000009A +#define HV_REGISTER_SINT11 0x4000009B +#define HV_REGISTER_SINT12 0x4000009C +#define HV_REGISTER_SINT13 0x4000009D +#define HV_REGISTER_SINT14 0x4000009E +#define HV_REGISTER_SINT15 0x4000009F /* * Synthetic Timer MSRs. Four timers per vcpu. */ -#define HV_X64_MSR_STIMER0_CONFIG 0x400000B0 -#define HV_X64_MSR_STIMER0_COUNT 0x400000B1 -#define HV_X64_MSR_STIMER1_CONFIG 0x400000B2 -#define HV_X64_MSR_STIMER1_COUNT 0x400000B3 -#define HV_X64_MSR_STIMER2_CONFIG 0x400000B4 -#define HV_X64_MSR_STIMER2_COUNT 0x400000B5 -#define HV_X64_MSR_STIMER3_CONFIG 0x400000B6 -#define HV_X64_MSR_STIMER3_COUNT 0x400000B7 +#define HV_REGISTER_STIMER0_CONFIG 0x400000B0 +#define HV_REGISTER_STIMER0_COUNT 0x400000B1 +#define HV_REGISTER_STIMER1_CONFIG 0x400000B2 +#define HV_REGISTER_STIMER1_COUNT 0x400000B3 +#define HV_REGISTER_STIMER2_CONFIG 0x400000B4 +#define HV_REGISTER_STIMER2_COUNT 0x400000B5 +#define HV_REGISTER_STIMER3_CONFIG 0x400000B6 +#define HV_REGISTER_STIMER3_COUNT 0x400000B7 /* Hyper-V guest idle MSR */ #define HV_X64_MSR_GUEST_IDLE 0x400000F0 /* Hyper-V guest crash notification MSR's */ -#define HV_X64_MSR_CRASH_P0 0x40000100 -#define HV_X64_MSR_CRASH_P1 0x40000101 -#define HV_X64_MSR_CRASH_P2 0x40000102 -#define HV_X64_MSR_CRASH_P3 0x40000103 -#define HV_X64_MSR_CRASH_P4 0x40000104 -#define HV_X64_MSR_CRASH_CTL 0x40000105 +#define HV_REGISTER_CRASH_P0 0x40000100 +#define HV_REGISTER_CRASH_P1 0x40000101 +#define HV_REGISTER_CRASH_P2 0x40000102 +#define HV_REGISTER_CRASH_P3 0x40000103 +#define HV_REGISTER_CRASH_P4 0x40000104 +#define HV_REGISTER_CRASH_CTL 0x40000105 /* TSC emulation after migration */ #define HV_X64_MSR_REENLIGHTENMENT_CONTROL 0x40000106 @@ -283,6 +235,32 @@ /* TSC invariant control */ #define HV_X64_MSR_TSC_INVARIANT_CONTROL 0x40000118 +/* Register name aliases for temporary compatibility */ +#define HV_X64_MSR_STIMER0_COUNT HV_REGISTER_STIMER0_COUNT +#define HV_X64_MSR_STIMER0_CONFIG HV_REGISTER_STIMER0_CONFIG +#define HV_X64_MSR_STIMER1_COUNT HV_REGISTER_STIMER1_COUNT +#define HV_X64_MSR_STIMER1_CONFIG HV_REGISTER_STIMER1_CONFIG +#define HV_X64_MSR_STIMER2_COUNT HV_REGISTER_STIMER2_COUNT +#define HV_X64_MSR_STIMER2_CONFIG HV_REGISTER_STIMER2_CONFIG +#define HV_X64_MSR_STIMER3_COUNT HV_REGISTER_STIMER3_COUNT +#define HV_X64_MSR_STIMER3_CONFIG HV_REGISTER_STIMER3_CONFIG +#define HV_X64_MSR_SCONTROL HV_REGISTER_SCONTROL +#define HV_X64_MSR_SVERSION HV_REGISTER_SVERSION +#define HV_X64_MSR_SIMP HV_REGISTER_SIMP +#define HV_X64_MSR_SIEFP HV_REGISTER_SIEFP +#define HV_X64_MSR_VP_INDEX HV_REGISTER_VP_INDEX +#define HV_X64_MSR_EOM HV_REGISTER_EOM +#define HV_X64_MSR_SINT0 HV_REGISTER_SINT0 +#define HV_X64_MSR_SINT15 HV_REGISTER_SINT15 +#define HV_X64_MSR_CRASH_P0 HV_REGISTER_CRASH_P0 +#define HV_X64_MSR_CRASH_P1 HV_REGISTER_CRASH_P1 +#define HV_X64_MSR_CRASH_P2 HV_REGISTER_CRASH_P2 +#define HV_X64_MSR_CRASH_P3 HV_REGISTER_CRASH_P3 +#define HV_X64_MSR_CRASH_P4 HV_REGISTER_CRASH_P4 +#define HV_X64_MSR_CRASH_CTL HV_REGISTER_CRASH_CTL +#define HV_X64_MSR_TIME_REF_COUNT HV_REGISTER_TIME_REF_COUNT +#define HV_X64_MSR_REFERENCE_TSC HV_REGISTER_REFERENCE_TSC + /* * Declare the MSR used to setup pages used to communicate with the hypervisor. */ @@ -295,43 +273,6 @@ } __packed; }; -/* - * TSC page layout. - */ -struct ms_hyperv_tsc_page { - volatile u32 tsc_sequence; - u32 reserved1; - volatile u64 tsc_scale; - volatile s64 tsc_offset; - u64 reserved2[509]; -} __packed; - -/* - * The guest OS needs to register the guest ID with the hypervisor. - * The guest ID is a 64 bit entity and the structure of this ID is - * specified in the Hyper-V specification: - * - * msdn.microsoft.com/en-us/library/windows/hardware/ff542653%28v=vs.85%29.aspx - * - * While the current guideline does not specify how Linux guest ID(s) - * need to be generated, our plan is to publish the guidelines for - * Linux and other guest operating systems that currently are hosted - * on Hyper-V. The implementation here conforms to this yet - * unpublished guidelines. - * - * - * Bit(s) - * 63 - Indicates if the OS is Open Source or not; 1 is Open Source - * 62:56 - Os Type; Linux is 0x100 - * 55:48 - Distro specific identification - * 47:16 - Linux kernel version number - * 15:0 - Distro specific identification - * - * - */ - -#define HV_LINUX_VENDOR_ID 0x8100 - struct hv_reenlightenment_control { __u64 vector:8; __u64 reserved1:8; @@ -355,30 +296,12 @@ #define HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_MASK \ (~((1ull << HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT) - 1)) -/* - * Crash notification (HV_X64_MSR_CRASH_CTL) flags. - */ -#define HV_CRASH_CTL_CRASH_NOTIFY_MSG BIT_ULL(62) -#define HV_CRASH_CTL_CRASH_NOTIFY BIT_ULL(63) #define HV_X64_MSR_CRASH_PARAMS \ (1 + (HV_X64_MSR_CRASH_P4 - HV_X64_MSR_CRASH_P0)) #define HV_IPI_LOW_VECTOR 0x10 #define HV_IPI_HIGH_VECTOR 0xff -/* Declare the various hypercall operations. */ -#define HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE 0x0002 -#define HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST 0x0003 -#define HVCALL_NOTIFY_LONG_SPIN_WAIT 0x0008 -#define HVCALL_SEND_IPI 0x000b -#define HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE_EX 0x0013 -#define HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST_EX 0x0014 -#define HVCALL_SEND_IPI_EX 0x0015 -#define HVCALL_POST_MESSAGE 0x005c -#define HVCALL_SIGNAL_EVENT 0x005d -#define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE 0x00af -#define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_LIST 0x00b0 - #define HV_X64_MSR_VP_ASSIST_PAGE_ENABLE 0x00000001 #define HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT 12 #define HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_MASK \ @@ -390,153 +313,6 @@ #define HV_X64_MSR_TSC_REFERENCE_ENABLE 0x00000001 #define HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT 12 -#define HV_PROCESSOR_POWER_STATE_C0 0 -#define HV_PROCESSOR_POWER_STATE_C1 1 -#define HV_PROCESSOR_POWER_STATE_C2 2 -#define HV_PROCESSOR_POWER_STATE_C3 3 - -#define HV_FLUSH_ALL_PROCESSORS BIT(0) -#define HV_FLUSH_ALL_VIRTUAL_ADDRESS_SPACES BIT(1) -#define HV_FLUSH_NON_GLOBAL_MAPPINGS_ONLY BIT(2) -#define HV_FLUSH_USE_EXTENDED_RANGE_FORMAT BIT(3) - -enum HV_GENERIC_SET_FORMAT { - HV_GENERIC_SET_SPARSE_4K, - HV_GENERIC_SET_ALL, -}; - -#define HV_HYPERCALL_RESULT_MASK GENMASK_ULL(15, 0) -#define HV_HYPERCALL_FAST_BIT BIT(16) -#define HV_HYPERCALL_VARHEAD_OFFSET 17 -#define HV_HYPERCALL_REP_COMP_OFFSET 32 -#define HV_HYPERCALL_REP_COMP_MASK GENMASK_ULL(43, 32) -#define HV_HYPERCALL_REP_START_OFFSET 48 -#define HV_HYPERCALL_REP_START_MASK GENMASK_ULL(59, 48) - -/* hypercall status code */ -#define HV_STATUS_SUCCESS 0 -#define HV_STATUS_INVALID_HYPERCALL_CODE 2 -#define HV_STATUS_INVALID_HYPERCALL_INPUT 3 -#define HV_STATUS_INVALID_ALIGNMENT 4 -#define HV_STATUS_INVALID_PARAMETER 5 -#define HV_STATUS_INSUFFICIENT_MEMORY 11 -#define HV_STATUS_INVALID_PORT_ID 17 -#define HV_STATUS_INVALID_CONNECTION_ID 18 -#define HV_STATUS_INSUFFICIENT_BUFFERS 19 - -/* - * The Hyper-V TimeRefCount register and the TSC - * page provide a guest VM clock with 100ns tick rate - */ -#define HV_CLOCK_HZ (NSEC_PER_SEC/100) - -typedef struct _HV_REFERENCE_TSC_PAGE { - __u32 tsc_sequence; - __u32 res1; - __u64 tsc_scale; - __s64 tsc_offset; -} __packed HV_REFERENCE_TSC_PAGE, *PHV_REFERENCE_TSC_PAGE; - -/* Define the number of synthetic interrupt sources. */ -#define HV_SYNIC_SINT_COUNT (16) -/* Define the expected SynIC version. */ -#define HV_SYNIC_VERSION_1 (0x1) -/* Valid SynIC vectors are 16-255. */ -#define HV_SYNIC_FIRST_VALID_VECTOR (16) - -#define HV_SYNIC_CONTROL_ENABLE (1ULL << 0) -#define HV_SYNIC_SIMP_ENABLE (1ULL << 0) -#define HV_SYNIC_SIEFP_ENABLE (1ULL << 0) -#define HV_SYNIC_SINT_MASKED (1ULL << 16) -#define HV_SYNIC_SINT_AUTO_EOI (1ULL << 17) -#define HV_SYNIC_SINT_VECTOR_MASK (0xFF) - -#define HV_SYNIC_STIMER_COUNT (4) - -/* Define synthetic interrupt controller message constants. */ -#define HV_MESSAGE_SIZE (256) -#define HV_MESSAGE_PAYLOAD_BYTE_COUNT (240) -#define HV_MESSAGE_PAYLOAD_QWORD_COUNT (30) - -/* Define hypervisor message types. */ -enum hv_message_type { - HVMSG_NONE = 0x00000000, - - /* Memory access messages. */ - HVMSG_UNMAPPED_GPA = 0x80000000, - HVMSG_GPA_INTERCEPT = 0x80000001, - - /* Timer notification messages. */ - HVMSG_TIMER_EXPIRED = 0x80000010, - - /* Error messages. */ - HVMSG_INVALID_VP_REGISTER_VALUE = 0x80000020, - HVMSG_UNRECOVERABLE_EXCEPTION = 0x80000021, - HVMSG_UNSUPPORTED_FEATURE = 0x80000022, - - /* Trace buffer complete messages. */ - HVMSG_EVENTLOG_BUFFERCOMPLETE = 0x80000040, - - /* Platform-specific processor intercept messages. */ - HVMSG_X64_IOPORT_INTERCEPT = 0x80010000, - HVMSG_X64_MSR_INTERCEPT = 0x80010001, - HVMSG_X64_CPUID_INTERCEPT = 0x80010002, - HVMSG_X64_EXCEPTION_INTERCEPT = 0x80010003, - HVMSG_X64_APIC_EOI = 0x80010004, - HVMSG_X64_LEGACY_FP_ERROR = 0x80010005 -}; - -/* Define synthetic interrupt controller message flags. */ -union hv_message_flags { - __u8 asu8; - struct { - __u8 msg_pending:1; - __u8 reserved:7; - } __packed; -}; - -/* Define port identifier type. */ -union hv_port_id { - __u32 asu32; - struct { - __u32 id:24; - __u32 reserved:8; - } __packed u; -}; - -/* Define synthetic interrupt controller message header. */ -struct hv_message_header { - __u32 message_type; - __u8 payload_size; - union hv_message_flags message_flags; - __u8 reserved[2]; - union { - __u64 sender; - union hv_port_id port; - }; -} __packed; - -/* Define synthetic interrupt controller message format. */ -struct hv_message { - struct hv_message_header header; - union { - __u64 payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT]; - } u; -} __packed; - -/* Define the synthetic interrupt message page layout. */ -struct hv_message_page { - struct hv_message sint_message[HV_SYNIC_SINT_COUNT]; -} __packed; - -/* Define timer message payload structure. */ -struct hv_timer_message_payload { - __u32 timer_index; - __u32 reserved; - __u64 expiration_time; /* When the timer expired */ - __u64 delivery_time; /* When the message was delivered */ -} __packed; - struct hv_nested_enlightenments_control { struct { __u32 directhypercall:1; @@ -726,7 +502,7 @@ u64 guest_rip; u32 hv_clean_fields; - u32 hv_padding_32; + u32 padding32_1; u32 hv_synthetic_controls; struct { u32 nested_flush_hypercall:1; @@ -734,7 +510,7 @@ u32 reserved:30; } __packed hv_enlightenments_control; u32 hv_vp_id; - + u32 padding32_2; u64 hv_vm_id; u64 partition_assist_page; u64 padding64_4[4]; @@ -766,146 +542,42 @@ -/* Define synthetic interrupt controller flag constants. */ -#define HV_EVENT_FLAGS_COUNT (256 * 8) -#define HV_EVENT_FLAGS_LONG_COUNT (256 / sizeof(unsigned long)) - -/* - * Synthetic timer configuration. - */ -union hv_stimer_config { - u64 as_uint64; - struct { - u64 enable:1; - u64 periodic:1; - u64 lazy:1; - u64 auto_enable:1; - u64 apic_vector:8; - u64 direct_mode:1; - u64 reserved_z0:3; - u64 sintx:4; - u64 reserved_z1:44; - } __packed; +struct hv_partition_assist_pg { + u32 tlb_lock_count; }; -/* Define the synthetic interrupt controller event flags format. */ -union hv_synic_event_flags { - unsigned long flags[HV_EVENT_FLAGS_LONG_COUNT]; -}; - -/* Define SynIC control register. */ -union hv_synic_scontrol { - u64 as_uint64; +union hv_msi_address_register { + u32 as_uint32; struct { - u64 enable:1; - u64 reserved:63; - } __packed; -}; + u32 reserved1:2; + u32 destination_mode:1; + u32 redirection_hint:1; + u32 reserved2:8; + u32 destination_id:8; + u32 msi_base:12; + }; +} __packed; -/* Define synthetic interrupt source. */ -union hv_synic_sint { - u64 as_uint64; +union hv_msi_data_register { + u32 as_uint32; struct { - u64 vector:8; - u64 reserved1:8; - u64 masked:1; - u64 auto_eoi:1; - u64 reserved2:46; - } __packed; -}; + u32 vector:8; + u32 delivery_mode:3; + u32 reserved1:3; + u32 level_assert:1; + u32 trigger_mode:1; + u32 reserved2:16; + }; +} __packed; -/* Define the format of the SIMP register */ -union hv_synic_simp { +/* HvRetargetDeviceInterrupt hypercall */ +union hv_msi_entry { u64 as_uint64; struct { - u64 simp_enabled:1; - u64 preserved:11; - u64 base_simp_gpa:52; + union hv_msi_address_register address; + union hv_msi_data_register data; } __packed; }; -/* Define the format of the SIEFP register */ -union hv_synic_siefp { - u64 as_uint64; - struct { - u64 siefp_enabled:1; - u64 preserved:11; - u64 base_siefp_gpa:52; - } __packed; -}; +#include -struct hv_vpset { - u64 format; - u64 valid_bank_mask; - u64 bank_contents[]; -} __packed; - -/* HvCallSendSyntheticClusterIpi hypercall */ -struct hv_send_ipi { - u32 vector; - u32 reserved; - u64 cpu_mask; -} __packed; - -/* HvCallSendSyntheticClusterIpiEx hypercall */ -struct hv_send_ipi_ex { - u32 vector; - u32 reserved; - struct hv_vpset vp_set; -} __packed; - -/* HvFlushGuestPhysicalAddressSpace hypercalls */ -struct hv_guest_mapping_flush { - u64 address_space; - u64 flags; -} __packed; - -/* - * HV_MAX_FLUSH_PAGES = "additional_pages" + 1. It's limited - * by the bitwidth of "additional_pages" in union hv_gpa_page_range. - */ -#define HV_MAX_FLUSH_PAGES (2048) - -/* HvFlushGuestPhysicalAddressList hypercall */ -union hv_gpa_page_range { - u64 address_space; - struct { - u64 additional_pages:11; - u64 largepage:1; - u64 basepfn:52; - } page; -}; - -/* - * All input flush parameters should be in single page. The max flush - * count is equal with how many entries of union hv_gpa_page_range can - * be populated into the input parameter page. - */ -#define HV_MAX_FLUSH_REP_COUNT ((HV_HYP_PAGE_SIZE - 2 * sizeof(u64)) / \ - sizeof(union hv_gpa_page_range)) - -struct hv_guest_mapping_flush_list { - u64 address_space; - u64 flags; - union hv_gpa_page_range gpa_list[HV_MAX_FLUSH_REP_COUNT]; -}; - -/* HvFlushVirtualAddressSpace, HvFlushVirtualAddressList hypercalls */ -struct hv_tlb_flush { - u64 address_space; - u64 flags; - u64 processor_mask; - u64 gva_list[]; -} __packed; - -/* HvFlushVirtualAddressSpaceEx, HvFlushVirtualAddressListEx hypercalls */ -struct hv_tlb_flush_ex { - u64 address_space; - u64 flags; - struct hv_vpset hv_vp_set; - u64 gva_list[]; -} __packed; - -struct hv_partition_assist_pg { - u32 tlb_lock_count; -}; #endif diff -u linux-azure-5.4.0/arch/x86/include/asm/insn.h linux-azure-5.4.0/arch/x86/include/asm/insn.h --- linux-azure-5.4.0/arch/x86/include/asm/insn.h +++ linux-azure-5.4.0/arch/x86/include/asm/insn.h @@ -45,6 +45,7 @@ struct insn_field immediate2; /* for 64bit imm or seg16 */ }; + int emulate_prefix_size; insn_attr_t attr; unsigned char opnd_bytes; unsigned char addr_bytes; @@ -128,6 +129,11 @@ return (insn->vex_prefix.nbytes == 4); } +static inline int insn_has_emulate_prefix(struct insn *insn) +{ + return !!insn->emulate_prefix_size; +} + /* Ensure this instruction is decoded completely */ static inline int insn_complete(struct insn *insn) { diff -u linux-azure-5.4.0/arch/x86/include/asm/kvm_host.h linux-azure-5.4.0/arch/x86/include/asm/kvm_host.h --- linux-azure-5.4.0/arch/x86/include/asm/kvm_host.h +++ linux-azure-5.4.0/arch/x86/include/asm/kvm_host.h @@ -829,7 +829,7 @@ u64 hv_crash_param[HV_X64_MSR_CRASH_PARAMS]; u64 hv_crash_ctl; - HV_REFERENCE_TSC_PAGE tsc_ref; + struct ms_hyperv_tsc_page tsc_ref; struct idr conn_to_evt; diff -u linux-azure-5.4.0/arch/x86/include/asm/msr-index.h linux-azure-5.4.0/arch/x86/include/asm/msr-index.h --- linux-azure-5.4.0/arch/x86/include/asm/msr-index.h +++ linux-azure-5.4.0/arch/x86/include/asm/msr-index.h @@ -47,6 +47,8 @@ #define SPEC_CTRL_STIBP BIT(SPEC_CTRL_STIBP_SHIFT) /* STIBP mask */ #define SPEC_CTRL_SSBD_SHIFT 2 /* Speculative Store Bypass Disable bit */ #define SPEC_CTRL_SSBD BIT(SPEC_CTRL_SSBD_SHIFT) /* Speculative Store Bypass Disable */ +#define SPEC_CTRL_RRSBA_DIS_S_SHIFT 6 /* Disable RRSBA behavior */ +#define SPEC_CTRL_RRSBA_DIS_S BIT(SPEC_CTRL_RRSBA_DIS_S_SHIFT) #define MSR_IA32_PRED_CMD 0x00000049 /* Prediction Command */ #define PRED_CMD_IBPB BIT(0) /* Indirect Branch Prediction Barrier */ @@ -82,6 +84,7 @@ #define MSR_IA32_ARCH_CAPABILITIES 0x0000010a #define ARCH_CAP_RDCL_NO BIT(0) /* Not susceptible to Meltdown */ #define ARCH_CAP_IBRS_ALL BIT(1) /* Enhanced IBRS support */ +#define ARCH_CAP_RSBA BIT(2) /* RET may use alternative branch predictors */ #define ARCH_CAP_SKIP_VMENTRY_L1DFLUSH BIT(3) /* Skip L1D flush on vmentry */ #define ARCH_CAP_SSB_NO BIT(4) /* * Not susceptible to Speculative Store Bypass @@ -105,6 +108,41 @@ * Not susceptible to * TSX Async Abort (TAA) vulnerabilities. */ +#define ARCH_CAP_SBDR_SSDP_NO BIT(13) /* + * Not susceptible to SBDR and SSDP + * variants of Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FBSDP_NO BIT(14) /* + * Not susceptible to FBSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_PSDP_NO BIT(15) /* + * Not susceptible to PSDP variant of + * Processor MMIO stale data + * vulnerabilities. + */ +#define ARCH_CAP_FB_CLEAR BIT(17) /* + * VERW clears CPU fill buffer + * even on MDS_NO CPUs. + */ +#define ARCH_CAP_FB_CLEAR_CTRL BIT(18) /* + * MSR_IA32_MCU_OPT_CTRL[FB_CLEAR_DIS] + * bit available to control VERW + * behavior. + */ +#define ARCH_CAP_RRSBA BIT(19) /* + * Indicates RET may use predictors + * other than the RSB. With eIBRS + * enabled predictions in kernel mode + * are restricted to targets in + * kernel. + */ +#define ARCH_CAP_PBRSB_NO BIT(24) /* + * Not susceptible to Post-Barrier + * Return Stack Buffer Predictions. + */ #define MSR_IA32_FLUSH_CMD 0x0000010b #define L1D_FLUSH BIT(0) /* @@ -122,6 +160,7 @@ /* SRBDS support */ #define MSR_IA32_MCU_OPT_CTRL 0x00000123 #define RNGDS_MITG_DIS BIT(0) +#define FB_CLEAR_DIS BIT(3) /* CPU Fill buffer clear disable */ #define MSR_IA32_SYSENTER_CS 0x00000174 #define MSR_IA32_SYSENTER_ESP 0x00000175 diff -u linux-azure-5.4.0/arch/x86/include/asm/nospec-branch.h linux-azure-5.4.0/arch/x86/include/asm/nospec-branch.h --- linux-azure-5.4.0/arch/x86/include/asm/nospec-branch.h +++ linux-azure-5.4.0/arch/x86/include/asm/nospec-branch.h @@ -4,11 +4,14 @@ #define _ASM_X86_NOSPEC_BRANCH_H_ #include +#include #include #include #include #include +#include +#include /* * This should be used immediately before a retpoline alternative. It tells @@ -44,6 +47,7 @@ * the optimal version — two calls, each with their own speculation * trap should their return address end up getting used, in a loop. */ +#ifdef CONFIG_X86_64 #define __FILL_RETURN_BUFFER(reg, nr, sp) \ mov $(nr/2), reg; \ 771: \ @@ -59,9 +63,24 @@ lfence; \ jmp 775b; \ 774: \ + add $(BITS_PER_LONG/8) * 2, sp; \ dec reg; \ jnz 771b; \ + /* barrier for jnz misprediction */ \ + lfence; +#else +/* + * i386 doesn't unconditionally have LFENCE, as such it can't + * do a loop. + */ +#define __FILL_RETURN_BUFFER(reg, nr, sp) \ + .rept nr; \ + call 772f; \ + int3; \ +772:; \ + .endr; \ add $(BITS_PER_LONG/8) * nr, sp; +#endif #ifdef __ASSEMBLY__ @@ -115,7 +134,7 @@ ANNOTATE_NOSPEC_ALTERNATIVE ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; jmp *\reg), \ __stringify(RETPOLINE_JMP \reg), X86_FEATURE_RETPOLINE, \ - __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *\reg), X86_FEATURE_RETPOLINE_AMD + __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; jmp *\reg), X86_FEATURE_RETPOLINE_LFENCE #else jmp *\reg #endif @@ -126,24 +145,34 @@ ANNOTATE_NOSPEC_ALTERNATIVE ALTERNATIVE_2 __stringify(ANNOTATE_RETPOLINE_SAFE; call *\reg), \ __stringify(RETPOLINE_CALL \reg), X86_FEATURE_RETPOLINE,\ - __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; call *\reg), X86_FEATURE_RETPOLINE_AMD + __stringify(lfence; ANNOTATE_RETPOLINE_SAFE; call *\reg), X86_FEATURE_RETPOLINE_LFENCE #else call *\reg #endif .endm +.macro ISSUE_UNBALANCED_RET_GUARD + call .Lunbalanced_ret_guard_\@ + int3 +.Lunbalanced_ret_guard_\@: + add $(BITS_PER_LONG/8), %_ASM_SP + lfence +.endm + /* * A simpler FILL_RETURN_BUFFER macro. Don't make people use the CPP * monstrosity above, manually. */ -.macro FILL_RETURN_BUFFER reg:req nr:req ftr:req -#ifdef CONFIG_RETPOLINE - ANNOTATE_NOSPEC_ALTERNATIVE - ALTERNATIVE "jmp .Lskip_rsb_\@", \ - __stringify(__FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP)) \ - \ftr +.macro FILL_RETURN_BUFFER reg:req nr:req ftr:req ftr2 +.ifb \ftr2 + ALTERNATIVE "jmp .Lskip_rsb_\@", "", \ftr +.else + ALTERNATIVE_2 "jmp .Lskip_rsb_\@", "", \ftr, "jmp .Lunbalanced_\@", \ftr2 +.endif + __FILL_RETURN_BUFFER(\reg,\nr,%_ASM_SP) +.Lunbalanced_\@: + ISSUE_UNBALANCED_RET_GUARD .Lskip_rsb_\@: -#endif .endm #else /* __ASSEMBLY__ */ @@ -171,7 +200,7 @@ "lfence;\n" \ ANNOTATE_RETPOLINE_SAFE \ "call *%[thunk_target]\n", \ - X86_FEATURE_RETPOLINE_AMD) + X86_FEATURE_RETPOLINE_LFENCE) # define THUNK_TARGET(addr) [thunk_target] "r" (addr) #else /* CONFIG_X86_32 */ @@ -201,7 +230,7 @@ "lfence;\n" \ ANNOTATE_RETPOLINE_SAFE \ "call *%[thunk_target]\n", \ - X86_FEATURE_RETPOLINE_AMD) + X86_FEATURE_RETPOLINE_LFENCE) # define THUNK_TARGET(addr) [thunk_target] "rm" (addr) #endif @@ -213,9 +242,12 @@ /* The Spectre V2 mitigation variants */ enum spectre_v2_mitigation { SPECTRE_V2_NONE, - SPECTRE_V2_RETPOLINE_GENERIC, - SPECTRE_V2_RETPOLINE_AMD, - SPECTRE_V2_IBRS_ENHANCED, + SPECTRE_V2_RETPOLINE, + SPECTRE_V2_LFENCE, + SPECTRE_V2_EIBRS, + SPECTRE_V2_EIBRS_RETPOLINE, + SPECTRE_V2_EIBRS_LFENCE, + SPECTRE_V2_IBRS, }; /* The indirect branch speculation control variants */ @@ -279,6 +311,9 @@ /* The Intel SPEC CTRL MSR base value cache */ extern u64 x86_spec_ctrl_base; +DECLARE_PER_CPU(u64, x86_spec_ctrl_current); +extern void write_spec_ctrl_current(u64 val, bool force); +extern u64 spec_ctrl_current(void); /* * With retpoline, we must use IBRS to restrict branch prediction @@ -288,18 +323,16 @@ */ #define firmware_restrict_branch_speculation_start() \ do { \ - u64 val = x86_spec_ctrl_base | SPEC_CTRL_IBRS; \ - \ preempt_disable(); \ - alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \ + alternative_msr_write(MSR_IA32_SPEC_CTRL, \ + spec_ctrl_current() | SPEC_CTRL_IBRS, \ X86_FEATURE_USE_IBRS_FW); \ } while (0) #define firmware_restrict_branch_speculation_end() \ do { \ - u64 val = x86_spec_ctrl_base; \ - \ - alternative_msr_write(MSR_IA32_SPEC_CTRL, val, \ + alternative_msr_write(MSR_IA32_SPEC_CTRL, \ + spec_ctrl_current(), \ X86_FEATURE_USE_IBRS_FW); \ preempt_enable(); \ } while (0) @@ -311,6 +344,8 @@ DECLARE_STATIC_KEY_FALSE(mds_user_clear); DECLARE_STATIC_KEY_FALSE(mds_idle_clear); +DECLARE_STATIC_KEY_FALSE(mmio_stale_data_clear); + #include /** diff -u linux-azure-5.4.0/arch/x86/include/asm/pgtable.h linux-azure-5.4.0/arch/x86/include/asm/pgtable.h --- linux-azure-5.4.0/arch/x86/include/asm/pgtable.h +++ linux-azure-5.4.0/arch/x86/include/asm/pgtable.h @@ -1375,8 +1375,8 @@ #endif #endif -#define PKRU_AD_BIT 0x1 -#define PKRU_WD_BIT 0x2 +#define PKRU_AD_BIT 0x1u +#define PKRU_WD_BIT 0x2u #define PKRU_BITS_PER_PKEY 2 #ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS reverted: --- linux-azure-5.4.0/arch/x86/include/uapi/asm/sgx_oot.h +++ linux-azure-5.4.0.orig/arch/x86/include/uapi/asm/sgx_oot.h @@ -1,114 +0,0 @@ -/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) WITH Linux-syscall-note */ -/* - * Copyright(c) 2016-19 Intel Corporation. - */ -#ifndef _UAPI_ASM_X86_SGX_H -#define _UAPI_ASM_X86_SGX_H - -#include -#include - -/** - * enum sgx_epage_flags - page control flags - * %SGX_PAGE_MEASURE: Measure the page contents with a sequence of - * ENCLS[EEXTEND] operations. - */ -enum sgx_page_flags { - SGX_PAGE_MEASURE = 0x01, -}; - -#define SGX_MAGIC 0xA4 - -#define SGX_IOC_ENCLAVE_CREATE \ - _IOW(SGX_MAGIC, 0x00, struct sgx_enclave_create) -#define SGX_IOC_ENCLAVE_ADD_PAGES \ - _IOWR(SGX_MAGIC, 0x01, struct sgx_enclave_add_pages) -#define SGX_IOC_ENCLAVE_INIT \ - _IOW(SGX_MAGIC, 0x02, struct sgx_enclave_init) -#define SGX_IOC_ENCLAVE_SET_ATTRIBUTE \ - _IOW(SGX_MAGIC, 0x03, struct sgx_enclave_set_attribute) - -/** - * struct sgx_enclave_create - parameter structure for the - * %SGX_IOC_ENCLAVE_CREATE ioctl - * @src: address for the SECS page data - */ -struct sgx_enclave_create { - __u64 src; -}; - -/** - * struct sgx_enclave_add_pages - parameter structure for the - * %SGX_IOC_ENCLAVE_ADD_PAGE ioctl - * @src: start address for the page data - * @offset: starting page offset - * @length: length of the data (multiple of the page size) - * @secinfo: address for the SECINFO data - * @flags: page control flags - * @count: number of bytes added (multiple of the page size) - */ -struct sgx_enclave_add_pages { - __u64 src; - __u64 offset; - __u64 length; - __u64 secinfo; - __u64 flags; - __u64 count; -}; - -/** - * struct sgx_enclave_init - parameter structure for the - * %SGX_IOC_ENCLAVE_INIT ioctl - * @sigstruct: address for the SIGSTRUCT data - */ -struct sgx_enclave_init { - __u64 sigstruct; -}; - -/** - * struct sgx_enclave_set_attribute - parameter structure for the - * %SGX_IOC_ENCLAVE_SET_ATTRIBUTE ioctl - * @attribute_fd: file handle of the attribute file in the securityfs - */ -struct sgx_enclave_set_attribute { - __u64 attribute_fd; -}; - -/** - * struct sgx_enclave_exception - structure to report exceptions encountered in - * __vdso_sgx_enter_enclave() - * - * @leaf: ENCLU leaf from \%eax at time of exception - * @trapnr: exception trap number, a.k.a. fault vector - * @error_code: exception error code - * @address: exception address, e.g. CR2 on a #PF - * @reserved: reserved for future use - */ -struct sgx_enclave_exception { - __u32 leaf; - __u16 trapnr; - __u16 error_code; - __u64 address; - __u64 reserved[2]; -}; - -/** - * typedef sgx_enclave_exit_handler_t - Exit handler function accepted by - * __vdso_sgx_enter_enclave() - * - * @rdi: RDI at the time of enclave exit - * @rsi: RSI at the time of enclave exit - * @rdx: RDX at the time of enclave exit - * @ursp: RSP at the time of enclave exit (untrusted stack) - * @r8: R8 at the time of enclave exit - * @r9: R9 at the time of enclave exit - * @tcs: Thread Control Structure used to enter enclave - * @ret: 0 on success (EEXIT), -EFAULT on an exception - * @e: Pointer to struct sgx_enclave_exception (as provided by caller) - */ -typedef int (*sgx_enclave_exit_handler_t)(long rdi, long rsi, long rdx, - long ursp, long r8, long r9, - void *tcs, int ret, - struct sgx_enclave_exception *e); - -#endif /* _UAPI_ASM_X86_SGX_H */ diff -u linux-azure-5.4.0/arch/x86/kernel/acpi/boot.c linux-azure-5.4.0/arch/x86/kernel/acpi/boot.c --- linux-azure-5.4.0/arch/x86/kernel/acpi/boot.c +++ linux-azure-5.4.0/arch/x86/kernel/acpi/boot.c @@ -1339,6 +1339,17 @@ return 0; } +static int __init disable_acpi_xsdt(const struct dmi_system_id *d) +{ + if (!acpi_force) { + pr_notice("%s detected: force use of acpi=rsdt\n", d->ident); + acpi_gbl_do_not_use_xsdt = TRUE; + } else { + pr_notice("Warning: DMI blacklist says broken, but acpi XSDT forced\n"); + } + return 0; +} + static int __init dmi_disable_acpi(const struct dmi_system_id *d) { if (!acpi_force) { @@ -1463,6 +1474,19 @@ DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"), }, }, + /* + * Boxes that need ACPI XSDT use disabled due to corrupted tables + */ + { + .callback = disable_acpi_xsdt, + .ident = "Advantech DAC-BJ01", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "NEC"), + DMI_MATCH(DMI_PRODUCT_NAME, "Bearlake CRB Board"), + DMI_MATCH(DMI_BIOS_VERSION, "V1.12"), + DMI_MATCH(DMI_BIOS_DATE, "02/01/2011"), + }, + }, {} }; diff -u linux-azure-5.4.0/arch/x86/kernel/apic/apic.c linux-azure-5.4.0/arch/x86/kernel/apic/apic.c --- linux-azure-5.4.0/arch/x86/kernel/apic/apic.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/apic.c @@ -168,7 +168,7 @@ { apic_calibrate_pmtmr = 1; notsc_setup(NULL); - return 0; + return 1; } __setup("apicpmtimer", setup_apicpmtimer); #endif @@ -2579,6 +2579,7 @@ end_local_APIC_setup(); irq_remap_enable_fault_handling(); setup_IO_APIC(); + lapic_update_legacy_vectors(); } #ifdef CONFIG_UP_LATE_INIT diff -u linux-azure-5.4.0/arch/x86/kernel/apic/io_apic.c linux-azure-5.4.0/arch/x86/kernel/apic/io_apic.c --- linux-azure-5.4.0/arch/x86/kernel/apic/io_apic.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/io_apic.c @@ -548,7 +548,7 @@ /* Check delivery_mode to be sure we're not clearing an SMI pin */ entry = ioapic_read_entry(apic, pin); - if (entry.delivery_mode == dest_SMI) + if (entry.delivery_mode == APIC_DELIVERY_MODE_SMI) return; /* @@ -1391,7 +1391,8 @@ /* If the interrupt line is enabled and in ExtInt mode * I have found the pin where the i8259 is connected. */ - if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) { + if ((entry.mask == 0) && + (entry.delivery_mode == APIC_DELIVERY_MODE_EXTINT)) { ioapic_i8259.apic = apic; ioapic_i8259.pin = pin; goto found_i8259; @@ -1439,7 +1440,7 @@ entry.trigger = IOAPIC_EDGE; entry.polarity = IOAPIC_POL_HIGH; entry.dest_mode = IOAPIC_DEST_MODE_PHYSICAL; - entry.delivery_mode = dest_ExtINT; + entry.delivery_mode = APIC_DELIVERY_MODE_EXTINT; entry.dest = read_apic_id(); /* @@ -1961,7 +1962,8 @@ .irq_set_affinity = ioapic_set_affinity, .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_get_irqchip_state = ioapic_irq_get_chip_state, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | + IRQCHIP_AFFINITY_PRE_STARTUP, }; static struct irq_chip ioapic_ir_chip __read_mostly = { @@ -1974,7 +1976,8 @@ .irq_set_affinity = ioapic_set_affinity, .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_get_irqchip_state = ioapic_irq_get_chip_state, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | + IRQCHIP_AFFINITY_PRE_STARTUP, }; static inline void init_IO_APIC_traps(void) @@ -2070,7 +2073,7 @@ entry1.dest_mode = IOAPIC_DEST_MODE_PHYSICAL; entry1.mask = IOAPIC_UNMASKED; entry1.dest = hard_smp_processor_id(); - entry1.delivery_mode = dest_ExtINT; + entry1.delivery_mode = APIC_DELIVERY_MODE_EXTINT; entry1.polarity = entry0.polarity; entry1.trigger = IOAPIC_EDGE; entry1.vector = 0; @@ -2971,7 +2974,7 @@ struct IO_APIC_route_entry *entry) { memset(entry, 0, sizeof(*entry)); - entry->delivery_mode = apic->irq_delivery_mode; + entry->delivery_mode = apic->delivery_mode; entry->dest_mode = apic->irq_dest_mode; entry->dest = cfg->dest_apicid; entry->vector = cfg->vector; diff -u linux-azure-5.4.0/arch/x86/kernel/apic/msi.c linux-azure-5.4.0/arch/x86/kernel/apic/msi.c --- linux-azure-5.4.0/arch/x86/kernel/apic/msi.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/msi.c @@ -86,11 +86,13 @@ * The quirk bit is not set in this case. * - The new vector is the same as the old vector * - The old vector is MANAGED_IRQ_SHUTDOWN_VECTOR (interrupt starts up) + * - The interrupt is not yet started up * - The new destination CPU is the same as the old destination CPU */ if (!irqd_msi_nomask_quirk(irqd) || cfg->vector == old_cfg.vector || old_cfg.vector == MANAGED_IRQ_SHUTDOWN_VECTOR || + !irqd_is_started(irqd) || cfg->dest_apicid == old_cfg.dest_apicid) { irq_msi_update_msg(irqd, cfg); return ret; @@ -178,7 +180,8 @@ .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_compose_msi_msg = irq_msi_compose_msg, .irq_set_affinity = msi_set_affinity, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | + IRQCHIP_AFFINITY_PRE_STARTUP, }; int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) @@ -279,7 +282,8 @@ .irq_ack = irq_chip_ack_parent, .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_set_vcpu_affinity = irq_chip_set_vcpu_affinity_parent, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | + IRQCHIP_AFFINITY_PRE_STARTUP, }; static struct msi_domain_info pci_msi_ir_domain_info = { @@ -322,7 +326,8 @@ .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_compose_msi_msg = irq_msi_compose_msg, .irq_write_msi_msg = dmar_msi_write_msg, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | + IRQCHIP_AFFINITY_PRE_STARTUP, }; static irq_hw_number_t dmar_msi_get_hwirq(struct msi_domain_info *info, @@ -420,7 +425,7 @@ .irq_retrigger = irq_chip_retrigger_hierarchy, .irq_compose_msi_msg = irq_msi_compose_msg, .irq_write_msi_msg = hpet_msi_write_msg, - .flags = IRQCHIP_SKIP_SET_WAKE, + .flags = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_AFFINITY_PRE_STARTUP, }; static irq_hw_number_t hpet_msi_get_hwirq(struct msi_domain_info *info, diff -u linux-azure-5.4.0/arch/x86/kernel/apic/vector.c linux-azure-5.4.0/arch/x86/kernel/apic/vector.c --- linux-azure-5.4.0/arch/x86/kernel/apic/vector.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/vector.c @@ -680,6 +680,26 @@ irq_matrix_assign_system(vector_matrix, ISA_IRQ_VECTOR(irq), replace); } +void __init lapic_update_legacy_vectors(void) +{ + unsigned int i; + + if (IS_ENABLED(CONFIG_X86_IO_APIC) && nr_ioapics > 0) + return; + + /* + * If the IO/APIC is disabled via config, kernel command line or + * lack of enumeration then all legacy interrupts are routed + * through the PIC. Make sure that they are marked as legacy + * vectors. PIC_CASCADE_IRQ has already been marked in + * lapic_assign_system_vectors(). + */ + for (i = 0; i < nr_legacy_irqs(); i++) { + if (i != PIC_CASCADE_IR) + lapic_assign_legacy_vector(i, true); + } +} + void __init lapic_assign_system_vectors(void) { unsigned int i, vector = 0; diff -u linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_cluster.c linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_cluster.c --- linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_cluster.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_cluster.c @@ -186,7 +186,7 @@ .apic_id_valid = x2apic_apic_id_valid, .apic_id_registered = x2apic_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 1, /* logical */ .disable_esr = 0, diff -u linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_phys.c linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_phys.c --- linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_phys.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_phys.c @@ -160,7 +160,7 @@ .apic_id_valid = x2apic_apic_id_valid, .apic_id_registered = x2apic_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 0, /* physical */ .disable_esr = 0, diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/amd.c linux-azure-5.4.0/arch/x86/kernel/cpu/amd.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/amd.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/amd.c @@ -894,12 +894,21 @@ node_reclaim_distance = 32; #endif - /* - * Fix erratum 1076: CPB feature bit not being set in CPUID. - * Always set it, except when running under a hypervisor. - */ - if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && !cpu_has(c, X86_FEATURE_CPB)) - set_cpu_cap(c, X86_FEATURE_CPB); + /* Fix up CPUID bits, but only if not virtualised. */ + if (!cpu_has(c, X86_FEATURE_HYPERVISOR)) { + + /* Erratum 1076: CPB feature bit not being set in CPUID. */ + if (!cpu_has(c, X86_FEATURE_CPB)) + set_cpu_cap(c, X86_FEATURE_CPB); + + /* + * Zen3 (Fam19 model < 0x10) parts are not susceptible to + * Branch Type Confusion, but predate the allocation of the + * BTC_NO bit. + */ + if (c->x86 == 0x19 && !cpu_has(c, X86_FEATURE_BTC_NO)) + set_cpu_cap(c, X86_FEATURE_BTC_NO); + } } static void init_amd(struct cpuinfo_x86 *c) @@ -987,6 +996,8 @@ if (cpu_has(c, X86_FEATURE_IRPERF) && !cpu_has_amd_erratum(c, amd_erratum_1054)) msr_set_bit(MSR_K7_HWCR, MSR_K7_HWCR_IRPERF_EN_BIT); + + check_null_seg_clears_base(c); } #ifdef CONFIG_X86_32 diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/bugs.c linux-azure-5.4.0/arch/x86/kernel/cpu/bugs.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/bugs.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/bugs.c @@ -31,28 +31,57 @@ #include #include #include +#include #include "cpu.h" static void __init spectre_v1_select_mitigation(void); static void __init spectre_v2_select_mitigation(void); +static void __init retbleed_select_mitigation(void); +static void __init spectre_v2_user_select_mitigation(void); static void __init ssb_select_mitigation(void); static void __init l1tf_select_mitigation(void); static void __init mds_select_mitigation(void); -static void __init mds_print_mitigation(void); +static void __init md_clear_update_mitigation(void); +static void __init md_clear_select_mitigation(void); static void __init taa_select_mitigation(void); +static void __init mmio_select_mitigation(void); static void __init srbds_select_mitigation(void); -/* The base value of the SPEC_CTRL MSR that always has to be preserved. */ +/* The base value of the SPEC_CTRL MSR without task-specific bits set */ u64 x86_spec_ctrl_base; EXPORT_SYMBOL_GPL(x86_spec_ctrl_base); + +/* The current value of the SPEC_CTRL MSR with task-specific bits set */ +DEFINE_PER_CPU(u64, x86_spec_ctrl_current); +EXPORT_SYMBOL_GPL(x86_spec_ctrl_current); + static DEFINE_MUTEX(spec_ctrl_mutex); /* - * The vendor and possibly platform specific bits which can be modified in - * x86_spec_ctrl_base. + * Keep track of the SPEC_CTRL MSR value for the current task, which may differ + * from x86_spec_ctrl_base due to STIBP/SSB in __speculation_ctrl_update(). */ -static u64 __ro_after_init x86_spec_ctrl_mask = SPEC_CTRL_IBRS; +void write_spec_ctrl_current(u64 val, bool force) +{ + if (this_cpu_read(x86_spec_ctrl_current) == val) + return; + + this_cpu_write(x86_spec_ctrl_current, val); + + /* + * When KERNEL_IBRS this MSR is written on return-to-user, unless + * forced the update can be delayed until that time. + */ + if (force || !cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS)) + wrmsrl(MSR_IA32_SPEC_CTRL, val); +} + +u64 spec_ctrl_current(void) +{ + return this_cpu_read(x86_spec_ctrl_current); +} +EXPORT_SYMBOL_GPL(spec_ctrl_current); /* * AMD specific MSR info for Speculative Store Bypass control. @@ -75,6 +104,10 @@ DEFINE_STATIC_KEY_FALSE(mds_idle_clear); EXPORT_SYMBOL_GPL(mds_idle_clear); +/* Controls CPU Fill buffer clear before KVM guest MMIO accesses */ +DEFINE_STATIC_KEY_FALSE(mmio_stale_data_clear); +EXPORT_SYMBOL_GPL(mmio_stale_data_clear); + void __init check_bugs(void) { identify_boot_cpu(); @@ -99,23 +132,24 @@ rdmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); - /* Allow STIBP in MSR_SPEC_CTRL if supported */ - if (boot_cpu_has(X86_FEATURE_STIBP)) - x86_spec_ctrl_mask |= SPEC_CTRL_STIBP; - /* Select the proper CPU mitigations before patching alternatives: */ spectre_v1_select_mitigation(); spectre_v2_select_mitigation(); + /* + * retbleed_select_mitigation() relies on the state set by + * spectre_v2_select_mitigation(); specifically it wants to know about + * spectre_v2=ibrs. + */ + retbleed_select_mitigation(); + /* + * spectre_v2_user_select_mitigation() relies on the state set by + * retbleed_select_mitigation(); specifically the STIBP selection is + * forced for UNRET. + */ + spectre_v2_user_select_mitigation(); ssb_select_mitigation(); l1tf_select_mitigation(); - mds_select_mitigation(); - taa_select_mitigation(); + md_clear_select_mitigation(); srbds_select_mitigation(); - /* - * As MDS and TAA mitigations are inter-related, print MDS - * mitigation until after TAA mitigation selection is done. - */ - mds_print_mitigation(); - arch_smt_update(); @@ -151,31 +185,17 @@ #endif } +/* + * NOTE: For VMX, this function is not called in the vmexit path. + * It uses vmx_spec_ctrl_restore_host() instead. + */ void x86_virt_spec_ctrl(u64 guest_spec_ctrl, u64 guest_virt_spec_ctrl, bool setguest) { - u64 msrval, guestval, hostval = x86_spec_ctrl_base; + u64 msrval, guestval = guest_spec_ctrl, hostval = spec_ctrl_current(); struct thread_info *ti = current_thread_info(); - /* Is MSR_SPEC_CTRL implemented ? */ if (static_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) { - /* - * Restrict guest_spec_ctrl to supported values. Clear the - * modifiable bits in the host base value and or the - * modifiable bits from the guest value. - */ - guestval = hostval & ~x86_spec_ctrl_mask; - guestval |= guest_spec_ctrl & x86_spec_ctrl_mask; - - /* SSBD controlled in MSR_SPEC_CTRL */ - if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) || - static_cpu_has(X86_FEATURE_AMD_SSBD)) - hostval |= ssbd_tif_to_spec_ctrl(ti->flags); - - /* Conditional STIBP enabled? */ - if (static_branch_unlikely(&switch_to_cond_stibp)) - hostval |= stibp_tif_to_spec_ctrl(ti->flags); - if (hostval != guestval) { msrval = setguest ? guestval : hostval; wrmsrl(MSR_IA32_SPEC_CTRL, msrval); @@ -258,10 +278,2 @@ -static void __init mds_print_mitigation(void) -{ - if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off()) - return; - - pr_info("%s\n", mds_strings[mds_mitigation]); -} - static int __init mds_cmdline(char *str) @@ -311,7 +323,7 @@ /* TSX previously disabled by tsx=off */ if (!boot_cpu_has(X86_FEATURE_RTM)) { taa_mitigation = TAA_MITIGATION_TSX_DISABLED; - goto out; + return; } if (cpu_mitigations_off()) { @@ -325,7 +337,7 @@ */ if (taa_mitigation == TAA_MITIGATION_OFF && mds_mitigation == MDS_MITIGATION_OFF) - goto out; + return; if (boot_cpu_has(X86_FEATURE_MD_CLEAR)) taa_mitigation = TAA_MITIGATION_VERW; @@ -357,18 +369,6 @@ if (taa_nosmt || cpu_mitigations_auto_nosmt()) cpu_smt_disable(false); - - /* - * Update MDS mitigation, if necessary, as the mds_user_clear is - * now enabled for TAA mitigation. - */ - if (mds_mitigation == MDS_MITIGATION_OFF && - boot_cpu_has_bug(X86_BUG_MDS)) { - mds_mitigation = MDS_MITIGATION_FULL; - mds_select_mitigation(); - } -out: - pr_info("%s\n", taa_strings[taa_mitigation]); } static int __init tsx_async_abort_parse_cmdline(char *str) @@ -393,6 +393,154 @@ early_param("tsx_async_abort", tsx_async_abort_parse_cmdline); #undef pr_fmt +#define pr_fmt(fmt) "MMIO Stale Data: " fmt + +enum mmio_mitigations { + MMIO_MITIGATION_OFF, + MMIO_MITIGATION_UCODE_NEEDED, + MMIO_MITIGATION_VERW, +}; + +/* Default mitigation for Processor MMIO Stale Data vulnerabilities */ +static enum mmio_mitigations mmio_mitigation __ro_after_init = MMIO_MITIGATION_VERW; +static bool mmio_nosmt __ro_after_init = false; + +static const char * const mmio_strings[] = { + [MMIO_MITIGATION_OFF] = "Vulnerable", + [MMIO_MITIGATION_UCODE_NEEDED] = "Vulnerable: Clear CPU buffers attempted, no microcode", + [MMIO_MITIGATION_VERW] = "Mitigation: Clear CPU buffers", +}; + +static void __init mmio_select_mitigation(void) +{ + u64 ia32_cap; + + if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA) || + boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN) || + cpu_mitigations_off()) { + mmio_mitigation = MMIO_MITIGATION_OFF; + return; + } + + if (mmio_mitigation == MMIO_MITIGATION_OFF) + return; + + ia32_cap = x86_read_arch_cap_msr(); + + /* + * Enable CPU buffer clear mitigation for host and VMM, if also affected + * by MDS or TAA. Otherwise, enable mitigation for VMM only. + */ + if (boot_cpu_has_bug(X86_BUG_MDS) || (boot_cpu_has_bug(X86_BUG_TAA) && + boot_cpu_has(X86_FEATURE_RTM))) + static_branch_enable(&mds_user_clear); + else + static_branch_enable(&mmio_stale_data_clear); + + /* + * If Processor-MMIO-Stale-Data bug is present and Fill Buffer data can + * be propagated to uncore buffers, clearing the Fill buffers on idle + * is required irrespective of SMT state. + */ + if (!(ia32_cap & ARCH_CAP_FBSDP_NO)) + static_branch_enable(&mds_idle_clear); + + /* + * Check if the system has the right microcode. + * + * CPU Fill buffer clear mitigation is enumerated by either an explicit + * FB_CLEAR or by the presence of both MD_CLEAR and L1D_FLUSH on MDS + * affected systems. + */ + if ((ia32_cap & ARCH_CAP_FB_CLEAR) || + (boot_cpu_has(X86_FEATURE_MD_CLEAR) && + boot_cpu_has(X86_FEATURE_FLUSH_L1D) && + !(ia32_cap & ARCH_CAP_MDS_NO))) + mmio_mitigation = MMIO_MITIGATION_VERW; + else + mmio_mitigation = MMIO_MITIGATION_UCODE_NEEDED; + + if (mmio_nosmt || cpu_mitigations_auto_nosmt()) + cpu_smt_disable(false); +} + +static int __init mmio_stale_data_parse_cmdline(char *str) +{ + if (!boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) + return 0; + + if (!str) + return -EINVAL; + + if (!strcmp(str, "off")) { + mmio_mitigation = MMIO_MITIGATION_OFF; + } else if (!strcmp(str, "full")) { + mmio_mitigation = MMIO_MITIGATION_VERW; + } else if (!strcmp(str, "full,nosmt")) { + mmio_mitigation = MMIO_MITIGATION_VERW; + mmio_nosmt = true; + } + + return 0; +} +early_param("mmio_stale_data", mmio_stale_data_parse_cmdline); + +#undef pr_fmt +#define pr_fmt(fmt) "" fmt + +static void __init md_clear_update_mitigation(void) +{ + if (cpu_mitigations_off()) + return; + + if (!static_key_enabled(&mds_user_clear)) + goto out; + + /* + * mds_user_clear is now enabled. Update MDS, TAA and MMIO Stale Data + * mitigation, if necessary. + */ + if (mds_mitigation == MDS_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_MDS)) { + mds_mitigation = MDS_MITIGATION_FULL; + mds_select_mitigation(); + } + if (taa_mitigation == TAA_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_TAA)) { + taa_mitigation = TAA_MITIGATION_VERW; + taa_select_mitigation(); + } + if (mmio_mitigation == MMIO_MITIGATION_OFF && + boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) { + mmio_mitigation = MMIO_MITIGATION_VERW; + mmio_select_mitigation(); + } +out: + if (boot_cpu_has_bug(X86_BUG_MDS)) + pr_info("MDS: %s\n", mds_strings[mds_mitigation]); + if (boot_cpu_has_bug(X86_BUG_TAA)) + pr_info("TAA: %s\n", taa_strings[taa_mitigation]); + if (boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) + pr_info("MMIO Stale Data: %s\n", mmio_strings[mmio_mitigation]); + else if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN)) + pr_info("MMIO Stale Data: Unknown: No mitigations\n"); +} + +static void __init md_clear_select_mitigation(void) +{ + mds_select_mitigation(); + taa_select_mitigation(); + mmio_select_mitigation(); + + /* + * As MDS, TAA and MMIO Stale Data mitigations are inter-related, update + * and print their mitigation after MDS, TAA and MMIO Stale Data + * mitigation selection is done. + */ + md_clear_update_mitigation(); +} + +#undef pr_fmt #define pr_fmt(fmt) "SRBDS: " fmt enum srbds_mitigations { @@ -453,11 +601,13 @@ return; /* - * Check to see if this is one of the MDS_NO systems supporting - * TSX that are only exposed to SRBDS when TSX is enabled. + * Check to see if this is one of the MDS_NO systems supporting TSX that + * are only exposed to SRBDS when TSX is enabled or when CPU is affected + * by Processor MMIO Stale Data vulnerability. */ ia32_cap = x86_read_arch_cap_msr(); - if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM)) + if ((ia32_cap & ARCH_CAP_MDS_NO) && !boot_cpu_has(X86_FEATURE_RTM) && + !boot_cpu_has_bug(X86_BUG_MMIO_STALE_DATA)) srbds_mitigation = SRBDS_MITIGATION_TSX_OFF; else if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) srbds_mitigation = SRBDS_MITIGATION_HYPERVISOR; @@ -573,12 +723,103 @@ } early_param("nospectre_v1", nospectre_v1_cmdline); -#undef pr_fmt -#define pr_fmt(fmt) "Spectre V2 : " fmt - static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init = SPECTRE_V2_NONE; +#undef pr_fmt +#define pr_fmt(fmt) "RETBleed: " fmt + +enum retbleed_mitigation { + RETBLEED_MITIGATION_NONE, + RETBLEED_MITIGATION_IBRS, + RETBLEED_MITIGATION_EIBRS, +}; + +enum retbleed_mitigation_cmd { + RETBLEED_CMD_OFF, + RETBLEED_CMD_AUTO, +}; + +const char * const retbleed_strings[] = { + [RETBLEED_MITIGATION_NONE] = "Vulnerable", + [RETBLEED_MITIGATION_IBRS] = "Mitigation: IBRS", + [RETBLEED_MITIGATION_EIBRS] = "Mitigation: Enhanced IBRS", +}; + +static enum retbleed_mitigation retbleed_mitigation __ro_after_init = + RETBLEED_MITIGATION_NONE; +static enum retbleed_mitigation_cmd retbleed_cmd __ro_after_init = + RETBLEED_CMD_AUTO; + +static int __init retbleed_parse_cmdline(char *str) +{ + if (!str) + return -EINVAL; + + if (!strcmp(str, "off")) + retbleed_cmd = RETBLEED_CMD_OFF; + else if (!strcmp(str, "auto")) + retbleed_cmd = RETBLEED_CMD_AUTO; + else + pr_err("Unknown retbleed option (%s). Defaulting to 'auto'\n", str); + + return 0; +} +early_param("retbleed", retbleed_parse_cmdline); + +#define RETBLEED_UNTRAIN_MSG "WARNING: BTB untrained return thunk mitigation is only effective on AMD/Hygon!\n" +#define RETBLEED_COMPILER_MSG "WARNING: kernel not compiled with RETPOLINE or -mfunction-return capable compiler!\n" +#define RETBLEED_INTEL_MSG "WARNING: Spectre v2 mitigation leaves CPU vulnerable to RETBleed attacks, data leaks possible!\n" + +static void __init retbleed_select_mitigation(void) +{ + if (!boot_cpu_has_bug(X86_BUG_RETBLEED) || cpu_mitigations_off()) + return; + + switch (retbleed_cmd) { + case RETBLEED_CMD_OFF: + return; + + case RETBLEED_CMD_AUTO: + default: + /* + * The Intel mitigation (IBRS) was already selected in + * spectre_v2_select_mitigation(). + */ + + break; + } + + switch (retbleed_mitigation) { + default: + break; + } + + /* + * Let IBRS trump all on Intel without affecting the effects of the + * retbleed= cmdline option. + */ + if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) { + switch (spectre_v2_enabled) { + case SPECTRE_V2_IBRS: + retbleed_mitigation = RETBLEED_MITIGATION_IBRS; + break; + case SPECTRE_V2_EIBRS: + case SPECTRE_V2_EIBRS_RETPOLINE: + case SPECTRE_V2_EIBRS_LFENCE: + retbleed_mitigation = RETBLEED_MITIGATION_EIBRS; + break; + default: + pr_err(RETBLEED_INTEL_MSG); + } + } + + pr_info("%s\n", retbleed_strings[retbleed_mitigation]); +} + +#undef pr_fmt +#define pr_fmt(fmt) "Spectre V2 : " fmt + static enum spectre_v2_user_mitigation spectre_v2_user_stibp __ro_after_init = SPECTRE_V2_USER_NONE; static enum spectre_v2_user_mitigation spectre_v2_user_ibpb __ro_after_init = @@ -605,6 +846,33 @@ static inline const char *spectre_v2_module_string(void) { return ""; } #endif +#define SPECTRE_V2_LFENCE_MSG "WARNING: LFENCE mitigation is not recommended for this CPU, data leaks possible!\n" +#define SPECTRE_V2_EIBRS_EBPF_MSG "WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!\n" +#define SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG "WARNING: Unprivileged eBPF is enabled with eIBRS+LFENCE mitigation and SMT, data leaks possible via Spectre v2 BHB attacks!\n" +#define SPECTRE_V2_IBRS_PERF_MSG "WARNING: IBRS mitigation selected on Enhanced IBRS CPU, this may cause unnecessary performance loss\n" + +#ifdef CONFIG_BPF_SYSCALL +void unpriv_ebpf_notify(int new_state) +{ + if (new_state) + return; + + /* Unprivileged eBPF is enabled */ + + switch (spectre_v2_enabled) { + case SPECTRE_V2_EIBRS: + pr_err(SPECTRE_V2_EIBRS_EBPF_MSG); + break; + case SPECTRE_V2_EIBRS_LFENCE: + if (sched_smt_active()) + pr_err(SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG); + break; + default: + break; + } +} +#endif + static inline bool match_option(const char *arg, int arglen, const char *opt) { int len = strlen(opt); @@ -619,7 +887,11 @@ SPECTRE_V2_CMD_FORCE, SPECTRE_V2_CMD_RETPOLINE, SPECTRE_V2_CMD_RETPOLINE_GENERIC, - SPECTRE_V2_CMD_RETPOLINE_AMD, + SPECTRE_V2_CMD_RETPOLINE_LFENCE, + SPECTRE_V2_CMD_EIBRS, + SPECTRE_V2_CMD_EIBRS_RETPOLINE, + SPECTRE_V2_CMD_EIBRS_LFENCE, + SPECTRE_V2_CMD_IBRS, }; enum spectre_v2_user_cmd { @@ -660,13 +932,15 @@ pr_info("spectre_v2_user=%s forced on command line.\n", reason); } +static __ro_after_init enum spectre_v2_mitigation_cmd spectre_v2_cmd; + static enum spectre_v2_user_cmd __init -spectre_v2_parse_user_cmdline(enum spectre_v2_mitigation_cmd v2_cmd) +spectre_v2_parse_user_cmdline(void) { char arg[20]; int ret, i; - switch (v2_cmd) { + switch (spectre_v2_cmd) { case SPECTRE_V2_CMD_NONE: return SPECTRE_V2_USER_CMD_NONE; case SPECTRE_V2_CMD_FORCE: @@ -692,8 +966,16 @@ return SPECTRE_V2_USER_CMD_AUTO; } +static inline bool spectre_v2_in_ibrs_mode(enum spectre_v2_mitigation mode) +{ + return mode == SPECTRE_V2_IBRS || + mode == SPECTRE_V2_EIBRS || + mode == SPECTRE_V2_EIBRS_RETPOLINE || + mode == SPECTRE_V2_EIBRS_LFENCE; +} + static void __init -spectre_v2_user_select_mitigation(enum spectre_v2_mitigation_cmd v2_cmd) +spectre_v2_user_select_mitigation(void) { enum spectre_v2_user_mitigation mode = SPECTRE_V2_USER_NONE; bool smt_possible = IS_ENABLED(CONFIG_SMP); @@ -706,7 +988,7 @@ cpu_smt_control == CPU_SMT_NOT_SUPPORTED) smt_possible = false; - cmd = spectre_v2_parse_user_cmdline(v2_cmd); + cmd = spectre_v2_parse_user_cmdline(); switch (cmd) { case SPECTRE_V2_USER_CMD_NONE: goto set_mode; @@ -754,10 +1036,12 @@ } /* - * If enhanced IBRS is enabled or SMT impossible, STIBP is not - * required. + * If no STIBP, IBRS or enhanced IBRS is enabled, or SMT impossible, + * STIBP is not required. */ - if (!smt_possible || spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED) + if (!boot_cpu_has(X86_FEATURE_STIBP) || + !smt_possible || + spectre_v2_in_ibrs_mode(spectre_v2_enabled)) return; /* @@ -769,12 +1053,6 @@ boot_cpu_has(X86_FEATURE_AMD_STIBP_ALWAYS_ON)) mode = SPECTRE_V2_USER_STRICT_PREFERRED; - /* - * If STIBP is not available, clear the STIBP mode. - */ - if (!boot_cpu_has(X86_FEATURE_STIBP)) - mode = SPECTRE_V2_USER_NONE; - spectre_v2_user_stibp = mode; set_mode: @@ -783,9 +1061,12 @@ static const char * const spectre_v2_strings[] = { [SPECTRE_V2_NONE] = "Vulnerable", - [SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline", - [SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline", - [SPECTRE_V2_IBRS_ENHANCED] = "Mitigation: Enhanced IBRS", + [SPECTRE_V2_RETPOLINE] = "Mitigation: Retpolines", + [SPECTRE_V2_LFENCE] = "Mitigation: LFENCE", + [SPECTRE_V2_EIBRS] = "Mitigation: Enhanced IBRS", + [SPECTRE_V2_EIBRS_LFENCE] = "Mitigation: Enhanced IBRS + LFENCE", + [SPECTRE_V2_EIBRS_RETPOLINE] = "Mitigation: Enhanced IBRS + Retpolines", + [SPECTRE_V2_IBRS] = "Mitigation: IBRS", }; static const struct { @@ -796,9 +1077,14 @@ { "off", SPECTRE_V2_CMD_NONE, false }, { "on", SPECTRE_V2_CMD_FORCE, true }, { "retpoline", SPECTRE_V2_CMD_RETPOLINE, false }, - { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_AMD, false }, + { "retpoline,amd", SPECTRE_V2_CMD_RETPOLINE_LFENCE, false }, + { "retpoline,lfence", SPECTRE_V2_CMD_RETPOLINE_LFENCE, false }, { "retpoline,generic", SPECTRE_V2_CMD_RETPOLINE_GENERIC, false }, + { "eibrs", SPECTRE_V2_CMD_EIBRS, false }, + { "eibrs,lfence", SPECTRE_V2_CMD_EIBRS_LFENCE, false }, + { "eibrs,retpoline", SPECTRE_V2_CMD_EIBRS_RETPOLINE, false }, { "auto", SPECTRE_V2_CMD_AUTO, false }, + { "ibrs", SPECTRE_V2_CMD_IBRS, false }, }; static void __init spec_v2_print_cond(const char *reason, bool secure) @@ -834,17 +1120,48 @@ } if ((cmd == SPECTRE_V2_CMD_RETPOLINE || - cmd == SPECTRE_V2_CMD_RETPOLINE_AMD || - cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC) && + cmd == SPECTRE_V2_CMD_RETPOLINE_LFENCE || + cmd == SPECTRE_V2_CMD_RETPOLINE_GENERIC || + cmd == SPECTRE_V2_CMD_EIBRS_LFENCE || + cmd == SPECTRE_V2_CMD_EIBRS_RETPOLINE) && !IS_ENABLED(CONFIG_RETPOLINE)) { - pr_err("%s selected but not compiled in. Switching to AUTO select\n", mitigation_options[i].option); + pr_err("%s selected but not compiled in. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if ((cmd == SPECTRE_V2_CMD_EIBRS || + cmd == SPECTRE_V2_CMD_EIBRS_LFENCE || + cmd == SPECTRE_V2_CMD_EIBRS_RETPOLINE) && + !boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) { + pr_err("%s selected but CPU doesn't have eIBRS. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if ((cmd == SPECTRE_V2_CMD_RETPOLINE_LFENCE || + cmd == SPECTRE_V2_CMD_EIBRS_LFENCE) && + !boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) { + pr_err("%s selected, but CPU doesn't have a serializing LFENCE. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if (cmd == SPECTRE_V2_CMD_IBRS && boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) { + pr_err("%s selected but not Intel CPU. Switching to AUTO select\n", + mitigation_options[i].option); + return SPECTRE_V2_CMD_AUTO; + } + + if (cmd == SPECTRE_V2_CMD_IBRS && !boot_cpu_has(X86_FEATURE_IBRS)) { + pr_err("%s selected but CPU doesn't have IBRS. Switching to AUTO select\n", + mitigation_options[i].option); return SPECTRE_V2_CMD_AUTO; } - if (cmd == SPECTRE_V2_CMD_RETPOLINE_AMD && - boot_cpu_data.x86_vendor != X86_VENDOR_HYGON && - boot_cpu_data.x86_vendor != X86_VENDOR_AMD) { - pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n"); + if (cmd == SPECTRE_V2_CMD_IBRS && boot_cpu_has(X86_FEATURE_XENPV)) { + pr_err("%s selected but running as XenPV guest. Switching to AUTO select\n", + mitigation_options[i].option); return SPECTRE_V2_CMD_AUTO; } @@ -853,6 +1170,79 @@ return cmd; } +static enum spectre_v2_mitigation __init spectre_v2_select_retpoline(void) +{ + if (!IS_ENABLED(CONFIG_RETPOLINE)) { + pr_err("Kernel not compiled with retpoline; no mitigation available!"); + return SPECTRE_V2_NONE; + } + + return SPECTRE_V2_RETPOLINE; +} + +/* Disable in-kernel use of non-RSB RET predictors */ +static void __init spec_ctrl_disable_kernel_rrsba(void) +{ + u64 ia32_cap; + + if (!boot_cpu_has(X86_FEATURE_RRSBA_CTRL)) + return; + + ia32_cap = x86_read_arch_cap_msr(); + + if (ia32_cap & ARCH_CAP_RRSBA) { + x86_spec_ctrl_base |= SPEC_CTRL_RRSBA_DIS_S; + write_spec_ctrl_current(x86_spec_ctrl_base, true); + } +} + +static void __init spectre_v2_determine_rsb_fill_type_at_vmexit(enum spectre_v2_mitigation mode) +{ + /* + * Similar to context switches, there are two types of RSB attacks + * after VM exit: + * + * 1) RSB underflow + * + * 2) Poisoned RSB entry + * + * When retpoline is enabled, both are mitigated by filling/clearing + * the RSB. + * + * When IBRS is enabled, while #1 would be mitigated by the IBRS branch + * prediction isolation protections, RSB still needs to be cleared + * because of #2. Note that SMEP provides no protection here, unlike + * user-space-poisoned RSB entries. + * + * eIBRS should protect against RSB poisoning, but if the EIBRS_PBRSB + * bug is present then a LITE version of RSB protection is required, + * just a single call needs to retire before a RET is executed. + */ + switch (mode) { + case SPECTRE_V2_NONE: + return; + + case SPECTRE_V2_EIBRS_LFENCE: + case SPECTRE_V2_EIBRS: + if (boot_cpu_has_bug(X86_BUG_EIBRS_PBRSB)) { + setup_force_cpu_cap(X86_FEATURE_RSB_VMEXIT_LITE); + pr_info("Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT\n"); + } + return; + + case SPECTRE_V2_EIBRS_RETPOLINE: + case SPECTRE_V2_RETPOLINE: + case SPECTRE_V2_LFENCE: + case SPECTRE_V2_IBRS: + setup_force_cpu_cap(X86_FEATURE_RSB_VMEXIT); + pr_info("Spectre v2 / SpectreRSB : Filling RSB on VMEXIT\n"); + return; + } + + pr_warn_once("Unknown Spectre v2 mode, disabling RSB mitigation at VM exit"); + dump_stack(); +} + static void __init spectre_v2_select_mitigation(void) { enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline(); @@ -873,86 +1263,161 @@ case SPECTRE_V2_CMD_FORCE: case SPECTRE_V2_CMD_AUTO: if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) { - mode = SPECTRE_V2_IBRS_ENHANCED; - /* Force it so VMEXIT will restore correctly */ - x86_spec_ctrl_base |= SPEC_CTRL_IBRS; - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); - goto specv2_set_mode; + mode = SPECTRE_V2_EIBRS; + break; } - if (IS_ENABLED(CONFIG_RETPOLINE)) - goto retpoline_auto; + + if (boot_cpu_has_bug(X86_BUG_RETBLEED) && + retbleed_cmd != RETBLEED_CMD_OFF && + boot_cpu_has(X86_FEATURE_IBRS) && + boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) { + mode = SPECTRE_V2_IBRS; + break; + } + + mode = spectre_v2_select_retpoline(); break; - case SPECTRE_V2_CMD_RETPOLINE_AMD: - if (IS_ENABLED(CONFIG_RETPOLINE)) - goto retpoline_amd; + + case SPECTRE_V2_CMD_RETPOLINE_LFENCE: + pr_err(SPECTRE_V2_LFENCE_MSG); + mode = SPECTRE_V2_LFENCE; break; + case SPECTRE_V2_CMD_RETPOLINE_GENERIC: - if (IS_ENABLED(CONFIG_RETPOLINE)) - goto retpoline_generic; + mode = SPECTRE_V2_RETPOLINE; break; + case SPECTRE_V2_CMD_RETPOLINE: - if (IS_ENABLED(CONFIG_RETPOLINE)) - goto retpoline_auto; + mode = spectre_v2_select_retpoline(); + break; + + case SPECTRE_V2_CMD_IBRS: + mode = SPECTRE_V2_IBRS; + break; + + case SPECTRE_V2_CMD_EIBRS: + mode = SPECTRE_V2_EIBRS; + break; + + case SPECTRE_V2_CMD_EIBRS_LFENCE: + mode = SPECTRE_V2_EIBRS_LFENCE; + break; + + case SPECTRE_V2_CMD_EIBRS_RETPOLINE: + mode = SPECTRE_V2_EIBRS_RETPOLINE; break; } - pr_err("Spectre mitigation: kernel not compiled with retpoline; no mitigation available!"); - return; -retpoline_auto: - if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD || - boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) { - retpoline_amd: - if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) { - pr_err("Spectre mitigation: LFENCE not serializing, switching to generic retpoline\n"); - goto retpoline_generic; - } - mode = SPECTRE_V2_RETPOLINE_AMD; - setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD); - setup_force_cpu_cap(X86_FEATURE_RETPOLINE); - } else { - retpoline_generic: - mode = SPECTRE_V2_RETPOLINE_GENERIC; + if (mode == SPECTRE_V2_EIBRS && unprivileged_ebpf_enabled()) + pr_err(SPECTRE_V2_EIBRS_EBPF_MSG); + + if (spectre_v2_in_ibrs_mode(mode)) { + x86_spec_ctrl_base |= SPEC_CTRL_IBRS; + write_spec_ctrl_current(x86_spec_ctrl_base, true); + } + + switch (mode) { + case SPECTRE_V2_NONE: + case SPECTRE_V2_EIBRS: + break; + + case SPECTRE_V2_IBRS: + setup_force_cpu_cap(X86_FEATURE_KERNEL_IBRS); + if (boot_cpu_has(X86_FEATURE_IBRS_ENHANCED)) + pr_warn(SPECTRE_V2_IBRS_PERF_MSG); + break; + + case SPECTRE_V2_LFENCE: + case SPECTRE_V2_EIBRS_LFENCE: + setup_force_cpu_cap(X86_FEATURE_RETPOLINE_LFENCE); + fallthrough; + + case SPECTRE_V2_RETPOLINE: + case SPECTRE_V2_EIBRS_RETPOLINE: setup_force_cpu_cap(X86_FEATURE_RETPOLINE); + break; } -specv2_set_mode: + /* + * Disable alternate RSB predictions in kernel when indirect CALLs and + * JMPs gets protection against BHI and Intramode-BTI, but RET + * prediction from a non-RSB predictor is still a risk. + */ + if (mode == SPECTRE_V2_EIBRS_LFENCE || + mode == SPECTRE_V2_EIBRS_RETPOLINE || + mode == SPECTRE_V2_RETPOLINE) + spec_ctrl_disable_kernel_rrsba(); + spectre_v2_enabled = mode; pr_info("%s\n", spectre_v2_strings[mode]); /* - * If spectre v2 protection has been enabled, unconditionally fill - * RSB during a context switch; this protects against two independent - * issues: + * If Spectre v2 protection has been enabled, fill the RSB during a + * context switch. In general there are two types of RSB attacks + * across context switches, for which the CALLs/RETs may be unbalanced. + * + * 1) RSB underflow + * + * Some Intel parts have "bottomless RSB". When the RSB is empty, + * speculated return targets may come from the branch predictor, + * which could have a user-poisoned BTB or BHB entry. + * + * AMD has it even worse: *all* returns are speculated from the BTB, + * regardless of the state of the RSB. + * + * When IBRS or eIBRS is enabled, the "user -> kernel" attack + * scenario is mitigated by the IBRS branch prediction isolation + * properties, so the RSB buffer filling wouldn't be necessary to + * protect against this type of attack. * - * - RSB underflow (and switch to BTB) on Skylake+ - * - SpectreRSB variant of spectre v2 on X86_BUG_SPECTRE_V2 CPUs + * The "user -> user" attack scenario is mitigated by RSB filling. + * + * 2) Poisoned RSB entry + * + * If the 'next' in-kernel return stack is shorter than 'prev', + * 'next' could be tricked into speculating with a user-poisoned RSB + * entry. + * + * The "user -> kernel" attack scenario is mitigated by SMEP and + * eIBRS. + * + * The "user -> user" scenario, also known as SpectreBHB, requires + * RSB clearing. + * + * So to mitigate all cases, unconditionally fill RSB on context + * switches. + * + * FIXME: Is this pointless for retbleed-affected AMD? */ setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW); pr_info("Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\n"); + spectre_v2_determine_rsb_fill_type_at_vmexit(mode); + /* - * Retpoline means the kernel is safe because it has no indirect - * branches. Enhanced IBRS protects firmware too, so, enable restricted - * speculation around firmware calls only when Enhanced IBRS isn't - * supported. + * Retpoline protects the kernel, but doesn't protect firmware. IBRS + * and Enhanced IBRS protect firmware too, so enable IBRS around + * firmware calls only when IBRS / Enhanced IBRS aren't otherwise + * enabled. * * Use "mode" to check Enhanced IBRS instead of boot_cpu_has(), because * the user might select retpoline on the kernel command line and if * the CPU supports Enhanced IBRS, kernel might un-intentionally not * enable IBRS around firmware calls. */ - if (boot_cpu_has(X86_FEATURE_IBRS) && mode != SPECTRE_V2_IBRS_ENHANCED) { + if (boot_cpu_has(X86_FEATURE_IBRS) && !spectre_v2_in_ibrs_mode(mode)) { setup_force_cpu_cap(X86_FEATURE_USE_IBRS_FW); pr_info("Enabling Restricted Speculation for firmware calls\n"); } /* Set up IBPB and STIBP depending on the general spectre V2 command */ - spectre_v2_user_select_mitigation(cmd); + spectre_v2_cmd = cmd; } static void update_stibp_msr(void * __unused) { - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + u64 val = spec_ctrl_current() | (x86_spec_ctrl_base & SPEC_CTRL_STIBP); + write_spec_ctrl_current(val, true); } /* Update x86_spec_ctrl_base in case SMT state changed. */ @@ -987,6 +1452,8 @@ /* Update the static key controlling the MDS CPU buffer clear in idle */ static void update_mds_branch_idle(void) { + u64 ia32_cap = x86_read_arch_cap_msr(); + /* * Enable the idle clearing if SMT is active on CPUs which are * affected only by MSBDS and not any other MDS variant. @@ -998,19 +1465,26 @@ if (!boot_cpu_has_bug(X86_BUG_MSBDS_ONLY)) return; - if (sched_smt_active()) + if (sched_smt_active()) { static_branch_enable(&mds_idle_clear); - else + } else if (mmio_mitigation == MMIO_MITIGATION_OFF || + (ia32_cap & ARCH_CAP_FBSDP_NO)) { static_branch_disable(&mds_idle_clear); + } } #define MDS_MSG_SMT "MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.\n" #define TAA_MSG_SMT "TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.\n" +#define MMIO_MSG_SMT "MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.\n" void cpu_bugs_smt_update(void) { mutex_lock(&spec_ctrl_mutex); + if (sched_smt_active() && unprivileged_ebpf_enabled() && + spectre_v2_enabled == SPECTRE_V2_EIBRS_LFENCE) + pr_warn_once(SPECTRE_V2_EIBRS_LFENCE_EBPF_SMT_MSG); + switch (spectre_v2_user_stibp) { case SPECTRE_V2_USER_NONE: break; @@ -1046,6 +1520,16 @@ break; } + switch (mmio_mitigation) { + case MMIO_MITIGATION_VERW: + case MMIO_MITIGATION_UCODE_NEEDED: + if (sched_smt_active()) + pr_warn_once(MMIO_MSG_SMT); + break; + case MMIO_MITIGATION_OFF: + break; + } + mutex_unlock(&spec_ctrl_mutex); } @@ -1150,16 +1634,6 @@ } /* - * If SSBD is controlled by the SPEC_CTRL MSR, then set the proper - * bit in the mask to allow guests to use the mitigation even in the - * case where the host does not enable it. - */ - if (static_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) || - static_cpu_has(X86_FEATURE_AMD_SSBD)) { - x86_spec_ctrl_mask |= SPEC_CTRL_SSBD; - } - - /* * We have three CPU feature flags that are in play here: * - X86_BUG_SPEC_STORE_BYPASS - CPU is susceptible. * - X86_FEATURE_SSBD - CPU is able to turn off speculative store bypass @@ -1176,7 +1650,7 @@ x86_amd_ssb_disable(); } else { x86_spec_ctrl_base |= SPEC_CTRL_SSBD; - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + write_spec_ctrl_current(x86_spec_ctrl_base, true); } } @@ -1265,7 +1739,6 @@ if (spectre_v2_user_ibpb == SPECTRE_V2_USER_NONE && spectre_v2_user_stibp == SPECTRE_V2_USER_NONE) return 0; - /* * With strict mode for both IBPB and STIBP, the instruction * code paths avoid checking this task flag and instead, @@ -1394,7 +1867,7 @@ void x86_spec_ctrl_setup_ap(void) { if (boot_cpu_has(X86_FEATURE_MSR_SPEC_CTRL)) - wrmsrl(MSR_IA32_SPEC_CTRL, x86_spec_ctrl_base); + write_spec_ctrl_current(x86_spec_ctrl_base, true); if (ssb_mode == SPEC_STORE_BYPASS_DISABLE) x86_amd_ssb_disable(); @@ -1610,9 +2083,26 @@ sched_smt_active() ? "vulnerable" : "disabled"); } +static ssize_t mmio_stale_data_show_state(char *buf) +{ + if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN)) + return sysfs_emit(buf, "Unknown: No mitigations\n"); + + if (mmio_mitigation == MMIO_MITIGATION_OFF) + return sysfs_emit(buf, "%s\n", mmio_strings[mmio_mitigation]); + + if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) { + return sysfs_emit(buf, "%s; SMT Host state unknown\n", + mmio_strings[mmio_mitigation]); + } + + return sysfs_emit(buf, "%s; SMT %s\n", mmio_strings[mmio_mitigation], + sched_smt_active() ? "vulnerable" : "disabled"); +} + static char *stibp_state(void) { - if (spectre_v2_enabled == SPECTRE_V2_IBRS_ENHANCED) + if (spectre_v2_in_ibrs_mode(spectre_v2_enabled)) return ""; switch (spectre_v2_user_stibp) { @@ -1642,11 +2132,51 @@ return ""; } +static char *pbrsb_eibrs_state(void) +{ + if (boot_cpu_has_bug(X86_BUG_EIBRS_PBRSB)) { + if (boot_cpu_has(X86_FEATURE_RSB_VMEXIT_LITE) || + boot_cpu_has(X86_FEATURE_RSB_VMEXIT)) + return ", PBRSB-eIBRS: SW sequence"; + else + return ", PBRSB-eIBRS: Vulnerable"; + } else { + return ", PBRSB-eIBRS: Not affected"; + } +} + +static ssize_t spectre_v2_show_state(char *buf) +{ + if (spectre_v2_enabled == SPECTRE_V2_LFENCE) + return sprintf(buf, "Vulnerable: LFENCE\n"); + + if (spectre_v2_enabled == SPECTRE_V2_EIBRS && unprivileged_ebpf_enabled()) + return sprintf(buf, "Vulnerable: eIBRS with unprivileged eBPF\n"); + + if (sched_smt_active() && unprivileged_ebpf_enabled() && + spectre_v2_enabled == SPECTRE_V2_EIBRS_LFENCE) + return sprintf(buf, "Vulnerable: eIBRS+LFENCE with unprivileged eBPF and SMT\n"); + + return sprintf(buf, "%s%s%s%s%s%s%s\n", + spectre_v2_strings[spectre_v2_enabled], + ibpb_state(), + boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "", + stibp_state(), + boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "", + pbrsb_eibrs_state(), + spectre_v2_module_string()); +} + static ssize_t srbds_show_state(char *buf) { return sprintf(buf, "%s\n", srbds_strings[srbds_mitigation]); } +static ssize_t retbleed_show_state(char *buf) +{ + return sprintf(buf, "%s\n", retbleed_strings[retbleed_mitigation]); +} + static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr, char *buf, unsigned int bug) { @@ -1667,12 +2197,7 @@ return sprintf(buf, "%s\n", spectre_v1_strings[spectre_v1_mitigation]); case X86_BUG_SPECTRE_V2: - return sprintf(buf, "%s%s%s%s%s%s\n", spectre_v2_strings[spectre_v2_enabled], - ibpb_state(), - boot_cpu_has(X86_FEATURE_USE_IBRS_FW) ? ", IBRS_FW" : "", - stibp_state(), - boot_cpu_has(X86_FEATURE_RSB_CTXSW) ? ", RSB filling" : "", - spectre_v2_module_string()); + return spectre_v2_show_state(buf); case X86_BUG_SPEC_STORE_BYPASS: return sprintf(buf, "%s\n", ssb_strings[ssb_mode]); @@ -1694,6 +2219,13 @@ case X86_BUG_SRBDS: return srbds_show_state(buf); + case X86_BUG_MMIO_STALE_DATA: + case X86_BUG_MMIO_UNKNOWN: + return mmio_stale_data_show_state(buf); + + case X86_BUG_RETBLEED: + return retbleed_show_state(buf); + default: break; } @@ -1747,2 +2279,15 @@ } + +ssize_t cpu_show_mmio_stale_data(struct device *dev, struct device_attribute *attr, char *buf) +{ + if (boot_cpu_has_bug(X86_BUG_MMIO_UNKNOWN)) + return cpu_show_common(dev, attr, buf, X86_BUG_MMIO_UNKNOWN); + else + return cpu_show_common(dev, attr, buf, X86_BUG_MMIO_STALE_DATA); +} + +ssize_t cpu_show_retbleed(struct device *dev, struct device_attribute *attr, char *buf) +{ + return cpu_show_common(dev, attr, buf, X86_BUG_RETBLEED); +} #endif diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/cacheinfo.c linux-azure-5.4.0/arch/x86/kernel/cpu/cacheinfo.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/cacheinfo.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/cacheinfo.c @@ -985,7 +985,7 @@ this_leaf->priv = base->nb; } -static int __init_cache_level(unsigned int cpu) +int init_cache_level(unsigned int cpu) { struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); @@ -1014,7 +1014,7 @@ id4_regs->id = c->apicid >> index_msb; } -static int __populate_cache_leaves(unsigned int cpu) +int populate_cache_leaves(unsigned int cpu) { unsigned int idx, ret; struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); @@ -1036,3 +1035,0 @@ - -DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level) -DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves) diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/common.c linux-azure-5.4.0/arch/x86/kernel/cpu/common.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/common.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/common.c @@ -1041,6 +1041,8 @@ #define NO_SWAPGS BIT(6) #define NO_ITLB_MULTIHIT BIT(7) #define NO_SPECTRE_V2 BIT(8) +#define NO_EIBRS_PBRSB BIT(9) +#define NO_MMIO BIT(10) #define VULNWL(_vendor, _family, _model, _whitelist) \ { X86_VENDOR_##_vendor, _family, _model, X86_FEATURE_ANY, _whitelist } @@ -1061,6 +1063,11 @@ VULNWL(NSC, 5, X86_MODEL_ANY, NO_SPECULATION), /* Intel Family 6 */ + VULNWL_INTEL(TIGERLAKE, NO_MMIO), + VULNWL_INTEL(TIGERLAKE_L, NO_MMIO), + VULNWL_INTEL(ALDERLAKE, NO_MMIO), + VULNWL_INTEL(ALDERLAKE_L, NO_MMIO), + VULNWL_INTEL(ATOM_SALTWELL, NO_SPECULATION | NO_ITLB_MULTIHIT), VULNWL_INTEL(ATOM_SALTWELL_TABLET, NO_SPECULATION | NO_ITLB_MULTIHIT), VULNWL_INTEL(ATOM_SALTWELL_MID, NO_SPECULATION | NO_ITLB_MULTIHIT), @@ -1079,9 +1086,9 @@ VULNWL_INTEL(ATOM_AIRMONT_MID, NO_L1TF | MSBDS_ONLY | NO_SWAPGS | NO_ITLB_MULTIHIT), VULNWL_INTEL(ATOM_AIRMONT_NP, NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_INTEL(ATOM_GOLDMONT, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_INTEL(ATOM_GOLDMONT_D, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_INTEL(ATOM_GOLDMONT_PLUS, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT), + VULNWL_INTEL(ATOM_GOLDMONT, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_INTEL(ATOM_GOLDMONT_D, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_INTEL(ATOM_GOLDMONT_PLUS, NO_MDS | NO_L1TF | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO | NO_EIBRS_PBRSB), /* * Technically, swapgs isn't serializing on AMD (despite it previously @@ -1091,42 +1098,80 @@ * good enough for our purposes. */ - VULNWL_INTEL(ATOM_TREMONT_D, NO_ITLB_MULTIHIT), + VULNWL_INTEL(ATOM_TREMONT, NO_EIBRS_PBRSB), + VULNWL_INTEL(ATOM_TREMONT_L, NO_EIBRS_PBRSB), + VULNWL_INTEL(ATOM_TREMONT_D, NO_ITLB_MULTIHIT | NO_EIBRS_PBRSB), /* AMD Family 0xf - 0x12 */ - VULNWL_AMD(0x0f, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_AMD(0x10, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_AMD(0x11, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_AMD(0x12, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), + VULNWL_AMD(0x0f, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_AMD(0x10, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_AMD(0x11, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_AMD(0x12, NO_MELTDOWN | NO_SSB | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), /* FAMILY_ANY must be last, otherwise 0x0f - 0x12 matches won't work */ - VULNWL_AMD(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), - VULNWL_HYGON(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT), + VULNWL_AMD(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), + VULNWL_HYGON(X86_FAMILY_ANY, NO_MELTDOWN | NO_L1TF | NO_MDS | NO_SWAPGS | NO_ITLB_MULTIHIT | NO_MMIO), /* Zhaoxin Family 7 */ - VULNWL(CENTAUR, 7, X86_MODEL_ANY, NO_SPECTRE_V2), - VULNWL(ZHAOXIN, 7, X86_MODEL_ANY, NO_SPECTRE_V2), + VULNWL(CENTAUR, 7, X86_MODEL_ANY, NO_SPECTRE_V2 | NO_MMIO), + VULNWL(ZHAOXIN, 7, X86_MODEL_ANY, NO_SPECTRE_V2 | NO_MMIO), {} }; +#define VULNBL(vendor, family, model, blacklist) \ + X86_MATCH_VENDOR_FAM_MODEL(vendor, family, model, blacklist) + #define VULNBL_INTEL_STEPPINGS(model, steppings, issues) \ X86_MATCH_VENDOR_FAM_MODEL_STEPPINGS_FEATURE(INTEL, 6, \ INTEL_FAM6_##model, steppings, \ X86_FEATURE_ANY, issues) +#define VULNBL_AMD(family, blacklist) \ + VULNBL(AMD, family, X86_MODEL_ANY, blacklist) + +#define VULNBL_HYGON(family, blacklist) \ + VULNBL(HYGON, family, X86_MODEL_ANY, blacklist) + #define SRBDS BIT(0) +/* CPU is affected by X86_BUG_MMIO_STALE_DATA */ +#define MMIO BIT(1) +/* CPU is affected by Shared Buffers Data Sampling (SBDS), a variant of X86_BUG_MMIO_STALE_DATA */ +#define MMIO_SBDS BIT(2) +/* CPU is affected by RETbleed, speculating where you would not expect it */ +#define RETBLEED BIT(3) static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = { VULNBL_INTEL_STEPPINGS(IVYBRIDGE, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL_L, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(HASWELL_G, X86_STEPPING_ANY, SRBDS), + VULNBL_INTEL_STEPPINGS(HASWELL_X, X86_STEPPING_ANY, MMIO), + VULNBL_INTEL_STEPPINGS(BROADWELL_D, X86_STEPPING_ANY, MMIO), VULNBL_INTEL_STEPPINGS(BROADWELL_G, X86_STEPPING_ANY, SRBDS), + VULNBL_INTEL_STEPPINGS(BROADWELL_X, X86_STEPPING_ANY, MMIO), VULNBL_INTEL_STEPPINGS(BROADWELL, X86_STEPPING_ANY, SRBDS), - VULNBL_INTEL_STEPPINGS(SKYLAKE_L, X86_STEPPING_ANY, SRBDS), - VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS), - VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPINGS(0x0, 0xC), SRBDS), - VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPINGS(0x0, 0xD), SRBDS), + VULNBL_INTEL_STEPPINGS(SKYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(SKYLAKE_X, X86_STEPPING_ANY, MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(CANNONLAKE_L, X86_STEPPING_ANY, RETBLEED), + VULNBL_INTEL_STEPPINGS(ICELAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(ICELAKE_D, X86_STEPPING_ANY, MMIO), + VULNBL_INTEL_STEPPINGS(ICELAKE_X, X86_STEPPING_ANY, MMIO), + VULNBL_INTEL_STEPPINGS(COMETLAKE, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPINGS(0x0, 0x0), MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(LAKEFIELD, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(ROCKETLAKE, X86_STEPPING_ANY, MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(ATOM_TREMONT, X86_STEPPING_ANY, MMIO | MMIO_SBDS), + VULNBL_INTEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPING_ANY, MMIO), + VULNBL_INTEL_STEPPINGS(ATOM_TREMONT_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS), + + VULNBL_AMD(0x15, RETBLEED), + VULNBL_AMD(0x16, RETBLEED), + VULNBL_AMD(0x17, RETBLEED), + VULNBL_HYGON(0x18, RETBLEED), {} }; @@ -1147,6 +1192,13 @@ return ia32_cap; } +static bool arch_cap_mmio_immune(u64 ia32_cap) +{ + return (ia32_cap & ARCH_CAP_FBSDP_NO && + ia32_cap & ARCH_CAP_PSDP_NO && + ia32_cap & ARCH_CAP_SBDR_SSDP_NO); +} + static void __init cpu_set_bug_bits(struct cpuinfo_x86 *c) { u64 ia32_cap = x86_read_arch_cap_msr(); @@ -1200,12 +1252,43 @@ /* * SRBDS affects CPUs which support RDRAND or RDSEED and are listed * in the vulnerability blacklist. + * + * Some of the implications and mitigation of Shared Buffers Data + * Sampling (SBDS) are similar to SRBDS. Give SBDS same treatment as + * SRBDS. */ if ((cpu_has(c, X86_FEATURE_RDRAND) || cpu_has(c, X86_FEATURE_RDSEED)) && - cpu_matches(cpu_vuln_blacklist, SRBDS)) + cpu_matches(cpu_vuln_blacklist, SRBDS | MMIO_SBDS)) setup_force_cpu_bug(X86_BUG_SRBDS); + /* + * Processor MMIO Stale Data bug enumeration + * + * Affected CPU list is generally enough to enumerate the vulnerability, + * but for virtualization case check for ARCH_CAP MSR bits also, VMM may + * not want the guest to enumerate the bug. + * + * Set X86_BUG_MMIO_UNKNOWN for CPUs that are neither in the blacklist, + * nor in the whitelist and also don't enumerate MSR ARCH_CAP MMIO bits. + */ + if (!arch_cap_mmio_immune(ia32_cap)) { + if (cpu_matches(cpu_vuln_blacklist, MMIO)) + setup_force_cpu_bug(X86_BUG_MMIO_STALE_DATA); + else if (!cpu_matches(cpu_vuln_whitelist, NO_MMIO)) + setup_force_cpu_bug(X86_BUG_MMIO_UNKNOWN); + } + + if (!cpu_has(c, X86_FEATURE_BTC_NO)) { + if (cpu_matches(cpu_vuln_blacklist, RETBLEED) || (ia32_cap & ARCH_CAP_RSBA)) + setup_force_cpu_bug(X86_BUG_RETBLEED); + } + + if (cpu_has(c, X86_FEATURE_IBRS_ENHANCED) && + !cpu_matches(cpu_vuln_whitelist, NO_EIBRS_PBRSB) && + !(ia32_cap & ARCH_CAP_PBRSB_NO)) + setup_force_cpu_bug(X86_BUG_EIBRS_PBRSB); + if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN)) return; @@ -1352,9 +1435,8 @@ early_identify_cpu(&boot_cpu_data); } -static void detect_null_seg_behavior(struct cpuinfo_x86 *c) +static bool detect_null_seg_behavior(void) { -#ifdef CONFIG_X86_64 /* * Empirically, writing zero to a segment selector on AMD does * not clear the base, whereas writing zero to a segment @@ -1375,10 +1457,43 @@ wrmsrl(MSR_FS_BASE, 1); loadsegment(fs, 0); rdmsrl(MSR_FS_BASE, tmp); - if (tmp != 0) - set_cpu_bug(c, X86_BUG_NULL_SEG); wrmsrl(MSR_FS_BASE, old_base); -#endif + return tmp == 0; +} + +void check_null_seg_clears_base(struct cpuinfo_x86 *c) +{ + /* BUG_NULL_SEG is only relevant with 64bit userspace */ + if (!IS_ENABLED(CONFIG_X86_64)) + return; + + /* Zen3 CPUs advertise Null Selector Clears Base in CPUID. */ + if (c->extended_cpuid_level >= 0x80000021 && + cpuid_eax(0x80000021) & BIT(6)) + return; + + /* + * CPUID bit above wasn't set. If this kernel is still running + * as a HV guest, then the HV has decided not to advertize + * that CPUID bit for whatever reason. For example, one + * member of the migration pool might be vulnerable. Which + * means, the bug is present: set the BUG flag and return. + */ + if (cpu_has(c, X86_FEATURE_HYPERVISOR)) { + set_cpu_bug(c, X86_BUG_NULL_SEG); + return; + } + + /* + * Zen2 CPUs also have this behaviour, but no CPUID bit. + * 0x18 is the respective family for Hygon. + */ + if ((c->x86 == 0x17 || c->x86 == 0x18) && + detect_null_seg_behavior()) + return; + + /* All the remaining ones are affected */ + set_cpu_bug(c, X86_BUG_NULL_SEG); } static void generic_identify(struct cpuinfo_x86 *c) @@ -1414,8 +1529,6 @@ get_model_name(c); /* Default name */ - detect_null_seg_behavior(c); - /* * ESPFIX is a strange bug. All real CPUs have it. Paravirt * systems that run Linux at CPL > 0 may or may not have the diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/cpu.h linux-azure-5.4.0/arch/x86/kernel/cpu/cpu.h --- linux-azure-5.4.0/arch/x86/kernel/cpu/cpu.h +++ linux-azure-5.4.0/arch/x86/kernel/cpu/cpu.h @@ -73,6 +73,7 @@ extern int detect_extended_topology(struct cpuinfo_x86 *c); extern int detect_ht_early(struct cpuinfo_x86 *c); extern void detect_ht(struct cpuinfo_x86 *c); +extern void check_null_seg_clears_base(struct cpuinfo_x86 *c); unsigned int aperfmperf_get_khz(int cpu); diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/hygon.c linux-azure-5.4.0/arch/x86/kernel/cpu/hygon.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/hygon.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/hygon.c @@ -350,6 +350,8 @@ /* Hygon CPUs don't reset SS attributes on SYSRET, Xen does. */ if (!cpu_has(c, X86_FEATURE_XENPV)) set_cpu_bug(c, X86_BUG_SYSRET_SS_ATTRS); + + check_null_seg_clears_base(c); } static void cpu_detect_tlb_hygon(struct cpuinfo_x86 *c) diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/match.c linux-azure-5.4.0/arch/x86/kernel/cpu/match.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/match.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/match.c @@ -16,12 +16,17 @@ * respective wildcard entries. * * A typical table entry would be to match a specific CPU - * { X86_VENDOR_INTEL, 6, 0x12 } - * or to match a specific CPU feature - * { X86_FEATURE_MATCH(X86_FEATURE_FOOBAR) } + * + * X86_MATCH_VENDOR_FAM_MODEL_FEATURE(INTEL, 6, INTEL_FAM6_BROADWELL, + * X86_FEATURE_ANY, NULL); * * Fields can be wildcarded with %X86_VENDOR_ANY, %X86_FAMILY_ANY, - * %X86_MODEL_ANY, %X86_FEATURE_ANY or 0 (except for vendor) + * %X86_MODEL_ANY, %X86_FEATURE_ANY (except for vendor) + * + * asm/cpu_device_id.h contains a set of useful macros which are shortcuts + * for various common selections. The above can be shortened to: + * + * X86_MATCH_INTEL_FAM6_MODEL(BROADWELL, NULL); * * Arrays used to match for this should also be declared using * MODULE_DEVICE_TABLE(x86cpu, ...) diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/mce/core.c linux-azure-5.4.0/arch/x86/kernel/cpu/mce/core.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/mce/core.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/mce/core.c @@ -310,11 +310,17 @@ panic("Panicing machine check CPU died"); } -static void mce_panic(const char *msg, struct mce *final, char *exp) +static noinstr void mce_panic(const char *msg, struct mce *final, char *exp) { - int apei_err = 0; struct llist_node *pending; struct mce_evt_llist *l; + int apei_err = 0; + + /* + * Allow instrumentation around external facilities usage. Not that it + * matters a whole lot since the machine is going to panic anyway. + */ + instrumentation_begin(); if (!fake_panic) { /* @@ -329,7 +335,7 @@ } else { /* Don't log too much for fake panic */ if (atomic_inc_return(&mce_fake_panicked) > 1) - return; + goto out; } pending = mce_gen_pool_prepare_records(); /* First print corrected ones that are still unlogged */ @@ -367,6 +373,9 @@ panic(msg); } else pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg); + +out: + instrumentation_end(); } /* Support code for software error injection */ @@ -388,13 +397,16 @@ return -1; } -__visible bool ex_handler_rdmsr_fault(const struct exception_table_entry *fixup, - struct pt_regs *regs, int trapnr, - unsigned long error_code, - unsigned long fault_addr) +static void ex_handler_msr_mce(struct pt_regs *regs, bool wrmsr) { - pr_emerg("MSR access error: RDMSR from 0x%x at rIP: 0x%lx (%pS)\n", - (unsigned int)regs->cx, regs->ip, (void *)regs->ip); + if (wrmsr) { + pr_emerg("MSR access error: WRMSR to 0x%x (tried to write 0x%08x%08x) at rIP: 0x%lx (%pS)\n", + (unsigned int)regs->cx, (unsigned int)regs->dx, (unsigned int)regs->ax, + regs->ip, (void *)regs->ip); + } else { + pr_emerg("MSR access error: RDMSR from 0x%x at rIP: 0x%lx (%pS)\n", + (unsigned int)regs->cx, regs->ip, (void *)regs->ip); + } show_stack_regs(regs); @@ -402,7 +414,14 @@ while (true) cpu_relax(); +} +__visible bool ex_handler_rdmsr_fault(const struct exception_table_entry *fixup, + struct pt_regs *regs, int trapnr, + unsigned long error_code, + unsigned long fault_addr) +{ + ex_handler_msr_mce(regs, false); return true; } @@ -438,17 +457,7 @@ unsigned long error_code, unsigned long fault_addr) { - pr_emerg("MSR access error: WRMSR to 0x%x (tried to write 0x%08x%08x) at rIP: 0x%lx (%pS)\n", - (unsigned int)regs->cx, (unsigned int)regs->dx, (unsigned int)regs->ax, - regs->ip, (void *)regs->ip); - - show_stack_regs(regs); - - panic("MCA architectural violation!\n"); - - while (true) - cpu_relax(); - + ex_handler_msr_mce(regs, true); return true; } @@ -691,7 +700,7 @@ /* * Read ADDR and MISC registers. */ -static void mce_read_aux(struct mce *m, int i) +static noinstr void mce_read_aux(struct mce *m, int i) { if (m->status & MCI_STATUS_MISCV) m->misc = mce_rdmsrl(msr_ops.misc(i)); @@ -1071,10 +1080,13 @@ * Synchronize between CPUs after main scanning loop. * This invokes the bulk of the Monarch processing. */ -static int mce_end(int order) +static noinstr int mce_end(int order) { - int ret = -1; u64 timeout = (u64)mca_cfg.monarch_timeout * NSEC_PER_USEC; + int ret = -1; + + /* Allow instrumentation around external facilities. */ + instrumentation_begin(); if (!timeout) goto reset; @@ -1118,7 +1130,8 @@ /* * Don't reset anything. That's done by the Monarch. */ - return 0; + ret = 0; + goto out; } /* @@ -1133,6 +1146,10 @@ * Let others run again. */ atomic_set(&mce_executing, 0); + +out: + instrumentation_end(); + return ret; } diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/mce/inject.c linux-azure-5.4.0/arch/x86/kernel/cpu/mce/inject.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/mce/inject.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/mce/inject.c @@ -347,7 +347,7 @@ char buf[MAX_FLAG_OPT_SIZE], *__buf; int err; - if (cnt > MAX_FLAG_OPT_SIZE) + if (!cnt || cnt > MAX_FLAG_OPT_SIZE) return -EINVAL; if (copy_from_user(&buf, ubuf, cnt)) diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/microcode/core.c linux-azure-5.4.0/arch/x86/kernel/cpu/microcode/core.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/microcode/core.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/microcode/core.c @@ -772,9 +772,9 @@ }; /** - * mc_bp_resume - Update boot CPU microcode during resume. + * microcode_bsp_resume - Update boot CPU microcode during resume. */ -static void mc_bp_resume(void) +void microcode_bsp_resume(void) { int cpu = smp_processor_id(); struct ucode_cpu_info *uci = ucode_cpu_info + cpu; @@ -786,7 +786,7 @@ } static struct syscore_ops mc_syscore_ops = { - .resume = mc_bp_resume, + .resume = microcode_bsp_resume, }; static int mc_cpu_starting(unsigned int cpu) diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/mshyperv.c linux-azure-5.4.0/arch/x86/kernel/cpu/mshyperv.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/mshyperv.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/mshyperv.c @@ -32,7 +32,6 @@ #include struct ms_hyperv_info ms_hyperv; -EXPORT_SYMBOL_GPL(ms_hyperv); #if IS_ENABLED(CONFIG_HYPERV) static void (*vmbus_handler)(void); @@ -56,18 +55,16 @@ set_irq_regs(old_regs); } -void hv_setup_vmbus_irq(void (*handler)(void)) +void hv_setup_vmbus_handler(void (*handler)(void)) { vmbus_handler = handler; } -void hv_remove_vmbus_irq(void) +void hv_remove_vmbus_handler(void) { /* We have no way to deallocate the interrupt gate */ vmbus_handler = NULL; } -EXPORT_SYMBOL_GPL(hv_setup_vmbus_irq); -EXPORT_SYMBOL_GPL(hv_remove_vmbus_irq); /* * Routines to do per-architecture handling of stimer0 @@ -82,52 +79,44 @@ inc_irq_stat(hyperv_stimer0_count); if (hv_stimer0_handler) hv_stimer0_handler(); - add_interrupt_randomness(HYPERV_STIMER0_VECTOR, 0); + add_interrupt_randomness(HYPERV_STIMER0_VECTOR); ack_APIC_irq(); exiting_irq(); set_irq_regs(old_regs); } -int hv_setup_stimer0_irq(int *irq, int *vector, void (*handler)(void)) +/* For x86/x64, override weak placeholders in hyperv_timer.c */ +void hv_setup_stimer0_handler(void (*handler)(void)) { - *vector = HYPERV_STIMER0_VECTOR; - *irq = -1; /* Unused on x86/x64 */ hv_stimer0_handler = handler; - return 0; } -EXPORT_SYMBOL_GPL(hv_setup_stimer0_irq); -void hv_remove_stimer0_irq(int irq) +void hv_remove_stimer0_handler(void) { /* We have no way to deallocate the interrupt gate */ hv_stimer0_handler = NULL; } -EXPORT_SYMBOL_GPL(hv_remove_stimer0_irq); void hv_setup_kexec_handler(void (*handler)(void)) { hv_kexec_handler = handler; } -EXPORT_SYMBOL_GPL(hv_setup_kexec_handler); void hv_remove_kexec_handler(void) { hv_kexec_handler = NULL; } -EXPORT_SYMBOL_GPL(hv_remove_kexec_handler); void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs)) { hv_crash_handler = handler; } -EXPORT_SYMBOL_GPL(hv_setup_crash_handler); void hv_remove_crash_handler(void) { hv_crash_handler = NULL; } -EXPORT_SYMBOL_GPL(hv_remove_crash_handler); #ifdef CONFIG_KEXEC_CORE static void hv_machine_shutdown(void) @@ -263,16 +252,6 @@ cpuid_eax(HYPERV_CPUID_NESTED_FEATURES); } - /* - * Hyper-V expects to get crash register data or kmsg when - * crash enlightment is available and system crashes. Set - * crash_kexec_post_notifiers to be true to make sure that - * calling crash enlightment interface before running kdump - * kernel. - */ - if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) - crash_kexec_post_notifiers = true; - #ifdef CONFIG_X86_LOCAL_APIC if (ms_hyperv.features & HV_X64_ACCESS_FREQUENCY_MSRS && ms_hyperv.misc_features & HV_FEATURE_FREQUENCY_MSRS_AVAILABLE) { @@ -363,13 +342,6 @@ #endif } -void hv_setup_sched_clock(void *sched_clock) -{ -#ifdef CONFIG_PARAVIRT - pv_ops.time.sched_clock = sched_clock; -#endif -} - const __initconst struct hypervisor_x86 x86_hyper_ms_hyperv = { .name = "Microsoft Hyper-V", .detect = ms_hyperv_platform, diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/core.c linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/core.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/core.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/core.c @@ -588,6 +588,8 @@ } if (r->mon_capable && domain_setup_mon_state(r, d)) { + kfree(d->ctrl_val); + kfree(d->mbps_val); kfree(d); return; } diff -u linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/monitor.c linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/monitor.c --- linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/monitor.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/monitor.c @@ -223,15 +223,14 @@ return chunks >>= shift; } -static int __mon_event_count(u32 rmid, struct rmid_read *rr) +static u64 __mon_event_count(u32 rmid, struct rmid_read *rr) { struct mbm_state *m; u64 chunks, tval; tval = __rmid_read(rmid, rr->evtid); if (tval & (RMID_VAL_ERROR | RMID_VAL_UNAVAIL)) { - rr->val = tval; - return -EINVAL; + return tval; } switch (rr->evtid) { case QOS_L3_OCCUP_EVENT_ID: @@ -245,10 +244,10 @@ break; default: /* - * Code would never reach here because - * an invalid event id would fail the __rmid_read. + * Code would never reach here because an invalid + * event id would fail the __rmid_read. */ - return -EINVAL; + return RMID_VAL_ERROR; } if (rr->first) { @@ -298,23 +297,29 @@ struct rdtgroup *rdtgrp, *entry; struct rmid_read *rr = info; struct list_head *head; + u64 ret_val; rdtgrp = rr->rgrp; - if (__mon_event_count(rdtgrp->mon.rmid, rr)) - return; + ret_val = __mon_event_count(rdtgrp->mon.rmid, rr); /* - * For Ctrl groups read data from child monitor groups. + * For Ctrl groups read data from child monitor groups and + * add them together. Count events which are read successfully. + * Discard the rmid_read's reporting errors. */ head = &rdtgrp->mon.crdtgrp_list; if (rdtgrp->type == RDTCTRL_GROUP) { list_for_each_entry(entry, head, mon.crdtgrp_list) { - if (__mon_event_count(entry->mon.rmid, rr)) - return; + if (__mon_event_count(entry->mon.rmid, rr) == 0) + ret_val = 0; } } + + /* Report error if none of rmid_reads are successful */ + if (ret_val) + rr->val = ret_val; } /* diff -u linux-azure-5.4.0/arch/x86/kernel/early-quirks.c linux-azure-5.4.0/arch/x86/kernel/early-quirks.c --- linux-azure-5.4.0/arch/x86/kernel/early-quirks.c +++ linux-azure-5.4.0/arch/x86/kernel/early-quirks.c @@ -546,6 +546,7 @@ .stolen_size = gen9_stolen_size, }; +/* Intel integrated GPUs for which we need to reserve "stolen memory" */ static const struct pci_device_id intel_early_ids[] __initconst = { INTEL_I830_IDS(&i830_early_ops), INTEL_I845G_IDS(&i845_early_ops), @@ -618,6 +619,13 @@ u16 device; int i; + /* + * Reserve "stolen memory" for an integrated GPU. If we've already + * found one, there's nothing to do for other (discrete) GPUs. + */ + if (resource_size(&intel_graphics_stolen_res)) + return; + device = read_pci_config_16(num, slot, func, PCI_DEVICE_ID); for (i = 0; i < ARRAY_SIZE(intel_early_ids); i++) { @@ -730,7 +738,7 @@ { PCI_VENDOR_ID_INTEL, 0x3406, PCI_CLASS_BRIDGE_HOST, PCI_BASE_CLASS_BRIDGE, 0, intel_remapping_check }, { PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, PCI_ANY_ID, - QFLAG_APPLY_ONCE, intel_graphics_quirks }, + 0, intel_graphics_quirks }, /* * HPET on the current version of the Baytrail platform has accuracy * problems: it will halt in deep idle state - so we disable it. @@ -741,12 +749,6 @@ */ { PCI_VENDOR_ID_INTEL, 0x0f00, PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, - { PCI_VENDOR_ID_INTEL, 0x3e20, - PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, - { PCI_VENDOR_ID_INTEL, 0x3ec4, - PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, - { PCI_VENDOR_ID_INTEL, 0x8a12, - 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}, diff -u linux-azure-5.4.0/arch/x86/kernel/fpu/signal.c linux-azure-5.4.0/arch/x86/kernel/fpu/signal.c --- linux-azure-5.4.0/arch/x86/kernel/fpu/signal.c +++ linux-azure-5.4.0/arch/x86/kernel/fpu/signal.c @@ -289,13 +289,17 @@ return 0; } - if (!access_ok(buf, size)) - return -EACCES; + if (!access_ok(buf, size)) { + ret = -EACCES; + goto out; + } - if (!static_cpu_has(X86_FEATURE_FPU)) - return fpregs_soft_set(current, NULL, - 0, sizeof(struct user_i387_ia32_struct), - NULL, buf) != 0; + if (!static_cpu_has(X86_FEATURE_FPU)) { + ret = fpregs_soft_set(current, NULL, 0, + sizeof(struct user_i387_ia32_struct), + NULL, buf); + goto out; + } if (use_xsave()) { struct _fpx_sw_bytes fx_sw_user; @@ -333,7 +337,7 @@ if (ia32_fxstate) { ret = __copy_from_user(&env, buf, sizeof(env)); if (ret) - goto err_out; + goto out; envp = &env; } else { /* @@ -369,7 +373,7 @@ ret = validate_xstate_header(&fpu->state.xsave.header); } if (ret) - goto err_out; + goto out; sanitize_restored_xstate(&fpu->state, envp, xfeatures, fx_only); @@ -382,7 +386,7 @@ ret = __copy_from_user(&fpu->state.fxsave, buf_fx, state_size); if (ret) { ret = -EFAULT; - goto err_out; + goto out; } sanitize_restored_xstate(&fpu->state, envp, xfeatures, fx_only); @@ -397,7 +401,7 @@ } else { ret = __copy_from_user(&fpu->state.fsave, buf_fx, state_size); if (ret) - goto err_out; + goto out; fpregs_lock(); ret = copy_kernel_to_fregs_err(&fpu->state.fsave); @@ -408,7 +412,7 @@ fpregs_deactivate(fpu); fpregs_unlock(); -err_out: +out: if (ret) fpu__clear(fpu); return ret; diff -u linux-azure-5.4.0/arch/x86/kernel/fpu/xstate.c linux-azure-5.4.0/arch/x86/kernel/fpu/xstate.c --- linux-azure-5.4.0/arch/x86/kernel/fpu/xstate.c +++ linux-azure-5.4.0/arch/x86/kernel/fpu/xstate.c @@ -399,12 +399,32 @@ } /* + * All supported features have either init state all zeros or are + * handled in setup_init_fpu() individually. This is an explicit + * feature list and does not use XFEATURE_MASK*SUPPORTED to catch + * newly added supported features at build time and make people + * actually look at the init state for the new feature. + */ +#define XFEATURES_INIT_FPSTATE_HANDLED \ + (XFEATURE_MASK_FP | \ + XFEATURE_MASK_SSE | \ + XFEATURE_MASK_YMM | \ + XFEATURE_MASK_OPMASK | \ + XFEATURE_MASK_ZMM_Hi256 | \ + XFEATURE_MASK_Hi16_ZMM | \ + XFEATURE_MASK_PKRU | \ + XFEATURE_MASK_BNDREGS | \ + XFEATURE_MASK_BNDCSR) + +/* * setup the xstate image representing the init state */ static void __init setup_init_fpu_buf(void) { static int on_boot_cpu __initdata = 1; + BUILD_BUG_ON(XCNTXT_MASK != XFEATURES_INIT_FPSTATE_HANDLED); + WARN_ON_FPU(!on_boot_cpu); on_boot_cpu = 0; @@ -423,10 +443,22 @@ copy_kernel_to_xregs_booting(&init_fpstate.xsave); /* - * Dump the init state again. This is to identify the init state - * of any feature which is not represented by all zero's. + * All components are now in init state. Read the state back so + * that init_fpstate contains all non-zero init state. This only + * works with XSAVE, but not with XSAVEOPT and XSAVES because + * those use the init optimization which skips writing data for + * components in init state. + * + * XSAVE could be used, but that would require to reshuffle the + * data when XSAVES is available because XSAVES uses xstate + * compaction. But doing so is a pointless exercise because most + * components have an all zeros init state except for the legacy + * ones (FP and SSE). Those can be saved with FXSAVE into the + * legacy area. Adding new features requires to ensure that init + * state is all zeroes or if not to add the necessary handling + * here. */ - copy_xregs_to_kernel_booting(&init_fpstate.xsave); + fxsave(&init_fpstate.fxsave); } static int xfeature_uncompacted_offset(int xfeature_nr) diff -u linux-azure-5.4.0/arch/x86/kernel/kprobes/core.c linux-azure-5.4.0/arch/x86/kernel/kprobes/core.c --- linux-azure-5.4.0/arch/x86/kernel/kprobes/core.c +++ linux-azure-5.4.0/arch/x86/kernel/kprobes/core.c @@ -358,6 +358,10 @@ kernel_insn_init(insn, dest, MAX_INSN_SIZE); insn_get_length(insn); + /* We can not probe force emulate prefixed instruction */ + if (insn_has_emulate_prefix(insn)) + return 0; + /* Another subsystem puts a breakpoint, failed to recover */ if (insn->opcode.bytes[0] == BREAKPOINT_INSTRUCTION) return 0; diff -u linux-azure-5.4.0/arch/x86/kernel/kvm.c linux-azure-5.4.0/arch/x86/kernel/kvm.c --- linux-azure-5.4.0/arch/x86/kernel/kvm.c +++ linux-azure-5.4.0/arch/x86/kernel/kvm.c @@ -59,6 +59,7 @@ DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time, steal_time) __aligned(64) __visible; static int has_steal_clock = 0; +static int has_guest_poll = 0; /* * No need for any "IO delay" on KVM */ @@ -460,7 +461,7 @@ } else if (apic_id < min && max - apic_id < KVM_IPI_CLUSTER_SIZE) { ipi_bitmap <<= min - apic_id; min = apic_id; - } else if (apic_id < min + KVM_IPI_CLUSTER_SIZE) { + } else if (apic_id > min && apic_id < min + KVM_IPI_CLUSTER_SIZE) { max = apic_id < max ? max : apic_id; } else { ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap, @@ -557,14 +558,26 @@ static int kvm_suspend(void) { + u64 val = 0; + kvm_guest_cpu_offline(false); +#ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL + if (kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) + rdmsrl(MSR_KVM_POLL_CONTROL, val); + has_guest_poll = !(val & 1); +#endif return 0; } static void kvm_resume(void) { kvm_cpu_online(raw_smp_processor_id()); + +#ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL + if (kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL) && has_guest_poll) + wrmsrl(MSR_KVM_POLL_CONTROL, 0); +#endif } static struct syscore_ops kvm_syscore_ops = { diff -u linux-azure-5.4.0/arch/x86/kernel/kvmclock.c linux-azure-5.4.0/arch/x86/kernel/kvmclock.c --- linux-azure-5.4.0/arch/x86/kernel/kvmclock.c +++ linux-azure-5.4.0/arch/x86/kernel/kvmclock.c @@ -50,18 +50,9 @@ static struct pvclock_vsyscall_time_info hv_clock_boot[HVC_BOOT_ARRAY_SIZE] __bss_decrypted __aligned(PAGE_SIZE); static struct pvclock_wall_clock wall_clock __bss_decrypted; -static DEFINE_PER_CPU(struct pvclock_vsyscall_time_info *, hv_clock_per_cpu); static struct pvclock_vsyscall_time_info *hvclock_mem; - -static inline struct pvclock_vcpu_time_info *this_cpu_pvti(void) -{ - return &this_cpu_read(hv_clock_per_cpu)->pvti; -} - -static inline struct pvclock_vsyscall_time_info *this_cpu_hvclock(void) -{ - return this_cpu_read(hv_clock_per_cpu); -} +DEFINE_PER_CPU(struct pvclock_vsyscall_time_info *, hv_clock_per_cpu); +EXPORT_PER_CPU_SYMBOL_GPL(hv_clock_per_cpu); /* * The wallclock is the time of day when we booted. Since then, some time may diff -u linux-azure-5.4.0/arch/x86/kernel/process.c linux-azure-5.4.0/arch/x86/kernel/process.c --- linux-azure-5.4.0/arch/x86/kernel/process.c +++ linux-azure-5.4.0/arch/x86/kernel/process.c @@ -449,7 +449,7 @@ } if (updmsr) - wrmsrl(MSR_IA32_SPEC_CTRL, msr); + write_spec_ctrl_current(msr, false); } static unsigned long speculation_ctrl_update_tif(struct task_struct *tsk) @@ -659,6 +659,10 @@ */ static int prefer_mwait_c1_over_halt(const struct cpuinfo_x86 *c) { + /* User has disallowed the use of MWAIT. Fallback to HALT */ + if (boot_option_idle_override == IDLE_NOMWAIT) + return 0; + if (c->x86_vendor != X86_VENDOR_INTEL) return 0; @@ -769,9 +773,8 @@ } else if (!strcmp(str, "nomwait")) { /* * If the boot option of "idle=nomwait" is added, - * it means that mwait will be disabled for CPU C2/C3 - * states. In such case it won't touch the variable - * of boot_option_idle_override. + * it means that mwait will be disabled for CPU C1/C2/C3 + * states. */ boot_option_idle_override = IDLE_NOMWAIT; } else diff -u linux-azure-5.4.0/arch/x86/kernel/process_64.c linux-azure-5.4.0/arch/x86/kernel/process_64.c --- linux-azure-5.4.0/arch/x86/kernel/process_64.c +++ linux-azure-5.4.0/arch/x86/kernel/process_64.c @@ -591,15 +591,13 @@ { struct thread_struct *prev = &prev_p->thread; struct thread_struct *next = &next_p->thread; - struct fpu *prev_fpu = &prev->fpu; - struct fpu *next_fpu = &next->fpu; int cpu = smp_processor_id(); WARN_ON_ONCE(IS_ENABLED(CONFIG_DEBUG_ENTRY) && this_cpu_read(irq_count) != -1); if (!test_thread_flag(TIF_NEED_FPU_LOAD)) - switch_fpu_prepare(prev_fpu, cpu); + switch_fpu_prepare(prev_p, cpu); /* We must save %fs and %gs before load_TLS() because * %fs and %gs may be cleared by load_TLS(). @@ -651,7 +649,7 @@ this_cpu_write(current_task, next_p); this_cpu_write(cpu_current_top_of_stack, task_top_of_stack(next_p)); - switch_fpu_finish(next_fpu); + switch_fpu_finish(next_p); /* Reload sp0. */ update_task_stack(next_p); diff -u linux-azure-5.4.0/arch/x86/kernel/reboot.c linux-azure-5.4.0/arch/x86/kernel/reboot.c --- linux-azure-5.4.0/arch/x86/kernel/reboot.c +++ linux-azure-5.4.0/arch/x86/kernel/reboot.c @@ -114,17 +114,9 @@ spin_unlock(&rtc_lock); /* - * Switch back to the initial page table. + * Switch to the trampoline page table. */ -#ifdef CONFIG_X86_32 - load_cr3(initial_page_table); -#else - write_cr3(real_mode_header->trampoline_pgd); - - /* Exiting long mode will fail if CR4.PCIDE is set. */ - if (boot_cpu_has(X86_FEATURE_PCID)) - cr4_clear_bits(X86_CR4_PCIDE); -#endif + load_trampoline_pgtable(); /* Jump to the identity-mapped low memory code */ #ifdef CONFIG_X86_32 @@ -389,10 +381,11 @@ }, { /* Handle problems with rebooting on the OptiPlex 990. */ .callback = set_pci_reboot, - .ident = "Dell OptiPlex 990", + .ident = "Dell OptiPlex 990 BIOS A0x", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"), + DMI_MATCH(DMI_BIOS_VERSION, "A0"), }, }, { /* Handle problems with rebooting on Dell 300's */ diff -u linux-azure-5.4.0/arch/x86/kernel/setup.c linux-azure-5.4.0/arch/x86/kernel/setup.c --- linux-azure-5.4.0/arch/x86/kernel/setup.c +++ linux-azure-5.4.0/arch/x86/kernel/setup.c @@ -1134,6 +1134,7 @@ efi_fake_memmap(); efi_find_mirror(); efi_esrt_init(); + efi_mokvar_table_init(); /* * The EFI specification says that boot service code won't be diff -u linux-azure-5.4.0/arch/x86/kernel/signal.c linux-azure-5.4.0/arch/x86/kernel/signal.c --- linux-azure-5.4.0/arch/x86/kernel/signal.c +++ linux-azure-5.4.0/arch/x86/kernel/signal.c @@ -241,10 +241,11 @@ void __user **fpstate) { /* Default to using normal stack */ + bool nested_altstack = on_sig_stack(regs->sp); + bool entering_altstack = false; unsigned long math_size = 0; unsigned long sp = regs->sp; unsigned long buf_fx = 0; - int onsigstack = on_sig_stack(sp); int ret; /* redzone */ @@ -253,15 +254,23 @@ /* This is the X/Open sanctioned signal stack switching. */ if (ka->sa.sa_flags & SA_ONSTACK) { - if (sas_ss_flags(sp) == 0) + /* + * This checks nested_altstack via sas_ss_flags(). Sensible + * programs use SS_AUTODISARM, which disables that check, and + * programs that don't use SS_AUTODISARM get compatible. + */ + if (sas_ss_flags(sp) == 0) { sp = current->sas_ss_sp + current->sas_ss_size; + entering_altstack = true; + } } else if (IS_ENABLED(CONFIG_X86_32) && - !onsigstack && + !nested_altstack && regs->ss != __USER_DS && !(ka->sa.sa_flags & SA_RESTORER) && ka->sa.sa_restorer) { /* This is the legacy signal stack switching. */ sp = (unsigned long) ka->sa.sa_restorer; + entering_altstack = true; } sp = fpu__alloc_mathframe(sp, IS_ENABLED(CONFIG_X86_32), @@ -274,8 +283,15 @@ * If we are on the alternate signal stack and would overflow it, don't. * Return an always-bogus address instead so we will die with SIGSEGV. */ - if (onsigstack && !likely(on_sig_stack(sp))) + if (unlikely((nested_altstack || entering_altstack) && + !__on_sig_stack(sp))) { + + if (show_unhandled_signals && printk_ratelimit()) + pr_info("%s[%d] overflowed sigaltstack\n", + current->comm, task_pid_nr(current)); + return (void __user *)-1L; + } /* save i387 and extended state */ ret = copy_fpstate_to_sigframe(*fpstate, (void __user *)buf_fx, math_size); diff -u linux-azure-5.4.0/arch/x86/kernel/unwind_orc.c linux-azure-5.4.0/arch/x86/kernel/unwind_orc.c --- linux-azure-5.4.0/arch/x86/kernel/unwind_orc.c +++ linux-azure-5.4.0/arch/x86/kernel/unwind_orc.c @@ -90,22 +90,27 @@ static struct orc_entry *orc_ftrace_find(unsigned long ip) { struct ftrace_ops *ops; - unsigned long caller; + unsigned long tramp_addr, offset; ops = ftrace_ops_trampoline(ip); if (!ops) return NULL; + /* Set tramp_addr to the start of the code copied by the trampoline */ if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) - caller = (unsigned long)ftrace_regs_call; + tramp_addr = (unsigned long)ftrace_regs_caller; else - caller = (unsigned long)ftrace_call; + tramp_addr = (unsigned long)ftrace_caller; + + /* Now place tramp_addr to the location within the trampoline ip is at */ + offset = ip - ops->trampoline; + tramp_addr += offset; /* Prevent unlikely recursion */ - if (ip == caller) + if (ip == tramp_addr) return NULL; - return orc_find(caller); + return orc_find(tramp_addr); } #else static struct orc_entry *orc_ftrace_find(unsigned long ip) @@ -682,7 +687,7 @@ /* Otherwise, skip ahead to the user-specified starting frame: */ while (!unwind_done(state) && (!on_stack(&state->stack_info, first_frame, sizeof(long)) || - state->sp < (unsigned long)first_frame)) + state->sp <= (unsigned long)first_frame)) unwind_next_frame(state); return; diff -u linux-azure-5.4.0/arch/x86/kvm/cpuid.c linux-azure-5.4.0/arch/x86/kvm/cpuid.c --- linux-azure-5.4.0/arch/x86/kvm/cpuid.c +++ linux-azure-5.4.0/arch/x86/kvm/cpuid.c @@ -592,6 +592,11 @@ union cpuid10_eax eax; union cpuid10_edx edx; + if (!static_cpu_has(X86_FEATURE_ARCH_PERFMON)) { + entry->eax = entry->ebx = entry->ecx = entry->edx = 0; + break; + } + perf_get_x86_pmu_capability(&cap); /* @@ -745,9 +750,16 @@ unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U); unsigned phys_as = entry->eax & 0xff; - if (!g_phys_as) + /* + * Use bare metal's MAXPHADDR if the CPU doesn't report guest + * MAXPHYADDR separately, or if TDP (NPT) is disabled, as the + * guest version "applies only to guests using nested paging". + */ + if (!g_phys_as || !tdp_enabled) g_phys_as = phys_as; + entry->eax = g_phys_as | (virt_as << 8); + entry->ecx &= ~(GENMASK(31, 16) | GENMASK(11, 8)); entry->edx = 0; entry->ebx &= kvm_cpuid_8000_0008_ebx_x86_features; cpuid_mask(&entry->ebx, CPUID_8000_0008_EBX); @@ -780,6 +792,9 @@ entry->ecx = entry->edx = 0; break; case 0x8000001a: + entry->eax &= GENMASK(2, 0); + entry->ebx = entry->ecx = entry->edx = 0; + break; case 0x8000001e: break; /*Add support for Centaur's CPUID instruction*/ diff -u linux-azure-5.4.0/arch/x86/kvm/emulate.c linux-azure-5.4.0/arch/x86/kvm/emulate.c --- linux-azure-5.4.0/arch/x86/kvm/emulate.c +++ linux-azure-5.4.0/arch/x86/kvm/emulate.c @@ -776,8 +776,7 @@ ctxt->mode, linear); } -static inline int assign_eip(struct x86_emulate_ctxt *ctxt, ulong dst, - enum x86emul_mode mode) +static inline int assign_eip(struct x86_emulate_ctxt *ctxt, ulong dst) { ulong linear; int rc; @@ -787,41 +786,71 @@ if (ctxt->op_bytes != sizeof(unsigned long)) addr.ea = dst & ((1UL << (ctxt->op_bytes << 3)) - 1); - rc = __linearize(ctxt, addr, &max_size, 1, false, true, mode, &linear); + rc = __linearize(ctxt, addr, &max_size, 1, false, true, ctxt->mode, &linear); if (rc == X86EMUL_CONTINUE) ctxt->_eip = addr.ea; return rc; } +static inline int emulator_recalc_and_set_mode(struct x86_emulate_ctxt *ctxt) +{ + u64 efer; + struct desc_struct cs; + u16 selector; + u32 base3; + + ctxt->ops->get_msr(ctxt, MSR_EFER, &efer); + + if (!(ctxt->ops->get_cr(ctxt, 0) & X86_CR0_PE)) { + /* Real mode. cpu must not have long mode active */ + if (efer & EFER_LMA) + return X86EMUL_UNHANDLEABLE; + ctxt->mode = X86EMUL_MODE_REAL; + return X86EMUL_CONTINUE; + } + + if (ctxt->eflags & X86_EFLAGS_VM) { + /* Protected/VM86 mode. cpu must not have long mode active */ + if (efer & EFER_LMA) + return X86EMUL_UNHANDLEABLE; + ctxt->mode = X86EMUL_MODE_VM86; + return X86EMUL_CONTINUE; + } + + if (!ctxt->ops->get_segment(ctxt, &selector, &cs, &base3, VCPU_SREG_CS)) + return X86EMUL_UNHANDLEABLE; + + if (efer & EFER_LMA) { + if (cs.l) { + /* Proper long mode */ + ctxt->mode = X86EMUL_MODE_PROT64; + } else if (cs.d) { + /* 32 bit compatibility mode*/ + ctxt->mode = X86EMUL_MODE_PROT32; + } else { + ctxt->mode = X86EMUL_MODE_PROT16; + } + } else { + /* Legacy 32 bit / 16 bit mode */ + ctxt->mode = cs.d ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16; + } + + return X86EMUL_CONTINUE; +} + static inline int assign_eip_near(struct x86_emulate_ctxt *ctxt, ulong dst) { - return assign_eip(ctxt, dst, ctxt->mode); + return assign_eip(ctxt, dst); } -static int assign_eip_far(struct x86_emulate_ctxt *ctxt, ulong dst, - const struct desc_struct *cs_desc) +static int assign_eip_far(struct x86_emulate_ctxt *ctxt, ulong dst) { - enum x86emul_mode mode = ctxt->mode; - int rc; + int rc = emulator_recalc_and_set_mode(ctxt); -#ifdef CONFIG_X86_64 - if (ctxt->mode >= X86EMUL_MODE_PROT16) { - if (cs_desc->l) { - u64 efer = 0; - - ctxt->ops->get_msr(ctxt, MSR_EFER, &efer); - if (efer & EFER_LMA) - mode = X86EMUL_MODE_PROT64; - } else - mode = X86EMUL_MODE_PROT32; /* temporary value */ - } -#endif - if (mode == X86EMUL_MODE_PROT16 || mode == X86EMUL_MODE_PROT32) - mode = cs_desc->d ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16; - rc = assign_eip(ctxt, dst, mode); - if (rc == X86EMUL_CONTINUE) - ctxt->mode = mode; - return rc; + if (rc != X86EMUL_CONTINUE) + return rc; + + return assign_eip(ctxt, dst); } static inline int jmp_rel(struct x86_emulate_ctxt *ctxt, int rel) @@ -1714,11 +1743,6 @@ goto exception; } - if (!seg_desc.p) { - err_vec = (seg == VCPU_SREG_SS) ? SS_VECTOR : NP_VECTOR; - goto exception; - } - dpl = seg_desc.dpl; switch (seg) { @@ -1758,12 +1782,6 @@ case VCPU_SREG_TR: if (seg_desc.s || (seg_desc.type != 1 && seg_desc.type != 9)) goto exception; - old_desc = seg_desc; - seg_desc.type |= 2; /* busy */ - ret = ctxt->ops->cmpxchg_emulated(ctxt, desc_addr, &old_desc, &seg_desc, - sizeof(seg_desc), &ctxt->exception); - if (ret != X86EMUL_CONTINUE) - return ret; break; case VCPU_SREG_LDTR: if (seg_desc.s || seg_desc.type != 2) @@ -1782,6 +1800,11 @@ break; } + if (!seg_desc.p) { + err_vec = (seg == VCPU_SREG_SS) ? SS_VECTOR : NP_VECTOR; + goto exception; + } + if (seg_desc.s) { /* mark segment as accessed */ if (!(seg_desc.type & 1)) { @@ -1796,8 +1819,17 @@ if (ret != X86EMUL_CONTINUE) return ret; if (emul_is_noncanonical_address(get_desc_base(&seg_desc) | - ((u64)base3 << 32), ctxt)) - return emulate_gp(ctxt, 0); + ((u64)base3 << 32), ctxt)) + return emulate_gp(ctxt, err_code); + } + + if (seg == VCPU_SREG_TR) { + old_desc = seg_desc; + seg_desc.type |= 2; /* busy */ + ret = ctxt->ops->cmpxchg_emulated(ctxt, desc_addr, &old_desc, &seg_desc, + sizeof(seg_desc), &ctxt->exception); + if (ret != X86EMUL_CONTINUE) + return ret; } load: ctxt->ops->set_segment(ctxt, selector, &seg_desc, base3, seg); @@ -2017,7 +2049,7 @@ if (rc != X86EMUL_CONTINUE) return rc; - if (ctxt->modrm_reg == VCPU_SREG_SS) + if (seg == VCPU_SREG_SS) ctxt->interruptibility = KVM_X86_SHADOW_INT_MOV_SS; if (ctxt->op_bytes > 2) rsp_increment(ctxt, ctxt->op_bytes - 2); @@ -2234,7 +2266,7 @@ if (rc != X86EMUL_CONTINUE) return rc; - rc = assign_eip_far(ctxt, ctxt->src.val, &new_desc); + rc = assign_eip_far(ctxt, ctxt->src.val); /* Error handling is not implemented. */ if (rc != X86EMUL_CONTINUE) return X86EMUL_UNHANDLEABLE; @@ -2315,7 +2347,7 @@ &new_desc); if (rc != X86EMUL_CONTINUE) return rc; - rc = assign_eip_far(ctxt, eip, &new_desc); + rc = assign_eip_far(ctxt, eip); /* Error handling is not implemented. */ if (rc != X86EMUL_CONTINUE) return X86EMUL_UNHANDLEABLE; @@ -2950,6 +2982,7 @@ ops->set_segment(ctxt, ss_sel, &ss, 0, VCPU_SREG_SS); ctxt->_eip = rdx; + ctxt->mode = usermode; *reg_write(ctxt, VCPU_REGS_RSP) = rcx; return X86EMUL_CONTINUE; @@ -3546,7 +3579,7 @@ if (rc != X86EMUL_CONTINUE) return rc; - rc = assign_eip_far(ctxt, ctxt->src.val, &new_desc); + rc = assign_eip_far(ctxt, ctxt->src.val); if (rc != X86EMUL_CONTINUE) goto fail; @@ -3693,11 +3726,25 @@ static int em_cr_write(struct x86_emulate_ctxt *ctxt) { - if (ctxt->ops->set_cr(ctxt, ctxt->modrm_reg, ctxt->src.val)) + int cr_num = ctxt->modrm_reg; + int r; + + if (ctxt->ops->set_cr(ctxt, cr_num, ctxt->src.val)) return emulate_gp(ctxt, 0); /* Disable writeback. */ ctxt->dst.type = OP_NONE; + + if (cr_num == 0) { + /* + * CR0 write might have updated CR0.PE and/or CR0.PG + * which can affect the cpu's execution mode. + */ + r = emulator_recalc_and_set_mode(ctxt); + if (r != X86EMUL_CONTINUE) + return r; + } + return X86EMUL_CONTINUE; } diff -u linux-azure-5.4.0/arch/x86/kvm/hyperv.c linux-azure-5.4.0/arch/x86/kvm/hyperv.c --- linux-azure-5.4.0/arch/x86/kvm/hyperv.c +++ linux-azure-5.4.0/arch/x86/kvm/hyperv.c @@ -205,7 +205,7 @@ struct kvm_vcpu *vcpu = synic_to_vcpu(synic); int ret; - if (!synic->active && !host) + if (!synic->active && (!host || data)) return 1; trace_kvm_hv_synic_set_msr(vcpu->vcpu_id, msr, data, host); @@ -251,6 +251,9 @@ case HV_X64_MSR_EOM: { int i; + if (!synic->active) + break; + for (i = 0; i < ARRAY_SIZE(synic->sint); i++) kvm_hv_notify_acked_sint(vcpu, i); break; @@ -306,6 +309,9 @@ struct kvm_lapic_irq irq; int ret, vector; + if (KVM_BUG_ON(!lapic_in_kernel(vcpu), vcpu->kvm)) + return -EINVAL; + if (sint >= ARRAY_SIZE(synic->sint)) return -EINVAL; @@ -514,6 +520,11 @@ { union hv_stimer_config new_config = {.as_uint64 = config}, old_config = {.as_uint64 = stimer->config.as_uint64}; + struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer); + struct kvm_vcpu_hv_synic *synic = vcpu_to_synic(vcpu); + + if (!synic->active && (!host || config)) + return 1; trace_kvm_hv_stimer_set_config(stimer_to_vcpu(stimer)->vcpu_id, stimer->index, config, host); @@ -533,6 +544,12 @@ static int stimer_set_count(struct kvm_vcpu_hv_stimer *stimer, u64 count, bool host) { + struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer); + struct kvm_vcpu_hv_synic *synic = vcpu_to_synic(vcpu); + + if (!synic->active && (!host || count)) + return 1; + trace_kvm_hv_stimer_set_count(stimer_to_vcpu(stimer)->vcpu_id, stimer->index, count, host); @@ -898,7 +915,7 @@ * These two equivalencies are implemented in this function. */ static bool compute_tsc_page_parameters(struct pvclock_vcpu_time_info *hv_clock, - HV_REFERENCE_TSC_PAGE *tsc_ref) + struct ms_hyperv_tsc_page *tsc_ref) { u64 max_mul; @@ -939,7 +956,7 @@ u64 gfn; BUILD_BUG_ON(sizeof(tsc_seq) != sizeof(hv->tsc_ref.tsc_sequence)); - BUILD_BUG_ON(offsetof(HV_REFERENCE_TSC_PAGE, tsc_sequence) != 0); + BUILD_BUG_ON(offsetof(struct ms_hyperv_tsc_page, tsc_sequence) != 0); if (!(hv->hv_tsc_page & HV_X64_MSR_TSC_REFERENCE_ENABLE)) return; @@ -1501,11 +1518,13 @@ all_cpus = send_ipi_ex.vp_set.format == HV_GENERIC_SET_ALL; + if (all_cpus) + goto check_and_send_ipi; + if (!sparse_banks_len) goto ret_success; - if (!all_cpus && - kvm_read_guest(kvm, + if (kvm_read_guest(kvm, ingpa + offsetof(struct hv_send_ipi_ex, vp_set.bank_contents), sparse_banks, @@ -1513,6 +1532,7 @@ return HV_STATUS_INVALID_HYPERCALL_INPUT; } +check_and_send_ipi: if ((vector < HV_IPI_LOW_VECTOR) || (vector > HV_IPI_HIGH_VECTOR)) return HV_STATUS_INVALID_HYPERCALL_INPUT; diff -u linux-azure-5.4.0/arch/x86/kvm/lapic.c linux-azure-5.4.0/arch/x86/kvm/lapic.c --- linux-azure-5.4.0/arch/x86/kvm/lapic.c +++ linux-azure-5.4.0/arch/x86/kvm/lapic.c @@ -118,7 +118,8 @@ bool kvm_can_post_timer_interrupt(struct kvm_vcpu *vcpu) { - return pi_inject_timer && kvm_vcpu_apicv_active(vcpu); + return pi_inject_timer && kvm_vcpu_apicv_active(vcpu) && + (kvm_mwait_in_guest(vcpu->kvm) || kvm_hlt_in_guest(vcpu->kvm)); } EXPORT_SYMBOL_GPL(kvm_can_post_timer_interrupt); @@ -954,6 +955,10 @@ *r = -1; if (irq->shorthand == APIC_DEST_SELF) { + if (KVM_BUG_ON(!src, kvm)) { + *r = 0; + return true; + } *r = kvm_apic_set_irq(src->vcpu, irq, dest_map); return true; } @@ -1332,6 +1337,9 @@ if (!apic_x2apic_mode(apic)) valid_reg_mask |= APIC_REG_MASK(APIC_ARBPRI); + if (alignment + len > 4) + return 1; + if (offset > 0x3f0 || !(valid_reg_mask & APIC_REG_MASK(offset))) return 1; @@ -2096,10 +2104,7 @@ void kvm_lapic_set_tpr(struct kvm_vcpu *vcpu, unsigned long cr8) { - struct kvm_lapic *apic = vcpu->arch.apic; - - apic_set_tpr(apic, ((cr8 & 0x0f) << 4) - | (kvm_lapic_get_reg(apic, APIC_TASKPRI) & 4)); + apic_set_tpr(vcpu->arch.apic, (cr8 & 0x0f) << 4); } u64 kvm_lapic_get_cr8(struct kvm_vcpu *vcpu) diff -u linux-azure-5.4.0/arch/x86/kvm/mmu.c linux-azure-5.4.0/arch/x86/kvm/mmu.c --- linux-azure-5.4.0/arch/x86/kvm/mmu.c +++ linux-azure-5.4.0/arch/x86/kvm/mmu.c @@ -2143,7 +2143,7 @@ * aggregate version in order to make the slab shrinker * faster */ -static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, unsigned long nr) +static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, long nr) { kvm->arch.n_used_mmu_pages += nr; percpu_counter_add(&kvm_total_used_mmu_pages, nr); @@ -4666,7 +4666,15 @@ void reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context) { - bool uses_nx = context->nx || + /* + * KVM uses NX when TDP is disabled to handle a variety of scenarios, + * notably for huge SPTEs if iTLB multi-hit mitigation is enabled and + * to generate correct permissions for CR0.WP=0/CR4.SMEP=1/EFER.NX=0. + * The iTLB multi-hit workaround can be toggled at any time, so assume + * NX can be used by any non-nested shadow MMU to avoid having to reset + * MMU contexts. Note, KVM forces EFER.NX=1 when TDP is disabled. + */ + bool uses_nx = context->nx || !tdp_enabled || context->mmu_role.base.smep_andnot_wp; struct rsvd_bits_validate *shadow_zero_check; int i; @@ -5628,14 +5636,16 @@ uint i; if (pcid == kvm_get_active_pcid(vcpu)) { - mmu->invlpg(vcpu, gva, mmu->root_hpa); + if (mmu->invlpg) + mmu->invlpg(vcpu, gva, mmu->root_hpa); tlb_flush = true; } for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) { if (VALID_PAGE(mmu->prev_roots[i].hpa) && pcid == kvm_get_pcid(vcpu, mmu->prev_roots[i].cr3)) { - mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); + if (mmu->invlpg) + mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); tlb_flush = true; } } @@ -5813,6 +5823,7 @@ { struct kvm_mmu_page *sp, *node; int nr_zapped, batch = 0; + bool unstable; restart: list_for_each_entry_safe_reverse(sp, node, @@ -5845,11 +5856,12 @@ goto restart; } - if (__kvm_mmu_prepare_zap_page(kvm, sp, - &kvm->arch.zapped_obsolete_pages, &nr_zapped)) { - batch += nr_zapped; + unstable = __kvm_mmu_prepare_zap_page(kvm, sp, + &kvm->arch.zapped_obsolete_pages, &nr_zapped); + batch += nr_zapped; + + if (unstable) goto restart; - } } /* diff -u linux-azure-5.4.0/arch/x86/kvm/paging_tmpl.h linux-azure-5.4.0/arch/x86/kvm/paging_tmpl.h --- linux-azure-5.4.0/arch/x86/kvm/paging_tmpl.h +++ linux-azure-5.4.0/arch/x86/kvm/paging_tmpl.h @@ -34,9 +34,8 @@ #define PT_HAVE_ACCESSED_DIRTY(mmu) true #ifdef CONFIG_X86_64 #define PT_MAX_FULL_LEVELS PT64_ROOT_MAX_LEVEL - #define CMPXCHG cmpxchg + #define CMPXCHG "cmpxchgq" #else - #define CMPXCHG cmpxchg64 #define PT_MAX_FULL_LEVELS 2 #endif #elif PTTYPE == 32 @@ -52,7 +51,7 @@ #define PT_GUEST_DIRTY_SHIFT PT_DIRTY_SHIFT #define PT_GUEST_ACCESSED_SHIFT PT_ACCESSED_SHIFT #define PT_HAVE_ACCESSED_DIRTY(mmu) true - #define CMPXCHG cmpxchg + #define CMPXCHG "cmpxchgl" #elif PTTYPE == PTTYPE_EPT #define pt_element_t u64 #define guest_walker guest_walkerEPT @@ -65,8 +64,10 @@ #define PT_GUEST_DIRTY_SHIFT 9 #define PT_GUEST_ACCESSED_SHIFT 8 #define PT_HAVE_ACCESSED_DIRTY(mmu) ((mmu)->ept_ad) - #define CMPXCHG cmpxchg64 #define PT_MAX_FULL_LEVELS 4 + #ifdef CONFIG_X86_64 + #define CMPXCHG "cmpxchgq" + #endif #else #error Invalid PTTYPE value #endif @@ -90,8 +91,8 @@ gpa_t pte_gpa[PT_MAX_FULL_LEVELS]; pt_element_t __user *ptep_user[PT_MAX_FULL_LEVELS]; bool pte_writable[PT_MAX_FULL_LEVELS]; - unsigned pt_access; - unsigned pte_access; + unsigned int pt_access[PT_MAX_FULL_LEVELS]; + unsigned int pte_access; gfn_t gfn; struct x86_exception fault; }; @@ -132,43 +133,39 @@ pt_element_t __user *ptep_user, unsigned index, pt_element_t orig_pte, pt_element_t new_pte) { - int npages; - pt_element_t ret; - pt_element_t *table; - struct page *page; - - npages = get_user_pages_fast((unsigned long)ptep_user, 1, FOLL_WRITE, &page); - if (likely(npages == 1)) { - table = kmap_atomic(page); - ret = CMPXCHG(&table[index], orig_pte, new_pte); - kunmap_atomic(table); - - kvm_release_page_dirty(page); - } else { - struct vm_area_struct *vma; - unsigned long vaddr = (unsigned long)ptep_user & PAGE_MASK; - unsigned long pfn; - unsigned long paddr; - - down_read(¤t->mm->mmap_sem); - vma = find_vma_intersection(current->mm, vaddr, vaddr + PAGE_SIZE); - if (!vma || !(vma->vm_flags & VM_PFNMAP)) { - up_read(¤t->mm->mmap_sem); - return -EFAULT; - } - pfn = ((vaddr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff; - paddr = pfn << PAGE_SHIFT; - table = memremap(paddr, PAGE_SIZE, MEMREMAP_WB); - if (!table) { - up_read(¤t->mm->mmap_sem); - return -EFAULT; - } - ret = CMPXCHG(&table[index], orig_pte, new_pte); - memunmap(table); - up_read(¤t->mm->mmap_sem); - } + int r = -EFAULT; - return (ret != orig_pte); + if (!user_access_begin(ptep_user, sizeof(pt_element_t))) + return -EFAULT; + +#ifdef CMPXCHG + asm volatile("1:" LOCK_PREFIX CMPXCHG " %[new], %[ptr]\n" + "mov $0, %[r]\n" + "setnz %b[r]\n" + "2:" + _ASM_EXTABLE_UA(1b, 2b) + : [ptr] "+m" (*ptep_user), + [old] "+a" (orig_pte), + [r] "+q" (r) + : [new] "r" (new_pte) + : "memory"); +#else + asm volatile("1:" LOCK_PREFIX "cmpxchg8b %[ptr]\n" + "movl $0, %[r]\n" + "jz 2f\n" + "incl %[r]\n" + "2:" + _ASM_EXTABLE_UA(1b, 2b) + : [ptr] "+m" (*ptep_user), + [old] "+A" (orig_pte), + [r] "+rm" (r) + : [new_lo] "b" ((u32)new_pte), + [new_hi] "c" ((u32)(new_pte >> 32)) + : "memory"); +#endif + + user_access_end(); + return r; } static bool FNAME(prefetch_invalid_gpte)(struct kvm_vcpu *vcpu, @@ -406,13 +403,15 @@ } walker->ptes[walker->level - 1] = pte; + + /* Convert to ACC_*_MASK flags for struct guest_walker. */ + walker->pt_access[walker->level - 1] = FNAME(gpte_access)(pt_access ^ walk_nx_mask); } while (!is_last_gpte(mmu, walker->level, pte)); pte_pkey = FNAME(gpte_pkeys)(vcpu, pte); accessed_dirty = have_ad ? pte_access & PT_GUEST_ACCESSED_MASK : 0; /* Convert to ACC_*_MASK flags for struct guest_walker. */ - walker->pt_access = FNAME(gpte_access)(pt_access ^ walk_nx_mask); walker->pte_access = FNAME(gpte_access)(pte_access ^ walk_nx_mask); errcode = permission_fault(vcpu, mmu, walker->pte_access, pte_pkey, access); if (unlikely(errcode)) @@ -451,7 +450,8 @@ } pgprintk("%s: pte %llx pte_access %x pt_access %x\n", - __func__, (u64)pte, walker->pte_access, walker->pt_access); + __func__, (u64)pte, walker->pte_access, + walker->pt_access[walker->level - 1]); return 1; error: @@ -620,7 +620,7 @@ { struct kvm_mmu_page *sp = NULL; struct kvm_shadow_walk_iterator it; - unsigned direct_access, access = gw->pt_access; + unsigned int direct_access, access; int top_level, ret; gfn_t gfn, base_gfn; @@ -652,6 +652,7 @@ sp = NULL; if (!is_shadow_present_pte(*it.sptep)) { table_gfn = gw->table_gfn[it.level - 2]; + access = gw->pt_access[it.level - 2]; sp = kvm_mmu_get_page(vcpu, table_gfn, addr, it.level-1, false, access); } diff -u linux-azure-5.4.0/arch/x86/kvm/pmu.h linux-azure-5.4.0/arch/x86/kvm/pmu.h --- linux-azure-5.4.0/arch/x86/kvm/pmu.h +++ linux-azure-5.4.0/arch/x86/kvm/pmu.h @@ -22,8 +22,7 @@ }; struct kvm_pmu_ops { - unsigned (*find_arch_event)(struct kvm_pmu *pmu, u8 event_select, - u8 unit_mask); + unsigned int (*pmc_perf_hw_id)(struct kvm_pmc *pmc); unsigned (*find_fixed_event)(int idx); bool (*pmc_is_enabled)(struct kvm_pmc *pmc); struct kvm_pmc *(*pmc_idx_to_pmc)(struct kvm_pmu *pmu, int pmc_idx); diff -u linux-azure-5.4.0/arch/x86/kvm/svm.c linux-azure-5.4.0/arch/x86/kvm/svm.c --- linux-azure-5.4.0/arch/x86/kvm/svm.c +++ linux-azure-5.4.0/arch/x86/kvm/svm.c @@ -47,6 +47,7 @@ #include #include #include +#include #include #include "trace.h" @@ -516,6 +517,9 @@ c->intercept_dr = h->intercept_dr | g->intercept_dr; c->intercept_exceptions = h->intercept_exceptions | g->intercept_exceptions; c->intercept = h->intercept | g->intercept; + + c->intercept |= (1ULL << INTERCEPT_VMLOAD); + c->intercept |= (1ULL << INTERCEPT_VMSAVE); } static inline struct vmcb *get_host_vmcb(struct vcpu_svm *svm) @@ -1443,12 +1447,7 @@ } } - if (vgif) { - if (!boot_cpu_has(X86_FEATURE_VGIF)) - vgif = false; - else - pr_info("Virtual GIF supported\n"); - } + vgif = false; /* Disabled for CVE-2021-3653 */ return 0; @@ -1783,7 +1782,7 @@ for_each_possible_cpu(cpu) { sd = per_cpu(svm_data, cpu); - sd->sev_vmcbs[pos] = NULL; + sd->sev_vmcbs[asid] = NULL; } } @@ -1794,9 +1793,25 @@ __sev_asid_free(sev->asid); } -static void sev_unbind_asid(struct kvm *kvm, unsigned int handle) +static void sev_decommission(unsigned int handle) { struct sev_data_decommission *decommission; + + if (!handle) + return; + + decommission = kzalloc(sizeof(*decommission), GFP_KERNEL); + if (!decommission) + return; + + decommission->handle = handle; + sev_guest_decommission(decommission, NULL); + + kfree(decommission); +} + +static void sev_unbind_asid(struct kvm *kvm, unsigned int handle) +{ struct sev_data_deactivate *data; if (!handle) @@ -1814,15 +1829,7 @@ sev_guest_df_flush(NULL); kfree(data); - decommission = kzalloc(sizeof(*decommission), GFP_KERNEL); - if (!decommission) - return; - - /* decommission handle */ - decommission->handle = handle; - sev_guest_decommission(decommission, NULL); - - kfree(decommission); + sev_decommission(handle); } static struct page **sev_pin_memory(struct kvm *kvm, unsigned long uaddr, @@ -1898,7 +1905,8 @@ uint8_t *page_virtual; unsigned long i; - if (npages == 0 || pages == NULL) + if (this_cpu_has(X86_FEATURE_SME_COHERENT) || npages == 0 || + pages == NULL) return; for (i = 0; i < npages; i++) { @@ -1960,6 +1968,7 @@ list_for_each_safe(pos, q, head) { __unregister_enc_region_locked(kvm, list_entry(pos, struct enc_region, list)); + cond_resched(); } } @@ -3598,7 +3607,13 @@ svm->nested.intercept = nested_vmcb->control.intercept; svm_flush_tlb(&svm->vcpu, true); - svm->vmcb->control.int_ctl = nested_vmcb->control.int_ctl | V_INTR_MASKING_MASK; + + svm->vmcb->control.int_ctl &= + V_INTR_MASKING_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK; + + svm->vmcb->control.int_ctl |= nested_vmcb->control.int_ctl & + (V_TPR_MASK | V_IRQ_INJECTION_BITS_MASK); + if (nested_vmcb->control.int_ctl & V_INTR_MASKING_MASK) svm->vcpu.arch.hflags |= HF_VINTR_MASK; else @@ -4057,7 +4072,7 @@ err = 0; if (cr >= 16) { /* mov to cr */ cr -= 16; - val = kvm_register_read(&svm->vcpu, reg); + val = kvm_register_readl(&svm->vcpu, reg); switch (cr) { case 0: if (!check_selective_cr0_intercepted(svm, val)) @@ -4102,7 +4117,7 @@ kvm_queue_exception(&svm->vcpu, UD_VECTOR); return 1; } - kvm_register_write(&svm->vcpu, reg, val); + kvm_register_writel(&svm->vcpu, reg, val); } return kvm_complete_insn_gp(&svm->vcpu, err); } @@ -4132,13 +4147,13 @@ if (dr >= 16) { /* mov to DRn */ if (!kvm_require_dr(&svm->vcpu, dr - 16)) return 1; - val = kvm_register_read(&svm->vcpu, reg); + val = kvm_register_readl(&svm->vcpu, reg); kvm_set_dr(&svm->vcpu, dr - 16, val); } else { if (!kvm_require_dr(&svm->vcpu, dr)) return 1; kvm_get_dr(&svm->vcpu, dr, &val); - kvm_register_write(&svm->vcpu, reg, val); + kvm_register_writel(&svm->vcpu, reg, val); } return kvm_skip_emulated_instruction(&svm->vcpu); @@ -4572,8 +4587,6 @@ break; } case AVIC_IPI_FAILURE_INVALID_TARGET: - WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n", - index, svm->vcpu.vcpu_id, icrh, icrl); break; case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE: WARN_ONCE(1, "Invalid backing page\n"); @@ -5125,8 +5138,6 @@ { struct vcpu_svm *svm = to_svm(vcpu); - BUG_ON(!(gif_set(svm))); - trace_kvm_inj_virq(vcpu->arch.interrupt.nr); ++vcpu->stat.irq_injections; @@ -6475,8 +6486,10 @@ /* Bind ASID to this guest */ ret = sev_bind_asid(kvm, start->handle, error); - if (ret) + if (ret) { + sev_decommission(start->handle); goto e_free_session; + } /* return handle to userspace */ params.handle = start->handle; diff -u linux-azure-5.4.0/arch/x86/kvm/vmx/nested.c linux-azure-5.4.0/arch/x86/kvm/vmx/nested.c --- linux-azure-5.4.0/arch/x86/kvm/vmx/nested.c +++ linux-azure-5.4.0/arch/x86/kvm/vmx/nested.c @@ -11,6 +11,7 @@ #include "mmu.h" #include "nested.h" #include "trace.h" +#include "vmx.h" #include "x86.h" static bool __read_mostly enable_shadow_vmcs = 1; @@ -1060,7 +1061,7 @@ BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) | /* reserved */ BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56); - u64 vmx_basic = vmx->nested.msrs.basic; + u64 vmx_basic = vmcs_config.nested.basic; if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved)) return -EINVAL; @@ -1083,36 +1084,42 @@ return 0; } -static int -vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) +static void vmx_get_control_msr(struct nested_vmx_msrs *msrs, u32 msr_index, + u32 **low, u32 **high) { - u64 supported; - u32 *lowp, *highp; - switch (msr_index) { case MSR_IA32_VMX_TRUE_PINBASED_CTLS: - lowp = &vmx->nested.msrs.pinbased_ctls_low; - highp = &vmx->nested.msrs.pinbased_ctls_high; + *low = &msrs->pinbased_ctls_low; + *high = &msrs->pinbased_ctls_high; break; case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: - lowp = &vmx->nested.msrs.procbased_ctls_low; - highp = &vmx->nested.msrs.procbased_ctls_high; + *low = &msrs->procbased_ctls_low; + *high = &msrs->procbased_ctls_high; break; case MSR_IA32_VMX_TRUE_EXIT_CTLS: - lowp = &vmx->nested.msrs.exit_ctls_low; - highp = &vmx->nested.msrs.exit_ctls_high; + *low = &msrs->exit_ctls_low; + *high = &msrs->exit_ctls_high; break; case MSR_IA32_VMX_TRUE_ENTRY_CTLS: - lowp = &vmx->nested.msrs.entry_ctls_low; - highp = &vmx->nested.msrs.entry_ctls_high; + *low = &msrs->entry_ctls_low; + *high = &msrs->entry_ctls_high; break; case MSR_IA32_VMX_PROCBASED_CTLS2: - lowp = &vmx->nested.msrs.secondary_ctls_low; - highp = &vmx->nested.msrs.secondary_ctls_high; + *low = &msrs->secondary_ctls_low; + *high = &msrs->secondary_ctls_high; break; default: BUG(); } +} + +static int +vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) +{ + u32 *lowp, *highp; + u64 supported; + + vmx_get_control_msr(&vmcs_config.nested, msr_index, &lowp, &highp); supported = vmx_control_msr(*lowp, *highp); @@ -1124,6 +1131,7 @@ if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32))) return -EINVAL; + vmx_get_control_msr(&vmx->nested.msrs, msr_index, &lowp, &highp); *lowp = data; *highp = data >> 32; return 0; @@ -1137,10 +1145,8 @@ BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) | /* reserved */ GENMASK_ULL(13, 9) | BIT_ULL(31); - u64 vmx_misc; - - vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low, - vmx->nested.msrs.misc_high); + u64 vmx_misc = vmx_control_msr(vmcs_config.nested.misc_low, + vmcs_config.nested.misc_high); if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits)) return -EINVAL; @@ -1168,10 +1174,8 @@ static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data) { - u64 vmx_ept_vpid_cap; - - vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps, - vmx->nested.msrs.vpid_caps); + u64 vmx_ept_vpid_cap = vmx_control_msr(vmcs_config.nested.ept_caps, + vmcs_config.nested.vpid_caps); /* Every bit is either reserved or a feature bit. */ if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL)) @@ -1182,20 +1186,21 @@ return 0; } -static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) +static u64 *vmx_get_fixed0_msr(struct nested_vmx_msrs *msrs, u32 msr_index) { - u64 *msr; - switch (msr_index) { case MSR_IA32_VMX_CR0_FIXED0: - msr = &vmx->nested.msrs.cr0_fixed0; - break; + return &msrs->cr0_fixed0; case MSR_IA32_VMX_CR4_FIXED0: - msr = &vmx->nested.msrs.cr4_fixed0; - break; + return &msrs->cr4_fixed0; default: BUG(); } +} + +static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) +{ + const u64 *msr = vmx_get_fixed0_msr(&vmcs_config.nested, msr_index); /* * 1 bits (which indicates bits which "must-be-1" during VMX operation) @@ -1204,7 +1209,7 @@ if (!is_bitwise_subset(data, *msr, -1ULL)) return -EINVAL; - *msr = data; + *vmx_get_fixed0_msr(&vmx->nested.msrs, msr_index) = data; return 0; } @@ -1265,7 +1270,7 @@ vmx->nested.msrs.vmcs_enum = data; return 0; case MSR_IA32_VMX_VMFUNC: - if (data & ~vmx->nested.msrs.vmfunc_controls) + if (data & ~vmcs_config.nested.vmfunc_controls) return -EINVAL; vmx->nested.msrs.vmfunc_controls = data; return 0; @@ -2057,12 +2062,11 @@ ~PIN_BASED_VMX_PREEMPTION_TIMER); /* Posted interrupts setting is only taken from vmcs12. */ - if (nested_cpu_has_posted_intr(vmcs12)) { + vmx->nested.pi_pending = false; + if (nested_cpu_has_posted_intr(vmcs12)) vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; - vmx->nested.pi_pending = false; - } else { + else exec_control &= ~PIN_BASED_POSTED_INTR; - } pin_controls_set(vmx, exec_control); /* @@ -2860,35 +2864,8 @@ vmx->loaded_vmcs->host_state.cr4 = cr4; } - asm( - "sub $%c[wordsize], %%" _ASM_SP "\n\t" /* temporarily adjust RSP for CALL */ - "cmp %%" _ASM_SP ", %c[host_state_rsp](%[loaded_vmcs]) \n\t" - "je 1f \n\t" - __ex("vmwrite %%" _ASM_SP ", %[HOST_RSP]") "\n\t" - "mov %%" _ASM_SP ", %c[host_state_rsp](%[loaded_vmcs]) \n\t" - "1: \n\t" - "add $%c[wordsize], %%" _ASM_SP "\n\t" /* un-adjust RSP */ - - /* Check if vmlaunch or vmresume is needed */ - "cmpb $0, %c[launched](%[loaded_vmcs])\n\t" - - /* - * VMLAUNCH and VMRESUME clear RFLAGS.{CF,ZF} on VM-Exit, set - * RFLAGS.CF on VM-Fail Invalid and set RFLAGS.ZF on VM-Fail - * Valid. vmx_vmenter() directly "returns" RFLAGS, and so the - * results of VM-Enter is captured via CC_{SET,OUT} to vm_fail. - */ - "call vmx_vmenter\n\t" - - CC_SET(be) - : ASM_CALL_CONSTRAINT, CC_OUT(be) (vm_fail) - : [HOST_RSP]"r"((unsigned long)HOST_RSP), - [loaded_vmcs]"r"(vmx->loaded_vmcs), - [launched]"i"(offsetof(struct loaded_vmcs, launched)), - [host_state_rsp]"i"(offsetof(struct loaded_vmcs, host_state.rsp)), - [wordsize]"i"(sizeof(ulong)) - : "memory" - ); + vm_fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs, + __vmx_vcpu_run_flags(vmx)); if (vmx->msr_autoload.host.nr) vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr); @@ -3066,10 +3043,12 @@ if (likely(!evaluate_pending_interrupts) && kvm_vcpu_apicv_active(vcpu)) evaluate_pending_interrupts |= vmx_has_apicv_interrupt(vcpu); - if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) + if (!vmx->nested.nested_run_pending || + !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); if (kvm_mpx_supported() && - !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)) + (!vmx->nested.nested_run_pending || + !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS))) vmx->nested.vmcs01_guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); /* @@ -3448,7 +3427,16 @@ u32 intr_info = nr | INTR_INFO_VALID_MASK; if (vcpu->arch.exception.has_error_code) { - vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code; + /* + * Intel CPUs do not generate error codes with bits 31:16 set, + * and more importantly VMX disallows setting bits 31:16 in the + * injected error code for VM-Entry. Drop the bits to mimic + * hardware and avoid inducing failure on nested VM-Entry if L1 + * chooses to inject the exception back to L2. AMD CPUs _do_ + * generate "full" 32-bit error codes, so KVM allows userspace + * to inject exception error codes with bits 31:16 set. + */ + vmcs12->vm_exit_intr_error_code = (u16)vcpu->arch.exception.error_code; intr_info |= INTR_INFO_DELIVER_CODE_MASK; } @@ -3747,12 +3735,12 @@ /* update exit information fields: */ vmcs12->vm_exit_reason = exit_reason; vmcs12->exit_qualification = exit_qualification; - vmcs12->vm_exit_intr_info = exit_intr_info; - - vmcs12->idt_vectoring_info_field = 0; - vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); - vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); + /* + * On VM-Exit due to a failed VM-Entry, the VMCS isn't marked launched + * and only EXIT_REASON and EXIT_QUALIFICATION are updated, all other + * exit info fields are unmodified. + */ if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { vmcs12->launch_state = 1; @@ -3764,8 +3752,13 @@ * Transfer the event that L0 or L1 may wanted to inject into * L2 to IDT_VECTORING_INFO_FIELD. */ + vmcs12->idt_vectoring_info_field = 0; vmcs12_save_pending_event(vcpu, vmcs12); + vmcs12->vm_exit_intr_info = exit_intr_info; + vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); + vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); + /* * According to spec, there's no need to store the guest's * MSRs if the exit is due to a VM-entry failure that occurs @@ -3778,14 +3771,6 @@ nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); } - - /* - * Drop what we picked up for L2 via vmx_complete_interrupts. It is - * preserved above and would only end up incorrectly in L1. - */ - vcpu->arch.nmi_injected = false; - kvm_clear_exception_queue(vcpu); - kvm_clear_interrupt_queue(vcpu); } /* @@ -3927,6 +3912,10 @@ }; vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); + memset(&seg, 0, sizeof(seg)); + seg.unusable = 1; + vmx_set_segment(vcpu, &seg, VCPU_SREG_LDTR); + kvm_set_dr(vcpu, 7, 0x400); vmcs_write64(GUEST_IA32_DEBUGCTL, 0); @@ -4120,6 +4109,17 @@ WARN_ON_ONCE(nested_early_check); } + /* + * Drop events/exceptions that were queued for re-injection to L2 + * (picked up via vmx_complete_interrupts()), as well as exceptions + * that were pending for L2. Note, this must NOT be hoisted above + * prepare_vmcs12(), events/exceptions queued for re-injection need to + * be captured in vmcs12 (see vmcs12_save_pending_event()). + */ + vcpu->arch.nmi_injected = false; + kvm_clear_exception_queue(vcpu); + kvm_clear_interrupt_queue(vcpu); + vmx_switch_vmcs(vcpu, &vmx->vmcs01); /* Update any VMCS fields that might have changed while L2 ran */ @@ -5099,7 +5099,7 @@ } vmcs12 = get_vmcs12(vcpu); - if ((vmcs12->vm_function_control & (1 << function)) == 0) + if (!(vmcs12->vm_function_control & BIT_ULL(function))) goto fail; switch (function) { diff -u linux-azure-5.4.0/arch/x86/kvm/vmx/pmu_intel.c linux-azure-5.4.0/arch/x86/kvm/vmx/pmu_intel.c --- linux-azure-5.4.0/arch/x86/kvm/vmx/pmu_intel.c +++ linux-azure-5.4.0/arch/x86/kvm/vmx/pmu_intel.c @@ -64,10 +64,11 @@ reprogram_counter(pmu, bit); } -static unsigned intel_find_arch_event(struct kvm_pmu *pmu, - u8 event_select, - u8 unit_mask) +static unsigned int intel_pmc_perf_hw_id(struct kvm_pmc *pmc) { + struct kvm_pmu *pmu = pmc_to_pmu(pmc); + u8 event_select = pmc->eventsel & ARCH_PERFMON_EVENTSEL_EVENT; + u8 unit_mask = (pmc->eventsel & ARCH_PERFMON_EVENTSEL_UMASK) >> 8; int i; for (i = 0; i < ARRAY_SIZE(intel_arch_events); i++) @@ -374,7 +375,7 @@ } struct kvm_pmu_ops intel_pmu_ops = { - .find_arch_event = intel_find_arch_event, + .pmc_perf_hw_id = intel_pmc_perf_hw_id, .find_fixed_event = intel_find_fixed_event, .pmc_is_enabled = intel_pmc_is_enabled, .pmc_idx_to_pmc = intel_pmc_idx_to_pmc, diff -u linux-azure-5.4.0/arch/x86/kvm/vmx/vmenter.S linux-azure-5.4.0/arch/x86/kvm/vmx/vmenter.S --- linux-azure-5.4.0/arch/x86/kvm/vmx/vmenter.S +++ linux-azure-5.4.0/arch/x86/kvm/vmx/vmenter.S @@ -4,6 +4,7 @@ #include #include #include +#include "run_flags.h" #define WORD_SIZE (BITS_PER_LONG / 8) @@ -30,76 +31,11 @@ .text /** - * vmx_vmenter - VM-Enter the current loaded VMCS - * - * %RFLAGS.ZF: !VMCS.LAUNCHED, i.e. controls VMLAUNCH vs. VMRESUME - * - * Returns: - * %RFLAGS.CF is set on VM-Fail Invalid - * %RFLAGS.ZF is set on VM-Fail Valid - * %RFLAGS.{CF,ZF} are cleared on VM-Success, i.e. VM-Exit - * - * Note that VMRESUME/VMLAUNCH fall-through and return directly if - * they VM-Fail, whereas a successful VM-Enter + VM-Exit will jump - * to vmx_vmexit. - */ -ENTRY(vmx_vmenter) - /* EFLAGS.ZF is set if VMCS.LAUNCHED == 0 */ - je 2f - -1: vmresume - ret - -2: vmlaunch - ret - -3: cmpb $0, kvm_rebooting - je 4f - ret -4: ud2 - - .pushsection .fixup, "ax" -5: jmp 3b - .popsection - - _ASM_EXTABLE(1b, 5b) - _ASM_EXTABLE(2b, 5b) - -ENDPROC(vmx_vmenter) - -/** - * vmx_vmexit - Handle a VMX VM-Exit - * - * Returns: - * %RFLAGS.{CF,ZF} are cleared on VM-Success, i.e. VM-Exit - * - * This is vmx_vmenter's partner in crime. On a VM-Exit, control will jump - * here after hardware loads the host's state, i.e. this is the destination - * referred to by VMCS.HOST_RIP. - */ -ENTRY(vmx_vmexit) -#ifdef CONFIG_RETPOLINE - ALTERNATIVE "jmp .Lvmexit_skip_rsb", "", X86_FEATURE_RETPOLINE - /* Preserve guest's RAX, it's used to stuff the RSB. */ - push %_ASM_AX - - /* IMPORTANT: Stuff the RSB immediately after VM-Exit, before RET! */ - FILL_RETURN_BUFFER %_ASM_AX, RSB_CLEAR_LOOPS, X86_FEATURE_RETPOLINE - - /* Clear RFLAGS.CF and RFLAGS.ZF to preserve VM-Exit, i.e. !VM-Fail. */ - or $1, %_ASM_AX - - pop %_ASM_AX -.Lvmexit_skip_rsb: -#endif - ret -ENDPROC(vmx_vmexit) - -/** * __vmx_vcpu_run - Run a vCPU via a transition to VMX guest mode - * @vmx: struct vcpu_vmx * (forwarded to vmx_update_host_rsp) + * @vmx: struct vcpu_vmx * * @regs: unsigned long * (to guest registers) - * @launched: %true if the VMCS has been launched + * @flags: VMX_RUN_VMRESUME: use VMRESUME instead of VMLAUNCH + * VMX_RUN_SAVE_SPEC_CTRL: save guest SPEC_CTRL into vmx->spec_ctrl * * Returns: * 0 on VM-Exit, 1 on VM-Fail @@ -118,24 +54,29 @@ #endif push %_ASM_BX + /* Save @vmx for SPEC_CTRL handling */ + push %_ASM_ARG1 + + /* Save @flags for SPEC_CTRL handling */ + push %_ASM_ARG3 + /* * Save @regs, _ASM_ARG2 may be modified by vmx_update_host_rsp() and * @regs is needed after VM-Exit to save the guest's register values. */ push %_ASM_ARG2 - /* Copy @launched to BL, _ASM_ARG3 is volatile. */ + /* Copy @flags to BL, _ASM_ARG3 is volatile. */ mov %_ASM_ARG3B, %bl - /* Adjust RSP to account for the CALL to vmx_vmenter(). */ - lea -WORD_SIZE(%_ASM_SP), %_ASM_ARG2 + lea (%_ASM_SP), %_ASM_ARG2 call vmx_update_host_rsp /* Load @regs to RAX. */ mov (%_ASM_SP), %_ASM_AX /* Check if vmlaunch or vmresume is needed */ - cmpb $0, %bl + testb $VMX_RUN_VMRESUME, %bl /* Load guest registers. Don't clobber flags. */ mov VCPU_RBX(%_ASM_AX), %_ASM_BX @@ -157,11 +98,25 @@ /* Load guest RAX. This kills the @regs pointer! */ mov VCPU_RAX(%_ASM_AX), %_ASM_AX - /* Enter guest mode */ - call vmx_vmenter + /* Check EFLAGS.ZF from 'testb' above */ + jz .Lvmlaunch + +/* + * If VMRESUME/VMLAUNCH and corresponding vmexit succeed, execution resumes at + * the 'vmx_vmexit' label below. + */ +.Lvmresume: + vmresume + jmp .Lvmfail + +.Lvmlaunch: + vmlaunch + jmp .Lvmfail + + _ASM_EXTABLE(.Lvmresume, .Lfixup) + _ASM_EXTABLE(.Lvmlaunch, .Lfixup) - /* Jump on VM-Fail. */ - jbe 2f +SYM_INNER_LABEL(vmx_vmexit, SYM_L_GLOBAL) /* Temporarily save guest's RAX. */ push %_ASM_AX @@ -188,19 +143,21 @@ mov %r15, VCPU_R15(%_ASM_AX) #endif - /* Clear RAX to indicate VM-Exit (as opposed to VM-Fail). */ - xor %eax, %eax + /* Clear return value to indicate VM-Exit (as opposed to VM-Fail). */ + xor %ebx, %ebx +.Lclear_regs: /* - * Clear all general purpose registers except RSP and RAX to prevent + * Clear all general purpose registers except RSP and RBX to prevent * speculative use of the guest's values, even those that are reloaded * via the stack. In theory, an L1 cache miss when restoring registers * could lead to speculative execution with the guest's values. * Zeroing XORs are dirt cheap, i.e. the extra paranoia is essentially * free. RSP and RAX are exempt as RSP is restored by hardware during - * VM-Exit and RAX is explicitly loaded with 0 or 1 to return VM-Fail. + * VM-Exit and RBX is explicitly loaded with 0 or 1 to hold the return + * value. */ -1: xor %ebx, %ebx + xor %eax, %eax xor %ecx, %ecx xor %edx, %edx xor %esi, %esi @@ -219,8 +176,32 @@ /* "POP" @regs. */ add $WORD_SIZE, %_ASM_SP - pop %_ASM_BX + /* + * IMPORTANT: RSB filling and SPEC_CTRL handling must be done before + * the first unbalanced RET after vmexit! + * + * For retpoline or IBRS, RSB filling is needed to prevent poisoned RSB + * entries and (in some cases) RSB underflow. + * + * eIBRS has its own protection against poisoned RSB, so it doesn't + * need the RSB filling sequence. But it does need to be enabled, and a + * single call to retire, before the first unbalanced RET. + */ + + FILL_RETURN_BUFFER %_ASM_CX, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_VMEXIT,\ + X86_FEATURE_RSB_VMEXIT_LITE + + + pop %_ASM_ARG2 /* @flags */ + pop %_ASM_ARG1 /* @vmx */ + + call vmx_spec_ctrl_restore_host + + /* Put return value in AX */ + mov %_ASM_BX, %_ASM_AX + + pop %_ASM_BX #ifdef CONFIG_X86_64 pop %r12 pop %r13 @@ -233,11 +214,20 @@ pop %_ASM_BP ret - /* VM-Fail. Out-of-line to avoid a taken Jcc after VM-Exit. */ -2: mov $1, %eax - jmp 1b +.Lfixup: + cmpb $0, kvm_rebooting + jne .Lvmfail + ud2 +.Lvmfail: + /* VM-Fail: set return value to 1 */ + mov $1, %_ASM_BX + jmp .Lclear_regs + ENDPROC(__vmx_vcpu_run) + +.section .text, "ax" + /** * vmread_error_trampoline - Trampoline from inline asm to vmread_error() * @field: VMCS field encoding that failed diff -u linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.c linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.c --- linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.c +++ linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -204,6 +205,9 @@ #define L1D_CACHE_ORDER 4 static void *vmx_l1d_flush_pages; +/* Control for disabling CPU Fill buffer clear */ +static bool __read_mostly vmx_fb_clear_ctrl_available; + static int vmx_setup_l1d_flush(enum vmx_l1d_flush_state l1tf) { struct page *page; @@ -335,6 +339,60 @@ return sprintf(s, "%s\n", vmentry_l1d_param[l1tf_vmx_mitigation].option); } +static void vmx_setup_fb_clear_ctrl(void) +{ + u64 msr; + + if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES) && + !boot_cpu_has_bug(X86_BUG_MDS) && + !boot_cpu_has_bug(X86_BUG_TAA)) { + rdmsrl(MSR_IA32_ARCH_CAPABILITIES, msr); + if (msr & ARCH_CAP_FB_CLEAR_CTRL) + vmx_fb_clear_ctrl_available = true; + } +} + +static __always_inline void vmx_disable_fb_clear(struct vcpu_vmx *vmx) +{ + u64 msr; + + if (!vmx->disable_fb_clear) + return; + + msr = __rdmsr(MSR_IA32_MCU_OPT_CTRL); + msr |= FB_CLEAR_DIS; + native_wrmsrl(MSR_IA32_MCU_OPT_CTRL, msr); + /* Cache the MSR value to avoid reading it later */ + vmx->msr_ia32_mcu_opt_ctrl = msr; +} + +static __always_inline void vmx_enable_fb_clear(struct vcpu_vmx *vmx) +{ + if (!vmx->disable_fb_clear) + return; + + vmx->msr_ia32_mcu_opt_ctrl &= ~FB_CLEAR_DIS; + native_wrmsrl(MSR_IA32_MCU_OPT_CTRL, vmx->msr_ia32_mcu_opt_ctrl); +} + +static void vmx_update_fb_clear_dis(struct kvm_vcpu *vcpu, struct vcpu_vmx *vmx) +{ + vmx->disable_fb_clear = vmx_fb_clear_ctrl_available; + + /* + * If guest will not execute VERW, there is no need to set FB_CLEAR_DIS + * at VMEntry. Skip the MSR read/write when a guest has no use case to + * execute VERW. + */ + if ((vcpu->arch.arch_capabilities & ARCH_CAP_FB_CLEAR) || + ((vcpu->arch.arch_capabilities & ARCH_CAP_MDS_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_TAA_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_PSDP_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_FBSDP_NO) && + (vcpu->arch.arch_capabilities & ARCH_CAP_SBDR_SSDP_NO))) + vmx->disable_fb_clear = false; +} + static const struct kernel_param_ops vmentry_l1d_flush_ops = { .set = vmentry_l1d_flush_set, .get = vmentry_l1d_flush_get, @@ -785,15 +843,15 @@ /* * Check if MSR is intercepted for currently loaded MSR bitmap. */ -static bool msr_write_intercepted(struct kvm_vcpu *vcpu, u32 msr) +static bool msr_write_intercepted(struct vcpu_vmx *vmx, u32 msr) { unsigned long *msr_bitmap; int f = sizeof(unsigned long); - if (!cpu_has_vmx_msr_bitmap()) + if (!(exec_controls_get(vmx) & CPU_BASED_USE_MSR_BITMAPS)) return true; - msr_bitmap = to_vmx(vcpu)->loaded_vmcs->msr_bitmap; + msr_bitmap = vmx->loaded_vmcs->msr_bitmap; if (msr <= 0x1fff) { return !!test_bit(msr, msr_bitmap + 0x800 / f); @@ -805,6 +863,24 @@ return true; } +unsigned int __vmx_vcpu_run_flags(struct vcpu_vmx *vmx) +{ + unsigned int flags = 0; + + if (vmx->loaded_vmcs->launched) + flags |= VMX_RUN_VMRESUME; + + /* + * If writes to the SPEC_CTRL MSR aren't intercepted, the guest is free + * to change it directly without causing a vmexit. In that case read + * it after vmexit and store it in vmx->spec_ctrl. + */ + if (unlikely(!msr_write_intercepted(vmx, MSR_IA32_SPEC_CTRL))) + flags |= VMX_RUN_SAVE_SPEC_CTRL; + + return flags; +} + static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, unsigned long entry, unsigned long exit) { @@ -1600,7 +1676,17 @@ kvm_deliver_exception_payload(vcpu); if (has_error_code) { - vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); + /* + * Despite the error code being architecturally defined as 32 + * bits, and the VMCS field being 32 bits, Intel CPUs and thus + * VMX don't actually supporting setting bits 31:16. Hardware + * will (should) never provide a bogus error code, but AMD CPUs + * do generate error codes with bits 31:16 set, and so KVM's + * ABI lets userspace shove in arbitrary 32-bit values. Drop + * the upper bits to avoid VM-Fail, losing information that + * does't really exist is preferable to killing the VM. + */ + vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, (u16)error_code); intr_info |= INTR_INFO_DELIVER_CODE_MASK; } @@ -2167,9 +2253,13 @@ } break; } - ret = kvm_set_msr_common(vcpu, msr_info); + ret = kvm_set_msr_common(vcpu, msr_info); } + /* FB_CLEAR may have changed, also update the FB_CLEAR_DIS behavior */ + if (msr_index == MSR_IA32_ARCH_CAPABILITIES) + vmx_update_fb_clear_dis(vcpu, vmx); + return ret; } @@ -2505,8 +2595,10 @@ vmcs_conf->vmexit_ctrl = _vmexit_control; vmcs_conf->vmentry_ctrl = _vmentry_control; - if (static_branch_unlikely(&enable_evmcs)) +#if IS_ENABLED(CONFIG_HYPERV) + if (enlightened_vmcs) evmcs_sanitize_exec_ctrls(vmcs_conf); +#endif return 0; } @@ -4362,6 +4454,8 @@ vpid_sync_context(vmx->vpid); if (init_event) vmx_clear_hlt(vcpu); + + vmx_update_fb_clear_dis(vcpu, vmx); } static void enable_irq_window(struct kvm_vcpu *vcpu) @@ -6476,7 +6570,30 @@ } } -bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched); +void noinstr vmx_spec_ctrl_restore_host(struct vcpu_vmx *vmx, + unsigned int flags) +{ + u64 hostval = this_cpu_read(x86_spec_ctrl_current); + + if (!cpu_feature_enabled(X86_FEATURE_MSR_SPEC_CTRL)) + return; + + if (flags & VMX_RUN_SAVE_SPEC_CTRL) + vmx->spec_ctrl = __rdmsr(MSR_IA32_SPEC_CTRL); + + /* + * If the guest/host SPEC_CTRL values differ, restore the host value. + * + * For legacy IBRS, the IBRS bit always needs to be written after + * transitioning from a less privileged predictor mode, regardless of + * whether the guest/host values differ. + */ + if (cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS) || + vmx->spec_ctrl != hostval) + native_wrmsrl(MSR_IA32_SPEC_CTRL, hostval); + + barrier_nospec(); +} static void vmx_vcpu_run(struct kvm_vcpu *vcpu) { @@ -6555,34 +6672,21 @@ vmx_l1d_flush(vcpu); else if (static_branch_unlikely(&mds_user_clear)) mds_clear_cpu_buffers(); + else if (static_branch_unlikely(&mmio_stale_data_clear) && + kvm_arch_has_assigned_device(vcpu->kvm)) + mds_clear_cpu_buffers(); + + vmx_disable_fb_clear(vmx); if (vcpu->arch.cr2 != read_cr2()) write_cr2(vcpu->arch.cr2); vmx->fail = __vmx_vcpu_run(vmx, (unsigned long *)&vcpu->arch.regs, - vmx->loaded_vmcs->launched); + __vmx_vcpu_run_flags(vmx)); vcpu->arch.cr2 = read_cr2(); - /* - * We do not use IBRS in the kernel. If this vCPU has used the - * SPEC_CTRL MSR it may have left it on; save the value and - * turn it off. This is much more efficient than blindly adding - * it to the atomic save/restore list. Especially as the former - * (Saving guest MSRs on vmexit) doesn't even exist in KVM. - * - * For non-nested case: - * If the L01 MSR bitmap does not intercept the MSR, then we need to - * save it. - * - * For nested case: - * If the L02 MSR bitmap does not intercept the MSR, then we need to - * save it. - */ - if (unlikely(!msr_write_intercepted(vcpu, MSR_IA32_SPEC_CTRL))) - vmx->spec_ctrl = native_read_msr(MSR_IA32_SPEC_CTRL); - - x86_spec_ctrl_restore_host(vmx->spec_ctrl, 0); + vmx_enable_fb_clear(vmx); /* All fields are clean at this point */ if (static_branch_unlikely(&enable_evmcs)) @@ -8038,8 +8142,11 @@ return r; } + vmx_setup_fb_clear_ctrl(); + for_each_possible_cpu(cpu) { INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); + INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu)); spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); } diff -u linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.h linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.h --- linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.h +++ linux-azure-5.4.0/arch/x86/kvm/vmx/vmx.h @@ -10,6 +10,7 @@ #include "capabilities.h" #include "ops.h" #include "vmcs.h" +#include "run_flags.h" extern const u32 vmx_msr_index[]; extern u64 host_efer; @@ -280,8 +281,11 @@ u64 msr_ia32_feature_control; u64 msr_ia32_feature_control_valid_bits; u64 ept_pointer; + u64 msr_ia32_mcu_opt_ctrl; + bool disable_fb_clear; struct pt_desc pt_desc; + }; enum ept_pointers_status { @@ -333,6 +337,10 @@ struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr); void pt_update_intercept_for_msr(struct vcpu_vmx *vmx); void vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp); +void vmx_spec_ctrl_restore_host(struct vcpu_vmx *vmx, unsigned int flags); +unsigned int __vmx_vcpu_run_flags(struct vcpu_vmx *vmx); +bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, + unsigned int flags); #define POSTED_INTR_ON 0 #define POSTED_INTR_SN 1 @@ -512,7 +520,7 @@ static inline bool vmx_has_waitpkg(struct vcpu_vmx *vmx) { - return vmx->secondary_exec_control & + return secondary_exec_controls_get(vmx) & SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE; } diff -u linux-azure-5.4.0/arch/x86/kvm/x86.c linux-azure-5.4.0/arch/x86/kvm/x86.c --- linux-azure-5.4.0/arch/x86/kvm/x86.c +++ linux-azure-5.4.0/arch/x86/kvm/x86.c @@ -68,6 +68,7 @@ #include #include #include +#include #include #define CREATE_TRACE_POINTS @@ -475,8 +476,6 @@ if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) { queue: - if (has_error && !is_protmode(vcpu)) - has_error = false; if (reinject) { /* * On vmentry, vcpu->arch.exception.pending is only @@ -1220,7 +1219,7 @@ MSR_IA32_UMWAIT_CONTROL, MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1, - MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3, + MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS, MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL, MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1, @@ -1241,6 +1240,13 @@ MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13, MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15, MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17, + + MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3, + MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3, + MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2, + MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5, + MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2, + MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5, }; static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)]; @@ -1397,6 +1403,10 @@ /* KVM does not emulate MSR_IA32_TSX_CTRL. */ data &= ~ARCH_CAP_TSX_CTRL_MSR; + + /* Guests don't need to know "Fill buffer clear control" exists */ + data &= ~ARCH_CAP_FB_CLEAR_CTRL; + return data; } @@ -2766,6 +2776,10 @@ if (!msr_info->host_initiated) { s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr; adjust_tsc_offset_guest(vcpu, adj); + /* Before back to guest, tsc_timestamp must be adjusted + * as well, otherwise guest's percpu pvclock time could jump. + */ + kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); } vcpu->arch.ia32_tsc_adjust_msr = data; } @@ -3640,8 +3654,17 @@ static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu) { - return kvm_arch_interrupt_allowed(vcpu) && - kvm_cpu_accept_dm_intr(vcpu); + /* + * Do not cause an interrupt window exit if an exception + * is pending or an event needs reinjection; userspace + * might want to inject the interrupt manually using KVM_SET_REGS + * or KVM_SET_SREGS. For that to work, we must be at an + * instruction boundary and with no events half-injected. + */ + return (kvm_arch_interrupt_allowed(vcpu) && + kvm_cpu_accept_dm_intr(vcpu) && + !kvm_event_needs_reinjection(vcpu) && + !vcpu->arch.exception.pending); } static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, @@ -5565,6 +5588,7 @@ int handle_ud(struct kvm_vcpu *vcpu) { + static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX }; int emul_type = EMULTYPE_TRAP_UD; char sig[5]; /* ud2; .ascii "kvm" */ struct x86_exception e; @@ -5572,7 +5596,7 @@ if (force_emulation_prefix && kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu), sig, sizeof(sig), &e) == 0 && - memcmp(sig, "\xf\xbkvm", sizeof(sig)) == 0) { + memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) { kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig)); emul_type = EMULTYPE_TRAP_UD_FORCED; } @@ -6279,7 +6303,10 @@ static void emulator_set_hflags(struct x86_emulate_ctxt *ctxt, unsigned emul_flags) { - emul_to_vcpu(ctxt)->arch.hflags = emul_flags; + struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); + + vcpu->arch.hflags = emul_flags; + kvm_mmu_reset_context(vcpu); } static int emulator_pre_leave_smm(struct x86_emulate_ctxt *ctxt, @@ -7589,6 +7616,13 @@ kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr); } +static void kvm_inject_exception(struct kvm_vcpu *vcpu) +{ + if (vcpu->arch.exception.error_code && !is_protmode(vcpu)) + vcpu->arch.exception.error_code = false; + kvm_x86_ops->queue_exception(vcpu); +} + static int inject_pending_event(struct kvm_vcpu *vcpu) { int r; @@ -7596,7 +7630,7 @@ /* try to reinject previous events if any */ if (vcpu->arch.exception.injected) - kvm_x86_ops->queue_exception(vcpu); + kvm_inject_exception(vcpu); /* * Do not inject an NMI or interrupt if there is a pending * exception. Exceptions and interrupts are recognized at @@ -7662,7 +7696,7 @@ } } - kvm_x86_ops->queue_exception(vcpu); + kvm_inject_exception(vcpu); } /* Don't consider new event if we re-injected an event */ @@ -8268,6 +8302,8 @@ set_debugreg(vcpu->arch.eff_db[3], 3); set_debugreg(vcpu->arch.dr6, 6); vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; + } else if (unlikely(hw_breakpoint_active())) { + set_debugreg(0, 7); } kvm_x86_ops->run(vcpu); @@ -9233,6 +9269,8 @@ void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) { + unsigned long old_cr0 = kvm_read_cr0(vcpu); + kvm_lapic_reset(vcpu, init_event); vcpu->arch.hflags = 0; @@ -9302,6 +9340,17 @@ vcpu->arch.ia32_xss = 0; kvm_x86_ops->vcpu_reset(vcpu, init_event); + + /* + * Reset the MMU context if paging was enabled prior to INIT (which is + * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the + * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be + * checked because it is unconditionally cleared on INIT and all other + * paging related bits are ignored if paging is disabled, i.e. CR0.WP, + * CR4, and EFER changes are all irrelevant if CR0.PG was '0'. + */ + if (old_cr0 & X86_CR0_PG) + kvm_mmu_reset_context(vcpu); } void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector) @@ -10295,9 +10344,9 @@ } EXPORT_SYMBOL_GPL(kvm_arch_end_assignment); -bool kvm_arch_has_assigned_device(struct kvm *kvm) +bool noinstr kvm_arch_has_assigned_device(struct kvm *kvm) { - return atomic_read(&kvm->arch.assigned_device_count); + return arch_atomic_read(&kvm->arch.assigned_device_count); } EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device); diff -u linux-azure-5.4.0/arch/x86/lib/usercopy_64.c linux-azure-5.4.0/arch/x86/lib/usercopy_64.c --- linux-azure-5.4.0/arch/x86/lib/usercopy_64.c +++ linux-azure-5.4.0/arch/x86/lib/usercopy_64.c @@ -142,7 +142,7 @@ /* cache copy and flush to align dest */ if (!IS_ALIGNED(dest, 8)) { - unsigned len = min_t(unsigned, size, ALIGN(dest, 8) - dest); + size_t len = min_t(size_t, size, ALIGN(dest, 8) - dest); memcpy((void *) dest, (void *) source, len); clean_cache_range((void *) dest, len); diff -u linux-azure-5.4.0/arch/x86/mm/init_64.c linux-azure-5.4.0/arch/x86/mm/init_64.c --- linux-azure-5.4.0/arch/x86/mm/init_64.c +++ linux-azure-5.4.0/arch/x86/mm/init_64.c @@ -1355,18 +1355,18 @@ return 0; p4d = p4d_offset(pgd, addr); - if (p4d_none(*p4d)) + if (!p4d_present(*p4d)) return 0; pud = pud_offset(p4d, addr); - if (pud_none(*pud)) + if (!pud_present(*pud)) return 0; if (pud_large(*pud)) return pfn_valid(pud_pfn(*pud)); pmd = pmd_offset(pud, addr); - if (pmd_none(*pmd)) + if (!pmd_present(*pmd)) return 0; if (pmd_large(*pmd)) diff -u linux-azure-5.4.0/arch/x86/mm/ioremap.c linux-azure-5.4.0/arch/x86/mm/ioremap.c --- linux-azure-5.4.0/arch/x86/mm/ioremap.c +++ linux-azure-5.4.0/arch/x86/mm/ioremap.c @@ -118,7 +118,9 @@ if (!IS_ENABLED(CONFIG_EFI)) return; - if (efi_mem_type(addr) == EFI_RUNTIME_SERVICES_DATA) + if (efi_mem_type(addr) == EFI_RUNTIME_SERVICES_DATA || + (efi_mem_type(addr) == EFI_BOOT_SERVICES_DATA && + efi_mem_attributes(addr) & EFI_MEMORY_RUNTIME)) desc->flags |= IORES_MAP_ENCRYPTED; } diff -u linux-azure-5.4.0/arch/x86/mm/mem_encrypt_identity.c linux-azure-5.4.0/arch/x86/mm/mem_encrypt_identity.c --- linux-azure-5.4.0/arch/x86/mm/mem_encrypt_identity.c +++ linux-azure-5.4.0/arch/x86/mm/mem_encrypt_identity.c @@ -27,6 +27,15 @@ #undef CONFIG_PARAVIRT_XXL #undef CONFIG_PARAVIRT_SPINLOCKS +/* + * This code runs before CPU feature bits are set. By default, the + * pgtable_l5_enabled() function uses bit X86_FEATURE_LA57 to determine if + * 5-level paging is active, so that won't work here. USE_EARLY_PGTABLE_L5 + * is provided to handle this situation and, instead, use a variable that + * has been set by the early boot code. + */ +#define USE_EARLY_PGTABLE_L5 + #include #include #include diff -u linux-azure-5.4.0/arch/x86/mm/pageattr.c linux-azure-5.4.0/arch/x86/mm/pageattr.c --- linux-azure-5.4.0/arch/x86/mm/pageattr.c +++ linux-azure-5.4.0/arch/x86/mm/pageattr.c @@ -1967,7 +1967,7 @@ /* * Before changing the encryption attribute, we need to flush caches. */ - cpa_flush(&cpa, 1); + cpa_flush(&cpa, !this_cpu_has(X86_FEATURE_SME_COHERENT)); ret = __change_page_attr_set_clr(&cpa, 1); diff -u linux-azure-5.4.0/arch/x86/mm/pat.c linux-azure-5.4.0/arch/x86/mm/pat.c --- linux-azure-5.4.0/arch/x86/mm/pat.c +++ linux-azure-5.4.0/arch/x86/mm/pat.c @@ -75,7 +75,7 @@ static int __init pat_debug_setup(char *str) { pat_debug_enable = 1; - return 0; + return 1; } __setup("debugpat", pat_debug_setup); diff -u linux-azure-5.4.0/arch/x86/net/bpf_jit_comp.c linux-azure-5.4.0/arch/x86/net/bpf_jit_comp.c --- linux-azure-5.4.0/arch/x86/net/bpf_jit_comp.c +++ linux-azure-5.4.0/arch/x86/net/bpf_jit_comp.c @@ -728,6 +728,13 @@ } break; + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + if (boot_cpu_has(X86_FEATURE_XMM2)) + /* Emit 'lfence' */ + EMIT3(0x0F, 0xAE, 0xE8); + break; + /* ST: *(u8*)(dst_reg + off) = imm */ case BPF_ST | BPF_MEM | BPF_B: if (is_ereg(dst_reg)) diff -u linux-azure-5.4.0/arch/x86/net/bpf_jit_comp32.c linux-azure-5.4.0/arch/x86/net/bpf_jit_comp32.c --- linux-azure-5.4.0/arch/x86/net/bpf_jit_comp32.c +++ linux-azure-5.4.0/arch/x86/net/bpf_jit_comp32.c @@ -1705,6 +1705,12 @@ i++; break; } + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + if (boot_cpu_has(X86_FEATURE_XMM2)) + /* Emit 'lfence' */ + EMIT3(0x0F, 0xAE, 0xE8); + break; /* ST: *(u8*)(dst_reg + off) = imm */ case BPF_ST | BPF_MEM | BPF_H: case BPF_ST | BPF_MEM | BPF_B: diff -u linux-azure-5.4.0/arch/x86/pci/fixup.c linux-azure-5.4.0/arch/x86/pci/fixup.c --- linux-azure-5.4.0/arch/x86/pci/fixup.c +++ linux-azure-5.4.0/arch/x86/pci/fixup.c @@ -781,2 +781,46 @@ +#define RS690_LOWER_TOP_OF_DRAM2 0x30 +#define RS690_LOWER_TOP_OF_DRAM2_VALID 0x1 +#define RS690_UPPER_TOP_OF_DRAM2 0x31 +#define RS690_HTIU_NB_INDEX 0xA8 +#define RS690_HTIU_NB_INDEX_WR_ENABLE 0x100 +#define RS690_HTIU_NB_DATA 0xAC + +/* + * Some BIOS implementations support RAM above 4GB, but do not configure the + * PCI host to respond to bus master accesses for these addresses. These + * implementations set the TOP_OF_DRAM_SLOT1 register correctly, so PCI DMA + * works as expected for addresses below 4GB. + * + * Reference: "AMD RS690 ASIC Family Register Reference Guide" (pg. 2-57) + * https://www.amd.com/system/files/TechDocs/43372_rs690_rrg_3.00o.pdf + */ +static void rs690_fix_64bit_dma(struct pci_dev *pdev) +{ + u32 val = 0; + phys_addr_t top_of_dram = __pa(high_memory - 1) + 1; + + if (top_of_dram <= (1ULL << 32)) + return; + + pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX, + RS690_LOWER_TOP_OF_DRAM2); + pci_read_config_dword(pdev, RS690_HTIU_NB_DATA, &val); + + if (val) + return; + + pci_info(pdev, "Adjusting top of DRAM to %pa for 64-bit DMA support\n", &top_of_dram); + + pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX, + RS690_UPPER_TOP_OF_DRAM2 | RS690_HTIU_NB_INDEX_WR_ENABLE); + pci_write_config_dword(pdev, RS690_HTIU_NB_DATA, top_of_dram >> 32); + + pci_write_config_dword(pdev, RS690_HTIU_NB_INDEX, + RS690_LOWER_TOP_OF_DRAM2 | RS690_HTIU_NB_INDEX_WR_ENABLE); + pci_write_config_dword(pdev, RS690_HTIU_NB_DATA, + top_of_dram | RS690_LOWER_TOP_OF_DRAM2_VALID); +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7910, rs690_fix_64bit_dma); + #endif diff -u linux-azure-5.4.0/arch/x86/pci/xen.c linux-azure-5.4.0/arch/x86/pci/xen.c --- linux-azure-5.4.0/arch/x86/pci/xen.c +++ linux-azure-5.4.0/arch/x86/pci/xen.c @@ -442,6 +442,11 @@ x86_msi.setup_msi_irqs = xen_hvm_setup_msi_irqs; x86_msi.teardown_msi_irq = xen_teardown_msi_irq; + /* + * With XEN PIRQ/Eventchannels in use PCI/MSI[-X] masking is solely + * controlled by the hypervisor. + */ + pci_msi_ignore_mask = 1; } #endif diff -u linux-azure-5.4.0/arch/x86/platform/efi/efi.c linux-azure-5.4.0/arch/x86/platform/efi/efi.c --- linux-azure-5.4.0/arch/x86/platform/efi/efi.c +++ linux-azure-5.4.0/arch/x86/platform/efi/efi.c @@ -87,6 +87,9 @@ #endif &efi.tpm_log, &efi.tpm_final_log, +#ifdef CONFIG_LOAD_UEFI_KEYS + &efi.mokvar_table, +#endif }; u64 efi_setup; /* efi setup_data physical address */ diff -u linux-azure-5.4.0/arch/x86/platform/efi/quirks.c linux-azure-5.4.0/arch/x86/platform/efi/quirks.c --- linux-azure-5.4.0/arch/x86/platform/efi/quirks.c +++ linux-azure-5.4.0/arch/x86/platform/efi/quirks.c @@ -279,7 +279,8 @@ return; } - new = early_memremap(new_phys, new_size); + new = early_memremap_prot(new_phys, new_size, + pgprot_val(pgprot_encrypted(FIXMAP_PAGE_NORMAL))); if (!new) { pr_err("Failed to map new boot services memmap\n"); return; diff -u linux-azure-5.4.0/arch/x86/platform/uv/uv_irq.c linux-azure-5.4.0/arch/x86/platform/uv/uv_irq.c --- linux-azure-5.4.0/arch/x86/platform/uv/uv_irq.c +++ linux-azure-5.4.0/arch/x86/platform/uv/uv_irq.c @@ -35,7 +35,7 @@ mmr_value = 0; entry = (struct uv_IO_APIC_route_entry *)&mmr_value; entry->vector = cfg->vector; - entry->delivery_mode = apic->irq_delivery_mode; + entry->delivery_mode = apic->delivery_mode; entry->dest_mode = apic->irq_dest_mode; entry->polarity = 0; entry->trigger = 0; diff -u linux-azure-5.4.0/arch/x86/realmode/init.c linux-azure-5.4.0/arch/x86/realmode/init.c --- linux-azure-5.4.0/arch/x86/realmode/init.c +++ linux-azure-5.4.0/arch/x86/realmode/init.c @@ -16,6 +16,32 @@ /* Hold the pgd entry used on booting additional CPUs */ pgd_t trampoline_pgd_entry; +void load_trampoline_pgtable(void) +{ +#ifdef CONFIG_X86_32 + load_cr3(initial_page_table); +#else + /* + * This function is called before exiting to real-mode and that will + * fail with CR4.PCIDE still set. + */ + if (boot_cpu_has(X86_FEATURE_PCID)) + cr4_clear_bits(X86_CR4_PCIDE); + + write_cr3(real_mode_header->trampoline_pgd); +#endif + + /* + * The CR3 write above will not flush global TLB entries. + * Stale, global entries from previous page tables may still be + * present. Flush those stale entries. + * + * This ensures that memory accessed while running with + * trampoline_pgd is *actually* mapped into trampoline_pgd. + */ + __flush_tlb_all(); +} + void __init reserve_real_mode(void) { phys_addr_t mem; @@ -50,6 +76,7 @@ #ifdef CONFIG_X86_64 u64 *trampoline_pgd; u64 efer; + int i; #endif base = (unsigned char *)real_mode_header; @@ -108,8 +135,17 @@ trampoline_header->flags |= TH_FLAGS_SME_ACTIVE; trampoline_pgd = (u64 *) __va(real_mode_header->trampoline_pgd); + + /* Map the real mode stub as virtual == physical */ trampoline_pgd[0] = trampoline_pgd_entry.pgd; - trampoline_pgd[511] = init_top_pgt[511].pgd; + + /* + * Include the entirety of the kernel mapping into the trampoline + * PGD. This way, all mappings present in the normal kernel page + * tables are usable while running on trampoline_pgd. + */ + for (i = pgd_index(__PAGE_OFFSET); i < PTRS_PER_PGD; i++) + trampoline_pgd[i] = init_top_pgt[i].pgd; #endif } diff -u linux-azure-5.4.0/arch/x86/um/tls_32.c linux-azure-5.4.0/arch/x86/um/tls_32.c --- linux-azure-5.4.0/arch/x86/um/tls_32.c +++ linux-azure-5.4.0/arch/x86/um/tls_32.c @@ -65,9 +65,6 @@ struct thread_struct *t = &task->thread; int idx; - if (!t->arch.tls_array) - return GDT_ENTRY_TLS_MIN; - for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++) if (!t->arch.tls_array[idx].present) return idx + GDT_ENTRY_TLS_MIN; @@ -240,9 +237,6 @@ { struct thread_struct *t = &task->thread; - if (!t->arch.tls_array) - goto clear; - if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) return -EINVAL; diff -u linux-azure-5.4.0/arch/x86/xen/enlighten_pv.c linux-azure-5.4.0/arch/x86/xen/enlighten_pv.c --- linux-azure-5.4.0/arch/x86/xen/enlighten_pv.c +++ linux-azure-5.4.0/arch/x86/xen/enlighten_pv.c @@ -727,8 +727,8 @@ preempt_enable(); } -static void xen_convert_trap_info(const struct desc_ptr *desc, - struct trap_info *traps) +static unsigned xen_convert_trap_info(const struct desc_ptr *desc, + struct trap_info *traps, bool full) { unsigned in, out, count; @@ -738,17 +738,18 @@ for (in = out = 0; in < count; in++) { gate_desc *entry = (gate_desc *)(desc->address) + in; - if (cvt_gate_to_trap(in, entry, &traps[out])) + if (cvt_gate_to_trap(in, entry, &traps[out]) || full) out++; } - traps[out].address = 0; + + return out; } void xen_copy_trap_info(struct trap_info *traps) { const struct desc_ptr *desc = this_cpu_ptr(&idt_desc); - xen_convert_trap_info(desc, traps); + xen_convert_trap_info(desc, traps, true); } /* Load a new IDT into Xen. In principle this can be per-CPU, so we @@ -758,6 +759,7 @@ { static DEFINE_SPINLOCK(lock); static struct trap_info traps[257]; + unsigned out; trace_xen_cpu_load_idt(desc); @@ -765,7 +767,8 @@ memcpy(this_cpu_ptr(&idt_desc), desc, sizeof(idt_desc)); - xen_convert_trap_info(desc, traps); + out = xen_convert_trap_info(desc, traps, false); + memset(&traps[out], 0, sizeof(traps[0])); xen_mc_flush(); if (HYPERVISOR_set_trap_table(traps)) @@ -1183,6 +1186,11 @@ x86_platform.legacy.rtc = 1; } +static void __init xen_domu_set_legacy_features(void) +{ + x86_platform.legacy.rtc = 0; +} + /* First C function to be called on Xen boot */ asmlinkage __visible void __init xen_start_kernel(void) { @@ -1353,6 +1361,8 @@ add_preferred_console("xenboot", 0, NULL); if (pci_xen) x86_init.pci.arch_init = pci_xen_init; + x86_platform.set_legacy_features = + xen_domu_set_legacy_features; } else { const struct dom0_vga_console_info *info = (void *)((char *)xen_start_info + diff -u linux-azure-5.4.0/arch/x86/xen/p2m.c linux-azure-5.4.0/arch/x86/xen/p2m.c --- linux-azure-5.4.0/arch/x86/xen/p2m.c +++ linux-azure-5.4.0/arch/x86/xen/p2m.c @@ -622,8 +622,8 @@ } /* Expanded the p2m? */ - if (pfn > xen_p2m_last_pfn) { - xen_p2m_last_pfn = pfn; + if (pfn >= xen_p2m_last_pfn) { + xen_p2m_last_pfn = ALIGN(pfn + 1, P2M_PER_PAGE); HYPERVISOR_shared_info->arch.max_pfn = xen_p2m_last_pfn; } diff -u linux-azure-5.4.0/arch/x86/xen/smp_pv.c linux-azure-5.4.0/arch/x86/xen/smp_pv.c --- linux-azure-5.4.0/arch/x86/xen/smp_pv.c +++ linux-azure-5.4.0/arch/x86/xen/smp_pv.c @@ -53,6 +53,7 @@ static DEFINE_PER_CPU(struct xen_common_irq, xen_pmu_irq) = { .irq = -1 }; static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id); +void asm_cpu_bringup_and_idle(void); static void cpu_bringup(void) { @@ -129,7 +130,7 @@ per_cpu(xen_irq_work, cpu).irq = rc; per_cpu(xen_irq_work, cpu).name = callfunc_name; - if (is_xen_pmu(cpu)) { + if (is_xen_pmu) { pmu_name = kasprintf(GFP_KERNEL, "pmu%d", cpu); rc = bind_virq_to_irqhandler(VIRQ_XENPMU, cpu, xen_pmu_irq_handler, @@ -310,7 +311,7 @@ * pointing just below where pt_regs would be if it were a normal * kernel entry. */ - ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle; + ctxt->user_regs.eip = (unsigned long)asm_cpu_bringup_and_idle; ctxt->flags = VGCF_IN_KERNEL; ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */ ctxt->user_regs.ds = __USER_DS; diff -u linux-azure-5.4.0/arch/xtensa/Kconfig linux-azure-5.4.0/arch/xtensa/Kconfig --- linux-azure-5.4.0/arch/xtensa/Kconfig +++ linux-azure-5.4.0/arch/xtensa/Kconfig @@ -27,7 +27,7 @@ select HAVE_DMA_CONTIGUOUS select HAVE_EXIT_THREAD select HAVE_FUNCTION_TRACER - select HAVE_FUTEX_CMPXCHG if !MMU + select HAVE_FUTEX_CMPXCHG if !MMU && FUTEX select HAVE_HW_BREAKPOINT if PERF_EVENTS select HAVE_IRQ_TIME_ACCOUNTING select HAVE_OPROFILE diff -u linux-azure-5.4.0/arch/xtensa/kernel/coprocessor.S linux-azure-5.4.0/arch/xtensa/kernel/coprocessor.S --- linux-azure-5.4.0/arch/xtensa/kernel/coprocessor.S +++ linux-azure-5.4.0/arch/xtensa/kernel/coprocessor.S @@ -37,7 +37,7 @@ .if XTENSA_HAVE_COPROCESSOR(x); \ .align 4; \ .Lsave_cp_regs_cp##x: \ - xchal_cp##x##_store a2 a4 a5 a6 a7; \ + xchal_cp##x##_store a2 a3 a4 a5 a6; \ jx a0; \ .endif @@ -54,7 +54,7 @@ .if XTENSA_HAVE_COPROCESSOR(x); \ .align 4; \ .Lload_cp_regs_cp##x: \ - xchal_cp##x##_load a2 a4 a5 a6 a7; \ + xchal_cp##x##_load a2 a3 a4 a5 a6; \ jx a0; \ .endif diff -u linux-azure-5.4.0/arch/xtensa/kernel/ptrace.c linux-azure-5.4.0/arch/xtensa/kernel/ptrace.c --- linux-azure-5.4.0/arch/xtensa/kernel/ptrace.c +++ linux-azure-5.4.0/arch/xtensa/kernel/ptrace.c @@ -225,12 +225,12 @@ void user_enable_single_step(struct task_struct *child) { - child->ptrace |= PT_SINGLESTEP; + set_tsk_thread_flag(child, TIF_SINGLESTEP); } void user_disable_single_step(struct task_struct *child) { - child->ptrace &= ~PT_SINGLESTEP; + clear_tsk_thread_flag(child, TIF_SINGLESTEP); } /* diff -u linux-azure-5.4.0/arch/xtensa/kernel/setup.c linux-azure-5.4.0/arch/xtensa/kernel/setup.c --- linux-azure-5.4.0/arch/xtensa/kernel/setup.c +++ linux-azure-5.4.0/arch/xtensa/kernel/setup.c @@ -64,7 +64,7 @@ extern int initrd_below_start_ok; #endif -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF void *dtb_start = __dtb_start; #endif @@ -126,7 +126,7 @@ #endif /* CONFIG_BLK_DEV_INITRD */ -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF static int __init parse_tag_fdt(const bp_tag_t *tag) { @@ -136,7 +136,7 @@ __tagtable(BP_TAG_FDT, parse_tag_fdt); -#endif /* CONFIG_OF */ +#endif /* CONFIG_USE_OF */ static int __init parse_tag_cmdline(const bp_tag_t* tag) { @@ -184,7 +184,7 @@ } #endif -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF #if !XCHAL_HAVE_PTP_MMU || XCHAL_HAVE_SPANNING_WAY unsigned long xtensa_kio_paddr = XCHAL_KIO_DEFAULT_PADDR; @@ -233,7 +233,7 @@ strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); } -#endif /* CONFIG_OF */ +#endif /* CONFIG_USE_OF */ /* * Initialize architecture. (Early stage) @@ -254,7 +254,7 @@ if (bp_start) parse_bootparam(bp_start); -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF early_init_devtree(dtb_start); #endif diff -u linux-azure-5.4.0/block/bfq-cgroup.c linux-azure-5.4.0/block/bfq-cgroup.c --- linux-azure-5.4.0/block/bfq-cgroup.c +++ linux-azure-5.4.0/block/bfq-cgroup.c @@ -536,6 +536,7 @@ */ bfqg->bfqd = bfqd; bfqg->active_entities = 0; + bfqg->online = true; bfqg->rq_pos_tree = RB_ROOT; } @@ -564,28 +565,11 @@ entity->sched_data = &parent->sched_data; } -static struct bfq_group *bfq_lookup_bfqg(struct bfq_data *bfqd, - struct blkcg *blkcg) +static void bfq_link_bfqg(struct bfq_data *bfqd, struct bfq_group *bfqg) { - struct blkcg_gq *blkg; - - blkg = blkg_lookup(blkcg, bfqd->queue); - if (likely(blkg)) - return blkg_to_bfqg(blkg); - return NULL; -} - -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, - struct blkcg *blkcg) -{ - struct bfq_group *bfqg, *parent; + struct bfq_group *parent; struct bfq_entity *entity; - bfqg = bfq_lookup_bfqg(bfqd, blkcg); - - if (unlikely(!bfqg)) - return NULL; - /* * Update chain of bfq_groups as we might be handling a leaf group * which, along with some of its relatives, has not been hooked yet @@ -602,8 +586,24 @@ bfq_group_set_parent(curr_bfqg, parent); } } +} - return bfqg; +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio) +{ + struct blkcg_gq *blkg = bio->bi_blkg; + struct bfq_group *bfqg; + + while (blkg) { + bfqg = blkg_to_bfqg(blkg); + if (bfqg->online) { + bio_associate_blkg_from_css(bio, &blkg->blkcg->css); + return bfqg; + } + blkg = blkg->parent; + } + bio_associate_blkg_from_css(bio, + &bfqg_to_blkg(bfqd->root_group)->blkcg->css); + return bfqd->root_group; } /** @@ -626,6 +626,12 @@ struct bfq_entity *entity = &bfqq->entity; /* + * oom_bfqq is not allowed to move, oom_bfqq will hold ref to root_group + * until elevator exit. + */ + if (bfqq == &bfqd->oom_bfqq) + return; + /* * Get extra reference to prevent bfqq from being freed in * next possible expire or deactivate. */ @@ -673,25 +679,15 @@ * Move bic to blkcg, assuming that bfqd->lock is held; which makes * sure that the reference to cgroup is valid across the call (see * comments in bfq_bic_update_cgroup on this issue) - * - * NOTE: an alternative approach might have been to store the current - * cgroup in bfqq and getting a reference to it, reducing the lookup - * time here, at the price of slightly more complex code. */ -static struct bfq_group *__bfq_bic_change_cgroup(struct bfq_data *bfqd, - struct bfq_io_cq *bic, - struct blkcg *blkcg) +static void *__bfq_bic_change_cgroup(struct bfq_data *bfqd, + struct bfq_io_cq *bic, + struct bfq_group *bfqg) { struct bfq_queue *async_bfqq = bic_to_bfqq(bic, 0); struct bfq_queue *sync_bfqq = bic_to_bfqq(bic, 1); - struct bfq_group *bfqg; struct bfq_entity *entity; - bfqg = bfq_find_set_group(bfqd, blkcg); - - if (unlikely(!bfqg)) - bfqg = bfqd->root_group; - if (async_bfqq) { entity = &async_bfqq->entity; @@ -702,9 +698,39 @@ } if (sync_bfqq) { - entity = &sync_bfqq->entity; - if (entity->sched_data != &bfqg->sched_data) - bfq_bfqq_move(bfqd, sync_bfqq, bfqg); + if (!sync_bfqq->new_bfqq && !bfq_bfqq_coop(sync_bfqq)) { + /* We are the only user of this bfqq, just move it */ + if (sync_bfqq->entity.sched_data != &bfqg->sched_data) + bfq_bfqq_move(bfqd, sync_bfqq, bfqg); + } else { + struct bfq_queue *bfqq; + + /* + * The queue was merged to a different queue. Check + * that the merge chain still belongs to the same + * cgroup. + */ + for (bfqq = sync_bfqq; bfqq; bfqq = bfqq->new_bfqq) + if (bfqq->entity.sched_data != + &bfqg->sched_data) + break; + if (bfqq) { + /* + * Some queue changed cgroup so the merge is + * not valid anymore. We cannot easily just + * cancel the merge (by clearing new_bfqq) as + * there may be other processes using this + * queue and holding refs to all queues below + * sync_bfqq->new_bfqq. Similarly if the merge + * already happened, we need to detach from + * bfqq now so that we cannot merge bio to a + * request from the old cgroup. + */ + bfq_put_cooperator(sync_bfqq); + bfq_release_process_ref(bfqd, sync_bfqq); + bic_set_bfqq(bic, NULL, 1); + } + } } return bfqg; @@ -713,20 +739,24 @@ void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio) { struct bfq_data *bfqd = bic_to_bfqd(bic); - struct bfq_group *bfqg = NULL; + struct bfq_group *bfqg = bfq_bio_bfqg(bfqd, bio); uint64_t serial_nr; - rcu_read_lock(); - serial_nr = __bio_blkcg(bio)->css.serial_nr; + serial_nr = bfqg_to_blkg(bfqg)->blkcg->css.serial_nr; /* * Check whether blkcg has changed. The condition may trigger * spuriously on a newly created cic but there's no harm. */ if (unlikely(!bfqd) || likely(bic->blkcg_serial_nr == serial_nr)) - goto out; + return; - bfqg = __bfq_bic_change_cgroup(bfqd, bic, __bio_blkcg(bio)); + /* + * New cgroup for this process. Make sure it is linked to bfq internal + * cgroup hierarchy. + */ + bfq_link_bfqg(bfqd, bfqg); + __bfq_bic_change_cgroup(bfqd, bic, bfqg); /* * Update blkg_path for bfq_log_* functions. We cache this * path, and update it here, for the following @@ -779,8 +809,6 @@ */ blkg_path(bfqg_to_blkg(bfqg), bfqg->blkg_path, sizeof(bfqg->blkg_path)); bic->blkcg_serial_nr = serial_nr; -out: - rcu_read_unlock(); } /** @@ -908,6 +936,7 @@ put_async_queues: bfq_put_async_queues(bfqd, bfqg); + bfqg->online = false; spin_unlock_irqrestore(&bfqd->lock, flags); /* @@ -1396,7 +1425,7 @@ bfq_end_wr_async_queues(bfqd, bfqd->root_group); } -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, struct blkcg *blkcg) +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio) { return bfqd->root_group; } diff -u linux-azure-5.4.0/block/bfq-iosched.c linux-azure-5.4.0/block/bfq-iosched.c --- linux-azure-5.4.0/block/bfq-iosched.c +++ linux-azure-5.4.0/block/bfq-iosched.c @@ -420,6 +420,8 @@ */ void bfq_schedule_dispatch(struct bfq_data *bfqd) { + lockdep_assert_held(&bfqd->lock); + if (bfqd->queued != 0) { bfq_log(bfqd, "schedule dispatch"); blk_mq_run_hw_queues(bfqd->queue, true); @@ -2227,10 +2229,17 @@ spin_lock_irq(&bfqd->lock); - if (bic) + if (bic) { + /* + * Make sure cgroup info is uptodate for current process before + * considering the merge. + */ + bfq_bic_update_cgroup(bic, bio); + bfqd->bio_bfqq = bic_to_bfqq(bic, op_is_sync(bio->bi_opf)); - else + } else { bfqd->bio_bfqq = NULL; + } bfqd->bio_bic = bic; ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free); @@ -2251,14 +2260,15 @@ __rq = bfq_find_rq_fmerge(bfqd, bio, q); if (__rq && elv_bio_merge_ok(__rq, bio)) { *req = __rq; + + if (blk_discard_mergable(__rq)) + return ELEVATOR_DISCARD_MERGE; return ELEVATOR_FRONT_MERGE; } return ELEVATOR_NO_MERGE; } -static struct bfq_queue *bfq_init_rq(struct request *rq); - static void bfq_request_merged(struct request_queue *q, struct request *req, enum elv_merge type) { @@ -2267,7 +2277,7 @@ blk_rq_pos(req) < blk_rq_pos(container_of(rb_prev(&req->rb_node), struct request, rb_node))) { - struct bfq_queue *bfqq = bfq_init_rq(req); + struct bfq_queue *bfqq = RQ_BFQQ(req); struct bfq_data *bfqd; struct request *prev, *next_rq; @@ -2319,8 +2329,8 @@ static void bfq_requests_merged(struct request_queue *q, struct request *rq, struct request *next) { - struct bfq_queue *bfqq = bfq_init_rq(rq), - *next_bfqq = bfq_init_rq(next); + struct bfq_queue *bfqq = RQ_BFQQ(rq), + *next_bfqq = RQ_BFQQ(next); if (!bfqq) return; @@ -2499,6 +2509,14 @@ if (process_refs == 0 || new_process_refs == 0) return NULL; + /* + * Make sure merged queues belong to the same parent. Parents could + * have changed since the time we decided the two queues are suitable + * for merging. + */ + if (new_bfqq->entity.parent != bfqq->entity.parent) + return NULL; + bfq_log_bfqq(bfqq->bfqd, bfqq, "scheduling merge with queue %d", new_bfqq->pid); @@ -2523,6 +2541,15 @@ * are likely to increase the throughput. */ bfqq->new_bfqq = new_bfqq; + /* + * The above assignment schedules the following redirections: + * each time some I/O for bfqq arrives, the process that + * generated that I/O is disassociated from bfqq and + * associated with new_bfqq. Here we increases new_bfqq->ref + * in advance, adding the number of processes that are + * expected to be associated with new_bfqq as they happen to + * issue I/O. + */ new_bfqq->ref += process_refs; return new_bfqq; } @@ -2582,6 +2609,10 @@ { struct bfq_queue *in_service_bfqq, *new_bfqq; + /* if a merge has already been setup, then proceed with that first */ + if (bfqq->new_bfqq) + return bfqq->new_bfqq; + /* * Do not perform queue merging if the device is non * rotational and performs internal queueing. In fact, such a @@ -2636,9 +2667,6 @@ if (bfq_too_late_for_merging(bfqq)) return NULL; - if (bfqq->new_bfqq) - return bfqq->new_bfqq; - if (!io_struct || unlikely(bfqq == &bfqd->oom_bfqq)) return NULL; @@ -4793,7 +4821,7 @@ struct bfq_data *bfqd = hctx->queue->elevator->elevator_data; struct request *rq; struct bfq_queue *in_serv_queue; - bool waiting_rq, idle_timer_disabled; + bool waiting_rq, idle_timer_disabled = false; spin_lock_irq(&bfqd->lock); @@ -4801,14 +4829,15 @@ waiting_rq = in_serv_queue && bfq_bfqq_wait_request(in_serv_queue); rq = __bfq_dispatch_request(hctx); - - idle_timer_disabled = - waiting_rq && !bfq_bfqq_wait_request(in_serv_queue); + if (in_serv_queue == bfqd->in_service_queue) { + idle_timer_disabled = + waiting_rq && !bfq_bfqq_wait_request(in_serv_queue); + } spin_unlock_irq(&bfqd->lock); - - bfq_update_dispatch_stats(hctx->queue, rq, in_serv_queue, - idle_timer_disabled); + bfq_update_dispatch_stats(hctx->queue, rq, + idle_timer_disabled ? in_serv_queue : NULL, + idle_timer_disabled); return rq; } @@ -4900,7 +4929,7 @@ bfqg_and_blkg_put(bfqg); } -static void bfq_put_cooperator(struct bfq_queue *bfqq) +void bfq_put_cooperator(struct bfq_queue *bfqq) { struct bfq_queue *__bfqq, *next; @@ -5004,7 +5033,7 @@ if (bfqq->new_ioprio >= IOPRIO_BE_NR) { pr_crit("bfq_set_next_ioprio_data: new_ioprio %d\n", bfqq->new_ioprio); - bfqq->new_ioprio = IOPRIO_BE_NR; + bfqq->new_ioprio = IOPRIO_BE_NR - 1; } bfqq->entity.new_weight = bfq_ioprio_to_weight(bfqq->new_ioprio); @@ -5131,14 +5160,7 @@ struct bfq_queue *bfqq; struct bfq_group *bfqg; - rcu_read_lock(); - - bfqg = bfq_find_set_group(bfqd, __bio_blkcg(bio)); - if (!bfqg) { - bfqq = &bfqd->oom_bfqq; - goto out; - } - + bfqg = bfq_bio_bfqg(bfqd, bio); if (!is_sync) { async_bfqq = bfq_async_queue_prio(bfqd, bfqg, ioprio_class, ioprio); @@ -5182,7 +5204,6 @@ out: bfqq->ref++; /* get a process reference to this queue */ bfq_log_bfqq(bfqd, bfqq, "get_queue, at end: %p, %d", bfqq, bfqq->ref); - rcu_read_unlock(); return bfqq; } @@ -5485,6 +5506,8 @@ unsigned int cmd_flags) {} #endif /* CONFIG_BFQ_CGROUP_DEBUG */ +static struct bfq_queue *bfq_init_rq(struct request *rq); + static void bfq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, bool at_head) { @@ -5495,17 +5518,14 @@ unsigned int cmd_flags; spin_lock_irq(&bfqd->lock); + bfqq = bfq_init_rq(rq); if (blk_mq_sched_try_insert_merge(q, rq)) { spin_unlock_irq(&bfqd->lock); return; } - spin_unlock_irq(&bfqd->lock); - blk_mq_sched_request_inserted(rq); - spin_lock_irq(&bfqd->lock); - bfqq = bfq_init_rq(rq); if (!bfqq || at_head || blk_rq_is_passthrough(rq)) { if (at_head) list_add(&rq->queuelist, &bfqd->dispatch); @@ -6239,8 +6259,8 @@ bfq_bfqq_expire(bfqd, bfqq, true, reason); schedule_dispatch: - spin_unlock_irqrestore(&bfqd->lock, flags); bfq_schedule_dispatch(bfqd); + spin_unlock_irqrestore(&bfqd->lock, flags); } /* @@ -6389,6 +6409,8 @@ spin_unlock_irq(&bfqd->lock); #endif + wbt_enable_default(bfqd->queue); + kfree(bfqd); } diff -u linux-azure-5.4.0/block/bfq-iosched.h linux-azure-5.4.0/block/bfq-iosched.h --- linux-azure-5.4.0/block/bfq-iosched.h +++ linux-azure-5.4.0/block/bfq-iosched.h @@ -896,6 +896,8 @@ /* reference counter (see comments in bfq_bic_update_cgroup) */ int ref; + /* Is bfq_group still online? */ + bool online; struct bfq_entity entity; struct bfq_sched_data sched_data; @@ -949,6 +951,7 @@ void bfq_bfqq_expire(struct bfq_data *bfqd, struct bfq_queue *bfqq, bool compensate, enum bfqq_expiration reason); void bfq_put_queue(struct bfq_queue *bfqq); +void bfq_put_cooperator(struct bfq_queue *bfqq); void bfq_end_wr_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg); void bfq_release_process_ref(struct bfq_data *bfqd, struct bfq_queue *bfqq); void bfq_schedule_dispatch(struct bfq_data *bfqd); @@ -975,8 +978,7 @@ void bfq_init_entity(struct bfq_entity *entity, struct bfq_group *bfqg); void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio); void bfq_end_wr_async(struct bfq_data *bfqd); -struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd, - struct blkcg *blkcg); +struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio); struct blkcg_gq *bfqg_to_blkg(struct bfq_group *bfqg); struct bfq_group *bfqq_group(struct bfq_queue *bfqq); struct bfq_group *bfq_create_group_hierarchy(struct bfq_data *bfqd, int node); diff -u linux-azure-5.4.0/block/bio-integrity.c linux-azure-5.4.0/block/bio-integrity.c --- linux-azure-5.4.0/block/bio-integrity.c +++ linux-azure-5.4.0/block/bio-integrity.c @@ -380,7 +380,7 @@ struct blk_integrity *bi = blk_get_integrity(bio->bi_disk); unsigned bytes = bio_integrity_bytes(bi, bytes_done >> 9); - bip->bip_iter.bi_sector += bytes_done >> 9; + bip->bip_iter.bi_sector += bio_integrity_intervals(bi, bytes_done >> 9); bvec_iter_advance(bip->bip_vec, &bip->bip_iter, bytes); } diff -u linux-azure-5.4.0/block/bio.c linux-azure-5.4.0/block/bio.c --- linux-azure-5.4.0/block/bio.c +++ linux-azure-5.4.0/block/bio.c @@ -569,7 +569,8 @@ offset = new_size - done; else offset = 0; - zero_user(bv.bv_page, offset, bv.bv_len - offset); + zero_user(bv.bv_page, bv.bv_offset + offset, + bv.bv_len - offset); truncated = true; } done += bv.bv_len; @@ -1626,7 +1627,7 @@ if (bytes > len) bytes = len; - page = alloc_page(q->bounce_gfp | gfp_mask); + page = alloc_page(q->bounce_gfp | __GFP_ZERO | gfp_mask); if (!page) goto cleanup; @@ -2178,7 +2179,7 @@ rcu_read_lock(); if (src->bi_blkg) - __bio_associate_blkg(dst, src->bi_blkg); + bio_associate_blkg_from_css(dst, &bio_blkcg(src)->css); rcu_read_unlock(); } diff -u linux-azure-5.4.0/block/blk-cgroup.c linux-azure-5.4.0/block/blk-cgroup.c --- linux-azure-5.4.0/block/blk-cgroup.c +++ linux-azure-5.4.0/block/blk-cgroup.c @@ -1462,10 +1462,14 @@ /* alloc failed, nothing's initialized yet, free everything */ spin_lock_irq(&q->queue_lock); list_for_each_entry(blkg, &q->blkg_list, q_node) { + struct blkcg *blkcg = blkg->blkcg; + + spin_lock(&blkcg->lock); if (blkg->pd[pol->plid]) { pol->pd_free_fn(blkg->pd[pol->plid]); blkg->pd[pol->plid] = NULL; } + spin_unlock(&blkcg->lock); } spin_unlock_irq(&q->queue_lock); ret = -ENOMEM; @@ -1497,12 +1501,16 @@ __clear_bit(pol->plid, q->blkcg_pols); list_for_each_entry(blkg, &q->blkg_list, q_node) { + struct blkcg *blkcg = blkg->blkcg; + + spin_lock(&blkcg->lock); if (blkg->pd[pol->plid]) { if (pol->pd_offline_fn) pol->pd_offline_fn(blkg->pd[pol->plid]); pol->pd_free_fn(blkg->pd[pol->plid]); blkg->pd[pol->plid] = NULL; } + spin_unlock(&blkcg->lock); } spin_unlock_irq(&q->queue_lock); diff -u linux-azure-5.4.0/block/blk-flush.c linux-azure-5.4.0/block/blk-flush.c --- linux-azure-5.4.0/block/blk-flush.c +++ linux-azure-5.4.0/block/blk-flush.c @@ -222,8 +222,10 @@ return; } - if (fq->rq_status != BLK_STS_OK) + if (fq->rq_status != BLK_STS_OK) { error = fq->rq_status; + fq->rq_status = BLK_STS_OK; + } hctx = flush_rq->mq_hctx; if (!q->elevator) { diff -u linux-azure-5.4.0/block/blk-merge.c linux-azure-5.4.0/block/blk-merge.c --- linux-azure-5.4.0/block/blk-merge.c +++ linux-azure-5.4.0/block/blk-merge.c @@ -7,6 +7,7 @@ #include #include #include +#include #include @@ -571,12 +572,19 @@ static inline int ll_new_hw_segment(struct request *req, struct bio *bio, unsigned int nr_phys_segs) { - if (req->nr_phys_segments + nr_phys_segs > blk_rq_get_max_segments(req)) + if (!blk_cgroup_mergeable(req, bio)) goto no_merge; if (blk_integrity_merge_bio(req->q, req, bio) == false) goto no_merge; + /* discard request merge won't add new segment */ + if (req_op(req) == REQ_OP_DISCARD) + return 1; + + if (req->nr_phys_segments + nr_phys_segs > blk_rq_get_max_segments(req)) + goto no_merge; + /* * This will form the start of a new hw segment. Bump both * counters. @@ -660,2 +668,5 @@ + if (!blk_cgroup_mergeable(req, next->bio)) + return 0; + if (blk_integrity_merge_rq(q, req, next) == false) @@ -710,21 +721,6 @@ part_stat_unlock(); } } -/* - * Two cases of handling DISCARD merge: - * If max_discard_segments > 1, the driver takes every bio - * as a range and send them to controller together. The ranges - * needn't to be contiguous. - * Otherwise, the bios/requests will be handled as same as - * others which should be contiguous. - */ -static inline bool blk_discard_mergable(struct request *req) -{ - if (req_op(req) == REQ_OP_DISCARD && - queue_max_discard_segments(req->q) > 1) - return true; - return false; -} static enum elv_merge blk_try_req_merge(struct request *req, struct request *next) @@ -881,6 +877,10 @@ if (rq->rq_disk != bio->bi_disk) return false; + /* don't merge across cgroup boundaries */ + if (!blk_cgroup_mergeable(rq, bio)) + return false; + /* only merge integrity protected bio into ditto rq */ if (blk_integrity_merge_bio(rq->q, rq, bio) == false) return false; diff -u linux-azure-5.4.0/block/blk-mq-debugfs.c linux-azure-5.4.0/block/blk-mq-debugfs.c --- linux-azure-5.4.0/block/blk-mq-debugfs.c +++ linux-azure-5.4.0/block/blk-mq-debugfs.c @@ -883,6 +883,9 @@ char name[20]; int i; + if (!q->debugfs_dir) + return; + snprintf(name, sizeof(name), "hctx%u", hctx->queue_num); hctx->debugfs_dir = debugfs_create_dir(name, q->debugfs_dir); diff -u linux-azure-5.4.0/block/blk-mq.c linux-azure-5.4.0/block/blk-mq.c --- linux-azure-5.4.0/block/blk-mq.c +++ linux-azure-5.4.0/block/blk-mq.c @@ -579,7 +579,14 @@ q->mq_ops->complete(rq); } -static void __blk_mq_complete_request(struct request *rq) +/** + * blk_mq_complete_request - end I/O on a request + * @rq: the request being processed + * + * Description: + * Complete a request by scheduling the ->complete_rq operation. + **/ +void blk_mq_complete_request(struct request *rq) { struct blk_mq_ctx *ctx = rq->mq_ctx; struct request_queue *q = rq->q; @@ -625,6 +632,7 @@ } put_cpu(); } +EXPORT_SYMBOL(blk_mq_complete_request); static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx) __releases(hctx->srcu) @@ -646,23 +654,6 @@ *srcu_idx = srcu_read_lock(hctx->srcu); } -/** - * blk_mq_complete_request - end I/O on a request - * @rq: the request being processed - * - * Description: - * Ends all I/O on a request. It does not handle partial completions. - * The actual completion happens out-of-order, through a IPI handler. - **/ -bool blk_mq_complete_request(struct request *rq) -{ - if (unlikely(blk_should_fake_timeout(rq->q))) - return false; - __blk_mq_complete_request(rq); - return true; -} -EXPORT_SYMBOL(blk_mq_complete_request); - int blk_mq_request_started(struct request *rq) { return blk_mq_rq_state(rq) != MQ_RQ_IDLE; @@ -733,7 +724,6 @@ /* this request will be re-inserted to io scheduler queue */ blk_mq_sched_requeue_request(rq); - BUG_ON(!list_empty(&rq->queuelist)); blk_mq_add_to_requeue_list(rq, true, kick_requeue_list); } EXPORT_SYMBOL(blk_mq_requeue_request); diff -u linux-azure-5.4.0/block/blk-sysfs.c linux-azure-5.4.0/block/blk-sysfs.c --- linux-azure-5.4.0/block/blk-sysfs.c +++ linux-azure-5.4.0/block/blk-sysfs.c @@ -1060,15 +1060,17 @@ */ if (queue_is_mq(q)) blk_mq_unregister_dev(disk_to_dev(disk), q); - - kobject_uevent(&q->kobj, KOBJ_REMOVE); - kobject_del(&q->kobj); blk_trace_remove_sysfs(disk_to_dev(disk)); mutex_lock(&q->sysfs_lock); if (q->elevator) elv_unregister_queue(q); mutex_unlock(&q->sysfs_lock); + + /* Now that we've deleted all child objects, we can delete the queue. */ + kobject_uevent(&q->kobj, KOBJ_REMOVE); + kobject_del(&q->kobj); + mutex_unlock(&q->sysfs_dir_lock); kobject_put(&disk_to_dev(disk)->kobj); diff -u linux-azure-5.4.0/block/blk-zoned.c linux-azure-5.4.0/block/blk-zoned.c --- linux-azure-5.4.0/block/blk-zoned.c +++ linux-azure-5.4.0/block/blk-zoned.c @@ -316,9 +316,6 @@ if (!blk_queue_is_zoned(q)) return -ENOTTY; - if (!capable(CAP_SYS_ADMIN)) - return -EACCES; - if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report))) return -EFAULT; @@ -374,9 +371,6 @@ if (!blk_queue_is_zoned(q)) return -ENOTTY; - if (!capable(CAP_SYS_ADMIN)) - return -EACCES; - if (!(mode & FMODE_WRITE)) return -EBADF; diff -u linux-azure-5.4.0/block/blk.h linux-azure-5.4.0/block/blk.h --- linux-azure-5.4.0/block/blk.h +++ linux-azure-5.4.0/block/blk.h @@ -214,17 +214,9 @@ struct hd_struct *__disk_get_part(struct gendisk *disk, int partno); -#ifdef CONFIG_FAIL_IO_TIMEOUT -int blk_should_fake_timeout(struct request_queue *); ssize_t part_timeout_show(struct device *, struct device_attribute *, char *); ssize_t part_timeout_store(struct device *, struct device_attribute *, const char *, size_t); -#else -static inline int blk_should_fake_timeout(struct request_queue *q) -{ - return 0; -} -#endif void __blk_queue_split(struct request_queue *q, struct bio **bio, unsigned int *nr_segs); diff -u linux-azure-5.4.0/block/bsg-lib.c linux-azure-5.4.0/block/bsg-lib.c --- linux-azure-5.4.0/block/bsg-lib.c +++ linux-azure-5.4.0/block/bsg-lib.c @@ -181,9 +181,12 @@ void bsg_job_done(struct bsg_job *job, int result, unsigned int reply_payload_rcv_len) { + struct request *rq = blk_mq_rq_from_pdu(job); + job->result = result; job->reply_payload_rcv_len = reply_payload_rcv_len; - blk_mq_complete_request(blk_mq_rq_from_pdu(job)); + if (likely(!blk_should_fake_timeout(rq->q))) + blk_mq_complete_request(rq); } EXPORT_SYMBOL_GPL(bsg_job_done); diff -u linux-azure-5.4.0/block/bsg.c linux-azure-5.4.0/block/bsg.c --- linux-azure-5.4.0/block/bsg.c +++ linux-azure-5.4.0/block/bsg.c @@ -371,10 +371,13 @@ case SG_GET_RESERVED_SIZE: case SG_SET_RESERVED_SIZE: case SG_EMULATED_HOST: - case SCSI_IOCTL_SEND_COMMAND: return scsi_cmd_ioctl(bd->queue, NULL, file->f_mode, cmd, uarg); case SG_IO: return bsg_sg_io(bd->queue, file->f_mode, uarg); + case SCSI_IOCTL_SEND_COMMAND: + pr_warn_ratelimited("%s: calling unsupported SCSI_IOCTL_SEND_COMMAND\n", + current->comm); + return -EINVAL; default: return -ENOTTY; } diff -u linux-azure-5.4.0/block/compat_ioctl.c linux-azure-5.4.0/block/compat_ioctl.c --- linux-azure-5.4.0/block/compat_ioctl.c +++ linux-azure-5.4.0/block/compat_ioctl.c @@ -393,7 +393,7 @@ return 0; case BLKGETSIZE: size = i_size_read(bdev->bd_inode); - if ((size >> 9) > ~0UL) + if ((size >> 9) > ~(compat_ulong_t)0) return -EFBIG; return compat_put_ulong(arg, size >> 9); diff -u linux-azure-5.4.0/block/mq-deadline.c linux-azure-5.4.0/block/mq-deadline.c --- linux-azure-5.4.0/block/mq-deadline.c +++ linux-azure-5.4.0/block/mq-deadline.c @@ -452,6 +452,8 @@ if (elv_bio_merge_ok(__rq, bio)) { *rq = __rq; + if (blk_discard_mergable(__rq)) + return ELEVATOR_DISCARD_MERGE; return ELEVATOR_FRONT_MERGE; } } diff -u linux-azure-5.4.0/certs/blacklist.c linux-azure-5.4.0/certs/blacklist.c --- linux-azure-5.4.0/certs/blacklist.c +++ linux-azure-5.4.0/certs/blacklist.c @@ -16,9 +16,15 @@ #include #include #include "blacklist.h" +#include "common.h" static struct key *blacklist_keyring; +#ifdef CONFIG_SYSTEM_REVOCATION_LIST +extern __initconst const u8 revocation_certificate_list[]; +extern __initconst const unsigned long revocation_certificate_list_size; +#endif + /* * The description must be a type prefix, a colon and then an even number of * hex digits. The hash is kept in the description. @@ -144,6 +150,52 @@ } EXPORT_SYMBOL_GPL(is_binary_blacklisted); +#ifdef CONFIG_SYSTEM_REVOCATION_LIST +/** + * add_key_to_revocation_list - Add a revocation certificate to the blacklist + * @data: The data blob containing the certificate + * @size: The size of data blob + */ +int add_key_to_revocation_list(const char *data, size_t size) +{ + key_ref_t key; + + key = key_create_or_update(make_key_ref(blacklist_keyring, true), + "asymmetric", + NULL, + data, + size, + ((KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_VIEW), + KEY_ALLOC_NOT_IN_QUOTA | KEY_ALLOC_BUILT_IN); + + 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; +} + +/** + * is_key_on_revocation_list - Determine if the key for a PKCS#7 message is revoked + * @pkcs7: The PKCS#7 message to check + */ +int is_key_on_revocation_list(struct pkcs7_message *pkcs7) +{ + int ret; + + ret = pkcs7_validate_trust(pkcs7, blacklist_keyring); + + if (ret == 0) + return -EKEYREJECTED; + + return -ENOKEY; +} +#endif + /* * Initialise the blacklist */ @@ -179,0 +232,15 @@ + +#ifdef CONFIG_SYSTEM_REVOCATION_LIST +/* + * Load the compiled-in list of revocation X.509 certificates. + */ +static __init int load_revocation_certificate_list(void) +{ + if (revocation_certificate_list_size) + pr_notice("Loading compiled-in revocation X.509 certificates\n"); + + return load_certificate_list(revocation_certificate_list, revocation_certificate_list_size, + blacklist_keyring); +} +late_initcall(load_revocation_certificate_list); +#endif diff -u linux-azure-5.4.0/certs/system_keyring.c linux-azure-5.4.0/certs/system_keyring.c --- linux-azure-5.4.0/certs/system_keyring.c +++ linux-azure-5.4.0/certs/system_keyring.c @@ -15,6 +15,7 @@ #include #include #include +#include "common.h" static struct key *builtin_trusted_keys; #ifdef CONFIG_SECONDARY_TRUSTED_KEYRING @@ -136,55 +137,10 @@ */ static __init int load_system_certificate_list(void) { - key_ref_t key; - const u8 *p, *end; - size_t plen; - pr_notice("Loading compiled-in X.509 certificates\n"); - p = system_certificate_list; - end = p + system_certificate_list_size; - while (p < end) { - /* Each cert begins with an ASN.1 SEQUENCE tag and must be more - * than 256 bytes in size. - */ - if (end - p < 4) - goto dodgy_cert; - if (p[0] != 0x30 && - p[1] != 0x82) - goto dodgy_cert; - plen = (p[2] << 8) | p[3]; - plen += 4; - if (plen > end - p) - goto dodgy_cert; - - key = key_create_or_update(make_key_ref(builtin_trusted_keys, 1), - "asymmetric", - NULL, - p, - plen, - ((KEY_POS_ALL & ~KEY_POS_SETATTR) | - KEY_USR_VIEW | KEY_USR_READ), - KEY_ALLOC_NOT_IN_QUOTA | - KEY_ALLOC_BUILT_IN | - KEY_ALLOC_BYPASS_RESTRICTION); - 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); - key_ref_put(key); - } - p += plen; - } - - return 0; - -dodgy_cert: - pr_err("Problem parsing in-kernel X.509 certificate list\n"); - return 0; + return load_certificate_list(system_certificate_list, system_certificate_list_size, + builtin_trusted_keys); } late_initcall(load_system_certificate_list); @@ -242,6 +198,12 @@ pr_devel("PKCS#7 platform keyring is not available\n"); goto error; } + + ret = is_key_on_revocation_list(pkcs7); + if (ret != -ENOKEY) { + pr_devel("PKCS#7 platform key is on revocation list\n"); + goto error; + } } ret = pkcs7_validate_trust(pkcs7, trusted_keys); if (ret < 0) { diff -u linux-azure-5.4.0/crypto/Kconfig linux-azure-5.4.0/crypto/Kconfig --- linux-azure-5.4.0/crypto/Kconfig +++ linux-azure-5.4.0/crypto/Kconfig @@ -242,12 +242,12 @@ config CRYPTO_ECC tristate + select CRYPTO_RNG_DEFAULT config CRYPTO_ECDH tristate "ECDH algorithm" select CRYPTO_ECC select CRYPTO_KPP - select CRYPTO_RNG_DEFAULT help Generic implementation of the ECDH algorithm diff -u linux-azure-5.4.0/crypto/drbg.c linux-azure-5.4.0/crypto/drbg.c --- linux-azure-5.4.0/crypto/drbg.c +++ linux-azure-5.4.0/crypto/drbg.c @@ -1035,17 +1035,38 @@ ******************************************************************/ static inline int __drbg_seed(struct drbg_state *drbg, struct list_head *seed, - int reseed) + int reseed, enum drbg_seed_state new_seed_state) { int ret = drbg->d_ops->update(drbg, seed, reseed); if (ret) return ret; - drbg->seeded = true; + drbg->seeded = new_seed_state; /* 10.1.1.2 / 10.1.1.3 step 5 */ drbg->reseed_ctr = 1; + switch (drbg->seeded) { + case DRBG_SEED_STATE_UNSEEDED: + /* Impossible, but handle it to silence compiler warnings. */ + fallthrough; + case DRBG_SEED_STATE_PARTIAL: + /* + * Require frequent reseeds until the seed source is + * fully initialized. + */ + drbg->reseed_threshold = 50; + break; + + case DRBG_SEED_STATE_FULL: + /* + * Seed source has become fully initialized, frequent + * reseeds no longer required. + */ + drbg->reseed_threshold = drbg_max_requests(drbg); + break; + } + return ret; } @@ -1065,12 +1086,10 @@ return 0; } -static void drbg_async_seed(struct work_struct *work) +static int drbg_seed_from_random(struct drbg_state *drbg) { struct drbg_string data; LIST_HEAD(seedlist); - struct drbg_state *drbg = container_of(work, struct drbg_state, - seed_work); unsigned int entropylen = drbg_sec_strength(drbg->core->flags); unsigned char entropy[32]; int ret; @@ -1081,30 +1100,15 @@ drbg_string_fill(&data, entropy, entropylen); list_add_tail(&data.list, &seedlist); - mutex_lock(&drbg->drbg_mutex); - ret = drbg_get_random_bytes(drbg, entropy, entropylen); if (ret) - goto unlock; + goto out; - /* If nonblocking pool is initialized, deactivate Jitter RNG */ - crypto_free_rng(drbg->jent); - drbg->jent = NULL; - - /* Set seeded to false so that if __drbg_seed fails the - * next generate call will trigger a reseed. - */ - drbg->seeded = false; - - __drbg_seed(drbg, &seedlist, true); - - if (drbg->seeded) - drbg->reseed_threshold = drbg_max_requests(drbg); - -unlock: - mutex_unlock(&drbg->drbg_mutex); + ret = __drbg_seed(drbg, &seedlist, true, DRBG_SEED_STATE_FULL); +out: memzero_explicit(entropy, entropylen); + return ret; } /* @@ -1126,6 +1130,7 @@ unsigned int entropylen = drbg_sec_strength(drbg->core->flags); struct drbg_string data1; LIST_HEAD(seedlist); + enum drbg_seed_state new_seed_state = DRBG_SEED_STATE_FULL; /* 9.1 / 9.2 / 9.3.1 step 3 */ if (pers && pers->len > (drbg_max_addtl(drbg))) { @@ -1153,6 +1158,9 @@ BUG_ON((entropylen * 2) > sizeof(entropy)); /* Get seed from in-kernel /dev/urandom */ + if (!rng_is_initialized()) + new_seed_state = DRBG_SEED_STATE_PARTIAL; + ret = drbg_get_random_bytes(drbg, entropy, entropylen); if (ret) goto out; @@ -1168,7 +1176,23 @@ entropylen); if (ret) { pr_devel("DRBG: jent failed with %d\n", ret); - goto out; + + /* + * Do not treat the transient failure of the + * Jitter RNG as an error that needs to be + * reported. The combined number of the + * maximum reseed threshold times the maximum + * number of Jitter RNG transient errors is + * less than the reseed threshold required by + * SP800-90A allowing us to treat the + * transient errors as such. + * + * However, we mandate that at least the first + * seeding operation must succeed with the + * Jitter RNG. + */ + if (!reseed || ret != -EAGAIN) + goto out; } drbg_string_fill(&data1, entropy, entropylen * 2); @@ -1193,7 +1217,7 @@ memset(drbg->C, 0, drbg_statelen(drbg)); } - ret = __drbg_seed(drbg, &seedlist, reseed); + ret = __drbg_seed(drbg, &seedlist, reseed, new_seed_state); out: memzero_explicit(entropy, entropylen * 2); @@ -1373,19 +1397,25 @@ * here. The spec is a bit convoluted here, we make it simpler. */ if (drbg->reseed_threshold < drbg->reseed_ctr) - drbg->seeded = false; + drbg->seeded = DRBG_SEED_STATE_UNSEEDED; - if (drbg->pr || !drbg->seeded) { + if (drbg->pr || drbg->seeded == DRBG_SEED_STATE_UNSEEDED) { pr_devel("DRBG: reseeding before generation (prediction " "resistance: %s, state %s)\n", drbg->pr ? "true" : "false", - drbg->seeded ? "seeded" : "unseeded"); + (drbg->seeded == DRBG_SEED_STATE_FULL ? + "seeded" : "unseeded")); /* 9.3.1 steps 7.1 through 7.3 */ len = drbg_seed(drbg, addtl, true); if (len) goto err; /* 9.3.1 step 7.4 */ addtl = NULL; + } else if (rng_is_initialized() && + drbg->seeded == DRBG_SEED_STATE_PARTIAL) { + len = drbg_seed_from_random(drbg); + if (len) + goto err; } if (addtl && 0 < addtl->len) @@ -1478,51 +1508,15 @@ return 0; } -static void drbg_schedule_async_seed(struct random_ready_callback *rdy) -{ - struct drbg_state *drbg = container_of(rdy, struct drbg_state, - random_ready); - - schedule_work(&drbg->seed_work); -} - static int drbg_prepare_hrng(struct drbg_state *drbg) { - int err; - /* We do not need an HRNG in test mode. */ if (list_empty(&drbg->test_data.list)) return 0; - INIT_WORK(&drbg->seed_work, drbg_async_seed); - - drbg->random_ready.owner = THIS_MODULE; - drbg->random_ready.func = drbg_schedule_async_seed; - - err = add_random_ready_callback(&drbg->random_ready); - - switch (err) { - case 0: - break; - - case -EALREADY: - err = 0; - /* fall through */ - - default: - drbg->random_ready.func = NULL; - return err; - } - drbg->jent = crypto_alloc_rng("jitterentropy_rng", 0, 0); - /* - * Require frequent reseeds until the seed source is fully - * initialized. - */ - drbg->reseed_threshold = 50; - - return err; + return 0; } /* @@ -1565,7 +1559,7 @@ if (!drbg->core) { drbg->core = &drbg_cores[coreref]; drbg->pr = pr; - drbg->seeded = false; + drbg->seeded = DRBG_SEED_STATE_UNSEEDED; drbg->reseed_threshold = drbg_max_requests(drbg); ret = drbg_alloc_state(drbg); @@ -1616,12 +1610,9 @@ */ static int drbg_uninstantiate(struct drbg_state *drbg) { - if (drbg->random_ready.func) { - del_random_ready_callback(&drbg->random_ready); - cancel_work_sync(&drbg->seed_work); + if (!IS_ERR_OR_NULL(drbg->jent)) crypto_free_rng(drbg->jent); - drbg->jent = NULL; - } + drbg->jent = NULL; if (drbg->d_ops) drbg->d_ops->crypto_fini(drbg); diff -u linux-azure-5.4.0/crypto/pcrypt.c linux-azure-5.4.0/crypto/pcrypt.c --- linux-azure-5.4.0/crypto/pcrypt.c +++ linux-azure-5.4.0/crypto/pcrypt.c @@ -79,12 +79,14 @@ { struct pcrypt_request *preq = pcrypt_padata_request(padata); struct aead_request *req = pcrypt_request_ctx(preq); + int ret; - padata->info = crypto_aead_encrypt(req); + ret = crypto_aead_encrypt(req); - if (padata->info == -EINPROGRESS) + if (ret == -EINPROGRESS) return; + padata->info = ret; padata_do_serial(padata); } @@ -124,12 +126,14 @@ { struct pcrypt_request *preq = pcrypt_padata_request(padata); struct aead_request *req = pcrypt_request_ctx(preq); + int ret; - padata->info = crypto_aead_decrypt(req); + ret = crypto_aead_decrypt(req); - if (padata->info == -EINPROGRESS) + if (ret == -EINPROGRESS) return; + padata->info = ret; padata_do_serial(padata); } reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/abiname +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/abiname @@ -1 +0,0 @@ -1054 reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/amd64/azure +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/amd64/azure @@ -1,17070 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xea783771 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x31124ddc crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x9a63a2f4 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xa752ef67 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xa87f150f crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xb8901e67 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xc09a261f crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/sha3_generic 0x59c7bbd3 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xc8e37c98 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xcf9641bf crypto_sha3_init -EXPORT_SYMBOL crypto/sm3_generic 0x1c93da2d crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xd617b64b crypto_sm3_finup -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x6fe35268 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 0xc329fc61 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x706b95ee suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0xa88275ad uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x7e2ced0b bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x80322377 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/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x33a3d8f8 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb1a904df ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdd90b4fc ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfa617a72 ipmi_smi_watcher_register -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/crypto/atmel-i2c 0x5a37e375 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xaeb5ee14 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb16d4483 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00889bb7 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0249b71b drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x026af311 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e7aab7 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0308657a drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03380061 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x036c1f1e drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x039b9c4a drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a92fc1 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x057cc927 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0705defa drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08686cf2 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x095525a9 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4c240b drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abbea62 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b030861 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfee0a4 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c0a028d drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c131d7b drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc2d04d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccd6779 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d64c357 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8a0995 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea14fe8 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa47df7 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff238fa drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1026e516 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x102e0ee2 drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x106d0f36 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d1be18 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x114e4243 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1178142f drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c4058a drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x123970a7 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12efd217 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1331791d drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d6d994 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164922a5 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b6b5c5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e43bb2 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x174c9c37 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1757292c drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1851974b drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191d4b8b drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19b9e7d8 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b18e4b6 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0b3b1d drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2c0ba8 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d37c190 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df6e1fa drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e99f77d drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2174ff0b drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21805671 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b97b4b drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23668da5 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c52a9d drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f4edfa drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x267dce1e drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27cea69a drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283d5a23 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28892cde drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ab6b65 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x292f3e64 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2988092d drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d2beb6 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2afd9abd drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd3bd41 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7f6a45 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f725301 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30481acf drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a11753 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e5b96e drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x315affbd drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f737ff drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x343c2763 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3441d44f drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x347bc0e6 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b38cb7 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e3a901 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372f4b59 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376badc4 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x397880d7 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d8f51d drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ea391e drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a76fd0a drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b065cf2 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b343c5e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bde7079 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c55171a drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x400847ff drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x407dd807 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40810ca0 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40fa7c44 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41843527 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c4340f drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x429a7a4e drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42abdd1b drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4488d276 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4781d9e8 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b78a61 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49366b3e drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x494f6f56 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49eee63d drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b182fd9 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e221e7b drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f002942 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcc7a62 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516cd138 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51920aec drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fe05f5 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x528e12c9 drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5311a229 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53fcbe12 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54156eb0 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5421ea08 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5466b1b0 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a3433e drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5664e49a drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x593b9be6 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5980800f drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59af07af drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59af401f drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a7649ae drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1416d8 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6dedce drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce80fb4 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7fbeab drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7a4509 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eea352b drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x633bd3ec drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6396f8ac drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d9d5c5 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x644dd359 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ef5f06 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6532ec97 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6585dc65 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e0733d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68059675 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6883a8d7 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b472ab drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c1ac07 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7e574a drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4c958c drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8d47d9 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0ac641 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3e3784 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3088bb drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db5e7f6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e465a67 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f662ec0 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7b29f7 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x708c0b69 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d31a6d drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713b1b89 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ff5bca drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7229c49c drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x736e79aa drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x738b5521 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b0f69d drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x740b361d drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7471987c drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x752aba64 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x752dfcde drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x755a63b5 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ebb2b7 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7836ecb0 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79468c5c drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x795f80d2 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c831947 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d613845 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d97db71 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2b7823 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f35e576 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f6e24aa drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801e26ed drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f63457 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82221f61 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d9af59 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8453d559 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e0f804 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f1f599 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85079118 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8528a0fb drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d59595 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x865e9d1e drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87548397 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87edc47f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8961d9f0 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af62213 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb11f0c drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c8ed752 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db03ee0 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb4df7 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f352a40 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90fb411e drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f61296 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9281ad80 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92b3bdac drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x947efa72 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95aab72d drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x965e3a15 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9739f1aa drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e8e76c drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9819efcf drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x982beae8 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f29b92 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cef95c0 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9daee001 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db6483c drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eedb1dd drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef95f6e drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f357ce3 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f70d9f6 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1da1086 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa272bfd3 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34cd4eb drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5d06338 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b8541a drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f30990 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70434e3 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70f31b4 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86d7692 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e5c7eb drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9656a28 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96e67d5 drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa19d6f9 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa8d79c5 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab65efeb drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd1d2df drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacba949e drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3131a5 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3e39c5 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf525a15 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf618e41 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06d1ea4 drm_agp_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0782ae7 drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d78646 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb13f463d drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1953c5b drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e9e21d drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f532c3 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c1febf drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f3f750 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb39fe748 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3e9e69f drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43fbeea drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47e26e5 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c46d31 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ddf953 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5da139b drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62c3ae4 drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb74b10b7 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8352ee0 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94c947b drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9518fc1 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba68a40f drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcabd483 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd268fea drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd86803e drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb4b65d drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c58103 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e78fd1 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc13372d6 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18eab4d drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b8c0dc drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f769e0 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc35055d3 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b4b2ac drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40d8676 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5dc7be3 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e08eba drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77be9b7 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d01c5c drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9ebfb4b drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca1825e9 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca410353 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb79fe01 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb898c90 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd03e9fc drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2f0d48 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd56e169 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdea173b drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf4fd72 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef86cd9 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef8f9e7 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf40285d drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd4ee2b drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5935c02 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd697ab08 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7cabb2d drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8429c3a drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8ec3fcc drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97e1e15 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda380706 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc078fed drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc1b420a drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc24e146 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeac7ebf drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef6c68c drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf348cfa drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf671831 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff1e918 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cc5f0c drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b43e06 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5baddc4 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66eea81 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85e7312 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9218886 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea03b51c drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea433671 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebfe853d drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed236bfc drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2fd8ef drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedef4708 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1b7a10 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdd59e8 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe9fb23 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf024e79b drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03babe7 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ef99db drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf181247d drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23be8e9 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28eacb2 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dfcc75 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e750d0 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32b5b64 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3bdbd1c drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ed8c0d drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf477746d drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4e051a3 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54e57d6 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e1c6a1 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf870878a drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f4de55 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d773e2 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9de428c drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f2e198 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa834417 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafd89d1 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb72298a drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcffd4b2 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd00626e drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01bd4c2b drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0237172b drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e07ccb drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03300483 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07004661 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x081950c7 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08610d87 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x092ff0f9 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a270899 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d766599 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9669f8 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb58641 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe223f6 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1025f727 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1249f8de drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12838fc0 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a1ed97 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1380ee63 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x159c31e3 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1749182a drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x180e7cf3 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b01819 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c9eb061 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24707b6c drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2517c0d7 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f0ad1d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a4fc651 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b8579d4 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ddc8157 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed0c766 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3056b25c __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32234346 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335d342a drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d8a8d7 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3666f240 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3721f2be drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39847e26 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b7fdf5b drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cfd942b drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x404be1a4 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41818d8d drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x432790eb drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x435fd164 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451ddaef drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454fdf16 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b35333 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ef3da9 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f7e0a7 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47acd00f drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x481a2ae8 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491b15c4 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bf6b843 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ca5fcb1 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50b183cb drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56ef9181 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57472d8c drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e1cb8a drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5878f842 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2fba32 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da8abf9 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d3b52e drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674fd546 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5328ca drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b59e915 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c43464a drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c68289e drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e3bdfb9 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x728cb1e0 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72c23e57 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75fd89a9 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76010b95 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77cf28f3 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x790978db drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x795acb20 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bbacb94 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce59ddb drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e3a69ec __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed5db38 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x803b0ac8 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81553d18 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ac6861 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84f21533 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x875ec8b6 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x887c79b9 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894ce951 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89df0973 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8afba35c drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c51f366 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e82fc5f drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f5ed23c drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f6b2665 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8b37e2 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x902b7d51 drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x946a647f drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95ee7f00 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9604099c drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966da76d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97086177 drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97655572 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97774dc4 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b2f1ce drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98c093a5 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x991d9f04 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ae12d5c drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b4557a0 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b5c4be0 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d94e800 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f24c629 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f75b881 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0ea542b drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14b9ec1 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa199cea5 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27f6536 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c4731d drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3672aa9 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42b1593 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47bd47c drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa594ae55 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6451cf0 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa701acb1 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71ab504 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8c8361c drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae68aa32 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae811a33 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf2da6be drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb01a26ce drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0b29e15 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb151576a drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb186b91f drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb205ed98 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2b78136 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d3e348 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb458a071 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5e016d2 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6e975c0 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb933e7d0 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb93f9175 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9b33fc2 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd38874 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc545467 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcaf4a88 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe3cc0ca drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe5205bd drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b55cf6 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2b08e59 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5045bd5 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6931309 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7699e48 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b39bb4 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc95042ff drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca89a74c drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb73f426 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd5cb9a drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccfcde4a drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdebd037 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcecc5831 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0326b32 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1505399 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a0444e drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1be33f1 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd29eee47 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd319cfb6 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd419af44 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4210b5b drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73bbadd drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b8845f drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda0665c5 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf71603 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf193760 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe125e2ad drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33cf47e drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4f07c0e drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5d869c4 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe670f770 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6befe91 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7c2a3d5 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7dae999 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9bf4ec1 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9c2bdaf drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea5e99e3 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebb861fe drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef387e5b drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef3a5cf6 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf005e76a drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24102ba drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf358fe9e drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6495a13 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7030ae3 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf792f588 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7b7dd5e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf84f3baa drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf966b4b7 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb2cc89 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb05623 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdda7770 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x08d6138b mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x49b4f020 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4dce0a13 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c12f875 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x63f33355 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6afe7375 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6fb8a5a5 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x97c751ba mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa4195326 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb0b0caf9 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb20db94d mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb9cffb7a mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd932c161 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe66be5dd mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3ca3284 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf8976e2b mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfe2ef535 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xffd23502 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x01ca86fa drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d37cafe drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1ba5e848 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3235c9c8 drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3415f04a drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3dc531e0 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x571efcf4 drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x65aea6e6 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x86c12dca drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d311c09 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8da2d713 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa2b36c7a drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa2c15cca drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xad6121ce drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb9b5b5e1 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xce9d0bf4 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd10536b0 drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe97b1ee0 drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeef98a8e drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfedcd05c drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d0df828 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1f6782e0 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ff52514 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3b472dee drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e9073c7 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x49612c96 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52c1de54 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x684f337d drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a160db2 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8896eae1 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaa17aa8f drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf17096d drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcaac7620 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd18042f9 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd445318c to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd455fa72 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd442b69 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe9b34e8e drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf39bc898 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x091c3463 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0cddb5e4 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1beb50e8 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2171dd9e ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d5b649e ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x303f7324 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3630f2fe ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a3d8ed5 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ac0324c ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ad6b667 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cbc7bdd ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fb3acd8 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x417678f1 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41e66e2b ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x438176f4 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4667ceef ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46eb11c8 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a73c372 ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4dc55391 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fa5e903 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x516105fd ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58f9874f ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b3e72d5 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61f22e77 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63d479d1 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66299283 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b4254ff ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d0fdd02 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74dc1e5b ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x791e5608 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f2317be ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8483737f ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8530f54b ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88abaa63 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e54501f ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9067b164 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91287aa5 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa03b268b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa16d85f1 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1bfce7f ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3292fa0 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa39b940b ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae189a8f ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae7db5fd ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59f1b6b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5ed15d9 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb71dd8f2 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8a3e27e ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb932bf36 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb98fb129 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0848d61 ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc28163d3 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccd2107c ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd23753c1 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9e05c93 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda449c6e ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd606f12 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd742cd2 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf39e272 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe18c5ba3 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebd4ee99 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed7019f4 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefdd5ece ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1c6f831 ttm_bo_mmap -EXPORT_SYMBOL drivers/hid/hid 0x622a03fb hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x091b87a7 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14f349f1 ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x154fecb6 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x18fb3255 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1df23cb4 ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1e76ce4f ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x235bdaa1 ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2a8b1ff1 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2ab3a6a3 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3f472ecf ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x40e977f0 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x42f7ca69 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4475e418 ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4bb2fdd0 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f676509 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x50f6bdeb ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x525630a4 ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x583245d3 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x59d23396 ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5ce33398 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6bcb40a9 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7435f2d4 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x75b3da78 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x75c8f993 ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7e931037 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7f332340 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x835bc9f3 ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8d72e78b ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x92ac3ac6 ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x93aeae76 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x970bcee0 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x988e82f2 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa4cf901d ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xad26a66f ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb5a5066b ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb7377688 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc0992567 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xccb6d902 ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd1f6c65a ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe3317b27 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf2d8a763 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf992ad60 ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x1c3b575f sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x92cc8a21 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdc9a6750 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfd855422 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5e2789d7 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfd18f7bb i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9b2d1871 amd756_smbus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0449b457 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1b74b706 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x251ed503 i2c_verify_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x2ddbc0f7 i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x323a3d7e i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4e2bf73a i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5304531d i2c_transfer_buffer_flags -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5ce1555b i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x5d5d4f00 i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x63fb5f1c i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x67a2df31 i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x75e059a9 i2c_get_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x790eeaeb i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7ec30221 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8f20a67e i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x97614cb7 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9adee4eb i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9af915e9 i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9fc47ea5 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa76eea1b i2c_use_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0xb557dcf5 __i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xbed4e9be i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0xca6742bf __i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xcd53a66c i2c_verify_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe28aaf84 i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe3ff0bff i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0xff5c4c99 i2c_release_client -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x125e37a5 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x187a7620 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x266bd2a2 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3cd089fe cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44d99b1c ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x459028cb ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72838d6e ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x81957639 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x930a546e ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99bf53e6 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3a3e69b ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbf70d8e2 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1929416 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc474de91 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbafb72a ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xded71ff7 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe042bd81 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3f2cff3 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0104fcac ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x015f7946 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ab2569 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01f2e3b3 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0234dc0e ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d330b2 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x060b61eb rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063465a7 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08c8efd5 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aaaf505 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f3e6e38 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f95036d ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1001a590 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1118179f ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1573450b rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c54690 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x178873fa rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aa37ee2 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc01274 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb62d4d ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b6681a ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d96d90 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24539e4d __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2666417c ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e48e2a ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2894de25 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8b0ae9 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f7cba1f ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3416d8aa ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f23ba8 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f24ba3 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3755205f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x398e41b0 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a16fb5a rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a902902 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3aeddf9f rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b992996 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9c9e9d ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40ba7c93 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x411d45ea ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41d2cd8b rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x421637da ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4269c105 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x428d5aa1 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4303f707 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43883afa ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c2cb30 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x442cae08 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x446442df rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4721bb73 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47850d66 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4947547b ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a3fd5d5 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d1b8ebc rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e496346 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ec799cf rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f3c71a6 __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f721d37 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa96eb3 ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5064ad2a ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x518f79a6 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ab308c ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f02339 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56948fd1 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5741ab60 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x579334ff rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59966525 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cda216e ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dc51e8e ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60faa811 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a5b314 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61ccf0cf rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f20d4f ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64d0fde4 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67755c1d ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67c1de80 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f441a0 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b4aed2 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68c1d745 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a81929 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b3fe8ef ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c8e050e ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7067cd3d __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71cc7df0 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f23436 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72843f49 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742731b3 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a20d0d ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7595674f rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ce2745 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7919fdc5 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79b30563 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc70591 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ecd146a ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f222d5d ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f6c867d ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8032ce42 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80a737e4 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d9b4af ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x818cb704 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c2a3a4 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83bdaddd rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84053521 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8444b798 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84afbda9 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85adeffe rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8601d295 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b6ba162 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c49e4ad rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d2222a5 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e2d476d ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91beaa10 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x924cccdf ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929dceb5 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92d7e33b rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92eaf14e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9419a13e rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9723d601 ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99991dcf ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b0c9bd ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a23180c rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d594852 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc8d85a ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1531bdf ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa575a632 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6ce8884 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa700659a ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa71f88e5 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9b7e0db rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaad8dfc9 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabf6a089 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf46f9c ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5b9c2b ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaec47c70 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf63f16d ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0157abf ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb063885a rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a20b6a ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2871781 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb36a1e7 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc9422de ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe706279 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc092b56e ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc199b858 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ea12eb rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6638945 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc975053b rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb42659d rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4ed10a rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce66ade2 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcede4969 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd194bec0 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1de75f4 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ebcc56 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d1bc2d __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd47746bd ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd88fa6ef rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd90378a7 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e46b3c ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda94d65d ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaf90b67 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb20f7a2 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef04ec8 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa0bbcd rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1d2d16d ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1ffbcf9 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2c16bb3 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe472311e ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4c5596e ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5493db9 __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe90d7c71 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9364a59 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea1e94ae ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb2d87e3 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2f8094 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf16ea00c rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf217652c ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62ea778 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf892fbc5 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9c13c9c ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa500043 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc25555f rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc499c5e rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f36695 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x042e4191 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0839671f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08f02cf3 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0a7ee50c flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0af4b2d1 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1088e823 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x111bb467 _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2567b009 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5228fbea ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56bdbbc2 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e75d63f ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754f2ea4 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ae77ff1 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x969dd259 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9fe7bbb6 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1b8d4b0 uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa659e351 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa267bfd ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb044d561 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7998366 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc1fec0ef uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3c13730 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe93ac512 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7b36c76 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd3b6d0e uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22b03d90 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7809ee8d iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7e574a01 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x81f41145 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b814494 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9ec29670 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe448cfe8 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeaeba104 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05b95b5e rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ffe3a4c rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14f4bbd3 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1beae208 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20afae1d rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c841fbb rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f8d0dad rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37d028c4 rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49026536 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dfa7cfb rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53cc80eb rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62dc37f0 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d009c3a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7399f01a rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91933b16 __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95ab8af3 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c39f55c rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xacd1c0cb rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4d012b7 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb760876d rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe82a6da rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc34a12e4 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc67f4964 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6a1e081 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd27afe36 __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdba761f9 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde71e429 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf110f2f8 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/input/input-polldev 0x316bf799 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x42f101b4 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x54dd51d3 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x62318882 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x96eae2e9 input_register_polled_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1d8b6e39 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/sparse-keymap 0x46d9b884 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c89ba45 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7ac42aa2 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9c13df6 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc0dda7cc sparse_keymap_report_event -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x07c73e82 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x8e4623bb amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x931f7f2c amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xdcf019dc amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe9d18f3b amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xf9366d34 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x9da7c9c6 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xda85e473 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/dm-log 0x065fe377 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x77312d88 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x81b8c73b dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xfa43c52b dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x524340bd dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x891f0485 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9943757a dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xac4086ba dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb6b642f5 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd55997bd dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0x09bf833b raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x211c1301 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/rc/rc-core 0x075649cd ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x338f35d7 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00a0770a mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x099a12e9 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a50edd3 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c2ea5f8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x200da07a mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2737d602 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ffeb659 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x353fd364 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c76d860 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x410209c5 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59d53751 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66ec5c60 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x692d172e mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72f65496 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85c42170 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93df2587 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9451dabb mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94ec1f0e mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x975e45aa mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99627d60 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa73ad10d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae058c26 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaec312a7 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1ff9417 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb426ebec mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb493ff9f mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd4b56fe mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd1e4832 mpt_halt_firmware -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 0xe7a38d28 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x004b2573 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05e2444d mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d8b78cb mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2986f62a mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46678f3e mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a51f5e7 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bb373bf mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x512d2c04 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52869441 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59e17840 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ce38008 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x61e078e2 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x647772f6 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6aa4cddf mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b29e967 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e78000c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70a9c048 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8335dffb mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cc24719 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ea4db86 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa2c69e64 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8d7e126 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2826430 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe04ec0a3 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8814b9d mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed0a1aa6 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffdc3f09 mptscsih_io_done -EXPORT_SYMBOL drivers/mfd/axp20x 0x472db17f axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x664bf067 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xb20b81f9 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3f026719 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x45d7a7c1 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x30fad8ef mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3f851b67 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x40f3c5d0 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6790d5a6 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7871efd0 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x787ed2ea mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa1decad7 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb37a19e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2f8b368 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcd950ae1 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf8197d13 mc13xxx_irq_request -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 0x14c208a3 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3c4bef5b wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x8ba00a8e wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb99ab117 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd450ee3a wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe0f0add1 wm8994_irq_init -EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x137472e6 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b54d9b0 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6704c4ff tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x7ae0c34f tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x84d0e4f6 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x859656f9 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x99b8c48e tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x9c2780ba tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xaef64a5d tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xb56c8fe0 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xbf791c2b tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xd986e7bd tifm_map_sg -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x01072d78 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0f374857 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x215f0945 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5961dd56 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76a3d129 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8af8cee0 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca7e88c3 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcc629661 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf067bf2 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdb0ca4ab arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x300d36ff com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x65215de4 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbc49b82c com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05a9b46e b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d322d71 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12f67508 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x196c421d b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1abec5d8 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20add12b b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2884422c b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2907674e b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31c89d31 b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x326e8daf b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x383e72a5 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x403e2a86 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d352c09 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x508c09f3 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a6c43d4 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x686489a4 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69d899e2 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a3626b4 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83db48a4 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b4b7618 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96e741e5 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x977daa92 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a80cf8c b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa518651a b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8f732f2 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbdcb1bf2 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0b07263 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1669953 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4297296 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca27712a b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf8f60df b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8b52ef6 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe404d30e b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe8253813 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3d0011c b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf75af1da b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf93c925a b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfabd6d40 b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1f2e3be3 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x52902a2e b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x80aaf425 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb1285197 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdcc6928c b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf6cb616b b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x49206d3d lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x875d86ac lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2212cfd9 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x35e43f21 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1006ae9c ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3bae6cd0 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x666b402e ksz_switch_register -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9b4173c7 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x03739aad cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b2b1661 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16a86325 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24eb0c17 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34358e26 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6fb6ec92 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8dd48c0f dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90a5e45f t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x982ed803 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x998d62bf t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb67a1179 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6fd1cee cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcbf3d4ff t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfd703e7 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe2ecb83c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9eaa1df cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x090a857d cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x105f31dd cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1cee0647 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1df7813b cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20ed14d0 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24ab258e cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27c1ebf6 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x331027ba cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33ab2f25 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x342eb02d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3432252b cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36ec5379 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42172995 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x430c0d83 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46a0b5c3 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47c91d3d cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ce63ab1 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58b93ad9 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e3da379 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61611df2 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x640e8756 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7710c9df cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x791e314e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83f3d3c0 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8559d2d7 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f8b8eda cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8faf1105 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92de2f27 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97f1392a cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d7f2e81 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ef08025 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa49bf4b5 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb73b66be cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8ee3171 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2da3b07 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd42f1619 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd46b1e69 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xddd303f6 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0339a15 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1053470 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe35370d1 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe80c2b1a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb2e7a26 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdf5ff05 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7215f330 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8d796cdd enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x93ed2441 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd37f2528 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf8cfcf6d vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfb036f76 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc9c3b74b be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xec0f6f8b be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x5d5eca03 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xa620aed8 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x55a9b93e iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x71fe58e0 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11c87910 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13484afc get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x193bdde7 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca5f691 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b6a450 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x281205fc mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33daf986 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4beb381e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e9ae823 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50175db8 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51881304 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51eeaeeb mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53766991 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5743f04f mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x575bd415 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae7ddf2 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f94d3cf mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62711802 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x698afd1e set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72108d4c mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x752e8b1e mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6193dc mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d9f42ec mlx4_get_slave_from_roce_gid -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 0x858b0371 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86dc2c4f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b759dd mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ae1978 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a3aabe2 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa23c3041 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa53d4a77 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6e6a9c5 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9992e8f mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3d1091 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadfdaf66 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb434865f mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3d64d02 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8121d89 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdf6a703 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe4b4fe mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd20a58a4 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb252e58 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0b0afb5 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1cbc15d mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0fa023 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a1c43c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07fc3973 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x097723c3 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0de07d30 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dfd1e8c mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1250bc34 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16c87852 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x193bcfa9 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1af24c88 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3f9f6f mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20dd1e76 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d71370 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x261911ca mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ab7f7a mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x290fddf4 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29711f92 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b702e43 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c07cf5b mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30f30dc7 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c9b609 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38775a86 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39291d3b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e4c067 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f7bca20 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x474e1c4c mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc266a7 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4df063aa mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe0133e mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50483228 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51204eb7 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5401c4bf mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5458c9e9 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x557ba938 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57103f58 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585533ff mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c150e90 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c1a5d8c mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf5ab79 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec7e573 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60c3d265 mlx5_core_query_vendor_id -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 0x62f9e77f mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63f367ac mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x651f342c mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6565f82d mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e0ff39 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e19832a mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71610a37 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71692651 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71cab0e3 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7530ba21 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a3a159 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773b7b09 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78684aa7 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79e5cfe6 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a0c9266 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cdfc676 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e20d1e8 mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f03e2bd mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8968a8dc mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4ed32e mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e64887 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94121d5a mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f9a15d mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984b0b1f mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99589cd5 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a9e1593 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae928d5 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d9a384 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5847e28 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad218728 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadcef446 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae65ac8e mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaebe4a6b mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2cf444a mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb32bf2f1 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8343e3e mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb865dede mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f2821c mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba9beeba mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1e7b567 mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3bc9be9 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7066526 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc77dd2e3 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a61c9c mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb705aa5 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc85777b mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdecfb88 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1707a4e mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1dc296d mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8423a3b mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8522b83 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd938d715 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda56814a mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbeedbfe mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd293939 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf93c0d5 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57edabb mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef60a22f mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08523a2 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf093b06a mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2e5f523 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf691d7b1 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7623652 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7faf42d mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdbf0ce3 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3e8cbd mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa12167 mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x19ce8dcc mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x03108679 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -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 0x1f93326b mlxsw_core_event_listener_unregister -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 0x2bb3fd86 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31ef3a1d mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ce2fe49 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x536d02ef mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x602efa2e mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x731ea8b7 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -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 0x82ce8326 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b02dc9e mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f631f5a mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9630c420 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 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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa5b8e73e mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcc236688 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9452c68 mlxsw_core_driver_register -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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe53fd674 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9a5476b mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa08be4ff mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xfa9225e0 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x48cd8cd2 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xabbf2bda mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0a80bcac ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0ca518b8 ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x19e02348 __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1e4f1007 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1e97b96f ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x439dfbeb ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x93cd3beb ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x957cfafd __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbe3078ba ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xda98590a ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe0a2c707 ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xec8b0fb4 __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf7d69d00 ocelot_regfields_init -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 0x7db84a25 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/mii 0x20a977c1 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x248bdda8 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x2c93c9cf mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x6dc2ab75 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x98a25c58 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x9a3ad892 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x9d6e1b03 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xa4f66743 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xd1b47551 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xd8f66d07 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd602716a bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x14928f41 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x18f12570 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d31c15c register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa244944f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1777e79f register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6527791e detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x77cd6af5 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8ca32bef unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d4aa024 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa68bf96a hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc0ed3917 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd940769c unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe5100f16 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xea06c528 hdlc_start_xmit -EXPORT_SYMBOL drivers/nfc/microread/microread 0x20a182c9 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x22d952c9 microread_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x452b084d pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd19ce371 pn544_hci_probe -EXPORT_SYMBOL drivers/ntb/ntb 0x13df6969 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x15181ecc ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x22e58207 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x25db6303 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x3030d6c5 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x418e92ba ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x55aab0cc ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x80d21b7a ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x989c55b4 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xb07bd66a ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbac288ae ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbd07f444 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xbfb69f31 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xcf0a5a02 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xd6e1115c ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xda0f6b6f ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xdd5a2ece ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe5f32d2d ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xfeed58d4 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xff739a8c ntb_msi_clear_mws -EXPORT_SYMBOL drivers/parport/parport 0x00fa1691 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x02096160 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x02ec64bf parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x168c44a0 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x2356241f parport_write -EXPORT_SYMBOL drivers/parport/parport 0x23e0fd98 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x30408bc7 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x389e5f98 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x49574d2c parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5db2ab6c parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x6ae50b40 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x7ce6c3f2 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x89659734 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x8aaf4b74 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x8d0229d4 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x9289d4e1 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x9564304c parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x990f3d2b parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x9939e683 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x99658333 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xb5091f0d parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xbcd5b371 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xc03905ef parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xc25ecd8b parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd04f48d0 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd69f8dfc __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xd7742ad7 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xe2304908 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xe47a408e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xe60a80a5 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xf4030e5f parport_read -EXPORT_SYMBOL drivers/parport/parport 0xfc4b5146 parport_del_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1054be84 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x754585e9 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x030b9e8d pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0e69facf pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1e05ab54 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x44241033 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x58b5eae8 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x87a902c7 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9500420e pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa6a8c5e0 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbf1005a0 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9b9ee75 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1c63056f pccard_static_ops -EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/wmi 0xbbde67a4 __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0xdf60148b wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01aa5e74 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01b3a7dc rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1b404ca4 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1d638e21 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x40b65b3b rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4ca6d360 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x57282dbb rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x626eb9a5 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x68f02abe rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ef6140a rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x938d826a rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9faf9293 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2391928 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8adcffb rpmsg_create_ept -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xb8c34155 NCR_700_release -EXPORT_SYMBOL drivers/scsi/53c700 0xe83fc8db NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7a8908b3 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb97f202c scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc81d9a55 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe2253656 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a409e1f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdde6d2fa sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfece1957 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3ba0597e 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 0x017b1106 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f48e770 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x39c4bf30 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x58493765 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6acb3c13 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90ce7963 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa9658da3 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xba9c7925 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xca089323 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd2f8affd qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc7b500e qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7111d7a qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x3071cf18 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x5a777fc9 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xc23161b9 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01414f91 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05c45a97 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ea21259 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1444614b sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e595d26 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ed9daaa sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x290d1157 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x301019ba sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30759910 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3243e0a0 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35f1f86b scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3dd5781f sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a5cd256 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5457c1f2 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f8485a2 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ba56ec5 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa57923d4 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2a2973d sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb859b9fc sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbae4b3b sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccf621c2 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd43e76e sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd630a38 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd11d6540 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdfa437d9 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe64f281a sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb816adf sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb8a3267 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8d8bde9 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4cfd3303 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4f325fcc spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa3d8cfb1 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaa36117e spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd796f57c spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1f6daf2a srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x399deaf8 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4be4ff64 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5b9988d9 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xffb06bf4 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c3b8c33 sdw_stream_add_master -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 0x233c5fdd sdw_delete_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4588e206 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x51986e19 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58d7df97 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74c84270 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7e42b04f sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb7d3c693 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe9bf8bf sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc6270ae6 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9f93698 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4436037 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb27aa26 sdw_nread -EXPORT_SYMBOL drivers/ssb/ssb 0x1ca6209a ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x2aa38fe9 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x3054d535 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x3c3cad5b ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x4fac0b51 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x595cc90e ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x5a656b2a __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5a77781e ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5c956c67 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5e1d9733 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x68c9f6d5 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x817d8878 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x9c0c35db ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xbcc8d379 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc252148c ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd5d9287d ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xdb1b632d ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xdd9958aa ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf3b5f95e ssb_clockspeed -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x119c83d9 gasket_disable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x164606e0 gasket_sysfs_put_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x1e5d3310 gasket_mm_unmap_region -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x22c5df48 gasket_unregister_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3cce1599 gasket_enable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x65f9cec0 gasket_pci_add_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x698b4760 gasket_sysfs_get_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x7505fe97 gasket_wait_with_reschedule -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x7ab34fcc gasket_sysfs_get_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8fdbdb9b gasket_sysfs_create_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xaa569b4f gasket_reset -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb33f559c gasket_sysfs_put_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc29900d6 gasket_reset_nolock -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc9b419f6 gasket_sysfs_register_store -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd7988656 gasket_get_ioctl_permissions_cb -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe0ddf3b1 gasket_register_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe3482eb3 gasket_pci_remove_device -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12f8f644 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x137d941b iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c950b41 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22f33fdc iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x251a9c3f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x274b6264 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30bf6045 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403730dc iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40f8799f iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f1bcc8c iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f88f92a iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fe40655 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53ddb558 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d552233 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d65ed72 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x601cb6bc iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d1e686b iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x734ee4de iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7435305f iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7797a3de iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78e8e1b9 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d48bef9 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f2c884e iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bf9b4f6 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c2fe8b0 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa029087e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa04fb50d iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1fa7d66 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa70824a1 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab472734 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafbf14f8 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7228fd4 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7f0f648 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2e7e0c3 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc693e3f4 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5dc6923 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde88465d iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfbe005d iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefacb6cc iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefb52ace iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf20976ed iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5625dea iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf78a5de6 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfac6a934 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x0294bff6 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x0739cbd6 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0914d726 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x13bf0d01 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b17019e target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c1b8d5c spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x2313214e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x247309b6 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x279477a8 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x34ee4293 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ad4b142 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x3da2ffec target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x413a1af9 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x43547a89 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x449676b4 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x46d6bd53 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4702ccd0 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x49b9e4aa transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a707ce3 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c2aad49 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fba6f2e transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ff08fdd core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x5544767a target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ba826bb spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c3ed6b8 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x61dc8397 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x700e00c7 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x7053cd54 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x71fde45f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x756fd540 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x75a50a25 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x77a6a966 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a375932 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x80401c99 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x872d81ae target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x87923af5 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x88fd45bd core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8919664f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x8af95211 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c4a6dff transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x91d38efc sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x93f97d1b transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x989178ed transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x99af9710 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bc3f6f3 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c1c326c core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c4ebc53 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xa26d8d7e transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xa404c240 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xa53b8f64 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf935347 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xbaa114f1 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb44f086 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd9ab060 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xce32237e spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfb37ba1 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2279590 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xda934c2a target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf3453e3 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xdfcaa4b3 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xe251a5dc transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe44d6735 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6aa5468 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7027215 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7f05754 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xea19066c core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb1ce5a5 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0ce8a5b target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5a1d175 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb62c5cf spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc80be09 sbc_dif_verify -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0d610479 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1e43a240 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x36fd661d mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5203a92a mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x72f9f5b1 mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8eabbad3 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8f61f95a mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9863fd01 mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa621f58b mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcc102879 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd74d9720 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd948b4bc mdev_get_drvdata -EXPORT_SYMBOL drivers/vhost/vhost 0x5c8ba0d0 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x685f2ac0 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x154c61f7 cfb_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0x34c84ec8 cfb_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xd9bcd534 cfb_imageblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8640f974 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xa7c4d64b sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xbef54bf3 sys_imageblit -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 0x0a86f962 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x0bc51607 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x0f0fdfda __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x10200527 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x109f565c __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1e9cb8f7 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x247aaae4 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x30effc75 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x3c219a50 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x45c32c51 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x463a5e3b fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x46b43bf3 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x4bb83fc1 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x4d66906c __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x500e5827 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6e2dd788 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7eaa8747 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x811befd5 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x87010037 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x914bddc5 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x94a6f59a __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x96a41d4c __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xa06b58cb fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa4008f9e fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa9bbdf3a fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xaac60310 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb0e507ed __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xb4304c08 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xb85efa98 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xb9e81b5f fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xc719707b __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd0d054cf __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xd49efbc1 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xd8037ae7 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xdb353c43 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xe4685543 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe4f4d96f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xedfb34a8 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf251d0ef __fscache_write_page -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x35d0e47e qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x6de6a8d0 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8beb23ee qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb5430fb1 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb9b9436d qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xe64de62d qtree_write_dquot -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be -EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x449c440c lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xe3f54a4d lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3a8b724e lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x71f644ec lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9252a9e2 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd5163ae7 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd7d18616 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf02b4e78 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x103d56b9 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x5db8b6af register_8022_client -EXPORT_SYMBOL net/802/psnap 0x5e5a90a2 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xc4ac4831 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x000f2aa6 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x0aba713f p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x0de695de p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x12d9b18b p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x1ccb0a9a p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2b84626e p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x2c81e87f p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x2fabaf20 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x309abf71 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x32bcec58 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x3308b552 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x34258b90 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x3b2a91f0 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dc6717e p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3ff2ba40 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x498f4a21 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x4cc2a838 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x524b89dd p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x594dc981 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6714d4b9 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6855eef0 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x697119c4 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x7a7c894f p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7e5148d2 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x83e36883 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x8557a3ac p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x89d7449d p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x8cd6ccad p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9677e29e p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa5239a12 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xa793dfcb p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xada69e82 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xb02d2f98 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xc148ae28 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdd29c53e v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe866321d p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xf206ed6d p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf2faa143 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xf69938e1 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xff4fec8e p9_client_cb -EXPORT_SYMBOL net/appletalk/appletalk 0x33ac61a1 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x8e036ea8 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xadc1c90c alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xd74663a8 atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x16e990f1 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x22dce417 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x5a8d7097 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x71cbd17d atm_charge -EXPORT_SYMBOL net/atm/atm 0x7ddcf6ed atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x8b9646cb atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x8ba08242 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8ce8e3fb atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x98735326 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa2c31f43 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xaf319160 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xea540311 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xf3fe5bd2 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x16eb9e03 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x17198739 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x30e7de81 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4847f6e7 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x995ff651 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xb04b9299 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xddf7f318 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xe204a760 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1757c691 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9e7eed19 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xadb3e8ff ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdf2bf6c8 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2729a505 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x32898511 caif_enroll_dev -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 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb108bbdd caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xb2195570 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xbebf949e get_cfcnfg -EXPORT_SYMBOL net/can/can 0x2fea18c7 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x4116c7eb can_sock_destruct -EXPORT_SYMBOL net/can/can 0x763e6fac can_send -EXPORT_SYMBOL net/can/can 0x7bc4d49d can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9261a49a can_proto_register -EXPORT_SYMBOL net/can/can 0xc26feeaa can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x011abf99 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x013673ee ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x05cfa583 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x09a2d365 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x0df04b50 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0f69fa2d ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x11683fc8 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x17ad49f8 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x17c14b0a osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1a302f59 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x1b78a1f1 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1eae817f ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21f125e9 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x2a8f56fc ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x2a93a6d2 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2d51bbb1 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x2d605843 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x2fb937a4 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x322590aa ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x36494124 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x368e112b osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x371778e1 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x3861d964 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a841861 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3b3f0c8c ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x3bbec823 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x3bec95da ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x41404f36 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x4300dd4e ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46b2b6e9 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x499ecbe8 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4a8f8286 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x4b32ed95 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x4ce2a102 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x508fda6b ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x554a98fd ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5554a474 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59796fb1 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x5aee989e ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5c4e8275 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x5d9ee75d ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x5eab0942 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x638d9e9d ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x6417d15b ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x655d0afa ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x6921b601 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6cf109e2 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x771efd5f ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x77e7a7ba ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x785078ea ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x791e5097 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7a90b331 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7ab7193c ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x80c605a0 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x868256c7 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x89659c43 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x8c2d9c24 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x8d5fe60d ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x8d9d3838 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x8e8a748f osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x907688d0 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x924015a6 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x94595305 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x9a8c0c6e osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e7f7ca7 ceph_osdc_copy_from -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 0xa1d1062b ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad519116 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae02ad5e osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb0ce5ba6 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5e5663c ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb9f0c89c ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xbb220e4f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xbbbb8a40 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xbc5ca2fe ceph_auth_create_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 0xbf2ff0ea osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc8962bac ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xc8d9f611 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xcd687135 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xd062c24c osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd709d57a ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd79aae70 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd891b927 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xdb26c6c8 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xdbfc2ef1 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xdcefec2a osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xdd35f021 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xde61ae16 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe390259e ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xe3c312d4 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xe3dc0be4 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xe54a726e osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xe5c45946 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe9713f23 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0xea43a673 ceph_msg_dump -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 0xf1cce3b2 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xfbe6644d ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xff12288a ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xff7a9f62 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xffb8777e osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x03a27bd2 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd06e05be dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0xcbb10c55 dsa_port_vid_add -EXPORT_SYMBOL net/dsa/dsa_core 0xddc3473f dsa_port_vid_del -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0e6db1f3 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x327df5b8 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x924535f8 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9c372c37 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xac83da01 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbc109cd4 wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x008c5121 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x0a24c9ea __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x094e8f7f gre_parse_header -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4b4becef arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x50889b28 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf05e048b arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf2953550 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x607d5f73 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6f76c431 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x82ead101 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x1d4b7d81 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x99ff32d2 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x22cf00b4 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x25218c61 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x414cfd06 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8e6cbe4d ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa0c8633e ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb07a01de ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd007cc72 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfb0d4dd3 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd79cda2 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x03397220 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xea4cabee ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfa745eaa ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xe66bba4a xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xeaa6f60b xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x230c1b2a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x309b2074 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0xba89ffa6 l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_core 0xe678e37a l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xf77b08a8 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x517e079b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x8b25be09 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x8d19cd65 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xc4dfc8eb lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xd31eed02 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xf9c07427 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xfc7edad1 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xffc42018 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x0b0a5eb2 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x198c4df2 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x364b5601 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3ee5d122 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x42232b41 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x91a53e00 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xe54e819b llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x04560bfd ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0cf27b0e __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x0df5e05f ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x14725938 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x1695893f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x189d04d7 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x19524d02 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1dea6ae6 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x23aa7f5d ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x290c6f35 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x2c968647 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3729b743 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x37fa931d ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3892c407 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x39ece4aa ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x3afa8a17 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x3eade42d ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x415531c0 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x43bb884e ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x45871f2a ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x4a625a9d __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4b7dce41 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x4cf5a565 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x4d3dc77f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4e2bf0e7 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x4e4c016b ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5362e377 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x5796914b ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x57a3a6c5 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x5992ee4a ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5c2bb180 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5c7413ba ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x63419da5 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x652be79f ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x66e6fea9 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x69178e94 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x6af27472 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6e027a3a ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x70049270 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x75ecf973 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x76b0be95 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x7bdbab4f ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x7cf522ef ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x7d4b49ae ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x7d9bdc1d ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x7dc16f52 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x816e6209 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x833fd005 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8480b062 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x8955719b ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x89feca23 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x8d9c5a0c ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x8f676601 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x91e57745 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x94e85dbd ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x95155356 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9b627de6 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x9cfdae3b ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9e83a6df ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xa5ca60e2 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xa9947b52 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xad7ce481 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xae15b72e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb00abf86 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xb0cea3b3 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb1fb8a60 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb290b376 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b07acb __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xbdb68029 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xc0579d65 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc204b88e ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc447ac1f ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xca4a3b10 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xce5262c5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd3dd214a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd52f0aa5 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xd5625f41 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xd68e5662 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xd69fa0a1 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xdc286257 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe854b65c __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe8746443 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xe985427d __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe98c08ea ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe9e7e77c ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xec56f525 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xf0268d45 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf5a274cd ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xf5bef660 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf6190875 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf870bd21 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xfe306dd7 ieee80211_tx_status -EXPORT_SYMBOL net/mac802154/mac802154 0x5734c619 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5ba3f1e9 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x6aa232d4 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x71ea782b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7cda1f21 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x84ee2fc1 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xb1840164 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd83e1483 ieee802154_free_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b8c878c ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1595a758 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2efb798b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x46197458 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x633f33e4 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x86268667 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92ca24cf register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96a066fd ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae782042 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb7a757e0 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8da9456 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbaa77d93 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd578b95c register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb7b5c94 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc3c81b3 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2e4ab54f nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe158af76 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x724c4178 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x7886ad36 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x7cccfa24 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd8b7a124 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xdbe3a6aa nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x019c2beb xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x02ee62d9 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0630573f xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -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 0x50aa4531 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x827e3720 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa1758ac6 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa88291e5 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb2d11f01 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -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 0xe4293a84 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x146b3a14 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x1cd6cf50 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x223b3e94 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x2b2555c3 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x33821b3b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x462c329f nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6b5778aa nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x6bdbb89a nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x719de814 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0xb24391f9 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xb329c6f3 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb49f9540 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb69d5af7 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb6aa4e00 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xd7a9ac77 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xdac710f7 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdec20208 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xe581a2b3 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xe7973a3f nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xf506689f nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfcff99e7 nfc_llc_stop -EXPORT_SYMBOL net/nfc/nci/nci 0x01df5cbe nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x0b513729 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0d723104 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x18dca4fe nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x1bb27217 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x260514ea nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x28ce64cb nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x2de44ecf nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x32169276 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x47bff252 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x54d527b5 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x61499a20 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7dac147d nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x7f8c82df nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x982674f6 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x9831fccb nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x9a2e470a nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xad1bee19 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xaf423506 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xba6d8a3d nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xc56695b4 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcb686680 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xd3a27653 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xdea2d7a6 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xdead733b nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe74c9476 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xe8b0fb7c nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xfb06eae6 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xfd0f55a5 nci_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x051eb28b nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x0b5a7404 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x11d7bff9 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x23530a24 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3936c556 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x3ab4b971 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x416fa96a nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x4c9d93c9 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x5798da09 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x78a11c46 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x796f258d nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x7fa2b756 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x8af27344 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x9295d9b4 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x93d20b99 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x9aafda04 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x9e7aaed1 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xa4ebce04 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xad4d693c nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xbaa8405f nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xc0a09a38 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xc427e1aa nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xcd7a7dc1 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xde2daa2b nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xf85caf58 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc_digital 0x51af843e nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x74790b21 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8126275c nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x97d7dd36 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x0a55320f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x2b130bba phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x2c2e3935 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x4807ce49 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x70152d50 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x787c3e12 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x84e60484 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xdafb75b7 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x13aa40af rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x35d06f32 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x37e5d9e3 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x45d8f356 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x52e6f155 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c048b7b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x61997133 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x67f8f5fb rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x68e67704 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8eaccbde key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9bf9427b rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc6005b4f rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd63a9ea rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd117778e rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe0e3ce43 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xefcbb4ae rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8116386 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/sctp/sctp 0xe9ba4db3 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4a4f4cb4 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x82e048e9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xced98dc2 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa455283f svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb1cbf24f xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfa5aa6a0 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x31910d69 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x604f4c1f tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x997fc7e0 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xeff926bc tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x7e4ce170 tls_get_record -EXPORT_SYMBOL net/tls/tls 0x95501f73 tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xb2bfdb1a tls_register_device -EXPORT_SYMBOL net/wireless/cfg80211 0x01d92e7d ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x0480ece4 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x08072707 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0a17820d cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x0d7c7eee cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0dca583f __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x11d2b897 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x12333009 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x14c6916c __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x173947eb cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1b566ca4 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1f19e955 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x203ca4f4 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x20ac8f38 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x210f3057 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x254a5232 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x25569c5e cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x273a2d55 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x27c46a36 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x2acbae9c cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2c57a902 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x31061c63 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x32105d03 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x39637120 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x3a8eb5de cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x4146604c cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x45e50cca cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x49619f8c wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x4e0665ef cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x54dfa516 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x56960a16 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x573d841c cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x57e670ad cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5eeaf06a cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5ffbf953 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6316ce04 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a8ac35f cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x6bf1baa3 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x6fe4f8ec cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x705efd53 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x73df6b4b cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x796aa448 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x79c3a248 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x7c6f9a72 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x7c9997e7 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7d309cd9 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe35310 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x88d09108 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x8926227e cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9138096a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x948bfaad cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x94fc9d85 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x979410bf cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x9a37bb52 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xa0ffae5b cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa1d7eb82 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xa27de4be cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xafded331 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb39fab23 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xb4911317 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xb9371a9f regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xb9e08a70 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xba6b90bc cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xbbcff5ad cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xbc9d2196 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xbd664789 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xbd6a5cca cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xc1170ec9 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xc2c2913a cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc3b39ecf cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc4175340 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc4343559 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xc55432b6 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xc87c5ba5 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd1c1439e cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xd2aa21a2 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd70fb787 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc7b6fd5 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xdd19a2b6 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xde98f089 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xdfe0873c cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xe0a99de2 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xe0b2a492 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe1c54c25 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xe80fb3d6 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xeb35f7d3 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xec79e206 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xedae2f6c cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xefe39a85 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf2800ff0 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5924b42 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfd12e724 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL ubuntu/hio/hio 0x1a018511 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x2340c007 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x3b820940 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x62c19098 ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0x6c59cde0 ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x923271a4 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x9354f84b ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xb95b90c5 ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0xc49dadbc ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xebb1e496 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0xecfa2007 ssd_unregister_event_notifier -EXPORT_SYMBOL vmlinux 0x0024a4e5 netdev_info -EXPORT_SYMBOL vmlinux 0x0052767f devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x0057496e scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x0080ec47 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x00a023b4 sync_file_create -EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00a846c2 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x00ac5f39 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x00b547ec vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x00c6a621 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x00d76af8 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f7c052 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x00fddb60 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010e4800 cdev_del -EXPORT_SYMBOL vmlinux 0x01249d51 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x0130d3bb param_ops_invbool -EXPORT_SYMBOL vmlinux 0x013dc130 logfc -EXPORT_SYMBOL vmlinux 0x013dc7b5 start_tty -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014b5103 genlmsg_put -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x0166431b blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01814404 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01af27fb sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d359b1 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x01d66433 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x01f1305d param_get_ullong -EXPORT_SYMBOL vmlinux 0x01f84630 dquot_initialize -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x022e4208 seq_printf -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x02555cf5 put_fs_context -EXPORT_SYMBOL vmlinux 0x0256ae0b read_code -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02aae1f8 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x02abbc18 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bc33d6 seq_putc -EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02cfb537 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f326f9 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x02f9a650 generic_write_checks -EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x030a1f62 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x03135020 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x03191df6 udp_prot -EXPORT_SYMBOL vmlinux 0x031c57e8 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034bc7ac _dev_alert -EXPORT_SYMBOL vmlinux 0x035b96ba serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x036039d8 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037a5bfc input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03aeae31 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x03be89f3 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x03cdbacf d_path -EXPORT_SYMBOL vmlinux 0x03ceeb0a __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x03da8ee7 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x03db7068 d_move -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x040cc218 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x041093a4 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x042ff7ad redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x04366f1f irq_set_chip -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045dc656 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04937987 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04cf83f0 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04e75b21 put_disk -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x05000ad1 dentry_open -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0518977d tty_unregister_device -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05203766 pci_find_resource -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053fc218 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0555186c __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x05698fc4 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x05797c2f pci_get_device -EXPORT_SYMBOL vmlinux 0x057e3a1a module_refcount -EXPORT_SYMBOL vmlinux 0x057e7425 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x05a47b0e free_task -EXPORT_SYMBOL vmlinux 0x05a79794 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x05ab99d5 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05c2fb30 ip_tunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x05d08e66 md_integrity_register -EXPORT_SYMBOL vmlinux 0x05d72202 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x0603b994 nobh_writepage -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x0607150a inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06502e80 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x0652f1b6 __skb_pad -EXPORT_SYMBOL vmlinux 0x0660595b scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x06a07982 xattr_full_name -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06afc699 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x06b689ea generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06cecbe7 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x06db7b3f tty_kref_put -EXPORT_SYMBOL vmlinux 0x06de9b20 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x06eca608 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x06ef4f97 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x07291699 dma_pool_create -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073476a2 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x07387f19 __invalidate_device -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074c01c0 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x074ecd7e __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0753b879 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x076ed057 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b4e819 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x07c05bb0 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d6d1c3 tso_count_descs -EXPORT_SYMBOL vmlinux 0x07eac44d dev_mc_flush -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080f6f3f inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x08102b42 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082531b0 set_bh_page -EXPORT_SYMBOL vmlinux 0x08296707 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x082a96ca pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu -EXPORT_SYMBOL vmlinux 0x083207ae d_set_fallthru -EXPORT_SYMBOL vmlinux 0x083debca xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x086842a1 nd_device_register -EXPORT_SYMBOL vmlinux 0x087206f8 phy_start -EXPORT_SYMBOL vmlinux 0x08732ca3 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0891c8cd pv_ops -EXPORT_SYMBOL vmlinux 0x089ca588 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x08b26f1a dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x08b3d119 follow_pfn -EXPORT_SYMBOL vmlinux 0x08e75d4a read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x08ffbe83 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x0922b209 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache -EXPORT_SYMBOL vmlinux 0x0944c43f node_states -EXPORT_SYMBOL vmlinux 0x094991f2 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x094fbeac input_event -EXPORT_SYMBOL vmlinux 0x095452af alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc -EXPORT_SYMBOL vmlinux 0x09682235 down_timeout -EXPORT_SYMBOL vmlinux 0x0973c4fd md_update_sb -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09899a82 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099cb5c6 netdev_update_features -EXPORT_SYMBOL vmlinux 0x09a27729 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x09c13f17 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09caf8e1 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09f818dd file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x09fd1452 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x0a0a21b9 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x0a0a6b20 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a215900 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x0a275e9b scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a532473 config_group_find_item -EXPORT_SYMBOL vmlinux 0x0a5b04e5 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x0a752a65 mount_bdev -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a80dc94 send_sig_info -EXPORT_SYMBOL vmlinux 0x0a857788 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0abd7c19 thaw_super -EXPORT_SYMBOL vmlinux 0x0ac55b37 fb_blank -EXPORT_SYMBOL vmlinux 0x0acb6fed tcp_init_sock -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x0ad464cd eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible -EXPORT_SYMBOL vmlinux 0x0afd5dbe seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 -EXPORT_SYMBOL vmlinux 0x0b095df5 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x0b13fed9 write_cache_pages -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 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b3ac884 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x0b45366b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x0b610a20 netdev_printk -EXPORT_SYMBOL vmlinux 0x0b6f8321 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x0b7173e9 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b81261f forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0b8399a8 fasync_helper -EXPORT_SYMBOL vmlinux 0x0ba9f646 bdget -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c237cf7 install_exec_creds -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c6a6e32 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c706a02 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c9bb72d fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x0ca52dab __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x0cb096dc sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd41019 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0cd4e749 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd8d9f6 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce356ab nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x0ce95b48 vfs_setpos -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0a90a4 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6c3de5 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x0d864695 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x0da53510 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x0dae616a __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x0dbab370 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x0dc2b7a3 fc_vport_terminate -EXPORT_SYMBOL vmlinux 0x0dd6a546 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x0deb9db0 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x0df544c6 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x0e09454c phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x0e11c207 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e19af3c device_get_mac_address -EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e3ff1b0 get_fs_type -EXPORT_SYMBOL vmlinux 0x0e5b9672 keyring_alloc -EXPORT_SYMBOL vmlinux 0x0e6e6884 tty_hangup -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e827146 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x0e95544e pnp_is_active -EXPORT_SYMBOL vmlinux 0x0e9e8081 d_alloc -EXPORT_SYMBOL vmlinux 0x0eb3b572 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x0ebd13d5 dev_deactivate -EXPORT_SYMBOL vmlinux 0x0ec48082 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecfe5c8 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x0eedece5 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f24082d get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f7ee533 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f87c82f dma_set_mask -EXPORT_SYMBOL vmlinux 0x0f8ecb18 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb280cd sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc0a555 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x0fca2a21 textsearch_register -EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x0fd8c496 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe3c590 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x0ff0009b bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x1031154f thaw_bdev -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103c8baa config_group_init -EXPORT_SYMBOL vmlinux 0x104158d4 skb_copy_header -EXPORT_SYMBOL vmlinux 0x1054f64c inet_frag_kill -EXPORT_SYMBOL vmlinux 0x105a281e mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x105f67c1 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x10753d2b sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10830d07 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1098ddcb fc_eh_timed_out -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dcefd0 mpage_writepage -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110a2bf1 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x11160dae tcp_peek_len -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11842c20 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x118632d1 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x1187f2bd pci_pme_capable -EXPORT_SYMBOL vmlinux 0x11d4dce3 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x11d61b52 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x11d6a165 tcf_block_get -EXPORT_SYMBOL vmlinux 0x11dbe37f param_ops_string -EXPORT_SYMBOL vmlinux 0x11dca451 generic_update_time -EXPORT_SYMBOL vmlinux 0x11def473 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fcabee compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x11fef593 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x122f5d4a unix_get_socket -EXPORT_SYMBOL vmlinux 0x123cfb60 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x124f4a7a __alloc_skb -EXPORT_SYMBOL vmlinux 0x12736f68 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x12910fe0 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a5758a genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x12a8800a tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x12bd40af d_obtain_root -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e7f2e8 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13015fa1 netif_skb_features -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 0x13392691 netdev_alert -EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs -EXPORT_SYMBOL vmlinux 0x1364e398 bio_chain -EXPORT_SYMBOL vmlinux 0x136f8af7 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x138cd69e pnp_possible_config -EXPORT_SYMBOL vmlinux 0x139ad3b8 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b6520b ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e154c2 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x13e4e0f0 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x13ecaf32 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x14050e2b drop_nlink -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141427f7 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x1414eb7e blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x141b4697 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x14274bcd compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x144ee796 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1464256b buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x146ed47d tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x147c4572 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x1481bfce kset_register -EXPORT_SYMBOL vmlinux 0x14831bf0 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x1489a507 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x14b7b40a sock_wmalloc -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14d3cbe2 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x14e62d84 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x14eb213e forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x14fae231 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x150ac202 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x1519abef mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x151e2f13 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155ceb94 soft_cursor -EXPORT_SYMBOL vmlinux 0x15adacde tcp_shutdown -EXPORT_SYMBOL vmlinux 0x15b0eb83 tcp_check_req -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15c92d8d sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x15d0a20e dev_close -EXPORT_SYMBOL vmlinux 0x15dd14e8 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x15f08a9a phy_validate_pause -EXPORT_SYMBOL vmlinux 0x160e3378 noop_qdisc -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x161ddab1 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1623c2f7 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1647a1b2 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x1651d59e uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x165b145c ex_handler_refcount -EXPORT_SYMBOL vmlinux 0x16645ffd pci_find_bus -EXPORT_SYMBOL vmlinux 0x166d5c95 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x1673edbe configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x169679ec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a72c24 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x16ac0955 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x16b46b7c hmm_range_unregister -EXPORT_SYMBOL vmlinux 0x16bbb775 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d26d6f nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x16da4729 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16fc307e is_bad_inode -EXPORT_SYMBOL vmlinux 0x17044703 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x170f9c44 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x172bce84 dquot_release -EXPORT_SYMBOL vmlinux 0x173317dc blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x1735fb0a tty_set_operations -EXPORT_SYMBOL vmlinux 0x17445e65 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x1751bb00 seq_write -EXPORT_SYMBOL vmlinux 0x1752a1e5 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x1773aace md_write_start -EXPORT_SYMBOL vmlinux 0x17771c62 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x178e4a60 complete_request_key -EXPORT_SYMBOL vmlinux 0x1795b51f generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x17ace970 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x17b05ebe __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17cd2d86 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x17d5e6fb md_done_sync -EXPORT_SYMBOL vmlinux 0x17df4b24 fc_release_transport -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1828532a ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x1837a06e jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x1839f4aa input_match_device_id -EXPORT_SYMBOL vmlinux 0x1856f7a2 udp_set_csum -EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0x18855964 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18935e81 param_get_uint -EXPORT_SYMBOL vmlinux 0x18aa3ed8 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x18b291be dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18ce85d0 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f299eb seq_lseek -EXPORT_SYMBOL vmlinux 0x190688df is_nd_dax -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x193d390f kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a3d6ba dst_release -EXPORT_SYMBOL vmlinux 0x19b06d37 pcim_iomap -EXPORT_SYMBOL vmlinux 0x19b80482 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c50730 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19f0502b security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x19f36fc3 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x19fa3d6c tty_devnum -EXPORT_SYMBOL vmlinux 0x19fbaaa6 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x1a03e77b _dev_emerg -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4f7b93 pci_disable_device -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a6c16c4 vme_slot_num -EXPORT_SYMBOL vmlinux 0x1a725225 tty_port_close -EXPORT_SYMBOL vmlinux 0x1a737a52 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a81967c dm_unregister_target -EXPORT_SYMBOL vmlinux 0x1a880a3d pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x1a8b0104 vga_con -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9aece4 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x1a9f8901 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad9bab8 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x1adef583 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0f9713 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x1b1c20ee md_error -EXPORT_SYMBOL vmlinux 0x1b2034a1 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x1b4e634a ps2_init -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b740cf3 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7f4dd3 udp_seq_next -EXPORT_SYMBOL vmlinux 0x1b859741 skb_append -EXPORT_SYMBOL vmlinux 0x1b878458 hmm_mirror_register -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba2b73b setup_new_exec -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb0ad99 xfrm_input -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bc13f6c __brelse -EXPORT_SYMBOL vmlinux 0x1bc9456c __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x1bd05113 unregister_netdev -EXPORT_SYMBOL vmlinux 0x1bd351e2 __pagevec_release -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bded54d I_BDEV -EXPORT_SYMBOL vmlinux 0x1c008de3 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x1c14c931 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x1c1b36e0 config_item_get -EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x1c1f64ff devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c3adf5b compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x1c3dc477 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c664943 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x1c768a5c input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x1c7df27d filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x1c90f938 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cc0a2d5 __destroy_inode -EXPORT_SYMBOL vmlinux 0x1cc0e935 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x1cdc370f generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x1cec96de qdisc_reset -EXPORT_SYMBOL vmlinux 0x1cf80586 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0d630e xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1d1357a8 __icmp_send -EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2af27d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d40aa1b mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4d961c xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1d5a3661 get_amd_iommu -EXPORT_SYMBOL vmlinux 0x1d6274c9 param_ops_charp -EXPORT_SYMBOL vmlinux 0x1d99f05a fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x1db718f7 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc0ba68 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x1dc743f9 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0x1dd4fdef tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddd36bb ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2a220c should_remove_suid -EXPORT_SYMBOL vmlinux 0x1e4236a0 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x1e443d7b pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x1e49280a dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1e49f4cf d_drop -EXPORT_SYMBOL vmlinux 0x1e4ac539 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x1e5233e8 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6e40ac dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1e73b5ba fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x1e82c47e __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x1e838a36 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x1e99b29f tty_write_room -EXPORT_SYMBOL vmlinux 0x1e9b7cb7 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea6f86c dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ec4264d dquot_disable -EXPORT_SYMBOL vmlinux 0x1ed61a4d init_pseudo -EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee1c3cb sock_release -EXPORT_SYMBOL vmlinux 0x1ee7fd9e security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1efc7eeb jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x1efd3ab6 pci_free_irq -EXPORT_SYMBOL vmlinux 0x1f0e64c7 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x1f113b10 __bforget -EXPORT_SYMBOL vmlinux 0x1f3096c5 pci_get_slot -EXPORT_SYMBOL vmlinux 0x1f37d294 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x1f8666ac set_nlink -EXPORT_SYMBOL vmlinux 0x1f89e05b tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fca21db bio_init -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd174be ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x1fdd202c __page_pool_put_page -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fea594a revalidate_disk -EXPORT_SYMBOL vmlinux 0x1ff3d1bb ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x1ffeae6c sock_no_mmap -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20039ea8 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x200b1385 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20180091 put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x201d86f4 tty_do_resize -EXPORT_SYMBOL vmlinux 0x20352939 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x20520317 bd_set_size -EXPORT_SYMBOL vmlinux 0x2058034f __put_cred -EXPORT_SYMBOL vmlinux 0x20632dff filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20807610 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x20a3b231 dcb_setapp -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a8226a vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x20ba2043 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20c2e4ad inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e37f4c tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ed0839 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x20f62077 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x20f7fffd bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x211050e7 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x2111605e __d_lookup_done -EXPORT_SYMBOL vmlinux 0x21168a26 do_splice_direct -EXPORT_SYMBOL vmlinux 0x21211bec jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x212e2a41 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x21309322 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x216c5398 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x217225f8 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x217c30d1 __d_drop -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219c82c0 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x219d694e security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x21b142ef neigh_carrier_down -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 0x21eb4e26 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x21ec407f zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x220df6eb noop_llseek -EXPORT_SYMBOL vmlinux 0x221b9855 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x2229b225 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22307fda udp_pre_connect -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223535da tso_build_data -EXPORT_SYMBOL vmlinux 0x22447ff4 seq_open -EXPORT_SYMBOL vmlinux 0x224985ba blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x225da426 tcf_register_action -EXPORT_SYMBOL vmlinux 0x2274703b truncate_setsize -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227b1718 tboot -EXPORT_SYMBOL vmlinux 0x229bbbba deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22d391d4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22e702b5 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x22fa863a devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x22facaa4 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x22ff6c0d generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x22ffa2bc delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x22ffbf3b jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x2304c31c __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x231bd1b8 register_netdev -EXPORT_SYMBOL vmlinux 0x2321f31a configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x233ae38e blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x234f140d rtnl_create_link -EXPORT_SYMBOL vmlinux 0x2353f45a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x23591867 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x235d86a0 serio_rescan -EXPORT_SYMBOL vmlinux 0x2364da19 key_validate -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238d920d xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x2391579a pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x23b36ecb ip6_xmit -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23ba33da ip_check_defrag -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23d310ed sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x23d3cefd ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f9272e genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x23fb4081 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240f3f47 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242c4473 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x2434a9fd udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24479dd3 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2488603a ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x24acbc78 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x24bc52fb scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d43619 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x24d56571 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x24fdee87 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x251236c0 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x251626cc unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x2521eac0 fc_host_post_fc_event -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x255bff41 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257f4a27 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25a583e7 generic_fillattr -EXPORT_SYMBOL vmlinux 0x25a673c1 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x25a9674a bio_copy_data -EXPORT_SYMBOL vmlinux 0x25bda695 unregister_console -EXPORT_SYMBOL vmlinux 0x25bdcad8 mpage_writepages -EXPORT_SYMBOL vmlinux 0x25d53dfd blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25e6ae32 pid_task -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x26098e81 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260d7cda xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2633d891 md_check_recovery -EXPORT_SYMBOL vmlinux 0x26375b7a path_nosuid -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 -EXPORT_SYMBOL vmlinux 0x26487133 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x264ad3ab __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x264fbab4 ip_frag_next -EXPORT_SYMBOL vmlinux 0x266087ea __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26abfc60 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x26b00dff __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x26ceff95 genl_register_family -EXPORT_SYMBOL vmlinux 0x26cffc3c jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x26d1d84e bio_devname -EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states -EXPORT_SYMBOL vmlinux 0x26d7a3e1 input_grab_device -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26ef7c1d netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x26f8952d open_with_fake_path -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x27224c34 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x27266a8a d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273a3d42 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d14f1 PageMovable -EXPORT_SYMBOL vmlinux 0x27586932 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -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 0x27aff9d4 submit_bh -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c15cfa kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x27c3699b compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x27c86398 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27f3b3a6 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x27f73472 __neigh_create -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28186d1a vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x2826002d mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x284a7199 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x285a0149 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x28611a6b flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x28636ade dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x28747923 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287bc828 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x28941906 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x28b1e4cc neigh_xmit -EXPORT_SYMBOL vmlinux 0x28b5d250 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28f4958f vme_register_driver -EXPORT_SYMBOL vmlinux 0x2904dade dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x29071425 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x290dce4f key_type_keyring -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x291dbee9 page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0x291f9f19 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x29361773 complete -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert -EXPORT_SYMBOL vmlinux 0x29754170 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x298245c8 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x2988607b to_nd_dax -EXPORT_SYMBOL vmlinux 0x298c5711 scmd_printk -EXPORT_SYMBOL vmlinux 0x29a08ab4 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x29ab8f9f md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29d1474a xfrm_register_type -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e90a18 filemap_flush -EXPORT_SYMBOL vmlinux 0x2a045b88 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2a1c52ed __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2a2e779f blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a31162b rtc_add_group -EXPORT_SYMBOL vmlinux 0x2a6cce1f config_item_set_name -EXPORT_SYMBOL vmlinux 0x2a7f77ab ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2ab2effe tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock -EXPORT_SYMBOL vmlinux 0x2af8571f d_find_alias -EXPORT_SYMBOL vmlinux 0x2b0d1a03 init_task -EXPORT_SYMBOL vmlinux 0x2b0e2eec dqget -EXPORT_SYMBOL vmlinux 0x2b16f43c migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2b1c2ebb pci_dev_get -EXPORT_SYMBOL vmlinux 0x2b26eba6 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x2b336beb fb_pan_display -EXPORT_SYMBOL vmlinux 0x2b588e3b hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b69a3d9 dev_driver_string -EXPORT_SYMBOL vmlinux 0x2b71cae8 tty_throttle -EXPORT_SYMBOL vmlinux 0x2b77d0b2 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x2b96de76 kern_unmount -EXPORT_SYMBOL vmlinux 0x2b9a282c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2c04c9a7 ata_print_version -EXPORT_SYMBOL vmlinux 0x2c0c6243 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x2c15bca3 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x2c1fa9e7 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2817b5 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2c2f5ef7 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x2c483c27 csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c5db7cd ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8bd427 pipe_lock -EXPORT_SYMBOL vmlinux 0x2c9d35dc genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cb81074 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd53d1e inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x2cd88a7c pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x2cdbd11a vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cdfbdd7 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2cf9c243 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d366e5f __scm_send -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3c5166 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x2d4383da shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d559228 __register_nls -EXPORT_SYMBOL vmlinux 0x2d5f7fe8 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x2d637359 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x2d6839ac audit_log_start -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2db50654 generic_listxattr -EXPORT_SYMBOL vmlinux 0x2dc117e2 vm_mmap -EXPORT_SYMBOL vmlinux 0x2dc8410c devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2dc854d0 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df26e5a vfs_readlink -EXPORT_SYMBOL vmlinux 0x2e02a5ab dev_disable_lro -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e192def phy_device_create -EXPORT_SYMBOL vmlinux 0x2e199e1f to_ndd -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2437ed padata_start -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e4ea6d6 pci_pme_active -EXPORT_SYMBOL vmlinux 0x2e79bcad __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x2e8631fd dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x2e917bab dev_set_alias -EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed008fc kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x2ed65361 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x2eda3ff7 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin -EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eea317e gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x2eeedd61 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f113ef1 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x2f1cb4fb skb_vlan_push -EXPORT_SYMBOL vmlinux 0x2f2368f9 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f2f726f kill_anon_super -EXPORT_SYMBOL vmlinux 0x2f3111cb end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f5a4efa agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fa61e38 input_set_keycode -EXPORT_SYMBOL vmlinux 0x2fa908ec dma_virt_ops -EXPORT_SYMBOL vmlinux 0x2faa1432 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x2fae4903 inet_accept -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x3016bab6 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x302007a7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x3031df70 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x30563b8f put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x305d2e32 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x308d86a0 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a430d4 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30d2ff9a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x30de3de8 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f8377f rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3100f420 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31033e9c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31387197 d_alloc_name -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x315f8f97 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3168a33a fqdir_exit -EXPORT_SYMBOL vmlinux 0x316b43ef timestamp_truncate -EXPORT_SYMBOL vmlinux 0x316b9f1b pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x317c0555 vga_client_register -EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked -EXPORT_SYMBOL vmlinux 0x319bfe9a qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a8ff53 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31ce73ea pci_scan_slot -EXPORT_SYMBOL vmlinux 0x31fcc521 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x3211419a dev_uc_del -EXPORT_SYMBOL vmlinux 0x32263fcd agp_backend_release -EXPORT_SYMBOL vmlinux 0x323c0567 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x323e4dc1 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x3241a701 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x32508d5a tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3265d1ed napi_complete_done -EXPORT_SYMBOL vmlinux 0x326a37b8 __register_binfmt -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328e95be blkdev_put -EXPORT_SYMBOL vmlinux 0x32a59edc vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x32c1d6ac netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x32c39ba4 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d205b1 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x32e048cf locks_remove_posix -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x33145f7b sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x332bc79f __module_get -EXPORT_SYMBOL vmlinux 0x334d1477 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x334e205d inet_frag_find -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33ecb617 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33fd045b xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x342dff9d keyring_search -EXPORT_SYMBOL vmlinux 0x343bccb7 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x343f0a73 dst_dev_put -EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x344af83e phy_detach -EXPORT_SYMBOL vmlinux 0x344e9ea0 has_capability -EXPORT_SYMBOL vmlinux 0x344fceb9 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x3472b3e4 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x3477b46a agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x3477e26a kfree_skb -EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x349801dc pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x3498b7b0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349ffdfb pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a7c2de handle_edge_irq -EXPORT_SYMBOL vmlinux 0x34dad1ce con_is_visible -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35014e66 mount_subtree -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3542d046 sg_miter_start -EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x354ac058 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x35539ab5 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x35602cf7 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3565f622 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x358d1cbd ip_do_fragment -EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x35a2e7f0 amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x35a453ac dev_change_flags -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35cb08be skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x35d039fb cdrom_open -EXPORT_SYMBOL vmlinux 0x35d77800 prepare_binprm -EXPORT_SYMBOL vmlinux 0x35dd226d find_get_entry -EXPORT_SYMBOL vmlinux 0x35dea5b3 setattr_copy -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360d6500 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366819a5 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x367a6eb6 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x369a12d5 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x36a48f4f input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x36a61099 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x36c10610 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x36d111c7 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x37043a02 kill_block_super -EXPORT_SYMBOL vmlinux 0x370c7f8d blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37152f9c ip_defrag -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL vmlinux 0x376ea827 check_disk_change -EXPORT_SYMBOL vmlinux 0x3773ae65 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37bb3f48 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d2d2f6 udp_ioctl -EXPORT_SYMBOL vmlinux 0x37d3807e sk_capable -EXPORT_SYMBOL vmlinux 0x37d86664 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37deec98 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x37f6dcf9 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x38034340 __phy_resume -EXPORT_SYMBOL vmlinux 0x380c10b6 serio_reconnect -EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3857f688 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x3865028c bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x388c91ec jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x388f970f freeze_bdev -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 0x38b314fa __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x38b6ba32 blk_queue_split -EXPORT_SYMBOL vmlinux 0x38bec602 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x38cc546c blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x38d374ac tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e5f0b7 pci_release_regions -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x390537aa phy_write_paged -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x3922b5d7 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x39239862 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x3923b4a4 kthread_bind -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393c2760 _dev_warn -EXPORT_SYMBOL vmlinux 0x393d9bcb gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x3945bdc0 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3948bc83 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x39527275 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x3955bf3f ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3981c739 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x39831a0d xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c36159 blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0x39caae09 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x39cb1152 tty_vhangup -EXPORT_SYMBOL vmlinux 0x39cc06ef __sb_end_write -EXPORT_SYMBOL vmlinux 0x39d6f4ee arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39edc5be generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x39ff9fb6 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a0d954c cdev_init -EXPORT_SYMBOL vmlinux 0x3a0ea1a2 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a178792 sock_no_getname -EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a51ee30 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x3a576ced wireless_send_event -EXPORT_SYMBOL vmlinux 0x3a65a9f6 ip_options_compile -EXPORT_SYMBOL vmlinux 0x3a71fe11 simple_fill_super -EXPORT_SYMBOL vmlinux 0x3a91cb0a init_net -EXPORT_SYMBOL vmlinux 0x3a964cbd get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x3aacb4fe inet_stream_ops -EXPORT_SYMBOL vmlinux 0x3aace814 inet6_release -EXPORT_SYMBOL vmlinux 0x3ab2657f xfrm_state_free -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abb3ed6 component_match_add_release -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 0x3ae8ddf9 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b0de5d5 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b373190 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0x3b3ebf99 scsi_print_command -EXPORT_SYMBOL vmlinux 0x3b4e0d94 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b799b18 pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x3b7d10c2 kernel_listen -EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds -EXPORT_SYMBOL vmlinux 0x3b830a30 __sock_create -EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3badd5a5 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x3bbcc50e pci_irq_get_node -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c035d05 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1aced4 pps_event -EXPORT_SYMBOL vmlinux 0x3c1e43d7 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x3c32e716 __inet_hash -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0x3c637322 new_inode -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3ca113d6 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x3cc1acb1 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d1b9da7 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x3d1eaf33 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2cbb9d netif_napi_add -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x3d654448 param_get_long -EXPORT_SYMBOL vmlinux 0x3d7a667a agp_copy_info -EXPORT_SYMBOL vmlinux 0x3d953c2a compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x3d970ed0 seq_release -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3dade183 dev_get_flags -EXPORT_SYMBOL vmlinux 0x3db9c357 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3df0702d fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e01714f tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x3e0ec646 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x3e1aaec0 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e2bca38 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x3e45cd8c flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x3e5ef39e phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x3e6ea6e5 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x3e82c8ae xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e921dc5 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x3ea1eb5f refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x3ec39f92 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x3ed06da3 mpage_readpage -EXPORT_SYMBOL vmlinux 0x3ed9ffd1 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x3ee437c4 default_llseek -EXPORT_SYMBOL vmlinux 0x3ee43b63 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3ef504a8 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x3efd3d59 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f03575b pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f229acf d_alloc_anon -EXPORT_SYMBOL vmlinux 0x3f2ab53e __udp_disconnect -EXPORT_SYMBOL vmlinux 0x3f38ab15 inet_put_port -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f5c7788 param_set_copystring -EXPORT_SYMBOL vmlinux 0x3f5da371 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x3f6deda1 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9e3508 tso_start -EXPORT_SYMBOL vmlinux 0x3faf1638 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x3fb4abee compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe5d7df __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x3ffc34e2 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x4010c223 skb_clone -EXPORT_SYMBOL vmlinux 0x4026cf9d sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x40277acd blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x4033810c inet_select_addr -EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x405b570a pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x40657638 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x406828a6 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x4089271c migrate_page -EXPORT_SYMBOL vmlinux 0x408ddf5b generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock -EXPORT_SYMBOL vmlinux 0x40a82170 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aa3c73 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x40bfb23c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c89fc1 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d546bc nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e5ee96 get_vm_area -EXPORT_SYMBOL vmlinux 0x40f99182 netdev_notice -EXPORT_SYMBOL vmlinux 0x40fefeb6 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x4115d0b6 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x41320c9a set_cached_acl -EXPORT_SYMBOL vmlinux 0x414329d4 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4158480b dmam_pool_create -EXPORT_SYMBOL vmlinux 0x41667ae8 inode_init_owner -EXPORT_SYMBOL vmlinux 0x417abbe9 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x417ba6b9 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x41824c0a xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a1ede genphy_read_status -EXPORT_SYMBOL vmlinux 0x4198ca95 __do_once_done -EXPORT_SYMBOL vmlinux 0x41b36948 bio_add_page -EXPORT_SYMBOL vmlinux 0x41cdfd2a cdev_device_del -EXPORT_SYMBOL vmlinux 0x41dea29a inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f1604d module_put -EXPORT_SYMBOL vmlinux 0x41fe91db call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x420e7a3c pci_read_config_word -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d372c sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4238b937 sock_from_file -EXPORT_SYMBOL vmlinux 0x42397706 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425e4520 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x42619c8e no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x426a9005 set_anon_super -EXPORT_SYMBOL vmlinux 0x428c7ce7 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x42a81a58 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42cdcb49 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x42cee39b dput -EXPORT_SYMBOL vmlinux 0x42e47f3b param_set_uint -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431c82b6 noop_fsync -EXPORT_SYMBOL vmlinux 0x431e5011 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x432ebe7c seq_escape -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 0x4356550b netdev_features_change -EXPORT_SYMBOL vmlinux 0x43637368 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x43704df4 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438035be netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a09c86 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x43a96cd9 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x43b8ef22 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x43e682f2 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x441cbcff ihold -EXPORT_SYMBOL vmlinux 0x443d2e5e inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4454ee91 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data -EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x44934f26 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a505df __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44c62ce7 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x44c7b919 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x44d1f474 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x44d2f044 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x44d6f842 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x44e503d0 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed76f4 wake_up_process -EXPORT_SYMBOL vmlinux 0x44fde231 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x45124b5b dma_supported -EXPORT_SYMBOL vmlinux 0x451a66ff __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4575819c fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45ba4ee3 __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0x45cf672f nd_integrity_init -EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e69e01 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x45e7f382 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x46026c90 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x4607c1ef dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461c1fa3 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x462f9162 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467ac130 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a17268 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x46a9ea45 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x46b1aeb4 zap_page_range -EXPORT_SYMBOL vmlinux 0x46be28cc genl_notify -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d80f54 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x46f3d5ed xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x47217b12 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477a68f7 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x478a4d89 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x478f1fa7 fb_get_mode -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479c6838 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47d227c7 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x47d2aef4 dst_discard_out -EXPORT_SYMBOL vmlinux 0x47dc7b00 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x47e44daa tcp_prot -EXPORT_SYMBOL vmlinux 0x480c0c37 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4854aaa2 fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485d2da9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x485dd33a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486a61c4 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x48789f82 phy_attached_print -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 0x48c3af69 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x48c686ed __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48eb5d49 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x48f655f7 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x48fbe96e xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490e4909 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x491fa7e3 amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x492e5d96 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x4934b443 get_task_cred -EXPORT_SYMBOL vmlinux 0x4938333e dquot_commit_info -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x494c7a98 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x494d2d25 skb_push -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x496cf120 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x4975907b md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a7424f file_modified -EXPORT_SYMBOL vmlinux 0x49a83c99 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x49ccd4ce netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0x49efb4ae simple_transaction_read -EXPORT_SYMBOL vmlinux 0x49f161c7 pci_get_class -EXPORT_SYMBOL vmlinux 0x4a028cb5 scsi_add_device -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a592343 param_get_int -EXPORT_SYMBOL vmlinux 0x4a59d190 dst_destroy -EXPORT_SYMBOL vmlinux 0x4a648db4 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x4a76ff4f sget -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aac188c tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4afcbb7f nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b132edf hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x4b22934d crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x4b3cffec arp_create -EXPORT_SYMBOL vmlinux 0x4b4d0ee4 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x4b5da324 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b8ebacb import_single_range -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bb17875 sock_no_listen -EXPORT_SYMBOL vmlinux 0x4bb50974 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4bbfd05c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x4bbfee84 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x4bc704ec nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcf09c6 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x4bd569e6 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x4bdf44c9 xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf5b076 mdio_device_free -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c31c630 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c5da704 brioctl_set -EXPORT_SYMBOL vmlinux 0x4c812a0f iget_locked -EXPORT_SYMBOL vmlinux 0x4c973133 release_pages -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca3fdf4 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cba9273 sock_edemux -EXPORT_SYMBOL vmlinux 0x4cbb5596 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x4cc39909 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x4cc9476e try_to_release_page -EXPORT_SYMBOL vmlinux 0x4cd202ea dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x4cd4ec89 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4ce1ff04 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x4ce8e1a2 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x4cf824a6 may_umount -EXPORT_SYMBOL vmlinux 0x4cfdc584 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x4d07aaf8 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4d0f4d42 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x4d10ff83 __skb_checksum -EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4d210117 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x4d21657f xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d46d200 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x4d60a56f input_register_handler -EXPORT_SYMBOL vmlinux 0x4d61906d xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4d6f308a mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d75e6c8 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x4d7dd26a ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da6799f dst_release_immediate -EXPORT_SYMBOL vmlinux 0x4db25ed9 devm_clk_get -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dcdcbc6 vm_map_ram -EXPORT_SYMBOL vmlinux 0x4dd45225 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4deea554 pci_enable_device -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df9cd9c inode_init_once -EXPORT_SYMBOL vmlinux 0x4e067bde phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x4e1c1c4b mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e34fa86 get_gendisk -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e42e4e3 setattr_prepare -EXPORT_SYMBOL vmlinux 0x4e48d9ad tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x4e4aeb86 __kernel_write -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e5c5e8b tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x4e63f7cd nf_log_unset -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e9e0c71 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea6c974 vmap -EXPORT_SYMBOL vmlinux 0x4ebad624 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee589b3 skb_store_bits -EXPORT_SYMBOL vmlinux 0x4f1158f8 __break_lease -EXPORT_SYMBOL vmlinux 0x4f1a0ea0 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f385745 from_kuid -EXPORT_SYMBOL vmlinux 0x4f3a89e1 input_get_keycode -EXPORT_SYMBOL vmlinux 0x4f46252b blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f64cc1d configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x4f662923 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x4f7d7001 dev_uc_init -EXPORT_SYMBOL vmlinux 0x4f9ea53e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x4f9ef219 input_flush_device -EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess -EXPORT_SYMBOL vmlinux 0x4fd581f4 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe7e05f dma_resv_init -EXPORT_SYMBOL vmlinux 0x4fe9d265 __devm_release_region -EXPORT_SYMBOL vmlinux 0x4fef53cd pci_write_vpd -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501115d6 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x50212bed locks_init_lock -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5029e760 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x502a06d6 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x502b0ba1 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x5032466d gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x50416636 registered_fb -EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister -EXPORT_SYMBOL vmlinux 0x504c605e unlock_rename -EXPORT_SYMBOL vmlinux 0x5057c48f framebuffer_release -EXPORT_SYMBOL vmlinux 0x505b5ed3 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x50686526 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507bfd99 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x5089cd45 single_open_size -EXPORT_SYMBOL vmlinux 0x508f5634 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c70af4 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50dc1428 make_kprojid -EXPORT_SYMBOL vmlinux 0x50e8fc41 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50ffe2ce phy_find_first -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51167cf9 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x51196e38 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x51235fda kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515441f9 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x51822a71 fd_install -EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done -EXPORT_SYMBOL vmlinux 0x51cd5f28 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x52012de5 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x52061dbb dev_addr_flush -EXPORT_SYMBOL vmlinux 0x520928a0 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x5209a510 simple_release_fs -EXPORT_SYMBOL vmlinux 0x524cbbed agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x5256d96d d_splice_alias -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52706463 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x52707e01 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x527e0a4a skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x52866d1d dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x529262bd backlight_device_register -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c08894 eth_header_cache -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52db914c netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x52e09bf8 scsi_is_fc_rport -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x53024878 release_firmware -EXPORT_SYMBOL vmlinux 0x530a9a2d ip_frag_init -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53172f5d devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x5328bbec scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x53345d25 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535d4012 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x5369bc24 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x53844738 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x539d1304 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x53a14030 import_iovec -EXPORT_SYMBOL vmlinux 0x53a97adc adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x53b27e8e console_start -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c665cf nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x53e470a4 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x53e56d5c write_one_page -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53febd69 pci_iounmap -EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542d1a67 __f_setown -EXPORT_SYMBOL vmlinux 0x543ea8bd ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544a582c phy_attached_info -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x546030a5 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x5467bd15 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x5471d1ad nf_log_unregister -EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x54873c50 vm_map_pages -EXPORT_SYMBOL vmlinux 0x5494eb47 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c0795c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x54d06c43 vlan_for_each -EXPORT_SYMBOL vmlinux 0x54dec18e dev_open -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea75f0 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x54fb057d sock_gettstamp -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache -EXPORT_SYMBOL vmlinux 0x5565552d tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x5567eb41 inet_gro_complete -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x55847e1d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559ad8c3 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x55c1ca7f xfrm_lookup -EXPORT_SYMBOL vmlinux 0x55c5867e blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x55d1d82c elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x55d1e0cf phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e4cf63 neigh_destroy -EXPORT_SYMBOL vmlinux 0x55e6ee73 mount_nodev -EXPORT_SYMBOL vmlinux 0x55ea5f71 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x55f01ee7 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x55f7883d kill_litter_super -EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x56005b9c sock_init_data -EXPORT_SYMBOL vmlinux 0x560b5d0c pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x5614cff2 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x56187eca __bread_gfp -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56375c42 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x56388e13 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x563ab68c devm_of_iomap -EXPORT_SYMBOL vmlinux 0x563c1dd8 scsi_device_get -EXPORT_SYMBOL vmlinux 0x563e6dff sort_r -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca6b53 sock_no_accept -EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x56f9a76e dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x56fbf7e0 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x570ac8ee freeze_super -EXPORT_SYMBOL vmlinux 0x5729e6b4 blk_put_request -EXPORT_SYMBOL vmlinux 0x57451ff0 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574c5842 udp_sock_create4 -EXPORT_SYMBOL vmlinux 0x5755089d seq_open_private -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x576fbc5b disk_stack_limits -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x5799f1fe configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x57a1295e blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x57a7f759 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x57bb21c9 devm_iounmap -EXPORT_SYMBOL vmlinux 0x57bb95cc fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57bf142a vfs_fsync -EXPORT_SYMBOL vmlinux 0x57c32ee5 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x57c5fb5e seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x57c6b682 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x57ca60e6 input_setup_polling -EXPORT_SYMBOL vmlinux 0x57f36541 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x57f6e0d0 task_work_add -EXPORT_SYMBOL vmlinux 0x5809e2a1 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x580a38cf xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584bace7 seq_vprintf -EXPORT_SYMBOL vmlinux 0x5851e563 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x58533e0a mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x586ab5f1 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x5878844b pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x58a0aa77 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x58aa1c98 dm_io -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58adf5cb generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58eb10d5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x58fd29eb register_md_personality -EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x5946a2b0 inet_addr_type -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x596f384a nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x5978d3b1 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl -EXPORT_SYMBOL vmlinux 0x5983d240 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59ca4b90 kernel_bind -EXPORT_SYMBOL vmlinux 0x5a0717ee param_get_ushort -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock -EXPORT_SYMBOL vmlinux 0x5a2e2b43 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x5a329d26 inet_protos -EXPORT_SYMBOL vmlinux 0x5a37bcd1 fsync_bdev -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a6e3d88 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x5a703fb9 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5ab3dc30 dquot_enable -EXPORT_SYMBOL vmlinux 0x5ab714b3 simple_setattr -EXPORT_SYMBOL vmlinux 0x5abb76a4 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x5ac6fee5 d_exact_alias -EXPORT_SYMBOL vmlinux 0x5acd430b __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x5adb734c mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x5adca83d generic_write_end -EXPORT_SYMBOL vmlinux 0x5af03caf dev_remove_pack -EXPORT_SYMBOL vmlinux 0x5af9e4db vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5ba2d648 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x5baf94d2 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x5bbbc2bf pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c18d86e mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c435be2 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x5c85799e scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x5c9d110b ppp_unit_number -EXPORT_SYMBOL vmlinux 0x5ca24602 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x5cb0afe6 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x5cb8902f send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cffdc37 set_disk_ro -EXPORT_SYMBOL vmlinux 0x5d1007ea generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5d1b84c4 pci_dev_put -EXPORT_SYMBOL vmlinux 0x5d32efba generic_setlease -EXPORT_SYMBOL vmlinux 0x5d405f47 amd_iommu_pc_set_reg -EXPORT_SYMBOL vmlinux 0x5d4587b6 udp_disconnect -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5ef0e2 pci_select_bars -EXPORT_SYMBOL vmlinux 0x5d7c7a19 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d901364 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x5db80052 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x5dea903c security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e2a43a1 seq_path -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e390d40 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x5e3d7b27 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x5e4c4b93 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x5e5146ad _dev_crit -EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x5e707845 seq_release_private -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e76b4a2 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea050a1 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb75fe1 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x5eb87caf devm_release_resource -EXPORT_SYMBOL vmlinux 0x5eb99874 proc_create -EXPORT_SYMBOL vmlinux 0x5ec05217 inet_frags_init -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f275db8 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x5f2a1a14 netif_device_attach -EXPORT_SYMBOL vmlinux 0x5f2cfcc0 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x5f313bd1 elevator_alloc -EXPORT_SYMBOL vmlinux 0x5f43540e get_tree_single -EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f5b323a clear_nlink -EXPORT_SYMBOL vmlinux 0x5f89803e inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5fa64ad4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x5fa9d1c4 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x5fb0c121 kern_path_create -EXPORT_SYMBOL vmlinux 0x5fb0dda1 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fdf0693 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x6000953f __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60091e56 security_sk_clone -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b5e40 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl -EXPORT_SYMBOL vmlinux 0x60464bd4 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x604aa5b6 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x604e13d8 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x605331f1 genphy_suspend -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6074dad9 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x60891b59 _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0x60910798 param_array_ops -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6093e0cb generic_file_llseek -EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b4aee7 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x60b4f5cb nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x60b665e3 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x60ba43ea dev_add_pack -EXPORT_SYMBOL vmlinux 0x60c0eb87 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x60c98b23 of_find_backlight -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60ebea7c input_unregister_device -EXPORT_SYMBOL vmlinux 0x60f1ddc5 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x60f40c87 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x60fd1dd7 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x6107149e phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds -EXPORT_SYMBOL vmlinux 0x611ec3ee pci_write_config_word -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6133d6aa jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x61489bb9 param_set_short -EXPORT_SYMBOL vmlinux 0x6155d314 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x61563eed mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615c6e27 bio_reset -EXPORT_SYMBOL vmlinux 0x615d7087 vme_dma_request -EXPORT_SYMBOL vmlinux 0x6177ac7f nd_dax_probe -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x6182e267 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x6189feb1 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x61978937 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619fed67 put_user_pages -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c36b7f dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x61c49ca7 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620978c0 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x620d4960 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x620ea4db ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62167b8a flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6233a804 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x6241ecb9 rt6_lookup -EXPORT_SYMBOL vmlinux 0x6249b466 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x62649c8d load_nls -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x628f56c3 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x6292bc27 give_up_console -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d8f49d rt_dst_clone -EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del -EXPORT_SYMBOL vmlinux 0x630faabd component_match_add_typed -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631e4b31 __seq_open_private -EXPORT_SYMBOL vmlinux 0x631f65c9 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x63785445 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x638f44f3 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x6398fa9c simple_readpage -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ab47c3 security_sock_graft -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x63e76da5 block_write_end -EXPORT_SYMBOL vmlinux 0x63ea7215 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x63eb3958 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f4bcb9 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x63f7b4ca f_setown -EXPORT_SYMBOL vmlinux 0x63fba06c md_finish_reshape -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x64080183 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x640ac94a param_set_ulong -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641d9f55 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x643cddb8 set_pages_wb -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x6453f027 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x645c21d1 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x647ad84e scsi_register_interface -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648c1fa9 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a5419a migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b6c32d bio_uninit -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c5d04c sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x64c5fc51 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x64d0242e mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x64e1bbb8 nvdimm_namespace_attach_btt -EXPORT_SYMBOL vmlinux 0x64e9dc19 finish_no_open -EXPORT_SYMBOL vmlinux 0x64eeb95f get_user_pages -EXPORT_SYMBOL vmlinux 0x64ffd635 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x65067b7a dst_init -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6515fc36 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x65191938 dev_printk -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6522d77a simple_link -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652f4fae xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6576062b bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x658393c3 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x658a8e47 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659d60ad scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d4cd22 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x65d9d2c0 put_cmsg_scm_timestamping -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 0x660b365f filp_open -EXPORT_SYMBOL vmlinux 0x6619ef43 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x66453137 fc_block_scsi_eh -EXPORT_SYMBOL vmlinux 0x664f8748 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x6693e9c4 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x669608c2 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x66a46778 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x66a7b42c dump_align -EXPORT_SYMBOL vmlinux 0x66ae1530 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b17593 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b7990a vm_insert_page -EXPORT_SYMBOL vmlinux 0x66cd6281 arp_tbl -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x66efa327 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x66efe055 mr_dump -EXPORT_SYMBOL vmlinux 0x66f91b88 vmbus_recvpacket -EXPORT_SYMBOL vmlinux 0x670a26ef fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x6719160b drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x6735208c param_ops_ullong -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x675a7f90 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x676ee38e key_unlink -EXPORT_SYMBOL vmlinux 0x6785601b pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678c4b87 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x67afefc9 fc_remove_host -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67ede5be get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x67fec062 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x6806feab cdev_set_parent -EXPORT_SYMBOL vmlinux 0x681887cf gro_cells_receive -EXPORT_SYMBOL vmlinux 0x681916fb __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x683760ff ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x6838aa1a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x6857d26b xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x68625aa6 vga_tryget -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688d2fe2 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x688fdc75 seq_read -EXPORT_SYMBOL vmlinux 0x689a1ef9 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a1bf24 inet_listen -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68acf985 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x68b199d5 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x68b5e8cf ata_dev_printk -EXPORT_SYMBOL vmlinux 0x68ba85c0 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x68bacf21 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x68d07611 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x68e8b6c7 inode_set_flags -EXPORT_SYMBOL vmlinux 0x68edbece blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x69000f3a bdi_register_va -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69182884 km_state_expired -EXPORT_SYMBOL vmlinux 0x693c74a0 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x69506ed9 fget_raw -EXPORT_SYMBOL vmlinux 0x69573008 kill_pgrp -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696d1edf get_thermal_instance -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697296ee bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x6973182e iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x697c8f2c simple_transaction_set -EXPORT_SYMBOL vmlinux 0x6988cefd tcp_disconnect -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699419e4 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x6998c4f9 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b405b9 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x69bf228c param_ops_bint -EXPORT_SYMBOL vmlinux 0x69c6d042 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x69d2e8eb vfs_link -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0cbdbe blk_get_queue -EXPORT_SYMBOL vmlinux 0x6a1cac21 dquot_alloc -EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a284b1b inode_init_always -EXPORT_SYMBOL vmlinux 0x6a3e2ad8 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x6a40b23b vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x6a500a0f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6a6168 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x6a8d8160 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x6a949c8f tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x6a9b20a4 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aab2141 phy_print_status -EXPORT_SYMBOL vmlinux 0x6ace0976 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x6ad0f709 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x6ad18284 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeaf7c2 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afe2725 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x6b0a7043 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x6b0fd8ca kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x6b218c78 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x6b261645 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b315dba udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x6b482b0d vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b7b879e make_kgid -EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba44649 eth_header_parse -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcf40a2 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6c0a4633 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x6c10b603 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x6c1e121d simple_rename -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c4d1415 path_get -EXPORT_SYMBOL vmlinux 0x6c4eb8f0 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c94653f xfrm_register_km -EXPORT_SYMBOL vmlinux 0x6c97fa13 simple_write_end -EXPORT_SYMBOL vmlinux 0x6c9dc38e ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x6ca8a98b security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x6cab9a5f generic_ro_fops -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc50853 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x6ccbe4d6 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x6ccf9e3e blk_register_region -EXPORT_SYMBOL vmlinux 0x6cd2440b xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x6ced1bb3 bio_advance -EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6cf65f86 security_path_rename -EXPORT_SYMBOL vmlinux 0x6cf71bce sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x6cfa4cee tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d0e8096 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x6d10e9cb fc_mount -EXPORT_SYMBOL vmlinux 0x6d253118 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3541bb tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d66daab ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x6d70113c __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x6d78daec make_kuid -EXPORT_SYMBOL vmlinux 0x6d7abe02 first_ec -EXPORT_SYMBOL vmlinux 0x6d7bdfdf write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x6d7ec47f d_genocide -EXPORT_SYMBOL vmlinux 0x6db4ecda ppp_dev_name -EXPORT_SYMBOL vmlinux 0x6db72d51 padata_do_serial -EXPORT_SYMBOL vmlinux 0x6dbf28db dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x6dc0bea4 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion -EXPORT_SYMBOL vmlinux 0x6def5f84 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df37e56 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x6df97e9c compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x6e11002e __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x6e143c0b xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x6e2e9a81 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x6e2f4f38 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x6e42402b napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6e4e8616 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x6e5457e5 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e68b28c iterate_fd -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8a19c6 generic_writepages -EXPORT_SYMBOL vmlinux 0x6e8e9f86 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x6e963b57 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x6e9a0907 dev_trans_start -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec9ef2f bdget_disk -EXPORT_SYMBOL vmlinux 0x6ed36c6f pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6eea4a5c dump_truncate -EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get -EXPORT_SYMBOL vmlinux 0x6f0ce088 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x6f1813a7 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f3c427a inode_needs_sync -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4ec923 read_cache_pages -EXPORT_SYMBOL vmlinux 0x6f669c6c tcp_conn_request -EXPORT_SYMBOL vmlinux 0x6f73eeed elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f798c7c blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9eafff dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x6fa2a9ab sock_create -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcc3b85 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6fe3af4c xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x6fee7684 sk_wait_data -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038db45 pci_request_region -EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x70496a08 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x70496da0 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x704a1e83 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x704a7d60 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x704c2fa5 __breadahead -EXPORT_SYMBOL vmlinux 0x704cc435 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7055f81f padata_stop -EXPORT_SYMBOL vmlinux 0x705de1d5 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x7065dcfa xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x7082ca45 skb_dequeue -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x70937bcf stream_open -EXPORT_SYMBOL vmlinux 0x7098c437 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70adc823 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x70e3ec34 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x70e73cf2 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x70eefb20 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x710e2a25 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x7120f2ef add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x71257c92 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71446a73 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x714f4f8c pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71739d2b __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x7188d214 PDE_DATA -EXPORT_SYMBOL vmlinux 0x71995ed2 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x719a5ac3 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a66d38 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aac86d security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x72072187 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x720e884e eth_header -EXPORT_SYMBOL vmlinux 0x72234c2e phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x72285b8e get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x722b5601 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x72325bda amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x7238e8d9 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7251887f show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x727b372e ip_getsockopt -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bf1f85 flush_signals -EXPORT_SYMBOL vmlinux 0x72da2d96 vc_resize -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73152988 nonseekable_open -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x7326b2ce super_setup_bdi -EXPORT_SYMBOL vmlinux 0x73341d40 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x73353d09 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x739617ad mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x73c39090 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x73d89dcd gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e671ba dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x74387738 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x743b51ae input_release_device -EXPORT_SYMBOL vmlinux 0x7448dc76 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x745b9375 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x74735479 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x748392f4 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x7489e304 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x749ac591 netdev_emerg -EXPORT_SYMBOL vmlinux 0x74a0a42a backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x74a48351 sk_net_capable -EXPORT_SYMBOL vmlinux 0x74b47233 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x74b59870 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cbe93a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7500ff3b pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x7508acc5 fqdir_init -EXPORT_SYMBOL vmlinux 0x751385d5 skb_ext_add -EXPORT_SYMBOL vmlinux 0x75183a05 request_firmware -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754379a2 file_open_root -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75503772 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x7556cac5 dev_mc_del -EXPORT_SYMBOL vmlinux 0x755d2f7e ipv4_specific -EXPORT_SYMBOL vmlinux 0x75740879 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75a971bc __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x75b66ecb block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x75bd193a truncate_pagecache -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75ca5e28 phy_attach -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d40e98 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75dae60c block_commit_write -EXPORT_SYMBOL vmlinux 0x75e0f3dd fc_host_fpin_rcv -EXPORT_SYMBOL vmlinux 0x75e51210 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x75e60613 key_put -EXPORT_SYMBOL vmlinux 0x75eb7b61 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x75f90c7d neigh_lookup -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x761b02f8 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x761f67c3 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x76433ef7 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765fd3dd dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76609248 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x76614527 set_device_ro -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766c5409 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x766d817d simple_lookup -EXPORT_SYMBOL vmlinux 0x76714fc6 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a45fd6 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x76b84333 kthread_stop -EXPORT_SYMBOL vmlinux 0x76cff94f qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x76d04e1d sock_setsockopt -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7717b485 mdio_device_create -EXPORT_SYMBOL vmlinux 0x77185e26 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x7718b3a0 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x771c38aa security_sb_remount -EXPORT_SYMBOL vmlinux 0x772216b5 free_buffer_head -EXPORT_SYMBOL vmlinux 0x7733cf39 path_is_under -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x7735ce67 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774b4da9 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x7756164f xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x775b7cbc tcf_classify -EXPORT_SYMBOL vmlinux 0x7764935d xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x7784a3e5 __serio_register_port -EXPORT_SYMBOL vmlinux 0x779a03bb in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ce19b9 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x77e0e7ff migrate_page_states -EXPORT_SYMBOL vmlinux 0x77e3f646 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fffe96 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc -EXPORT_SYMBOL vmlinux 0x781cd269 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x782f97a2 __sb_start_write -EXPORT_SYMBOL vmlinux 0x783f5474 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7848682d uart_match_port -EXPORT_SYMBOL vmlinux 0x78520c10 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7883eb75 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789ba7fb scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x789e6fc6 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78aee8a3 register_filesystem -EXPORT_SYMBOL vmlinux 0x78be9e76 fc_host_post_event -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x791f2cbc padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x7922df16 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x7943b5f8 phy_disconnect -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7977a6c6 nd_btt_version -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a9fdbc scsi_remove_device -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79b4db84 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x79cab4ea kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x79df3904 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79e45bfd tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x79e5d954 dquot_operations -EXPORT_SYMBOL vmlinux 0x79f68107 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x79fd9eed udp_gro_complete -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a194233 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1efe68 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x7a203b2a __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a30cd24 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x7a40effb tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4b5d3a netpoll_setup -EXPORT_SYMBOL vmlinux 0x7a590d45 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x7a5aae37 find_lock_entry -EXPORT_SYMBOL vmlinux 0x7a64035e tcp_splice_read -EXPORT_SYMBOL vmlinux 0x7a882b46 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a946c60 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a9c276d simple_getattr -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7afb8874 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b056eac filemap_check_errors -EXPORT_SYMBOL vmlinux 0x7b0d8a99 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x7b2fdd0e nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x7b424936 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b626617 lock_rename -EXPORT_SYMBOL vmlinux 0x7b7de61c fb_set_var -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8740ff mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x7ba40098 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc59e1e peernet2id -EXPORT_SYMBOL vmlinux 0x7bc6622d dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x7bce70a5 param_ops_byte -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c591fd8 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x7c6260ae proc_symlink -EXPORT_SYMBOL vmlinux 0x7c756ddb rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cccb5c2 cont_write_begin -EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cea268d neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf998d6 input_register_handle -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 0x7d0fe019 dquot_commit -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1a0001 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x7d303db1 __close_fd -EXPORT_SYMBOL vmlinux 0x7d3e0365 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d5a648e __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d64ffcd jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7d7addc4 would_dump -EXPORT_SYMBOL vmlinux 0x7d826e3e sock_create_lite -EXPORT_SYMBOL vmlinux 0x7d92b5cc xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x7dad5ed1 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbe4d6a tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x7dc2ae94 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission -EXPORT_SYMBOL vmlinux 0x7de64f66 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e07d2be mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7e09809a block_write_full_page -EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext -EXPORT_SYMBOL vmlinux 0x7e11d2a7 set_pages_uc -EXPORT_SYMBOL vmlinux 0x7e149739 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3ca776 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7e42e894 kern_path -EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x7e58b7ed tcf_em_register -EXPORT_SYMBOL vmlinux 0x7e70ba6b seq_puts -EXPORT_SYMBOL vmlinux 0x7e7857fd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e912c74 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x7e9d37fe keyring_clear -EXPORT_SYMBOL vmlinux 0x7ea98cf2 pci_restore_state -EXPORT_SYMBOL vmlinux 0x7ebc977c ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock -EXPORT_SYMBOL vmlinux 0x7ed8a2ce tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x7ef024d4 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f29139f inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x7f2c2bd9 kernel_connect -EXPORT_SYMBOL vmlinux 0x7f3bfb2b pci_choose_state -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f58ef7f netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f731efc devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f84427c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x7fb9c355 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x7fd07560 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x7fd0bdb5 follow_up -EXPORT_SYMBOL vmlinux 0x7fd1b0de security_unix_may_send -EXPORT_SYMBOL vmlinux 0x7fdd7a5b __frontswap_store -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe7da85 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x80042908 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x80049965 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x800af46d input_close_device -EXPORT_SYMBOL vmlinux 0x8038d8ff bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805fd99d nd_device_unregister -EXPORT_SYMBOL vmlinux 0x8071fb66 locks_delete_block -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d435eb dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x80d4f3ef netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x81046f5f pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8121a0ad ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit -EXPORT_SYMBOL vmlinux 0x8148861c __skb_warn_lro_forwarding -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 0x8164cf9a skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8185d92b phy_aneg_done -EXPORT_SYMBOL vmlinux 0x8187a1a3 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x819bbbeb __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81df564f csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x81df9a9a simple_get_link -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8222b03f loop_register_transfer -EXPORT_SYMBOL vmlinux 0x8229a4be dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x824ede9e phy_device_remove -EXPORT_SYMBOL vmlinux 0x82626536 phy_device_register -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x826bc57b jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups -EXPORT_SYMBOL vmlinux 0x82af12fd inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x82b2377d kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d0459f input_get_timestamp -EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x82fe9cf9 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x8307e86b netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x83087d60 __tcf_idr_release -EXPORT_SYMBOL vmlinux 0x8309f453 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x830d573f ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x831d184b ps2_command -EXPORT_SYMBOL vmlinux 0x831fed95 vme_master_request -EXPORT_SYMBOL vmlinux 0x833fdde6 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x83452674 lookup_bdev -EXPORT_SYMBOL vmlinux 0x8345f2d6 mr_table_dump -EXPORT_SYMBOL vmlinux 0x83570b6b devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8360862c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x83658464 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x83723604 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x83821cab get_acl -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x83ae1123 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x83b35a82 search_binary_handler -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d01222 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x83d7a5c8 dump_page -EXPORT_SYMBOL vmlinux 0x83e555fa d_instantiate_new -EXPORT_SYMBOL vmlinux 0x83e76230 tty_register_device -EXPORT_SYMBOL vmlinux 0x83fb7289 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x843436bf cdev_add -EXPORT_SYMBOL vmlinux 0x845b88cc phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x845fbb0e inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x8461cc39 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x8464fefe tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x848502f5 set_blocksize -EXPORT_SYMBOL vmlinux 0x84873b02 set_page_dirty -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x849c85b7 translation_pre_enabled -EXPORT_SYMBOL vmlinux 0x84b8b7cd is_subdir -EXPORT_SYMBOL vmlinux 0x84bb4841 page_symlink -EXPORT_SYMBOL vmlinux 0x84be78f2 ll_rw_block -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84e08531 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x84e54825 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x84e76626 bio_endio -EXPORT_SYMBOL vmlinux 0x84eb91f6 generic_read_dir -EXPORT_SYMBOL vmlinux 0x84fd582e fddi_type_trans -EXPORT_SYMBOL vmlinux 0x850fb81a migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x852628bf t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x8538b833 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x853ff453 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x8544fd75 fc_remote_port_rolechg -EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x85624f1c fb_find_mode -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85775670 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x8581f724 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x85824b2e netdev_change_features -EXPORT_SYMBOL vmlinux 0x8586f263 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85dcde06 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e00dab blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x85e7f9ef tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x85e82037 phy_init_eee -EXPORT_SYMBOL vmlinux 0x85ed8c60 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f4fe0c pci_request_irq -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x8601f5b1 blk_put_queue -EXPORT_SYMBOL vmlinux 0x86043b10 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x860e4c7e nf_log_packet -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863dc196 processors -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8657407e skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a10e3a pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x86c4afd7 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86d3eca1 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant -EXPORT_SYMBOL vmlinux 0x872036ce kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x87463f07 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87742611 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x8775b47c get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x8784618e agp_enable -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87856eea tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x87a7a7dd sock_wake_async -EXPORT_SYMBOL vmlinux 0x87b74c84 md_handle_request -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87ebfb83 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x87fd37b2 agp_bridge -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881e90d4 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x88348502 ip_tunnel_get_iflink -EXPORT_SYMBOL vmlinux 0x884bb419 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x88654cb1 generic_fadvise -EXPORT_SYMBOL vmlinux 0x886bbbcf sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x887e50bc md_register_thread -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x888388b4 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88a79d5c tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88af1b67 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x88bdb756 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e80c7f simple_empty -EXPORT_SYMBOL vmlinux 0x88ef4f6c __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x88f3ae8e inet6_bind -EXPORT_SYMBOL vmlinux 0x88f8aed3 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x890accc8 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x89109c24 pci_release_region -EXPORT_SYMBOL vmlinux 0x8917635c vme_lm_request -EXPORT_SYMBOL vmlinux 0x892849dd configfs_register_group -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x894ed320 override_creds -EXPORT_SYMBOL vmlinux 0x895985f2 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x896d9262 mdiobus_write -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89cf6caf param_get_string -EXPORT_SYMBOL vmlinux 0x89d0a618 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x89f10db0 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x89f430e7 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a1eb380 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a39163f vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a571e06 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe -EXPORT_SYMBOL vmlinux 0x8a6f264a blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x8a6f4354 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8abe8490 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac46ed9 follow_down -EXPORT_SYMBOL vmlinux 0x8ac6dab5 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8acd370b devm_clk_put -EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x8ad6f8b7 set_user_nice -EXPORT_SYMBOL vmlinux 0x8af9eea3 tcf_block_put -EXPORT_SYMBOL vmlinux 0x8afccac3 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0a1cee skb_find_text -EXPORT_SYMBOL vmlinux 0x8b144672 inode_insert5 -EXPORT_SYMBOL vmlinux 0x8b16e85c devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x8b1a97d2 ip_tunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x8b1f2fd8 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x8b213403 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x8b246804 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x8b2f96c8 fc_vport_create -EXPORT_SYMBOL vmlinux 0x8b54d045 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x8b5780d6 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b5c9db2 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x8b5fb6cc tcp_poll -EXPORT_SYMBOL vmlinux 0x8b61322b fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba2ccb7 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x8bb420ef netif_device_detach -EXPORT_SYMBOL vmlinux 0x8bb9e9a4 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x8be6eaa7 bdev_read_only -EXPORT_SYMBOL vmlinux 0x8c118ff8 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x8c25765b vfs_whiteout -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x8c3f22f0 put_tty_driver -EXPORT_SYMBOL vmlinux 0x8c46ac3b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x8c478622 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x8c53735f netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x8c84c3a1 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cf5931d zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x8d04c937 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x8d3c16c1 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x8d3fe30c __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x8d43cf5d invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5d421f finish_open -EXPORT_SYMBOL vmlinux 0x8d644dc9 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x8d6709e7 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x8d6a3a0b pipe_unlock -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7ffd69 param_get_short -EXPORT_SYMBOL vmlinux 0x8d941d05 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dc451df fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0x8dc4e758 vfs_getattr -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8debca72 account_page_redirty -EXPORT_SYMBOL vmlinux 0x8debe4b1 xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x8df4c209 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e0818bc filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1c004e security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x8e1e1dc5 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x8e208fa4 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e237051 passthru_features_check -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe -EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds -EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e993a14 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x8eabad5c inet_gso_segment -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec59846 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x8ed09f93 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x8ed4197f sk_alloc -EXPORT_SYMBOL vmlinux 0x8ee59f8f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x8ee5d1bc mod_node_page_state -EXPORT_SYMBOL vmlinux 0x8efb319b reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default -EXPORT_SYMBOL vmlinux 0x8f4cc6c7 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x8f4d8a1e filp_close -EXPORT_SYMBOL vmlinux 0x8f55666c bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x8f59eade tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x8f5f44d1 km_query -EXPORT_SYMBOL vmlinux 0x8f6ec61f nf_reinject -EXPORT_SYMBOL vmlinux 0x8f7469bc tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f845082 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x8f8eddc8 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8feb45ba build_skb -EXPORT_SYMBOL vmlinux 0x8ff6d306 param_get_bool -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90035fee dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x9019e63b pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9036594e posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x9036c8b4 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x9042aeff get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9081923e amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x9082caaa inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x90a12cfd mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x90f92fd8 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x912a5f60 iptun_encaps -EXPORT_SYMBOL vmlinux 0x91322707 request_key_rcu -EXPORT_SYMBOL vmlinux 0x913acd13 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x91469f6c xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x915ccb06 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x9179bf78 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x918a9ec2 discard_new_inode -EXPORT_SYMBOL vmlinux 0x918d1299 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x91987eb0 input_free_device -EXPORT_SYMBOL vmlinux 0x919b1fd6 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x919b543c __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b4f705 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x91bfb1b4 generic_file_open -EXPORT_SYMBOL vmlinux 0x91c1ab72 register_cdrom -EXPORT_SYMBOL vmlinux 0x91c49015 fs_bio_set -EXPORT_SYMBOL vmlinux 0x91c4ae42 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x92099c73 __ps2_command -EXPORT_SYMBOL vmlinux 0x920b82a3 param_ops_long -EXPORT_SYMBOL vmlinux 0x920e238a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x921256c7 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x9225419e security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x9226e30f ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x922a73ce flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x924bf163 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x924f0dfe agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9250ffc7 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92657820 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x928ef18a __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92b2cf74 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x92b8d491 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92d6b474 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x92e46181 security_path_mknod -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fd56ba set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x9301e0ed copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f88a legacy_pic -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931b98cc skb_trim -EXPORT_SYMBOL vmlinux 0x93415421 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x9358c8fb phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937b8712 user_path_create -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c6aa4b vga_put -EXPORT_SYMBOL vmlinux 0x93cbdd77 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x93e8abbd jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x93f1c491 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x9424d632 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x9425af17 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x94339689 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x94585ea8 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x94685bd8 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x9487860c tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x9492b573 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x9498c7fc pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x94b3a442 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x94bacfc2 inode_permission -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bdf6f6 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94e09cd4 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x94eb56be blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x94f2c933 sync_inode -EXPORT_SYMBOL vmlinux 0x94faa42c skb_tx_error -EXPORT_SYMBOL vmlinux 0x94fcb4ff dm_put_device -EXPORT_SYMBOL vmlinux 0x94fd4e2c unlock_buffer -EXPORT_SYMBOL vmlinux 0x9500c55e fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x9507ab51 dump_skip -EXPORT_SYMBOL vmlinux 0x952634a3 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x952d1216 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95521ed4 skb_checksum -EXPORT_SYMBOL vmlinux 0x95681805 vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0x9570ede9 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x959abe20 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95c5b7fb inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x95dca1fe get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95f37b9e dma_dummy_ops -EXPORT_SYMBOL vmlinux 0x960e5fea vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x961f221f fc_attach_transport -EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9689b463 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x968db907 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x969224ec seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x969428d7 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x96a9d1b0 zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b3a65a vfs_symlink -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -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 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fc60d3 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x96fe54e8 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x970e7098 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x972173b0 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x973f9fda iov_iter_advance -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974008f9 stop_tty -EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9747107e kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x9749e992 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x975569dc __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x975fae24 netdev_warn -EXPORT_SYMBOL vmlinux 0x97615d94 bdput -EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x977652cc __netif_schedule -EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init -EXPORT_SYMBOL vmlinux 0x978c2481 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x978d4a68 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x979043be mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979ab244 scsi_init_io -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 0x97d1e680 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x97f47b1c agp_bind_memory -EXPORT_SYMBOL vmlinux 0x9817990b devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x981be892 set_security_override -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982d6ea2 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x9832f79a inet_shutdown -EXPORT_SYMBOL vmlinux 0x9839ee4e inet_del_offload -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x9863eacd submit_bio_wait -EXPORT_SYMBOL vmlinux 0x98709cd6 datagram_poll -EXPORT_SYMBOL vmlinux 0x989e4ced ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x98a86b1e from_kgid -EXPORT_SYMBOL vmlinux 0x98c025bb pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c6eccb fc_remote_port_add -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cdf9a8 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x991e2e51 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x99210f43 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x9921ae80 vfs_rename -EXPORT_SYMBOL vmlinux 0x99386859 dget_parent -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99410515 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x99486515 netdev_state_change -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9954a6ec sk_mc_loop -EXPORT_SYMBOL vmlinux 0x995da830 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x99771a5b file_remove_privs -EXPORT_SYMBOL vmlinux 0x99799628 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x9980965e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99c40a11 path_has_submounts -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99da50f6 __check_sticky -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x99f11651 node_data -EXPORT_SYMBOL vmlinux 0x99fb4352 dquot_transfer -EXPORT_SYMBOL vmlinux 0x9a07c465 param_ops_short -EXPORT_SYMBOL vmlinux 0x9a089100 __devm_request_region -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a2e47c9 clear_inode -EXPORT_SYMBOL vmlinux 0x9a386ce0 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a59e81b pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x9a63b053 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a83e402 arp_xmit -EXPORT_SYMBOL vmlinux 0x9a95d985 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x9a960170 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x9a989e7f textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9a9c0bf0 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x9a9e5db8 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9abac154 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x9ad50fb4 sock_wfree -EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9af78740 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x9b0a23ac devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x9b194f30 dev_set_group -EXPORT_SYMBOL vmlinux 0x9b195de4 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b274e3d ppp_input -EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b36d9a5 dev_addr_init -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b47d6f6 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b542e0f pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b785b74 get_disk_and_module -EXPORT_SYMBOL vmlinux 0x9b7b9483 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x9bf7d86b mntget -EXPORT_SYMBOL vmlinux 0x9c06e02a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x9c0ccec5 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x9c0ed54f vme_bus_num -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c16a206 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x9c1d8d71 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x9c1dbbe3 km_policy_notify -EXPORT_SYMBOL vmlinux 0x9c210973 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke -EXPORT_SYMBOL vmlinux 0x9c25912c skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x9c2954b8 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x9c32fd35 padata_free -EXPORT_SYMBOL vmlinux 0x9c36c06b d_delete -EXPORT_SYMBOL vmlinux 0x9c45f48b jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x9c68b2a3 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cc0a25a tcp_mmap -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd0d66f submit_bio -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1764a3 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9d1dfd37 ether_setup -EXPORT_SYMBOL vmlinux 0x9d3340e2 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x9d36b4b1 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d77e09a blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x9d7bae79 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x9d83861d vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9da52fa1 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x9daefaea vme_irq_free -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dd3a805 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9df58b81 km_report -EXPORT_SYMBOL vmlinux 0x9df8ab0a skb_checksum_help -EXPORT_SYMBOL vmlinux 0x9e090104 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0d84d8 find_vma -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e26acb8 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2c789f single_release -EXPORT_SYMBOL vmlinux 0x9e31f39c of_find_mipi_dsi_host_by_node -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 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9fa776 simple_open -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf -EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eb4da3d devm_request_resource -EXPORT_SYMBOL vmlinux 0x9ec40ea4 phy_loopback -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef104f7 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x9f22ef5f device_add_disk -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4987f9 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f51674e xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f70e042 security_path_unlink -EXPORT_SYMBOL vmlinux 0x9f8263a9 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa898b2 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdf81ea tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x9feb17c2 dquot_drop -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffdd4cc cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xa002c3d9 sock_efree -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00d0be6 dm_register_target -EXPORT_SYMBOL vmlinux 0xa01e8393 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa040bdba devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa05a43d8 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xa06b3b84 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xa071c714 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07ceb89 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xa081e5f8 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xa09fc4d4 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -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 0xa0f493d9 efi -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa1074b57 mntput -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1185898 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa12e8325 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xa13cfb8a read_dev_sector -EXPORT_SYMBOL vmlinux 0xa16bc3e8 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xa16c09f1 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xa19a0cf9 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xa1ae8c62 get_agp_version -EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1c87743 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xa1d71374 fput -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1eab667 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2062964 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa236efeb qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xa24f14ae finish_swait -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2555421 get_super -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa25f8078 __put_page -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2665133 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa26c3ba1 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xa280b955 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29525f7 kernel_read -EXPORT_SYMBOL vmlinux 0xa29901d3 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xa2ab2e8e phy_register_fixup -EXPORT_SYMBOL vmlinux 0xa2d71d03 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xa2da77d3 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xa31352f6 pps_register_source -EXPORT_SYMBOL vmlinux 0xa331c508 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xa3455fa5 bio_free_pages -EXPORT_SYMBOL vmlinux 0xa34d2cc7 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xa34f17b1 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xa3527296 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xa3574b03 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xa36b3734 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xa3731d6d blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xa37a5060 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa37d4e80 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xa37db609 tcp_close -EXPORT_SYMBOL vmlinux 0xa38ec7f9 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa390b444 genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0xa3b7efcc del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa3b9b870 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xa3ca9ba3 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xa3d206da vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa3d85067 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xa40e8668 dns_query -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa417fa28 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa461d9dc tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xa4744509 mount_single -EXPORT_SYMBOL vmlinux 0xa4a18601 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4b99410 xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xa4c2aa94 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xa4d2c10b no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa4fdadd2 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa5206680 bdi_register -EXPORT_SYMBOL vmlinux 0xa536b5b5 set_binfmt -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa57aa502 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa589fc83 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5d55ff1 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xa5d93682 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xa5da4b09 vmbus_sendpacket -EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6200fb5 dev_add_offload -EXPORT_SYMBOL vmlinux 0xa6206983 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xa62f6ce1 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xa6367d0b set_create_files_as -EXPORT_SYMBOL vmlinux 0xa6392b9e alloc_fddidev -EXPORT_SYMBOL vmlinux 0xa64fa60b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xa6563ce1 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa683a24f pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68e45e9 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xa6950e61 km_policy_expired -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa6b2097d tty_port_open -EXPORT_SYMBOL vmlinux 0xa6f66853 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa7134498 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xa717e6a4 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa7404e98 clk_add_alias -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78341f8 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xa7866250 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa78fdce7 console_stop -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa7a1e456 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xa7b671f8 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xa7c163bf device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xa7c2c787 _dev_err -EXPORT_SYMBOL vmlinux 0xa7c6501c mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7ec6e65 dma_cache_sync -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa806ec44 phy_resume -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa82ac894 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa83291ba inet_ioctl -EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa83de771 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84b0771 register_framebuffer -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 0xa8815967 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa8a652c1 generic_perform_write -EXPORT_SYMBOL vmlinux 0xa8aac4dd fs_lookup_param -EXPORT_SYMBOL vmlinux 0xa8c60f6d get_unmapped_area -EXPORT_SYMBOL vmlinux 0xa8c67639 elv_rb_find -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8e54be3 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa912e873 __lock_page -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91856a5 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa9223bc5 d_make_root -EXPORT_SYMBOL vmlinux 0xa92ebdf5 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xa93fd487 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xa93fe9cf netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xa94932fa eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa953fe41 tcp_seq_next -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid -EXPORT_SYMBOL vmlinux 0xa988779d kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9b64aaa mdio_device_reset -EXPORT_SYMBOL vmlinux 0xa9c2fad4 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9cb347e ptp_clock_index -EXPORT_SYMBOL vmlinux 0xa9e0a015 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xa9e2d3d9 lookup_one_len -EXPORT_SYMBOL vmlinux 0xa9e3dff0 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa26e7b9 proc_remove -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa37951b dcache_dir_close -EXPORT_SYMBOL vmlinux 0xaa392206 phy_connect -EXPORT_SYMBOL vmlinux 0xaa5196c6 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xaa60da32 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaaac015e ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xaab0dd45 proc_mkdir -EXPORT_SYMBOL vmlinux 0xaab4e22f dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xaac08ade genphy_update_link -EXPORT_SYMBOL vmlinux 0xaac27c3e user_revoke -EXPORT_SYMBOL vmlinux 0xaac664ad dev_uc_add -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 0xaaef87ec tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xaaf06d60 page_mapping -EXPORT_SYMBOL vmlinux 0xaaf17c2c nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xaaf50a8f sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe4453 serio_bus -EXPORT_SYMBOL vmlinux 0xaafe6aba scsi_remove_host -EXPORT_SYMBOL vmlinux 0xab1115db inet6_add_offload -EXPORT_SYMBOL vmlinux 0xab20808e module_layout -EXPORT_SYMBOL vmlinux 0xab364cd0 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b0f74 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3bea6b trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xab3fe1b7 may_umount_tree -EXPORT_SYMBOL vmlinux 0xab401d89 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xab42f720 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xab5e6480 generic_permission -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 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab75214f dup_iter -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab79881a file_update_time -EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0xabb1e7ef pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xabb3d25d uart_get_divisor -EXPORT_SYMBOL vmlinux 0xabb7cd5a md_write_end -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf56706 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xac110867 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac8078ce sk_dst_check -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xac9d9453 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbb4637 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdbfec0 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xace0062c dma_find_channel -EXPORT_SYMBOL vmlinux 0xace0b96b ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xacf45530 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad07dc22 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe -EXPORT_SYMBOL vmlinux 0xad3a7ac0 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xad3ca070 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xad3d9668 vfs_unlink -EXPORT_SYMBOL vmlinux 0xad40381a bdi_put -EXPORT_SYMBOL vmlinux 0xad451a39 unregister_nls -EXPORT_SYMBOL vmlinux 0xad47e324 dev_activate -EXPORT_SYMBOL vmlinux 0xad4a94a5 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad599532 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xad686d08 seq_pad -EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadc25b8b d_add -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadf036a3 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xadf871f8 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae432079 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xae46f77a agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xae482ab5 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xae4fdaea tty_port_init -EXPORT_SYMBOL vmlinux 0xae512977 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xae573974 bdgrab -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5da184 inet6_getname -EXPORT_SYMBOL vmlinux 0xae69fea7 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec7c2fe d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xaece743b pci_set_master -EXPORT_SYMBOL vmlinux 0xaed247fc inet_sendpage -EXPORT_SYMBOL vmlinux 0xaed62715 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xaee3c854 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xaf107e8e kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xaf2425bb pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xaf29f777 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xaf30b12e current_task -EXPORT_SYMBOL vmlinux 0xaf3c3c3d __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf75a60e tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xaf819716 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xaf9981a3 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafa52633 key_move -EXPORT_SYMBOL vmlinux 0xafb4e7ed vif_device_init -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafbf5f8f blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xafd33e98 dst_alloc -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafe1d537 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xaff7f0a0 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xaffb1ce1 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xb00f925d jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xb0195e99 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0419c76 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xb04a5979 irq_to_desc -EXPORT_SYMBOL vmlinux 0xb04d58c3 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xb05c8a86 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xb07e5ab2 tty_name -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a8436d mdio_device_remove -EXPORT_SYMBOL vmlinux 0xb0a8d686 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xb0b485ed __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb0b68d41 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0c60443 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0cfd7c4 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xb0d29a1f flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xb0d904d9 read_cache_page -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0f0b4c2 igrab -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fbb2fc mark_page_accessed -EXPORT_SYMBOL vmlinux 0xb1062aa6 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xb1081a12 skb_pull -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb11038df pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xb112e8ee __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb131cba3 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb16afd34 vfs_get_super -EXPORT_SYMBOL vmlinux 0xb170ea2e kernel_write -EXPORT_SYMBOL vmlinux 0xb17ca9be xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xb185cbe9 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1a6d3e4 misc_deregister -EXPORT_SYMBOL vmlinux 0xb1aeb105 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xb1b617bf __register_chrdev -EXPORT_SYMBOL vmlinux 0xb1c1df41 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d11ded param_get_byte -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc -EXPORT_SYMBOL vmlinux 0xb1f39ed7 sg_miter_next -EXPORT_SYMBOL vmlinux 0xb20bf253 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23409dd jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xb24af967 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb24c1d73 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xb24cb530 skb_unlink -EXPORT_SYMBOL vmlinux 0xb2541911 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xb26fd1d1 write_inode_now -EXPORT_SYMBOL vmlinux 0xb27a10da dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xb27dab4c netif_rx_ni -EXPORT_SYMBOL vmlinux 0xb27dda79 vga_get -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2b268e9 elv_rb_del -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2e4e9cf uart_suspend_port -EXPORT_SYMBOL vmlinux 0xb2e5b501 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0xb2ec87e0 kernel_getsockname -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 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31449fa xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb331206b bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xb33734b1 fget -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb352a223 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xb35eb61e vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3769cbc udp_sendmsg -EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb38e95bb tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xb3901733 dev_mc_init -EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3bb1162 nf_log_trace -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d36056 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xb3da6a1a scsi_dma_map -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb416afcd iov_iter_init -EXPORT_SYMBOL vmlinux 0xb416c5d2 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb4208fcd _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xb4226d8e sock_i_ino -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42c6444 cad_pid -EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb4582278 d_add_ci -EXPORT_SYMBOL vmlinux 0xb46ee795 sock_register -EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4aa195e param_set_charp -EXPORT_SYMBOL vmlinux 0xb4b8a922 filemap_fault -EXPORT_SYMBOL vmlinux 0xb4b8b2f9 nvdimm_namespace_detach_btt -EXPORT_SYMBOL vmlinux 0xb4bdbf42 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xb4c28efe register_console -EXPORT_SYMBOL vmlinux 0xb4cd573c vfs_create -EXPORT_SYMBOL vmlinux 0xb4d08ff5 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xb4d48111 sock_rfree -EXPORT_SYMBOL vmlinux 0xb4e47968 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb4ea5d78 input_set_capability -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f22e4f netlink_set_err -EXPORT_SYMBOL vmlinux 0xb4fe97de ilookup5 -EXPORT_SYMBOL vmlinux 0xb52b92e2 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb53bd7dc get_super_thawed -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb540fdbb ppp_input_error -EXPORT_SYMBOL vmlinux 0xb5659f26 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57920c4 proto_unregister -EXPORT_SYMBOL vmlinux 0xb57a19a5 bioset_exit -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6557d padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b74339 free_netdev -EXPORT_SYMBOL vmlinux 0xb5bb6b87 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xb5e44b3a __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f2c119 get_cached_acl -EXPORT_SYMBOL vmlinux 0xb5f39391 invalidate_partition -EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0xb6137d23 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xb6199d34 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xb625d70e agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65618b3 netlink_unicast -EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0xb66cc9c1 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xb67450ce generic_make_request -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67b121b blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a3c6a2 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6acc398 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xb6b2f227 d_lookup -EXPORT_SYMBOL vmlinux 0xb6ddf175 config_item_put -EXPORT_SYMBOL vmlinux 0xb6eca6a8 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xb6f48f51 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xb70c439d update_region -EXPORT_SYMBOL vmlinux 0xb72df0d1 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xb72ee696 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xb734e86f bd_finish_claiming -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73f701b scsi_device_put -EXPORT_SYMBOL vmlinux 0xb751ee19 cpu_tlbstate -EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb75d3172 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xb78abad6 ip_tunnel_get_link_net -EXPORT_SYMBOL vmlinux 0xb78be94d page_mapped -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7b1dab9 vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7caffa1 scsi_host_get -EXPORT_SYMBOL vmlinux 0xb7cd24ef amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0xb7e30cad netif_receive_skb -EXPORT_SYMBOL vmlinux 0xb7e748b6 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb8660acb qdisc_put -EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb8767bf8 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8ad88fb neigh_for_each -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8ba1370 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xb8ce64a2 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8effc27 param_ops_int -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb9067be1 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb9086652 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9278416 serio_close -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb945b897 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xb94e1b9a icmp6_send -EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9839ca5 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bfd8f8 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xb9c1fbef clocksource_unregister -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 0xb9ea155f ilookup -EXPORT_SYMBOL vmlinux 0xb9f7b092 mmput_async -EXPORT_SYMBOL vmlinux 0xb9ffa5e1 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xba0465d0 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xba07e18b __frontswap_load -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba3262ee devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xba44046a follow_down_one -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba6eccbd gro_cells_init -EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbad5b118 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xbadaf1db amd_iommu_rlookup_table -EXPORT_SYMBOL vmlinux 0xbaeb7d1b skb_put -EXPORT_SYMBOL vmlinux 0xbaed15f5 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xbaf31bf4 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xbaf67f2d eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many -EXPORT_SYMBOL vmlinux 0xbb172dea netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xbb1ae805 phy_device_free -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2ba0b9 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4a682e inet_gro_receive -EXPORT_SYMBOL vmlinux 0xbb4c3ba5 sk_free -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5eb845 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xbb7f691e param_ops_uint -EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb8efd6b tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xbbaadeb0 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xbbbefaf5 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xbbd4d56f blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf6a5f3 pci_match_id -EXPORT_SYMBOL vmlinux 0xbc0bdc0c tcp_filter -EXPORT_SYMBOL vmlinux 0xbc14c9a1 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc21c004 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc558e26 empty_aops -EXPORT_SYMBOL vmlinux 0xbc7ab366 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xbc7be340 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xbc95d83e iterate_supers_type -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb6ceeb prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xbcbc73b4 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbccc1e8b is_nd_btt -EXPORT_SYMBOL vmlinux 0xbcd0a5fd fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xbce8a59e __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xbcf6e8cf tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xbcfbfac8 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xbcfe0ff4 init_special_inode -EXPORT_SYMBOL vmlinux 0xbd12b38b dquot_scan_active -EXPORT_SYMBOL vmlinux 0xbd15a102 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xbd1e961a dev_get_by_index -EXPORT_SYMBOL vmlinux 0xbd26d3f3 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xbd2b7d4c neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd48006a devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xbd4fc970 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xbd5d616d flush_old_exec -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6c9c6f dquot_get_state -EXPORT_SYMBOL vmlinux 0xbd6ed043 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xbd94ca01 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xbdcb57bc phy_stop -EXPORT_SYMBOL vmlinux 0xbdcba1af unregister_md_personality -EXPORT_SYMBOL vmlinux 0xbde8d6fb acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xbdef074c vc_cons -EXPORT_SYMBOL vmlinux 0xbdf97d4f agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe182ba7 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xbe353f58 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xbe405e89 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe525916 rtnl_notify -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe7fbf9c kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xbe800f33 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0xbe8523ef block_write_begin -EXPORT_SYMBOL vmlinux 0xbe9b741f tcf_exts_change -EXPORT_SYMBOL vmlinux 0xbea73f26 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xbea8a073 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0xbebf5972 kthread_blkcg -EXPORT_SYMBOL vmlinux 0xbec0388f mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xbec1b0c8 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xbed5ea7e jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbeec4ed5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf192fad blkdev_get -EXPORT_SYMBOL vmlinux 0xbf1c22d8 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xbf1d5b56 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf320284 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xbf428832 _dev_info -EXPORT_SYMBOL vmlinux 0xbf79929a iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xbf9262ef bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xbf935e03 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xbf9a9c58 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfafaf6c posix_lock_file -EXPORT_SYMBOL vmlinux 0xbfbdd0fc napi_gro_receive -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcc9f01 mpage_readpages -EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc01a3198 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc04cf82f devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc08272cc inet6_offloads -EXPORT_SYMBOL vmlinux 0xc084bbcd to_nd_btt -EXPORT_SYMBOL vmlinux 0xc095f2f2 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0aae7b6 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0dc7628 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xc0e34113 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xc12876f1 km_state_notify -EXPORT_SYMBOL vmlinux 0xc12bdada splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xc13008f5 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc13af22d __quota_error -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc165c98a file_ns_capable -EXPORT_SYMBOL vmlinux 0xc1672f14 param_set_ullong -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc18b5b70 pci_clear_master -EXPORT_SYMBOL vmlinux 0xc19df2fb nlmsg_notify -EXPORT_SYMBOL vmlinux 0xc1a954f7 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xc1acfcd4 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xc1ba7ef5 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1f97475 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xc218e701 genphy_loopback -EXPORT_SYMBOL vmlinux 0xc228129e revert_creds -EXPORT_SYMBOL vmlinux 0xc22e36dc fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc25107a1 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xc25145ed fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26e67f3 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a08734 kill_bdev -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2bc0d20 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ff523e xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xc304d6d5 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc30f1865 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3244a5d pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc3381e5a path_put -EXPORT_SYMBOL vmlinux 0xc35591ee end_page_writeback -EXPORT_SYMBOL vmlinux 0xc363962b tty_check_change -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3956089 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xc398f40a locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3ad941e blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xc3b5b298 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3d7618a sk_reset_timer -EXPORT_SYMBOL vmlinux 0xc3d87214 param_set_long -EXPORT_SYMBOL vmlinux 0xc3dd7490 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40d15f6 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc43eea5a pnp_device_detach -EXPORT_SYMBOL vmlinux 0xc4415fe4 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xc4429dc0 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xc44ff24f ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xc46ede6c backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xc476e4d4 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47a89bb __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b140d9 genphy_resume -EXPORT_SYMBOL vmlinux 0xc4c6acaf ping_prot -EXPORT_SYMBOL vmlinux 0xc4c75c48 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xc4fddf9f put_cmsg -EXPORT_SYMBOL vmlinux 0xc502fb4a sk_ns_capable -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53564da param_set_byte -EXPORT_SYMBOL vmlinux 0xc5464c65 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xc548b245 d_rehash -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc58185f4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc5916271 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d14d6f devfreq_update_status -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60d4669 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a4894a ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xc6c09ffb pci_find_capability -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e4c28d phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xc6e993a9 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xc6f4284f compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7205bef seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc721fcc7 vfio_pin_pages -EXPORT_SYMBOL vmlinux 0xc73ff4a8 d_set_d_op -EXPORT_SYMBOL vmlinux 0xc7523108 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc793b79b iov_iter_revert -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7ee0ae2 phy_driver_register -EXPORT_SYMBOL vmlinux 0xc8094cc1 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80e0c00 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xc813252b blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xc817f4db fc_block_rport -EXPORT_SYMBOL vmlinux 0xc81a5d4e inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc8213c6a reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xc82a520e __sk_dst_check -EXPORT_SYMBOL vmlinux 0xc82b754e edac_mc_find -EXPORT_SYMBOL vmlinux 0xc82c1cfc xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xc82d482e __scm_destroy -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85016d2 sock_i_uid -EXPORT_SYMBOL vmlinux 0xc851e098 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a36beb __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xc8a3a9a2 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ba8656 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xc8bf1a01 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xc8d0126c seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0xc8ee89b4 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xc905f654 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc93e17cc vme_slave_request -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc942e85c vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0xc95f64d1 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc982d94e uart_resume_port -EXPORT_SYMBOL vmlinux 0xc985a039 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc9ac504b neigh_table_init -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e150fc kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc9e93ac5 bmap -EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca02ebb0 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xca063707 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca22db3e __scsi_execute -EXPORT_SYMBOL vmlinux 0xca23a374 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4bc879 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xca5e4a2d mdio_bus_type -EXPORT_SYMBOL vmlinux 0xca61db1d clk_bulk_get -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca6bfa93 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xca77722c vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xca7cfe5d tcp_connect -EXPORT_SYMBOL vmlinux 0xca859a8d input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9792da xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xca993534 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab0af81 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xcacae443 dm_get_device -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcada4023 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xcadb2cf6 pci_iomap -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb015945 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xcb0c0b0a remove_arg_zero -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb6bf912 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xcb6f31d9 dcache_readdir -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb807303 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xcba117af fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbb4dd94 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc7eb7a md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdf0e42 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc234940 bh_submit_read -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc394a91 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc72d40d __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xcc864a76 bioset_init -EXPORT_SYMBOL vmlinux 0xcc89471a sock_sendmsg -EXPORT_SYMBOL vmlinux 0xcc8ea4fe __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xcc983cee reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xcc99f962 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xccad47e8 hmm_range_register -EXPORT_SYMBOL vmlinux 0xccba9386 hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0xccbe2753 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xccbf70c2 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccca774f mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd091410 vfs_llseek -EXPORT_SYMBOL vmlinux 0xcd0d9a3e param_ops_ulong -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3a4de9 vfs_mknod -EXPORT_SYMBOL vmlinux 0xcd411e0c kernel_param_lock -EXPORT_SYMBOL vmlinux 0xcd7c8371 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xcd7d22ae bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc69989 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xcddc21bd dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce19abec kernel_getpeername -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce41f493 netlink_ack -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 0xce5c0d99 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xce61efe6 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce894d43 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebf3e78 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xcec8399c vfs_get_link -EXPORT_SYMBOL vmlinux 0xcecd12bf set_trace_device -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcedd885a __kfree_skb -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xceec93be to_nfit_uuid -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf0d0ffa tty_port_put -EXPORT_SYMBOL vmlinux 0xcf0d8f3e param_ops_bool -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf1d7123 register_netdevice -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf345252 sk_stream_error -EXPORT_SYMBOL vmlinux 0xcf3d36ca tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf573a34 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0xcf590fb4 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xcf5ac6f5 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xcf5fe6d9 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xcf69eb43 con_is_bound -EXPORT_SYMBOL vmlinux 0xcf6afa51 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xcf79ede4 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xcf79f2e1 inc_nlink -EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xcf8686f1 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xcf8b6b23 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xcf9a47a8 inet_add_offload -EXPORT_SYMBOL vmlinux 0xcfacade4 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xcfb71b28 finalize_exec -EXPORT_SYMBOL vmlinux 0xcfb9e253 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xcfc178aa dev_uc_flush -EXPORT_SYMBOL vmlinux 0xcfcd82a6 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0xcfd9a04d seq_dentry -EXPORT_SYMBOL vmlinux 0xcfe107ed cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xd00598df jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd0499c0d lru_cache_add_file -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a7332f nf_hook_slow -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd0c2cb2a vme_irq_request -EXPORT_SYMBOL vmlinux 0xd0cc8e95 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xd0d39c1c netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xd0e32e91 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xd0e56bca flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0f33257 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0f9b537 key_link -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1003061 kill_fasync -EXPORT_SYMBOL vmlinux 0xd12091ca flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xd13424e7 dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13aae38 uart_register_driver -EXPORT_SYMBOL vmlinux 0xd14b348a iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xd14bb576 xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0xd15f2d51 nf_log_set -EXPORT_SYMBOL vmlinux 0xd17aefb7 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18b327a pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xd18ed1bd cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0xd1b256f6 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xd1cbcde2 set_wb_congested -EXPORT_SYMBOL vmlinux 0xd1d63f62 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -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 0xd24c1632 dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xd2562121 d_tmpfile -EXPORT_SYMBOL vmlinux 0xd2575c11 sock_create_kern -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf -EXPORT_SYMBOL vmlinux 0xd2697697 request_key_tag -EXPORT_SYMBOL vmlinux 0xd272c7d0 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27c7608 sk_common_release -EXPORT_SYMBOL vmlinux 0xd296715f __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xd2b5fe58 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xd2ce54fe mdio_device_register -EXPORT_SYMBOL vmlinux 0xd2cf0468 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xd2d4dd71 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xd2d880da __mod_zone_page_state -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 0xd2ebd594 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xd2ec989f bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xd31450c5 get_phy_device -EXPORT_SYMBOL vmlinux 0xd326215a tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd3278062 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xd330bb0e dquot_file_open -EXPORT_SYMBOL vmlinux 0xd33cc469 md_flush_request -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3217 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37f3f78 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd39000df input_inject_event -EXPORT_SYMBOL vmlinux 0xd3bb0479 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xd3ce52bf vme_irq_generate -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41551d3 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xd41ad79b devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xd421a667 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd4342487 poll_initwait -EXPORT_SYMBOL vmlinux 0xd43f8f29 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xd450f403 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd465afb5 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xd476a503 page_pool_create -EXPORT_SYMBOL vmlinux 0xd4834604 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4866f99 __find_get_block -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4b51ad7 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4ecb24e __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xd4ef7221 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xd4f3ae9a acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd532811b pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5466547 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xd547be46 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xd55a3024 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd561af41 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xd564f170 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xd577b76d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xd57801f5 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xd5920ccf pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd5a94dfb phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xd5ad2ff4 input_register_device -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5f5a87d unlock_new_inode -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61a6e3c put_disk_and_module -EXPORT_SYMBOL vmlinux 0xd6365979 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd63c493a sock_alloc -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd660d48c fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xd664a564 xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0xd6661211 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6b2c809 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6d8841f mdiobus_free -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eb35a0 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f7e676 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xd6fd44a3 tcp_getsockopt -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 0xd71af225 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xd72dddb2 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xd73281ed vfs_iter_write -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd745357f try_module_get -EXPORT_SYMBOL vmlinux 0xd7633be4 simple_rmdir -EXPORT_SYMBOL vmlinux 0xd79a6987 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xd7ac379c input_reset_device -EXPORT_SYMBOL vmlinux 0xd7bd0057 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7dfb80c netdev_crit -EXPORT_SYMBOL vmlinux 0xd7e4fe1b devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd80195ec phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xd80cdf2e d_instantiate -EXPORT_SYMBOL vmlinux 0xd8441a99 vfs_statfs -EXPORT_SYMBOL vmlinux 0xd8457a1f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd85e0def is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd8637251 serio_open -EXPORT_SYMBOL vmlinux 0xd8682023 unlock_page -EXPORT_SYMBOL vmlinux 0xd86f548e security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xd883b864 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xd8870ccf default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd8946092 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8af2c64 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xd8b87938 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xd8bb3421 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xd8c6acdf redraw_screen -EXPORT_SYMBOL vmlinux 0xd8c8d1ff inet_register_protosw -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e123e1 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd951947f sget_fc -EXPORT_SYMBOL vmlinux 0xd95b6171 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xd969ee84 pci_bus_type -EXPORT_SYMBOL vmlinux 0xd972166b pmem_sector_size -EXPORT_SYMBOL vmlinux 0xd9760db8 vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9aca408 udp_seq_start -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9c2b7c3 device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd9fe6d7b pci_release_resource -EXPORT_SYMBOL vmlinux 0xd9ff6380 dcache_dir_open -EXPORT_SYMBOL vmlinux 0xda0eca78 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xda145c53 skb_copy -EXPORT_SYMBOL vmlinux 0xda1c90c1 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0xda2116c0 inet_release -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3f197e file_path -EXPORT_SYMBOL vmlinux 0xda494060 secpath_set -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda72f7e3 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xda840058 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa0237b current_time -EXPORT_SYMBOL vmlinux 0xdaa65e9e seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac7124f inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaef1c07 block_read_full_page -EXPORT_SYMBOL vmlinux 0xdafb61cd inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xdafdfa85 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb29c81f nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xdb2d439e dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xdb36cef7 padata_free_shell -EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate -EXPORT_SYMBOL vmlinux 0xdb53e68c freezing_slow_path -EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xdb5c1403 nd_device_notify -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb7018c8 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb851513 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xdb8a333b copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xdb99170d phy_init_hw -EXPORT_SYMBOL vmlinux 0xdba50d03 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xdbab9119 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbdd1ebf scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe24ee2 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xdbf3bf6d mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xdbfe1ba5 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xdbffd78b udplite_prot -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1e155f send_sig -EXPORT_SYMBOL vmlinux 0xdc3e8f4a fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc535e98 release_sock -EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc5aa7aa posix_test_lock -EXPORT_SYMBOL vmlinux 0xdc70eb1d napi_disable -EXPORT_SYMBOL vmlinux 0xdc7e9cde current_in_userns -EXPORT_SYMBOL vmlinux 0xdc8d89ad genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xdc8dc57e agp_generic_enable -EXPORT_SYMBOL vmlinux 0xdca27381 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xdcc52662 ps2_end_command -EXPORT_SYMBOL vmlinux 0xdccbfc03 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xdcdd1932 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2b7692 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd652eea __close_fd_get_file -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd75186d devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xdd7b3e59 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd99f716 dquot_acquire -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xdddf5034 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xddf24541 dqput -EXPORT_SYMBOL vmlinux 0xddfdd1ce devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xde12156e reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xde25e3bb jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2f9856 get_tz_trend -EXPORT_SYMBOL vmlinux 0xde31dc6e __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xde322cfd unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xde32df33 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xde3e725a fc_host_post_vendor_event -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde54de69 pskb_extract -EXPORT_SYMBOL vmlinux 0xde5b6219 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xde8cfa0c vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xde8f9928 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9b1882 sock_no_connect -EXPORT_SYMBOL vmlinux 0xde9e2f7e blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xdeb617a5 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xdeb6d788 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xdec92890 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded386fa simple_write_begin -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded485f1 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0xdede4f41 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefb3648 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xdefb8070 cdrom_release -EXPORT_SYMBOL vmlinux 0xdf01be7e tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xdf072964 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xdf1bf38b no_llseek -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf40a7d4 pci_irq_vector -EXPORT_SYMBOL vmlinux 0xdf41dd56 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -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 0xdf9e870b mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xdfa175a1 blk_rq_init -EXPORT_SYMBOL vmlinux 0xdfa4c4a8 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xdfac55dc flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable -EXPORT_SYMBOL vmlinux 0xdfc44a62 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xdfc61a2d page_readlink -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfcf87a1 audit_log -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe5ae2f always_delete_dentry -EXPORT_SYMBOL vmlinux 0xdfe6ba91 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xdfe704fd xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xdfebc7c9 fb_class -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -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 0xe0489cf5 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xe05503a4 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xe0757a33 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08f08b3 skb_dump -EXPORT_SYMBOL vmlinux 0xe09477e4 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a2d22a acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xe0acc472 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0d0c9e5 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe0d2ae15 param_set_bint -EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe129ce29 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xe13da841 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe1440a80 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xe14d73b6 scsi_print_result -EXPORT_SYMBOL vmlinux 0xe1704ca8 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xe1719b90 tty_unlock -EXPORT_SYMBOL vmlinux 0xe192c396 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe1a32d7c phy_drivers_register -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1c78f35 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ddd9c2 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xe1e22b1d skb_seq_read -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xe1f3fcfe clk_get -EXPORT_SYMBOL vmlinux 0xe2076639 fs_parse -EXPORT_SYMBOL vmlinux 0xe21159d2 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe21f8093 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xe24305cd ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xe2595f90 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe27dbfd2 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xe2990b8a __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xe29bda39 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xe2c243e9 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xe2c7e178 md_reload_sb -EXPORT_SYMBOL vmlinux 0xe2cb440b _dev_notice -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2cff8ef copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e4d5b7 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xe2faacea xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe32223e3 inet_bind -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe334c050 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xe3460314 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe37a9ba4 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xe38c1bc6 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3a85778 __page_symlink -EXPORT_SYMBOL vmlinux 0xe3bed409 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xe3d44468 unload_nls -EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ef9b79 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xe40436f1 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe4103b96 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe437e22f dma_sync_wait -EXPORT_SYMBOL vmlinux 0xe43b2e82 iterate_dir -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe44830e0 param_set_invbool -EXPORT_SYMBOL vmlinux 0xe4532a44 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xe480f6a1 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4987aa7 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xe4bc695a blk_get_request -EXPORT_SYMBOL vmlinux 0xe4be769d proc_set_user -EXPORT_SYMBOL vmlinux 0xe4c19059 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe4c7a908 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xe4d34829 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4d5984b security_inode_init_security -EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4d922dd unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe4e2231e io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xe4ed8bbd __nlmsg_put -EXPORT_SYMBOL vmlinux 0xe5077e79 input_set_timestamp -EXPORT_SYMBOL vmlinux 0xe514e248 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xe521aaa4 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xe52263ee pcim_pin_device -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5410cef amd_iommu_pc_get_reg -EXPORT_SYMBOL vmlinux 0xe549f5f2 iget5_locked -EXPORT_SYMBOL vmlinux 0xe55ac79d pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe5701c35 sock_no_bind -EXPORT_SYMBOL vmlinux 0xe570b65b dquot_destroy -EXPORT_SYMBOL vmlinux 0xe57505bb vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe588b66a netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e4f30d file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe5ebf91a ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xe5f7ba81 devm_memunmap -EXPORT_SYMBOL vmlinux 0xe609b49a proc_set_size -EXPORT_SYMBOL vmlinux 0xe609b939 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xe60c5968 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe623760d lease_modify -EXPORT_SYMBOL vmlinux 0xe62a4e61 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe668becf input_open_device -EXPORT_SYMBOL vmlinux 0xe675cc5a pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xe67eab68 mdiobus_read -EXPORT_SYMBOL vmlinux 0xe68519b8 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6af6fd3 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xe6b48898 eisa_bus_type -EXPORT_SYMBOL vmlinux 0xe6b9cdc9 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xe6c6b34a t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xe6d2d2f9 __put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0xe6d31ef1 can_nice -EXPORT_SYMBOL vmlinux 0xe6d8ed4c security_binder_transaction -EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe71f22f9 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72ea204 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe737bf27 simple_statfs -EXPORT_SYMBOL vmlinux 0xe74f025d set_posix_acl -EXPORT_SYMBOL vmlinux 0xe76682b7 iget_failed -EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe789a1ca unix_detach_fds -EXPORT_SYMBOL vmlinux 0xe79f23c7 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a14f0b vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0xe7b4de97 from_kprojid -EXPORT_SYMBOL vmlinux 0xe7cac2ea locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dfa0c7 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe7e5f19d jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xe7fe1e14 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xe80d27bc iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0xe81501dc kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xe8237711 backlight_force_update -EXPORT_SYMBOL vmlinux 0xe8280f76 register_shrinker -EXPORT_SYMBOL vmlinux 0xe83aca24 md_write_inc -EXPORT_SYMBOL vmlinux 0xe843f916 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe84cb231 cdev_device_add -EXPORT_SYMBOL vmlinux 0xe8504307 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe8534637 inet_offloads -EXPORT_SYMBOL vmlinux 0xe85e62a5 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe8938dd6 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xe8a84624 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xe8b26155 proto_register -EXPORT_SYMBOL vmlinux 0xe8dd9ce3 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xe8ebdc11 agp_free_memory -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe9062322 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95571ba open_exec -EXPORT_SYMBOL vmlinux 0xe95edb2a register_quota_format -EXPORT_SYMBOL vmlinux 0xe982a03a cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xe9839c4d end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe993ee86 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b5aaaa neigh_seq_next -EXPORT_SYMBOL vmlinux 0xe9bde459 register_gifconf -EXPORT_SYMBOL vmlinux 0xe9d0f6b8 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xe9e43828 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f43e6e call_fib_notifier -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea08f555 km_new_mapping -EXPORT_SYMBOL vmlinux 0xea0d102b devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xea13dab5 agp_put_bridge -EXPORT_SYMBOL vmlinux 0xea1c8134 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable -EXPORT_SYMBOL vmlinux 0xea375cd3 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea46fffd blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xea4e4a1c inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea78c028 inet6_protos -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea821e47 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xea84417e pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabf3525 skb_split -EXPORT_SYMBOL vmlinux 0xeac55f57 netlink_capable -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xead59f18 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xeadb8057 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae45d58 dev_get_stats -EXPORT_SYMBOL vmlinux 0xeb0b8779 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xeb1806db udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb250c3c update_devfreq -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb437a9a __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb44c0b3 kill_pid -EXPORT_SYMBOL vmlinux 0xeb4f05d4 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xeb52ce27 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xeb57bd3f netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xeb58d39b register_qdisc -EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index -EXPORT_SYMBOL vmlinux 0xeb727ec0 locks_free_lock -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb89d499 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xeb9037f2 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xeb95100d phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xebaafd7b blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xebac92b5 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xebb3f50d vfs_ioctl -EXPORT_SYMBOL vmlinux 0xebe3e606 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xebf021ea fb_set_suspend -EXPORT_SYMBOL vmlinux 0xebf816a2 devm_memremap -EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xec0f96b6 address_space_init_once -EXPORT_SYMBOL vmlinux 0xec10cf7a con_copy_unimap -EXPORT_SYMBOL vmlinux 0xec11ae90 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec451fd8 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0xec4b85b1 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xec4cd6e7 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5d2181 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xec61aeca blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xec92c22e __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xec9487a7 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xec9c1554 tcp_child_process -EXPORT_SYMBOL vmlinux 0xec9f4c53 touch_atime -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb3d790 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0xecbdaa8c iunique -EXPORT_SYMBOL vmlinux 0xecce8678 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xecd43dff __lock_buffer -EXPORT_SYMBOL vmlinux 0xecd77931 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xecdddb89 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf0acff proc_create_data -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xecfee3b4 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xed00b2ab dec_node_page_state -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed3c35f1 param_set_ushort -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5f075d dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0xed603c12 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed6d40c1 eisa_driver_register -EXPORT_SYMBOL vmlinux 0xed6d50ee qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xed81eff2 dev_mc_add -EXPORT_SYMBOL vmlinux 0xed890c86 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbe0256 single_open -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc23f1c pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xedcefa39 pci_map_rom -EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put -EXPORT_SYMBOL vmlinux 0xedf67544 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table -EXPORT_SYMBOL vmlinux 0xee05251f dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xee117ca7 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xee1f3ccc xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3507a6 kernel_accept -EXPORT_SYMBOL vmlinux 0xee3f60e8 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xee442234 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xee4ca2e4 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee7807e9 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8169a4 phy_suspend -EXPORT_SYMBOL vmlinux 0xee860dd7 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeeb56404 eth_change_mtu -EXPORT_SYMBOL vmlinux 0xeebea431 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xeec1aff1 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xeed0dbd1 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xeed904ba block_truncate_page -EXPORT_SYMBOL vmlinux 0xeeff58f5 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xef0c3a24 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xef3281cb bd_start_claiming -EXPORT_SYMBOL vmlinux 0xef3f2a57 param_get_charp -EXPORT_SYMBOL vmlinux 0xef780588 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xef7da6a3 drop_super -EXPORT_SYMBOL vmlinux 0xef7e2800 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xef91eb4c fb_show_logo -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa4de0c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefbf46bd acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd188ab serio_interrupt -EXPORT_SYMBOL vmlinux 0xefd4da10 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xefe6a0f0 pci_request_regions -EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xeff7c0c0 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xeff9e40b ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf016480c nf_getsockopt -EXPORT_SYMBOL vmlinux 0xf0242839 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xf034466d ps2_handle_response -EXPORT_SYMBOL vmlinux 0xf0498bb7 scsi_host_put -EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf069c89f del_gendisk -EXPORT_SYMBOL vmlinux 0xf07529c5 tty_lock -EXPORT_SYMBOL vmlinux 0xf0759e02 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf090fcd8 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0b736fd kthread_create_worker -EXPORT_SYMBOL vmlinux 0xf0ba6834 page_get_link -EXPORT_SYMBOL vmlinux 0xf0be767c notify_change -EXPORT_SYMBOL vmlinux 0xf0d545e2 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xf0f2c946 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf102efc8 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf113b0dd dump_emit -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf1224015 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xf14a6dcf devm_ioremap -EXPORT_SYMBOL vmlinux 0xf168b9ee qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf1818453 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1b6b94c scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xf1c40056 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f45e32 sync_blockdev -EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf214995a register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf228edc4 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2497e3e phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xf24f9e5d pci_save_state -EXPORT_SYMBOL vmlinux 0xf253dc57 load_nls_default -EXPORT_SYMBOL vmlinux 0xf264784d vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0xf269b7f0 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a2b620 rio_query_mport -EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2bcddf0 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d17ade nf_log_register -EXPORT_SYMBOL vmlinux 0xf2d707b1 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2eb0775 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf313aafb poll_freewait -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3257249 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0xf326b96d __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf37eaee4 neigh_update -EXPORT_SYMBOL vmlinux 0xf3818ac2 dquot_resume -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf39038b5 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3bdfd51 simple_unlink -EXPORT_SYMBOL vmlinux 0xf3bf048c vme_bus_type -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f1388b udp_poll -EXPORT_SYMBOL vmlinux 0xf3fc6e75 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xf405ed3e sock_recvmsg -EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf455135e mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xf46eb146 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf492b344 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xf497c715 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xf49ddc96 eth_type_trans -EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bb867a __block_write_begin -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cbb192 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4df4837 dev_load -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5159d6b sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xf526f089 do_SAK -EXPORT_SYMBOL vmlinux 0xf52c2430 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf542bc17 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xf56b843f register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5982082 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5aab323 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xf5bb777e blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf5c10830 fc_remote_port_delete -EXPORT_SYMBOL vmlinux 0xf5c721d2 param_get_invbool -EXPORT_SYMBOL vmlinux 0xf5cb7d32 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xf5dca629 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xf5e6d75c dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f9940a mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf6175a7d arp_send -EXPORT_SYMBOL vmlinux 0xf62be0e7 napi_get_frags -EXPORT_SYMBOL vmlinux 0xf62d282f netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xf6366673 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xf6369247 ata_port_printk -EXPORT_SYMBOL vmlinux 0xf63adb2c fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xf63e10ec netdev_err -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6480ba6 add_to_pipe -EXPORT_SYMBOL vmlinux 0xf6563f13 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66f6a00 netif_rx -EXPORT_SYMBOL vmlinux 0xf672a6aa pci_assign_resource -EXPORT_SYMBOL vmlinux 0xf679b467 dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69c4244 devm_free_irq -EXPORT_SYMBOL vmlinux 0xf69e7c5f vme_irq_handler -EXPORT_SYMBOL vmlinux 0xf6b4d953 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xf6baf668 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xf6bb90b7 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xf6bc97ba xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xf6d4b855 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xf6d4e3cf softnet_data -EXPORT_SYMBOL vmlinux 0xf6e2ac39 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xf6e9bb82 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f6736e eth_validate_addr -EXPORT_SYMBOL vmlinux 0xf6f95b3f xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70a153a xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xf70eed5d bio_put -EXPORT_SYMBOL vmlinux 0xf7139292 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xf71f67c1 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73fdff5 bio_split -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75b9106 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77940df param_set_int -EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7a2163a ps2_drain -EXPORT_SYMBOL vmlinux 0xf7a68a10 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xf7b2353f dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xf7c4ab28 consume_skb -EXPORT_SYMBOL vmlinux 0xf7ccbcf5 hmm_range_fault -EXPORT_SYMBOL vmlinux 0xf7d785db flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf8052c64 nf_register_net_hooks -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 0xf81b7d10 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf835a499 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xf83a9c7a phy_read_paged -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf854a494 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf859047d elv_rb_add -EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88c3b7d dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xf893db79 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xf8ab9ef1 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8ce0ecc __frontswap_test -EXPORT_SYMBOL vmlinux 0xf8cec92c security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fb3d4b devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xf9011bb4 inet_getname -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94dcfb4 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xf94fc70b blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xf958911b scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9792653 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xf983414a misc_register -EXPORT_SYMBOL vmlinux 0xf986175d nobh_write_end -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9bcb77d skb_queue_head -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c50360 sync_filesystem -EXPORT_SYMBOL vmlinux 0xf9f7fbb6 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xf9fa744c sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xf9fc7d3f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfa1b603e ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xfa1e4aea dcb_getapp -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa3dbb23 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xfa40fbfd ata_link_printk -EXPORT_SYMBOL vmlinux 0xfa42a7fb input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xfa539fe9 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5becbf skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xfa688585 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xfa7164cf agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xfa77dabc kdb_current_task -EXPORT_SYMBOL vmlinux 0xfa7bbc12 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0xfa7d590f mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa9f387f tty_register_driver -EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0xfaa40aca dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xfaac6709 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xfab27b02 touch_buffer -EXPORT_SYMBOL vmlinux 0xfabad9c3 get_dev_data -EXPORT_SYMBOL vmlinux 0xfac40580 agp_create_memory -EXPORT_SYMBOL vmlinux 0xfac85bcd vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfaef98f5 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xfb0e53aa __napi_schedule -EXPORT_SYMBOL vmlinux 0xfb1305aa bdevname -EXPORT_SYMBOL vmlinux 0xfb1f1596 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb4fcd67 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xfb51f4a8 __put_user_ns -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable -EXPORT_SYMBOL vmlinux 0xfb74877a input_allocate_device -EXPORT_SYMBOL vmlinux 0xfb8cf028 sk_send_sigurg -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 0xfbc749d5 __free_pages -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbffd43a seq_file_path -EXPORT_SYMBOL vmlinux 0xfc05bab0 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xfc10daf0 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc35b85a dev_printk_emit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0xfc60b7ed skb_free_datagram -EXPORT_SYMBOL vmlinux 0xfc655b68 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xfc79b9a3 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xfc7c695e ip_ct_attach -EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock -EXPORT_SYMBOL vmlinux 0xfc83863c param_set_bool -EXPORT_SYMBOL vmlinux 0xfc8a8d95 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xfc8ca517 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type -EXPORT_SYMBOL vmlinux 0xfca95087 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xfcaa80e8 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xfcac20cf pcie_get_mps -EXPORT_SYMBOL vmlinux 0xfcac4f65 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xfcb09759 iput -EXPORT_SYMBOL vmlinux 0xfcb2bc3d inet6_del_offload -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce31205 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf35e18 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfcfb05d9 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xfd192fc2 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0xfd1f25ff jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xfd2f0cf5 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xfd3eff15 find_inode_nowait -EXPORT_SYMBOL vmlinux 0xfd6ae599 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xfd862c18 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd94814e complete_all -EXPORT_SYMBOL vmlinux 0xfda258ea amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -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 0xfde981ed dev_addr_del -EXPORT_SYMBOL vmlinux 0xfdf03bce ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdff9954 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4c142b xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfe51015c done_path_create -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe612b9a scsi_host_busy -EXPORT_SYMBOL vmlinux 0xfe642070 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea13390 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb7dd19 scsi_print_sense -EXPORT_SYMBOL vmlinux 0xfecae1bf __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff15a0b7 build_skb_around -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff641b7e netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7132dc d_invalidate -EXPORT_SYMBOL vmlinux 0xff7d3cc0 cdev_alloc -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8b518e acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9ce143 dma_ops -EXPORT_SYMBOL vmlinux 0xffae8f80 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffd4fc01 deactivate_super -EXPORT_SYMBOL vmlinux 0xffd5c3e2 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xffdcf1e6 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xffe604fb security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x19711697 camellia_xts_dec_16way -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 0x6f3a8de5 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x938a969b xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr -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/glue_helper 0x03883cd6 glue_cbc_decrypt_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x5cef9ac8 glue_xts_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x6e78079c glue_cbc_encrypt_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8b2ff305 glue_ctr_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xac48ea63 glue_ecb_req_128bit -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 0x2eca2c6b xts_serpent_setkey -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/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc -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 0x2c7b3458 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way -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 0x008331df kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f7ecd3 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03e7a106 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x058a7a77 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0770c901 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x083216b4 kvm_mmu_new_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0910226b __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09bf12e3 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c2c9cd8 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d68541d kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d76ca1c kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x116fee08 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12aa1ea4 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x139483e4 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14592191 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1598123c kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1664aec7 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18a52d0d kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d6e28b0 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e521cd4 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fb07912 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25656e89 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x258bac66 kvm_put_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x270f3e61 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28902e36 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x297f27d5 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2980fdfc kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5dabea kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5ec9da reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e088753 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2efb7206 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f0edf39 kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f1d8c55 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f783022 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f9f5180 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3376bc04 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35bd5946 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35cfd694 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x360a9e5e kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39a332ab kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dbf102e kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dff7ec2 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e665421 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e6fe83b kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea68f0f kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4038c466 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42343b63 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42e0840c kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4392f342 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43a03a85 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b3544f kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4532a5d3 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4571454c kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46769fdd reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4752b2a5 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x489d7450 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ac148fb kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c3a275c __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ec866ce kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50d13de8 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50ec7372 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55bbaaa1 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5658a217 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58f8860b kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59b295f9 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e51775 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59ffa7a9 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a1297d8 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b27495d kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cccc641 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5df9d607 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fea43e4 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61cda74f kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63eb66dc kvm_lapic_switch_to_sw_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6413f83b pdptrs_changed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x649572a9 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65880ccd kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68c5da2f kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c9fa0ab kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f46d85d kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f47b7da kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fc6e675 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fd11cc3 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70e48c6b kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72d22697 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72f19b62 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771d17df kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78417517 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a879639 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adf8a40 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ebe33b7 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f6e4ac8 kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f85c30d kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81561758 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82bc38cd kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85640684 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88c7ccbc kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d6765f4 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f1e8917 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9215ce01 __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93cd1717 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9475214b kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x966a001d kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97ea71f0 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b739ef kvm_mmu_invpcid_gva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bc70ac0 kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bec28b5 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c401033 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f1bc783 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f9b6bd5 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa01ed941 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5525334 kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa659977a kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa72397ed kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa866cb0a kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab7b0158 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadfe204f kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb07b2821 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb133ee1b kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2104a36 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb261d0b3 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb406caa0 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb450b00c kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7c05581 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbba1ea2b kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbce7282 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbcfe02d current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc8e5ab5 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc16565c1 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc325a5f1 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc33411e2 kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3e4a7d8 kvm_load_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc527cc89 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc570496a kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc62b4c69 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e22ab3 kvm_clear_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc829fea0 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca740158 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb74a6f7 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc4676ec kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xccd919de kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd8b6ab7 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce9cd682 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd45f4b4b kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd505267f kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6d87f6c cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd874a186 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd99362a0 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9ec8449 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb786d7e kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb9b9ed1 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc1a1f7e kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdebd5067 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xded6a4d1 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf40ce74 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf67e37a gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe13c3c87 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d55d6e kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2174d69 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2351c4e kvm_can_post_timer_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe28fd1ea kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4c7e102 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4da06c2 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe586a65f kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe69f1046 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8358467 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe895b335 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8f6cbe7 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe98f689d gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea0e7f69 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebe4afeb kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb08fcd mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed32fc3b kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee17aa83 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee6d76f7 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf46a8604 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4c6129f kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6269693 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6e9a5a9 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7dd47d4 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa5cf6ac kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8e4ba0 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff50f44d kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL crypto/af_alg 0x10a75030 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x1d2531f7 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x1d3c861f af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x2cda320e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x440163b4 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x53ebaa1e af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x5b4a6222 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x88767dba af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x9c013af7 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xb39c2d77 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xb6cb5556 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xbc0eb7cf af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbcfbcf32 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xd0d14498 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xd3aef184 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xe1db5013 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xe27af1fc af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe9d57ef2 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x3ca42c36 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x663fd3a6 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6fc434c5 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x788beb4c async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x680ce963 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6d74dbaa async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3937ca22 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x88c4d610 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa20c1b99 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfae319eb async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x780b5932 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf63b80d6 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x430bfbea blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x1c8da6e5 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x88c65bd0 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt -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/chacha_generic 0x2e76bcde crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x43925be4 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xa206cc9d crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd349ccdc crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x287daf79 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x29a8d529 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x307706ca cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3d38c4db cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4ebb6ca1 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x8add9e97 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9d08c7be cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9edd0988 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa96f73a7 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb159d1d8 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xb1c97ea6 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xeaa5e871 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xfa38e7ec cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ebfd38d crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x16f6e017 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x17b9276e crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x18b26aee crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x253331d1 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3a1fc31f crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x59eaa67c crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x63d248e1 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb1ffac59 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd8c84f89 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd9906050 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe49df6c6 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe785cb35 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xedef4932 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x251e003e simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9d99f5a4 simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xedf64908 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf4718126 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x11879ee1 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1d6d1a51 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcd33c621 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbee0d56c serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x1011afa6 crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x327a1314 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xa61f5227 crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x9e65e63c twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x067e8db4 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b34ad94 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x138de882 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b239ad5 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b8118e9 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6096ac09 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x633521e0 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x649a85b3 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x80668521 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8258832a ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x85e52b8d ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97d173f6 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x98cedfe8 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5e91b6a ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab3a32a9 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab3eb50f ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb6f9e34d ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb9b3bc72 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbc9a9415 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd836a427 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe280fa2c ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe8e835f6 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xed383c43 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xefb44652 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0438ccb9 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x077dc34a ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0cc8debe ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x17ce0292 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x245990ef ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3135717e ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x34ea5137 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50c58cd3 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x637473ef ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73a9bed3 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73fc7945 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x777fbfaa ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x82bb608d ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x923601da ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96bf09d6 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4aae54e ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x11dc22a4 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x9505db66 __regmap_init_i2c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xb5c87aa9 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09114df5 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bbb472d bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c27e261 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3714e17c bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39697c18 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6083befd bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e3a10d3 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x774bb87e bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8072b177 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x841e0af4 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84c55702 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c6bf91b bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9387ccbb bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e370176 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa59ceb01 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xacd70c9e bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xadd53cd6 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2045c71 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2e4cd9d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe522d202 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf27115db bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4597818 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf578d4e1 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5a69567 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x08c57824 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0e007522 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1bdf6c03 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x47e4d641 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x73540e66 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7d676397 counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa33d1eac counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa9d9bec8 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xab98322e devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb8cb963b counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc0c26a2b counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd24ac83e counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf9d5c2f7 counter_signal_enum_write -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 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 0xe4cc7696 sev_issue_cmd_external_user -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xedb70200 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0018870e adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x008ab212 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0562cd83 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0983e8d4 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f071aa6 adf_vf2pf_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12b8fbb0 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x130091a2 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x148e3298 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19096d1b adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e3d23a3 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2469e084 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31c3eead adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x321c7e44 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x466cffb8 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4be44dda adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4eade48d adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5261fa46 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ed61e14 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5f336b77 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x632db218 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74b2c52d adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x761d6432 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x775a9cdb adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7df93bbd adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x86079e74 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87420084 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x89b70329 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ea28d35 adf_vf2pf_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9cad5a3e adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa55d7585 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6fc3d1d adf_devmgr_add_dev -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 0xced8c722 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd34fe4a9 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdb9f1bbe adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe3048678 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe5e851ef adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe8fbb12a adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1df8580 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf95f4a89 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x0d0ade0a free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x24b0f877 register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x788bd3fa dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8f3c8e0f unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x99188a9e 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 0xd1bd316a alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xe6fececa dca_add_requester -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x2a7ef360 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7c4dcb73 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x20f60a82 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4947dd0f idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x59ba3eae dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7cc47039 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x92681c99 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x92ffa186 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa46dd0b1 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x523a53c9 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5b8b61c0 hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x814c7f4e hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd8a3025a hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x43ec814e vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x82d662c1 vchan_tx_desc_free -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x86b2cee8 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc8ca54fc vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd3b8fec7 vchan_init -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xdfe933c3 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x23062d39 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x43f1a310 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4b7265d9 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63de3082 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b95e8d9 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7195f6b6 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa2163be2 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa71a5097 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbd88fe6a fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbec04706 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd8dadb7f fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xddd820d5 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xecabbe19 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1550b4e2 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x460142a0 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb0774f7a gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc716ceb1 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf3875ece gnss_register_device -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x4c2b90fc bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1832ff08 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4518573d __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0df67394 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ec4fcc7 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x245eeab5 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b3bacfe drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2fc6fdaf drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52cfb075 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5409042f drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5aaac27f drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6af67806 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x707f8d9e drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8049e0ad drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89518cd1 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba3005de drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6f64433 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd009225f drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe815d227 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb404a31 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x10158d81 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1fdb6f39 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34fca8da drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4729e384 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x691b6732 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x712c951c drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x90d7b059 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x0c18727e intel_gvt_register_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4fe0c599 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xb0d3b431 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xef49b7c4 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0081bce2 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09452b0f hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x14c7baf4 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x244594ab hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26e1c408 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x34ec0d9d hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fd62aa4 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x49369859 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b5045a0 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c9f69e8 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x526ea317 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de4eec1 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x60173d49 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x64613ec3 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a0ac1f2 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c68d4e1 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82480219 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x88b41ed8 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e49019a hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9122da8c hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93127ebc hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x96175152 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9834ca4b hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa58ea52a hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb71f6aa7 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd14cc9f hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc18d9e38 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc24719b0 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2abe158 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc40f2d01 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca3829a3 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbd1d7a0 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd87f872 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0385646 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0809c28 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9db949b hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbb43d96 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde15ac1c hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5569cc6 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5b05b9f hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe73a5ee5 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf564f5a5 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf622abfc hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9176431 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0ff58010 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b682800 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x34325354 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x37c3d436 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x77a2ce24 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbdcb635b sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc577f055 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc8f96321 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf2566c45 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7430ed95 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x178f76f6 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3b82fda4 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf247519e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x491f2763 i2c_dw_probe -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x99b33555 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfab30028 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x2465a120 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0651f896 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x07e3271d i2c_client_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x117b95f8 i2c_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x28aa1a6c i2c_bus_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x293555a1 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x31893f73 i2c_match_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x373b7d40 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3bc02969 i2c_adapter_depth -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3daabad8 i2c_acpi_new_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x401c4fb6 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 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5238483f i2c_new_probed_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5d316814 i2c_new_dummy -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6011aed2 i2c_for_each_dev -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x60806523 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x64a778ed i2c_new_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8fede05f i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x98544a44 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbd3bb2c5 i2c_get_device_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc83761dd i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcf75c1b4 i2c_recover_bus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcffc2df4 i2c_adapter_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd13e823f i2c_new_ancillary_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd53517fb i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd9790356 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf42033e9 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf7f608de i2c_parse_fw_timings -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1a8aba53 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3d650c4c i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xca737c8d i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdf6a6bf5 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x80f682f8 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1911331b i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ceb076b i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x24d158b7 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x25b7e985 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b476843 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a170a13 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5668f1f6 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6af5058d i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9e1951d9 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9e964508 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa18f906d i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa1d408dc i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae7fbda2 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xafb5ddc3 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb61187a4 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9a621a0 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbdcf22a8 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc16daea5 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd387ea32 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd480e090 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd805d138 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe134ff22 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe2055290 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7359b0a i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb141bfa i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x9292f49f input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe29b4f0a matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x13d5694f icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x28a1055d icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x373f7977 of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x64aae7b8 icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x69c76c7f of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xbe12c7ba icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xce670841 icc_node_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd65fc704 icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd721c89a icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe02e1800 icc_provider_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x414c3e7a ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b688a6e ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4c61f023 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5cb623d5 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x743cf742 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76e1e1d6 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7ab04824 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xad6ebb8c ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca7c7cc5 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class 0x2bf77d48 led_classdev_resume -EXPORT_SYMBOL_GPL drivers/leds/led-class 0x30f8d1e6 led_classdev_suspend -EXPORT_SYMBOL_GPL drivers/leds/led-class 0x3f2bc77d led_classdev_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class 0x89cc315f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class 0xb14cf7d4 led_classdev_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class 0xd26d2663 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class 0xeaf090dc led_classdev_notify_brightness_hw_changed -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/mcb/mcb 0x00d6f21a mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2c17f4b0 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3283e722 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x44dc2e78 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4a153f47 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5e5d74fd mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x638cca12 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c0521ee mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b33f013 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x94fbc5ad mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xab3471ab __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd2d781be mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe26eb349 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xed96309d mcb_device_register -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x037a7e02 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x044fcc7e dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ae1c6c2 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3d2b9e09 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x437a383a dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x472333d8 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a8d29a2 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d20bd2f dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b7e0a46 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7061fdb3 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x76d06f29 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ca01ca1 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8dd15d3b dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7d316e3 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb155fbf8 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb667058f dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xe176623d dm_cell_put_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 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 0xe6dbc35e dm_bufio_client_create -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-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 0xa3432e98 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xad012b06 dm_cache_policy_unregister -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 0x9328a7bf dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd03e5d3f 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 0x27dda9e5 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x31e35052 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x90f2d233 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa59d2e94 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf3a37794 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf44792f2 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/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0d7df6a6 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x30c37cc0 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -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 0x5cf0d0bb dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -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 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x056d310c devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06bf9dc2 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e786222 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26d26973 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ff67716 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c1381c0 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a63d6a1 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x643a4983 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72547013 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae2a5ebb rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb2538e45 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3b3f671 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcc33174 ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf43a29c4 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4449361 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf634a392 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7cc4a57 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe3a2536 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0b60a4b2 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x382d9127 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x604e436d pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0da64436 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x260f294d intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x44decb27 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xad5a3917 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xc565aae4 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x131ba8e8 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc2a18e30 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd5fa5300 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3051ceac cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x305c12ec cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e080856 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4298250e cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54eb5d85 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59cd9f37 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cebd9e1 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7364d3a0 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73690fe0 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8bd5e214 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8bd83e54 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x930095a4 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x930d49e4 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99fd9039 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa4818e59 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa48c5219 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9a7796c cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9aaa52c cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc8e0ff18 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc8ed2358 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd03588a8 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd03854e8 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7b49355 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7b94f15 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeeea43b6 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf43781de madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfa926460 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfa9fb820 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0a72798b mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6cdc2380 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x949312a4 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc626acec mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd4295984 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf54f47e2 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x45213716 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x74c69015 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75e82b29 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7cae7390 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e3c4e66 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc180d192 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3e51f48 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd14278b9 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xda0b8553 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb5cb6e0 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfe80dd80 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x33e86fad pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7ecc08f1 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0bb1d9e8 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x19aad91f pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1de7c7f7 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x77c6c611 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xecc7d0f4 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x405a88b3 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x558b063a sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x75506cd9 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x92d98d0b sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x96c81417 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1b2c4942 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa25d1e47 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd05e31d3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xddb9b4cb am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x15da15f8 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x503671de alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6c4b247b alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7ddfb7d4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fcaaea9 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x813f6799 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd5878526 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x00384a8b rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0da8180a rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1bf806c8 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1db5985f rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d4fbe71 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d589d9c rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f8e4184 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3ab3fef8 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d6fac96 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51969792 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f58527c rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x71a4a4ba rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8646e4c2 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89a625fc rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8f7a37ae rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8fcc43e8 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9172f662 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x990eeba6 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99b69841 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4bdcc85 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad75fe58 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb6c38376 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcf46f1d1 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6be91be rtsx_pci_add_cmd -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 0x00128df8 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x105b4d7f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x50e0ba81 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x56c6c79e enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7e1d95b3 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa1980ce enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbb3ebff8 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6ce660e enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x193e6a1b mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f0f62d5 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f974c0d mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x234ec450 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2e09c2f7 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3557ab2e mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44ec7edd mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4b47f6d2 mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x540003fc mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x56f748de mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5cc47a80 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x628c54d2 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x633cc692 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6ad77095 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6ce3dce5 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70686960 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7afa1c65 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x861d7c21 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8da9edf0 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8fb19dbf mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9055703e mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa00fa115 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd8537adf mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdb82ab1b mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdcb54330 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe38fb586 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf1e2d827 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfda6a40e mei_start -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9c847b7c arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf7ac23b7 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1db20656 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5430e8b9 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x649ec83f unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd5319015 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xec24b1fe register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf9a76b3a c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0288dc89 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x048bfd72 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06e13325 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x078ca60c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x179b574f can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d66ad89 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x317f9741 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44350fdc can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4dff7dae safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53674a5d alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55688ae7 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57e651a1 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f041069 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78d5e06a can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88aea88a can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e338807 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8fb833cd can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9314bc1c alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9321b68c can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99df0790 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9170a6f close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad41462c unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd870df6 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc849ddf9 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9e618f2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf55bbfb0 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3fecac17 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xae92f320 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd4f790b0 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xebb3094f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x7473cbda lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x02c05602 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x086a0d99 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x25e21985 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x414369be ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5c383287 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6d496507 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7083f03d ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7417b7fc ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x79d49b0f ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x82e04020 ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x836d5c96 ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa446f8e5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc519678 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc357eab6 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd20749d6 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd6bd9115 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf18c1b84 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x083dd1ac rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0ab6cbfc rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x419f073f rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4aaf8098 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4b668a24 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5f79b3bd rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x928840bc rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x93b45394 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x97ce6a50 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xacbfe100 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcb3b34bc rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd8425449 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeb1faa1f rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xedb5fd0e rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfad158b3 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfaedc638 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06831d0d mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x071895c3 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x079c0da1 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aa62dae mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e7d4743 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eff80af mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12961179 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1300ab5a mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13030f08 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13ce4f48 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19ddbc84 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9faca8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f031d09 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20758c94 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2322328e mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23bf6207 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2547a812 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25f79c31 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2645d2d1 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26a4fa12 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27284f5b mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a198e17 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a900da5 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a9e457b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ca831a4 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f00c628 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3187d740 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b27725 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31c6a30f __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f0a6ed mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35ab7c34 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39f3cf73 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1ddc04 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a4ab65 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41eab4cb mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44a71e25 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49f394f9 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dad2817 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6f2560 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eae7073 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5172312d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532d1817 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5439b945 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57650b98 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x598e3458 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b819d0 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c31bdf mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a022d61 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aa64736 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ccc6b24 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e490b16 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61452284 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62727f4d mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63573670 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d433cb mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x670d5cac mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67824324 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6af4bb93 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b579a7b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7036401c mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ee449f mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75b8da10 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77391760 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c85a65 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7db7c281 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e70c39b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e8d6d46 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ee54ffd mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80219899 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80a163e5 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81daacb3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8472c6ff mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x853529f0 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86c28371 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87118efa mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8982289e mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8caa03c2 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc50a0b mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90dae9d6 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92aa7f20 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9302b560 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x939870b8 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9562c2d4 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c92d52 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e8e382 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98ab9236 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fcedf0 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa350fc9a mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa52cf588 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f56f07 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8732f07 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c946f3 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9c2a8d mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae253390 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf50a000 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb01493f7 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b5814d mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb127deb6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7610103 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e1e91d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9dcee3c mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7e34f3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7aed62a mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9edbe27 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca0ee406 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceec9757 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f67d20 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd23fbda9 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd670d98b mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9dda415 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7a8c31 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1d19cb mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf30658c mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f2662c mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb2e0938 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb4b5ae1 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7cc7bf mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef7bd415 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefe26584 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2376070 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf413841d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf84f3dca mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa9034c3 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbfea785 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe194489 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff01f39a mlx4_flow_detach -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 0x08da6b7d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1ee49b mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d78d924 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11ab8137 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12152bb5 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16504451 mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x229e648f mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23431ee3 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a57b897 mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a808f83 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a94e790 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c528220 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea2692f mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38681b24 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e41434 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43930c75 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44a6b8de mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4739c841 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x488901f8 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b8703f4 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec3e89d mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe32e68 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51762847 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5848492e mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597f032f mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59931a6e mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a1f8e8b mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bee2d30 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff96939 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b8f80e mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69311907 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e9357b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b80a8dd mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e5b758e mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73acbcac mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77108df6 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79480ec8 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9da37e mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b03ff65 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf976e1 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c0f194a mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f10fda3 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x809a6450 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x821d8cf1 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ae205a mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88badbcb mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d801d6a mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94bca763 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9553eea8 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a40ba27 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b3aec2d mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c17275d mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc92d30 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ef89731 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa35bec08 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6240b4f mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xade288c4 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d31760 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6ec7b96 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba6afe19 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc01fe61d mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5d2935b mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc61e218b mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc94d3eac mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc66a088 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce72783c mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1414162 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd18b52b9 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb82a5df mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd029379 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ab23ad mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54cc88d mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a79fe3 mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c8e33e mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9cb3e59 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebaf9912 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf01cd91b mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0843cfc mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2bb1a7f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf685f60c mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91823cc mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9d79765 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaa2bd36 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff25d5de mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff59382e mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/geneve 0x4bd1374d geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0e1e6388 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x42ea0810 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x879405bf ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb2e3be88 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc933638b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1c7b6deb macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8333c972 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9f197e0e macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb1f32f4f macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4dd329f4 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x7dc1969c net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04eb86a1 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0652835f bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x17c4c941 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d3c9f1e bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a4221ce bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52ad3fc3 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6569dbde bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x73b11ce2 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82b12b88 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84e9a91b bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86796ea0 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99d28f8e bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b786ba9 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9c3162ba bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0dc7365 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba89a07e bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed22bbe2 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbdfce69 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xfc2c07c1 mdio_i2c_alloc -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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4c8c056f phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x811640e6 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9dffda41 phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xab24f148 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x255aad63 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x48bb365a tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x57b14405 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xa3161604 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xc1d5171c tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xcecc58b7 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xcecf2a26 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xea36b59e tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xee86b42e tap_del_queues -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x01f16687 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x29aad15c mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x5ed0cee1 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x07d91003 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8d7dd037 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xed1ae929 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 0x02be418c async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd49cf906 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e088099 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x327607e8 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57fb8442 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d227eb6 nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x95cede10 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa4b2009d nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa6142cf1 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb677f252 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc0c835e8 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd1e26bb2 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfc614658 __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfea0f08a 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 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xf9b381d4 nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x25b3f56f nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x28d638d1 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x309bece0 nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c41fb0c nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7041653a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x783f66c8 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x87a8cf08 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8ae5e57f nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8dafa675 nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8c57d40 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe69873a9 nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -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 0xa6c87599 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x3f80dca6 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x3b39b597 intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x43491f5e intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x4f2fec23 intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xaf7cbc56 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x335cd4fc dell_smbios_unregister_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x77945786 dell_smbios_call_filter -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6be8247 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x3f085110 isst_if_get_pci_dev -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x47ee5eb6 isst_if_cdev_register -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_core 0x1c7565c2 telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig -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 0x5205e27a set_required_buffer_size -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x58784ade wmidev_block_query -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 0xb159ad45 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xa97a2c9f qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x19c10edb fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xdbecaa04 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03076d77 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0680b423 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bcd3030 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d7334bb iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d786170 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x211522ea iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x213f7399 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21e05856 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bbc03ac iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33296b60 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x350c6614 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dd77031 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x424b72fd iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x425f46dc iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60f4377f iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66cfb3b9 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67b7be77 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69575400 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a13cdb0 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a2d632c iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x737f5985 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bc541e3 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x843c1756 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91495001 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93239aab iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ea8f645 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f53389f iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2778590 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4ca2842 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadca7a33 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaeb657db iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3adc707 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb659f62b iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb945cb34 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2c8ffe7 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4d812d3 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb0bc5b9 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecfe2873 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4fdc4ca iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6039838 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbc72c00 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfea950c9 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x085dce04 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0cd6b2ce iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1137e83b iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e1f9f73 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d070899 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37f7027e iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c014b8e iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x434dd154 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e80baa0 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80ea83b1 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84b4e880 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a08f7f1 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9d56284c iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f25ea0f iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe88ccdf5 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4a15d8d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xffe4784c iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0056b4d5 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x019c1f41 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0519b1f7 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05a1a18f sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f0b0ae4 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1423a97c sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17df5b9d sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x215eb1e3 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e6a799c sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3086ebae dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x434506c7 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f89ea4e sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f8a8942 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73955cae sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x754bc837 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7635e29c sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7daec9f8 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f8605ad sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x88909997 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0de8782 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc78f7082 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2495054 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe5ada132 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfeac02e9 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01f7bf6d iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d1bc1f9 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x129521a4 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a63fbf3 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ab0468f iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x287c8c7d iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30a00dc8 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36a15637 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d43f557 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fadc859 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5582e955 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b44569c iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60cd6982 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c1c1557 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c7b8afc iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ea1e652 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x886030cc iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8aafa84d iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97f30486 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98e8eea7 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa34e0e65 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa41e5018 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5e995fc iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8647d33 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf980bf7 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb597359a iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc8e8c0e iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd812630 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd07d1dd5 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd163ae75 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4d71363 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdeb3225c iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0240321 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4b14ba3 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe855a4c3 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb88e3fd iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebb12a20 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf333637b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd18a962 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x098c99a3 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3940e475 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9bafc50c sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdab5589a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa52aec81 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x28d69248 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x655433ed srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c1579ac srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6e013124 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7936823e srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd9285f0f srp_remove_host -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1113f95b siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7e182a5a __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x96fd269b siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdd0f0c16 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe7cc61c5 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xff6f015f siox_master_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x022f5003 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x176d180e slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18327e36 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x313045d3 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x334f2073 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3fd2af5b slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x474e7142 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a083d18 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x623c2638 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x633c38d4 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e49977e of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x86be470e slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x88af4fca slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x900fc0db slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9669d625 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x984472ad slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e512132 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ee88cdf slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f72c2e6 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa9d767b3 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc819e6c4 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xceba7d8f __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeba9cb99 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec380947 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xecc8604b slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfe3ff173 slim_get_device -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x340bdfab sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6eeeb6c3 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb97f83df __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x11bac724 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x25d62ab7 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x411adaee spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8d26a22d spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa0323742 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf064150 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0f45393e dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7e674e00 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbd0be1c1 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcb22bcfd dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf8ba7444 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1c9fa633 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x55516467 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe3dbd05a spi_test_run_test -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x4b95749f ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x20f7ff2e fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6e75de9a fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd99b5b6d fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xfe62e49b fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x04a4ba8a channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x07ba4cb9 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0c3d3eb9 most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1139bfac most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x17fbbf2d most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3dc263fd most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3f76633c most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4ad8d388 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6c6efcee most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6eed6836 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7b4161a8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc0e11b94 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc9d15d16 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe9a3fcef most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x7499213e intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xb103913f intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xd900d899 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xeb9cd10c intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x3bfe987a uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x65424310 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa2887a15 __uio_register_device -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd3530338 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00ec16a8 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01dd3719 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0429e35a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d876755 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19cf6b7c vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e9fd976 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2161cfba vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21bfea3e vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24a630c0 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24b65674 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x282e48b0 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b9f9bf3 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2dc39c0d vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ac0698e vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c66e993 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57a3eae2 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x611a6cee vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x675e2095 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67b71ef8 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e784c17 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7380f6fc vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76894f10 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d8991a8 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e8a3d7f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x930e968e vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b6fe50b vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa529c90c vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab59c2a0 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab999d03 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf1f933e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf2afa8d vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc051e2ce vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcef76ca7 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe72682a4 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe937b961 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0f08900 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1b6081a vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4e47de9 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe37dca8f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0dd19fef fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x67e4201a fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x04b87d23 viafb_find_i2c_adapter -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 0xcd538333 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0d6b8224 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x211e98f4 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbd12520c 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/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x30635cf2 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x335b404f lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x76888460 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x88155fa4 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x934c7c0b lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa080f827 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbbf9d5bd nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ccfd1f nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0225b04f nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x043dde36 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06bd6df7 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094899d9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a052e4a nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4f1feb nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b002967 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c319487 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce35901 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eff88bb nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b7593e nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1407f76e nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17fbd6dd nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b39160 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197972ca nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c44ba6d nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c68ecbe nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ebe371c nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ef8680b nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x206ac381 nfs_submount -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 0x2801a27d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28a31d68 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x299622d3 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cd0ddc7 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d0f4d60 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e89449e nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x318c37c1 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x335c123b unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x355a6f4f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35f9e26d nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37b18588 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a3f169c nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c73b6a0 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f593a94 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6648a1 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x409c9a42 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4119a749 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41aa49b4 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x430ba06c nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4323b8a9 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44582e19 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x448e3c28 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4936350a nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a0f376 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bff54e7 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dd19f4b nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f5e66c4 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ffb113 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x593aa9cb nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59705db3 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2ffc8b nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6011c270 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60f3b6af nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x664fe437 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66b71441 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a6c899d nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70c0ffab nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73b9cf6c nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x772c2fda nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a87f5b nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77eea610 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da126d2 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80815641 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84c48cdc nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8729ebd9 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87dda413 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ca74ff1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f1e5792 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f3536af nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f688f6f nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x905f874b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9060e4f8 nfs_setattr_update_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 0x9499fe35 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ae50978 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5f78d1 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cd5ebd7 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e5b10a6 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec1f853 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0a85e27 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c832e8 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3bbd359 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3f8271d nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91f7480 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaacef1bf nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad0fd20a nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadee8f49 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae381ff0 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafeb6d20 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ef4df7 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb225d83b nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3167e55 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f859c1 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb779e9e5 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb83709b8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb92da25f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf534ff nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbffa2d1f nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0126663 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc21279c9 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc322d294 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc50e9742 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68d03ce nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a755ff nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc950af56 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca970062 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc2df77e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc722417 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcedfb8d8 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfc98c61 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd11db663 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f65195 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4866845 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd56dd840 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9204569 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd95c07fc nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd09440a alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0e3c550 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6d122ba get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe79bd239 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9416f25 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecefd7ef nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee4671ee nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1d84c35 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4575cd4 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7b78595 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c73759 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb593e2c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc9d3764 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x15b71614 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01a9b5c1 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02766d5c pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11612e0a nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15a40200 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22007e3f nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22748643 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x238639c3 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24f0efb0 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aca38c5 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x306a59f5 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x365dffe2 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41328c71 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4510b1b8 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4828b7be nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d5b1a74 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51b2a0ad nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54269557 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54e9bb25 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5887c52a nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59e79f0e nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5afa6806 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c89867d pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5651d4 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d64348f nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e365e80 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6eb807ea nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74eb8651 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b692e8b pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d2176a6 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x898dd953 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92f67170 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93aa9eb5 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9858f1d0 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b78dc4a pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9def9fdd pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e565787 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa34d1e8c pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4ca77e6 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6585b62 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa658772c nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a7e6c1 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab9dfc62 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb29dad8f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb64d95dc pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba8a789c pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd42bf37 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfc13d5b nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b76409 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5f9f67c pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d454b1 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd17585c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1ca5337 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc20d420 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75162d2 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea177d43 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf445c602 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6d3d799 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8fbee9b nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb0192b3 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fa3b8e1 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3259598c locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x445de86a locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x527a7c78 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x948e7e85 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a43976b o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23cf8b78 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 0x6214fa4d o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x636c3a9b o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x737de059 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x93a94f7c o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbdf72c9b o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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/dlm/ocfs2_dlm 0x1e1bca07 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 0x7e1a3f0c dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xab8984b5 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb602ed1a dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc9927dd9 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 0xdc50e27d 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 0x272a4133 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x42ce5772 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 0x81783ed1 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaa24ad05 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x303c2981 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x983d2ea6 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xa9391246 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb0a0a675 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb31d276b notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xbfbe60c8 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc7f6d635 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x004fd50c garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x0228fb5c garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x353d340c garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x409643e7 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xb61f477c garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xc66b7042 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x158a5b32 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x6a0fb01c mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x6e782759 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x7b72dd26 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xb298280c mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb7df647c mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x495c9bdc stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x9ae4e66d stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x497b04b1 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xcbb06e19 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 0x4cdc0a69 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d0c0ee4 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0df70a4a br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x16c7023e br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1888780c br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c4a83fd br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3872a7aa br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x49955210 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8087c345 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8f236a7f br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x90de9c54 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2d6bed0 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xab8f31dd br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1eb05c4 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb5b354a br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd64acbe3 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xee959d28 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf353fc76 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf9eab998 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/core/failover 0x933f61e6 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xc963d2cf failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xd2efe74f failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x013e4505 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x04ee1898 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09bafe9a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c45acb1 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ce5e543 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20451076 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29a82b11 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x379db899 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x419239d5 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x426fb184 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x594fde2b dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59deb3ab dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b78ae73 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x692ecdcd dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e563459 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7766d02c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b002303 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8866b69c dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a8b4af5 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c3beb0f dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x908499a8 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93a11409 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96d5691f dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x987a4f35 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3392034 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa488755d dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8360c89 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb186cdff dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4be50db dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc93a64d5 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xca7aa320 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb93db10 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3518fe6 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3f700f48 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76a1ee9f dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x88fb942e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x98b09dea dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf853b26 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xff6a66ea dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0119e27f dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x167499b5 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20c93150 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x218c50c1 call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32f93733 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4441e316 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c55cb22 dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60a61565 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x660d1ba6 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ccafc21 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99f5589f dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa9d6b0a8 dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad87268d dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb863b5d6 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2f7701f dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xccd012d4 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce2f3aa5 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbbdd944 dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe335b091 dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe835a282 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf04d84f8 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x00694406 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x0a73c92f dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x569beff0 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x5e56a5aa dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2d32fb5e ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2d492e78 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6222350f ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb428183b ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x3481353b 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/ife/ife 0xfb5a1d89 ife_decode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x015d1c6a esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x66e50047 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc1b86680 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x1a064d4c gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2ddedb75 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0d8f6fd8 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a162160 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1db4aa65 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42edc0bf inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x735d2753 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9be1037b inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xce74b7ed inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdc117cc6 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe7ee66b3 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1fdc941d gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x80ebf12c arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xce985dad ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc774b87a nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0755ce58 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3bab9300 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3fe228b3 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x985090df nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb3ed29f5 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc1d6ea46 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xdc32c335 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x31da55ea nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd3596ba3 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xeaf088f0 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x5711c3fa nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe6555861 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x419452d3 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x41ecbee3 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x94499029 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x99dfc01e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfc6e10ee tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2b67b63d esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x57730bec esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7f82b3bd esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4d88bdbb ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x521b7ef5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe312682e ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6b560485 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5b506785 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xccab4f58 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xa64f0550 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x298265ba nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x72ee2e32 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xad157e27 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd5f39326 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdbcd80a4 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x5b55625c nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x610e5709 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7211e794 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xae51b4b3 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa46fe643 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe0884c4b nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ae21580 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1dae9ca1 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2839565a l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44a3dfff l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4796a5f6 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e630a67 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a5e1750 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x799c483c l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88e2b3c2 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90eef12e l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91083536 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x934e6f69 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9eec6f8b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0dfc824 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc87da081 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6c974a7 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6c237c6 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb5bd4bd3 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d0c6216 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ee24bd7 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46a2121f wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fabba40 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69cc4cd5 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69fcbe6a ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a098a18 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8added4b ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b095844 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f9fad33 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa89a06cd ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb296ebbd ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf266d77 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6e1dde6 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8aff2f3 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe989f15 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x30cccd9c mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x49cd14c4 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x876d2631 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbd047f40 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf5e9196f nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12627146 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b6dedd9 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1fa84973 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 0x242fe88e ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x27ba21e9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x506d83f8 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x674c4c2b ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70255bda ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72dc971b ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80a95341 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 0x9bba267f ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e23836a ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8d3e577 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdb758395 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde8c6a02 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2bd1268 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb3dfaea ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xff3b1164 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3699d0ab ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x549c91de register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8ba6e46c ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8e220f4a unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7e0c35ee nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8e342209 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xad357c9a nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd02c6e6e nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfe86d469 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x038ee1f8 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03ee2927 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05742f4a nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c6f3e7 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x082ef748 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x098c3b53 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b478b5a nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b7e0593 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0beaa55d nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c1c9201 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fba4018 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17e5e006 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ae59728 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e25b754 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x202a2183 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2375bc83 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a570d07 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac7ef2e nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b76ef41 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dfe039e nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31c61479 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x363a74a4 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3860b522 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38791ced nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38d2f94d nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x395ee940 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43bd915a nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44260cae nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ca6c313 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d8589d2 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d8e8d27 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e5b68e7 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52682973 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56f6436a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57a603ec __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57d70a90 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ee187b1 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x636798b1 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x659b1d2a nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d12ca11 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e134f6a nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71664ded nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7247aead nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc1f52d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e8dc418 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84b40737 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8636df7f nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a135fae nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c3a4e53 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90f297aa nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x926a46d6 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9271e49b nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9320fe41 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x978e8023 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3be470a nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa58d89bd nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa60fa2af nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa819fecf nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadebff8c nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7360a7b __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb76f15b6 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb1ce75b nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0e6aaf3 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc17724a6 nf_ct_expect_unregister_notifier -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 0xc6736b03 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9d17267 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc15fd1a nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc800605 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1feef3b nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf7dea4 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde91193b nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe22a2a24 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe247a188 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4afcf85 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7316ec5 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7637763 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8ad6dfc nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb436ef6 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef29901a nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7d57975 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9a16ee8 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x5c1607be nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x0241aad3 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xad70d9f9 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1eb61fb6 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x458a995f nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x60f6489a nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f85f448 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c6ed879 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb143090c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb3654a6e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb9a67bcd set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xba648e6c nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xecad0dd4 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x96408945 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1d6aa31f nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7df21d03 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x84b67790 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcec9cdaa nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x18abb71e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2c9e0dc7 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa0012853 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb872561d ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc596e23d ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd912b085 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfca661b6 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8e7fa732 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7e7e5c8b nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x59e6de92 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x84caa530 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x86230c32 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11a2d19d nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ed2c192 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6db23339 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x74243fe8 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75318987 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fd202fc flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x83f625d4 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9f8da8a nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb009f0e8 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb72ca100 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6825f90 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf37fb70 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2319d9b9 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3e687b43 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6c8fe9b0 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x75ff3c8a nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb5b54d76 nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf3d1139b nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04db74dd nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x117f5695 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3252080f 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 0x3f727a52 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41b8b486 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5caeb638 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x706fbf5f nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x70c89668 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x774155f8 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91bede1e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x969a8a96 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96e7c111 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0c42ffd nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd23716ad nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe36803b8 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea379e09 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1021ff27 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x39326a40 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3c8fa1d2 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68843ee4 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69aa4aee synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6e37388c nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90859b1e nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc780c9d2 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd43a26ab synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd55866e8 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe30ece3a ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x027d136f nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x125244e9 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14b135a5 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e65c760 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25b5cfc2 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25e690cd nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3213a6da nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x370f21fc nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a5bfc5c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b8f4461 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x571b232c nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x571cca1e nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59b9c9f3 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ed9e755 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6047d303 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x673a067c nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77d91984 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x860ad81e nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b7dd2ea nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c0f169c nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8dd48fc9 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99356200 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ecfe847 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad1bddaa nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb61fb121 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc68a2adf __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc710f155 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd023338b nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf32db7a nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea454a7e nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7fdf8c7 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9e87d98 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb2b87fb nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd9ed17e nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfebb123f nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x05277d83 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1ddf8156 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ba504a0 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x907cedbe nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd58c072d nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe0bf6b92 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x75c1190f nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb9a5c232 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd93ff213 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3896adcc nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x688bc3b2 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1ed9fe58 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2ba6769c nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x514d68db nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf3577a1c nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0211d494 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1e0cfbda nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3b7e42ef nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 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 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2554104f xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57cd7332 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63d2db8a xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73550de4 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a07487f 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 0x81e423e1 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8308a520 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93a76ed4 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9568b4be xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97d9a4da xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99ef1992 xt_hook_ops_alloc -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 0xbb72ddb3 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1d6c9f4 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd117f788 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 0xdc07a2ea xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd24d0cb xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdeb2ec77 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdf06ebd1 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee2a09d2 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef334ebe xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7267393 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x5f9610e6 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd4878941 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x04c31be1 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6a4ac9d2 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xcc8ce07b nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x972baaf3 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc4078197 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xea01ca63 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x65f45f56 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xee46f72c nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x22d9b3aa ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x389cb361 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3d9588c0 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6ab291cb ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x95387be9 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9f5e36ba ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x88fdc076 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xba73e567 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xda519bf2 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xf7426e28 psample_group_take -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x01757223 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x046eba15 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x054d099a rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x0bc2367c rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x128203a6 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x335e688f rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x35bb4240 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x494040a0 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x4b228f80 rds_conn_create_outgoing -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 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x80a2d78d rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x9149e18d rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x916ef486 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x931f8a1f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x93b8ee95 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x9b265a4b rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa737a906 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xa88e1b54 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xae6c5fd2 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xaf6ef912 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xb83a2039 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbed7c368 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5043bd1 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd180de6a rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xd1df50ed rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xd43df41f rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xe0d3bbac rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xe4d40724 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xf0babf1c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x492d0ffc sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4ea283b8 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x63e75157 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x9f286354 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x221c7c46 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x27a1e339 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x581c5626 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x68e82123 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x6ed9eddb smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x78ab1436 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x8681815c smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xa18c1342 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xacd4b79d smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xb9ba5220 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x049fc75f gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8de6e752 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdfb7e1ed gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfbb0df21 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029841ea svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02bff9ae __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d688f4 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ca5e77 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x068fefd9 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06bc5603 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0769aa6c rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b5219fa svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d399744 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e07230a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2493d7 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f8f2aee rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x126c8b85 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ed0b80 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14a2ca32 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155bd28e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d41df6 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e55db1 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1631b672 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x169a0212 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x169f711d xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16dd34e5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e2e9c4 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1899582e xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b4d15c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b4f61b8 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b5132bd rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c010af3 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0f96bf rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2031bfc8 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229a8411 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b39b75 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22f7bfcc svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231b1e12 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25104385 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e396ab auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273508ac cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275585a2 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b49a562 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb26c54 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e54ee67 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317c40fb svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a6c8db rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31d2f4d4 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3396dd42 xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a4bb2d xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d12e06 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3685e9bf svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39385850 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2cd1d3 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b43c7d9 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c6a5b84 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d026034 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e6bf082 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f3d844e xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fae4ccc rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x404c779a svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40c5059c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42f84a9e rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430598b5 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43e2597c xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44aee839 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4621fabd rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47425b04 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48081ff6 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4833a2ff rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bd7e4a rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c634217 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8953de rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50281d6f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508c8b79 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x531ae75f rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53589b27 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54641d54 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55bfc678 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cbbd01 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562fee91 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57512e9e xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57573023 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x587f63f4 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591071d1 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x594feb92 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59718e2d rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fc69ba svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b280228 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b38b1e8 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5cdf19 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb065cf svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfef9bf rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d69a6da sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9f2dcc sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f78eed1 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb5fd66 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615f3bd8 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61d0bff7 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f85245 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646528bc rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x650b7b05 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65bbff97 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d66ed1 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6600870b svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6791a684 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68696e62 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68bb3e7c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c51dd9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fc686f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a443858 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0a26c7 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0ed70d sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e44a403 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea29ada xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eaf30b3 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7078ddcf rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714c2302 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7162d40e xdr_init_decode_pages -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 0x7365f5b9 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73cc945a rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a095fd xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x763d0c23 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7852275b rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7973ea20 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b7c6a67 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d4f0292 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81632670 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823ce6c1 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8383481f xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x863d519e xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87526abd rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88987f73 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x899696d2 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89e354bd svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b8f3839 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e2f6585 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90544198 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9293082c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f680f5 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ce7646 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962b63dc xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ab49bd xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b5c2e4 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98900085 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9988882f xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1c406e rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb4c58d rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa059bc92 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa201c231 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a6c71c xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39db41e xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5030d4a xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e4064c svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f41b89 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77a7387 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f96ca3 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e1e797 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab14a6cd xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad3db679 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0ee2fe svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fadcc7 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb452dd86 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c1c135 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e89128 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7938155 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9c5083c sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba0b2b32 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbab9dc59 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc114f02e cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11b7193 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4cdc939 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62b5aaa rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc65a8172 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc74864fc rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7776875 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc786fd4b rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8fbc029 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdbf9e55 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd037fff0 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a05fb4 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2ca7c7b cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd674ee9f svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6c7193a rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7639ccf bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb174f35 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc7ffc70 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee4728c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04926a2 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1066f6d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe112b6ef svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe37c047f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe47c138f cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5535fcd put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe67552b4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea270b27 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2f657c cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaeb3418 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaee7601 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed383f9b rpc_call_async -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 0xef1c5565 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefdf4a0e rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b880bc svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0df8d7d rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0e49db1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3244144 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46c9f92 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d0d6fc svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf58d3655 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6146245 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf693d4a5 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf719e038 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf846fcf3 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf91ffbc3 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a95519 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb73fe09 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbf514e5 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc1011ee xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc39705b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc5fbad7 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf7440a svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf60f7c svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe5d0418 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9d1928 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb920db xdr_init_encode -EXPORT_SYMBOL_GPL net/tls/tls 0x1ca17bc8 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x44423562 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0097a43a virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x015bc565 virtio_transport_notify_recv_post_dequeue -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 0x0872d141 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e825c28 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17c8995e virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19712694 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1aa045c0 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39c073dc virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d1a4f0b virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49b84f6a virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x566de285 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x573322bf virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60ad72d4 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6641283f virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e6a14ab virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f5982f4 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93335ff7 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa28a333e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafb34d1c virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbbd9b461 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf1acd61 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc174ff67 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1fb1b7b virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2194da3 virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc24d9665 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc41ab57f virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4a5bb79 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc6cd759a virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb0390be virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0e08852 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdccb6360 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe69a742e virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec68f040 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0a81f30 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb9df20e virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfcbc7d22 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bdbba93 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22a0767a vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c4372ea vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49a11c6d vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5334e464 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6598ea4c __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8f5cee7e vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa36e8a30 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4fcea67 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa548bd13 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa81ed926 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe55b971 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2150f44 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2c354d8 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5a24e79 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec454685 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf46536dc vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf52de836 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ce53877 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x719a2b2e cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x76f8f12d cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce93b978 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe8d6f284 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1dfc1648 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x452bec5f ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x730a0497 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaca9fec1 ipcomp_input -EXPORT_SYMBOL_GPL vmlinux 0x001a2871 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x00335a37 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x003bdddf irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x004a14f1 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00b0480c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x00b6d307 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x00bce935 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x00cc58b7 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x00d022fa vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00dd880f fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x00fb776d dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x00fe50c3 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x0114022d irq_sim_irqnum -EXPORT_SYMBOL_GPL vmlinux 0x011cbc81 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0130fead wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x01427a03 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x014d2e7d ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x0158233a __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x016ced3a locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x0172eea1 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x017cee4d dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x019ac494 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x01b2e84e badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c30977 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x01db3f08 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ea30f2 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01f5f036 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x01fbc33e get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x01ff5e87 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x021389bf class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x0246f7be ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x024a674e thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x024b2e17 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0264c7d2 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x02880e08 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x028e76a6 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0296e21e nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x029b19df phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x02b021f2 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x02d8a2dc iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x02f34778 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x02f658c1 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x02f7e27a sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031bab4a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x032226ae tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x032ab11b blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0336549b blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x035e8aa9 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x038c60e4 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03ae0a94 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c402e1 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03f4e2e8 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x03f89e75 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040404e9 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x0412f9fc devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x04176dd6 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x041c90ee class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x0444a8c6 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x044d26d8 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x045aa207 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x045c13fd inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0477025a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x047b3200 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x047ef616 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x0488a6dd bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0496e14a class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x049929c0 hv_stimer_free -EXPORT_SYMBOL_GPL vmlinux 0x04b4c3c6 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x04ba62ed __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8c5ec device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x04cf820a bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04f706af blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0x04fb8f41 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x050c6fa5 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x051e47c6 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052dd3ef regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0556d1e3 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x056c33bc relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x0578a395 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x05ab9f07 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x05c82c04 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x05d781a9 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x05dd8ae3 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x060b1e8f blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0x060d03b9 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x060f64ef thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0616987d eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x0617fb73 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x062599e0 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0672c02e device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x0682ea4a nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x069d67a4 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x06b68952 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x06cba22b devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x06ce800b srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x06da4753 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x06e217c0 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x06e94a26 clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x06f46514 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x07048ae5 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x07236d98 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072a2ca9 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x072d79c4 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x072f233e sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x073844db fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x07549b91 put_device -EXPORT_SYMBOL_GPL vmlinux 0x075dfd69 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x076b80c3 tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x07756ee8 nvme_stop_queues -EXPORT_SYMBOL_GPL vmlinux 0x078bd1e5 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x07a6a445 bio_disassociate_blkg -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 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x07e797d7 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x07e7a24f regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x07ed0633 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x07edeba7 hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x080a712b kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x080b2906 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x080c115e dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x081216da ip_tunnel_changelink -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x082e2d65 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x084ac9da skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x0850cc09 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x0869a894 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x087eee8d splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x087f79df pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x08819a2b fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x08a60659 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x08ac7a14 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08d34ac4 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08de6a87 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x08e4c3dc bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x08e5144d gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x08e74c57 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x08ea7337 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x08ebb7bd devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x08f9a183 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x091838e0 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x0919a19c devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x091a9622 pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x092baf0d ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x093e61aa serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0966c33d tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x096b1b0d regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x097be4cc ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x098b5668 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x099474e4 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b63635 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x09c482e1 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x0a1e09ce mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x0a24e85b devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x0a457b27 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0a9bf69f spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a9c4856 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x0aa7bff0 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0aacce31 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x0aade9b4 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x0ac0b5e8 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x0aca0fcb __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x0acb9c03 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0adfbb0b acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0ae89e74 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0fea3c unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b200935 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x0b2b1046 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b724820 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x0b770d98 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b926c48 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x0ba77c2e skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x0bbccd9d iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x0bc05acf rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0bc62312 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x0bc7535d __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x0bf8fbed __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x0bfef8d5 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x0c0b0f9e pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c203270 vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c268862 of_css -EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c4d0b44 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x0c62e45b ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x0c6569b7 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0c6a3424 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x0c6ced94 vmbus_alloc_ring -EXPORT_SYMBOL_GPL vmlinux 0x0c73eafb devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0c7c4acf led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c8b686b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x0c8f9fe8 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x0cb96b1e lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x0cc6724b edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0cc91366 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x0ccc2471 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0cd8cfcc user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0cdf6203 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x0ce2acc9 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x0cf38709 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x0d031a3d bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x0d0f2ad2 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0d142d8e devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d44d4f2 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d675232 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x0d6a0049 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x0d8129d3 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x0d8b3f41 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x0d95c5d0 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x0dacdf50 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dcf4274 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de41e00 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x0e034caf sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e153692 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x0e2439d1 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e5b3f49 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e8b419a __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x0e94c967 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x0e94dcad device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x0e958437 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x0e9f3d5c phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x0ea670e4 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x0eb10e93 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x0ebadd6d ping_close -EXPORT_SYMBOL_GPL vmlinux 0x0ec2c0cc tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x0ed13da9 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x0ee04e7b crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x0ee50e2d posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f25fe37 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f39c688 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f9318b0 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x0fa86826 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x0fbad35f class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fc3c490 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fcd7025 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0x0fe16b41 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x0fe19ec0 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x0fe53d7c usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x100ed0c4 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101754dc tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x10326d52 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x103a7688 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x1067a050 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x10689ea3 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x106d8d2d skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x1071117b __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x10761d12 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108d7764 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x10a39dc8 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x10a4cd08 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x10af7452 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x10b2cc30 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x10c44ea1 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x10cb975e to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x10d7c6cd sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x10e867d6 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11056590 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x1112b67c blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x11155558 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x1123a05e crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x1125c570 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x11392042 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x115cccb3 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1177d197 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x117ac83f blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x1185c3bb pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x11a1db88 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a5c08f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x11b5d64c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x11be837b fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11c4c382 pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x11cf9ec6 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x11d42fc0 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f38172 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x121bf36f regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121dcd50 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x122d08e1 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123b7c16 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x123e9bd1 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x123f6c56 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1247d11e blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x1256e4d5 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x1263093c usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126dcfcc usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x12844444 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL vmlinux 0x128d6bd2 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x12b8fbe5 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12bfc232 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x12c00736 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12e06f42 virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0x1307310a crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131cbd94 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1363900b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13645f67 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a91d73 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x13ab0e15 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x13ab4664 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x13af9d22 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x13c37d01 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x13c80086 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x13c97938 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13e0140d dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f956de devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x1402227f usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140b79dd ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x141549af dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x146278cb tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x14652979 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x146eb91d srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x146f918d crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x14714866 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x14722633 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x1475d879 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d9bd6e device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x14dbd253 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x14df902e percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x14e8f21e mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x14f5ce7b crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x14fffe53 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1504fd2a ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x1532aba5 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x15371b77 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1559ee8d sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x15605cf7 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x156df7c3 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk -EXPORT_SYMBOL_GPL vmlinux 0x159b0053 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x159b2345 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x15ab6e6d transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x15d37e10 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x15e217a3 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x15fa376d __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16042ef2 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x160e6533 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x161083cc device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x161cb542 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x162e75b9 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1644d849 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x16459633 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x164a7226 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165a45bd usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x166fdacf nvme_init_identify -EXPORT_SYMBOL_GPL vmlinux 0x1673967b cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16b23eb7 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x16bae400 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x16c4d690 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x16c8da62 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16e44d1c syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x16f8c6ec rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1725a546 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x172b1dab pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x172ddd79 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x173441a7 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174d3a9f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x1775918c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a05f12 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17b47fd9 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x17c525da __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x17c5da83 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17f7361f net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x1821809d pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x184c61eb rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x185a8938 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error -EXPORT_SYMBOL_GPL vmlinux 0x189c131a iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x18ae43f8 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x18c25f6f wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x18dcc008 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18f7cda0 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fe1994 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x19037dcf fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x1916272a iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x191c76f9 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1925066a pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x1927c02c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x192836ca xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x192e5488 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x192ec8a8 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x1937377d rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x193a26a6 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1976df7a blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x1990bae2 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b48bbc tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x19b8d51f driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19bdc15e nvme_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x19be879f __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x19bea7e7 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x19bff550 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x19dbd8e2 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x19e57b8c sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ebd3d1 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x19ed850a handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x19f30c63 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a0faaa2 clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a11d1a4 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a2117e4 ip_tunnel_uninit -EXPORT_SYMBOL_GPL vmlinux 0x1a451425 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1a5168bd pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a66c794 setfl -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a744b5b crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x1a7f8031 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1a8c8e1d devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1ac4d19e event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x1ac87cd8 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1acdda6b security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1ad09aec fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1adabfae device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x1ae08185 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afd3d2c pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b035382 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x1b1d933a ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x1b299d0f phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b587d15 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b5f65b4 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x1b5f76ac blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x1b72cab7 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b80d74d sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9d1073 virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba8eb42 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bcac902 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf5ea78 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x1bf76d9c br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x1bfca2d7 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x1c1b08e9 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x1c2437cb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x1c33e228 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1c37fb0a fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1c4737db dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5c81f4 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c77b30c blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c797dfa find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x1c7d65ec __memcpy_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c974b71 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x1ca5ab62 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x1cb5e638 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccd124f relay_close -EXPORT_SYMBOL_GPL vmlinux 0x1cdd5a12 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1d1b150b devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2b1ffc software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL vmlinux 0x1d36afcd usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1d4912e5 cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1d58ca41 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x1d5921fc pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x1d5b2ba7 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1d5c2ffa ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x1d5cbcb2 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d88563b thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x1d98a333 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1db3b133 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x1db7de53 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x1dd772d1 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x1dddc5c2 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x1de6f33a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1dfb6919 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x1e025cb9 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x1e037b77 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0a8df0 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x1e0e20c6 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x1e11693c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1e1f29f1 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x1e3950d8 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1e569a8c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e5ce42a thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1e77f701 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8a962f gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea42665 ip_tunnel_setup -EXPORT_SYMBOL_GPL vmlinux 0x1ea5a2ab dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x1ea63af9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed2a231 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x1ed51b0f device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1eedbe14 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x1efc5064 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x1eff99e6 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0cfeee crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1f111a24 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x1f24c77a clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x1f256f76 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x1f2b63ba skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4bf152 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5d9a99 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x1f66473d sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f8dc6f3 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f913213 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x1f9c5a0c fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa327ad clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1faa242f dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1fb41ce9 cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x1fc3540d fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x1fd0d280 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x1fd86353 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x1fdce69a akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1fe32531 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x1fe3fbea serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1feec4b2 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x1ff854be pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x1ffcb543 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2001dc08 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x200d2fc9 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x2022a1ae __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2058bd48 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x2065d359 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20881000 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x208a6df6 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20a9b990 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x20d2797b virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x20dcddf5 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x20e30986 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x210e1b8b balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x213272dd tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x213f2d20 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x21604c26 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x2160a774 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2178fae7 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b18d3a ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x21b31eeb hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21cfca42 __vmbus_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x21dcb821 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x21eb65d0 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x21eccec1 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x21f2ae4c tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x22170192 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x221ab80a class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x22233fc5 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x224cb850 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22562b65 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x22718b92 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x22b46661 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x22c4fcbf devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x231b8ef5 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2327322d policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2352d643 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23915f99 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239b57b4 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x23a3f291 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x23aef110 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x23aefa9c pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x24102945 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x24107daf anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x242dcb0f nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x24315d79 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x2448ae20 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2468cb4d cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2475b04b raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f027df phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fe8411 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2504cfc8 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x25250118 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x25262d14 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253aae9b rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2586e66f acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x258af056 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x25925c7e gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a9522b devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25f68279 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x25fbbb0e devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x25ff4923 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x260c900a tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x261ee569 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x26247c0b debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x264110a8 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26537944 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x265b29c5 pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x26699e07 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x2671ab49 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x267732e2 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b0c61c ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x26bcfe81 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x26c403bc tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cd4025 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x26d90163 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26fba19d tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x27139475 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x271a4031 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x27281281 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x273a2cc9 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x274f6163 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x278b9c97 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x27a28645 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL vmlinux 0x27b12a1e iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x27b9e2f3 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x27ce8e03 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x27dfbe40 spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x27e8598f mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x27ee6e4e rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5dc97 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x28068200 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x28142ca8 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281c43ce pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x281caaf2 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2870045f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x2878f1dc pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x289a13d5 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28b27f9b irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x28f2785f register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x28f63a08 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x29017d55 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x290ec871 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x291c6662 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x291d5fd6 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x29246fea vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x29678e88 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x296c15e9 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x2979c2cf blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x297e94df vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0x2986797a transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x298d8f29 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x299e098d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL vmlinux 0x29b8eeaf sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x29ba8c95 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x29c1b028 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x29d35775 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x29da82ef __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f881a5 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x29fdb089 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x2a2b0ebc fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2a41b1d5 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2a4756be pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x2a48d3a3 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6b67ad ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a90e4f6 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ad1270a usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x2ad5e0ab ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x2ade0554 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x2b0e4046 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b20528c __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x2b2607d3 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x2b33c833 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4e3fbc power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2b55a306 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b7ebf6f input_class -EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource -EXPORT_SYMBOL_GPL vmlinux 0x2b84fcfc nvme_setup_cmd -EXPORT_SYMBOL_GPL vmlinux 0x2b852b41 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x2b862449 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x2b94bd03 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba72caf sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x2bb196ff blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2bc3731f scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x2bcd44f4 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2bce448c kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2becc7ac fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x2bf161c0 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x2bfeae3a fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2c1a94cc gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2c7f16 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c493d6d __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c54240b ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c875d69 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2ca7148b __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x2cb524c3 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x2cdf4ed6 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2ce7b470 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x2cea0f3c unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2ceeaa1b relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x2cff9864 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d33e268 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x2d3ba84c ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2d3e71a7 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5a8a4d debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d721ff7 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x2d8129f7 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db1a66f ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2dd176cd blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2ddbe515 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2ded18dc bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x2dff1668 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2e02f495 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0b5a05 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e472cd2 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x2e48df54 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x2e594754 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x2e796471 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x2e89a4c8 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2eae838c irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x2eb347fb virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ee41b4d devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2ee59495 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef5ae1b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x2f0adde1 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2cba4e fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2f35877b devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x2f391e39 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f532933 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f599b12 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6475bd power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f8bb5af blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x2fa449ae tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x2fa6c5ac blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x2faf28f8 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x2fb1da42 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x2fb4fd2d ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x2fb7ecfe rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2fc1ff1d uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0x2fe103f4 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x2ff128c7 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x3003ee63 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x30090007 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x30197077 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x30204119 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x302dc1e6 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x30416e4c fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x305547bd nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x3066aecd regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x306c8bd1 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x306f5576 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x307b3421 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x3080b993 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x308def90 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x30a0c61f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x30abfa42 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x30c4b280 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x30c761eb devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x30c9b16c uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x30ca8e09 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30d214fd devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x30d5775b dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x30d750f3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f36cf7 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311fe882 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x314063dd rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3140f6da ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x31622d0c fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x3164ae55 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3170e3b4 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x318070ea ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a3c70a wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x31accd92 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x31b271d3 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cf9130 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x31d89dec clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x32213003 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322b22df tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x323d7401 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x323e5155 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x32619618 dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x328ee213 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x32a46e37 register_asymmetric_key_parser -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 0x32c6c604 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x32d07c34 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32ec63b3 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x32f9b90a tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x32ff17ce regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33040fd3 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x33217a03 sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3327b4c1 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336c0dc4 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x337503f3 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x3377f027 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x338ac226 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x33dab77a find_module -EXPORT_SYMBOL_GPL vmlinux 0x33f0e7cf ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x341e4d73 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x343025ab clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3450d87f spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x346fdc7e page_endio -EXPORT_SYMBOL_GPL vmlinux 0x3480f4f2 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x349d38d1 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x34a4817a rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x34b816c3 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x34cae27e pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x34e21b2b device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x34f5118e iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x34fa9953 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x3505305c virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x35098449 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x3510dafc dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x3514c8c6 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x351d59cf __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x356c79b9 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x356d2dae syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x357f448f pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x35807c0f gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x35949afb rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x35a03dc4 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x35a19978 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x35a944e7 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL vmlinux 0x35af7949 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x35bba646 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x35d0e543 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35e227a9 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x35ec059b __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x35f09536 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x35fca483 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36134e52 cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x361418df regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x361609c0 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x361a6d80 irq_sim_init -EXPORT_SYMBOL_GPL vmlinux 0x361ed8a0 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36303c76 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x363692ad devres_find -EXPORT_SYMBOL_GPL vmlinux 0x364d0773 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x3654d014 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x365fa413 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x36780770 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x367cef25 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x368016e3 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x36879945 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x36881041 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x3695766e ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bdce42 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x36c030dc cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0x36c527ec nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x36cab14f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x36de1a55 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36ea52d5 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x37124b95 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x371a1b15 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x372dace8 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x374d61c4 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x374e02bd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x375184c8 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x37568103 nvme_init_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x376ff445 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x379ea0b2 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x37ab2d2e pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x37db0748 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x37ec682e led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x37ed4edc rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x382685c4 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x382848bd add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x383168a1 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3840d3ff debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x384d58f9 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x385066a6 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x3863b7bb pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x386e5489 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x3870f3f3 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3888d0a6 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x38b01d43 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x38b20014 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38b3e399 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x38b4e880 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x38c3bccc fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x38d6566d spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x38db2cd9 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x38e50b1b irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38eeb096 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x38f86743 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x39105ebb blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x3912baed balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x391e3790 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x392eac7d __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x39304ebd switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x393d3ee9 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x39430fdb pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x394a0331 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x394fa4d8 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x395216bb vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x396e2fd7 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x396e3fe9 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x3974f940 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x3980996d validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x399757b7 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x39a1463c __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x39b361ef mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39bf6f46 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x39d33d74 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x39d7e255 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x39daaef1 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e4628a sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a45b9f5 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x3a495122 spi_setup -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 0x3a5602c2 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x3a61eb5b irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a754438 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a93b371 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab1494c thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x3abf8886 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3b03544c gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x3b36f573 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x3b38756b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x3b3ed97a __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x3b466dba regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x3b734aee bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x3b7680d0 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x3b78463f nvme_stop_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x3b8007f4 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3b913623 __devm_irq_alloc_descs -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 0x3ba0456e rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x3ba8f033 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x3bc7106f pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be756c2 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfb08d6 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x3c00e008 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c1800b5 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3c28f0ba subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x3c33145c kill_device -EXPORT_SYMBOL_GPL vmlinux 0x3c3474c4 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x3c64bc1f devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x3c7a188f mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x3c8508e4 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x3ca6345a udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x3cc1ec21 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd27835 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3cd86c84 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x3cdc07db xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3ce5a625 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3d10dc34 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x3d17b5a3 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x3d233c46 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x3d299d46 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d7f02f8 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3da47100 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x3dc33f2b ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3dce5e3d ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd61112 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dee7bf0 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x3df0f293 devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0x3e3f2dac vmbus_free_ring -EXPORT_SYMBOL_GPL vmlinux 0x3e46680b efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x3e5d2310 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x3e6215ef xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e79b102 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x3e7daf1e iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x3e84c691 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x3e8bee10 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x3e8f50cc sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x3e8f7375 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3e928458 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eaf6af0 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x3ebcc923 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x3ed54538 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3eedcb48 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3f560003 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x3f576160 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x3f69cabb mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x3f76bd2c ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x3f7dff99 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fadf281 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fc1e2fe pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x3fccddc6 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x3fcd60aa shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x403abf1a cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4043f128 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x404ec728 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x4069b80a kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071a748 phy_select_page -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 0x407af9b8 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x4082812a is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a8a08d pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x40b19614 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x40dcf5bd watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fad799 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4107c929 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x410831b5 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x41216a6c acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x4128bab7 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask -EXPORT_SYMBOL_GPL vmlinux 0x41362b85 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x414ff0eb pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x415e7b8c __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x415f16d3 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x4162e844 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4172d32a exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x417dafb7 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419276d0 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x4197e189 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41be2ab0 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0x41c235f3 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x41ce6876 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x41dfa512 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ef96e5 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41f73c17 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x420d19dc tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x422c08fc dev_dax_probe -EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x4244826c bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x424b84ca iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426481c5 md_run -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42a93e28 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x42a9ef2a is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x42e34e41 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x42e705d0 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x42fdb983 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x43070c11 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x430923db tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x4311b531 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x43168e42 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x431941ee sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x431cd5e0 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x4321e749 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x4351cd5f driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x435b16f0 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4362b19a pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0x43642c28 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x43688a38 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x436a7f04 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x436b2531 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x439f671e __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43adaebe mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x43d28181 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x43d33bd2 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x43ea09e2 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x43ec0f4d skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x4404864e acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x4409359c __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x44176622 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x441a50ca genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x442a4705 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x442c971e devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x44329f5e ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x4434301c usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x44556291 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x44755b2f validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x4481a75a napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449d8799 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x44b38dbe irq_sim_fire -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44cab5b9 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x44de0beb fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x44eeb219 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x44ef2f10 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x44f2d887 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x451f7006 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x45220199 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x452773ec arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x45341279 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x4542f367 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x454c00b4 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45593f1d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x45600600 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x456ce218 devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45803baa pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x45892caf fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x458a259c fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x45b7a75e led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x45f982c2 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4603fc54 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x460ed20d __class_register -EXPORT_SYMBOL_GPL vmlinux 0x460f8694 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x461429f6 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x462d0e70 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue -EXPORT_SYMBOL_GPL vmlinux 0x466f95b0 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x46710727 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x4682c3c0 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468ac526 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x468f6f03 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4690d6be memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL vmlinux 0x46a43308 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x46a61ec5 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x46e2c3a5 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x46e6b2a3 cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46e7aa85 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470345c1 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x4716b4cf ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47583bbe loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x477a76eb mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x47857720 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478b9a29 udp_tun_rx_dst -EXPORT_SYMBOL_GPL vmlinux 0x47914c69 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x47927eb5 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4793e8f5 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x47972fa5 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a68cc9 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ab9db2 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x47acebcd tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47daf9c0 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e2a5d3 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x47e33137 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x48008429 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x4810bafa wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482c9825 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x483be050 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x484e70b9 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x4856b4f3 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x48595d9e pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x485c3653 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x48731f2e devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x487a64ef nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x488b0f0a ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x488ea941 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x4899ea70 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x489a680e regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48ba5ea3 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48c35b4a usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x48d0a4fc pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x48e3fb19 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x48e86b05 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x48e9c2d2 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x48f29484 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48fc4c99 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48ff6b8c __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x490656d7 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x490d8d04 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x490eb8b5 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x491567a5 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x4917dc8f pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x491c4b73 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4969d7f7 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49904987 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x4993c3db clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL vmlinux 0x49a3280b pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x49b39bd2 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault -EXPORT_SYMBOL_GPL vmlinux 0x49c61bcd shake_page -EXPORT_SYMBOL_GPL vmlinux 0x49da156d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x49e2a056 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f94d69 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49fbf0dc phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x49fe076f ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x4a027cab rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x4a09b2e0 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x4a0bd380 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x4a0e8540 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x4a2f1575 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a846253 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x4aa28e51 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x4aac1428 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab3bde6 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x4ab515ee path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x4ab589ce dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x4ac9ca8d setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ad2771c __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x4ad57dad update_time -EXPORT_SYMBOL_GPL vmlinux 0x4ae3a66c reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x4ae55f70 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x4aedc487 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x4aeed96a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x4b1652dd tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL vmlinux 0x4b2e24f7 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x4b3a8dfa crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5dc20f crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x4b66e82b pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x4b6fc7b6 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b7a8c8c trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x4b862def devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4ba5c06c pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x4bae2384 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x4bb663b1 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x4bc0260e handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x4bc8ef59 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4bcf4351 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x4bd1109f driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4bd42b0e crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x4c09e380 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x4c198912 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x4c1a5fe5 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4c1d4500 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4c34a468 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x4c360044 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c521d6c ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x4c578782 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x4c69a51d __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x4c6f5678 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4caf3b18 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x4cbbe924 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x4cd47e74 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x4ced1b56 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x4cf71a95 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d21a152 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x4d26fd27 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x4d319290 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4d3ada72 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d628a4b irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4d795eb7 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4da7e434 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4daa7172 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4db99be4 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x4dc05975 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4dc58aa5 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df409c5 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4dfc6045 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x4e1003ac strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x4e10255f acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e10eb90 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e233d81 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x4e2743e2 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4e277b3a pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4e27b2c5 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x4e31005a xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e4732a4 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x4e4b4ec7 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x4e6ce885 vtime_guest_enter -EXPORT_SYMBOL_GPL vmlinux 0x4e738d59 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x4e8a1f59 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4e912c5a platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4e9399d2 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4e9661a5 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4ea112c9 nvme_sync_io_queues -EXPORT_SYMBOL_GPL vmlinux 0x4ea8f6b0 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb5e652 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4ec2c90d __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4ec59c2a unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eceb42e pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x4ed9978e register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef72758 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x4f1d3881 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x4f220295 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f48d5a8 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6f6680 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7b348c thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0x4fba6962 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x4fbf0ab4 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x4fc495f2 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4fc7b7ca cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x500aba80 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x500c63ad pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50230854 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x506fe2f8 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x507c0921 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x50854f0b usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x50aaedf7 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50b5c447 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50d70aee tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x50d829cd tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e8019c rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x50f678fd alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510929ad dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x510acb67 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x51196be8 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x51287d66 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x51287e9d ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x513740ab vmf_insert_pfn_pud -EXPORT_SYMBOL_GPL vmlinux 0x513f4258 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51425da8 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x5148d7e1 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x5148d8fc dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x514b1f52 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x514d9c54 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x514e8074 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x51688fcd cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5179d443 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51db689a dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x51e6a1d2 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x51fcf9ce thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x51feda6e acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5203e00b crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x520c1ec3 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x527e2491 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5290e81a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x52a2011d cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x52aa87a4 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x52b39e69 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d635ba nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x52d8c552 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x52e4f56e shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x52f516eb cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x53021d18 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5303b485 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x530c0ab9 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x53123ad6 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x531d065a crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x532293a7 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x5326107f __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x53275153 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x53328b01 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x534b797f devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x534e709a dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x5377038c class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x538c6b86 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53b0adba gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x53b68118 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x53c47c53 apic -EXPORT_SYMBOL_GPL vmlinux 0x53c9671c udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL vmlinux 0x53d7fe1a firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x53e3aa72 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x53f0b44c sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x54085d0d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL vmlinux 0x5417e462 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5429249d __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x5439ee19 hv_pkt_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x543d4cb6 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x544a9a86 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x545dd459 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x546b2064 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x546bfedf pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x547114d8 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x54740820 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x548fdebf devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x54a03ff7 fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x54abd32e scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x54b97afb debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x54babd3d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x54c4cafe debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x54e5bd73 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x54fe10ab blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x551586fc sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x552e1381 __sock_recv_wifi_status -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 0x5543992e device_create -EXPORT_SYMBOL_GPL vmlinux 0x55481649 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x555462ff fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557e3c5a clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x557ead2e store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x558c81ff nvme_kill_queues -EXPORT_SYMBOL_GPL vmlinux 0x5594de37 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55b01240 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x55b0c650 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d077e3 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x55d81430 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x55e5ff85 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55fee150 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56116d7b acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5613d593 device_move -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x562205df security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56328675 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563f88c5 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564b00a6 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5683770d handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x568407f9 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x568d15bf invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x569b811f irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x56a733bd devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x56b4e70a regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x56b71bac rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x56d2d21e acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d8862f get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x56df4a67 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x56e1d89d clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x56fa2ecf usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x56fb88eb regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x570b4e8d driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x578537a6 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a04fe1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x57ab3afe __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x57bc1579 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x57bcc211 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x57c0bb40 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x58011834 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x580e7384 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587c6dab skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x58818cb1 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x5882f35b debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x5888344c register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x58918d26 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x5899cb4a irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x58ce3808 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x58d0ba7c gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58eeeb89 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x58f65c3b rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x58f979a1 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x590b26ad dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x59249aa2 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x592f3732 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5933b89c component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x594bb503 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x5971ba4a pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598e8566 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x59905b52 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x59916a07 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x599fae42 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bbf145 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x59bbf3bc __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x59bd47dc pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x59c688a3 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59da2e79 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x59e3ee65 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x59e9e28e addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x5a070999 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a08db28 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x5a0c8d09 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x5a4918a2 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a533838 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x5a5911d8 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x5a650fe0 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x5a6bd38b pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6d1722 ip_tunnel_newlink -EXPORT_SYMBOL_GPL vmlinux 0x5a7382fd irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x5a77b23b bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x5a77ea2c regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a86f9ae dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x5a920f10 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5aa1ed16 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ad058ad devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x5ad07a8c skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x5adfd45d preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5aedb500 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5af0b63c inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x5afe5c94 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x5b07687e clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5b0ca2c8 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x5b17673b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b23c22e acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x5b2dc114 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b43a333 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b884364 hyperv_report_panic_msg -EXPORT_SYMBOL_GPL vmlinux 0x5b9908e4 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x5b9c9851 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x5ba7d56d regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x5baeacac __dax_pmem_probe -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc2d1e2 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5bc5e708 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5bcc3390 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda3409 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be5a3f1 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x5be710c7 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x5bf4a76d nvme_set_queue_count -EXPORT_SYMBOL_GPL vmlinux 0x5bf577b7 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x5bf5af08 device_add -EXPORT_SYMBOL_GPL vmlinux 0x5c091d7b cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x5c0f329f cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c32fcb9 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5c393658 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5a5278 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x5c6147f5 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c7d4af1 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x5c8535f5 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x5c8d98e3 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x5c90b959 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x5ca85858 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x5cab31c0 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cc67a56 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5ccab73c debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x5cdc00f6 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x5cfb6aaf ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d018977 device_register -EXPORT_SYMBOL_GPL vmlinux 0x5d032073 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x5d0653ff device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d3ab3b7 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x5d48dc8a serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5d5cf02f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x5d60e5b0 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0x5d6743c8 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x5d8df1e6 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db1456b dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dc06230 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5e07ff55 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e121941 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1c2acf regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x5e1da38c skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x5e234f5e acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x5e2f89a0 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e52e2b1 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x5e619d39 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e847124 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5ea52cfa nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x5ec03467 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ee14dbb usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f3cf33c sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x5f68e964 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7a514b regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x5f7f7aef __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x5fb372a0 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x5fba2a77 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x5fbd7acf acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe279ee fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x60043405 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600f773e thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x60147fa5 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x60157118 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60570336 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a51ae2 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60d5dc2b xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x60df1018 nvme_try_sched_reset -EXPORT_SYMBOL_GPL vmlinux 0x60ee8b14 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x61006f09 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611d18b4 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6144b217 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x614637ec gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x6156ff9a clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x617b6d76 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x61804f79 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618af903 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x618db450 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x619f7679 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x61a21c77 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x61abddf7 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61b408dc sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x61eacbf9 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x61eb3968 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x620fd5c3 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x62251a03 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62313771 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x623897d5 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x62438af6 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62694840 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x626c0c39 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x62a5da67 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x62ad5529 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x62b1b779 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x62e6ba2c clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x62e86022 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x62ed243f fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x62f349b9 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x62f391c0 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x6312a0f4 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63299667 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x632dc521 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x633a5bae blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x634f3700 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x63535d7c irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x635ef309 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL vmlinux 0x636ff3d7 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x637e36d5 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63906158 dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c1d1a9 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x63c6ed46 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x63c8fd2b hv_setup_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x63d187e4 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f1411c platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6407c635 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x644b3adc usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x6467afa5 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x646ab31d cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x6478e8c3 thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0x648892a1 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x64891f50 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64a46c25 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL vmlinux 0x64b8a19e dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x64bdcaa8 hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x64c50e2c gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x6511b8d0 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x652771cc edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x65356671 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x654d7e2c __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6554299d gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x655564d6 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6588882a wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x658afc38 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x659e3a28 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x65a3ea30 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x65b26081 power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ee0bd7 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x65f67eb5 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x66002e22 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6618c73c init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x661fcc27 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x662c86c7 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x662ee99b __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6651c6fa page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6666cdac hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f33d7c bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x66f4a146 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67466224 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x676364a1 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x6767f1b4 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679aec0b md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x67ab5055 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x67b05511 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x67b740e7 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x67c5a013 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x67c78dc8 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x67c80a84 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x67ce228b ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x67ce5cf3 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x67cfd964 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x67d3f785 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e7afbc scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x6806018e ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x68491e03 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x6849e735 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x6861a658 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x68628474 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x68656f00 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x68684966 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x687caf2a fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x688159a5 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x688565e6 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x6890be26 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a47396 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x68afd5ea phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x68b3b1ac ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x68ba52fe fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x68cbf809 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x68d5b532 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69428cc7 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6946f876 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x694ce4b6 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x69590292 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x6971fa02 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0x697aaf25 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69941ff1 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x69963ef9 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x69ab139a arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x69af1d3d unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x69bcf5b1 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x69caff0b device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a24a72e wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a28495d gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x6a29930a devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4ea864 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a570b91 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8233be crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8e7d6c platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6aade829 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ab3aa64 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x6abb7586 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x6ad6d5cb crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x6af6f1fd ip_tunnel_rcv -EXPORT_SYMBOL_GPL vmlinux 0x6b01b3ed inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6b0707c1 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2eded5 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x6b38e113 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3e2dcc virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b5dcbad pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x6b62273a dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba7d2cc pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x6bc3d8ef __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be09cdb crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x6bf94535 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6bfbf06d dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6c286c30 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x6c2c8e70 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3b612b acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3cac64 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4ca4a3 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x6c521380 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6c54977b sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x6c580bfc bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6c71d7 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6c7abb82 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x6c81cb39 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x6c89d7c2 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x6c9a441f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cd9bc3a rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x6cedca7b irq_sim_fini -EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d41a317 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x6d4d20c0 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d714137 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d85b3b6 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x6d9c5a1a dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6db37107 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbb3f87 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6dc87e51 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x6dce7b81 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x6dd8bbaf smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x6de5c689 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x6de79c19 nvme_start_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x6dea0324 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x6dea74a8 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x6df656f9 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x6e22bd63 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6e257851 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x6e2ad3c3 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x6e3d5f0c flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e5c9cf3 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x6e63d54a crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x6e641b27 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7fb26e input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8ca288 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6e9234fb blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x6e9acd22 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x6ea05a58 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x6ea3ddba ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x6eae9c86 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec321fa phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x6ed145ba genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x6ed22f85 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6ed40c03 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efda347 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f508eb0 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f5357ea devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f5af6f5 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6f6d1723 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x6f72ee64 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6f76a916 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x6f796b54 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x6f7f3646 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x6f80320f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x6f842975 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x6f85020e acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f89ba97 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa3381d sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x6fc1b334 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x6fc7f3cb fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x6fd7efd8 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6fdd1f48 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x6feb768f context_tracking_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffc84bf fixed_phy_change_carrier -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 0x70154f05 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x703ccbfd register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x703ffb3c crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70768fbf srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x707f01de iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x709bc4fa device_get_phy_mode -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 0x70d64926 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70db5dfe crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x70e075f6 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0x710bca1b devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711b65ad to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x711bb79b xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x71258aab skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x7129a167 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x7149f49c eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x715e3065 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x716e867d ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x7173fa30 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7186e68f bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x718df32f sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x718ec0c0 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a62aee sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x71ab5e4a sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x71c2f6a6 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x71f7c5b2 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x7207339d irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x72078364 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x721bb1bc devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x7227d997 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x722c3377 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x7248c46f tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x72619da8 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x729b73b3 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72f6be48 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x731540fb crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x7347f0ff proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x7348c11b irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x7348e954 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x7358a82a ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x73609851 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x736d610c __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73827d68 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x73895315 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a6a053 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x73b4ba09 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL vmlinux 0x73b7b976 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c51e43 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x73d2b70c spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73f39ef0 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x74056d4a nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x7407301f disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x741e729f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7424f9ec gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x742741fa agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74449fc1 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x74664098 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x747c2c79 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x74b0fd47 mddev_create_wb_pool -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 0x74e4b0f5 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ebaa51 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x74f66027 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x74fdddbe sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x750460ae uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7505dc90 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x751255ac xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x751ed463 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7525c22d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x7565c862 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7572f93f blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x75730d99 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0x759b1cc5 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a11d14 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x75a80502 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x76095186 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x761167ec blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x762956d7 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0x763afc11 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x763fa65a vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x765ee611 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x76616758 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76b4cd43 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x76bc6ea1 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x76ca242a devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76cab1cd fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76d46958 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e554ed virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76ffe227 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x771040aa debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x7711d153 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x77144664 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x77176229 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x771b273f vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL vmlinux 0x771bb720 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x771be487 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x7725ffdf dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x773e1f08 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77749150 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x777917c1 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x777fa3dc led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x77828392 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x7789ea00 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77a58cdd tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b6c177 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x77c15265 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77da6fd6 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x77de271a phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x77e25cbd pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x77e7bf82 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x7829c1f3 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782d166d nvme_set_features -EXPORT_SYMBOL_GPL vmlinux 0x785577e4 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786251e2 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x786ae5e4 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x787c809e scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78872f6a genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x78891da9 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x788e0a77 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x788f76da gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x789f8754 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x78b1617f __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x78be1ea8 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x78e19730 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x78f7e076 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x7903b7a4 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x7909b1e3 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x792aa9a3 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x792d8394 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x792e430f skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x79307859 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x793174ef led_trigger_set_default -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 0x795add95 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x795cbd33 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x7966b7b1 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x79a33f3f dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x79ac57af dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c1b55b devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x79c6d406 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x79d7cbd2 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0x79d954f9 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x79dad7ea genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79f4c82e devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f81400 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x79fdfc37 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7a0aa406 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x7a0b5978 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x7a290f99 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x7a5671a2 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8d8771 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a953283 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7af73158 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x7aff6f58 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b267a7d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x7b3b3863 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7b48a68b acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6b8b2c get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b74a85c proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x7b84d718 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9cead3 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7bdcbf1d crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7be6a951 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x7bf915e1 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c2dd580 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x7c375ea6 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x7c42c54d rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7c44327b fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x7c57421b x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c67a64c irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x7c68aa32 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL vmlinux 0x7c76ee78 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7c7ee3f6 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7c8e61d1 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cad9354 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7caf273c blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x7cb05ac7 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x7cb0c90f mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc42ac5 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x7cc5371c register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd5dfd7 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7cd5e86c pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d00f961 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d210759 nvme_start_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7d296607 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x7d3a5a60 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d71595f cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x7d76c379 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x7d76d48a xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d7a010b pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x7d96ff02 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x7da1c22d sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x7da7695f handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x7dc341c8 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7de5f911 gpiochip_reqres_irq -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 0x7dfd1159 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x7e1ebe42 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x7e28d067 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x7e40a210 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e624bd2 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68e665 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7e6c39a3 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x7e6da47c devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e81c311 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e94fa84 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ee016b9 intel_svm_is_pasid_valid -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef69ca8 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x7f0344ab remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x7f5213f5 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f76b321 clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x7f7b5ea3 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f9f2477 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x7fa34b29 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb74dbe get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7fc7c58d clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x7fe779b1 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7feeabfe devres_get -EXPORT_SYMBOL_GPL vmlinux 0x8016f647 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x802976f2 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x803428c0 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x803c0396 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x804caec0 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x806ee6bf component_add -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807a76b2 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x80863937 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8098db58 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x80b85ba6 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x80baf890 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x80bba8fe dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80ce5e12 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x8110bb95 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81216caf __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x8122e5b7 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8157f9a1 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x815ca579 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816aeb1d led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x8189abbf dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x818a761b fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x8195d36d ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819e3879 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81bbb469 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x81db12b3 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x81f21c9b cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x81f4a4b0 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x81f73bbb dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8207f2f5 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820c35c4 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x82114e72 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x82117ff2 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x82272e19 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x822a2f95 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0x822b02bd kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x8237aaff regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x827378b7 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x82764857 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x827eaee7 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x82827467 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x828b7a69 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x829945be find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x82c1861a __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82f5f1de usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x82f9bc0b crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x82fec9f8 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x830914ed unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x830c469f amd_register_ecc_decoder -EXPORT_SYMBOL_GPL vmlinux 0x83276cf5 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8341f1a5 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8365274e gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8366979b led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x838640de blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8387367f wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x839040e3 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x83a22074 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x83a47de9 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x83aa75e9 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x83ac2c0b vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x83afc604 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x83be11c5 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x83d2b105 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x840c4336 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8422fa87 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8431b152 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84473f43 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846d718d virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x848604cf crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x84b886dc perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x84ba9db3 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x84be508d vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x84cf4af4 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x84d77993 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x84d98b79 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850b24b9 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8514674f md_start -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x852b8c53 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x852be592 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x85430107 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855b5b24 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8590b12b trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85ac8fdc pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x85aee301 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x85aef18a mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x85af183e edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85b495ac pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85ca9271 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x85d57434 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85da909e fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x85e5685c nvme_complete_rq -EXPORT_SYMBOL_GPL vmlinux 0x85e646d2 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x85ef00b3 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x85f1b550 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x86036781 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x86110199 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86232387 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x8630d7c6 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x863677b6 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x864257b5 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x864c1baa bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x8651a26f usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86612745 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x86643687 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86712086 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x8675603b ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x867d1b80 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868d6a14 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x8699ad5a uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cc0bad rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x86d414b0 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x86d58e44 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x86e47158 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x86e6ffbd led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x86ef93aa fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fa3576 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x8725898a trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87480f37 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x874ca3c8 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x87505c2c __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x8757acbf pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x8764d4d1 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x8765a251 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x87718ace securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x87799a83 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x87836fce dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x878bc8e5 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x879af681 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x87b99203 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x87d45272 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x87de398f pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87eac788 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x88247c5f rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x882a9667 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x8835a963 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x886141b1 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x886dd097 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x8892be7f kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x88a17d0f pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b9ee3b regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x88c99d53 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x88d3d87b debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x88d7d5e6 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x88d7dc24 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x88e24145 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x88f230bc call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x89108cd5 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x8923b351 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89442850 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8952fff7 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x89561e4b rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x8967c576 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x8975a151 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x89769f4b skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x899f5c19 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x89ab665c ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bf92b2 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x89c9d98c ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x89d09d1e firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x89d9dd6f dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f42df0 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2ddb21 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8a30a282 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a8682f5 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x8a9b1350 cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abf001c generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x8ae111f2 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x8ae1daf4 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8ae7dd76 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8aee1cf7 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x8afd77f7 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x8b08d4a9 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b38f265 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x8b4038b6 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b7b4d8e hv_stimer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b7b9ce9 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8b8cf103 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8bf0c0df crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8bf1ef40 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c2c1a4a fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c34936f ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x8c4eaa27 vmbus_open -EXPORT_SYMBOL_GPL vmlinux 0x8c58cc73 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x8c59959b crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8a57de nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x8c8fb1f7 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x8cd3632a regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8cd69f8f pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x8ce17126 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x8cfedbc2 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x8d06916b scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x8d095e62 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d289ef7 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x8d2ca564 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x8d2fd6ef devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d339f49 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8d407b58 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x8d612f12 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x8d72ddc9 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x8d7450e1 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d821891 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x8dcc15f5 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x8dd221fd tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8dec89d2 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x8e5300c9 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x8e588aaa blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e8c046f platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8e98084d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8eaab2a0 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8eb88c6e acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ed4178e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ee48ed3 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1ae9d9 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f28724e rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f2b660b __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f327529 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x8f44f07c ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL vmlinux 0x8f4538d6 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x8f51cc34 device_remove_groups -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 0x8f801d8d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f98a965 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x8fb7c257 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x8fc203ee regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8fc8ce2b vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL vmlinux 0x8fd9e0b2 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x8fdc96fc dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x8ffcb03a transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x90083d07 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9043b93c tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x9058c609 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x905946b3 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x9061e648 iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x90650864 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x9081e5b8 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x908333f3 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x90950d0e ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x90a9373b irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90b14e80 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x90b645d6 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x90b9fe2f regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d46aca usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x90d47b3d fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90f7f6c4 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL vmlinux 0x90f8231f debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x90fe50af xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x910146b8 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x913c9388 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x913e458a iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x9142387c usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x914aa0b7 hyperv_cs -EXPORT_SYMBOL_GPL vmlinux 0x91545e9b inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x91550ce5 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x915e9d34 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x91774165 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x917c5e04 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x919e34b2 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91aa2010 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x91c15029 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x91eef974 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92123642 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x921e4b36 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x923603df inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x923d9dba pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92453199 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x9248d84f pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x924ac4a9 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x925b775d split_page -EXPORT_SYMBOL_GPL vmlinux 0x92700003 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x927a6d69 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x928e4aa7 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x92ad3c50 __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x92bd83b3 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e23820 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x92e68af8 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ee998d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x92f220c4 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x92fa0806 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x931979c3 __acpi_nfit_notify -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x934bc6f4 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x936a1997 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x936d85c8 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x937c57e9 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x937ff5dc ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x938a32f5 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93980a8f pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x93b07bf3 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x93b9a3c7 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x93c6c844 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x93cc48bc crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x94135ced inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x941374bb nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9440d625 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x94474187 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9465a208 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9473e3e5 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x9478c2ac devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x947aa8af encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x947e080e screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x9483e760 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x94915314 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a8077e iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x94e17987 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x94ea5ec0 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x950397a4 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95156dd0 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951cbad3 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x952078c1 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9527066a nvme_get_features -EXPORT_SYMBOL_GPL vmlinux 0x952fa7ed dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x953379b0 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x953ccfa8 device_del -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955bbe5f pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x956c5157 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x9570de76 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x9578cc1f sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0x957fee43 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x958de6f6 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9592be28 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95aa647d perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c6b9b5 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x95c8062a dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95efa1db pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x964e9c38 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x965518b9 vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966a6491 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x968194a0 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9694b996 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x96a06463 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x96c98e72 acpi_nfit_ctl -EXPORT_SYMBOL_GPL vmlinux 0x970bf390 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x9732e85a crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x9772f6b1 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x9777f313 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x977ba7c6 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x97a49823 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x97cda0b2 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x97d12355 hv_remove_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e5c084 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97ea63e6 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97ffcc65 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x98083aad edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x9827a290 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98392590 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x9848cefb tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985d3666 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9861c9cf shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x98656c8c devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987a1c8e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x98804421 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x98826cc5 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9888e303 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x9889454f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x98937ea1 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x9893ee66 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x98ab0f02 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x98ac78a1 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x98afba5c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x98c2b8cb ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x98c77aea l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x98cb4bf5 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x98cd08cf __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x98dce8be iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98dd063b xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x98ee90fb fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x99042aad ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x9925f2c2 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x9943354c pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x99469e2c genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x99596068 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9962b913 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x997478c4 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99a36169 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x99ad3e37 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99b538cd usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x99beec29 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key -EXPORT_SYMBOL_GPL vmlinux 0x99c9b6dc tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x99e01b7a dm_put -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a19af99 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a728e67 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x9a7402d4 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x9a782b11 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x9a967f3a __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9a980aa3 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x9a98c78f get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x9aa7cb0d usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac30a39 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9ac3298a pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9ae662fa dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af0d547 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x9b0c0bd0 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x9b1cf9e5 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9b3b1d08 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x9b4b4599 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b773836 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8df769 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb13851 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x9bc0797a acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x9bc6aa28 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9bcbffd8 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x9bde0eb2 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x9beb4c1b crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c043bbb xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9c04df59 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9c0bdb91 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x9c5615e0 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x9c69821f skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x9c755e3a hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c841b90 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x9c97349d ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x9ca14135 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x9cad00c8 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ce59811 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf5c2ae cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x9cfcd077 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0acfe5 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x9d23d395 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x9d44565b pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x9d4fec9c nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x9d693c14 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d7af56d peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9d871353 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x9d8e41db iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x9d9b971e dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x9daa93b2 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x9dab0284 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x9dac114f free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x9dcebaae dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x9dddc5d6 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x9de26c8e edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9de88667 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x9dfcefc4 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e24f57c security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e486bb9 ip_tunnel_init_net -EXPORT_SYMBOL_GPL vmlinux 0x9e50316f pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9e51b517 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x9e6c17ad tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x9ea48a11 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x9ea595c1 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f0bf234 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x9f1f0145 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9f22d3fa vtime_guest_exit -EXPORT_SYMBOL_GPL vmlinux 0x9f2670e2 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x9f29b883 direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9f39aa65 udp_sock_create6 -EXPORT_SYMBOL_GPL vmlinux 0x9f52d74e clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x9f6187ac wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9f67baa9 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x9f6d04d9 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x9fb3359c devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x9fbbdc01 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9fbe1f0b sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc40fa6 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9fc57e98 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9fc601bd lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd60a6b tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa00761f7 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xa010d8e7 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa0144781 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa02ca6ec fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xa03c93fe sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa03fbf99 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa041bd4c pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa051aa9f iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xa06a5fd1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa07c4b32 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xa0aa5ecf get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xa0af0697 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xa0b09664 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa0c30b3a unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa0cc454d dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e1bfea acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0xa1042158 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa10858b5 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa1291d00 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xa12bf394 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xa1502d03 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa161b40f unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa1731c5a __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xa1a730a4 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xa1d7a22e __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xa1e43c9f gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xa1e72060 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f9a20c regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xa204a15a spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xa20c2036 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2192485 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2246fa2 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xa23bccf7 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0xa23c597a fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xa2415851 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xa25b44b5 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xa26d5c74 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa272c09a pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xa285d3cc handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xa2ad8099 nvme_start_queues -EXPORT_SYMBOL_GPL vmlinux 0xa2b2de50 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xa2c786a5 vmbus_connection -EXPORT_SYMBOL_GPL vmlinux 0xa2cf107e fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e2bc09 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xa2e3ff2c usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa2e99d9e tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2f2680e sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa2f87af8 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa2f9ddb0 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xa30521dd thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xa308cd93 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xa30c6710 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa31283a6 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa319e829 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xa31bc32c led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xa32ac5c3 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa34fa21f pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa365fad8 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa374aa82 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa37c8f35 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa395847f devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xa3994c13 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa39e0e99 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xa39e2f70 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a5ab0b iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xa3a725cd fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3cfca47 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xa3d880db dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xa3dd4e73 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa409510b regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4176112 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa4322057 ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0xa43d07da blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa43fbf66 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d4cf5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xa46a8441 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa482f8eb arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xa4833592 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xa49b0f9a put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa4a1d2ba to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xa4a4542a modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xa4af7b66 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xa4b3b58e bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4cdd71f __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xa4e7de97 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xa520df28 blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xa52750b5 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53ddfdd skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xa544259d pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xa5496acb iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa55eb2a7 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xa56e5051 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa56f1e3a devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xa5783b13 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xa57f8c44 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xa58c0a61 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa59ccacf __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xa5ac9dfe iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xa5b1e34f device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5ced8ff nvme_remove_namespaces -EXPORT_SYMBOL_GPL vmlinux 0xa5d00080 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dc4f4c pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60087f3 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xa609c262 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa60f1ff5 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xa613f97e gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0xa624d5e2 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa62652a1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa63d3f17 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xa6468c7a badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xa65e1951 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa65fe639 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa695567e subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xa6958074 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xa6982213 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xa69f8e5e fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xa6a9fda1 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6e0e5d2 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa6fbcb59 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xa70103d0 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70d7f12 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa7285fa4 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa7593728 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xa7809453 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa78ac60e ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xa7ab176c crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa7ac7ece tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xa7c4043f dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa7c9bcb6 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xa7ec38ec led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0xa7eeedff regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa7f41787 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xa7fdbe52 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa8053c21 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa818a5a0 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xa830c055 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa8317627 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa83a55a4 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa8517d9e virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa862941d acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xa8b4b589 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8e6c09d regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa8ff976d pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xa910a8b4 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xa9125f42 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa91d0c7d cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xa921b9d5 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa92dadb1 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9363d90 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xa94330d5 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xa9540298 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa99115de skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a98dc9 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa9b50369 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xa9d0a184 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xa9d40261 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xa9d51886 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa127215 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xaa19d43b rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xaa1e6c3f acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2aa809 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xaa69e3b9 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa8101ab device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xaa8b5acb gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xaa90a298 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xaa955f9b dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xaaa33c17 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaad48f0b switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xaaea4d7b xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xaafc88cf devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab231cfd rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xab2df141 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xab4093c0 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xab491151 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xab500dcc class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xab681fc5 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab74854c serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd963d7 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xabec42c1 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xabfc5406 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xac09b3fb devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac27b394 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac2e0a5f __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xac5bee11 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xac679697 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xac739723 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xac7f39be device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xac81cb52 __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xac9dcc12 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xac9f40e6 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xac9ff5d2 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xaca2b7c4 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xaca84a07 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacd2ad64 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1ea9b8 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xad20a8d3 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xad33833a strp_done -EXPORT_SYMBOL_GPL vmlinux 0xad370d00 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xad3ad0e2 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xad43602d dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xad4e0a60 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xad523d9a irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad987d66 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xadbdbd26 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xadd04458 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xadeaf934 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xadff452c pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4fc86a cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0xae517c2b flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xae588d34 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae82625e devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xae8732c5 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xae8795cd nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xae889b6d ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xaecd4ffa mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xaedc2cdf ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaee336be tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaee57c83 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xaef4fbe3 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xaefc2e79 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0eea07 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xaf26ae9a __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf5937e1 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xaf5fe43c dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL_GPL vmlinux 0xaf6dff39 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xaf7226cc virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xaf761418 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf87e6ec io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xaf90887e dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xaf9eb455 vmbus_setevent -EXPORT_SYMBOL_GPL vmlinux 0xafb98573 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xafbfa335 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xafd04125 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe0ff0d crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xb00255b4 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xb003f629 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xb017fdb5 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0xb02532f5 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xb0290d97 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xb02bf0dc mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xb04beacd regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb04d5be0 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb05b563d ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb05c0eb1 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb0608060 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb06945e8 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xb06a7f4d bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xb084889f kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xb088be31 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb096fd01 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b853e9 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bc5f46 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0f34f28 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb0fa236e led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb0fefb20 edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb114c9f2 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12cac55 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xb13880ea aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14505d7 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xb1485136 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xb152a14e fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xb15526ed pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xb1557a02 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xb1582853 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1784814 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1ca39ec shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb207efd4 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xb20c7775 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2282b62 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xb22e3d9c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xb23a07cc subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb23efcec pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24f1ca6 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb281929c cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb298ecac blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xb2ab2e62 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xb2d1ebda fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb307a269 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb311e36b vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xb312e97c fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb3380c11 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xb35f050d usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xb36fce83 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xb3733315 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xb38a1c27 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb3924476 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xb3b7e62d device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xb3c1fe49 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0xb3cabc97 ip_tunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb3d07c54 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xb3fe7f04 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xb407aa53 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb41998dc dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb4386579 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xb43dc431 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44147a8 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb460a291 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb49ca3c3 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4a686bd dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xb4b1d155 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xb4b589b2 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c2c1b1 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0xb4cc71d3 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4d246ee dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4effa6b tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50e6d3b bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb51c7e71 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5305e61 hv_pkt_iter_close -EXPORT_SYMBOL_GPL vmlinux 0xb53d0240 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb543e887 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb5710ccd set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb578c0f1 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xb5877034 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xb58cd900 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5bcca6a blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xb5d19ffd devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xb5dea842 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb5eb39e7 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL vmlinux 0xb5eeab60 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb608429e acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xb60ac6d7 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb61d6759 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb633f1cc power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb635a7e9 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL vmlinux 0xb635aa0a crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xb651a116 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xb65781fd nvme_cancel_tagset -EXPORT_SYMBOL_GPL vmlinux 0xb6588d51 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb66a983b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb675a14c device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb689dead ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb69a5821 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xb69b5609 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb6aab017 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xb6b17b20 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb6e25e35 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f06879 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb6f2cb0c vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL vmlinux 0xb6fd2547 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xb70c0584 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xb718bbce ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb743c99a of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb75a681e crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb771facf usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xb7793a15 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb78452f9 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xb7878713 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xb78f8673 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xb79a20e3 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xb7a3a606 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7eae165 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb7ebe442 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xb7f1ca24 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xb7f5609a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb801ad05 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xb809873b debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xb811cbe9 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xb81f4e8f fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb8310844 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb8333286 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb8414cbe acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xb8439dcf vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb85490f9 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xb854bfad crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xb86e4f18 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb86e98a0 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb892a4ff xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8aaf657 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b424 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xb8be17da dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb8c77859 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d26d5f devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xb8d9ae38 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xb8e8a27a tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8fb9198 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb91ac2c8 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xb92eeca4 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb9313052 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb94d755e phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb9529151 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb970a11f devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb97d8994 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xb9826f8a __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xb9893609 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb9901595 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb9af323b dev_pm_qos_hide_latency_tolerance -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 0xb9cfa769 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e0e370 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba13c5a5 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2d3936 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xba2d6e61 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xba2fee9e srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xba4bfe53 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xba510746 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xba949e5f efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xba984d9b acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xba9e2e15 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL vmlinux 0xbabdf251 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbac844db regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafac7af gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xbafecc59 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1eafb0 nvme_sync_queues -EXPORT_SYMBOL_GPL vmlinux 0xbb252b07 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb700075 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xbb721d0d ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xbb730956 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xbb7ec66f irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xbb80f56d dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xbb99e1db usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbb9cdb8 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xbc056705 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xbc274f93 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xbc2d7162 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xbc3564ea device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xbc3eb404 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xbc55529c ip_tunnel_init -EXPORT_SYMBOL_GPL vmlinux 0xbc598832 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc6b63d6 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc765841 __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbc777e8e wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xbc84474b devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9bef6d regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbca52651 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcadaf72 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbcb5944b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcb947d5 efi_mm -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd9aab0 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcee01cb dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd02413b gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd05e106 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xbd1bcba8 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbd2606fa regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xbd275295 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbd27f546 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd44969a rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd612ce3 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xbd71f651 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbd80fbf5 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xbd847d91 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbd85e11b ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xbd90dda7 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbda96928 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xbdb1c24d devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xbddeac2b kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xbdfaa2fd balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbe0c33a1 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe234b20 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbe408a80 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xbe432a55 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xbe4cab49 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe534ab7 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xbe557b5a ping_err -EXPORT_SYMBOL_GPL vmlinux 0xbe5bc6ce arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe61de06 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7baa74 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb31849 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xbeb6e821 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbebaaa7b pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbec0437f nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbecfdaa2 __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xbee68ff2 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xbef6c3e9 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbef99eed ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbf02d7af pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1b923b tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xbf1ce611 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbf238f0d inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xbf49713d virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xbf7bdad0 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL vmlinux 0xbf861949 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc4abb7 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xbfcb9486 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xbfdab4a1 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfeed1bd posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xbff406c9 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc02222ee skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xc0446210 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xc04e7524 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc05083cd edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xc07a9ce1 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b875ec xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xc0cb2d20 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0d1ebc3 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc0d848d7 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f56168 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xc0f95d3c iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1228a35 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xc135b4eb rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc1536ca4 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17bba73 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc19e113e acpi_nfit_init -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1dee7f3 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xc1e2a0ba netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xc1f88527 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xc1fdd3f8 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xc204eaeb pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc236d732 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xc23b0831 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xc2475ff2 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL vmlinux 0xc251618f pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xc25a12d6 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc25a441b nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc275368d verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b17a1f skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d86871 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e31a5c ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xc2edd23e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xc3134f22 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xc31a4add root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3448ea5 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xc34492ee nvme_disable_ctrl -EXPORT_SYMBOL_GPL vmlinux 0xc34bf5f1 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xc34f0ec7 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc35bc1ed edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xc365c814 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xc373d129 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xc375dcba perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xc376a23d dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3982b26 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc39bc341 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xc3a83df1 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f0dabf bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3f27b31 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xc4058642 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xc40cf125 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xc40e02dc ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42d6428 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc44dfc07 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc454105d sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc46832a7 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xc46de38a usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc470e482 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0xc476309e tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e3aab blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4962d3b spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc4984f42 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc4a2a47f acpi_nfit_desc_init -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xc4b7200d scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc4c31415 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xc4e9f50c blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f116b8 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xc4f31969 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc500a3d7 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xc5010060 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc51b5d94 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xc52713a9 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0xc5524a2a dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc5565cf1 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5623ae1 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5667dc9 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56bb322 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc57edc8c crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc5996c8c pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xc59a3aa3 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xc5a34f71 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b0dcbf pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xc5b5b3ad gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc5f68eb6 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xc606946c rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc617151a ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xc617764a __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6414c72 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc646cbdf pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc65b18c4 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc65ddbef regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67d3502 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa0c5f edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xc6aa1076 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xc6acb3a6 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore -EXPORT_SYMBOL_GPL vmlinux 0xc6bbecd7 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc6bfc341 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xc6ca26f0 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xc6ca5710 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xc6d60df6 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0xc6dafc3e reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc6f32cec regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70fd61c devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xc713457c bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc719147a dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xc71b5413 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc736f9d1 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc73de5c1 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xc743f1e7 iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0xc744a8ea xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc7482328 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xc748bf72 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xc763177e security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc76cbd67 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc7733dbd cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0xc779a06a crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xc77b6a12 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xc77f3223 cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a87463 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xc7affb85 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc7c31577 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xc7ca8be3 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xc7cd9385 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xc7d51c32 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f6c6b2 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc81546f6 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83296f1 ip_tunnel_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83efe69 cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0xc847487e debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc856c41a screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8824a08 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xc883e801 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xc8a62a73 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cf0869 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e04eb1 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc8ebdadc dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xc8f498a7 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9133864 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc913d0f2 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc91f54fd acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xc928bbc2 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94b6004 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc956d632 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc959d79e cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc95c7300 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96eb5e2 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc971a4f2 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc989b163 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xc98bb9fc devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc98ee541 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc99bc25d tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xc99e992c tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xc9c200e3 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c49ab5 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc9d78d63 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca09f606 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4dcc5a ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xca5013d9 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xca54793b __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xca5a5a8b ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8ed9f3 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xca9e8ba5 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcab844e0 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xcacdcba9 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcacf6fa1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xcaeb6272 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xcb04b262 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xcb10b0ac iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0xcb12bbba regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcb1bd855 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1f3156 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xcb2be6ec vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb5c842f dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xcb655ea0 devm_irq_sim_init -EXPORT_SYMBOL_GPL vmlinux 0xcb6c2fd9 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xcb78ef13 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb8acb06 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcba2dff1 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xcbb719ae crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xcbbb3f33 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xcbd23a49 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xcbda9021 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcbe50c9f netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbec6676 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xcbecbbcd udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcc0f5a1d alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc2f59b5 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcc4a093a thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xcc63d50b vfs_write -EXPORT_SYMBOL_GPL vmlinux 0xcc6438c4 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xcc7ec657 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xcc8249e5 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9d92f6 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL vmlinux 0xcca65d7c component_del -EXPORT_SYMBOL_GPL vmlinux 0xccab42e0 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xccb0865d spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xccb71233 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd23ef0 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf9448c efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xcd0ce1d6 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xcd12dc00 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd29c908 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xcd3347fb find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xcd3a48b6 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd4945d8 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd6a6d06 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd8ad529 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd8f14f6 regmap_write_async -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 0xcda567c5 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xcdaad793 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xcdaf137c sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcedf4e nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xcddbe89f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde680f0 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xcdf2bc4d pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xce0bf62d xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xce27671e inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xce3d2972 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xce3de76a dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xce435a10 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xce43d4bc vxlan_fdb_replay -EXPORT_SYMBOL_GPL vmlinux 0xce479cb8 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xce5e4671 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce8d07e1 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xce96a7d7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xce973cfd dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xcea2e11f fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xcea91383 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xceae5971 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcecf818f usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xceea7682 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xcef93fb4 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xcf02d77b ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xcf0acbed xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcf0d3c2d fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xcf27a27b kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xcf31e762 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xcf4bfd9a phy_put -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf7fa897 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xcf82622b blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xcf902b9e rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcf910b1f devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xcfa569cd nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbbca59 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc94e97 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xcfc98803 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd78b4c blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xcfdc2d74 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xcfedf4d2 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xcff04398 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xd0195f1c __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd074123e devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0xd07cbb6f device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xd08d4926 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09fb84a power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d32d39 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f21096 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xd10e0536 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xd11c2a85 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xd138a75d gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd13e8be2 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd159f100 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd15c8a4a dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0xd19433ed lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xd19f250f device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xd1a60e5b agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd1c65682 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d51859 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20eefc4 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd2111966 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd22490ce gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xd22d9ccd crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2501e63 create_signature -EXPORT_SYMBOL_GPL vmlinux 0xd2689738 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27a68a0 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xd27d6092 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xd27dbce2 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xd2988dfa dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b8e0fb sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2c9e225 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd2db024f xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0xd2f12097 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xd310921c tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xd31e6291 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xd34aeae1 get_device -EXPORT_SYMBOL_GPL vmlinux 0xd35345b3 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37e68ae skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xd38f468a tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd38f4ef2 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd391141a tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd39f999a pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xd3a61915 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xd3a6e91f kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b7a727 crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xd3e0b2b4 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xd3e26209 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4076f7c tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xd40954e4 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xd409b317 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xd40d945e hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xd41bc545 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xd4205c46 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42a6fe1 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xd42fe0ef ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd43daefc genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xd449951f uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44f325f wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46ff1f6 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xd478d35c raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xd48bd4a3 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xd48fd7b5 nvme_enable_ctrl -EXPORT_SYMBOL_GPL vmlinux 0xd4a806f8 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c9fa33 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xd4d04f5d __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xd4e449db fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xd4e49aa7 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xd4e59172 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xd4f30d84 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd5019d7c gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xd50becc0 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0xd50c718b yield_to -EXPORT_SYMBOL_GPL vmlinux 0xd5175e2e devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xd527e457 nvme_reset_ctrl -EXPORT_SYMBOL_GPL vmlinux 0xd530dc84 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd54c5bb2 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55d7221 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xd56b05d2 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xd56be424 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xd56f6675 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xd5750267 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xd5778bea ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd579cdbc fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL vmlinux 0xd594c113 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd595a896 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xd59f9294 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd5b52a4d rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5e5d2f3 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd607c04b ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xd60abcd1 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd6145a68 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xd644a0d5 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd64b7b74 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6527e97 vmbus_close -EXPORT_SYMBOL_GPL vmlinux 0xd658eb21 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xd65fa737 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd66e4efe regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67ab1d1 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xd67bba26 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xd68e68ac device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xd692b482 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xd69f7b67 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xd6a6ff1c virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd6d9ecc7 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd6dd1b5b ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xd6dddc86 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xd6fd6b49 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd711d656 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0xd71ba4d9 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xd7303866 nvme_unfreeze -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74bae51 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd74f47ff udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xd750e848 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75ea88d devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76fa66b __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd7715279 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd785e57c raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xd7a23c9e fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7e02ea8 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd7f57094 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xd81d752c ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd834f21e sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xd83f016c device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd84b5cdc blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8589c6d skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xd858d0fc rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xd8616e8f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd881cabe __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd886b4ee kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xd88cd0d0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xd8995dbe mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xd8a193cf nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd8a751a5 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd8a90c97 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xd8bf58f6 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xd8c1a4ac ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xd8c5b24b __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xd8cafe1d blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xd8cd7888 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xd8ea41bd devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd904507c usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9111e30 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd91db2ed wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xd921ba46 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xd9287ebb __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9439bdd proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xd96118cb srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xd96866aa debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd968b994 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9838f16 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xd9900483 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0xd9994993 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xd9a5cdff regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd9ac2510 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd9ae01cd skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xd9afef3b ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xd9b4601a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xd9cc7fb9 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd9cf307b devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda028c6c device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda30209c sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xda392ae8 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xda3aff3b blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xda501e89 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xda526c04 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xda5d8228 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xda62dd1f pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xda7c773a devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda8a0578 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xda92701d devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdad82cf5 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdae4a170 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xdaeaf534 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdaf90ee8 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdafe0a11 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xdb359008 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xdb59cd7b ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdb742df2 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xdb79a55c vmbus_connect_ring -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb894abe irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb95752f mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xdbb5979f crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xdbbc59f0 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdbde9d92 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xdbe80d20 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbf6c98d inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xdc28ad20 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xdc39afb4 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc7d28e5 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc857e07 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xdc8a8852 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9d221a subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca98396 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdcc83c6f usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xdccc487f __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdccf32dc regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova -EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xdceb9b3f usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd34152a serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xdd3831d6 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd55196d user_update -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6edb0b wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xdd72310e pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xdd7e0d45 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdd89d305 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xddb26a1b crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdddece6e device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xddf13447 vmbus_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xddf95aa1 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xde07729c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde243c94 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xde3f4cc7 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xde43cd8a sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xde4494e7 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xde4f6dec register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xde504718 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xde5f0e62 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7581c5 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0xde762885 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xdeb0d41f skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdeb5c445 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xded434fc phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xded688b2 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xded729fd usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xdf0d70b7 cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf11eb8b vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf2536ee devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xdf265e86 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf3570c3 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf4c7ccb irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xdf6eb7b7 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xdf8570c4 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xdf8a0036 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xdf8fc6ac usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdf940d8d rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xdf95442e rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xdfb505d3 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xdfc08f32 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd32743 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xdfd4b448 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdfec3f07 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xdffe63ef blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe0054bf9 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe02ac7ce ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe0653fac __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xe06c9a99 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08e523e sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xe09fead2 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0ab624f led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xe0af77fa iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b77f7b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xe0bc9f23 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe135be3c gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xe13a8e9f efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xe13d2f08 ip_tunnel_dellink -EXPORT_SYMBOL_GPL vmlinux 0xe1531af2 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xe157c3cc of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17b2bea iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xe18fa11c devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bf219d serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xe1f0d31d virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe1fcc608 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xe2007463 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xe2018062 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xe203a9a0 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xe21c88a8 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xe2204d9a to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe228e615 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe253986d crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xe2850610 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe29b24f6 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0xe2a67cde iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b4a100 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe2c52c35 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe350b62e perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xe358fa7a pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xe378c4d0 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xe3796a9b edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe391f27e blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a8dbb8 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xe3aed901 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe3b293d2 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3c2b44a __hv_pkt_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe3c888f0 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xe3c9a978 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe3ca2f65 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3e5e7b8 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xe3e618d1 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xe3eb81c8 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe4009d92 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe411a3cf blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe4226cc7 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe423306b devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4257f3d fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe44a975a pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xe466caf8 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe466f9b2 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe46e7c60 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe477ca1a regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe47822d9 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xe4859e96 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a2bfca sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xe4a61c54 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xe4b69273 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xe4b7335c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c418b4 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xe4e02e7e dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f0e64a get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xe4fdf8d9 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe51e0f1f devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe526271a aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xe5281e00 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xe535a058 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xe566b1d9 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL vmlinux 0xe571b833 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xe57aac5e thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58b419c usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xe5abdaf2 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe5b0afac regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe5ddf061 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe5e2ec7e unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xe5f02732 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe5f1633e perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe6064e95 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe61f2efa dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xe622b2ae vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6380ea3 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe65101bf xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xe681b969 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xe6864d95 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xe68eb4ea regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xe6e30754 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe71561a2 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe72564fc platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xe7257f69 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xe7259179 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe754bf45 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76cc9f7 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a21560 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xe7a84016 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xe7a84be9 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xe7b293aa crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe7b54be7 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xe7b92aa9 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xe7be1c4b ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e0252d device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7ef1022 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xe7ff0d3c usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80031f4 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe8145bfd acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe8238740 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe82b1681 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xe83b2d2c reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe843844d nvme_delete_ctrl -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe853a9e4 rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe863228b udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0xe87a704a acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe87c5195 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xe885850a tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe8b3be63 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe8b976c4 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xe8c1e020 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe8f714a7 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xe9020ded __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe9104f02 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe9168b1e platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xe9182b09 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xe92d77a4 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe943ae6f usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe9712ff8 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xe97ea2c0 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xe996c542 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9a56ecf ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xe9aaae9f pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xe9b15045 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe9b38aaa fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xe9bbb035 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xe9c00b23 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9ec1848 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xe9edce5f __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xea0a471e usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xea0c0dab __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea216dd3 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xea21be54 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xea30873e dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xea5c550a vxlan_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xea8442c2 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xea8b9f90 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xea9ea0bc memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xeab1d365 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xeaba09d3 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xeac3bc9f sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae9bef8 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xeaee3c31 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb106401 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb407155 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xeb4e1476 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xeb506f3a xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0xeb7f3182 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xeb8e8817 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xeb93c22a debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebcbef07 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xebd11f0d driver_find -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdcf7a7 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xebe8b464 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xebe923ea acpi_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xebee722f debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xebf9fd2a regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xec00b1a9 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xec04571a spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xec0878f1 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xec0ad9d6 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xec3df08d ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xec492a89 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xec54fc4b pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec6a7b12 nvme_wait_freeze -EXPORT_SYMBOL_GPL vmlinux 0xec6bf36f usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec97c1bb kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xec999971 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xecc29f92 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xeccf8e76 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xeccfad17 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xecd46027 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xece83e58 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed83992d genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xed905995 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xedacd02a usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xedbbf96b find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xedc20955 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xedc5deea tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xedc9d454 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeddd92d3 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee166adb devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee51c81a netdev_walk_all_upper_dev_rcu -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 0xee723c9d regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xee8c8a60 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xeea5fcf0 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xeeb18c9a __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xeebf12e4 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef0f671 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xeef58633 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef3511d3 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5ab2dc tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6e3636 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefbc35b5 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xefd26d03 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xefda4f24 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xefe640aa perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff454a5 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xf00a3eef acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf0114170 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf01d9c99 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xf01e4b4f sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf02fe7df usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xf034758e clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04ca373 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xf053304f sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf056217a devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf0a259bf rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf0a66df0 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf0bb18d7 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf0c8022f devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xf0de2b64 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xf0e23828 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xf0ed1210 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf0f5707a inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf10cf546 mmput -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf13d7eaa lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xf144d7ec devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf148ba05 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xf14b05cd user_read -EXPORT_SYMBOL_GPL vmlinux 0xf15328fb add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18a85c5 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xf19d4e94 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b7c49b fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xf1cec3b9 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xf1d04f82 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xf1d5c645 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf1eaf873 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xf1f379bf simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf1f66d13 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xf1f7e307 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf20bd8b2 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xf2169bf5 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf233c8bc da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf236a525 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xf23b02de call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf242a02c ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf244890c usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf24ba3b5 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xf253a3b4 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf264c81c fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf270fe7b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf2748750 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xf27d75df sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2dbfbc2 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xf2de634c regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf2efb8fa dma_buf_vmap -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 0xf31f7fd9 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf345aa53 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35d04c3 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3a2f1b1 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xf3ad76ad bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xf3b08fa5 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bc61d7 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xf3c07bf6 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xf3d768bc devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xf3f4a31f bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xf3f9a3ae regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xf40150e3 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xf4023215 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xf4147feb noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xf42f132e nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf43ab588 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf4785e77 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf47ebb34 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf48412d2 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xf486a61f acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf48b70da regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xf4a527e3 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xf4a8a82f do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf4ac0aed nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xf4ad94ff pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b698cc pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0xf4bd04a3 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xf4ccf3f2 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4de40d1 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xf4ee41ba cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xf4f11b6a crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xf5109f3b rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf52437e9 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xf524fad0 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5533e69 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xf55aff3c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf57aed0d iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xf58c7892 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a9e910 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf5bde5be rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf61a4623 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate -EXPORT_SYMBOL_GPL vmlinux 0xf63338b9 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6704cc2 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf67fde83 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6bd6ed7 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c75d61 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xf6e17e30 devres_close_group -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 0xf70cdf20 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xf71cf8e0 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xf729a25e nvme_complete_async_event -EXPORT_SYMBOL_GPL vmlinux 0xf7396c88 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xf73a790d ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xf73dd01b sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf7422590 cgroup_rstat_updated -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 0xf74f70e5 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xf759de0c dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xf7639e43 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf77bc6f2 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf77dd6ba pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xf7996dde get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xf7a2c8a1 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xf7b33088 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xf7b41a54 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7be99a8 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf7cbaea1 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf7d10c67 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xf7d56357 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xf7deae32 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xf7f6944d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf7fe885b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xf8017daf report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xf80719c8 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xf80b4de7 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xf80d7e0c tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xf82271e5 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xf82d9ce0 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83989c3 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xf86d57ce noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf874d445 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xf87ba20d bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf89d90f0 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xf8c08763 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xf8c51909 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8e3a49b irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf900df79 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xf90bf7a4 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xf90dd627 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93c1b20 nvme_wait_reset -EXPORT_SYMBOL_GPL vmlinux 0xf94eb04f devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9558bb8 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf959c9de pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xf9684181 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xf96eb7d9 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf96ef862 _copy_to_iter_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0xf9732f7e request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xf9855632 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a6eddd lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xf9b3b0b3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xf9b563a2 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xf9c73b7f ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xf9de1a0b iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xf9dfc100 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xf9e339e5 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xf9fd7bac pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa255fb3 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xfa277b08 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xfa2adb1f invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xfa2d95b3 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfa308623 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xfa3144c1 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa34e77a __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa5cc1b6 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xfa5cf0f2 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa634156 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6d4df6 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xfa704c00 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0xfa76f825 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xfa78351c shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xfa7bbef5 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa954fb8 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xfaaa6346 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab5be04 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xfabf5cb4 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaef6406 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb389977 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb41b9fa gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xfb430cbf public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xfb45d918 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xfb5ceb39 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xfb651ca5 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0xfb6a3e55 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7ade64 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL vmlinux 0xfb92ffd9 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xfb98b058 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xfba27b13 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc12a2f pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbde4c81 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xfbdf28cb skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xfbf149cd bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfbf56b84 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xfc0a14e4 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xfc1478e4 nvme_cancel_request -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3d60ba fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfc4137fa iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xfc49ab72 ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc819743 trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0xfc82200c evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xfc87cd9d ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xfc973aa1 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfcb955ac nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcf3f6d6 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfd126380 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xfd338bef power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xfd3ce2b7 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xfd4c8144 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xfd5963f5 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xfd5c0955 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd73de7b crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd7a346a pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0xfd7ae463 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xfd7b7525 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xfd7e0b26 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xfd81c234 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xfd8f95ff nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc1cf53 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xfdc3065e ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfdd032b5 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfdff6952 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xfe0389db __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe0ea812 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xfe16b7de crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfe1f87e2 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xfe23bad2 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xfe3d5369 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe68db15 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe7e8562 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xfe871226 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xfe97bd45 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea2a507 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xfea6ecc2 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xfeaeab9d scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfefb0254 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xff01cc75 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0xff1fa02c clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff394d57 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xff3ed113 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xff4098f7 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff687dfa blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xff6dbf03 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xff7fa0a9 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff8edee5 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa9401c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb38f85 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xffbd9655 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xffd379ad ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xffe980ba dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xffefe34b flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0xffff1521 pinconf_generic_dump_config reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/amd64/azure.compiler +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/amd64/azure.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/amd64/azure.modules +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/amd64/azure.modules @@ -1,2107 +0,0 @@ -3w-9xxx -3w-sas -53c700 -6lowpan -8021q -8139cp -8139too -8250_dw -8250_exar -8250_lpss -8250_men_mcb -8250_mid -842 -842_compress -842_decompress -88pg86x -88pm805 -88pm80x -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -a100u2w -aacraid -abituguru -abituguru3 -acer-wireless -acpi_ipmi -acpi_pad -acpi_power_meter -acpiphp_ibm -acquirewdt -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad7314 -ad7414 -ad7418 -adc128d818 -adcxx -adfs -adiantum -adin -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm9240 -adp5061 -ads7828 -ads7871 -adt7310 -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -advansys -advantechwdt -aegis128 -aegis128-aesni -aesni-intel -af_alg -af_key -af_packet_diag -affs -ah4 -ah6 -aha1740 -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim1535_wdt -alim7101_wdt -altera-msgdma -altera_jtaguart -altera_ps2 -altera_uart -am53c974 -ambassador -amc6821 -amd-rng -amd64_edac_mod -amd_iommu_v2 -amdgpu -ansi_cprng -anubis -apds9802als -apds990x -apex -applesmc -applespi -appletalk -applicom -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcmsr -arcnet -arcxcnn_bl -arizona-i2c -arizona-spi -arp_tables -arpt_mangle -arptable_filter -as370-hwmon -asb100 -asc7621 -ashmem_linux -aspeed-pwm-tacho -ast -asus-wireless -asus_atk0110 -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -atlantic -atm -atmel-ecc -atmel-i2c -atmel-sha204a -atmtcp -atp -atp870u -atxp1 -aufs -auth_rpcgss -authenc -authencesn -autofs4 -ax25 -ax88796b -axp20x -axp20x-i2c -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -batman-adv -bcache -bcm-phy-lib -bcm-sf2 -bcm590xx -bcm7xxx -bcma -bcmsysport -bd9571mwv -bd9571mwv-regulator -be2iscsi -be2net -befs -bfa -bfq -bfs -bh1770glc -binder_linux -binfmt_misc -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bnx2 -bnx2x -bnxt_en -bonding -bpfilter -br2684 -br_netfilter -brd -bridge -bsd_comp -btrfs -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence_wdt -caif -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-j1939 -can-raw -capmode -capsule-loader -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catapult -ccm -ccp -ccp-crypto -ceph -cfag12864b -cfag12864bfb -cfb -cfbcopyarea -cfbfillrect -cfbimgblt -cfg80211 -ch -chacha-x86_64 -chacha20poly1305 -chacha_generic -charlcd -chcr -chnl_net -chtls -cifs -clip -clk-max9485 -clk-si5341 -clk-si544 -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cmac -cnic -coda -com20020 -com20020-pci -com90io -com90xx -cops -cordic -coretemp -cortina -counter -cpcihp_generic -cpcihp_zt5550 -cpu5wdt -cpuid -cpuidle-haltpoll -cramfs -crc-itu-t -crc32-pclmul -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-pclmul -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs89x0 -csiostor -ct82c710 -cuse -cxgb -cxgb3 -cxgb4 -cxgb4vf -cyclades -da9052-hwmon -da9052_wdt -da9063 -da9063_wdt -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -decnet -defxx -dell-smbios -dell-smm-hwmon -dell-wmi-descriptor -dell-wmi-led -des3_ede-x86_64 -des_generic -diag -dl2k -dlci -dlink-dir685-touchkeys -dlm -dm-bio-prison -dm-bufio -dm-cache -dm-cache-smq -dm-clone -dm-crypt -dm-delay -dm-era -dm-flakey -dm-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dme1737 -dmx3191d -dn_rtmsg -dnet -dp83822 -dp83tc811 -dpt_i2o -dptf_power -drbd -drm -drm_kms_helper -drm_mipi_dbi -drm_panel_orientation_quirks -drm_vram_helper -ds1621 -ds1682 -ds620 -dsa_core -dummy -dummy-irq -dw-edma -dw-edma-pcie -dw-i3c-master -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -e100 -e1000 -e1000e -e752x_edac -ebc-c384_wdt -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec_bhf -ec_sys -ecc -ecdh_generic -echainiv -ecrdsa_generic -ee1004 -eeprom_93cx6 -efa -efi-pstore -efi_test -efibc -efs -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -ems_pci -enclosure -ene_ir -eni -enic -eql -erofs -esas2r -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et131x -ethoc -eurotechwdt -evbug -exfat -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81601 -failover -fam15h_power -farsync -faulty -fb_ddc -fb_sys_fops -fcrypt -fdomain -fdomain_pci -fealnx -ff-memless -fieldbus_dev -fintek-cir -firestream -fixed -fm10k -fore_200e -fou -fou6 -fpga-mgr -freevxfs -fscache -fschmd -fsl_linflexuart -fsl_lpuart -ftsteutates -g760a -g762 -garp -gasket -gdth -genet -geneve -genwqe_card -gfs2 -ghash-clmulni-intel -gl518sm -gl520sm -glue_helper -gma500_gfx -gnss -gpd-pocket-fan -gpio-104-dio-48e -gpio-104-idi-48 -gpio-104-idio-16 -gpio-adp5588 -gpio-amd-fch -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-bd9571mwv -gpio-da9052 -gpio-dwapb -gpio-exar -gpio-f7188x -gpio-generic -gpio-gpio-mm -gpio-ich -gpio-it87 -gpio-janz-ttl -gpio-lp3943 -gpio-lp873x -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-ml-ioh -gpio-mockup -gpio-pca953x -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-sch -gpio-sch311x -gpio-siox -gpio-tpic2810 -gpio-tps65086 -gpio-tps65912 -gpio-tqmx86 -gpio-vibra -gpio-vx855 -gpio-wcove -gpio-winbond -gpio-wm831x -gpio-wm8994 -gpio-ws16c48 -gpio-xra1403 -gpio_keys_polled -gpu-sched -grace -gre -gtp -gve -habanalabs -hamachi -hangcheck-timer -hci -hd44780 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -he -hfs -hfsplus -hi311x -hid -hid-asus -hid-cougar -hid-generic -hid-hyperv -hid-ite -hid-jabra -hid-led -hid-macally -hid-maltron -hid-mf -hid-nti -hid-redragon -hid-sensor-custom -hid-sensor-hub -hid-steam -hid-udraw-ps3 -hid-viewsonic -hid-wiimote -hih6130 -hinic -hio -hmc6352 -horizon -hpfs -hpsa -hptiop -hsr -hsu_dma -htc-pasic3 -huawei-wmi -hv_balloon -hv_netvsc -hv_sock -hv_utils -hwmon-vid -hwpoison-inject -hx8357d -hyperv-keyboard -hyperv_fb -i10nm_edac -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-core -i2c-designware-core -i2c-designware-pci -i2c-designware-platform -i2c-dev -i2c-gpio -i2c-i801 -i2c-isch -i2c-ismt -i2c-mlxcpld -i2c-multi-instantiate -i2c-mux -i2c-mux-ltc4306 -i2c-nforce2 -i2c-nforce2-s4985 -i2c-nvidia-gpu -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-via -i2c-viapro -i2c-xiic -i3000_edac -i3200_edac -i3c -i3c-master-cdns -i40e -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i7core_edac -i82975x_edac -i915 -iTCO_vendor_support -iTCO_wdt -iavf -ib700wdt -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_umad -ib_uverbs -ibmaem -ibmasm -ibmasr -ibmpex -icc-core -ice -icp -ics932s401 -idma64 -idt77252 -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -igb -igbvf -igc -ila -ili9225 -ili9341 -img-ascii-lcd -imm -ina209 -ina2xx -ina3221 -inet_diag -initio -input-polldev -intel-cstate -intel-hid -intel-ish-ipc -intel-ishtp -intel-ishtp-hid -intel-ishtp-loader -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-rng -intel-rst -intel-smartconnect -intel-wmi-thunderbolt -intel_atomisp2_pm -intel_bxt_pmic_thermal -intel_bxtwc_tmu -intel_chtdc_ti_pwrbtn -intel_int0002_vgpio -intel_ips -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_sgx -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_soc_pmic_bxtwc -intel_soc_pmic_chtdc_ti -intel_telemetry_core -intel_telemetry_debugfs -intel_telemetry_pltdrv -intelfb -ioatdma -ionic -ip6_gre -ip6_tables -ip6_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipcomp -ipcomp6 -iphase -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipvtap -ir-imon-decoder -ir-jvc-decoder -ir-mce_kbd-decoder -ir-nec-decoder -ir-rc5-decoder -ir-rc6-decoder -ir-rcmm-decoder -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-xmp-decoder -irq-madera -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isicom -isl29003 -isl29020 -isofs -isst_if_common -isst_if_mbox_msr -isst_if_mbox_pci -isst_if_mmio -it87 -it8712f_wdt -it87_wdt -ite-cir -iw_cm -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jfs -jme -joydev -jsm -k10temp -k8temp -kafs -kcm -keywrap -khazad -kheaders -kmem -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -ks0108 -ksz8795 -ksz8795_spi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -kvaser_pci -kvaser_pciefd -kvm -kvm-amd -kvm-intel -kyber-iosched -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -lan743x -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lec -led-class -leds-apu -leds-gpio -leds-lm3532 -leds-lm36274 -leds-mlxreg -leds-ti-lmu-common -ledtrig-activity -ledtrig-audio -ledtrig-netdev -ledtrig-pattern -lg-laptop -libahci -libahci_platform -libarc4 -libceph -libcrc32c -libdes -libiscsi -libiscsi_tcp -libsas -lineage-pem -linear -ll_temac -llc -llc2 -lm363x-regulator -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lockd -locktorture -lp -lp3943 -lp873x -lpc_ich -lpc_sch -lpfc -lru_cache -lrw -lt3651-charger -ltc2945 -ltc2990 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -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 -mac80211 -mac802154 -mac802154_hwsim -machzwd -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mana -marvell10g -matrix-keymap -max1111 -max14577 -max16065 -max1619 -max1668 -max197 -max3100 -max31722 -max31790 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max77693 -max8907 -mc13783-adc -mc13xxx-core -mc13xxx-i2c -mc13xxx-spi -mcb -mcb-lpc -mcb-pci -mce-inject -mcp3021 -mcr20a -md-cluster -md4 -mdev -mdio -mdio-bcm-unimac -mdio-i2c -mdio-mscc-miim -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei_hdcp -mei_phy -mei_wdt -memory-notifier-error-inject -men_z135_uart -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -mi0283qt -michael_mic -microchip_t1 -microread -microread_mei -mii -minix -mip6 -mlx-platform -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -most_cdev -most_core -most_i2c -most_net -moxa -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpt3sas -mptbase -mptctl -mptfc -mptsas -mptscsih -mptspi -mrp -mscc_ocelot_common -msdos -msm-vibrator -msr -mt7530 -multipath -mvmdio -mvsas -mvumi -mxm-wmi -mxser -myrb -myrs -n5pf -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_virtio -net_failover -netconsole -netdevsim -netlink_diag -netrom -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -nf_tproxy_ipv4 -nf_tproxy_ipv6 -nfc -nfc_digital -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-avx2 -nhpoly1305-sse2 -ni903x_wdt -nic7018_wdt -nicstar -nilfs2 -nixge -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-1 -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -nosy -notifier-error-inject -nozomi -npcm750-pwm-fan -nsh -ntb -ntb_hw_idt -ntb_hw_intel -ntb_hw_switchtec -ntb_netdev -ntb_transport -ntc_thermistor -ntfs -nuvoton-cir -nv_tco -nvme-fabrics -nvme-fc -nvme-rdma -nvme-tcp -nvmet -nvmet-fc -nvmet-tcp -nvram -nxp-tja11xx -objagg -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -of_xilinx_wdt -ofb -omfs -opa_vnic -openvswitch -oprofile -overlay -p8022 -padlock-aes -padlock-sha -panel -panel-raspberrypi-touchscreen -parkbd -parman -parport -parport_ax88796 -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pcbc -pcengines-apuv2 -pcf50633 -pcf50633-adc -pcf50633-gpio -pcf8591 -pci-pf-stub -pci-stub -pci200syn -pcips2 -pcmcia_core -pcmcia_rsrc -pcrypt -pcwd_pci -pdc_adma -peak_pci -peak_pciefd -peaq-wmi -phantom -phonet -phylink -pi433 -pinctrl-cannonlake -pinctrl-cedarfork -pinctrl-denverton -pinctrl-icelake -pinctrl-intel -pinctrl-lewisburg -pinctrl-madera -pinctrl-mcp23s08 -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -plx_pci -pm-notifier-error-inject -pm80xx -pmcraid -pn544 -pn544_mei -pn_pep -pnd2_edac -poly1305-x86_64 -poly1305_generic -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pptp -pretimeout_panic -ps2-gpio -ps2mult -psample -psnap -ptp_kvm -punit_atom_debug -pvpanic -qat_dh895xcc -qat_dh895xccvf -qcom_glink_native -qcom_glink_rpm -qla1280 -qla2xxx -qla4xxx -qlge -qnx4 -qnx6 -qt1050 -quota_tree -quota_v1 -quota_v2 -qxl -r8169 -radeon -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -ramoops -rapl -raw -raw_diag -rbd -rc-adstech-dvb-t-pci -rc-alink-dtu-m -rc-anysee -rc-apac-viewcomp -rc-astrometa-t2hybrid -rc-asus-pc39 -rc-asus-ps3-100 -rc-ati-tv-wonder-hd-600 -rc-ati-x10 -rc-avermedia -rc-avermedia-a16d -rc-avermedia-cardbus -rc-avermedia-dvbt -rc-avermedia-m135a -rc-avermedia-m733a-rm-k6 -rc-avermedia-rm-ks -rc-avertv-303 -rc-azurewave-ad-tu700 -rc-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rcuperf -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reed_solomon -regmap-i2c -reiserfs -repaper -reset-ti-syscon -retu-mfd -retu_wdt -rfc1051 -rfc1201 -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rmd128 -rmd160 -rmd256 -rmd320 -rockchip -rocket -romfs -rose -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rt5033 -rtc-ab-eoz9 -rtc-am1805 -rtc-ftrtc010 -rtc-pcf85363 -rtc-rv3028 -rtc-sd3078 -rts5208 -rtsx_pci -rxrpc -s2io -salsa20_generic -sata_dwc_460ex -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbni -sbs-manager -sc1200wdt -sc16is7xx -sch311x_wdt -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -sch_gred -sch_hfsc -sch_hhf -sch_htb -sch_ingress -sch_mqprio -sch_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_skbprio -sch_taprio -sch_tbf -sch_teql -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -seco-cec -seed -serial_ir -serio_raw -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sha1-ssse3 -sha256-ssse3 -sha3_generic -sha512-ssse3 -shiftfs -sht15 -sht21 -sht3x -shtc1 -sim710 -siox-bus-gpio -siox-core -sir_ir -sis-agp -sis5595 -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -skx_edac -sky2 -sky81452 -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -sm3_generic -sm4_generic -sm501 -sm501fb -sm750fb -smartpqi -smc -smc_diag -smm665 -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -snic -softdog -solos-pci -soundwire-bus -sp5100_tco -sparse-keymap -spi-altera -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-loopback-test -spi-mxic -spi-nxp-fspi -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-sifive -spi-slave-system-control -spi-slave-time -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spidev -spl -ssb -st -st7586 -st7735r -stex -stp -streebog_generic -stts751 -sundance -suni -sunrpc -surface3-wmi -switchtec -sym53c8xx -synclink -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -tap -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc654 -tc74 -tcm_loop -tcp_bbr -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_nv -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tda9950 -tea -tg3 -tgr192 -thmc50 -ti-lmu -ti_am335x_tscadc -tifm_7xx1 -tifm_core -timeriomem-rng -tipc -tlclk -tls -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -torture -tpci200 -tpm_key_parser -tps6105x -tps65010 -tps6507x -tps65086 -tps65132-regulator -tps65912-i2c -tqmx86 -tqmx86_wdt -ts_bm -ts_fsm -ts_kmp -tsi721_mport -tsl2550 -ttm -ttynull -tunnel4 -tunnel6 -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -uPD60620 -uPD98402 -uartlite -udf -udp_diag -ufs -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -unix_diag -userio -usnic_verbs -vboxvideo -vcan -veth -vfio_mdev -vhost -vhost_net -vhost_scsi -vhost_vsock -via-cputemp -via-rng -via686a -via_wdt -viafb -video -virt-dma -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -vkms -vmac -vme_ca91cx42 -vme_fake -vme_tsi148 -vme_vmivme7805 -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vport-geneve -vport-gre -vport-vxlan -vrf -vringh -vsock -vsock_diag -vsockmon -vt1211 -vt6655_stage -vt8231 -vx855 -vxcan -vxge -w83627ehf -w83627hf -w83627hf_wdt -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977f_wdt -w83l785ts -w83l786ng -wafer5823wdt -wanxl -wd719x -wdat_wdt -wdt_pci -winbond-cir -wireguard -wm831x-hwmon -wm831x_wdt -wm8994 -wmi -wmi-bmof -wp512 -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgene-hwmon -xhci-plat-hcd -xiaomi-wmi -xilinx-spi -xilinx_emac -xilinx_sdfec -xlnx_vcu -xor -xr_usb_serial_common -xsk_diag -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -xt_LED -xt_LOG -xt_MASQUERADE -xt_NETMAP -xt_NFLOG -xt_NFQUEUE -xt_RATEEST -xt_REDIRECT -xt_SECMARK -xt_TCPMSS -xt_TCPOPTSTRIP -xt_TEE -xt_TPROXY -xt_TRACE -xt_addrtype -xt_bpf -xt_cgroup -xt_cluster -xt_comment -xt_connbytes -xt_connlabel -xt_connlimit -xt_connmark -xt_conntrack -xt_cpu -xt_dccp -xt_devgroup -xt_dscp -xt_ecn -xt_esp -xt_hashlimit -xt_helper -xt_hl -xt_ipcomp -xt_iprange -xt_ipvs -xt_l2tp -xt_length -xt_limit -xt_mac -xt_mark -xt_multiport -xt_nat -xt_nfacct -xt_osf -xt_owner -xt_physdev -xt_pkttype -xt_policy -xt_quota -xt_rateest -xt_realm -xt_recent -xt_sctp -xt_set -xt_socket -xt_state -xt_statistic -xt_string -xt_tcpmss -xt_tcpudp -xt_time -xt_u32 -xxhash_generic -xz_dec_test -yellowfin -yenta_socket -z3fold -zatm -zavl -zcommon -zfs -ziirave_wdt -zlua -znvpair -zram -zstd -zstd_compress -zunicode reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/amd64/azure.retpoline +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/amd64/azure.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-azure-5.4.0/debian.azure/abi/5.4.0-1054.56/fwinfo +++ linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1054.56/fwinfo @@ -1,685 +0,0 @@ -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: aic94xx-seq.fw -firmware: amdgpu/banks_k_2_smc.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/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/hainan_ce.bin -firmware: amdgpu/hainan_k_smc.bin -firmware: amdgpu/hainan_mc.bin -firmware: amdgpu/hainan_me.bin -firmware: amdgpu/hainan_pfp.bin -firmware: amdgpu/hainan_rlc.bin -firmware: amdgpu/hainan_smc.bin -firmware: amdgpu/hawaii_ce.bin -firmware: amdgpu/hawaii_k_smc.bin -firmware: amdgpu/hawaii_mc.bin -firmware: amdgpu/hawaii_me.bin -firmware: amdgpu/hawaii_mec.bin -firmware: amdgpu/hawaii_pfp.bin -firmware: amdgpu/hawaii_rlc.bin -firmware: amdgpu/hawaii_sdma.bin -firmware: amdgpu/hawaii_sdma1.bin -firmware: amdgpu/hawaii_smc.bin -firmware: amdgpu/hawaii_uvd.bin -firmware: amdgpu/hawaii_vce.bin -firmware: amdgpu/kabini_ce.bin -firmware: amdgpu/kabini_me.bin -firmware: amdgpu/kabini_mec.bin -firmware: amdgpu/kabini_pfp.bin -firmware: amdgpu/kabini_rlc.bin -firmware: amdgpu/kabini_sdma.bin -firmware: amdgpu/kabini_sdma1.bin -firmware: amdgpu/kabini_uvd.bin -firmware: amdgpu/kabini_vce.bin -firmware: amdgpu/kaveri_ce.bin -firmware: amdgpu/kaveri_me.bin -firmware: amdgpu/kaveri_mec.bin -firmware: amdgpu/kaveri_mec2.bin -firmware: amdgpu/kaveri_pfp.bin -firmware: amdgpu/kaveri_rlc.bin -firmware: amdgpu/kaveri_sdma.bin -firmware: amdgpu/kaveri_sdma1.bin -firmware: amdgpu/kaveri_uvd.bin -firmware: amdgpu/kaveri_vce.bin -firmware: amdgpu/mullins_ce.bin -firmware: amdgpu/mullins_me.bin -firmware: amdgpu/mullins_mec.bin -firmware: amdgpu/mullins_pfp.bin -firmware: amdgpu/mullins_rlc.bin -firmware: amdgpu/mullins_sdma.bin -firmware: amdgpu/mullins_sdma1.bin -firmware: amdgpu/mullins_uvd.bin -firmware: amdgpu/mullins_vce.bin -firmware: amdgpu/navi10_asd.bin -firmware: amdgpu/navi10_ce.bin -firmware: amdgpu/navi10_gpu_info.bin -firmware: amdgpu/navi10_me.bin -firmware: amdgpu/navi10_mec.bin -firmware: amdgpu/navi10_mec2.bin -firmware: amdgpu/navi10_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_vcn.bin -firmware: amdgpu/navi14_asd.bin -firmware: amdgpu/navi14_ce.bin -firmware: amdgpu/navi14_ce_wks.bin -firmware: amdgpu/navi14_gpu_info.bin -firmware: amdgpu/navi14_me.bin -firmware: amdgpu/navi14_me_wks.bin -firmware: amdgpu/navi14_mec.bin -firmware: amdgpu/navi14_mec2.bin -firmware: amdgpu/navi14_mec2_wks.bin -firmware: amdgpu/navi14_mec_wks.bin -firmware: amdgpu/navi14_pfp.bin -firmware: amdgpu/navi14_pfp_wks.bin -firmware: amdgpu/navi14_rlc.bin -firmware: amdgpu/navi14_sdma.bin -firmware: amdgpu/navi14_sdma1.bin -firmware: amdgpu/navi14_smc.bin -firmware: amdgpu/navi14_sos.bin -firmware: amdgpu/navi14_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/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_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/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_ce.bin -firmware: amdgpu/polaris12_ce_2.bin -firmware: amdgpu/polaris12_k_mc.bin -firmware: amdgpu/polaris12_k_smc.bin -firmware: amdgpu/polaris12_mc.bin -firmware: amdgpu/polaris12_me.bin -firmware: amdgpu/polaris12_me_2.bin -firmware: amdgpu/polaris12_mec.bin -firmware: amdgpu/polaris12_mec2.bin -firmware: amdgpu/polaris12_mec2_2.bin -firmware: amdgpu/polaris12_mec_2.bin -firmware: amdgpu/polaris12_pfp.bin -firmware: amdgpu/polaris12_pfp_2.bin -firmware: amdgpu/polaris12_rlc.bin -firmware: amdgpu/polaris12_sdma.bin -firmware: amdgpu/polaris12_sdma1.bin -firmware: amdgpu/polaris12_smc.bin -firmware: amdgpu/polaris12_uvd.bin -firmware: amdgpu/polaris12_vce.bin -firmware: amdgpu/raven2_asd.bin -firmware: amdgpu/raven2_ce.bin -firmware: amdgpu/raven2_gpu_info.bin -firmware: amdgpu/raven2_me.bin -firmware: amdgpu/raven2_mec.bin -firmware: amdgpu/raven2_mec2.bin -firmware: amdgpu/raven2_pfp.bin -firmware: amdgpu/raven2_rlc.bin -firmware: amdgpu/raven2_sdma.bin -firmware: amdgpu/raven2_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_vcn.bin -firmware: amdgpu/renoir_asd.bin -firmware: amdgpu/renoir_ce.bin -firmware: amdgpu/renoir_gpu_info.bin -firmware: amdgpu/renoir_me.bin -firmware: amdgpu/renoir_mec.bin -firmware: amdgpu/renoir_mec2.bin -firmware: amdgpu/renoir_pfp.bin -firmware: amdgpu/renoir_rlc.bin -firmware: amdgpu/renoir_sdma.bin -firmware: amdgpu/renoir_vcn.bin -firmware: amdgpu/si58_mc.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/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/vega10_acg_smc.bin -firmware: amdgpu/vega10_asd.bin -firmware: amdgpu/vega10_ce.bin -firmware: amdgpu/vega10_gpu_info.bin -firmware: amdgpu/vega10_me.bin -firmware: amdgpu/vega10_mec.bin -firmware: amdgpu/vega10_mec2.bin -firmware: amdgpu/vega10_pfp.bin -firmware: amdgpu/vega10_rlc.bin -firmware: amdgpu/vega10_sdma.bin -firmware: amdgpu/vega10_sdma1.bin -firmware: amdgpu/vega10_smc.bin -firmware: amdgpu/vega10_sos.bin -firmware: amdgpu/vega10_uvd.bin -firmware: amdgpu/vega10_vce.bin -firmware: amdgpu/vega12_asd.bin -firmware: amdgpu/vega12_ce.bin -firmware: amdgpu/vega12_gpu_info.bin -firmware: amdgpu/vega12_me.bin -firmware: amdgpu/vega12_mec.bin -firmware: amdgpu/vega12_mec2.bin -firmware: amdgpu/vega12_pfp.bin -firmware: amdgpu/vega12_rlc.bin -firmware: amdgpu/vega12_sdma.bin -firmware: amdgpu/vega12_sdma1.bin -firmware: amdgpu/vega12_smc.bin -firmware: amdgpu/vega12_sos.bin -firmware: amdgpu/vega12_uvd.bin -firmware: amdgpu/vega12_vce.bin -firmware: amdgpu/vega20_asd.bin -firmware: amdgpu/vega20_ce.bin -firmware: amdgpu/vega20_me.bin -firmware: amdgpu/vega20_mec.bin -firmware: amdgpu/vega20_mec2.bin -firmware: amdgpu/vega20_pfp.bin -firmware: amdgpu/vega20_rlc.bin -firmware: amdgpu/vega20_sdma.bin -firmware: amdgpu/vega20_sdma1.bin -firmware: amdgpu/vega20_smc.bin -firmware: amdgpu/vega20_sos.bin -firmware: amdgpu/vega20_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: ast_dp501_fw.bin -firmware: atmsar11.fw -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.13.11.0.fw -firmware: bnx2x/bnx2x-e1h-7.13.11.0.fw -firmware: bnx2x/bnx2x-e2-7.13.11.0.fw -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: cavium/cnn55xx_se.fw -firmware: cbfw-3.2.5.1.bin -firmware: cp204unx.cod -firmware: ct2fw-3.2.5.1.bin -firmware: ctfw-3.2.5.1.bin -firmware: cxgb3/ael2005_opt_edc.bin -firmware: cxgb3/ael2005_twx_edc.bin -firmware: cxgb3/ael2020_twx_edc.bin -firmware: cxgb3/t3b_psram-1.1.0.bin -firmware: cxgb3/t3c_psram-1.1.0.bin -firmware: cxgb3/t3fw-7.12.0.bin -firmware: cxgb4/t4fw.bin -firmware: cxgb4/t5fw.bin -firmware: cxgb4/t6fw.bin -firmware: cyzfirm.bin -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: i915/bxt_dmc_ver1_07.bin -firmware: i915/bxt_guc_33.0.0.bin -firmware: i915/bxt_huc_ver01_8_2893.bin -firmware: i915/cnl_dmc_ver1_07.bin -firmware: i915/glk_dmc_ver1_04.bin -firmware: i915/glk_guc_33.0.0.bin -firmware: i915/glk_huc_ver03_01_2893.bin -firmware: i915/icl_dmc_ver1_07.bin -firmware: i915/icl_guc_33.0.0.bin -firmware: i915/icl_huc_ver8_4_3238.bin -firmware: i915/kbl_dmc_ver1_04.bin -firmware: i915/kbl_guc_33.0.0.bin -firmware: i915/kbl_huc_ver02_00_1810.bin -firmware: i915/skl_dmc_ver1_27.bin -firmware: i915/skl_guc_33.0.0.bin -firmware: i915/skl_huc_ver01_07_1398.bin -firmware: i915/tgl_dmc_ver2_04.bin -firmware: intel/ice/ddp/ice.pkg -firmware: isi4608.bin -firmware: isi4616.bin -firmware: isi608.bin -firmware: isi608em.bin -firmware: isi616em.bin -firmware: lantiq/xrx200_phy11g_a14.bin -firmware: lantiq/xrx200_phy11g_a22.bin -firmware: lantiq/xrx200_phy22f_a14.bin -firmware: lantiq/xrx200_phy22f_a22.bin -firmware: lantiq/xrx300_phy11g_a21.bin -firmware: lantiq/xrx300_phy22f_a21.bin -firmware: lattice-ecp3.bit -firmware: mellanox/mlxsw_spectrum-13.2000.1886.mfa2 -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: pca200e_ecd.bin2 -firmware: qat_895xcc.bin -firmware: qat_895xcc_mmp.bin -firmware: ql2100_fw.bin -firmware: ql2200_fw.bin -firmware: ql2300_fw.bin -firmware: ql2322_fw.bin -firmware: ql2400_fw.bin -firmware: ql2500_fw.bin -firmware: qlogic/1040.bin -firmware: qlogic/12160.bin -firmware: qlogic/1280.bin -firmware: radeon/ARUBA_me.bin -firmware: radeon/ARUBA_pfp.bin -firmware: radeon/ARUBA_rlc.bin -firmware: radeon/BARTS_mc.bin -firmware: radeon/BARTS_me.bin -firmware: radeon/BARTS_pfp.bin -firmware: radeon/BARTS_smc.bin -firmware: radeon/BONAIRE_ce.bin -firmware: radeon/BONAIRE_mc.bin -firmware: radeon/BONAIRE_mc2.bin -firmware: radeon/BONAIRE_me.bin -firmware: radeon/BONAIRE_mec.bin -firmware: radeon/BONAIRE_pfp.bin -firmware: radeon/BONAIRE_rlc.bin -firmware: radeon/BONAIRE_sdma.bin -firmware: radeon/BONAIRE_smc.bin -firmware: radeon/BONAIRE_uvd.bin -firmware: radeon/BONAIRE_vce.bin -firmware: radeon/BTC_rlc.bin -firmware: radeon/CAICOS_mc.bin -firmware: radeon/CAICOS_me.bin -firmware: radeon/CAICOS_pfp.bin -firmware: radeon/CAICOS_smc.bin -firmware: radeon/CAYMAN_mc.bin -firmware: radeon/CAYMAN_me.bin -firmware: radeon/CAYMAN_pfp.bin -firmware: radeon/CAYMAN_rlc.bin -firmware: radeon/CAYMAN_smc.bin -firmware: radeon/CEDAR_me.bin -firmware: radeon/CEDAR_pfp.bin -firmware: radeon/CEDAR_rlc.bin -firmware: radeon/CEDAR_smc.bin -firmware: radeon/CYPRESS_me.bin -firmware: radeon/CYPRESS_pfp.bin -firmware: radeon/CYPRESS_rlc.bin -firmware: radeon/CYPRESS_smc.bin -firmware: radeon/CYPRESS_uvd.bin -firmware: radeon/HAINAN_ce.bin -firmware: radeon/HAINAN_mc.bin -firmware: radeon/HAINAN_mc2.bin -firmware: radeon/HAINAN_me.bin -firmware: radeon/HAINAN_pfp.bin -firmware: radeon/HAINAN_rlc.bin -firmware: radeon/HAINAN_smc.bin -firmware: radeon/HAWAII_ce.bin -firmware: radeon/HAWAII_mc.bin -firmware: radeon/HAWAII_mc2.bin -firmware: radeon/HAWAII_me.bin -firmware: radeon/HAWAII_mec.bin -firmware: radeon/HAWAII_pfp.bin -firmware: radeon/HAWAII_rlc.bin -firmware: radeon/HAWAII_sdma.bin -firmware: radeon/HAWAII_smc.bin -firmware: radeon/JUNIPER_me.bin -firmware: radeon/JUNIPER_pfp.bin -firmware: radeon/JUNIPER_rlc.bin -firmware: radeon/JUNIPER_smc.bin -firmware: radeon/KABINI_ce.bin -firmware: radeon/KABINI_me.bin -firmware: radeon/KABINI_mec.bin -firmware: radeon/KABINI_pfp.bin -firmware: radeon/KABINI_rlc.bin -firmware: radeon/KABINI_sdma.bin -firmware: radeon/KAVERI_ce.bin -firmware: radeon/KAVERI_me.bin -firmware: radeon/KAVERI_mec.bin -firmware: radeon/KAVERI_pfp.bin -firmware: radeon/KAVERI_rlc.bin -firmware: radeon/KAVERI_sdma.bin -firmware: radeon/MULLINS_ce.bin -firmware: radeon/MULLINS_me.bin -firmware: radeon/MULLINS_mec.bin -firmware: radeon/MULLINS_pfp.bin -firmware: radeon/MULLINS_rlc.bin -firmware: radeon/MULLINS_sdma.bin -firmware: radeon/OLAND_ce.bin -firmware: radeon/OLAND_mc.bin -firmware: radeon/OLAND_mc2.bin -firmware: radeon/OLAND_me.bin -firmware: radeon/OLAND_pfp.bin -firmware: radeon/OLAND_rlc.bin -firmware: radeon/OLAND_smc.bin -firmware: radeon/PALM_me.bin -firmware: radeon/PALM_pfp.bin -firmware: radeon/PITCAIRN_ce.bin -firmware: radeon/PITCAIRN_mc.bin -firmware: radeon/PITCAIRN_mc2.bin -firmware: radeon/PITCAIRN_me.bin -firmware: radeon/PITCAIRN_pfp.bin -firmware: radeon/PITCAIRN_rlc.bin -firmware: radeon/PITCAIRN_smc.bin -firmware: radeon/R100_cp.bin -firmware: radeon/R200_cp.bin -firmware: radeon/R300_cp.bin -firmware: radeon/R420_cp.bin -firmware: radeon/R520_cp.bin -firmware: radeon/R600_me.bin -firmware: radeon/R600_pfp.bin -firmware: radeon/R600_rlc.bin -firmware: radeon/R600_uvd.bin -firmware: radeon/R700_rlc.bin -firmware: radeon/REDWOOD_me.bin -firmware: radeon/REDWOOD_pfp.bin -firmware: radeon/REDWOOD_rlc.bin -firmware: radeon/REDWOOD_smc.bin -firmware: radeon/RS600_cp.bin -firmware: radeon/RS690_cp.bin -firmware: radeon/RS780_me.bin -firmware: radeon/RS780_pfp.bin -firmware: radeon/RS780_uvd.bin -firmware: radeon/RV610_me.bin -firmware: radeon/RV610_pfp.bin -firmware: radeon/RV620_me.bin -firmware: radeon/RV620_pfp.bin -firmware: radeon/RV630_me.bin -firmware: radeon/RV630_pfp.bin -firmware: radeon/RV635_me.bin -firmware: radeon/RV635_pfp.bin -firmware: radeon/RV670_me.bin -firmware: radeon/RV670_pfp.bin -firmware: radeon/RV710_me.bin -firmware: radeon/RV710_pfp.bin -firmware: radeon/RV710_smc.bin -firmware: radeon/RV710_uvd.bin -firmware: radeon/RV730_me.bin -firmware: radeon/RV730_pfp.bin -firmware: radeon/RV730_smc.bin -firmware: radeon/RV740_smc.bin -firmware: radeon/RV770_me.bin -firmware: radeon/RV770_pfp.bin -firmware: radeon/RV770_smc.bin -firmware: radeon/RV770_uvd.bin -firmware: radeon/SUMO2_me.bin -firmware: radeon/SUMO2_pfp.bin -firmware: radeon/SUMO_me.bin -firmware: radeon/SUMO_pfp.bin -firmware: radeon/SUMO_rlc.bin -firmware: radeon/SUMO_uvd.bin -firmware: radeon/TAHITI_ce.bin -firmware: radeon/TAHITI_mc.bin -firmware: radeon/TAHITI_mc2.bin -firmware: radeon/TAHITI_me.bin -firmware: radeon/TAHITI_pfp.bin -firmware: radeon/TAHITI_rlc.bin -firmware: radeon/TAHITI_smc.bin -firmware: radeon/TAHITI_uvd.bin -firmware: radeon/TAHITI_vce.bin -firmware: radeon/TURKS_mc.bin -firmware: radeon/TURKS_me.bin -firmware: radeon/TURKS_pfp.bin -firmware: radeon/TURKS_smc.bin -firmware: radeon/VERDE_ce.bin -firmware: radeon/VERDE_mc.bin -firmware: radeon/VERDE_mc2.bin -firmware: radeon/VERDE_me.bin -firmware: radeon/VERDE_pfp.bin -firmware: radeon/VERDE_rlc.bin -firmware: radeon/VERDE_smc.bin -firmware: radeon/banks_k_2_smc.bin -firmware: radeon/bonaire_ce.bin -firmware: radeon/bonaire_k_smc.bin -firmware: radeon/bonaire_mc.bin -firmware: radeon/bonaire_me.bin -firmware: radeon/bonaire_mec.bin -firmware: radeon/bonaire_pfp.bin -firmware: radeon/bonaire_rlc.bin -firmware: radeon/bonaire_sdma.bin -firmware: radeon/bonaire_smc.bin -firmware: radeon/bonaire_uvd.bin -firmware: radeon/hainan_ce.bin -firmware: radeon/hainan_k_smc.bin -firmware: radeon/hainan_mc.bin -firmware: radeon/hainan_me.bin -firmware: radeon/hainan_pfp.bin -firmware: radeon/hainan_rlc.bin -firmware: radeon/hainan_smc.bin -firmware: radeon/hawaii_ce.bin -firmware: radeon/hawaii_k_smc.bin -firmware: radeon/hawaii_mc.bin -firmware: radeon/hawaii_me.bin -firmware: radeon/hawaii_mec.bin -firmware: radeon/hawaii_pfp.bin -firmware: radeon/hawaii_rlc.bin -firmware: radeon/hawaii_sdma.bin -firmware: radeon/hawaii_smc.bin -firmware: radeon/kabini_ce.bin -firmware: radeon/kabini_me.bin -firmware: radeon/kabini_mec.bin -firmware: radeon/kabini_pfp.bin -firmware: radeon/kabini_rlc.bin -firmware: radeon/kabini_sdma.bin -firmware: radeon/kaveri_ce.bin -firmware: radeon/kaveri_me.bin -firmware: radeon/kaveri_mec.bin -firmware: radeon/kaveri_mec2.bin -firmware: radeon/kaveri_pfp.bin -firmware: radeon/kaveri_rlc.bin -firmware: radeon/kaveri_sdma.bin -firmware: radeon/mullins_ce.bin -firmware: radeon/mullins_me.bin -firmware: radeon/mullins_mec.bin -firmware: radeon/mullins_pfp.bin -firmware: radeon/mullins_rlc.bin -firmware: radeon/mullins_sdma.bin -firmware: radeon/oland_ce.bin -firmware: radeon/oland_k_smc.bin -firmware: radeon/oland_mc.bin -firmware: radeon/oland_me.bin -firmware: radeon/oland_pfp.bin -firmware: radeon/oland_rlc.bin -firmware: radeon/oland_smc.bin -firmware: radeon/pitcairn_ce.bin -firmware: radeon/pitcairn_k_smc.bin -firmware: radeon/pitcairn_mc.bin -firmware: radeon/pitcairn_me.bin -firmware: radeon/pitcairn_pfp.bin -firmware: radeon/pitcairn_rlc.bin -firmware: radeon/pitcairn_smc.bin -firmware: radeon/si58_mc.bin -firmware: radeon/tahiti_ce.bin -firmware: radeon/tahiti_mc.bin -firmware: radeon/tahiti_me.bin -firmware: radeon/tahiti_pfp.bin -firmware: radeon/tahiti_rlc.bin -firmware: radeon/tahiti_smc.bin -firmware: radeon/verde_ce.bin -firmware: radeon/verde_k_smc.bin -firmware: radeon/verde_mc.bin -firmware: radeon/verde_me.bin -firmware: radeon/verde_pfp.bin -firmware: radeon/verde_rlc.bin -firmware: radeon/verde_smc.bin -firmware: rp2.fw -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8125a-3.fw -firmware: rtl_nic/rtl8168d-1.fw -firmware: rtl_nic/rtl8168d-2.fw -firmware: rtl_nic/rtl8168e-1.fw -firmware: rtl_nic/rtl8168e-2.fw -firmware: rtl_nic/rtl8168e-3.fw -firmware: rtl_nic/rtl8168f-1.fw -firmware: rtl_nic/rtl8168f-2.fw -firmware: rtl_nic/rtl8168fp-3.fw -firmware: rtl_nic/rtl8168g-2.fw -firmware: rtl_nic/rtl8168g-3.fw -firmware: rtl_nic/rtl8168h-1.fw -firmware: rtl_nic/rtl8168h-2.fw -firmware: rtl_nic/rtl8402-1.fw -firmware: rtl_nic/rtl8411-1.fw -firmware: rtl_nic/rtl8411-2.fw -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: tigon/tg3.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin diff -u linux-azure-5.4.0/debian.azure/changelog linux-azure-5.4.0/debian.azure/changelog --- linux-azure-5.4.0/debian.azure/changelog +++ linux-azure-5.4.0/debian.azure/changelog @@ -1,3 +1,9802 @@ +linux-azure (5.4.0-1103.109) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1103.109 -proposed tracker (LP: #2003463) + + [ Ubuntu: 5.4.0-139.156 ] + + * focal/linux: 5.4.0-139.156 -proposed tracker (LP: #2003486) + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Luke Nowakowski-Krijger Tue, 24 Jan 2023 14:54:59 -0800 + +linux-azure (5.4.0-1102.108) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1102.108 -proposed tracker (LP: #2001818) + + * Focal update: v5.4.221 upstream stable release (LP: #1997993) + - [Config] azure: updateconfigs for ARM64_ERRATUM_1742098 + + [ Ubuntu: 5.4.0-138.155 ] + + * focal/linux: 5.4.0-138.155 -proposed tracker (LP: #2001845) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * Focal update: v5.4.224 upstream stable release (LP: #1999273) + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - i2c: xiic: Add platform module alias + - xfs: don't fail verifier on empty attr3 leaf block + - xfs: use ordered buffers to initialize dquot buffers during quotacheck + - xfs: gut error handling in xfs_trans_unreserve_and_mod_sb() + - xfs: group quota should return EDQUOT when prj quota enabled + - xfs: don't fail unwritten extent conversion on writeback due to edquot + - xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - block, bfq: protect 'bfqd->queued' by 'bfqd->lock' + - binder: fix UAF of alloc->vma in race with munmap() + - btrfs: fix type of parameter generation in btrfs_get_dentry + - tcp/udp: Make early_demux back namespacified. + - kprobe: reverse kp->flags when arm_kprobe failed + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after CR0 write + - mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - ipc: remove memcg accounting for sops objects in do_semtimedop() + - Linux 5.4.224 + * Focal update: v5.4.223 upstream stable release (LP: #1999179) + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: au88x0: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - fbdev: smscufx: Fix several use-after-free bugs + - mac802154: Fix LQI recording + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - kernfs: fix use-after-free in __kernfs_remove + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - xfs: finish dfops on every insert range shift iteration + - xfs: clear XFS_DQ_FREEING if we can't lock the dquot buffer to flush + - xfs: force the log after remapping a synchronous-writes file + - Xen/gntdev: don't ignore kernel unmapping error + - xen/gntdev: Prevent leaking grants + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - arc: iounmap() arg is volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: fix indefinite deferral of RTO with SACK reneging + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - nh: fix scope used to find saddr when adding non gw nh + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5: Fix possible use-after-free in async command interface + - net: enetc: survive memory pressure without crashing + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - Linux 5.4.223 + * Focal update: v5.4.222 upstream stable release (LP: #1997994) + - once: fix section mismatch on clang builds + - Linux 5.4.222 + * Focal update: v5.4.221 upstream stable release (LP: #1997993) + - xfs: open code insert range extent split helper + - xfs: rework insert range into an atomic operation + - xfs: rework collapse range into an atomic operation + - xfs: add a function to deal with corrupt buffers post-verifiers + - xfs: xfs_buf_corruption_error should take __this_address + - xfs: fix buffer corruption reporting when xfs_dir3_free_header_check fails + - xfs: check owner of dir3 data blocks + - xfs: check owner of dir3 blocks + - xfs: Use scnprintf() for avoiding potential buffer overflow + - xfs: remove the xfs_disk_dquot_t and xfs_dquot_t + - xfs: remove the xfs_dq_logitem_t typedef + - xfs: remove the xfs_qoff_logitem_t typedef + - xfs: Replace function declaration by actual definition + - xfs: factor out quotaoff intent AIL removal and memory free + - xfs: fix unmount hang and memory leak on shutdown during quotaoff + - xfs: preserve default grace interval during quotacheck + - xfs: Lower CIL flush limit for large logs + - xfs: Throttle commits on delayed background CIL push + - xfs: factor common AIL item deletion code + - xfs: tail updates only need to occur when LSN changes + - xfs: don't write a corrupt unmount record to force summary counter recalc + - xfs: trylock underlying buffer on dquot flush + - xfs: factor out a new xfs_log_force_inode helper + - xfs: reflink should force the log out if mounted with wsync + - xfs: move inode flush to the sync workqueue + - xfs: fix use-after-free on CIL context on shutdown + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: venus: dec: Handle the case where find_format fails + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - r8152: add PID for the Lenovo OneLink+ Dock + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - HID: magicmouse: Do not set BTN_MOUSE on double report + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: hns: fix possible memory leak in hnae_ae_register() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - ACPI: video: Force backlight native for more TongFang devices + - Makefile.debug: re-enable debug info for .S files + - hv_netvsc: Fix race between VF offering and VF association message from host + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - Linux 5.4.221 + * Focal update: v5.4.220 upstream stable release (LP: #1996812) + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - usb: add quirks for Lenovo OneLink+ Dock + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: sdhci-sprd: Fix minimum clock limit + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - regulator: qcom_rpm: Fix circular deferral regression + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - riscv: Allow PROT_WRITE-only mmap() + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - powerpc/boot: Explicitly disable usage of SPE instructions + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - btrfs: fix race between quota enable and quota rescan ioctl + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - nilfs2: fix use-after-free bug of struct nilfs_root + - jbd2: wake up journal waiters in FIFO order, not LIFO + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: place buffer head allocation before handle start + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Fix race between reset page and reading page + - media: cedrus: Set the platform driver data earlier + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - gcov: support GCC 12.1 and newer compilers + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - selinux: use "grep -E" instead of "egrep" + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - userfaultfd: open userfaultfds with O_RDONLY + - sh: machvec: Use char[] for section boundaries + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - nfsd: Fix a memory leak in an error handling path + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - x86/microcode/AMD: Track patch allocation size explicitly + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm/mipi-dsi: Detach devices when removing the host + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - drm: fix drm_mipi_dbi build errors + - drm/bridge: megachips: Fix a null pointer dereference bug + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/omap: dss: Fix refcount leak bugs + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: inkern: only release the device node when done with it + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - clk: meson: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - drivers: serial: jsm: fix some leaks in probe + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - iommu/iova: Fix module config properly + - kbuild: remove the target in signal traps when interrupted + - crypto: cavium - prevent integer overflow loading firmware + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - Bluetooth: L2CAP: Fix user-after-free + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/amd/display: fix overflow on MIN_I64 definition + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - drm/amdgpu: fix initial connector audio value + - mmc: sdhci-msm: add compatible string check for sdm670 + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - btrfs: scrub: try to fix super block errors + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - HID: roccat: Fix use-after-free in roccat_read() + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - clk: bcm2835: Make peripheral PLLC critical + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - net: ieee802154: return -EINVAL for unknown addr type + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - ext4: continue to expand file system when the target size doesn't reach + - efi: libstub: drop pointless get_memory_map() call + - inet: fully convert sk->sk_rx_dst to RCU rules + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - Linux 5.4.220 + * Focal update: v5.4.219 upstream stable release (LP: #1996804) + - Linux 5.4.219 + + -- Tim Gardner Tue, 17 Jan 2023 08:45:43 -0700 + +linux-azure (5.4.0-1101.107) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1101.107 -proposed tracker (LP: #2001942) + + [ Ubuntu: 5.4.0-137.154 ] + + * focal/linux: 5.4.0-137.154 -proposed tracker (LP: #2001969) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-43945 + - NFSD: Cap rsize_bop result based on send buffer size + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Thadeu Lima de Souza Cascardo Tue, 10 Jan 2023 11:05:06 -0300 + +linux-azure (5.4.0-1100.106) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1100.106 -proposed tracker (LP: #1999429) + + * ubuntu_bpf failed to build on F-azure-5.4 / B-azure-5.4 ( error: + ‘bpf_object_open_opts’ undeclared) (LP: #1990794) + - Revert "bpf, testing: Add selftest to read/write sockaddr from user space" + + * Focal update: v5.4.214 upstream stable release (LP: #1993196) + - [Config] azure: soc: fsl: select FSL_GUTS driver for DPIO + + * Azure: hv_netvsc: Fix race between VF offering and VF association message + from host (LP: #1994974) + - hv_netvsc: Fix race between VF offering and VF association message from host + + * Azure: RMB Patch to backport on the Azure Linux Images (LP: #1994987) + - net: mana: Add rmb after checking owner bits + + [ Ubuntu: 5.4.0-136.153 ] + + * focal/linux: 5.4.0-136.153 -proposed tracker (LP: #1997835) + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * [UBUNTU 20.04] KVM: PV: ext call delivered twice when receiver in PSW wait + (LP: #1995941) + - KVM: s390: pv: don't present the ecall interrupt twice + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * Focal update: v5.4.218 upstream stable release (LP: #1995530) + - mm: pagewalk: Fix race between unmap and page walker + - perf tools: Fixup get_current_dir_name() compilation + - firmware: arm_scmi: Add SCMI PM driver remove routine + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - arch: um: Mark the stack non-executable to fix a binutils warning + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - random: restore O_NONBLOCK support + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - Linux 5.4.218 + * Focal update: v5.4.217 upstream stable release (LP: #1995528) + - xfs: fix misuse of the XFS_ATTR_INCOMPLETE flag + - xfs: introduce XFS_MAX_FILEOFF + - xfs: truncate should remove all blocks, not just to the end of the page + cache + - xfs: fix s_maxbytes computation on 32-bit kernels + - xfs: fix IOCB_NOWAIT handling in xfs_file_dio_aio_read + - xfs: refactor remote attr value buffer invalidation + - xfs: fix memory corruption during remote attr value buffer invalidation + - xfs: move incore structures out of xfs_da_format.h + - xfs: streamline xfs_attr3_leaf_inactive + - xfs: fix uninitialized variable in xfs_attr3_leaf_inactive + - xfs: remove unused variable 'done' + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - docs: update mediator information in CoC docs + - Linux 5.4.217 + * Focal update: v5.4.216 upstream stable release (LP: #1995526) + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - clk: ingenic-tcu: Properly enable registers before accessing timers + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/migrate_device.c: flush TLB while holding PTL + - mm: fix madivse_pageout mishandling on non-LRU page + - media: dvb_vb2: fix possible out of bound access + - ARM: dts: Move am33xx and am43xx mmc nodes to sdhci-omap driver + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi_sram: Make use of the helper function + devm_platform_ioremap_resource() + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - usbnet: Fix memory leak in usbnet_disconnect() + - nvme: add new line after variable declatation + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - selftests: Fix the if conditions of in test_extra_filter() + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - clk: iproc: Do not rely on node name for correct PLL setup + - Linux 5.4.216 + * Focal update: v5.4.215 upstream stable release (LP: #1993203) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - task_stack, x86/cea: Force-inline stack helpers + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - MAINTAINERS: add Chandan as xfs maintainer for 5.4.y + - iomap: iomap that extends beyond EOF should be marked dirty + - ASoC: nau8824: Fix semaphore unbalance at error paths + - regulator: pfuze100: Fix the global-out-of-bounds access in + pfuze100_regulator_probe() + - rxrpc: Fix local destruction being repeated + - rxrpc: Fix calc of resend age + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/tegra: Align BDL entry to 4KB boundary + - net: usb: qmi_wwan: add Quectel RM520N + - afs: Return -EAGAIN, not -EREMOTEIO, when a file already locked + - MIPS: OCTEON: irq: Fix octeon_irq_force_ciu_mapping() + - mksysmap: Fix the mismatch of 'L0' symbols in System.map + - video: fbdev: pxa3xx-gcu: Fix integer overflow in pxa3xx_gcu_write + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind + - usb: dwc3: Issue core soft reset before enabling run/stop + - usb: dwc3: gadget: Prevent repeat pullup() + - usb: dwc3: gadget: Refactor pullup() + - usb: dwc3: gadget: Don't modify GEVNTCOUNT in pullup() + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: xhci-mtk: get the microframe boundary for ESIT + - usb: xhci-mtk: add only one extra CS for FS/LS INTR + - usb: xhci-mtk: use @sch_tt to check whether need do TT schedule + - usb: xhci-mtk: add a function to (un)load bandwidth info + - usb: xhci-mtk: add some schedule error number + - usb: xhci-mtk: allow multiple Start-Split in a microframe + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - tty/serial: atmel: RS485 & ISO7816: wait for TXRDY before sending data + - serial: atmel: remove redundant assignment in rs485_config + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - efi: libstub: check Shim mode using MokSBStateRT + - mm/slub: fix to return errno if kmalloc() fails + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: team: Unsync device addresses on ndo_stop + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - iavf: Fix bad page state + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - netfilter: ebtables: fix memory leak when blob is malformed + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - usb: xhci-mtk: fix issue of out-of-bounds array access + - cifs: always initialize struct msghdr smb_msg completely + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/amd/display: Limit user regamma to a valid value + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - xfs: replace -EIO with -EFSCORRUPTED for corrupt metadata + - xfs: slightly tweak an assert in xfs_fs_map_blocks + - xfs: add missing assert in xfs_fsmap_owner_from_rmap + - xfs: range check ri_cnt when recovering log items + - xfs: attach dquots and reserve quota blocks during unwritten conversion + - xfs: convert EIO to EFSCORRUPTED when log contents are invalid + - xfs: constify the buffer pointer arguments to error functions + - xfs: always log corruption errors + - xfs: fix some memory leaks in log recovery + - xfs: stabilize insert range start boundary to avoid COW writeback race + - xfs: use bitops interface for buf log item AIL flag check + - xfs: refactor agfl length computation function + - xfs: split the sunit parameter update into two parts + - xfs: don't commit sunit/swidth updates to disk if that would cause repair + failures + - xfs: fix an ABBA deadlock in xfs_rename + - xfs: fix use-after-free when aborting corrupt attr inactivation + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.4.215 + * Focal update: v5.4.214 upstream stable release (LP: #1993196) + - drm/msm/rd: Fix FIFO-full deadlock + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - mm: Fix TLB flush for not-first PFNMAP mappings in unmap_region() + - net: dp83822: disable rx error interrupt + - soc: fsl: select FSL_GUTS driver for DPIO + - tracefs: Only clobber mode/uid/gid on remount if asked + - Linux 5.4.214 + * Focal update: v5.4.213 upstream stable release (LP: #1992211) + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - net: dp83822: disable false carrier interrupt + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - iio: adc: mcp3911: make use of the sign bit + - ieee802154/adf7242: defer destroy_workqueue call + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - Revert "xhci: turn off port power in shutdown" + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - staging: rtl8712: fix use after free bugs + - powerpc: align syscall table for ppc32 + - vt: Clear selection before changing the font + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - binder: fix UAF of ref->proc caused by race condition + - usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - thunderbolt: Use the actual buffer in tb_async_error() + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - net: mac802154: Fix a condition in the receive path + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - btrfs: harden identification of a stale device + - usb: dwc3: fix PHY disable sequence + - usb: dwc3: disable USB core PHY management + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/radeon: add a force flush to delay work when radeon + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - kprobes: Prohibit probes in gate area + - debugfs: add debugfs_lookup_and_remove() + - nvmet: fix a use-after-free + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Optimize single thread migration + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - smb3: missing inode locks in punch hole + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - regulator: core: Clean up on enable failure + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - netfilter: br_netfilter: Drop dst references before setting. + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - i40e: Fix kernel crash during module removal + - RDMA/siw: Pass a pointer to virt_to_page() + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - RDMA/mlx5: Set local port to one when accessing counters + - nvme-tcp: fix UAF when detecting digest errors + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - sch_sfb: Also store skb len before calling child enqueue + - x86/nospec: Fix i386 RSB stuffing + - MIPS: loongson32: ls1c: Fix hang during startup + - Linux 5.4.213 + * CVE-2022-2663 + - netfilter: nf_conntrack_irc: Fix forged IP logic + * CVE-2022-3061 + - video: fbdev: i740fb: Error out if 'pixclock' equals zero + + [ Ubuntu: 5.4.0-135.152 ] + + * focal/linux: 5.4.0-135.152 -proposed tracker (LP: #1997412) + * containerd sporadic timeouts (LP: #1996678) + - epoll: call final ep_events_available() check under the lock + - epoll: check for events when removing a timed out thread from the wait queue + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-42703 + - mm/rmap.c: don't reuse anon_vma if we just want a copy + + [ Ubuntu: 5.4.0-132.148 ] + + * CVE-2022-42719 + - mac80211: mlme: find auth challenge directly + - wifi: mac80211: don't parse mbssid in assoc response + - wifi: mac80211: fix MBSSID parsing use-after-free + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * fib_nexthop_nongw.sh from ubuntu_kernel_selftests failed on B-5.4 + (LP: #1990800) + - SAUCE: selftests/net: skipping tests for older ip command releases + * CVE-2022-29901 + - Revert "x86/speculation: Add RSB VM Exit protections" + - Revert "x86/cpu: Add a steppings field to struct x86_cpu_id" + - x86/devicetable: Move x86 specific macro out of generic code + - x86/cpu: Add consistent CPU match macros + - x86/cpu: Add a steppings field to struct x86_cpu_id + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Remove skip_r11rcx + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - x86/speculation: Change FILL_RETURN_BUFFER to work with objtool + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - KVM/VMX: Use TEST %REG,%REG instead of CMP $0,%REG in vmenter.S + - KVM/nVMX: Use __vmx_vcpu_run in nested_vmx_check_vmentry_hw + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/speculation: Disable RRSBA behavior + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts + - x86/speculation: Add RSB VM Exit protections + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor_idle: Skip dummy wait if kernel is in guest + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * cgroup: all controllers mounted when using 'cgroup_no_v1=' (LP: #1988584) + - cgroup-v1: add disabled controller check in cgroup1_parse_param() + * Focal update: v5.4.212 upstream stable release (LP: #1991156) + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - usb: cdns3: Fix issue for clear halt endpoint + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - sched/deadline: Unthrottle PI boosted threads while enqueuing + - sched/deadline: Fix stale throttling on de-/boosted tasks + - sched/deadline: Fix priority inheritance with multiple scheduling classes + - kernel/sched: Remove dl_boosted flag comment + - xfrm: fix refcount leak in __xfrm_policy_check() + - SUNRPC: RPC level errors should set task->tk_rpc_status + - rose: check NULL rose_loopback_neigh->loopback + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: check if root is readonly while setting security xattr + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - loop: Check for overflow while configuring loop + - asm-generic: sections: refactor memory_intersects + - s390: fix double free of GS and RI CBs on fork() failure + - ACPI: processor: Remove freq Qos request for all CPUs + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - md: call __md_stop_writes in md_stop + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - kbuild: Fix include path in scripts/Makefile.modpost + - Bluetooth: L2CAP: Fix build errors in some archs + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - HID: hidraw: fix memory leak in hidraw_release() + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + - btrfs: introduce btrfs_lookup_match_dir + - btrfs: do not pin logs too early during renames + - btrfs: unify lookup return value when dir entry is missing + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: clear optc underflow before turn off odm clock + - neigh: fix possible DoS due to net iface start/stop loop + - s390/hypfs: avoid error message under KVM + - drm/amd/display: Fix pixel clock programming + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - btrfs: tree-checker: check for overlapping extent items + - lib/vdso: Let do_coarse() return 0 to simplify the callsite + - lib/vdso: Mark do_hres() and do_coarse() as __always_inline + - kprobes: don't call disarm_kprobe() for disabled kprobes + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - Linux 5.4.212 + * Focal update: v5.4.211 upstream stable release (LP: #1990190) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - igc: Remove _I_PHY_ID checking + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - mm/mremap: hold the rmap lock in write mode when moving page table entries. + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - usbnet: Fix linkwatch use-after-free on disconnect + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - iio: light: isl29028: Fix the warning in isl29028_remove() + - fuse: limit nsec + - serial: mvebu-uart: uart2 error bits clearing + - md-raid10: fix KASAN warning + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - PCI: Add defines for normal and subtractive PCI bridges + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - USB: HCD: Fix URB giveback issue in tasklet function + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - ext2: Add more validity checks for inode counts + - genirq: Don't return error on missing optional irq_request_resources() + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: Add boundary check in put_entry() + - spi: spi-rspi: Fix PIO fallback on RZ platforms + - ARM: findbit: fix overflowing offset + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - soc: fsl: guts: machine variable might be unset + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - arm64: dts: mt7622: fix BPI-R64 WPS button + - erofs: avoid consecutive detection for Highmem memory + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - dm: return early from dm_pr_call() if DM device is suspended + - ath10k: do not enforce interrupt trigger type + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm: adv7511: override i2c address of cec before accessing it + - i2c: Fix a potential use after free + - media: tw686x: Register the irq at the end of probe + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/vc4: dsi: Correct DSI divider calculations + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm: bridge: sii8620: fix possible off-by-one + - drm/msm/mdp5: Fix global state lock backoff + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - fs: check FMODE_LSEEK to control internal pipe splicing + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - selftests/bpf: fix a test for snprintf() overflow + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - i2c: cadence: Support PEC for SMBus block read + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - iavf: Fix max_rate limiting + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: xhci: tegra: Fix error check + - clk: mediatek: reset: Fix written reset bit offset + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - soundwire: bus_type: fix remove and shutdown support + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - scsi: smartpqi: Fix DMA direction for RAID requests + - usb: gadget: udc: amd5536 depends on HAS_DMA + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - USB: serial: fix tty-port initialized comments + - platform/olpc: Fix uninitialized data in debugfs write + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - null_blk: fix ida error handling in null_add_dev() + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - profiling: fix shift too large makes kernel panic + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Do not change FSM state in subchannel event + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - iommu/exynos: Handle failed IOMMU device registration properly + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - kfifo: fix kfifo_to_user() return type + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - s390/zcore: fix race when reading from hardware system area + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - x86/olpc: fix 'logical not is only applied to the left hand side' + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - btrfs: reset block group chunk force if we have to wait + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: make sure ext4_append() always allocates new block + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - intel_th: pci: Add Raptor Lake-S CPU support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Meteor Lake-P support + - dm raid: fix address sanitizer warning in raid_resume + - dm raid: fix address sanitizer warning in raid_status + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - dm writecache: set a default MAX_WRITEBACK_JOBS + - ACPI: CPPC: Do not prevent CPPC from working in the future + - timekeeping: contribute wall clock to rng on time change + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - btrfs: reject log replay if there is unsupported RO compat flag + - KVM: Add infrastructure and macro to mark VM as bugged + - 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() + - tcp: fix over estimation in sk_forced_mem_schedule() + - scsi: sg: Allow waiting for commands to complete on removed device + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - net/9p: Initialize the iounit field during fid creation + - net_sched: cls_route: disallow handle of 0 + - ALSA: info: Fix llseek return value when using callback + - rds: add missing barrier to release_refill + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - btrfs: fix lost error handling when looking up extended ref on log replay + - tracing: Have filter accept "common_cpu" to be consistent + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - can: mcp251x: Fix race condition on receive interrupt + - sunrpc: fix expiry of auth creds + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - devlink: Fix use-after-free after a failed reload + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - tools/vm/slabinfo: use alphabetic order when two values are equal + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - dpaa2-eth: trace the allocated address instead of page struct + - tee: add overflow check in register_shm_helper() + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - clk: rockchip: add sclk_mac_lbtest to rk3188_critical_clocks + - netfilter: nf_tables: really skip inactive sets when allocating name + - powerpc/pci: Fix get_phb_number() locking + - net: dsa: mv88e6060: prevent crash on an unused port + - net: moxa: pass pdev instead of ndev to DMA functions + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - ice: Ignore EEXIST when setting promisc mode + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - igb: Add lock to avoid data race + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - usb: cdns3 fix use-after-free at workaround 2 + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - gadgetfs: ep_io - wait until IRQ finishes + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - watchdog: export lockup_detector_reconfigure + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - tracing/probes: Have kprobes and uprobes use $COMM too + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - Linux 5.4.211 + * CVE-2022-3028 + - af_key: Do not call xfrm_probe_algs in parallel + * CVE-2022-2978 + - fs: fix UAF/GPF bug in nilfs_mdt_destroy + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + + -- Tim Gardner Mon, 12 Dec 2022 12:49:30 -0700 + +linux-azure (5.4.0-1094.100) focal; urgency=medium + + [ Ubuntu: 5.4.0-131.147 ] + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + + -- Thadeu Lima de Souza Cascardo Sun, 16 Oct 2022 23:55:23 -0300 + +linux-azure (5.4.0-1092.97) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1092.97 -proposed tracker (LP: #1989865) + + * Focal update: v5.4.208 upstream stable release (LP: #1988225) + - [Config] azure: updateconfigs after rebase + + * Azure: Focal 5.4 kernel eBPF opensnoop does not display PATH (LP: #1990009) + - uaccess: Add strict non-pagefault kernel-space read function + - bpf: Add probe_read_{user, kernel} and probe_read_{user, kernel}_str helpers + - bpf, samples: Use bpf_probe_read_user where appropriate + - bpf, testing: Convert prog tests to probe_read_{user, kernel}{, _str} helper + - bpf, testing: Add selftest to read/write sockaddr from user space + + * azure: Set arm64 CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n (LP: #1988434) + - [Config] azure: arm64: CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n + + [ Ubuntu: 5.4.0-128.144 ] + + * focal/linux: 5.4.0-128.144 -proposed tracker (LP: #1990152) + * CVE-2022-3176 + - io_uring: disable polling pollfree files + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) + - selftests/net: test nexthop without gw + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) // icmp_redirect.sh in ubuntu_kernel_selftests failed on + Jammy 5.15.0-49.55 (LP: #1990124) + - ip: fix triggering of 'icmp redirect' + + [ Ubuntu: 5.4.0-127.143 ] + + * focal/linux: 5.4.0-127.143 -proposed tracker (LP: #1989892) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.09.19) + * [UBUNTU 20.04] mlx5 driver crashes on accessing device attributes during + recovery (LP: #1987287) + - net/mlx5: Avoid processing commands before cmdif is ready + * Focal update: v5.4.210 upstream stable release (LP: #1989230) + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - bpf: Verifer, adjust_scalar_min_max_vals to always call update_reg_bounds() + - selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads + - bpf: Test_verifier, #70 error message updates for 32-bit right shift + - KVM: Don't null dereference ops->destroy + - selftests: KVM: Handle compiler optimizations in ucall + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.4.210 + * Focal update: v5.4.209 upstream stable release (LP: #1989228) + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put + - ntfs: fix use-after-free in ntfs_ucsncmp() + - s390/archrandom: prevent CPACF trng invocations in interrupt context + - tcp: Fix data-races around sysctl_tcp_dsack. + - tcp: Fix a data-race around sysctl_tcp_app_win. + - tcp: Fix a data-race around sysctl_tcp_adv_win_scale. + - tcp: Fix a data-race around sysctl_tcp_frto. + - tcp: Fix a data-race around sysctl_tcp_nometrics_save. + - ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) + - ice: do not setup vlan for loopback VSI + - scsi: ufs: host: Hold reference returned by of_parse_phandle() + - tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. + - tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. + - net: ping6: Fix memleak in ipv6_renew_options(). + - ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr + - igmp: Fix data-races around sysctl_igmp_qrv. + - net: sungem_phy: Add of_node_put() for reference returned by of_get_parent() + - tcp: Fix a data-race around sysctl_tcp_min_tso_segs. + - tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. + - tcp: Fix a data-race around sysctl_tcp_autocorking. + - tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. + - Documentation: fix sctp_wmem in ip-sysctl.rst + - tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. + - i40e: Fix interface init with MSI interrupts (no MSI-X) + - sctp: fix sleep in atomic context bug in timer handlers + - virtio-net: fix the race between refill work and close + - perf symbol: Correct address for bss symbols + - sfc: disable softirqs for ptp TX + - sctp: leave the err path free in sctp_stream_init to sctp_stream_free + - ARM: crypto: comment out gcc warning that breaks clang builds + - mt7601u: add USB device ID for some versions of XiaoDu WiFi Dongle. + - scsi: core: Fix race between handling STS_RESOURCE and completion + - Linux 5.4.209 + * Focal update: v5.4.208 upstream stable release (LP: #1988225) + - pinctrl: stm32: fix optional IRQ support to gpios + - riscv: add as-options for modules with assembly compontents + - mlxsw: spectrum_router: Fix IPv4 nexthop gateway indication + - lockdown: Fix kexec lockdown bypass with ima policy + - xen/gntdev: Ignore failure to unmap INVALID_GRANT_HANDLE + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - serial: mvebu-uart: correctly report configured baudrate value + - xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in + xfrm_bundle_lookup() + - power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe + - pinctrl: ralink: Check for null return of devm_kcalloc + - perf/core: Fix data race between perf_event_set_output() and + perf_mmap_close() + - igc: Reinstate IGC_REMOVED logic and implement it properly + - ip: Fix data-races around sysctl_ip_no_pmtu_disc. + - ip: Fix data-races around sysctl_ip_fwd_use_pmtu. + - ip: Fix data-races around sysctl_ip_nonlocal_bind. + - ip: Fix a data-race around sysctl_fwmark_reflect. + - tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept. + - tcp: Fix data-races around sysctl_tcp_mtu_probing. + - tcp: Fix data-races around sysctl_tcp_base_mss. + - tcp: Fix data-races around sysctl_tcp_min_snd_mss. + - tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor. + - tcp: Fix a data-race around sysctl_tcp_probe_threshold. + - tcp: Fix a data-race around sysctl_tcp_probe_interval. + - i2c: cadence: Change large transfer count reset logic to be unconditional + - net: stmmac: fix dma queue left shift overflow issue + - net/tls: Fix race in TLS device down flow + - igmp: Fix data-races around sysctl_igmp_llm_reports. + - igmp: Fix a data-race around sysctl_igmp_max_memberships. + - tcp: Fix data-races around sysctl_tcp_syncookies. + - tcp: Fix data-races around sysctl_tcp_reordering. + - tcp: Fix data-races around some timeout sysctl knobs. + - tcp: Fix a data-race around sysctl_tcp_notsent_lowat. + - tcp: Fix a data-race around sysctl_tcp_tw_reuse. + - tcp: Fix data-races around sysctl_max_syn_backlog. + - tcp: Fix data-races around sysctl_tcp_fastopen. + - iavf: Fix handling of dummy receive descriptors + - i40e: Fix erroneous adapter reinitialization during recovery process + - ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero + - gpio: pca953x: only use single read/write for No AI mode + - be2net: Fix buffer overflow in be_get_module_eeprom + - ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. + - udp: Fix a data-race around sysctl_udp_l3mdev_accept. + - tcp: Fix data-races around sysctl knobs related to SYN option. + - tcp: Fix a data-race around sysctl_tcp_early_retrans. + - tcp: Fix data-races around sysctl_tcp_recovery. + - tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. + - tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. + - tcp: Fix a data-race around sysctl_tcp_retrans_collapse. + - tcp: Fix a data-race around sysctl_tcp_stdurg. + - tcp: Fix a data-race around sysctl_tcp_rfc1337. + - tcp: Fix data-races around sysctl_tcp_max_reordering. + - spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA + transfers + - mm/mempolicy: fix uninit-value in mpol_rebind_policy() + - bpf: Make sure mac_header was set before using it + - dlm: fix pending remove if msg allocation fails + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - locking/refcount: Define constants for saturation and max refcount values + - locking/refcount: Ensure integer operands are treated as signed + - locking/refcount: Remove unused refcount_*_checked() variants + - locking/refcount: Move the bulk of the REFCOUNT_FULL implementation into the + header + - locking/refcount: Improve performance of generic REFCOUNT_FULL code + - locking/refcount: Move saturation warnings out of line + - locking/refcount: Consolidate REFCOUNT_{MAX,SATURATED} definitions + - locking/refcount: Consolidate implementations of refcount_t + - [Config] updateconfigs for REFCOUNT_FULL + - x86: get rid of small constant size cases in raw_copy_{to,from}_user() + - x86/uaccess: Implement macros for CMPXCHG on user addresses + - mmap locking API: initial implementation as rwsem wrappers + - x86/mce: Deduplicate exception handling + - bitfield.h: Fix "type of reg too small for mask" test + - ALSA: memalloc: Align buffer allocations in page size + - Bluetooth: Add bt_skb_sendmsg helper + - Bluetooth: Add bt_skb_sendmmsg helper + - Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg + - Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg + - Bluetooth: Fix passing NULL to PTR_ERR + - Bluetooth: SCO: Fix sco_send_frame returning skb->len + - Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks + - tty: drivers/tty/, stop using tty_schedule_flip() + - tty: the rest, stop using tty_schedule_flip() + - tty: drop tty_schedule_flip() + - tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() + - tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() + - x86: drop bogus "cc" clobber from __try_cmpxchg_user_asm() + - Linux 5.4.208 + * Focal update: v5.4.207 upstream stable release (LP: #1988219) + - ALSA: hda - Add fixup for Dell Latitidue E5430 + - ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 + - ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop + - xen/netback: avoid entering xenvif_rx_next_skb() with an empty rx queue + - tracing/histograms: Fix memory leak problem + - net: sock: tracing: Fix sock_exceed_buf_limit not to dereference stale + pointer + - ip: fix dflt addr selection for connected nexthop + - ARM: 9213/1: Print message about disabled Spectre workarounds only once + - ARM: 9214/1: alignment: advance IT state after emulating Thumb instruction + - wifi: mac80211: fix queue selection for mesh/OCB interfaces + - cgroup: Use separate src/dst nodes when preloading css_sets for migration + - drm/panfrost: Fix shrinker list corruption by madvise IOCTL + - nilfs2: fix incorrect masking of permission flags for symlinks + - Revert "evm: Fix memleak in init_desc" + - sched/rt: Disable RT_RUNTIME_SHARE by default + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ARM: dts: imx6qdl-ts7970: Fix ngpio typo and count + - ARM: 9209/1: Spectre-BHB: avoid pr_info() every time a CPU comes out of idle + - ARM: 9210/1: Mark the FDT_FIXED sections as shareable + - drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() + - ima: Fix a potential integer overflow in ima_appraise_measurement + - ASoC: sgtl5000: Fix noise on shutdown/remove + - net: stmmac: dwc-qos: Disable split header for Tegra194 + - inetpeer: Fix data-races around sysctl. + - net: Fix data-races around sysctl_mem. + - cipso: Fix data-races around sysctl. + - icmp: Fix data-races around sysctl. + - ipv4: Fix a data-race around sysctl_fib_sync_mem. + - ARM: dts: at91: sama5d2: Fix typo in i2s1 node + - ARM: dts: sunxi: Fix SPI NOR campatible on Orange Pi Zero + - drm/i915/gt: Serialize TLB invalidates with GT resets + - icmp: Fix a data-race around sysctl_icmp_ratelimit. + - icmp: Fix a data-race around sysctl_icmp_ratemask. + - raw: Fix a data-race around sysctl_raw_l3mdev_accept. + - ipv4: Fix data-races around sysctl_ip_dynaddr. + - net: ftgmac100: Hold reference returned by of_get_child_by_name() + - sfc: fix use after free when disabling sriov + - seg6: fix skb checksum evaluation in SRH encapsulation/insertion + - seg6: fix skb checksum in SRv6 End.B6 and End.B6.Encaps behaviors + - seg6: bpf: fix skb checksum in bpf_push_seg6_encap() + - sfc: fix kernel panic when creating VF + - mm: sysctl: fix missing numa_stat when !CONFIG_HUGETLB_PAGE + - virtio_mmio: Add missing PM calls to freeze/restore + - virtio_mmio: Restore guest page size on resume + - netfilter: br_netfilter: do not skip all hooks with 0 priority + - cpufreq: pmac32-cpufreq: Fix refcount leak bug + - platform/x86: hp-wmi: Ignore Sanitization Mode event + - net: tipc: fix possible refcount leak in tipc_sk_create() + - NFC: nxp-nci: don't print header length mismatch on i2c error + - nvme: fix regression when disconnect a recovering ctrl + - net: sfp: fix memory leak in sfp_probe() + - ASoC: ops: Fix off by one in range control validation + - ASoC: wm5110: Fix DRE control + - ASoC: cs47l15: Fix event generation for low power mux control + - ASoC: madera: Fix event generation for OUT1 demux + - ASoC: madera: Fix event generation for rate controls + - irqchip: or1k-pic: Undefine mask_ack for level triggered hardware + - x86: Clear .brk area at early boot + - soc: ixp4xx/npe: Fix unused match warning + - ARM: dts: stm32: use the correct clock source for CEC on stm32mp151 + - signal handling: don't use BUG_ON() for debugging + - USB: serial: ftdi_sio: add Belimo device ids + - usb: typec: add missing uevent when partner support PD + - usb: dwc3: gadget: Fix event pending check + - tty: serial: samsung_tty: set dma burst_size to 1 + - serial: 8250: fix return error code in serial8250_request_std_resource() + - serial: stm32: Clear prev values before setting RTS delays + - serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle + - can: m_can: m_can_tx_handler(): fix use after free of skb + - Linux 5.4.207 + * Focal update: v5.4.206 upstream stable release (LP: #1988215) + - Linux 5.4.206 + * Focal update: v5.4.205 upstream stable release (LP: #1988214) + - esp: limit skb_page_frag_refill use to a single page + - mm/slub: add missing TID updates on slab deactivation + - can: bcm: use call_rcu() instead of costly synchronize_rcu() + - can: grcan: grcan_probe(): remove extra of_node_get() + - can: gs_usb: gs_usb_open/close(): fix memory leak + - usbnet: fix memory leak in error case + - net: rose: fix UAF bug caused by rose_t0timer_expiry + - iommu/vt-d: Fix PCI bus rescan device hot add + - fbdev: fbmem: Fix logo center image dx issue + - video: of_display_timing.h: include errno.h + - powerpc/powernv: delay rng platform device creation until later in boot + - can: kvaser_usb: replace run-time checks with struct kvaser_usb_driver_info + - can: kvaser_usb: kvaser_usb_leaf: fix CAN clock frequency regression + - can: kvaser_usb: kvaser_usb_leaf: fix bittiming limits + - xfs: remove incorrect ASSERT in xfs_rename + - ARM: meson: Fix refcount leak in meson_smp_prepare_cpus + - pinctrl: sunxi: a83t: Fix NAND function name for some pins + - pinctrl: sunxi: sunxi_pconf_set: use correct offset + - ARM: at91: pm: use proper compatible for sama5d2's rtc + - ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt + - ibmvnic: Properly dispose of all skbs during a failover. + - selftests: forwarding: fix flood_unicast_test when h2 supports + IFF_UNICAST_FLT + - selftests: forwarding: fix learning_test when h1 supports IFF_UNICAST_FLT + - selftests: forwarding: fix error message in learning_test + - i2c: cadence: Unregister the clk notifier in error path + - dmaengine: imx-sdma: Allow imx8m for imx7 FW revs + - misc: rtsx_usb: fix use of dma mapped buffer for usb bulk transfer + - misc: rtsx_usb: use separate command and response buffers + - misc: rtsx_usb: set return value in rsp_buf alloc err path + - dt-bindings: dma: allwinner,sun50i-a64-dma: Fix min/max typo + - ida: don't use BUG_ON() for debugging + - dmaengine: pl330: Fix lockdep warning about non-static key + - dmaengine: at_xdma: handle errors of at_xdmac_alloc_desc() correctly + - dmaengine: ti: Fix refcount leak in ti_dra7_xbar_route_allocate + - dmaengine: ti: Add missing put_device in ti_dra7_xbar_route_allocate + - Linux 5.4.205 + * Focal update: v5.4.204 upstream stable release (LP: #1988212) + - ipv6: take care of disable_policy when restoring routes + - nvdimm: Fix badblocks clear off-by-one error + - powerpc/prom_init: Fix kernel config grep + - powerpc/bpf: Fix use of user_pt_regs in uapi + - dm raid: fix accesses beyond end of raid member array + - dm raid: fix KASAN warning in raid5_add_disks + - s390/archrandom: simplify back to earlier design and initialize earlier + - SUNRPC: Fix READ_PLUS crasher + - net: rose: fix UAF bugs caused by timer handler + - net: usb: ax88179_178a: Fix packet receiving + - virtio-net: fix race between ndo_open() and virtio_device_ready() + - selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test + - net: tun: unlink NAPI from device on destruction + - net: tun: stop NAPI when detaching queues + - RDMA/qedr: Fix reporting QP timeout attribute + - linux/dim: Fix divide by 0 in RDMA DIM + - usbnet: fix memory allocation in helpers + - net: ipv6: unexport __init-annotated seg6_hmac_net_init() + - caif_virtio: fix race between virtio_device_ready() and ndo_open() + - PM / devfreq: exynos-ppmu: Fix refcount leak in of_get_devfreq_events + - s390: remove unneeded 'select BUILD_BIN2C' + - netfilter: nft_dynset: restore set element counter when failing to update + - net/sched: act_api: Notify user space if any actions were flushed before + error + - net: bonding: fix possible NULL deref in rlb code + - net: bonding: fix use-after-free after 802.3ad slave unbind + - nfc: nfcmrvl: Fix irq_of_parse_and_map() return value + - NFC: nxp-nci: Don't issue a zero length i2c_master_read() + - net: tun: avoid disabling NAPI twice + - xen/gntdev: Avoid blocking in unmap_grant_pages() + - hwmon: (ibmaem) don't call platform_device_del() if platform_device_add() + fails + - net: dsa: bcm_sf2: force pause link settings + - sit: use min + - ipv6/sit: fix ipip6_tunnel_get_prl return value + - rseq/selftests,x86_64: Add rseq_offset_deref_addv() + - selftests/rseq: remove ARRAY_SIZE define from individual tests + - selftests/rseq: introduce own copy of rseq uapi header + - selftests/rseq: Remove useless assignment to cpu variable + - selftests/rseq: Remove volatile from __rseq_abi + - selftests/rseq: Introduce rseq_get_abi() helper + - selftests/rseq: Introduce thread pointer getters + - selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35 + - selftests/rseq: Fix ppc32: wrong rseq_cs 32-bit field pointer on big endian + - selftests/rseq: Fix ppc32 missing instruction selection "u" and "x" for + load/store + - selftests/rseq: Fix ppc32 offsets by using long rather than off_t + - selftests/rseq: Fix warnings about #if checks of undefined tokens + - selftests/rseq: Remove arm/mips asm goto compiler work-around + - selftests/rseq: Fix: work-around asm goto compiler bugs + - selftests/rseq: x86-64: use %fs segment selector for accessing rseq thread + area + - selftests/rseq: x86-32: use %gs segment selector for accessing rseq thread + area + - selftests/rseq: Change type of rseq_offset to ptrdiff_t + - xen/blkfront: fix leaking data in shared pages + - xen/netfront: fix leaking data in shared pages + - xen/netfront: force data bouncing when backend is untrusted + - xen/blkfront: force data bouncing when backend is untrusted + - xen/arm: Fix race in RB-tree based P2M accounting + - net: usb: qmi_wwan: add Telit 0x1060 composition + - net: usb: qmi_wwan: add Telit 0x1070 composition + - clocksource/drivers/ixp4xx: remove EXPORT_SYMBOL_GPL from + ixp4xx_timer_setup() + - Linux 5.4.204 + + -- Tim Gardner Thu, 22 Sep 2022 12:25:44 -0600 + +linux-azure (5.4.0-1091.96) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1091.96 -proposed tracker (LP: #1987791) + + * Focal update: v5.4.198 upstream stable release (LP: #1982409) + - Upstream stable to v5.4.198 + + [ Ubuntu: 5.4.0-126.142 ] + + * focal/linux: 5.4.0-126.142 -proposed tracker (LP: #1987819) + * [SRU] fnic driver on needs to be updated to 1.6.0.53 on Focal (LP: #1984011) + - scsi: fnic: Change shost_printk() to FNIC_FCS_DBG() + - scsi: fnic: Avoid looping in TRANS ETH on unload + - scsi: fnic: Change shost_printk() to FNIC_MAIN_DBG() + - scsi: fnic: Set scsi_set_resid() only for underflow + - scsi: fnic: Validate io_req before others + * Focal update: v5.4.203 upstream stable release (LP: #1986999) + - drm: remove drm_fb_helper_modinit + - powerpc/ftrace: Remove ftrace init tramp once kernel init is complete + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - net: mscc: ocelot: allow unregistered IP multicast flooding + - ARM: 8989/1: use .fpu assembler directives instead of assembler arguments + - ARM: 8990/1: use VFP assembler mnemonics in register load/store macros + - ARM: 8971/1: replace the sole use of a symbol with its definition + - crypto: arm/sha256-neon - avoid ADRL pseudo instruction + - crypto: arm/sha512-neon - avoid ADRL pseudo instruction + - ARM: 8933/1: replace Sun/Solaris style flag on section directive + - ARM: 8929/1: use APSR_nzcv instead of r15 as mrc operand + - ARM: OMAP2+: drop unnecessary adrl + - ARM: 9029/1: Make iwmmxt.S support Clang's integrated assembler + - crypto: arm - use Kconfig based compiler checks for crypto opcodes + - crypto: arm/ghash-ce - define fpu before fpu registers are referenced + - Linux 5.4.203 + * Focal update: v5.4.202 upstream stable release (LP: #1986995) + - random: schedule mix_interrupt_randomness() less often + - ALSA: hda/via: Fix missing beep setup + - ALSA: hda/conexant: Fix missing beep setup + - ALSA: hda/realtek - ALC897 headset MIC no sound + - ALSA: hda/realtek: Add quirk for Clevo PD70PNT + - net: openvswitch: fix parsing of nw_proto for IPv6 fragments + - mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing + - ata: libata: add qc->flags in ata_qc_complete_template tracepoint + - dm era: commit metadata in postsuspend after worker stops + - dm mirror log: clear log bits up to BITS_PER_LONG boundary + - random: quiet urandom warning ratelimit suppression message + - USB: serial: option: add Telit LE910Cx 0x1250 composition + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: option: add Quectel RM500K module support + - bpf: Fix request_sock leak in sk lookup helpers + - phy: aquantia: Fix AN when higher speeds than 1G are not advertised + - bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers + - net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms + - drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf + - erspan: do not assume transport header is always set + - net/tls: fix tls_sk_proto_close executed repeatedly + - udmabuf: add back sanity check + - x86/xen: Remove undefined behavior in setup_features() + - MIPS: Remove repetitive increase irq_err_count + - afs: Fix dynamic root getattr + - ice: ethtool: advertise 1000M speeds properly + - regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips + - igb: Make DMA faster when CPU is active on the PCIe link + - virtio_net: fix xdp_rxq_info bug after suspend/resume + - Revert "net/tls: fix tls_sk_proto_close executed repeatedly" + - gpio: winbond: Fix error code in winbond_gpio_get() + - s390/cpumf: Handle events cycles and instructions identical + - iio: adc: vf610: fix conversion mode sysfs node name + - xhci: turn off port power in shutdown + - usb: chipidea: udc: check request status before setting device address + - iio:chemical:ccs811: rearrange iio trigger get and register + - iio:accel:bma180: rearrange iio trigger get and register + - iio:accel:mxc4005: rearrange iio trigger get and register + - iio: accel: mma8452: ignore the return value of reset operation + - iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up() + - iio: trigger: sysfs: fix use-after-free on remove + - iio: adc: stm32: fix maximum clock rate for stm32mp15x + - iio: adc: axp288: Override TS pin bias current for some models + - xtensa: xtfpga: Fix refcount leak bug in setup + - xtensa: Fix refcount leak bug in time.c + - parisc: Enable ARCH_HAS_STRICT_MODULE_RWX + - powerpc: Enable execve syscall exit tracepoint + - powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address + - powerpc/powernv: wire up rng during setup_arch + - ARM: dts: imx6qdl: correct PU regulator ramp delay + - ARM: exynos: Fix refcount leak in exynos_map_pmu + - soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe + - ARM: Fix refcount leak in axxia_boot_secondary + - ARM: cns3xxx: Fix refcount leak in cns3xxx_init + - modpost: fix section mismatch check for exported init/exit sections + - random: update comment from copy_to_user() -> copy_to_iter() + - kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt) + - powerpc/pseries: wire up rng during setup_arch() + - Linux 5.4.202 + * Focal update: v5.4.201 upstream stable release (LP: #1986993) + - dm: remove special-casing of bio-based immutable singleton target on NVMe + - usb: gadget: u_ether: fix regression in setting fixed MAC address + - tcp: add some entropy in __inet_hash_connect() + - tcp: use different parts of the port_offset for index and offset + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer + - Linux 5.4.201 + * Focal update: v5.4.200 upstream stable release (LP: #1983152) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - 9p: missing chunk of "fs/9p: Don't update file type when updating file + attributes" + - bpf: Fix incorrect memory charge cost calculation in stack_map_alloc() + - nfc: st21nfca: fix incorrect sizing calculations in EVT_TRANSACTION + - crypto: blake2s - generic C library implementation and selftest + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - compat_ioctl: remove /dev/random commands + - random: don't forget compat_ioctl on urandom + - random: Don't wake crng_init_wait when crng_init == 1 + - random: Add a urandom_read_nowait() for random APIs that don't warn + - random: add GRND_INSECURE to return best-effort non-cryptographic bytes + - random: ignore GRND_RANDOM in getentropy(2) + - random: make /dev/random be almost like /dev/urandom + - random: remove the blocking pool + - random: delete code to pull data into pools + - random: remove kernel.random.read_wakeup_threshold + - random: remove unnecessary unlikely() + - random: convert to ENTROPY_BITS for better code readability + - random: Add and use pr_fmt() + - random: fix typo in add_timer_randomness() + - random: remove some dead code of poolinfo + - random: split primary/secondary crng init paths + - random: avoid warnings for !CONFIG_NUMA builds + - x86: Remove arch_has_random, arch_has_random_seed + - powerpc: Remove arch_has_random, arch_has_random_seed + - s390: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Use false with bool + - linux/random.h: Mark CONFIG_ARCH_RANDOM functions __must_check + - powerpc: Use bool in archrandom.h + - random: add arch_get_random_*long_early() + - random: avoid arch_get_random_seed_long() when collecting IRQ randomness + - random: remove dead code left over from blocking pool + - MAINTAINERS: co-maintain random.c + - crypto: blake2s - include instead of + - crypto: blake2s - adjust include guard naming + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: initialize ChaCha20 constants with correct endianness + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - Revert "random: use static branch for crng_ready()" + - crypto: drbg - always seeded with SP800-90B compliant noise source + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - always try to free Jitter RNG instance + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - random: avoid checking crng_ready() twice in random_init() + - random: mark bootloader randomness code as __init + - random: account for arch randomness in bits + - powerpc/kasan: Silence KASAN warnings in __get_wchan() + - ASoC: nau8822: Add operation for internal PLL off and on + - dma-debug: make things less spammy under memory pressure + - ASoC: cs42l52: Fix TLV scales for mixer controls + - ASoC: cs35l36: Update digital volume TLV + - ASoC: cs53l30: Correct number of volume levels on SX controls + - ASoC: cs42l52: Correct TLV for Bypass Volume + - ASoC: cs42l56: Correct typo in minimum level for SX volume controls + - ata: libata-core: fix NULL pointer deref in ata_host_alloc_pinfo() + - ASoC: wm8962: Fix suspend while playing music + - ASoC: es8328: Fix event generation for deemphasis control + - ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() + - scsi: vmw_pvscsi: Expand vcpuHint to 16 bits + - scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology + - scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd + completion + - scsi: ipr: Fix missing/incorrect resource cleanup in error case + - scsi: pmcraid: Fix missing resource cleanup in error case + - ALSA: hda/realtek - Add HW8326 support + - virtio-mmio: fix missing put_device() when vm_cmdline_parent registration + failed + - nfc: nfcmrvl: Fix memory leak in nfcmrvl_play_deferred + - ipv6: Fix signed integer overflow in l2tp_ip6_sendmsg + - net: ethernet: mtk_eth_soc: fix misuse of mem alloc interface + netdev[napi]_alloc_frag + - random: credit cpu and bootloader seeds by default + - pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE + - clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() + - i40e: Fix adding ADQ filter to TC0 + - i40e: Fix calculating the number of queue pairs + - i40e: Fix call trace in setup_tx_descriptors + - tty: goldfish: Fix free_irq() on remove + - misc: atmel-ssc: Fix IRQ check in ssc_probe + - mlxsw: spectrum_cnt: Reorder counter pools + - net: bgmac: Fix an erroneous kfree() in bgmac_remove() + - arm64: ftrace: fix branch range checks + - certs/blacklist_hashes.c: fix const confusion in certs blacklist + - faddr2line: Fix overlapping text section failures, the sequel + - irqchip/gic/realview: Fix refcount leak in realview_gic_of_init + - irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions + - irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions + - i2c: designware: Use standard optional ref clock implementation + - comedi: vmk80xx: fix expression for tx buffer size + - USB: serial: option: add support for Cinterion MV31 with new baseline + - USB: serial: io_ti: add Agilent E5805A support + - usb: dwc2: Fix memory leak in dwc2_hcd_init + - usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe + - serial: 8250: Store to lsr_save_flags after lsr read + - dm mirror log: round up region bitmap size to BITS_PER_LONG + - ext4: fix bug_on ext4_mb_use_inode_pa + - ext4: make variable "count" signed + - ext4: add reserved GDT blocks check + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + - virtio-pci: Remove wrong address verification in vp_del_vqs() + - net/sched: act_police: more accurate MTU policing + - net: openvswitch: fix leak of nested actions + - arm64: kprobes: Use BRK instead of single-step when executing instructions + out-of-line + - RISC-V: fix barrier() use in + - riscv: Less inefficient gcc tishift helpers (and export their symbols) + - powerpc/mm: Switch obsolete dssall to .long + - Linux 5.4.200 + * Focal update: v5.4.199 upstream stable release (LP: #1983150) + - Linux 5.4.199 + * Focal update: v5.4.198 upstream stable release (LP: #1982409) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - perf/x86/intel: Fix event constraints for ICL + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: repair super block num_devices automatically + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - ACPICA: Avoid cache flush inside virtual machines + - drm/komeda: return early if drm_universal_plane_init() fails. + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - drm/amd/pm: fix double free in si_parse_power_table() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: cec-adap.c: fix is_configuring state + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - ASoC: max98357a: remove dependency on GPIOLIB + - rxrpc: Return an error to sendmsg if call failed + - eth: tg3: silence the GCC 12 array-bounds warning + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - RDMA/hfi1: Prevent panic when SDMA is disabled + - drm: fix EDID struct for old ARM OABI format + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - bpf: Fix excessive memory allocation in stack_map_alloc() + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - drbd: fix duplicate array initializer + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - scsi: ufs: core: Exclude UECxx from SFR dump list + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - iomap: iomap_write_failed fix + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - media: ov7670: remove ov7670_power_off from ov7670_remove + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net/smc: postpone sk_refcnt increment in connect() + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - arm: mediatek: select arch timer for mt7629 + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - powerpc/8xx: export 'cpm_setbrg' for modules + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - Input: stmfts - do not leave device disabled in stmfts_input_open + - f2fs: fix dereference of stale list iterator after loop body + - iommu/mediatek: Add list_del in mtk_iommu_remove + - i2c: at91: use dma safe buffers + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - iommu/amd: Increase timeout waiting for GA log enablement + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix fallocate to use file_modified to update permissions consistently + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Track whether bfq_group is still online + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tracing: Fix potential double free in create_var_ref() + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - dlm: fix plock invalid read + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - iommu/msm: Fix an incorrect NULL check on list iterator + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: pxa: maybe fix gpio lookup tables + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - phy: qcom-qmp: fix reset-controller leak on probe errors + - Kconfig: add config option for asm goto w/ outputs + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - bfq: Avoid merging queues with different parents + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards + - staging: greybus: codecs: fix type confusion of list iterator variable + - iio: adc: ad7124: Remove shift from scan_type + - tty: goldfish: Use tty_port_destroy() to destroy port + - tty: serial: owl: Fix missing clk_disable_unprepare() in owl_uart_probe + - tty: serial: fsl_lpuart: fix potential bug when using both of_alias_get_id + and ida_simple_get + - usb: usbip: fix a refcount leak in stub_probe() + - usb: usbip: add missing device lock on tweak configuration cmd + - USB: storage: karma: fix rio_karma_init return + - usb: musb: Fix missing of_node_put() in omap2430_probe + - staging: fieldbus: Fix the error handling path in + anybuss_host_common_probe() + - pwm: lp3943: Fix duty calculation in case period was clamped + - rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value + - usb: dwc3: pci: Fix pm_runtime_get_sync() error checking + - firmware: stratix10-svc: fix a missing check on list iterator + - iio: adc: stmpe-adc: Fix wait_for_completion_timeout return value check + - iio: adc: sc27xx: fix read big scale voltage not right + - iio: adc: sc27xx: Fine tune the scale calibration values + - rpmsg: qcom_smd: Fix returning 0 if irq_of_parse_and_map() fails + - phy: qcom-qmp: fix pipe-clock imbalance on power-on failure + - serial: sifive: Report actual baud base rather than fixed 115200 + - coresight: cpu-debug: Replace mutex with mutex_trylock on panic notifier + - soc: rockchip: Fix refcount leak in rockchip_grf_init + - clocksource/drivers/riscv: Events are stopped during CPU suspend + - rtc: mt6397: check return value after calling platform_get_resource() + - serial: meson: acquire port->lock in startup() + - serial: 8250_fintek: Check SER_RS485_RTS_* only with RS485 + - serial: digicolor-usart: Don't allow CS5-6 + - serial: rda-uart: Don't allow CS5-6 + - serial: txx9: Don't allow CS5-6 + - serial: sh-sci: Don't allow CS5-6 + - serial: sifive: Sanitize CSIZE and c_iflag + - serial: st-asc: Sanitize CSIZE and correct PARENB for CS7 + - serial: stm32-usart: Correct CSIZE, bits, and parity + - firmware: dmi-sysfs: Fix memory leak in dmi_sysfs_register_handle + - bus: ti-sysc: Fix warnings for unbind for serial + - driver: base: fix UAF when driver_attach failed + - driver core: fix deadlock in __device_attach + - watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe + - ASoC: fsl_sai: Fix FSL_SAI_xDR/xFR definition + - clocksource/drivers/oxnas-rps: Fix irq_of_parse_and_map() return value + - s390/crypto: fix scatterwalk_unmap() callers in AES-GCM + - net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog + - net: ethernet: mtk_eth_soc: out of bounds read in mtk_hwlro_get_fdir_entry() + - net: dsa: mv88e6xxx: Fix refcount leak in mv88e6xxx_mdios_register + - modpost: fix removing numeric suffixes + - jffs2: fix memory leak in jffs2_do_fill_super + - ubi: ubi_create_volume: Fix use-after-free when volume creation failed + - nfp: only report pause frame configuration for physical device + - net/mlx5: Don't use already freed action pointer + - net/mlx5e: Update netdev features after changing XDP state + - net: sched: add barrier to fix packet stuck problem for lockless qdisc + - tcp: tcp_rtx_synack() can be called from process context + - afs: Fix infinite loop found by xfstest generic/676 + - tipc: check attribute length for bearer name + - perf c2c: Fix sorting in percent_rmt_hitm_cmp() + - mips: cpc: Fix refcount leak in mips_cpc_default_phys_base + - tracing: Fix sleeping function called from invalid context on RT kernel + - tracing: Avoid adding tracer option before update_tracer_options + - f2fs: remove WARN_ON in f2fs_is_valid_blkaddr + - i2c: cadence: Increase timeout per message if necessary + - m68knommu: set ZERO_PAGE() to the allocated zeroed page + - m68knommu: fix undefined reference to `_init_sp' + - dmaengine: zynqmp_dma: In struct zynqmp_dma_chan fix desc_size data type + - NFSv4: Don't hold the layoutget locks across multiple RPC calls + - video: fbdev: pxa3xx-gcu: release the resources correctly in + pxa3xx_gcu_probe/remove() + - xprtrdma: treat all calls not a bcall when bc_serv is NULL + - netfilter: nat: really support inet nat without l3 address + - ata: pata_octeon_cf: Fix refcount leak in octeon_cf_probe + - netfilter: nf_tables: memleak flow rule from commit path + - xen: unexport __init-annotated xen_xlate_map_ballooned_pages() + - af_unix: Fix a data-race in unix_dgram_peer_wake_me(). + - bpf, arm64: Clear prog->jited_len along prog->jited + - net: dsa: lantiq_gswip: Fix refcount leak in gswip_gphy_fw_list + - net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure + - SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() + - net: mdio: unexport __init-annotated mdio_bus_init() + - net: xfrm: unexport __init-annotated xfrm4_protocol_init() + - net: ipv6: unexport __init-annotated seg6_hmac_init() + - net/mlx5: Rearm the FW tracer after each tracer event + - net/mlx5: fs, fail conflicting actions + - ip_gre: test csum_start instead of transport header + - net: altera: Fix refcount leak in altera_tse_mdio_create + - drm: imx: fix compiler warning with gcc-12 + - iio: dummy: iio_simple_dummy: check the return value of kstrdup() + - iio: st_sensors: Add a local lock for protecting odr + - lkdtm/usercopy: Expand size of "out of frame" object + - tty: synclink_gt: Fix null-pointer-dereference in slgt_clean() + - tty: Fix a possible resource leak in icom_probe + - drivers: staging: rtl8192u: Fix deadlock in ieee80211_beacons_stop() + - drivers: staging: rtl8192e: Fix deadlock in rtllib_beacons_stop() + - USB: host: isp116x: check return value after calling platform_get_resource() + - drivers: tty: serial: Fix deadlock in sa1100_set_termios() + - drivers: usb: host: Fix deadlock in oxu_bus_suspend() + - USB: hcd-pci: Fully suspend across freeze/thaw cycle + - usb: dwc2: gadget: don't reset gadget's driver->bus + - misc: rtsx: set NULL intfdata when probe fails + - extcon: Modify extcon device to be created after driver data is set + - clocksource/drivers/sp804: Avoid error on multiple instances + - staging: rtl8712: fix uninit-value in usb_read8() and friends + - staging: rtl8712: fix uninit-value in r871xu_drv_init() + - serial: msm_serial: disable interrupts in __msm_console_write() + - kernfs: Separate kernfs_pr_cont_buf and rename_lock. + - watchdog: wdat_wdt: Stop watchdog when rebooting the system + - md: protect md_unregister_thread from reentrancy + - scsi: myrb: Fix up null pointer access on myrb_cleanup() + - ceph: allow ceph.dir.rctime xattr to be updatable + - drm/radeon: fix a possible null pointer dereference + - modpost: fix undefined behavior of is_arm_mapping_symbol() + - x86/cpu: Elide KCSAN for cpu_has() and friends + - nbd: call genl_unregister_family() first in nbd_cleanup() + - nbd: fix race between nbd_alloc_config() and module removal + - cifs: version operations for smb20 unneeded when legacy support disabled + - nodemask: Fix return values to be unsigned + - vringh: Fix loop descriptors check in the indirect cases + - scripts/gdb: change kernel config dumping method + - ALSA: hda/conexant - Fix loopback issue with CX20632 + - cifs: return errors during session setup during reconnects + - ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files + - mmc: block: Fix CQE recovery reset success + - nfc: st21nfca: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st21nfca: fix memory leaks in EVT_TRANSACTION handling + - ixgbe: fix bcast packets Rx on VF after promisc removal + - ixgbe: fix unexpected VLAN Rx in promisc mode on VF + - Input: bcm5974 - set missing URB_NO_TRANSFER_DMA_MAP urb flag + - powerpc/32: Fix overread/overwrite of thread_struct via ptrace + - md/raid0: Ignore RAID0 layout if the second zone has only one device + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd + - Linux 5.4.198 + * Focal update: v5.4.197 upstream stable release (LP: #1981758) + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - staging: rtl8723bs: prevent ->Ssid overflow in rtw_wx_set_scan() + - Input: goodix - fix spurious key release events + - tcp: change source port randomizarion at connect() time + - secure_seq: use the 64 bits of the siphash for port offset calculation + - media: vim2m: Register video device after setting up internals + - media: vim2m: initialize the media device earlier + - ACPI: sysfs: Make sparse happy about address space in use + - ACPI: sysfs: Fix BERT error region memory mapping + - pinctrl: sunxi: fix f1c100s uart2 function + - net: af_key: check encryption module availability consistency + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - assoc_array: Fix BUG_ON during garbage collect + - cfg80211: set custom regdomain after wiphy registration + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exec: Force single empty string when argv is empty + - netfilter: conntrack: re-fetch conntrack after insertion + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - HID: multitouch: Add support for Google Whiskers Touchpad + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - Linux 5.4.197 + * Focal update: v5.4.196 upstream stable release (LP: #1981111) + - x86/xen: Make the boot CPU idle task reliable + - x86/xen: Make the secondary CPU idle tasks reliable + - rtc: fix use-after-free on device removal + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - mmc: core: Specify timeouts for BKOPS and CACHE_FLUSH for eMMC + - mmc: block: Use generic_cmd6_time when modifying INAND_CMD38_ARG_EXT_CSD + - mmc: core: Default to generic_cmd6_time as timeout in __mmc_switch() + - SUNRPC: Clean up scheduling of autoclose + - SUNRPC: Prevent immediate close+reconnect + - SUNRPC: Don't call connect() more than once on a TCP socket + - ALSA: wavefront: Proper check of get_user() error + - perf: Fix sys_perf_event_open() race against self + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - net: macb: Increment rx bd head after allocating skb and buffer + - net/sched: act_pedit: sanitize shift argument before usage + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - igb: skip phy status check where unavailable + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf bench numa: Address compiler error on s390 + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - selftests: add ping test with ping_group_range tuned + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: verify hw_head_ lies within TX buffer ring + - Input: ili210x - fix reset timing + - block: return ELEVATOR_DISCARD_MERGE if possible + - net: stmmac: disable Split Header (SPH) for Intel platforms + - firmware_loader: use kernel credentials when reading firmware + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - x86/xen: fix booting 32-bit pv guest + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.4.196 + * CVE-2022-36946 + - netfilter: nf_queue: do not allow packet truncation below transport header + offset + * CVE-2021-33655 + - fbcon: Disallow setting font bigger than screen size + - fbcon: Prevent that screen size is smaller than font size + - fbmem: Check virtual screen sizes in fb_set_var() + + -- Tim Gardner Tue, 30 Aug 2022 10:06:28 -0600 + +linux-azure (5.4.0-1090.95) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1090.95 -proposed tracker (LP: #1983920) + + [ Ubuntu: 5.4.0-125.141 ] + + * focal/linux: 5.4.0-125.141 -proposed tracker (LP: #1983947) + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - blk-mq: blk-mq: provide forced completion method + - blk-mq: move failure injection out of blk_mq_complete_request + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + * CVE-2021-33656 + - vt: drop old FONT ioctls + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + + -- Tim Gardner Thu, 11 Aug 2022 09:57:08 -0600 + +linux-azure (5.4.0-1089.94) focal; urgency=medium + + [ Ubuntu: 5.4.0-124.140 ] + + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + + -- Thadeu Lima de Souza Cascardo Fri, 05 Aug 2022 05:42:16 -0300 + +linux-azure (5.4.0-1088.93) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1088.93 -proposed tracker (LP: #1982614) + + * Azure: multi-MSI patches break fio tests on NVMe (LP: #1982613) + - Revert "PCI: hv: Fix interrupt mapping for multi-MSI" + - Revert "PCI: hv: Reuse existing IRTE allocation in compose_msi_msg()" + - Revert "PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI" + - Revert "PCI: hv: Fix multi-MSI to allow more than one MSI vector" + + -- Tim Gardner Fri, 22 Jul 2022 14:47:22 -0600 + +linux-azure (5.4.0-1087.92) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1087.92 -proposed tracker (LP: #1981257) + + * Azure: Add support for multi-MSI (LP: #1981577) + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + + [ Ubuntu: 5.4.0-123.139 ] + + * focal/linux: 5.4.0-123.139 -proposed tracker (LP: #1981284) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + * Focal update: v5.4.195 upstream stable release (LP: #1980407) + - batman-adv: Don't skb_split skbuffs with frag_list + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - tcp: resalt the secret every 10 seconds + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - MIPS: fix build with gcc-12 + - net: phy: Fix race condition on link status change + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - ping: fix address binding wrt vrf + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - Linux 5.4.195 + * Focal update: v5.4.194 upstream stable release (LP: #1980399) + - MIPS: Use address-of operator on section symbols + - block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit + - drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, + environment} types + - drm/i915: Cast remain to unsigned long in eb_relocate_vma + - nfp: bpf: silence bitwise vs. logical OR warning + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL + - [Config] updateconfigs for ARCH_HAS_HOLES_MEMORYMODEL + - KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() + - x86/asm: Allow to pass macros to __ASM_FORM() + - x86: xen: kvm: Gather the definition of emulate prefixes + - x86: xen: insn: Decode Xen and KVM emulate-prefix signature + - x86: kprobes: Prohibit probing on instruction which has emulate prefix + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - Bluetooth: Fix the creation of hdev->name + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - Linux 5.4.194 + * Focal update: v5.4.193 upstream stable release (LP: #1979566) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - ACPICA: Always create namespace nodes using acpi_ns_create_node() + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for G12A tohdmi mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: grcan: use ofdev->dev when allocating DMA memory + - nfc: replace improper check device_is_registered() in netlink related + functions + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - hwmon: (adt7470) Fix warning on module removal + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - RDMA/siw: Fix a condition race issue in MPA request processing + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - smsc911x: allow using IRQ0 + - btrfs: always log symlinks in full mode + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - drm/amdkfd: Use drm_priv to pass VM from KFD to amdgpu + - NFSv4: Don't invalidate inode attributes on delegation return + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - net: ipv6: ensure we call ipv6_mc_down() at most once + - block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern + - mm: fix unexpected zeroed page mapping with zram swap + - 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: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - tcp: make sure treq->af_specific is initialized + - dm: fix mempool NULL pointer race when completing IO + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Fix reading MSI interrupt number + - mmc: rtsx: add 74 Clocks in power on flow + - Linux 5.4.193 + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + * CVE-2022-1734 + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + -- Tim Gardner Tue, 19 Jul 2022 08:28:27 -0600 + +linux-azure (5.4.0-1086.91) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1086.91 -proposed tracker (LP: #1979462) + + * Focal update: upstream stable patchset v5.4.192 (LP: #1979014) + - [Config] azure: updateconfigs for NVM, NVM_PBLK + + * focal/azure: The console log of ARM64 Ubuntu 18.04 has duplicate output + (LP: #1976399) + - printk: Move console matching logic into a separate function + - printk: Fix preferred console selection with multiple matches + + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - blk-mq: blk-mq: provide forced completion method + - blk-mq: move failure injection out of blk_mq_complete_request + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + + * Azure 5.4: vDSO broken with 5.4.0-1075-azure (LP: #1977753) + - Revert "clocksource/drivers/hyper-v: Handle vDSO differences inline" + + [ Ubuntu: 5.4.0-122.138 ] + + * focal/linux: 5.4.0-122.138 -proposed tracker (LP: #1979489) + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + * Enable Asus USB-BT500 Bluetooth dongle(0b05:190e) (LP: #1976613) + - Bluetooth: btusb: Add flag to define wideband speech capability + - Bluetooth: btrtl: Add support for RTL8761B + - Bluetooth: btusb: Add 0x0b05:0x190e Realtek 8761BU (ASUS BT500) device. + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + * Ubuntu 5.4.0-117.132-generic 5.4.189 has BUG: kernel NULL pointer + dereference, address: 0000000000000034 (LP: #1978719) + - mm: rmap: explicitly reset vma->anon_vma in unlink_anon_vmas() + * Focal update: upstream stable patchset v5.4.192 (LP: #1979014) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - lightnvm: disable the subsystem + - [Config] updateconfigs for NVM, NVM_PBLK + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: gadget: Return proper request status + - serial: imx: fix overrun interrupts in DMA mode + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - mtd: rawnand: fix ecc parameters for mt7622 + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - tcp: md5: incorrect tcp_header_len for incoming connections + - tcp: ensure to use the most recently sent skb when filling the rate sample + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: add validity check for message data length + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - net: bcmgenet: hide status block before TX timestamping + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - ixgbe: ensure IPsec VF<->PF compatibility + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: wm8731: Disable the regulator when probing fails + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - x86/cpu: Load microcode during restore_processor_state() + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix incorrect UA handling + - hugetlbfs: get unmapped area below TASK_UNMAPPED_BASE for hugetlbfs + - mm, hugetlb: allow for "high" userspace addresses + - Linux 5.4.192 + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + * Focal update: v5.4.191 upstream stable release (LP: #1976116) + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - tracing: Dump stacktrace trigger to the corresponding instance + - gfs2: assign rgrp glock before compute_bitstructs + - tcp: fix race condition when creating child sockets from syncookies + - tcp: Fix potential use-after-free due to double kfree() + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - netlink: reset network and mac headers in netlink_dump() + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - EDAC/synopsys: Read the error count from the correct register + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - staging: ion: Prevent incorrect reference counting behavour + - block/compat_ioctl: fix range check in BLKGETSIZE + - Linux 5.4.191 + * Focal update: v5.4.190 upstream stable release (LP: #1973085) + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - sctp: Initialize daddr on peeled off socket + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - drm/amd: Add USBC connector ID + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - drm/amd/display: Fix allocate_mst_payload assert on resume + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm, page_alloc: fix build_zonerefs_node() + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - gcc-plugins: latent_entropy: use /dev/urandom + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dma-direct: avoid redundant memory sync for swiotlb + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.4.190 + + [ Ubuntu: 5.4.0-121.137 ] + + * focal/linux: 5.4.0-121.137 -proposed tracker (LP: #1978666) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * CVE-2022-28388 + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + * test_vxlan_under_vrf.sh in net from ubuntu_kernel_selftests failed (Check VM + connectivity through VXLAN (underlay in the default VRF) [FAIL]) + (LP: #1871015) + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + + -- Tim Gardner Thu, 23 Jun 2022 13:20:45 -0600 + +linux-azure (5.4.0-1085.90) focal; urgency=medium + + [ Ubuntu: 5.4.0-120.136 ] + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - cpu/speculation: Add prototype for cpu_show_srbds() + - x86/cpu: Add Jasper Lake to Intel family + - x86/cpu: Add Lakefield, Alder Lake and Rocket Lake models to the to Intel + CPU family + - x86/cpu: Add another Alder Lake CPU to the Intel family + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Thadeu Lima de Souza Cascardo Fri, 10 Jun 2022 11:20:03 -0300 + +linux-azure (5.4.0-1083.87) focal; urgency=medium + + [ Ubuntu: 5.4.0-117.132 ] + + * CVE-2022-1966 + - netfilter: nf_tables: add nft_set_elem_expr_alloc() + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Wed, 01 Jun 2022 21:52:55 -0300 + +linux-azure (5.4.0-1081.84) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1081.84 -proposed tracker (LP: #1974363) + + * Azure: Mellanox VF NIC crashes when removed (LP: #1973758) + - PCI: hv: Avoid a kmemleak false positive caused by the hbus buffer + - PCI: hv: Add missing kfree(hbus) in hv_pci_probe()'s error handling path + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] azure: CONFIG_HISI_PMU=m + + * [Azure] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + (LP: #1972662) + - PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + + * linux-azure: Patch Set for ARM64 Images 20.04 and 18.04 (LP: #1970468) + - Drivers: hv: balloon: Support status report for larger page sizes + - Drivers: hv: balloon: Disable balloon and hot-add accordingly + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + + [ Ubuntu: 5.4.0-115.129 ] + + * CVE-2022-21499 + - SAUCE: debug: Lock down kgdb + + [ Ubuntu: 5.4.0-114.128 ] + + * focal/linux: 5.4.0-114.128 -proposed tracker (LP: #1974391) + * 32 GT/s PCI link speeds reporting "Unknown speed" in sysfs (LP: #1970798) + - PCI: Add 32 GT/s decoding in some macros + - PCI: Add pci_speed_string() + - PCI: Use pci_speed_string() for all PCI/PCI-X/PCIe strings + - PCI: Add PCIE_LNKCAP2_SLS2SPEED() macro + * issuing invalid ioctl to /dev/vsock may spam dmesg (LP: #1971480) + - vsock: remove ratelimit unknown ioctl message + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - drivers/perf: hisi: Permit modular builds of HiSilicon uncore drivers + - [Config] CONFIG_HISI_PMU=m + * Focal update: v5.4.189 upstream stable release (LP: #1971497) + - swiotlb: fix info leak with DMA_FROM_DEVICE + - USB: serial: pl2303: add IBM device IDs + - USB: serial: simple: add Nokia phone driver + - netdevice: add the case if dev is NULL + - HID: logitech-dj: add new lightspeed receiver id + - xfrm: fix tunnel model fragmentation behavior + - virtio_console: break out of buf poll on remove + - ethernet: sun: Free the coherent when failing in probing + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - spi: Fix erroneous sgs value with min_t() + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - iommu/iova: Improve 32-bit free space estimate + - tpm: fix reference counting for struct tpm_chip + - block: Add a helper to validate the block size + - virtio-blk: Use blk_validate_block_size() to validate block size + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - 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() + - coresight: Fix TRCCONFIGR.QE sysfs interface + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: uniphier: Fix fixed-rate initialization + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - 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 + - pinctrl: samsung: drop pin banks references on error paths + - spi: mxic: Fix the transmit 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/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: 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: Fix fill_callchain return value + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - udp: call udp_encap_enable for v6 sockets when enabling encap + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - mailbox: tegra-hsp: Flush whole channel + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - 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 + - carl9170: fix missing bit-wise or operator for tx_params + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - 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() + - DEC: Limit PMAX memory probing to R3k systems + - media: davinci: vpif: fix unbalanced runtime PM get + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - PCI: pciehp: Clear cmd_busy bit in polling mode + - regulator: qcom_smd: fix for_each_child.cocci warnings + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - selftests/x86: Add validity check and allow field splitting + - audit: log AUDIT_TIME_* records only from rules + - crypto: ccree - don't attempt 0 len DMA mappings + - 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 + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - hwrng: atmel - disable trng on failure path + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - f2fs: fix to avoid potential deadlock + - media: bttv: fix WARNING regression on tunerless devices + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: hantro: Fix overfill bottom register field name + - media: aspeed: Correct value for h-total-pixels + - 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: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: video/hdmi: handle short reads of hdmi info frame. + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - 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: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - 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 + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - udmabuf: validate ubuf->pagecount + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - ath9k_htc: fix uninit value bugs + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - 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/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - 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 abort all task initialization + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - 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 + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - PCI: Reduce warnings on possible RW1C corruption + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - powerpc/sysdev: fix incorrect use to determine if list is empty + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - MIPS: RB532: fix return value of __setup handler + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - 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 + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - misc: alcor_pci: Fix an error handling path + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - NFS: Return valid errors from nfs2/3_decode_dirent() + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - 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 + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - clk: qcom: gcc-msm8994: Fix gpll4 width + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - 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 + - lib/test: use after free in register_test_dev_kmod() + - LSM: general protection fault in legacy_parse_param + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - 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 + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - spi: tegra20: Use of_device_get_match_data() + - ext4: don't BUG if someone dirty pages without asking ext4 first + - ntfs: add sanity check on allocation size + - 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 + - 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 + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: cx88-mpeg: clear interrupt status register before streaming video + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Fix build errors with newer binutils + - scsi: qla2xxx: Fix stuck session in gpdb + - 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: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - 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: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: rename_whiteout: correct old_dir size computing + - 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 + - XArray: Update the LRU list in xas_split() + - rtc: check if __rtc_read_time was successful + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - powerpc/kasan: Fix early region not updated correctly + - ASoC: soc-compress: Change the check for codec_dai + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - 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 + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: topology: Allow TLV control to be either read or write + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - um: Fix uml_mconsole stop/go + - openvswitch: Fixed nd target mask field in the flow dump. + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - rtc: wm8350: Handle error for wm8350_register_irq + - riscv module: remove (NOLOAD) + - ARM: 9187/1: JIVE: fix return value of __setup handler + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - ptp: replace snprintf with sysfs_emit + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - 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() + - power: supply: axp20x_battery: properly report current when discharging + - ipv6: make mc_forwarding atomic + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - power: supply: axp288-charger: Set Vhold to 4.4V + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - drm/amdkfd: make CRAT table missing message informational only + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - bnxt_en: Eliminate unintended link toggle during FW reset + - MIPS: fix fortify panic when copying asm exception handlers + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - xtensa: fix DTC warning unit_address_format + - Bluetooth: Fix use after free in hci_send_acl + - netlabel: fix out-of-bounds memory accesses + - 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 + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4: Protect the state recovery thread against direct reclaim + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - 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 + - 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 + - KVM: arm64: Check arm64_get_bp_hardening_data() didn't return NULL + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - bnxt_en: reserve space inside receive page for skb_shared_info + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ipv6: Fix stats accounting in ip6_pkt_drop + - net: openvswitch: don't send internal clone attribute to the userspace. + - rxrpc: fix a race in rxrpc_exit_net() + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - lz4: fix LZ4_decompress_safe_partial read out of bound + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - btrfs: fix qgroup reserve overflow the qgroup limit + - arm64: patch_text: Fixup last cpu should be master + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - 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" + - mmc: mmci_sdmmc: Replace sg_dma_xxx macros + - mmc: mmci: stm32: correctly check all elements of sg list + - mm: don't skip swap entry even if zap_details specified + - arm64: module: remove (NOLOAD) from linker script + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - drm/amdkfd: add missing void argument to function kgd2kfd_init + - drm/amdkfd: Fix -Wstrict-prototypes from + amdgpu_amdkfd_gfx_10_0_get_functions() + - 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 + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - Linux 5.4.189 + * Focal update: v5.4.188 upstream stable release (LP: #1971496) + - nfsd: cleanup nfsd_file_lru_dispose() + - nfsd: Containerise filecache laundrette + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - staging: fbtft: fb_st7789v: reset display before initialization + - thermal: int340x: fix memory leak in int3400_notify() + - llc: fix netdevice reference leaks in llc_ui_bind() + - 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 + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - 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 + - rcu: Don't deboost before reporting expedited quiescent state + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.4.188 + * Focal update: v5.4.187 upstream stable release (LP: #1971493) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - efi: fix return value of __setup handlers + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - hv_netvsc: Add check for kvmalloc_array + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - Linux 5.4.187 + * Focal update: v5.4.186 upstream stable release (LP: #1969678) + - Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0" + - sctp: fix the processing for INIT chunk + - 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: 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 + - 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 + - kselftest/vm: fix tests build with old libc + - fixup for "arm64 entry: Add macro for reading symbol address from the + trampoline" + - Linux 5.4.186 + * Focal update: v5.4.185 upstream stable release (LP: #1969672) + - clk: qcom: gdsc: Add support to update GDSC transition delay + - arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias + - virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero + - net: qlogic: check the return value of dma_alloc_coherent() in + qed_vf_hw_prepare() + - qed: return status of qed_iov_get_link + - drm/sun4i: mixer: Fix P010 and P210 format numbers + - ARM: dts: aspeed: Fix AST2600 quad spi group + - ethernet: Fix error handling in xemaclite_of_probe + - net: ethernet: ti: cpts: Handle error for clk_enable + - net: ethernet: lpc_eth: Handle error for clk_enable + - 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 + - NFC: port100: fix use-after-free in port100_send_complete + - selftests: pmtu.sh: Kill tcpdump processes launched by 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-sysfs: add check for netdevice being present to speed_show + - 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 + - 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 pipe buffer lifetime for direct_io + - staging: gdm724x: fix use after free in gdm_lte_rx() + - net: macb: Fix lost RX packet wakeup race in NAPI receive + - mmc: meson: Fix usage of meson_mmc_post_req() + - riscv: Fix auipc+jalr relocation range checks + - arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0 + - virtio: unexport virtio_finalize_features + - virtio: acknowledge all features before access + - ARM: fix Thumb2 regression with Spectre BHB + - ext4: add check to prevent attempting to resize an fs with sparse_super2 + - x86/cpufeatures: Mark two free bits in word 3 + - x86/cpu: Add hardware-enforced cache coherency as a CPUID feature + - x86/mm/pat: Don't flush cache if hardware enforces cache coherency across + encryption domnains + - KVM: SVM: Don't flush cache if hardware enforces cache coherency across + encryption domains + - Linux 5.4.185 + * Focal update: v5.4.184 upstream stable release (LP: #1969242) + - arm/arm64: Provide a wrapper for SMCCC 1.1 calls + - arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit() + - ARM: report Spectre v2 status through sysfs + - ARM: early traps initialisation + - ARM: use LOADADDR() to get load address of sections + - [Config] updateconfigs for HARDEN_BRANCH_HISTORY + - ARM: Spectre-BHB workaround + - ARM: include unprivileged BPF status in Spectre V2 reporting + - ARM: fix build error when BPF_SYSCALL is disabled + - ARM: fix co-processor register typo + - ARM: Do not use NOCROSSREFS directive with ld.lld + - 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() + - Linux 5.4.184 + * Focal update: v5.4.183 upstream stable release (LP: #1969239) + - 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 + - Input: clear BTN_RIGHT/MIDDLE on buttonpads + - cifs: fix double free race when mount fails in cifs_get_root() + - dmaengine: shdma: Fix runtime PM imbalance on error + - i2c: cadence: allow COMPILE_TEST + - i2c: qup: allow COMPILE_TEST + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990 + - usb: gadget: don't release an existing dev->buf + - usb: gadget: clear related members when goto fail + - ata: pata_hpt37x: fix PCI clock detection + - ALSA: intel_hdmi: Fix reference to PCM buffer address + - ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min + - xfrm: fix MTU regression + - netfilter: fix use-after-free in __nf_register_net_hook() + - xfrm: enforce validity of offload input flags + - netfilter: nf_queue: don't assume sk is full socket + - netfilter: nf_queue: fix possible use-after-free + - 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: dcb: flush lingering app table entries for unregistered devices + - 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 + - block: Fix fsync always failed if once failed + - xen/netfront: destroy queues before real_num_tx_queues is zeroed + - sched/topology: Make sched_init_numa() use a set for the deduplicating sort + - sched/topology: Fix sched_domain_topology_level alloc in sched_init_numa() + - ia64: ensure proper NUMA distance and possible map initialization + - mac80211: fix forwarded mesh frames AC & queue selection + - net: stmmac: fix return value of __setup handler + - iavf: Fix missing check for running netdev + - net: sxgbe: fix return value of __setup handler + - net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe() + - ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() + - efivars: Respect "block" flag in efivar_entry_set_safe() + - firmware: arm_scmi: Remove space in MODULE_ALIAS name + - ASoC: cs4265: Fix the duplicated control name + - can: gs_usb: change active_channels's type from atomic_t to u8 + - 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 + - ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions + - 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 + - soc: fsl: qe: Check of ioremap return value + - net: chelsio: cxgb3: check the return value of pci_find_capability() + - nl80211: Handle nla_memdup failures in handle_nan_filter + - 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 + - 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: qgroup: fix deadlock between rescan worker and remove qgroup + - btrfs: add missing run of delayed items after unlink during log replay + - Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6" + - net: dcb: disable softirqs in dcbnl_flush_dev() + - hamradio: fix macro redefine warning + - Linux 5.4.183 + * Focal update: v5.4.182 upstream stable release (LP: #1969236) + - cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug + - clk: jz4725b: fix mmc0 clock gating + - 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 + - drm/amdgpu: disable MMHUB PG for Picasso + - sr9700: sanity check for packet length + - USB: zaurus: support another broken Zaurus + - x86/fpu: Correct pkru/xstate inconsistency + - tee: export teedev_open() and teedev_close_context() + - optee: use driver internal tee_context for some rpc + - lan743x: fix deadlock in lan743x_phy_link_status_change() + - ping: remove pr_err from ping_lookup + - perf data: Fix double free in perf_session__delete() + - bpf: Do not try bpf_msg_push_data with len 0 + - net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends + - 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 + - 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 + - net: ll_temac: check the return value of devm_kmalloc() + - net: Force inlining of checksum functions in net/checksum.h + - nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() + - netfilter: nf_tables: fix memory leak during stateful obj update + - net/mlx5: Fix possible deadlock on rule deletion + - net/mlx5: Fix wrong limitation of metadata match on ecpf + - spi: spi-zynq-qspi: Fix a NULL pointer dereference in + zynq_qspi_exec_mem_op() + - configfs: fix a race in configfs_{,un}register_subsystem() + - RDMA/ib_srp: Fix a deadlock + - tracing: Have traceon and traceoff trigger honor the instance + - iio: adc: men_z188_adc: Fix a resource leak in an error handling path + - iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits + - iio: Fix error handling for PM + - 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 + - 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: 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. + - 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 + - gpio: tegra186: Fix chip_data type confusion + - Revert "drm/nouveau/pmu/gm200-: avoid touching PMU outside of + DEVINIT/PREOS/ACR" + - memblock: use kfree() to release kmalloced memblock regions + - fget: clarify and improve __fget_files() implementation + - Linux 5.4.182 + * CVE-2022-28390 + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + + -- Tim Gardner Thu, 26 May 2022 12:05:02 -0600 + +linux-azure (5.4.0-1080.83) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1080.83 -proposed tracker (LP: #1973952) + + [ Ubuntu: 5.4.0-113.127 ] + + * focal/linux: 5.4.0-113.127 -proposed tracker (LP: #1973980) + * CVE-2022-29581 + - net/sched: cls_u32: fix netns refcount changes in u32_change() + * CVE-2022-1116 + - io_uring: fix fs->users overflow + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + * Unprivileged users may use PTRACE_SEIZE to set PTRACE_O_SUSPEND_SECCOMP + option (LP: #1972740) + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + + -- Tim Gardner Thu, 19 May 2022 07:06:08 -0600 + +linux-azure (5.4.0-1078.81) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1078.81 -proposed tracker (LP: #1969026) + + * linux-azure: Harmonize arm64 config settings with amd64 (LP: #1968900) + - [Config] azure: Harmonize arm64 config settings with amd64 + - [Config] azure: do_enforce_all=true + - [Config] azure: format annotations + + * linux-azure: add check to prevent attempting to resize an fs with + sparse_super2 (LP: #1970223) + - ext4: add check to prevent attempting to resize an fs with sparse_super2 + + [ Ubuntu: 5.4.0-110.124 ] + + * focal/linux: 5.4.0-110.124 -proposed tracker (LP: #1969053) + * net/mlx5e: Fix page DMA map/unmap attributes (LP: #1967292) + - net/mlx5e: Fix page DMA map/unmap attributes + * xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + (LP: #1966803) + - xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + * LRMv6: add multi-architecture support (LP: #1968774) + - [Packaging] resync dkms-build{,--nvidia-N} + * xfrm interface cannot be changed anymore (LP: #1968591) + - xfrm: fix the if_id check in changelink + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + * vmx_ldtr_test in ubuntu_kvm_unit_tests failed (FAIL: Expected 0 for L1 LDTR + selector (got 50)) (LP: #1956315) + - KVM: nVMX: Set LDTR to its architecturally defined value on nested VM-Exit + * [SRU][Regression] Revert "PM: ACPI: reboot: Use S5 for reboot" which causes + Bus Fatal Error when rebooting system with BCM5720 NIC (LP: #1917471) + - Revert "PM: ACPI: reboot: Use S5 for reboot" + * Focal update: v5.4.181 upstream stable release (LP: #1967582) + - Makefile.extrawarn: Move -Wunaligned-access to W=1 + - HID:Add support for UGTABLET WP5540 + - Revert "svm: Add warning message for AVIC IPI invalid target" + - 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 + - btrfs: send: in case of IO error log it + - platform/x86: ISST: Fix possible circular locking dependency detected + - selftests: rtc: Increase test timeout so that all tests run + - 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 + - ax25: improve the incomplete fix to avoid UAF and NPD bugs + - vfs: make freeze_super abort when sync_filesystem returns error + - quota: make dquot_quota_sync return errors from ->sync_fs + - 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 + - drm/amdgpu: fix logic inversion in check + - Revert "module, async: async_synchronize_full() on module init iff async is + used" + - ftrace: add ftrace_init_nop() + - module/ftrace: handle patchable-function-entry + - arm64: module: rework special section handling + - arm64: module/ftrace: intialize PLT at load time + - iwlwifi: fix use-after-free + - drm/radeon: Fix backlight control on iMac 12,1 + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: check for inconsistent extents between index and leaf block + - ext4: prevent partial update of the extent blocks + - taskstats: Cleanup the use of task->exit_code + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - vsock: remove vsock from connected table when connect is interrupted by a + signal + - mmc: block: fix read single on recovery logic + - iwlwifi: pcie: fix locking when "HW not ready" + - iwlwifi: pcie: gen2: fix locking when "HW not ready" + - netfilter: nft_synproxy: unregister hooks on init error path + - net: dsa: lan9303: fix reset on probe + - 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 + - bonding: fix data-races around agg_select_timer + - libsubcmd: Fix use-after-free for realloc(..., 0) + - 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() + - powerpc/lib/sstep: fix 'ptesync' build error + - mtd: rawnand: gpmi: don't leak PM reference in error path + - block/wbt: fix negative inflight counter when remove scsi device + - NFS: LOOKUP_DIRECTORY is also ok with symlinks + - NFS: Do not report writeback errors in nfs_getattr() + - mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe() + - mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status + - scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop + - EDAC: Fix calculation of returned address and next offset in + edac_align_ptr() + - net: sched: limit TC_ACT_REPEAT loops + - dmaengine: sh: rcar-dmac: Check for error num after setting mask + - copy_process(): Move fd_install() out of sighand->siglock critical section + - i2c: brcmstb: fix support for DSL and CM variants + - Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj + - 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 + - irqchip/sifive-plic: Add missing thead,c900-plic match string + - netfilter: conntrack: don't refresh sctp entries in closed state + - 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 + - kconfig: let 'shell' return enough output for deep path names + - ata: libata-core: Disable TRIM on M88V29 + - drm/rockchip: dw_hdmi: Do not leave clock enabled in error case + - tracing: Fix tp_printk option related with tp_printk_stop_on_boot + - 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 + - Linux 5.4.181 + * Focal update: v5.4.180 upstream stable release (LP: #1966118) + - integrity: check the return value of audit_log_start() + - 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 + - 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: Clamp WRITE offsets + - NFSD: Fix offset type in I/O trace points + - 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 expose nfs_parse_server_name function + - drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer + - net: sched: Clarify error message when qdisc kind is unknown + - scsi: target: iscsi: Make sure the np under each tpg is unique + - scsi: qedf: Fix refcount issue when LOGO is received during TMF + - scsi: myrs: Fix crash in error case + - PM: hibernate: Remove register_nosave_region_late() + - usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend + - net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout() + - KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER + - riscv: fix build with binutils 2.38 + - ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group + - 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 + - net: bridge: fix stale eth hdr pointer in br_dev_xmit + - perf probe: Fix ppc64 'perf probe add events failed' case + - ARM: dts: meson: Fix the UART compatible strings + - staging: fbtft: Fix error path in fbtft_driver_module_init() + - ARM: dts: imx6qdl-udoo: Properly describe the SD card detect + - usb: f_fs: Fix use-after-free for epfile + - misc: fastrpc: avoid double fput() on failed usercopy + - ixgbevf: Require large buffers for build_skb on 82599VF + - bonding: pair enable_port with slave_arr_updates + - 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 + - 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 + - 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: 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 + - seccomp: Invalidate seccomp mode to catch death failures + - hwmon: (dell-smm) Speed up setting of fan speed + - scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled + - perf: Fix list corruption in perf_cgroup_switch() + - Linux 5.4.180 + * Focal update: v5.4.179 upstream stable release (LP: #1965591) + - moxart: fix potential use-after-free on remove path + - Linux 5.4.179 + * CVE-2020-27820 + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: clean up all clients on device removal + * CVE-2022-1016 + - netfilter: nf_tables: initialize registers in nft_do_chain() + * CVE-2022-27223 + - USB: gadget: validate endpoint index for xilinx udc + * CVE-2022-26490 + - nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION + * 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/speculation: Include unprivileged eBPF status in Spectre v2 mitigation + reporting + + -- Tim Gardner Mon, 25 Apr 2022 14:35:36 -0600 + +linux-azure (5.4.0-1077.80) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1077.80 -proposed tracker (LP: #1968796) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.03.21) + + * focal/linux-azure: Enable missing config options (LP: #1968749) + - Drivers: hv: vmbus: Propagate VMbus coherence to each VMbus device + - PCI: hv: Propagate coherence from VMbus device to PCI device + - [Config] azure: arm64: Ignore module movements + - [Config] azure: arm64: Enable RAID config options + - [Config] azure: arm64: Enable SQUASHFS config options + + -- Tim Gardner Tue, 12 Apr 2022 18:53:53 -0600 + +linux-azure (5.4.0-1076.79) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1076.79 -proposed tracker (LP: #1968351) + + * linux-azure: Fixup Hyperv backport bugs (LP: #1968344) + - SAUCE: azure: Fixup MSI domain ops + + [ Ubuntu: 5.4.0-109.123 ] + + * focal/linux: 5.4.0-109.123 -proposed tracker (LP: #1968290) + * USB devices not detected during boot on USB 3.0 hubs (LP: #1968210) + - SAUCE: Revert "Revert "xhci: Set HCD flag to defer primary roothub + registration"" + - SAUCE: Revert "Revert "usb: core: hcd: Add support for deferring roothub + registration"" + + -- Tim Gardner Fri, 08 Apr 2022 10:10:45 -0600 + +linux-azure (5.4.0-1075.78) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1075.78 -proposed tracker (LP: #1967368) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.02.21) + + * linux-azure: CONFIG_HIBERNATION=y (LP: #1967336) + - [Config] azure: arm64 CONFIG_HIBERNATION=y + + * linux-azure: Fix NUMA node assignment when kernel boots with custom NUMA + topology (LP: #1961300) + - PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA + topology + - ACPI: NUMA: Up-level "map to online node" functionality + - mm: mempolicy: fix kerneldoc of numa_map_to_online_node() + + * linux-azure: Focal 5.4 arm64 support (LP: #1965618) + - SAUCE: azure: sgx is x86 only + - Revert "Drivers: hv: vmbus: Fix duplicate CPU assignments within a device" + - hv_sock: use HV_HYP_PAGE_SIZE for Hyper-V communication + - Drivers: hv: vmbus: Introduce table of VMBus protocol versions + - Drivers: hv: vmbus: Enable VMBus protocol versions 4.1, 5.1 and 5.2 + - Drivers: hv: Specify receive buffer size using Hyper-V page size + - Drivers: hv: util: Specify ring buffer size using Hyper-V page size + - x86: hv: Add function to allocate zeroed page for Hyper-V + - Drivers: hv: vmbus: Remove dependencies on guest page size + - Drivers: hv: balloon: Remove dependencies on guest page size + - x86/hyper-v: Add "polling" bit to hv_synic_sint + - PCI: hv: Move hypercall related definitions into tlfs header + - PCI: hv: Move retarget related structures into tlfs header + - PCI: hv: Introduce hv_msi_entry + - Drivers: hv: Move AEOI determination to architecture dependent code + - Drivers: hv: copy from message page only what's needed + - Drivers: hv: allocate the exact needed memory for messages + - Drivers: hv: avoid passing opaque pointer to vmbus_onmessage() + - Drivers: hv: make sure that 'struct vmbus_channel_message_header' compiles + correctly + - Drivers: hv: check VMBus messages lengths + - Drivers: hv: vmbus: Don't bind the offer&rescind works to a specific CPU + - Drivers: hv: vmbus: Replace the per-CPU channel lists with a global array of + channels + - hv_netvsc: Disable NAPI before closing the VMBus channel + - hv_utils: Always execute the fcopy and vss callbacks in a tasklet + - Drivers: hv: vmbus: Use a spin lock for synchronizing channel scheduling vs. + channel removal + - PCI: hv: Prepare hv_compose_msi_msg() for the VMBus-channel-interrupt-to- + vCPU reassignment functionality + - Drivers: hv: vmbus: Remove the unused HV_LOCALIZED channel affinity logic + - Drivers: hv: vmbus: Synchronize init_vp_index() vs. CPU hotplug + - Drivers: hv: vmbus: Introduce the CHANNELMSG_MODIFYCHANNEL message type + - scsi: storvsc: Re-init stor_chns when a channel interrupt is re-assigned + - drivers: hv: remove redundant assignment to pointer primary_channel + - KVM: x86: hyperv: Remove duplicate definitions of Reference TSC Page + - x86/hyperv: Remove HV_PROCESSOR_POWER_STATE #defines + - x86/hyperv: Split hyperv-tlfs.h into arch dependent and independent files + - asm-generic/hyperv: Add definitions for Get/SetVpRegister hypercalls + - Drivers: hv: vmbus: Resolve race between init_vp_index() and CPU hotplug + - Drivers: hv: vmbus: Resolve more races involving init_vp_index() + - Drivers: hv: vmbus: Remove the target_vp field from the vmbus_channel struct + - Drivers: hv: vmbus: Remove the numa_node field from the vmbus_channel struct + - Drivers: hv: vmbus: Replace cpumask_test_cpu(, cpu_online_mask) with + cpu_online() + - Drivers: hv: vmbus: Remove unnecessary channel->lock critical sections + (sc_list readers) + - Drivers: hv: vmbus: Use channel_mutex in channel_vp_mapping_show() + - Drivers: hv: vmbus: Remove unnecessary channel->lock critical sections + (sc_list updaters) + - scsi: storvsc: Introduce the per-storvsc_device spinlock + - Drivers: hv: vmbus: Remove the lock field from the vmbus_channel struct + - Drivers: hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl + - Drivers: hv: vmbus: Move __vmbus_open() + - Drivers: hv: vmbus: Introduce types of GPADL + - Drivers: hv: Use HV_HYP_PAGE in hv_synic_enable_regs() + - Drivers: hv: vmbus: Move virt_to_hvpfn() to hyperv header + - hv: hyperv.h: Introduce some hvpfn helper functions + - hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication + - Input: hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes + - HID: hyperv: Use VMBUS_RING_SIZE() for ringbuffer sizes + - Driver: hv: util: Use VMBUS_RING_SIZE() for ringbuffer sizes + - scsi: storvsc: Support PAGE_SIZE larger than 4K + - Drivers: hv: vmbus: Add parsing of VMbus interrupt in ACPI DSDT + - smccc: Define vendor hyp owned service call region + - x86/apic: Cleanup delivery mode defines + - drivers: hv: vmbus: Fix checkpatch SPLIT_STRING + - asm-generic/hyperv: update hv_msi_entry + - asm-generic/hyperv: update hv_interrupt_entry + - Drivers: hv: vmbus: Move Hyper-V page allocator to arch neutral code + - x86/hyper-v: Move hv_message_type to architecture neutral module + - Drivers: hv: Redo Hyper-V synthetic MSR get/set functions + - Drivers: hv: vmbus: Move hyperv_report_panic_msg to arch neutral code + - Drivers: hv: vmbus: Handle auto EOI quirk inline + - Drivers: hv: vmbus: Move handling of VMbus interrupts + - clocksource/drivers/hyper-v: Handle vDSO differences inline + - clocksource/drivers/hyper-v: Handle sched_clock differences inline + - clocksource/drivers/hyper-v: Set clocksource rating based on Hyper-V feature + - clocksource/drivers/hyper-v: Move handling of STIMER0 interrupts + - drivers: hv: Create a consistent pattern for checking Hyper-V hypercall + status + - PCI: hv: Drop msi_controller structure + - Drivers: hv: Move Hyper-V extended capability check to arch neutral code + - PCI: hv: Fix a race condition when removing the device + - PCI: hv: Remove bus device removal unused refcount/functions + - Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + - arm64: smccc: Add support for SMCCCv1.2 extended input/output registers + - asm-generic/hyperv: Add missing #include of nmi.h + - Drivers: hv: Make portions of Hyper-V init code be arch neutral + - Drivers: hv: Add arch independent default functions for some Hyper-V + handlers + - Drivers: hv: Move Hyper-V misc functionality to arch-neutral code + - drivers: hv: Decouple Hyper-V clock/timer code from VMbus drivers + - arm64: hyperv: Add Hyper-V hypercall and register access utilities + - arm64: hyperv: Add panic handler + - arm64: hyperv: Initialize hypervisor on boot + - arm64: efi: Export screen_info + - Drivers: hv: Enable Hyper-V code to be built on ARM64 + - PCI: hv: Support for create interrupt v3 + - PCI: Introduce domain_nr in pci_host_bridge + - PCI: Support populating MSI domains of root buses via bridges + - arm64: PCI: Restructure pcibios_root_bridge_prepare() + - arm64: PCI: Support root bridge preparation for Hyper-V + - PCI: hv: Generify PCI probing + - PCI: hv: Set ->domain_nr of pci_host_bridge at probing time + - PCI: hv: Set up MSI domain at bridge probing time + - PCI: hv: Turn on the host bridge probing on ARM64 + - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size + - PCI: hv: Make the code arch neutral by adding arch specific interfaces + - PCI: hv: Add arm64 Hyper-V vPCI support + - Ubuntu: SAUCE: clocksource/drivers/hyper-v: Untangle stimers and timesync + from clocksources + - [Package] Initial arm64 packaging + - [Config] arm64: CONFIG_XFS_FS=m + + [ Ubuntu: 5.4.0-108.122 ] + + * focal/linux: 5.4.0-108.122 -proposed tracker (LP: #1966740) + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + - debian/dkms-versions -- update from kernel-versions (main/2022.03.21) + * Low RX performance for 40G Solarflare NICs (LP: #1964512) + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + * [UBUNTU 20.04] KVM: Enable storage key checking for intercepted instruction + (LP: #1962831) + - selftests: kvm: add _vm_ioctl + - selftests: kvm: Introduce the TEST_FAIL macro + - KVM: selftests: Add GUEST_ASSERT variants to pass values to host + - 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 + * 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon/sec2 - Add workqueue for SEC driver. + - crypto: hisilicon/sec2 - update SEC initialization and reset + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) + - crypto: hisilicon - Use one workqueue per qm instead of per qp + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) // 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon - Unify hardware error init/uninit into QM + * [UBUNTU 20.04] Fix SIGP processing on KVM/s390 (LP: #1962578) + - KVM: s390: Simplify SIGP Set Arch handling + - KVM: s390: Add a routine for setting userspace CPU state + * Move virtual graphics drivers from linux-modules-extra to linux-modules + (LP: #1960633) + - [Packaging] Move VM DRM drivers into modules + * Focal update: v5.4.178 upstream stable release (LP: #1964634) + - audit: improve audit queue handling when "audit=1" on cmdline + - 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: Simplify quirk entries with a macro + - 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: fix deadlock between quota disable and qgroup rescan worker + - drm/nouveau: fix off by one in BIOS boundary checking + - mm/kmemleak: avoid scanning potential huge holes + - block: bio-integrity: Advance seed correctly for larger interval sizes + - memcg: charge fs_context and legacy_fs_context + - 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 + - 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 + - net: ieee802154: hwsim: Ensure proper channel selection at probe time + - net: ieee802154: mcr20a: Fix lifs/sifs periods + - net: ieee802154: ca8210: Stop leaking skb's + - net: ieee802154: Return meaningful error codes from the netlink helpers + - 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/i915/overlay: Prevent divide by zero bugs in scaling + - ASoC: fsl: Add missing error handling in pcm030_fabric_probe + - ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes + - ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name + - ASoC: max9759: fix underflow in speaker_gain_control_put() + - pinctrl: bcm2835: Fix a few error paths + - scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe + - nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. + - selftests: futex: Use variable MAKE instead of make + - rtc: cmos: Evaluate century appropriate + - EDAC/altera: Fix deferred probing + - EDAC/xgene: Fix deferred probing + - ext4: fix error handling in ext4_restore_inline_data() + - cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning + - Linux 5.4.178 + * Focal update: v5.4.177 upstream stable release (LP: #1964628) + - PCI: pciehp: Fix infinite loop in IRQ handler upon power fault + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - ipheth: fix EOVERFLOW in ipheth_rcvbulk_callback + - net: amd-xgbe: ensure to reset the tx_timer_active flag + - net: amd-xgbe: Fix skb data length underflow + - rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() + - cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() + - af_packet: fix data-race in packet_setsockopt / packet_setsockopt + - Linux 5.4.177 + * Focal update: v5.4.176 upstream stable release (LP: #1962345) + - s390/hypfs: include z/VM guests with access control group set + - 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 + - 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 + - fsnotify: fix fsnotify hooks in pseudo filesystems + - drm/etnaviv: relax submit size limits + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - 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: Add support for Brainboxes UC cards. + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - net: sfp: ignore disabled SFP node + - 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 unsigned stat widths + - 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: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - 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 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - net: phy: broadcom: hook up soft_reset for BCM54616S + - phylib: fix potential use-after-free + - rxrpc: Adjust retransmission backoff + - hwmon: (lm90) Mark alert as broken for MAX6654 + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - yam: fix a memory leak in yam_siocdevprivate() + - net: hns3: handle empty unknown interrupt for VF + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - 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.4.176 + * Focal update: v5.4.175 upstream stable release (LP: #1962330) + - rcu: Tighten rcu_advance_cbs_nowake() checks + - pinctrl: bcm2835: Drop unused define + - pinctrl: bcm2835: Refactor platform data + - pinctrl: bcm2835: Add support for all GPIOs on BCM2711 + - pinctrl: bcm2835: Match BCM7211 compatible string + - pinctrl: bcm2835: Add support for wake-up interrupts + - pinctrl: bcm2835: Change init order for gpio hogs + - ARM: dts: gpio-ranges property is now required + - mmc: sdhci-esdhc-imx: disable CMDQ support + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - Linux 5.4.175 + + -- Tim Gardner Mon, 04 Apr 2022 13:13:29 -0600 + +linux-azure (5.4.0-1074.77) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1074.77 -proposed tracker (LP: #1966248) + + [ Ubuntu: 5.4.0-107.121 ] + + * focal/linux: 5.4.0-107.121 -proposed tracker (LP: #1966275) + * CVE-2022-27666 + - esp: Fix possible buffer overflow in ESP transformation + * CVE-2022-1055 + - net: sched: fix use-after-free in tc_new_tfilter() + * Pick fixup from v5.4.176 upstream stable release to address cert + failure with clock jitter test in NUC7i3DNHE (LP: #1964204) + - Bluetooth: refactor malicious adv data check + + -- Krzysztof Kozlowski Fri, 25 Mar 2022 11:27:33 +0100 + +linux-azure (5.4.0-1073.76) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1073.76 -proposed tracker (LP: #1964181) + + * linux-azure: Missing ext4 commits (LP: #1960820) + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: avoid ext4_error()'s caused by ENOMEM in the truncate path + - ext4: check for inconsistent extents between index and leaf block + - ext4: prevent partial update of the extent blocks + + * Azure: CIFS backport request (LP: #1960549) + - cifs: use the expiry output of dns_query to schedule next resolution + - cifs: set a minimum of 120s for next dns resolution + - cifs: To match file servers, make sure the server hostname matches + + * linux-azure: net: mana: Add handling of CQE_RX_TRUNCATED (LP: #1960322) + - net: mana: Add handling of CQE_RX_TRUNCATED + - net: mana: Remove unnecessary check of cqe_type in mana_process_rx_cqe() + + * linux-azure: Add Azure Blob driver to Ubuntu 18.04 image (LP: #1960539) + - [Config] azure: CONFIG_HYPERV_AZURE_BLOB=m + - SAUCE: azure: Drivers: hv: add Azure Blob driver + + [ Ubuntu: 5.4.0-105.119 ] + + * CVE-2022-0847 + - lib/iov_iter: initialize "flags" in new pipe_buffer + * Broken network on some AWS instances with focal/impish kernels + (LP: #1961968) + - SAUCE: Revert "PCI/MSI: Mask MSI-X vectors only on success" + * [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 + * Hipersocket page allocation failure on Ubuntu 20.04 based SSC environments + (LP: #1959529) + - s390/qeth: use memory reserves to back RX buffers + * CVE-2022-0516 + - KVM: s390: Return error on SIDA memop on normal guest + * CVE-2022-0435 + - tipc: improve size validations for received domain records + * CVE-2022-0492 + - cgroup-v1: Require capabilities to set release_agent + * Recalled NFSv4 files delegations overwhelm server (LP: #1957986) + - NFSv4: Fix delegation handling in update_open_stateid() + - NFSv4: nfs4_callback_getattr() should ignore revoked delegations + - NFSv4: Delegation recalls should not find revoked delegations + - NFSv4: fail nfs4_refresh_delegation_stateid() when the delegation was + revoked + - NFS: Rename nfs_inode_return_delegation_noreclaim() + - NFSv4: Don't remove the delegation from the super_list more than once + - NFSv4: Hold the delegation spinlock when updating the seqid + - NFSv4: Clear the NFS_DELEGATION_REVOKED flag in + nfs_update_inplace_delegation() + - NFSv4: Update the stateid seqid in nfs_revoke_delegation() + - NFSv4: Revoke the delegation on success in nfs4_delegreturn_done() + - NFSv4: Ignore requests to return the delegation if it was revoked + - NFSv4: Don't reclaim delegations that have been returned or revoked + - NFSv4: nfs4_return_incompatible_delegation() should check delegation + validity + - NFSv4: Fix nfs4_inode_make_writeable() + - NFS: nfs_inode_find_state_and_recover() fix stateid matching + - NFSv4: Fix races between open and delegreturn + - NFSv4: Handle NFS4ERR_OLD_STATEID in delegreturn + - NFSv4: Don't retry the GETATTR on old stateid in nfs4_delegreturn_done() + - NFSv4: nfs_inode_evict_delegation() should set NFS_DELEGATION_RETURNING + - NFS: Clear NFS_DELEGATION_RETURN_IF_CLOSED when the delegation is returned + - NFSv4: Try to return the delegation immediately when marked for return on + close + - NFSv4: Add accounting for the number of active delegations held + - NFSv4: Limit the total number of cached delegations + - NFSv4: Ensure the delegation is pinned in nfs_do_return_delegation() + - NFSv4: Ensure the delegation cred is pinned when we call delegreturn + * Focal update: v5.4.174 upstream stable release (LP: #1960566) + - 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 + - f2fs: fix to do sanity check in is_alive() + - 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 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - 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 + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - 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 + - 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/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Reconfigure hardware on resume() + - 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 + - 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 + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - wcn36xx: Release DMA channel descriptor allocations + - media: videobuf2: Fix the size printk format + - 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: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - Bluetooth: stop proccessing malicious adv data + - tee: fix put order in teedev_close_context() + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: qce - fix uaf on qce_ahash_register_one + - 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() + - 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: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - netfilter: bridge: add support for pppoe filtering + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - ACPI: EC: Rework flushing of EC work while suspended to idle + - 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() + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - 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 + - 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 + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - 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 + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - 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 + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mmc: meson-mx-sdio: add IRQ check + - selinux: fix potential memleak in selinux_add_opt() + - bpftool: Enable line buffering for stdout + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - 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() + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - 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 + - 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 + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - net/mlx5: Set command entry semaphore up once got index free + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - tpm: add request_locality before write TPM_INT_ENABLE + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - pcmcia: fix setting of kthread task states + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - 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 + - RDMA/hns: Validate the pkey index + - 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 + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: ufs: Fix race conditions related to driver data + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - 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 + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/iova: Fix race between FQ timeout and teardown + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - RDMA/cxgb4: Set queue pair state when being queried + - of: base: Fix phandle argument length mismatch error message + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - usb: gadget: f_fs: Use stream_open() for endpoint files + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - EDAC/synopsys: Use the quirk for version instead of ddr version + - mlxsw: pci: Add shutdown method in PCI driver + - drm/bridge: megachips: Ensure both bridges are probed before registration + - 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 + - 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() + - 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 + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: m920x: don't use stack on USB reads + - iwlwifi: mvm: synchronize with FW after multicast commands + - 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 + - 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 + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - HID: quirks: Allow inverting the absolute X/Y values + - media: igorplugusb: receiver overflow should be reported + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - 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 + - cpufreq: Fix initialization of min and max frequency QoS requests + - usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - um: registers: Rename function names to avoid conflicts and build problems + - 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 + - drm/amdgpu: fixup bad vram size on gmc v8 + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - 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() + - 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: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - parisc: Avoid calling faulthandler_disabled() twice + - 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 + - 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 failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - ASoC: mediatek: mt8173: fix device_node leak + - power: bq25890: Enable continuous conversion for ADC at charging + - rpmsg: core: Clean up resources on announce_create failure. + - 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 + - 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 + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - drm/etnaviv: limit submit sizes + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - 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 + - 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: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: don't use the orphan list when migrating an inode + - 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 + - media: rcar-csi2: Optimize the selection PHTW register + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - scsi: core: Show SCMD_LAST in text form + - 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 + - bpftool: Remove inclusion of utilities.mak from Makefiles + - ipv4: avoid quadratic behavior in netns dismantle + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - f2fs: fix to reserve space for IO align feature + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: si5341: Fix clock HW provider cleanup + - net: axienet: limit minimum TX ring size + - net: axienet: fix number of TX ring slots for available check + - net: axienet: increase default TX ring size to 128 + - rtc: pxa: fix null pointer dereference + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - 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: 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 + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net_sched: restore "mpu xxx" handling + - bcmgenet: add WOL IRQ check + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - mtd: nand: bbt: Fix corner case in bad block table handling + - Revert "ia64: kprobes: Use generic kretprobe trampoline handler" + - Linux 5.4.174 + * Focal update: v5.4.173 upstream stable release (LP: #1959701) + - kbuild: Add $(KBUILD_HOSTLDFLAGS) to 'has_libelf' test + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - perf: Protect perf_guest_cbs with RCU + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - 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 + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - mtd: fixup CFI on ixp4xx + - ARM: 9025/1: Kconfig: CPU_BIG_ENDIAN depends on !LD_IS_LLD + - Linux 5.4.173 + * Focal update: v5.4.172 upstream stable release (LP: #1959698) + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: bfusb: fix division by zero in send path + - 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 + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) + functions + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - 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() + - 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.4.172 + * Focal update: v5.4.171 upstream stable release (LP: #1959437) + - f2fs: quota: fix potential deadlock + - Input: touchscreen - Fix backport of + a02dcde595f7cbd240ccd64de96034ad91cffc40 + - 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 + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - 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 + - 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 + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - rndis_host: support Hytera digital radios + - phonet: refcount leak in pep_sock_accep + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - 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 + - mISDN: change function names to avoid conflicts + - Linux 5.4.171 + * Focal update: v5.4.170 upstream stable release (LP: #1958898) + - tee: handle lookup of shm with reference count 0 + - 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(). + - 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 + - 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 + - sctp: use call_rcu to free endpoint + - net: usb: pegasus: Do not drop long Ethernet frames + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - selftests/net: udpgso_bench_tx: fix dst ip argument + - net/ncsi: check for error return from call to nla_put_u32 + - 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 + - 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 + - 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 + - net: fix use-after-free in tw_timer_handler + - perf script: Fix CPU filtering of a script's switch events + - Linux 5.4.170 + * Focal update: v5.4.170 upstream stable release (LP: #1958898) // HID_ASUS + should depend on USB_HID in stable v4.15 backports (LP: #1959762) + - HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option + * Focal update: v5.4.169 upstream stable release (LP: #1958557) + - net: usb: lan78xx: add Allied Telesis AT29M2-AF + - serial: 8250_fintek: Fix garbled text for console + - arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode + - spi: change clk_disable_unprepare to clk_unprepare + - IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() + - netfilter: fix regression in looped (broad|multi)cast's MAC handling + - qlcnic: potential dereference null pointer of rx_queue->page_ring + - net: accept UFOv6 packages in virtio_net_hdr_to_skb + - net: skip virtio_net_hdr_set_proto if protocol already set + - ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module + - bonding: fix ad_actor_system option setting to default + - fjes: Check for error irq + - drivers: net: smc911x: Check for error irq + - sfc: falcon: Check null pointer of rx_queue->page_ring + - Input: elantech - fix stack out of bound access in + elantech_change_report_id() + - hwmon: (lm90) Fix usage of CONFIG2 register in detect function + - hwmon: (lm90) Add max6654 support to lm90 driver + - hwmon: (lm90) Add basic support for TI TMP461 + - hwmon: (lm90) Introduce flag indicating extended temperature support + - hwmon: (lm90) Drop critical attribute support for MAX6654 + - ALSA: jack: Check the return value of kstrdup() + - ALSA: drivers: opl3: Fix incorrect use of vp->state + - ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 + - 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 + - x86/pkey: Fix undefined behaviour with PKRU_WD_BIT + - pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines + - mmc: sdhci-tegra: Fix switch to HS400ES mode + - mmc: core: Disable card detect during shutdown + - ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling + - tee: optee: Fix incorrect page free bug + - f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() + - usb: gadget: u_ether: fix race in setting MAC address in setup phase + - KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state + - mm: mempolicy: fix THP allocations escaping mempolicy restrictions + - 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 + - ax25: NPD bug when detaching AX25 device + - hamradio: defer ax25 kfree after unregister_netdev + - hamradio: improve the incomplete fix to avoid NPD + - phonet/pep: refuse to enable an unbound pipe + - Linux 5.4.169 + * Focal update: v5.4.168 upstream stable release (LP: #1957991) + - KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE + - mac80211: mark TX-during-stop for TX in in_reconfig + - mac80211: send ADDBA requests using the tid/queue of the aggregation session + - firmware: arm_scpi: Fix string overflow in SCPI genpd driver + - virtio_ring: Fix querying of maximum DMA mapping size for virtio device + - recordmcount.pl: look for jgnop instruction as well as bcrl on s390 + - dm btree remove: fix use after free in rebalance_children() + - audit: improve robustness of the audit queue handling + - iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda + - nfsd: fix use-after-free due to delegation race + - arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas- + edge + - arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply + - arm64: dts: rockchip: fix audio-supply for Rock Pi 4 + - mac80211: track only QoS data frames for admission control + - ARM: socfpga: dts: fix qspi node compatible + - clk: Don't parent clks until the parent is fully registered + - 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: use jiffies_delta_to_msecs() + - inet_diag: fix kernel-infoleak for UDP sockets + - selftests: Fix raw socket bind tests with VRF + - selftests: Fix IPv6 address bind tests + - dmaengine: st_fdma: fix MODULE_ALIAS + - selftest/net/forwarding: declare NETIFS p9 p10 + - mac80211: agg-tx: refactor sending addba + - mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock + - mac80211: accept aggregation sessions on 6 GHz + - mac80211: fix lookup when adding AddBA extension element + - net: sched: lock action when translating it to flow_action infra + - flow_offload: return EOPNOTSUPP for the unsupported mpls action type + - rds: memory leak in __rds_conn_create() + - 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` + - 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: 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() + - USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) + - PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error + - PCI/MSI: Mask MSI-X vectors only on success + - usb: xhci: Extend support for runtime power management for AMD's Yellow + carp. + - USB: serial: cp210x: fix CP2105 GPIO registration + - USB: serial: option: add Telit FN990 compositions + - timekeeping: Really make sure wall_to_monotonic isn't positive + - libata: if T_LENGTH is zero, dma direction should be DMA_NONE + - drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE + - mac80211: validate extended element ID is present + - mwifiex: Remove unnecessary braces from HostCmd_SET_SEQ_NO_BSS_INFO + - Input: touchscreen - avoid bitwise vs logical OR warning + - ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name + - xsk: Do not sleep in poll() when need_wakeup set + - media: mxl111sf: change mutex_init() location + - fuse: annotate lock in fuse_reverse_inval_entry() + - ovl: fix warning in ovl_create_real() + - scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() + - rcu: Mark accesses to rcu_state.n_force_qs + - mac80211: fix regression in SSN handling of addba tx + - net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info + - 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.4.168 + * Focal update: v5.4.167 upstream stable release (LP: #1957987) + - nfc: fix segfault in nfc_genl_dump_devices_done + - drm/msm/dsi: set default num_data_lanes + - net/mlx4_en: Update reported link modes for 1/10G + - 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/amd/display: Fix for the no Audio bug with Tiled Displays + - drm/amd/display: add connector type check for CRC source set + - tracing: Fix a kmemleak false positive in tracing_map + - KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req + - selinux: fix race condition when computing ocontext SIDs + - bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc + - hwmon: (dell-smm) Fix warning on /proc/i8k creation error + - memblock: free_unused_memmap: use pageblock units instead of MAX_ORDER + - memblock: align freed memory map on pageblock boundaries with SPARSEMEM + - memblock: ensure there is no overflow in memblock_overlaps_region() + - arm: extend pfn_valid to take into account freed memory map alignment + - arm: ioremap: don't abuse pfn_valid() to check if pfn is in RAM + - Linux 5.4.167 + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + [ Ubuntu: 5.4.0-104.118 ] + + * CVE-2022-23960 + - SAUCE: kvm: arm: fix build on 32-bit + + -- Krzysztof Kozlowski Thu, 10 Mar 2022 11:17:36 +0100 + +linux-azure (5.4.0-1072.75) focal; urgency=medium + + * Disable unprivileged BPF by default (LP: #1961338) + - [Config] azure: Enable CONFIG_BPF_UNPRIV_DEFAULT_OFF + + [ Ubuntu: 5.4.0-103.117 ] + + * CVE-2022-23960 + - arm64: Add part number for Arm Cortex-A77 + - arm64: Add Neoverse-N2, Cortex-A710 CPU part definition + - arm64: Add Cortex-X2 CPU part definition + - arm64: add ID_AA64ISAR2_EL1 sys register + - SAUCE: arm64: entry.S: Add ventry overflow sanity checks + - SAUCE: arm64: entry: Make the trampoline cleanup optional + - SAUCE: arm64: entry: Free up another register on kpti's tramp_exit path + - SAUCE: arm64: entry: Move the trampoline data page before the text page + - SAUCE: arm64: entry: Allow tramp_alias to access symbols after the 4K + boundary + - SAUCE: arm64: entry: Don't assume tramp_vectors is the start of the vectors + - SAUCE: arm64: entry: Move trampoline macros out of ifdef'd section + - SAUCE: arm64: entry: Make the kpti trampoline's kpti sequence optional + - SAUCE: arm64: entry: Allow the trampoline text to occupy multiple pages + - SAUCE: arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations + - SAUCE: arm64: entry: Add vectors that have the bhb mitigation sequences + - SAUCE: arm64: entry: Add macro for reading symbol addresses from the + trampoline + - SAUCE: arm64: Add percpu vectors for EL1 + - SAUCE: arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of + Spectre-v2 + - SAUCE: KVM: arm64: Add templates for BHB mitigation sequences + - SAUCE: arm64: Mitigate spectre style branch history side channels + - SAUCE: KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and + migrated + - SAUCE: arm64: Use the clearbhb instruction in mitigations + - [Config]: set CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + * CVE-2022-0001 + - x86/speculation: Merge one test in spectre_v2_user_select_mitigation() + - x86,bugs: Unconditionally allow spectre_v2=retpoline,amd + - SAUCE: x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE + - SAUCE: x86/speculation: Add eIBRS + Retpoline options + - SAUCE: Documentation/hw-vuln: Update spectre doc + * Disable unprivileged BPF by default (LP: #1961338) + - bpf: Add kconfig knob for disabling unpriv bpf by default + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Stefan Bader Wed, 02 Mar 2022 10:41:07 +0100 + +linux-azure (5.4.0-1070.73) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1070.73 -proposed tracker (LP: #1959251) + + * Packaging resync (LP: #1786013) + - [Packaging] azure: config resync + + * Focal update: v5.4.165 upstream stable release (LP: #1957007) + - HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option + + * linux-azure: CONFIG_FB_EFI=y (LP: #1959216) + - [Config] CONFIG_FB_EFI=y + + * Add sunrpc module parameters for NFSv3 nconnect (LP: #1958990) + - SAUCE: Add sunrpc module parameters for NFSv3 nconnect + + [ Ubuntu: 5.4.0-100.113 ] + + * focal/linux: 5.4.0-100.113 -proposed tracker (LP: #1959900) + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + * CVE-2022-0330 + - drm/i915: Flush TLBs before releasing backing store + * Focal update: v5.4.166 upstream stable release (LP: #1957008) + - netfilter: selftest: conntrack_vrf.sh: fix file permission + - Linux 5.4.166 + - net/packet: rx_owner_map depends on pg_vec + - USB: gadget: bRequestType is a bitfield, not a enum + - HID: holtek: fix mouse probing + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + * Focal update: v5.4.165 upstream stable release (LP: #1957007) + - serial: tegra: Change lower tolerance baud rate limit for tegra20 and + tegra30 + - ntfs: fix ntfs_test_inode and ntfs_init_locked_inode function type + - HID: quirks: Add quirk for the Microsoft Surface 3 type-cover + - HID: google: add eel USB id + - 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 + - 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() + - 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: Fix the off-by-two error in range markings + - ice: ignore dropped packets during init + - bonding: make tx_rebalance_counter an atomic + - nfp: Fix memory leak in nfp_cpp_area_cache_add() + - seg6: fix the iif in the IPv6 socket control block + - udp: using datalen to cap max gso segments + - iavf: restore MSI state on reset + - iavf: Fix reporting when setting descriptor count + - IB/hfi1: Correct guard on eager buffer deallocation + - 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: 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*() + - btrfs: clear extent buffer uptodate when we fail to write it + - btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling + - nfsd: Fix nsfd startup race (again) + - tracefs: Have new files inherit the ownership of their parent + - clk: qcom: regmap-mux: fix parent clock lookup + - drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. + - can: pch_can: pch_can_rx_normal: fix use after free + - can: m_can: Disable and ignore ELO interrupt + - x86/sme: Explicitly map new EFI memmap table as encrypted + - libata: add horkage for ASMedia 1092 + - wait: add wake_up_pollfree() + - SAUCE: binder: export __wake_up_pollfree for binder module + - 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 + - block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) + - qede: validate non LSO skb length + - ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer + - 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 + - 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() + - Revert "UBUNTU: SAUCE: selftests: fib_tests: assign address to dummy1 for + rp_filter tests" + - selftests/fib_tests: Rework fib_rp_filter_test() + - USB: gadget: detect too-big endpoint 0 requests + - USB: gadget: zero allocate endpoint 0 buffers + - usb: core: config: fix validation of wMaxPacketValue entries + - xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime + suspending + - usb: core: config: using bit mask instead of individual bits + - xhci: avoid race between disable slot command and host runtime suspend + - 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: 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 + - irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() + - irqchip/armada-370-xp: Fix support for Multi-MSI interrupts + - 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 + - bpf: Add selftests to cover packet access corner cases + - Linux 5.4.165 + * Focal update: v5.4.164 upstream stable release (LP: #1956381) + - NFSv42: Fix pagecache invalidation after COPY/CLONE + - of: clk: Make self-contained + - arm64: dts: mcbin: support 2W SFP modules + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - gfs2: Fix length of holes reported at end-of-file + - drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY + - mac80211: do not access the IV when it was stripped + - 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 + - platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep + - s390/setup: avoid using memblock_enforce_memory_limit + - 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 + - ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile + - ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in + hns_dsaf_ge_srst_by_port() + - 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 hist: Fix memory leak of a perf_hpp_fmt + - perf report: Fix memory leaks around perf_tip() + - net/smc: Avoid warning of possible recursive locking + - vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit + - kprobes: Limit max data_size of the kretprobe instances + - rt2x00: do not mark device gone on EPROTO errors during start + - cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() + - s390/pci: move pseudo-MMIO to prevent MIO overlap + - 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 + - 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 + - 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 + - net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() + - selftests: net: Correct case name + - rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() + - 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 + - net: annotate data-races on txq->xmit_lock_owner + - ipv4: convert fib_num_tclassid_users to atomic_t + - net/rds: correct socket tunable error in rds_tcp_tune() + - net/smc: Keep smc_close_final rc during active close + - drm/msm: Do hw_init() before capturing GPU state + - ipv6: fix memory leak in fib6_rule_suppress + - KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register + - sched/uclamp: Fix rq->uclamp_max not set on first enqueue + - parisc: Fix KBUILD_IMAGE for self-extracting kernel + - parisc: Fix "make install" on newer debian releases + - 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 + - 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: 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() + - iwlwifi: mvm: retry init flow if failed + - parisc: Mark cr16 CPU clocksource unstable on all SMP machines + - net/tls: Fix authentication failure in CCM mode + - Linux 5.4.164 + * Focal update: v5.4.163 upstream stable release (LP: #1956380) + - 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 + - net: nexthop: fix null pointer dereference when IPv6 is not enabled + - usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts + - 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 + - media: cec: copy sequence field for the reply + - HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts + - staging/fbtft: Fix backlight + - staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() + - xen: don't continue xenstore initialization in case of errors + - xen: detect uninitialized xenbus in xenbus_init + - 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: Fix ADMA for PAGE_SIZE >= 64KiB + - mdio: aspeed: Fix "Link is Down" issue + - PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() + - PCI: aardvark: Wait for endpoint to be ready before training link + - PCI: aardvark: Fix big endian support + - PCI: aardvark: Train link immediately after enabling training + - PCI: aardvark: Improve link training + - PCI: aardvark: Issue PERST via GPIO + - PCI: aardvark: Replace custom macros by standard linux/pci_regs.h macros + - PCI: aardvark: Don't touch PCIe registers if no card connected + - PCI: aardvark: Fix compilation on s390 + - PCI: aardvark: Move PCIe reset card code to advk_pcie_train_link() + - PCI: aardvark: Update comment about disabling link training + - PCI: pci-bridge-emul: Fix array overruns, improve safety + - PCI: aardvark: Configure PCIe resources from 'ranges' DT property + - PCI: aardvark: Fix PCIe Max Payload Size setting + - PCI: aardvark: Implement re-issuing config requests on CRS response + - PCI: aardvark: Simplify initialization of rootcap on virtual bridge + - PCI: aardvark: Fix link training + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - pinctrl: armada-37xx: Correct PWM pins definitions + - arm64: dts: marvell: armada-37xx: Set pcie_reset_pin to gpio function + - proc/vmcore: fix clearing user buffer by properly using clear_user() + - netfilter: ipvs: Fix reuse connection if RS weight is 0 + - ARM: dts: BCM5301X: Fix I2C controller interrupt + - ARM: dts: BCM5301X: Add interrupt properties to GPIO node + - ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer + - ASoC: topology: Add missing rwsem around snd_ctl_remove() calls + - net: ieee802154: handle iftypes as u32 + - firmware: arm_scmi: pm: Propagate return value to caller + - NFSv42: Don't fail clone() unless the OP_CLONE operation failed + - ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE + - scsi: mpt3sas: Fix kernel panic during drive powercycle test + - drm/vc4: fix error code in vc4_create_object() + - iavf: Prevent changing static ITR values if adaptive moderation is on + - ipv6: fix typos in __ip6_finish_output() + - nfp: checking parameter process for rx-usecs/tx-usecs is invalid + - net: ipv6: add fib6_nh_release_dsts stub + - net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group + - scsi: core: sysfs: Fix setting device state to SDEV_RUNNING + - net/smc: Ensure the active closing peer first closes clcsock + - nvmet-tcp: fix incomplete data digest send + - net/ncsi : Add payload to be 32-bit aligned to fix dropped packets + - PM: hibernate: use correct mode for swsusp_close() + - tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited + flows + - nvmet: use IOCB_NOWAIT only if the filesystem supports it + - igb: fix netpoll exit with traffic + - MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 + - 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: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP + - net: mscc: ocelot: correctly report the timestamping RX filters in ethtool + - f2fs: set SBI_NEED_FSCK flag when inconsistent node block found + - smb3: do not error on fsync when readonly + - vhost/vsock: fix incorrect used length reported to the guest + - tracing: Check pid filtering when creating events + - s390/mm: validate VMA in PGSTE manipulation functions + - shm: extend forced shm destroy to support objects from several IPC nses + - NFC: add NCI_UNREG flag to eliminate the race + - fuse: release pipe buf after last use + - xen: sync include/xen/interface/io/ring.h with Xen's newest version + - xen/blkfront: read response from backend only once + - xen/blkfront: don't take local copy of a request from the ring page + - xen/blkfront: don't trust the backend response data blindly + - xen/netfront: read response from backend only once + - xen/netfront: don't read data from request on the ring page + - xen/netfront: disentangle tx_skb_freelist + - xen/netfront: don't trust the backend response data blindly + - tty: hvc: replace BUG_ON() with negative return value + - Linux 5.4.163 + * net/mlx5e: EPERM on vlan 0 programming (LP: #1957753) + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + * CVE-2021-4083 + - fget: check that the fd still exists after getting a ref to it + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + + -- Krzysztof Kozlowski Wed, 09 Feb 2022 15:14:16 +0100 + +linux-azure (5.4.0-1069.72) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1069.72 -proposed tracker (LP: #1959790) + + [ Ubuntu: 5.4.0-99.112 ] + + * focal/linux: 5.4.0-99.112 -proposed tracker (LP: #1959817) + * linux-image-5.4.0-97.110 freezes by accessing cifs shares (LP: #1959665) + - Revert "cifs: To match file servers, make sure the server hostname matches" + - Revert "cifs: set a minimum of 120s for next dns resolution" + - Revert "cifs: use the expiry output of dns_query to schedule next + resolution" + + -- Krzysztof Kozlowski Mon, 07 Feb 2022 10:27:12 +0100 + +linux-azure (5.4.0-1068.71) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1068.71 -proposed tracker (LP: #1955219) + + [ Ubuntu: 5.4.0-97.110 ] + + * icmp_redirect from selftests fails on F/kvm (unary operator expected) + (LP: #1938964) + - selftests: icmp_redirect: pass xfail=0 to log_test() + * Focal: CIFS stable updates (LP: #1954926) + - cifs: use the expiry output of dns_query to schedule next resolution + - cifs: set a minimum of 120s for next dns resolution + - cifs: To match file servers, make sure the server hostname matches + * seccomp_bpf in seccomp from ubuntu_kernel_selftests failed to build on B-5.4 + (LP: #1896420) + - SAUCE: selftests/seccomp: fix "storage size of 'md' isn't known" build issue + - SAUCE: selftests/seccomp: Fix s390x regs not defined issue + * system crash when removing ipmi_msghandler module (LP: #1950666) + - ipmi: Move remove_work to dedicated workqueue + - ipmi: msghandler: Make symbol 'remove_work_wq' static + * zcrypt DD: Toleration for new IBM Z Crypto Hardware - (Backport to Ubuntu + 20.04) (LP: #1954680) + - s390/AP: support new dynamic AP bus size limit + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - s390/setup: diag 318: refactor struct + - s390/kvm: diagnose 0x318 sync and reset + - KVM: s390: remove diag318 reset code + - KVM: s390: add debug statement for diag 318 CPNC data + * Updates to ib_peer_memory requested by Nvidia (LP: #1947206) + - SAUCE: RDMA/core: Updated ib_peer_memory + * Include Infiniband Peer Memory interface (LP: #1923104) + - IB: Allow calls to ib_umem_get from kernel ULPs + - SAUCE: RDMA/core: Introduce peer memory interface + * Focal update: v5.4.162 upstream stable release (LP: #1954834) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - ARM: dts: NSP: Fix mpcore, mmc node names + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: freescale: fix arm,sp805 compatible string + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - firmware_loader: fix pre-allocated buf built-in firmware use + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - 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 + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - 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() + - powerpc/5200: dts: fix memory node unit name + - ALSA: gus: fix null pointer dereference on pointer block + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - 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 + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - tracing: Save normal string variables + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - RDMA/netlink: Add __maybe_unused to static inline in C file + - 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 + - net: bnx2x: fix variable dereferenced before check + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - 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 + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - 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 + - 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 + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - NFC: reorder the logic in nfc_{un,}register_device + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - 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 + - s390/kexec: fix return code handling + - arm64: vdso32: suppress error message for 'make mrproper' + - tun: fix bonding active backup with arp monitoring + - hexagon: export raw I/O routines for modules + - ipc: WARN if trying to remove ipc object which is absent + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - s390/kexec: fix memory leak of ipl report buffer + - udf: Fix crash after seekdir + - btrfs: fix memory ordering between normal and ordered work functions + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - drm/udl: fix control-message timeout + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - Revert "net: mvpp2: disable force link UP during port init procedure" + - perf/core: Avoid put_page() when GUP fails + - batman-adv: Consider fragmentation for needed_headroom + - batman-adv: Reserve needed_*room for fragments + - batman-adv: Don't always reallocate the fragmentation skb head + - ASoC: DAPM: Cover regression by kctl change notification fix + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Delete always true check of PF pointer + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.4.162 + * Focal update: v5.4.161 upstream stable release (LP: #1954828) + - scsi: ufs: Fix interrupt error message for shared interrupts + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - scsi: ufs: Fix tm request when non-fatal error happens + - fortify: Explicitly disable Clang support + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Destroy sysfs before freeing entries + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() + - erofs: fix unsafe pagevec reuse of hooked pclusters + - Linux 5.4.161 + * Focal update: v5.4.160 upstream stable release (LP: #1953387) + - 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 + - binder: use euid from cred instead of using task + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - 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: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - 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: ite-cir: IR receiver stop working after receive overflow + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - 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: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - 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 + - cavium: Return negative value when pci_alloc_irq_vectors() fails + - scsi: qla2xxx: Return -ENOMEM if kzalloc() fails + - scsi: qla2xxx: Fix unmap of already freed sgl + - cavium: Fix return values of the probe function + - sfc: Don't use netif_info before net_device setup + - hyperv/vmbus: include linux/bitops.h + - ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode + - reset: socfpga: add empty driver allowing consumers to probe + - mmc: winbond: don't build on M68K + - drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 + - bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT + - bpf: Prevent increasing bpf_jit_limit above max + - xen/netfront: stop tx queues during live migration + - nvmet-tcp: fix a memory leak when releasing a queue + - spi: spl022: fix Microwire full duplex mode + - net: multicast: calculate csum of looped-back and forwarded packets + - watchdog: Fix OMAP watchdog early handling + - drm: panel-orientation-quirks: Add quirk for GPD Win3 + - nvmet-tcp: fix header digest verification + - r8169: Add device 10ec:8162 to driver r8169 + - vmxnet3: do not stop tx queues after netif_device_detach() + - nfp: bpf: relax prog rejection for mtu check through max_pkt_offset + - net/smc: Correct spelling mistake to TCPF_SYN_RECV + - 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 + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - 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 + - wcn36xx: Fix HT40 capability for 2Ghz band + - mwifiex: Read a PCI register after writing the TX ring write pointer + - libata: fix checking of DMA state + - 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 + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - signal: Remove the bogus sigkill_pending in ptrace_stop + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - serial: core: Fix initializing and restoring termios speed + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - xen/balloon: add late_initcall_sync() for initial ballooning done + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - 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 return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - iio: dac: ad5446: Fix ad5622_write() return value + - USB: serial: keyspan: fix memleak on probe errors + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - 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() + - drm/panel-orientation-quirks: add Valve Steam Deck + - platform/x86: wmi: do not fail if disabling fails + - 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 + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - 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 + - ath10k: high latency fixes for beacon buffer + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - 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: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: imx: set a media_device bus_info string + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - 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 + - ACPICA: Avoid evaluating methods too early during system resume + - 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 + - tracefs: Have tracefs directories not set OTH permission bits by default + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - leaking_addresses: Always print a trailing newline + - memstick: r592: Fix a UAF bug when removing the driver + - 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 + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - block: remove inaccurate requeue check + - nvmet: 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 + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - 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 + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - 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() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - 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 + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - drm/v3d: fix wait for TMU write combiner flush + - virtio-gpu: fix possible memory allocation failure + - net: net_namespace: Fix undefined member in key_remove_domain() + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - crypto: caam - disable pkc for non-E SoCs + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - net: dsa: rtl8366rb: Fix off-by-one bug + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - drm/amdgpu: fix warning for overflow check + - media: em28xx: add missing em28xx_close_extension + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: dvb-usb: fix ununit-value in az6027_rc_query + - 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: 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 + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath9k: Fix potential interrupt storm on queue reset + - EDAC/amd64: Handle three rank interleaving mode + - netfilter: nft_dynset: relax superfluous check on set updates + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - 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 + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - mmc: mxs-mmc: disable regulator on error and in the remove function + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - phy: micrel: ksz8041nl: do not use power down mode + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - drm/msm: Fix potential NULL dereference in DPU SSPP + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - libbpf: Fix BTF data layout checks and allow empty BTF + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - irq: mips: avoid nested irq_enter() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - 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 + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - net: amd-xgbe: Toggle PLL settings during rate change + - net: phylink: avoid mvneta warning when setting pause parameters + - 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 + - RDMA/rxe: Fix wrong port_cap_flags + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - 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: meson-g12a: Fix the pwm regulator supply properties + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - arm: dts: omap3-gta04a4: accelerometer irq fix + - 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 + - video: fbdev: chipsfb: use memset_io() instead of memset() + - 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 + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - ARM: dts: stm32: fix SAI sub nodes register range + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - phy: qcom-qusb2: Fix a memory leak on probe + - serial: xilinx_uartps: Fix race condition causing stuck TX + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/44x/fsp2: add missing of_node_put + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - 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() + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - mtd: core: don't remove debugfs directory if device is in use + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - 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` + - 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: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - xen-pciback: Fix return in pm_ctrl_init() + - net: davinci_emac: Fix interrupt pacing disable + - net: vlan: fix a UAF in vlan_dev_real_dev() + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - 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 + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: allow configure ETS bandwidth of all TCs + - 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 + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix set_fixmap() on PA1.x CPUs + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - ovl: fix deadlock in splice write + - powerpc/lib: Add helper to check if offset is within conditional branch + range + - powerpc/bpf: Validate branch ranges + - powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 + - powerpc/security: Add a helper to query stf_barrier type + - powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC + - 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 + - video: backlight: Drop maximum brightness override for brightness zero + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/cio: make ccw_device_dma_* more robust + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - SUNRPC: Partial revert of commit 6f9f17287e78 + - ath10k: fix invalid dma_addr_t token assignment + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - Linux 5.4.160 + - soc/tegra: pmc: Fix imbalanced clock disabling in error code path + * Focal update: v5.4.159 upstream stable release (LP: #1953071) + - 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 + - binder: don't detect sender/target during buffer cleanup + - printk/console: Allow to disable console output by using console="" or + console=null + - 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 + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.4.159 + * Focal update: v5.4.158 upstream stable release (LP: #1953066) + - scsi: core: Put LLD module refcnt after SCSI device is released + - vrf: Revert "Reset skb conntrack connection..." + - net: ethernet: microchip: lan743x: Fix skb allocation failure + - 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" + - sfc: Fix reading non-legacy supported link modes + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Linux 5.4.158 + * [Ubuntu 20.04] Problem leading IUCV service down (on s390x) (LP: #1913442) + - usercopy: mark dma-kmalloc caches as usercopy caches + + -- Krzysztof Kozlowski Wed, 19 Jan 2022 17:24:09 +0100 + +linux-azure (5.4.0-1067.70) focal; urgency=medium + + [ Ubuntu: 5.4.0-96.109 ] + + * Support builtin revoked certificates (LP: #1932029) + - [Config]: add i386 to CONFIG_SYSTEM_REVOCATION_KEYS annotation + * CVE-2022-0185 + - SAUCE: vfs: Out-of-bounds write of heap buffer in fs_context.c + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + + [ Ubuntu: 5.4.0-94.106 ] + + * focal/linux: 5.4.0-94.106 -proposed tracker (LP: #1956628) + * [Regression] Focal kernel 5.4.0-92.103 fails to boot when Secure Encrypted + Virtualization(SEV) is enabled (LP: #1956575) + - x86/ioremap: Map EFI-reserved memory as encrypted for SEV + + -- Stefan Bader Thu, 13 Jan 2022 10:15:01 +0100 + +linux-azure (5.4.0-1065.68) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1065.68 -proposed tracker (LP: #1952290) + + * Re-enable DEBUG_INFO_BTF where it was disabled (LP: #1945632) + - [Config] azure: enable CONFIG_DEBUG_INFO_BTF + + * Support builtin revoked certificates (LP: #1932029) + - [Config] azure: set CONFIG_SYSTEM_REVOCATION_KEYS + + * Bionic/linux-azure: Call trace on Ubuntu 18.04 VM with Standard NV24 + (LP: #1952621) + - PCI/sysfs: Convert "config" to static attribute + + * linux-azure: add Icelake servers support in no-HWP mode to + cpufreq/intel_pstate driver (LP: #1952234) + - cpufreq: intel_pstate: Add Icelake servers support in no-HWP mode + + [ Ubuntu: 5.4.0-92.103 ] + + * focal/linux: 5.4.0-92.103 -proposed tracker (LP: #1952316) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/2021.11.29) + * CVE-2021-4002 + - tlb: mmu_gather: add tlb_flush_*_range APIs + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + * Re-enable DEBUG_INFO_BTF where it was disabled (LP: #1945632) + - [Config] Enable CONFIG_DEBUG_INFO_BTF on all arches + * Focal linux-azure: Vm crash on Dv5/Ev5 (LP: #1950462) + - KVM: VMX: eVMCS: make evmcs_sanitize_exec_ctrls() work again + - jump_label: Fix usage in module __init + * Support builtin revoked certificates (LP: #1932029) + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() not complain about + cert lists that aren't present." + - integrity: Move import of MokListRT certs to a separate routine + - integrity: Load certs from the EFI MOK config table + - certs: Add ability to preload revocation certs + - integrity: Load mokx variables into the blacklist keyring + - certs: add 'x509_revocation_list' to gitignore + - SAUCE: Dump stack when X.509 certificates cannot be loaded + - [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 + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - efi: Support for MOK variable config table + - efi: mokvar-table: fix some issues in new code + - efi: mokvar: add missing include of asm/early_ioremap.h + - efi/mokvar: Reserve the table only if it is in boot services data + - 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 + * Focal update: v5.4.157 upstream stable release (LP: #1951883) + - ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned + - ARM: 9134/1: remove duplicate memcpy() definition + - ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype + - ARM: 9141/1: only warn about XIP address when not compile testing + - ipv6: use siphash in rt6_exception_hash() + - ipv4: use siphash instead of Jenkins in fnhe_hashfun() + - usbnet: sanity check for maxpacket + - usbnet: fix error return code in usbnet_probe() + - Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" + - ata: sata_mv: Fix the error handling of mv_chip_id() + - nfc: port100: fix using -ERRNO as command type mask + - net/tls: Fix flipped sign in tls_err_abort() calls + - mmc: vub300: fix control-message timeouts + - mmc: cqhci: clear HALT state after CQE enable + - mmc: dw_mmc: exynos: fix the finding clock sample value + - mmc: sdhci: Map more voltage level to SDHCI_POWER_330 + - mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning + circuit + - cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() + - net: lan78xx: fix division by zero in send path + - tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function + - IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields + - IB/hfi1: Fix abba locking issue with sc_disable() + - nvmet-tcp: fix data digest pointer calculation + - nvme-tcp: fix data digest pointer calculation + - RDMA/mlx5: Set user priority for DCT + - arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node + - regmap: Fix possible double-free in regcache_rbtree_exit() + - net: batman-adv: fix error handling + - net: Prevent infinite while loop in skb_tx_hash() + - RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string + - nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST + - net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume + fails + - net: ethernet: microchip: lan743x: Fix dma allocation failure by using + dma_set_mask_and_coherent + - net: nxp: lpc_eth.c: avoid hang when bringing interface down + - net/tls: Fix flipped sign in async_wait.err assignment + - phy: phy_ethtool_ksettings_get: Lock the phy for consistency + - phy: phy_start_aneg: Add an unlocked version + - sctp: use init_tag from inithdr for ABORT chunk + - sctp: fix the processing for INIT_ACK chunk + - sctp: fix the processing for COOKIE_ECHO chunk + - sctp: add vtag check in sctp_sf_violation + - sctp: add vtag check in sctp_sf_do_8_5_1_E_sa + - sctp: add vtag check in sctp_sf_ootb + - net: use netif_is_bridge_port() to check for IFF_BRIDGE_PORT + - cfg80211: correct bridge/4addr mode check + - KVM: s390: clear kicked_mask before sleeping again + - KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu + - perf script: Check session->header.env.arch before using it + - Linux 5.4.157 + * keyboard not working on Medion notebook s17 series (LP: #1950536) + - ACPI: resources: Add one more Medion model in IRQ override quirk + * creat09 from ubuntu_ltp_syscalls and cve-2018-13405 from ubuntu_ltp/cve + failed with XFS (LP: #1950239) + - xfs: ensure that the inode uid/gid match values match the icdinode ones + - xfs: merge the projid fields in struct xfs_icdinode + - xfs: remove the icdinode di_uid/di_gid members + - xfs: fix up non-directory creation in SGID directories + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + * Focal update: v5.4.156 upstream stable release (LP: #1951295) + - parisc: math-emu: Fix fall-through warnings + - net: switchdev: do not propagate bridge updates across bridges + - tee: optee: Fix missing devices unregister during optee_remove + - ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default + - xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: xtfpga: Try software restart before simulating CPU reset + - NFSD: Keep existing listeners on portlist error + - dma-debug: fix sg checks in debug_dma_map_sg() + - ASoC: wm8960: Fix clock configuration on slave mode + - netfilter: ipvs: make global sysctl readonly in non-init netns + - lan78xx: select CRC32 + - net: dsa: lantiq_gswip: fix register definition + - NIOS2: irqflags: rename a redefined register name + - net: hns3: reset DWRR of unused tc to zero + - net: hns3: add limit ets dwrr bandwidth cannot be 0 + - net: hns3: disable sriov before unload hclge layer + - net: stmmac: Fix E2E delay mechanism + - net: enetc: fix ethtool counter name for PM0_TERR + - can: rcar_can: fix suspend/resume + - can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state + notification + - can: peak_pci: peak_pci_remove(): fix UAF + - can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer + - can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv + - can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with + error length + - can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes + - ceph: fix handling of "meta" errors + - ocfs2: fix data corruption after conversion from inline format + - ocfs2: mount fails with buffer overflow in strlen + - elfcore: correct reference to CONFIG_UML + - ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset + - ALSA: hda/realtek: Add quirk for Clevo PC50HS + - ASoC: DAPM: Fix missing kctl change notifications + - audit: fix possible null-pointer dereference in audit_filter_rules + - powerpc64/idle: Fix SP offsets when saving GPRs + - KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() + - KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to + guest + - powerpc/idle: Don't corrupt back chain when going idle + - mm, slub: fix mismatch between reconstructed freelist depth and cnt + - mm, slub: fix potential memoryleak in kmem_cache_open() + - nfc: nci: fix the UAF of rf_conn_info object + - isdn: cpai: check ctr->cnr to avoid array index out of bound + - netfilter: Kconfig: use 'default y' instead of 'm' for bool config option + - selftests: netfilter: remove stray bash debug line + - gcc-plugins/structleak: add makefile var for disabling structleak + - btrfs: deal with errors when checking if a dir entry exists during log + replay + - net: stmmac: add support for dwmac 3.40a + - ARM: dts: spear3xx: Fix gmac node + - isdn: mISDN: Fix sleeping function called from invalid context + - platform/x86: intel_scu_ipc: Update timeout value in comment + - ALSA: hda: avoid write to STATESTS if controller is in reset + - Input: snvs_pwrkey - add clk handling + - scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() + - tracing: Have all levels of checks prevent recursion + - ARM: 9122/1: select HAVE_FUTEX_CMPXCHG + - pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() + - Linux 5.4.156 + * ubuntu_ltp / finit_module02 fails on v4.15 and other kernels + (LP: #1950644) // Focal update: v5.4.156 upstream stable release + (LP: #1951295) + - vfs: check fd has read access in kernel_read_file_from_fd() + * Focal update: v5.4.155 upstream stable release (LP: #1951291) + - ovl: simplify file splice + - ALSA: usb-audio: Add quirk for VF0770 + - ALSA: seq: Fix a potential UAF by wrong private_free call order + - ALSA: hda/realtek: Complete partial device name to avoid ambiguity + - ALSA: hda/realtek: Add quirk for Clevo X170KM-G + - ALSA: hda/realtek - ALC236 headset MIC recording issue + - ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW + - nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' + - s390: fix strrchr() implementation + - csky: don't let sigreturn play with priveleged bits of status register + - csky: Fixup regs.sr broken in ptrace + - btrfs: unlock newly allocated extent buffer after error + - btrfs: deal with errors when replaying dir entry during log replay + - btrfs: deal with errors when adding inode reference during log replay + - btrfs: check for error when looking up inode during dir entry replay + - watchdog: orion: use 0 for unset heartbeat + - x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails + - mei: me: add Ice Lake-N device id. + - xhci: guard accesses to ep_state in xhci_endpoint_reset() + - xhci: Fix command ring pointer corruption while aborting a command + - xhci: Enable trust tx length quirk for Fresco FL11 USB controller + - cb710: avoid NULL pointer subtraction + - efi/cper: use stack buffer for error record decoding + - efi: Change down_interruptible() in virt_efi_reset_system() to + down_trylock() + - usb: musb: dsps: Fix the probe error path + - Input: xpad - add support for another USB ID of Nacon GC-100 + - USB: serial: qcserial: add EM9191 QDL support + - USB: serial: option: add Quectel EC200S-CN module support + - USB: serial: option: add Telit LE910Cx composition 0x1204 + - USB: serial: option: add prod. id for Quectel EG91 + - EDAC/armada-xp: Fix output of uncorrectable error counter + - nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells + - x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically + - powerpc/xive: Discard disabled interrupts in get_irqchip_state() + - iio: adc: aspeed: set driver data when adc probe. + - iio: adc128s052: Fix the error handling path of 'adc128_probe()' + - iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED + - iio: light: opt3001: Fixed timeout error when 0 lux + - iio: ssp_sensors: add more range checking in ssp_parse_dataframe() + - iio: ssp_sensors: fix error code in ssp_print_mcu_debug() + - iio: dac: ti-dac5571: fix an error code in probe() + - sctp: account stream padding length for reconf chunk + - gpio: pca953x: Improve bias setting + - net: arc: select CRC32 + - net: korina: select CRC32 + - net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp + - net: stmmac: fix get_hw_feature() on old hardware + - net: encx24j600: check error in devm_regmap_init_encx24j600 + - ethernet: s2io: fix setting mac address during resume + - nfc: fix error handling of nfc_proto_register() + - NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() + - NFC: digital: fix possible memory leak in digital_in_send_sdd_req() + - pata_legacy: fix a couple uninitialized variable bugs + - ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() + - mlxsw: thermal: Fix out-of-bounds memory accesses + - platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call + - drm/panel: olimex-lcd-olinuxino: select CRC32 + - drm/msm: Fix null pointer dereference on pointer edp + - drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() + - drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling + - acpi/arm64: fix next_platform_timer() section mismatch error + - mqprio: Correct stats in mqprio_dump_class_stats(). + - qed: Fix missing error code in qed_slowpath_start() + - r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 + - ionic: don't remove netdev->dev_addr when syncing uc list + - Linux 5.4.155 + * [UBUNTU 20.04] kernel: unable to read partitions on virtio-block dasd (kvm) + (LP: #1950144) // Focal update: v5.4.155 upstream stable release + (LP: #1951291) + - virtio: write back F_VERSION_1 before validate + * Focal update: v5.4.154 upstream stable release (LP: #1951288) + - net: phy: bcm7xxx: Fixed indirect MMD operations + - ext4: correct the error path of ext4_write_inline_data_end() + - HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS + - netfilter: ip6_tables: zero-initialize fragment offset + - HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs + - netfilter: nf_nat_masquerade: make async masq_inet6_event handling generic + - netfilter: nf_nat_masquerade: defer conntrack walk to work queue + - mac80211: Drop frames from invalid MAC address in ad-hoc mode + - m68k: Handle arrivals of multiple signals correctly + - net: prevent user from passing illegal stab size + - mac80211: check return value of rhashtable_init + - net: sun: SUNVNET_COMMON should depend on INET + - drm/amdgpu: fix gart.bo pin_count leak + - scsi: ses: Fix unsigned comparison with less than zero + - scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported" + - sched: Always inline is_percpu_thread() + - Linux 5.4.154 + * Focal update: v5.4.153 upstream stable release (LP: #1950014) + - Partially revert "usb: Kconfig: using select for USB_COMMON dependency" + - USB: cdc-acm: fix racy tty buffer accesses + - USB: cdc-acm: fix break reporting + - usb: typec: tcpm: handle SRC_STARTUP state if cc changes + - xen/privcmd: fix error handling in mmap-resource processing + - mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk + - ovl: fix missing negative dentry check in ovl_rename() + - nfsd: fix error handling of register_pernet_subsys() in init_nfsd() + - nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero + - xen/balloon: fix cancelled balloon action + - ARM: dts: omap3430-sdp: Fix NAND device node + - ARM: dts: qcom: apq8064: use compatible which contains chipid + - MIPS: BPF: Restore MIPS32 cBPF JIT + - bpf, mips: Validate conditional branch offsets + - soc: qcom: socinfo: Fixed argument passed to platform_set_data() + - ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference + - soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment + - ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo + - ARM: dts: imx: Fix USB host power regulator polarity on M53Menlo + - arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding + - xtensa: move XCHAL_KIO_* definitions to kmem_layout.h + - xtensa: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: call irqchip_init only when CONFIG_USE_OF is selected + - bpf, arm: Fix register clobbering in div/mod implementation + - bpf: Fix integer overflow in prealloc_elems_and_freelist() + - phy: mdio: fix memory leak + - net_sched: fix NULL deref in fifo_set_limit() + - powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 + - ptp_pch: Load module automatically if ID matches + - arm64: dts: freescale: Fix SP805 clock-names + - arm64: dts: ls1028a: add missing CAN nodes + - ARM: imx6: disable the GIC CPU interface before calling stby-poweroff + sequence + - net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() + - net/sched: sch_taprio: properly cancel timer from taprio_destroy() + - net: sfp: Fix typo in state machine debug string + - netlink: annotate data races around nlk->bound + - bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 + - video: fbdev: gbefb: Only instantiate device when built for IP32 + - drm/nouveau/debugfs: fix file release memory leak + - gve: Correct available tx qpl check + - rtnetlink: fix if_nlmsg_stats_size() under estimation + - gve: fix gve_get_stats() + - i40e: fix endless loop under rtnl + - i40e: Fix freeing of uninitialized misc IRQ vector + - net: prefer socket bound to interface when not in VRF + - i2c: acpi: fix resource leak in reconfiguration device addition + - bpf, s390: Fix potential memory leak about jit_data + - RISC-V: Include clone3() on rv32 + - x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI + - x86/hpet: Use another crystalball to evaluate HPET usability + - x86/Kconfig: Correct reference to MWINCHIP3D + - Linux 5.4.153 + * Focal update: v5.4.152 upstream stable release (LP: #1950009) + - net: mdio: introduce a shutdown method to mdio device drivers + - xen-netback: correct success/error reporting for the SKB-with-fraglist case + - sparc64: fix pci_iounmap() when CONFIG_PCI is not set + - ext2: fix sleeping in atomic bugs on error + - scsi: sd: Free scsi_disk device via put_device() + - usb: testusb: Fix for showing the connection speed + - usb: dwc2: check return value after calling platform_get_resource() + - selftests: be sure to make khdr before other targets + - selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn + - scsi: ses: Retry failed Send/Receive Diagnostic commands + - tools/vm/page-types: remove dependency on opt_file for idle page tracking + - KVM: do not shrink halt_poll_ns below grow_start + - kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] + - perf/x86: Reset destroy callback on event init failure + - silence nfscache allocation warnings with kvzalloc + - libata: Add ATA_HORKAGE_NO_NCQ_ON_ATI for Samsung 860 and 870 SSD. + - Linux 5.4.152 + * linux-aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + (LP: #1949882) + - SAUCE: aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + + -- Krzysztof Kozlowski Fri, 03 Dec 2021 09:42:50 +0100 + +linux-azure (5.4.0-1064.67) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1064.67 -proposed tracker (LP: #1949816) + + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + + * Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + (LP: #1937078) + - Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + + * linux-azure: make mana.ko built-in (LP: #1949357) + - [Config] CONFIG_MICROSOFT_MANA=y + + [ Ubuntu: 5.4.0-91.102 ] + + * focal/linux: 5.4.0-91.102 -proposed tracker (LP: #1949840) + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/2021.11.08) + * KVM emulation failure when booting into VM crash kernel with multiple CPUs + (LP: #1948862) + - KVM: x86: Properly reset MMU context at vCPU RESET/INIT + * aufs: kernel bug with apparmor and fuseblk (LP: #1948470) + - SAUCE: aufs: bugfix, stop omitting path->mnt + * ebpf: bpf_redirect fails with ip6 gre interfaces (LP: #1947164) + - net: handle ARPHRD_IP6GRE in dev_is_mac_header_xmit() + * require CAP_NET_ADMIN to attach N_HCI ldisc (LP: #1949516) + - Bluetooth: hci_ldisc: require CAP_NET_ADMIN to attach N_HCI ldisc + * ACL updates on OCFS2 are not revalidated (LP: #1947161) + - ocfs2: fix remounting needed after setfacl command + * ppc64 BPF JIT mod by 1 will not return 0 (LP: #1948351) + - powerpc/bpf: Fix BPF_MOD when imm == 1 + * 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" + * Reassign I/O Path of ConnectX-5 Port 1 before Port 2 causes NULL dereference + (LP: #1943464) + - s390/pci: fix leak of PCI device structure + - s390/pci: fix use after free of zpci_dev + - s390/pci: fix zpci_zdev_put() on reserve + * [SRU][F] USB: serial: pl2303: add support for PL2303HXN (LP: #1948377) + - USB: serial: pl2303: add support for PL2303HXN + - USB: serial: pl2303: fix line-speed handling on newer chips + * Focal update: v5.4.151 upstream stable release (LP: #1947888) + - tty: Fix out-of-bound vmalloc access in imageblit + - cpufreq: schedutil: Use kobject release() method to free sugov_tunables + - cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory + - usb: cdns3: fix race condition before setting doorbell + - fs-verity: fix signed integer overflow with i_size near S64_MAX + - hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary + structure field + - scsi: ufs: Fix illegal offset in UPIU event trace + - mac80211: fix use-after-free in CCMP/GCMP RX + - x86/kvmclock: Move this_cpu_pvti into kvmclock.h + - drm/amd/display: Pass PCI deviceid into DC + - ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 + - hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced + from sysfs + - mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug + - mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap + - mac80211: mesh: fix potentially unaligned access + - mac80211-hwsim: fix late beacon hrtimer handling + - sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb + - hwmon: (tmp421) report /PVLD condition as fault + - hwmon: (tmp421) fix rounding for negative values + - net: ipv4: Fix rtnexthop len when RTA_FLOW is present + - e100: fix length calculation in e100_get_regs_len + - e100: fix buffer overrun in e100_get_regs + - selftests, bpf: test_lwt_ip_encap: Really disable rp_filter + - scsi: csiostor: Add module softdep on cxgb4 + - net: hns3: do not allow call hns3_nic_net_open repeatedly + - net: sched: flower: protect fl_walk() with rcu + - af_unix: fix races in sk_peer_pid and sk_peer_cred accesses + - perf/x86/intel: Update event constraints for ICX + - elf: don't use MAP_FIXED_NOREPLACE for elf interpreter mappings + - debugfs: debugfs_create_file_size(): use IS_ERR to check for error + - ipack: ipoctal: fix stack information leak + - ipack: ipoctal: fix tty registration race + - ipack: ipoctal: fix tty-registration error handling + - ipack: ipoctal: fix missing allocation-failure check + - ipack: ipoctal: fix module reference leak + - ext4: fix loff_t overflow in ext4_max_bitmap_size() + - ext4: fix reserved space counter leakage + - ext4: fix potential infinite loop in ext4_dx_readdir() + - HID: u2fzero: ignore incomplete packets without data + - net: udp: annotate data race around udp_sk(sk)->corkflag + - net: stmmac: don't attach interface until resume finishes + - PCI: Fix pci_host_bridge struct device release/free handling + - libnvdimm/pmem: Fix crash triggered when I/O in-flight during unbind + - hso: fix bailout in error case of probe + - usb: hso: fix error handling code of hso_create_net_device + - usb: hso: remove the bailout parameter + - crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() + - HID: betop: fix slab-out-of-bounds Write in betop_probe + - netfilter: ipset: Fix oversized kvmalloc() calls + - HID: usbhid: free raw_report buffers in usbhid_stop + - Linux 5.4.151 + * Focal update: v5.4.150 upstream stable release (LP: #1947886) + - usb: gadget: r8a66597: fix a loop in set_feature() + - usb: dwc2: gadget: Fix ISOC flow for BDMA and Slave + - usb: dwc2: gadget: Fix ISOC transfer complete handling for DDMA + - usb: musb: tusb6010: uninitialized data in tusb_fifo_write_unaligned() + - cifs: fix incorrect check for null pointer in header_assemble + - xen/x86: fix PV trap handling on secondary processors + - usb-storage: Add quirk for ScanLogic SL11R-IDE older than 2.6c + - USB: serial: cp210x: add ID for GW Instek GDM-834x Digital Multimeter + - USB: cdc-acm: fix minor-number release + - binder: make sure fd closes complete + - staging: greybus: uart: fix tty use after free + - Re-enable UAS for LaCie Rugged USB3-FW with fk quirk + - USB: serial: mos7840: remove duplicated 0xac24 device ID + - USB: serial: option: add Telit LN920 compositions + - USB: serial: option: remove duplicate USB device ID + - USB: serial: option: add device id for Foxconn T99W265 + - mcb: fix error handling in mcb_alloc_bus() + - erofs: fix up erofs_lookup tracepoint + - btrfs: prevent __btrfs_dump_space_info() to underflow its free space + - serial: mvebu-uart: fix driver's tx_empty callback + - net: hso: fix muxed tty registration + - afs: Fix incorrect triggering of sillyrename on 3rd-party invalidation + - platform/x86/intel: punit_ipc: Drop wrong use of ACPI_PTR() + - enetc: Fix illegal access when reading affinity_hint + - bnxt_en: Fix TX timeout when TX ring size is set to the smallest + - net/smc: add missing error check in smc_clc_prfx_set() + - gpio: uniphier: Fix void functions to remove return value + - qed: rdma - don't wait for resources under hw error recovery flow + - net/mlx4_en: Don't allow aRFS for encapsulated packets + - scsi: iscsi: Adjust iface sysfs attr detection + - tty: synclink_gt, drop unneeded forward declarations + - tty: synclink_gt: rename a conflicting function name + - fpga: machxo2-spi: Return an error on failure + - fpga: machxo2-spi: Fix missing error code in machxo2_write_complete() + - thermal/core: Potential buffer overflow in thermal_build_list_of_policies() + - cifs: fix a sign extension bug + - scsi: qla2xxx: Restore initiator in dual mode + - scsi: lpfc: Use correct scnprintf() limit + - irqchip/goldfish-pic: Select GENERIC_IRQ_CHIP to fix build + - irqchip/gic-v3-its: Fix potential VPE leak on error + - md: fix a lock order reversal in md_alloc + - blktrace: Fix uaf in blk_trace access after removing by sysfs + - net: macb: fix use after free on rmmod + - net: stmmac: allow CSR clock of 300MHz + - m68k: Double cast io functions to unsigned long + - ipv6: delay fib6_sernum increase in fib6_add + - bpf: Add oversize check before call kvcalloc() + - xen/balloon: use a kernel thread instead a workqueue + - nvme-multipath: fix ANA state updates when a namespace is not present + - sparc32: page align size in arch_dma_alloc + - blk-cgroup: fix UAF by grabbing blkcg lock before destroying blkg pd + - compiler.h: Introduce absolute_pointer macro + - net: i825xx: Use absolute_pointer for memcpy from fixed memory location + - sparc: avoid stringop-overread errors + - qnx4: avoid stringop-overread errors + - parisc: Use absolute_pointer() to define PAGE0 + - arm64: Mark __stack_chk_guard as __ro_after_init + - alpha: Declare virt_to_phys and virt_to_bus parameter as pointer to volatile + - net: 6pack: Fix tx timeout and slot time + - spi: Fix tegra20 build with CONFIG_PM=n + - EDAC/synopsys: Fix wrong value type assignment for edac_mode + - thermal/drivers/int340x: Do not set a wrong tcc offset on resume + - arm64: dts: marvell: armada-37xx: Extend PCIe MEM space + - xen/balloon: fix balloon kthread freezing + - qnx4: work around gcc false positive warning bug + - Linux 5.4.150 + * ACL updates on OCFS2 are not revalidated (LP: #1947161) // Focal update: + v5.4.150 upstream stable release (LP: #1947886) + - ocfs2: drop acl cache for directories too + * Focal update: v5.4.149 upstream stable release (LP: #1947885) + - PCI: pci-bridge-emul: Fix big-endian support + - PCI: aardvark: Indicate error in 'val' when config read fails + - PCI: pci-bridge-emul: Add PCIe Root Capabilities Register + - PCI: aardvark: Fix reporting CRS value + - PCI/ACPI: Add Ampere Altra SOC MCFG quirk + - KVM: remember position in kvm->vcpus array + - console: consume APC, DM, DCS + - s390/pci_mmio: fully validate the VMA before calling follow_pte() + - ARM: Qualify enabling of swiotlb_init() + - apparmor: remove duplicate macro list_entry_is_head() + - ARM: 9077/1: PLT: Move struct plt_entries definition to header + - ARM: 9078/1: Add warn suppress parameter to arm_gen_branch_link() + - ARM: 9079/1: ftrace: Add MODULE_PLTS support + - ARM: 9098/1: ftrace: MODULE_PLT: Fix build problem without DYNAMIC_FTRACE + - sctp: validate chunk size in __rcv_asconf_lookup + - sctp: add param size validation for SCTP_PARAM_SET_PRIMARY + - staging: rtl8192u: Fix bitwise vs logical operator in + TranslateRxSignalStuff819xUsb() + - um: virtio_uml: fix memory leak on init failures + - dmaengine: acpi: Avoid comparison GSI with Linux vIRQ + - thermal/drivers/exynos: Fix an error code in exynos_tmu_probe() + - 9p/trans_virtio: Remove sysfs file on probe failure + - prctl: allow to setup brk for et_dyn executables + - nilfs2: use refcount_dec_and_lock() to fix potential UAF + - profiling: fix shift-out-of-bounds bugs + - pwm: lpc32xx: Don't modify HW state in .probe() after the PWM chip was + registered + - phy: avoid unnecessary link-up delay in polling mode + - net: stmmac: reset Tx desc base address before restarting Tx + - Kconfig.debug: drop selecting non-existing HARDLOCKUP_DETECTOR_ARCH + - thermal/core: Fix thermal_cooling_device_register() prototype + - drivers: base: cacheinfo: Get rid of DEFINE_SMP_CALL_CACHE_FUNCTION() + - parisc: Move pci_dev_is_behind_card_dino to where it is used + - dmaengine: sprd: Add missing MODULE_DEVICE_TABLE + - dmaengine: ioat: depends on !UML + - dmaengine: xilinx_dma: Set DMA mask for coherent APIs + - ceph: request Fw caps before updating the mtime in ceph_write_iter + - ceph: lockdep annotations for try_nonblocking_invalidate + - btrfs: fix lockdep warning while mounting sprout fs + - nilfs2: fix memory leak in nilfs_sysfs_create_device_group + - nilfs2: fix NULL pointer in nilfs_##name##_attr_release + - nilfs2: fix memory leak in nilfs_sysfs_create_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_snapshot_group + - pwm: img: Don't modify HW state in .remove() callback + - pwm: rockchip: Don't modify HW state in .remove() callback + - pwm: stm32-lp: Don't modify HW state in .remove() callback + - blk-throttle: fix UAF by deleteing timer in blk_throtl_exit() + - rtc: rx8010: select REGMAP_I2C + - drm/nouveau/nvkm: Replace -ENOSYS with -ENODEV + - Linux 5.4.149 + + -- Krzysztof Kozlowski Tue, 09 Nov 2021 12:30:03 +0100 + +linux-azure (5.4.0-1063.66) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1063.66 -proposed tracker (LP: #1947235) + + [ Ubuntu: 5.4.0-90.101 ] + + * focal/linux: 5.4.0-90.101 -proposed tracker (LP: #1947260) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.10.18) + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + * No sound on Lenovo laptop models Legion 15IMHG05, Yoga 7 14ITL5, and 13s + Gen2 (LP: #1939052) + - ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i + 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. + - ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s + Gen2 + * CVE-2020-36385 + - RDMA/cma: Add missing locking to rdma_accept() + - RDMA/ucma: Fix the locking of ctx->file + - RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy + * Focal update: v5.4.148 upstream stable release (LP: #1946802) + - rtc: tps65910: Correct driver module alias + - btrfs: wake up async_delalloc_pages waiters after submit + - btrfs: reset replace target device to allocation state on close + - blk-zoned: allow zone management send operations without CAP_SYS_ADMIN + - blk-zoned: allow BLKREPORTZONE without CAP_SYS_ADMIN + - PCI/MSI: Skip masking MSI-X on Xen PV + - powerpc/perf/hv-gpci: Fix counter value parsing + - xen: fix setting of max_pfn in shared_info + - include/linux/list.h: add a macro to test if entry is pointing to the head + - 9p/xen: Fix end of loop tests for list_for_each_entry + - tools/thermal/tmon: Add cross compiling support + - pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast + - pinctrl: ingenic: Fix incorrect pull up/down info + - soc: qcom: aoss: Fix the out of bound usage of cooling_devs + - soc: aspeed: lpc-ctrl: Fix boundary check for mmap + - soc: aspeed: p2a-ctrl: Fix boundary check for mmap + - arm64: head: avoid over-mapping in map_memory + - crypto: public_key: fix overflow during implicit conversion + - block: bfq: fix bfq_set_next_ioprio_data() + - power: supply: max17042: handle fails of reading status register + - dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() + - VMCI: fix NULL pointer dereference when unmapping queue pair + - media: uvc: don't do DMA on stack + - media: rc-loopback: return number of emitters rather than error + - Revert "dmaengine: imx-sdma: refine to load context only once" + - dmaengine: imx-sdma: remove duplicated sdma_load_context + - libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs + - ARM: 9105/1: atags_to_fdt: don't warn about stack size + - PCI/portdrv: Enable Bandwidth Notification only if port supports it + - PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported + - PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure + - PCI: xilinx-nwl: Enable the clock through CCF + - PCI: aardvark: Fix checking for PIO status + - PCI: aardvark: Increase polling delay to 1.5s while waiting for PIO response + - PCI: aardvark: Fix masking and unmasking legacy INTx interrupts + - HID: input: do not report stylus battery state as "full" + - f2fs: quota: fix potential deadlock + - scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND + - IB/hfi1: Adjust pkey entry in index 0 + - RDMA/iwcm: Release resources if iw_cm module initialization fails + - docs: Fix infiniband uverbs minor number + - pinctrl: samsung: Fix pinctrl bank pin count + - vfio: Use config not menuconfig for VFIO_NOIOMMU + - powerpc/stacktrace: Include linux/delay.h + - RDMA/efa: Remove double QP type assignment + - f2fs: show f2fs instance in printk_ratelimited + - f2fs: reduce the scope of setting fsck tag when de->name_len is zero + - openrisc: don't printk() unconditionally + - dma-debug: fix debugfs initialization order + - SUNRPC: Fix potential memory corruption + - scsi: fdomain: Fix error return code in fdomain_probe() + - pinctrl: single: Fix error return code in pcs_parse_bits_in_pinctrl_entry() + - scsi: smartpqi: Fix an error code in pqi_get_raid_map() + - scsi: qedi: Fix error codes in qedi_alloc_global_queues() + - scsi: qedf: Fix error codes in qedf_alloc_global_queues() + - powerpc/config: Renable MTD_PHYSMAP_OF + - scsi: target: avoid per-loop XCOPY buffer allocations + - HID: i2c-hid: Fix Elan touchpad regression + - KVM: PPC: Book3S HV Nested: Reflect guest PMU in-use to L0 when guest SPRs + are live + - platform/x86: dell-smbios-wmi: Add missing kfree in error-exit from + run_smbios_call + - fscache: Fix cookie key hashing + - clk: at91: sam9x60: Don't use audio PLL + - clk: at91: clk-generated: pass the id of changeable parent at registration + - clk: at91: clk-generated: Limit the requested rate to our range + - KVM: PPC: Fix clearing never mapped TCEs in realmode + - f2fs: fix to account missing .skipped_gc_rwsem + - f2fs: fix unexpected ENOENT comes from f2fs_map_blocks() + - f2fs: fix to unmap pages from userspace process in punch_hole() + - MIPS: Malta: fix alignment of the devicetree buffer + - kbuild: Fix 'no symbols' warning when CONFIG_TRIM_UNUSD_KSYMS=y + - userfaultfd: prevent concurrent API initialization + - drm/amdgpu: Fix amdgpu_ras_eeprom_init() + - ASoC: atmel: ATMEL drivers don't need HAS_DMA + - media: dib8000: rewrite the init prbs logic + - crypto: mxs-dcp - Use sg_mapping_iter to copy data + - PCI: Use pci_update_current_state() in pci_enable_device_flags() + - tipc: keep the skb in rcv queue until the whole data is read + - iio: dac: ad5624r: Fix incorrect handling of an optional regulator. + - iavf: do not override the adapter state in the watchdog task + - iavf: fix locking of critical sections + - ARM: dts: qcom: apq8064: correct clock names + - video: fbdev: kyro: fix a DoS bug by restricting user input + - netlink: Deal with ESRCH error in nlmsg_notify() + - Smack: Fix wrong semantics in smk_access_entry() + - drm: avoid blocking in drm_clients_info's rcu section + - igc: Check if num of q_vectors is smaller than max before array access + - usb: host: fotg210: fix the endpoint's transactional opportunities + calculation + - usb: host: fotg210: fix the actual_length of an iso packet + - usb: gadget: u_ether: fix a potential null pointer dereference + - USB: EHCI: ehci-mv: improve error handling in mv_ehci_enable() + - usb: gadget: composite: Allow bMaxPower=0 if self-powered + - staging: board: Fix uninitialized spinlock when attaching genpd + - tty: serial: jsm: hold port lock when reporting modem line changes + - drm/amd/display: Fix timer_per_pixel unit error + - drm/amd/amdgpu: Update debugfs link_settings output link_rate field in hex + - bpf/tests: Fix copy-and-paste error in double word test + - bpf/tests: Do not PASS tests without actually testing the result + - video: fbdev: asiliantfb: Error out if 'pixclock' equals zero + - video: fbdev: kyro: Error out if 'pixclock' equals zero + - video: fbdev: riva: Error out if 'pixclock' equals zero + - ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() + - flow_dissector: Fix out-of-bounds warnings + - s390/jump_label: print real address in a case of a jump label bug + - s390: make PCI mio support a machine flag + - serial: 8250: Define RX trigger levels for OxSemi 950 devices + - xtensa: ISS: don't panic in rs_init + - hvsi: don't panic on tty_register_driver failure + - serial: 8250_pci: make setup_port() parameters explicitly unsigned + - staging: ks7010: Fix the initialization of the 'sleep_status' structure + - samples: bpf: Fix tracex7 error raised on the missing argument + - ata: sata_dwc_460ex: No need to call phy_exit() befre phy_init() + - Bluetooth: skip invalid hci_sync_conn_complete_evt + - workqueue: Fix possible memory leaks in wq_numa_init() + - bonding: 3ad: fix the concurrency between __bond_release_one() and + bond_3ad_state_machine_handler() + - arm64: tegra: Fix Tegra194 PCIe EP compatible string + - ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the + matching in-/output + - media: imx258: Rectify mismatch of VTS value + - media: imx258: Limit the max analogue gain to 480 + - media: v4l2-dv-timings.c: fix wrong condition in two for-loops + - media: TDA1997x: fix tda1997x_query_dv_timings() return value + - media: tegra-cec: Handle errors of clk_prepare_enable() + - ARM: dts: imx53-ppd: Fix ACHC entry + - arm64: dts: qcom: sdm660: use reg value for memory node + - net: ethernet: stmmac: Do not use unreachable() in ipq806x_gmac_probe() + - drm/msm: mdp4: drop vblank get/put from prepare/complete_commit + - selftests/bpf: Fix xdp_tx.c prog section name + - Bluetooth: schedule SCO timeouts with delayed_work + - Bluetooth: avoid circular locks in sco_sock_connect + - net/mlx5: Fix variable type to match 64bit + - gpu: drm: amd: amdgpu: amdgpu_i2c: fix possible uninitialized-variable + access in amdgpu_i2c_router_select_ddc_port() + - drm/display: fix possible null-pointer dereference in dcn10_set_clock() + - mac80211: Fix monitor MTU limit so that A-MSDUs get through + - ARM: tegra: tamonten: Fix UART pad setting + - arm64: tegra: Fix compatible string for Tegra132 CPUs + - arm64: dts: ls1046a: fix eeprom entries + - nvme-tcp: don't check blk_mq_tag_to_rq when receiving pdu data + - Bluetooth: Fix handling of LE Enhanced Connection Complete + - opp: Don't print an error if required-opps is missing + - serial: sh-sci: fix break handling for sysrq + - tcp: enable data-less, empty-cookie SYN with TFO_SERVER_COOKIE_NOT_REQD + - rpc: fix gss_svc_init cleanup on failure + - staging: rts5208: Fix get_ms_information() heap buffer size + - gfs2: Don't call dlm after protocol is unmounted + - usb: chipidea: host: fix port index underflow and UBSAN complains + - lockd: lockd server-side shouldn't set fl_ops + - drm/exynos: Always initialize mapping in exynos_drm_register_dma() + - m68knommu: only set CONFIG_ISA_DMA_API for ColdFire sub-arch + - btrfs: tree-log: check btrfs_lookup_data_extent return value + - ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER + - ASoC: Intel: Skylake: Fix passing loadable flag for module + - of: Don't allow __of_attached_node_sysfs() without CONFIG_SYSFS + - mmc: sdhci-of-arasan: Check return value of non-void funtions + - mmc: rtsx_pci: Fix long reads when clock is prescaled + - selftests/bpf: Enlarge select() timeout for test_maps + - mmc: core: Return correct emmc response in case of ioctl error + - cifs: fix wrong release in sess_alloc_buffer() failed path + - Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST + quirk set" + - usb: musb: musb_dsps: request_irq() after initializing musb + - usbip: give back URBs for unsent unlink requests during cleanup + - usbip:vhci_hcd USB port can get stuck in the disabled state + - ASoC: rockchip: i2s: Fix regmap_ops hang + - ASoC: rockchip: i2s: Fixup config for DAIFMT_DSP_A/B + - drm/amdkfd: Account for SH/SE count when setting up cu masks. + - iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed + - iwlwifi: mvm: avoid static queue number aliasing + - iwlwifi: mvm: fix access to BSS elements + - net/mlx5: DR, Enable QP retransmission + - parport: remove non-zero check on count + - ath9k: fix OOB read ar9300_eeprom_restore_internal + - ath9k: fix sleeping in atomic context + - net: fix NULL pointer reference in cipso_v4_doi_free + - fix array-index-out-of-bounds in taprio_change + - net: w5100: check return value after calling platform_get_resource() + - parisc: fix crash with signals and alloca + - ovl: fix BUG_ON() in may_delete() when called from ovl_cleanup() + - scsi: BusLogic: Fix missing pr_cont() use + - scsi: qla2xxx: Changes to support kdump kernel + - scsi: qla2xxx: Sync queue idx with queue_pair_map idx + - cpufreq: powernv: Fix init_chip_info initialization in numa=off + - s390/pv: fix the forcing of the swiotlb + - mm/hugetlb: initialize hugetlb_usage in mm_init + - mm,vmscan: fix divide by zero in get_scan_count + - memcg: enable accounting for pids in nested pid namespaces + - platform/chrome: cros_ec_proto: Send command again when timeout occurs + - lib/test_stackinit: Fix static initializer test + - net: dsa: lantiq_gswip: fix maximum frame length + - drm/msi/mdp4: populate priv->kms in mdp4_kms_init + - drm/amdgpu: Fix BUG_ON assert + - drm/panfrost: Simplify lock_region calculation + - drm/panfrost: Use u64 for size in lock_region + - drm/panfrost: Clamp lock region to Bifrost minimum + - btrfs: fix upper limit for max_inline for page size 64K + - xen: reset legacy rtc flag for PV domU + - bnx2x: Fix enabling network interfaces without VFs + - arm64/sve: Use correct size when reinitialising SVE state + - PM: base: power: don't try to use non-existing RTC for storing data + - PCI: Add AMD GPU multi-function power dependencies + - drm/amd/amdgpu: Increase HWIP_MAX_INSTANCE to 10 + - drm/etnaviv: return context from etnaviv_iommu_context_get + - drm/etnaviv: put submit prev MMU context when it exists + - drm/etnaviv: stop abusing mmu_context as FE running marker + - drm/etnaviv: keep MMU context across runtime suspend/resume + - drm/etnaviv: exec and MMU state is lost when resetting the GPU + - drm/etnaviv: fix MMU context leak on GPU reset + - drm/etnaviv: reference MMU context when setting up hardware state + - drm/etnaviv: add missing MMU context put when reaping MMU mapping + - s390/sclp: fix Secure-IPL facility detection + - x86/mm: Fix kern_addr_valid() to cope with existing but not present entries + - tipc: fix an use-after-free issue in tipc_recvmsg + - net-caif: avoid user-triggerable WARN_ON(1) + - ptp: dp83640: don't define PAGE0 + - net/l2tp: Fix reference count leak in l2tp_udp_recv_core + - r6040: Restore MDIO clock frequency after MAC reset + - tipc: increase timeout in tipc_sk_enqueue() + - perf machine: Initialize srcline string member in add_location struct + - net/mlx5: FWTrace, cancel work on alloc pd error flow + - net/mlx5: Fix potential sleeping in atomic context + - events: Reuse value read using READ_ONCE instead of re-reading it + - vhost_net: fix OoB on sendmsg() failure. + - net/af_unix: fix a data-race in unix_dgram_poll + - net: dsa: destroy the phylink instance on any error in dsa_slave_phy_setup + - tcp: fix tp->undo_retrans accounting in tcp_sacktag_one() + - qed: Handle management FW error + - dt-bindings: arm: Fix Toradex compatible typo + - ibmvnic: check failover_pending in login response + - KVM: PPC: Book3S HV: Tolerate treclaim. in fake-suspend mode changing + registers + - net: hns3: pad the short tunnel frame before sending to hardware + - net: hns3: change affinity_mask to numa node range + - net: hns3: disable mac in flr process + - net: hns3: fix the timing issue of VF clearing interrupt sources + - mm/memory_hotplug: use "unsigned long" for PFN in zone_for_pfn_range() + - dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation + - mfd: db8500-prcmu: Adjust map to reality + - PCI: Add ACS quirks for NXP LX2xx0 and LX2xx2 platforms + - fuse: fix use after free in fuse_read_interrupt() + - mfd: Don't use irq_create_mapping() to resolve a mapping + - tracing/probes: Reject events which have the same name of existing one + - PCI: Add ACS quirks for Cavium multi-function devices + - Set fc_nlinfo in nh_create_ipv4, nh_create_ipv6 + - net: usb: cdc_mbim: avoid altsetting toggling for Telit LN920 + - PCI: ibmphp: Fix double unmap of io_mem + - ethtool: Fix an error code in cxgb2.c + - NTB: Fix an error code in ntb_msit_probe() + - NTB: perf: Fix an error code in perf_setup_inbuf() + - mfd: axp20x: Update AXP288 volatile ranges + - PCI: Fix pci_dev_str_match_path() alloc while atomic bug + - mfd: tqmx86: Clear GPIO IRQ resource when no IRQ is set + - KVM: arm64: Handle PSCI resets before userspace touches vCPU state + - PCI: Sync __pci_register_driver() stub for CONFIG_PCI=n + - mtd: rawnand: cafe: Fix a resource leak in the error handling path of + 'cafe_nand_probe()' + - ARC: export clear_user_page() for modules + - perf unwind: Do not overwrite FEATURE_CHECK_LDFLAGS-libunwind-{x86,aarch64} + - net: dsa: b53: Fix calculating number of switch ports + - netfilter: socket: icmp6: fix use-after-scope + - fq_codel: reject silly quantum parameters + - qlcnic: Remove redundant unlock in qlcnic_pinit_from_rom + - ip_gre: validate csum_start only on pull + - net: renesas: sh_eth: Fix freeing wrong tx descriptor + - Linux 5.4.148 + * Focal update: v5.4.147 upstream stable release (LP: #1946795) + - Linux 5.4.147 + - upstream stable to v5.4.147 + * CVE-2021-3428 + - ext4: save the error code which triggered an ext4_error() in the superblock + - ext4: simulate various I/O and checksum errors when reading metadata + - ext4: save all error info in save_error_info() and drop ext4_set_errno() + - ext4: check journal inode extents more carefully + * ip6gretap / erspan / ip6erspan in rtnetlink.sh from net of + ubuntu_kernel_selftests failed on B-5.4-aws / B-5.4-gke / B-5.4-oracle / + B-5.4-azure / B-5.4 (LP: #1896448) + - SAUCE: selftests: rtnetlink: fixes for older iproute2 + * CVE-2019-19449 + - f2fs: fix wrong total_sections check and fsmeta check + - f2fs: fix to do sanity check on segment/section count + * kernel bug found when disconnecting one fiber channel interface on Cisco + Chassis with fnic DRV_VERSION "1.6.0.47" (LP: #1944586) + - scsi: fnic: Do not call 'scsi_done()' for unhandled commands + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (unknown type + name ‘__u64’) (LP: #1944613) + - SAUCE: selftests/memfd: fix __u64 not defined build issue + * Medion Notebook Keyboard not working (LP: #1909814) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + * vrf: fix refcnt leak with vxlan slaves (LP: #1945180) + - ipv4: Fix device used for dst_alloc with local routes + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add a new fips-checks script + - [Packaging] Add fips-checks as part of finalchecks + * Fix cold plugged USB device on certain PCIe USB cards (LP: #1945211) + - Revert "UBUNTU: SAUCE: Revert "usb: core: reduce power-on-good delay time of + root hub"" + - usb: core: hcd: Add support for deferring roothub registration + - xhci: Set HCD flag to defer primary roothub registration + - usb: core: hcd: Modularize HCD stop configuration in usb_stop_hcd() + * CVE-2021-3759 + - memcg: enable accounting of ipc resources + * Focal update: v5.4.146 upstream stable release (LP: #1946024) + - locking/mutex: Fix HANDOFF condition + - regmap: fix the offset of register error log + - crypto: mxs-dcp - Check for DMA mapping errors + - sched/deadline: Fix reset_on_fork reporting of DL tasks + - power: supply: axp288_fuel_gauge: Report register-address on readb / writeb + errors + - crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() + - sched/deadline: Fix missing clock update in migrate_task_rq_dl() + - rcu/tree: Handle VM stoppage in stall detection + - hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() + - hrtimer: Ensure timerfd notification for HIGHRES=n + - udf: Check LVID earlier + - udf: Fix iocharset=utf8 mount option + - isofs: joliet: Fix iocharset=utf8 mount option + - bcache: add proper error unwinding in bcache_device_init + - nvme-tcp: don't update queue count when failing to set io queues + - nvme-rdma: don't update queue count when failing to set io queues + - nvmet: pass back cntlid on successful completion + - power: supply: max17042_battery: fix typo in MAx17042_TOFF + - s390/cio: add dev_busid sysfs entry for each subchannel + - libata: fix ata_host_start() + - crypto: qat - do not ignore errors from enable_vf2pf_comms() + - crypto: qat - handle both source of interrupt in VF ISR + - crypto: qat - fix reuse of completion variable + - crypto: qat - fix naming for init/shutdown VF to PF notifications + - crypto: qat - do not export adf_iov_putmsg() + - fcntl: fix potential deadlock for &fasync_struct.fa_lock + - udf_get_extendedattr() had no boundary checks. + - s390/kasan: fix large PMD pages address alignment check + - s390/debug: fix debug area life cycle + - m68k: emu: Fix invalid free in nfeth_cleanup() + - sched: Fix UCLAMP_FLAG_IDLE setting + - spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config + - spi: spi-pic32: Fix issue with uninitialized dma_slave_config + - genirq/timings: Fix error return code in irq_timings_test_irqs() + - lib/mpi: use kcalloc in mpi_resize + - clocksource/drivers/sh_cmt: Fix wrong setting if don't request IRQ for clock + source channel + - crypto: qat - use proper type for vf_mask + - certs: Trigger creation of RSA module signing key if it's not an RSA key + - regulator: vctrl: Use locked regulator_get_voltage in probe path + - regulator: vctrl: Avoid lockdep warning in enable/disable ops + - spi: sprd: Fix the wrong WDG_LOAD_VAL + - spi: spi-zynq-qspi: use wait_for_completion_timeout to make + zynq_qspi_exec_mem_op not interruptible + - EDAC/i10nm: Fix NVDIMM detection + - drm/panfrost: Fix missing clk_disable_unprepare() on error in + panfrost_clk_init() + - media: TDA1997x: enable EDID support + - soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally + - media: cxd2880-spi: Fix an error handling path + - bpf: Fix a typo of reuseport map in bpf.h. + - bpf: Fix potential memleak and UAF in the verifier. + - ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi + - arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties + - soc: qcom: rpmhpd: Use corner in power_off + - media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init + - media: dvb-usb: fix uninit-value in vp702x_read_mac_addr + - media: dvb-usb: Fix error handling in dvb_usb_i2c_init + - media: go7007: remove redundant initialization + - media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats + - Bluetooth: sco: prevent information leak in sco_conn_defer_accept() + - 6lowpan: iphc: Fix an off-by-one check of array index + - netns: protect netns ID lookups with RCU + - tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos + - ARM: dts: meson8: Use a higher default GPU clock frequency + - ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties + - ARM: dts: meson8b: mxq: Fix the pwm regulator supply properties + - ARM: dts: meson8b: ec100: Fix the pwm regulator supply properties + - net/mlx5e: Prohibit inner indir TIRs in IPoIB + - cgroup/cpuset: Fix a partition bug with hotplug + - net: cipso: fix warnings in netlbl_cipsov4_add_std + - i2c: highlander: add IRQ check + - leds: lt3593: Put fwnode in any case during ->probe() + - leds: trigger: audio: Add an activate callback to ensure the initial + brightness is set + - media: em28xx-input: fix refcount bug in em28xx_usb_disconnect + - media: venus: venc: Fix potential null pointer dereference on pointer fmt + - PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently + - PCI: PM: Enable PME if it can be signaled from D3cold + - soc: qcom: smsm: Fix missed interrupts if state changes while masked + - debugfs: Return error during {full/open}_proxy_open() on rmmod + - Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow + - PM: EM: Increase energy calculation precision + - drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs + - arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 + - counter: 104-quad-8: Return error when invalid mode during ceiling_write + - Bluetooth: fix repeated calls to sco_sock_kill + - drm/msm/dsi: Fix some reference counted resource leaks + - usb: gadget: udc: at91: add IRQ check + - usb: phy: fsl-usb: add IRQ check + - usb: phy: twl6030: add IRQ checks + - usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse + - usb: host: ohci-tmio: add IRQ check + - usb: phy: tahvo: add IRQ check + - mac80211: Fix insufficient headroom issue for AMSDU + - lockd: Fix invalid lockowner cast after vfs_test_lock + - nfsd4: Fix forced-expiry locking + - usb: gadget: mv_u3d: request_irq() after initializing UDC + - mm/swap: consider max pages in iomap_swapfile_add_extent + - Bluetooth: add timeout sanity check to hci_inquiry + - i2c: iop3xx: fix deferred probing + - i2c: s3c2410: fix IRQ check + - rsi: fix error code in rsi_load_9116_firmware() + - rsi: fix an error code in rsi_probe() + - ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs + - ASoC: Intel: Skylake: Fix module resource and format selection + - mmc: dw_mmc: Fix issue with uninitialized dma_slave_config + - mmc: moxart: Fix issue with uninitialized dma_slave_config + - bpf: Fix possible out of bound write in narrow load handling + - CIFS: Fix a potencially linear read overflow + - i2c: mt65xx: fix IRQ check + - usb: ehci-orion: Handle errors of clk_prepare_enable() in probe + - usb: bdc: Fix an error handling path in 'bdc_probe()' when no suitable DMA + config is available + - tty: serial: fsl_lpuart: fix the wrong mapbase value + - ASoC: wcd9335: Fix a double irq free in the remove function + - ASoC: wcd9335: Fix a memory leak in the error handling path of the probe + function + - ASoC: wcd9335: Disable irq on slave ports in the remove function + - ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() + - bcma: Fix memory leak for internally-handled cores + - brcmfmac: pcie: fix oops on failure to resume and reprobe + - ipv6: make exception cache less predictible + - ipv4: make exception cache less predictible + - net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed + - net: qualcomm: fix QCA7000 checksum handling + - octeontx2-af: Fix loop in free and unmap counter + - ipv4: fix endianness issue in inet_rtm_getroute_build_skb() + - bpf: Introduce BPF nospec instruction for mitigating Spectre v4 + - bpf: Fix leakage due to insufficient speculative store bypass mitigation + - bpf: verifier: Allocate idmap scratch in verifier env + - bpf: Fix pointer arithmetic mask tightening under state pruning + - tty: Fix data race between tiocsti() and flush_to_ldisc() + - perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op + - x86/resctrl: Fix a maybe-uninitialized build warning treated as error + - KVM: s390: index kvm->arch.idle_mask by vcpu_idx + - KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is + adjusted + - KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter + - fuse: truncate pagecache on atomic_o_trunc + - fuse: flush extending writes + - IMA: remove -Wmissing-prototypes warning + - IMA: remove the dependency on CRYPTO_MD5 + - fbmem: don't allow too huge resolutions + - backlight: pwm_bl: Improve bootloader/kernel device handover + - clk: kirkwood: Fix a clocking boot regression + - Linux 5.4.146 + * AMD A8-7680 (amdgpu): broken Xorg acceleration and hibernation + (LP: #1920674) // Focal update: v5.4.146 upstream stable release + (LP: #1946024) + - drm/amdgpu/acp: Make PM domain really work + * Focal update: v5.4.145 upstream stable release (LP: #1945517) + - 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 + - kthread: Fix PF_KTHREAD vs to_kthread() race + - xtensa: fix kconfig unmet dependency warning for HAVE_FUTEX_CMPXCHG + - gpu: ipu-v3: Fix i.MX IPU-v3 offset calculations for (semi)planar U/V + formats + - reset: reset-zynqmp: Fixed the argument data type + - qed: Fix the VF msix vectors flow + - net: macb: Add a NULL check on desc_ptp + - qede: Fix memset corruption + - perf/x86/intel/pt: Fix mask of num_address_ranges + - perf/x86/amd/ibs: Work around erratum #1197 + - perf/x86/amd/power: Assign pmu.module + - cryptoloop: add a deprecation warning + - ARM: 8918/2: only build return_address() if needed + - ALSA: hda/realtek: Workaround for conflicting SSID on ASUS ROG Strix G17 + - ALSA: pcm: fix divide error in snd_pcm_lib_ioctl + - ARC: wireup clone3 syscall + - media: stkwebcam: fix memory leak in stk_camera_probe + - igmp: Add ip_mc_list lock in ip_check_mc_rcu + - USB: serial: mos7720: improve OOM-handling in read_mos_reg() + - ipv4/icmp: l3mdev: Perform icmp error route lookup on source device routing + table (v2) + - powerpc/boot: Delete unneeded .globl _zimage_start + - net: ll_temac: Remove left-over debug message + - mm/page_alloc: speed up the iteration of max_order + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - x86/events/amd/iommu: Fix invalid Perf result due to IOMMU PMC power-gating + - Revert "btrfs: compression: don't try to compress if we don't have enough + pages" + - ALSA: usb-audio: Add registration quirk for JBL Quantum 800 + - usb: host: xhci-rcar: Don't reload firmware after the completion + - usb: mtu3: use @mult for HS isoc or intr + - usb: mtu3: fix the wrong HS mult value + - xhci: fix unsafe memory usage in xhci tracing + - x86/reboot: Limit Dell Optiplex 990 quirk to early BIOS versions + - PCI: Call Max Payload Size-related fixup quirks early + - Linux 5.4.145 + * Focal update: v5.4.144 upstream stable release (LP: #1944756) + - net: qrtr: fix another OOB Read in qrtr_endpoint_post + - ARC: Fix CONFIG_STACKDEPOT + - netfilter: conntrack: collect all entries in one cycle + - once: Fix panic when module unload + - ovl: fix uninitialized pointer read in ovl_lookup_real_one() + - mmc: sdhci-msm: Update the software timeout value for sdhc + - mm, oom: make the calculation of oom badness more accurate + - can: usb: esd_usb2: esd_usb2_rx_event(): fix the interchange of the CAN RX + and TX error counters + - Revert "USB: serial: ch341: fix character loss at high transfer rates" + - USB: serial: option: add new VID/PID to support Fibocom FG150 + - usb: dwc3: gadget: Fix dwc3_calc_trbs_left() + - usb: dwc3: gadget: Stop EP0 transfers during pullup disable + - scsi: core: Fix hang of freezing queue between blocking and running device + - RDMA/bnxt_re: Add missing spin lock initialization + - IB/hfi1: Fix possible null-pointer dereference in _extend_sdma_tx_descs() + - e1000e: Fix the max snoop/no-snoop latency for 10M + - RDMA/efa: Free IRQ vectors on error flow + - ip_gre: add validation for csum_start + - xgene-v2: Fix a resource leak in the error handling path of 'xge_probe()' + - net: marvell: fix MVNETA_TX_IN_PRGRS bit number + - rtnetlink: Return correct error on changing device netns + - net: hns3: clear hardware resource when loading driver + - net: hns3: fix duplicate node in VLAN list + - net: hns3: fix get wrong pfc_en when query PFC configuration + - drm/i915: Fix syncmap memory leak + - usb: gadget: u_audio: fix race condition on endpoint stop + - perf/x86/intel/uncore: Fix integer overflow on 23 bit left shift of a u32 + - opp: remove WARN when no valid OPPs remain + - virtio: Improve vq->broken access to avoid any compiler optimization + - virtio_pci: Support surprise removal of virtio pci device + - vringh: Use wiov->used to check for read/write desc order + - qed: qed ll2 race condition fixes + - qed: Fix null-pointer dereference in qed_rdma_create_qp() + - drm: Copy drm_wait_vblank to user before returning + - drm/nouveau/disp: power down unused DP links during init + - net/rds: dma_map_sg is entitled to merge entries + - btrfs: fix race between marking inode needs to be logged and log syncing + - vt_kdsetmode: extend console locking + - bpf: Track contents of read-only maps as scalars + - bpf: Fix cast to pointer from integer of different size warning + - net: dsa: mt7530: fix VLAN traffic leaks again + - KVM: x86/mmu: Treat NX as used (not reserved) for all !TDP shadow MMUs + - arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - Revert "parisc: Add assembly implementations for memset, strlen, strcpy, + strncpy and strcat" + - 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.4.144 + + -- Krzysztof Kozlowski Thu, 21 Oct 2021 09:21:56 +0200 + +linux-azure (5.4.0-1062.65) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1062.65 -proposed tracker (LP: #1946370) + + [ Ubuntu: 5.4.0-89.100 ] + + * focal/linux: 5.4.0-89.100 -proposed tracker (LP: #1944901) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.27) + * ext4 journal recovery fails w/ data=journal + mmap (LP: #1847340) + - jbd2: introduce/export functions + jbd2_journal_submit|finish_inode_data_buffers() + - jbd2, ext4, ocfs2: introduce/use journal callbacks + j_submit|finish_inode_data_buffers() + - ext4: data=journal: fixes for ext4_page_mkwrite() + - ext4: data=journal: write-protect pages on j_submit_inode_data_buffers() + - ext4: fix mmap write protection for data=journal mode + * CVE-2021-40490 + - ext4: fix race writing to an inline_data file while its xattrs are changing + * Obsolete patch "UBUNTU: SAUCE: ext4: fix directory index node split + corruption" (LP: #1942902) + - Revert "UBUNTU: SAUCE: ext4: fix directory index node split corruption" + * psock_snd.sh in net from ubuntu_kernel_selftests ADT failure with + focal/groovy/hirsute/impish (LP: #1892213) + - selftests/net: remove min gso test in packet_snd + * Focal update: v5.4.143 upstream stable release (LP: #1944212) + - ext4: fix EXT4_MAX_LOGICAL_BLOCK macro + - x86/fpu: Make init_fpstate correct with optimized XSAVE + - ath: Use safer key clearing with key cache entries + - ath9k: Clear key cache explicitly on disabling hardware + - ath: Export ath_hw_keysetmac() + - ath: Modify ath_key_delete() to not need full key entry + - ath9k: Postpone key cache entry deletion for TXQ frames reference it + - mtd: cfi_cmdset_0002: fix crash when erasing/writing AMD cards + - media: zr364xx: propagate errors from zr364xx_start_readpipe() + - media: zr364xx: fix memory leaks in probe() + - media: drivers/media/usb: fix memory leak in zr364xx_probe + - USB: core: Avoid WARNings for 0-length descriptor requests + - dmaengine: xilinx_dma: Fix read-after-free bug when terminating transfers + - dmaengine: usb-dmac: Fix PM reference leak in usb_dmac_probe() + - ARM: dts: am43x-epos-evm: Reduce i2c0 bus speed for tps65218 + - dmaengine: of-dma: router_xlate to return -EPROBE_DEFER if controller is not + yet available + - scsi: megaraid_mm: Fix end of loop tests for list_for_each_entry() + - scsi: scsi_dh_rdac: Avoid crash during rdac_bus_attach() + - scsi: core: Avoid printing an error if target_alloc() returns -ENXIO + - scsi: core: Fix capacity set to zero after offlinining device + - ARM: dts: nomadik: Fix up interrupt controller node names + - net: usb: lan78xx: don't modify phy_device state concurrently + - drm/amd/display: Fix Dynamic bpp issue with 8K30 with Navi 1X + - Bluetooth: hidp: use correct wait queue when removing ctrl_wait + - iommu: Check if group is NULL before remove device + - cpufreq: armada-37xx: forbid cpufreq for 1.2 GHz variant + - dccp: add do-while-0 stubs for dccp_pr_debug macros + - virtio: Protect vqs list access + - vhost: Fix the calculation in vhost_overflow() + - bpf: Clear zext_dst of dead insns + - bnxt: don't lock the tx queue from napi poll + - bnxt: disable napi before canceling DIM + - net: 6pack: fix slab-out-of-bounds in decode_data + - ptp_pch: Restore dependency on PCI + - bnxt_en: Add missing DMA memory barriers + - vrf: Reset skb conntrack connection on VRF rcv + - virtio-net: support XDP when not more queues + - virtio-net: use NETIF_F_GRO_HW instead of NETIF_F_LRO + - net: qlcnic: add missed unlock in qlcnic_83xx_flash_read32 + - net: mdio-mux: Don't ignore memory allocation errors + - net: mdio-mux: Handle -EPROBE_DEFER correctly + - ovs: clear skb->tstamp in forwarding path + - i40e: Fix ATR queue selection + - iavf: Fix ping is lost after untrusted VF had tried to change MAC + - ovl: add splice file read write helper + - mmc: dw_mmc: Fix hang on data CRC error + - ALSA: hda - fix the 'Capture Switch' value change notifications + - tracing / histogram: Fix NULL pointer dereference on strcmp() on NULL event + name + - slimbus: messaging: start transaction ids from 1 instead of zero + - slimbus: messaging: check for valid transaction id + - slimbus: ngd: reset dma setup during runtime pm + - ipack: tpci200: fix many double free issues in tpci200_pci_probe + - ipack: tpci200: fix memory leak in the tpci200_register + - btrfs: prevent rename2 from exchanging a subvol with a directory from + different parents + - PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI + - ASoC: intel: atom: Fix breakage for PCM buffer address setup + - mm, memcg: avoid stale protection values when cgroup is above protection + - mm: memcontrol: fix occasional OOMs due to proportional memory.low reclaim + - fs: warn about impending deprecation of mandatory locks + - netfilter: nft_exthdr: fix endianness of tcp option cast + - Linux 5.4.143 + * Focal update: v5.4.142 upstream stable release (LP: #1944202) + - iio: adc: ti-ads7950: Ensure CS is deasserted after reading channels + - iio: humidity: hdc100x: Add margin to the conversion time + - iio: adc: Fix incorrect exit of for-loop + - ASoC: xilinx: Fix reference to PCM buffer address + - ASoC: intel: atom: Fix reference to PCM buffer address + - i2c: dev: zero out array used for i2c reads from userspace + - ceph: reduce contention in ceph_check_delayed_caps() + - ACPI: NFIT: Fix support for virtual SPA ranges + - libnvdimm/region: Fix label activation vs errors + - ieee802154: hwsim: fix GPF in hwsim_set_edge_lqi + - ieee802154: hwsim: fix GPF in hwsim_new_edge_nl + - ASoC: cs42l42: Correct definition of ADC Volume control + - ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J + - ASoC: cs42l42: Fix inversion of ADC Notch Switch control + - ASoC: cs42l42: Remove duplicate control for WNF filter frequency + - netfilter: nf_conntrack_bridge: Fix memory leak when error + - ASoC: cs42l42: Fix LRCLK frame start edge + - net: dsa: mt7530: add the missing RxUnicast MIB counter + - platform/x86: pcengines-apuv2: revert wiring up simswitch GPIO as LED + - platform/x86: pcengines-apuv2: Add missing terminating entries to gpio- + lookup tables + - net: phy: micrel: Fix link detection on ksz87xx switch" + - ppp: Fix generating ifname when empty IFLA_IFNAME is specified + - net: sched: act_mirred: Reset ct info when mirror/redirect skb + - iavf: Set RSS LUT and key in reset handle path + - psample: Add a fwd declaration for skbuff + - net/mlx5: Fix return value from tracer initialization + - drm/meson: fix colour distortion from HDR set during vendor u-boot + - net: dsa: microchip: Fix ksz_read64() + - net: Fix memory leak in ieee802154_raw_deliver + - net: igmp: fix data-race in igmp_ifc_timer_expire() + - net: dsa: lan9303: fix broken backpressure in .port_fdb_dump + - net: dsa: lantiq: fix broken backpressure in .port_fdb_dump + - net: dsa: sja1105: fix broken backpressure in .port_fdb_dump + - net: bridge: fix memleak in br_add_if() + - net: linkwatch: fix failure to restore device state across suspend/resume + - tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B + packets + - net: igmp: increase size of mr_ifc_count + - xen/events: Fix race in set_evtchn_to_irq + - vsock/virtio: avoid potential deadlock when vsock device remove + - nbd: Aovid double completion of a request + - powerpc/kprobes: Fix kprobe Oops happens in booke + - x86/tools: Fix objdump version check again + - genirq: Provide IRQCHIP_AFFINITY_PRE_STARTUP + - x86/msi: Force affinity setup before startup + - x86/ioapic: Force affinity setup before startup + - x86/resctrl: Fix default monitoring groups reporting + - genirq/msi: Ensure deactivation on teardown + - genirq/timings: Prevent potential array overflow in __irq_timings_store() + - PCI/MSI: Enable and mask MSI-X early + - PCI/MSI: Mask all unused MSI-X entries + - PCI/MSI: Enforce that MSI-X table entry is masked for update + - PCI/MSI: Enforce MSI[X] entry updates to be visible + - PCI/MSI: Do not set invalid bits in MSI mask + - PCI/MSI: Correct misleading comments + - PCI/MSI: Use msi_mask_irq() in pci_msi_shutdown() + - PCI/MSI: Protect msi_desc::masked for multi-MSI + - KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation + - ceph: add some lockdep assertions around snaprealm handling + - ceph: clean up locking annotation for ceph_get_snap_realm and + __lookup_snap_realm + - ceph: take snap_empty_lock atomically with snaprealm refcount change + - vmlinux.lds.h: Handle clang's module.{c,d}tor sections + - iommu/vt-d: Fix agaw for a supported 48 bit guest address width + - Linux 5.4.142 + * Focal update: v5.4.141 upstream stable release (LP: #1943484) + - KVM: SVM: Fix off-by-one indexing when nullifying last used SEV VMCB + - tee: Correct inappropriate usage of TEE_SHM_DMA_BUF flag + - media: v4l2-mem2mem: always consider OUTPUT queue during poll + - tracing: Reject string operand in the histogram expression + - usb: dwc3: Stop active transfers before halting the controller + - usb: dwc3: gadget: Allow runtime suspend if UDC unbinded + - usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup + - usb: dwc3: gadget: Prevent EP queuing while stopping transfers + - usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable + - usb: dwc3: gadget: Disable gadget IRQ during pullup disable + - usb: dwc3: gadget: Avoid runtime resume if disabling pullup + - KVM: X86: MMU: Use the correct inherited permissions to get shadow page + - USB:ehci:fix Kunpeng920 ehci hardware problem + - ALSA: hda: Add quirk for ASUS Flow x13 + - ppp: Fix generating ppp unit id when ifname is not specified + - ovl: prevent private clone if bind mount is not allowed + - btrfs: make qgroup_free_reserved_data take btrfs_inode + - btrfs: make btrfs_qgroup_reserve_data take btrfs_inode + - btrfs: qgroup: allow to unreserve range without releasing other ranges + - btrfs: qgroup: try to flush qgroup space when we get -EDQUOT + - btrfs: transaction: Cleanup unused TRANS_STATE_BLOCKED + - btrfs: qgroup: remove ASYNC_COMMIT mechanism in favor of reserve retry- + after-EDQUOT + - btrfs: fix lockdep splat when enabling and disabling qgroups + - net: xilinx_emaclite: Do not print real IOMEM pointer + - btrfs: qgroup: don't commit transaction when we already hold the handle + - btrfs: export and rename qgroup_reserve_meta + - btrfs: don't flush from btrfs_delayed_inode_reserve_metadata + - Linux 5.4.141 + + [ Ubuntu: 5.4.0-88.99 ] + + * focal/linux: 5.4.0-88.99 -proposed tracker (LP: #1944747) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - Revert "UBUNTU: [Config] Disable virtualbox dkms build" + + [ Ubuntu: 5.4.0-87.98 ] + + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - [Config] Disable virtualbox dkms build + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - Disable CONFIG_HISI_DMA + - [Config] Record hisi_dma no longer built for arm64 + * memory leaking when removing a profile (LP: #1939915) + - apparmor: Fix memory leak of profile proxy + * CryptoExpress EP11 cards are going offline (LP: #1939618) + - s390/zcrypt: Support for CCA protected key block version 2 + - s390: Replace zero-length array with flexible-array member + - s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow + - s390/zcrypt: replace snprintf/sprintf with scnprintf + - s390/ap: Remove ap device suspend and resume callbacks + - s390/zcrypt: use fallthrough; + - s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc + - s390/ap: remove power management code from ap bus and drivers + - s390/ap: introduce new ap function ap_get_qdev() + - s390/zcrypt: use kzalloc + - s390/zcrypt: fix smatch warnings + - s390/zcrypt: code beautification and struct field renames + - s390/zcrypt: split ioctl function into smaller code units + - s390/ap: rename and clarify ap state machine related stuff + - s390/zcrypt: provide cex4 cca sysfs attributes for cex3 + - s390/ap: rework crypto config info and default domain code + - s390/zcrypt: simplify cca_findcard2 loop code + - s390/zcrypt: remove set_fs() invocation in zcrypt device driver + - s390/ap: remove unnecessary spin_lock_init() + - s390/zcrypt: Support for CCA APKA master keys + - s390/zcrypt: introduce msg tracking in zcrypt functions + - s390/ap: split ap queue state machine state from device state + - s390/ap: add error response code field for ap queue devices + - s390/ap: add card/queue deconfig state + - s390/sclp: Add support for SCLP AP adapter config/deconfig + - s390/ap: Support AP card SCLP config and deconfig operations + - s390/ap/zcrypt: revisit ap and zcrypt error handling + - s390/zcrypt: move ap_msg param one level up the call chain + - s390/zcrypt: Introduce Failure Injection feature + - s390/zcrypt: fix wrong format specifications + - s390/ap: fix ap devices reference counting + - s390/zcrypt: return EIO when msg retry limit reached + - s390/zcrypt: fix zcard and zqueue hot-unplug memleak + - s390/ap: Fix hanging ioctl caused by wrong msg counter + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (LP: #1926142) + - SAUCE: selftests/memfd: fix build when F_SEAL_FUTURE_WRITE is not defined + * [SRU] Ice driver causes the kernel to crash with Ubuntu 20.04.2 with ethtool + specific register commands (LP: #1939855) + - ice: Fix bad register reads + * ubunut_kernel_selftests: memory-hotplug: avoid spamming logs with + dump_page() (LP: #1941829) + - selftests: memory-hotplug: avoid spamming logs with dump_page(), ratio limit + hot-remove error test + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - e1000e: Do not take care about recovery NVM checksum + * Focal update: v5.4.140 upstream stable release (LP: #1941798) + - Revert "ACPICA: Fix memory leak caused by _CID repair function" + - ALSA: seq: Fix racy deletion of subscriber + - arm64: dts: ls1028a: fix node name for the sysclk + - ARM: imx: add missing iounmap() + - ARM: imx: add missing clk_disable_unprepare() + - ARM: dts: imx6qdl-sr-som: Increase the PHY reset duration to 10ms + - ARM: dts: colibri-imx6ull: limit SDIO clock to 25MHz + - ARM: imx: fix missing 3rd argument in macro imx_mmdc_perf_init + - ARM: dts: imx: Swap M53Menlo pinctrl_power_button/pinctrl_power_out pins + - arm64: dts: armada-3720-turris-mox: remove mrvl,i2c-fast-mode + - ALSA: usb-audio: fix incorrect clock source setting + - clk: stm32f4: fix post divisor setup for I2S/SAI PLLs + - ARM: dts: am437x-l4: fix typo in can@0 node + - omap5-board-common: remove not physically existing vdds_1v8_main fixed- + regulator + - spi: imx: mx51-ecspi: Reinstate low-speed CONFIGREG delay + - spi: imx: mx51-ecspi: Fix low-speed CONFIGREG delay calculation + - scsi: sr: Return correct event when media event code is 3 + - media: videobuf2-core: dequeue if start_streaming fails + - dmaengine: imx-dma: configure the generic DMA type to make it work + - net, gro: Set inner transport header offset in tcp/udp GRO hook + - net: dsa: sja1105: overwrite dynamic FDB entries with static ones in + .port_fdb_add + - net: dsa: sja1105: invalidate dynamic FDB entries learned concurrently with + statically added ones + - net: phy: micrel: Fix detection of ksz87xx switch + - net: natsemi: Fix missing pci_disable_device() in probe and remove + - gpio: tqmx86: really make IRQ optional + - sctp: move the active_key update after sh_keys is added + - nfp: update ethtool reporting of pauseframe control + - net: ipv6: fix returned variable type in ip6_skb_dst_mtu + - mips: Fix non-POSIX regexp + - bnx2x: fix an error code in bnx2x_nic_load() + - net: pegasus: fix uninit-value in get_interrupt_interval + - net: fec: fix use-after-free in fec_drv_remove + - net: vxge: fix use-after-free in vxge_device_unregister + - blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() + - Bluetooth: defer cleanup of resources in hci_unregister_dev() + - USB: usbtmc: Fix RCU stall warning + - USB: serial: option: add Telit FD980 composition 0x1056 + - USB: serial: ch341: fix character loss at high transfer rates + - USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 + - firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback + - firmware_loader: fix use-after-free in firmware_fallback_sysfs + - ALSA: hda/realtek: add mic quirk for Acer SF314-42 + - ALSA: usb-audio: Add registration quirk for JBL Quantum 600 + - usb: cdns3: Fixed incorrect gadget state + - usb: gadget: f_hid: added GET_IDLE and SET_IDLE handlers + - usb: gadget: f_hid: fixed NULL pointer dereference + - usb: gadget: f_hid: idle uses the highest byte for duration + - usb: otg-fsm: Fix hrtimer list corruption + - clk: fix leak on devm_clk_bulk_get_all() unwind + - scripts/tracing: fix the bug that can't parse raw_trace_func + - tracing / histogram: Give calculation hist_fields a size + - optee: Clear stale cache entries during initialization + - tee: add tee_shm_alloc_kernel_buf() + - optee: Fix memory leak when failing to register shm pages + - tpm_ftpm_tee: Free and unregister TEE shared memory during kexec + - staging: rtl8723bs: Fix a resource leak in sd_int_dpc + - staging: rtl8712: get rid of flush_scheduled_work + - media: rtl28xxu: fix zero-length control request + - pipe: increase minimum default pipe size to 2 pages + - ext4: fix potential htree corruption when growing large_dir directories + - serial: tegra: Only print FIFO error message when an error occurs + - serial: 8250_mtk: fix uart corruption issue when rx power off + - serial: 8250: Mask out floating 16/32-bit bus bits + - MIPS: Malta: Do not byte-swap accesses to the CBUS UART + - serial: 8250_pci: Enumerate Elkhart Lake UARTs via dedicated driver + - serial: 8250_pci: Avoid irq sharing for MSI(-X) interrupts. + - timers: Move clearing of base::timer_running under base:: Lock + - pcmcia: i82092: fix a null pointer dereference bug + - md/raid10: properly indicate failure when ending a failed write request + - KVM: x86: accept userspace interrupt only if no event is injected + - KVM: Do not leak memory for duplicate debugfs directories + - KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds + - arm64: vdso: Avoid ISB after reading from cntvct_el0 + - soc: ixp4xx: fix printing resources + - spi: meson-spicc: fix memory leak in meson_spicc_remove + - soc: ixp4xx/qmgr: fix invalid __iomem access + - perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest + - bpf, selftests: Adjust few selftest result_unpriv outcomes + - libata: fix ata_pio_sector for CONFIG_HIGHMEM + - reiserfs: add check for root_inode in reiserfs_fill_super + - reiserfs: check directory items on read from disk + - virt_wifi: fix error on connect + - alpha: Send stop IPI to send to online CPUs + - net/qla3xxx: fix schedule while atomic in ql_wait_for_drvr_lock and + ql_adapter_reset + - arm64: fix compat syscall return truncation + - Linux 5.4.140 + * Focal update: v5.4.139 upstream stable release (LP: #1941796) + - btrfs: delete duplicated words + other fixes in comments + - btrfs: do not commit logs and transactions during link and rename operations + - btrfs: fix race causing unnecessary inode logging during link and rename + - btrfs: fix lost inode on log replay after mix of fsync, rename and inode + eviction + - regulator: rt5033: Fix n_voltages settings for BUCK and LDO + - spi: stm32h7: fix full duplex irq handler handling + - ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits + - r8152: Fix potential PM refcount imbalance + - qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union() + - net: Fix zero-copy head len calculation. + - nvme: fix nvme_setup_command metadata trace event + - ACPI: fix NULL pointer dereference + - Revert "Bluetooth: Shutdown controller after workqueues are flushed or + cancelled" + - firmware: arm_scmi: Ensure drivers provide a probe function + - firmware: arm_scmi: Add delayed response status check + - bpf: Inherit expanded/patched seen count from old aux data + - bpf: Do not mark insn as seen under speculative path verification + - bpf: Fix leakage under speculation on mispredicted branches + - bpf: Test_verifier, add alu32 bounds tracking tests + - bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit + ones + - bpf, selftests: Adjust few selftest outcomes wrt unreachable code + - spi: mediatek: Fix fifo transfer + - Linux 5.4.139 + * Focal update: v5.4.138 upstream stable release (LP: #1940559) + - net_sched: check error pointer in tcf_dump_walker() + - x86/asm: Ensure asm/proto.h can be included stand-alone + - btrfs: fix rw device counting in __btrfs_free_extra_devids + - btrfs: mark compressed range uptodate only if all bio succeed + - x86/kvm: fix vcpu-id indexed array sizes + - KVM: add missing compat KVM_CLEAR_DIRTY_LOG + - ocfs2: fix zero out valid data + - ocfs2: issue zeroout to EOF blocks + - can: j1939: j1939_xtp_rx_dat_one(): fix rxtimer value between consecutive + TP.DT to 750ms + - can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF + - can: mcba_usb_start(): add missing urb->transfer_dma initialization + - can: usb_8dev: fix memory leak + - can: ems_usb: fix memory leak + - can: esd_usb2: fix memory leak + - HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT + - NIU: fix incorrect error return, missed in previous revert + - nfc: nfcsim: fix use after free during module unload + - cfg80211: Fix possible memory leak in function cfg80211_bss_update + - netfilter: conntrack: adjust stop timestamp to real expiry value + - netfilter: nft_nat: allow to specify layer 4 protocol NAT only + - i40e: Fix logic of disabling queues + - i40e: Fix firmware LLDP agent related warning + - i40e: Fix queue-to-TC mapping on Tx + - i40e: Fix log TC creation failure when max num of queues is exceeded + - tipc: fix sleeping in tipc accept routine + - net: Set true network header for ECN decapsulation + - mlx4: Fix missing error code in mlx4_load_one() + - net: llc: fix skb_over_panic + - net/mlx5: Fix flow table chaining + - net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() + - sctp: fix return value check in __sctp_rcv_asconf_lookup + - tulip: windbond-840: Fix missing pci_disable_device() in probe and remove + - sis900: Fix missing pci_disable_device() in probe and remove + - can: hi311x: fix a signedness bug in hi3110_cmd() + - PCI: mvebu: Setup BAR0 in order to fix MSI + - powerpc/pseries: Fix regression while building external modules + - i40e: Add additional info to PHY type error + - can: j1939: j1939_session_deactivate(): clarify lifetime of session object + - Linux 5.4.138 + * Focal update: v5.4.137 upstream stable release (LP: #1940557) + - selftest: fix build error in tools/testing/selftests/vm/userfaultfd.c + - tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include + - KVM: x86: determine if an exception has an error code only when injecting + it. + - af_unix: fix garbage collect vs MSG_PEEK + - workqueue: fix UAF in pwq_unbound_release_workfn() + - cgroup1: fix leaked context root causing sporadic NULL deref in LTP + - net/802/mrp: fix memleak in mrp_request_join() + - net/802/garp: fix memleak in garp_request_join() + - net: annotate data race around sk_ll_usec + - sctp: move 198 addresses from unusable to private scope + - ipv6: allocate enough headroom in ip6_finish_output2() + - hfs: add missing clean-up in hfs_fill_super + - hfs: fix high memory mapping in hfs_bnode_read + - hfs: add lock nesting notation to hfs_find_init + - firmware: arm_scmi: Fix possible scmi_linux_errmap buffer overflow + - firmware: arm_scmi: Fix range check for the maximum number of pending + messages + - cifs: fix the out of range assignment to bit fields in + parse_server_interfaces + - iomap: remove the length variable in iomap_seek_data + - iomap: remove the length variable in iomap_seek_hole + - ARM: dts: versatile: Fix up interrupt controller node names + - ipv6: ip6_finish_output2: set sk into newly allocated nskb + - Linux 5.4.137 + * Focal update: v5.4.136 upstream stable release (LP: #1939899) + - igc: Fix use-after-free error during reset + - igb: Fix use-after-free error during reset + - igc: change default return of igc_read_phy_reg() + - ixgbe: Fix an error handling path in 'ixgbe_probe()' + - igc: Prefer to use the pci_release_mem_regions method + - igc: Fix an error handling path in 'igc_probe()' + - igb: Fix an error handling path in 'igb_probe()' + - fm10k: Fix an error handling path in 'fm10k_probe()' + - e1000e: Fix an error handling path in 'e1000_probe()' + - iavf: Fix an error handling path in 'iavf_probe()' + - igb: Check if num of q_vectors is smaller than max before array access + - igb: Fix position of assignment to *ring + - gve: Fix an error handling path in 'gve_probe()' + - ipv6: fix 'disable_policy' for fwd packets + - selftests: icmp_redirect: remove from checking for IPv6 route get + - selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect + - pwm: sprd: Ensure configuring period and duty_cycle isn't wrongly skipped + - cxgb4: fix IRQ free race during driver unload + - nvme-pci: do not call nvme_dev_remove_admin from nvme_remove + - perf probe: Fix dso->nsinfo refcounting + - perf env: Fix sibling_dies memory leak + - perf test session_topology: Delete session->evlist + - perf test event_update: Fix memory leak of evlist + - perf dso: Fix memory leak in dso__new_map() + - perf script: Fix memory 'threads' and 'cpus' leaks on exit + - perf lzma: Close lzma stream on exit + - perf probe-file: Delete namelist in del_events() on the error path + - perf data: Close all files in close_dir() + - spi: imx: add a check for speed_hz before calculating the clock + - spi: stm32: Use dma_request_chan() instead dma_request_slave_channel() + - spi: stm32: fixes pm_runtime calls in probe/remove + - regulator: hi6421: Use correct variable type for regmap api val argument + - regulator: hi6421: Fix getting wrong drvdata + - spi: mediatek: fix fifo rx mode + - ASoC: rt5631: Fix regcache sync errors on resume + - liquidio: Fix unintentional sign extension issue on left shift of u16 + - s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] + - bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats + - bpftool: Check malloc return value in mount_bpffs_for_pin + - net: fix uninit-value in caif_seqpkt_sendmsg + - efi/tpm: Differentiate missing and invalid final event log table. + - net: decnet: Fix sleeping inside in af_decnet + - KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash + - KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak + - net: sched: fix memory leak in tcindex_partial_destroy_work + - netrom: Decrease sock refcount when sock timers expire + - scsi: iscsi: Fix iface sysfs attr detection + - scsi: target: Fix protect handling in WRITE SAME(32) + - spi: cadence: Correct initialisation of runtime PM again + - bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence. + - bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() + - bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() + - bnxt_en: Check abort error state in bnxt_half_open_nic() + - net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition + - net/tcp_fastopen: fix data races around tfo_active_disable_stamp + - net: hns3: fix rx VLAN offload state inconsistent issue + - net/sched: act_skbmod: Skip non-Ethernet packets + - ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions + - nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING + - Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" + - afs: Fix tracepoint string placement with built-in AFS + - r8169: Avoid duplicate sysfs entry creation error + - nvme: set the PRACT bit when using Write Zeroes with T10 PI + - sctp: update active_key for asoc when old key is being replaced + - net: sched: cls_api: Fix the the wrong parameter + - drm/panel: raspberrypi-touchscreen: Prevent double-free + - proc: Avoid mixing integer types in mem_rw() + - s390/ftrace: fix ftrace_update_ftrace_func implementation + - s390/boot: fix use of expolines in the DMA code + - ALSA: usb-audio: Add missing proc text entry for BESPOKEN type + - ALSA: usb-audio: Add registration quirk for JBL Quantum headsets + - ALSA: sb: Fix potential ABBA deadlock in CSP driver + - ALSA: hdmi: Expose all pins on MSI MS-7C94 board + - xhci: Fix lost USB 2 remote wake + - KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow + - KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state + - usb: hub: Disable USB 3 device initiated lpm if exit latency is too high + - usb: hub: Fix link power management max exit latency (MEL) calculations + - USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS + - usb: max-3421: Prevent corruption of freed memory + - usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() + - USB: serial: option: add support for u-blox LARA-R6 family + - USB: serial: cp210x: fix comments for GE CS1000 + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. + - firmware/efi: Tell memblock about EFI iomem reservations + - tracing/histogram: Rename "cpu" to "common_cpu" + - tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. + - btrfs: check for missing device in btrfs_trim_fs + - media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() + - ixgbe: Fix packet corruption due to missing DMA sync + - selftest: use mmap instead of posix_memalign to allocate memory + - userfaultfd: do not untag user pointers + - hugetlbfs: fix mount mode command line processing + - rbd: don't hold lock_rwsem while running_list is being drained + - rbd: always kick acquire on "acquired" and "released" notifications + - nds32: fix up stack guard gap + - drm: Return -ENOTTY for non-drm ioctls + - net: dsa: mv88e6xxx: use correct .stats_set_histogram() on Topaz + - net: bcmgenet: ensure EXT_ENERGY_DET_MASK is clear + - iio: accel: bma180: Use explicit member assignment + - iio: accel: bma180: Fix BMA25x bandwidth register values + - btrfs: compression: don't try to compress if we don't have enough pages + - PCI: Mark AMD Navi14 GPU ATS as broken + - perf inject: Close inject.output on exit + - xhci: add xhci_get_virt_ep() helper + - Linux 5.4.136 + * Focal update: v5.4.135 upstream stable release (LP: #1939442) + - ARM: dts: gemini: rename mdio to the right name + - ARM: dts: gemini: add device_type on pci + - ARM: dts: rockchip: fix pinctrl sleep nodename for rk3036-kylin and rk3288 + - arm64: dts: rockchip: fix pinctrl sleep nodename for rk3399.dtsi + - ARM: dts: rockchip: Fix the timer clocks order + - ARM: dts: rockchip: Fix IOMMU nodes properties on rk322x + - ARM: dts: rockchip: Fix power-controller node names for rk3066a + - ARM: dts: rockchip: Fix power-controller node names for rk3188 + - ARM: dts: rockchip: Fix power-controller node names for rk3288 + - arm64: dts: rockchip: Fix power-controller node names for px30 + - arm64: dts: rockchip: Fix power-controller node names for rk3328 + - reset: ti-syscon: fix to_ti_syscon_reset_data macro + - ARM: brcmstb: dts: fix NAND nodes names + - ARM: Cygnus: dts: fix NAND nodes names + - ARM: NSP: dts: fix NAND nodes names + - ARM: dts: BCM63xx: Fix NAND nodes names + - ARM: dts: Hurricane 2: Fix NAND nodes names + - ARM: dts: imx6: phyFLEX: Fix UART hardware flow control + - ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info + - rtc: mxc_v2: add missing MODULE_DEVICE_TABLE + - kbuild: sink stdout from cmd for silent build + - ARM: dts: am57xx-cl-som-am57x: fix ti,no-reset-on-init flag for gpios + - ARM: dts: am437x-gp-evm: fix ti,no-reset-on-init flag for gpios + - ARM: dts: stm32: fix gpio-keys node on STM32 MCU boards + - ARM: dts: stm32: fix RCC node name on stm32f429 MCU + - ARM: dts: stm32: fix timer nodes on STM32 MCU to prevent warnings + - arm64: dts: juno: Update SCPI nodes as per the YAML schema + - ARM: dts: rockchip: fix supply properties in io-domains nodes + - ARM: dts: stm32: fix i2c node name on stm32f746 to prevent warnings + - ARM: dts: stm32: move stmmac axi config in ethernet node on stm32mp15 + - soc/tegra: fuse: Fix Tegra234-only builds + - firmware: tegra: bpmp: Fix Tegra234-only builds + - arm64: dts: ls208xa: remove bus-num from dspi node + - arm64: dts: imx8mq: assign PCIe clocks + - thermal/core: Correct function name thermal_zone_device_unregister() + - kbuild: mkcompile_h: consider timestamp if KBUILD_BUILD_TIMESTAMP is set + - rtc: max77686: Do not enforce (incorrect) interrupt trigger type + - scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 + - scsi: libsas: Add LUN number check in .slave_alloc callback + - scsi: libfc: Fix array index out of bound exception + - scsi: qedf: Add check to synchronize abort and flush + - sched/fair: Fix CFS bandwidth hrtimer expiry type + - s390: introduce proper type handling call_on_stack() macro + - cifs: prevent NULL deref in cifs_compose_mount_options() + - arm64: dts: armada-3720-turris-mox: add firmware node + - firmware: turris-mox-rwtm: add marvell,armada-3700-rwtm-firmware compatible + string + - arm64: dts: marvell: armada-37xx: move firmware node to generic dtsi file + - f2fs: Show casefolding support only when supported + - usb: cdns3: Enable TDL_CHK only for OUT ep + - Revert "UBUNTU: SAUCE: Revert "mm: memcg/slab: fix memory leak at non-root + kmem_cache destroy"" + - mm: slab: fix kmem_cache_create failed when sysfs node not destroyed + - dm writecache: return the exact table values that were set + - net: dsa: mv88e6xxx: enable .port_set_policy() on Topaz + - net: dsa: mv88e6xxx: enable .rmu_disable() on Topaz + - net: ipv6: fix return value of ip6_skb_dst_mtu + - netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo + - net/sched: act_ct: fix err check for nf_conntrack_confirm + - net: bridge: sync fdb to new unicast-filtering ports + - net: bcmgenet: Ensure all TX/RX queues DMAs are disabled + - net: ip_tunnel: fix mtu calculation for ETHER tunnel devices + - net: moxa: fix UAF in moxart_mac_probe + - net: qcom/emac: fix UAF in emac_remove + - net: ti: fix UAF in tlan_remove_one + - net: send SYNACK packet with accepted fwmark + - net: validate lwtstate->data before returning from skb_tunnel_info() + - net: fddi: fix UAF in fza_probe + - dma-buf/sync_file: Don't leak fences on merge failure + - tcp: annotate data races around tp->mtu_info + - ipv6: tcp: drop silly ICMPv6 packet too big messages + - bpftool: Properly close va_list 'ap' by va_end() on error + - perf test bpf: Free obj_buf + - udp: annotate data races around unix_sk(sk)->gso_size + - Linux 5.4.135 + * Focal update: v5.4.134 upstream stable release (LP: #1939440) + - KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio + - KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled + - KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() + - scsi: core: Fix bad pointer dereference when ehandler kthread is invalid + - tracing: Do not reference char * as a string in histograms + - cgroup: verify that source is a string + - fbmem: Do not delete the mode that is still in use + - net: moxa: Use devm_platform_get_and_ioremap_resource() + - dmaengine: fsl-qdma: check dma_set_mask return value + - srcu: Fix broken node geometry after early ssp init + - tty: serial: fsl_lpuart: fix the potential risk of division or modulo by + zero + - misc/libmasm/module: Fix two use after free in ibmasm_init_one + - misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge + - iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get(). + - iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get() + - ALSA: usx2y: Don't call free_pages_exact() with NULL address + - Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" + - w1: ds2438: fixing bug that would always get page0 + - scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() + - scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology + - scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the + SGLs + - scsi: core: Cap scsi_host cmd_per_lun at can_queue + - ALSA: ac97: fix PM reference leak in ac97_bus_remove() + - tty: serial: 8250: serial_cs: Fix a memory leak in error handling path + - scsi: scsi_dh_alua: Check for negative result value + - fs/jfs: Fix missing error code in lmLogInit() + - scsi: megaraid_sas: Fix resource leak in case of probe failure + - scsi: megaraid_sas: Early detection of VD deletion through RaidMap update + - scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs + - scsi: iscsi: Add iscsi_cls_conn refcount helpers + - scsi: iscsi: Fix conn use after free during resets + - scsi: iscsi: Fix shost->max_id use + - scsi: qedi: Fix null ref during abort handling + - mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE + - mfd: cpcap: Fix cpcap dmamask not set warnings + - ASoC: img: Fix PM reference leak in img_i2s_in_probe() + - serial: tty: uartlite: fix console setup + - s390/sclp_vt220: fix console name to match device + - ALSA: sb: Fix potential double-free of CSP mixer elements + - powerpc/ps3: Add dma_mask to ps3_dma_region + - iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get + fails + - iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation + - gpio: zynq: Check return value of pm_runtime_get_sync + - ALSA: ppc: fix error return code in snd_pmac_probe() + - selftests/powerpc: Fix "no_handler" EBB selftest + - gpio: pca953x: Add support for the On Semi pca9655 + - ASoC: soc-core: Fix the error return code in + snd_soc_of_parse_audio_routing() + - s390/processor: always inline stap() and __load_psw_mask() + - s390/ipl_parm: fix program check new psw handling + - s390/mem_detect: fix diag260() program check new psw handling + - s390/mem_detect: fix tprot() program check new psw handling + - Input: hideep - fix the uninitialized use in hideep_nvm_unlock() + - ALSA: bebob: add support for ToneWeal FW66 + - ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count + - ALSA: usb-audio: scarlett2: Fix data_mutex lock + - ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values + - usb: gadget: f_hid: fix endianness issue with descriptors + - usb: gadget: hid: fix error return code in hid_bind() + - powerpc/boot: Fixup device-tree on little endian + - ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters + - backlight: lm3630a: Fix return code of .update_status() callback + - ALSA: hda: Add IRQ check for platform_get_irq() + - ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions + - staging: rtl8723bs: fix macro value for 2.4Ghz only device + - intel_th: Wait until port is in reset before programming it + - i2c: core: Disable client irq on reboot/shutdown + - power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE + - power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE + - pwm: spear: Don't modify HW state in .remove callback + - power: supply: ab8500: Avoid NULL pointers + - power: supply: max17042: Do not enforce (incorrect) interrupt trigger type + - power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE + - ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 + - PCI/P2PDMA: Avoid pci_get_slot(), which may sleep + - watchdog: Fix possible use-after-free in wdt_startup() + - watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() + - watchdog: Fix possible use-after-free by calling del_timer_sync() + - watchdog: imx_sc_wdt: fix pretimeout + - x86/fpu: Return proper error codes from user access functions + - PCI: tegra: Add missing MODULE_DEVICE_TABLE + - orangefs: fix orangefs df output. + - ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty + - NFS: nfs_find_open_context() may only select open files + - power: supply: charger-manager: add missing MODULE_DEVICE_TABLE + - power: supply: ab8500: add missing MODULE_DEVICE_TABLE + - pwm: img: Fix PM reference leak in img_pwm_enable() + - pwm: tegra: Don't modify HW state in .remove callback + - ACPI: AMBA: Fix resource name in /proc/iomem + - ACPI: video: Add quirk for the Dell Vostro 3350 + - virtio-blk: Fix memory leak among suspend/resume procedure + - virtio_net: Fix error handling in virtnet_restore() + - virtio_console: Assure used length from device is limited + - x86/signal: Detect and prevent an alternate signal stack overflow + - f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs + - PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun + - power: supply: rt5033_battery: Fix device tree enumeration + - NFSv4: Initialise connection to the server in nfs4_alloc_client() + - um: fix error return code in slip_open() + - um: fix error return code in winch_tramp() + - watchdog: aspeed: fix hardware timeout calculation + - nfs: fix acl memory leak of posix_acl_create() + - ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode + - PCI: iproc: Fix multi-MSI base vector number allocation + - PCI: iproc: Support multi-MSI only on uniprocessor kernel + - x86/fpu: Limit xstate copy size in xstateregs_set() + - pwm: imx1: Don't disable clocks at device remove time + - virtio_net: move tx vq operation under tx queue lock + - nvme-tcp: can't set sk_user_data without write_lock + - ALSA: isa: Fix error return code in snd_cmi8330_probe() + - NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times + - hexagon: use common DISCARDS macro + - ARM: dts: gemini-rut1xx: remove duplicate ethernet node + - reset: a10sr: add missing of_match_table reference + - ARM: exynos: add missing of_node_put for loop iteration + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 + - memory: atmel-ebi: add missing of_node_put for loop iteration + - reset: brcmstb: Add missing MODULE_DEVICE_TABLE + - memory: pl353: Fix error return code in pl353_smc_probe() + - rtc: fix snprintf() checking in is_rtc_hctosys() + - arm64: dts: renesas: v3msk: Fix memory size + - ARM: dts: r8a7779, marzen: Fix DU clock names + - firmware: tegra: Fix error return code in tegra210_bpmp_init() + - firmware: arm_scmi: Reset Rx buffer to max size during async commands + - ARM: dts: BCM5301X: Fixup SPI binding + - reset: bail if try_module_get() fails + - memory: fsl_ifc: fix leak of IO mapping on probe failure + - memory: fsl_ifc: fix leak of private memory on probe failure + - ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: imx6q-dhcom: Fix ethernet reset time properties + - ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems + - ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery + - thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations + - firmware: turris-mox-rwtm: fix reply status decoding function + - firmware: turris-mox-rwtm: report failures better + - firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng + - scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() + - mips: always link byteswap helpers into decompressor + - mips: disable branch profiling in boot/decompress.o + - MIPS: vdso: Invalid GIC access through VDSO + - scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() + - misc: alcor_pci: fix inverted branch condition + - Linux 5.4.134 + + [ Ubuntu: 5.4.0-86.97 ] + + * s390x BPF JIT vulnerabilities (LP: #1943960) + - SAUCE: s390/bpf: Fix 64-bit subtraction of the -0x80000000 constant + - SAUCE: s390/bpf: Fix optimizing out zero-extensions + + -- Tim Gardner Fri, 08 Oct 2021 07:12:01 -0600 + +linux-azure (5.4.0-1061.64) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1061.64 -proposed tracker (LP: #1946377) + + * Azure kernels fail to boot on some large Azure instance types (LP: #1940564) + - Revert "scsi: core: Cap scsi_host cmd_per_lun at can_queue" + + -- Tim Gardner Thu, 07 Oct 2021 09:11:51 -0600 + +linux-azure (5.4.0-1059.62) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1059.62 -proposed tracker (LP: #1942532) + + * binderfs support is not enabled (LP: #1925246) + - [Config] linux-azure: CONFIG_ANDROID_BINDERFS=m + + [ Ubuntu: 5.4.0-85.95 ] + + * focal/linux: 5.4.0-85.95 -proposed tracker (LP: #1942557) + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - [Config] Disable virtualbox dkms build + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - Disable CONFIG_HISI_DMA + - [Config] Record hisi_dma no longer built for arm64 + * memory leaking when removing a profile (LP: #1939915) + - apparmor: Fix memory leak of profile proxy + * CryptoExpress EP11 cards are going offline (LP: #1939618) + - s390/zcrypt: Support for CCA protected key block version 2 + - s390: Replace zero-length array with flexible-array member + - s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow + - s390/zcrypt: replace snprintf/sprintf with scnprintf + - s390/ap: Remove ap device suspend and resume callbacks + - s390/zcrypt: use fallthrough; + - s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc + - s390/ap: remove power management code from ap bus and drivers + - s390/ap: introduce new ap function ap_get_qdev() + - s390/zcrypt: use kzalloc + - s390/zcrypt: fix smatch warnings + - s390/zcrypt: code beautification and struct field renames + - s390/zcrypt: split ioctl function into smaller code units + - s390/ap: rename and clarify ap state machine related stuff + - s390/zcrypt: provide cex4 cca sysfs attributes for cex3 + - s390/ap: rework crypto config info and default domain code + - s390/zcrypt: simplify cca_findcard2 loop code + - s390/zcrypt: remove set_fs() invocation in zcrypt device driver + - s390/ap: remove unnecessary spin_lock_init() + - s390/zcrypt: Support for CCA APKA master keys + - s390/zcrypt: introduce msg tracking in zcrypt functions + - s390/ap: split ap queue state machine state from device state + - s390/ap: add error response code field for ap queue devices + - s390/ap: add card/queue deconfig state + - s390/sclp: Add support for SCLP AP adapter config/deconfig + - s390/ap: Support AP card SCLP config and deconfig operations + - s390/ap/zcrypt: revisit ap and zcrypt error handling + - s390/zcrypt: move ap_msg param one level up the call chain + - s390/zcrypt: Introduce Failure Injection feature + - s390/zcrypt: fix wrong format specifications + - s390/ap: fix ap devices reference counting + - s390/zcrypt: return EIO when msg retry limit reached + - s390/zcrypt: fix zcard and zqueue hot-unplug memleak + - s390/ap: Fix hanging ioctl caused by wrong msg counter + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (LP: #1926142) + - SAUCE: selftests/memfd: fix build when F_SEAL_FUTURE_WRITE is not defined + * [SRU] Ice driver causes the kernel to crash with Ubuntu 20.04.2 with ethtool + specific register commands (LP: #1939855) + - ice: Fix bad register reads + * ubunut_kernel_selftests: memory-hotplug: avoid spamming logs with + dump_page() (LP: #1941829) + - selftests: memory-hotplug: avoid spamming logs with dump_page(), ratio limit + hot-remove error test + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - e1000e: Do not take care about recovery NVM checksum + * Focal update: v5.4.140 upstream stable release (LP: #1941798) + - Revert "ACPICA: Fix memory leak caused by _CID repair function" + - ALSA: seq: Fix racy deletion of subscriber + - arm64: dts: ls1028a: fix node name for the sysclk + - ARM: imx: add missing iounmap() + - ARM: imx: add missing clk_disable_unprepare() + - ARM: dts: imx6qdl-sr-som: Increase the PHY reset duration to 10ms + - ARM: dts: colibri-imx6ull: limit SDIO clock to 25MHz + - ARM: imx: fix missing 3rd argument in macro imx_mmdc_perf_init + - ARM: dts: imx: Swap M53Menlo pinctrl_power_button/pinctrl_power_out pins + - arm64: dts: armada-3720-turris-mox: remove mrvl,i2c-fast-mode + - ALSA: usb-audio: fix incorrect clock source setting + - clk: stm32f4: fix post divisor setup for I2S/SAI PLLs + - ARM: dts: am437x-l4: fix typo in can@0 node + - omap5-board-common: remove not physically existing vdds_1v8_main fixed- + regulator + - spi: imx: mx51-ecspi: Reinstate low-speed CONFIGREG delay + - spi: imx: mx51-ecspi: Fix low-speed CONFIGREG delay calculation + - scsi: sr: Return correct event when media event code is 3 + - media: videobuf2-core: dequeue if start_streaming fails + - dmaengine: imx-dma: configure the generic DMA type to make it work + - net, gro: Set inner transport header offset in tcp/udp GRO hook + - net: dsa: sja1105: overwrite dynamic FDB entries with static ones in + .port_fdb_add + - net: dsa: sja1105: invalidate dynamic FDB entries learned concurrently with + statically added ones + - net: phy: micrel: Fix detection of ksz87xx switch + - net: natsemi: Fix missing pci_disable_device() in probe and remove + - gpio: tqmx86: really make IRQ optional + - sctp: move the active_key update after sh_keys is added + - nfp: update ethtool reporting of pauseframe control + - net: ipv6: fix returned variable type in ip6_skb_dst_mtu + - mips: Fix non-POSIX regexp + - bnx2x: fix an error code in bnx2x_nic_load() + - net: pegasus: fix uninit-value in get_interrupt_interval + - net: fec: fix use-after-free in fec_drv_remove + - net: vxge: fix use-after-free in vxge_device_unregister + - blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() + - Bluetooth: defer cleanup of resources in hci_unregister_dev() + - USB: usbtmc: Fix RCU stall warning + - USB: serial: option: add Telit FD980 composition 0x1056 + - USB: serial: ch341: fix character loss at high transfer rates + - USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 + - firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback + - firmware_loader: fix use-after-free in firmware_fallback_sysfs + - ALSA: hda/realtek: add mic quirk for Acer SF314-42 + - ALSA: usb-audio: Add registration quirk for JBL Quantum 600 + - usb: cdns3: Fixed incorrect gadget state + - usb: gadget: f_hid: added GET_IDLE and SET_IDLE handlers + - usb: gadget: f_hid: fixed NULL pointer dereference + - usb: gadget: f_hid: idle uses the highest byte for duration + - usb: otg-fsm: Fix hrtimer list corruption + - clk: fix leak on devm_clk_bulk_get_all() unwind + - scripts/tracing: fix the bug that can't parse raw_trace_func + - tracing / histogram: Give calculation hist_fields a size + - optee: Clear stale cache entries during initialization + - tee: add tee_shm_alloc_kernel_buf() + - optee: Fix memory leak when failing to register shm pages + - tpm_ftpm_tee: Free and unregister TEE shared memory during kexec + - staging: rtl8723bs: Fix a resource leak in sd_int_dpc + - staging: rtl8712: get rid of flush_scheduled_work + - media: rtl28xxu: fix zero-length control request + - pipe: increase minimum default pipe size to 2 pages + - ext4: fix potential htree corruption when growing large_dir directories + - serial: tegra: Only print FIFO error message when an error occurs + - serial: 8250_mtk: fix uart corruption issue when rx power off + - serial: 8250: Mask out floating 16/32-bit bus bits + - MIPS: Malta: Do not byte-swap accesses to the CBUS UART + - serial: 8250_pci: Enumerate Elkhart Lake UARTs via dedicated driver + - serial: 8250_pci: Avoid irq sharing for MSI(-X) interrupts. + - timers: Move clearing of base::timer_running under base:: Lock + - pcmcia: i82092: fix a null pointer dereference bug + - md/raid10: properly indicate failure when ending a failed write request + - KVM: x86: accept userspace interrupt only if no event is injected + - KVM: Do not leak memory for duplicate debugfs directories + - KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds + - arm64: vdso: Avoid ISB after reading from cntvct_el0 + - soc: ixp4xx: fix printing resources + - spi: meson-spicc: fix memory leak in meson_spicc_remove + - soc: ixp4xx/qmgr: fix invalid __iomem access + - perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest + - bpf, selftests: Adjust few selftest result_unpriv outcomes + - libata: fix ata_pio_sector for CONFIG_HIGHMEM + - reiserfs: add check for root_inode in reiserfs_fill_super + - reiserfs: check directory items on read from disk + - virt_wifi: fix error on connect + - alpha: Send stop IPI to send to online CPUs + - net/qla3xxx: fix schedule while atomic in ql_wait_for_drvr_lock and + ql_adapter_reset + - arm64: fix compat syscall return truncation + - Linux 5.4.140 + * Focal update: v5.4.139 upstream stable release (LP: #1941796) + - btrfs: delete duplicated words + other fixes in comments + - btrfs: do not commit logs and transactions during link and rename operations + - btrfs: fix race causing unnecessary inode logging during link and rename + - btrfs: fix lost inode on log replay after mix of fsync, rename and inode + eviction + - regulator: rt5033: Fix n_voltages settings for BUCK and LDO + - spi: stm32h7: fix full duplex irq handler handling + - ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits + - r8152: Fix potential PM refcount imbalance + - qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union() + - net: Fix zero-copy head len calculation. + - nvme: fix nvme_setup_command metadata trace event + - ACPI: fix NULL pointer dereference + - Revert "Bluetooth: Shutdown controller after workqueues are flushed or + cancelled" + - firmware: arm_scmi: Ensure drivers provide a probe function + - firmware: arm_scmi: Add delayed response status check + - bpf: Inherit expanded/patched seen count from old aux data + - bpf: Do not mark insn as seen under speculative path verification + - bpf: Fix leakage under speculation on mispredicted branches + - bpf: Test_verifier, add alu32 bounds tracking tests + - bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit + ones + - bpf, selftests: Adjust few selftest outcomes wrt unreachable code + - spi: mediatek: Fix fifo transfer + - Linux 5.4.139 + * Focal update: v5.4.138 upstream stable release (LP: #1940559) + - net_sched: check error pointer in tcf_dump_walker() + - x86/asm: Ensure asm/proto.h can be included stand-alone + - btrfs: fix rw device counting in __btrfs_free_extra_devids + - btrfs: mark compressed range uptodate only if all bio succeed + - x86/kvm: fix vcpu-id indexed array sizes + - KVM: add missing compat KVM_CLEAR_DIRTY_LOG + - ocfs2: fix zero out valid data + - ocfs2: issue zeroout to EOF blocks + - can: j1939: j1939_xtp_rx_dat_one(): fix rxtimer value between consecutive + TP.DT to 750ms + - can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF + - can: mcba_usb_start(): add missing urb->transfer_dma initialization + - can: usb_8dev: fix memory leak + - can: ems_usb: fix memory leak + - can: esd_usb2: fix memory leak + - HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT + - NIU: fix incorrect error return, missed in previous revert + - nfc: nfcsim: fix use after free during module unload + - cfg80211: Fix possible memory leak in function cfg80211_bss_update + - netfilter: conntrack: adjust stop timestamp to real expiry value + - netfilter: nft_nat: allow to specify layer 4 protocol NAT only + - i40e: Fix logic of disabling queues + - i40e: Fix firmware LLDP agent related warning + - i40e: Fix queue-to-TC mapping on Tx + - i40e: Fix log TC creation failure when max num of queues is exceeded + - tipc: fix sleeping in tipc accept routine + - net: Set true network header for ECN decapsulation + - mlx4: Fix missing error code in mlx4_load_one() + - net: llc: fix skb_over_panic + - net/mlx5: Fix flow table chaining + - net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() + - sctp: fix return value check in __sctp_rcv_asconf_lookup + - tulip: windbond-840: Fix missing pci_disable_device() in probe and remove + - sis900: Fix missing pci_disable_device() in probe and remove + - can: hi311x: fix a signedness bug in hi3110_cmd() + - PCI: mvebu: Setup BAR0 in order to fix MSI + - powerpc/pseries: Fix regression while building external modules + - i40e: Add additional info to PHY type error + - can: j1939: j1939_session_deactivate(): clarify lifetime of session object + - Linux 5.4.138 + * Focal update: v5.4.137 upstream stable release (LP: #1940557) + - selftest: fix build error in tools/testing/selftests/vm/userfaultfd.c + - tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include + - KVM: x86: determine if an exception has an error code only when injecting + it. + - af_unix: fix garbage collect vs MSG_PEEK + - workqueue: fix UAF in pwq_unbound_release_workfn() + - cgroup1: fix leaked context root causing sporadic NULL deref in LTP + - net/802/mrp: fix memleak in mrp_request_join() + - net/802/garp: fix memleak in garp_request_join() + - net: annotate data race around sk_ll_usec + - sctp: move 198 addresses from unusable to private scope + - ipv6: allocate enough headroom in ip6_finish_output2() + - hfs: add missing clean-up in hfs_fill_super + - hfs: fix high memory mapping in hfs_bnode_read + - hfs: add lock nesting notation to hfs_find_init + - firmware: arm_scmi: Fix possible scmi_linux_errmap buffer overflow + - firmware: arm_scmi: Fix range check for the maximum number of pending + messages + - cifs: fix the out of range assignment to bit fields in + parse_server_interfaces + - iomap: remove the length variable in iomap_seek_data + - iomap: remove the length variable in iomap_seek_hole + - ARM: dts: versatile: Fix up interrupt controller node names + - ipv6: ip6_finish_output2: set sk into newly allocated nskb + - Linux 5.4.137 + * Focal update: v5.4.136 upstream stable release (LP: #1939899) + - igc: Fix use-after-free error during reset + - igb: Fix use-after-free error during reset + - igc: change default return of igc_read_phy_reg() + - ixgbe: Fix an error handling path in 'ixgbe_probe()' + - igc: Prefer to use the pci_release_mem_regions method + - igc: Fix an error handling path in 'igc_probe()' + - igb: Fix an error handling path in 'igb_probe()' + - fm10k: Fix an error handling path in 'fm10k_probe()' + - e1000e: Fix an error handling path in 'e1000_probe()' + - iavf: Fix an error handling path in 'iavf_probe()' + - igb: Check if num of q_vectors is smaller than max before array access + - igb: Fix position of assignment to *ring + - gve: Fix an error handling path in 'gve_probe()' + - ipv6: fix 'disable_policy' for fwd packets + - selftests: icmp_redirect: remove from checking for IPv6 route get + - selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect + - pwm: sprd: Ensure configuring period and duty_cycle isn't wrongly skipped + - cxgb4: fix IRQ free race during driver unload + - nvme-pci: do not call nvme_dev_remove_admin from nvme_remove + - perf probe: Fix dso->nsinfo refcounting + - perf env: Fix sibling_dies memory leak + - perf test session_topology: Delete session->evlist + - perf test event_update: Fix memory leak of evlist + - perf dso: Fix memory leak in dso__new_map() + - perf script: Fix memory 'threads' and 'cpus' leaks on exit + - perf lzma: Close lzma stream on exit + - perf probe-file: Delete namelist in del_events() on the error path + - perf data: Close all files in close_dir() + - spi: imx: add a check for speed_hz before calculating the clock + - spi: stm32: Use dma_request_chan() instead dma_request_slave_channel() + - spi: stm32: fixes pm_runtime calls in probe/remove + - regulator: hi6421: Use correct variable type for regmap api val argument + - regulator: hi6421: Fix getting wrong drvdata + - spi: mediatek: fix fifo rx mode + - ASoC: rt5631: Fix regcache sync errors on resume + - liquidio: Fix unintentional sign extension issue on left shift of u16 + - s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] + - bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats + - bpftool: Check malloc return value in mount_bpffs_for_pin + - net: fix uninit-value in caif_seqpkt_sendmsg + - efi/tpm: Differentiate missing and invalid final event log table. + - net: decnet: Fix sleeping inside in af_decnet + - KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash + - KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak + - net: sched: fix memory leak in tcindex_partial_destroy_work + - netrom: Decrease sock refcount when sock timers expire + - scsi: iscsi: Fix iface sysfs attr detection + - scsi: target: Fix protect handling in WRITE SAME(32) + - spi: cadence: Correct initialisation of runtime PM again + - bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence. + - bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() + - bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() + - bnxt_en: Check abort error state in bnxt_half_open_nic() + - net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition + - net/tcp_fastopen: fix data races around tfo_active_disable_stamp + - net: hns3: fix rx VLAN offload state inconsistent issue + - net/sched: act_skbmod: Skip non-Ethernet packets + - ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions + - nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING + - Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" + - afs: Fix tracepoint string placement with built-in AFS + - r8169: Avoid duplicate sysfs entry creation error + - nvme: set the PRACT bit when using Write Zeroes with T10 PI + - sctp: update active_key for asoc when old key is being replaced + - net: sched: cls_api: Fix the the wrong parameter + - drm/panel: raspberrypi-touchscreen: Prevent double-free + - proc: Avoid mixing integer types in mem_rw() + - s390/ftrace: fix ftrace_update_ftrace_func implementation + - s390/boot: fix use of expolines in the DMA code + - ALSA: usb-audio: Add missing proc text entry for BESPOKEN type + - ALSA: usb-audio: Add registration quirk for JBL Quantum headsets + - ALSA: sb: Fix potential ABBA deadlock in CSP driver + - ALSA: hdmi: Expose all pins on MSI MS-7C94 board + - xhci: Fix lost USB 2 remote wake + - KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow + - KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state + - usb: hub: Disable USB 3 device initiated lpm if exit latency is too high + - usb: hub: Fix link power management max exit latency (MEL) calculations + - USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS + - usb: max-3421: Prevent corruption of freed memory + - usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() + - USB: serial: option: add support for u-blox LARA-R6 family + - USB: serial: cp210x: fix comments for GE CS1000 + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. + - firmware/efi: Tell memblock about EFI iomem reservations + - tracing/histogram: Rename "cpu" to "common_cpu" + - tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. + - btrfs: check for missing device in btrfs_trim_fs + - media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() + - ixgbe: Fix packet corruption due to missing DMA sync + - selftest: use mmap instead of posix_memalign to allocate memory + - userfaultfd: do not untag user pointers + - hugetlbfs: fix mount mode command line processing + - rbd: don't hold lock_rwsem while running_list is being drained + - rbd: always kick acquire on "acquired" and "released" notifications + - nds32: fix up stack guard gap + - drm: Return -ENOTTY for non-drm ioctls + - net: dsa: mv88e6xxx: use correct .stats_set_histogram() on Topaz + - net: bcmgenet: ensure EXT_ENERGY_DET_MASK is clear + - iio: accel: bma180: Use explicit member assignment + - iio: accel: bma180: Fix BMA25x bandwidth register values + - btrfs: compression: don't try to compress if we don't have enough pages + - PCI: Mark AMD Navi14 GPU ATS as broken + - perf inject: Close inject.output on exit + - xhci: add xhci_get_virt_ep() helper + - Linux 5.4.136 + * Focal update: v5.4.135 upstream stable release (LP: #1939442) + - ARM: dts: gemini: rename mdio to the right name + - ARM: dts: gemini: add device_type on pci + - ARM: dts: rockchip: fix pinctrl sleep nodename for rk3036-kylin and rk3288 + - arm64: dts: rockchip: fix pinctrl sleep nodename for rk3399.dtsi + - ARM: dts: rockchip: Fix the timer clocks order + - ARM: dts: rockchip: Fix IOMMU nodes properties on rk322x + - ARM: dts: rockchip: Fix power-controller node names for rk3066a + - ARM: dts: rockchip: Fix power-controller node names for rk3188 + - ARM: dts: rockchip: Fix power-controller node names for rk3288 + - arm64: dts: rockchip: Fix power-controller node names for px30 + - arm64: dts: rockchip: Fix power-controller node names for rk3328 + - reset: ti-syscon: fix to_ti_syscon_reset_data macro + - ARM: brcmstb: dts: fix NAND nodes names + - ARM: Cygnus: dts: fix NAND nodes names + - ARM: NSP: dts: fix NAND nodes names + - ARM: dts: BCM63xx: Fix NAND nodes names + - ARM: dts: Hurricane 2: Fix NAND nodes names + - ARM: dts: imx6: phyFLEX: Fix UART hardware flow control + - ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info + - rtc: mxc_v2: add missing MODULE_DEVICE_TABLE + - kbuild: sink stdout from cmd for silent build + - ARM: dts: am57xx-cl-som-am57x: fix ti,no-reset-on-init flag for gpios + - ARM: dts: am437x-gp-evm: fix ti,no-reset-on-init flag for gpios + - ARM: dts: stm32: fix gpio-keys node on STM32 MCU boards + - ARM: dts: stm32: fix RCC node name on stm32f429 MCU + - ARM: dts: stm32: fix timer nodes on STM32 MCU to prevent warnings + - arm64: dts: juno: Update SCPI nodes as per the YAML schema + - ARM: dts: rockchip: fix supply properties in io-domains nodes + - ARM: dts: stm32: fix i2c node name on stm32f746 to prevent warnings + - ARM: dts: stm32: move stmmac axi config in ethernet node on stm32mp15 + - soc/tegra: fuse: Fix Tegra234-only builds + - firmware: tegra: bpmp: Fix Tegra234-only builds + - arm64: dts: ls208xa: remove bus-num from dspi node + - arm64: dts: imx8mq: assign PCIe clocks + - thermal/core: Correct function name thermal_zone_device_unregister() + - kbuild: mkcompile_h: consider timestamp if KBUILD_BUILD_TIMESTAMP is set + - rtc: max77686: Do not enforce (incorrect) interrupt trigger type + - scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 + - scsi: libsas: Add LUN number check in .slave_alloc callback + - scsi: libfc: Fix array index out of bound exception + - scsi: qedf: Add check to synchronize abort and flush + - sched/fair: Fix CFS bandwidth hrtimer expiry type + - s390: introduce proper type handling call_on_stack() macro + - cifs: prevent NULL deref in cifs_compose_mount_options() + - arm64: dts: armada-3720-turris-mox: add firmware node + - firmware: turris-mox-rwtm: add marvell,armada-3700-rwtm-firmware compatible + string + - arm64: dts: marvell: armada-37xx: move firmware node to generic dtsi file + - f2fs: Show casefolding support only when supported + - usb: cdns3: Enable TDL_CHK only for OUT ep + - Revert "UBUNTU: SAUCE: Revert "mm: memcg/slab: fix memory leak at non-root + kmem_cache destroy"" + - mm: slab: fix kmem_cache_create failed when sysfs node not destroyed + - dm writecache: return the exact table values that were set + - net: dsa: mv88e6xxx: enable .port_set_policy() on Topaz + - net: dsa: mv88e6xxx: enable .rmu_disable() on Topaz + - net: ipv6: fix return value of ip6_skb_dst_mtu + - netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo + - net/sched: act_ct: fix err check for nf_conntrack_confirm + - net: bridge: sync fdb to new unicast-filtering ports + - net: bcmgenet: Ensure all TX/RX queues DMAs are disabled + - net: ip_tunnel: fix mtu calculation for ETHER tunnel devices + - net: moxa: fix UAF in moxart_mac_probe + - net: qcom/emac: fix UAF in emac_remove + - net: ti: fix UAF in tlan_remove_one + - net: send SYNACK packet with accepted fwmark + - net: validate lwtstate->data before returning from skb_tunnel_info() + - net: fddi: fix UAF in fza_probe + - dma-buf/sync_file: Don't leak fences on merge failure + - tcp: annotate data races around tp->mtu_info + - ipv6: tcp: drop silly ICMPv6 packet too big messages + - bpftool: Properly close va_list 'ap' by va_end() on error + - perf test bpf: Free obj_buf + - udp: annotate data races around unix_sk(sk)->gso_size + - Linux 5.4.135 + * Focal update: v5.4.134 upstream stable release (LP: #1939440) + - KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio + - KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled + - KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() + - scsi: core: Fix bad pointer dereference when ehandler kthread is invalid + - tracing: Do not reference char * as a string in histograms + - cgroup: verify that source is a string + - fbmem: Do not delete the mode that is still in use + - net: moxa: Use devm_platform_get_and_ioremap_resource() + - dmaengine: fsl-qdma: check dma_set_mask return value + - srcu: Fix broken node geometry after early ssp init + - tty: serial: fsl_lpuart: fix the potential risk of division or modulo by + zero + - misc/libmasm/module: Fix two use after free in ibmasm_init_one + - misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge + - iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get(). + - iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get() + - ALSA: usx2y: Don't call free_pages_exact() with NULL address + - Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" + - w1: ds2438: fixing bug that would always get page0 + - scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() + - scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology + - scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the + SGLs + - scsi: core: Cap scsi_host cmd_per_lun at can_queue + - ALSA: ac97: fix PM reference leak in ac97_bus_remove() + - tty: serial: 8250: serial_cs: Fix a memory leak in error handling path + - scsi: scsi_dh_alua: Check for negative result value + - fs/jfs: Fix missing error code in lmLogInit() + - scsi: megaraid_sas: Fix resource leak in case of probe failure + - scsi: megaraid_sas: Early detection of VD deletion through RaidMap update + - scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs + - scsi: iscsi: Add iscsi_cls_conn refcount helpers + - scsi: iscsi: Fix conn use after free during resets + - scsi: iscsi: Fix shost->max_id use + - scsi: qedi: Fix null ref during abort handling + - mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE + - mfd: cpcap: Fix cpcap dmamask not set warnings + - ASoC: img: Fix PM reference leak in img_i2s_in_probe() + - serial: tty: uartlite: fix console setup + - s390/sclp_vt220: fix console name to match device + - ALSA: sb: Fix potential double-free of CSP mixer elements + - powerpc/ps3: Add dma_mask to ps3_dma_region + - iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get + fails + - iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation + - gpio: zynq: Check return value of pm_runtime_get_sync + - ALSA: ppc: fix error return code in snd_pmac_probe() + - selftests/powerpc: Fix "no_handler" EBB selftest + - gpio: pca953x: Add support for the On Semi pca9655 + - ASoC: soc-core: Fix the error return code in + snd_soc_of_parse_audio_routing() + - s390/processor: always inline stap() and __load_psw_mask() + - s390/ipl_parm: fix program check new psw handling + - s390/mem_detect: fix diag260() program check new psw handling + - s390/mem_detect: fix tprot() program check new psw handling + - Input: hideep - fix the uninitialized use in hideep_nvm_unlock() + - ALSA: bebob: add support for ToneWeal FW66 + - ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count + - ALSA: usb-audio: scarlett2: Fix data_mutex lock + - ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values + - usb: gadget: f_hid: fix endianness issue with descriptors + - usb: gadget: hid: fix error return code in hid_bind() + - powerpc/boot: Fixup device-tree on little endian + - ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters + - backlight: lm3630a: Fix return code of .update_status() callback + - ALSA: hda: Add IRQ check for platform_get_irq() + - ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions + - staging: rtl8723bs: fix macro value for 2.4Ghz only device + - intel_th: Wait until port is in reset before programming it + - i2c: core: Disable client irq on reboot/shutdown + - power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE + - power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE + - pwm: spear: Don't modify HW state in .remove callback + - power: supply: ab8500: Avoid NULL pointers + - power: supply: max17042: Do not enforce (incorrect) interrupt trigger type + - power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE + - ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 + - PCI/P2PDMA: Avoid pci_get_slot(), which may sleep + - watchdog: Fix possible use-after-free in wdt_startup() + - watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() + - watchdog: Fix possible use-after-free by calling del_timer_sync() + - watchdog: imx_sc_wdt: fix pretimeout + - x86/fpu: Return proper error codes from user access functions + - PCI: tegra: Add missing MODULE_DEVICE_TABLE + - orangefs: fix orangefs df output. + - ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty + - NFS: nfs_find_open_context() may only select open files + - power: supply: charger-manager: add missing MODULE_DEVICE_TABLE + - power: supply: ab8500: add missing MODULE_DEVICE_TABLE + - pwm: img: Fix PM reference leak in img_pwm_enable() + - pwm: tegra: Don't modify HW state in .remove callback + - ACPI: AMBA: Fix resource name in /proc/iomem + - ACPI: video: Add quirk for the Dell Vostro 3350 + - virtio-blk: Fix memory leak among suspend/resume procedure + - virtio_net: Fix error handling in virtnet_restore() + - virtio_console: Assure used length from device is limited + - x86/signal: Detect and prevent an alternate signal stack overflow + - f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs + - PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun + - power: supply: rt5033_battery: Fix device tree enumeration + - NFSv4: Initialise connection to the server in nfs4_alloc_client() + - um: fix error return code in slip_open() + - um: fix error return code in winch_tramp() + - watchdog: aspeed: fix hardware timeout calculation + - nfs: fix acl memory leak of posix_acl_create() + - ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode + - PCI: iproc: Fix multi-MSI base vector number allocation + - PCI: iproc: Support multi-MSI only on uniprocessor kernel + - x86/fpu: Limit xstate copy size in xstateregs_set() + - pwm: imx1: Don't disable clocks at device remove time + - virtio_net: move tx vq operation under tx queue lock + - nvme-tcp: can't set sk_user_data without write_lock + - ALSA: isa: Fix error return code in snd_cmi8330_probe() + - NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times + - hexagon: use common DISCARDS macro + - ARM: dts: gemini-rut1xx: remove duplicate ethernet node + - reset: a10sr: add missing of_match_table reference + - ARM: exynos: add missing of_node_put for loop iteration + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 + - memory: atmel-ebi: add missing of_node_put for loop iteration + - reset: brcmstb: Add missing MODULE_DEVICE_TABLE + - memory: pl353: Fix error return code in pl353_smc_probe() + - rtc: fix snprintf() checking in is_rtc_hctosys() + - arm64: dts: renesas: v3msk: Fix memory size + - ARM: dts: r8a7779, marzen: Fix DU clock names + - firmware: tegra: Fix error return code in tegra210_bpmp_init() + - firmware: arm_scmi: Reset Rx buffer to max size during async commands + - ARM: dts: BCM5301X: Fixup SPI binding + - reset: bail if try_module_get() fails + - memory: fsl_ifc: fix leak of IO mapping on probe failure + - memory: fsl_ifc: fix leak of private memory on probe failure + - ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: imx6q-dhcom: Fix ethernet reset time properties + - ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems + - ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery + - thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations + - firmware: turris-mox-rwtm: fix reply status decoding function + - firmware: turris-mox-rwtm: report failures better + - firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng + - scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() + - mips: always link byteswap helpers into decompressor + - mips: disable branch profiling in boot/decompress.o + - MIPS: vdso: Invalid GIC access through VDSO + - scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() + - misc: alcor_pci: fix inverted branch condition + - Linux 5.4.134 + + -- Marcelo Henrique Cerri Mon, 13 Sep 2021 17:59:12 -0300 + +linux-azure (5.4.0-1058.60) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1058.60 -proposed tracker (LP: #1942117) + + * linux-azure: main(): sched_setscheduler(): Operation not permitted + (LP: #1942092) + - Revert "UBUNTU: [Config] azure: CONFIG_RT_GROUP_SCHED=y" + + [ Ubuntu: 5.4.0-84.94 ] + + * focal/linux: 5.4.0-84.94 -proposed tracker (LP: #1941767) + * Server boot failure after adding checks for ACPI IRQ override (LP: #1941657) + - Revert "ACPI: resources: Add checks for ACPI IRQ override" + + -- Marcelo Henrique Cerri Tue, 31 Aug 2021 10:43:59 -0300 + +linux-azure (5.4.0-1057.59) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1057.59 -proposed tracker (LP: #1939775) + + * Focal update: v5.4.129 upstream stable release (LP: #1936242) + - [Config] enable CONFIG_SYSTEM_REVOCATION_LIST + + * linux-azure Enable CONFIG_RT_GROUP_SCHED (LP: #1939024) + - [Config] azure: CONFIG_RT_GROUP_SCHED=y + + * Sync to SGX 1.33.2 (LP: #1936240) + - SAUCE: ubuntu/sgx: backport fixes to 1.33 + - SAUCE: ubuntu/sgx: missing synchronize_srcu call before cleanup + - SAUCE: ubuntu/sgx: fix a synchronization issue for mmput + - SAUCE: ubuntu/sgx: look for exported symbols in Makefile + - SAUCE: ubuntu/sgx: hardening compiler options + - SAUCE: ubuntu/sgx: Fix signed integer overflow on shift + - SAUCE: ubuntu/sgx: move use space header + - SAUCE: ubuntu/sgx: Version 1.33.2 + + [ Ubuntu: 5.4.0-83.93 ] + + * focal/linux: 5.4.0-83.93 -proposed tracker (LP: #1940159) + * fails to launch linux L2 guests on AMD (LP: #1940134) // CVE-2021-3653 + - KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + (CVE-2021-3653) + * fails to launch linux L2 guests on AMD (LP: #1940134) + - SAUCE: Revert "UBUNTU: SAUCE: KVM: nSVM: avoid picking up unsupported bits + from L2 in int_ctl" + + [ Ubuntu: 5.4.0-82.92 ] + + * focal/linux: 5.4.0-82.92 -proposed tracker (LP: #1939799) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.08.16) + * CVE-2021-3656 + - SAUCE: KVM: nSVM: always intercept VMLOAD/VMSAVE when nested + * CVE-2021-3653 + - SAUCE: KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + * dev_forward_skb: do not scrub skb mark within the same name space + (LP: #1935040) + - dev_forward_skb: do not scrub skb mark within the same name space + * XPS 9510 (TGL) Screen Brightness could not be changed (LP: #1933566) + - SAUCE: drm/i915: Force DPCD backlight mode for Dell XPS 9510(TGL) + * Acer Aspire 5 sound driver issues (LP: #1930188) + - ALSA: hda/realtek: headphone and mic don't work on an Acer laptop + * Sony Dualshock 4 usb dongle crashes the whole system (LP: #1935846) + - HID: sony: Workaround for DS4 dongle hotplug kernel crash. + * [21.10 FEAT] KVM: Provide a secure guest indication (LP: #1933173) + - s390/uv: add prot virt guest/host indication files + - s390/uv: fix prot virt host indication compilation + * Skip rtcpie test in kselftests/timers if the default RTC device does not + exist (LP: #1937991) + - selftests: timers: rtcpie: skip test if default RTC device does not exist + * Focal update: v5.4.133 upstream stable release (LP: #1938713) + - drm/mxsfb: Don't select DRM_KMS_FB_HELPER + - drm/zte: Don't select DRM_KMS_FB_HELPER + - drm/amd/amdgpu/sriov disable all ip hw status by default + - drm/vc4: fix argument ordering in vc4_crtc_get_margins() + - net: pch_gbe: Use proper accessors to BE data in pch_ptp_match() + - drm/amd/display: fix use_max_lb flag for 420 pixel formats + - hugetlb: clear huge pte during flush function on mips platform + - atm: iphase: fix possible use-after-free in ia_module_exit() + - mISDN: fix possible use-after-free in HFC_cleanup() + - atm: nicstar: Fix possible use-after-free in nicstar_cleanup() + - net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT + - drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init() + - reiserfs: add check for invalid 1st journal block + - drm/virtio: Fix double free on probe failure + - drm/sched: Avoid data corruptions + - udf: Fix NULL pointer dereference in udf_symlink function + - e100: handle eeprom as little endian + - igb: handle vlan types with checker enabled + - drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer() + - clk: renesas: r8a77995: Add ZA2 clock + - clk: tegra: Ensure that PLLU configuration is applied properly + - ipv6: use prandom_u32() for ID generation + - RDMA/cxgb4: Fix missing error code in create_qp() + - dm space maps: don't reset space map allocation cursor when committing + - pinctrl: mcp23s08: fix race condition in irq handler + - ice: set the value of global config lock timeout longer + - virtio_net: Remove BUG() to avoid machine dead + - net: bcmgenet: check return value after calling platform_get_resource() + - net: mvpp2: check return value after calling platform_get_resource() + - net: micrel: check return value after calling platform_get_resource() + - drm/amd/display: Update scaling settings on modeset + - drm/amd/display: Release MST resources on switch from MST to SST + - drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7 + - drm/amdkfd: use allowed domain for vmbo validation + - fjes: check return value after calling platform_get_resource() + - selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC + - r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM + - drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check + - xfrm: Fix error reporting in xfrm_state_construct. + - wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP + - wl1251: Fix possible buffer overflow in wl1251_cmd_scan + - cw1200: add missing MODULE_DEVICE_TABLE + - bpf: Fix up register-based shifts in interpreter to silence KUBSAN + - mt76: mt7615: fix fixed-rate tx status reporting + - net: fix mistake path for netdev_features_strings + - net: sched: fix error return code in tcf_del_walker() + - drm/amdkfd: Walk through list with dqm lock hold + - rtl8xxxu: Fix device info for RTL8192EU devices + - atm: nicstar: use 'dma_free_coherent' instead of 'kfree' + - atm: nicstar: register the interrupt handler in the right place + - vsock: notify server to shutdown when client has pending signal + - RDMA/rxe: Don't overwrite errno from ib_umem_get() + - iwlwifi: mvm: don't change band on bound PHY contexts + - iwlwifi: pcie: free IML DMA memory allocation + - iwlwifi: pcie: fix context info freeing + - sfc: avoid double pci_remove of VFs + - sfc: error code if SRIOV cannot be disabled + - wireless: wext-spy: Fix out-of-bounds warning + - media, bpf: Do not copy more entries than user space requested + - net: ip: avoid OOM kills with large UDP sends over loopback + - RDMA/cma: Fix rdma_resolve_route() memory leak + - Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip. + - Bluetooth: Fix the HCI to MGMT status conversion table + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + - Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc. + - sctp: validate from_addr_param return + - sctp: add size validation when walking chunks + - MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops + - MIPS: set mips32r5 for virt extensions + - fscrypt: don't ignore minor_hash when hash is 0 + - crypto: ccp - Annotate SEV Firmware file names + - perf bench: Fix 2 memory sanitizer warnings + - powerpc/mm: Fix lockup on kernel exec fault + - powerpc/barrier: Avoid collision with clang's __lwsync macro + - drm/amdgpu: Update NV SIMD-per-CU to 2 + - drm/radeon: Add the missed drm_gem_object_put() in + radeon_user_framebuffer_create() + - drm/rockchip: dsi: remove extra component_del() call + - drm/amd/display: fix incorrrect valid irq check + - pinctrl/amd: Add device HID for new AMD GPIO controller + - drm/tegra: Don't set allow_fb_modifiers explicitly + - drm/msm/mdp4: Fix modifier support enabling + - drm/arm/malidp: Always list modifiers + - mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode + - mmc: core: clear flags before allowing to retune + - mmc: core: Allow UHS-I voltage switch for SDSC cards if supported + - ata: ahci_sunxi: Disable DIPM + - cpu/hotplug: Cure the cpusets trainwreck + - clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround + - fpga: stratix10-soc: Add missing fpga_mgr_free() call + - MIPS: fix "mipsel-linux-ld: decompress.c:undefined reference to `memmove'" + - ASoC: tegra: Set driver_name=tegra for all machine drivers + - qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute + - ipmi/watchdog: Stop watchdog timer when the current action is 'none' + - thermal/drivers/int340x/processor_thermal: Fix tcc setting + - ubifs: Fix races between xattr_{set|get} and listxattr operations + - power: supply: ab8500: Fix an old bug + - nvmem: core: add a missing of_node_put + - extcon: intel-mrfld: Sync hardware and software state on init + - seq_buf: Fix overflow in seq_buf_putmem_hex() + - rq-qos: fix missed wake-ups in rq_qos_throttle try two + - tracing: Simplify & fix saved_tgids logic + - tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT + - ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe + - coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer() + - dm btree remove: assign new_root only when removal succeeds + - PCI: Leave Apple Thunderbolt controllers on for s2idle or standby + - PCI: aardvark: Fix checking for PIO Non-posted Request + - PCI: aardvark: Implement workaround for the readback value of VEND_ID + - media: subdev: disallow ioctl for saa6588/davinci + - media: dtv5100: fix control-request directions + - media: zr364xx: fix memory leak in zr364xx_start_readpipe + - media: gspca/sq905: fix control-request direction + - media: gspca/sunplus: fix zero-length control requests + - pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq() + - jfs: fix GPF in diFree + - smackfs: restrict bytes count in smk_set_cipso() + - Linux 5.4.133 + * Focal update: v5.4.132 upstream stable release (LP: #1938199) + - ALSA: usb-audio: fix rate on Ozone Z90 USB headset + - ALSA: usb-audio: Fix OOB access at proc output + - ALSA: usb-audio: scarlett2: Fix wrong resume call + - ALSA: intel8x0: Fix breakage at ac97 clock measurement + - ALSA: hda/realtek: Add another ALC236 variant support + - ALSA: hda/realtek: Improve fixup for HP Spectre x360 15-df0xxx + - ALSA: hda/realtek: Fix bass speaker DAC mapping for Asus UM431D + - ALSA: hda/realtek: Apply LED fixup for HP Dragonfly G1, too + - media: dvb-usb: fix wrong definition + - Input: usbtouchscreen - fix control-request directions + - net: can: ems_usb: fix use-after-free in ems_usb_disconnect() + - usb: gadget: eem: fix echo command packet response issue + - USB: cdc-acm: blacklist Heimann USB Appset device + - usb: dwc3: Fix debugfs creation flow + - usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() + - xhci: solve a double free problem while doing s4 + - ntfs: fix validity check for file name attribute + - copy_page_to_iter(): fix ITER_DISCARD case + - iov_iter_fault_in_readable() should do nothing in xarray case + - Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl + - arm_pmu: Fix write counter incorrect in ARMv7 big-endian mode + - ARM: dts: at91: sama5d4: fix pinctrl muxing + - btrfs: send: fix invalid path for unlink operations after parent + orphanization + - btrfs: clear defrag status of a root if starting transaction fails + - ext4: cleanup in-core orphan list if ext4_truncate() failed to get a + transaction handle + - ext4: fix kernel infoleak via ext4_extent_header + - ext4: return error code when ext4_fill_flex_info() fails + - ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit + - ext4: remove check for zero nr_to_scan in ext4_es_scan() + - ext4: fix avefreec in find_group_orlov + - ext4: use ext4_grp_locked_error in mb_find_extent + - can: gw: synchronize rcu operations before removing gw job entry + - can: j1939: j1939_sk_init(): set SOCK_RCU_FREE to call sk_destruct() after + RCU is done + - can: peak_pciefd: pucan_handle_status(): fix a potential starvation issue in + TX path + - mac80211: remove iwlwifi specific workaround that broke sta NDP tx + - SUNRPC: Fix the batch tasks count wraparound. + - SUNRPC: Should wake up the privileged task firstly. + - perf/smmuv3: Don't trample existing events with global filter + - KVM: PPC: Book3S HV: Workaround high stack usage with clang + - s390/cio: dont call css_wait_for_slow_path() inside a lock + - rtc: stm32: Fix unbalanced clk_disable_unprepare() on probe error path + - iio: light: tcs3472: do not free unallocated IRQ + - iio: ltr501: mark register holding upper 8 bits of ALS_DATA{0,1} and PS_DATA + as volatile, too + - iio: ltr501: ltr559: fix initialization of LTR501_ALS_CONTR + - iio: ltr501: ltr501_read_ps(): add missing endianness conversion + - serial: mvebu-uart: fix calculation of clock divisor + - serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() + - serial_cs: Add Option International GSM-Ready 56K/ISDN modem + - serial_cs: remove wrong GLOBETROTTER.cis entry + - ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() + - ssb: sdio: Don't overwrite const buffer if block_write fails + - rsi: Assign beacon rate settings to the correct rate_info descriptor field + - rsi: fix AP mode with WPA failure due to encrypted EAPOL + - tracing/histograms: Fix parsing of "sym-offset" modifier + - tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing + - seq_buf: Make trace_seq_putmem_hex() support data longer than 8 + - powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() + - evm: Execute evm_inode_init_security() only when an HMAC key is loaded + - evm: Refuse EVM_ALLOW_METADATA_WRITES only if an HMAC key is loaded + - fuse: ignore PG_workingset after stealing + - fuse: check connected before queueing on fpq->io + - fuse: reject internal errno + - spi: Make of_register_spi_device also set the fwnode + - media: mdk-mdp: fix pm_runtime_get_sync() usage count + - media: s5p: fix pm_runtime_get_sync() usage count + - media: sh_vou: fix pm_runtime_get_sync() usage count + - media: mtk-vcodec: fix PM runtime get logic + - media: s5p-jpeg: fix pm_runtime_get_sync() usage count + - media: sti/bdisp: fix pm_runtime_get_sync() usage count + - media: exynos-gsc: fix pm_runtime_get_sync() usage count + - spi: spi-loopback-test: Fix 'tx_buf' might be 'rx_buf' + - spi: spi-topcliff-pch: Fix potential double free in + pch_spi_process_messages() + - spi: omap-100k: Fix the length judgment problem + - regulator: uniphier: Add missing MODULE_DEVICE_TABLE + - hwrng: exynos - Fix runtime PM imbalance on error + - crypto: nx - add missing MODULE_DEVICE_TABLE + - media: sti: fix obj-$(config) targets + - media: cpia2: fix memory leak in cpia2_usb_probe + - media: cobalt: fix race condition in setting HPD + - media: pvrusb2: fix warning in pvr2_i2c_core_done + - media: imx: imx7_mipi_csis: Fix logging of only error event counters + - crypto: qat - check return code of qat_hal_rd_rel_reg() + - crypto: qat - remove unused macro in FW loader + - sched/fair: Fix ascii art by relpacing tabs + - media: em28xx: Fix possible memory leak of em28xx struct + - media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release + - media: bt8xx: Fix a missing check bug in bt878_probe + - media: st-hva: Fix potential NULL pointer dereferences + - Makefile: fix GDB warning with CONFIG_RELR + - media: dvd_usb: memory leak in cinergyt2_fe_attach + - memstick: rtsx_usb_ms: fix UAF + - mmc: sdhci-sprd: use sdhci_sprd_writew + - mmc: via-sdmmc: add a check against NULL pointer dereference + - crypto: shash - avoid comparing pointers to exported functions under CFI + - media: dvb_net: avoid speculation from net slot + - media: siano: fix device register error path + - media: imx-csi: Skip first few frames from a BT.656 source + - hwmon: (max31790) Report correct current pwm duty cycles + - hwmon: (max31790) Fix pwmX_enable attributes + - drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe() + - KVM: PPC: Book3S HV: Fix TLB management on SMT8 POWER9 and POWER10 + processors + - btrfs: fix error handling in __btrfs_update_delayed_inode + - btrfs: abort transaction if we fail to update the delayed inode + - btrfs: disable build on platforms having page size 256K + - locking/lockdep: Fix the dep path printing for backwards BFS + - lockding/lockdep: Avoid to find wrong lock dep path in check_irq_usage() + - KVM: s390: get rid of register asm usage + - regulator: mt6358: Fix vdram2 .vsel_mask + - regulator: da9052: Ensure enough delay time for .set_voltage_time_sel + - media: Fix Media Controller API config checks + - HID: do not use down_interruptible() when unbinding devices + - EDAC/ti: Add missing MODULE_DEVICE_TABLE + - ACPI: processor idle: Fix up C-state latency if not ordered + - hv_utils: Fix passing zero to 'PTR_ERR' warning + - lib: vsprintf: Fix handling of number field widths in vsscanf + - ACPI: EC: Make more Asus laptops use ECDT _GPE + - block_dump: remove block_dump feature in mark_inode_dirty() + - fs: dlm: cancel work sync othercon + - random32: Fix implicit truncation warning in prandom_seed_state() + - fs: dlm: fix memory leak when fenced + - ACPICA: Fix memory leak caused by _CID repair function + - ACPI: bus: Call kobject_put() in acpi_init() error path + - block: fix race between adding/removing rq qos and normal IO + - platform/x86: toshiba_acpi: Fix missing error code in + toshiba_acpi_setup_keyboard() + - nvmet-fc: do not check for invalid target port in nvmet_fc_handle_fcp_rqst() + - EDAC/Intel: Do not load EDAC driver when running as a guest + - PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv() + - clocksource: Retry clock read if long delays detected + - ACPI: tables: Add custom DSDT file as makefile prerequisite + - HID: wacom: Correct base usage for capacitive ExpressKey status bits + - cifs: fix missing spinlock around update to ses->status + - block: fix discard request merge + - kthread_worker: fix return value when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - ia64: mca_drv: fix incorrect array size calculation + - writeback, cgroup: increment isw_nr_in_flight before grabbing an inode + - media: s5p_cec: decrement usage count if disabled + - crypto: ixp4xx - dma_unmap the correct address + - crypto: ux500 - Fix error return code in hash_hw_final() + - sata_highbank: fix deferred probing + - pata_rb532_cf: fix deferred probing + - media: I2C: change 'RST' to "RSET" to fix multiple build errors + - sched/uclamp: Fix wrong implementation of cpu.uclamp.min + - sched/uclamp: Fix locking around cpu_util_update_eff() + - kbuild: run the checker after the compiler + - kbuild: Fix objtool dependency for 'OBJECT_FILES_NON_STANDARD_ := n' + - pata_octeon_cf: avoid WARN_ON() in ata_host_activate() + - evm: fix writing /evm overflow + - crypto: ccp - Fix a resource leak in an error handling path + - media: rc: i2c: Fix an error message + - pata_ep93xx: fix deferred probing + - media: exynos4-is: Fix a use after free in isp_video_release + - media: au0828: fix a NULL vs IS_ERR() check + - media: tc358743: Fix error return code in tc358743_probe_of() + - media: gspca/gl860: fix zero-length control requests + - m68k: atari: Fix ATARI_KBD_CORE kconfig unmet dependency warning + - media: siano: Fix out-of-bounds warnings in smscore_load_firmware_family2() + - crypto: nitrox - fix unchecked variable in nitrox_register_interrupts + - crypto: omap-sham - Fix PM reference leak in omap sham ops + - mmc: usdhi6rol0: fix error return code in usdhi6_probe() + - arm64: consistently use reserved_pg_dir + - arm64/mm: Fix ttbr0 values stored in struct thread_info for software-pan + - media: s5p-g2d: Fix a memory leak on ctx->fh.m2m_ctx + - hwmon: (max31722) Remove non-standard ACPI device IDs + - hwmon: (max31790) Fix fan speed reporting for fan7..12 + - KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmap + - regulator: hi655x: Fix pass wrong pointer to config.driver_data + - btrfs: clear log tree recovering status if starting transaction fails + - sched/rt: Fix RT utilization tracking during policy change + - sched/rt: Fix Deadline utilization tracking during policy change + - sched/uclamp: Fix uclamp_tg_restrict() + - spi: spi-sun6i: Fix chipselect/clock bug + - crypto: nx - Fix RCU warning in nx842_OF_upd_status + - ACPI: sysfs: Fix a buffer overrun problem with description_show() + - extcon: extcon-max8997: Fix IRQ freeing at error path + - blk-wbt: introduce a new disable state to prevent false positive by + rwb_enabled() + - blk-wbt: make sure throttle is enabled properly + - ACPI: Use DEVICE_ATTR_ macros + - ACPI: bgrt: Fix CFI violation + - cpufreq: Make cpufreq_online() call driver->offline() on errors + - ocfs2: fix snprintf() checking + - dax: fix ENOMEM handling in grab_mapping_entry() + - xfrm: xfrm_state_mtu should return at least 1280 for ipv6 + - video: fbdev: imxfb: Fix an error message + - net: mvpp2: Put fwnode in error case during ->probe() + - net: pch_gbe: Propagate error from devm_gpio_request_one() + - pinctrl: renesas: r8a7796: Add missing bias for PRESET# pin + - pinctrl: renesas: r8a77990: JTAG pins do not have pull-down capabilities + - clk: meson: g12a: fix gp0 and hifi ranges + - net: ftgmac100: add missing error return code in ftgmac100_probe() + - drm/rockchip: cdn-dp-core: add missing clk_disable_unprepare() on error in + cdn_dp_grf_write() + - drm/rockchip: dsi: move all lane config except LCDC mux to bind() + - ehea: fix error return code in ehea_restart_qps() + - net/sched: act_vlan: Fix modify to allow 0 + - RDMA/core: Sanitize WQ state received from the userspace + - RDMA/rxe: Fix failure during driver load + - drm: qxl: ensure surf.data is ininitialized + - tools/bpftool: Fix error return code in do_batch() + - ath10k: go to path err_unsupported when chip id is not supported + - ath10k: add missing error return code in ath10k_pci_probe() + - wireless: carl9170: fix LEDS build errors & warnings + - ieee802154: hwsim: Fix possible memory leak in hwsim_subscribe_all_others + - wcn36xx: Move hal_buf allocation to devm_kmalloc in probe + - ssb: Fix error return code in ssb_bus_scan() + - brcmfmac: fix setting of station info chains bitmask + - brcmfmac: correctly report average RSSI in station info + - brcmsmac: mac80211_if: Fix a resource leak in an error handling path + - ath10k: Fix an error code in ath10k_add_interface() + - netlabel: Fix memory leak in netlbl_mgmt_add_common + - RDMA/mlx5: Don't add slave port to unaffiliated list + - netfilter: nft_exthdr: check for IPv6 packet before further processing + - netfilter: nft_osf: check for TCP packet before further processing + - netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols + - RDMA/rxe: Fix qp reference counting for atomic ops + - samples/bpf: Fix the error return code of xdp_redirect's main() + - net: ethernet: aeroflex: fix UAF in greth_of_remove + - net: ethernet: ezchip: fix UAF in nps_enet_remove + - net: ethernet: ezchip: fix error handling + - vrf: do not push non-ND strict packets with a source LLA through packet taps + again + - net: sched: add barrier to ensure correct ordering for lockless qdisc + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + - pkt_sched: sch_qfq: fix qfq_change_class() error path + - vxlan: add missing rcu_read_lock() in neigh_reduce() + - net/ipv4: swap flow ports when validating source + - tc-testing: fix list handling + - ieee802154: hwsim: Fix memory leak in hwsim_add_one + - ieee802154: hwsim: avoid possible crash in hwsim_del_edge_nl() + - mac80211: remove iwlwifi specific workaround NDPs of null_response + - net: bcmgenet: Fix attaching to PYH failed on RPi 4B + - ipv6: exthdrs: do not blindly use init_net + - bpf: Do not change gso_size during bpf_skb_change_proto() + - i40e: Fix error handling in i40e_vsi_open + - i40e: Fix autoneg disabling for non-10GBaseT links + - Revert "ibmvnic: remove duplicate napi_schedule call in open function" + - ibmvnic: free tx_pool if tso_pool alloc fails + - ipv6: fix out-of-bound access in ip6_parse_tlv() + - e1000e: Check the PCIm state + - bpfilter: Specify the log level for the kmsg message + - gve: Fix swapped vars when fetching max queues + - Revert "be2net: disable bh with spin_lock in be_process_mcc" + - Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid + - Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event + - clk: actions: Fix UART clock dividers on Owl S500 SoC + - clk: actions: Fix SD clocks factor table on Owl S500 SoC + - clk: actions: Fix bisp_factor_table based clocks on Owl S500 SoC + - clk: si5341: Avoid divide errors due to bogus register contents + - clk: si5341: Update initialization magic + - writeback: fix obtain a reference to a freeing memcg css + - net: lwtunnel: handle MTU calculation in forwading + - net: sched: fix warning in tcindex_alloc_perfect_hash + - RDMA/mlx5: Don't access NULL-cleared mpi pointer + - MIPS: Fix PKMAP with 32-bit MIPS huge page support + - staging: fbtft: Rectify GPIO handling + - rcu: Invoke rcu_spawn_core_kthreads() from rcu_spawn_gp_kthread() + - tty: nozomi: Fix a resource leak in an error handling function + - mwifiex: re-fix for unaligned accesses + - iio: adis_buffer: do not return ints in irq handlers + - iio: adis16400: do not return ints in irq handlers + - iio: accel: bma180: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: bma220: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: hid: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: kxcjk-1013: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio:accel:mxc4005: Drop unnecessary explicit casts in regmap_bulk_read calls + - iio: accel: mxc4005: Fix overread of data and alignment issue. + - iio: accel: stk8312: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: stk8ba50: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads1015: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: vf610: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: gyro: bmg160: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: humidity: am2315: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: srf08: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: pulsed-light: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: as3935: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: hmc5843: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: bmc150: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: isl29125: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3414: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3472: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: cros_ec_sensors: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: potentiostat: lmp91000: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - ASoC: rk3328: fix missing clk_disable_unprepare() on error in + rk3328_platform_probe() + - ASoC: hisilicon: fix missing clk_disable_unprepare() on error in + hi6210_i2s_startup() + - backlight: lm3630a_bl: Put fwnode in error case during ->probe() + - ASoC: rsnd: tidyup loop on rsnd_adg_clk_query() + - Input: hil_kbd - fix error return code in hil_dev_connect() + - mtd: partitions: redboot: seek fis-index-block in the right node + - char: pcmcia: error out if 'num_bytes_read' is greater than 4 in + set_protocol() + - firmware: stratix10-svc: Fix a resource leak in an error handling path + - tty: nozomi: Fix the error handling path of 'nozomi_card_init()' + - leds: lm3532: select regmap I2C API + - leds: lm36274: cosmetic: rename lm36274_data to chip + - leds: lm3692x: Put fwnode in any case during ->probe() + - scsi: FlashPoint: Rename si_flags field + - fsi: core: Fix return of error values on failures + - fsi: scom: Reset the FSI2PIB engine for any error + - fsi: occ: Don't accept response from un-initialized OCC + - fsi/sbefifo: Clean up correct FIFO when receiving reset request from SBE + - fsi/sbefifo: Fix reset timeout + - visorbus: fix error return code in visorchipset_init() + - s390: appldata depends on PROC_SYSCTL + - iommu/dma: Fix IOVA reserve dma ranges + - ASoC: mediatek: mtk-btcvsd: Fix an error handling path in + 'mtk_btcvsd_snd_probe()' + - usb: gadget: f_fs: Fix setting of device and driver data cross-references + - usb: dwc2: Don't reset the core after setting turnaround time + - eeprom: idt_89hpesx: Put fwnode in matching case during ->probe() + - eeprom: idt_89hpesx: Restore printing the unsupported fwnode name + - iio: at91-sama5d2_adc: remove usage of iio_priv_to_dev() helper + - iio: adc: at91-sama5d2: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: hx711: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: mxs-lradc: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads8688: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: magn: rm3100: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - staging: gdm724x: check for buffer overflow in gdm_lte_multi_sdu_pkt() + - staging: gdm724x: check for overflow in gdm_lte_netif_rx() + - staging: rtl8712: remove redundant check in r871xu_drv_init + - staging: rtl8712: fix memory leak in rtl871x_load_fw_cb + - staging: mt7621-dts: fix pci address for PCI memory range + - serial: 8250: Actually allow UPF_MAGIC_MULTIPLIER baud rates + - iio: light: vcnl4035: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: isl29501: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK + - of: Fix truncation of memory sizes on 32-bit platforms + - mtd: rawnand: marvell: add missing clk_disable_unprepare() on error in + marvell_nfc_resume() + - scsi: mpt3sas: Fix error return value in _scsih_expander_add() + - soundwire: stream: Fix test for DP prepare complete + - phy: uniphier-pcie: Fix updating phy parameters + - phy: ti: dm816x: Fix the error handling path in 'dm816x_usb_phy_probe() + - extcon: sm5502: Drop invalid register write in sm5502_reg_data + - extcon: max8997: Add missing modalias string + - ASoC: atmel-i2s: Fix usage of capture and playback at the same time + - configfs: fix memleak in configfs_release_bin_file + - leds: as3645a: Fix error return code in as3645a_parse_node() + - leds: ktd2692: Fix an error handling path + - powerpc: Offline CPU in stop_this_cpu() + - serial: mvebu-uart: do not allow changing baudrate when uartclk is not + available + - serial: mvebu-uart: correctly calculate minimal possible baudrate + - arm64: dts: marvell: armada-37xx: Fix reg for standard variant of UART + - vfio/pci: Handle concurrent vma faults + - mm/huge_memory.c: don't discard hugepage if other processes are mapping it + - mm/z3fold: fix potential memory leak in z3fold_destroy_pool() + - selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random + - perf llvm: Return -ENOMEM when asprintf() fails + - scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() + - mmc: block: Disable CMDQ on the ioctl path + - mmc: vub3000: fix control-request direction + - scsi: core: Retry I/O for Notify (Enable Spinup) Required error + - iommu/dma: Fix compile warning in 32-bit builds + - Linux 5.4.132 + * Keyboard not working (LP: #1909814) // Focal update: v5.4.132 upstream + stable release (LP: #1938199) + - ACPI: resources: Add checks for ACPI IRQ override + * Focal update: v5.4.131 upstream stable release (LP: #1936245) + - KVM: SVM: Periodically schedule when unregistering regions on destroy + - s390/stack: fix possible register corruption with stack switch helper + - KVM: SVM: Call SEV Guest Decommission if ASID binding fails + - xen/events: reset active flag for lateeoi events later + - Linux 5.4.131 + * Focal update: v5.4.130 upstream stable release (LP: #1936244) + - scsi: sr: Return appropriate error code when disk is ejected + - drm/nouveau: fix dma_address check for CPU/GPU sync + - gpio: AMD8111 and TQMX86 require HAS_IOPORT_MAP + - RDMA/mlx5: Block FDB rules when not in switchdev mode + - Linux 5.4.130 + * Focal update: v5.4.129 upstream stable release (LP: #1936242) + - module: limit enabling module.sig_enforce + - drm/nouveau: wait for moving fence after pinning v2 + - drm/radeon: wait for moving fence after pinning + - ARM: 9081/1: fix gcc-10 thumb2-kernel regression + - mmc: meson-gx: use memcpy_to/fromio for dram-access-quirk + - kbuild: add CONFIG_LD_IS_LLD + - arm64: link with -z norelro for LLD or aarch64-elf + - MIPS: generic: Update node names to avoid unit addresses + - spi: spi-nxp-fspi: move the register operation after the clock enable + - Revert "PCI: PM: Do not read power state in pci_enable_device_flags()" + - dmaengine: zynqmp_dma: Fix PM reference leak in + zynqmp_dma_alloc_chan_resourc() + - mac80211: remove warning in ieee80211_get_sband() + - mac80211_hwsim: drop pending frames on stop + - cfg80211: call cfg80211_leave_ocb when switching away from OCB + - dmaengine: rcar-dmac: Fix PM reference leak in rcar_dmac_probe() + - dmaengine: mediatek: free the proper desc in desc_free handler + - dmaengine: mediatek: do not issue a new desc if one is still current + - dmaengine: mediatek: use GFP_NOWAIT instead of GFP_ATOMIC in prep_dma + - net: ipv4: Remove unneed BUG() function + - mac80211: drop multicast fragments + - net: ethtool: clear heap allocations for ethtool function + - ping: Check return value of function 'ping_queue_rcv_skb' + - inet: annotate date races around sk->sk_txhash + - net: phy: dp83867: perform soft reset and retain established link + - net: caif: fix memory leak in ldisc_open + - net/packet: annotate accesses to po->bind + - net/packet: annotate accesses to po->ifindex + - r8152: Avoid memcpy() over-reading of ETH_SS_STATS + - sh_eth: Avoid memcpy() over-reading of ETH_SS_STATS + - r8169: Avoid memcpy() over-reading of ETH_SS_STATS + - KVM: selftests: Fix kvm_check_cap() assertion + - net: qed: Fix memcpy() overflow of qed_dcbx_params() + - recordmcount: Correct st_shndx handling + - PCI: Add AMD RS690 quirk to enable 64-bit DMA + - net: ll_temac: Add memory-barriers for TX BD access + - net: ll_temac: Avoid ndo_start_xmit returning NETDEV_TX_BUSY + - pinctrl: stm32: fix the reported number of GPIO lines per bank + - nilfs2: fix memory leak in nilfs_sysfs_delete_device_group + - KVM: do not allow mapping valid but non-reference-counted pages + - i2c: robotfuzz-osif: fix control-request directions + - kthread_worker: split code for canceling the delayed work timer + - kthread: prevent deadlock when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - mm: add VM_WARN_ON_ONCE_PAGE() macro + - mm/rmap: remove unneeded semicolon in page_not_mapped() + - mm/rmap: use page_not_mapped in try_to_unmap() + - mm, thp: use head page in __migration_entry_wait() + - mm/thp: fix __split_huge_pmd_locked() on shmem migration entry + - mm/thp: make is_huge_zero_pmd() safe and quicker + - mm/thp: try_to_unmap() use TTU_SYNC for safe splitting + - mm/thp: fix vma_address() if virtual address below file offset + - mm/thp: fix page_address_in_vma() on file THP tails + - mm/thp: unmap_mapping_page() to fix THP truncate_cleanup_page() + - mm: thp: replace DEBUG_VM BUG with VM_WARN when unmap fails for split + - mm: page_vma_mapped_walk(): use page for pvmw->page + - mm: page_vma_mapped_walk(): settle PageHuge on entry + - mm: page_vma_mapped_walk(): use pmde for *pvmw->pmd + - mm: page_vma_mapped_walk(): prettify PVMW_MIGRATION block + - mm: page_vma_mapped_walk(): crossing page table boundary + - mm: page_vma_mapped_walk(): add a level of indentation + - mm: page_vma_mapped_walk(): use goto instead of while (1) + - mm: page_vma_mapped_walk(): get vma_address_end() earlier + - mm/thp: fix page_vma_mapped_walk() if THP mapped by ptes + - mm/thp: another PVMW_SYNC fix in page_vma_mapped_walk() + - mm, futex: fix shared futex pgoff on shmem huge page + - [Config] enable CONFIG_SYSTEM_REVOCATION_LIST + - certs: Add EFI_CERT_X509_GUID support for dbx entries + - certs: Move load_system_certificate_list to a common function + - Linux 5.4.129 + * Patch To Fix Bug in the Linux Block Layer Responsible For Merging BIOs + (LP: #1931497) + - block: return the correct bvec when checking for gaps + + -- Marcelo Henrique Cerri Mon, 23 Aug 2021 09:24:15 -0300 + +linux-azure (5.4.0-1056.58) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1056.58 -proposed tracker (LP: #1936515) + + [ Ubuntu: 5.4.0-81.91 ] + + * Packaging resync (LP: #1786013) + - update dkms package versions + * large_dir in ext4 broken (LP: #1933074) + - SAUCE: ext4: fix directory index node split corruption + * Some test in kselftest/net on focal source tree were not tested at all + (LP: #1934282) + - selftests/net: add missing tests to Makefile + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + * icmp_redirect.sh in net from ubuntu_kernel_selftests failed on F-OEM-5.6 / + F-OEM-5.10 / F-OEM-5.13 / F / G / H (LP: #1880645) + - selftests: icmp_redirect: support expected failures + * Focal update: v5.4.128 upstream stable release (LP: #1934179) + - dmaengine: ALTERA_MSGDMA depends on HAS_IOMEM + - dmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEM + - dmaengine: stedma40: add missing iounmap() on error in d40_probe() + - afs: Fix an IS_ERR() vs NULL check + - mm/memory-failure: make sure wait for page writeback in memory_failure + - kvm: LAPIC: Restore guard to prevent illegal APIC register access + - batman-adv: Avoid WARN_ON timing related checks + - net: ipv4: fix memory leak in netlbl_cipsov4_add_std + - vrf: fix maximum MTU + - net: rds: fix memory leak in rds_recvmsg + - net: lantiq: disable interrupt before sheduling NAPI + - udp: fix race between close() and udp_abort() + - rtnetlink: Fix regression in bridge VLAN configuration + - net/sched: act_ct: handle DNAT tuple collision + - net/mlx5e: Remove dependency in IPsec initialization flows + - net/mlx5e: Fix page reclaim for dead peer hairpin + - net/mlx5: Consider RoCE cap before init RDMA resources + - net/mlx5e: allow TSO on VXLAN over VLAN topologies + - net/mlx5e: Block offload of outer header csum for UDP tunnels + - netfilter: synproxy: Fix out of bounds when parsing TCP options + - sch_cake: Fix out of bounds when parsing TCP options and header + - alx: Fix an error handling path in 'alx_probe()' + - net: stmmac: dwmac1000: Fix extended MAC address registers definition + - net: make get_net_ns return error if NET_NS is disabled + - qlcnic: Fix an error handling path in 'qlcnic_probe()' + - netxen_nic: Fix an error handling path in 'netxen_nic_probe()' + - net: qrtr: fix OOB Read in qrtr_endpoint_post + - ptp: improve max_adj check against unreasonable values + - net: cdc_ncm: switch to eth%d interface naming + - lantiq: net: fix duplicated skb in rx descriptor ring + - net: usb: fix possible use-after-free in smsc75xx_bind + - net: fec_ptp: fix issue caused by refactor the fec_devtype + - net: ipv4: fix memory leak in ip_mc_add1_src + - net/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sock + - be2net: Fix an error handling path in 'be_probe()' + - net: hamradio: fix memory leak in mkiss_close + - net: cdc_eem: fix tx fixup skb leak + - cxgb4: fix wrong shift. + - bnxt_en: Rediscover PHY capabilities after firmware reset + - bnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error path + - icmp: don't send out ICMP messages with a source address of 0.0.0.0 + - net: ethernet: fix potential use-after-free in ec_bhf_remove + - regulator: bd70528: Fix off-by-one for buck123 .n_voltages setting + - ASoC: rt5659: Fix the lost powers for the HDA header + - spi: stm32-qspi: Always wait BUSY bit to be cleared in stm32_qspi_wait_cmd() + - pinctrl: ralink: rt2880: avoid to error in calls is pin is already enabled + - radeon: use memcpy_to/fromio for UVD fw upload + - hwmon: (scpi-hwmon) shows the negative temperature properly + - can: bcm: fix infoleak in struct bcm_msg_head + - can: bcm/raw/isotp: use per module netdevice notifier + - can: j1939: fix Use-after-Free, hold skb ref while in use + - can: mcba_usb: fix memory leak in mcba_usb + - usb: core: hub: Disable autosuspend for Cypress CY7C65632 + - tracing: Do not stop recording cmdlines when tracing is off + - tracing: Do not stop recording comms if the trace file is being read + - tracing: Do no increment trace_clock_global() by one + - PCI: Mark TI C667X to avoid bus reset + - PCI: Mark some NVIDIA GPUs to avoid bus reset + - PCI: aardvark: Don't rely on jiffies while holding spinlock + - PCI: aardvark: Fix kernel panic during PIO transfer + - PCI: Add ACS quirk for Broadcom BCM57414 NIC + - PCI: Work around Huawei Intelligent NIC VF FLR erratum + - KVM: x86: Immediately reset the MMU context when the SMM flag is cleared + - ARCv2: save ABI registers across signal handling + - x86/process: Check PF_KTHREAD and not current->mm for kernel threads + - x86/pkru: Write hardware init value to PKRU when xstate is init + - x86/fpu: Reset state for all signal restore failures + - dmaengine: pl330: fix wrong usage of spinlock flags in dma_cyclc + - cfg80211: make certificate generation more robust + - cfg80211: avoid double free of PMSR request + - net: ll_temac: Make sure to free skb when it is completely used + - net: ll_temac: Fix TX BD buffer overwrite + - net: bridge: fix vlan tunnel dst null pointer dereference + - net: bridge: fix vlan tunnel dst refcnt when egressing + - mm/slub: clarify verification reporting + - mm/slub: fix redzoning for small allocations + - mm/slub.c: include swab.h + - net: stmmac: disable clocks in stmmac_remove_config_dt() + - net: fec_ptp: add clock rate zero check + - tools headers UAPI: Sync linux/in.h copy with the kernel sources + - KVM: arm/arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST read + - ARM: OMAP: replace setup_irq() by request_irq() + - clocksource/drivers/timer-ti-dm: Add clockevent and clocksource support + - clocksource/drivers/timer-ti-dm: Prepare to handle dra7 timer wrap issue + - clocksource/drivers/timer-ti-dm: Handle dra7 timer wrap errata i940 + - usb: dwc3: debugfs: Add and remove endpoint dirs dynamically + - usb: dwc3: core: fix kernel panic when do reboot + - Linux 5.4.128 + * linux-azure CIFS DFS oops (LP: #1935833) + - cifs: get rid of unused parameter in reconn_setup_dfs_targets() + - cifs: handle empty list of targets in cifs_reconnect() + * pmtu.sh from net in ubuntu_kernel_selftests failed with no error message + (LP: #1887661) + - selftests: pmtu.sh: improve the test result processing + * cifs: On cifs_reconnect, resolve the hostname again (LP: #1929831) + - cifs: rename reconn_inval_dfs_target() + - cifs: Simplify reconnect code when dfs upcall is enabled + - cifs: Avoid error pointer dereference + - cifs: On cifs_reconnect, resolve the hostname again. + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - (upstream) media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + * Focal update: v5.4.127 upstream stable release (LP: #1933851) + - net: ieee802154: fix null deref in parse dev addr + - HID: quirks: Set INCREMENT_USAGE_ON_DUPLICATE for Saitek X65 + - HID: hid-input: add mapping for emoji picker key + - HID: hid-sensor-hub: Return error for hid_set_field() failure + - HID: quirks: Add quirk for Lenovo optical mouse + - HID: multitouch: set Stylus suffix for Stylus-application devices, too + - HID: Add BUS_VIRTUAL to hid_connect logging + - HID: usbhid: fix info leak in hid_submit_ctrl + - drm/tegra: sor: Do not leak runtime PM reference + - ARM: OMAP2+: Fix build warning when mmc_omap is not built + - gfs2: Prevent direct-I/O write fallback errors from getting lost + - HID: gt683r: add missing MODULE_DEVICE_TABLE + - riscv: Use -mno-relax when using lld linker + - gfs2: Fix use-after-free in gfs2_glock_shrink_scan + - scsi: target: core: Fix warning on realtime kernels + - ethernet: myri10ge: Fix missing error code in myri10ge_probe() + - scsi: qedf: Do not put host in qedf_vport_create() unconditionally + - scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-V + - nvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues() + - nvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() + fails + - nvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue() + - net: ipconfig: Don't override command-line hostnames or domains + - drm/amd/display: Allow bandwidth validation for 0 streams. + - rtnetlink: Fix missing error code in rtnl_bridge_notify() + - net/x25: Return the correct errno code + - net: Return the correct errno code + - fib: Return the correct errno code + - Linux 5.4.127 + * Focal update: v5.4.126 upstream stable release (LP: #1933369) + - proc: Check /proc/$pid/attr/ writes against file opener + - proc: Track /proc/$pid/attr/ opener mm_struct + - ASoC: max98088: fix ni clock divider calculation + - spi: Fix spi device unregister flow + - net/nfc/rawsock.c: fix a permission check bug + - usb: cdns3: Fix runtime PM imbalance on error + - ASoC: Intel: bytcr_rt5640: Add quirk for the Glavey TM800A550L tablet + - ASoC: Intel: bytcr_rt5640: Add quirk for the Lenovo Miix 3-830 tablet + - vfio-ccw: Serialize FSM IDLE state with I/O completion + - ASoC: sti-sas: add missing MODULE_DEVICE_TABLE + - spi: sprd: Add missing MODULE_DEVICE_TABLE + - isdn: mISDN: netjet: Fix crash in nj_probe: + - bonding: init notify_work earlier to avoid uninitialized use + - netlink: disable IRQs for netlink_lock_table() + - net: mdiobus: get rid of a BUG_ON() + - cgroup: disable controllers at parse time + - wq: handle VM suspension in stall detection + - net/qla3xxx: fix schedule while atomic in ql_sem_spinlock + - RDS tcp loopback connection can hang + - scsi: bnx2fc: Return failure if io_req is already in ABTS processing + - scsi: vmw_pvscsi: Set correct residual data length + - scsi: hisi_sas: Drop free_irq() of devm_request_irq() allocated irq + - scsi: target: qla2xxx: Wait for stop_phase1 at WWN removal + - net: macb: ensure the device is available before accessing GEMGXL control + registers + - net: appletalk: cops: Fix data race in cops_probe1 + - net: dsa: microchip: enable phy errata workaround on 9567 + - nvme-fabrics: decode host pathing error for connect + - MIPS: Fix kernel hang under FUNCTION_GRAPH_TRACER and PREEMPT_TRACER + - dm verity: fix require_signatures module_param permissions + - bnx2x: Fix missing error code in bnx2x_iov_init_one() + - nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P2041 i2c controllers + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P1010 i2c controllers + - spi: Don't have controller clean up spi device before driver unbind + - spi: Cleanup on failure of initial setup + - i2c: mpc: Make use of i2c_recover_bus() + - i2c: mpc: implement erratum A-004447 workaround + - x86/boot: Add .text.* to setup.ld + - spi: bcm2835: Fix out-of-bounds access with more than 4 slaves + - drm: Fix use-after-free read in drm_getunique() + - drm: Lock pointer access in drm_master_release() + - kvm: avoid speculation-based attacks from out-of-range memslot accesses + - staging: rtl8723bs: Fix uninitialized variables + - btrfs: return value from btrfs_mark_extent_written() in case of error + - btrfs: promote debugging asserts to full-fledged checks in validate_super + - cgroup1: don't allow '\n' in renaming + - USB: f_ncm: ncm_bitrate (speed) is unsigned + - usb: f_ncm: only first packet of aggregate needs to start timer + - usb: pd: Set PD_T_SINK_WAIT_CAP to 310ms + - usb: dwc3: ep0: fix NULL pointer exception + - usb: musb: fix MUSB_QUIRK_B_DISCONNECT_99 handling + - usb: typec: wcove: Use LE to CPU conversion when accessing msg->header + - usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path + - usb: gadget: f_fs: Ensure io_completion_wq is idle during unbind + - USB: serial: ftdi_sio: add NovaTech OrionMX product ID + - USB: serial: omninet: add device id for Zyxel Omni 56K Plus + - USB: serial: quatech2: fix control-request directions + - USB: serial: cp210x: fix alternate function for CP2102N QFN20 + - usb: gadget: eem: fix wrong eem header operation + - usb: fix various gadgets null ptr deref on 10gbps cabling. + - usb: fix various gadget panics on 10gbps cabling + - regulator: core: resolve supply for boot-on/always-on regulators + - regulator: max77620: Use device_set_of_node_from_dev() + - usb: typec: mux: Fix copy-paste mistake in typec_mux_match + - RDMA/ipoib: Fix warning caused by destroying non-initial netns + - RDMA/mlx4: Do not map the core_clock page to user space unless enabled + - vmlinux.lds.h: Avoid orphan section with !SMP + - perf: Fix data race between pin_count increment/decrement + - sched/fair: Make sure to update tg contrib for blocked load + - KVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint message + - IB/mlx5: Fix initializing CQ fragments buffer + - NFS: Fix a potential NULL dereference in nfs_get_client() + - NFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode() + - perf session: Correct buffer copying when peeking events + - kvm: fix previous commit for 32-bit builds + - NFS: Fix use-after-free in nfs4_init_client() + - NFSv4: Fix second deadlock in nfs4_evict_inode() + - NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error. + - scsi: core: Fix error handling of scsi_host_alloc() + - scsi: core: Fix failure handling of scsi_add_host_with_dma() + - scsi: core: Put .shost_dev in failure path if host state changes to RUNNING + - scsi: core: Only put parent device if host state differs from SHOST_CREATED + - ftrace: Do not blindly read the ip address in ftrace_bug() + - tracing: Correct the length check which causes memory corruption + - proc: only require mm_struct for writing + - Linux 5.4.126 + * Focal update: v5.4.125 upstream stable release (LP: #1932957) + - btrfs: tree-checker: do not error out if extent ref hash doesn't match + - net: usb: cdc_ncm: don't spew notifications + - ALSA: usb: update old-style static const declaration + - nl80211: validate key indexes for cfg80211_registered_device + - hwmon: (dell-smm-hwmon) Fix index values + - netfilter: conntrack: unregister ipv4 sockopts on error unwind + - efi: Allow EFI_MEMORY_XP and EFI_MEMORY_RO both to be cleared + - efi: cper: fix snprintf() use in cper_dimm_err_location() + - vfio/pci: Fix error return code in vfio_ecap_init() + - vfio/pci: zap_vma_ptes() needs MMU + - samples: vfio-mdev: fix error handing in mdpy_fb_probe() + - vfio/platform: fix module_put call in error flow + - ipvs: ignore IP_VS_SVC_F_HASHED flag when adding service + - HID: pidff: fix error return code in hid_pidff_init() + - HID: i2c-hid: fix format string mismatch + - net/sched: act_ct: Fix ct template allocation for zone 0 + - ACPICA: Clean up context mutex during object deletion + - netfilter: nft_ct: skip expectations for confirmed conntrack + - netfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatches + - ieee802154: fix error return code in ieee802154_add_iface() + - ieee802154: fix error return code in ieee802154_llsec_getparams() + - ixgbevf: add correct exception tracing for XDP + - ipv6: Fix KASAN: slab-out-of-bounds Read in fib6_nh_flush_exceptions + - ice: write register with correct offset + - ice: Fix VFR issues for AVF drivers that expect ATQLEN cleared + - ice: Allow all LLDP packets from PF to Tx + - i2c: qcom-geni: Add shutdown callback for i2c + - i40e: optimize for XDP_REDIRECT in xsk path + - i40e: add correct exception tracing for XDP + - arm64: dts: ls1028a: fix memory node + - arm64: dts: zii-ultra: fix 12V_MAIN voltage + - ARM: dts: imx7d-meerkat96: Fix the 'tuning-step' property + - ARM: dts: imx7d-pico: Fix the 'tuning-step' property + - ARM: dts: imx: emcon-avari: Fix nxp,pca8574 #gpio-cells + - bus: ti-sysc: Fix flakey idling of uarts and stop using swsup_sidle_act + - tipc: add extack messages for bearer/media failure + - tipc: fix unique bearer names sanity check + - Bluetooth: fix the erroneous flush_work() order + - Bluetooth: use correct lock to prevent UAF of hdev object + - net: caif: added cfserl_release function + - net: caif: add proper error handling + - net: caif: fix memory leak in caif_device_notify + - net: caif: fix memory leak in cfusbl_device_notify + - HID: i2c-hid: Skip ELAN power-on command after reset + - HID: magicmouse: fix NULL-deref on disconnect + - HID: multitouch: require Finger field to mark Win8 reports as MT + - ALSA: timer: Fix master timer notification + - ALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xx + - ARM: dts: imx6dl-yapp4: Fix RGMII connection to QCA8334 switch + - ARM: dts: imx6q-dhcom: Add PU,VDD1P1,VDD2P5 regulators + - ext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failed + - usb: dwc2: Fix build in periphal-only mode + - pid: take a reference when initializing `cad_pid` + - ocfs2: fix data corruption by fallocate + - nfc: fix NULL ptr dereference in llcp_sock_getname() after failed connect + - drm/amdgpu: Don't query CE and UE errors + - drm/amdgpu: make sure we unpin the UVD BO + - x86/apic: Mark _all_ legacy interrupts when IO/APIC is missing + - btrfs: mark ordered extent and inode with error if we fail to finish + - btrfs: fix error handling in btrfs_del_csums + - btrfs: return errors from btrfs_del_csums in cleanup_ref_head + - btrfs: fixup error handling in fixup_inode_link_counts + - mm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPY + - bnxt_en: Remove the setting of dev_port. + - mm: add thp_order + - XArray: add xa_get_order + - XArray: add xas_split + - mm/filemap: fix storing to a THP shadow entry + - btrfs: fix unmountable seed device after fstrim + - KVM: SVM: Truncate GPR value for DR and CR accesses in !64-bit mode + - KVM: arm64: Fix debug register indexing + - lib/lz4: explicitly support in-place decompression + - xen-pciback: redo VF placement in the virtual topology + - i2c: qcom-geni: Suspend and resume the bus during SYSTEM_SLEEP_PM ops + - neighbour: allow NUD_NOARP entries to be forced GCed + - Linux 5.4.125 + + -- Tim Gardner Mon, 26 Jul 2021 06:57:12 -0600 + linux-azure (5.4.0-1055.57) focal; urgency=medium [ Ubuntu: 5.4.0-80.90 ] diff -u linux-azure-5.4.0/debian.azure/config/amd64/config.common.amd64 linux-azure-5.4.0/debian.azure/config/amd64/config.common.amd64 --- linux-azure-5.4.0/debian.azure/config/amd64/config.common.amd64 +++ linux-azure-5.4.0/debian.azure/config/amd64/config.common.amd64 @@ -3,0 +4,27 @@ +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_SIMD=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_EXTCON is not set +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_HYPERV_IOMMU=y +# CONFIG_I2C_SLAVE is not set +CONFIG_KVM=m +CONFIG_MFD_AXP20X=m +CONFIG_MVMDIO=m +CONFIG_NR_CPUS=8192 +# CONFIG_OF is not set +CONFIG_PHYLINK=m +CONFIG_RPMSG=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_VFIO_PCI=y +CONFIG_VFIO_VIRQFD=y diff -u linux-azure-5.4.0/debian.azure/config/annotations linux-azure-5.4.0/debian.azure/config/annotations --- linux-azure-5.4.0/debian.azure/config/annotations +++ linux-azure-5.4.0/debian.azure/config/annotations @@ -7,279 +7,5327 @@ -CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'n'}> +CONFIG_HIBERNATION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HIBERNATION mark note + +CONFIG_SCSI_FC_ATTRS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SCSI_FC_ATTRS mark note + +CONFIG_FB_EFI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_FB_EFI mark note + +CONFIG_MICROSOFT_MANA policy<{'amd64': 'y', 'arm64': '-'}> +CONFIG_MICROSOFT_MANA mark note + +CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_ACPI_HOTPLUG_MEMORY mark note CONFIG_FPGA_MGR_XILINX_SPI mark note -CONFIG_FPGA_MGR_XILINX_SPI policy<{'amd64': 'm'}> +CONFIG_FPGA_MGR_XILINX_SPI policy<{'amd64': 'm', 'arm64': 'm'}> -CONFIG_ANDROID policy<{'amd64': 'y'}> +CONFIG_ANDROID policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_ANDROID mark note -CONFIG_ASHMEM policy<{'amd64': 'm'}> +CONFIG_ASHMEM policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_ASHMEM mark note -CONFIG_ANDROID_BINDER_IPC policy<{'amd64': 'm'}> +CONFIG_ANDROID_BINDER_IPC policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_ANDROID_BINDER_IPC mark note -CONFIG_MLX5_CORE policy<{'amd64': 'm'}> +CONFIG_ANDROID_BINDERFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ANDROID_BINDERFS mark note + +CONFIG_MLX5_CORE policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_MLX5_CORE mark note -CONFIG_MLX4_CORE policy<{'amd64': 'm'}> +CONFIG_MLX4_CORE policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_MLX4_CORE mark note -CONFIG_MLX4_INFINIBAND policy<{'amd64': 'm'}> +CONFIG_MLX4_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_MLX4_INFINIBAND mark note -CONFIG_MLX5_INFINIBAND policy<{'amd64': 'm'}> +CONFIG_MLX5_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_MLX5_INFINIBAND mark note -CONFIG_INFINIBAND_USER_MAD policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_USER_MAD policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_INFINIBAND_USER_MAD mark note -CONFIG_INFINIBAND_IPOIB policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_IPOIB policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_INFINIBAND_IPOIB mark note -CONFIG_BLK_DEV_NVME policy<{'amd64': 'y'}> +CONFIG_BLK_DEV_NVME policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_BLK_DEV_NVME mark note note -CONFIG_PCI_HYPERV policy<{'amd64': 'y'}> +CONFIG_PCI_HYPERV policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_PCI_HYPERV mark note CONFIG_EDAC_DECODE_MCE policy<{'amd64': 'y'}> CONFIG_EDAC_DECODE_MCE mark note -CONFIG_EDAC_AMD64 policy<{'amd64': 'm'}> +CONFIG_EDAC_AMD64 policy<{'amd64': 'm', 'arm64': '-'}> CONFIG_EDAC_AMD64 mark note -CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'y'}> +CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_INFINIBAND_IPOIB_DEBUG note note mark -CONFIG_NO_HZ_FULL policy<{'amd64': 'y'}> +CONFIG_NO_HZ_FULL policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_NO_HZ_FULL note mark note -CONFIG_NO_HZ_IDLE policy<{'amd64': 'n'}> +CONFIG_NO_HZ_IDLE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_NO_HZ_IDLE note mark note -CONFIG_HOTPLUG_CPU policy<{'amd64': 'y'}> +CONFIG_HOTPLUG_CPU policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_HOTPLUG_CPU note mark -CONFIG_CATAPULT_PCI policy<{'amd64': 'm'}> +CONFIG_CATAPULT_PCI policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_CATAPULT_PCI mark note -CONFIG_HYPERV policy<{'amd64': 'y'}> +CONFIG_HYPERV policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_HYPERV mark note -CONFIG_HYPERV_STORAGE policy<{'amd64': 'y'}> -CONFIG_HYPERV_STORAGE mark note +CONFIG_HYPERV_STORAGE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HYPERV_STORAGE mark note -CONFIG_EFI_VARS policy<{'amd64': 'y'}> +CONFIG_EFI_VARS policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_EFI_VARS mark note -CONFIG_HYPERV_VSOCKETS policy<{'amd64': 'm'}> +CONFIG_HYPERV_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_HYPERV_VSOCKETS mark note -CONFIG_HYPERV_INFINIBAND_ND policy<{'amd64': 'm'}> +CONFIG_HYPERV_INFINIBAND_ND policy<{'amd64': 'm', 'arm64': '-'}> CONFIG_HYPERV_INFINIBAND_ND mark note -CONFIG_DEV_DAX policy<{'amd64': 'y'}> +CONFIG_DEV_DAX policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_DEV_DAX mark note -CONFIG_BLK_DEV_PMEM policy<{'amd64': 'y'}> +CONFIG_BLK_DEV_PMEM policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_BLK_DEV_PMEM mark note -CONFIG_OVERLAY_FS_REDIRECT_DIR policy<{'amd64': 'y'}> +CONFIG_OVERLAY_FS_REDIRECT_DIR policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_OVERLAY_FS_REDIRECT_DIR mark note -CONFIG_ND_BLK policy<{'amd64': 'y'}> +CONFIG_ND_BLK policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_ND_BLK mark note -CONFIG_ACPI_NFIT policy<{'amd64': 'y'}> +CONFIG_ACPI_NFIT policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_ACPI_NFIT mark note -CONFIG_RTC_CLASS policy<{'amd64': 'y'}> +CONFIG_RTC_CLASS policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_RTC_CLASS mark note -CONFIG_I2C_PIIX4 policy<{'amd64': 'n'}> +CONFIG_I2C_PIIX4 policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_I2C_PIIX4 mark note -CONFIG_DRM_NOUVEAU policy<{'amd64': 'n'}> +CONFIG_DRM_NOUVEAU policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_DRM_NOUVEAU mark note -CONFIG_BLK_DEV_DRBD policy<{'amd64': 'm'}> -CONFIG_BLK_DEV_DRBD mark note - -CONFIG_VBOXGUEST policy<{'amd64': 'n'}> +CONFIG_VBOXGUEST policy<{'amd64': 'n', 'arm64': '-'}> CONFIG_VBOXGUEST mark note -CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': '-'}> +CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': '-', 'arm64': '-'}> CONFIG_XEN_ACPI_PROCESSOR mark note -CONFIG_USB_XHCI_HCD policy<{'amd64': 'y'}> +CONFIG_USB_XHCI_HCD policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_USB_XHCI_HCD mark note note -CONFIG_USB_XHCI_PCI policy<{'amd64': 'y'}> +CONFIG_USB_XHCI_PCI policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_USB_XHCI_PCI mark note note -CONFIG_USB_XHCI_PLATFORM policy<{'amd64': 'm'}> +CONFIG_USB_XHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_USB_XHCI_PLATFORM mark note note -CONFIG_CONTEXT_TRACKING_FORCE policy<{'amd64': 'n'}> +CONFIG_CONTEXT_TRACKING_FORCE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_CONTEXT_TRACKING_FORCE flag note -CONFIG_ATARI_PARTITION policy<{'amd64': 'n'}> +CONFIG_ATARI_PARTITION policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_ATARI_PARTITION mark note # From linux-azure initial packaging -CONFIG_POWERCAP policy<{'amd64': 'n'}> +CONFIG_POWERCAP policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_POWERCAP mark note -CONFIG_CHROME_PLATFORMS policy<{'amd64': 'n'}> +CONFIG_CHROME_PLATFORMS policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_CHROME_PLATFORMS mark note -CONFIG_USB_UHCI_HCD policy<{'amd64': 'n'}> +CONFIG_USB_UHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_USB_UHCI_HCD mark note -CONFIG_USB_EHCI_HCD policy<{'amd64': 'n'}> +CONFIG_USB_EHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_USB_EHCI_HCD mark note -CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': '-'}> +CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> CONFIG_USB_EHCI_HCD_PLATFORM mark note -CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': '-'}> +CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': '-', 'arm64': '-'}> CONFIG_TOUCHSCREEN_ELAN mark note -CONFIG_SOUND policy<{'amd64': 'n'}> +CONFIG_SOUND policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SOUND mark note -CONFIG_FUJITSU_ES policy<{'amd64': 'n'}> +CONFIG_FUJITSU_ES policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_FUJITSU_ES mark note -CONFIG_INPUT_LEDS policy<{'amd64': 'n'}> +CONFIG_INPUT_LEDS policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_INPUT_LEDS mark note -CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'n'}> +CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_ACARD_AHCI mark note -CONFIG_SATA_INIC162X policy<{'amd64': 'n'}> +CONFIG_SATA_INIC162X policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_INIC162X mark note -CONFIG_SATA_MV policy<{'amd64': 'n'}> +CONFIG_SATA_MV policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_MV mark note -CONFIG_SATA_NV policy<{'amd64': 'n'}> +CONFIG_SATA_NV policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_NV mark note -CONFIG_SATA_PROMISE policy<{'amd64': 'n'}> +CONFIG_SATA_PROMISE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_PROMISE mark note -CONFIG_SATA_QSTOR policy<{'amd64': 'n'}> +CONFIG_SATA_QSTOR policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_QSTOR mark note -CONFIG_SATA_SIL policy<{'amd64': 'n'}> +CONFIG_SATA_SIL policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_SIL mark note -CONFIG_SATA_SIL24 policy<{'amd64': 'n'}> +CONFIG_SATA_SIL24 policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_SIL24 mark note -CONFIG_SATA_SIS policy<{'amd64': 'n'}> +CONFIG_SATA_SIS policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_SIS mark note -CONFIG_SATA_SVW policy<{'amd64': 'n'}> +CONFIG_SATA_SVW policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_SVW mark note -CONFIG_SATA_SX4 policy<{'amd64': 'n'}> +CONFIG_SATA_SX4 policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_SX4 mark note -CONFIG_SATA_ULI policy<{'amd64': 'n'}> +CONFIG_SATA_ULI policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_ULI mark note -CONFIG_SATA_VIA policy<{'amd64': 'n'}> +CONFIG_SATA_VIA policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_VIA mark note -CONFIG_SATA_VITESSE policy<{'amd64': 'n'}> +CONFIG_SATA_VITESSE policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_VITESSE mark note -CONFIG_SATA_ZPODD policy<{'amd64': 'n'}> +CONFIG_SATA_ZPODD policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_SATA_ZPODD mark note -CONFIG_HYPERV_IOMMU policy<{'amd64': 'y'}> +CONFIG_HYPERV_IOMMU policy<{'amd64': 'y', 'arm64': 'n'}> CONFIG_HYPERV_IOMMU mark note -CONFIG_LOOPBACK_TARGET policy<{'amd64': 'm'}> +CONFIG_LOOPBACK_TARGET policy<{'amd64': 'm', 'arm64': 'm'}> CONFIG_LOOPBACK_TARGET mark note # Changes made to the generic kernel that are not necessary in the Azure kernel -CONFIG_REGULATOR_TWL4030 policy<{'amd64': '-'}> +CONFIG_REGULATOR_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> CONFIG_REGULATOR_TWL4030 note -CONFIG_GPIO_TWL4030 policy<{'amd64': '-'}> +CONFIG_GPIO_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> CONFIG_GPIO_TWL4030 note -CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': '-'}> +CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SOUND_OSS_CORE_PRECLAIM note -CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC note -CONFIG_SND_SOC_SOF_HDA_LINK policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_LINK policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_SOF_HDA_LINK note -CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT note -CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'n'}> +CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_NETWORK_PHY_TIMESTAMPING note -CONFIG_SND_SOC_INTEL_CML_H policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_H policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_CML_H note -CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC note -CONFIG_SND_SOC_INTEL_CML_LP policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_LP policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_CML_LP note -CONFIG_SND_SOC_INTEL_CFL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CFL policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_CFL note -CONFIG_LATENCYTOP policy<{'amd64': '-'}> -CONFIG_LATENCYTOP note - -CONFIG_USB_OHCI_HCD policy<{'amd64': '-'}> -CONFIG_USB_OHCI_HCD note - -CONFIG_SND_SOC_INTEL_SKYLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_SKYLAKE note -CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC note -CONFIG_SND_SOC_INTEL_CNL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CNL policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_INTEL_CNL note -CONFIG_X86_UV policy<{'amd64': 'n'}> -CONFIG_X86_UV note - -CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_AMD_RENOIR note -CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SND_SOC_AMD_RENOIR_MACH note -CONFIG_BT_HS policy<{'amd64': '-'}> +CONFIG_BT_HS policy<{'amd64': '-', 'arm64': '-'}> CONFIG_BT_HS note -CONFIG_DRM_BOCHS policy<{'amd64': 'n'}> +CONFIG_DRM_BOCHS policy<{'amd64': 'n', 'arm64': 'n'}> CONFIG_DRM_BOCHS note -CONFIG_SPI_INTEL_SPI_PCI policy<{'amd64': '-'}> +CONFIG_SPI_INTEL_SPI_PCI policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SPI_INTEL_SPI_PCI mark note note -CONFIG_SPI_INTEL_SPI_PLATFORM policy<{'amd64': '-'}> +CONFIG_SPI_INTEL_SPI_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SPI_INTEL_SPI_PLATFORM mark note note -CONFIG_MTD_DOCG3 policy<{'amd64': '-'}> +CONFIG_MTD_DOCG3 policy<{'amd64': '-', 'arm64': '-'}> CONFIG_MTD_DOCG3 mark note -CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': '-'}> +CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': '-', 'arm64': '-'}> CONFIG_SAMPLE_TRACE_PRINTK mark note + +###################################################################################################### +# +# Policies that are different from debian.master +# +CONFIG_104_QUAD_8 policy<{'amd64': '-'}> +CONFIG_6PACK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_88EU_AP_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AB3100_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AB3100_OTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ABP060MG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ABX500_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACENIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACENIC_OMIT_TIGON_I policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACERHDF policy<{'amd64': 'n'}> +CONFIG_ACER_WMI policy<{'amd64': 'n'}> +CONFIG_ACPI_AC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_ALS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACPI_APEI_EINJ policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_APEI_GHES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_BATTERY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_BGRT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_CMPC policy<{'amd64': 'n'}> +CONFIG_ACPI_CONFIGFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_CUSTOM_DSDT_FILE policy<{'amd64': '""', 'arm64': '""'}> +CONFIG_ACPI_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_DEBUGGER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_DEBUGGER_USER policy<{'amd64': '-'}> +CONFIG_ACPI_DOCK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_EXTLOG policy<{'amd64': 'n'}> +CONFIG_ACPI_FAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_I2C_OPREGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACPI_PCI_SLOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE policy<{'amd64': 'n'}> +CONFIG_ACPI_SBS policy<{'amd64': 'n'}> +CONFIG_ACPI_TABLE_UPGRADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_TAD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_THERMAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_TOSHIBA policy<{'amd64': '-'}> +CONFIG_AD2S1200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD2S1210 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD2S90 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD525X_DPOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AD525X_DPOT_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD525X_DPOT_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5272 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5360 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5380 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5421 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5446 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5449 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5504 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5592R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5593R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5624R_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5686_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5696_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5755 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5758 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5764 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5791 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5933 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7124 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7192 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7266 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7291 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7298 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7303 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7476 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7606_IFACE_PARALLEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7606_IFACE_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7746 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7766 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7768_1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7791 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7793 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7816 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7887 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7923 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7949 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD799X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD8366 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD8801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9834 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADAPTEC_STARFIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADF4350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADF4371 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16080 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16130 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16136 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16203 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16209 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16240 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16260 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16460 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16480 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADJD_S311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADM8211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXL372_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXL372_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXRS450 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AFE4403 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AFE4404 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AHC1EC0_WDT policy<{'amd64': '-'}> +CONFIG_AHCI_BRCM policy<{'arm64': 'n'}> +CONFIG_AHCI_CEVA policy<{'arm64': 'y'}> +CONFIG_AHCI_IMX policy<{'arm64': 'n'}> +CONFIG_AHCI_MTK policy<{'arm64': 'n'}> +CONFIG_AHCI_MVEBU policy<{'arm64': 'y'}> +CONFIG_AHCI_QORIQ policy<{'arm64': 'y'}> +CONFIG_AHCI_TEGRA policy<{'arm64': 'n'}> +CONFIG_AHCI_XGENE policy<{'arm64': 'y'}> +CONFIG_AIRO policy<{'amd64': '-'}> +CONFIG_AIRO_CS policy<{'amd64': '-'}> +CONFIG_AK09911 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AK8974 policy<{'arm64': '-'}> +CONFIG_AK8975 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AL3320A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ALIENWARE_WMI policy<{'amd64': 'n'}> +CONFIG_ALTERA_FREEZE_BRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ALTERA_MBOX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_PR_IP_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_PR_IP_CORE_PLAT policy<{'arm64': '-'}> +CONFIG_ALTERA_STAPL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_TSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AL_FIC policy<{'arm64': 'n'}> +CONFIG_AM2315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMBA_PL08X policy<{'arm64': 'n'}> +CONFIG_AMD8111_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AMD_XGBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD_XGBE_DCB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMILO_RFKILL policy<{'amd64': 'n'}> +CONFIG_ANDROID_BINDER_DEVICES policy<{'amd64': '"binder,hwbinder,vndbinder"', 'arm64': '"binder,hwbinder,vndbinder"'}> +CONFIG_APDS9300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_APDS9960 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_APPLE_GMUX policy<{'amd64': 'n'}> +CONFIG_APQ_GCC_8084 policy<{'arm64': 'n'}> +CONFIG_APQ_MMCC_8084 policy<{'arm64': 'n'}> +CONFIG_AQUANTIA_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AR5523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ARCH_AGILEX policy<{'arm64': 'n'}> +CONFIG_ARCH_ALPINE policy<{'arm64': 'y'}> +CONFIG_ARCH_BITMAIN policy<{'arm64': 'n'}> +CONFIG_ARCH_EXYNOS policy<{'arm64': 'y'}> +CONFIG_ARCH_K3_AM6_SOC policy<{'arm64': 'n'}> +CONFIG_ARCH_K3_J721E_SOC policy<{'arm64': 'n'}> +CONFIG_ARCH_MMAP_RND_BITS policy<{'amd64': '28', 'arm64': '28'}> +CONFIG_ARCH_R8A7795 policy<{'arm64': 'n'}> +CONFIG_ARCH_R8A7796 policy<{'arm64': 'n'}> +CONFIG_ARCH_REALTEK policy<{'arm64': 'n'}> +CONFIG_ARCH_STRATIX10 policy<{'arm64': 'n'}> +CONFIG_ARCH_TEGRA policy<{'arm64': 'y'}> +CONFIG_ARCH_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_ARCNET_COM20020_CS policy<{'amd64': '-'}> +CONFIG_ARM64_ACPI_PARKING_PROTOCOL policy<{'arm64': 'n'}> +CONFIG_ARM64_DEBUG_PRIORITY_MASKING policy<{'arm64': '-'}> +CONFIG_ARM64_PSEUDO_NMI policy<{'arm64': 'n'}> +CONFIG_ARM64_SW_TTBR0_PAN policy<{'arm64': 'n'}> +CONFIG_ARMADA_37XX_RWTM_MBOX policy<{'arm64': 'n'}> +CONFIG_ARMADA_37XX_WATCHDOG policy<{'arm64': 'n'}> +CONFIG_ARM_ARMADA_37XX_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_ARMADA_8K_CPUFREQ policy<{'arm64': 'n'}> +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_CCI400_PMU policy<{'arm64': '-'}> +CONFIG_ARM_CCI5xx_PMU policy<{'arm64': '-'}> +CONFIG_ARM_CCI_PMU policy<{'arm64': 'n'}> +CONFIG_ARM_CCN policy<{'arm64': 'n'}> +CONFIG_ARM_DSU_PMU policy<{'arm64': 'n'}> +CONFIG_ARM_EXYNOS_BUS_DEVFREQ policy<{'arm64': 'n'}> +CONFIG_ARM_IMX6Q_CPUFREQ policy<{'arm64': '-'}> +CONFIG_ARM_MEDIATEK_CPUFREQ policy<{'arm64': 'n'}> +CONFIG_ARM_MHU policy<{'arm64': 'y'}> +CONFIG_ARM_PL172_MPMC policy<{'arm64': 'n'}> +CONFIG_ARM_QCOM_CPUFREQ_HW policy<{'arm64': 'y'}> +CONFIG_ARM_QCOM_CPUFREQ_NVMEM policy<{'arm64': 'y'}> +CONFIG_ARM_RK3399_DMC_DEVFREQ policy<{'arm64': 'n'}> +CONFIG_ARM_SBSA_WATCHDOG policy<{'arm64': 'y'}> +CONFIG_ARM_SCMI_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_SCMI_POWER_DOMAIN policy<{'arm64': 'y'}> +CONFIG_ARM_SCPI_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_SCPI_POWER_DOMAIN policy<{'arm64': 'y'}> +CONFIG_ARM_SCPI_PROTOCOL policy<{'arm64': 'y'}> +CONFIG_ARM_SDE_INTERFACE policy<{'arm64': 'n'}> +CONFIG_ARM_SP805_WATCHDOG policy<{'arm64': 'y'}> +CONFIG_ARM_SPE_PMU policy<{'arm64': 'n'}> +CONFIG_ARM_TEGRA124_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_TEGRA186_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_TEGRA20_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_ARM_TEGRA_DEVFREQ policy<{'arm64': 'n'}> +CONFIG_AS3935 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ASUS_LAPTOP policy<{'amd64': 'n'}> +CONFIG_ASUS_NB_WMI policy<{'amd64': '-'}> +CONFIG_ASUS_WMI policy<{'amd64': '-'}> +CONFIG_ASYNC_RAID6_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AT76C50X_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AT803X_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ATA_OVER_ETH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ATH10K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_AHB policy<{'arm64': '-'}> +CONFIG_ATH10K_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_SNOC policy<{'arm64': '-'}> +CONFIG_ATH10K_SPECTRAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_TRACER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_AHB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_BTCOEX_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_CHANNEL_CONTEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_COMMON_SPECTRAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_DYNACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HTC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HTC_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCI_NO_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCOEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_RFKILL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_STATION_STATISTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_WOW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATLAS_PH_SENSOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATOMIC64_SELFTEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AURORA_NB8800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXI_DMAC policy<{'arm64': 'n'}> +CONFIG_AXP20X_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP20X_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP288_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP288_CHARGER policy<{'amd64': '-'}> +CONFIG_AXP288_FUEL_GAUGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DMA_AND_PIO_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DMA_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_PIO_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_BCMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_BCMA_AND_SSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_SSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_HT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_LP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_N policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_AAT2870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_ADP8860 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_ADP8870 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_APPLE policy<{'amd64': 'n'}> +CONFIG_BACKLIGHT_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_BD6107 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_CARILLO_RANCH policy<{'amd64': '-'}> +CONFIG_BACKLIGHT_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_GENERIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LM3630A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LM3639 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_LP855X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LV5207LP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_PANDORA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_PM8941_WLED policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_RAVE_SP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_SAHARA policy<{'amd64': 'n'}> +CONFIG_BACKLIGHT_SKY81452 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKTRACE_SELF_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_ACT8945A policy<{'arm64': '-'}> +CONFIG_BATTERY_AXP20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX_HDQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_CPCAP policy<{'arm64': '-'}> +CONFIG_BATTERY_DA9030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DA9150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DS2760 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DS2780 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DS2781 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DS2782 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_GAUGE_LTC2941 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_LEGO_EV3 policy<{'arm64': '-'}> +CONFIG_BATTERY_MAX17040 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_MAX17042 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_MAX1721X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_RT5033 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_RX51 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_SBS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_TWL4030_MADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BAYCOM_PAR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BAYCOM_SER_FDX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BAYCOM_SER_HDX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCM2835_VCHIQ policy<{'arm64': 'n'}> +CONFIG_BCM2835_WDT policy<{'arm64': 'y'}> +CONFIG_BCM7038_WDT policy<{'arm64': 'n'}> +CONFIG_BCM87XX_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCM_IPROC_ADC policy<{'arm64': '-'}> +CONFIG_BCM_KONA_USB2_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCM_NS_THERMAL policy<{'arm64': 'y'}> +CONFIG_BCM_PDC_MBOX policy<{'arm64': 'n'}> +CONFIG_BCM_SR_THERMAL policy<{'arm64': 'y'}> +CONFIG_BCM_VIDEOCORE policy<{'arm64': 'y'}> +CONFIG_BD70528_WATCHDOG policy<{'arm64': '-'}> +CONFIG_BERLIN2_ADC policy<{'arm64': '-'}> +CONFIG_BH1750 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BH1780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BLK_DEV_3W_XXXX_RAID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_FD policy<{'amd64': 'n'}> +CONFIG_BLK_DEV_NULL_BLK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_PCIESSD_MTIP32XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_RSXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_SKD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_SX8 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_UMEM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BMA180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMA220 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_MAGN_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_MAGN_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BME680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMG160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI160_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI160_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMP280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BNA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BPQETHER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BRCMDBG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMSMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCM_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BROADCOM_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BT_6LOWPAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_ATH3K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP_MC_FILTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP_PROTO_FILTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BREDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_CMTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBCM203X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBFUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBLUECARD policy<{'amd64': '-'}> +CONFIG_BT_HCIBPA10X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBT3C policy<{'amd64': '-'}> +CONFIG_BT_HCIBTSDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_AUTOSUSPEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_BCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_MTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_RTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIDTL1 policy<{'amd64': '-'}> +CONFIG_BT_HCIUART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_3WIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_AG6XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_ATH3K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_BCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_BCSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_H4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_LL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_MRVL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_NOKIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_QCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_RTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIVHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HIDP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_LE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MRVL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MRVL_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MTKSDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MTKUART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_QCOMSMD policy<{'arm64': '-'}> +CONFIG_BT_RFCOMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_RFCOMM_TTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_SELFTEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_WILINK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_C2PORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_C2PORT_DURAMAR_2150 policy<{'amd64': '-'}> +CONFIG_CAIF_HSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAIF_SPI_SLAVE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAIF_SPI_SYNC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAIF_TTY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_8DEV_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_CC770 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_CC770_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_CC770_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_EMS_PCMCIA policy<{'amd64': '-'}> +CONFIG_CAN_EMS_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_ESD_USB2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_GRCAN policy<{'arm64': 'n'}> +CONFIG_CAN_GS_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_IFI_CANFD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_KVASER_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCBA_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCP251X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_M_CAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_M_CAN_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_M_CAN_TCAN4X5X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_PEAK_PCMCIA policy<{'amd64': '-'}> +CONFIG_CAN_PEAK_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_SOFTING policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_SOFTING_CS policy<{'amd64': '-'}> +CONFIG_CAN_UCAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_XILINXCAN policy<{'arm64': 'n'}> +CONFIG_CAPI_AVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAPI_TRACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARDMAN_4000 policy<{'amd64': '-'}> +CONFIG_CARDMAN_4040 policy<{'amd64': '-'}> +CONFIG_CARL9170 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARMINE_DRAM_CUSTOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CASSINI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAVIUM_CPT policy<{'arm64': 'n'}> +CONFIG_CAVIUM_PTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CB710_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CB710_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CC10001_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CCS811 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CEC_PIN_ERROR_INJ policy<{'arm64': '-'}> +CONFIG_CHARGER_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_AXP20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_BD70528 policy<{'arm64': '-'}> +CONFIG_CHARGER_BQ2415X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ24190 policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_CHARGER_BQ24257 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ24735 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ25890 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_CPCAP policy<{'arm64': '-'}> +CONFIG_CHARGER_CROS_USBPD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_DA9150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_DETECTOR_MAX14656 policy<{'arm64': 'n'}> +CONFIG_CHARGER_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_ISP1704 policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_CHARGER_LP8727 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_MANAGER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX14577 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX77650 policy<{'arm64': '-'}> +CONFIG_CHARGER_MAX77693 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX8903 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_QCOM_SMBB policy<{'arm64': '-'}> +CONFIG_CHARGER_RT9455 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_SBS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_SC2731 policy<{'arm64': '-'}> +CONFIG_CHARGER_SMB347 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_UCS1002 policy<{'arm64': 'n'}> +CONFIG_CHARGER_WILCO policy<{'amd64': '-'}> +CONFIG_CHELSIO_T4_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHROMEOS_LAPTOP policy<{'amd64': '-'}> +CONFIG_CHROMEOS_PSTORE policy<{'amd64': '-'}> +CONFIG_CHROMEOS_TBMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CICADA_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CIO_DAC policy<{'amd64': '-'}> +CONFIG_CLK_HSDK policy<{'arm64': 'n'}> +CONFIG_CLK_R8A7795 policy<{'arm64': '-'}> +CONFIG_CLK_R8A7796 policy<{'arm64': '-'}> +CONFIG_CLK_R9A06G032 policy<{'arm64': 'n'}> +CONFIG_CLK_SP810 policy<{'arm64': 'n'}> +CONFIG_CLK_TWL6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CLK_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_CM32181 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3605 policy<{'arm64': '-'}> +CONFIG_CM36651 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CMA_ALIGNMENT policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_MBYTES policy<{'amd64': '-'}> +CONFIG_CMA_SIZE_SEL_MAX policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_MBYTES policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_MIN policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_PERCENTAGE policy<{'arm64': '-'}> +CONFIG_CMDLINE policy<{'arm64': '""'}> +CONFIG_COMEDI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMEDI_8255_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_8255_SA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1516 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1564 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_16XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_2032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_2200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3120 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1760 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_BOND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT282X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT9812 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_FL512 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_GSC_HPDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ICP_MULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_JR3_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_KE_COUNTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ME_DAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MF6X4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_6527 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_65XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_660X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_670X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_USB6501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PARPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': '-'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_S526 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_S626 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUXFAST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUXSIGMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USB_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_VMK80XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_BD718XX policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_CDCE706 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_CDCE925 policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_CS2000_CP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_FIXED_MMIO policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_HI3516CV300 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_HI3519 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_HI3798CV200 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_HI655X policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_MAX77686 policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_MT2712_BDPSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_IMGSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_JPGDECSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_MFGCFG policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_MMSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_VDECSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT2712_VENCSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_AUDSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_CAMSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_IMGSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_IPESYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_MFGCFG policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_MMSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_VDECSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6779_VENCSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6797_IMGSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6797_MMSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6797_VDECSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT6797_VENCSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT7622_AUDSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT7622_ETHSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT7622_HIFSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_MT8516_AUDSYS policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_QCOM policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_S2MPS11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_SAMSUNG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_SCMI policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_SCPI policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_SI514 policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_SI5351 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_SI570 policy<{'arm64': 'n'}> +CONFIG_COMMON_CLK_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_RESET_HI3660 policy<{'arm64': 'y'}> +CONFIG_COMMON_RESET_HI6220 policy<{'arm64': 'y'}> +CONFIG_COMPAL_LAPTOP policy<{'amd64': 'n'}> +CONFIG_CPCAP_ADC policy<{'arm64': '-'}> +CONFIG_CRAMFS_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_CHARDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_ISHTP policy<{'amd64': '-'}> +CONFIG_CROS_EC_LIGHTBAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_LPC policy<{'amd64': '-'}> +CONFIG_CROS_EC_RPMSG policy<{'arm64': '-'}> +CONFIG_CROS_EC_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_SYSFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_VBC policy<{'arm64': '-'}> +CONFIG_CROS_KBD_LED_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_USBPD_LOGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CRYPTO_AES_ARM64 policy<{'arm64': 'y'}> +CONFIG_CRYPTO_AES_ARM64_CE policy<{'arm64': 'y'}> +CONFIG_CRYPTO_AES_ARM64_CE_BLK policy<{'arm64': 'y'}> +CONFIG_CRYPTO_AES_ARM64_CE_CCM policy<{'arm64': 'y'}> +CONFIG_CRYPTO_AES_TI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CRYPTO_CRYPTD policy<{'amd64': 'm', 'arm64': 'y'}> +CONFIG_CRYPTO_DEV_CAVIUM_ZIP policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_EXYNOS_RNG policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD policy<{'arm64': '-'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD policy<{'arm64': '-'}> +CONFIG_CRYPTO_DEV_HISI_SEC policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_MARVELL_CESA policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_QAT_C3XXX policy<{'amd64': 'n'}> +CONFIG_CRYPTO_DEV_QAT_C3XXXVF policy<{'amd64': 'n'}> +CONFIG_CRYPTO_DEV_QAT_C62X policy<{'amd64': 'n'}> +CONFIG_CRYPTO_DEV_QAT_C62XVF policy<{'amd64': 'n'}> +CONFIG_CRYPTO_DEV_QCE policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_ROCKCHIP policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_S5P policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_SAHARA policy<{'arm64': 'n'}> +CONFIG_CRYPTO_GHASH_ARM64_CE policy<{'arm64': 'y'}> +CONFIG_CRYPTO_NHPOLY1305_NEON policy<{'arm64': 'n'}> +CONFIG_CRYPTO_SHA1_ARM64_CE policy<{'arm64': 'y'}> +CONFIG_CRYPTO_SHA256_ARM64 policy<{'arm64': 'y'}> +CONFIG_CRYPTO_SHA2_ARM64_CE policy<{'arm64': 'y'}> +CONFIG_CRYPTO_SM4_ARM64_CE policy<{'arm64': 'n'}> +CONFIG_CW1200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CW1200_WLAN_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CW1200_WLAN_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CXD2880_SPI_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CYPRESS_FIRMWARE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DA280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9055_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9062_THERMAL policy<{'arm64': '-'}> +CONFIG_DA9062_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9150_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DAVICOM_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DCDBAS policy<{'amd64': 'n'}> +CONFIG_DE2104X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DE2104X_DSL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DE4X5 policy<{'amd64': '-'}> +CONFIG_DELL_LAPTOP policy<{'amd64': 'n'}> +CONFIG_DELL_RBTN policy<{'amd64': 'n'}> +CONFIG_DELL_RBU policy<{'amd64': 'n'}> +CONFIG_DELL_SMBIOS_SMM policy<{'amd64': '-'}> +CONFIG_DELL_SMO8800 policy<{'amd64': 'n'}> +CONFIG_DELL_UART_BACKLIGHT policy<{'amd64': 'n'}> +CONFIG_DELL_WMI policy<{'amd64': 'n'}> +CONFIG_DELL_WMI_AIO policy<{'amd64': 'n'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP policy<{'arm64': 'm'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU policy<{'arm64': 'm'}> +CONFIG_DEV_DAX_PMEM policy<{'amd64': 'y'}> +CONFIG_DEV_DAX_PMEM_COMPAT policy<{'amd64': '-'}> +CONFIG_DHT11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DLN2_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DM9102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMA_CMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DMARD06 policy<{'arm64': '-'}> +CONFIG_DMARD09 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMARD10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMI_SYSFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DP83640_PHY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DP83848_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DP83867_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DPAA2_CONSOLE policy<{'arm64': 'y'}> +CONFIG_DPOT_DAC policy<{'arm64': '-'}> +CONFIG_DPS310 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRAGONRISE_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_ANALOGIX_ANX78XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_ARCPGU policy<{'arm64': 'n'}> +CONFIG_DRM_CDNS_DSI policy<{'arm64': 'n'}> +CONFIG_DRM_CIRRUS_QEMU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_DUMB_VGA_DAC policy<{'arm64': 'n'}> +CONFIG_DRM_DW_HDMI_AHB_AUDIO policy<{'arm64': '-'}> +CONFIG_DRM_DW_HDMI_I2S_AUDIO policy<{'arm64': '-'}> +CONFIG_DRM_ETNAVIV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_ETNAVIV_THERMAL policy<{'arm64': '-'}> +CONFIG_DRM_EXYNOS policy<{'arm64': 'm'}> +CONFIG_DRM_EXYNOS5433_DECON policy<{'arm64': 'y'}> +CONFIG_DRM_EXYNOS7_DECON policy<{'arm64': 'y'}> +CONFIG_DRM_EXYNOS_DSI policy<{'arm64': 'y'}> +CONFIG_DRM_EXYNOS_FIMC policy<{'arm64': 'n'}> +CONFIG_DRM_EXYNOS_FIMD policy<{'arm64': 'n'}> +CONFIG_DRM_EXYNOS_HDMI policy<{'arm64': 'y'}> +CONFIG_DRM_EXYNOS_MIC policy<{'arm64': 'y'}> +CONFIG_DRM_EXYNOS_MIXER policy<{'arm64': 'n'}> +CONFIG_DRM_EXYNOS_ROTATOR policy<{'arm64': 'n'}> +CONFIG_DRM_EXYNOS_SCALER policy<{'arm64': 'n'}> +CONFIG_DRM_EXYNOS_VIDI policy<{'arm64': 'n'}> +CONFIG_DRM_GM12U320 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_HDLCD policy<{'arm64': 'n'}> +CONFIG_DRM_HDLCD_SHOW_UNDERRUN policy<{'arm64': '-'}> +CONFIG_DRM_I2C_ADV7511_AUDIO policy<{'arm64': '-'}> +CONFIG_DRM_I2C_CH7006 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I2C_NXP_TDA998X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I2C_SIL164 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I915_GVT_KVMGT policy<{'amd64': 'n'}> +CONFIG_DRM_KOMEDA policy<{'arm64': 'n'}> +CONFIG_DRM_LVDS_ENCODER policy<{'arm64': 'n'}> +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW policy<{'arm64': 'n'}> +CONFIG_DRM_MGAG200 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_NOUVEAU_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_NOUVEAU_SVM policy<{'amd64': '-'}> +CONFIG_DRM_NXP_PTN3460 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_ARM_VERSATILE policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_ILITEK_IL9322 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_ILITEK_ILI9881C policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_INNOLUX_P079ZCA policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_JDI_LT070ME05000 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_LG_LB035Q02 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_LG_LG4573 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_NEC_NL8048HL11 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_NOVATEK_NT39016 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_ORISETECH_OTM8009A policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_RAYDIUM_RM68200 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_ROCKTECH_JH057N00900 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_RONBO_RB070D30 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_LD9040 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SEIKO_43WVF1G policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SHARP_LS037V7DW01 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SHARP_LS043T1LE01 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SITRONIX_ST7701 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SITRONIX_ST7789V policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_SONY_ACX565AKM policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_TPO_TD028TTEC1 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_TPO_TD043MTEA1 policy<{'arm64': 'n'}> +CONFIG_DRM_PANEL_TPO_TPG110 policy<{'arm64': 'n'}> +CONFIG_DRM_PARADE_PS8622 policy<{'arm64': 'n'}> +CONFIG_DRM_RCAR_VSP policy<{'arm64': '-'}> +CONFIG_DRM_SII9234 policy<{'arm64': 'n'}> +CONFIG_DRM_SIL_SII8620 policy<{'arm64': 'n'}> +CONFIG_DRM_SUN4I_HDMI_CEC policy<{'arm64': 'n'}> +CONFIG_DRM_TEGRA policy<{'arm64': 'm'}> +CONFIG_DRM_TEGRA_DEBUG policy<{'arm64': 'n'}> +CONFIG_DRM_TEGRA_STAGING policy<{'arm64': 'n'}> +CONFIG_DRM_TI_TFP410 policy<{'arm64': 'n'}> +CONFIG_DRM_TOSHIBA_TC358764 policy<{'arm64': 'n'}> +CONFIG_DRM_TOSHIBA_TC358767 policy<{'arm64': 'n'}> +CONFIG_DRM_UDL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_VC4 policy<{'arm64': '-'}> +CONFIG_DRM_VC4_HDMI_CEC policy<{'arm64': '-'}> +CONFIG_DRM_VGEM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_VMWGFX policy<{'amd64': 'n'}> +CONFIG_DRM_VMWGFX_FBCON policy<{'amd64': '-'}> +CONFIG_DRM_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DS1803 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DS4424 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_A8293 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AF9013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AF9033 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AS102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ASCOT2E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ATBM8830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AU8522_DTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AU8522_V4L policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AV7110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AV7110_OSD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BCM3510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BT8XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_AV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_CI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_PATCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX22700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX22702 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24116 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24117 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24120 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24123 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2099 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2820R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2841ER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2880 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DDBRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DDBRIDGE_MSIENABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DEMUX_SECTION_LOSS_LOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB3000MB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB3000MC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB7000M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB7000P policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB8000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB9000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DM1105 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRX39XYJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRXD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRXK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DS3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DUMMY_FE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DYNAMIC_MINORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_EC100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_FIREDTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HELENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HOPPER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HORUS3A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6405 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6421 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6423 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_IX2505V policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_L64781 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LG2160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT3305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT3306A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT330X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGS8GL5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGS8GXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBH25 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBH29 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBP21 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBP22 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_M88DS3103 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_M88RS2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MANTIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MAX_ADAPTERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MB86A16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MB86A20S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88443X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88472 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88473 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MT312 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MT352 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MXL5XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NGENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NXT200X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NXT6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_OR51132 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_OR51211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLATFORM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLUTO2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PT1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PT3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2832_SDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1409 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1411 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1420 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S921 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI2165 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI2168 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI21XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SMIPCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP8870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP887X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB0899 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0288 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0297 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0299 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0367 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0900 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV090x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6110x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TC90522 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10021 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10023 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10048 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA1004X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10071 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10086 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA18271C2DD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA665x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA8083 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA8261 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA826X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TS2020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TTUSB_BUDGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TTUSB_DEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUA6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_CX24113 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_DIB0070 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_DIB0090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_ITD1000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ULE_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_A800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9005_REMOTE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9015 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9035 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_ANYSEE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AU6610 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AZ6007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AZ6027 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CE6230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CINERGY_T2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CXUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CXUSB_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIB0700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MB_FAULTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIGITV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DTT200U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DTV5100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DVBSKY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DW2102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_EC168 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_GL861 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_GP8PSK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_LME2510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_M920X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_MXL111SF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_NOVA_T_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_OPERA1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_PCTV452E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_RTL28XXU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_TECHNISAT_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_TTUSB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_UMT_010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_V2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_VP702X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_VP7045 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_ZD1301 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_VES1820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_VES1X93 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZD1301_DEMOD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10036 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10039 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10353 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DWMAC_DWC_QOS_ETH policy<{'arm64': '-'}> +CONFIG_DWMAC_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DWMAC_IPQ806X policy<{'arm64': '-'}> +CONFIG_DWMAC_MEDIATEK policy<{'arm64': '-'}> +CONFIG_DWMAC_MESON policy<{'arm64': '-'}> +CONFIG_DWMAC_QCOM_ETHQOS policy<{'arm64': '-'}> +CONFIG_DWMAC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_DWMAC_SOCFPGA policy<{'arm64': '-'}> +CONFIG_DWMAC_SUN8I policy<{'arm64': '-'}> +CONFIG_DWMAC_SUNXI policy<{'arm64': '-'}> +CONFIG_DW_AXI_DMAC policy<{'arm64': 'n'}> +CONFIG_DW_DMAC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EARLY_PRINTK_USB_XDBC policy<{'amd64': 'n'}> +CONFIG_ECHO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EDAC_ALTERA policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_ETHERNET policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_NAND policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_OCRAM policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_QSPI policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_SDMMC policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_SDRAM policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_USB policy<{'arm64': '-'}> +CONFIG_EDAC_GHES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EDAC_QCOM policy<{'arm64': '-'}> +CONFIG_EDAC_SYNOPSYS policy<{'arm64': 'n'}> +CONFIG_EDAC_THUNDERX policy<{'arm64': 'n'}> +CONFIG_EDAC_XGENE policy<{'arm64': 'n'}> +CONFIG_EEEPC_LAPTOP policy<{'amd64': 'n'}> +CONFIG_EEEPC_WMI policy<{'amd64': '-'}> +CONFIG_EEPROM_93XX46 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_AT25 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_IDT_89HPESX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_LEGACY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_MAX6875 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EFI_ARMSTUB_DTB_LOADER policy<{'arm64': 'y'}> +CONFIG_EL3 policy<{'amd64': '-'}> +CONFIG_EMAC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_ENA_ETHERNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ENC28J60 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ENC28J60_WRITEVERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ENCX24J600 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ENVELOPE_DETECTOR policy<{'arm64': '-'}> +CONFIG_EPIC100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EROFS_FS_ZIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EXTCON policy<{'amd64': 'n', 'arm64': 'y'}> +CONFIG_EXTCON_ADC_JACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_ARIZONA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_AXP288 policy<{'amd64': '-'}> +CONFIG_EXTCON_FSA9480 policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_EXTCON_GPIO policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_EXTCON_INTEL_CHT_WC policy<{'amd64': '-'}> +CONFIG_EXTCON_INTEL_INT3496 policy<{'amd64': '-'}> +CONFIG_EXTCON_MAX14577 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_EXTCON_MAX3355 policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_EXTCON_MAX77693 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_EXTCON_MAX77843 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_PTN5150 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_EXTCON_QCOM_SPMI_MISC policy<{'arm64': 'n'}> +CONFIG_EXTCON_RT8973A policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_EXTCON_SM5502 policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_EXTCON_USBC_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_USB_GPIO policy<{'amd64': '-', 'arm64': 'y'}> +CONFIG_EXYNOS_AUDSS_CLK_CON policy<{'arm64': 'y'}> +CONFIG_EXYNOS_CHIPID policy<{'arm64': 'y'}> +CONFIG_EXYNOS_IOMMU policy<{'arm64': 'n'}> +CONFIG_EXYNOS_PMU policy<{'arm64': 'y'}> +CONFIG_EXYNOS_PM_DOMAINS policy<{'arm64': 'y'}> +CONFIG_EXYNOS_THERMAL policy<{'arm64': 'y'}> +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET policy<{'arm64': '-'}> +CONFIG_FB_3DFX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_3DFX_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_3DFX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ARC policy<{'amd64': 'n'}> +CONFIG_FB_ARK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ARMCLCD policy<{'arm64': 'n'}> +CONFIG_FB_ASILIANT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY128 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY128_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_CT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_GENERIC_LCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_GX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_CARILLO_RANCH policy<{'amd64': '-'}> +CONFIG_FB_CARMINE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CARMINE_DRAM_EVAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_CIRRUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CYBER2000 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CYBER2000_DDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_HGA policy<{'amd64': 'n'}> +CONFIG_FB_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FB_I740 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_IMSTT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_IMX policy<{'arm64': 'n'}> +CONFIG_FB_KYRO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_LE80578 policy<{'amd64': 'n'}> +CONFIG_FB_MATROX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_MATROX_G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MAVEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MILLENIUM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MYSTIQUE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MB862XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_MB862XX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MB862XX_PCI_GDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_METRONOME policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_N411 policy<{'amd64': 'n'}> +CONFIG_FB_NEOMAGIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_NVIDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_NVIDIA_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_NVIDIA_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_NVIDIA_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_OPENCORES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_PM2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_PM2_FIFO_DISCONNECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_PM3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RADEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RADEON_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RADEON_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RADEON_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RIVA_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_S1D13XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_S3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_S3_DDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SAVAGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SAVAGE_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SAVAGE_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SH_MOBILE_LCDC policy<{'arm64': 'n'}> +CONFIG_FB_SIMPLE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SIS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SIS_300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SIS_315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SM712 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SMSCUFX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SSD1307 policy<{'arm64': 'n'}> +CONFIG_FB_TFT policy<{'arm64': 'n'}> +CONFIG_FB_TFT_AGM1264K_FL policy<{'arm64': '-'}> +CONFIG_FB_TFT_BD663474 policy<{'arm64': '-'}> +CONFIG_FB_TFT_HX8340BN policy<{'arm64': '-'}> +CONFIG_FB_TFT_HX8347D policy<{'arm64': '-'}> +CONFIG_FB_TFT_HX8353D policy<{'arm64': '-'}> +CONFIG_FB_TFT_HX8357D policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9163 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9320 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9325 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9340 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9341 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9481 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ILI9486 policy<{'arm64': '-'}> +CONFIG_FB_TFT_PCD8544 policy<{'arm64': '-'}> +CONFIG_FB_TFT_RA8875 policy<{'arm64': '-'}> +CONFIG_FB_TFT_S6D02A1 policy<{'arm64': '-'}> +CONFIG_FB_TFT_S6D1121 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SH1106 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SSD1289 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SSD1305 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SSD1306 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SSD1331 policy<{'arm64': '-'}> +CONFIG_FB_TFT_SSD1351 policy<{'arm64': '-'}> +CONFIG_FB_TFT_ST7735R policy<{'arm64': '-'}> +CONFIG_FB_TFT_ST7789V policy<{'arm64': '-'}> +CONFIG_FB_TFT_TINYLCD policy<{'arm64': '-'}> +CONFIG_FB_TFT_TLS8204 policy<{'arm64': '-'}> +CONFIG_FB_TFT_UC1611 policy<{'arm64': '-'}> +CONFIG_FB_TFT_UC1701 policy<{'arm64': '-'}> +CONFIG_FB_TFT_UPD161704 policy<{'arm64': '-'}> +CONFIG_FB_TFT_WATTEROTT policy<{'arm64': '-'}> +CONFIG_FB_TRIDENT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_UDL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_UVESA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_VESA policy<{'amd64': 'n'}> +CONFIG_FB_VGA16 policy<{'amd64': 'n'}> +CONFIG_FB_VOODOO1 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_VT8623 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_XILINX policy<{'arm64': 'n'}> +CONFIG_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FCOE_FNIC policy<{'amd64': '-'}> +CONFIG_FIND_BIT_BENCHMARK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FIREWIRE_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_OHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_SBP2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONTS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FONT_10x18 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_6x10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_6x11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_7x14 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_ACORN_8x8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_MINI_4x6 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_PEARL_8x8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_SUN12x22 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_SUN8x16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_TER16x32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FORCEDETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_BRIDGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_DFL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_DFL_AFU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_BRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_MGR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_REGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_MGR_ALTERA_CVP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_MGR_ALTERA_PS_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_MGR_ICE40_SPI policy<{'arm64': 'n'}> +CONFIG_FPGA_MGR_MACHXO2_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_MGR_STRATIX10_SOC policy<{'arm64': '-'}> +CONFIG_FPGA_MGR_ZYNQMP_FPGA policy<{'arm64': 'n'}> +CONFIG_FPGA_REGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FSI policy<{'arm64': 'n'}> +CONFIG_FSI_MASTER_GPIO policy<{'arm64': '-'}> +CONFIG_FSI_MASTER_HUB policy<{'arm64': '-'}> +CONFIG_FSI_NEW_DEV_NODE policy<{'arm64': '-'}> +CONFIG_FSI_OCC policy<{'arm64': '-'}> +CONFIG_FSI_SBEFIFO policy<{'arm64': '-'}> +CONFIG_FSI_SCOM policy<{'arm64': '-'}> +CONFIG_FSL_BMAN_TEST policy<{'arm64': 'n'}> +CONFIG_FSL_BMAN_TEST_API policy<{'arm64': '-'}> +CONFIG_FSL_DPAA2 policy<{'arm64': 'n'}> +CONFIG_FSL_DPAA2_ETH policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA2_ETHSW policy<{'arm64': '-'}> +CONFIG_FSL_DPAA2_PTP_CLOCK policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA_CHECKING policy<{'arm64': 'n'}> +CONFIG_FSL_DPAA_ETH policy<{'arm64': 'y'}> +CONFIG_FSL_EDMA policy<{'arm64': 'y'}> +CONFIG_FSL_ENETC policy<{'arm64': 'y'}> +CONFIG_FSL_ENETC_HW_TIMESTAMPING policy<{'arm64': 'n'}> +CONFIG_FSL_ENETC_MDIO policy<{'arm64': 'y'}> +CONFIG_FSL_ENETC_PTP_CLOCK policy<{'arm64': 'y'}> +CONFIG_FSL_ENETC_VF policy<{'arm64': 'y'}> +CONFIG_FSL_MC_DPIO policy<{'arm64': 'y'}> +CONFIG_FSL_PQ_MDIO policy<{'arm64': 'n'}> +CONFIG_FSL_QDMA policy<{'arm64': 'n'}> +CONFIG_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FUEL_GAUGE_SC27XX policy<{'arm64': '-'}> +CONFIG_FUJITSU_LAPTOP policy<{'amd64': 'n'}> +CONFIG_FUJITSU_TABLET policy<{'amd64': 'n'}> +CONFIG_FUSION_LAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FWTTY_MAX_CARD_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FWTTY_MAX_TOTAL_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FW_CFG_SYSFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FW_CFG_SYSFS_CMDLINE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXAS21002C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GADGET_UAC1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GADGET_UAC1_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GAMEPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GAMEPORT_EMU10K1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GAMEPORT_FM801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GAMEPORT_L4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GAMEPORT_NS558 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GEMINI_ETHERNET policy<{'arm64': 'n'}> +CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GENERIC_ADC_THERMAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GIANFAR policy<{'arm64': 'n'}> +CONFIG_GIGASET_BASE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GIGASET_CAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GIGASET_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GIGASET_M101 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GIGASET_M105 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_MTK_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_SIRF_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_UBX_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GP2AP020A00F policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_74X164 policy<{'arm64': 'n'}> +CONFIG_GPIO_74XX_MMIO policy<{'arm64': 'n'}> +CONFIG_GPIO_ADNP policy<{'arm64': 'n'}> +CONFIG_GPIO_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_BD70528 policy<{'arm64': '-'}> +CONFIG_GPIO_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_GPIO_BT8XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GPIO_CADENCE policy<{'arm64': 'n'}> +CONFIG_GPIO_CRYSTAL_COVE policy<{'amd64': '-'}> +CONFIG_GPIO_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_EIC_SPRD policy<{'arm64': 'n'}> +CONFIG_GPIO_FTGPIO010 policy<{'arm64': 'n'}> +CONFIG_GPIO_GRGPIO policy<{'arm64': 'n'}> +CONFIG_GPIO_GW_PLD policy<{'arm64': 'n'}> +CONFIG_GPIO_HLWD policy<{'arm64': 'n'}> +CONFIG_GPIO_KEMPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_LP87565 policy<{'arm64': '-'}> +CONFIG_GPIO_MAX77620 policy<{'arm64': '-'}> +CONFIG_GPIO_MAX77650 policy<{'arm64': '-'}> +CONFIG_GPIO_MOCKUP policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_GPIO_MOXTET policy<{'arm64': '-'}> +CONFIG_GPIO_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_PMIC_EIC_SPRD policy<{'arm64': '-'}> +CONFIG_GPIO_RASPBERRYPI_EXP policy<{'arm64': 'y'}> +CONFIG_GPIO_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_RCAR policy<{'arm64': 'y'}> +CONFIG_GPIO_SAMA5D2_PIOBU policy<{'arm64': 'n'}> +CONFIG_GPIO_SPRD policy<{'arm64': 'n'}> +CONFIG_GPIO_STMPE policy<{'arm64': '-'}> +CONFIG_GPIO_SYSCON policy<{'arm64': 'n'}> +CONFIG_GPIO_TC3589X policy<{'arm64': '-'}> +CONFIG_GPIO_TEGRA policy<{'arm64': 'y'}> +CONFIG_GPIO_THUNDERX policy<{'arm64': 'n'}> +CONFIG_GPIO_TPS65218 policy<{'arm64': '-'}> +CONFIG_GPIO_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TPS68470 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TWL6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_UCB1400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_GPIO_VIPERBOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_WATCHDOG policy<{'arm64': 'n'}> +CONFIG_GPIO_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_XGENE_SB policy<{'arm64': 'y'}> +CONFIG_GPIO_XLP policy<{'arm64': 'n'}> +CONFIG_GPIO_ZYNQ policy<{'arm64': 'n'}> +CONFIG_GREENASIA_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GREYBUS_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_BOOTROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_BRIDGED_PHY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_ES2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LOOPBACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_RAW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_VIBRATOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GS_FPGABOOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HAPPYMEAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HBMC_AM654 policy<{'arm64': '-'}> +CONFIG_HDC100X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HDMI_LPE_AUDIO policy<{'amd64': '-'}> +CONFIG_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HERMES_CACHE_FW_ON_INIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HERMES_PRISM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HFI1_DEBUG_SDMA_ORDER policy<{'amd64': '-'}> +CONFIG_HI13X1_GMAC policy<{'arm64': '-'}> +CONFIG_HI3660_MBOX policy<{'arm64': 'y'}> +CONFIG_HI6220_MBOX policy<{'arm64': 'y'}> +CONFIG_HI8435 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HIO policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HID_A4TECH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ACCUTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ACRUX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ACRUX_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ALPS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_APPLE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_APPLEIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ASUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_AUREAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BATTERY_STRENGTH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BELKIN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BETOP_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_BIGBEN_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CHERRY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_CHICONY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CMEDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_CORSAIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CP2112 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CREATIVE_SB0540 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CYPRESS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_DRAGONRISE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ELAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ELECOM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_EMS_FF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_EZKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GEMBIRD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GFRM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GOOGLE_HAMMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_GREENASIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GT683R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_GYRATION policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_HOLTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_HYPERV_MOUSE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HID_ICADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KENSINGTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KEYTOUCH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KYE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LCPOWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LENOVO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LOGITECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_LOGITECH_DJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_LOGITECH_HIDPP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_MAGICMOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MICROSOFT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MONTEREY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MULTITOUCH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_NTRIG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ORTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PANTHERLORD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PENMOUNT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PETALYNX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PICOLCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PICOLCD_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_CIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_FB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_LCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PLANTRONICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PRIMAX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PRODIKEYS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_RETRODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_RMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ROCCAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SAITEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SAMSUNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_ACCEL_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_ALS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_DEVICE_ROTATION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_GYRO_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_HUMIDITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_IIO_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_IIO_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_INCLINOMETER_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_MAGNETOMETER_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_PRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_PROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_TEMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SMARTJOYPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SONY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SPEEDLINK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_STEELSERIES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SUNPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_THRUSTMASTER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_TIVO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_TOPSEED policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_TWINHAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_U2FZERO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_UCLOGIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_WACOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_WALTOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_XINMO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ZEROPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ZYDACRON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HIP04_ETH policy<{'arm64': 'n'}> +CONFIG_HISI_FEMAC policy<{'arm64': 'n'}> +CONFIG_HISI_THERMAL policy<{'arm64': 'y'}> +CONFIG_HIX5HD2_GMAC policy<{'arm64': 'y'}> +CONFIG_HNS policy<{'arm64': 'y'}> +CONFIG_HNS3 policy<{'arm64': 'y'}> +CONFIG_HNS3_ENET policy<{'arm64': 'y'}> +CONFIG_HNS3_HCLGE policy<{'arm64': 'y'}> +CONFIG_HNS3_HCLGEVF policy<{'arm64': 'n'}> +CONFIG_HNS_DSAF policy<{'arm64': 'y'}> +CONFIG_HNS_ENET policy<{'arm64': 'y'}> +CONFIG_HOLTEK_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_CS policy<{'amd64': '-'}> +CONFIG_HOSTAP_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_FIRMWARE_NVRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_PLX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP206C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HPWDT_NMI_DECODING policy<{'amd64': '-'}> +CONFIG_HP_ACCEL policy<{'amd64': 'n'}> +CONFIG_HP_ILO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HP_WATCHDOG policy<{'amd64': 'n'}> +CONFIG_HP_WIRELESS policy<{'amd64': 'n'}> +CONFIG_HP_WMI policy<{'amd64': 'n'}> +CONFIG_HSA_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HSI_CHAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTC_I2CPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTS221 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTU21 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HVC_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HVC_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HWSPINLOCK_OMAP policy<{'arm64': 'n'}> +CONFIG_HWSPINLOCK_QCOM policy<{'arm64': 'y'}> +CONFIG_HWSPINLOCK_SPRD policy<{'arm64': 'n'}> +CONFIG_HW_RANDOM_EXYNOS policy<{'arm64': 'm'}> +CONFIG_HX711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HYPERV_BALLOON policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_KEYBOARD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_NET policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_UTILS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYSDN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HYSDN_CAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HZ_1000 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HZ_250 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_I2C policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_AMD_MP2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_ARB_GPIO_CHALLENGE policy<{'arm64': 'n'}> +CONFIG_I2C_CHARDEV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_CHT_WC policy<{'amd64': '-'}> +CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_DEMUX_PINCTRL policy<{'arm64': 'n'}> +CONFIG_I2C_DESIGNWARE_PLATFORM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_DIOLAN_U2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_EXYNOS5 policy<{'arm64': 'm'}> +CONFIG_I2C_FSI policy<{'arm64': '-'}> +CONFIG_I2C_HID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_HIX5HD2 policy<{'arm64': 'n'}> +CONFIG_I2C_KEMPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_MUX_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_GPMUX policy<{'arm64': 'n'}> +CONFIG_I2C_MUX_MLXCPLD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_PCA9541 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_PCA954x policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_PINCTRL policy<{'arm64': 'n'}> +CONFIG_I2C_MUX_REG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_NOMADIK policy<{'arm64': 'n'}> +CONFIG_I2C_OMAP policy<{'arm64': 'm'}> +CONFIG_I2C_PXA_SLAVE policy<{'arm64': 'n'}> +CONFIG_I2C_ROBOTFUZZ_OSIF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_SLAVE_EEPROM policy<{'arm64': 'n'}> +CONFIG_I2C_SPRD policy<{'arm64': '-'}> +CONFIG_I2C_SYNQUACER policy<{'arm64': 'n'}> +CONFIG_I2C_TEGRA policy<{'arm64': 'm'}> +CONFIG_I2C_TEGRA_BPMP policy<{'arm64': 'm'}> +CONFIG_I2C_THUNDERX policy<{'arm64': 'n'}> +CONFIG_I2C_TINY_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_UNIPHIER policy<{'arm64': 'n'}> +CONFIG_I2C_UNIPHIER_F policy<{'arm64': 'm'}> +CONFIG_I2C_VERSATILE policy<{'arm64': 'n'}> +CONFIG_I2C_VIPERBOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_XGENE_SLIMPRO policy<{'arm64': 'n'}> +CONFIG_I2C_XLP9XX policy<{'arm64': 'n'}> +CONFIG_I82092 policy<{'amd64': '-'}> +CONFIG_IAQCORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IBM_RTL policy<{'amd64': 'n'}> +CONFIG_ICPLUS_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IDEAPAD_LAPTOP policy<{'amd64': 'n'}> +CONFIG_IDLE_INJECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IEEE802154_ADF7242 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_AT86RF230 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_AT86RF230_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IEEE802154_ATUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_CC2520 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_FAKELB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_MRF24J40 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IIO_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_CB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_HW_CONSUMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CONSUMERS_PER_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_ACCEL_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_BARO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_LIGHT_PROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_HRTIMER_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_INTERRUPT_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_KFIFO_BUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_MUX policy<{'arm64': '-'}> +CONFIG_IIO_RESCALE policy<{'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY_EVENTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SSP_SENSORHUB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SSP_SENSORS_COMMONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_ACCEL_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_GYRO_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM6DSX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_MAGN_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_PRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SW_DEVICE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SW_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SYSFS_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TIGHTLOOP_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IMX2_WDT policy<{'arm64': 'y'}> +CONFIG_IMX7D_ADC policy<{'arm64': '-'}> +CONFIG_IMX7ULP_WDT policy<{'arm64': 'n'}> +CONFIG_IMX_DMA policy<{'arm64': 'n'}> +CONFIG_IMX_DSP policy<{'arm64': 'n'}> +CONFIG_IMX_MBOX policy<{'arm64': 'y'}> +CONFIG_IMX_REMOTEPROC policy<{'arm64': '-'}> +CONFIG_IMX_SCU_SOC policy<{'arm64': 'n'}> +CONFIG_IMX_SDMA policy<{'arm64': 'y'}> +CONFIG_IMX_THERMAL policy<{'arm64': 'n'}> +CONFIG_IMX_WEIM policy<{'arm64': 'n'}> +CONFIG_INA2XX_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INFINIBAND_BNXT_RE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_CXGB3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_CXGB4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_HFI1 policy<{'amd64': '-'}> +CONFIG_INFINIBAND_I40IW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_IPOIB_CM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_OCRDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_QEDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INFINIBAND_QIB policy<{'amd64': '-'}> +CONFIG_INFINIBAND_QIB_DCA policy<{'amd64': '-'}> +CONFIG_INFINIBAND_RDMAVT policy<{'amd64': 'n'}> +CONFIG_INFINIBAND_SRPT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INFTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_88PM80X_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_88PM860X_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_AD714X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_AD714X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_AD714X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_APANEL policy<{'amd64': 'n'}> +CONFIG_INPUT_ARIZONA_HAPTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ATI_REMOTE2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_ATLAS_BTNS policy<{'amd64': 'n'}> +CONFIG_INPUT_ATMEL_CAPTOUCH policy<{'arm64': 'n'}> +CONFIG_INPUT_AXP20X_PEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_BMA150 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CM109 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CMA3000 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CMA3000_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_CPCAP_PWRBUTTON policy<{'arm64': '-'}> +CONFIG_INPUT_DA9052_ONKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DA9055_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_DA9063_ONKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV260X_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV2665_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV2667_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_E3X0_BUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GP2A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_BEEPER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_DECODER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_ROTARY_ENCODER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_HISI_POWERKEY policy<{'arm64': 'y'}> +CONFIG_INPUT_IDEAPAD_SLIDEBAR policy<{'amd64': 'n'}> +CONFIG_INPUT_IMS_PCU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_JOYSTICK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_KEYSPAN_REMOTE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_KXTJ9 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_KXTJ9_POLLED_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MAX77650_ONKEY policy<{'arm64': '-'}> +CONFIG_INPUT_MAX77693_HAPTIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MAX8925_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MAX8997_HAPTIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MC13783_PWRBUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_MMA8450 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_MOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PALMAS_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PCF50633_PMU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PCF8574 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PCSPKR policy<{'amd64': 'n'}> +CONFIG_INPUT_PM8941_PWRKEY policy<{'arm64': '-'}> +CONFIG_INPUT_PM8XXX_VIBRATOR policy<{'arm64': '-'}> +CONFIG_INPUT_POWERMATE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PWM_BEEPER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_PWM_VIBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_RAVE_SP_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_REGULATOR_HAPTIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_RETU_PWRBUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_RK805_PWRKEY policy<{'arm64': 'n'}> +CONFIG_INPUT_SC27XX_VIBRA policy<{'arm64': '-'}> +CONFIG_INPUT_SOC_BUTTON_ARRAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_STPMIC1_ONKEY policy<{'arm64': '-'}> +CONFIG_INPUT_TOUCHSCREEN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_TPS65218_PWRBUTTON policy<{'arm64': 'n'}> +CONFIG_INPUT_TWL4030_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_TWL4030_VIBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_TWL6040_VIBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_WM831X_ON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_XEN_KBDDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_YEALINK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INT3406_THERMAL policy<{'amd64': '-'}> +CONFIG_INT340X_THERMAL policy<{'amd64': 'n'}> +CONFIG_INTEL_CHT_INT33FE policy<{'amd64': '-'}> +CONFIG_INTEL_MEI_TXE policy<{'amd64': 'n'}> +CONFIG_INTEL_MENLOW policy<{'amd64': '-'}> +CONFIG_INTEL_MIC_BUS policy<{'amd64': 'n'}> +CONFIG_INTEL_MIC_CARD policy<{'amd64': '-'}> +CONFIG_INTEL_MIC_HOST policy<{'amd64': '-'}> +CONFIG_INTEL_MIC_X100_DMA policy<{'amd64': '-'}> +CONFIG_INTEL_OAKTRAIL policy<{'amd64': 'n'}> +CONFIG_INTEL_RAPL policy<{'amd64': '-'}> +CONFIG_INTEL_SOC_PMIC policy<{'amd64': '-'}> +CONFIG_INTEL_SOC_PMIC_CHTWC policy<{'amd64': '-'}> +CONFIG_INTEL_STRATIX10_RSU policy<{'arm64': '-'}> +CONFIG_INTEL_STRATIX10_SERVICE policy<{'arm64': '-'}> +CONFIG_INTEL_TH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_TH_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_GTH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_MSU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_PTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_STH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_VBTN policy<{'amd64': 'n'}> +CONFIG_INTEL_XWAY_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTERCONNECT_QCOM_QCS404 policy<{'arm64': 'n'}> +CONFIG_INTERVAL_TREE_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_MPU6050_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_MPU6050_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IOMMU_IO_PGTABLE_ARMV7S policy<{'arm64': 'y'}> +CONFIG_IPMB_DEVICE_INTERFACE policy<{'arm64': 'n'}> +CONFIG_IPQ_GCC_4019 policy<{'arm64': 'n'}> +CONFIG_IPQ_GCC_806X policy<{'arm64': 'n'}> +CONFIG_IPQ_GCC_8074 policy<{'arm64': 'y'}> +CONFIG_IPQ_LCC_806X policy<{'arm64': 'n'}> +CONFIG_IPW2100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2100_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2100_MONITOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_MONITOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_PROMISCUOUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_QOS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_RADIOTAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPWIRELESS policy<{'amd64': '-'}> +CONFIG_IP_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IRQ_FORCED_THREADING_DEFAULT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IRQ_UNIPHIER_AIDET policy<{'arm64': 'y'}> +CONFIG_IR_GPIO_CIR policy<{'arm64': 'n'}> +CONFIG_IR_HIX5HD2 policy<{'arm64': 'n'}> +CONFIG_IR_IGORPLUGUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IGUANA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IMON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IMON_RAW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_MCEUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_MTK policy<{'arm64': 'n'}> +CONFIG_IR_PWM_TX policy<{'arm64': '-'}> +CONFIG_IR_REDRAT3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_STREAMZAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_TTUSBIR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISCSI_TARGET_CXGB4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISDN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISDN_CAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_CAPI_CAPI20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_CAPI_MIDDLEWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_DRV_AVMB1_AVM_CS policy<{'amd64': '-'}> +CONFIG_ISDN_DRV_AVMB1_B1PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_DRV_AVMB1_B1PCIV4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA policy<{'amd64': '-'}> +CONFIG_ISDN_DRV_AVMB1_C4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_DRV_AVMB1_T1PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_DRV_GIGASET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISL29125 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISL29501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ITG3200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWL3945 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWL4965 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLDVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLEGACY_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLEGACY_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLMVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_BCAST_FILTERING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEVICE_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_FAVOURLZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_NONE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_PRIORITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_COMPRESSION_OPTIONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_POSIX_ACL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_SECURITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_WBUF_VERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_WRITEBUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_XATTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_LZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_RTIME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_RUBIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_SUMMARY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_ZLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_A3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ADI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_AS5011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_COBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_DB9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_FSIA6B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GAMECON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GF2K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GRIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GRIP_MP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GUILLEMOT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE_232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_INTERACT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_JOYDUMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_MAGELLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PSXPAD_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PSXPAD_SPI_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PXRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SIDEWINDER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SPACEBALL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SPACEORB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_STINGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TMDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TURBOGRAFX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TWIDJOY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_WALKERA0701 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_WARRIOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ZHENHUA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JSA1212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_K3_DMA policy<{'arm64': 'y'}> +CONFIG_KEMPLD_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KERNEL_GZIP policy<{'amd64': 'y'}> +CONFIG_KERNEL_LZ4 policy<{'amd64': 'n'}> +CONFIG_KEYBOARD_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_ADP5588 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_ADP5589 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_BCM policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_CAP11XX policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_IMX policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_LKKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_LM8323 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_LM8333 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MATRIX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MAX7359 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MCS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MPR121 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MTK_PMIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_NEWTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_OMAP4 policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_OPENCORES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_QT1070 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_QT2160 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_SAMSUNG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_STMPE policy<{'arm64': '-'}> +CONFIG_KEYBOARD_STOWAWAY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_SUNKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TC3589X policy<{'arm64': '-'}> +CONFIG_KEYBOARD_TCA6416 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TCA8418 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TEGRA policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_TM2_TOUCHKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_XTKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KMX61 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KPROBES_SANITY_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KPSS_XCC policy<{'arm64': 'n'}> +CONFIG_KS7010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8842 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8851 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8851_MLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KSZ884X_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXCJK1013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LANMEDIA policy<{'amd64': 'n'}> +CONFIG_LATENCYTOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LCD_AMS369FG06 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_CLASS_DEVICE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LCD_HX8357 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_ILI922X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_ILI9320 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_L4F00242T03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_LMS283GF05 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_LMS501KF03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_LTV350QV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_OTM3225A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_TDO24M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD_VGG2432A4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_AAT1290 policy<{'arm64': '-'}> +CONFIG_LEDS_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_AN30259A policy<{'arm64': 'n'}> +CONFIG_LEDS_AS3645A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_BCM6328 policy<{'arm64': 'n'}> +CONFIG_LEDS_BCM6358 policy<{'arm64': 'n'}> +CONFIG_LEDS_BD2802 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_BLINKM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_CLASS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LEDS_CLASS_FLASH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_CLEVO_MAIL policy<{'amd64': 'n'}> +CONFIG_LEDS_CPCAP policy<{'arm64': '-'}> +CONFIG_LEDS_CR0014114 policy<{'arm64': 'n'}> +CONFIG_LEDS_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_DAC124S085 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_INTEL_SS4200 policy<{'amd64': 'n'}> +CONFIG_LEDS_IS31FL319X policy<{'arm64': 'n'}> +CONFIG_LEDS_IS31FL32XX policy<{'arm64': 'n'}> +CONFIG_LEDS_KTD2692 policy<{'arm64': '-'}> +CONFIG_LEDS_LM3530 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LM355x policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LM3601X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LM3642 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP3944 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP3952 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP5521 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP5523 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP5562 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP55XX_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LP8501 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LP8860 policy<{'arm64': 'n'}> +CONFIG_LEDS_LT3593 policy<{'arm64': 'n'}> +CONFIG_LEDS_MAX77650 policy<{'arm64': '-'}> +CONFIG_LEDS_MAX77693 policy<{'arm64': '-'}> +CONFIG_LEDS_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_MC13783 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_MENF21BMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_MLXCPLD policy<{'amd64': 'n'}> +CONFIG_LEDS_MT6323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_NIC78BX policy<{'amd64': 'n'}> +CONFIG_LEDS_PCA9532 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_PCA9532_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_PCA955X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_PCA955X_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_PCA963X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_REGULATOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_SC27XX_BLTC policy<{'arm64': '-'}> +CONFIG_LEDS_SPI_BYTE policy<{'arm64': 'n'}> +CONFIG_LEDS_SYSCON policy<{'arm64': '-'}> +CONFIG_LEDS_TCA6507 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TLC591XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_BACKLIGHT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_CAMERA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_CPU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_DISK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_HEARTBEAT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_TRIGGER_ONESHOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_PANIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_TIMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_TRANSIENT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_USER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_WM831X_STATUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LED_TRIGGER_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEGACY_VSYSCALL_EMULATE policy<{'amd64': 'y'}> +CONFIG_LEGACY_VSYSCALL_XONLY policy<{'amd64': 'n'}> +CONFIG_LIB80211_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_CS policy<{'amd64': '-'}> +CONFIG_LIBERTAS_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_MESH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBFC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LIBFCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBIPW_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIDAR_LITE_V2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIQUIDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIQUIDIO_VF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LKDTM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LMP91000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOCK_TORTURE_TEST policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LOGIG940_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGIRUMBLEPAD2_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGITECH_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGIWHEELS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LP8788_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LSI_ET1011C_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LTC1660 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2471 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2485 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2497 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTE_GDM724X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LTR501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LV0104CS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LXT_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_M62332 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAC80211_HWSIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MACB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MACB_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MACB_USE_HWSTAMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MACINTOSH_DRIVERS policy<{'amd64': 'n'}> +CONFIG_MAC_EMUMOUSEBTN policy<{'amd64': '-'}> +CONFIG_MAG3110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAILBOX_TEST policy<{'arm64': 'n'}> +CONFIG_MANTIS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MARVELL_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MAX1027 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX11100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX1118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX1363 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX30100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX30102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX31856 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX44000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX44009 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX517 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5481 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5487 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5821 policy<{'arm64': '-'}> +CONFIG_MAX77620_THERMAL policy<{'arm64': '-'}> +CONFIG_MAX77620_WATCHDOG policy<{'arm64': '-'}> +CONFIG_MAX8925_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX9611 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAXIM_THERMOCOUPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MB1232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MC3230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP320X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP3422 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP3911 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4018 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP41010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4131 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4531 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4725 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4922 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MDIO_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_MDIO_BITBANG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MDIO_BUS_MUX_GPIO policy<{'arm64': 'n'}> +CONFIG_MDIO_BUS_MUX_MMIOREG policy<{'arm64': 'y'}> +CONFIG_MDIO_BUS_MUX_MULTIPLEXER policy<{'arm64': 'y'}> +CONFIG_MDIO_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MDIO_HISI_FEMAC policy<{'arm64': 'n'}> +CONFIG_MDIO_OCTEON policy<{'arm64': 'n'}> +CONFIG_MDIO_THUNDER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MDIO_XGENE policy<{'arm64': 'y'}> +CONFIG_MDM_GCC_9615 policy<{'arm64': 'n'}> +CONFIG_MDM_LCC_9615 policy<{'arm64': 'n'}> +CONFIG_MEDIATEK_MT6577_AUXADC policy<{'arm64': '-'}> +CONFIG_MEDIATEK_WATCHDOG policy<{'arm64': 'y'}> +CONFIG_MEDIA_ALTERA_CI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_ANALOG_TV_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_CAMERA_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_CONTROLLER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_CONTROLLER_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_CONTROLLER_REQUEST_API policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_DIGITAL_TV_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_PCI_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_RADIO_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_SDR_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_SUBDRV_AUTOSELECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_E4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0012 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC2580 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_IT913X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_M88RS6000T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MAX2165 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MC44S803 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MSI001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2060 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2063 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT20XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2131 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2266 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL301RF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL5005S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL5007T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QM1D1B0004 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QM1D1C0042 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QT1010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_R820T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_SI2157 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_SIMPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18218 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18250 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18271 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA827X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA8290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA9887 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TEA5761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TEA5767 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TUA9001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC2028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_USB_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEMSTICK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEMSTICK_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_JMICRON_38X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_R592 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_REALTEK_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_REALTEK_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_TIFM_MS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_UNSAFE_RESUME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEN_Z188_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MESON_MX_EFUSE policy<{'arm64': 'n'}> +CONFIG_MESON_SARADC policy<{'arm64': '-'}> +CONFIG_MFD_88PM800 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_AAT2870_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_ACT8945A policy<{'arm64': 'n'}> +CONFIG_MFD_AHC1EC0 policy<{'amd64': '-'}> +CONFIG_MFD_ALTERA_SYSMGR policy<{'arm64': '-'}> +CONFIG_MFD_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_AS3722 policy<{'arm64': '-'}> +CONFIG_MFD_ATMEL_FLEXCOM policy<{'arm64': 'n'}> +CONFIG_MFD_ATMEL_HLCDC policy<{'arm64': 'n'}> +CONFIG_MFD_AXP20X_RSB policy<{'arm64': 'y'}> +CONFIG_MFD_CPCAP policy<{'arm64': 'n'}> +CONFIG_MFD_CROS_EC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_CROS_EC_DEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9052_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9062 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_DA9063 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_DA9150 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_DLN2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_EXYNOS_LPASS policy<{'arm64': 'm'}> +CONFIG_MFD_HI6421_PMIC policy<{'arm64': 'y'}> +CONFIG_MFD_HI655X_PMIC policy<{'arm64': 'y'}> +CONFIG_MFD_KEMPLD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_LM3533 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_MFD_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX14577 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_MAX77620 policy<{'arm64': '-'}> +CONFIG_MFD_MAX77650 policy<{'arm64': 'n'}> +CONFIG_MFD_MAX77686 policy<{'arm64': 'n'}> +CONFIG_MFD_MAX77693 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_MAX77843 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MT6397 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_NVEC policy<{'arm64': 'n'}> +CONFIG_MFD_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_QCOM_RPM policy<{'arm64': 'n'}> +CONFIG_MFD_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_RN5T618 policy<{'arm64': 'n'}> +CONFIG_MFD_ROHM_BD70528 policy<{'arm64': '-'}> +CONFIG_MFD_ROHM_BD718XX policy<{'arm64': '-'}> +CONFIG_MFD_SC27XX_PMIC policy<{'arm64': 'n'}> +CONFIG_MFD_SEC_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_SI476X_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_SMSC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_SPMI_PMIC policy<{'arm64': '-'}> +CONFIG_MFD_STMFX policy<{'arm64': 'n'}> +CONFIG_MFD_STMPE policy<{'arm64': 'n'}> +CONFIG_MFD_STPMIC1 policy<{'arm64': '-'}> +CONFIG_MFD_SUN4I_GPADC policy<{'arm64': 'n'}> +CONFIG_MFD_TC3589X policy<{'arm64': '-'}> +CONFIG_MFD_TI_LP87565 policy<{'arm64': 'n'}> +CONFIG_MFD_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS65218 policy<{'arm64': 'n'}> +CONFIG_MFD_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS65912_I2C policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_TPS68470 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TWL4030_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_VIPERBOARD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_WL1273_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_WM831X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_WM8350_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_WM8400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MICREL_KS8995MA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MICREL_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MICROCHIP_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MICROSEMI_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MIC_COSM policy<{'amd64': '-'}> +CONFIG_MISC_RTSX_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MISDN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_AVMFRITZ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCMULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_INFINEON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_L1OIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_NETJET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_SPEEDFAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_W6692 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MKISS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MLX90614 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MLX90632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7455_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7455_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7660 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA8452 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA9551 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA9553 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MMC35240 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_ALCOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_ARMMMCI policy<{'arm64': '-'}> +CONFIG_MMC_BCM2835 policy<{'arm64': '-'}> +CONFIG_MMC_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_BLOCK_MINORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_CAVIUM_THUNDERX policy<{'arm64': '-'}> +CONFIG_MMC_CB710 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_CQHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_DW policy<{'arm64': '-'}> +CONFIG_MMC_DW_BLUEFIELD policy<{'arm64': '-'}> +CONFIG_MMC_DW_EXYNOS policy<{'arm64': '-'}> +CONFIG_MMC_DW_HI3798CV200 policy<{'arm64': '-'}> +CONFIG_MMC_DW_K3 policy<{'arm64': '-'}> +CONFIG_MMC_DW_PCI policy<{'arm64': '-'}> +CONFIG_MMC_DW_PLTFM policy<{'arm64': '-'}> +CONFIG_MMC_DW_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_MMC_MESON_GX policy<{'arm64': '-'}> +CONFIG_MMC_MESON_MX_SDIO policy<{'arm64': '-'}> +CONFIG_MMC_MTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_MXC policy<{'arm64': '-'}> +CONFIG_MMC_QCOM_DML policy<{'arm64': '-'}> +CONFIG_MMC_REALTEK_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_REALTEK_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_RICOH_MMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_CADENCE policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_F_SDH30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_MSM policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ARASAN policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ASPEED policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_AT91 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_DWCMSHC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ESDHC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OMAP policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_PLTFM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_SPRD policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_XENON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHI policy<{'arm64': '-'}> +CONFIG_MMC_SDHI_INTERNAL_DMAC policy<{'arm64': '-'}> +CONFIG_MMC_SDHI_SYS_DMAC policy<{'arm64': '-'}> +CONFIG_MMC_SDRICOH_CS policy<{'amd64': '-'}> +CONFIG_MMC_SH_MMCIF policy<{'arm64': '-'}> +CONFIG_MMC_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_STM32_SDMMC policy<{'arm64': '-'}> +CONFIG_MMC_SUNXI policy<{'arm64': '-'}> +CONFIG_MMC_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_TIFM_SD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_TOSHIBA_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_USDHI6ROL0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_USHC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_VIA_SDMMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_VUB300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_WBSD policy<{'amd64': '-'}> +CONFIG_MOST_SOUND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOST_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MOST_VIDEO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_APPLETOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_BCM5974 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_CYAPA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ALPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_BYD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_CYPRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ELANTECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ELANTECH_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_FOCALTECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_LIFEBOOK policy<{'amd64': '-'}> +CONFIG_MOUSE_PS2_LOGIPS2PP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SENTELIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SYNAPTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_TOUCHKIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_TRACKPOINT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_VMMOUSE policy<{'amd64': '-'}> +CONFIG_MOUSE_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_SYNAPTICS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_SYNAPTICS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_VSXXXAA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOXTET policy<{'arm64': 'n'}> +CONFIG_MPL115_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL115_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL3115 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPU3050_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5637 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MSI_LAPTOP policy<{'amd64': 'n'}> +CONFIG_MSI_WMI policy<{'amd64': 'n'}> +CONFIG_MSM_GCC_8660 policy<{'arm64': 'n'}> +CONFIG_MSM_GCC_8916 policy<{'arm64': 'y'}> +CONFIG_MSM_GCC_8960 policy<{'arm64': 'n'}> +CONFIG_MSM_GCC_8974 policy<{'arm64': 'n'}> +CONFIG_MSM_GCC_8994 policy<{'arm64': 'y'}> +CONFIG_MSM_GCC_8996 policy<{'arm64': 'y'}> +CONFIG_MSM_GCC_8998 policy<{'arm64': 'y'}> +CONFIG_MSM_LCC_8960 policy<{'arm64': 'n'}> +CONFIG_MSM_MMCC_8960 policy<{'arm64': 'n'}> +CONFIG_MSM_MMCC_8974 policy<{'arm64': 'n'}> +CONFIG_MSM_MMCC_8996 policy<{'arm64': 'y'}> +CONFIG_MSPRO_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7601U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7603E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7615E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x0E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x0U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x2E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x2U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MTDRAM_ERASE_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTDRAM_TOTAL_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ABSENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_AFS_PARTS policy<{'arm64': '-'}> +CONFIG_MTD_AMD76XROM policy<{'amd64': '-'}> +CONFIG_MTD_AR7_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK2MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK_RO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_ADV_OPTIONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_AMDSTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_I1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_I2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_INTELEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_STAA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CK804XROM policy<{'amd64': '-'}> +CONFIG_MTD_CMDLINE_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_COMPLEX_MAPPINGS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH_OTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH_WRITE_VERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ESB2ROM policy<{'amd64': '-'}> +CONFIG_MTD_HYPERBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ICHXROM policy<{'amd64': '-'}> +CONFIG_MTD_INTEL_VR_NOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_JEDECPROBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_L440GX policy<{'amd64': '-'}> +CONFIG_MTD_LPDDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MCHP23K256 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MTDRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_BRCMNAND policy<{'arm64': '-'}> +CONFIG_MTD_NAND_CAFE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DENALI_DT policy<{'arm64': '-'}> +CONFIG_MTD_NAND_DENALI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC_SW_BCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_FSL_IFC policy<{'arm64': '-'}> +CONFIG_MTD_NAND_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_GPMI_NAND policy<{'arm64': '-'}> +CONFIG_MTD_NAND_HISI504 policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MARVELL policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MESON policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MTK policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MXC policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MXIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_NANDSIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_QCOM policy<{'arm64': '-'}> +CONFIG_MTD_NAND_RICOH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_SUNXI policy<{'arm64': '-'}> +CONFIG_MTD_NETtel policy<{'amd64': '-'}> +CONFIG_MTD_OF_PARTS policy<{'arm64': '-'}> +CONFIG_MTD_ONENAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_2X_PROGRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_OTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_VERIFY_WRITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_OOPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PARTITIONED_MASTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PCMCIA policy<{'amd64': '-'}> +CONFIG_MTD_PCMCIA_ANONYMOUS policy<{'amd64': '-'}> +CONFIG_MTD_PHRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_COMPAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_GEMINI policy<{'arm64': '-'}> +CONFIG_MTD_PHYSMAP_GPIO_ADDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_OF policy<{'arm64': '-'}> +CONFIG_MTD_PHYSMAP_VERSATILE policy<{'arm64': '-'}> +CONFIG_MTD_PLATRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551_BUGFIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_QINFO_PROBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_RAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_RAW_NAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS_READONLY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SBC_GXX policy<{'amd64': '-'}> +CONFIG_MTD_SCB2_FLASH policy<{'amd64': '-'}> +CONFIG_MTD_SLRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SST25L policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SWAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_TESTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_BEB_LIMIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_FASTMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_GLUEBI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_WL_THRESHOLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTK_CMDQ policy<{'arm64': 'n'}> +CONFIG_MTK_CMDQ_MBOX policy<{'arm64': 'n'}> +CONFIG_MTK_CQDMA policy<{'arm64': 'n'}> +CONFIG_MTK_EFUSE policy<{'arm64': 'y'}> +CONFIG_MTK_HSDMA policy<{'arm64': 'n'}> +CONFIG_MTK_IOMMU policy<{'arm64': 'y'}> +CONFIG_MTK_PMIC_WRAP policy<{'arm64': 'y'}> +CONFIG_MTK_THERMAL policy<{'arm64': 'y'}> +CONFIG_MTK_UART_APDMA policy<{'arm64': 'n'}> +CONFIG_MUSB_PIO_ONLY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MUX_ADG792A policy<{'arm64': 'n'}> +CONFIG_MUX_ADGS1408 policy<{'arm64': 'n'}> +CONFIG_MUX_GPIO policy<{'arm64': 'n'}> +CONFIG_MUX_MMIO policy<{'arm64': 'y'}> +CONFIG_MVMDIO policy<{'amd64': 'm', 'arm64': 'y'}> +CONFIG_MVNETA policy<{'arm64': 'y'}> +CONFIG_MVPP2 policy<{'arm64': 'y'}> +CONFIG_MWAVE policy<{'amd64': 'n'}> +CONFIG_MWIFIEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWL8K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MXC4005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MXC6255 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MXS_DMA policy<{'arm64': 'n'}> +CONFIG_MYRI10GE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MYRI10GE_DCA policy<{'amd64': '-'}> +CONFIG_NATIONAL_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NATSEMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NAU7802 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NE2K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NETXEN_NIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_9P_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_DSA_MV88E6060 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MV88E6XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MV88E6XXX_GLOBAL2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_DSA_MV88E6XXX_PTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_DSA_QCA8K policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM policy<{'arm64': 'n'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI policy<{'arm64': 'n'}> +CONFIG_NET_FC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_TEAM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_BROADCAST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_LOADBALANCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_RANDOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_ROUNDROBIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TULIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_VENDOR_3COM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_8390 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_VENDOR_ADAPTEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ALTEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_AMAZON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ARC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ATHEROS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_AURORA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_BROCADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_CAVIUM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_DEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_EZCHIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_FUJITSU policy<{'amd64': '-'}> +CONFIG_NET_VENDOR_HP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_MICREL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_MYRI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_NATSEMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_NVIDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_OKI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_QLOGIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_QUALCOMM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_RDC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_RENESAS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ROCKER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SAMSUNG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SEEQ policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SILAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SIS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SMSC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SOCIONEXT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_STMICRO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SUN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_TEHUTI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_TI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_VIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_WIZNET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_XIRCOM policy<{'amd64': '-'}> +CONFIG_NET_XGENE policy<{'arm64': 'y'}> +CONFIG_NET_XGENE_V2 policy<{'arm64': 'n'}> +CONFIG_NFC_FDP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_FDP_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MICROREAD_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_MRVL_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MRVL_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MRVL_UART policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_MRVL_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_NXP_NCI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_NXP_NCI_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_PN533_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PN533_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PN544_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PORT100 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_S3FWRN5_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_SIM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST21NFCA_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST95HF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST_NCI_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST_NCI_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_TRF7970A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFTL_RW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NIU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOA1305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NODES_SHIFT policy<{'amd64': '10', 'arm64': '10'}> +CONFIG_NOP_USB_XCEIV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NORTEL_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG_MMU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NS83820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NTB_PERF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NTB_PINGPONG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NTB_TOOL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NVM note +CONFIG_NVMEM_BCM_OCOTP policy<{'arm64': 'y'}> +CONFIG_NVMEM_IMX_IIM policy<{'arm64': 'n'}> +CONFIG_NVMEM_IMX_OCOTP policy<{'arm64': 'y'}> +CONFIG_NVMEM_IMX_OCOTP_SCU policy<{'arm64': 'y'}> +CONFIG_NVMEM_REBOOT_MODE policy<{'arm64': 'n'}> +CONFIG_NVMEM_SNVS_LPGPR policy<{'arm64': 'n'}> +CONFIG_NVMEM_SUNXI_SID policy<{'arm64': 'y'}> +CONFIG_NVMEM_ZYNQMP policy<{'arm64': 'n'}> +CONFIG_NVME_TARGET_LOOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVME_TARGET_RDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVM_PBLK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NVM_PBLK_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_OCTEONTX2_AF policy<{'arm64': 'n'}> +CONFIG_OF_FPGA_REGION policy<{'arm64': '-'}> +CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT policy<{'arm64': 'm'}> +CONFIG_OMAP2PLUS_MBOX policy<{'arm64': 'n'}> +CONFIG_OMAP_MBOX_KFIFO_SIZE policy<{'arm64': '-'}> +CONFIG_OMAP_USB2 policy<{'arm64': 'n'}> +CONFIG_OPT3001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_OPTEE policy<{'arm64': 'y'}> +CONFIG_ORANGEFS_FS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ORINOCO_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_OWL_DMA policy<{'arm64': 'y'}> +CONFIG_P54_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_SPI_DEFAULT_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PA12203001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PALMAS_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PANASONIC_LAPTOP policy<{'amd64': 'n'}> +CONFIG_PANTHERLORD_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PARIDE policy<{'amd64': 'n'}> +CONFIG_PARIDE_ATEN policy<{'amd64': '-'}> +CONFIG_PARIDE_BPCK policy<{'amd64': '-'}> +CONFIG_PARIDE_COMM policy<{'amd64': '-'}> +CONFIG_PARIDE_DSTR policy<{'amd64': '-'}> +CONFIG_PARIDE_EPAT policy<{'amd64': '-'}> +CONFIG_PARIDE_EPATC8 policy<{'amd64': '-'}> +CONFIG_PARIDE_EPIA policy<{'amd64': '-'}> +CONFIG_PARIDE_FIT2 policy<{'amd64': '-'}> +CONFIG_PARIDE_FIT3 policy<{'amd64': '-'}> +CONFIG_PARIDE_FRIQ policy<{'amd64': '-'}> +CONFIG_PARIDE_FRPW policy<{'amd64': '-'}> +CONFIG_PARIDE_KBIC policy<{'amd64': '-'}> +CONFIG_PARIDE_KTTI policy<{'amd64': '-'}> +CONFIG_PARIDE_ON20 policy<{'amd64': '-'}> +CONFIG_PARIDE_ON26 policy<{'amd64': '-'}> +CONFIG_PARIDE_PCD policy<{'amd64': '-'}> +CONFIG_PARIDE_PD policy<{'amd64': '-'}> +CONFIG_PARIDE_PF policy<{'amd64': '-'}> +CONFIG_PARIDE_PG policy<{'amd64': '-'}> +CONFIG_PARIDE_PT policy<{'amd64': '-'}> +CONFIG_PARPORT_PC_PCMCIA policy<{'amd64': '-'}> +CONFIG_PATA_IMX policy<{'arm64': 'n'}> +CONFIG_PATA_PCMCIA policy<{'amd64': '-'}> +CONFIG_PATA_SIS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCIE_AL policy<{'arm64': 'n'}> +CONFIG_PCIE_CADENCE_EP policy<{'arm64': 'n'}> +CONFIG_PCIE_CADENCE_HOST policy<{'arm64': 'n'}> +CONFIG_PCIE_IPROC_PLATFORM policy<{'arm64': 'y'}> +CONFIG_PCIE_MEDIATEK policy<{'arm64': 'n'}> +CONFIG_PCIE_RCAR policy<{'arm64': 'n'}> +CONFIG_PCIE_ROCKCHIP_EP policy<{'arm64': 'n'}> +CONFIG_PCIE_UNIPHIER policy<{'arm64': 'n'}> +CONFIG_PCIE_XILINX policy<{'arm64': 'n'}> +CONFIG_PCIE_XILINX_NWL policy<{'arm64': 'n'}> +CONFIG_PCI_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PCI_FTPCI100 policy<{'arm64': 'n'}> +CONFIG_PCI_HYPERV_INTERFACE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCI_KEYSTONE_EP policy<{'arm64': 'n'}> +CONFIG_PCI_KEYSTONE_HOST policy<{'arm64': 'n'}> +CONFIG_PCI_LAYERSCAPE_EP policy<{'arm64': 'n'}> +CONFIG_PCI_MESON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCI_TEGRA policy<{'arm64': 'y'}> +CONFIG_PCMCIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PCMCIA_3C574 policy<{'amd64': '-'}> +CONFIG_PCMCIA_3C589 policy<{'amd64': '-'}> +CONFIG_PCMCIA_AHA152X policy<{'amd64': '-'}> +CONFIG_PCMCIA_ATMEL policy<{'amd64': '-'}> +CONFIG_PCMCIA_AXNET policy<{'amd64': '-'}> +CONFIG_PCMCIA_FDOMAIN policy<{'amd64': '-'}> +CONFIG_PCMCIA_FMVJ18X policy<{'amd64': '-'}> +CONFIG_PCMCIA_HERMES policy<{'amd64': '-'}> +CONFIG_PCMCIA_LOAD_CIS policy<{'amd64': '-'}> +CONFIG_PCMCIA_NMCLAN policy<{'amd64': '-'}> +CONFIG_PCMCIA_PCNET policy<{'amd64': '-'}> +CONFIG_PCMCIA_QLOGIC policy<{'amd64': '-'}> +CONFIG_PCMCIA_RAYCS policy<{'amd64': '-'}> +CONFIG_PCMCIA_SMC91C92 policy<{'amd64': '-'}> +CONFIG_PCMCIA_SPECTRUM policy<{'amd64': '-'}> +CONFIG_PCMCIA_SYM53C500 policy<{'amd64': '-'}> +CONFIG_PCMCIA_WL3501 policy<{'amd64': '-'}> +CONFIG_PCMCIA_XIRC2PS policy<{'amd64': '-'}> +CONFIG_PCMCIA_XIRCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PCNET32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PD6729 policy<{'amd64': '-'}> +CONFIG_PDA_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PERCPU_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_AM654_SERDES policy<{'arm64': 'n'}> +CONFIG_PHY_BCM_NS_USB2 policy<{'arm64': 'n'}> +CONFIG_PHY_BCM_NS_USB3 policy<{'arm64': 'n'}> +CONFIG_PHY_BCM_SR_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_BCM_SR_USB policy<{'arm64': 'y'}> +CONFIG_PHY_BERLIN_SATA policy<{'arm64': 'n'}> +CONFIG_PHY_BERLIN_USB policy<{'arm64': 'n'}> +CONFIG_PHY_BRCM_USB policy<{'arm64': 'y'}> +CONFIG_PHY_CADENCE_DP policy<{'arm64': 'n'}> +CONFIG_PHY_CADENCE_DPHY policy<{'arm64': 'n'}> +CONFIG_PHY_CADENCE_SIERRA policy<{'arm64': 'n'}> +CONFIG_PHY_CPCAP_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_EXYNOS_DP_VIDEO policy<{'arm64': 'y'}> +CONFIG_PHY_EXYNOS_MIPI_VIDEO policy<{'arm64': 'y'}> +CONFIG_PHY_EXYNOS_PCIE policy<{'arm64': 'n'}> +CONFIG_PHY_FSL_IMX8MQ_USB policy<{'arm64': 'y'}> +CONFIG_PHY_HI3660_USB policy<{'arm64': 'n'}> +CONFIG_PHY_HI6220_USB policy<{'arm64': 'y'}> +CONFIG_PHY_HISI_INNO_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_HISTB_COMBPHY policy<{'arm64': 'y'}> +CONFIG_PHY_MAPPHONE_MDM6600 policy<{'arm64': 'n'}> +CONFIG_PHY_MESON8B_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_MESON_G12A_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_MESON_G12A_USB3_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_MESON_GXL_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_MESON_GXL_USB3 policy<{'arm64': 'y'}> +CONFIG_PHY_MTK_TPHY policy<{'arm64': 'y'}> +CONFIG_PHY_MTK_UFS policy<{'arm64': 'n'}> +CONFIG_PHY_MTK_XSPHY policy<{'arm64': 'n'}> +CONFIG_PHY_MVEBU_A3700_COMPHY policy<{'arm64': 'y'}> +CONFIG_PHY_MVEBU_A3700_UTMI policy<{'arm64': 'y'}> +CONFIG_PHY_MVEBU_A38X_COMPHY policy<{'arm64': 'n'}> +CONFIG_PHY_MVEBU_CP110_COMPHY policy<{'arm64': 'y'}> +CONFIG_PHY_NS2_USB_DRD policy<{'arm64': 'y'}> +CONFIG_PHY_OCELOT_SERDES policy<{'arm64': 'n'}> +CONFIG_PHY_PXA_28NM_HSIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PHY_PXA_28NM_USB2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PHY_QCOM_APQ8064_SATA policy<{'arm64': 'n'}> +CONFIG_PHY_QCOM_IPQ806X_SATA policy<{'arm64': 'n'}> +CONFIG_PHY_QCOM_PCIE2 policy<{'arm64': 'n'}> +CONFIG_PHY_QCOM_UFS policy<{'arm64': 'n'}> +CONFIG_PHY_QCOM_USB_HS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_QCOM_USB_HSIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_RCAR_GEN2 policy<{'arm64': 'n'}> +CONFIG_PHY_RCAR_GEN3_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_RCAR_GEN3_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_ROCKCHIP_DP policy<{'arm64': 'n'}> +CONFIG_PHY_ROCKCHIP_EMMC policy<{'arm64': 'y'}> +CONFIG_PHY_ROCKCHIP_INNO_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_ROCKCHIP_TYPEC policy<{'arm64': 'y'}> +CONFIG_PHY_ROCKCHIP_USB policy<{'arm64': 'n'}> +CONFIG_PHY_SAMSUNG_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_SUN4I_USB policy<{'arm64': 'y'}> +CONFIG_PHY_TEGRA_XUSB policy<{'arm64': 'y'}> +CONFIG_PHY_TUSB1210 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_UNIPHIER_PCIE policy<{'arm64': 'n'}> +CONFIG_PHY_UNIPHIER_USB2 policy<{'arm64': 'y'}> +CONFIG_PHY_UNIPHIER_USB3 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PINCTRL_APQ8064 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_APQ8084 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_AS370 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_AS3722 policy<{'arm64': '-'}> +CONFIG_PINCTRL_AXP209 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_BERLIN_BG4CT policy<{'arm64': 'n'}> +CONFIG_PINCTRL_BM1880 policy<{'arm64': '-'}> +CONFIG_PINCTRL_BROXTON policy<{'amd64': 'n'}> +CONFIG_PINCTRL_EXYNOS policy<{'arm64': 'y'}> +CONFIG_PINCTRL_GEMINILAKE policy<{'amd64': 'n'}> +CONFIG_PINCTRL_IPQ4019 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_IPQ8064 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_IPQ8074 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_PINCTRL_MAX77620 policy<{'arm64': '-'}> +CONFIG_PINCTRL_MDM9615 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_MSM8660 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_MSM8916 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MSM8960 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_MSM8994 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MSM8996 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MSM8998 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MSM8X74 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_MT6397 policy<{'arm64': '-'}> +CONFIG_PINCTRL_OCELOT policy<{'arm64': 'n'}> +CONFIG_PINCTRL_PALMAS policy<{'arm64': '-'}> +CONFIG_PINCTRL_PFC_R8A7795 policy<{'arm64': '-'}> +CONFIG_PINCTRL_PFC_R8A7796 policy<{'arm64': '-'}> +CONFIG_PINCTRL_QCOM_SPMI_PMIC policy<{'arm64': '-'}> +CONFIG_PINCTRL_QCOM_SSBI_PMIC policy<{'arm64': 'n'}> +CONFIG_PINCTRL_QCS404 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_QDF2XXX policy<{'arm64': 'y'}> +CONFIG_PINCTRL_RK805 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SC7180 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SDM660 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SDM845 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SM8150 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SPRD policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SPRD_SC9860 policy<{'arm64': '-'}> +CONFIG_PINCTRL_STMFX policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN4I_A10 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN5I policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN6I_A31 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN6I_A31_R policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_A23 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_A23_R policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_A33 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_A83T policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_A83T_R policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_H3 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN8I_V3S policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN9I_A80 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUN9I_A80_R policy<{'arm64': 'n'}> +CONFIG_PINCTRL_SUNRISEPOINT policy<{'amd64': 'n'}> +CONFIG_PINCTRL_SX150X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PINCTRL_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD11 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD20 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD4 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_UNIPHIER_LD6B policy<{'arm64': 'n'}> +CONFIG_PINCTRL_UNIPHIER_PRO4 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_UNIPHIER_PRO5 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_UNIPHIER_PXS2 policy<{'arm64': 'n'}> +CONFIG_PINCTRL_UNIPHIER_PXS3 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_UNIPHIER_SLD8 policy<{'arm64': 'n'}> +CONFIG_PL320_MBOX policy<{'arm64': 'n'}> +CONFIG_PL330_DMA policy<{'arm64': 'y'}> +CONFIG_PLATFORM_MHU policy<{'arm64': 'y'}> +CONFIG_PLATFORM_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PLIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PLX_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PM8916_WATCHDOG policy<{'arm64': '-'}> +CONFIG_PMBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PMIC_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PMIC_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PMS7003 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PM_STD_PARTITION policy<{'amd64': '""', 'arm64': '""'}> +CONFIG_POWER_RESET_AS3722 policy<{'arm64': '-'}> +CONFIG_POWER_RESET_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_POWER_RESET_GPIO policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_GPIO_RESTART policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_HISI policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_LTC2952 policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_QCOM_PON policy<{'arm64': '-'}> +CONFIG_POWER_RESET_SC27XX policy<{'arm64': '-'}> +CONFIG_POWER_RESET_SYSCON_POWEROFF policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_XGENE policy<{'arm64': 'y'}> +CONFIG_PPS_CLIENT_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PPS_CLIENT_LDISC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PPS_CLIENT_PARPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PREEMPT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PREEMPT_VOLUNTARY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PRISM2_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PRISM54 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PSI_DEFAULT_DISABLED policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PTP_1588_CLOCK_DTE policy<{'arm64': 'y'}> +CONFIG_PTP_1588_CLOCK_QORIQ policy<{'arm64': 'y'}> +CONFIG_PWM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PWM_ATMEL_HLCDC_PWM policy<{'arm64': '-'}> +CONFIG_PWM_BCM2835 policy<{'arm64': '-'}> +CONFIG_PWM_BCM_IPROC policy<{'arm64': '-'}> +CONFIG_PWM_BERLIN policy<{'arm64': '-'}> +CONFIG_PWM_BRCMSTB policy<{'arm64': '-'}> +CONFIG_PWM_CRC policy<{'amd64': '-'}> +CONFIG_PWM_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_FSL_FTM policy<{'arm64': '-'}> +CONFIG_PWM_HIBVT policy<{'arm64': '-'}> +CONFIG_PWM_IMX1 policy<{'arm64': '-'}> +CONFIG_PWM_IMX27 policy<{'arm64': '-'}> +CONFIG_PWM_IMX_TPM policy<{'arm64': '-'}> +CONFIG_PWM_LP3943 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_LPSS_PCI policy<{'amd64': '-'}> +CONFIG_PWM_LPSS_PLATFORM policy<{'amd64': '-'}> +CONFIG_PWM_MEDIATEK policy<{'arm64': '-'}> +CONFIG_PWM_MESON policy<{'arm64': '-'}> +CONFIG_PWM_MTK_DISP policy<{'arm64': '-'}> +CONFIG_PWM_PCA9685 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_RCAR policy<{'arm64': '-'}> +CONFIG_PWM_RENESAS_TPU policy<{'arm64': '-'}> +CONFIG_PWM_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_PWM_SPRD policy<{'arm64': '-'}> +CONFIG_PWM_STMPE policy<{'arm64': '-'}> +CONFIG_PWM_SUN4I policy<{'arm64': '-'}> +CONFIG_PWM_TIECAP policy<{'arm64': '-'}> +CONFIG_PWM_TIEHRPWM policy<{'arm64': '-'}> +CONFIG_PWM_TWL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_TWL_LED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWRSEQ_EMMC policy<{'arm64': '-'}> +CONFIG_PWRSEQ_SD8787 policy<{'arm64': '-'}> +CONFIG_PWRSEQ_SIMPLE policy<{'arm64': '-'}> +CONFIG_PXA168_ETH policy<{'arm64': 'n'}> +CONFIG_QCA7000_SPI policy<{'arm64': '-'}> +CONFIG_QCA7000_UART policy<{'arm64': '-'}> +CONFIG_QCOM_A53PLL policy<{'arm64': 'y'}> +CONFIG_QCOM_AOSS_QMP policy<{'arm64': 'y'}> +CONFIG_QCOM_APCS_IPC policy<{'arm64': 'y'}> +CONFIG_QCOM_BAM_DMA policy<{'arm64': 'y'}> +CONFIG_QCOM_CLK_APCS_MSM8916 policy<{'arm64': 'y'}> +CONFIG_QCOM_CLK_RPM policy<{'arm64': '-'}> +CONFIG_QCOM_CLK_RPMH policy<{'arm64': 'y'}> +CONFIG_QCOM_CLK_SMD_RPM policy<{'arm64': 'y'}> +CONFIG_QCOM_COINCELL policy<{'arm64': '-'}> +CONFIG_QCOM_EMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_FASTRPC policy<{'arm64': 'n'}> +CONFIG_QCOM_GENI_SE policy<{'arm64': 'y'}> +CONFIG_QCOM_GLINK_SSR policy<{'arm64': '-'}> +CONFIG_QCOM_GSBI policy<{'arm64': 'n'}> +CONFIG_QCOM_HFPLL policy<{'arm64': 'y'}> +CONFIG_QCOM_HIDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QCOM_HIDMA_MGMT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QCOM_LLCC policy<{'arm64': 'n'}> +CONFIG_QCOM_Q6V5_ADSP policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_MSS policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_PAS policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_WCSS policy<{'arm64': '-'}> +CONFIG_QCOM_QFPROM policy<{'arm64': 'y'}> +CONFIG_QCOM_SDM845_LLCC policy<{'arm64': '-'}> +CONFIG_QCOM_SMD_RPM policy<{'arm64': 'y'}> +CONFIG_QCOM_SMEM policy<{'arm64': 'y'}> +CONFIG_QCOM_SMP2P policy<{'arm64': 'y'}> +CONFIG_QCOM_SMSM policy<{'arm64': 'y'}> +CONFIG_QCOM_SPMI_ADC5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SPMI_IADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SPMI_TEMP_ALARM policy<{'arm64': '-'}> +CONFIG_QCOM_SPMI_VADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SYSMON policy<{'arm64': '-'}> +CONFIG_QCOM_TSENS policy<{'arm64': 'y'}> +CONFIG_QCOM_WCNSS_PIL policy<{'arm64': '-'}> +CONFIG_QCS_GCC_404 policy<{'arm64': 'y'}> +CONFIG_QCS_TURING_404 policy<{'arm64': 'n'}> +CONFIG_QED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_SRIOV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLA3XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_DCB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_SRIOV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QORIQ_CPUFREQ policy<{'arm64': 'y'}> +CONFIG_QSEMI_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QTNFMAC_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R8188EU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R8712U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_ADAPTERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_MAXIRADIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SAA7706H policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SHARK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SHARK2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI476X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_TEA5764 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_TEF6862 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_WL1273 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_WL128X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAPIDIO_CPS_GEN2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_CPS_XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_RXS_GEN3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_TSI568 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_TSI57X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAVB policy<{'arm64': '-'}> +CONFIG_RAVE_SP_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAVE_SP_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAVE_SP_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RBTREE_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RCAR_DMAC policy<{'arm64': 'y'}> +CONFIG_RCAR_GEN3_THERMAL policy<{'arm64': 'y'}> +CONFIG_RCAR_THERMAL policy<{'arm64': 'y'}> +CONFIG_RC_ATI_REMOTE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RC_XBOX_DVD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RDMA_RXE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REALTEK_AUTOPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REED_SOLOMON_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_88PM800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_88PM8607 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AAT2870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AB3100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_ACT8865 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ACT8945A policy<{'arm64': '-'}> +CONFIG_REGULATOR_AD5398 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ANATOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ARIZONA_LDO1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_ARIZONA_MICSUPP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AS3722 policy<{'arm64': '-'}> +CONFIG_REGULATOR_AXP20X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_BCM590XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_BD70528 policy<{'arm64': '-'}> +CONFIG_REGULATOR_BD718XX policy<{'arm64': '-'}> +CONFIG_REGULATOR_CPCAP policy<{'arm64': '-'}> +CONFIG_REGULATOR_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9062 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9210 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_DA9211 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_FAN53555 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_HI6421 policy<{'arm64': 'n'}> +CONFIG_REGULATOR_HI6421V530 policy<{'arm64': 'y'}> +CONFIG_REGULATOR_HI655X policy<{'arm64': 'y'}> +CONFIG_REGULATOR_ISL6271A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ISL9305 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_REGULATOR_LP3971 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP3972 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP872X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP8755 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP87565 policy<{'arm64': '-'}> +CONFIG_REGULATOR_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_LTC3589 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LTC3676 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX14577 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX1586 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX77620 policy<{'arm64': '-'}> +CONFIG_REGULATOR_MAX77650 policy<{'arm64': '-'}> +CONFIG_REGULATOR_MAX77686 policy<{'arm64': '-'}> +CONFIG_REGULATOR_MAX77693 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX77802 policy<{'arm64': '-'}> +CONFIG_REGULATOR_MAX8649 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8660 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8907 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MAX8952 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MC13783 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MC13892 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MCP16502 policy<{'arm64': 'n'}> +CONFIG_REGULATOR_MT6311 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MT6323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6380 policy<{'arm64': 'n'}> +CONFIG_REGULATOR_MT6397 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PFUZE100 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88060 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88080 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88090 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_QCOM_RPM policy<{'arm64': '-'}> +CONFIG_REGULATOR_QCOM_RPMH policy<{'arm64': 'y'}> +CONFIG_REGULATOR_QCOM_SMD_RPM policy<{'arm64': 'y'}> +CONFIG_REGULATOR_QCOM_SPMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_RN5T618 policy<{'arm64': '-'}> +CONFIG_REGULATOR_RT5033 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_S2MPA01 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_S2MPS11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_S5M8767 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_SC2731 policy<{'arm64': '-'}> +CONFIG_REGULATOR_SKY81452 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_STPMIC1 policy<{'arm64': '-'}> +CONFIG_REGULATOR_SY8106A policy<{'arm64': 'n'}> +CONFIG_REGULATOR_SY8824X policy<{'arm64': 'n'}> +CONFIG_REGULATOR_TPS51632 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6105X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS62360 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65023 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6507X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65086 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS65218 policy<{'arm64': '-'}> +CONFIG_REGULATOR_TPS6524X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS65912 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_REGULATOR_USERSPACE_CONSUMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_VEXPRESS policy<{'arm64': 'n'}> +CONFIG_REGULATOR_VIRTUAL_CONSUMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_WM8400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_WM8994 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REMOTEPROC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RENESAS_RZAWDT policy<{'arm64': 'n'}> +CONFIG_RENESAS_WDT policy<{'arm64': 'y'}> +CONFIG_RESET_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_RESET_SCMI policy<{'arm64': 'y'}> +CONFIG_RESET_TI_SCI policy<{'arm64': 'y'}> +CONFIG_RESET_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_RESET_UNIPHIER_GLUE policy<{'arm64': 'y'}> +CONFIG_RFD77402 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RFD_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RMI4_F03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F12 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F34 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F54 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F55 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_SMB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RN5T618_WATCHDOG policy<{'arm64': '-'}> +CONFIG_ROCKCHIP_EFUSE policy<{'arm64': 'y'}> +CONFIG_ROCKCHIP_MBOX policy<{'arm64': 'n'}> +CONFIG_ROCKCHIP_RGB policy<{'arm64': 'n'}> +CONFIG_ROCKCHIP_RK3066_HDMI policy<{'arm64': 'n'}> +CONFIG_ROCKCHIP_SARADC policy<{'arm64': '-'}> +CONFIG_ROCKER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ROMFS_BACKED_BY_BOTH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ROMFS_BACKED_BY_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RPMSG_QCOM_SMD policy<{'arm64': 'y'}> +CONFIG_RPR0521 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_91X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_COEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2400PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2500PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2500USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT3290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT33XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT35XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT53XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT33XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT3573 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT35XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT53XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT55XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_UNKNOWN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT61PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT73USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_88PM80X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_AB3100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_ABB5ZES3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ABX80X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ARMADA38X policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_AS3722 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_BD70528 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_BQ32K policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_BQ4802 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_CADENCE policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_CPCAP policy<{'arm64': '-'}> +CONFIG_RTC_DRV_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DA9063 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1286 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1302 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1305 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1307 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1307_CENTURY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1343 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1347 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1374 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1374_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1390 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1511 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1553 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1672 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1685 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1685_FAMILY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1689 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS17285 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1742 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS17485 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS17885 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS2404 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS3232 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS3232_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_EM3027 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_FM3130 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_HID_SENSOR_TIME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_IMXDI policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_ISL12022 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ISL12026 policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_ISL1208 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_M41T80 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M41T80_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_M41T93 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M41T94 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T35 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T59 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T86 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6900 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6902 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6916 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX77686 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_MAX8907 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MC13XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MCP795 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MSM6242 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MT6397 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MT7622 policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_MV policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_MXC policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_MXC_V2 policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF2123 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PL030 policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_PL031 policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_PM8XXX policy<{'arm64': '-'}> +CONFIG_RTC_DRV_R7301 policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_R9701 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_RP5C01 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RS5C348 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RS5C372 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RTD119X policy<{'arm64': '-'}> +CONFIG_RTC_DRV_RV3029C2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RV3029_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_RV8803 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX4581 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX6110 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8010 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8025 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8581 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_S35390A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_S3C policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_S5M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_SC27XX policy<{'arm64': '-'}> +CONFIG_RTC_DRV_SH policy<{'arm64': 'n'}> +CONFIG_RTC_DRV_STK17TA8 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_TEGRA policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_TWL4030 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_V3020 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_WILCO_EC policy<{'amd64': '-'}> +CONFIG_RTC_DRV_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_X1205 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ZYNQMP policy<{'arm64': 'n'}> +CONFIG_RTD119X_WATCHDOG policy<{'arm64': '-'}> +CONFIG_RTL8180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8187 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8188EE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192CU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192DE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192EE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192SE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723AE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723BE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723BS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8821AE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8XXXU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8XXXU_UNTESTED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_CCMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_TKIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_WEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLWIFI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL_CARDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8723DE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822BE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_REGD_USER_REG_HINTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RUNTIME_TESTING_MENU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_S3C2410_WATCHDOG policy<{'arm64': 'y'}> +CONFIG_SAMPLES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SAMPLE_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_HW_BREAKPOINT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KDB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KFIFO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KOBJECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KPROBES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_LIVEPATCH policy<{'amd64': '-'}> +CONFIG_SAMPLE_QMI_CLIENT policy<{'arm64': '-'}> +CONFIG_SAMPLE_RPMSG_CLIENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_TRACE_EVENTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MBOCHS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MTTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMSUNG_LAPTOP policy<{'amd64': 'n'}> +CONFIG_SAMSUNG_Q10 policy<{'amd64': 'n'}> +CONFIG_SATA_AHCI_SEATTLE policy<{'arm64': 'n'}> +CONFIG_SATA_RCAR policy<{'arm64': 'y'}> +CONFIG_SBP_TARGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SC27XX_ADC policy<{'arm64': '-'}> +CONFIG_SC27XX_EFUSE policy<{'arm64': '-'}> +CONFIG_SC92031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCA3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCIF policy<{'amd64': '-'}> +CONFIG_SCIF_BUS policy<{'amd64': 'n'}> +CONFIG_SCR24X policy<{'amd64': '-'}> +CONFIG_SCSI_BNX2X_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_BNX2_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_CXGB3_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_CXGB4_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_HISI_SAS policy<{'arm64': 'y'}> +CONFIG_SCSI_HISI_SAS_PCI policy<{'arm64': 'y'}> +CONFIG_SCSI_ISCI policy<{'amd64': 'n'}> +CONFIG_SCSI_LOWLEVEL_PCMCIA policy<{'amd64': '-'}> +CONFIG_SCSI_SAS_ATTRS policy<{'amd64': 'm', 'arm64': 'y'}> +CONFIG_SCSI_SAS_LIBSAS policy<{'amd64': 'm', 'arm64': 'y'}> +CONFIG_SCSI_UFSHCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_UFSHCD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFSHCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_BSG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_CDNS_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_DWC_TC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_DWC_TC_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_HISI policy<{'arm64': '-'}> +CONFIG_SCSI_UFS_MEDIATEK policy<{'arm64': '-'}> +CONFIG_SCSI_UFS_QCOM policy<{'arm64': '-'}> +CONFIG_SDIO_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SDMA_VERBOSITY policy<{'amd64': '-'}> +CONFIG_SDM_DISPCC_845 policy<{'arm64': 'y'}> +CONFIG_SDM_GCC_660 policy<{'arm64': 'n'}> +CONFIG_SDM_GCC_845 policy<{'arm64': 'y'}> +CONFIG_SDM_GPUCC_845 policy<{'arm64': 'y'}> +CONFIG_SDM_LPASSCC_845 policy<{'arm64': 'n'}> +CONFIG_SDM_VIDEOCC_845 policy<{'arm64': 'y'}> +CONFIG_SDR_MAX2175 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SDR_PLATFORM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SD_ADC_MODULATOR policy<{'arm64': '-'}> +CONFIG_SECURITY_APPARMOR_DEBUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SENSIRION_SGP30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ADM1275 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_AHC1EC0_HWMON policy<{'amd64': '-'}> +CONFIG_SENSORS_ARM_SCMI policy<{'arm64': 'y'}> +CONFIG_SENSORS_ARM_SCPI policy<{'arm64': 'y'}> +CONFIG_SENSORS_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_GPIO_FAN policy<{'arm64': 'n'}> +CONFIG_SENSORS_HDAPS policy<{'amd64': 'n'}> +CONFIG_SENSORS_HMC5843_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_HMC5843_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IBM_CFFPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IIO_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_INSPUR_IPSPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IR35221 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IR38064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IRPS5401 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL29018 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL29028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL68137 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LIS3_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_LM25066 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_SENSORS_LTC2978 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LTC2978_REGULATOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LTC3815 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX16064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX20751 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX31785 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX34440 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX8688 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_OCC_P9_SBE policy<{'arm64': '-'}> +CONFIG_SENSORS_PMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_PWM_FAN policy<{'arm64': '-'}> +CONFIG_SENSORS_PXE1610 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_RM3100_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_RM3100_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TPS40422 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TPS53679 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TSL2563 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_UCD9000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_UCD9200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_VEXPRESS policy<{'arm64': 'n'}> +CONFIG_SENSORS_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ZL6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SERIAL_8250_ASPEED_VUART policy<{'arm64': 'n'}> +CONFIG_SERIAL_8250_BCM2835AUX policy<{'arm64': 'y'}> +CONFIG_SERIAL_8250_CS policy<{'amd64': '-'}> +CONFIG_SERIAL_8250_DW policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SERIAL_8250_OMAP policy<{'arm64': 'y'}> +CONFIG_SERIAL_8250_UNIPHIER policy<{'arm64': 'y'}> +CONFIG_SERIAL_AMBA_PL010 policy<{'arm64': 'n'}> +CONFIG_SERIAL_CONEXANT_DIGICOLOR policy<{'arm64': 'n'}> +CONFIG_SERIAL_DEV_BUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SERIAL_DEV_CTRL_TTYPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST policy<{'arm64': 'n'}> +CONFIG_SERIAL_IPOCTAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SERIAL_QCOM_GENI policy<{'arm64': 'y'}> +CONFIG_SERIAL_SAMSUNG policy<{'arm64': 'y'}> +CONFIG_SERIAL_SH_SCI policy<{'arm64': 'y'}> +CONFIG_SERIAL_SH_SCI_NR_UARTS policy<{'arm64': '18'}> +CONFIG_SERIAL_SIFIVE policy<{'arm64': 'n'}> +CONFIG_SERIAL_SPRD policy<{'arm64': 'n'}> +CONFIG_SERIAL_TEGRA policy<{'arm64': 'y'}> +CONFIG_SERIAL_TEGRA_TCU policy<{'arm64': 'y'}> +CONFIG_SERIAL_XILINX_PS_UART policy<{'arm64': 'y'}> +CONFIG_SERIO_AMBAKMI policy<{'arm64': 'y'}> +CONFIG_SERIO_APBPS2 policy<{'arm64': 'n'}> +CONFIG_SFC_FALCON_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SFC_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SGI_GRU policy<{'amd64': '-'}> +CONFIG_SGI_GRU_DEBUG policy<{'amd64': '-'}> +CONFIG_SGI_XP policy<{'amd64': '-'}> +CONFIG_SH_ETH policy<{'arm64': '-'}> +CONFIG_SI1133 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI1145 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI7005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI7020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SIMPLE_PM_BUS policy<{'arm64': 'n'}> +CONFIG_SIS190 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SIS900 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMARTJOYPLUS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMC91X policy<{'arm64': '-'}> +CONFIG_SMSC911X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMSC9420 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMSC_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SMS_SDIO_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_SIANO_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_SIANO_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_USB_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SM_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SM_GCC_8150 policy<{'arm64': 'y'}> +CONFIG_SND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AC97_POWER_SAVE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AC97_POWER_SAVE_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AD1889 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ALI5451 policy<{'amd64': '-'}> +CONFIG_SND_ALOOP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ALS300 policy<{'amd64': '-'}> +CONFIG_SND_ALS4000 policy<{'amd64': '-'}> +CONFIG_SND_ASIHPI policy<{'amd64': '-'}> +CONFIG_SND_ATIIXP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ATIIXP_MODEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ATMEL_SOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8810 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AUDIO_GRAPH_CARD policy<{'arm64': '-'}> +CONFIG_SND_AW2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AZT3328 policy<{'amd64': '-'}> +CONFIG_SND_BCD2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BCM2835 policy<{'arm64': '-'}> +CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': '-'}> +CONFIG_SND_BEBOB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BT87X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BT87X_OVERCLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CA0106 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CMIPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS4281 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS46XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS46XX_NEW_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CTXFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DARLA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DARLA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DESIGNWARE_PCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DICE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DYNAMIC_MINORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ECHO3G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_EMU10K1 policy<{'amd64': '-'}> +CONFIG_SND_EMU10K1X policy<{'amd64': '-'}> +CONFIG_SND_ENS1370 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ENS1371 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ES1938 policy<{'amd64': '-'}> +CONFIG_SND_ES1968 policy<{'amd64': '-'}> +CONFIG_SND_ES1968_INPUT policy<{'amd64': '-'}> +CONFIG_SND_ES1968_RADIO policy<{'amd64': '-'}> +CONFIG_SND_FIREFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_DIGI00X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_MOTU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_TASCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWORKS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FM801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FM801_TEA575X_BOOL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_GINA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_GINA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0132 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0132_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CIRRUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CMEDIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CONEXANT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_HDMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_SI3054 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_SIGMATEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_VIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_HWDEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INPUT_BEEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INPUT_BEEP_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_PATCH_LOADER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_POWER_SAVE_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_PREALLOC_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_RECONFIG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDSPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HRTIMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_I2S_HI6210_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ICE1712 policy<{'amd64': '-'}> +CONFIG_SND_ICE1724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_IMX_SOC policy<{'arm64': '-'}> +CONFIG_SND_INDIGO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGODJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGODJX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGOIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGOIOX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL8X0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL8X0M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ISIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_KIRKWOOD_SOC policy<{'arm64': '-'}> +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB policy<{'arm64': '-'}> +CONFIG_SND_KORG1212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LAYLA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LAYLA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LOLA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LX6464ES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MAESTRO3 policy<{'amd64': '-'}> +CONFIG_SND_MAESTRO3_INPUT policy<{'amd64': '-'}> +CONFIG_SND_MAX_CARDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MESON_AXG_FRDDR policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_PDM policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SOUND_CARD policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SPDIFIN policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SPDIFOUT policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDMIN policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDMOUT policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TODDR policy<{'arm64': '-'}> +CONFIG_SND_MESON_G12A_TOHDMITX policy<{'arm64': '-'}> +CONFIG_SND_MIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MIXART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MIXER_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MONA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MPU401 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MTPAV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MTS64 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_NM256 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OSSEMUL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OXFW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OXYGEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCMCIA policy<{'amd64': '-'}> +CONFIG_SND_PCM_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCM_TIMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCSP policy<{'amd64': '-'}> +CONFIG_SND_PCXHR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PDAUDIOCF policy<{'amd64': '-'}> +CONFIG_SND_PORTMAN2X4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PROC_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RIPTIDE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME96 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME9652 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SEQUENCER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SEQUENCER_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SEQ_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SEQ_HRTIMER_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SERIAL_U16550 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SIMPLE_CARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AC97_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1701 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1761_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1761_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU7002 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4104 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4458 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4554 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4613 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4642 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK5386 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK5558 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ALC5623 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_ACP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_ACP3x policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_APQ8016_SBC policy<{'arm64': '-'}> +CONFIG_SND_SOC_BD28623 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_BT_SCO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CPCAP policy<{'arm64': '-'}> +CONFIG_SND_SOC_CROS_EC_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L33 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L34 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L35 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L36 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4265 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4270 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4271_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4271_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L42 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L51_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L52 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L56 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L73 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42XX8_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS43130 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4341 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4349 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS53L30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CX2072X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_DMIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES7134 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES7241 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8316 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8328_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8328_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_ASOC_CARD policy<{'arm64': '-'}> +CONFIG_SND_SOC_FSL_ASRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_AUDMIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_ESAI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_MICFIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SAI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_GTM601 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_I2S_IN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_I2S_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_PARALLEL_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_SPDIF_IN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_SPDIF_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMX_AUDMIX policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_AUDMUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMX_ES8328 policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_SGTL5000 policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_INNO_RK3036 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_INTEL_APL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BROADWELL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_GLK policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_HASWELL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_HASWELL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL policy<{'amd64': '-'}> +CONFIG_SND_SOC_LOCHNAGAR_SC policy<{'arm64': '-'}> +CONFIG_SND_SOC_MAX9759 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98088 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98357A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98373 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98504 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX9860 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX9867 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98927 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MIKROE_PROTO policy<{'arm64': '-'}> +CONFIG_SND_SOC_MSM8916_WCD_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MSM8996 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT2701 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6351 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MT6358 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MT6797 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6797_MT6351 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8173 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A policy<{'arm64': '-'}> +CONFIG_SND_SOC_MTK_BTCVSD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8540 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8810 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8822 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8824 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM1681 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM1789_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM179X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM179X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM186X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM186X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3060_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3060_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3168A_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3168A_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM512x_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM512x_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_QCOM policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6 policy<{'arm64': '-'}> +CONFIG_SND_SOC_RCAR policy<{'arm64': '-'}> +CONFIG_SND_SOC_RK3288_HDMI_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SOC_RK3328 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RK3399_GRU_SOUND policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_I2S policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_MAX98090 policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_PDM policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_RT5645 policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_RT5616 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5631 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SDM845 policy<{'arm64': '-'}> +CONFIG_SND_SOC_SGTL5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SH4_FSI policy<{'arm64': '-'}> +CONFIG_SND_SOC_SIMPLE_AMPLIFIER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIRF_AUDIO_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_APOLLOLAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_BAYTRAIL_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_CANNONLAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_COFFEELAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_COMETLAKE_H_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_COMETLAKE_LP_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_ELKHARTLAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_GEMINILAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_ICELAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_IMX8_SUPPORT policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_MERRIFIELD_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_OF policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_STRICT_ABI_CHECKS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_TIGERLAKE_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_TOPLEVEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SPRD policy<{'arm64': '-'}> +CONFIG_SND_SOC_SPRD_MCDT policy<{'arm64': '-'}> +CONFIG_SND_SOC_SSM2305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2602_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2602_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM4567 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STA32X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STA350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STI_SAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STORM policy<{'arm64': '-'}> +CONFIG_SND_SOC_TAS2552 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS5086 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS571X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS5720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS6424 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TDA7419 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TFA9879 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC23_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC23_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC31XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC32X4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC32X4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC3X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TPA6130A2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TS3A227E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TSCS42XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TSCS454 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_UDA1334 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD9335 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8524 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8580 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8728 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8731 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8737 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8741 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8750 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8753 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8770 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8776 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8782 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8804_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8804_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8903 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8904 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8960 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8962 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8974 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8978 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8985 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XTFPGA_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ZX_AUD96P22 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SONICVIBES policy<{'amd64': '-'}> +CONFIG_SND_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI policy<{'amd64': '-'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI policy<{'amd64': '-'}> +CONFIG_SND_SUN4I_CODEC policy<{'arm64': '-'}> +CONFIG_SND_SUN4I_I2S policy<{'arm64': '-'}> +CONFIG_SND_SUN4I_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SUN50I_CODEC_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SUN8I_CODEC policy<{'arm64': '-'}> +CONFIG_SND_SUN8I_CODEC_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SUPPORT_OLD_API policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_TRIDENT policy<{'amd64': '-'}> +CONFIG_SND_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_6FIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_CAIAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_CAIAQ_INPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_HIFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_POD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_PODHD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_TONEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_UA101 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_US122L policy<{'amd64': '-'}> +CONFIG_SND_USB_USX2Y policy<{'amd64': '-'}> +CONFIG_SND_USB_VARIAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VERBOSE_PRINTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VERBOSE_PROCFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIA82XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIA82XX_MODEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIRMIDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIRTUOSO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VX222 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VXPOCKET policy<{'amd64': '-'}> +CONFIG_SND_X86 policy<{'amd64': '-'}> +CONFIG_SND_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_YMFPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SNI_NETSEC policy<{'arm64': '-'}> +CONFIG_SOC_SAMSUNG policy<{'arm64': 'y'}> +CONFIG_SONYPI_COMPAT policy<{'amd64': '-'}> +CONFIG_SONY_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SONY_LAPTOP policy<{'amd64': 'n'}> +CONFIG_SOUNDWIRE_INTEL policy<{'amd64': '-'}> +CONFIG_SPEAKUP policy<{'amd64': 'n', 'arm64': 'n'}> +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_ARMADA_3700 policy<{'arm64': 'y'}> +CONFIG_SPI_BCM_QSPI policy<{'arm64': 'y'}> +CONFIG_SPI_CADENCE_QUADSPI policy<{'arm64': '-'}> +CONFIG_SPI_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_FSL_DSPI policy<{'arm64': 'y'}> +CONFIG_SPI_FSL_LPSPI policy<{'arm64': 'y'}> +CONFIG_SPI_FSL_QUADSPI policy<{'arm64': 'y'}> +CONFIG_SPI_FSL_SPI policy<{'arm64': 'n'}> +CONFIG_SPI_HISI_SFC policy<{'arm64': '-'}> +CONFIG_SPI_HISI_SFC_V3XX policy<{'arm64': 'n'}> +CONFIG_SPI_MT65XX policy<{'arm64': 'n'}> +CONFIG_SPI_MTK_QUADSPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_OMAP24XX policy<{'arm64': 'n'}> +CONFIG_SPI_ORION policy<{'arm64': 'y'}> +CONFIG_SPI_PL022 policy<{'arm64': 'y'}> +CONFIG_SPI_QUP policy<{'arm64': 'y'}> +CONFIG_SPI_ROCKCHIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SPI_RSPI policy<{'arm64': 'n'}> +CONFIG_SPI_S3C64XX policy<{'arm64': 'y'}> +CONFIG_SPI_SH_HSPI policy<{'arm64': 'n'}> +CONFIG_SPI_SPRD policy<{'arm64': 'n'}> +CONFIG_SPI_SPRD_ADI policy<{'arm64': 'n'}> +CONFIG_SPI_SUN6I policy<{'arm64': 'y'}> +CONFIG_SPI_SYNQUACER policy<{'arm64': 'n'}> +CONFIG_SPI_TEGRA114 policy<{'arm64': 'n'}> +CONFIG_SPI_TEGRA20_SFLASH policy<{'arm64': 'n'}> +CONFIG_SPI_TEGRA20_SLINK policy<{'arm64': 'n'}> +CONFIG_SPI_THUNDERX policy<{'arm64': 'n'}> +CONFIG_SPI_UNIPHIER policy<{'arm64': 'n'}> +CONFIG_SPI_XLP policy<{'arm64': 'n'}> +CONFIG_SPMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SPMI_MSM_PMIC_ARB policy<{'arm64': '-'}> +CONFIG_SPMI_PMIC_CLKDIV policy<{'arm64': '-'}> +CONFIG_SPRD_COMMON_CLK policy<{'arm64': 'y'}> +CONFIG_SPRD_DMA policy<{'arm64': 'n'}> +CONFIG_SPRD_SC9860_CLK policy<{'arm64': 'y'}> +CONFIG_SPRD_WATCHDOG policy<{'arm64': 'n'}> +CONFIG_SPS30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SRF04 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SRF08 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSB_PCMCIAHOST policy<{'amd64': '-'}> +CONFIG_SSB_SDIOHOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSFDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STANDALONE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STE10XP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STK3310 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STK8312 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STK8BA50 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STMMAC_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_SELFTESTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMPE_ADC policy<{'arm64': '-'}> +CONFIG_STMPE_I2C policy<{'arm64': '-'}> +CONFIG_STMPE_SPI policy<{'arm64': '-'}> +CONFIG_STM_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_PROTO_BASIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_PROTO_SYS_T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_CONSOLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_FTRACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_HEARTBEAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STPMIC1_WATCHDOG policy<{'arm64': '-'}> +CONFIG_STX104 policy<{'amd64': '-'}> +CONFIG_ST_UVIS25 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SUN4I_GPADC policy<{'arm64': '-'}> +CONFIG_SUN8I_A83T_CCU policy<{'arm64': 'n'}> +CONFIG_SUNGEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SUNXI_RSB policy<{'arm64': 'y'}> +CONFIG_SURFACE_3_BUTTON policy<{'amd64': '-'}> +CONFIG_SURFACE_PRO3_BUTTON policy<{'amd64': 'n'}> +CONFIG_SX9500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SXGBE_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SYNCLINK_CS policy<{'amd64': '-'}> +CONFIG_SYSCON_REBOOT_MODE policy<{'arm64': 'y'}> +CONFIG_SYSCTL_SYSCALL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SYSC_R8A7795 policy<{'arm64': '-'}> +CONFIG_SYSC_R8A7796 policy<{'arm64': '-'}> +CONFIG_T5403 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TABLET_SERIAL_WACOM4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_ACECAD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_AIPTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_GTCO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_HANWANG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_KBTAB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_PEGASUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TAHVO_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TAHVO_USB_HOST_BY_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCG_ATMEL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_FTPM_TEE policy<{'arm64': 'n'}> +CONFIG_TCG_INFINEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_NSC policy<{'amd64': 'n'}> +CONFIG_TCG_TIS_I2C_ATMEL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_I2C_INFINEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_I2C_NUVOTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_ST33ZP24_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_ST33ZP24_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_VTPM_PROXY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_FC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_QLA2XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_QLA2XXX_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCS3414 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCS3472 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEE policy<{'arm64': 'y'}> +CONFIG_TEGRA20_APB_DMA policy<{'arm64': 'y'}> +CONFIG_TEGRA_BPMP policy<{'arm64': 'y'}> +CONFIG_TEGRA_BPMP_THERMAL policy<{'arm64': 'm'}> +CONFIG_TEGRA_GMI policy<{'arm64': 'n'}> +CONFIG_TEGRA_HOST1X policy<{'arm64': 'm'}> +CONFIG_TEGRA_HOST1X_FIREWALL policy<{'arm64': 'y'}> +CONFIG_TEGRA_HSP_MBOX policy<{'arm64': 'y'}> +CONFIG_TEGRA_IOMMU_SMMU policy<{'arm64': 'y'}> +CONFIG_TEGRA_IVC policy<{'arm64': 'y'}> +CONFIG_TEGRA_MC policy<{'arm64': 'y'}> +CONFIG_TEGRA_SOCTHERM policy<{'arm64': 'm'}> +CONFIG_TEGRA_TIMER policy<{'arm64': 'y'}> +CONFIG_TEGRA_VDE policy<{'arm64': 'n'}> +CONFIG_TEGRA_WATCHDOG policy<{'arm64': 'n'}> +CONFIG_TEHUTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TERANETICS_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TEST_BITFIELD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BITMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BLACKHOLE_DEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BPF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_HASH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_HEXDUMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_IDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_KMOD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_KSTRTOX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_LIST_SORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_LIVEPATCH policy<{'amd64': '-'}> +CONFIG_TEST_LKM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_MEMCAT_P policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_MEMINIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_OBJAGG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_OVERFLOW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_PARMAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TEST_PRINTF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_RHASHTABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_SORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STACKINIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STATIC_KEYS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STRING_HELPERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STRSCPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_SYSCTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_UDELAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_USER_COPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_UUID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_VMALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_XARRAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THERMAL_MMIO policy<{'arm64': 'n'}> +CONFIG_THINKPAD_ACPI policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_DEBUG policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_HOTKEY_POLL policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_UNSAFE_LEDS policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_VIDEO policy<{'amd64': '-'}> +CONFIG_THRUSTMASTER_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDERBOLT policy<{'amd64': 'n'}> +CONFIG_THUNDERBOLT_NET policy<{'amd64': '-'}> +CONFIG_THUNDER_NIC_BGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_PF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_RGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_VF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TICK_CPU_ACCOUNTING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TIPC_MEDIA_IB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TI_ADC081C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC0832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC084S021 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC108S102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC12138 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC128S052 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC161S626 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS1015 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS124S08 policy<{'arm64': '-'}> +CONFIG_TI_ADS7950 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS8344 policy<{'arm64': '-'}> +CONFIG_TI_ADS8688 policy<{'arm64': '-'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_CPSW_PHY_SEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC082S085 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC5571 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC7311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC7612 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_SCI_CLK policy<{'arm64': 'y'}> +CONFIG_TI_SCI_PM_DOMAINS policy<{'arm64': 'y'}> +CONFIG_TI_ST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TI_TLC4541 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMD_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMP006 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMP007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOPSTAR_LAPTOP policy<{'amd64': 'n'}> +CONFIG_TOSHIBA_BT_RFKILL policy<{'amd64': 'n'}> +CONFIG_TOSHIBA_HAPS policy<{'amd64': 'n'}> +CONFIG_TOUCHSCREEN_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7877 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ADS7846 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AR1021_I2C policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AUO_PIXCIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_BU21013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_BU21029 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_COLIBRI_VF50 policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_CY8CTMG110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DA9034 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DA9052 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DMI policy<{'amd64': '-'}> +CONFIG_TOUCHSCREEN_DYNAPRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EDT_FT5X06 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EETI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EGALAX policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_EGALAX_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EKTF2127 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EXC3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_FUJITSU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_GOODIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_GUNZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_HAMPSHIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_HIDEEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ILI210X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_IMX6UL_TSC policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_INEXIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_IQS5XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MAX11801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MC13783 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MCS5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MELFAS_MIP4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MK712 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MMS114 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PCAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PENMOUNT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PIXCIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_RM_TS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ROHM_BU21023 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_S6SY761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SILEAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SIS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ST1232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_STMFTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_STMPE policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_SUN4I policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SURFACE3_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TPS6507X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2004 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2007_IIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC_SERIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_UCB1400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_3M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_COMPOSITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_DMC_TSC10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_E2I policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_EASYTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_EGALAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ETURBO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GOTOP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GUNZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_IDEALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_IRTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ITM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_JASTEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_NEXIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_PANJIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ZYTRONIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WACOM_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WACOM_W8001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WDT87XX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM831X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9705 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9712 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM97XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ZET6223 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ZFORCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TPL0102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TPS68470_PMIC_OPREGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS policy<{'amd64': 'y', 'arm64': 'n'}> note +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE policy<{'amd64': 'n', 'arm64': 'y'}> note +CONFIG_TSL2583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSL2772 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSL4531 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSYS01 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSYS02D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_MWI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_NAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TURRIS_MOX_RWTM policy<{'arm64': 'n'}> +CONFIG_TWL4030_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL4030_MADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL4030_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL6030_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL6040_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TYPEC_DP_ALTMODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_FUSB302 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_MUX_PI3USB30532 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_NVIDIA_ALTMODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_RT1711H policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TCPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TCPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TPS6598X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_UCSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPHOON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_ATIME_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ADVANCED_COMPR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_AUTHENTICATION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_LZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_SECURITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_XATTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ZLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ZSTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UCB1400_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UCSI_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UCSI_CCG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UIO_HV_GENERIC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ULI526X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UNIPHIER_EFUSE policy<{'arm64': 'y'}> +CONFIG_UNIPHIER_MDMAC policy<{'arm64': 'n'}> +CONFIG_UNIPHIER_SYSTEM_BUS policy<{'arm64': 'y'}> +CONFIG_UNIPHIER_THERMAL policy<{'arm64': 'y'}> +CONFIG_UNIPHIER_WATCHDOG policy<{'arm64': 'y'}> +CONFIG_UNISYS_VISORBUS policy<{'amd64': 'n'}> +CONFIG_UNISYS_VISORHBA policy<{'amd64': '-'}> +CONFIG_UNISYS_VISORINPUT policy<{'amd64': '-'}> +CONFIG_UNISYS_VISORNIC policy<{'amd64': '-'}> +CONFIG_US5182D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USBIP_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_HC_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_NR_HCS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VUDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBPCWATCHDOG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ACM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ADUTUX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_AIRSPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ALI_M5632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_AMD5536UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_AN2720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ANNOUNCE_NEW_DEVICES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_APPLEDISPLAY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ARMLINUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ATM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_BDC_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_BELKIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_C67X00_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CATC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDC_COMPOSITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDC_PHONET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CDNS3_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3_PCI_WRAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHAOSKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CHIPIDEA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ACM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ECM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ECM_SUBSET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_LB_SS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_MIDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_PRINTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_TCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UVC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_MASS_STORAGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_OBEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_PHONET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONN_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CXACRU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CYPRESS_CY7C63 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CYTHERM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DEFAULT_PERSIST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DSBR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DUMMY_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DWC2_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_TRACK_MISSED_SOFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DWC3_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_HAPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_KEYSTONE policy<{'arm64': '-'}> +CONFIG_USB_DWC3_MESON_G12A policy<{'arm64': '-'}> +CONFIG_USB_DWC3_OF_SIMPLE policy<{'arm64': '-'}> +CONFIG_USB_DWC3_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_QCOM policy<{'arm64': '-'}> +CONFIG_USB_DWC3_ULPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DYNAMIC_MINORS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EG20T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_FSL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_HCD_ORION policy<{'arm64': '-'}> +CONFIG_USB_EHCI_MXC policy<{'arm64': '-'}> +CONFIG_USB_EHCI_ROOT_HUB_TT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_TT_NEWSCHED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHSET_TEST_FIXTURE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMI26 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMI62 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMXX policy<{'arm64': '-'}> +CONFIG_USB_EPSON2888 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EZUSB_FX2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FOTG210_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FOTG210_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FSL_USB2 policy<{'arm64': '-'}> +CONFIG_USB_FTDI_ELAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FUNCTIONFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_GADGETFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG_FILES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_TARGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_VBUS_DRAW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_XILINX policy<{'arm64': '-'}> +CONFIG_USB_GL860 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GOKU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GPIO_VBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_GR_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_BENQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_CONEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_CPIA1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_DTCS033 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_ETOMS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_FINEPIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_JEILINJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_JL2005BCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_KINECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_KONICA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_MARS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_MR97310A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_NW80X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV519 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV534 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV534_9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC207 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC7302 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC7311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SE401 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SN9C2028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SN9C20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SONIXB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SONIXJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA1528 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA505 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA506 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA508 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA561 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ905 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ905C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ930X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STK014 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STK1135 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STV0680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SUNPLUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_T613 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TOPRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TOUPTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TV8532 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_VC032X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_VICAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_XIRLINK_CIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_ZC3XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_ACM_MS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP_PRINTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_MULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_NOKIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_PRINTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_WEBCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HACKRF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HCD_BCMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HCD_SSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HIDDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HSIC_USB3503 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HSIC_USB4604 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HSO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HUB_USB251XB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HWA_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_IDMOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_IOWARRIOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_IPHETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISIGHTFW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP116X_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1301 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1760 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1760_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1760_GADGET_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1760_HOST_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KAWETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_KC2190 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KEENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_LAN78XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_LCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LEDS_TRIGGER_USBPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LED_TRIG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LEGOTOWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LINK_LAYER_TEST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_M5602 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_M66592 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MA901 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MASS_STORAGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MAX3421_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MDC800 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MICROTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MIDI_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MR800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MSI2500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MTU3 policy<{'arm64': 'y'}> +CONFIG_USB_MTU3_DUAL_ROLE policy<{'arm64': '-'}> +CONFIG_USB_MTU3_GADGET policy<{'arm64': '-'}> +CONFIG_USB_MTU3_HOST policy<{'arm64': 'y'}> +CONFIG_USB_MUSB_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_HDRC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MUSB_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_SUNXI policy<{'arm64': '-'}> +CONFIG_USB_MV_U3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MV_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MXS_PHY policy<{'arm64': 'n'}> +CONFIG_USB_NET2272 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET2272_DMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET2280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AQC111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AX88179_178A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AX8817X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDCETHER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_MBIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_SUBSET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CH9200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CX82310_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_DM9601 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_DRIVERS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_NET_GL620A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_HUAWEI_CDC_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_INT51X1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_KALMIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_MCS7830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_NET1080 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_PLUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_QMI_WWAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_RNDIS_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_RNDIS_WLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SMSC75XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SMSC95XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SR9700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SR9800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_ZAURUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_OHCI_HCD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OHCI_HCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OXU210HP_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_PEGASUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PRINTER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_PULSE8_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PWC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PWC_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PWC_INPUT_EVDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PXA27X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_R8A66597 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_R8A66597_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_RAINSHADOW_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RAREMONO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RENESAS_USB3 policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS_HCD policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS_UDC policy<{'arm64': '-'}> +CONFIG_USB_ROLES_INTEL_XHCI policy<{'amd64': '-'}> +CONFIG_USB_ROLE_SWITCH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_RTL8150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RTL8152 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_S2255 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SERIAL_AIRCABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_ARK3116 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_BELKIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CH341 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CP210X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CYBERJACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CYPRESS_M8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_DIGI_ACCELEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EDGEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EDGEPORT_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EMPEG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_F81232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_F8153X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_FTDI_SIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_GARMIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IPAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IPW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IUU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KEYSPAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KEYSPAN_PDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KLSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KOBIL_SCT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MCT_U232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_METRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7715_PARPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MXUPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_NAVMAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OMNINET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OPTICON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OPTION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OTI6858 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_PL2303 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QCAUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QT2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QUALCOMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SAFE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SAFE_PADDED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SIERRAWIRELESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SIMPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SPCP8X5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SSU100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SYMBOL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_UPD78F0730 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_VISOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_WHITEHEAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_WISHBONE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_XIRCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_XSENS_MT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SEVSEG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SIERRA_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SISUSBVGA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SL811_CS policy<{'amd64': '-'}> +CONFIG_USB_SL811_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SL811_HCD_ISO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SNP_UDC_PLAT policy<{'arm64': '-'}> +CONFIG_USB_SPEEDTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STKWEBCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_STORAGE_ALAUDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_CYPRESS_ATACB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_DATAFAB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ENE_UB6250 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_FREECOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ISD200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_JUMPSHOT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_KARMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ONETOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_SDDR09 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_SDDR55 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_USBAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STV06XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_TEGRA_PHY policy<{'arm64': 'y'}> +CONFIG_USB_TEST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_TMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_TRANCEVIBRATOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_U132_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_UAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_UEAGLEATM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ULPI_BUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_USBNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_USS720 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_VIDEO_CLASS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_VL600 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_WDM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_WHCI_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_WUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_WUSB_CBAF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_WUSB_CBAF_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_XHCI_HISTB policy<{'arm64': 'n'}> +CONFIG_USB_XHCI_MTK policy<{'arm64': 'y'}> +CONFIG_USB_XHCI_MVEBU policy<{'arm64': 'n'}> +CONFIG_USB_XHCI_TEGRA policy<{'arm64': 'y'}> +CONFIG_USB_XUSBATM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_YUREX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ZD1201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ZERO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ZR364XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UV_MMTIMER policy<{'amd64': '-'}> +CONFIG_UWB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_UWB_HWA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UWB_I1480U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UWB_WHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_U_SERIAL_CONSOLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_V4L2_FLASH_LED_CLASS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_V4L_MEM2MEM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_V4L_PLATFORM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_V4L_TEST_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VCNL4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VCNL4035 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VEML6070 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VF610_ADC policy<{'arm64': '-'}> +CONFIG_VF610_DAC policy<{'arm64': '-'}> +CONFIG_VFIO policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VFIO_AMBA policy<{'arm64': '-'}> +CONFIG_VFIO_PLATFORM policy<{'arm64': 'n'}> +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET policy<{'arm64': '-'}> +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET policy<{'arm64': '-'}> +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET policy<{'arm64': '-'}> +CONFIG_VIA_RHINE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIA_RHINE_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIA_VELOCITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AD5820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AD9389B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADP1653 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7170 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7175 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7183 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7343 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7393 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV748X policy<{'arm64': '-'}> +CONFIG_VIDEO_ADV7511 policy<{'amd64': '-'}> +CONFIG_VIDEO_ADV7511_CEC policy<{'amd64': '-'}> +CONFIG_VIDEO_ADV7604 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7604_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7842 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADV7842_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AK7375 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AK881X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ALLEGRO_DVT policy<{'arm64': '-'}> +CONFIG_VIDEO_ASPEED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828_V4L2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_BCM2835 policy<{'arm64': '-'}> +CONFIG_VIDEO_BT819 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_BT848 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_BT856 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_BT866 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CADENCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CADENCE_CSI2RX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CADENCE_CSI2TX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CAFE_CCIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_COBALT policy<{'amd64': '-'}> +CONFIG_VIDEO_CODA policy<{'arm64': '-'}> +CONFIG_VIDEO_CPIA2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CROS_EC_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CS3308 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CS5345 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CS53L32A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX18 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX18_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX23885 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX25821 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX25821_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX25840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_BLACKBIRD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_ENABLE_VP3054 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DT3155 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DW9714 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DW9807_VCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_V4L2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ET8EK8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_FB_IVTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_FB_IVTV_FORCE_PAT policy<{'amd64': '-'}> +CONFIG_VIDEO_GO7007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_LOADER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_USB_S2250_BOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GS1662 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HDPVR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HEXIUM_GEMINI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HEXIUM_ORION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX214 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX258 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX274 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX319 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX355 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX_PXP policy<{'arm64': '-'}> +CONFIG_VIDEO_IPU3_CIO2 policy<{'amd64': '-'}> +CONFIG_VIDEO_IPU3_IMGU policy<{'amd64': '-'}> +CONFIG_VIDEO_IR_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IVTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IVTV_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_KS0127 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_LM3560 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_LM3646 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_M52790 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_M5MOLS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MEDIATEK_VPU policy<{'arm64': '-'}> +CONFIG_VIDEO_MEM2MEM_DEINTERLACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MESON_VDEC policy<{'arm64': '-'}> +CONFIG_VIDEO_MEYE policy<{'amd64': '-'}> +CONFIG_VIDEO_ML86V7667 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MSP3400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9M001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9M032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9M111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9P031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9T001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9T112 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MUX policy<{'arm64': '-'}> +CONFIG_VIDEO_MXB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_NOON010PC30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV13858 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2659 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2685 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5640 policy<{'arm64': '-'}> +CONFIG_VIDEO_OV5645 policy<{'arm64': '-'}> +CONFIG_VIDEO_OV5647 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5670 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5675 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5695 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV6650 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7251 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7670 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV772X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7740 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV8856 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV9640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV9650 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PCI_SKELETON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_DEBUGIFC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_SYSFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_QCOM_CAMSS policy<{'arm64': '-'}> +CONFIG_VIDEO_QCOM_VENUS policy<{'arm64': '-'}> +CONFIG_VIDEO_RCAR_CSI2 policy<{'arm64': '-'}> +CONFIG_VIDEO_RCAR_DRIF policy<{'arm64': '-'}> +CONFIG_VIDEO_RCAR_VIN policy<{'arm64': '-'}> +CONFIG_VIDEO_RENESAS_FCP policy<{'arm64': '-'}> +CONFIG_VIDEO_RENESAS_FDP1 policy<{'arm64': '-'}> +CONFIG_VIDEO_RENESAS_JPU policy<{'arm64': '-'}> +CONFIG_VIDEO_RENESAS_VSP1 policy<{'arm64': '-'}> +CONFIG_VIDEO_RJ54N1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ROCKCHIP_RGA policy<{'arm64': '-'}> +CONFIG_VIDEO_S5C73M3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K4ECGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K5BAF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K6A3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K6AA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA6588 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA6752HS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA711X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7127 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_GO7007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7164 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA717X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7185 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAMSUNG_S5P_CEC policy<{'arm64': 'm'}> +CONFIG_VIDEO_SH_VEU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SMIAPP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SOLO6X10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SONY_BTF_MPX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SR030PC30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_STK1160_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ST_MIPID02 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SUN4I_CSI policy<{'arm64': '-'}> +CONFIG_VIDEO_SUN6I_CSI policy<{'arm64': '-'}> +CONFIG_VIDEO_SUNXI policy<{'arm64': 'n'}> +CONFIG_VIDEO_TC358743 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TC358743_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TDA1997X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TDA7432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TDA9840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TEA6415C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TEA6420 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TEGRA_HDMI_CEC policy<{'arm64': 'm'}> +CONFIG_VIDEO_THS7303 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_THS8200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TLV320AIC23B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TVAUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TVP514X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TVP5150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TVP7002 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW2804 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW5864 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW68 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW686X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW9903 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW9906 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW9910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_UDA1342 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_UPD64031A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_UPD64083 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_USBTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_USBVISION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_V4L2_SUBDEV_API policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIA_CAMERA policy<{'amd64': '-'}> +CONFIG_VIDEO_VICODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIM2M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIVID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIVID_CEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VIVID_MAX_DEVS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VP27SMPX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VPX3220 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VS6624 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_WM8739 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_WM8775 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_XILINX policy<{'arm64': '-'}> +CONFIG_VIDEO_XILINX_TPG policy<{'arm64': '-'}> +CONFIG_VIDEO_XILINX_VTC policy<{'arm64': '-'}> +CONFIG_VIPERBOARD_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIRTIO_IOMMU policy<{'arm64': 'n'}> +CONFIG_VIRT_CPU_ACCOUNTING_GEN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIRT_WIFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VITESSE_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VL53L0X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VL6180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VMD policy<{'amd64': 'n'}> +CONFIG_VME_USER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VMWARE_BALLOON policy<{'amd64': '-'}> +CONFIG_VMWARE_PVSCSI policy<{'amd64': 'n'}> +CONFIG_VMWARE_VMCI policy<{'amd64': 'n'}> +CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': '-'}> +CONFIG_VMXNET3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VOP policy<{'amd64': '-'}> +CONFIG_VOP_BUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VORTEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VT6656 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VXLAN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VZ89X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_W1_CON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS1WM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS2482 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS2490 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_MATROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_MXC policy<{'arm64': '-'}> +CONFIG_W1_MASTER_SGI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2405 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2406 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2408 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2408_READBACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2413 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2423 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2431 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2433 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2433_CRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2438 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS250X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2781 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2805 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS28E04 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS28E17 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_SMEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_THERM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WCN36XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WCN36XX_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WCN36XX_SNAPDRAGON_HACKS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_ISR_COR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_HW_OOB_INTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WILCO_EC policy<{'amd64': '-'}> +CONFIG_WILCO_EC_DEBUGFS policy<{'amd64': '-'}> +CONFIG_WILCO_EC_EVENTS policy<{'amd64': '-'}> +CONFIG_WILCO_EC_TELEMETRY policy<{'amd64': '-'}> +CONFIG_WILINK_PLATFORM_DATA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIMAX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WIMAX_DEBUG_LEVEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIMAX_I2400M_DEBUG_LEVEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIMAX_I2400M_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WINBOND_840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIRELESS_WDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_ANY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_DIRECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_INDIRECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5100_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL12XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL18XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WLAN_VENDOR_ADMTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ATH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_BROADCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_CISCO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_INTERSIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_MARVELL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_MEDIATEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_QUANTENNA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_RALINK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_RSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ZYDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE_SPI policy<{'arm64': '-'}> +CONFIG_WM831X_BACKUP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WM831X_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WM8350_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WM8350_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_X86_AMD_FREQ_SENSITIVITY policy<{'amd64': 'n'}> +CONFIG_X86_P4_CLOCKMOD policy<{'amd64': 'n'}> +CONFIG_X86_UV policy<{'amd64': 'n', 'arm64': '-'}> +CONFIG_XEN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XENFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_512GB policy<{'amd64': '-'}> +CONFIG_XEN_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BALLOON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT policy<{'amd64': '-'}> +CONFIG_XEN_BLKDEV_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BLKDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_COMPAT_XENFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_DEBUG_FS policy<{'amd64': '-'}> +CONFIG_XEN_DEV_EVTCHN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_DOM0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_FBDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GNTDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GNTDEV_DMABUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GRANT_DEV_ALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GRANT_DMA_ALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_MCE_LOG policy<{'amd64': '-'}> +CONFIG_XEN_NETDEV_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_NETDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PCIDEV_BACKEND policy<{'amd64': '-'}> +CONFIG_XEN_PCIDEV_FRONTEND policy<{'amd64': '-'}> +CONFIG_XEN_PV policy<{'amd64': '-'}> +CONFIG_XEN_PVCALLS_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PVCALLS_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PVH policy<{'amd64': '-'}> +CONFIG_XEN_PVHVM policy<{'amd64': '-'}> +CONFIG_XEN_SCRUB_PAGES_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SCSI_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SCSI_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SYMS policy<{'amd64': '-'}> +CONFIG_XEN_SYS_HYPERVISOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XGENE_DMA policy<{'arm64': 'n'}> +CONFIG_XGENE_PMU policy<{'arm64': 'n'}> +CONFIG_XGENE_SLIMPRO_MBOX policy<{'arm64': 'n'}> +CONFIG_XILINX_DMA policy<{'arm64': 'n'}> +CONFIG_XILINX_GMII2RGMII policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XILINX_PR_DECOUPLER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XILINX_XADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XILINX_ZYNQMP_DMA policy<{'arm64': 'n'}> +CONFIG_XILLYBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XILLYBUS_OF policy<{'arm64': '-'}> +CONFIG_XILLYBUS_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XIL_AXIS_FIFO policy<{'arm64': 'n'}> +CONFIG_YAM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ZD1211RW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZD1211RW_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZEROPLUS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZOPT2201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZPA2326 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZX_TDM policy<{'amd64': '-', 'arm64': '-'}> diff -u linux-azure-5.4.0/debian.azure/config/config.common.ubuntu linux-azure-5.4.0/debian.azure/config/config.common.ubuntu --- linux-azure-5.4.0/debian.azure/config/config.common.ubuntu +++ linux-azure-5.4.0/debian.azure/config/config.common.ubuntu @@ -51,9 +51,11 @@ # CONFIG_ACPI_BATTERY is not set # CONFIG_ACPI_BGRT is not set CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_CCA_REQUIRED=y # CONFIG_ACPI_CMPC is not set # CONFIG_ACPI_CONFIGFS is not set CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_CPPC_CPUFREQ=m CONFIG_ACPI_CPPC_LIB=y CONFIG_ACPI_CPU_FREQ_PSS=y CONFIG_ACPI_CUSTOM_DSDT_FILE="" @@ -64,23 +66,27 @@ CONFIG_ACPI_EC_DEBUGFS=m # CONFIG_ACPI_EXTLOG is not set # CONFIG_ACPI_FAN is not set +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_GTDT=y CONFIG_ACPI_HED=y CONFIG_ACPI_HMAT=y CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_HOTPLUG_IOAPIC=y # CONFIG_ACPI_HOTPLUG_MEMORY is not set +CONFIG_ACPI_IORT=y CONFIG_ACPI_IPMI=m CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y CONFIG_ACPI_LPIT=y +CONFIG_ACPI_MCFG=y CONFIG_ACPI_NFIT=y CONFIG_ACPI_NUMA=y # CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_PPTT=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_PROCESSOR_AGGREGATOR=m CONFIG_ACPI_PROCESSOR_CSTATE=y CONFIG_ACPI_PROCESSOR_IDLE=y # CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set # CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set # CONFIG_ACPI_SBS is not set CONFIG_ACPI_SLEEP=y @@ -115,6 +121,15 @@ CONFIG_AGP_INTEL=y CONFIG_AGP_SIS=m CONFIG_AGP_VIA=y +# CONFIG_AHCI_BRCM is not set +CONFIG_AHCI_CEVA=y +# CONFIG_AHCI_IMX is not set +# CONFIG_AHCI_MTK is not set +CONFIG_AHCI_MVEBU=y +CONFIG_AHCI_QORIQ=y +# CONFIG_AHCI_SUNXI is not set +# CONFIG_AHCI_TEGRA is not set +CONFIG_AHCI_XGENE=y CONFIG_AIC79XX_CMDS_PER_DEVICE=32 # CONFIG_AIC79XX_DEBUG_ENABLE is not set CONFIG_AIC79XX_DEBUG_MASK=0 @@ -132,11 +147,14 @@ CONFIG_ALIM1535_WDT=m CONFIG_ALIM7101_WDT=m CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_ALPINE_MSI=y # CONFIG_ALTERA_MBOX is not set CONFIG_ALTERA_MSGDMA=m # CONFIG_ALTERA_PR_IP_CORE is not set # CONFIG_ALTERA_STAPL is not set # CONFIG_ALTERA_TSE is not set +# CONFIG_AL_FIC is not set +# CONFIG_AMBA_PL08X is not set CONFIG_AMD_IOMMU=y CONFIG_AMD_IOMMU_V2=m CONFIG_AMD_MEM_ENCRYPT=y @@ -147,7 +165,7 @@ CONFIG_AMIGA_PARTITION=y # CONFIG_AMILO_RFKILL is not set CONFIG_ANDROID=y -# CONFIG_ANDROID_BINDERFS is not set +CONFIG_ANDROID_BINDERFS=m CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder" CONFIG_ANDROID_BINDER_IPC=m # CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set @@ -156,8 +174,18 @@ # CONFIG_APPLE_GMUX is not set CONFIG_APPLE_PROPERTIES=y CONFIG_APPLICOM=m +# CONFIG_APQ_GCC_8084 is not set +# CONFIG_APQ_MMCC_8084 is not set CONFIG_AQTION=m # CONFIG_AQUANTIA_PHY is not set +CONFIG_ARCH_ACTIONS=y +# CONFIG_ARCH_AGILEX is not set +CONFIG_ARCH_ALPINE=y +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +# CONFIG_ARCH_BITMAIN is not set +CONFIG_ARCH_BRCMSTB=y CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_ARCH_CLOCKSOURCE_INIT=y CONFIG_ARCH_CPUIDLE_HALTPOLL=y @@ -168,12 +196,15 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_ARCH_EXYNOS=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y CONFIG_ARCH_HAS_ADD_PAGES=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y CONFIG_ARCH_HAS_FILTER_PGPROT=y @@ -182,6 +213,7 @@ CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y CONFIG_ARCH_HAS_KCOV=y +CONFIG_ARCH_HAS_KEEPINITRD=y CONFIG_ARCH_HAS_KEXEC_PURGATORY=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y CONFIG_ARCH_HAS_MEM_ENCRYPT=y @@ -189,36 +221,93 @@ CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_ARCH_HAS_REFCOUNT=y +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y CONFIG_ARCH_HAS_SET_DIRECT_MAP=y CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y CONFIG_ARCH_HAS_UACCESS_MCSAFE=y CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_ARCH_HIBERNATION_HEADER=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HISI=y +CONFIG_ARCH_INLINE_READ_LOCK=y +CONFIG_ARCH_INLINE_READ_LOCK_BH=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_READ_UNLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_SPIN_LOCK=y +CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_WRITE_LOCK=y +CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_K3=y +# CONFIG_ARCH_K3_AM6_SOC is not set +# CONFIG_ARCH_K3_J721E_SOC is not set +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MEDIATEK=y CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_MESON=y CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y CONFIG_ARCH_MMAP_RND_BITS=28 -CONFIG_ARCH_MMAP_RND_BITS_MAX=32 -CONFIG_ARCH_MMAP_RND_BITS_MIN=28 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 -CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_MXC=y CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_R8A774A1=y +CONFIG_ARCH_R8A774C0=y +# CONFIG_ARCH_R8A7795 is not set +# CONFIG_ARCH_R8A7796 is not set +CONFIG_ARCH_R8A77965=y +CONFIG_ARCH_R8A77970=y +CONFIG_ARCH_R8A77980=y +CONFIG_ARCH_R8A77990=y +CONFIG_ARCH_R8A77995=y CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_RCAR_GEN3=y +# CONFIG_ARCH_REALTEK is not set +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_ROCKCHIP=y +CONFIG_ARCH_SEATTLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPRD=y CONFIG_ARCH_STACKWALK=y +# CONFIG_ARCH_STRATIX10 is not set +CONFIG_ARCH_SUNXI=y CONFIG_ARCH_SUPPORTS_ACPI=y CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y @@ -227,6 +316,15 @@ CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_186_SOC=y +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +CONFIG_ARCH_UNIPHIER=y CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y CONFIG_ARCH_USES_PG_UNCACHED=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y @@ -234,13 +332,19 @@ CONFIG_ARCH_USE_MEMREMAP_PROT=y CONFIG_ARCH_USE_QUEUED_RWLOCKS=y CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_VEXPRESS=y CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y CONFIG_ARCH_WANTS_THP_SWAP=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_ARCH_XGENE=y +# CONFIG_ARCH_ZX is not set +CONFIG_ARCH_ZYNQMP=y CONFIG_ARCNET=m CONFIG_ARCNET_1051=m CONFIG_ARCNET_1201=m @@ -251,6 +355,118 @@ CONFIG_ARCNET_COM90xxIO=m CONFIG_ARCNET_RAW=m CONFIG_ARCNET_RIM_I=m +CONFIG_ARCX_ANYBUS_CONTROLLER=m +CONFIG_ARM64=y +# CONFIG_ARM64_16K_PAGES is not set +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_64K_PAGES is not set +# CONFIG_ARM64_ACPI_PARKING_PROTOCOL is not set +CONFIG_ARM64_CNP=y +CONFIG_ARM64_CONT_SHIFT=4 +CONFIG_ARM64_CRYPTO=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_1742098=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MODULE_PLTS=y +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_ARM64_PAN=y +CONFIG_ARM64_PA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +CONFIG_ARM64_PMEM=y +# CONFIG_ARM64_PSEUDO_NMI is not set +CONFIG_ARM64_PTDUMP_CORE=y +# CONFIG_ARM64_PTDUMP_DEBUGFS is not set +CONFIG_ARM64_PTR_AUTH=y +# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set +CONFIG_ARM64_RAS_EXTN=y +# CONFIG_ARM64_RELOC_TEST is not set +CONFIG_ARM64_SSBD=y +CONFIG_ARM64_SVE=y +# CONFIG_ARM64_SW_TTBR0_PAN is not set +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_ARM64_UAO=y +CONFIG_ARM64_VA_BITS=48 +# CONFIG_ARM64_VA_BITS_39 is not set +CONFIG_ARM64_VA_BITS_48=y +CONFIG_ARM64_VHE=y +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARMADA_37XX_CLK=y +# CONFIG_ARMADA_37XX_RWTM_MBOX is not set +# CONFIG_ARMADA_37XX_WATCHDOG is not set +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_ARMADA_THERMAL=y +CONFIG_ARMV8_DEPRECATED=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +CONFIG_ARM_AMBA=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_ARM_ARMADA_37XX_CPUFREQ=y +# CONFIG_ARM_ARMADA_8K_CPUFREQ is not set +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=y +# CONFIG_ARM_CCI_PMU is not set +# CONFIG_ARM_CCN is not set +CONFIG_ARM_CPUIDLE=y +# CONFIG_ARM_DSU_PMU is not set +# CONFIG_ARM_EXYNOS_BUS_DEVFREQ is not set +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_IMX_CPUFREQ_DT=m +# CONFIG_ARM_MEDIATEK_CPUFREQ is not set +CONFIG_ARM_MHU=y +# CONFIG_ARM_PL172_MPMC is not set +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_FW=y +CONFIG_ARM_QCOM_CPUFREQ_HW=y +CONFIG_ARM_QCOM_CPUFREQ_NVMEM=y +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +# CONFIG_ARM_RK3399_DMC_DEVFREQ is not set +CONFIG_ARM_SBSA_WATCHDOG=y +CONFIG_ARM_SCMI_CPUFREQ=y +CONFIG_ARM_SCMI_POWER_DOMAIN=y +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCPI_CPUFREQ=y +CONFIG_ARM_SCPI_POWER_DOMAIN=y +CONFIG_ARM_SCPI_PROTOCOL=y +# CONFIG_ARM_SDE_INTERFACE is not set +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SMMU_V3_PMU=m +CONFIG_ARM_SP805_WATCHDOG=y +# CONFIG_ARM_SPE_PMU is not set +CONFIG_ARM_TEGRA124_CPUFREQ=y +CONFIG_ARM_TEGRA186_CPUFREQ=y +CONFIG_ARM_TEGRA20_CPUFREQ=y +# CONFIG_ARM_TEGRA_DEVFREQ is not set +CONFIG_ARM_TIMER_SP804=y CONFIG_ASHMEM=m CONFIG_ASM_MODVERSIONS=y CONFIG_ASN1=y @@ -264,7 +480,10 @@ CONFIG_ASYNC_MEMCPY=m CONFIG_ASYNC_PQ=m CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y CONFIG_ASYNC_TX_DMA=y +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y CONFIG_ASYNC_XOR=m # CONFIG_AT803X_PHY is not set CONFIG_ATA=y @@ -318,6 +537,9 @@ CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_AUDIT_ARCH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +CONFIG_AUDIT_GENERIC=y CONFIG_AUFS_BDEV_LOOP=y # CONFIG_AUFS_BRANCH_MAX_1023 is not set CONFIG_AUFS_BRANCH_MAX_127=y @@ -343,6 +565,7 @@ CONFIG_AX25=m CONFIG_AX25_DAMA_SLAVE=y CONFIG_AX88796B_PHY=m +# CONFIG_AXI_DMAC is not set CONFIG_B44=m CONFIG_B44_PCI=y CONFIG_B44_PCICORE_AUTOSELECT=y @@ -368,6 +591,7 @@ # CONFIG_BACKLIGHT_PM8941_WLED is not set # CONFIG_BACKLIGHT_SAHARA is not set # CONFIG_BACKLIGHT_SKY81452 is not set +CONFIG_BACKLIGHT_TPS65217=m # CONFIG_BACKLIGHT_WM831X is not set CONFIG_BALLOON_COMPACTION=y CONFIG_BASE_FULL=y @@ -398,6 +622,13 @@ CONFIG_BCACHE=m # CONFIG_BCACHE_CLOSURES_DEBUG is not set # CONFIG_BCACHE_DEBUG is not set +CONFIG_BCM2835_MBOX=y +CONFIG_BCM2835_POWER=y +CONFIG_BCM2835_THERMAL=m +# CONFIG_BCM2835_VCHIQ is not set +CONFIG_BCM2835_WDT=y +CONFIG_BCM7038_L1_IRQ=y +# CONFIG_BCM7038_WDT is not set CONFIG_BCM7XXX_PHY=m # CONFIG_BCM87XX_PHY is not set CONFIG_BCMA=m @@ -411,8 +642,15 @@ CONFIG_BCMA_POSSIBLE=y CONFIG_BCMA_SFLASH=y CONFIG_BCMGENET=m +# CONFIG_BCM_CYGNUS_PHY is not set +CONFIG_BCM_FLEXRM_MBOX=m # CONFIG_BCM_KONA_USB2_PHY is not set CONFIG_BCM_NET_PHYLIB=m +CONFIG_BCM_NS_THERMAL=y +# CONFIG_BCM_PDC_MBOX is not set +CONFIG_BCM_SBA_RAID=m +CONFIG_BCM_SR_THERMAL=y +CONFIG_BCM_VIDEOCORE=y CONFIG_BE2ISCSI=m CONFIG_BE2NET=m CONFIG_BE2NET_BE2=y @@ -425,6 +663,8 @@ # CONFIG_BFQ_CGROUP_DEBUG is not set CONFIG_BFQ_GROUP_IOSCHED=y CONFIG_BFS_FS=m +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y CONFIG_BIG_KEYS=y CONFIG_BINARY_PRINTF=y CONFIG_BINFMT_ELF=y @@ -509,9 +749,14 @@ CONFIG_BPF_KPROBE_OVERRIDE=y CONFIG_BPF_STREAM_PARSER=y CONFIG_BPF_SYSCALL=y +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y # CONFIG_BPQETHER is not set CONFIG_BQL=y CONFIG_BRANCH_PROFILE_NONE=y +CONFIG_BRCMSTB_GISB_ARB=y +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_BRCMSTB_PM=y +CONFIG_BRCMSTB_THERMAL=m CONFIG_BRIDGE=m CONFIG_BRIDGE_EBT_802_3=m CONFIG_BRIDGE_EBT_AMONG=m @@ -585,6 +830,8 @@ # CONFIG_CAN_EMS_USB is not set # CONFIG_CAN_ESD_USB2 is not set CONFIG_CAN_F81601=m +CONFIG_CAN_FLEXCAN=m +# CONFIG_CAN_GRCAN is not set # CONFIG_CAN_GS_USB is not set CONFIG_CAN_GW=m CONFIG_CAN_HI311X=m @@ -603,6 +850,8 @@ # CONFIG_CAN_PEAK_USB is not set CONFIG_CAN_PLX_PCI=m CONFIG_CAN_RAW=m +CONFIG_CAN_RCAR=m +CONFIG_CAN_RCAR_CANFD=m CONFIG_CAN_SJA1000=m CONFIG_CAN_SJA1000_ISA=m CONFIG_CAN_SJA1000_PLATFORM=m @@ -611,8 +860,16 @@ # CONFIG_CAN_UCAN is not set CONFIG_CAN_VCAN=m CONFIG_CAN_VXCAN=m +# CONFIG_CAN_XILINXCAN is not set CONFIG_CARDBUS=y CONFIG_CATAPULT_PCI=m +# CONFIG_CAVIUM_CPT is not set +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_TX2_ERRATUM_219=y # CONFIG_CB710_CORE is not set CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y @@ -621,6 +878,7 @@ CONFIG_CC_HAS_SANCOV_TRACE_PC=y CONFIG_CC_HAS_SANE_STACKPROTECTOR=y CONFIG_CC_HAS_STACKPROTECTOR_NONE=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y CONFIG_CC_IS_GCC=y CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set @@ -667,10 +925,13 @@ CONFIG_CGROUP_WRITEBACK=y CONFIG_CHARGER_ADP5061=m # CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24190 is not set # CONFIG_CHARGER_BQ24257 is not set # CONFIG_CHARGER_BQ24735 is not set # CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set # CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_ISP1704 is not set # CONFIG_CHARGER_LP8727 is not set CONFIG_CHARGER_LT3651=m # CONFIG_CHARGER_MANAGER is not set @@ -681,6 +942,8 @@ # CONFIG_CHARGER_RT9455 is not set # CONFIG_CHARGER_SBS is not set # CONFIG_CHARGER_SMB347 is not set +CONFIG_CHARGER_TPS65217=m +# CONFIG_CHARGER_UCS1002 is not set CONFIG_CHARLCD=m CONFIG_CHARLCD_BL_FLASH=y # CONFIG_CHARLCD_BL_OFF is not set @@ -717,9 +980,48 @@ CONFIG_CLKBLD_I8253=y CONFIG_CLKDEV_LOOKUP=y CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_CLK_ACTIONS=y +CONFIG_CLK_BCM2835=y +CONFIG_CLK_BCM_NS2=y +CONFIG_CLK_BCM_SR=y +# CONFIG_CLK_HSDK is not set +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_CLK_OWL_S500=y +CONFIG_CLK_OWL_S700=y +CONFIG_CLK_OWL_S900=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_R8A774A1=y +CONFIG_CLK_R8A774C0=y +CONFIG_CLK_R8A77965=y +CONFIG_CLK_R8A77970=y +CONFIG_CLK_R8A77980=y +CONFIG_CLK_R8A77990=y +CONFIG_CLK_R8A77995=y +# CONFIG_CLK_R9A06G032 is not set +CONFIG_CLK_RASPBERRYPI=m +CONFIG_CLK_RCAR_GEN3_CPG=y +CONFIG_CLK_RCAR_USB2_CLOCK_SEL=y +CONFIG_CLK_RENESAS=y +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_DIV6=y +# CONFIG_CLK_SP810 is not set +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_CLK_UNIPHIER=y +CONFIG_CLK_VEXPRESS_OSC=y CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y CONFIG_CLOCKSOURCE_WATCHDOG=y # CONFIG_CLOCK_THERMAL is not set +CONFIG_CLONE_BACKWARDS=y CONFIG_CLS_U32_MARK=y # CONFIG_CLS_U32_PERF is not set CONFIG_CLZ_TAB=y @@ -727,19 +1029,101 @@ CONFIG_CMA_AREAS=7 # CONFIG_CMA_DEBUG is not set # CONFIG_CMA_DEBUGFS is not set +CONFIG_CMDLINE="" # CONFIG_CMDLINE_BOOL is not set +# CONFIG_CMDLINE_FORCE is not set CONFIG_CMDLINE_PARTITION=y CONFIG_CNIC=m CONFIG_CODA_FS=m # CONFIG_COMEDI is not set CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXG_AUDIO=m # CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +CONFIG_COMMON_CLK_G12A=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_HI3516CV300=y +CONFIG_COMMON_CLK_HI3519=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=y +CONFIG_COMMON_CLK_HI6220=y +CONFIG_COMMON_CLK_HI655X=y +CONFIG_COMMON_CLK_IPROC=y CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_MEDIATEK=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +CONFIG_COMMON_CLK_MT2712=y +# CONFIG_COMMON_CLK_MT2712_BDPSYS is not set +# CONFIG_COMMON_CLK_MT2712_IMGSYS is not set +# CONFIG_COMMON_CLK_MT2712_JPGDECSYS is not set +# CONFIG_COMMON_CLK_MT2712_MFGCFG is not set +# CONFIG_COMMON_CLK_MT2712_MMSYS is not set +# CONFIG_COMMON_CLK_MT2712_VDECSYS is not set +# CONFIG_COMMON_CLK_MT2712_VENCSYS is not set +CONFIG_COMMON_CLK_MT6779=y +# CONFIG_COMMON_CLK_MT6779_AUDSYS is not set +# CONFIG_COMMON_CLK_MT6779_CAMSYS is not set +# CONFIG_COMMON_CLK_MT6779_IMGSYS is not set +# CONFIG_COMMON_CLK_MT6779_IPESYS is not set +# CONFIG_COMMON_CLK_MT6779_MFGCFG is not set +# CONFIG_COMMON_CLK_MT6779_MMSYS is not set +# CONFIG_COMMON_CLK_MT6779_VDECSYS is not set +# CONFIG_COMMON_CLK_MT6779_VENCSYS is not set +CONFIG_COMMON_CLK_MT6797=y +# CONFIG_COMMON_CLK_MT6797_IMGSYS is not set +# CONFIG_COMMON_CLK_MT6797_MMSYS is not set +# CONFIG_COMMON_CLK_MT6797_VDECSYS is not set +# CONFIG_COMMON_CLK_MT6797_VENCSYS is not set +CONFIG_COMMON_CLK_MT7622=y +# CONFIG_COMMON_CLK_MT7622_AUDSYS is not set +# CONFIG_COMMON_CLK_MT7622_ETHSYS is not set +# CONFIG_COMMON_CLK_MT7622_HIFSYS is not set +CONFIG_COMMON_CLK_MT8173=y +CONFIG_COMMON_CLK_MT8183=y +CONFIG_COMMON_CLK_MT8183_AUDIOSYS=y +CONFIG_COMMON_CLK_MT8183_CAMSYS=y +CONFIG_COMMON_CLK_MT8183_IMGSYS=y +CONFIG_COMMON_CLK_MT8183_IPU_ADL=y +CONFIG_COMMON_CLK_MT8183_IPU_CONN=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE0=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE1=y +CONFIG_COMMON_CLK_MT8183_MFGCFG=y +CONFIG_COMMON_CLK_MT8183_MMSYS=y +CONFIG_COMMON_CLK_MT8183_VDECSYS=y +CONFIG_COMMON_CLK_MT8183_VENCSYS=y +CONFIG_COMMON_CLK_MT8516=y +# CONFIG_COMMON_CLK_MT8516_AUDSYS is not set +CONFIG_COMMON_CLK_QCOM=y +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_COMMON_CLK_SCMI=y +CONFIG_COMMON_CLK_SCPI=y +# CONFIG_COMMON_CLK_SI514 is not set CONFIG_COMMON_CLK_SI5341=m # CONFIG_COMMON_CLK_SI5351 is not set CONFIG_COMMON_CLK_SI544=m +# CONFIG_COMMON_CLK_SI570 is not set +CONFIG_COMMON_CLK_VC5=m +CONFIG_COMMON_CLK_VERSATILE=y # CONFIG_COMMON_CLK_WM831X is not set +CONFIG_COMMON_CLK_XGENE=y +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +CONFIG_COMMON_CLK_ZYNQMP=y +CONFIG_COMMON_RESET_HI3660=y +CONFIG_COMMON_RESET_HI6220=y CONFIG_COMPACTION=y # CONFIG_COMPAL_LAPTOP is not set CONFIG_COMPAT=y @@ -767,13 +1151,18 @@ CONFIG_COPS_TANGENT=y CONFIG_CORDIC=m CONFIG_COREDUMP=y +# CONFIG_CORESIGHT is not set CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y CONFIG_CORTINA_PHY=m CONFIG_COUNTER=m +CONFIG_CP15_BARRIER_EMULATION=y # CONFIG_CPA_DEBUG is not set CONFIG_CPU5_WDT=m +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y CONFIG_CPUMASK_OFFSTACK=y CONFIG_CPUSETS=y +# CONFIG_CPU_BIG_ENDIAN is not set CONFIG_CPU_FREQ=y # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set @@ -796,13 +1185,16 @@ CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y CONFIG_CPU_ISOLATION=y +CONFIG_CPU_PM=y CONFIG_CPU_RMAP=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_HYGON=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_THERMAL=y CONFIG_CRAMFS=m CONFIG_CRAMFS_BLOCKDEV=y CONFIG_CRASH_CORE=y @@ -830,7 +1222,14 @@ CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_AEGIS128=m CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=m +CONFIG_CRYPTO_AEGIS128_SIMD=y CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_ARM64=y +CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_CE=y +CONFIG_CRYPTO_AES_ARM64_CE_BLK=y +CONFIG_CRYPTO_AES_ARM64_CE_CCM=y +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m CONFIG_CRYPTO_AES_NI_INTEL=m # CONFIG_CRYPTO_AES_TI is not set CONFIG_CRYPTO_AKCIPHER=y @@ -860,6 +1259,7 @@ CONFIG_CRYPTO_CFB=m CONFIG_CRYPTO_CHACHA20=m CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CHACHA20_NEON=m CONFIG_CRYPTO_CHACHA20_X86_64=m CONFIG_CRYPTO_CMAC=m CONFIG_CRYPTO_CRC32=m @@ -867,8 +1267,8 @@ CONFIG_CRYPTO_CRC32C_INTEL=y CONFIG_CRYPTO_CRC32_PCLMUL=m CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m -CONFIG_CRYPTO_CRYPTD=m CONFIG_CRYPTO_CTR=y CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_DEFLATE=y @@ -877,12 +1277,37 @@ CONFIG_CRYPTO_DEV_ATMEL_ECC=m CONFIG_CRYPTO_DEV_ATMEL_I2C=m CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_BCM_SPU=m +# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set CONFIG_CRYPTO_DEV_CCP=y CONFIG_CRYPTO_DEV_CCP_CRYPTO=m CONFIG_CRYPTO_DEV_CCP_DD=m # CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_CCREE=m CONFIG_CRYPTO_DEV_CHELSIO=m CONFIG_CRYPTO_DEV_CHELSIO_TLS=m +# CONFIG_CRYPTO_DEV_EXYNOS_RNG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +# CONFIG_CRYPTO_DEV_FSL_CAAM_INTC is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=m +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=m +CONFIG_CRYPTO_DEV_HISI_HPRE=m +CONFIG_CRYPTO_DEV_HISI_QM=m +# CONFIG_CRYPTO_DEV_HISI_SEC is not set +CONFIG_CRYPTO_DEV_HISI_SEC2=m +CONFIG_CRYPTO_DEV_HISI_ZIP=m +# CONFIG_CRYPTO_DEV_MARVELL_CESA is not set +# CONFIG_CRYPTO_DEV_MXS_DCP is not set CONFIG_CRYPTO_DEV_NITROX=m CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m CONFIG_CRYPTO_DEV_PADLOCK=y @@ -895,7 +1320,12 @@ # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set CONFIG_CRYPTO_DEV_QAT_DH895xCC=m CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +# CONFIG_CRYPTO_DEV_QCE is not set +CONFIG_CRYPTO_DEV_QCOM_RNG=m +# CONFIG_CRYPTO_DEV_ROCKCHIP is not set +# CONFIG_CRYPTO_DEV_S5P is not set CONFIG_CRYPTO_DEV_SAFEXCEL=m +# CONFIG_CRYPTO_DEV_SAHARA is not set CONFIG_CRYPTO_DEV_SP_CCP=y CONFIG_CRYPTO_DEV_SP_PSP=y CONFIG_CRYPTO_DEV_VIRTIO=m @@ -916,6 +1346,7 @@ CONFIG_CRYPTO_GCM=y CONFIG_CRYPTO_GF128MUL=y CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_GHASH_ARM64_CE=y CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m CONFIG_CRYPTO_GLUE_HELPER_X86=m CONFIG_CRYPTO_HASH=y @@ -944,6 +1375,7 @@ CONFIG_CRYPTO_MICHAEL_MIC=m CONFIG_CRYPTO_NHPOLY1305=m CONFIG_CRYPTO_NHPOLY1305_AVX2=m +# CONFIG_CRYPTO_NHPOLY1305_NEON is not set CONFIG_CRYPTO_NHPOLY1305_SSE2=m CONFIG_CRYPTO_NULL=y CONFIG_CRYPTO_NULL2=y @@ -968,15 +1400,22 @@ CONFIG_CRYPTO_SERPENT_AVX_X86_64=m CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_ARM64_CE=y CONFIG_CRYPTO_SHA1_SSSE3=m CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA256_ARM64=y CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA2_ARM64_CE=y CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SHA3_ARM64=m CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA512_ARM64_CE=m CONFIG_CRYPTO_SHA512_SSSE3=m -CONFIG_CRYPTO_SIMD=m CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_SM3_ARM64_CE=m CONFIG_CRYPTO_SM4=m +# CONFIG_CRYPTO_SM4_ARM64_CE is not set CONFIG_CRYPTO_STATS=y CONFIG_CRYPTO_STREEBOG=m CONFIG_CRYPTO_TEA=m @@ -1015,6 +1454,7 @@ CONFIG_DCACHE_WORD_ACCESS=y CONFIG_DCB=y # CONFIG_DCDBAS is not set +# CONFIG_DEBUG_ALIGN_RODATA is not set # CONFIG_DEBUG_ATOMIC_SLEEP is not set # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set # CONFIG_DEBUG_BOOT_PARAMS is not set @@ -1022,13 +1462,14 @@ # CONFIG_DEBUG_CREDENTIALS is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_EFI is not set # CONFIG_DEBUG_ENTRY is not set # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set CONFIG_DEBUG_FS=y # CONFIG_DEBUG_GPIO is not set # CONFIG_DEBUG_HOTPLUG_CPU0 is not set CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_DEBUG_INFO_BTF=y CONFIG_DEBUG_INFO_DWARF4=y # CONFIG_DEBUG_INFO_REDUCED is not set # CONFIG_DEBUG_INFO_SPLIT is not set @@ -1080,7 +1521,6 @@ CONFIG_DEFAULT_CUBIC=y CONFIG_DEFAULT_HOSTNAME="(none)" CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 -CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 # CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_SECURITY_APPARMOR=y # CONFIG_DEFAULT_SECURITY_DAC is not set @@ -1103,6 +1543,9 @@ CONFIG_DELL_WMI_DESCRIPTOR=m CONFIG_DELL_WMI_LED=m CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP=m +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU=m +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI=m CONFIG_DEVFREQ_GOV_PASSIVE=y CONFIG_DEVFREQ_GOV_PERFORMANCE=y CONFIG_DEVFREQ_GOV_POWERSAVE=y @@ -1116,6 +1559,7 @@ CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_DEV_APPLETALK=m +CONFIG_DEV_COREDUMP=y CONFIG_DEV_DAX=y CONFIG_DEV_DAX_KMEM=m CONFIG_DEV_DAX_PMEM=y @@ -1133,12 +1577,17 @@ # CONFIG_DMATEST is not set CONFIG_DMA_ACPI=y # CONFIG_DMA_API_DEBUG is not set +CONFIG_DMA_BCM2835=y # CONFIG_DMA_CMA is not set +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_DMA_DIRECT_REMAP=y CONFIG_DMA_ENGINE=y CONFIG_DMA_ENGINE_RAID=y # CONFIG_DMA_FENCE_TRACE is not set +CONFIG_DMA_OF=y +CONFIG_DMA_REMAP=y CONFIG_DMA_SHARED_BUFFER=y -CONFIG_DMA_VIRTUAL_CHANNELS=m +CONFIG_DMA_SUN6I=m CONFIG_DMA_VIRT_OPS=y CONFIG_DMI=y CONFIG_DMIID=y @@ -1185,6 +1634,8 @@ # CONFIG_DP83848_PHY is not set # CONFIG_DP83867_PHY is not set CONFIG_DP83TC811_PHY=m +CONFIG_DPAA2_CONSOLE=y +CONFIG_DPAA_ERRATUM_A050385=y # CONFIG_DPM_WATCHDOG is not set CONFIG_DPTF_POWER=m CONFIG_DQL=y @@ -1202,22 +1653,52 @@ CONFIG_DRM_AMD_DC_DCN2_1=y CONFIG_DRM_AMD_DC_DSC_SUPPORT=y # CONFIG_DRM_ANALOGIX_ANX78XX is not set +CONFIG_DRM_ANALOGIX_DP=m +# CONFIG_DRM_ARCPGU is not set CONFIG_DRM_AST=m # CONFIG_DRM_BOCHS is not set CONFIG_DRM_BRIDGE=y +# CONFIG_DRM_CDNS_DSI is not set # CONFIG_DRM_CIRRUS_QEMU is not set # CONFIG_DRM_DEBUG_SELFTEST is not set CONFIG_DRM_DP_AUX_CHARDEV=y CONFIG_DRM_DP_CEC=y +# CONFIG_DRM_DUMB_VGA_DAC is not set +CONFIG_DRM_DW_HDMI=m +CONFIG_DRM_DW_HDMI_CEC=m +CONFIG_DRM_DW_MIPI_DSI=m # CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_EXYNOS=m +CONFIG_DRM_EXYNOS5433_DECON=y +CONFIG_DRM_EXYNOS7_DECON=y +# CONFIG_DRM_EXYNOS_DP is not set +CONFIG_DRM_EXYNOS_DSI=y +# CONFIG_DRM_EXYNOS_FIMC is not set +# CONFIG_DRM_EXYNOS_FIMD is not set +# CONFIG_DRM_EXYNOS_G2D is not set +CONFIG_DRM_EXYNOS_GSC=y +CONFIG_DRM_EXYNOS_HDMI=y +CONFIG_DRM_EXYNOS_IPP=y +CONFIG_DRM_EXYNOS_MIC=y +# CONFIG_DRM_EXYNOS_MIXER is not set +# CONFIG_DRM_EXYNOS_ROTATOR is not set +# CONFIG_DRM_EXYNOS_SCALER is not set +# CONFIG_DRM_EXYNOS_VIDI is not set CONFIG_DRM_FBDEV_EMULATION=y # CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set CONFIG_DRM_FBDEV_OVERALLOC=100 CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y # CONFIG_DRM_GM12U320 is not set CONFIG_DRM_GMA3600=y CONFIG_DRM_GMA500=m CONFIG_DRM_GMA600=y +# CONFIG_DRM_HDLCD is not set +CONFIG_DRM_HISI_HIBMC=m +CONFIG_DRM_HISI_KIRIN=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_I2C_ADV7533=y # CONFIG_DRM_I2C_CH7006 is not set CONFIG_DRM_I2C_NXP_TDA9950=m # CONFIG_DRM_I2C_NXP_TDA998X is not set @@ -1231,7 +1712,7 @@ # CONFIG_DRM_I915_DEBUG_MMIO is not set # CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set # CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set -CONFIG_DRM_I915_FORCE_PROBE="\"\"" +CONFIG_DRM_I915_FORCE_PROBE="" CONFIG_DRM_I915_GVT=y # CONFIG_DRM_I915_GVT_KVMGT is not set # CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set @@ -1245,20 +1726,109 @@ CONFIG_DRM_KMS_CMA_HELPER=y CONFIG_DRM_KMS_FB_HELPER=y CONFIG_DRM_KMS_HELPER=m +# CONFIG_DRM_KOMEDA is not set # CONFIG_DRM_LEGACY is not set +CONFIG_DRM_LIMA=m CONFIG_DRM_LOAD_EDID_FIRMWARE=y +# CONFIG_DRM_LVDS_ENCODER is not set +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_HDMI=m +# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +CONFIG_DRM_MESON=m +CONFIG_DRM_MESON_DW_HDMI=m # CONFIG_DRM_MGAG200 is not set CONFIG_DRM_MIPI_DBI=m CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_PLL=y +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI_HDCP=y +# CONFIG_DRM_MSM_REGISTER_LOGGING is not set +CONFIG_DRM_MXS=y +CONFIG_DRM_MXSFB=m # CONFIG_DRM_NOUVEAU is not set +# CONFIG_DRM_NXP_PTN3460 is not set CONFIG_DRM_PANEL=y +# CONFIG_DRM_PANEL_ARM_VERSATILE is not set CONFIG_DRM_PANEL_BRIDGE=y -CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m +# CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set +# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set +# CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set +# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set +# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set +# CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set +# CONFIG_DRM_PANEL_LG_LB035Q02 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +CONFIG_DRM_PANEL_LVDS=m +# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set +# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set +# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +# CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set +# CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS is not set +# CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m +CONFIG_DRM_PANEL_RAYDIUM_RM67191=m +# CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set +# CONFIG_DRM_PANEL_ROCKTECH_JH057N00900 is not set +# CONFIG_DRM_PANEL_RONBO_RB070D30 is not set +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set +# CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 is not set +# CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set +# CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set +CONFIG_DRM_PANEL_SIMPLE=m +# CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set +# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set +# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set +# CONFIG_DRM_PANEL_TPO_TPG110 is not set +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA=m +CONFIG_DRM_PANFROST=m +# CONFIG_DRM_PARADE_PS8622 is not set +CONFIG_DRM_PL111=m CONFIG_DRM_QXL=m CONFIG_DRM_RADEON=m # CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_RCAR_DU=m +CONFIG_DRM_RCAR_DW_HDMI=m +CONFIG_DRM_RCAR_LVDS=m +CONFIG_DRM_RCAR_WRITEBACK=y +CONFIG_DRM_ROCKCHIP=m CONFIG_DRM_SCHED=m +CONFIG_DRM_SII902X=m +# CONFIG_DRM_SII9234 is not set +# CONFIG_DRM_SIL_SII8620 is not set +CONFIG_DRM_SUN4I=m +CONFIG_DRM_SUN4I_BACKEND=m +CONFIG_DRM_SUN4I_HDMI=m +# CONFIG_DRM_SUN4I_HDMI_CEC is not set +CONFIG_DRM_SUN6I_DSI=m +CONFIG_DRM_SUN8I_DW_HDMI=m +CONFIG_DRM_SUN8I_MIXER=m +CONFIG_DRM_SUN8I_TCON_TOP=m +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +# CONFIG_DRM_TEGRA_STAGING is not set +CONFIG_DRM_THINE_THC63LVD1024=m +CONFIG_DRM_TI_SN65DSI86=m +# CONFIG_DRM_TI_TFP410 is not set +# CONFIG_DRM_TOSHIBA_TC358764 is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set CONFIG_DRM_TTM=m # CONFIG_DRM_UDL is not set CONFIG_DRM_VBOXVIDEO=m @@ -1269,6 +1839,8 @@ CONFIG_DRM_VRAM_HELPER=m CONFIG_DS1682=m CONFIG_DST_CACHE=y +CONFIG_DTC=y +CONFIG_DT_IDLE_STATES=y CONFIG_DUMMY=m CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 @@ -1276,6 +1848,10 @@ CONFIG_DUMMY_IRQ=m CONFIG_DWC_XLGMAC=m CONFIG_DWC_XLGMAC_PCI=m +CONFIG_DW_APB_ICTL=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +# CONFIG_DW_AXI_DMAC is not set # CONFIG_DW_DMAC is not set CONFIG_DW_DMAC_CORE=m CONFIG_DW_DMAC_PCI=m @@ -1305,6 +1881,7 @@ CONFIG_EDAC_AMD64=m # CONFIG_EDAC_AMD64_ERROR_INJECTION is not set CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_BLUEFIELD=m # CONFIG_EDAC_DEBUG is not set CONFIG_EDAC_DECODE_MCE=y CONFIG_EDAC_E752X=m @@ -1318,12 +1895,16 @@ CONFIG_EDAC_I7CORE=m CONFIG_EDAC_I82975X=m CONFIG_EDAC_IE31200=m +CONFIG_EDAC_LAYERSCAPE=m # CONFIG_EDAC_LEGACY_SYSFS is not set CONFIG_EDAC_PND2=m CONFIG_EDAC_SBRIDGE=m CONFIG_EDAC_SKX=m CONFIG_EDAC_SUPPORT=y +# CONFIG_EDAC_SYNOPSYS is not set +# CONFIG_EDAC_THUNDERX is not set CONFIG_EDAC_X38=m +# CONFIG_EDAC_XGENE is not set CONFIG_EDD=y CONFIG_EDD_OFF=y # CONFIG_EEEPC_LAPTOP is not set @@ -1337,6 +1918,8 @@ # CONFIG_EEPROM_MAX6875 is not set CONFIG_EFI=y CONFIG_EFIVAR_FS=y +CONFIG_EFI_ARMSTUB=y +CONFIG_EFI_ARMSTUB_DTB_LOADER=y CONFIG_EFI_BOOTLOADER_CONTROL=m CONFIG_EFI_CAPSULE_LOADER=m CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y @@ -1345,6 +1928,7 @@ CONFIG_EFI_ESRT=y # CONFIG_EFI_FAKE_MEMMAP is not set CONFIG_EFI_MIXED=y +CONFIG_EFI_PARAMS_FROM_FDT=y CONFIG_EFI_PARTITION=y # CONFIG_EFI_PGT_DUMP is not set CONFIG_EFI_RCI2_TABLE=y @@ -1356,6 +1940,7 @@ CONFIG_EFI_VARS_PSTORE=m # CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set CONFIG_EFS_FS=m +CONFIG_EINT_MTK=y CONFIG_EISA=y CONFIG_EISA_NAMES=y CONFIG_EISA_PCI_EISA=y @@ -1408,8 +1993,24 @@ CONFIG_EXT4_FS_POSIX_ACL=y CONFIG_EXT4_FS_SECURITY=y CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXTCON is not set +# CONFIG_EXTCON_FSA9480 is not set +# CONFIG_EXTCON_GPIO is not set +CONFIG_EXTCON_MAX14577=m +# CONFIG_EXTCON_MAX3355 is not set +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_PTN5150=m +# CONFIG_EXTCON_QCOM_SPMI_MISC is not set +# CONFIG_EXTCON_RT8973A is not set +# CONFIG_EXTCON_SM5502 is not set +CONFIG_EXTCON_USB_GPIO=y CONFIG_EXTRA_FIRMWARE="" +CONFIG_EXYNOS_ARM64_COMMON_CLK=y +CONFIG_EXYNOS_AUDSS_CLK_CON=y +CONFIG_EXYNOS_CHIPID=y +# CONFIG_EXYNOS_IOMMU is not set +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_EXYNOS_THERMAL=y CONFIG_EZX_PCAP=y # CONFIG_F2FS_CHECK_FS is not set # CONFIG_F2FS_FAULT_INJECTION is not set @@ -1434,25 +2035,28 @@ # CONFIG_FB_3DFX is not set # CONFIG_FB_ARC is not set # CONFIG_FB_ARK is not set +# CONFIG_FB_ARMCLCD is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_ATY is not set # CONFIG_FB_ATY128 is not set +CONFIG_FB_BACKLIGHT=m # CONFIG_FB_CARMINE is not set -CONFIG_FB_CFB_COPYAREA=m -CONFIG_FB_CFB_FILLRECT=m -CONFIG_FB_CFB_IMAGEBLIT=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CIRRUS is not set CONFIG_FB_CMDLINE=y # CONFIG_FB_CYBER2000 is not set CONFIG_FB_DDC=m CONFIG_FB_DEFERRED_IO=y -# CONFIG_FB_EFI is not set +CONFIG_FB_EFI=y # CONFIG_FB_FOREIGN_ENDIAN is not set # CONFIG_FB_HGA is not set CONFIG_FB_HYPERV=m # CONFIG_FB_I740 is not set # CONFIG_FB_IBM_GXT4500 is not set # CONFIG_FB_IMSTT is not set +# CONFIG_FB_IMX is not set CONFIG_FB_INTEL=m # CONFIG_FB_INTEL_DEBUG is not set CONFIG_FB_INTEL_I2C=y @@ -1462,6 +2066,7 @@ # CONFIG_FB_MB862XX is not set # CONFIG_FB_METRONOME is not set CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_MX3=y # CONFIG_FB_N411 is not set # CONFIG_FB_NEOMAGIC is not set CONFIG_FB_NOTIFY=y @@ -1474,16 +2079,19 @@ # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SH_MOBILE_LCDC is not set # CONFIG_FB_SIMPLE is not set # CONFIG_FB_SIS is not set CONFIG_FB_SM501=m # CONFIG_FB_SM712 is not set CONFIG_FB_SM750=m # CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_SSD1307 is not set CONFIG_FB_SYS_COPYAREA=m CONFIG_FB_SYS_FILLRECT=m CONFIG_FB_SYS_FOPS=m CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_TFT is not set CONFIG_FB_TILEBLITTING=y # CONFIG_FB_TRIDENT is not set # CONFIG_FB_UDL is not set @@ -1496,8 +2104,10 @@ # CONFIG_FB_VIRTUAL is not set # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set +# CONFIG_FB_XILINX is not set CONFIG_FDDI=y CONFIG_FEALNX=m +CONFIG_FEC=y CONFIG_FHANDLE=y CONFIG_FIB_RULES=y CONFIG_FIELDBUS_DEV=m @@ -1513,14 +2123,17 @@ CONFIG_FONT_8x16=y CONFIG_FONT_8x8=y CONFIG_FONT_SUPPORT=y +CONFIG_FORCE_MAX_ZONEORDER=13 CONFIG_FORTIFY_SOURCE=y CONFIG_FPGA=m # CONFIG_FPGA_BRIDGE is not set # CONFIG_FPGA_DFL is not set # CONFIG_FPGA_MGR_ALTERA_CVP is not set # CONFIG_FPGA_MGR_ALTERA_PS_SPI is not set +# CONFIG_FPGA_MGR_ICE40_SPI is not set # CONFIG_FPGA_MGR_MACHXO2_SPI is not set CONFIG_FPGA_MGR_XILINX_SPI=m +# CONFIG_FPGA_MGR_ZYNQMP_FPGA is not set CONFIG_FRAMEBUFFER_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y @@ -1535,6 +2148,30 @@ # CONFIG_FSCACHE_HISTOGRAM is not set # CONFIG_FSCACHE_OBJECT_LIST is not set CONFIG_FSCACHE_STATS=y +# CONFIG_FSI is not set +# CONFIG_FSL_BMAN_TEST is not set +CONFIG_FSL_DPAA=y +# CONFIG_FSL_DPAA2 is not set +CONFIG_FSL_DPAA2_ETH=y +CONFIG_FSL_DPAA2_PTP_CLOCK=y +# CONFIG_FSL_DPAA_CHECKING is not set +CONFIG_FSL_DPAA_ETH=y +CONFIG_FSL_EDMA=y +CONFIG_FSL_ENETC=y +# CONFIG_FSL_ENETC_HW_TIMESTAMPING is not set +CONFIG_FSL_ENETC_MDIO=y +CONFIG_FSL_ENETC_PTP_CLOCK=y +CONFIG_FSL_ENETC_VF=y +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_FSL_FMAN=y +CONFIG_FSL_GUTS=y +CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_FSL_MC_BUS=y +CONFIG_FSL_MC_DPIO=y +# CONFIG_FSL_PQ_MDIO is not set +# CONFIG_FSL_QDMA is not set +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_XGMAC_MDIO=y CONFIG_FSNOTIFY=y CONFIG_FS_DAX=y CONFIG_FS_DAX_PMD=y @@ -1545,10 +2182,12 @@ CONFIG_FS_VERITY=y CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y # CONFIG_FS_VERITY_DEBUG is not set +CONFIG_FTM_QUADDEC=m CONFIG_FTRACE=y CONFIG_FTRACE_MCOUNT_RECORD=y # CONFIG_FTRACE_STARTUP_TEST is not set CONFIG_FTRACE_SYSCALLS=y +CONFIG_FUJITSU_ERRATUM_010001=y # CONFIG_FUJITSU_ES is not set # CONFIG_FUJITSU_LAPTOP is not set # CONFIG_FUJITSU_TABLET is not set @@ -1576,10 +2215,12 @@ # CONFIG_GAMEPORT is not set CONFIG_GARP=m CONFIG_GART_IOMMU=y -CONFIG_GCC_VERSION=90300 +CONFIG_GCC_VERSION=90400 # CONFIG_GCOV_KERNEL is not set CONFIG_GDB_SCRIPTS=y +# CONFIG_GEMINI_ETHERNET is not set CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ARCH_TOPOLOGY=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_CALIBRATE_DELAY=y @@ -1590,18 +2231,23 @@ CONFIG_GENERIC_CPU=y CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_GENERIC_CSUM=y CONFIG_GENERIC_EARLY_IOREMAP=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_IRQ_CHIP=y # CONFIG_GENERIC_IRQ_DEBUGFS is not set CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_IRQ_RESERVATION_MODE=y CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_MSI_IRQ=y CONFIG_GENERIC_MSI_IRQ_DOMAIN=y @@ -1609,7 +2255,11 @@ CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y CONFIG_GENERIC_PINCONF=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_GENERIC_SCHED_CLOCK=y CONFIG_GENERIC_SMP_IDLE_THREAD=y CONFIG_GENERIC_STRNCPY_FROM_USER=y CONFIG_GENERIC_STRNLEN_USER=y @@ -1620,6 +2270,7 @@ CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 CONFIG_GFS2_FS=m CONFIG_GFS2_FS_LOCKING_DLM=y +# CONFIG_GIANFAR is not set CONFIG_GLOB=y # CONFIG_GLOB_SELFTEST is not set CONFIG_GNSS=m @@ -1632,21 +2283,31 @@ CONFIG_GPIO_104_DIO_48E=m CONFIG_GPIO_104_IDIO_16=m CONFIG_GPIO_104_IDI_48=m +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_74XX_MMIO is not set CONFIG_GPIO_ACPI=y +# CONFIG_GPIO_ADNP is not set CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_ALTERA=m CONFIG_GPIO_AMD8111=m CONFIG_GPIO_AMDPT=m CONFIG_GPIO_AMD_FCH=m CONFIG_GPIO_ARIZONA=m CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_BRCMSTB=y # CONFIG_GPIO_BT8XX is not set +# CONFIG_GPIO_CADENCE is not set CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DAVINCI=y CONFIG_GPIO_DWAPB=m +# CONFIG_GPIO_EIC_SPRD is not set CONFIG_GPIO_EXAR=m CONFIG_GPIO_F7188X=m -CONFIG_GPIO_GENERIC=m -CONFIG_GPIO_GENERIC_PLATFORM=m +# CONFIG_GPIO_FTGPIO010 is not set CONFIG_GPIO_GPIO_MM=m +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_HLWD is not set CONFIG_GPIO_ICH=m CONFIG_GPIO_IT87=m CONFIG_GPIO_JANZ_TTL=m @@ -1662,30 +2323,49 @@ CONFIG_GPIO_MB86S7X=m CONFIG_GPIO_MC33880=m CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_MLXBF=m CONFIG_GPIO_ML_IOH=m CONFIG_GPIO_MOCKUP=m +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y CONFIG_GPIO_PCA953X=m CONFIG_GPIO_PCF857X=m CONFIG_GPIO_PCIE_IDIO_24=m CONFIG_GPIO_PCI_IDIO_16=m CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_RASPBERRYPI_EXP=y +CONFIG_GPIO_RCAR=y CONFIG_GPIO_RDC321X=m +# CONFIG_GPIO_SAMA5D2_PIOBU is not set CONFIG_GPIO_SCH=m CONFIG_GPIO_SCH311X=m CONFIG_GPIO_SIOX=m +# CONFIG_GPIO_SPRD is not set +# CONFIG_GPIO_SYSCON is not set CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +# CONFIG_GPIO_THUNDERX is not set CONFIG_GPIO_TPIC2810=m CONFIG_GPIO_TPS65086=m CONFIG_GPIO_TPS65912=m CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_UNIPHIER=y CONFIG_GPIO_VX855=m +# CONFIG_GPIO_WATCHDOG is not set CONFIG_GPIO_WHISKEY_COVE=m CONFIG_GPIO_WINBOND=m CONFIG_GPIO_WM831X=m CONFIG_GPIO_WM8994=m CONFIG_GPIO_WS16C48=m +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=y CONFIG_GPIO_XILINX=y +# CONFIG_GPIO_XLP is not set CONFIG_GPIO_XRA1403=m +# CONFIG_GPIO_ZYNQ is not set CONFIG_GRACE_PERIOD=m # CONFIG_GREYBUS is not set CONFIG_GRO_CELLS=y @@ -1697,10 +2377,14 @@ CONFIG_HALTPOLL_CPUIDLE=m CONFIG_HAMACHI=m CONFIG_HAMRADIO=y +CONFIG_HANDLE_DOMAIN_IRQ=y CONFIG_HANGCHECK_TIMER=m CONFIG_HARDENED_USERCOPY=y CONFIG_HARDENED_USERCOPY_FALLBACK=y # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_HARDEN_EL2_VECTORS=y +CONFIG_HARDIRQS_SW_RESEND=y CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y CONFIG_HARDLOCKUP_DETECTOR=y CONFIG_HARDLOCKUP_DETECTOR_PERF=y @@ -1711,14 +2395,17 @@ CONFIG_HAVE_ACPI_APEI_NMI=y CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_HAVE_ARCH_BITREVERSE=y CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y CONFIG_HAVE_ARCH_HUGE_VMAP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y CONFIG_HAVE_ARCH_KGDB=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_HAVE_ARCH_PFN_VALID=y CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y CONFIG_HAVE_ARCH_SOFT_DIRTY=y @@ -1729,6 +2416,7 @@ CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_ARM_SMCCC=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_BOOTMEM_INFO_NODE=y CONFIG_HAVE_CLK=y @@ -1738,6 +2426,7 @@ CONFIG_HAVE_CONTEXT_TRACKING=y CONFIG_HAVE_COPY_THREAD_TLS=y CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_BUGVERBOSE=y CONFIG_HAVE_DEBUG_KMEMLEAK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_HAVE_DYNAMIC_FTRACE=y @@ -1773,6 +2462,7 @@ CONFIG_HAVE_KPROBES_ON_FTRACE=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_HAVE_KVM_IRQCHIP=y @@ -1781,6 +2471,7 @@ CONFIG_HAVE_KVM_IRQ_ROUTING=y CONFIG_HAVE_KVM_MSI=y CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y CONFIG_HAVE_LIVEPATCH=y CONFIG_HAVE_MEMBLOCK_NODE_MAP=y CONFIG_HAVE_MEMORY_PRESENT=y @@ -1792,6 +2483,7 @@ CONFIG_HAVE_NMI=y CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PATA_PLATFORM=y CONFIG_HAVE_PCI=y CONFIG_HAVE_PCSPKR_PLATFORM=y CONFIG_HAVE_PERF_EVENTS=y @@ -1802,6 +2494,8 @@ CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RELIABLE_STACKTRACE=y CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_S3C2410_WATCHDOG=y +CONFIG_HAVE_S3C_RTC=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_HAVE_STACKPROTECTOR=y CONFIG_HAVE_STACK_VALIDATION=y @@ -1822,6 +2516,8 @@ # CONFIG_HEADERS_INSTALL is not set CONFIG_HFSPLUS_FS=m CONFIG_HFS_FS=m +CONFIG_HI3660_MBOX=y +CONFIG_HI6220_MBOX=y CONFIG_HIBERNATE_CALLBACKS=y CONFIG_HIBERNATION=y CONFIG_HID=m @@ -1830,14 +2526,11 @@ # CONFIG_HID_ACRUX is not set # CONFIG_HID_ALPS is not set # CONFIG_HID_APPLE is not set -CONFIG_HID_ASUS=m # CONFIG_HID_AUREAL is not set # CONFIG_HID_BATTERY_STRENGTH is not set # CONFIG_HID_BELKIN is not set # CONFIG_HID_CHERRY is not set -# CONFIG_HID_CHICONY is not set # CONFIG_HID_CMEDIA is not set -# CONFIG_HID_CORSAIR is not set CONFIG_HID_COUGAR=m # CONFIG_HID_CYPRESS is not set # CONFIG_HID_DRAGONRISE is not set @@ -1859,7 +2552,6 @@ # CONFIG_HID_LCPOWER is not set CONFIG_HID_LED=m # CONFIG_HID_LENOVO is not set -# CONFIG_HID_LOGITECH is not set CONFIG_HID_MACALLY=m # CONFIG_HID_MAGICMOUSE is not set CONFIG_HID_MALTRON=m @@ -1878,7 +2570,6 @@ CONFIG_HID_REDRAGON=m # CONFIG_HID_RMI is not set # CONFIG_HID_SAITEK is not set -# CONFIG_HID_SAMSUNG is not set CONFIG_HID_SENSOR_CUSTOM_SENSOR=m CONFIG_HID_SENSOR_HUB=m # CONFIG_HID_SMARTJOYPLUS is not set @@ -1901,11 +2592,33 @@ CONFIG_HIGH_RES_TIMERS=y CONFIG_HINIC=m CONFIG_HIO=m +# CONFIG_HIP04_ETH is not set # CONFIG_HIPPI is not set +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_HISILICON_LPC=y +# CONFIG_HISI_DMA is not set +# CONFIG_HISI_FEMAC is not set +CONFIG_HISI_PMU=m +CONFIG_HISI_THERMAL=y CONFIG_HIST_TRIGGERS=y +CONFIG_HIX5HD2_GMAC=y CONFIG_HMC6352=m CONFIG_HMEM_REPORTING=y CONFIG_HMM_MIRROR=y +CONFIG_HMS_ANYBUSS_BUS=m +CONFIG_HMS_PROFINET=m +CONFIG_HNS=y +CONFIG_HNS3=y +CONFIG_HNS3_DCB=y +CONFIG_HNS3_ENET=y +CONFIG_HNS3_HCLGE=y +# CONFIG_HNS3_HCLGEVF is not set +CONFIG_HNS_DSAF=y +CONFIG_HNS_ENET=y +CONFIG_HNS_MDIO=y +CONFIG_HOLES_IN_ZONE=y CONFIG_HOTPLUG_CPU=y CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_ACPI=y @@ -1931,10 +2644,12 @@ # CONFIG_HSI is not set CONFIG_HSR=m CONFIG_HSU_DMA=m +CONFIG_HT16K33=m CONFIG_HTC_PASIC3=m CONFIG_HUAWEI_WMI=m CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y +# CONFIG_HVC_DCC is not set CONFIG_HVC_DRIVER=y CONFIG_HWLAT_TRACER=y CONFIG_HWMON=y @@ -1942,19 +2657,35 @@ CONFIG_HWMON_VID=m CONFIG_HWPOISON_INJECT=m CONFIG_HWSPINLOCK=y +# CONFIG_HWSPINLOCK_OMAP is not set +CONFIG_HWSPINLOCK_QCOM=y +# CONFIG_HWSPINLOCK_SPRD is not set CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_CAVIUM=m +CONFIG_HW_RANDOM_EXYNOS=m +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_HISI_V2=m +CONFIG_HW_RANDOM_IMX_RNGC=m CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_MTK=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OPTEE=m CONFIG_HW_RANDOM_TIMERIOMEM=m CONFIG_HW_RANDOM_TPM=y CONFIG_HW_RANDOM_VIA=m CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XGENE=m CONFIG_HYPERV=y CONFIG_HYPERVISOR_GUEST=y +CONFIG_HYPERV_AZURE_BLOB=m CONFIG_HYPERV_BALLOON=m CONFIG_HYPERV_INFINIBAND_ND=m -CONFIG_HYPERV_IOMMU=y CONFIG_HYPERV_KEYBOARD=m CONFIG_HYPERV_NET=m CONFIG_HYPERV_STORAGE=y @@ -1977,13 +2708,19 @@ CONFIG_I2C_AMD756_S4882=m CONFIG_I2C_AMD8111=m # CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=m CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CADENCE is not set CONFIG_I2C_CBUS_GPIO=m CONFIG_I2C_CHARDEV=m CONFIG_I2C_COMPAT=y # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set # CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEMUX_PINCTRL is not set CONFIG_I2C_DESIGNWARE_BAYTRAIL=y CONFIG_I2C_DESIGNWARE_CORE=m CONFIG_I2C_DESIGNWARE_PCI=m @@ -1991,44 +2728,73 @@ # CONFIG_I2C_DESIGNWARE_SLAVE is not set # CONFIG_I2C_DIOLAN_U2C is not set # CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_EXYNOS5=m CONFIG_I2C_GPIO=m # CONFIG_I2C_GPIO_FAULT_INJECTOR is not set CONFIG_I2C_HELPER_AUTO=y # CONFIG_I2C_HID is not set +# CONFIG_I2C_HIX5HD2 is not set CONFIG_I2C_I801=m +CONFIG_I2C_IMX=m +CONFIG_I2C_IMX_LPI2C=m CONFIG_I2C_ISCH=m CONFIG_I2C_ISMT=m +CONFIG_I2C_MESON=m CONFIG_I2C_MLXCPLD=m +CONFIG_I2C_MT65XX=m CONFIG_I2C_MULTI_INSTANTIATE=m CONFIG_I2C_MUX=m # CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_GPMUX is not set CONFIG_I2C_MUX_LTC4306=m # CONFIG_I2C_MUX_MLXCPLD is not set # CONFIG_I2C_MUX_PCA9541 is not set # CONFIG_I2C_MUX_PCA954x is not set +# CONFIG_I2C_MUX_PINCTRL is not set # CONFIG_I2C_MUX_REG is not set +CONFIG_I2C_MV64XXX=m CONFIG_I2C_NFORCE2=m CONFIG_I2C_NFORCE2_S4985=m +# CONFIG_I2C_NOMADIK is not set CONFIG_I2C_NVIDIA_GPU=m CONFIG_I2C_OCORES=m +CONFIG_I2C_OMAP=m +CONFIG_I2C_OWL=m CONFIG_I2C_PARPORT=m CONFIG_I2C_PARPORT_LIGHT=m CONFIG_I2C_PCA_PLATFORM=m # CONFIG_I2C_PIIX4 is not set +CONFIG_I2C_PXA=m +# CONFIG_I2C_PXA_SLAVE is not set +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=m +CONFIG_I2C_RCAR=m +CONFIG_I2C_RIIC=m +CONFIG_I2C_RK3X=m # CONFIG_I2C_ROBOTFUZZ_OSIF is not set CONFIG_I2C_SCMI=m +CONFIG_I2C_SH_MOBILE=m CONFIG_I2C_SIMTEC=m CONFIG_I2C_SIS5595=m CONFIG_I2C_SIS630=m CONFIG_I2C_SIS96X=m -# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_SLAVE_EEPROM is not set CONFIG_I2C_SMBUS=m CONFIG_I2C_STUB=m +# CONFIG_I2C_SYNQUACER is not set CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TEGRA=m +CONFIG_I2C_TEGRA_BPMP=m +# CONFIG_I2C_THUNDERX is not set # CONFIG_I2C_TINY_USB is not set +# CONFIG_I2C_UNIPHIER is not set +CONFIG_I2C_UNIPHIER_F=m +# CONFIG_I2C_VERSATILE is not set CONFIG_I2C_VIA=m CONFIG_I2C_VIAPRO=m +# CONFIG_I2C_XGENE_SLIMPRO is not set CONFIG_I2C_XILINX=m +# CONFIG_I2C_XLP9XX is not set CONFIG_I3C=m CONFIG_I40E=m CONFIG_I40EVF=m @@ -2093,10 +2859,25 @@ CONFIG_IMA_NG_TEMPLATE=y # CONFIG_IMA_READ_POLICY is not set # CONFIG_IMA_SIG_TEMPLATE is not set -# CONFIG_IMA_TEMPLATE is not set CONFIG_IMA_TRUSTED_KEYRING=y # CONFIG_IMA_WRITE_POLICY is not set CONFIG_IMG_ASCII_LCD=m +CONFIG_IMX2_WDT=y +# CONFIG_IMX7ULP_WDT is not set +# CONFIG_IMX_DMA is not set +# CONFIG_IMX_DSP is not set +CONFIG_IMX_GPCV2=y +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_MBOX=y +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +# CONFIG_IMX_SCU_SOC is not set +CONFIG_IMX_SC_WDT=m +CONFIG_IMX_SDMA=y +# CONFIG_IMX_THERMAL is not set +# CONFIG_IMX_WEIM is not set +CONFIG_INDIRECT_PIO=y CONFIG_INET=y CONFIG_INET6_AH=m CONFIG_INET6_ESP=m @@ -2125,6 +2906,9 @@ # CONFIG_INFINIBAND_CXGB4 is not set CONFIG_INFINIBAND_EFA=m # CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set +CONFIG_INFINIBAND_HNS=m +CONFIG_INFINIBAND_HNS_HIP06=y +CONFIG_INFINIBAND_HNS_HIP08=y # CONFIG_INFINIBAND_I40IW is not set CONFIG_INFINIBAND_IPOIB=m # CONFIG_INFINIBAND_IPOIB_CM is not set @@ -2150,11 +2934,31 @@ CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set CONFIG_INIT_STACK_NONE=y +CONFIG_INLINE_READ_LOCK=y +CONFIG_INLINE_READ_LOCK_BH=y +CONFIG_INLINE_READ_LOCK_IRQ=y +CONFIG_INLINE_READ_LOCK_IRQSAVE=y CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_BH=y CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_SPIN_LOCK=y +CONFIG_INLINE_SPIN_LOCK_BH=y +CONFIG_INLINE_SPIN_LOCK_IRQ=y +CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_INLINE_SPIN_TRYLOCK=y +CONFIG_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_BH=y CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_WRITE_LOCK=y +CONFIG_INLINE_WRITE_LOCK_BH=y +CONFIG_INLINE_WRITE_LOCK_IRQ=y +CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_BH=y CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y CONFIG_INOTIFY_USER=y CONFIG_INPUT=y # CONFIG_INPUT_AD714X is not set @@ -2162,6 +2966,7 @@ # CONFIG_INPUT_APANEL is not set # CONFIG_INPUT_ATI_REMOTE2 is not set # CONFIG_INPUT_ATLAS_BTNS is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set # CONFIG_INPUT_AXP20X_PEK is not set # CONFIG_INPUT_BMA150 is not set # CONFIG_INPUT_CM109 is not set @@ -2180,6 +2985,7 @@ # CONFIG_INPUT_GPIO_DECODER is not set # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_HISI_POWERKEY=y # CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set # CONFIG_INPUT_IMS_PCU is not set CONFIG_INPUT_JOYDEV=m @@ -2206,9 +3012,11 @@ # CONFIG_INPUT_POWERMATE is not set # CONFIG_INPUT_REGULATOR_HAPTIC is not set # CONFIG_INPUT_RETU_PWRBUTTON is not set +# CONFIG_INPUT_RK805_PWRKEY is not set CONFIG_INPUT_SPARSEKMAP=m CONFIG_INPUT_TABLET=y # CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_TPS65218_PWRBUTTON is not set CONFIG_INPUT_UINPUT=y # CONFIG_INPUT_WM831X_ON is not set # CONFIG_INPUT_YEALINK is not set @@ -2264,13 +3072,22 @@ CONFIG_INTEL_WMI_THUNDERBOLT=m # CONFIG_INTEL_XWAY_PHY is not set CONFIG_INTERCONNECT=m +CONFIG_INTERCONNECT_QCOM=y +# CONFIG_INTERCONNECT_QCOM_QCS404 is not set +CONFIG_INTERCONNECT_QCOM_SDM845=m CONFIG_INTERVAL_TREE=y CONFIG_IOMMU_API=y # CONFIG_IOMMU_DEBUG is not set # CONFIG_IOMMU_DEBUGFS is not set # CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y CONFIG_IOMMU_HELPER=y CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_IO_PGTABLE=y +CONFIG_IOMMU_IO_PGTABLE_ARMV7S=y +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S_SELFTEST is not set +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set CONFIG_IOMMU_SUPPORT=y # CONFIG_ION is not set CONFIG_IONIC=m @@ -2307,6 +3124,7 @@ CONFIG_IPACK_BUS=m CONFIG_IPC_NS=y # CONFIG_IPDDP is not set +# CONFIG_IPMB_DEVICE_INTERFACE is not set CONFIG_IPMI_DEVICE_INTERFACE=m CONFIG_IPMI_DMI_DECODE=y CONFIG_IPMI_HANDLER=m @@ -2316,6 +3134,11 @@ CONFIG_IPMI_SI=m CONFIG_IPMI_SSIF=m CONFIG_IPMI_WATCHDOG=m +# CONFIG_IPMMU_VMSA is not set +# CONFIG_IPQ_GCC_4019 is not set +# CONFIG_IPQ_GCC_806X is not set +CONFIG_IPQ_GCC_8074=y +# CONFIG_IPQ_LCC_806X is not set CONFIG_IPV6=y CONFIG_IPV6_FOU=m CONFIG_IPV6_FOU_TUNNEL=m @@ -2426,19 +3249,26 @@ CONFIG_IP_VS_TAB_BITS=12 CONFIG_IP_VS_WLC=m CONFIG_IP_VS_WRR=m +CONFIG_IRQCHIP=y # CONFIG_IRQSOFF_TRACER is not set CONFIG_IRQ_BYPASS_MANAGER=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y CONFIG_IRQ_FORCED_THREADING=y # CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +CONFIG_IRQ_MSI_IOMMU=y CONFIG_IRQ_POLL=y CONFIG_IRQ_REMAP=y CONFIG_IRQ_SIM=y # CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_UNIPHIER_AIDET=y CONFIG_IRQ_WORK=y CONFIG_IR_ENE=m CONFIG_IR_FINTEK=m +# CONFIG_IR_GPIO_CIR is not set +CONFIG_IR_GPIO_TX=m +# CONFIG_IR_HIX5HD2 is not set # CONFIG_IR_IGORPLUGUSB is not set # CONFIG_IR_IGUANA is not set # CONFIG_IR_IMON is not set @@ -2448,6 +3278,8 @@ CONFIG_IR_JVC_DECODER=m # CONFIG_IR_MCEUSB is not set CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_MESON=m +# CONFIG_IR_MTK is not set CONFIG_IR_NEC_DECODER=m CONFIG_IR_NUVOTON=m CONFIG_IR_RC5_DECODER=m @@ -2460,7 +3292,9 @@ CONFIG_IR_SHARP_DECODER=m CONFIG_IR_SIR=m CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SPI=m # CONFIG_IR_STREAMZAP is not set +CONFIG_IR_SUNXI=m # CONFIG_IR_TTUSBIR is not set CONFIG_IR_WINBOND_CIR=m CONFIG_IR_XMP_DECODER=m @@ -2501,6 +3335,7 @@ CONFIG_JME=m CONFIG_JOLIET=y CONFIG_JUMP_LABEL=y +CONFIG_K3_DMA=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y CONFIG_KALLSYMS_ALL=y @@ -2517,12 +3352,14 @@ # CONFIG_KERNEL_LZ4 is not set # CONFIG_KERNEL_LZMA is not set # CONFIG_KERNEL_LZO is not set +CONFIG_KERNEL_MODE_NEON=y # CONFIG_KERNEL_XZ is not set CONFIG_KERNFS=y CONFIG_KEXEC=y CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y CONFIG_KEXEC_CORE=y CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_IMAGE_VERIFY_SIG is not set CONFIG_KEXEC_JUMP=y CONFIG_KEXEC_SIG=y # CONFIG_KEXEC_SIG_FORCE is not set @@ -2530,9 +3367,12 @@ # CONFIG_KEYBOARD_ADP5589 is not set CONFIG_KEYBOARD_APPLESPI=m CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_BCM is not set +# CONFIG_KEYBOARD_CAP11XX is not set CONFIG_KEYBOARD_DLINK_DIR685=m # CONFIG_KEYBOARD_GPIO is not set CONFIG_KEYBOARD_GPIO_POLLED=m +# CONFIG_KEYBOARD_IMX is not set # CONFIG_KEYBOARD_LKKBD is not set # CONFIG_KEYBOARD_LM8323 is not set # CONFIG_KEYBOARD_LM8333 is not set @@ -2541,15 +3381,19 @@ # CONFIG_KEYBOARD_MCS is not set # CONFIG_KEYBOARD_MPR121 is not set # CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OMAP4 is not set # CONFIG_KEYBOARD_OPENCORES is not set CONFIG_KEYBOARD_QT1050=m # CONFIG_KEYBOARD_QT1070 is not set # CONFIG_KEYBOARD_QT2160 is not set # CONFIG_KEYBOARD_SAMSUNG is not set +CONFIG_KEYBOARD_SNVS_PWRKEY=m # CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUN4I_LRADC is not set # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_TCA6416 is not set # CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_TEGRA is not set # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set # CONFIG_KEYBOARD_XTKBD is not set CONFIG_KEYS=y @@ -2570,19 +3414,23 @@ CONFIG_KPROBES_ON_FTRACE=y CONFIG_KPROBE_EVENTS=y # CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +# CONFIG_KPSS_XCC is not set CONFIG_KRETPROBES=y CONFIG_KS0108=m CONFIG_KS0108_DELAY=2 CONFIG_KS0108_PORT=0x378 CONFIG_KSM=y -CONFIG_KVM=m +CONFIG_KUSER_HELPERS=y CONFIG_KVM_AMD=m CONFIG_KVM_AMD_SEV=y +CONFIG_KVM_ARM_HOST=y +CONFIG_KVM_ARM_PMU=y CONFIG_KVM_ASYNC_PF=y CONFIG_KVM_COMPAT=y CONFIG_KVM_DEBUG_FS=y CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y CONFIG_KVM_GUEST=y +CONFIG_KVM_INDIRECT_VECTORS=y CONFIG_KVM_INTEL=m CONFIG_KVM_MMIO=y # CONFIG_KVM_MMU_AUDIT is not set @@ -2602,28 +3450,38 @@ CONFIG_LDISC_AUTOLOAD=y # CONFIG_LDM_DEBUG is not set CONFIG_LDM_PARTITION=y +# CONFIG_LEDS_AN30259A is not set CONFIG_LEDS_APU=m +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set # CONFIG_LEDS_BD2802 is not set # CONFIG_LEDS_BLINKM is not set CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y CONFIG_LEDS_CLASS=m # CONFIG_LEDS_CLASS_FLASH is not set # CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_CR0014114 is not set # CONFIG_LEDS_DA9052 is not set # CONFIG_LEDS_DAC124S085 is not set CONFIG_LEDS_GPIO=m # CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set # CONFIG_LEDS_LM3530 is not set CONFIG_LEDS_LM3532=m # CONFIG_LEDS_LM355x is not set CONFIG_LEDS_LM36274=m # CONFIG_LEDS_LM3642 is not set +CONFIG_LEDS_LM3692X=m +CONFIG_LEDS_LM3697=m # CONFIG_LEDS_LP3944 is not set # CONFIG_LEDS_LP3952 is not set # CONFIG_LEDS_LP5521 is not set # CONFIG_LEDS_LP5523 is not set # CONFIG_LEDS_LP5562 is not set # CONFIG_LEDS_LP8501 is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_LT3593 is not set # CONFIG_LEDS_MC13783 is not set # CONFIG_LEDS_MENF21BMC is not set # CONFIG_LEDS_MLXCPLD is not set @@ -2633,6 +3491,7 @@ # CONFIG_LEDS_PCA955X is not set # CONFIG_LEDS_PCA963X is not set # CONFIG_LEDS_REGULATOR is not set +# CONFIG_LEDS_SPI_BYTE is not set # CONFIG_LEDS_TCA6507 is not set CONFIG_LEDS_TI_LMU_COMMON=m # CONFIG_LEDS_TLC591XX is not set @@ -2663,6 +3522,7 @@ CONFIG_LG_LAPTOP=m CONFIG_LIBCRC32C=m # CONFIG_LIBFC is not set +CONFIG_LIBFDT=y CONFIG_LIBNVDIMM=y CONFIG_LIRC=y CONFIG_LIVEPATCH=y @@ -2695,6 +3555,7 @@ # CONFIG_LSI_ET1011C_PHY is not set CONFIG_LSM="lockdown,yama,integrity,apparmor" CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LS_SCFG_MSI=y # CONFIG_LTE_GDM724X is not set CONFIG_LTPC=m CONFIG_LWTUNNEL=y @@ -2729,6 +3590,7 @@ CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 CONFIG_MAGIC_SYSRQ_SERIAL=y CONFIG_MAILBOX=y +# CONFIG_MAILBOX_TEST is not set CONFIG_MANAGER_SBS=m CONFIG_MANDATORY_FILE_LOCKING=y CONFIG_MARVELL_10G_PHY=m @@ -2743,13 +3605,26 @@ # CONFIG_MCORE2 is not set CONFIG_MD=y CONFIG_MDIO=m +CONFIG_MDIO_BCM_IPROC=y CONFIG_MDIO_BCM_UNIMAC=m # CONFIG_MDIO_BITBANG is not set CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_BUS_MUX_BCM_IPROC=y +# CONFIG_MDIO_BUS_MUX_GPIO is not set +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MMIOREG=y +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=y CONFIG_MDIO_DEVICE=y +# CONFIG_MDIO_HISI_FEMAC is not set CONFIG_MDIO_I2C=m CONFIG_MDIO_MSCC_MIIM=m +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_SUN4I is not set # CONFIG_MDIO_THUNDER is not set +CONFIG_MDIO_XGENE=y +# CONFIG_MDM_GCC_9615 is not set +# CONFIG_MDM_LCC_9615 is not set CONFIG_MD_AUTODETECT=y CONFIG_MD_CLUSTER=m CONFIG_MD_FAULTY=m @@ -2759,6 +3634,7 @@ CONFIG_MD_RAID1=m CONFIG_MD_RAID10=m CONFIG_MD_RAID456=m +CONFIG_MEDIATEK_WATCHDOG=y # CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set # CONFIG_MEDIA_CAMERA_SUPPORT is not set CONFIG_MEDIA_CEC_SUPPORT=y @@ -2795,17 +3671,35 @@ CONFIG_MENF21BMC_WATCHDOG=m CONFIG_MENZ069_WATCHDOG=m CONFIG_MEN_A21_WDT=m +CONFIG_MESON_CANVAS=m +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_EFUSE=m +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_GXL_PHY=m +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_IRQ_GPIO=y +# CONFIG_MESON_MX_EFUSE is not set +CONFIG_MESON_MX_SOCINFO=y +CONFIG_MESON_SM=y +CONFIG_MESON_WATCHDOG=m CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 # CONFIG_MFD_88PM800 is not set CONFIG_MFD_88PM805=m +# CONFIG_MFD_AC100 is not set +# CONFIG_MFD_ACT8945A is not set CONFIG_MFD_ARIZONA=y CONFIG_MFD_ARIZONA_I2C=m CONFIG_MFD_ARIZONA_SPI=m -CONFIG_MFD_AXP20X=m +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_AXP20X_RSB=y CONFIG_MFD_BCM590XX=m CONFIG_MFD_BD9571MWV=m CONFIG_MFD_CORE=y +# CONFIG_MFD_CPCAP is not set # CONFIG_MFD_CROS_EC is not set CONFIG_MFD_CS47L15=y CONFIG_MFD_CS47L24=y @@ -2818,6 +3712,9 @@ CONFIG_MFD_DA9063=m # CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set +CONFIG_MFD_EXYNOS_LPASS=m +CONFIG_MFD_HI6421_PMIC=y +CONFIG_MFD_HI655X_PMIC=y CONFIG_MFD_INTEL_LPSS=m CONFIG_MFD_INTEL_LPSS_ACPI=m CONFIG_MFD_INTEL_LPSS_PCI=m @@ -2830,6 +3727,8 @@ CONFIG_MFD_MADERA_I2C=m CONFIG_MFD_MADERA_SPI=m CONFIG_MFD_MAX14577=m +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set CONFIG_MFD_MAX77693=m CONFIG_MFD_MAX8907=m CONFIG_MFD_MC13XXX=m @@ -2837,23 +3736,36 @@ CONFIG_MFD_MC13XXX_SPI=m CONFIG_MFD_MENF21BMC=m # CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_NVEC is not set CONFIG_MFD_PCF50633=m +# CONFIG_MFD_QCOM_RPM is not set CONFIG_MFD_RDC321X=m CONFIG_MFD_RETU=m +CONFIG_MFD_RK808=m +# CONFIG_MFD_RN5T618 is not set CONFIG_MFD_RT5033=m +# CONFIG_MFD_SC27XX_PMIC is not set # CONFIG_MFD_SI476X_CORE is not set CONFIG_MFD_SKY81452=m CONFIG_MFD_SM501=m CONFIG_MFD_SM501_GPIO=y +# CONFIG_MFD_STMFX is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_SUN4I_GPADC is not set +CONFIG_MFD_SUN6I_PRCM=y CONFIG_MFD_SYSCON=y CONFIG_MFD_TI_AM335X_TSCADC=m CONFIG_MFD_TI_LMU=m CONFIG_MFD_TI_LP873X=m +# CONFIG_MFD_TI_LP87565 is not set CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65217=m +# CONFIG_MFD_TPS65218 is not set CONFIG_MFD_TPS65912=y CONFIG_MFD_TPS65912_I2C=m CONFIG_MFD_TPS65912_SPI=y CONFIG_MFD_TQMX86=m +CONFIG_MFD_VEXPRESS_SYSREG=y # CONFIG_MFD_VIPERBOARD is not set CONFIG_MFD_VX855=m # CONFIG_MFD_WL1273_CORE is not set @@ -2873,7 +3785,7 @@ CONFIG_MICROCODE_INTEL=y CONFIG_MICROCODE_OLD_INTERFACE=y # CONFIG_MICROSEMI_PHY is not set -CONFIG_MICROSOFT_MANA=m +CONFIG_MICROSOFT_MANA=y CONFIG_MIGRATION=y CONFIG_MII=m CONFIG_MINIX_FS=m @@ -2883,6 +3795,7 @@ CONFIG_MISC_RTSX=m CONFIG_MISC_RTSX_PCI=m # CONFIG_MISC_RTSX_USB is not set +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y # CONFIG_MK8 is not set # CONFIG_MKISS is not set CONFIG_MLX4_CORE=m @@ -2908,6 +3821,7 @@ CONFIG_MLX5_MPFS=y CONFIG_MLX5_SW_STEERING=y CONFIG_MLX5_TLS=y +CONFIG_MLXBF_TMFIFO=m CONFIG_MLXFW=m CONFIG_MLXREG_HOTPLUG=m CONFIG_MLXREG_IO=m @@ -2953,11 +3867,13 @@ CONFIG_MODVERSIONS=y CONFIG_MOST=m CONFIG_MOST_CDEV=m +CONFIG_MOST_DIM2=m CONFIG_MOST_I2C=m CONFIG_MOST_NET=m # CONFIG_MOST_USB is not set CONFIG_MOXA_INTELLIO=m CONFIG_MOXA_SMARTIO=m +# CONFIG_MOXTET is not set CONFIG_MPILIB=y CONFIG_MPLS=y CONFIG_MPLS_IPTUNNEL=m @@ -2967,20 +3883,63 @@ CONFIG_MQ_IOSCHED_KYBER=m CONFIG_MRP=m CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_MSCC_OCELOT_SWITCH_OCELOT=m CONFIG_MSDOS_FS=m CONFIG_MSDOS_PARTITION=y # CONFIG_MSI_LAPTOP is not set # CONFIG_MSI_WMI is not set +# CONFIG_MSM_GCC_8660 is not set +CONFIG_MSM_GCC_8916=y +# CONFIG_MSM_GCC_8960 is not set +# CONFIG_MSM_GCC_8974 is not set +CONFIG_MSM_GCC_8994=y +CONFIG_MSM_GCC_8996=y +CONFIG_MSM_GCC_8998=y +# CONFIG_MSM_LCC_8960 is not set +# CONFIG_MSM_MMCC_8960 is not set +# CONFIG_MSM_MMCC_8974 is not set +CONFIG_MSM_MMCC_8996=y # CONFIG_MTD is not set +# CONFIG_MTK_CMDQ is not set +# CONFIG_MTK_CMDQ_MBOX is not set +# CONFIG_MTK_CQDMA is not set +CONFIG_MTK_EFUSE=y +# CONFIG_MTK_HSDMA is not set +CONFIG_MTK_INFRACFG=y +CONFIG_MTK_IOMMU=y +CONFIG_MTK_PMIC_WRAP=y +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SMI=y +CONFIG_MTK_THERMAL=y +CONFIG_MTK_TIMER=y +# CONFIG_MTK_UART_APDMA is not set CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_MULTIPLEXER=y CONFIG_MULTIUSER=y CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_MVMDIO=m +# CONFIG_MUX_ADG792A is not set +# CONFIG_MUX_ADGS1408 is not set +# CONFIG_MUX_GPIO is not set +CONFIG_MUX_MMIO=y +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_MVNETA=y +CONFIG_MVPP2=y +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y # CONFIG_MWAVE is not set +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y CONFIG_MXM_WMI=m +# CONFIG_MXS_DMA is not set CONFIG_NAMESPACES=y # CONFIG_NATIONAL_PHY is not set CONFIG_NCSI_OEM_CMD_GET_MAC=y @@ -3170,6 +4129,8 @@ CONFIG_NET_DSA_TAG_QCA=m CONFIG_NET_DSA_TAG_SJA1105=m CONFIG_NET_DSA_TAG_TRAILER=m +# CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM is not set +# CONFIG_NET_DSA_VITESSE_VSC73XX_SPI is not set CONFIG_NET_EGRESS=y CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_CANID=m @@ -3249,6 +4210,7 @@ # CONFIG_NET_VENDOR_ADAPTEC is not set CONFIG_NET_VENDOR_AGERE=y CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_NET_VENDOR_ALLWINNER=y # CONFIG_NET_VENDOR_ALTEON is not set # CONFIG_NET_VENDOR_AMAZON is not set # CONFIG_NET_VENDOR_AMD is not set @@ -3268,12 +4230,15 @@ CONFIG_NET_VENDOR_DLINK=y CONFIG_NET_VENDOR_EMULEX=y # CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_FREESCALE=y CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HISILICON=y # CONFIG_NET_VENDOR_HP is not set CONFIG_NET_VENDOR_HUAWEI=y CONFIG_NET_VENDOR_I825XX=y CONFIG_NET_VENDOR_INTEL=y CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_NET_VENDOR_MEDIATEK is not set CONFIG_NET_VENDOR_MELLANOX=y # CONFIG_NET_VENDOR_MICREL is not set CONFIG_NET_VENDOR_MICROCHIP=y @@ -3310,6 +4275,8 @@ # CONFIG_NET_VENDOR_WIZNET is not set CONFIG_NET_VENDOR_XILINX=y CONFIG_NET_VRF=m +CONFIG_NET_XGENE=y +# CONFIG_NET_XGENE_V2 is not set CONFIG_NEW_LEDS=y CONFIG_NFC=m CONFIG_NFC_DIGITAL=m @@ -3543,7 +4510,6 @@ CONFIG_NO_HZ_COMMON=y CONFIG_NO_HZ_FULL=y # CONFIG_NO_HZ_IDLE is not set -CONFIG_NR_CPUS=8192 CONFIG_NR_CPUS_DEFAULT=8192 CONFIG_NR_CPUS_RANGE_BEGIN=8192 CONFIG_NR_CPUS_RANGE_END=8192 @@ -3570,9 +4536,16 @@ CONFIG_NVDIMM_DAX=y CONFIG_NVDIMM_KEYS=y CONFIG_NVDIMM_PFN=y -# CONFIG_NVM is not set CONFIG_NVMEM=y +CONFIG_NVMEM_BCM_OCOTP=y +# CONFIG_NVMEM_IMX_IIM is not set +CONFIG_NVMEM_IMX_OCOTP=y +CONFIG_NVMEM_IMX_OCOTP_SCU=y +# CONFIG_NVMEM_REBOOT_MODE is not set +# CONFIG_NVMEM_SNVS_LPGPR is not set +CONFIG_NVMEM_SUNXI_SID=y CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_ZYNQMP is not set CONFIG_NVME_CORE=y CONFIG_NVME_FABRICS=m CONFIG_NVME_FC=m @@ -3597,9 +4570,28 @@ CONFIG_OCFS2_FS_O2CB=m CONFIG_OCFS2_FS_STATS=y CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m -# CONFIG_OF is not set +# CONFIG_OCTEONTX2_AF is not set +CONFIG_OF_ADDRESS=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_GPIO=y +CONFIG_OF_IOMMU=y +CONFIG_OF_IRQ=y +CONFIG_OF_KOBJ=y +CONFIG_OF_MDIO=y +CONFIG_OF_NET=y +CONFIG_OF_NUMA=y +CONFIG_OF_OVERLAY=y +CONFIG_OF_PMEM=m +CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT=m +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +# CONFIG_OF_UNITTEST is not set CONFIG_OID_REGISTRY=y CONFIG_OLD_SIGSUSPEND3=y +# CONFIG_OMAP2PLUS_MBOX is not set +# CONFIG_OMAP_USB2 is not set CONFIG_OMFS_FS=m CONFIG_OPENVSWITCH=m CONFIG_OPENVSWITCH_GENEVE=m @@ -3608,6 +4600,8 @@ CONFIG_OPROFILE=m # CONFIG_OPROFILE_EVENT_MULTIPLEX is not set CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_OPTEE=y +CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 CONFIG_OPTIMIZE_INLINING=y CONFIG_OPTPROBES=y # CONFIG_ORANGEFS_FS is not set @@ -3619,6 +4613,10 @@ CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y CONFIG_OVERLAY_FS_REDIRECT_DIR=y CONFIG_OVERLAY_FS_XINO_AUTO=y +CONFIG_OWL_DMA=y +CONFIG_OWL_PM_DOMAINS=y +CONFIG_OWL_PM_DOMAINS_HELPER=y +CONFIG_OWL_TIMER=y CONFIG_PACKET=y CONFIG_PACKET_DIAG=m CONFIG_PACKING=y @@ -3656,6 +4654,7 @@ # CONFIG_PARPORT_PC_SUPERIO is not set CONFIG_PARPORT_SERIAL=m CONFIG_PARTITION_ADVANCED=y +CONFIG_PARTITION_PERCPU=y CONFIG_PATA_ACPI=m CONFIG_PATA_ALI=m CONFIG_PATA_AMD=m @@ -3671,6 +4670,7 @@ CONFIG_PATA_HPT3X2N=m CONFIG_PATA_HPT3X3=m # CONFIG_PATA_HPT3X3_DMA is not set +# CONFIG_PATA_IMX is not set CONFIG_PATA_IT8213=m CONFIG_PATA_IT821X=m CONFIG_PATA_JMICRON=m @@ -3681,6 +4681,7 @@ CONFIG_PATA_NINJA32=m CONFIG_PATA_NS87410=m CONFIG_PATA_NS87415=m +CONFIG_PATA_OF_PLATFORM=m CONFIG_PATA_OLDPIIX=m CONFIG_PATA_OPTI=m CONFIG_PATA_OPTIDMA=m @@ -3716,7 +4717,13 @@ # CONFIG_PCIEASPM_POWERSAVE is not set # CONFIG_PCIEASPM_POWER_SUPERSAVE is not set CONFIG_PCIEPORTBUS=y +# CONFIG_PCIE_AL is not set +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCIE_ARMADA_8K=y # CONFIG_PCIE_BW is not set +# CONFIG_PCIE_CADENCE_EP is not set +# CONFIG_PCIE_CADENCE_HOST is not set CONFIG_PCIE_DPC=y CONFIG_PCIE_DW=y CONFIG_PCIE_DW_EP=y @@ -3725,22 +4732,53 @@ CONFIG_PCIE_DW_PLAT_EP=y CONFIG_PCIE_DW_PLAT_HOST=y # CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_HISI_STB=y +CONFIG_PCIE_IPROC=y +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_IPROC_PLATFORM=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCIE_MEDIATEK is not set +CONFIG_PCIE_MOBIVEIL=y CONFIG_PCIE_PME=y CONFIG_PCIE_PTM=y +CONFIG_PCIE_QCOM=y +# CONFIG_PCIE_RCAR is not set +CONFIG_PCIE_ROCKCHIP=y +# CONFIG_PCIE_ROCKCHIP_EP is not set +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_TEGRA194=m +# CONFIG_PCIE_UNIPHIER is not set +# CONFIG_PCIE_XILINX is not set +# CONFIG_PCIE_XILINX_NWL is not set CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_AARDVARK=y CONFIG_PCI_ATS=y +CONFIG_PCI_BRIDGE_EMUL=y # CONFIG_PCI_CNB20LE_QUIRK is not set # CONFIG_PCI_DEBUG is not set CONFIG_PCI_DIRECT=y CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_ECAM=y CONFIG_PCI_ENDPOINT=y CONFIG_PCI_ENDPOINT_CONFIGFS=y # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_PCI_EPF_TEST is not set +# CONFIG_PCI_FTPCI100 is not set +CONFIG_PCI_HISI=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCI_HOST_THUNDER_PEM=y CONFIG_PCI_HYPERV=y CONFIG_PCI_HYPERV_INTERFACE=y +CONFIG_PCI_IMX6=y CONFIG_PCI_IOV=y +# CONFIG_PCI_KEYSTONE_EP is not set +# CONFIG_PCI_KEYSTONE_HOST is not set CONFIG_PCI_LABEL=y +CONFIG_PCI_LAYERSCAPE=y +# CONFIG_PCI_LAYERSCAPE_EP is not set CONFIG_PCI_LOCKLESS_CONFIG=y CONFIG_PCI_MESON=y CONFIG_PCI_MMCONFIG=y @@ -3754,6 +4792,10 @@ CONFIG_PCI_REALLOC_ENABLE_AUTO=y CONFIG_PCI_STUB=m CONFIG_PCI_SW_SWITCHTEC=m +CONFIG_PCI_SYSCALL=y +CONFIG_PCI_TEGRA=y +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y # CONFIG_PCMCIA is not set CONFIG_PCSPKR_PLATFORM=y # CONFIG_PDA_POWER is not set @@ -3770,18 +4812,90 @@ CONFIG_PHANTOM=m CONFIG_PHONET=m CONFIG_PHYLIB=y -CONFIG_PHYLINK=m CONFIG_PHYSICAL_ALIGN=0x200000 CONFIG_PHYSICAL_START=0x1000000 CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_AM654_SERDES is not set +# CONFIG_PHY_BCM_NS_USB2 is not set +# CONFIG_PHY_BCM_NS_USB3 is not set +CONFIG_PHY_BCM_SR_PCIE=y +CONFIG_PHY_BCM_SR_USB=y +# CONFIG_PHY_BERLIN_SATA is not set +# CONFIG_PHY_BERLIN_USB is not set +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_BRCM_USB=y +# CONFIG_PHY_CADENCE_DP is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +CONFIG_PHY_EXYNOS_DP_VIDEO=y +CONFIG_PHY_EXYNOS_MIPI_VIDEO=y +# CONFIG_PHY_EXYNOS_PCIE is not set +CONFIG_PHY_FSL_IMX8MQ_USB=y +# CONFIG_PHY_HI3660_USB is not set +CONFIG_PHY_HI6220_USB=y +CONFIG_PHY_HISI_INNO_USB2=y +CONFIG_PHY_HISTB_COMBPHY=y +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +CONFIG_PHY_MESON8B_USB2=y +CONFIG_PHY_MESON_G12A_USB2=y +CONFIG_PHY_MESON_G12A_USB3_PCIE=y +CONFIG_PHY_MESON_GXL_USB2=y +CONFIG_PHY_MESON_GXL_USB3=y +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_MTK_TPHY=y +# CONFIG_PHY_MTK_UFS is not set +# CONFIG_PHY_MTK_XSPHY is not set +CONFIG_PHY_MVEBU_A3700_COMPHY=y +CONFIG_PHY_MVEBU_A3700_UTMI=y +# CONFIG_PHY_MVEBU_A38X_COMPHY is not set +CONFIG_PHY_MVEBU_CP110_COMPHY=y +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_NS2_USB_DRD=y +# CONFIG_PHY_OCELOT_SERDES is not set # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_QCOM_APQ8064_SATA is not set +# CONFIG_PHY_QCOM_IPQ806X_SATA is not set +# CONFIG_PHY_QCOM_PCIE2 is not set +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +# CONFIG_PHY_QCOM_UFS is not set +# CONFIG_PHY_RCAR_GEN2 is not set +CONFIG_PHY_RCAR_GEN3_PCIE=y +CONFIG_PHY_RCAR_GEN3_USB2=y +CONFIG_PHY_RCAR_GEN3_USB3=m +# CONFIG_PHY_ROCKCHIP_DP is not set +CONFIG_PHY_ROCKCHIP_EMMC=y +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=y +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=y +# CONFIG_PHY_ROCKCHIP_USB is not set +CONFIG_PHY_SUN4I_USB=y +CONFIG_PHY_SUN6I_MIPI_DPHY=m +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TEGRA_XUSB=y +# CONFIG_PHY_UNIPHIER_PCIE is not set +CONFIG_PHY_UNIPHIER_USB2=y +CONFIG_PHY_UNIPHIER_USB3=y +CONFIG_PHY_XGENE=y CONFIG_PI433=m +# CONFIG_PID_IN_CONTEXTIDR is not set CONFIG_PID_NS=y CONFIG_PINCONF=y CONFIG_PINCTRL=y # CONFIG_PINCTRL_AMD is not set +# CONFIG_PINCTRL_APQ8064 is not set +# CONFIG_PINCTRL_APQ8084 is not set +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +# CONFIG_PINCTRL_AS370 is not set +# CONFIG_PINCTRL_AXP209 is not set CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_BCM2835=y +# CONFIG_PINCTRL_BERLIN_BG4CT is not set # CONFIG_PINCTRL_BROXTON is not set CONFIG_PINCTRL_CANNONLAKE=m CONFIG_PINCTRL_CEDARFORK=m @@ -3792,17 +4906,121 @@ CONFIG_PINCTRL_CS47L90=y CONFIG_PINCTRL_CS47L92=y CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS_ARM64=y # CONFIG_PINCTRL_GEMINILAKE is not set CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_IMX_SCU=y CONFIG_PINCTRL_INTEL=m +# CONFIG_PINCTRL_IPQ4019 is not set +# CONFIG_PINCTRL_IPQ8064 is not set +CONFIG_PINCTRL_IPQ8074=y +CONFIG_PINCTRL_IPROC_GPIO=y CONFIG_PINCTRL_LEWISBURG=m CONFIG_PINCTRL_MADERA=m CONFIG_PINCTRL_MCP23S08=m +# CONFIG_PINCTRL_MDM9615 is not set +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MSM=y +# CONFIG_PINCTRL_MSM8660 is not set +CONFIG_PINCTRL_MSM8916=y +# CONFIG_PINCTRL_MSM8960 is not set +CONFIG_PINCTRL_MSM8994=y +CONFIG_PINCTRL_MSM8996=y +CONFIG_PINCTRL_MSM8998=y +# CONFIG_PINCTRL_MSM8X74 is not set +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8516=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MTK_MOORE=y +CONFIG_PINCTRL_MTK_PARIS=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_NS2_MUX=y +# CONFIG_PINCTRL_OCELOT is not set +CONFIG_PINCTRL_OWL=y +CONFIG_PINCTRL_PFC_R8A774A1=y +CONFIG_PINCTRL_PFC_R8A774C0=y +CONFIG_PINCTRL_PFC_R8A77965=y +CONFIG_PINCTRL_PFC_R8A77970=y +CONFIG_PINCTRL_PFC_R8A77980=y +CONFIG_PINCTRL_PFC_R8A77990=y +CONFIG_PINCTRL_PFC_R8A77995=y +# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set +CONFIG_PINCTRL_QCS404=y +CONFIG_PINCTRL_QDF2XXX=y +# CONFIG_PINCTRL_RK805 is not set +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_S700=y +CONFIG_PINCTRL_S900=y +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_SC7180=y +# CONFIG_PINCTRL_SDM660 is not set +CONFIG_PINCTRL_SDM845=y +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_SM8150=y +# CONFIG_PINCTRL_SPRD is not set +# CONFIG_PINCTRL_STMFX is not set +# CONFIG_PINCTRL_SUN4I_A10 is not set +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H6_R=y +# CONFIG_PINCTRL_SUN5I is not set +# CONFIG_PINCTRL_SUN6I_A31 is not set +# CONFIG_PINCTRL_SUN6I_A31_R is not set +# CONFIG_PINCTRL_SUN8I_A23 is not set +# CONFIG_PINCTRL_SUN8I_A23_R is not set +# CONFIG_PINCTRL_SUN8I_A33 is not set +# CONFIG_PINCTRL_SUN8I_A83T is not set +# CONFIG_PINCTRL_SUN8I_A83T_R is not set +# CONFIG_PINCTRL_SUN8I_H3 is not set +CONFIG_PINCTRL_SUN8I_H3_R=y +# CONFIG_PINCTRL_SUN8I_V3S is not set +# CONFIG_PINCTRL_SUN9I_A80 is not set +# CONFIG_PINCTRL_SUN9I_A80_R is not set # CONFIG_PINCTRL_SUNRISEPOINT is not set +CONFIG_PINCTRL_SUNXI=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_UNIPHIER=y +CONFIG_PINCTRL_UNIPHIER_LD11=y +CONFIG_PINCTRL_UNIPHIER_LD20=y +# CONFIG_PINCTRL_UNIPHIER_LD4 is not set +# CONFIG_PINCTRL_UNIPHIER_LD6B is not set +# CONFIG_PINCTRL_UNIPHIER_PRO4 is not set +# CONFIG_PINCTRL_UNIPHIER_PRO5 is not set +# CONFIG_PINCTRL_UNIPHIER_PXS2 is not set +CONFIG_PINCTRL_UNIPHIER_PXS3=y +# CONFIG_PINCTRL_UNIPHIER_SLD8 is not set CONFIG_PINMUX=y CONFIG_PKCS7_MESSAGE_PARSER=y CONFIG_PKCS7_TEST_KEY=m CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +# CONFIG_PL320_MBOX is not set +CONFIG_PL330_DMA=y +CONFIG_PLATFORM_MHU=y # CONFIG_PLIP is not set CONFIG_PLUGIN_HOSTCC="" CONFIG_PM=y @@ -3817,6 +5035,7 @@ CONFIG_PM_DEVFREQ=y CONFIG_PM_DEVFREQ_EVENT=y CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_PM_GENERIC_DOMAINS_OF=y CONFIG_PM_GENERIC_DOMAINS_SLEEP=y CONFIG_PM_NOTIFIER_ERROR_INJECT=m CONFIG_PM_OPP=y @@ -3842,7 +5061,17 @@ # CONFIG_POWERCAP is not set CONFIG_POWER_AVS=y CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_BRCMSTB=y +# CONFIG_POWER_RESET_GPIO is not set +# CONFIG_POWER_RESET_GPIO_RESTART is not set +# CONFIG_POWER_RESET_HISI is not set +# CONFIG_POWER_RESET_LTC2952 is not set +CONFIG_POWER_RESET_MSM=y CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_SYSCON=y +# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set +CONFIG_POWER_RESET_VEXPRESS=y +CONFIG_POWER_RESET_XGENE=y CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set CONFIG_POWER_SUPPLY_HWMON=y @@ -3913,19 +5142,74 @@ CONFIG_PSTORE_RAM=m # CONFIG_PSTORE_ZSTD_COMPRESS is not set CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_DTE=y CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_QORIQ=y CONFIG_PUNIT_ATOM_DEBUG=m CONFIG_PVH=y CONFIG_PVPANIC=m # CONFIG_PWM is not set +# CONFIG_PXA168_ETH is not set +CONFIG_QCOM_A53PLL=y +CONFIG_QCOM_AOSS_QMP=y +CONFIG_QCOM_APCS_IPC=y +CONFIG_QCOM_APR=m +CONFIG_QCOM_BAM_DMA=y +CONFIG_QCOM_CLK_APCS_MSM8916=y +CONFIG_QCOM_CLK_RPMH=y +CONFIG_QCOM_CLK_SMD_RPM=y +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_EBI2=y +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +# CONFIG_QCOM_FASTRPC is not set +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_GENI_SE=y +# CONFIG_QCOM_GSBI is not set +CONFIG_QCOM_HFPLL=y # CONFIG_QCOM_HIDMA is not set # CONFIG_QCOM_HIDMA_MGMT is not set +CONFIG_QCOM_IOMMU=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_QCOM_L2_PMU=y +CONFIG_QCOM_L3_PMU=y +# CONFIG_QCOM_LLCC is not set +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_PDC=y +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_QFPROM=y +CONFIG_QCOM_QMI_HELPERS=m +CONFIG_QCOM_RMTFS_MEM=m +CONFIG_QCOM_RPMCC=y +CONFIG_QCOM_RPMH=y +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=y +CONFIG_QCOM_SCM=y +CONFIG_QCOM_SCM_64=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_QCOM_SMD_RPM=y +CONFIG_QCOM_SMEM=y +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=y +CONFIG_QCOM_SMSM=y +CONFIG_QCOM_SOCINFO=m +CONFIG_QCOM_TSENS=y +CONFIG_QCOM_WCNSS_CTRL=m +CONFIG_QCOM_WDT=m +CONFIG_QCS_GCC_404=y +# CONFIG_QCS_TURING_404 is not set CONFIG_QFMT_V1=m CONFIG_QFMT_V2=m CONFIG_QLGE=m CONFIG_QNX4FS_FS=m # CONFIG_QNX6FS_DEBUG is not set CONFIG_QNX6FS_FS=m +CONFIG_QORIQ_CPUFREQ=y +CONFIG_QORIQ_THERMAL=m +CONFIG_QRTR=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m # CONFIG_QSEMI_PHY is not set CONFIG_QUEUED_RWLOCKS=y CONFIG_QUEUED_SPINLOCKS=y @@ -3943,6 +5227,7 @@ CONFIG_RANDOMIZE_BASE=y CONFIG_RANDOMIZE_MEMORY=y CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y CONFIG_RANDOM_TRUST_BOOTLOADER=y CONFIG_RANDOM_TRUST_CPU=y CONFIG_RAPIDIO=y @@ -3960,10 +5245,15 @@ # CONFIG_RAPIDIO_TSI57X is not set CONFIG_RAPIDIO_TSI721=m CONFIG_RAS=y +CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_RASPBERRYPI_POWER=y CONFIG_RAS_CEC=y # CONFIG_RAS_CEC_DEBUG is not set CONFIG_RATIONAL=y CONFIG_RAW_DRIVER=m +CONFIG_RCAR_DMAC=y +CONFIG_RCAR_GEN3_THERMAL=y +CONFIG_RCAR_THERMAL=y CONFIG_RCU_CPU_STALL_TIMEOUT=60 # CONFIG_RCU_EQS_DEBUG is not set # CONFIG_RCU_EXPERT is not set @@ -3995,10 +5285,10 @@ # CONFIG_READABLE_ASM is not set # CONFIG_READ_ONLY_THP_FOR_FS is not set CONFIG_REALTEK_PHY=m +CONFIG_REBOOT_MODE=y CONFIG_REED_SOLOMON=m CONFIG_REED_SOLOMON_DEC8=y CONFIG_REED_SOLOMON_ENC8=y -# CONFIG_REFCOUNT_FULL is not set CONFIG_REGMAP=y CONFIG_REGMAP_I2C=m CONFIG_REGMAP_IRQ=y @@ -4013,18 +5303,23 @@ # CONFIG_REGULATOR_BCM590XX is not set CONFIG_REGULATOR_BD9571MWV=m # CONFIG_REGULATOR_DA9052 is not set +CONFIG_REGULATOR_DA9063=m # CONFIG_REGULATOR_DA9210 is not set # CONFIG_REGULATOR_DA9211 is not set # CONFIG_REGULATOR_DEBUG is not set # CONFIG_REGULATOR_FAN53555 is not set CONFIG_REGULATOR_FIXED_VOLTAGE=m # CONFIG_REGULATOR_GPIO is not set +# CONFIG_REGULATOR_HI6421 is not set +CONFIG_REGULATOR_HI6421V530=y +CONFIG_REGULATOR_HI655X=y # CONFIG_REGULATOR_ISL6271A is not set # CONFIG_REGULATOR_ISL9305 is not set CONFIG_REGULATOR_LM363X=m # CONFIG_REGULATOR_LP3971 is not set # CONFIG_REGULATOR_LP3972 is not set # CONFIG_REGULATOR_LP872X is not set +CONFIG_REGULATOR_LP873X=m # CONFIG_REGULATOR_LP8755 is not set # CONFIG_REGULATOR_LTC3589 is not set # CONFIG_REGULATOR_LTC3676 is not set @@ -4035,18 +5330,26 @@ # CONFIG_REGULATOR_MAX8660 is not set # CONFIG_REGULATOR_MAX8907 is not set # CONFIG_REGULATOR_MAX8952 is not set +CONFIG_REGULATOR_MAX8973=m # CONFIG_REGULATOR_MC13783 is not set # CONFIG_REGULATOR_MC13892 is not set +# CONFIG_REGULATOR_MCP16502 is not set # CONFIG_REGULATOR_MT6311 is not set +# CONFIG_REGULATOR_MT6380 is not set # CONFIG_REGULATOR_PCAP is not set # CONFIG_REGULATOR_PCF50633 is not set # CONFIG_REGULATOR_PFUZE100 is not set # CONFIG_REGULATOR_PV88060 is not set # CONFIG_REGULATOR_PV88080 is not set # CONFIG_REGULATOR_PV88090 is not set +CONFIG_REGULATOR_QCOM_RPMH=y +CONFIG_REGULATOR_QCOM_SMD_RPM=y +CONFIG_REGULATOR_RK808=m # CONFIG_REGULATOR_RT5033 is not set # CONFIG_REGULATOR_SKY81452 is not set CONFIG_REGULATOR_SLG51000=m +# CONFIG_REGULATOR_SY8106A is not set +# CONFIG_REGULATOR_SY8824X is not set # CONFIG_REGULATOR_TPS51632 is not set # CONFIG_REGULATOR_TPS6105X is not set # CONFIG_REGULATOR_TPS62360 is not set @@ -4054,9 +5357,13 @@ # CONFIG_REGULATOR_TPS6507X is not set # CONFIG_REGULATOR_TPS65086 is not set CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS65217=m # CONFIG_REGULATOR_TPS6524X is not set # CONFIG_REGULATOR_TPS65912 is not set +CONFIG_REGULATOR_UNIPHIER=y # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set +CONFIG_REGULATOR_VCTRL=m +# CONFIG_REGULATOR_VEXPRESS is not set # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set # CONFIG_REGULATOR_WM831X is not set # CONFIG_REGULATOR_WM8994 is not set @@ -4069,10 +5376,30 @@ CONFIG_RELAY=y CONFIG_RELOCATABLE=y # CONFIG_REMOTEPROC is not set +CONFIG_RENESAS_DMA=y +CONFIG_RENESAS_IRQC=y CONFIG_RENESAS_PHY=m +# CONFIG_RENESAS_RZAWDT is not set +CONFIG_RENESAS_USB_DMAC=m +CONFIG_RENESAS_WDT=y CONFIG_RESET_ATTACK_MITIGATION=y +CONFIG_RESET_BERLIN=y +CONFIG_RESET_BRCMSTB=y CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_HISI=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_MESON=y +CONFIG_RESET_MESON_AUDIO_ARB=m +CONFIG_RESET_QCOM_AOSS=y +CONFIG_RESET_QCOM_PDC=m +CONFIG_RESET_SCMI=y +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SUNXI=y +CONFIG_RESET_TEGRA_BPMP=y +CONFIG_RESET_TI_SCI=y CONFIG_RESET_TI_SYSCON=m +CONFIG_RESET_UNIPHIER=y +CONFIG_RESET_UNIPHIER_GLUE=y CONFIG_RETPOLINE=y CONFIG_RETU_WATCHDOG=m CONFIG_RFKILL=y @@ -4088,28 +5415,50 @@ CONFIG_RIONET_RX_SIZE=128 CONFIG_RIONET_TX_SIZE=128 # CONFIG_RMI4_CORE is not set +CONFIG_ROCKCHIP_ANALOGIX_DP=y +CONFIG_ROCKCHIP_CDN_DP=y +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +CONFIG_ROCKCHIP_EFUSE=y +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_INNO_HDMI=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_ROCKCHIP_LVDS=y +# CONFIG_ROCKCHIP_MBOX is not set CONFIG_ROCKCHIP_PHY=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +# CONFIG_ROCKCHIP_RGB is not set +# CONFIG_ROCKCHIP_RK3066_HDMI is not set +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_TIMER=y CONFIG_ROCKETPORT=m +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y CONFIG_ROMFS_BACKED_BY_BLOCK=y CONFIG_ROMFS_FS=m CONFIG_ROMFS_ON_BLOCK=y CONFIG_ROSE=m CONFIG_RPCSEC_GSS_KRB5=m -CONFIG_RPMSG=m CONFIG_RPMSG_CHAR=m CONFIG_RPMSG_QCOM_GLINK_NATIVE=m CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_SMD=y CONFIG_RPMSG_VIRTIO=m CONFIG_RPS=y CONFIG_RSEQ=y +CONFIG_RST_RCAR=y CONFIG_RTC_CLASS=y # CONFIG_RTC_DEBUG is not set # CONFIG_RTC_DRV_ABB5ZES3 is not set CONFIG_RTC_DRV_ABEOZ9=m # CONFIG_RTC_DRV_ABX80X is not set CONFIG_RTC_DRV_AM1805=m +CONFIG_RTC_DRV_ARMADA38X=y # CONFIG_RTC_DRV_BQ32K is not set # CONFIG_RTC_DRV_BQ4802 is not set +CONFIG_RTC_DRV_BRCMSTB=m +# CONFIG_RTC_DRV_CADENCE is not set CONFIG_RTC_DRV_CMOS=y # CONFIG_RTC_DRV_DA9052 is not set # CONFIG_RTC_DRV_DA9063 is not set @@ -4128,10 +5477,16 @@ # CONFIG_RTC_DRV_DS1742 is not set # CONFIG_RTC_DRV_DS2404 is not set # CONFIG_RTC_DRV_DS3232 is not set +CONFIG_RTC_DRV_EFI=y # CONFIG_RTC_DRV_EM3027 is not set # CONFIG_RTC_DRV_FM3130 is not set +CONFIG_RTC_DRV_FSL_FTM_ALARM=m CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_HYM8563=m +# CONFIG_RTC_DRV_IMXDI is not set +CONFIG_RTC_DRV_IMX_SC=m # CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set # CONFIG_RTC_DRV_ISL1208 is not set # CONFIG_RTC_DRV_M41T80 is not set # CONFIG_RTC_DRV_M41T93 is not set @@ -4145,7 +5500,12 @@ # CONFIG_RTC_DRV_MAX8907 is not set # CONFIG_RTC_DRV_MC13XXX is not set # CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_DRV_MESON_VRTC=m # CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_MT7622 is not set +# CONFIG_RTC_DRV_MV is not set +# CONFIG_RTC_DRV_MXC is not set +# CONFIG_RTC_DRV_MXC_V2 is not set # CONFIG_RTC_DRV_PCAP is not set # CONFIG_RTC_DRV_PCF2123 is not set # CONFIG_RTC_DRV_PCF2127 is not set @@ -4155,7 +5515,11 @@ CONFIG_RTC_DRV_PCF85363=m # CONFIG_RTC_DRV_PCF8563 is not set # CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_PL030 is not set +CONFIG_RTC_DRV_PL031=y +# CONFIG_RTC_DRV_R7301 is not set # CONFIG_RTC_DRV_R9701 is not set +CONFIG_RTC_DRV_RK808=m # CONFIG_RTC_DRV_RP5C01 is not set # CONFIG_RTC_DRV_RS5C348 is not set # CONFIG_RTC_DRV_RS5C372 is not set @@ -4168,12 +5532,19 @@ # CONFIG_RTC_DRV_RX8025 is not set # CONFIG_RTC_DRV_RX8581 is not set # CONFIG_RTC_DRV_S35390A is not set +CONFIG_RTC_DRV_S3C=y CONFIG_RTC_DRV_SD3078=m +# CONFIG_RTC_DRV_SH is not set +CONFIG_RTC_DRV_SNVS=m # CONFIG_RTC_DRV_STK17TA8 is not set +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_TEGRA=y # CONFIG_RTC_DRV_TEST is not set # CONFIG_RTC_DRV_V3020 is not set # CONFIG_RTC_DRV_WM831X is not set # CONFIG_RTC_DRV_X1205 is not set +CONFIG_RTC_DRV_XGENE=y +# CONFIG_RTC_DRV_ZYNQMP is not set CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" CONFIG_RTC_I2C_AND_SPI=m @@ -4193,12 +5564,14 @@ CONFIG_RWSEM_SPIN_ON_OWNER=y CONFIG_RXKAD=y CONFIG_S2IO=m +CONFIG_S3C2410_WATCHDOG=y # CONFIG_SAMPLES is not set # CONFIG_SAMSUNG_LAPTOP is not set # CONFIG_SAMSUNG_Q10 is not set # CONFIG_SATA_ACARD_AHCI is not set CONFIG_SATA_AHCI=m CONFIG_SATA_AHCI_PLATFORM=m +# CONFIG_SATA_AHCI_SEATTLE is not set CONFIG_SATA_DWC=m # CONFIG_SATA_DWC_DEBUG is not set CONFIG_SATA_DWC_OLD_DMA=y @@ -4209,6 +5582,7 @@ CONFIG_SATA_PMP=y # CONFIG_SATA_PROMISE is not set # CONFIG_SATA_QSTOR is not set +CONFIG_SATA_RCAR=y # CONFIG_SATA_SIL is not set # CONFIG_SATA_SIL24 is not set # CONFIG_SATA_SIS is not set @@ -4272,6 +5646,8 @@ CONFIG_SCSI_FDOMAIN_PCI=m CONFIG_SCSI_FLASHPOINT=y CONFIG_SCSI_GDTH=m +CONFIG_SCSI_HISI_SAS=y +CONFIG_SCSI_HISI_SAS_PCI=y CONFIG_SCSI_HPSA=m CONFIG_SCSI_HPTIOP=m CONFIG_SCSI_IMM=m @@ -4309,9 +5685,7 @@ CONFIG_SCSI_QLA_ISCSI=m CONFIG_SCSI_QLOGIC_1280=m CONFIG_SCSI_SAS_ATA=y -CONFIG_SCSI_SAS_ATTRS=m CONFIG_SCSI_SAS_HOST_SMP=y -CONFIG_SCSI_SAS_LIBSAS=m CONFIG_SCSI_SCAN_ASYNC=y CONFIG_SCSI_SIM710=m CONFIG_SCSI_SMARTPQI=m @@ -4334,6 +5708,13 @@ # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SDM_CAMCC_845=m +CONFIG_SDM_DISPCC_845=y +# CONFIG_SDM_GCC_660 is not set +CONFIG_SDM_GCC_845=y +CONFIG_SDM_GPUCC_845=y +# CONFIG_SDM_LPASSCC_845 is not set +CONFIG_SDM_VIDEOCC_845=y CONFIG_SECCOMP=y CONFIG_SECCOMP_FILTER=y CONFIG_SECONDARY_TRUSTED_KEYRING=y @@ -4401,6 +5782,8 @@ CONFIG_SENSORS_AMC6821=m CONFIG_SENSORS_APDS990X=m CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ARM_SCMI=y +CONFIG_SENSORS_ARM_SCPI=y CONFIG_SENSORS_AS370=m CONFIG_SENSORS_ASB100=m CONFIG_SENSORS_ASC7621=m @@ -4427,6 +5810,7 @@ CONFIG_SENSORS_G762=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m +# CONFIG_SENSORS_GPIO_FAN is not set # CONFIG_SENSORS_HDAPS is not set CONFIG_SENSORS_HIH6130=m CONFIG_SENSORS_I5500=m @@ -4488,10 +5872,12 @@ CONFIG_SENSORS_NCT7904=m CONFIG_SENSORS_NPCM7XX=m CONFIG_SENSORS_NTC_THERMISTOR=m +# CONFIG_SENSORS_OCC_P8_I2C is not set CONFIG_SENSORS_PC87360=m CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_PCF8591=m CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m CONFIG_SENSORS_SCH5627=m CONFIG_SENSORS_SCH5636=m CONFIG_SENSORS_SCH56XX_COMMON=m @@ -4514,6 +5900,7 @@ CONFIG_SENSORS_TMP401=m CONFIG_SENSORS_TMP421=m CONFIG_SENSORS_TSL2550=m +# CONFIG_SENSORS_VEXPRESS is not set CONFIG_SENSORS_VIA686A=m CONFIG_SENSORS_VIA_CPUTEMP=m CONFIG_SENSORS_VT1211=m @@ -4532,6 +5919,8 @@ CONFIG_SENSORS_WM831X=m CONFIG_SENSORS_XGENE=m CONFIG_SERIAL_8250=y +# CONFIG_SERIAL_8250_ASPEED_VUART is not set +CONFIG_SERIAL_8250_BCM2835AUX=y CONFIG_SERIAL_8250_CONSOLE=y # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set # CONFIG_SERIAL_8250_DETECT_IRQ is not set @@ -4541,30 +5930,42 @@ CONFIG_SERIAL_8250_EXAR=m CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_FSL=y CONFIG_SERIAL_8250_LPSS=m CONFIG_SERIAL_8250_MANY_PORTS=y CONFIG_SERIAL_8250_MEN_MCB=m CONFIG_SERIAL_8250_MID=m +CONFIG_SERIAL_8250_MT6577=y CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_OMAP=y +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_PNP=y CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_RT288X=y CONFIG_SERIAL_8250_RUNTIME_UARTS=32 CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_UNIPHIER=y CONFIG_SERIAL_ALTERA_JTAGUART=m CONFIG_SERIAL_ALTERA_UART=m CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y CONFIG_SERIAL_ARC=m CONFIG_SERIAL_ARC_NR_PORTS=1 +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_DEV_BUS is not set CONFIG_SERIAL_EARLYCON=y +# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set CONFIG_SERIAL_FSL_LINFLEXUART=m CONFIG_SERIAL_FSL_LPUART=m # CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y # CONFIG_SERIAL_IPOCTAL is not set CONFIG_SERIAL_JSM=m CONFIG_SERIAL_KGDB_NMI=y @@ -4572,19 +5973,48 @@ CONFIG_SERIAL_MAX310X=y CONFIG_SERIAL_MCTRL_GPIO=y CONFIG_SERIAL_MEN_Z135=m +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_MVEBU_CONSOLE=y +CONFIG_SERIAL_MVEBU_UART=y CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_OF_PLATFORM=y +CONFIG_SERIAL_OWL=y +CONFIG_SERIAL_OWL_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=y +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y CONFIG_SERIAL_RP2=m CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_SAMSUNG=y +CONFIG_SERIAL_SAMSUNG_CONSOLE=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_UARTS_4=y CONFIG_SERIAL_SC16IS7XX=m CONFIG_SERIAL_SC16IS7XX_CORE=m CONFIG_SERIAL_SC16IS7XX_I2C=y CONFIG_SERIAL_SC16IS7XX_SPI=y CONFIG_SERIAL_SCCNXP=y CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SH_SCI=y +CONFIG_SERIAL_SH_SCI_CONSOLE=y +CONFIG_SERIAL_SH_SCI_DMA=y +CONFIG_SERIAL_SH_SCI_EARLYCON=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=18 +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SPRD is not set +CONFIG_SERIAL_TEGRA=y +CONFIG_SERIAL_TEGRA_TCU=y +CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y CONFIG_SERIAL_UARTLITE=m CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_XILINX_PS_UART=y +CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y CONFIG_SERIO=y CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_AMBAKMI=y +# CONFIG_SERIO_APBPS2 is not set CONFIG_SERIO_ARC_PS2=m CONFIG_SERIO_CT82C710=m CONFIG_SERIO_GPIO_PS2=m @@ -4595,6 +6025,8 @@ CONFIG_SERIO_PS2MULT=m CONFIG_SERIO_RAW=m CONFIG_SERIO_SERPORT=m +# CONFIG_SERIO_SUN4I_PS2 is not set +CONFIG_SETEND_EMULATION=y CONFIG_SFC=m CONFIG_SFC_FALCON=m CONFIG_SFC_MCDI_LOGGING=y @@ -4610,9 +6042,12 @@ CONFIG_SHIFT_FS_POSIX_ACL=y CONFIG_SHMEM=y CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_TMU=y CONFIG_SIGNALFD=y CONFIG_SIGNATURE=y CONFIG_SIGNED_PE_FILE_VERIFICATION=y +# CONFIG_SIMPLE_PM_BUS is not set CONFIG_SIOX=m CONFIG_SIOX_BUS_GPIO=m CONFIG_SKB_EXTENSIONS=y @@ -4628,8 +6063,10 @@ CONFIG_SLAB_MERGE_DEFAULT=y CONFIG_SLHC=y CONFIG_SLICOSS=m +CONFIG_SLIC_DS26522=m CONFIG_SLIMBUS=m CONFIG_SLIM_QCOM_CTRL=m +CONFIG_SLIM_QCOM_NGD_CTRL=m CONFIG_SLIP=m CONFIG_SLIP_COMPRESSED=y CONFIG_SLIP_MODE_SLIP6=y @@ -4647,8 +6084,18 @@ CONFIG_SMSC37B787_WDT=m # CONFIG_SMSC_PHY is not set CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SM_GCC_8150=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y CONFIG_SOCK_CGROUP_DATA=y CONFIG_SOCK_VALIDATE_XMIT=y +CONFIG_SOC_BRCMSTB=y +CONFIG_SOC_BUS=y +CONFIG_SOC_RENESAS=y +CONFIG_SOC_SAMSUNG=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y CONFIG_SOC_TI=y CONFIG_SOFTLOCKUP_DETECTOR=y CONFIG_SOFT_WATCHDOG=m @@ -4667,7 +6114,11 @@ # CONFIG_SPEAKUP is not set CONFIG_SPI=y CONFIG_SPI_ALTERA=m +CONFIG_SPI_ARMADA_3700=y CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM_QSPI=y CONFIG_SPI_BITBANG=m CONFIG_SPI_BUTTERFLY=m CONFIG_SPI_CADENCE=m @@ -4677,29 +6128,65 @@ CONFIG_SPI_DW_MMIO=m CONFIG_SPI_DW_PCI=m CONFIG_SPI_DYNAMIC=y +CONFIG_SPI_FSL_DSPI=y +CONFIG_SPI_FSL_LPSPI=y +CONFIG_SPI_FSL_QUADSPI=y +# CONFIG_SPI_FSL_SPI is not set CONFIG_SPI_GPIO=m +# CONFIG_SPI_HISI_SFC_V3XX is not set +CONFIG_SPI_IMX=m CONFIG_SPI_LM70_LLP=m CONFIG_SPI_LOOPBACK_TEST=m CONFIG_SPI_MASTER=y CONFIG_SPI_MEM=y +CONFIG_SPI_MESON_SPICC=m +CONFIG_SPI_MESON_SPIFC=m +# CONFIG_SPI_MT65XX is not set CONFIG_SPI_MXIC=m CONFIG_SPI_NXP_FLEXSPI=m CONFIG_SPI_OC_TINY=m +# CONFIG_SPI_OMAP24XX is not set +CONFIG_SPI_ORION=y +CONFIG_SPI_PL022=y CONFIG_SPI_PXA2XX=m CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_QCOM_GENI=m +CONFIG_SPI_QCOM_QSPI=m +CONFIG_SPI_QUP=y # CONFIG_SPI_ROCKCHIP is not set +# CONFIG_SPI_RSPI is not set +CONFIG_SPI_S3C64XX=y CONFIG_SPI_SC18IS602=m +# CONFIG_SPI_SH_HSPI is not set +CONFIG_SPI_SH_MSIOF=m CONFIG_SPI_SIFIVE=m CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_MT27XX=m CONFIG_SPI_SLAVE_SYSTEM_CONTROL=m CONFIG_SPI_SLAVE_TIME=m CONFIG_SPI_SPIDEV=m +# CONFIG_SPI_SPRD is not set +# CONFIG_SPI_SPRD_ADI is not set +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=y +# CONFIG_SPI_SYNQUACER is not set +# CONFIG_SPI_TEGRA114 is not set +# CONFIG_SPI_TEGRA20_SFLASH is not set +# CONFIG_SPI_TEGRA20_SLINK is not set +# CONFIG_SPI_THUNDERX is not set CONFIG_SPI_TLE62X0=m +# CONFIG_SPI_UNIPHIER is not set CONFIG_SPI_XCOMM=m # CONFIG_SPI_XILINX is not set +# CONFIG_SPI_XLP is not set CONFIG_SPI_ZYNQMP_GQSPI=m CONFIG_SPLIT_PTLOCK_CPUS=4 # CONFIG_SPMI is not set +CONFIG_SPRD_COMMON_CLK=y +# CONFIG_SPRD_DMA is not set +CONFIG_SPRD_SC9860_CLK=y +CONFIG_SPRD_TIMER=y +# CONFIG_SPRD_WATCHDOG is not set CONFIG_SQUASHFS=y # CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set # CONFIG_SQUASHFS_DECOMP_MULTI is not set @@ -4726,6 +6213,7 @@ CONFIG_SSB_POSSIBLE=y CONFIG_SSB_SPROM=y CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_PER_TASK=y CONFIG_STACKPROTECTOR_STRONG=y CONFIG_STACKTRACE=y CONFIG_STACKTRACE_SUPPORT=y @@ -4733,6 +6221,7 @@ CONFIG_STACK_VALIDATION=y CONFIG_STAGING=y CONFIG_STAGING_APEX_DRIVER=m +# CONFIG_STAGING_BOARD is not set CONFIG_STAGING_GASKET_FRAMEWORK=m CONFIG_STAGING_MEDIA=y # CONFIG_STANDALONE is not set @@ -4747,6 +6236,18 @@ CONFIG_STRICT_MODULE_RWX=y # CONFIG_STRING_SELFTEST is not set # CONFIG_STRIP_ASM_SYMS is not set +CONFIG_STUB_CLK_HI3660=y +CONFIG_STUB_CLK_HI6220=y +# CONFIG_SUN4I_EMAC is not set +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +# CONFIG_SUN8I_A83T_CCU is not set +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_R_CCU=y CONFIG_SUNDANCE=m # CONFIG_SUNDANCE_MMIO is not set CONFIG_SUNRPC=m @@ -4756,6 +6257,10 @@ CONFIG_SUNRPC_GSS=m CONFIG_SUNRPC_SWAP=y CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUNXI_CCU=y +CONFIG_SUNXI_RSB=y +CONFIG_SUNXI_SRAM=y +CONFIG_SUNXI_WATCHDOG=m CONFIG_SUN_PARTITION=y CONFIG_SURFACE3_WMI=m # CONFIG_SURFACE_PRO3_BUTTON is not set @@ -4765,15 +6270,25 @@ CONFIG_SWAP=y CONFIG_SWIOTLB=y CONFIG_SWPHY=y +CONFIG_SWP_EMULATION=y CONFIG_SW_SYNC=y CONFIG_SYNCLINK=m CONFIG_SYNCLINKMP=m CONFIG_SYNCLINK_GT=m CONFIG_SYNC_FILE=y CONFIG_SYN_COOKIES=y +CONFIG_SYSCON_REBOOT_MODE=y CONFIG_SYSCTL=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSC_R8A774A1=y +CONFIG_SYSC_R8A774C0=y +CONFIG_SYSC_R8A77965=y +CONFIG_SYSC_R8A77970=y +CONFIG_SYSC_R8A77980=y +CONFIG_SYSC_R8A77990=y +CONFIG_SYSC_R8A77995=y +CONFIG_SYSC_RCAR=y CONFIG_SYSFS=y # CONFIG_SYSFS_DEPRECATED is not set CONFIG_SYSFS_SYSCALL=y @@ -4783,6 +6298,8 @@ CONFIG_SYSTEM_DATA_VERIFICATION=y CONFIG_SYSTEM_EXTRA_CERTIFICATE=y CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem" +CONFIG_SYSTEM_REVOCATION_LIST=y CONFIG_SYSTEM_TRUSTED_KEYRING=y CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem" CONFIG_SYSV68_PARTITION=y @@ -4790,6 +6307,9 @@ CONFIG_SYSVIPC_COMPAT=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_SYSV_FS=m +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_SYS_SUPPORTS_SH_CMT=y +CONFIG_SYS_SUPPORTS_SH_TMU=y # CONFIG_TABLET_SERIAL_WACOM4 is not set # CONFIG_TABLET_USB_ACECAD is not set # CONFIG_TABLET_USB_AIPTEK is not set @@ -4807,6 +6327,7 @@ CONFIG_TASK_XACCT=y # CONFIG_TCG_ATMEL is not set CONFIG_TCG_CRB=y +# CONFIG_TCG_FTPM_TEE is not set # CONFIG_TCG_INFINEON is not set # CONFIG_TCG_NSC is not set CONFIG_TCG_TIS=y @@ -4841,6 +6362,25 @@ CONFIG_TCP_CONG_WESTWOOD=m CONFIG_TCP_CONG_YEAH=m CONFIG_TCP_MD5SIG=y +CONFIG_TEE=y +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA210_ADMA=m +CONFIG_TEGRA_ACONNECT=m +CONFIG_TEGRA_AHB=y +CONFIG_TEGRA_BPMP=y +CONFIG_TEGRA_BPMP_THERMAL=m +CONFIG_TEGRA_CLK_DFLL=y +# CONFIG_TEGRA_GMI is not set +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_TEGRA_HSP_MBOX=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_MC=y +CONFIG_TEGRA_SOCTHERM=m +CONFIG_TEGRA_TIMER=y +# CONFIG_TEGRA_VDE is not set +# CONFIG_TEGRA_WATCHDOG is not set CONFIG_TELCLOCK=m # CONFIG_TERANETICS_PHY is not set # CONFIG_TEST_ASYNC_DRIVER_PROBE is not set @@ -4862,17 +6402,24 @@ CONFIG_THERMAL_GOV_STEP_WISE=y CONFIG_THERMAL_GOV_USER_SPACE=y CONFIG_THERMAL_HWMON=y +# CONFIG_THERMAL_MMIO is not set +CONFIG_THERMAL_OF=y CONFIG_THERMAL_STATISTICS=y CONFIG_THERMAL_WRITABLE_TRIPS=y CONFIG_THP_SWAP=y CONFIG_THREAD_INFO_IN_TASK=y # CONFIG_THUNDERBOLT is not set +CONFIG_THUNDERX2_PMU=m CONFIG_TICK_ONESHOT=y CONFIG_TIFM_7XX1=m CONFIG_TIFM_CORE=m CONFIG_TIGON3=m CONFIG_TIGON3_HWMON=y CONFIG_TIMERFD=y +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_IMX_SYS_CTR=y +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y CONFIG_TINYDRM_HX8357D=m CONFIG_TINYDRM_ILI9225=m CONFIG_TINYDRM_ILI9341=m @@ -4884,6 +6431,14 @@ CONFIG_TIPC_DIAG=m # CONFIG_TIPC_MEDIA_IB is not set CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TI_MESSAGE_MANAGER=y +CONFIG_TI_SCI_CLK=y +# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set +CONFIG_TI_SCI_INTA_IRQCHIP=y +CONFIG_TI_SCI_INTA_MSI_DOMAIN=y +CONFIG_TI_SCI_INTR_IRQCHIP=y +CONFIG_TI_SCI_PM_DOMAINS=y +CONFIG_TI_SCI_PROTOCOL=y # CONFIG_TI_ST is not set CONFIG_TLS=m CONFIG_TLS_DEVICE=y @@ -4914,8 +6469,6 @@ CONFIG_TRACING_MAP=y CONFIG_TRACING_SUPPORT=y CONFIG_TRANSPARENT_HUGEPAGE=y -CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set CONFIG_TRANSPARENT_HUGE_PAGECACHE=y CONFIG_TREE_RCU=y CONFIG_TREE_SRCU=y @@ -4925,6 +6478,7 @@ CONFIG_TTY_PRINTK_LEVEL=6 CONFIG_TUN=y # CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_TURRIS_MOX_RWTM is not set # CONFIG_TYPEC is not set # CONFIG_UBSAN is not set CONFIG_UBSAN_ALIGNMENT=y @@ -4935,6 +6489,7 @@ CONFIG_UDF_FS=m CONFIG_UDMABUF=y CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y CONFIG_UEFI_CPER_X86=y CONFIG_UEVENT_HELPER=y CONFIG_UEVENT_HELPER_PATH="" @@ -4957,6 +6512,11 @@ CONFIG_ULTRIX_PARTITION=y CONFIG_UNICODE=y # CONFIG_UNICODE_NORMALIZATION_SELFTEST is not set +CONFIG_UNIPHIER_EFUSE=y +# CONFIG_UNIPHIER_MDMAC is not set +CONFIG_UNIPHIER_SYSTEM_BUS=y +CONFIG_UNIPHIER_THERMAL=y +CONFIG_UNIPHIER_WATCHDOG=y CONFIG_UNISYSSPAR=y # CONFIG_UNISYS_VISORBUS is not set CONFIG_UNIX=y @@ -4964,6 +6524,7 @@ CONFIG_UNIXWARE_DISKLABEL=y CONFIG_UNIX_DIAG=m CONFIG_UNIX_SCM=y +CONFIG_UNMAP_KERNEL_AT_EL0=y CONFIG_UNUSED_SYMBOLS=y CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_GUESS is not set @@ -5025,7 +6586,11 @@ # CONFIG_USB_MICROTEK is not set # CONFIG_USB_MON is not set # CONFIG_USB_MOUSE is not set +CONFIG_USB_MTU3=y +# CONFIG_USB_MTU3_DEBUG is not set +CONFIG_USB_MTU3_HOST=y # CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_MXS_PHY is not set # CONFIG_USB_NET_DRIVERS is not set # CONFIG_USB_OHCI_HCD is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y @@ -5034,6 +6599,7 @@ # CONFIG_USB_OTG_WHITELIST is not set # CONFIG_USB_OXU210HP_HCD is not set CONFIG_USB_PCI=y +CONFIG_USB_PHY=y # CONFIG_USB_PRINTER is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_ROLE_SWITCH is not set @@ -5042,18 +6608,26 @@ # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_STORAGE is not set CONFIG_USB_SUPPORT=y +CONFIG_USB_TEGRA_PHY=y # CONFIG_USB_TEST is not set # CONFIG_USB_TMC is not set # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_UHCI_HCD is not set +CONFIG_USB_ULPI=y # CONFIG_USB_ULPI_BUS is not set +CONFIG_USB_ULPI_VIEWPORT=y # CONFIG_USB_USS720 is not set # CONFIG_USB_WDM is not set # CONFIG_USB_WUSB_CBAF is not set CONFIG_USB_XHCI_DBGCAP=y CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_HISTB is not set +CONFIG_USB_XHCI_MTK=y +# CONFIG_USB_XHCI_MVEBU is not set CONFIG_USB_XHCI_PCI=y CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_RCAR=m +CONFIG_USB_XHCI_TEGRA=y # CONFIG_USB_YUREX is not set CONFIG_USELIB=y CONFIG_USERFAULTFD=y @@ -5068,18 +6642,19 @@ # CONFIG_VBOXGUEST is not set CONFIG_VERSION_SIGNATURE="" CONFIG_VETH=m +CONFIG_VEXPRESS_CONFIG=y +CONFIG_VEXPRESS_SYSCFG=y CONFIG_VFAT_FS=y CONFIG_VFIO=y CONFIG_VFIO_IOMMU_TYPE1=y CONFIG_VFIO_MDEV=m CONFIG_VFIO_MDEV_DEVICE=m CONFIG_VFIO_NOIOMMU=y -CONFIG_VFIO_PCI=y CONFIG_VFIO_PCI_IGD=y CONFIG_VFIO_PCI_INTX=y CONFIG_VFIO_PCI_MMAP=y CONFIG_VFIO_PCI_VGA=y -CONFIG_VFIO_VIRQFD=y +# CONFIG_VFIO_PLATFORM is not set CONFIG_VGA_ARB=y CONFIG_VGA_ARB_MAX_GPUS=16 CONFIG_VGA_CONSOLE=y @@ -5091,10 +6666,16 @@ CONFIG_VHOST_SCSI=m CONFIG_VHOST_VSOCK=m CONFIG_VIA_WDT=m +CONFIG_VIDEOMODE_HELPERS=y # CONFIG_VIDEO_ADV_DEBUG is not set # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_MESON_AO_CEC=m +CONFIG_VIDEO_MESON_G12A_AO_CEC=m +CONFIG_VIDEO_SAMSUNG_S5P_CEC=m CONFIG_VIDEO_SECO_CEC=m CONFIG_VIDEO_SECO_RC=y +# CONFIG_VIDEO_SUNXI is not set +CONFIG_VIDEO_TEGRA_HDMI_CEC=m CONFIG_VIRTIO=y CONFIG_VIRTIO_BALLOON=y CONFIG_VIRTIO_BLK=m @@ -5102,6 +6683,7 @@ CONFIG_VIRTIO_CONSOLE=y CONFIG_VIRTIO_FS=m CONFIG_VIRTIO_INPUT=m +# CONFIG_VIRTIO_IOMMU is not set CONFIG_VIRTIO_MENU=y CONFIG_VIRTIO_MMIO=y CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y @@ -5151,6 +6733,7 @@ CONFIG_W83977F_WDT=m CONFIG_WAFER_WDT=m CONFIG_WAN=y +CONFIG_WANT_DEV_COREDUMP=y CONFIG_WANXL=m # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_WATCHDOG=y @@ -5278,14 +6861,20 @@ CONFIG_XFS_QUOTA=y CONFIG_XFS_RT=y # CONFIG_XFS_WARN is not set +# CONFIG_XGENE_DMA is not set +# CONFIG_XGENE_PMU is not set +# CONFIG_XGENE_SLIMPRO_MBOX is not set CONFIG_XIAOMI_WMI=m CONFIG_XILINX_AXI_EMAC=m +# CONFIG_XILINX_DMA is not set # CONFIG_XILINX_GMII2RGMII is not set CONFIG_XILINX_LL_TEMAC=m CONFIG_XILINX_SDFEC=m CONFIG_XILINX_VCU=m CONFIG_XILINX_WATCHDOG=m +# CONFIG_XILINX_ZYNQMP_DMA is not set # CONFIG_XILLYBUS is not set +# CONFIG_XIL_AXIS_FIFO is not set CONFIG_XOR_BLOCKS=m CONFIG_XPS=y CONFIG_XXHASH=y @@ -5326,0 +6916,5 @@ +CONFIG_ZYNQMP_FIRMWARE=y +# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set +CONFIG_ZYNQMP_IPI_MBOX=y +CONFIG_ZYNQMP_PM_DOMAINS=y +CONFIG_ZYNQMP_POWER=y diff -u linux-azure-5.4.0/debian.azure/control.d/vars.azure linux-azure-5.4.0/debian.azure/control.d/vars.azure --- linux-azure-5.4.0/debian.azure/control.d/vars.azure +++ linux-azure-5.4.0/debian.azure/control.d/vars.azure @@ -1,6 +1,6 @@ -arch="amd64" +arch="amd64 arm64" supported="Azure" target="Geared toward Azure systems." desc="=HUMAN= SMP" -bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64]" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64]" provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff -u linux-azure-5.4.0/debian.azure/control.stub.in linux-azure-5.4.0/debian.azure/control.stub.in --- linux-azure-5.4.0/debian.azure/control.stub.in +++ linux-azure-5.4.0/debian.azure/control.stub.in @@ -35,6 +35,7 @@ libnuma-dev [amd64 arm64 ppc64el s390x] , dkms , curl , + dwarves [amd64 arm64 armhf ppc64el s390x] , Build-Depends-Indep: xmlto , docbook-utils , @@ -64,7 +65,7 @@ Package: SRCPKGNAME-tools-PKGVER-ABINUM Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common @@ -77,7 +78,7 @@ Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common diff -u linux-azure-5.4.0/debian.azure/etc/getabis linux-azure-5.4.0/debian.azure/etc/getabis --- linux-azure-5.4.0/debian.azure/etc/getabis +++ linux-azure-5.4.0/debian.azure/etc/getabis @@ -5,6 +5,7 @@ "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-azure" "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-azure" "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-azure" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-azure" "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-signed-azure" "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-azure" ) @@ -13,4 +14,5 @@ getall amd64 azure +getall arm64 azure # Ports arches and flavours. diff -u linux-azure-5.4.0/debian.azure/etc/kernelconfig linux-azure-5.4.0/debian.azure/etc/kernelconfig --- linux-azure-5.4.0/debian.azure/etc/kernelconfig +++ linux-azure-5.4.0/debian.azure/etc/kernelconfig @@ -3,5 +3,5 @@ family='ports' else - archs="amd64" + archs="amd64 arm64" family='ubuntu' fi diff -u linux-azure-5.4.0/debian.azure/reconstruct linux-azure-5.4.0/debian.azure/reconstruct --- linux-azure-5.4.0/debian.azure/reconstruct +++ linux-azure-5.4.0/debian.azure/reconstruct @@ -1,7 +1,11 @@ # Recreate any symlinks created since the orig. # Remove any files deleted from the orig. +rm -f 'arch/parisc/kernel/module.lds' +rm -f 'arch/parisc/lib/string.S' +rm -f 'arch/powerpc/include/uapi/asm/bpf_perf_event.h' rm -f 'arch/um/kernel/gmon_syms.c' rm -f 'arch/x86/events/intel/rapl.c' +rm -f 'arch/x86/include/asm/refcount.h' rm -f 'drivers/crypto/hisilicon/sgl.h' rm -f 'drivers/gpu/drm/amd/display/dc/calcs/dcn_calc_math.h' rm -f 'drivers/input/serio/i8042-ppcio.h' @@ -9,8 +13,11 @@ rm -f 'drivers/net/can/rx-offload.c' rm -f 'drivers/staging/mt7621-dma/mtk-hsdma.c' rm -f 'include/Kbuild' +rm -f 'include/linux/kd.h' +rm -f 'include/trace/events/random.h' rm -f 'include/uapi/rdma/nes-abi.h' rm -f 'kernel/elfcore.c' +rm -f 'tools/build/feature/test-libpython-version.c' 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' @@ -20,6 +27,8 @@ 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--virtualbox-guest' +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' @@ -29,6 +38,7 @@ chmod +x 'debian/scripts/misc/final-checks' chmod +x 'debian/scripts/misc/find-missing-sauce.sh' chmod +x 'debian/scripts/misc/find-obsolete-firmware' +chmod +x 'debian/scripts/misc/fips-checks' chmod +x 'debian/scripts/misc/fw-to-ihex.sh' chmod +x 'debian/scripts/misc/gen-auto-reconstruct' chmod +x 'debian/scripts/misc/get-firmware' @@ -63,4 +73,7 @@ chmod +x 'scripts/kmsg-doc' chmod +x 'scripts/parse-maintainers.pl' +chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' +chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' +chmod +x 'update-dkms-versions' chmod +x 'update-version-dkms' exit 0 diff -u linux-azure-5.4.0/debian.azure/tracking-bug linux-azure-5.4.0/debian.azure/tracking-bug --- linux-azure-5.4.0/debian.azure/tracking-bug +++ linux-azure-5.4.0/debian.azure/tracking-bug @@ -1 +1 @@ -1935858 2021.06.21-10 +2003463 2023.01.02-2 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/abiname +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/abiname @@ -1 +0,0 @@ -79 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/generic +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/generic @@ -1,23829 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xc3655d1f kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x24ce0293 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x4b0edc63 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x8e37f530 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xac478ab4 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xb5f24bed crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xdec41624 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/sha3_generic 0x595266d0 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xa58bbedb crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xb71e713f crypto_sha3_final -EXPORT_SYMBOL crypto/sm3_generic 0x0354c7bd crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x4ed9b5dc crypto_sm3_update -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x0628b5ec acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x1ffa3afb acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x5c1b0154 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x96c49384 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x59b73287 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x6b173e4d 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 0x1b71ac0a pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x204f9a31 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x486fadb4 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x537e9988 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x61685a87 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xa9b73045 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xaaf786eb pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb9808abe paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xc4b8f907 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xc755f585 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xd2d94b5f pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xd4428691 pi_write_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x79781e36 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x693612b7 rsi_bt_ops -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2c6659a7 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa3d30cd7 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb47cd619 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5d2d24f ipmi_smi_watcher_register -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 0x5071c23b st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7b88aa6c st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd15cbf68 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf8765adc st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x02045975 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa76b9a6e xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc3bf3d53 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x638a001e atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9c492462 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xeddcf7c8 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x051a2f2d fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05ad14a2 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05ee61a7 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x06a09fcc fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1217bbbc fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x15c7f924 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x16ea150a fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1e00e3cb fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ed21e40 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x26e568e9 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x39d36803 fw_iso_buffer_init -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 0x5287907a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d4e8437 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x71e47382 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x85c18799 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bfb487d fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d5e6108 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaced800c fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc25b9b55 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0e374ee fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd5d1f592 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9dc5e99 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe8ec1378 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9a289c7 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf755519f fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf78f9280 fw_core_handle_request -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0121e0f5 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x031f5255 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x037a3d56 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fbb9df drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04072955 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fc3c50 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0651969f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x069f7a13 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d07b81 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f529eb drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0806750f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085625a8 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09493a54 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aed2742 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af9c598 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c0138b2 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d387742 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da6e6d6 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0efe9c10 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1eb322 drm_gem_shmem_pin -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 0x10ac0819 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b4e97b drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10fe6bdb drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1291aa8e drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cada86 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12dbbb79 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12eaf48d drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x133efd34 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14850263 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x151e5619 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1525841c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c1baec drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ed251a drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17400f34 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a58268 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ab8139 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1828399a drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x183653a2 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b44522 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x192f24b0 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x195e601c drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x199de008 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e80671 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a701de8 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b00cef9 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0e4d30 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc54240 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5dcb05 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9ce9b6 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed3e737 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f37e4b5 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f71bc1e drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fee7955 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x203ba7d9 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215acd65 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x239b6986 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b640d5 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f4d2ad drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24f8707b drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x251ba3fd drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b64ce3 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e0353a drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283e9277 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b17235 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2904f567 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29957de9 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2acc9ada drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cbc0ee5 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0bcc56 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed0d1e5 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9ff944 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd72c73 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3050da9b drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306b6ffb drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3076392e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3101ef14 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x322352d5 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d0c1ed drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3534b256 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x357e22b9 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e65ac8 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fdf6fd drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a96896 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37af2f9a drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x386c6798 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39618a78 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3f47fe drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bddb0d5 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3e8bcf drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d470dcb drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d888098 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e686da8 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ead360d drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f7dcc62 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbc0953 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4137166d drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4154d422 drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x416be519 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x422d8b85 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42de9cdd drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e83653 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45277794 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d0fa83 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x468d6991 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4698b194 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x471c4962 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4725ff90 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49942d92 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4995d8e3 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a41555b drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aab9647 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab8c3ed drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aeceae8 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5e730f drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d70f1a6 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dddb598 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ee7bf77 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef5f897 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f73d49b drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fca2bee drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50822bdb drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50afe6d9 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5221f20a drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536efbd1 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5477adfb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x547f2602 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x553950bd drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55774dd7 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b32737 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ed1ad6 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x561614c5 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5649fe82 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56fabdec drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577a9e3a drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x578c56ee drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a8d4f0 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5858e03c drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5860ae26 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b518bcb drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b63d129 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ccca2b6 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e453121 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e522a27 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x626b103a drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x630d7f63 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b66322 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63c073f3 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63c179b5 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fb8047 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d90747 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f49fdd drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65017af9 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65220b21 drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66acbafc drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6787e82f drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67df8613 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e313cf drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6838b75c drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x698da57d drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7835ed drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a7f2838 drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6acef385 drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4c9ba0 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd0f922 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca2632b drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d58879d drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d7b9e08 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db2ae25 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb5e208 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7030c0ae drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f2278c drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f4f57f drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x718dfa34 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732cfc9d drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x749ef057 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759c1c07 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x791d52bc drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x796b1ed6 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79f8ac4d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6bf4e8 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7acf4d54 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae4c77e drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b34a46e drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8d115b drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80042bef drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a9a400 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8109c861 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x815895d3 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c3cbf9 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81cdf45a drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84540fad __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8464c023 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8674f29d drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x888ce386 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88aa1421 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2bf33b drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad137c5 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b3d0c16 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b61c82e drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbb7cb7 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2b2f2c drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e264ba7 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e783f96 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1d5f03 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f207952 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f82f37d drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90314b42 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ccd356 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92358141 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92cee402 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93aae9e6 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c1f254 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9588759b drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x965edb10 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96dfaad2 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972a03be drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97985f8b drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a371173 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7afe28 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa0f864 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b191abe drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd4efba drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d071b44 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e18f473 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e698aa3 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e888bc6 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1042491 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1896725 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1911303 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2a1087f drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b39966 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa49764e6 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa589ef23 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa596ffd5 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f69551 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7978e28 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84739ec drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9c6b4f0 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabcb60a2 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5c5779 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadede398 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6bfdcd drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaffc2dc5 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0337418 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16a1c3a drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1974788 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb219942d drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4eb2a92 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62fbe48 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb668fe40 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7144195 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95f35b1 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3a6487 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbacec2fe drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc5327e5 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc01e97de drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06ed47c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0747383 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2bd9f88 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d80336 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e1f145 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a1e949 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ac715a drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc525de4e drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc611f0eb drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6cdf5f1 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70c1c8c drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75f9355 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7fd7ccc drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9026114 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaef3c7c drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb45b1f8 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6e1ea7 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb5d84a drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebfb5a7 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf81b6bb drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f8663f drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c5bc2b drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1e48f69 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2156786 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd260981f drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2726a8b drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2764135 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a25c6d drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43518a1 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd445dc24 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd492d77f drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5933a17 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd648b73f drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a78238 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76dd4fc drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83b50b2 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9287ba4 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda506009 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae35a0d drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb02f41f drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4ecc4d drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb82c3c7 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf8e092 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddcba0f6 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2f91bd drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdedb894b drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf026827 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf598860 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf96ec7f devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfe48aac drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0162531 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe027fd9c drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0470d32 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f6593b drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12e25d2 drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3903619 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42a66c6 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49bfed7 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cfc104 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d1304a drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe76e28e9 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d5d9f5 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8438ec9 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86f80e5 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8fe4be7 drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9bf87f2 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabe943a drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb695be7 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee015b58 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefaf804a drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e9c1b3 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0faab26 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf12d6a66 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf133a57d drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf257a8d3 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27b70d0 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ab997f drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf301a715 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4312ff9 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56d5fb7 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf597f608 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a419ee drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a7d6cc drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6eb3ee2 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf88e17a7 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91d72ca drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91f0827 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa36442 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb66216b drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb8ec90 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4d7737 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca40b93 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd05b779 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9c7754 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeae90fe drm_agp_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb5c147 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc266d8 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01b2748b drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037efd15 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x040552e0 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0641a54a drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07faf3b1 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08907fd5 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a5906b5 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa94532 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad13cca drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0afe42d6 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bfd8a87 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6569fc drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb2bd4d drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d2094f9 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6787b9 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10f2c714 drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x123a5871 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161dbb4a drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16adea34 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x178809a7 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18985d76 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c7189f drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b846a52 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c4ff7aa drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dfe6e8e drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f0e47cc drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f7e30a0 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1feaf5c9 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fee8289 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ffa3d71 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24847a48 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25625f86 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26113887 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2660192e drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x273b5838 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2794e4b9 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b221d68 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c109dc7 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fa4046 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fc6040 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334ab123 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c2828d drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3449e4a5 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3473cb79 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34f372c7 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x353823c0 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c64a93 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e1878a drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37403dd8 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b6e388 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f6e39f __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398a238c drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a7522cd drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bde9b86 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c651044 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dafbf84 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f919a75 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdac37f drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e18ca7 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419ff3f5 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f16748 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43499405 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4358ca84 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47cfc533 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d0a0e8 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48cb89b1 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8b06c2 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cf73d1a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d7a2411 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d88e2a6 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50deeb3a __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x528ff8c1 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c68224 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53de4f8e drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54359947 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55c3e8f3 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5630ce60 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x584949f6 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58afed8e drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a8a4a29 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd9f5e9 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fc0c6dd drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f118dd drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6486d896 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65188d03 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65bd4d1b drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65dbf545 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x663de151 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668039ad drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dfa4f8 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681cfe33 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68be5b43 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69fa7725 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6da961a9 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7013590d drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7244a189 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7374210a drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7710fd67 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x779deba9 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x795f2778 drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7becd333 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e7afaed drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80e9e770 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81fe90bc __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82db7fa8 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ce3a36 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c9b5ee drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871c9a12 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8765d5d2 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87850e6c drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8844cc5c drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dc8fda9 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913a5b9d drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91ac5643 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92756290 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92f2be01 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93093e6a drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x967ef346 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9be99564 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ca22770 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d02d58e drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c59d85 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa23b0ed5 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3fffa20 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4841896 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa501db96 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa672e2f4 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa86deb22 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa4cad8 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab25e90e drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabe8d51a drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac9e5f65 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad5d5791 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf3007b drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae36c545 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef305fb drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf64c979 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0ececf4 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1df2967 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5833e93 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ac47ae drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbe2dc54 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc3be87 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfd83917 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3b0db2a drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c66c8e drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6071645 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc923608d drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcab9dedb drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0839e9 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdb7847a drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdce3c86 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce4bfa0c drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14d874b drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3815c4c drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3f04e8c drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4f7a2bf drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5853dec drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd682eedf drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69f759e drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b13c16 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8fb76a7 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdadf6e7c drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1813eb drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb9c3f04 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc19fe97 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd59b921 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde6a6963 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd79cf8 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe06c4945 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0a5121e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0db6053 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1314376 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe69e536a drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b1faa6 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8ae333f drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9938e09 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb4bf14b __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1605e52 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf184907c drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1a713f2 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ff030d __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf22fa875 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2a5bdac drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c3d66d drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c844ed drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2cb00ac drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50ec916 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf791ab5c drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7eb0fd drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb874a51 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf1ca78 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe98cf09 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff4aee47 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff41fa3 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x06db06c7 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0b15f5b6 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5899ee38 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x607742d0 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e8cb7f7 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x739be520 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8a0694f1 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa3804365 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa4ccfb2f mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa9c6d471 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa9d94870 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaadd4ae4 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc9e6bf5a mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd63dfcf9 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdd2e94b8 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe6d0ade9 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf1d59729 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf82380a8 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x24d0f7d4 drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28892781 drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35ce26e9 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35e994de drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x392c9bfa drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6490f43c drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6a7c3b0d drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74f5db5d drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7daa5906 drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f43783f drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x93627cbe drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa25ba31c drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa3f789af drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb9099f65 drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc8b5528d drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcac362fe drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdfe9f949 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5361e2c drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeb3c7b23 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xef639cf9 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x14267eb3 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2da50829 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3beae93d drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47cae1fb drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53ef4aa0 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x71b97ff9 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7315f0ff to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x74c0891a drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93954dc5 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9824c7f8 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x98efc1a7 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8fdd355 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc118d5f8 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcfdd4919 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd6171138 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7ece060 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd880fefd drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe38ea1ac drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xebd389eb drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x066757e0 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x116856a1 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1592d2e7 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bbd77cd ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21019b79 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2869837d ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x290891f9 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d06868e ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37fbbc58 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cbbfba0 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3db90066 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4632f869 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a11afcf ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b063f9a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c8da07d ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fcd692c ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x504cf28d ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5139faa3 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x540ea223 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x585bb0e8 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59aedca9 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fc169d6 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6277023f ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6574c9e4 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ba3eb31 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e7e678c ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa83b18 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fe61a10 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77ddd4ba ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7994dd91 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e57256a ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e5df9c9 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815228ef ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83371f63 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x848790ce ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86fee14c ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b634713 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb18b39 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c69c63f ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ee780e7 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91c4335a ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x944d9d39 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x957fb9e2 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3972043 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2b5495e ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb56805ec ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba8e3f3f ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcfa98c7 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1dd7eab ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc460b25b ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9f9010f ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc8bff3c ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf8b8a43 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd60fe792 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd93b2860 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda098730 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdac61fd8 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcde6a40 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1cd28fa ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4091ef5 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe79850e9 ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef825cd0 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa2b8c7c ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfffc8ec6 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/hid/hid 0x6220bf5a hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0422c58b ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x067ff89b ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0777c708 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1b7c840f ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20a23885 ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27bb1859 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2bcfee68 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2be7c79f ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x33ec88f3 ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3952cb59 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4ee1d26f ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4feea2ac ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x56f3f32e ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5936d9a6 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f856861 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x608e7095 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6238386d ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6706f513 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x69c28b24 ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7f35e890 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x80d7b472 ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x90749e5e ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x95f80929 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9dcaaea0 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa1272e4e ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaebfca32 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaf266cd9 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbeefa51d ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcbe3cfb0 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xce005249 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd270c249 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdb78ad8c ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xde1dc349 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe367ed55 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xeed930e5 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef155ae8 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf36745d8 ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf66bad00 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6975d5f ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf7e0794a ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfcae047c ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfcc22bb9 ishtp_put_device -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x85b24ede vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb5490fae vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -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 0xddea3630 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x55de9e0b i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7d7fa952 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xda14bec3 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x576b9792 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6ec01587 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe66a17c3 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x04967166 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x4b457223 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd4455e98 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x21e66226 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e455d67 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33df134b mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3edf9ce8 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49237554 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b73e6d0 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6f6d6107 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x81b4f6f4 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x888b9397 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x99b922d2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc314694e mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd7cfc414 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdea59390 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe743a6d0 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xebc2faf0 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xed6a217a mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x864beeab st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb6b07dac st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfed15ad5 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb12e565f iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xf204b85f iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x08382cfd iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0ea910ea devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x293be73d iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x92997160 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x9b985183 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x006da9f7 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0423fe0e hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2498d780 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x372a3b44 hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6801e8cd hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6c5fca83 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb56c35de hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbb89bafc hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbc0103ee hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe02bd0c0 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x043b2fa5 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3250a110 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x90c9b5be hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa55d134d hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x22d63e89 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x60e08ad9 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x88ab7177 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa4c7e43c ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa5f6e596 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb1a2dd1b ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd49f20bf ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdb12dbb8 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe96c7f48 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x26e1a2b7 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x765a038c ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x963a6c6f ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x99d8e105 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf2836119 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0abfb4b4 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6d464c6d ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb777567b ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x04395a91 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0928c862 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x181fe760 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1beee29e st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2dab4289 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x30420c43 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x485026c7 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59c52467 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x727ee554 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7ae7ea91 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7d037f04 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x85e2212f st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x974b0855 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa03beb30 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbcfd97f7 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf5cfb1bc st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9ca24e1 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x105574e1 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd57383f8 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x0ff98b24 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x3b6d38f4 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa578ea75 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc952fbc7 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc0942136 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xedcdd431 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xef91ed98 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa7d6681b hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb27e8dc5 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xcfee0368 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xfe47bdcc adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x36f1ad32 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xe050960d st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xe994513b st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x0469880c __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2fe7c84c iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4ed8ecb4 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x53186ecc iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x6be921e6 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x6cc3f28e iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x6eb36761 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x740394a0 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x769200ff iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x77d522e1 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x7adea1e5 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x85ef7037 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x8c730482 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x99edbe4f iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x9c7f06c6 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xa357ee31 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xa48ede06 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xaebaca99 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xb8281ab0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xd001440b iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xed2fb521 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xfb62c9d5 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0xfef9e1df iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x9f656a73 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33fca31f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x355beb4c iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xaa4658eb iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd7ae2f92 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1801de1c iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6239b49a iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xaeb658d9 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf544cf35 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1ce48e91 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xe8036a77 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x11fbb767 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x3e8b9aec st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x22d30793 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3bb33717 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x640f1eec bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7074581c bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x36ee46f2 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x44bb4ffe hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x775b3664 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xacccface hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x12413f19 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5160ea97 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xdadbc989 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x34757de2 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x56f0ce29 bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x74fabd60 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc3b77ec0 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xdef3a080 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x0ae8e39e ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x2b5d251c ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x95637653 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xab6ad22d st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf8b5709b st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17b37323 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18f55a7b ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1dadf13b ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31a0ee05 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x38fb2c70 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51062be8 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5522c83c ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x62286539 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e3b7141 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7565a1b0 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x791d10dc ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8071ba63 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa810144f ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5a46512 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb8ad524d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba4f7bfb ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe00de667 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe8bafa6d ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x030c8033 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c3f75f rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f435f6 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05792583 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c4b7ab rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08535624 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e92f54 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b53575a rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dceb6d2 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0befe4 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x151c3295 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15564209 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e6a78c ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bc98170 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca82349 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dbb510a rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dd1bb89 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1df31810 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b3dd8c ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x230ed51c rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25955e68 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x276b2ff2 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x288499e3 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a7348ed ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d395526 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305f5ea3 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31141b8f rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321c70a7 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3368d3e2 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35d9c989 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x360028b7 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36db6750 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37926b1b ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3794cf5c ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x383dbd22 __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3841e6d3 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38f6634a ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399a8650 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ca871b4 ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3caa2536 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cfb9491 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d853dce ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e32f77c rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42de50e0 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x436074c5 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x451c5110 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47c2be83 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47fe7833 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48554482 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48fba3a8 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4905e64e ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a85f549 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5561a3 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca25883 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d7fe684 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e3a6d4c ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e9a322e ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502f7344 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c358f8 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x527aca53 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e4b9e5 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54fe2218 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x557d8052 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcd66f4 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be5020b rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c77b22d ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cfa2f92 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e45a1ac ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fa663ef ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ffb577f ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60b2743c rdma_read_gid_attr_ndev_rcu -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 0x6207b3b1 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62c33575 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65d7d4d2 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d7d8d5 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68093c02 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68e13501 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a745b8 ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69f15df5 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a37fa56 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bfd027f rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e67e84f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6faf3d11 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70a9048e ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71eccbd2 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71eec02f rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74625ab6 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7471cb76 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750e6f0e ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7525d309 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x771a272b ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7949d125 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a31b828 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b8e98c7 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd43f8e ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf58069 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d08ae4a ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3b910e ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d953a68 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc600b8 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd21e52 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc7d2ed ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x804f8251 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x815365a8 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81be5e79 rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830db959 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8678106e rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ae01baa rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b3b26c8 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c13a303 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb1b344 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7833dd rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945a59b9 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95530baf ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96718b61 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x979d72ba ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98b5eeab ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab1c580 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d08c83a ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dda71f6 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2da695 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa118f4af ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ebad38 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c12f78 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7307bbe ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa982f998 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa99f5666 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab933d38 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47c24bc rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5807efb ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb4f672d rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdd048fd ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf31c2c6 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc084e0cf rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0cf44c6 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17d97db rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc24ab8d2 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc29fb065 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c5ea21 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4ac4c92 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5181a23 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7074848 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d906d2 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca13b5be __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca9077f9 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac20840 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbe322e7 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccbff814 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce4e4f12 rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7fec8e ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfb9bf08 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd00f3443 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd063b4f4 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd07d6944 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd544e13d ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd545a39d ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e6c79b ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8d0d220 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f926e2 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddd461db rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdebd3c54 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27d950a ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe40b2763 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5e46a1e rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe668f922 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe720045a rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a7b46f rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8744f18 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea00de60 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea618585 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd53a84 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf4c130 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee9b3182 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeff0ed95 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf340eacf ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf362a36d ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf47418ed ib_post_send_mad -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 0xf7d1c058 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8a22f0e ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ad55ba rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcceba79 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6fb6a5 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3bbc90 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0469acdf ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06f43b1f uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a729a59 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cfe64be uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x401f61c2 uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x459d555a _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4cd846eb ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f41127d ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x509661e5 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5137c40a ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x52120a9c uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c985eae ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d7b7725 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7224e9f2 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x744b1e4a _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7af9685f flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fcc5b60 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83db199a ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98df54ea ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a366263 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb44b8fe1 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9626efe flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9ec17ac ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc230504d ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd39ac858 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc3fa6ae uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0a5e6cc5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x23003bea iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x310f5422 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x850e66ad iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa119518f iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab5d672a iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb10534bd iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf2735977 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08b888ce rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09b4a5d2 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0dd9645b rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e13508f rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11e66ada rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x193686b4 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21376669 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d70c251 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f2bf576 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c90a9b6 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54a0a8ca rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55a6fc2b rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68a7d2b9 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c85b527 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70b1cddf rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cf2c3bf rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x884d73c8 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88a3dfa9 __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9177f797 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4571d1f rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa71f455b rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa87e2cda rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1c76f13 __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccf63d19 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd58cba80 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea49f2cb rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6ec0bf6 rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbc3b2dd rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x111fb77d rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x12bc7a52 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1640646c rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1cfa8020 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x21cface9 rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x23753bfa rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2e9c9b6b rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x33f61c22 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4824297c rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5262513a rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x603aa93d rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x66432423 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6c0af6f7 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7268d3a5 rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x72fc87c8 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7783f4b8 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7b825b5c rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9141efac rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x95f4005a rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x969a2d9f rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9cb8e008 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2583292 rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb118e7ad rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbf5724e9 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc81a0dc8 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce750681 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd1a5d038 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd8fb7aae rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdf808ba1 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf542375a rvt_unregister_device -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0139f18d gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x05bb4e34 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1579cb30 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x459f1881 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5e7abda5 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x77406d52 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x78bd9ab7 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4e76f33 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xabe04c38 gameport_stop_polling -EXPORT_SYMBOL drivers/input/input-polldev 0x572c668b input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x6e336cf1 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x995e00f3 input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xe644abfb input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf7a14971 input_free_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x342b124f iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x96b39be6 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa05ca6be iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xc88662c6 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x200448ef ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6dafd5b2 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xfdb1b87c ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa7617f06 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x2985914e rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x02835020 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb772adb6 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb796c7e sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe76dd74b sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xeb75ba1b sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa3370aad ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xcb97b637 ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x02b31162 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x22f6c772 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x63af89e8 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7e5a1ff8 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x9ebe78c8 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xca232f3e amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x01f8b2db capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0744d7c5 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x11bfae1a attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x163ffae7 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x318d45f0 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32fa6fe2 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3dbe143d capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4a8d504b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9a92c17b capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbc3d086 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -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 0x0a199c69 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x33aa975d mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa6d9ad3b mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd3104c0a mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1cfaeb96 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x761943d3 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bb9e765 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f5098fa get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1803e008 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ca16645 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d2f1570 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2e2ac0bc mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2e537f97 mISDN_register_device -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 0x32266ff5 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37437d7f queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43f62747 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4eb64c48 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fd8422e recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50f1ecbe recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ebe3ea1 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6031b274 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61f92b15 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c54d14c mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb61565d8 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfb81692 recv_Dchannel_skb -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 0xd924aad3 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee5d62bf mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee839030 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb8deb39 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x0316f534 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xafa4d4de ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/dm-log 0x645111c3 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x9cb1ec1d dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xa57d4e77 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xf31423a1 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x229afd9e dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4d6cb4e8 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x51cb649f dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8830f058 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x979593ba dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa63a89a4 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x27dd5a86 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x7d5fb5b3 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x039a2efa flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20a0599e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x22923557 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2bb2cfb6 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c46b429 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3e3322e7 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3e630c43 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x476d6548 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x72136d0b flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77e30c5d flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x836306b7 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf0d348f flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe343d0df flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/cx2341x 0x01e11a8a cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb146ab12 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc7ce5e45 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd72f6ea7 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x815f593f cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x40c50e26 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x491f5b0c vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x4b0bca12 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x046d480c vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x55b4ab5a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x814948d2 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x86b8dd58 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x887d8464 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8e4b9704 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f46fea0 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01f31d66 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c9a8832 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13776b89 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15383ab3 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21527154 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28287b97 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28dcb15a dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38d7f5cd dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3feecaf6 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f2b1cda dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x520387c1 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54929adb dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ad9c39a dvb_ca_en50221_camchange_irq -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 0x67480317 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x688afd04 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7984f872 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ca2449f dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a287cc0 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c769e19 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d0618ed dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbae084bb dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc38ede19 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6222db8 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeacf388a dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee6accbb dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa4159f5 dvb_ca_en50221_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 0x0220b011 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc24cee22 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f788bc5 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x21b0b6a1 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c53f285 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9c3d5253 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa4b2dc02 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xafc871ec au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc16957d4 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe3fba7f8 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeedaa309 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x62ae8cd6 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x5dfd745a bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcfbce222 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x2ab6e495 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf6f1e3d7 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x33721d2b cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x850e169a cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x424108c0 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xf460715c cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x56417fae cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x579a626f cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5a96ad3d cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4ef734db cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbf70aaa1 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x98dc50c6 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x279e2658 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2d3e7580 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x697ef702 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe0bcb7bc dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf4cdf34b dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x020365c0 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x062511f5 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ebc8f74 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2065b908 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x233080d7 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x28ebfcbc dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x43f4ba6f dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x516e8ed5 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5fbc4bce dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90ff40e7 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9248e2bf dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xba0e8ddd dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc513234b dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc75b5d41 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0a76347 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xbc55373f dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1771951f dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5dc08fae dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9a31743d dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9da905ed dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe76060c7 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfe9215fa dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5c1a7bed dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6c301f20 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9f248897 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf7e06300 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xbe694761 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x6e1f9da1 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x09b14db9 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2130c9d9 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3cbf2e61 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3d58433e dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x44a9571e dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5807b806 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x69222044 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x73bd57db dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7d71fb5e dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb79a6a37 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbd3e3d5a dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe35d211f dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xee40e6bc dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x05a61081 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2f73bbe1 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3d660d82 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x412ad256 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5a6d75de dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xfa923fba drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x48fea41d drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5b7f3da8 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xcfd3aa3c ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe58341bb dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x11fcbadf dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa8696e63 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xba329eb7 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4da75616 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x135e0d3e helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xe1e7465e helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x3c8f2f2a horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x1dc96369 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xacbeca65 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x22eea006 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9856813b itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xb12135aa ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa77e0892 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6150ed73 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x35e625b5 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xb7d01f93 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4e2dc8ba lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x52d76e9e lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x45834a3f lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xae259d56 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xfdcee6c9 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3a1fd820 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x72b02396 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x7f08cbb1 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1acbe140 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe276a5cf m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x72b08371 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb8f4583b mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xbcfd7a26 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x46bef0d0 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1fe34d69 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x205e3796 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xfe19e086 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xac79d5d1 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x07021d8b or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x573392ce s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x6cb0e3c3 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x06da2f50 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6ce8f7bc s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xf608e187 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa5910bdd s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xcdc85e35 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xb82d9c4f sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x3ac39418 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4858f95c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1fe7ef5c stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x9d226be9 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7d569b40 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x885bf482 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x74de04b1 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7182c3f6 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb4bfbaff stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc421c51e stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x8ccb0b83 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xa0ee53a3 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x395258dd stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x44c81d0d stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xa5c38956 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2ba4ae8d tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x2651d409 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x8190ce08 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x977071a1 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb4161b0c tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x94a0c584 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xb85b5342 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7ecd31a8 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x36f89e24 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc3239672 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x77fd4015 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xc77b7f09 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x40025bef ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x61043ba1 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7e5c36d9 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x921be84e zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe91e63c0 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x83b8d022 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x14756d2c flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x45c90a0c flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x765f28bf flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x921e09e1 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb013e6c2 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcc09a8d6 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf9fc3ce2 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x131ed8d7 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x46f0a928 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4cf38f23 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4d70c419 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x352617ce bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4e426442 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5dcfb81c bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1154bfc1 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x411fb277 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4d852bf0 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7c8d508e read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a541f50 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb1cab837 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc77e2eb0 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcf1820d6 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd05c26b5 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x39dd9d38 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1bce68f3 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3f5f1423 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5b06cd66 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x87eff826 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb77ba0c4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x03ebb9bc cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x16d2a609 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x34fa05f5 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9d0e633 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb5b17290 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcafadc2b cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd1ba5801 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x163d619b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc8a58c45 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8d8e0ee2 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb52764f2 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xce36f88e cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf33c1916 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0391edd5 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2d8ad5a0 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x489e4f35 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x50bcc754 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x62976c7b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8c9b08ee cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b2ee699 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x127bb5fc cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2dcd35ba cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2fd5af87 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38d6ba64 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39480cc0 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4921ba4c cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54e0f53f cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5baf633b cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6355aa7a cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x726653ac cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78d42363 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x94e053ad cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x976d9e69 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x993e1aaa cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99b21188 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa363531b cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaa8f3858 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3b3e770 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9990eb3 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd524e58 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0cd57672 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x43e92300 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x48aaa4b9 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ef9c7bf ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59f9e913 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e4c68da ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x673d0170 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x80849571 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x888eb98f ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e8072a0 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9390eceb ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b92e39e ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c194b69 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c3217a5 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa93765fc ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb80b807a ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd4c5e912 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0ddcb75d saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x106dbbef saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2bd0782d saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5a7b6ed2 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ee0e625 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6fd3ac29 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb8816e92 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9b7c07b saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc33c9476 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6ae38a9 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xce1bde0b saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x45f61bfd ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/radio/tea575x 0x59fd24fe snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e32686b snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x74e7d7fc snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x8a09ad70 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd3464fd3 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xdf95d738 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xfeba0a3a snd_tea575x_init -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x372cb72e ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xfd90d4bc ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x4afe4c28 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x808af585 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x22651170 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5a91f4f1 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd30db401 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x066feb31 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x529c50aa mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x611de43d mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x2ae6f4c1 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x611d534a mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x56971790 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x46ecb598 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x0738cf0e tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x36947b62 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7d110524 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x9a1e3b1a xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x87afc2e4 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf3dd2025 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x04bb3dd7 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2144929c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4c98ca2f dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5941d0c1 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6eec9030 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7813129a dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8a488780 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaa35c7f3 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf37e5808 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1c69a204 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x21ca84fc dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x22ccaf2a dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2be8cd99 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6840e03c dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7f342ac7 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xae6bcd90 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x961f4a5d 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 0x13d38da5 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b96ea33 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x43638f8b dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6dbf79d6 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x784d8ebc dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa120ee4d dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa47434d8 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc165e9e5 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd7143b93 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd53b1993 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe50bf22c dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0fc84fb1 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x3cd10611 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x13084250 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x572b4d7d go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x65d5c27b go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7d107709 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb54b2de9 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbaf1dea9 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbfad9bdd go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xebf304c4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfacdb76d go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4d3ea924 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7545ba92 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9b34c773 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa045dc3e gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbd29392c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc9754ed3 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe9fac833 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xed1a7d09 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2c038516 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5bd9911e tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x90f9f7e3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x46317c1e ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6df67dd4 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x02891276 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 0x633d8211 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fd102c7 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0818c440 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a19c128 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x103952b0 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x119c295c v4l2_ctrl_sub_ev_ops -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 0x16cbb906 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cbdc842 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ee2a7a4 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a50c080 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a755ade v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4020f3fd v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44b8aab9 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a108ac5 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a5bee14 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e9a5385 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51e2c9d9 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57a45c10 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x586094c4 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6acc62 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fe1975d video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ff90fe1 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x654a6cba __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6553d9f7 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69590a69 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x695c4790 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74029aa0 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74e1a766 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f3bf62f __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85b6e248 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8905d75f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89dfb525 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d558032 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fec5433 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x907f93ec video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90e92798 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x950403f6 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x956feaef v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d161dbb v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa110e316 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa22f87fc v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad7ca052 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb517a45b __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6385889 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7fb6d49 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8277ae7 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb89c549b v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd162608 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc45a21fb v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc48546e9 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc772ef11 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8d73448 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc94779ff video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca4ce0b0 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf86f815 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd17a85b6 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd49bbc6e v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe692f022 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8be0bc3 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeddd25ae v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf503302c v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7508eb4 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf88916cf v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9d2633b v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc26b1d9 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc964275 v4l2_clk_get -EXPORT_SYMBOL drivers/memstick/core/memstick 0x08cf3985 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x091ef9b4 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x16d40ef8 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x410a7614 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x62702f1a memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6863be98 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x77bfc691 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7f90d5b2 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdee89a08 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe2930e8e memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xea334514 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6b8a83e memstick_free_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e3aa450 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17c9c7fd mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21344810 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22d227d9 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23d9dd01 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x242850ab mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28d8d12d mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d85a5f6 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40c19c1a mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5663e236 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57359c73 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61030aeb mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ee7b49c mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74395978 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b63c5c4 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x966fc759 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaefaa3fa mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf3c6d73 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb0543105 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd304da8 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfba4ab5 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0131885 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd66b40fa mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd67c7c9e mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3365e37 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe627a3af mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xefb4f016 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf007de6f mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9d32344 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x110ea46d mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13e875d7 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x197247fc mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31ae9227 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x379113a1 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x518f8eaa mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5869b122 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63422af1 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68628a47 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e1fcf9c mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ef0cc0a mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70f64bbd mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7eb065fe mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86cdfd4c mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89673673 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a136d59 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c38f881 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x907f1c52 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e564fd1 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdea25a1e mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8c322ca mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebb900b6 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec506280 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec7c5cc6 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf206702b mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb4f5c0e mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff923234 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/axp20x 0x1baeb64e axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x348a40c5 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x52bc0d35 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x1ab8ef7c dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd3bdeb43 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe57ea664 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6ba6a2f7 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9c5f4971 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10abe29e mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x38e0ed84 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5890f40f mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6675e7b0 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6794ff51 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6de24965 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x885c37e0 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9d2f6b05 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad863a0e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe08bf3a8 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe0e7b353 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 0x43a1d12f wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6a7101d3 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x6aa351f5 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x719b6ab6 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x74d387c6 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xdcc3d302 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7eb522f1 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9defa988 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xb9f0fe98 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x778464b0 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0x9bad1ee6 c2port_device_register -EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x14902735 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x4ea36640 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5157918c tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x5a7199b2 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x5ce3672c tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5f68f733 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7327c2e0 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x99ef4af3 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa068e39f tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa86d65cd tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c74b93 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xbcd1456f tifm_alloc_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x08baef03 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x333dfe7f cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x54901852 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x88b21fe2 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc75551c2 cqhci_deactivate -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x15bcb1f2 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x309d999d cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4862519b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6ea7cbaf cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb530903c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc686293c cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcca9efd9 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x89926716 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa531a620 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd7030b96 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf5ac2d2b unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xffa26b10 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd5861fdf lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1f81dec6 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x032f584a mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x8a85bae5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xad851ff4 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xddfd7fa6 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x81a6ca4a denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xebbeb677 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0a917c1a nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1062deed nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x13fb087a nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x50b813f3 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e6af599 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x90ad2b3e nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc425ef33 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc6356204 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd8a05bb9 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf4d3b795 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x970cef82 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xe2ebabaf nand_correct_data -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07368257 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15639bad arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1641d169 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1741db47 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x282c891b arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4347a47f arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45074604 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5a853be4 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x83d4dc6c arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf2a7e2a alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x732a1de5 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbde3ecae com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdca65a55 com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04dd9a53 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b0baa98 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f154594 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d8dfc69 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x265c29e7 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x293639bf b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30d7add9 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3638723f b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c6f1be7 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d802c9b b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a752126 b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4da78126 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4fff425b b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52210358 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68110ab7 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e53efb7 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ec42cfe b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7417ff61 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7da42615 b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80c88beb b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8266d012 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c9556c5 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x933b5166 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a8a178f b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c295623 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d55209a b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac25d5b6 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafd5c9fb b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0108e94 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2ee4e06 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba52f01d b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbd124a7 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce46eaf1 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd2862c86 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde097a28 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf03f6dff b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2c298d2 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbb470a5 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0f81e110 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1a142251 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x41999bfd b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6fe88856 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfe08edc9 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfee88380 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2cdca90c lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6344a92c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x5697a678 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xf8b91eb6 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x048421e9 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x82fc4840 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc78d68e8 ksz_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2f148bfa ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x45009911 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x716f8131 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73c0e566 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x76eb7f94 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaa5b769e ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb3206ade NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcfd7b155 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xde079f08 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfd9674a3 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9dcc611c cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3f1eb314 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x79310f0e 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 0x084f1629 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a0fe15d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b5fac62 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1184f645 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x11fbc77a cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1deededf t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33095bd4 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f162b8a dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62c25d11 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66f6fa15 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6785a6ac t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7592b4f7 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0179d18 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa038a4fe cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc57bb0b1 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9d7b24c cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0238069a cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x040bdc6a cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08f99c08 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09599dcf cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e070c4a cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17a15c70 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x183e1068 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dcc3488 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24e6293d t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2afc7097 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bfc6291 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2dbbf4e3 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x320a25ae cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x350607a2 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a7dbec5 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49d1a21c cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a602322 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x547d37ec cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5cac4cb8 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66d23022 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68a25195 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x735fc012 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77bd72c3 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e78b383 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f09f53c cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9402581d cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x958d305e cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x959ceb48 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d1ec22c cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2db7c3f cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadb09cbb cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbbbb77b3 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc11275ed cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9480e80 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb35fcb3 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd5ff954 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd25dace1 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd238ca4 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3d638ca cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe53047d8 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0d1af53 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfae5e33a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfba29a48 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe530ceb cxgb4_map_skb -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 0x418350e0 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5b12d99d cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x84bf0f2f cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x968eb4a9 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd5ae257f cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd9204369 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe05b6f64 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x38d68f88 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x91f4687c vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa198a90b vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc0d9bd1b enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcb27ad7f vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf3b6e736 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x10c45790 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 0x91e40536 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x31819577 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x4011c992 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa9e0551e iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xaf4fd4fe iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00377c81 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02841c66 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e48148c mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efb7025 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x205afd23 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21f91108 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25054605 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a18564e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a8e58e8 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3839bc24 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cb08e15 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x435481c6 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a06826b mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4a6763 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e576683 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebc68e8 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54af8fb2 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fb321b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58683c2a mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5af3a588 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bd1e28e mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cfa1245 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8e624b mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7050f39b mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x808a4c26 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80eac1c3 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8267118e mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8befb8df set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d1b8bfc mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91175120 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x920e0bef mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9518df0c mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b9a1ad2 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa204b6a4 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3323ccc mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa57bfc07 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaec73ab mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0644370 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3002eea mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce2d7040 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf039781 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5fb1b4 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1029515 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4305db6 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00aeef11 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04526ad3 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0604b117 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ceb634 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06e61f1d mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x098ba93c mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a446a02 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9dbf38 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc6300e mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1410498f mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15e0bfcd mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aa01e9f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b04d72a mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff7302b mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2040678d mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22dca897 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23089096 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2333ec5e mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e76aa7 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a220950 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2decb093 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32989671 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33c2dc1a mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3579675a mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36f81d01 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af7f3bd mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6ebaec mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e870948 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef44e96 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a94764 mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43336257 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49837cd4 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49864791 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a037f21 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f5cb9df mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b315fd mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57572551 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592ab001 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ffe858 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e15310f mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x612a9877 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61357efa 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 0x6243040d mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6472a7c7 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66828a6d mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6caf3db4 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d1fdcb6 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d434dae mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73967af8 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74de2519 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77516c1a mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7843c758 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a81b10 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79520b01 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c61e291 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812cd3c5 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818ee021 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8367f6ae mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83a34e72 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x859d5b3b mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85cae5fc mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8606420a mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8722048f mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b24d37 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ecba42f mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f650e0b mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f7d845b mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96297a94 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965535de mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9749acc2 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae07b76 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa411b5fb mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa81ed76d mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8a70647 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d8a528 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa98d8313 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa992da8 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae580060 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff07c5b mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb413978a mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f4081c mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb98df933 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9ce88bb mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcbe79da mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe954e19 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a134cd mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc893d3c4 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc60def2 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd6059ae mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6d2809 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce76f079 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04cb2dd mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1ac2b60 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd29e6db8 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbeae29b mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd626c13 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe63dfe28 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe67b26b9 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed8cb96f mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf297bd9b mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2bab493 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf400441e mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf522dd06 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6e34a1e mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8388dc4 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98a1d28 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd92bb1c mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xfa6c0181 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -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 0x1f93326b mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2150eee8 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x24c5779d mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x368c89df mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x398fae6a mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3ffcef76 mlxsw_core_driver_register -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5251e4da mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5e80d866 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x654479c7 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67326098 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x953fcf28 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 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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd065a90 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed423454 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf40de11e mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf96d15d3 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfa212db8 mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfcd338bb mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd9042039 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf2905b23 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0cdad126 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6def1987 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b338ca8 __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1794d7fb __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x307fd5b7 ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x540f77e2 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5483b157 ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x56b384a0 __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x785f0cf2 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8ae3547e ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8ece3b97 ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x904afe84 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc5727d48 ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd5aa86e0 ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe9c7cb70 ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x123cb287 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x19e468c5 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 0x887614fe 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 0xfb561beb qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x0243981e qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xcce543f3 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3653f030 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7d33169b hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x834290d5 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc3c77357 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd3807955 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 0x7db84a25 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/mii 0x0a77addf mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x27d376e8 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x33fe587e mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x380a6e11 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x7e9b9987 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x84dcbcdd mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x981eaa30 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xa2f91b7e mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xc5b5db9b mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xcb74c8a6 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x531e5755 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x267f3e40 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x65234bb3 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x3f692ac7 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xfc46a242 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5ed281d0 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fa1b87b pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8fe6c31a register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xec015ccc pppox_unbind_sock -EXPORT_SYMBOL drivers/net/sungem_phy 0xdfe53708 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1fabbf15 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x245eb1fa team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x25d4fef1 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x6969930f team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8a5a14fe team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9f7eeecb team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xa84a2f8c team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xc7506e98 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa8da117f usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc1126da4 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xd2b9f3f3 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x086d6db5 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0961b701 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b18fe11 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x296073e5 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x36d04244 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x78a32f92 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7967a612 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x93e4286b hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x98756fb3 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9f73be6 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xdbb3e692 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02b7fd02 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21625566 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23278480 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24e17777 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x268bf9c7 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40f2203c ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4c71aef2 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x56a40a16 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8e61cb4c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x94349527 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x97726a80 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9b1c7245 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x003f2f00 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0107339c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x047919ea ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ccf066e ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0cf016d0 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e6885d2 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f6ca9c6 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17d4bb6a ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x216efe06 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f022eff ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x330024be ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x354b0e21 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x392a21c0 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42569b75 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x435b44fc ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x477c4614 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4af50c1e ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51b1452a ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dcb18f9 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x691cfb5c ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cdd6fd8 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72c2cc2c ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73190145 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73bd1ce2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x756308f8 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7653cc6a __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cc1f4c2 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ed175bc ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cfdf9f7 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8dd5683e ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90583a2c ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91db7521 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5cdd642 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9a79d9e ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad7f725f ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb03b45a4 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb043ef5e ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1399a3e ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe393adb ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf37cfc6 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbfa87b4f ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb28c031 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce8d2177 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcff45b0d ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7ae224d ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe33ff6d6 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed0c0a5e ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x179a9fd7 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1bfb5355 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ecb2d83 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x56916a57 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x620f0418 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7669510d ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e389498 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8bacc4dc ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9e4ba99b ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd9e927af ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf66a3171 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0657270b ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1248b3b6 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e82ec0e ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22806ce7 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24e1967f ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3285e486 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x416bfd6a ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f73f876 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x515f6d7d ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54459121 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58b24c78 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x757b7414 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80221ad0 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80da3209 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x833e320a ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90b9a03d ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x945e4dee ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d5dd641 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa44820dc ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8645b17 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbaba81bc ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0d74dd8 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xebd72316 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00153d98 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00fa81db ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x039c724f ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ba48ff ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08dc1f41 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b41da8b ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ce2369f ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9f1f5f ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16e32696 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1739dbb3 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1842911f ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a0d2cc1 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab0ce32 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aba4e44 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1de7d9a4 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1eaf6834 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20306cd6 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20fc2281 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21367e82 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29126120 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x296404f6 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a6670ff ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9e0fee ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3013616a ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3764b237 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ae23783 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3da0dd24 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e65a63e ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e84048a ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406a28a2 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b313d9 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44e3fea7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4869a982 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b0bbabb ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53484b59 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5514ad13 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56d71418 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57145c0e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575cf7c0 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x577d37b8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x594f10e1 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59a788fb ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d08dc9e ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f5e39be ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fa97792 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x609b990e ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x628120b1 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x631d2199 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63256216 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x648f8482 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c3eeac ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68a4bd9c ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eafbad4 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7264a05b ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76969360 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af8ebcc ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b18997f ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d3962f5 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8016032c ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x811474e7 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81cae50e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x869b8072 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89564f08 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9079cbba ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9275b07d ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9568644a ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9882d2a3 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98cb8216 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cdbaddc ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cedfca8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ddce465 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa04f272d ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa05823d2 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1c3a777 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e7bf24 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4020376 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa66acc66 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa0aacd3 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf7cd082 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1db1719 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3c07693 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4788d53 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb55ef205 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a52438 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9231efd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaf9a5d5 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc205b0ca ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc61f9308 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6cdd680 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6e9f650 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcab1081e ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccebfbb3 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7437468 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddb6c7d1 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf1034d9 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf6d7409 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe050b5b3 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0dec05d ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe12fd812 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1e3e475 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe575827f ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5b047cb ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa62933 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed67efed ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3bd60f1 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43cf0b5 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5b2b3fe ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0107f14c atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1f3b2136 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x412a6c6c init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0ac5ff38 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1582d385 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x37b0bdf1 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x420c5522 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6f23e71b brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x763d2ce1 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8a6c88d5 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x90c38e5e brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x91f96e64 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x93db557f brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x93dbbd59 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 0xd5fe47bb 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 0xfe45539e brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2aecbda6 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x79b8d5c2 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x96f6e2d9 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10c4f920 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x28009381 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2be9a62d libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62146478 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67ff28fc libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x68e93a3a free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6cd31f62 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7c3f99c0 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7e1b3434 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8fd99b94 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x981b8b17 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x98348176 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa1aa04d0 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa84843e libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xba52f4e7 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc83940d1 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd3c7c8b3 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd6214230 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd7201974 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde3418af libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x017da585 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x068a2889 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07274aa3 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c20b212 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e5b3e4e il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ef11ba2 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14a5eb71 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1582253c il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1582d231 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x168c5209 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179e4834 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dd79cb5 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20991ddf il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x224c81b1 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26558aa6 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bdd9a2b il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f1d9e49 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31da6993 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32266d6e il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x356d8201 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36ff299c _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x391fa39e il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bcea1a8 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fa94a27 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ff10b3c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x401e4c64 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4046d3aa il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d51c80f il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x524c846e il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x528f397e il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53fedeb7 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x563e0f55 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57f91b0f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c49026b il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x638fb9c5 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65d40c14 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a04eaca il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f55bf22 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x715c832a il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71d53eb7 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7770dcbe il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78c72bfc il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a044df3 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b37bd46 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b708dc2 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e515d38 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81cbb279 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82e5571b il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8335f0f8 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x860b49a9 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87d7e614 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88649995 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88e7c713 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a65a7c6 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bc2bd11 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d6121f4 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d953213 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dd7a96a il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e14621a il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x919006be il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9549184e il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95985e61 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x974db459 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ae7b371 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f261002 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1c4f4e9 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa47b7642 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa501890e il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8eedab6 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa0bc15a il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaade4a2b il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad7cd932 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae196e2c il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb244287f 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 0xbbde3975 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc131949f il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc89ce2ae il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb4886ad il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd4ae92b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd10f88a4 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd24afa86 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3bfba62 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd67850df il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb269fe2 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdec9b128 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf0bb8ef il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe59def9b il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe73936b9 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef497e13 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf111bdc4 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1c01afc il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2a85680 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf47fa9ef il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5ad7d23 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9b48f7f il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc2a9451 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc931a14 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff96b16a il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a48edd0 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f4adb90 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20070ecf hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2160e5c6 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x26c58827 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b04d51e hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3db72f46 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x494fe3b0 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c14c320 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e4d0c93 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5db1d1c6 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x65379b48 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 0x7ab813d0 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x877174e8 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x881a35d2 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e9857ec hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa2efd114 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa42ae6ab hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa7b4329d hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab1b06bc hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc133e406 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc353aac5 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe12822bb hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe2e063bd hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf4807269 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0463ceb2 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x16fe2eea __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2c29c2af orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4518c264 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x64a367d3 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x65f12424 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x76446c12 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7c30b153 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e6ffbe2 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x901e938e __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x92ddf483 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbf3d5eb5 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc1539c6c orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe948f5b5 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf3006217 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xabf6af22 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf91f7b1f rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05d1c3b7 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x092c3e16 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b795021 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e00375b rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x131403e8 _rtl92c_phy_txpwr_idx_to_dbm -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 0x30e32d74 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x368bc564 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c4de2e9 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x403fecc8 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44f564fe _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5404dcdf rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x543e0883 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d9875db rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dfa345e _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62d407ac rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68dc686a rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a1fdd27 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71467e7c rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b582a58 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x813752dc rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x873f9be2 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89ca251d rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90162621 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9658c21f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97dcb41f rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bb2933b rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e94dd4a _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa958cfaf _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaec89683 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb26bee2c rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc757131 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc315e7ba rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4788b70 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5e61226 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca08c658 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2b0364a rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb0e5b36 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeddd2cfb rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefeddce6 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb600c6b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd06c122 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x102b9740 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x852bda24 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xadf52956 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd6b7ed18 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x11cf8995 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbae9dd3b rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbc3e5d69 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe91d732e rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05981603 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09316327 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17abb65a rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25d8bec3 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x261c64e4 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28bb1084 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3373e1d2 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33bff4ab rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x379b5aa6 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3854dac1 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a238dc0 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x429e35dc rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x607b8eda rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b3f29f1 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f3dc4f7 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72d6671f rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7727cfb6 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7991e346 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa565819e rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa74a0882 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac685043 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0cd612f rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb19029e2 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5ce8aa7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2331d91 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd12a1a40 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4242999 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6c9f8a7 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddf43f61 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf26024b4 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf73b4afd rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd853cf0 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x142e3aaa rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1a0aa479 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x216478ec rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x26692f7c rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x35c24b62 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3707d7f7 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x39e8709d rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3d9fb7aa rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x49097d2d rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x51bfdea2 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x53e3bf68 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x57c1aee4 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x8a8279f1 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xaf7f2f38 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xbaa9b5a1 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xbc21d456 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe5f8b906 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x620775b9 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x19515231 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1a8a8d7a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcc29979a wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xee6d2f08 wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x22062c98 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7cfa8c41 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x925e28ba fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x0cd419b8 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2b959217 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5ae7f1f5 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7c4e46bc nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc1809c2c nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xb616d8ff pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa4014804 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf03a9ce8 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x16423e36 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5ddce082 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb408f6f7 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x017637f7 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x274d1dac ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2dc976d9 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61d45363 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x673c4840 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7591a214 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb0a2c954 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfbe84b12 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfea21137 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xff827313 ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06e2d91c st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d78c6f3 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a37eaee st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e5ab261 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x22ffa90c st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28a87257 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c56a96d st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c7886fc st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3411c449 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e796481 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a2a0c4b st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5b733f2d st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x654a9bea st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9c660dd st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb541c12a st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbee0addf st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd31e504 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf9c7c3b9 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/ntb/ntb 0x09ffdc9e __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x1aa3785d ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x25cf0843 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x2fc06b9d ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x321b52a4 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x32957d31 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x34751cdc ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x48314561 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x4bf23955 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x4edf871c ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x5f2441ab ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6defab96 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x7781892b ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xa2e53f7c ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb72a1ab6 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xbc6adf0c ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xcf6ee6ad ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xda25937d ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xe2e080b2 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xf40d175a ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9d1d0960 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa569514e nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x062f7a59 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x0de980dc parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x194ff8ae parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x22fe2030 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x26776920 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x314eadd5 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x493910cd parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5ac815a4 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x6a72aa7e parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x74be37a0 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x7526eeec parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x76b8781d parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x7ab7dece parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x813c538c parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x8a9d6702 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x8cab8823 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x8e5c252c __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x9ca05cb0 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa4289e3b parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xab46866f parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xb0e06659 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xb5adfaca parport_release -EXPORT_SYMBOL drivers/parport/parport 0xb8a0316a parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xc2efeeb5 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc4ae003c parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xcbc0dfb4 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xdb27f3bd parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xdc16eef0 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xee7a9676 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xf0c94af2 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf629a8db parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xf9732ad1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport_pc 0x6f016fa6 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xb02ce7bd parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0478f27c pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x06e17345 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x21dc1ad7 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3af51d5d pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42804254 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x783d0f10 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x86da2171 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95f95052 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9e0e72d2 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaa874dfd pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad936f2a pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb4bf8ded pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb9f7afa6 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba5e5e14 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc7d9b409 pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb6074de pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf05d351c pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf2577ce0 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x354574f7 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41641592 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4cdb83d1 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x53718c17 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x80e8d155 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9658594c pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa642e065 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaab66685 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdf0ce040 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xef29dab6 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3d386eda pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7a5e2322 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1b23331f cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x44a1e940 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7beabf1d cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa11edcf9 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy -EXPORT_SYMBOL drivers/platform/x86/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/platform/x86/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 0x3c13a609 wmi_driver_unregister -EXPORT_SYMBOL drivers/platform/x86/wmi 0x6adc4fe9 __wmi_driver_register -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x07dc4aaa rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24128353 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37a1d568 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x494fc646 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5c55ed93 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7349bfb2 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x925f15a7 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d7e62b3 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3c021a4 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb76dc24b rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc9a882b2 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdfebc448 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf762f144 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa0c77a8 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x6960bff9 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x01c71ba8 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x7d548e61 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x18850305 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x54faf649 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x68ba53b7 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf00d41c1 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20423571 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2764e8f3 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2eb2f133 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3973e6c6 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4ef7a72d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67e7252d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x855ecb3f fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa102e9eb fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa4cd5270 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc633cd55 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0527217 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00ddca58 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05fa9eb0 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x079af3d2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09782320 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b521d89 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ed950fe fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f749679 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fef2706 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11accfb2 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x164d73c1 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cad79b1 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d34b98f fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2020f22f fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26c72bd3 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c50b15b fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f5911b2 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5054d35b fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x552241bf fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58af8432 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x629d6f07 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x715a3c6d fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7368e5f0 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775cf9e3 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775fb871 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77c854f9 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d0b231b _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8180e470 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81d55aa7 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ba66ed3 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8cba456 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa90d29e6 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9375390 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae93c86c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb41e6193 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4ef25f5 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e82215 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9691f62 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbc35e80 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbed2fa20 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf1fbb30 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0d5a708 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca55dbf4 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca97d82d fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcea05653 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xceeb2df5 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1fbca46 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4ba3df9 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd738dea9 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7e4eca7 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd940794e fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb281422 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5875b42 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe717bcd3 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1cae919 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf676ab49 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfab04300 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb6a1517 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbd3d9c8 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x408cbd8c sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6cd6b3c0 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc9e30b07 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2230bfa4 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 0x01bffc3d qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2f2a3db6 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3771adb9 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3a35ff69 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x46a66979 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53d175f3 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5acd691f qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6f5b8fc6 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8165059c qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x943389e3 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbaaa15ce qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd822b4a2 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0da54828 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x239ab505 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fdd32e1 qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x51639687 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa190367e qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdd197c92 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x1df14888 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x7be150cc raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xf69a4bb5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x009d39a3 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0730d140 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15a48ed9 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b9da18d fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3ed82f5f fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f831654 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48ac9b5f fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5029a4a3 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b9e6aa6 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9130be55 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa3d87bef scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc43fe3a6 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc81dd2aa fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe4aa31ec fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xef43158e fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd8d3a66 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d981682 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x185cce19 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x240befe0 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2edef06c sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30bc1454 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b907a2e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e15cfd2 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4611b4ba sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f83dbf0 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5538ca51 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6102af97 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68a3d29c sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69ad189d sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a3e6134 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cde9f45 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x930fa911 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9409f17c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97780409 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c5cedd7 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e9cace6 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae75bd8b sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb58aa0a sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd44b119d sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4905f3a sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6f812dd sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd7708a7 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe01502a9 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1a1e8e1 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5e462ed sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0c67cb89 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3e669dc9 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x79bc3b4e spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x811924a1 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc6f6661a spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x10b9b348 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2e1135cf srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x453db1eb srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8731ce17 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xeb5070a5 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x3c139e28 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xdf0045de tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2e25de9a ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ea89f04 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4e3c9932 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4ed74dfe ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6cd05718 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6d3cfb92 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x846dda8a ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xad8f1ebc ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf4a1b8e2 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x6266f91e ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xfe248307 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x034c0f96 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12a689fa sdw_add_bus_master -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 0x232a69df sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2ec15bdc sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x59bf23cd sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5c79f92e sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x607c7810 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7106873a sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x79b5827e sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x90661b12 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb0efbb85 sdw_delete_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb6e8533d sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xee2188b8 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ca4231f cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x28de5f77 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x29961c4e sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4c5bf13e sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x77712d71 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x87d26da3 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x929d37b2 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa76a6fcb sdw_cdns_thread -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaeead723 sdw_cdns_get_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb8e514a9 sdw_cdns_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc99462ca cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd380edc8 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdc23a545 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf49d620e cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x42194279 sdw_intel_init -EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x5e07cd60 sdw_intel_exit -EXPORT_SYMBOL drivers/ssb/ssb 0x07fe1566 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x123db5e6 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x15e5b936 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x256a4e11 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x2e59f407 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x3e54ee88 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x50882af2 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6bda6601 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x71a67292 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x72ff08f6 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x90215c2e ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x9fdd00c7 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xa8e1ec61 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xb6dcd2d5 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcc061978 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xdede808f ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe581ba99 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xf3741764 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xf9a7007e ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xfd600c39 ssb_bus_suspend -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x096db01d gasket_unregister_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x304bfda7 gasket_mm_unmap_region -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x310d0e97 gasket_sysfs_create_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x43e3dd37 gasket_enable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4a33d52e gasket_sysfs_get_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x519ccd34 gasket_sysfs_register_store -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x54e6de78 gasket_sysfs_put_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x578db623 gasket_get_ioctl_permissions_cb -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x66ccde85 gasket_disable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x85547da6 gasket_pci_add_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x9052e5d1 gasket_sysfs_put_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x9c15d927 gasket_pci_remove_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xa37b6832 gasket_reset_nolock -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xa5cf539d gasket_wait_with_reschedule -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xab618ff1 gasket_reset -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe1d7aa62 gasket_sysfs_get_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xfb9f5558 gasket_register_device -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xdc8916dd adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x33bfb1b1 ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x00c292e7 b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x06b8247e b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x08b75e11 b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x150fc98b b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x1f732bd9 b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2b6825f9 avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2cc41de7 b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x44b526cb avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x6332542d b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x84f4fc7a b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8d84fefd b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x945799c2 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xaeaf457c b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe30e05bf b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe93fd285 b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x10d621dd b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x42fb030a b1dma_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x464a6469 b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x49c0f3d6 b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x4f27d51a b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa2632e1e b1dma_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa86e64e1 b1dma_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xaa7a7cc0 t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xac2b5017 b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05343b6a alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05dfa254 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d883796 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fe75506 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20b0e0c7 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25ea4773 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x268394ac rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2808e0fa rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fc97531 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33b45026 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bb2140b rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d4f1f6f dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4996342b rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e36ff6a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x571f6fee rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x589f753d HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x593ec256 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b013be0 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6265fa4a rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6676fe96 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66de581c rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67e2d51d rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71d3e8d9 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x729fb882 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77bc2300 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c595828 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x822b81b5 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ddf7eb7 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e14b435 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e53cbd6 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0dbbafc rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa664ade9 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa4090e7 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf124fc1 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb66ba387 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcc16e1b rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfca5ece rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd190ae77 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4dc09e3 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7c23fab rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdadbba52 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf9c21bc rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3a513cd rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe64229f9 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf28dde8f rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf52eed6b rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6509b4b rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf69e096b rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcdc763d free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x000e1fd6 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x051336c4 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c2addf9 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x117bf740 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11cf1fe8 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c301308 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d076faa ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e0b817d ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e113000 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x241099cf ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2504dcca ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25e6a843 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x292c51ee ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a84bff6 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c31b2fe ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3162d4a4 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31a516d9 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31ff54cc ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39464188 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c09de38 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb37d7b dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43e7d437 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46feb83d ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49dd8b13 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d1ea69a ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50e79379 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53396b2b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x585e863d ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a32e390 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5be0755d ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d634a29 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5daed03e ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x673157bf ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67dcef60 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d1079ca SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e17b801 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x702444fe ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70712c79 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b032f1d ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8108cdfc ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82f6a7d0 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9672db37 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ebe470b ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64e6df0 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb34f78f0 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb84a1f63 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce6c9a1b ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd76123ea ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb1c7cb0 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe13d3e5b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea0ea909 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xede6b65f ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf782b834 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06ef3661 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x086d7dac iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a3ed13d iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bf90ab5 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0de41451 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x110d93ec iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14822372 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22da1474 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x266705c8 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c2d4e68 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31f41d32 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x358c59d3 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x380e5576 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bfe324d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4027658a iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40ca5c3a iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4483aaef iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c5dad3d iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50f1af42 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5618d857 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58d668ae iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d59afe5 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ab0588d iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f4846c2 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fdad910 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x848b6c9c iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5c27a23 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8f5161b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa348cf1 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf14b93f iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb17d6620 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3452d7c iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4a21698 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc962a8a iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd7e2b2b iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe017d90 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc975a6e4 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbaebc24 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0771b11 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd859bbc3 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd5f98b1 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde672f75 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5babab7 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedb1342b iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x02dc231a transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x03737db5 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x03a26a48 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x0419e57d transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0725ae7c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x072f7c5f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x12416c1d transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x17ed1b25 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2176e676 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x21805fd6 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2313214e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x289eb037 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b21cccb spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x2bdd9ef0 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x328e47ed transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e01a18e target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e698734 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x439e5dd1 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x43f6005f target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x470bbeb3 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fe8dc50 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x503173fd target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52fe4771 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x533a4423 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x56829eb5 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x57a3b7b7 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c8e20e7 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x5dbb153c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ed229b4 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x74e8b087 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x7985db5a transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7dfddf7d target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x801b3248 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x8069352f passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x81f02693 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x873caab8 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ddeed81 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x94ab5465 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x99548a23 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bc46398 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9dc17282 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa19f3775 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3c2cbe8 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3d66d8f transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xae3e95da target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3d58163 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc46deba target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xbdf42f46 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xc001d3a6 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1fd6814 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2b42d47 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc4caa0e4 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc68f9611 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7c04346 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8f2ee06 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xca1f5472 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xca591347 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xca9699fe target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1351365 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd25928e7 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8b20905 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe413ee63 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xe49be3d6 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xe96c7dea core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9fe21c8 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb14b431 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xec847606 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf20c1adc target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3a638cd target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5d33b12 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd16f57b core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xcda20ea9 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1f03e9ba usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x27adb91e sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x230d7f1f usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x449d84b1 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4bd4ee12 usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4e90c498 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x54af0469 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5ba3635c usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8b31af98 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x927a8464 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab062ec3 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad32460b usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd341c87 usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeabae7f0 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff4e8dbc usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x10e94077 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb567af43 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0d812707 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x28bc1524 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4746e973 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x784baeab mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x89ae3985 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8c3ac301 mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9129d573 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb41f45b4 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2a7b8db mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe37ae563 mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf1f3cc33 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfbc408b7 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vhost/vhost 0x2235e538 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xee6dfee4 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4abdf203 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5a25774e devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5a2a3f2c devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7e17e31c lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0f50cd21 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x302c24d7 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x752c9fcd svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7d381155 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83ee238a svga_get_tilemax -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 0x93170514 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa4fe7322 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xebecd91d sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x31a16eac sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2a157dc9 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 0xd9390281 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xcd4fd01c mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x269065f5 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x34889a24 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbda018d3 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x341f7a91 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7f458bff matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc1036388 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf1fafe1 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xba92f6de matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xefa3f5b1 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x10547b3c matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1f3e28e9 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x44dd1a2b matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4d2f514e matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7b802d32 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb6781ab9 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c52e7cc matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5fb321c0 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7d09033d matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe2404036 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe343ab17 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x50a3e046 mb862xxfb_init_accel -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/w1/slaves/w1_ds2780 0xa7e6ee4a w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb543b2a2 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5c1dc53b w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf42254ff w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x13299ea6 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x2fe1e2bd w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa292125b w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xcbac0cc1 w1_unregister_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x03aceae2 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x17d494c6 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x26abd037 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2755efe8 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x30199e65 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x37f8ca73 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x3b782ab8 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x3d003749 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x50ceaabc fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x527af883 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x54f7f713 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x55d9fa28 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5d20cdfa fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x63e0fe2f fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x67068aa2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x684c24a2 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6a2e61ec fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x70d61671 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7544eec7 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x80afdedf __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x81bc25e4 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x980360de fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa5575a0e fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xa800290b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xb4ef61a4 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xba0984b2 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xbab7fa36 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xbbdc61d8 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xc924ee3f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xcaa6e8fa __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd2cd7255 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd41ee972 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xe661e84a fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xeaf0e168 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xeb009d1f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xf3b7d3e0 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xf536bab9 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xf57cdd66 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xfa3976c5 __fscache_register_netfs -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x24faeb6f qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x501c3333 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa5c38bf3 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb68ddd97 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd116ab06 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xff8dbe12 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 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x9bb7e304 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb08cb017 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x03b65d53 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x24677206 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6a7225c0 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xaadfaa15 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcb76fb26 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf3438bce lowpan_register_netdev -EXPORT_SYMBOL net/802/p8022 0x57b56211 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xdc6164a1 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x1850aff9 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x54cd9caa register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00facbd6 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x03df610a p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x08504ff9 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x133be253 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x1590fa2e v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x16c15741 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1c945148 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x1cb943f2 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1cb9a8ed p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x280a6ba4 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3abd6806 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x583ce0dd p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x58a70c9c p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x5dcdb3ba v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x5e5664ef p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x5f2a13d5 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x693cbd87 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6d0cadbe p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x7f0a21d8 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x82d9a329 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x877af174 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x87d7aa77 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x92e8169c p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x95ffe8ed p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9f82bc38 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xa7369835 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa862eb25 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xacdd329b p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb641d96b p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb747b9ab p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbbe7a17c p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xbc92186a p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xbe9bacc8 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xc9bfe882 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xd2b1b383 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd4b74c83 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xdab65d8f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xdc2cdd0d p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf8dfc9bc p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf9b107d2 p9_client_create_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x030c5b2b atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x5367cace atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x6ca061b1 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x757d7d08 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x0d971d20 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x178e83ed atm_dev_lookup -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 0x5d828cb4 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x7a1a4b65 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x8e92f091 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9e10171c atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbc9d37db atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xc64721bc atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xd4f01d38 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xea3a4191 atm_charge -EXPORT_SYMBOL net/atm/atm 0xf23cd520 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xf2745c91 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xff58f8cf register_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x291d13da ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4d49f66f ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x638e7d3b ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x7aba74a8 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x92a61724 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xa30dee82 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xc12a844a ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd9bfa18a ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06d409c8 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07c8bd2e bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14c0a57f hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1edf5124 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ac40aeb bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d40ab28 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f0b1e28 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x328f4155 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3622c548 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b26c830 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e744d3a hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40770164 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x497c8f1b bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e713fe3 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50020899 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57948070 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61a6e161 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6235844e l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6511ebeb hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x68c22f94 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x759b3175 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b57273c bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b994e47 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dbf60a7 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x819c6a26 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x940433dd __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x98cda843 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ceda229 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ebab255 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa745ac2b l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8b084ac l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb01f0af1 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1f88751 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb34e816b hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5474ab2 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6840491 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd4b5bea bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd67f55e hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf1b7270 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe48ef450 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeacc8e6f hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xecec8a63 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef9315d1 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1fa7484 hci_unregister_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5a673a69 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x622218b1 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xed292ee1 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xed73f434 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x27a56362 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6e867d01 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 0xa865c514 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc43c457a caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xca69e77d cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x3d5da1ff can_send -EXPORT_SYMBOL net/can/can 0x72200d16 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x78635c93 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8eeaadd5 can_proto_register -EXPORT_SYMBOL net/can/can 0xb5d51cb4 can_rx_register -EXPORT_SYMBOL net/can/can 0xe26aefc7 can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x03671657 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x07591a2d ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x077536fb ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0b4cc711 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x0dd69e4d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x10d9b027 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x1574888d ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x15998df0 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x1641e178 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x17205b58 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x18815534 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x1ccde97d ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x1d982ed5 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x1eeebcb0 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x1faa096f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x300eddb4 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x30e531e2 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x310a49e0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x31673bb1 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x31916a8b ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x31ea4f61 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x321c851a ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x32ccf31e ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x37e47872 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3c3e5370 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d060fa9 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x3ebd34da osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x40c73dd5 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x41402b94 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x422f8488 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x426cc300 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x451ed70a ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47b76572 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x49201874 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x49440d92 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x4f411334 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x56c02f9a ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59fdae44 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x5a30c545 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5abb80f8 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5e570d04 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x60e6eb5c ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x62d354f4 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x655e03c4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x65d93896 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x67396490 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x68a0d780 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x6964d2e5 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6abc77fe ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x6d9236d0 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x6dcd27f6 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x6ff47f9e ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x734a212b ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x7518baf4 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x79ae528b osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7e4070ae ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x7f6ce350 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x827c4468 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x840d9035 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x86fe9504 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8b79f002 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x8d6ea571 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8dd4f943 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x909445fe ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x90b63325 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x91f97cb7 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x9295b8ec osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x945cc623 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9500ebef ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x99ad4ed3 ceph_osdc_abort_requests -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 0x9cb16a61 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x9cc7b5ca ceph_msg_new2 -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 0xa23cc041 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa3de9108 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6b3c224 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb3440e5c __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbacfb822 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc43e1d9a ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xc85760b0 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc864d209 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xceb15eb6 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xcee71e0c ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xcfa7f192 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xd17eb4d1 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd2d29652 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd3964664 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xd425589f ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7464453 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xda7d0b38 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfa19ca5 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0559bbd osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe0e91272 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe5a887fb ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe7c8bc3f ceph_copy_user_to_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 0xf20d4a33 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xf8a966d4 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xf8ab6d33 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xfa6b4727 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xfab555bb ceph_auth_update_authorizer -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf4e91b86 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf90e4a64 dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0x065a14ba dsa_port_vid_del -EXPORT_SYMBOL net/dsa/dsa_core 0x1c01263c dsa_port_vid_add -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0bb2a7a2 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x16649f2d wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4e8c6c07 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x80eb7d72 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc6f7ec0e wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xcccd91dd wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8669564e __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xa5f9d5fa __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xa20390f0 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5d2f09d8 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6a2ef82c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8cf7cadf ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9471acbf ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x04a9a58a arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8d97e3ed arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc6eb138e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd6918fed arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3c9914d9 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6a8dea8c ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb9008248 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x05b987f1 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x68f995d9 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x16c152b1 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x00ccc886 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x021128ac ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2b6424bb ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c64dc30 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb997dce0 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcc64f395 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdcfb3d6a ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeba4ffb6 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf20249cb ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4abcc890 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7d747e44 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd0ca5dbe ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2211e957 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xb37ace77 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x48a870d3 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe4d8c3b5 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0x0d6d6811 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_core 0x9c2213e5 l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5d61f0be l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x08819079 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x0fb054f9 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x15aeb625 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x178656aa lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x73b6a87b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x89c4756e lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb24980e2 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xb4786636 lapb_disconnect_request -EXPORT_SYMBOL net/llc/llc 0x1405fe33 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x2087994d llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x6311e51f llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x7d666aec llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x89efa9f7 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xc22684f2 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd9f38091 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x0307e81f ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x060e03cb ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0b06793b ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x0e200527 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x0e7d0360 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x12884158 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x13f24a34 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x1499a80d ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x14e989e9 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x15ca2da7 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x16a32f87 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x176c04ca ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x19cb9f4d __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a0960ed ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1d624aba __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x1fce0306 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2246eacd ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x26d54b07 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x28be0cb7 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x2d635229 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2ec28cc1 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x3205ec26 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x35bcb3b5 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x393ad3f7 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x3caa1e0b ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x40af041d ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x40b2e1a0 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x451e589f ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x463ee2f8 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x46c075ad ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4fbc8bc6 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x514b3fbe ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5226bf45 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5267ddf8 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x5abd847c ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x5b923d27 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x5fa363a3 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x6265d4c7 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x688a65a6 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6df2a013 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x74d5ee96 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x76d6b06a ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x79e95e10 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x7cf71c4d ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x7d42238e ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x7edb9013 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x806c5cf3 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8556075b ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x87caa752 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x8a4e260d __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x90ba3e16 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9409970f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x96070931 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9ab2e4cd ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7340e2 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9dc21dfd ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9de70684 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xa17c20a3 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa35f59ff ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa8933084 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa958a8d6 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xabdc96c8 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb04aa6ef ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xb2377653 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xb598c2ff ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb69ff4e5 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb80968b2 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb8ca9e5c ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xbb5c7d39 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xbb8d7a4a ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xbe2bdbb7 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xbf7125d8 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc25b3fae ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xc4dff8db ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xca468b12 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xca6a9cd0 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xccb2af12 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xcce8555a ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd10e8742 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xd75cc209 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xdab8c864 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xdb640813 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xdc098737 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe0db55b6 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xe19b8ad9 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe433b8f1 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xea3a28f9 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf151a721 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf407c8c7 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xf983957f ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xfa1f95fb ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xff592f76 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac802154/mac802154 0x17ad292d ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1f1ba703 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x23a8227c ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x36f2b670 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xb26213c6 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xba54a94b ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd44296c5 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xd88e713b ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ba14e04 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c8c6fd0 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2da520fd ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3993bc4a ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x505fb88a ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5476ff0f ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5946f196 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b525424 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8998527 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbea2086d unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc40fdc24 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd65ed132 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe40b0712 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8a4d2b8 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa919b92 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x05b54996 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x24aabda2 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x26d141b0 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x4e767fe4 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x5cbc529c nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x7fd366ce nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x9e83c3be __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1c84143c xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x27fec474 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x44c5f6fd xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x8625209e xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x86c6f329 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x956e9127 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc8fdc408 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 0xedeef206 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf075f2f4 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0746270f nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x09c37385 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1a4c05b3 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x29e157e7 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x4821323e nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x5af6f785 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x60025c8a nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x676729cf nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x77a3fe00 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x80858178 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xa14da97e nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa1824535 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb758fbd2 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xc723d145 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdeee5c67 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xdf1586fd nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xe0d86bcb nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xe385aff1 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xe819d09a nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xea9e6f1f nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xff045059 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/nci/nci 0x15d0f57f nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x171edcda nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x1ae9c7d9 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x1e30f1a0 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x21a8f785 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x26c8c41b nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x32341e89 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x35e5d600 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x39592c58 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x3d559ba2 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x3ed92230 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x44cf5cd8 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x47fd703f nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4927ec1c nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x6547691f nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x6f4c788b nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7568b56d nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x852fb79a nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8a8c54b2 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x8f235ece nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xa7d297e8 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa8c71420 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xb263575d nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xd29ebbbb nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xe18b2edf nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xeadda1a7 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xee4a460a nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf4c88d55 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xfb2ee48c nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x00b6c359 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x07165684 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x0991d0d6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x0e0e919c nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x29697171 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x34c65fb1 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x4261b22e nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x57fab0b8 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5ccbeeee nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x637af7ee nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x641f7314 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x6672fc05 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x680f0a7b nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x7fe8856a nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x81f24187 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x826a6b63 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x97a8cdeb __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xac7f3cab nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xb562a8ad nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xc61465a9 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xc7093f6a nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xd267e40c nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xed82b27e nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xfb8511ef nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xff81fb7c nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc_digital 0x698f7a2c nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x95037416 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc18cb3ed nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xcc19b569 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x0edaa92d pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x26346a63 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x42a2de31 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x59ddda86 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xa9f566f3 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xabdf79dc phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xb3b2ffc9 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xe9ef00f9 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ab7a6d5 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19406b1a rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x243d2b62 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d9c99a3 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x46ad375e key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x46eaf658 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x62e496d6 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x85e02e40 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b6d80d7 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9dbd7084 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa5791296 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc559874d rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe0764224 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf17291d1 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5776b67 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf6c85a0e rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xff5015d8 rxrpc_kernel_check_life -EXPORT_SYMBOL net/sctp/sctp 0x170017cc sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3761935e gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x67fd1d47 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6aadddd4 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9b58eeea svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe3a55be0 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf77493d4 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x0d800d84 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x156633da tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x20fbfb35 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x2b31812c tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x0c412f8b tls_get_record -EXPORT_SYMBOL net/tls/tls 0x5220779a tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0x81f70ed6 tls_register_device -EXPORT_SYMBOL net/wimax/wimax 0x672d0b4a wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xdfd75482 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x01032d3e cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x039ef573 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x03e55e97 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x04a9f73d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x09a1d0ea cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0b4412d5 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0c296af6 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x123703a8 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1f00e0d1 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2342452e cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x24d47e6d cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x257a9ed1 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x29b8c7cf cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x2a79b833 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x32c16db2 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x36a2b5f4 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x3970ebed cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x39ac0558 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x3b08bc31 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x3be9e0c9 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3d1e7f8a cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x3e9faf3f cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x43ead9ee cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x47a21a82 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x4864b8e8 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x48a6e881 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x48c0de53 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x4c366da9 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x4d6cf071 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4eb15123 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x5ad42178 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x64df0859 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x65480741 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6ba106cd cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x6bbe7812 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x6c21c4d7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x6e690904 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x6ea58edb ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x6f202f55 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6f808230 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x736cc937 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x768ea489 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x7f44bc3d cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7feb88ed cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x830f4bd2 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x87b4b44d cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x8846c1f5 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x887a5694 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x897a2cc5 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x89fa146c cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91a4f9ec cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x97a5b067 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x97c5b8bb cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x9d494546 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x9fb9a0a1 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xa0f35ce9 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xa3efd41b cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xa4bec015 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xaaa0aaf4 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xac87b98f cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xad48b528 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xade3b5df cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xb2e276a2 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xb74c3f7d wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xba6f7367 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xbd93b83c cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xbe185f0e cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xbf8025ce cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc251617a cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xc3bb5b16 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc6eb9d65 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcad6dd30 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcae97501 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd5d8291 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xce824286 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xcfa141e3 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xd17f266d cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd79801cb cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xdb020c0b cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdca5b613 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdd4f0853 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xddccb8b2 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xdfaa1eff cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xe48a6694 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xed6961ea cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf30f903f wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xf5213a3b ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf9a63039 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xfb919941 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xfc0cb284 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xfd222f72 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xfe737126 regulatory_hint -EXPORT_SYMBOL net/wireless/lib80211 0x3206fc5d lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x697ad24f lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x7f4b4751 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x90a5aa09 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc2834735 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xcf7791b8 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0x4b293001 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa981a4d5 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 0x41b7e368 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 0x80937225 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9715b495 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf759d008 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 0xf0a1fdb3 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 0x357ba7e3 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x035295d8 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x03a8c067 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x11908dbd snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x165ad4a3 snd_card_set_id -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 0x1bc76258 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x2216a18d snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x32b66837 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3ab2eb53 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x3e911e6d snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x3ef3e87c snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x3f092697 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x427ca77a snd_info_register -EXPORT_SYMBOL sound/core/snd 0x48902ef4 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x497c20a3 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c2844c1 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x4e0f5d5f snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x534a2294 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x587c4a30 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x7221ff6a snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x72529d9a snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x750782be snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x7cfed3ee snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x7e615a89 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x80c69911 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x81485e52 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x88378ec3 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x94255ec4 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x996d47c5 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f47ec4b snd_device_free -EXPORT_SYMBOL sound/core/snd 0xaae9c2ff snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xad65e075 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb564d917 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xb9563986 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xc3aa6abb snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xcd732a3d snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xd6e55e81 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xd73b5c0c _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xdd4e5210 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xe079273d snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xe0b9e57c snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xefd56b1c snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xf2276561 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xf4230ea0 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xf551f3c1 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xf5b27d7c snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xf99fd3da snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xfdb77c21 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x0e2b1586 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 0x0d2fe920 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x0fa07922 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x13e5da78 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x14b86349 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x16a5d8fc snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x1814a70c snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x1a280bf8 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ffc1fda snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x20ac6c3b snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x2a97ec34 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x487ea9b6 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x4b735ceb snd_pcm_hw_rule_noresample -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 0x56531855 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x6144270b snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x616ea934 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x619898b9 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x627210e5 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x64916380 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x75870b9a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x75e5bab5 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x7aac8f15 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x850e9385 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x85879a63 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x859c4f68 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9a0a38e6 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9b0ec6e7 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x9d591817 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa7274f2d snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xaab56ef3 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb0328f72 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb948f839 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbaddeeeb __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xc3fb12f6 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xce478a3d snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xd44218cc snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xd64c8c3c _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xd9d5a015 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xe0a80f54 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe634a1af snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe84205e7 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf16a3764 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xf5013d1f snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf7b61f7e snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfcd9f074 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xfd202e62 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32e8771b snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x46558ca2 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x49f15f26 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x52db02d6 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x61cb2bcb snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x62ee2aa2 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c1a770e snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e94f8bf snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x842aca6e snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8536e39e snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x89df29d6 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb107919e snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb86b9aa8 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc002d936 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3029af1 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3a17e75 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc67c210c snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd13f71af snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe2768b37 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf00c8034 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 0xc6d83bfd snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0534750f snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x18a1db6a snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x195a3a5d snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x2712266f snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x3110e0e0 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x77628ebc snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x7cc108c2 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x94b5a99a snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa81eac75 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc35426e2 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xd2ca3b4c snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xdb174868 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xf184ab13 snd_timer_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x03e44790 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 0x268f1c6c snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2a18f54c snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x47bede8a snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5bee6704 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x61cf9b44 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x990e31e5 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9fa0232d snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb2a5d2d0 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbfec96eb snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0a9b3fc7 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1112bbde snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1da9a76f 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 0x529afd02 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x70019c2e snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x87e87d95 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8b87041d snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8cce4abe snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcf5a0499 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08abbf5c avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bb39bc1 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x116f20d8 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20c6f760 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21bf8dc3 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x222dd1d1 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28f85122 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c3e6021 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2fb840f0 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2fc917f4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x398da6d2 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4772560e iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x572dd501 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5864c8e6 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f913d1e iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6585ae7e cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bb9b01e amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c9326c8 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6cd91731 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e6b37ce cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76cad80f cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7aaa95af cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x886bf936 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8989fd2c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d458138 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98d6844c amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad66ab76 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xade008e8 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb20981e8 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8b16801 amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef447ff6 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcad5f4e fw_iso_resources_update -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x22e6d3a5 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x99d86380 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x340d37cf snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6bf26f7e snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9ccf2d29 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb9943680 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc355b36b snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd5608a3a snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd7fdc22d snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xed83a8ae snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1c6abb5f snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x20d681ce snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2765c708 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x75f738af snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84f7fc7d snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb471ddb1 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1bf65848 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28b8ea86 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd5b3f2df snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf5afd77c snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x42144541 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd5649168 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x129209e6 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x160e5074 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x66bbcf00 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6bca0f83 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd98aa253 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf86f5a44 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x202a366f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x47d90787 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4bee8e09 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e73c087 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x98421b1e snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbec7d499 snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0c79533e snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4115bb14 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x75ac6bd7 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa1565f9f snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xccfa58fb snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd54b5f75 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe7fb3af0 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf2e319b6 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf3def5b0 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfb4dab02 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0df342c1 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a93cac3 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b481a94 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ca9f7ef snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3eb9de8b snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4bca7071 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78aec1a5 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91588df5 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9ee6e680 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac4700f7 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba757e7c snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcfe8689f snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda4fa894 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe115db49 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1a1962a snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8024dc2 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed09f029 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xad64303e hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x21a44ae5 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x332428d2 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x35dacd8d snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x42048e6b snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x58bb0aeb snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5cebb1b7 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7f43c682 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8370f6a9 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xef79a747 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x173540c1 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x928874a5 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc9473129 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x009772c2 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e9d4253 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x230dd4ca oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4d740762 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5604a77d oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56f2c74d oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e479a1a oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x665d722c oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66d58a85 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70dfe92f oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b1c8824 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c7c39ac oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7db7456f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8a53d6dd oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d825057 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad3fad02 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8dbb763 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd9cbe888 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3bf22e3 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe4311ec6 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe72a13cf oxygen_write8_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x04038986 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x09c3d7e5 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5fbe4859 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2972756 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd7fa3158 snd_trident_free_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1e5bc92d pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x48c4165f pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1880e38d tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xa10217a5 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x406594f9 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x8ad3eea0 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xea51a890 aic32x4_remove -EXPORT_SYMBOL sound/soc/snd-soc-core 0x8971d7c8 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x22f12ec8 sof_cht_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x2ff2b92c sof_byt_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x5e25cf8d cht_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x8639b9f0 tng_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xaabb51a4 byt_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xb21d53f5 sof_tng_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x08a96454 hda_codec_jack_check -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x2059d4a1 hda_codec_jack_wake_enable -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x6d5dc1b4 hda_codec_i915_exit -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x8b7f3b75 hda_codec_i915_get -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x929c9887 hda_codec_i915_init -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xad312f69 hda_codec_probe_bus -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xf6c6cb80 hda_codec_i915_put -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x5b5be595 apl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x61cf31b7 icl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x703e1716 tgl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xacf31f39 ehl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xaea49b04 sof_cnl_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xdb607bea sof_apl_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xf4d48b52 cnl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x688a10d3 intel_pcm_close -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x878db544 intel_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xb4762a77 intel_pcm_open -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xc7f74550 intel_ipc_pcm_params -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a1108a5 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1504fa90 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16ff0e2d snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21de44ac snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2306b879 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29793480 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2adebdc8 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x330ebea7 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37539327 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b91dbe5 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3fe1d947 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4009419f snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x401af2a1 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45b7ae3f snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5b1dc4e4 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x628cc6fa snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a8e4f53 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85049359 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8594e004 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ab8c692 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f2e2763 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93db1863 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94ceaafb snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95043f0c snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9bc4f5f4 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa089c3c6 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa1947328 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4fe947d snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa93dd6a6 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb396c938 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb76348a2 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd522951 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd73323d snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1c5ba9b snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc58e8176 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9d6bf06 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdb27848 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce013d58 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd833cf97 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc0d3b30 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0b3ce6e snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1d17544 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6f97bdd sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeaf21d37 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2958de5 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8cc4506 sof_io_read -EXPORT_SYMBOL sound/soc/sof/xtensa/snd-sof-xtensa-dsp 0xf85bd2d1 sof_xtensa_arch_ops -EXPORT_SYMBOL sound/soundcore 0x34a72d32 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x4471dd60 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0x9b551399 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd183978c register_sound_special -EXPORT_SYMBOL sound/soundcore 0xff61d7f7 sound_class -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0352c5fe snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3139c650 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 0x6dd49d6b snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8b63d556 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x94d4a8ac snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xab5d40a6 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x293ac667 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x34ac95ae snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x48f920c4 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7d95566f snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x85659341 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x97bb24f2 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9db98086 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe2935f8c snd_util_memhdr_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc7a9dee9 __snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x01bbd6a6 ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0x25d12752 ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0x3278c2f8 ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x3bb3e3a8 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0x3be81e65 ssd_get_version -EXPORT_SYMBOL ubuntu/hio/hio 0x3e04d39e ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0x61fa1050 ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xa2b69ee9 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xaedde622 ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0xee37af8e ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0xeecfa5bc ssd_submit_pbio -EXPORT_SYMBOL vmlinux 0x00080128 d_splice_alias -EXPORT_SYMBOL vmlinux 0x001e9cdb pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x0027a31b pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x00330160 get_super_thawed -EXPORT_SYMBOL vmlinux 0x0043a977 input_release_device -EXPORT_SYMBOL vmlinux 0x00469741 sock_no_bind -EXPORT_SYMBOL vmlinux 0x004f4a6b dm_get_device -EXPORT_SYMBOL vmlinux 0x00675ff4 rproc_add -EXPORT_SYMBOL vmlinux 0x00749227 cdrom_release -EXPORT_SYMBOL vmlinux 0x0081bba5 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x00825467 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x008439bb ip6_frag_init -EXPORT_SYMBOL vmlinux 0x00947109 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x009970dd sg_miter_start -EXPORT_SYMBOL vmlinux 0x009a642f mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00af7c07 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x00b2bb6b vme_init_bridge -EXPORT_SYMBOL vmlinux 0x00ba5d80 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x00bc734f seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x00cba945 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x00d0776f update_devfreq -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e91fce sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x00eba0da hmm_mirror_register -EXPORT_SYMBOL vmlinux 0x00f7d99f page_pool_destroy -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0109c47a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x0113be77 napi_disable -EXPORT_SYMBOL vmlinux 0x01378989 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014fd427 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01780e39 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x017e39ca pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01a2f136 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x01a6efe2 tty_write_room -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01efb7b3 new_inode -EXPORT_SYMBOL vmlinux 0x01f636b8 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -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 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x0267c1a8 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x026d8e2d skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x02727a99 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02826a70 sock_i_ino -EXPORT_SYMBOL vmlinux 0x02a03f10 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02baaeac pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x03046943 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x0313f964 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x0334cca9 __skb_checksum -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0351ba9c mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x035d5a4e blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039f11a9 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x03a48c6a __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x03c2c35c sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x03cfdc3e amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x03d197b2 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x03de6c0a dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x03df96f3 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x041fd6dc mmc_start_request -EXPORT_SYMBOL vmlinux 0x04248486 flush_signals -EXPORT_SYMBOL vmlinux 0x0438882c __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048cbb83 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x0490113e rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04cecdd5 tcp_close -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f1ffd8 pps_register_source -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050e3887 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052887e6 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x053432dd lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x054479a0 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0545c828 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056562fa tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x05672188 i2c_transfer -EXPORT_SYMBOL vmlinux 0x057281e3 filemap_flush -EXPORT_SYMBOL vmlinux 0x0575ac96 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x0575c078 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x058d1f86 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x05a2d283 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05bf653f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x05ca34a5 fasync_helper -EXPORT_SYMBOL vmlinux 0x05fcdcf0 pci_release_region -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x06122554 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062692ba nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x0629032c __netif_schedule -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065d729a vme_irq_free -EXPORT_SYMBOL vmlinux 0x06a1169e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06ad0ec2 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c5b644 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06d546ce dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x06df0442 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x06f337bc inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x070fa01f mmc_command_done -EXPORT_SYMBOL vmlinux 0x072e7595 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074b7699 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x074e0d8a security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x076ce512 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x0785cccc blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x07a3956c __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bce3c3 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d634e8 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x07f51f0b twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08484c02 generic_setlease -EXPORT_SYMBOL vmlinux 0x0858aa26 config_item_get -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x089c8376 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x08e549ab __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x09047ec6 hmm_range_unregister -EXPORT_SYMBOL vmlinux 0x09119d46 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache -EXPORT_SYMBOL vmlinux 0x093b37ac mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x0944c43f node_states -EXPORT_SYMBOL vmlinux 0x095456ad inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc -EXPORT_SYMBOL vmlinux 0x096821f1 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x09682235 down_timeout -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09b53ae7 make_kuid -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09ccac46 nobh_writepage -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09dd6dcb consume_skb -EXPORT_SYMBOL vmlinux 0x09f4a753 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x0a04b210 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a0ed3c9 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3ea8b0 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x0a407264 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x0a41bca1 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x0a503554 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x0a6e487c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x0a7327c4 simple_write_begin -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8ee5c4 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x0a9b90fb __bforget -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x0adcd5dd pci_set_power_state -EXPORT_SYMBOL vmlinux 0x0ae56dc0 do_SAK -EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible -EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1c13e9 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b3be752 fput -EXPORT_SYMBOL vmlinux 0x0b40b800 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x0b4823e9 dev_driver_string -EXPORT_SYMBOL vmlinux 0x0b5c2619 set_device_ro -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7bbb0b input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x0b7f66d0 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x0b969a56 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0b96f186 drop_nlink -EXPORT_SYMBOL vmlinux 0x0b979abb inet_gso_segment -EXPORT_SYMBOL vmlinux 0x0b97c434 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x0bbf5bd1 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc62523 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x0bcb425a nd_btt_version -EXPORT_SYMBOL vmlinux 0x0bd3575a blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x0beffeb8 sock_edemux -EXPORT_SYMBOL vmlinux 0x0c05eeca simple_nosetlease -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c1940fa pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x0c1c5b02 md_write_end -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c5e7f31 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c7886c2 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x0c795e31 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x0c9c7566 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x0ca6cdab netpoll_print_options -EXPORT_SYMBOL vmlinux 0x0ca874d2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x0caa1ae4 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cb55389 tcp_prot -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0ce41bd3 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x0ce9ee9b netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x0cea0662 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x0cf17b49 vme_master_request -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d2c4202 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x0d41b390 unlock_page -EXPORT_SYMBOL vmlinux 0x0d4239bf d_obtain_root -EXPORT_SYMBOL vmlinux 0x0d48241e devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x0d4a4af3 nf_log_register -EXPORT_SYMBOL vmlinux 0x0d4b299b md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d781147 bd_set_size -EXPORT_SYMBOL vmlinux 0x0d9d0f45 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x0db1e784 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x0dd6f56e pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x0dda1b6f i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x0de88f26 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x0dfc82ce security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x0dfdb733 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x0dfffad6 no_llseek -EXPORT_SYMBOL vmlinux 0x0e05371d _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e23f4d3 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0e3558c5 should_remove_suid -EXPORT_SYMBOL vmlinux 0x0e53d43e security_path_unlink -EXPORT_SYMBOL vmlinux 0x0e61f649 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x0e68bc64 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7e2106 pci_choose_state -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec7e781 kthread_bind -EXPORT_SYMBOL vmlinux 0x0ecdd3dc nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x0ef4c4e9 inode_insert5 -EXPORT_SYMBOL vmlinux 0x0ef85147 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0f0229cc d_find_alias -EXPORT_SYMBOL vmlinux 0x0f03e028 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0e159f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x0f2064db ip_options_compile -EXPORT_SYMBOL vmlinux 0x0f31b231 mmc_get_card -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3eda76 vfs_mknod -EXPORT_SYMBOL vmlinux 0x0f5b0418 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x0f6f5b03 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f952dd9 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x0f98052b blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x0f9808e0 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fae393e inet_frags_init -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb196dd __getblk_gfp -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb55a8a blk_get_request -EXPORT_SYMBOL vmlinux 0x0fc1303b input_get_timestamp -EXPORT_SYMBOL vmlinux 0x0fc232cd devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe039af may_umount_tree -EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10010b72 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103af748 sock_create -EXPORT_SYMBOL vmlinux 0x10428049 ihold -EXPORT_SYMBOL vmlinux 0x105ca40c twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106b0938 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x1070b81e soft_cursor -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107fb24a devm_clk_put -EXPORT_SYMBOL vmlinux 0x1086d805 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x109fbe7a ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x10b21539 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x10b82102 datagram_poll -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c5f369 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x10d37d34 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dbe11b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x10e2354f mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x10e8c435 nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0x11058a09 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111533b4 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11810d1a cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x11973412 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x1197cfd5 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x11983c0c __mdiobus_register -EXPORT_SYMBOL vmlinux 0x11a69bf2 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x11bf0b16 kill_pgrp -EXPORT_SYMBOL vmlinux 0x11d24c46 fs_bio_set -EXPORT_SYMBOL vmlinux 0x11d9dbcc inet_sendmsg -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x120ebf0a __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x1215754c blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x121a213a ppp_channel_index -EXPORT_SYMBOL vmlinux 0x123b033b uart_suspend_port -EXPORT_SYMBOL vmlinux 0x123d83fc phy_driver_register -EXPORT_SYMBOL vmlinux 0x124cc4b0 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x124df3cd rproc_alloc -EXPORT_SYMBOL vmlinux 0x12729d82 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x128b76ec nd_device_notify -EXPORT_SYMBOL vmlinux 0x129234b7 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x12a1ffa7 udp_prot -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a72d0a dm_io -EXPORT_SYMBOL vmlinux 0x12ac064b configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x12b48477 init_special_inode -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d8494b can_nice -EXPORT_SYMBOL vmlinux 0x12e82139 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x131dbf2f free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x13218d4a get_tree_keyed -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13385228 dev_mc_del -EXPORT_SYMBOL vmlinux 0x133e378d skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs -EXPORT_SYMBOL vmlinux 0x13518d72 udp_disconnect -EXPORT_SYMBOL vmlinux 0x135a3c73 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x13634c65 file_update_time -EXPORT_SYMBOL vmlinux 0x13644437 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13c72c89 mntget -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d632e5 revalidate_disk -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14432883 devm_iounmap -EXPORT_SYMBOL vmlinux 0x14462e2e inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x145c877d serio_rescan -EXPORT_SYMBOL vmlinux 0x145fb643 dev_uc_init -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146356ab compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x146e7675 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x1478e955 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x147c0b0b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x1481bfce kset_register -EXPORT_SYMBOL vmlinux 0x14833144 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x1492ca58 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x149b8d46 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cdd2e0 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x14e976a9 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x14ee5db6 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x14fca7fc kernel_listen -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x150fba98 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1522c27c flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x153ec8f3 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15537fc6 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x155946f7 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x156a18fa skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x156c9e3a vfs_getattr -EXPORT_SYMBOL vmlinux 0x15b44217 get_agp_version -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bc8e8c agp_put_bridge -EXPORT_SYMBOL vmlinux 0x15be884b devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c57867 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15cb1797 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x1600102b iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x1600676c phy_modify_paged -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1625e478 __block_write_full_page -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162b67b2 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x162d3a46 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x163172c5 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x165b145c ex_handler_refcount -EXPORT_SYMBOL vmlinux 0x165c240d abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x1665f66a bh_submit_read -EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a342a1 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x16a87421 mpage_writepages -EXPORT_SYMBOL vmlinux 0x16b63783 dev_set_alias -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16dd42ab blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f7d973 i2c_release_client -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x171d4c8c seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x175478e4 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x178b6979 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x178b6c8a blk_get_queue -EXPORT_SYMBOL vmlinux 0x178d2454 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x1797ed5a xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0x17987233 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0x17abfd07 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x17ae35aa pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x17afa1d0 kill_bdev -EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17c34c10 __put_page -EXPORT_SYMBOL vmlinux 0x17cb84a6 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x17d8380c devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17ff177d elv_rb_find -EXPORT_SYMBOL vmlinux 0x1815f288 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x18190878 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x181b4ad9 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x182aae34 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x182e5b13 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x18364dca neigh_connected_output -EXPORT_SYMBOL vmlinux 0x185aaca7 tty_register_device -EXPORT_SYMBOL vmlinux 0x185bfa04 tcp_connect -EXPORT_SYMBOL vmlinux 0x185c71c3 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18c59fbd phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f2b5f8 vfs_rename -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x1916dd7f dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x1946774d fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x19592bde blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x195c7221 skb_copy_header -EXPORT_SYMBOL vmlinux 0x1980d71d key_move -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x1996b68c dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b252db dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ceafcf devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a4563ab release_pages -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a6269b2 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a6485df vme_register_driver -EXPORT_SYMBOL vmlinux 0x1a6d1f13 netif_napi_del -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a87be08 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x1a88e2f0 submit_bh -EXPORT_SYMBOL vmlinux 0x1a96688c input_close_device -EXPORT_SYMBOL vmlinux 0x1a987768 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9be0a1 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x1aaa68f6 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x1ab9bc9d inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad09655 scmd_printk -EXPORT_SYMBOL vmlinux 0x1ad3127a twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x1ad3dfb8 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x1add126c pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x1af6a271 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x1afea864 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b12b128 vm_mmap -EXPORT_SYMBOL vmlinux 0x1b1f33d3 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x1b29e540 register_netdev -EXPORT_SYMBOL vmlinux 0x1b31825e mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x1b44c663 current_task -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5d370d kfree_skb_list -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b67c208 sk_stream_error -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b81e402 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bd4558e sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1c0a662c inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x1c10e847 km_policy_expired -EXPORT_SYMBOL vmlinux 0x1c127a20 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x1c18293a clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x1c1ceaf0 invalidate_partition -EXPORT_SYMBOL vmlinux 0x1c2cfeb9 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c342dc3 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x1c56b625 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5a0b27 inet6_release -EXPORT_SYMBOL vmlinux 0x1c6cf613 bdput -EXPORT_SYMBOL vmlinux 0x1c710f2c __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x1c82ce7a iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x1c9a7993 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x1c9def67 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cb9affc noop_qdisc -EXPORT_SYMBOL vmlinux 0x1ccee4d0 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x1ccff9df install_exec_creds -EXPORT_SYMBOL vmlinux 0x1cd9d7f6 devm_ioremap -EXPORT_SYMBOL vmlinux 0x1cde9a4f sock_sendmsg -EXPORT_SYMBOL vmlinux 0x1ce3210e jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x1ce8fd27 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x1ce9aef0 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x1cfa6a09 ip_frag_next -EXPORT_SYMBOL vmlinux 0x1cfdb644 mdiobus_write -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d2fe953 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x1d30ed8e _dev_emerg -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4a590e tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x1d5122f1 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x1d5b3ba3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x1d70c72b phy_connect -EXPORT_SYMBOL vmlinux 0x1db3617c d_add -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dbae913 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0x1dce1a6d sg_miter_skip -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de5fced __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x1dec1cb8 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e3de368 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x1e49806c devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1e6c0d53 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e99b207 param_get_long -EXPORT_SYMBOL vmlinux 0x1e99f404 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb88505 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1eec61b7 __brelse -EXPORT_SYMBOL vmlinux 0x1f046d09 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x1f124b35 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x1f15e0a3 brioctl_set -EXPORT_SYMBOL vmlinux 0x1f17dbe6 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x1f2649f0 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x1f2cf614 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x1f309b21 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x1f433eed tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x1f43a906 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x1f5d1b8a kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x1f6aa4fe __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x1f74db74 fs_parse -EXPORT_SYMBOL vmlinux 0x1f8491f9 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x1fa5136b bio_chain -EXPORT_SYMBOL vmlinux 0x1faf7c12 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x1fb0f2ca user_path_create -EXPORT_SYMBOL vmlinux 0x1fb1298a ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fcd2efe phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd1baa9 bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x1fd1fa89 config_group_init -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1ffad3a4 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x203ab507 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2057b66b dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x2058034f __put_cred -EXPORT_SYMBOL vmlinux 0x2063a47a flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x209d914e filp_open -EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20acbccd mmc_can_erase -EXPORT_SYMBOL vmlinux 0x20b443cc pci_clear_master -EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20c3fc9d __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x20ca4e7b d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d2c1b9 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e575f5 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x210b2403 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x215d8162 tty_throttle -EXPORT_SYMBOL vmlinux 0x216943ac d_obtain_alias -EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x218ae3e5 input_get_keycode -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a39fc3 phy_loopback -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21d831e4 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21ff0e32 rt6_lookup -EXPORT_SYMBOL vmlinux 0x221a6843 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x221cd6c8 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x222035bf proc_set_user -EXPORT_SYMBOL vmlinux 0x2220d972 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2244b89a reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x225fd44f kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x226181c7 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x2274f3a9 uart_register_driver -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227822cb vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x227b1718 tboot -EXPORT_SYMBOL vmlinux 0x22802046 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x22849a50 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x22a647d5 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x22a99807 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bd5ecb tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x22c6f7f5 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x22c95518 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x22d0c28b filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22f06a4b md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x22f08746 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x22f3f13e uart_update_timeout -EXPORT_SYMBOL vmlinux 0x23029edc genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x231a6e52 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x231f0275 skb_store_bits -EXPORT_SYMBOL vmlinux 0x2330e2e4 pci_select_bars -EXPORT_SYMBOL vmlinux 0x2364da19 key_validate -EXPORT_SYMBOL vmlinux 0x2367d37e fb_set_cmap -EXPORT_SYMBOL vmlinux 0x236edca4 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x2374334f tcp_poll -EXPORT_SYMBOL vmlinux 0x2377e92e free_netdev -EXPORT_SYMBOL vmlinux 0x2387989f skb_copy_expand -EXPORT_SYMBOL vmlinux 0x2389ea93 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2395e56c tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x239a3b0a pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23d33ba8 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x23d3d31d set_pages_uc -EXPORT_SYMBOL vmlinux 0x23d7f68f skb_checksum_help -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dad915 dquot_destroy -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f42638 agp_copy_info -EXPORT_SYMBOL vmlinux 0x23fb71ce dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24024393 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x241f0044 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24282dc0 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x242866b3 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x2433cbf8 bdi_put -EXPORT_SYMBOL vmlinux 0x2433cdcb tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b8564 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x2462f4b3 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x24645d02 input_register_handle -EXPORT_SYMBOL vmlinux 0x24678c91 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x24734b7c vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x24808659 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24a51ad2 napi_get_frags -EXPORT_SYMBOL vmlinux 0x24b9ee99 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x24d1b135 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dd3fd9 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x24dd549c bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x24efad69 cont_write_begin -EXPORT_SYMBOL vmlinux 0x24fc153c devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x253a5c12 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x254b59b4 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x25515d93 file_path -EXPORT_SYMBOL vmlinux 0x2561d572 dst_release -EXPORT_SYMBOL vmlinux 0x25676a30 unlock_rename -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x2574d1ea udp_seq_stop -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x25884e55 prepare_binprm -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x2597627e tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x259b5d4a kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x259f5ece path_has_submounts -EXPORT_SYMBOL vmlinux 0x25a08293 task_work_add -EXPORT_SYMBOL vmlinux 0x25a76ba0 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x25b39fac acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x25ce5e77 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x25d1a74f __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f32531 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x25fd9b58 vc_cons -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x2612673a netdev_info -EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 -EXPORT_SYMBOL vmlinux 0x26424729 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x267135d3 read_cache_page -EXPORT_SYMBOL vmlinux 0x2673ca80 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x26a79f30 seq_release_private -EXPORT_SYMBOL vmlinux 0x26aab822 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26eab448 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x26f59145 dma_dummy_ops -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270c9319 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x2717d363 inet_add_offload -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2738793e amd_iommu_rlookup_table -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274abe12 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x275df8f5 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x275e41ad page_pool_create -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x2766ea47 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x276e8b43 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x277223fd sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x27758ebe xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x277b39fd netif_stacked_transfer_operstate -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 0x279f7e20 generic_writepages -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bec02e param_set_bint -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e0a3ff device_add_disk -EXPORT_SYMBOL vmlinux 0x27f04d8d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x280f3762 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281a93a6 vfs_unlink -EXPORT_SYMBOL vmlinux 0x283b0898 dup_iter -EXPORT_SYMBOL vmlinux 0x283e8d3a dquot_commit -EXPORT_SYMBOL vmlinux 0x283f1e4d free_task -EXPORT_SYMBOL vmlinux 0x2852a8ef netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x28754c37 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28918349 md_write_inc -EXPORT_SYMBOL vmlinux 0x289258a0 vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x289792fa __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x28b6ba97 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x28d3f20e pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x291a250d flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x29361773 complete -EXPORT_SYMBOL vmlinux 0x294507e3 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x295e8844 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert -EXPORT_SYMBOL vmlinux 0x29ac6cfa input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29d3625b iov_iter_advance -EXPORT_SYMBOL vmlinux 0x29e14c7d udp_gro_receive -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x2a1034cc __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2a15f39b inc_nlink -EXPORT_SYMBOL vmlinux 0x2a19cdb7 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x2a1ad58e request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x2a1fe70b dev_deactivate -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3e150f km_state_expired -EXPORT_SYMBOL vmlinux 0x2a488721 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x2a516e03 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x2a535712 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x2a6a04ec alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x2a7460ef dquot_quota_off -EXPORT_SYMBOL vmlinux 0x2a83c989 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock -EXPORT_SYMBOL vmlinux 0x2acbb342 netdev_err -EXPORT_SYMBOL vmlinux 0x2ae9260e skb_checksum -EXPORT_SYMBOL vmlinux 0x2b0c73b7 netif_device_detach -EXPORT_SYMBOL vmlinux 0x2b187468 from_kgid -EXPORT_SYMBOL vmlinux 0x2b1ece77 genphy_read_status -EXPORT_SYMBOL vmlinux 0x2b3f4d8e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x2b55af17 follow_pfn -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b612754 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2b62bff7 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b6d8feb cdev_alloc -EXPORT_SYMBOL vmlinux 0x2b800b2e finish_no_open -EXPORT_SYMBOL vmlinux 0x2b8a9e47 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x2b94de22 gro_cells_init -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x2bc1d6a7 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x2bcfbef2 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bee8804 d_lookup -EXPORT_SYMBOL vmlinux 0x2c11b99f rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x2c120acf param_get_byte -EXPORT_SYMBOL vmlinux 0x2c1280ed scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x2c1da49d seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c26b5f0 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x2c3aa07b tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c739bd7 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c857d28 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x2c96445d mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cb3abac __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x2cba70fb filemap_map_pages -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d00681d bdev_read_only -EXPORT_SYMBOL vmlinux 0x2d07cb0e blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d36e1fe __nlmsg_put -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d5f184e pci_find_resource -EXPORT_SYMBOL vmlinux 0x2d73da46 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da1fb40 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2dca70ac pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2ddd9e16 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x2dec3571 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e09af2e __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2710f4 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2f1e99 mmc_free_host -EXPORT_SYMBOL vmlinux 0x2e351581 get_vm_area -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e55ebb7 mdio_device_free -EXPORT_SYMBOL vmlinux 0x2e5c4554 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x2e9092c1 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x2e9fa36b jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x2eb9694c scsi_block_requests -EXPORT_SYMBOL vmlinux 0x2ebb210e netif_skb_features -EXPORT_SYMBOL vmlinux 0x2ebcce01 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin -EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f16632d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x2f195495 configfs_register_group -EXPORT_SYMBOL vmlinux 0x2f1e6e41 pci_release_resource -EXPORT_SYMBOL vmlinux 0x2f2007dc devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x2f245565 mpage_readpages -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f4deb13 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f57257a phy_disconnect -EXPORT_SYMBOL vmlinux 0x2f594db8 path_nosuid -EXPORT_SYMBOL vmlinux 0x2f637b83 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x2f6846d9 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f9ac723 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc974b6 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x2fd66287 generic_permission -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff28e57 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x2ff4b482 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x30071dd0 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x3032d019 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x3047f32e dquot_quota_on -EXPORT_SYMBOL vmlinux 0x304c0dd6 tty_port_put -EXPORT_SYMBOL vmlinux 0x304d7312 bio_copy_data -EXPORT_SYMBOL vmlinux 0x30585413 kern_path -EXPORT_SYMBOL vmlinux 0x3074e05c __invalidate_device -EXPORT_SYMBOL vmlinux 0x3088ee47 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x3089a830 file_modified -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b8d616 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x30ceb8f1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x30e20c2e __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x30e24305 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x30e4ecda remap_pfn_range -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f5f28b iov_iter_discard -EXPORT_SYMBOL vmlinux 0x30f61b4b sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x30fad791 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3101215d inet_del_offload -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31062c9b param_set_charp -EXPORT_SYMBOL vmlinux 0x31080279 simple_getattr -EXPORT_SYMBOL vmlinux 0x31149b24 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312ec06f page_mapping -EXPORT_SYMBOL vmlinux 0x31346a0a mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x315ed141 make_kprojid -EXPORT_SYMBOL vmlinux 0x316a99b1 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31ac889c phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x31ada9cd set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31ca542f kmalloc_caches -EXPORT_SYMBOL vmlinux 0x31d47642 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x31def7c0 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x3251d25a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x3261fec8 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3276449f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x327670eb ip_do_fragment -EXPORT_SYMBOL vmlinux 0x32798e03 audit_log_start -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3286a14e d_move -EXPORT_SYMBOL vmlinux 0x328bdf9a dquot_get_state -EXPORT_SYMBOL vmlinux 0x32992023 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x32b73d2d pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x32bc68b7 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x32cd8b3a genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d26c02 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x32e035cd tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x32e444d1 vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x330b394f scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x330b842d netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x3312ce16 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x3316f112 put_user_pages -EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x33292b9f simple_fill_super -EXPORT_SYMBOL vmlinux 0x333f8032 netpoll_setup -EXPORT_SYMBOL vmlinux 0x3348866e dev_load -EXPORT_SYMBOL vmlinux 0x3358881f find_get_entry -EXPORT_SYMBOL vmlinux 0x335cb3cc ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x33658b71 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33ac13fd kernel_param_lock -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c37f94 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x33d40d4e ps2_handle_response -EXPORT_SYMBOL vmlinux 0x33d549a4 mmc_can_sanitize -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 0x34028ba4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3410bcd2 empty_aops -EXPORT_SYMBOL vmlinux 0x34118dc2 inode_init_owner -EXPORT_SYMBOL vmlinux 0x343cf00b mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x343fe4c7 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x344219de clocksource_unregister -EXPORT_SYMBOL vmlinux 0x344acc73 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x34725872 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x349c7be8 netdev_features_change -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d262e pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34add1c7 dev_add_pack -EXPORT_SYMBOL vmlinux 0x34b2d7d4 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x34c4a581 phy_write_paged -EXPORT_SYMBOL vmlinux 0x34dd63e4 devm_free_irq -EXPORT_SYMBOL vmlinux 0x34e440ca vfs_rmdir -EXPORT_SYMBOL vmlinux 0x34e60a59 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x34ea2317 __kernel_write -EXPORT_SYMBOL vmlinux 0x34f0d4d7 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x34fc82fa mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x34ff55a3 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352b9a56 init_task -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3541efcb __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x35509b15 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35866e6e pci_claim_resource -EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x35a32bf2 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35cdfeb8 input_register_handler -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361b1d97 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x362b7ac8 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user -EXPORT_SYMBOL vmlinux 0x36416758 md_integrity_register -EXPORT_SYMBOL vmlinux 0x364b5730 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366acdd8 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x3682c812 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x36b4170e pci_write_vpd -EXPORT_SYMBOL vmlinux 0x36b71bb2 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x36ead843 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x36ef1115 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x36fddb19 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x3700313a single_release -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x3710acb9 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3719560c seq_open -EXPORT_SYMBOL vmlinux 0x372e8e39 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3738c295 scsi_init_io -EXPORT_SYMBOL vmlinux 0x3740d21b netlink_broadcast -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37479201 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x374c0508 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x374cb9fd i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375c5933 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x375cd55e mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x37708600 eth_header_cache -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377ab9bc nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x37a7c52b d_alloc -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c043df dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dfc0cc block_invalidatepage -EXPORT_SYMBOL vmlinux 0x37e8f3d4 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x37ee950f udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x3807e721 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381c2898 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x38202986 sock_rfree -EXPORT_SYMBOL vmlinux 0x382bb5f5 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x3855def3 sock_alloc -EXPORT_SYMBOL vmlinux 0x3865666f rproc_del -EXPORT_SYMBOL vmlinux 0x386e03be fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x387f2d33 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x3881007a i2c_verify_client -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x388c44d5 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x38947874 skb_coalesce_rx_frag -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 0x38b0c2db pci_free_irq -EXPORT_SYMBOL vmlinux 0x38bc19af tty_check_change -EXPORT_SYMBOL vmlinux 0x38c1d516 pci_get_slot -EXPORT_SYMBOL vmlinux 0x38c1facc inode_init_always -EXPORT_SYMBOL vmlinux 0x38cb9809 processors -EXPORT_SYMBOL vmlinux 0x38ccdd7d pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x38d94e98 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e73e44 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x38f2edda _dev_alert -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x390039c1 irq_set_chip -EXPORT_SYMBOL vmlinux 0x39059f82 inet6_getname -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x39194b7e netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x391cd6b5 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399cc2c0 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c7084a ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x3a062877 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x3a069b21 seq_dentry -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a18d55a input_unregister_handler -EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a37d828 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x3a489eb9 serio_bus -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a653bec security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x3a6f2b47 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x3a70d263 netdev_update_features -EXPORT_SYMBOL vmlinux 0x3a994a29 sync_filesystem -EXPORT_SYMBOL vmlinux 0x3a9a6667 eth_header_parse -EXPORT_SYMBOL vmlinux 0x3aa03c2c vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ada488b peernet2id -EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3ae4a1d7 tty_hangup -EXPORT_SYMBOL vmlinux 0x3af30408 block_commit_write -EXPORT_SYMBOL vmlinux 0x3af6bed0 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2c71eb vme_bus_num -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b323d1f tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b67ff49 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x3b6f3666 stream_open -EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds -EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba7ca05 inet_protos -EXPORT_SYMBOL vmlinux 0x3badac5e filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x3bd607bf file_open_root -EXPORT_SYMBOL vmlinux 0x3be58047 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be89f4f hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x3c044bf7 rproc_put -EXPORT_SYMBOL vmlinux 0x3c14a596 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c20d99d pci_find_bus -EXPORT_SYMBOL vmlinux 0x3c3b8b51 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0x3c5256e3 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x3c6b0e6d cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x3c79f1ef devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x3c7b5f56 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c8e4877 d_make_root -EXPORT_SYMBOL vmlinux 0x3c9a92b2 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x3c9db9ca proc_mkdir -EXPORT_SYMBOL vmlinux 0x3c9e7209 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x3cce7871 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3cd3e239 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x3cd79c3f dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x3ce2ef99 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0f0533 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x3d20e772 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d22e658 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x3d36eaf2 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x3d420bbf generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x3d46aaf7 hmm_range_register -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x3d62b779 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3d830f7e get_thermal_instance -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da4bd9a flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x3daa2eb5 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db35d93 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e09f939 skb_clone -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e4ec04f dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x3e5b5fae locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3e5e6f16 truncate_setsize -EXPORT_SYMBOL vmlinux 0x3e668b31 sock_wake_async -EXPORT_SYMBOL vmlinux 0x3e6aadf3 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x3e6e1ff0 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x3e864645 tso_count_descs -EXPORT_SYMBOL vmlinux 0x3e8b319c __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ed1a647 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x3ed9aef8 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x3eda0f54 bdgrab -EXPORT_SYMBOL vmlinux 0x3ee586b0 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f01b804 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f087916 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x3f0c0aa5 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f115012 dma_set_mask -EXPORT_SYMBOL vmlinux 0x3f1649bf rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x3f1ea6c9 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x3f36f72b init_pseudo -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f49985e lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f7a2392 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8cce6d udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3f90a5a7 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fd9acdb genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fef7cbe __ip_dev_find -EXPORT_SYMBOL vmlinux 0x40023449 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x400a8b33 scsi_add_device -EXPORT_SYMBOL vmlinux 0x4016a905 inet6_bind -EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x406098e9 to_nd_btt -EXPORT_SYMBOL vmlinux 0x4075c9ea dev_change_flags -EXPORT_SYMBOL vmlinux 0x407e7ad3 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x4084167f fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x408d7a06 compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409a997e ata_dev_printk -EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock -EXPORT_SYMBOL vmlinux 0x40a01993 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b58a08 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x40bb7328 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x40bbc6af alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cf8374 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40ead16b param_ops_invbool -EXPORT_SYMBOL vmlinux 0x40ffb716 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x410e30d2 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4113b9ae i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x411d16c4 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x4125853f udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x41271ee1 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41508ab3 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x4161eb58 inet6_protos -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4198ca95 __do_once_done -EXPORT_SYMBOL vmlinux 0x41a59639 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x41c4885f sock_no_listen -EXPORT_SYMBOL vmlinux 0x41e7a415 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x41e87c07 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x42089eba nf_log_unset -EXPORT_SYMBOL vmlinux 0x4211f400 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x4215ee79 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42187ddc file_remove_privs -EXPORT_SYMBOL vmlinux 0x4223caf3 ip_frag_init -EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424d602e __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4257925d dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x4257a941 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x42807f1b filemap_check_errors -EXPORT_SYMBOL vmlinux 0x42881bf9 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x42967ce5 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x4296b694 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x42a7dc63 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x42bd0a7b ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c34c76 genphy_loopback -EXPORT_SYMBOL vmlinux 0x42c88b31 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x42d1f007 inet6_offloads -EXPORT_SYMBOL vmlinux 0x42deee13 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x42eb4cf5 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430af636 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x43259b3f _dev_notice -EXPORT_SYMBOL vmlinux 0x4329ccd2 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x43317695 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x433ed544 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x43442fd4 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435201d4 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x43710261 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x4376bcf6 netdev_warn -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4395550b pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x439dcb85 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x43a9112e phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x43ed879d abx500_register_ops -EXPORT_SYMBOL vmlinux 0x43f19037 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x43fba444 __sb_end_write -EXPORT_SYMBOL vmlinux 0x443afedb elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4456fa0d device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data -EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44df6671 d_instantiate -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed6b51 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450dc190 poll_initwait -EXPORT_SYMBOL vmlinux 0x451aab42 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454b21d9 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x45503933 dqget -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456a85fb cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x4576c694 get_cached_acl -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457b8bc1 make_bad_inode -EXPORT_SYMBOL vmlinux 0x45b388de unregister_netdev -EXPORT_SYMBOL vmlinux 0x45becffe dst_discard_out -EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e69e01 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45f1e197 get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x4612ee8f dev_addr_init -EXPORT_SYMBOL vmlinux 0x46150b88 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461e5fe7 vga_con -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x463608ea flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x463d83fe netif_receive_skb -EXPORT_SYMBOL vmlinux 0x4645a30e max8998_update_reg -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x465ee3c5 get_user_pages -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467de41e tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4680936d cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469ee7da dentry_path_raw -EXPORT_SYMBOL vmlinux 0x46a23e37 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d33b37 __scm_send -EXPORT_SYMBOL vmlinux 0x46d3c99f phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x46fa0915 napi_complete_done -EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x474f0e7e security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x47862b57 tcf_block_put -EXPORT_SYMBOL vmlinux 0x478fd4c8 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a1aa13 pci_iounmap -EXPORT_SYMBOL vmlinux 0x47b93c0d locks_remove_posix -EXPORT_SYMBOL vmlinux 0x47bba5bb xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0x47bbbfb4 tso_build_data -EXPORT_SYMBOL vmlinux 0x47c32287 vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47f8741c __put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x4802b728 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x480ef5ce __register_nls -EXPORT_SYMBOL vmlinux 0x480f1019 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x4813b76d cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4856fcfe tcf_idr_create -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4897843a create_empty_buffers -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x489fb15a d_find_any_alias -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b39883 dma_supported -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48d45169 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48ea3b49 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x48ec487b d_path -EXPORT_SYMBOL vmlinux 0x48f1cc9d inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49178ef1 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x495e55a8 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x4970ce13 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x497e7cdf compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x49ce6bbc file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x49d1bc33 inet_accept -EXPORT_SYMBOL vmlinux 0x49d1f41d pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x49fad39d xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x4a2162e6 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x4a3f73cb d_set_d_op -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4b9137 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x4a592d88 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x4a7b608b max8925_reg_write -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa951cc page_readlink -EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x4ab96d76 fqdir_init -EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4acace58 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b2087a3 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x4b262166 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x4b3cbe06 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x4b5d0bf7 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x4b5f6e71 param_ops_bint -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b64eff4 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x4b725081 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x4b77e55a udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4b7f448b mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x4b9a20cf mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x4ba3b3d5 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x4baa8a47 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bb4cfba module_put -EXPORT_SYMBOL vmlinux 0x4bbbfb27 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x4bc776dd ptp_clock_event -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4be5e087 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c0e404a netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x4c280e5d rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4be406 dst_destroy -EXPORT_SYMBOL vmlinux 0x4c5202bf tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x4c72e6bd frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x4c821019 follow_up -EXPORT_SYMBOL vmlinux 0x4c83f7e8 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x4c94fdf2 registered_fb -EXPORT_SYMBOL vmlinux 0x4c9a97b0 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4c9dfae3 amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc7a63c netif_device_attach -EXPORT_SYMBOL vmlinux 0x4cc95784 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x4ccdb147 tcp_filter -EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4d008ed5 km_state_notify -EXPORT_SYMBOL vmlinux 0x4d03a88b shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4d257090 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d2d4cff md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x4d4012b9 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x4d482696 simple_get_link -EXPORT_SYMBOL vmlinux 0x4d6975b7 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da45213 __breadahead -EXPORT_SYMBOL vmlinux 0x4dab2eb2 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x4dc167b5 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd2c4d0 framebuffer_release -EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df4d416 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e22ab94 seq_read -EXPORT_SYMBOL vmlinux 0x4e230a44 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x4e2390d3 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x4e320dbc __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e47454d skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e630da1 __f_setown -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e80104d acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x4e8457ea genphy_update_link -EXPORT_SYMBOL vmlinux 0x4e87e952 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x4e91d6bc skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x4e92e09c nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x4e9ea227 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eb8a57c from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecae356 iov_iter_init -EXPORT_SYMBOL vmlinux 0x4eccc199 sk_wait_data -EXPORT_SYMBOL vmlinux 0x4edbd1e6 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x4efee8e0 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x4eff407f __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4f0a5620 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x4f0b6b9e __sock_create -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f264e0c dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x4f39fd14 dma_virt_ops -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f6bd994 bio_add_page -EXPORT_SYMBOL vmlinux 0x4f726ebf dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4f750f7c param_set_int -EXPORT_SYMBOL vmlinux 0x4f761291 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x4f7e3f1f __dquot_free_space -EXPORT_SYMBOL vmlinux 0x4f93cb16 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x4f9ae511 blkdev_put -EXPORT_SYMBOL vmlinux 0x4fa03ef7 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x4fa4c2f8 vme_lm_request -EXPORT_SYMBOL vmlinux 0x4fc2974b tty_port_destroy -EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4fca7f83 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x4fca8de5 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess -EXPORT_SYMBOL vmlinux 0x4fd0d6a2 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fdf527c inet_frags_fini -EXPORT_SYMBOL vmlinux 0x4ff57f12 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x50033469 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5010a6de phy_device_free -EXPORT_SYMBOL vmlinux 0x50116bef __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x5016b7bf d_prune_aliases -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502efb66 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister -EXPORT_SYMBOL vmlinux 0x505ca300 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x50696c5f lookup_one_len -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50941fb0 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a29206 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50b7c0d7 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c246b0 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x50c8022c mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x50c85b0c rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50e8ef1d dump_skip -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51048422 __alloc_skb -EXPORT_SYMBOL vmlinux 0x510d302c agp_free_memory -EXPORT_SYMBOL vmlinux 0x510dcd7f find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x5116738f mod_node_page_state -EXPORT_SYMBOL vmlinux 0x51228a2a nf_reinject -EXPORT_SYMBOL vmlinux 0x51305c3d adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x5137b4ef xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x513e1191 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x5146302a param_get_short -EXPORT_SYMBOL vmlinux 0x514bdc4c pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5158a6f6 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5198175e blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x519bb6c9 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x519deea4 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x51adaf4d blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d150c5 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x51dff28b con_is_bound -EXPORT_SYMBOL vmlinux 0x51f2b364 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x5206cacf sock_kfree_s -EXPORT_SYMBOL vmlinux 0x5219b4c2 param_set_bool -EXPORT_SYMBOL vmlinux 0x5253d19a seq_hex_dump -EXPORT_SYMBOL vmlinux 0x525e6027 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5285fbe2 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x52869408 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x52869a3d mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529ec6fb kdb_current_task -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f7388b param_get_invbool -EXPORT_SYMBOL vmlinux 0x52fa2994 poll_freewait -EXPORT_SYMBOL vmlinux 0x530781be netdev_crit -EXPORT_SYMBOL vmlinux 0x5309b452 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530d9189 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5313446e pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x535695c9 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x536bb621 genphy_suspend -EXPORT_SYMBOL vmlinux 0x538a8ef9 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53d62840 param_set_short -EXPORT_SYMBOL vmlinux 0x53d6ee11 nd_device_register -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fb4e52 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x54020084 __kfree_skb -EXPORT_SYMBOL vmlinux 0x540754a9 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x541201b5 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x541fd03b __register_chrdev -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542fa59a pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x5432cef8 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x543c957e d_tmpfile -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x545745ee sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x5458c0a4 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x54836bf2 pci_enable_device -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54ac8763 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x54c138cb __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x54ddc158 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54ec8f8e scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x54ecfead neigh_app_ns -EXPORT_SYMBOL vmlinux 0x54f3f6be get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x5504ab2e __page_symlink -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550e1887 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x55135cfa blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x551aa83b is_nd_pfn -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552d3a58 vc_resize -EXPORT_SYMBOL vmlinux 0x552d7d89 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x552e58bd __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x55455ecc dev_uc_del -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5559e0f3 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x555af339 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x55617f5b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x5571f04f vfs_llseek -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559aa686 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x55becc44 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x55c119b2 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x55c59bac vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x55c89edd sk_ns_capable -EXPORT_SYMBOL vmlinux 0x55cb60d9 skb_tx_error -EXPORT_SYMBOL vmlinux 0x55cf6d4d __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x55db5871 devm_request_resource -EXPORT_SYMBOL vmlinux 0x55dbb84f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x55e08d1a to_nd_dax -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e972af mdiobus_free -EXPORT_SYMBOL vmlinux 0x55f6e862 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x560c13ea pci_get_class -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563e6dff sort_r -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x5655e9af bio_put -EXPORT_SYMBOL vmlinux 0x56698a8c linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x567a20e4 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5681f252 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x5688d5b4 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5698cf6d genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x569f51a4 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x56af0a12 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d25326 simple_write_end -EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x56fa30df generic_update_time -EXPORT_SYMBOL vmlinux 0x5723f054 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574d9851 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x5756190f splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57781cc1 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x577cd354 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x5788edc1 get_tree_single -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578c99ba complete_request_key -EXPORT_SYMBOL vmlinux 0x578d7d13 freeze_super -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57986edd fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x57a27900 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x57a83d62 load_nls_default -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57c8fccd uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x57ed2cf9 __register_binfmt -EXPORT_SYMBOL vmlinux 0x58055f2e blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58211966 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x582263c5 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x58332316 tty_port_init -EXPORT_SYMBOL vmlinux 0x58355457 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x58913362 dev_add_offload -EXPORT_SYMBOL vmlinux 0x58935b12 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x589844d9 _dev_info -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58af9d71 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b5f1a6 set_user_nice -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d69f1a set_binfmt -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x59029a6d set_posix_acl -EXPORT_SYMBOL vmlinux 0x5912683d md_check_recovery -EXPORT_SYMBOL vmlinux 0x5926fe11 generic_perform_write -EXPORT_SYMBOL vmlinux 0x5929aa88 param_ops_short -EXPORT_SYMBOL vmlinux 0x592e3c58 param_ops_byte -EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x59487b2a mdio_device_remove -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x597bee25 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl -EXPORT_SYMBOL vmlinux 0x5990e56e pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x599c21ae tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x599dbf81 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a0e559 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59c80e9c rproc_free -EXPORT_SYMBOL vmlinux 0x59cb3e1d msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x59cf672d rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x59d24d24 dst_init -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock -EXPORT_SYMBOL vmlinux 0x5a352781 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x5a3603ba ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x5a3ba27a pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4a4256 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a5d4723 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9b22f9 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x5aa5b354 register_qdisc -EXPORT_SYMBOL vmlinux 0x5aaa6da1 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x5ab5b891 param_ops_int -EXPORT_SYMBOL vmlinux 0x5b020e9e __frontswap_store -EXPORT_SYMBOL vmlinux 0x5b1f48d4 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3a92d8 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b4d3c27 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b924000 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x5b9744a4 proto_unregister -EXPORT_SYMBOL vmlinux 0x5bb180a7 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x5bb31b14 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x5bb74392 filp_close -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bec6c95 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5c0546ab bdi_register_owner -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c6e0b66 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x5c7ccfd2 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x5c88837c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x5c8a8d3f blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x5cca0e2a proc_create_single_data -EXPORT_SYMBOL vmlinux 0x5cd4685e jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x5ce618e9 unregister_nls -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d120b02 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x5d1b7fa1 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x5d3cb586 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0x5d3e6d6b sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x5d47df09 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4dfa2f backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x5d652af0 register_md_personality -EXPORT_SYMBOL vmlinux 0x5d7629c8 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d88585b dquot_resume -EXPORT_SYMBOL vmlinux 0x5d97491b __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x5da2110e release_sock -EXPORT_SYMBOL vmlinux 0x5db78131 neigh_update -EXPORT_SYMBOL vmlinux 0x5dcfedab netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x5debcef7 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x5deca679 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x5df61ae8 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x5dfd4984 passthru_features_check -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e004a47 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x5e0b3f33 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x5e1ba549 module_refcount -EXPORT_SYMBOL vmlinux 0x5e25b37e phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x5e2f640f alloc_fddidev -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e3dce55 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5e590839 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x5e620915 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e93d555 netlink_unicast -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eab8b58 dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ecbfe5c write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5eea292c tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f178cde generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x5f2227b6 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x5f5541e3 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f57c973 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x5f61fde9 udp_ioctl -EXPORT_SYMBOL vmlinux 0x5f6738c0 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x5f6a27be kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f876c38 page_symlink -EXPORT_SYMBOL vmlinux 0x5f8d792f scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x5f8ec373 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f95faac pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x5f97d410 block_write_full_page -EXPORT_SYMBOL vmlinux 0x5fb50da5 put_disk -EXPORT_SYMBOL vmlinux 0x5fb54481 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600a1a5b filemap_fault -EXPORT_SYMBOL vmlinux 0x600ad4e6 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6031be2f seq_vprintf -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl -EXPORT_SYMBOL vmlinux 0x6050e289 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x6056c18d mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6084bdba pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609229a6 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60cd6fc9 __page_pool_put_page -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60eda9bd call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x60f4f09e is_nd_dax -EXPORT_SYMBOL vmlinux 0x61003d0a skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6118ce59 nobh_write_end -EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6145d40e security_sb_remount -EXPORT_SYMBOL vmlinux 0x6156784f agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6162d344 __put_user_ns -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x617e9166 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x6196a361 dump_align -EXPORT_SYMBOL vmlinux 0x619c544c dev_open -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b189c9 amd_iommu_pc_get_reg -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61dc549d param_get_ullong -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61efd4ec pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x61ff03de __icmp_send -EXPORT_SYMBOL vmlinux 0x620fa62c arp_tbl -EXPORT_SYMBOL vmlinux 0x62118e65 rio_query_mport -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 0x6245b7a4 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x6253f962 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x6259740f vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0x6269ee73 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x62718d1f xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62769efb gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x6291dce6 kernel_write -EXPORT_SYMBOL vmlinux 0x629dc9ef sk_mc_loop -EXPORT_SYMBOL vmlinux 0x62aecf70 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x62aed4cc dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c1325e _dev_warn -EXPORT_SYMBOL vmlinux 0x62d5101b nvm_end_io -EXPORT_SYMBOL vmlinux 0x62faf297 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632092ea rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x632f57d4 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6338cebe bio_split -EXPORT_SYMBOL vmlinux 0x633d43aa dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x6368a3fa from_kuid -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c41260 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d0545e vme_irq_handler -EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x63ddb912 put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x644246a6 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x6465a966 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b3b711 path_get -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c81e5c dump_emit -EXPORT_SYMBOL vmlinux 0x64df644e skb_split -EXPORT_SYMBOL vmlinux 0x64e56a00 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x64ea9439 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x64efd061 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x650134b3 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651bad84 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65554f7c xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x655809e0 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x65666939 mmc_erase -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6575078b vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x659f9fed ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65be9a5c uart_add_one_port -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d335c7 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dc8aed nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x661922bf md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662db82a pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x664913e9 dquot_enable -EXPORT_SYMBOL vmlinux 0x665796ce textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x66588b45 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66828d7e fb_set_var -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668e4878 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x6691e2d0 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x66a14031 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x66a5e81e sock_no_accept -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x6706976a vme_slave_request -EXPORT_SYMBOL vmlinux 0x670960f7 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x6713a32d input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x671f2802 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672bd8bf submit_bio -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6744b28f i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x67475662 tcp_child_process -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674bb702 amd_iommu_pc_set_reg -EXPORT_SYMBOL vmlinux 0x675018b7 __inet_hash -EXPORT_SYMBOL vmlinux 0x67529c8a search_binary_handler -EXPORT_SYMBOL vmlinux 0x6763d0c3 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x6765b8b6 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x6778ff2d ipv4_specific -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6790564e dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x6790ff62 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x6794670a inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x67a7cd3e __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cb0e10 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x67ce2de7 param_set_long -EXPORT_SYMBOL vmlinux 0x67dfe9dd pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x67e5dcba pci_bus_type -EXPORT_SYMBOL vmlinux 0x67ff21c7 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x6801fa28 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x680b0427 __break_lease -EXPORT_SYMBOL vmlinux 0x681d6fed is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x682504a5 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x682bc04d netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x68380bad watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x683d2975 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x6873da30 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687decc3 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x68872a3f tcp_req_err -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68adbbdd vfs_create -EXPORT_SYMBOL vmlinux 0x68c853c7 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x68dadfdf pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x68dcf0fb page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x68e38525 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x69004452 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x6902bcc5 input_allocate_device -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690a07db mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x69183055 put_fs_context -EXPORT_SYMBOL vmlinux 0x691b89a3 padata_start -EXPORT_SYMBOL vmlinux 0x691f3492 deactivate_super -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695942e3 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697148f4 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x698c8b14 simple_release_fs -EXPORT_SYMBOL vmlinux 0x699d1c0a scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x69a147ad inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69cba7bd jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69ea6329 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a077ab7 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x6a0abff0 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x6a13b439 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a3024b4 blk_put_queue -EXPORT_SYMBOL vmlinux 0x6a33b38d netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x6a395f62 tty_port_close -EXPORT_SYMBOL vmlinux 0x6a463239 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x6a520e23 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x6a5c51ea vme_irq_request -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5d3f94 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6607a1 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x6a71f8d2 try_module_get -EXPORT_SYMBOL vmlinux 0x6a80105d block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x6a8c1b9d twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x6a8d73d9 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x6a9318c5 backlight_device_register -EXPORT_SYMBOL vmlinux 0x6a9f7978 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab9b4f6 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x6ad1dc86 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x6adc6cd0 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b13094e fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6b18ccfc keyring_search -EXPORT_SYMBOL vmlinux 0x6b2275ef insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x6b253808 set_anon_super -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4a1bbf devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b567956 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba4056b __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x6ba9982e input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb148f rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x6bce42ef pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be323f0 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6c116109 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x6c143515 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x6c175286 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c3e3239 netdev_alert -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c703e40 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x6c7e4865 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x6c81845e pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x6c88175b ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x6c8ef47a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x6ca45ce4 audit_log -EXPORT_SYMBOL vmlinux 0x6cab9cda input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc99476 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6cf6b092 arp_create -EXPORT_SYMBOL vmlinux 0x6cfbf6b9 phy_init_hw -EXPORT_SYMBOL vmlinux 0x6cfc8d56 d_exact_alias -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d0d22fb lease_get_mtime -EXPORT_SYMBOL vmlinux 0x6d0f7614 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x6d1ac4a9 dma_resv_init -EXPORT_SYMBOL vmlinux 0x6d242328 would_dump -EXPORT_SYMBOL vmlinux 0x6d24651e d_genocide -EXPORT_SYMBOL vmlinux 0x6d26ce80 sock_register -EXPORT_SYMBOL vmlinux 0x6d272b26 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e97da dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3ffd5c md_cluster_ops -EXPORT_SYMBOL vmlinux 0x6d40743a d_set_fallthru -EXPORT_SYMBOL vmlinux 0x6d4a5f2a blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d78d080 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x6d7abe02 first_ec -EXPORT_SYMBOL vmlinux 0x6da7ea47 phy_attach -EXPORT_SYMBOL vmlinux 0x6daceb5b sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x6db9dc93 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc74188 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6ddcb61d of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x6ddee054 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x6e1814c7 put_disk_and_module -EXPORT_SYMBOL vmlinux 0x6e1f13e0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x6e2dc8d0 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e76b2f7 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x6e798d3a sock_release -EXPORT_SYMBOL vmlinux 0x6e85b9bb zap_page_range -EXPORT_SYMBOL vmlinux 0x6e97c5c8 param_set_uint -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea00540 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb00e3b amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x6ec3c43a neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x6ecff965 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6edcfc02 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x6efc8f2a file_ns_capable -EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get -EXPORT_SYMBOL vmlinux 0x6f05aa92 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x6f0eaba2 dqput -EXPORT_SYMBOL vmlinux 0x6f0f727a mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x6f137f90 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f1cb80c edac_mc_find -EXPORT_SYMBOL vmlinux 0x6f2335ff alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x6f239330 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x6f374a59 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f5620dd rtnl_unicast -EXPORT_SYMBOL vmlinux 0x6f7212ff tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f7d341a __scsi_add_device -EXPORT_SYMBOL vmlinux 0x6f8aff4b __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa97224 skb_trim -EXPORT_SYMBOL vmlinux 0x6fab1bb4 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fba9d3e ether_setup -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbcdc90 simple_rmdir -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd131ab fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x6fd27167 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70102262 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x701854da __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x703321ce ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x7041af88 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x704db691 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7056a2c7 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x705f9f8a dump_truncate -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x707bd347 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x70823d93 flush_old_exec -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x70ad3e7e follow_down_one -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b80aa0 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x70b982f4 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x70fe8e62 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x7128f961 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712d8cce get_phy_device -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x7157ddde mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x71676812 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71873c92 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x719ab25a pipe_unlock -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a77032 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x71aba36c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x71c725b5 thaw_bdev -EXPORT_SYMBOL vmlinux 0x71d082cf touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x71d2f0b6 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x71dae104 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x71f22313 iptun_encaps -EXPORT_SYMBOL vmlinux 0x7200e72d netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x72015cf6 d_alloc_name -EXPORT_SYMBOL vmlinux 0x7213dd9e dev_mc_sync -EXPORT_SYMBOL vmlinux 0x721e21ff writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x7240ad89 proc_remove -EXPORT_SYMBOL vmlinux 0x724300da handle_edge_irq -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725a8218 cdev_del -EXPORT_SYMBOL vmlinux 0x72683eeb __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x726c9d4b ptp_clock_register -EXPORT_SYMBOL vmlinux 0x726cd8f6 iget_failed -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x72819a39 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x7286c59f phy_attach_direct -EXPORT_SYMBOL vmlinux 0x72986c8f mmc_register_driver -EXPORT_SYMBOL vmlinux 0x72a6c75c __skb_pad -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b681d2 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c845ce mdiobus_scan -EXPORT_SYMBOL vmlinux 0x72d12158 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x72d27af7 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x732c206b fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x73430adc amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738c4217 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x7397026c xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73de6a63 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x73de80c1 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740b74be blk_put_request -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7428691a dump_page -EXPORT_SYMBOL vmlinux 0x743a9ffc dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x746f49c3 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x746ff375 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x74849781 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x749a061b mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x74bcd683 vm_insert_page -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x75234b01 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x75256057 skb_copy -EXPORT_SYMBOL vmlinux 0x7535fd5d has_capability -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x7548628f __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x7548c086 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75587362 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x755af9cd dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x7576f8bf mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7589f46d lookup_bdev -EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c28113 pipe_lock -EXPORT_SYMBOL vmlinux 0x75c3e3e9 phy_suspend -EXPORT_SYMBOL vmlinux 0x75c73075 security_sk_clone -EXPORT_SYMBOL vmlinux 0x75c875df fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x75c8f1ca clk_get -EXPORT_SYMBOL vmlinux 0x75cf665f pci_release_regions -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e60613 key_put -EXPORT_SYMBOL vmlinux 0x75eb3a6a bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x75f99e91 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76375f82 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x7637c6cb security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7648f174 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7673962a vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x769d4afe hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b81dca dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x76b8488c mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x76d153f4 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76dc52ca set_page_dirty -EXPORT_SYMBOL vmlinux 0x76f0709a icmp6_send -EXPORT_SYMBOL vmlinux 0x76f24eef padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x76f7155c locks_delete_block -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x77073085 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x77145184 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x771ba957 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x771f9950 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x772c4615 netdev_printk -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77424ee3 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774c6c40 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x7763d883 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x77853e6c inet_put_port -EXPORT_SYMBOL vmlinux 0x7792cc63 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a75179 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x77ae8442 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in -EXPORT_SYMBOL vmlinux 0x77bb80bb __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c4a36d intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x77c6f454 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x77c85e40 page_get_link -EXPORT_SYMBOL vmlinux 0x77cbc6be tty_devnum -EXPORT_SYMBOL vmlinux 0x77d231a1 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f32d80 pnp_is_active -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc -EXPORT_SYMBOL vmlinux 0x783df68c dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784ee34b pci_save_state -EXPORT_SYMBOL vmlinux 0x7871029d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x7878eeba genl_unregister_family -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a02408 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a2a67a _dev_crit -EXPORT_SYMBOL vmlinux 0x78a2c715 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x78b46e38 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x78cc8d07 inode_set_flags -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e112a3 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x78ebb1da devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x78fac2c5 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x78fd68a4 vfs_get_super -EXPORT_SYMBOL vmlinux 0x790ef5ab tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x790f5b6f tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x79253cfe jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x793500d4 register_shrinker -EXPORT_SYMBOL vmlinux 0x79422c77 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7962ad5a mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x79674d93 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x79832e67 do_splice_direct -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79d2c8d1 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79e440dc phy_read_paged -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a415dab truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a9dfa57 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aaab996 iterate_dir -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac30690 proto_register -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad892d8 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7add805f pci_map_rom -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b01061b dev_get_flags -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b689503 kernel_accept -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b9892e0 param_set_copystring -EXPORT_SYMBOL vmlinux 0x7bb2ffec sk_alloc -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbd2476 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x7bd44d70 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x7bdfb16d dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x7bea9628 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x7c038224 address_space_init_once -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2c2c47 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x7c2f4fcf jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4777f3 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x7c5c565e inet_listen -EXPORT_SYMBOL vmlinux 0x7c6e7192 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x7c6fd6a5 free_buffer_head -EXPORT_SYMBOL vmlinux 0x7c7bb24d blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x7c8ba866 inet_select_addr -EXPORT_SYMBOL vmlinux 0x7c8d8c7e sk_reset_timer -EXPORT_SYMBOL vmlinux 0x7c90ed37 input_free_device -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7caf4245 iget_locked -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce4a273 d_drop -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1311f8 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x7d162f9b __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x7d271419 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x7d412935 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x7d4a7469 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d50da2f logfc -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d6ef39b tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x7da64ea3 give_up_console -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc22cc2 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x7dc91072 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x7dc9fe67 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddac2fe vme_bus_type -EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission -EXPORT_SYMBOL vmlinux 0x7ddec56d simple_empty -EXPORT_SYMBOL vmlinux 0x7de05eb8 pci_match_id -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext -EXPORT_SYMBOL vmlinux 0x7e17b41d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x7e1a30da netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x7e27d795 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x7e2bdb4b inet6_add_offload -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3a02cb xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x7e527f5e dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e7d90cb dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x7e8e3154 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x7e939e0c gro_cells_receive -EXPORT_SYMBOL vmlinux 0x7e96b35d udp_seq_ops -EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock -EXPORT_SYMBOL vmlinux 0x7eea2c03 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f048701 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x7f0b20e3 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x7f212f57 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f26256b xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x7f32e11c nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x7f37cc4d clear_nlink -EXPORT_SYMBOL vmlinux 0x7f37fa04 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5e00ec fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x7f6c4e79 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f885d5c xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x7f9c85f8 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x7f9edc65 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x7f9fc614 is_nd_btt -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fefab7e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x8030ad47 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x803547ee pci_disable_msix -EXPORT_SYMBOL vmlinux 0x803b6f64 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x80420bfc mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x804f9354 read_code -EXPORT_SYMBOL vmlinux 0x8058da95 nf_log_trace -EXPORT_SYMBOL vmlinux 0x8059373b dev_addr_flush -EXPORT_SYMBOL vmlinux 0x806a410d tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x807dc366 sync_file_create -EXPORT_SYMBOL vmlinux 0x80827223 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x808cc526 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x8093db88 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809e5d78 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80add3b5 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x80b143c9 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x80beadb3 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d30bdf register_quota_format -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dc398a sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x80e3ab5d cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x80f2e2e5 phy_init_eee -EXPORT_SYMBOL vmlinux 0x80f5d86b ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x80fb520a ata_link_printk -EXPORT_SYMBOL vmlinux 0x80fd13ac vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x8110d3f6 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x811207bd mfd_add_devices -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8112f245 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8122f4a3 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x812bce3d udp6_set_csum -EXPORT_SYMBOL vmlinux 0x8132045d tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit -EXPORT_SYMBOL vmlinux 0x814c67d6 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x8153b9c9 dm_register_target -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x8168159d seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x817e73bc sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x818ec873 seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x81930f65 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x81a7a1e9 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible -EXPORT_SYMBOL vmlinux 0x81ba3bb0 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e5084f pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8216e987 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x822c6910 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x82473ca0 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x825473de dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x8258533d set_trace_device -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8264d3c0 scsi_host_get -EXPORT_SYMBOL vmlinux 0x8278a921 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8287ef83 import_iovec -EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups -EXPORT_SYMBOL vmlinux 0x8293be84 skb_pull -EXPORT_SYMBOL vmlinux 0x82b8da77 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x82bd050a dcb_getapp -EXPORT_SYMBOL vmlinux 0x82c283cf qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x82d29183 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x8306b4ca clk_bulk_get -EXPORT_SYMBOL vmlinux 0x832d2aa8 udp_seq_start -EXPORT_SYMBOL vmlinux 0x8345bed5 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x834eda4e tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x839fd5b7 simple_link -EXPORT_SYMBOL vmlinux 0x83a331f4 send_sig -EXPORT_SYMBOL vmlinux 0x83acf958 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x83b0d583 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x83b1b5b2 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x83b5294a xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x83b66c28 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cfe9ec mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x83da231a dec_node_page_state -EXPORT_SYMBOL vmlinux 0x84021c57 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8438a2e7 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x8438a8dc update_region -EXPORT_SYMBOL vmlinux 0x8443a4a0 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x8446f1df inet_csk_accept -EXPORT_SYMBOL vmlinux 0x84711caa pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x847a12e5 dquot_release -EXPORT_SYMBOL vmlinux 0x848ba3e7 udp_set_csum -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x849b02fb vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x84a4222a neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x84a890c0 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x84aa7651 bio_init -EXPORT_SYMBOL vmlinux 0x84aca1c7 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x84af6274 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x84bf3e6b ll_rw_block -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c9382e napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x84cbf99f eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x84cc62f2 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x84d48d39 proc_symlink -EXPORT_SYMBOL vmlinux 0x84edde46 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x8501546c security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x85082cf0 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x850baa01 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x850bbe1f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x853640d5 netif_napi_add -EXPORT_SYMBOL vmlinux 0x853f84f1 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x8541f61c eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x854c62cc dquot_disable -EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x85553025 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x855ba427 xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x85a123c2 inet_gro_receive -EXPORT_SYMBOL vmlinux 0x85a48466 vm_map_pages -EXPORT_SYMBOL vmlinux 0x85a7f0ba vme_master_mmap -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c18288 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x85ca013d setattr_prepare -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x8629294b unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864587bf input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x864db3fb iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86762ec2 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8694f52c mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x86b8b530 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x86bd0218 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x86bfb628 block_truncate_page -EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86d79d42 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x86dc962b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x86e0f575 elevator_alloc -EXPORT_SYMBOL vmlinux 0x86ea32bd tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant -EXPORT_SYMBOL vmlinux 0x870d9faf ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x872a298d invalidate_bdev -EXPORT_SYMBOL vmlinux 0x8746834c dcache_readdir -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x876a2a6c __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x8775bbb4 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d16318 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0x87f718f9 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x8802a517 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x8811b880 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x88187402 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881e90d4 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x8829f567 open_exec -EXPORT_SYMBOL vmlinux 0x883c67eb inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x88417a02 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x8848b4a4 cdev_device_del -EXPORT_SYMBOL vmlinux 0x885312c1 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x885b6aa3 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x885de096 _dev_err -EXPORT_SYMBOL vmlinux 0x88613958 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x88691bbd input_inject_event -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88918553 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x88a7e183 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88ba5a09 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x88c47c1b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x88dac6e3 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ea01eb ip_defrag -EXPORT_SYMBOL vmlinux 0x88f27d1f vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x88f2e30a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x88f3a566 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x890ebb0f __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x89285f8a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x892fbaed vga_get -EXPORT_SYMBOL vmlinux 0x893a1ce3 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x894c6657 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x894ed320 override_creds -EXPORT_SYMBOL vmlinux 0x895ed9af migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x896ab5a9 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x896e7731 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x8977022a __module_get -EXPORT_SYMBOL vmlinux 0x89793369 pci_restore_state -EXPORT_SYMBOL vmlinux 0x897f1f04 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x89884d9b phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89b43f4c phy_drivers_register -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a666d5f tcp_make_synack -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a6b6154 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7d1d87 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x8a7e7c65 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x8a8396db __napi_schedule -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa47595 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x8aa73c1e jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x8abd7f7c vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac64b41 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x8adf6b08 amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x8adf8bf5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x8ae09076 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0110bc scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x8b170b38 mdio_device_register -EXPORT_SYMBOL vmlinux 0x8b484b56 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x8b57e2d1 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b654ab4 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8472c3 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x8b8cba40 __scsi_execute -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bbc7441 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x8bbf3a86 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8bec3bfc scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x8c0944ec reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x8c0bc841 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x8c1e23dc compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x8c26815e bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x8c3af6e7 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x8c50fe3d seq_pad -EXPORT_SYMBOL vmlinux 0x8c58ad6f bio_free_pages -EXPORT_SYMBOL vmlinux 0x8c68c807 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x8c753843 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x8c932e2e block_write_end -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca471ae pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x8caef6ea pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x8cb49b04 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8d0ed387 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x8d17bd2a __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x8d2fe870 write_one_page -EXPORT_SYMBOL vmlinux 0x8d534f6e mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d854eea ptp_clock_index -EXPORT_SYMBOL vmlinux 0x8d8a084a translation_pre_enabled -EXPORT_SYMBOL vmlinux 0x8d8bdee6 bioset_exit -EXPORT_SYMBOL vmlinux 0x8d9b5bd7 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da52abe set_disk_ro -EXPORT_SYMBOL vmlinux 0x8db13b69 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dd06214 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e1074e8 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e208554 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e2b90a3 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe -EXPORT_SYMBOL vmlinux 0x8e333721 mmput_async -EXPORT_SYMBOL vmlinux 0x8e429ad7 tty_port_open -EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds -EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e7c22d8 ata_print_version -EXPORT_SYMBOL vmlinux 0x8e93eca5 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x8e967da0 mntput -EXPORT_SYMBOL vmlinux 0x8ea9433f abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x8eaabc56 i2c_use_client -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb50579 sk_capable -EXPORT_SYMBOL vmlinux 0x8eb7b3d7 arp_send -EXPORT_SYMBOL vmlinux 0x8ecbcd6f kernel_bind -EXPORT_SYMBOL vmlinux 0x8edd1510 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x8ee82b30 sget -EXPORT_SYMBOL vmlinux 0x8eebb5d0 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x8f00846b phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f241da6 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f2c73eb configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x8f2dad97 inet_bind -EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default -EXPORT_SYMBOL vmlinux 0x8f4bac8c is_bad_inode -EXPORT_SYMBOL vmlinux 0x8f596b91 config_item_set_name -EXPORT_SYMBOL vmlinux 0x8f5d3e5e follow_down -EXPORT_SYMBOL vmlinux 0x8f5f598e misc_deregister -EXPORT_SYMBOL vmlinux 0x8f6dec61 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f87d2b7 set_nlink -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9c17e0 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb34d8d phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8fc1b3a2 request_key_rcu -EXPORT_SYMBOL vmlinux 0x8fd4e461 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x8fd73ffe to_nd_pfn -EXPORT_SYMBOL vmlinux 0x8fe82378 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90053001 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x900c5eb7 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x9029eaa7 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x904e7778 put_cmsg -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9076fa72 km_report -EXPORT_SYMBOL vmlinux 0x9080fdc2 tcf_em_register -EXPORT_SYMBOL vmlinux 0x90980b68 proc_set_size -EXPORT_SYMBOL vmlinux 0x90a99bcf mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x90b29e76 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x90cdad4b netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x90ddd964 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x91034dad udp_poll -EXPORT_SYMBOL vmlinux 0x910cf26a mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x9124963b __seq_open_private -EXPORT_SYMBOL vmlinux 0x912e9ae8 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x9140029a __bread_gfp -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9169f9aa inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x916a16ba dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x9170d4f7 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x917cca80 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a0dd00 dst_alloc -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91cd9694 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x91db6bdc tcf_classify -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f7888e blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x921d270c netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9237a796 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9247afd9 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925f7f76 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x9281b1c3 skb_unlink -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929368e4 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92b3670d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92d20100 setup_new_exec -EXPORT_SYMBOL vmlinux 0x92e6ad3b netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f60f29 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fcf63b framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930bb6ab security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x932efdb0 __quota_error -EXPORT_SYMBOL vmlinux 0x9331c36b generic_read_dir -EXPORT_SYMBOL vmlinux 0x933f31d5 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x934cfb0a dquot_free_inode -EXPORT_SYMBOL vmlinux 0x934f06ad genphy_resume -EXPORT_SYMBOL vmlinux 0x9363fffa param_get_uint -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937a35f1 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x937e591f fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x93805673 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x9387849f touch_buffer -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c3e723 sock_no_getname -EXPORT_SYMBOL vmlinux 0x93caa04b devm_release_resource -EXPORT_SYMBOL vmlinux 0x940730f9 eth_header -EXPORT_SYMBOL vmlinux 0x940a94df param_get_ushort -EXPORT_SYMBOL vmlinux 0x940aee51 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x9415bde3 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942ffaf3 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9439e830 clear_inode -EXPORT_SYMBOL vmlinux 0x9441628a nd_integrity_init -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944d2129 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x94833fbe bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94df90bc __serio_register_port -EXPORT_SYMBOL vmlinux 0x94e27e8c security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x94fe190e elv_rb_del -EXPORT_SYMBOL vmlinux 0x9505941d vm_map_ram -EXPORT_SYMBOL vmlinux 0x950bb2d8 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x9527cdd1 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x95339685 redraw_screen -EXPORT_SYMBOL vmlinux 0x95439939 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x9544c0ca mdio_bus_type -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954d06b1 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95547c97 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x9555b535 add_to_pipe -EXPORT_SYMBOL vmlinux 0x955a4db5 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x955ce42b clear_wb_congested -EXPORT_SYMBOL vmlinux 0x95638082 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95c1518a pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x95ce7edb cdrom_open -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95e32518 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x95ed6dad build_skb_around -EXPORT_SYMBOL vmlinux 0x960fab7f dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x96240f2f get_acl -EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x963969a6 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x965318c3 dquot_acquire -EXPORT_SYMBOL vmlinux 0x966f82d0 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968574bb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bcdfb8 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x96bee4b0 key_link -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c90ae9 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96dbb362 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96f3f020 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x96f496af pci_pme_active -EXPORT_SYMBOL vmlinux 0x96f8fe80 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97195c6a fb_get_mode -EXPORT_SYMBOL vmlinux 0x9733da45 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974246d4 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9750bfab user_path_at_empty -EXPORT_SYMBOL vmlinux 0x9762516a phy_detach -EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x976ee327 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x976f8d83 block_write_begin -EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init -EXPORT_SYMBOL vmlinux 0x9780e152 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x978a1531 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a8e55a jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b51df7 pci_set_master -EXPORT_SYMBOL vmlinux 0x97ba5581 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97eba9f4 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x97f214d7 d_add_ci -EXPORT_SYMBOL vmlinux 0x9800dc19 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x981424e2 inet_sendpage -EXPORT_SYMBOL vmlinux 0x981be892 set_security_override -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98343c4c mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x98365bcf build_skb -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x98b54766 kill_anon_super -EXPORT_SYMBOL vmlinux 0x98b956bf __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x98bad039 __lock_page -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d6bfc3 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x98d9c249 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e869a1 mpage_writepage -EXPORT_SYMBOL vmlinux 0x98e8cd7f cdev_device_add -EXPORT_SYMBOL vmlinux 0x98fd0b9f pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9929741b nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9944739e sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x994e906d scsi_dma_map -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996f835d always_delete_dentry -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9986234d ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x998954b3 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x999949a6 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999f25e3 param_ops_uint -EXPORT_SYMBOL vmlinux 0x99bc1a64 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x99bc5113 request_key_tag -EXPORT_SYMBOL vmlinux 0x99c85705 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x99d424c1 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d8b9ab xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99df8634 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0e0ffb pagecache_write_end -EXPORT_SYMBOL vmlinux 0x9a1336f8 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f5617 sock_efree -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a25b202 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x9a2e3a4d jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x9a2e63bf vme_register_bridge -EXPORT_SYMBOL vmlinux 0x9a30b23d tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x9a33153f pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x9a355ecb neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x9a3e9c56 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x9a49ddf7 ilookup -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a60a8c3 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7554c5 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x9a7a9b29 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x9a7e1c34 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x9a8377fc misc_register -EXPORT_SYMBOL vmlinux 0x9a8b7d1a tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x9a935ba5 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x9a9436f4 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x9a9c292e rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac91d00 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9af93fd1 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x9b08968b fddi_type_trans -EXPORT_SYMBOL vmlinux 0x9b208e8c devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2b4d95 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x9b30dcab iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b389042 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b46c184 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x9b4e19a4 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b6828af dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b9f8d98 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x9ba9a28d pci_disable_msi -EXPORT_SYMBOL vmlinux 0x9bb86a02 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x9be03848 sock_create_lite -EXPORT_SYMBOL vmlinux 0x9c01b50b blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x9c040be3 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1bda08 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke -EXPORT_SYMBOL vmlinux 0x9c2da6ea simple_open -EXPORT_SYMBOL vmlinux 0x9c678ead d_rehash -EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit -EXPORT_SYMBOL vmlinux 0x9ca7b8f4 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x9caa8f3e ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cc314ab elv_rb_add -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cfead1b max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x9d0718e4 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x9d07824b insert_inode_locked -EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1f38c5 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x9d2e6ae7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x9d512667 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x9d546ce4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x9d55c9b0 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d714cfa filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d9b4693 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x9dbc51c8 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dda5bc5 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x9dfb52a1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x9e00898a md_update_sb -EXPORT_SYMBOL vmlinux 0x9e02b44a I_BDEV -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e139a96 vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2ba5bc set_bh_page -EXPORT_SYMBOL vmlinux 0x9e2c350a vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x9e3117f1 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x9e337de4 igrab -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 0x9e7add38 setattr_copy -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e85825f inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x9e85aba0 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x9e8d9987 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf -EXPORT_SYMBOL vmlinux 0x9eab7385 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecddc1f iov_iter_revert -EXPORT_SYMBOL vmlinux 0x9ed7135f ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9eda3350 inet_getname -EXPORT_SYMBOL vmlinux 0x9edac6e7 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x9ee44f28 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x9ef08b24 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x9f0233b4 get_task_cred -EXPORT_SYMBOL vmlinux 0x9f0564c7 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x9f1a9e6b bdevname -EXPORT_SYMBOL vmlinux 0x9f2ffe36 fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0x9f390525 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f47e1d1 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x9f4b37a5 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f521758 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f84fca9 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x9f86196f __d_drop -EXPORT_SYMBOL vmlinux 0x9f86a015 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x9f8e8695 fc_mount -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa7ca43 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fb72c72 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x9fca5e71 input_event -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe9bbbc genl_register_family -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01a9205 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa038ecb0 neigh_destroy -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa067059d devm_memunmap -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xa0853930 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xa091ef71 dev_activate -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b03d2c cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c74cf3 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0db75fd xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa0e34f7d input_set_keycode -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f493d9 efi -EXPORT_SYMBOL vmlinux 0xa0f8378a rproc_boot -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ffea38 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xa10393b6 dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10ea287 vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0xa11d8946 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa147723c __d_lookup_done -EXPORT_SYMBOL vmlinux 0xa149dc01 da903x_query_status -EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xa1728a88 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xa1834ad3 fqdir_exit -EXPORT_SYMBOL vmlinux 0xa18e1e7f mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xa1913c84 agp_bind_memory -EXPORT_SYMBOL vmlinux 0xa1b5d6a6 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dc296f ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ef1c36 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa21c1050 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa24db1ec check_disk_change -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2697d56 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0xa288682f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa28adf0e register_console -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2939c87 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa2a9ec10 dev_uc_add -EXPORT_SYMBOL vmlinux 0xa2be94df __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xa2c028a2 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xa2d5bc2d bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xa2fbb17b ___pskb_trim -EXPORT_SYMBOL vmlinux 0xa303fce1 set_cached_acl -EXPORT_SYMBOL vmlinux 0xa30acd11 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa31823df ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xa33c3a62 nf_log_packet -EXPORT_SYMBOL vmlinux 0xa357f023 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xa362b641 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xa36c0d23 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xa36ecf78 dev_addr_del -EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa3bf6975 param_array_ops -EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3ee9e12 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa3ef385e padata_do_parallel -EXPORT_SYMBOL vmlinux 0xa4099749 seq_path -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa42f28ae bioset_init -EXPORT_SYMBOL vmlinux 0xa42f5c91 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xa432ae2f bdi_register_va -EXPORT_SYMBOL vmlinux 0xa43914ca simple_rename -EXPORT_SYMBOL vmlinux 0xa43e0928 single_open_size -EXPORT_SYMBOL vmlinux 0xa46d60b6 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xa46e2a14 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xa47f7b7f scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa4accce0 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xa4b86400 module_layout -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb666f dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4e23463 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xa4e6d0c4 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa5139205 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52c980e sock_setsockopt -EXPORT_SYMBOL vmlinux 0xa538e7f9 scsi_print_command -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56ffcc7 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xa5758cda __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xa58f77e9 __sb_start_write -EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b24048 __destroy_inode -EXPORT_SYMBOL vmlinux 0xa5b35e62 del_gendisk -EXPORT_SYMBOL vmlinux 0xa5bc1898 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xa5c07adb d_invalidate -EXPORT_SYMBOL vmlinux 0xa5c90037 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xa5cc5d9f kthread_stop -EXPORT_SYMBOL vmlinux 0xa5cdf6d3 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xa5d6773e nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xa5e3721a security_unix_may_send -EXPORT_SYMBOL vmlinux 0xa5e4a3a4 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5eb97a2 __find_get_block -EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0xa611c27a inet_frag_kill -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa630f984 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xa63e5c1c devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xa6638df3 tty_set_operations -EXPORT_SYMBOL vmlinux 0xa66b9b17 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xa66cd9e7 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xa67e2b72 mount_nodev -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa6904f4f padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa6ad94e7 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xa6b11992 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa6c09fff devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xa6cb6cac tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa6df0211 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xa6df3aea netdev_state_change -EXPORT_SYMBOL vmlinux 0xa6e2a308 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xa70406f8 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa7121f11 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xa722f072 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa73c28b7 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xa74341e7 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76238bd keyring_alloc -EXPORT_SYMBOL vmlinux 0xa7636d52 sync_blockdev -EXPORT_SYMBOL vmlinux 0xa76c5e0f blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xa76ece06 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xa775f22f param_set_byte -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa7975388 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xa7c42b31 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa7d20162 vme_dma_request -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7e505ea vfs_mkdir -EXPORT_SYMBOL vmlinux 0xa7ee6648 phy_stop -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f95688 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa824f1cb md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xa82b96bc __close_fd -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -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 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa8630bc1 vfs_link -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8722b81 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xa87f4c8a amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa89d3dc0 sock_create_kern -EXPORT_SYMBOL vmlinux 0xa8c197b0 inet_gro_complete -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cb1415 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xa8ce49b0 param_set_ushort -EXPORT_SYMBOL vmlinux 0xa8d07f41 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xa8dfe9da dev_printk -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8ef587a rfkill_alloc -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fb0280 pnp_possible_config -EXPORT_SYMBOL vmlinux 0xa9024c31 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa92b967b scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xa93046de write_inode_now -EXPORT_SYMBOL vmlinux 0xa9373642 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xa9425d24 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xa9479b98 bio_advance -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa955c6da vme_irq_generate -EXPORT_SYMBOL vmlinux 0xa95bb150 vfs_whiteout -EXPORT_SYMBOL vmlinux 0xa96118fb phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9ae9312 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xa9b3173e inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9ce638a acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0xa9d2716f tty_port_hangup -EXPORT_SYMBOL vmlinux 0xa9d741f6 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xa9e768a9 set_blocksize -EXPORT_SYMBOL vmlinux 0xa9fa972a input_flush_device -EXPORT_SYMBOL vmlinux 0xa9ffdf04 bmap -EXPORT_SYMBOL vmlinux 0xaa00a21d dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa11ebbd skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xaa15f8a5 vga_tryget -EXPORT_SYMBOL vmlinux 0xaa177b09 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xaa30a572 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xaa33ee75 vga_client_register -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa539993 agp_enable -EXPORT_SYMBOL vmlinux 0xaa53d166 dev_close -EXPORT_SYMBOL vmlinux 0xaa5b8ee4 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xaa65b14a cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xaa667f69 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa94cca1 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xaabea4e6 done_path_create -EXPORT_SYMBOL vmlinux 0xaac6bd8e textsearch_register -EXPORT_SYMBOL vmlinux 0xaac7e69a dcb_ieee_getapp_dscp_prio_mask_map -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 0xaae9ff8f agp_bridge -EXPORT_SYMBOL vmlinux 0xaaf15691 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -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 0xab62e5d0 proc_create_data -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab9a96da mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xab9af44f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabd91387 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xabdefc41 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xabe3b8b8 param_set_ulong -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf991fc napi_consume_skb -EXPORT_SYMBOL vmlinux 0xac053a33 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xac0713ac tcf_register_action -EXPORT_SYMBOL vmlinux 0xac0d8967 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xac10b3ce generic_file_mmap -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2c36dc pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac47e87a dev_trans_start -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac574f30 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xac5e8ac0 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6c4980 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xac750f8d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xac76b2e1 from_kprojid -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac932367 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacad9e42 __phy_resume -EXPORT_SYMBOL vmlinux 0xacb0d27c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xacbe2255 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xacd669c6 simple_lookup -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xaced79da tty_port_close_start -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad00472d sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0810ab call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xad0c2f14 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xad0ccecc twl6040_power -EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe -EXPORT_SYMBOL vmlinux 0xad439c4c bdi_register -EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad9670f1 seq_puts -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xada2c70f migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadb5018d kill_fasync -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadc9ec32 bd_start_claiming -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade97a20 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae224c73 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xae2d29ee dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3df0b0 input_setup_polling -EXPORT_SYMBOL vmlinux 0xae443117 nvm_register -EXPORT_SYMBOL vmlinux 0xae45846e dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xae9e4296 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed77602 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xaf00f699 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xaf03ebe1 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xaf059c0f generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xaf15866d simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf5cb154 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xaf63b9a5 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xaf6710bb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf7f995b xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xaf810036 kfree_skb -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafa57f32 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafd28bc8 nvm_submit_io -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafdc7dc5 simple_statfs -EXPORT_SYMBOL vmlinux 0xafdd50d9 ab3100_event_register -EXPORT_SYMBOL vmlinux 0xafdff919 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xafe77e55 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xaffc2727 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xafff2f2b phy_attached_print -EXPORT_SYMBOL vmlinux 0xb0057e0c dm_unregister_target -EXPORT_SYMBOL vmlinux 0xb00ddcc8 migrate_page -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01e73b8 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb057f98d inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xb070f424 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a63743 ps2_end_command -EXPORT_SYMBOL vmlinux 0xb0a84fa0 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0ea1630 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xb0ebce5e param_ops_long -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb10ac073 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb145611f seq_release -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb17395ae sock_from_file -EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1a32cce lock_page_memcg -EXPORT_SYMBOL vmlinux 0xb1b4eec7 __ps2_command -EXPORT_SYMBOL vmlinux 0xb1b6c88e crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc -EXPORT_SYMBOL vmlinux 0xb1fa528d blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xb203c6a5 seq_putc -EXPORT_SYMBOL vmlinux 0xb206de17 set_wb_congested -EXPORT_SYMBOL vmlinux 0xb20ec697 bio_uninit -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb21a7dc6 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb22c5939 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb241074b padata_stop -EXPORT_SYMBOL vmlinux 0xb2423a52 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xb25f57bd padata_free_shell -EXPORT_SYMBOL vmlinux 0xb26026eb serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb27baae4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb281acba netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xb288150c reuseport_alloc -EXPORT_SYMBOL vmlinux 0xb288c1ae skb_find_text -EXPORT_SYMBOL vmlinux 0xb28f232e current_in_userns -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb29b3fb9 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xb2a5386a skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2b6bacf netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c36652 default_llseek -EXPORT_SYMBOL vmlinux 0xb2c4ae47 bio_reset -EXPORT_SYMBOL vmlinux 0xb2c5c8de ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xb2ddd534 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xb2e7fc3e xfrm_state_free -EXPORT_SYMBOL vmlinux 0xb2f0f860 inet_csk_clear_xmit_timers -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 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb316b737 generic_write_end -EXPORT_SYMBOL vmlinux 0xb3193432 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb31e6844 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xb31e9c61 xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3252a56 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xb3254c61 inet_offloads -EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb34a7c5b netlink_ack -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36cce3e tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xb37b5d72 param_set_ullong -EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3a666c0 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d81482 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xb3f0d4a3 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xb3f4293e devfreq_update_status -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40c8a6d pci_fixup_device -EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb41e8b92 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xb421a321 pv_ops -EXPORT_SYMBOL vmlinux 0xb421e888 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb426cb4f request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xb4304175 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xb432c669 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xb43db626 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45fa692 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xb4639287 netif_rx -EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb4802828 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49c43c6 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xb49da152 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4afae13 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xb4c7512a kmem_cache_free -EXPORT_SYMBOL vmlinux 0xb4d9948a blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xb4de9694 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xb4de9a31 vmap -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb503eec0 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xb50e1c2f param_get_int -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb54b5399 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5739c63 cdev_init -EXPORT_SYMBOL vmlinux 0xb581c660 unlock_buffer -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a1a373 ilookup5 -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a7cf72 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5e189ed i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0xb619b44f csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63ac1da pci_request_region -EXPORT_SYMBOL vmlinux 0xb649a49a migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6944c9c pid_task -EXPORT_SYMBOL vmlinux 0xb69e3ccf filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6bc3c2a __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb6ccec45 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73a4318 fget -EXPORT_SYMBOL vmlinux 0xb73ae9ea iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb7899747 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb78d77a7 unix_get_socket -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79d660c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cda86d truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xb7dbbc55 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xb7f91ed6 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xb8233489 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb84eec3a ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb873a695 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xb87d54ab fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xb87e7e12 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8d21d21 mmc_add_host -EXPORT_SYMBOL vmlinux 0xb8d380d3 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xb8e46b63 __block_write_begin -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8ea7e92 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xb8f9706c param_get_charp -EXPORT_SYMBOL vmlinux 0xb8fa1e84 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb906d2dc pci_request_irq -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb907936f vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9151327 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb9161ae3 freeze_bdev -EXPORT_SYMBOL vmlinux 0xb91d205c vlan_for_each -EXPORT_SYMBOL vmlinux 0xb91d826c path_put -EXPORT_SYMBOL vmlinux 0xb93f8970 input_open_device -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9474e03 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xb94d9027 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb96ecbc0 genl_notify -EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb992f6fc vfs_get_tree -EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xb99b5c1d reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xb99f0150 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9c8394e skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xb9c83fe8 sock_i_uid -EXPORT_SYMBOL vmlinux 0xb9c92c73 agp_backend_release -EXPORT_SYMBOL vmlinux 0xb9d01e9f mipi_dsi_dcs_set_display_on -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 0xb9ecd063 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xb9f28860 eth_type_trans -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba2c1b9c alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xba352441 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xba35ac7f iunique -EXPORT_SYMBOL vmlinux 0xba3885d0 uart_resume_port -EXPORT_SYMBOL vmlinux 0xba40efbd posix_lock_file -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4efcd7 fget_raw -EXPORT_SYMBOL vmlinux 0xba58be50 amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0xba82d177 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbadc7a53 sock_no_connect -EXPORT_SYMBOL vmlinux 0xbae17d86 iput -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0a1083 get_amd_iommu -EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many -EXPORT_SYMBOL vmlinux 0xbb13c947 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb1cb3a0 md_error -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4038a8 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xbb46bdd8 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb7bb7ff __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xbb843516 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbbc0c26f generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xbbc7f2c8 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xbbdb50fe nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xbbdc5be2 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbe871c8 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbc124d0a nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0xbc18c721 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xbc1fe31e rtc_add_groups -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc362035 phy_attached_info -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc67120f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xbc6d65df agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xbc7b947a remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xbc7f1f67 register_netdevice -EXPORT_SYMBOL vmlinux 0xbca7e72d __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb18740 unload_nls -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcbe8793 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xbcc2168a dget_parent -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd1cb40 sock_init_data -EXPORT_SYMBOL vmlinux 0xbcd39a86 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xbcddd626 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xbce1c3c9 skb_append -EXPORT_SYMBOL vmlinux 0xbd1eecba security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xbd38c843 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xbd3958a8 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd48aa52 vga_put -EXPORT_SYMBOL vmlinux 0xbd4fa8b6 touch_atime -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6b942b gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xbd6cfb47 rtnl_notify -EXPORT_SYMBOL vmlinux 0xbd87f340 scsi_device_put -EXPORT_SYMBOL vmlinux 0xbd8f4645 phy_start -EXPORT_SYMBOL vmlinux 0xbd9908fe netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xbdc7a4fe request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe2b9285 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xbe3552c9 param_set_invbool -EXPORT_SYMBOL vmlinux 0xbe378612 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4d741a simple_unlink -EXPORT_SYMBOL vmlinux 0xbe4e96af freezing_slow_path -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe9d84c4 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xbed34b8d inet_frag_find -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef9df27 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf0aea3a account_page_redirty -EXPORT_SYMBOL vmlinux 0xbf0e517a nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xbf1c0020 dquot_file_open -EXPORT_SYMBOL vmlinux 0xbf1da2a5 tty_do_resize -EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf4c1649 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xbf597847 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xbf7280ab seq_write -EXPORT_SYMBOL vmlinux 0xbf7d1462 config_item_put -EXPORT_SYMBOL vmlinux 0xbf8c2f43 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xbf8f28a3 netdev_notice -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa30174 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfdaf3c4 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xbfdc1a0d __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0xbfe376ee ppp_input -EXPORT_SYMBOL vmlinux 0xbfea3cb9 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff976ce phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xc008835a sk_free -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc042e209 secpath_set -EXPORT_SYMBOL vmlinux 0xc055c4c1 input_reset_device -EXPORT_SYMBOL vmlinux 0xc0716bad netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc08c6d0d migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a061e8 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0e5b48d pnp_register_driver -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc10aafe9 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc137f6d8 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xc1410a99 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xc141c254 dev_get_stats -EXPORT_SYMBOL vmlinux 0xc1457d02 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc14ff6f2 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xc15db59d qdisc_reset -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc1680dab nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1bfc6c2 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc1c1794b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xc1c45cf3 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc1c6cd45 component_match_add_release -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e2ea3b make_kgid -EXPORT_SYMBOL vmlinux 0xc1e32fab nf_setsockopt -EXPORT_SYMBOL vmlinux 0xc1e7c542 vfs_statfs -EXPORT_SYMBOL vmlinux 0xc1ef4cde skb_seq_read -EXPORT_SYMBOL vmlinux 0xc2122dde netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xc225f08d con_is_visible -EXPORT_SYMBOL vmlinux 0xc2270f00 devm_memremap -EXPORT_SYMBOL vmlinux 0xc228129e revert_creds -EXPORT_SYMBOL vmlinux 0xc22ab493 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xc231741a __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xc23d8649 get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2451c81 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xc253844d timestamp_truncate -EXPORT_SYMBOL vmlinux 0xc266ec84 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc276ba4e __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc28c84a2 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2ce641c current_time -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fded84 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33c7780 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc33d925a xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xc347a10b agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xc34c7eea tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xc3644dd8 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36a92a4 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37a7f43 get_gendisk -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3830f89 noop_fsync -EXPORT_SYMBOL vmlinux 0xc38c654c dev_change_carrier -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38eb12b __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xc38ff8a8 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3bfeafd flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xc3cc2670 blk_register_region -EXPORT_SYMBOL vmlinux 0xc3cf6596 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xc3d6329f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xc3d6f0e4 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xc3e59044 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xc3f38583 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc402e335 __devm_release_region -EXPORT_SYMBOL vmlinux 0xc40e0fd8 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc43d9243 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xc443295d nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xc4447806 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xc4460a3a seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xc4573b8d find_lock_entry -EXPORT_SYMBOL vmlinux 0xc4706c67 netdev_change_features -EXPORT_SYMBOL vmlinux 0xc471c78c scsi_host_busy -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47aae08 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xc48429db netif_carrier_on -EXPORT_SYMBOL vmlinux 0xc49cb70f mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b6f577 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xc4d8de62 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xc5021ea8 padata_do_serial -EXPORT_SYMBOL vmlinux 0xc51d2d34 register_cdrom -EXPORT_SYMBOL vmlinux 0xc5258ac4 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53a4201 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xc53d124e skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc543e500 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xc545f3a1 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xc549dab8 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc5696eec of_find_backlight -EXPORT_SYMBOL vmlinux 0xc57933ee inode_dio_wait -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc593d428 serio_close -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc599dba3 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5ba964a agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ef3fb2 security_path_rename -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5f9a948 udplite_prot -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60e5148 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc62109a6 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc64abd5c vme_slot_num -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc67b2499 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xc68e82c1 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6986b1e lock_sock_nested -EXPORT_SYMBOL vmlinux 0xc6b073f8 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xc6bd6953 rtc_add_group -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d46381 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xc6de2696 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7236d11 cpu_tlbstate -EXPORT_SYMBOL vmlinux 0xc73549da devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xc739d7c8 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xc74d53d6 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xc75826ad mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xc779b2ce dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7906438 genlmsg_put -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79c817c migrate_page_states -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b96253 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7ca8397 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7f11a20 dma_cache_sync -EXPORT_SYMBOL vmlinux 0xc7f3b4a5 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc82b1a12 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xc82db456 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xc83f2185 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc854093d sget_fc -EXPORT_SYMBOL vmlinux 0xc8546d47 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xc85ad8e2 put_tty_driver -EXPORT_SYMBOL vmlinux 0xc86fedd7 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89b9c6b km_policy_notify -EXPORT_SYMBOL vmlinux 0xc89d89ef cdev_set_parent -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b65649 lock_rename -EXPORT_SYMBOL vmlinux 0xc8e065de jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xc8e71be0 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0xc905817a scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xc912b17b netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xc912c895 import_single_range -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc95d7fdd vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96b5b4f sync_inode -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97869a5 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc984eadb tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xc994f8c1 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xc99890e5 mmc_request_done -EXPORT_SYMBOL vmlinux 0xc99b5492 vfs_fsync -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a02ed1 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xc9a24d85 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xc9a34f97 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xc9c0dcbb kill_pid -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ec2108 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca086bcb tty_unlock -EXPORT_SYMBOL vmlinux 0xca0c6d37 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xca132a6c inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca4227c2 sk_dst_check -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca48989e tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xca554822 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xca5d0bec keyring_clear -EXPORT_SYMBOL vmlinux 0xca5fbd5e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xca650b48 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca723e0f sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xca84f209 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xca9e9d2f param_ops_ushort -EXPORT_SYMBOL vmlinux 0xcaa34417 __pagevec_release -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad39d1f input_register_device -EXPORT_SYMBOL vmlinux 0xcad80385 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xcaf24bad qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf6c61b md_reload_sb -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb19015e mark_page_accessed -EXPORT_SYMBOL vmlinux 0xcb1d4eaf __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3fe9de inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xcb420f6c pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xcb62341b xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb75806e blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xcb78b53d pps_event -EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbae9768 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc3cf34 register_gifconf -EXPORT_SYMBOL vmlinux 0xcbc60813 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe08498 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xcbe5c76c prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xcbe8f2b7 kill_litter_super -EXPORT_SYMBOL vmlinux 0xcbeb4cb9 config_group_find_item -EXPORT_SYMBOL vmlinux 0xcbf2b43c xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbfbd755 arp_xmit -EXPORT_SYMBOL vmlinux 0xcc109bf7 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3c9b17 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xcc423a88 simple_setattr -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4d04e2 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc559211 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc6408bf configfs_depend_item -EXPORT_SYMBOL vmlinux 0xcc78395e vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xcc7ed3de d_delete -EXPORT_SYMBOL vmlinux 0xcc81353c pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xcc8a0402 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xcc9e4bf3 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca87a77 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xccb37e53 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xccb70f89 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xccc101d1 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc23d7d rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf09523 locks_lock_inode_wait -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 0xcd08bce3 dquot_drop -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd28af4a inet_addr_type -EXPORT_SYMBOL vmlinux 0xcd51c1db thaw_super -EXPORT_SYMBOL vmlinux 0xcd530371 to_ndd -EXPORT_SYMBOL vmlinux 0xcd7e85b8 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xcd7ea4e6 seq_file_path -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9c7310 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xcdb64888 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc4763e __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xcdd0d006 scsi_device_get -EXPORT_SYMBOL vmlinux 0xcde081f8 fb_pan_display -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce2763ee generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce308254 finish_swait -EXPORT_SYMBOL vmlinux 0xce394674 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xce399f52 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce534b33 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xce535e60 inet_release -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce883854 tty_name -EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0xce8cc109 dquot_alloc -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcead90e6 is_subdir -EXPORT_SYMBOL vmlinux 0xceb823b1 node_data -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced4f529 set_pages_wb -EXPORT_SYMBOL vmlinux 0xcee4e3b3 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf03be5d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf21a6e2 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xcf239ad2 load_nls -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf30a4e3 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xcf3ca12b scsi_print_result -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf6876cd kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xcf90aab6 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9c6d5f cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xcfa353d4 param_ops_string -EXPORT_SYMBOL vmlinux 0xcfb31ba6 __frontswap_load -EXPORT_SYMBOL vmlinux 0xcfbd4298 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xcfc0ad21 lease_modify -EXPORT_SYMBOL vmlinux 0xcfd740e5 __devm_request_region -EXPORT_SYMBOL vmlinux 0xcfd7e750 inode_init_once -EXPORT_SYMBOL vmlinux 0xcfea211e vfs_get_link -EXPORT_SYMBOL vmlinux 0xcff835d5 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xd03a9be3 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xd03b6db0 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd047d5e1 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04ede2f ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xd052d0f2 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xd062c2a4 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06f9442 noop_llseek -EXPORT_SYMBOL vmlinux 0xd0707bda mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b78051 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd0d4109d dev_remove_pack -EXPORT_SYMBOL vmlinux 0xd0d78073 generic_fadvise -EXPORT_SYMBOL vmlinux 0xd0daafd5 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xd0ee56be vfs_iter_read -EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0fdd229 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd0ffbc24 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xd1033281 path_is_under -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14cb3bb mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xd152c30e devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xd17e14d8 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18fa9e6 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xd192485c tcf_block_get -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0xd1c64d08 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xd1c82089 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0xd1d15f1b uv_hub_info_version -EXPORT_SYMBOL vmlinux 0xd1d6aebb __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xd1d74639 qdisc_put -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2035506 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xd20f5cbe netdev_emerg -EXPORT_SYMBOL vmlinux 0xd2198226 cdev_add -EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd226d808 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xd22e4507 netlink_set_err -EXPORT_SYMBOL vmlinux 0xd22e627e sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xd2352154 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xd23e9c3f __ip_options_compile -EXPORT_SYMBOL vmlinux 0xd240d20d serio_open -EXPORT_SYMBOL vmlinux 0xd2454909 end_page_writeback -EXPORT_SYMBOL vmlinux 0xd2577208 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xd25ce3ac tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2612379 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xd262c1e2 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2801cb7 dev_mc_init -EXPORT_SYMBOL vmlinux 0xd28f1eae agp_create_memory -EXPORT_SYMBOL vmlinux 0xd297366f dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xd2ac5bbe netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xd2b02bd6 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd2d1833c pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xd2d66d55 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xd2d95a08 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xd2d9bf14 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e069c5 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2e67fcd read_cache_pages -EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd3160e78 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xd319c14d uart_get_divisor -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3598c40 register_framebuffer -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36905b7 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37bb4f9 kern_path_create -EXPORT_SYMBOL vmlinux 0xd37bd074 scsi_host_put -EXPORT_SYMBOL vmlinux 0xd380ed5a mount_single -EXPORT_SYMBOL vmlinux 0xd3870fa8 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd391daf4 security_path_mknod -EXPORT_SYMBOL vmlinux 0xd3aac20c dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xd3baef95 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xd3c7c1f1 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xd3e5fe2c napi_gro_receive -EXPORT_SYMBOL vmlinux 0xd3e96038 mr_table_dump -EXPORT_SYMBOL vmlinux 0xd3e98236 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f109de bdget -EXPORT_SYMBOL vmlinux 0xd3f6adce inode_needs_sync -EXPORT_SYMBOL vmlinux 0xd3fa3ca5 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xd3fd9483 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd3feaee7 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xd402df1e twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40b0678 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xd423cf58 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xd4303372 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xd453a510 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd46b9ec6 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xd4772d8e inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xd47b5de4 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd4832d3a pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4b07586 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd4b0b64c posix_test_lock -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4bc3076 mr_dump -EXPORT_SYMBOL vmlinux 0xd4bf9975 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xd4c390b3 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e4e465 simple_readpage -EXPORT_SYMBOL vmlinux 0xd4f216cd blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd5024865 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xd5232d39 get_disk_and_module -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd538ed46 kernel_read -EXPORT_SYMBOL vmlinux 0xd552942b sk_stop_timer -EXPORT_SYMBOL vmlinux 0xd558cab2 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xd55a4f16 dev_set_group -EXPORT_SYMBOL vmlinux 0xd5647ec5 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xd56f4822 discard_new_inode -EXPORT_SYMBOL vmlinux 0xd582916e genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd58f91e8 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xd5930f0a fb_find_mode -EXPORT_SYMBOL vmlinux 0xd5a82501 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xd5b37621 start_tty -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cbd376 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd5dd71f6 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xd5e961ba scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60777c9 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0xd610b0ac xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xd6259716 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64e0dbd __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xd664ef68 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xd6712516 hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0xd67b69cd nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd67e37c3 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xd685ac6c input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69b8065 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6a9b8cc fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0xd6aead15 vfs_symlink -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bc52f0 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6db4b21 generic_make_request -EXPORT_SYMBOL vmlinux 0xd6db561c redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xd6e0e71e drop_super -EXPORT_SYMBOL vmlinux 0xd6e5373b pci_find_capability -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ec17a0 notify_change -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f6d3b7 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xd6fa651b mmc_release_host -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 0xd7118a7f __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xd71a63f3 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xd71abb3a fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xd7273cb2 netlink_capable -EXPORT_SYMBOL vmlinux 0xd72b6f52 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd75bd8d7 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xd771c446 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xd77b37d9 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xd7a99bd6 generic_write_checks -EXPORT_SYMBOL vmlinux 0xd7aed102 finalize_exec -EXPORT_SYMBOL vmlinux 0xd7cbe2e0 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7db3ff3 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e92292 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0xd802ffc6 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xd804085b vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xd809be1f netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xd8151cab xfrm_register_type -EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd84a2dc8 dns_query -EXPORT_SYMBOL vmlinux 0xd84d4dc5 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xd85115e3 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd86118b2 locks_init_lock -EXPORT_SYMBOL vmlinux 0xd88aa32e __free_pages -EXPORT_SYMBOL vmlinux 0xd898e363 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xd89abc55 ping_prot -EXPORT_SYMBOL vmlinux 0xd89b4700 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xd89c51c6 input_match_device_id -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a6f5af wireless_spy_update -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8c56d48 skb_dequeue -EXPORT_SYMBOL vmlinux 0xd8d25bbc ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xd8d3f41e mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e151e5 mdio_device_create -EXPORT_SYMBOL vmlinux 0xd8e41d1b mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xd8eb6074 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd8f77051 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xd90308a0 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xd9231972 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd923a07d backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9438c8f __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94d5b2e rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xd95a869d tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0xd981b7ff seq_printf -EXPORT_SYMBOL vmlinux 0xd9856141 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd99141d9 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9bd6876 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xd9c6e68c ps2_init -EXPORT_SYMBOL vmlinux 0xd9c741a9 legacy_pic -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e0c8f6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd9eb5328 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xd9f75457 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xda0c2e2c get_task_exe_file -EXPORT_SYMBOL vmlinux 0xda13f07a dquot_commit_info -EXPORT_SYMBOL vmlinux 0xda146164 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xda149777 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0xda289214 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xda31dab4 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda502440 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xda51119a pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xda574ec8 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xda69e5a1 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda8522e2 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa817a1 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdadbcd65 blkdev_get -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdafba8ef get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xdb066b5a nvm_unregister -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb1b816c inet_add_protocol -EXPORT_SYMBOL vmlinux 0xdb1b8f22 finish_open -EXPORT_SYMBOL vmlinux 0xdb38ecee serio_reconnect -EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate -EXPORT_SYMBOL vmlinux 0xdb3fcf65 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xdb4603e3 agp_generic_enable -EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xdb56625e zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xdb59a12d proc_create -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb69d39a blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xdb6e5fd9 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8e187d may_umount -EXPORT_SYMBOL vmlinux 0xdbbb79d5 set_create_files_as -EXPORT_SYMBOL vmlinux 0xdbc412ba nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd235e8 dm_put_device -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xdbf2786c md_write_start -EXPORT_SYMBOL vmlinux 0xdbff0942 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xdc03fd18 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1a9245 generic_fillattr -EXPORT_SYMBOL vmlinux 0xdc1c17e7 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc5b0f1a agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xdc7801ba end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xdc78c4f4 console_stop -EXPORT_SYMBOL vmlinux 0xdc8d2e4c __close_fd_get_file -EXPORT_SYMBOL vmlinux 0xdca50e6d dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xdca96963 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xdcbe3133 phy_device_register -EXPORT_SYMBOL vmlinux 0xdcc3f8e6 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xdcca0016 generic_file_open -EXPORT_SYMBOL vmlinux 0xdcf340e1 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd209e7e jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd3edb73 devm_clk_get -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd67f4aa tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb0fcb4 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xddbc08de agp_find_bridge -EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddd377b3 km_new_mapping -EXPORT_SYMBOL vmlinux 0xddeef3f0 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xddf849a3 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xddf9a6df sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xde07b1ff clk_add_alias -EXPORT_SYMBOL vmlinux 0xde1ce427 phy_device_create -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde3d2f69 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xde4c1a24 param_ops_charp -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde6d2e55 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xde720d14 xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0xde857977 security_sock_graft -EXPORT_SYMBOL vmlinux 0xde966f74 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdeba2756 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xdecc905c __tcf_idr_release -EXPORT_SYMBOL vmlinux 0xdeccaf7f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xdeead9e3 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefe2551 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xdf040d90 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf73cd6f tcp_disconnect -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 0xdfae9651 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable -EXPORT_SYMBOL vmlinux 0xdfbfc7f3 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdef2cf icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe1be4d jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xdfee941d vif_device_init -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0148147 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xe017f3c0 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xe01df63d nf_unregister_queue_handler -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 0xe051508e __neigh_create -EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0d6ec36 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable -EXPORT_SYMBOL vmlinux 0xe0fe5f5d blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0xe101a7b4 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xe10909bb dentry_open -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11b4388 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe11d00b6 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xe152c9a4 input_set_capability -EXPORT_SYMBOL vmlinux 0xe15dafff i2c_clients_command -EXPORT_SYMBOL vmlinux 0xe166036b blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xe1668947 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xe16c33bb dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xe17176b7 release_firmware -EXPORT_SYMBOL vmlinux 0xe18fc9ee tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xe1937ebb skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a934ad pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xe1b35035 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xe1beabd4 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xe1c265a4 phy_find_first -EXPORT_SYMBOL vmlinux 0xe1d5958c vfs_setpos -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xe1ee5639 param_get_string -EXPORT_SYMBOL vmlinux 0xe1f18cf6 page_mapped -EXPORT_SYMBOL vmlinux 0xe1fc14ee find_vma -EXPORT_SYMBOL vmlinux 0xe21e244d mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22a629d phy_resume -EXPORT_SYMBOL vmlinux 0xe2339876 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xe23bc606 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe2607394 f_setown -EXPORT_SYMBOL vmlinux 0xe28b000a backlight_force_update -EXPORT_SYMBOL vmlinux 0xe2adf421 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xe2cdad76 padata_free -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e44b46 skb_ext_add -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe302e77f simple_transaction_get -EXPORT_SYMBOL vmlinux 0xe307ecbc udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xe30ca96e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe32a22e4 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33ba143 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xe33d64a5 skb_push -EXPORT_SYMBOL vmlinux 0xe365d725 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xe37542d2 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xe38aa71b key_type_keyring -EXPORT_SYMBOL vmlinux 0xe3960016 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xe39710c2 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3a94f54 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xe3b54839 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xe3c99603 send_sig_info -EXPORT_SYMBOL vmlinux 0xe3d50235 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3da5a63 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ee4863 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xe3fef93f fd_install -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xe402880c dquot_initialize -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe42b6408 km_query -EXPORT_SYMBOL vmlinux 0xe42ebf64 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43579a4 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xe43b73d4 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe4645c43 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe4a67064 bdget_disk -EXPORT_SYMBOL vmlinux 0xe4b38bdc wake_up_process -EXPORT_SYMBOL vmlinux 0xe4b4cf5f unregister_console -EXPORT_SYMBOL vmlinux 0xe4d4e0f4 dev_mc_add -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe51158bd kernel_connect -EXPORT_SYMBOL vmlinux 0xe5148cfa pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xe51d480a dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5264a31 console_start -EXPORT_SYMBOL vmlinux 0xe568f9e3 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe579f4bb skb_put -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5b15a1d dquot_operations -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e692d5 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xe5fdacd5 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xe612a75f irq_to_desc -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe6193a6c mount_subtree -EXPORT_SYMBOL vmlinux 0xe6240e73 user_revoke -EXPORT_SYMBOL vmlinux 0xe62d9287 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe65d7f3d tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xe65ee235 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xe681b244 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xe685f84c agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe69713c7 md_flush_request -EXPORT_SYMBOL vmlinux 0xe69efcc8 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xe6ad3e8d md_done_sync -EXPORT_SYMBOL vmlinux 0xe6b1279a cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xe6b55c20 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xe6bb54a5 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe6c012ac dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xe6d6992d component_match_add_typed -EXPORT_SYMBOL vmlinux 0xe6d784b9 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0xe6e9ee9f uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xe6fc4d4f mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72761d3 __lock_buffer -EXPORT_SYMBOL vmlinux 0xe72f768c genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73ebdb1 pskb_extract -EXPORT_SYMBOL vmlinux 0xe73fbcf5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xe770550d tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xe778a448 md_register_thread -EXPORT_SYMBOL vmlinux 0xe77aec7d xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe7970688 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a118a5 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe7a5fa80 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0xe7b70d13 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xe7c8b158 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe7d18e25 mmc_put_card -EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dee06c input_unregister_device -EXPORT_SYMBOL vmlinux 0xe7eb0029 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xe7ee6a65 init_net -EXPORT_SYMBOL vmlinux 0xe7fc0f99 serio_interrupt -EXPORT_SYMBOL vmlinux 0xe806f9bf param_get_ulong -EXPORT_SYMBOL vmlinux 0xe811bd71 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xe818a53b dev_remove_offload -EXPORT_SYMBOL vmlinux 0xe825ce16 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xe83c6001 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xe8401bda udp_gro_complete -EXPORT_SYMBOL vmlinux 0xe846cfe5 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xe853152b blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe864bc7e zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0xe87785ae __check_sticky -EXPORT_SYMBOL vmlinux 0xe8bc695c kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xe8c07ff2 PDE_DATA -EXPORT_SYMBOL vmlinux 0xe8cf4e7b iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xe8d5364f tty_vhangup -EXPORT_SYMBOL vmlinux 0xe8ecfee9 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe902e287 xattr_full_name -EXPORT_SYMBOL vmlinux 0xe904d653 nf_log_set -EXPORT_SYMBOL vmlinux 0xe90f5f73 block_read_full_page -EXPORT_SYMBOL vmlinux 0xe90f74a0 page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe926976a blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe92e49e5 skb_dump -EXPORT_SYMBOL vmlinux 0xe937ad5f mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xe952a436 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe966330a neigh_seq_next -EXPORT_SYMBOL vmlinux 0xe967de44 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe971e65e eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe97a16b3 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xe97c5a4f nonseekable_open -EXPORT_SYMBOL vmlinux 0xe97feae4 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xe9a4a686 stop_tty -EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9c306d4 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xe9cf0162 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea48c153 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xea498758 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xea4d5e9a input_grab_device -EXPORT_SYMBOL vmlinux 0xea59b6fa devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xea5a3497 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea88be80 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xea9ab1f1 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xeaa5aa5d pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xeaaae66e __frontswap_test -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xeace272d phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xeadac55b __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb111a0f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xeb117402 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xeb1356d4 tty_register_driver -EXPORT_SYMBOL vmlinux 0xeb189f87 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb28f83e dev_mc_flush -EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb5051ef scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index -EXPORT_SYMBOL vmlinux 0xeb769367 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb898f4e _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xeb9cc92b dquot_transfer -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeba12600 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xebb97938 sg_miter_next -EXPORT_SYMBOL vmlinux 0xebd8113d blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xebd921ed iget5_locked -EXPORT_SYMBOL vmlinux 0xebdd025b dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xebe869ad cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xebeca83a bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xec0e5c8b phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xec1d95e8 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0xec212caf padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec49639c pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec694bfb get_fs_type -EXPORT_SYMBOL vmlinux 0xec6c1ff1 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xec7356fb neigh_lookup -EXPORT_SYMBOL vmlinux 0xec9f57ab skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xeca58386 fb_class -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb403eb md_handle_request -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xecfdb0b7 tcp_check_req -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed07b4ba dma_ops -EXPORT_SYMBOL vmlinux 0xed165d8f __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xed214a17 wireless_send_event -EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed403933 mount_bdev -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed627fce get_tz_trend -EXPORT_SYMBOL vmlinux 0xedb07c57 neigh_table_init -EXPORT_SYMBOL vmlinux 0xedb889ae pci_iomap -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd60819 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xedec1efc tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xededc3c3 param_ops_bool -EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put -EXPORT_SYMBOL vmlinux 0xedf884e4 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table -EXPORT_SYMBOL vmlinux 0xee009719 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xee1a9279 udp_seq_next -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee51bb5a pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xee51eb7f tcp_read_sock -EXPORT_SYMBOL vmlinux 0xee56d61b inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee67de1f sock_wfree -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info -EXPORT_SYMBOL vmlinux 0xee88eb5e ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee8e5c60 ps2_command -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeeaa28fd neigh_seq_start -EXPORT_SYMBOL vmlinux 0xeeb0be76 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xeebd5c0f serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xeed069f2 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xeed4a22a blk_queue_split -EXPORT_SYMBOL vmlinux 0xef0aa54b __i2c_transfer -EXPORT_SYMBOL vmlinux 0xef0ee7cc fb_show_logo -EXPORT_SYMBOL vmlinux 0xef11623d agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xef26092b no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xef3c237d sock_kmalloc -EXPORT_SYMBOL vmlinux 0xef41c5e3 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xef44ca68 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xef478198 tty_kref_put -EXPORT_SYMBOL vmlinux 0xef5414ec jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xef8dce3f sk_common_release -EXPORT_SYMBOL vmlinux 0xef91a5f0 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xef944959 tso_start -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefcea6b8 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xefd5bd6c scsi_remove_target -EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff56f57 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf0180f70 kill_block_super -EXPORT_SYMBOL vmlinux 0xf0273b41 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf0705773 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xf0834b33 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xf0859202 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a5902f iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xf0ceb6dc iterate_fd -EXPORT_SYMBOL vmlinux 0xf0e59c92 dma_find_channel -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf120d83b blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf12406e2 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xf13ce6d5 genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0xf1545444 kern_unmount -EXPORT_SYMBOL vmlinux 0xf15e931a fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0xf161bba9 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xf169de30 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -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 0xf1a44114 sock_gettstamp -EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1b0769b pci_request_regions -EXPORT_SYMBOL vmlinux 0xf1d9c474 vfs_readlink -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1fb9023 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xf209d644 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf21a934a inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xf21c9f67 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf22e2a20 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xf23351ca devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xf238e421 __scm_destroy -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xf25de396 ps2_drain -EXPORT_SYMBOL vmlinux 0xf2674e35 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xf26ea8fc pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2b3a834 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2dd22eb blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e6887d xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xf2f7d1ff generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3233fac kthread_blkcg -EXPORT_SYMBOL vmlinux 0xf330c70a __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xf332e8ea generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf3438854 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf36c8a60 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xf36d2746 mpage_readpage -EXPORT_SYMBOL vmlinux 0xf36d3dcd nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38a3177 pci_disable_device -EXPORT_SYMBOL vmlinux 0xf38eb644 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf395c004 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3ae3f6f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c45742 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xf3c46ca6 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xf3d6a1ec get_unmapped_area -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e399c0 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc -EXPORT_SYMBOL vmlinux 0xf41e1bb1 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf4595f28 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xf45c01d3 dput -EXPORT_SYMBOL vmlinux 0xf4723ab3 inet_ioctl -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf489b888 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xf49496bb PageMovable -EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bb3ff1 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4ea96f0 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5158e07 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xf51dbbd7 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xf5368475 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xf538e546 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5487ef5 inet_shutdown -EXPORT_SYMBOL vmlinux 0xf551480b pci_dev_put -EXPORT_SYMBOL vmlinux 0xf567eb6f pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xf576196b fb_blank -EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf59fcef5 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5a71b95 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xf5c1093f dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf5c4cebb blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xf5de0428 locks_free_lock -EXPORT_SYMBOL vmlinux 0xf5de87c0 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xf5e44b31 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5efb05b amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf60e03f1 cad_pid -EXPORT_SYMBOL vmlinux 0xf61b488b rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xf62a6cf8 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xf6331b42 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf66004e7 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf669fc4b input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf696351e read_dev_sector -EXPORT_SYMBOL vmlinux 0xf697ffad unix_detach_fds -EXPORT_SYMBOL vmlinux 0xf698fabc in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf6a24031 uart_match_port -EXPORT_SYMBOL vmlinux 0xf6b65a42 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xf6ba3205 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xf6c664fe phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xf6d3807b skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fa2eb9 single_open -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fd2982 write_cache_pages -EXPORT_SYMBOL vmlinux 0xf712f45d mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xf713aadc sk_net_capable -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf739dd85 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf768e429 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77b56e2 seq_lseek -EXPORT_SYMBOL vmlinux 0xf77f0fdc neigh_for_each -EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7a230c6 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf7a2d0c1 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xf7a301a3 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xf7a4b699 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xf7b43c08 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xf7b91160 __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0xf7cea05d fb_set_suspend -EXPORT_SYMBOL vmlinux 0xf7d4f662 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xf7e78f2c unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf80446bd seq_escape -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 0xf8197dbb netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830e0fc phy_device_remove -EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xf8477125 pci_get_device -EXPORT_SYMBOL vmlinux 0xf848626c inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf8824dd5 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8ae09d1 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d23a50 inode_permission -EXPORT_SYMBOL vmlinux 0xf8d97746 dst_dev_put -EXPORT_SYMBOL vmlinux 0xf8e69833 dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xf8f3ee2a netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f877f6 dev_addr_add -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf92461f8 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xf938e7b4 param_get_bool -EXPORT_SYMBOL vmlinux 0xf93c9198 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94e24b4 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xf96d06c3 ip6_xmit -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xf982566e flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xf983a9e5 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b8da13 tcp_mmap -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c231b7 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xf9d31935 pci_dev_get -EXPORT_SYMBOL vmlinux 0xf9d78609 seq_open_private -EXPORT_SYMBOL vmlinux 0xf9e4d4c6 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xf9ea36f0 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfa0e662d fsync_bdev -EXPORT_SYMBOL vmlinux 0xfa191b5b jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa302b15 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xfa319a63 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xfa33f412 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa40e43c pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xfa47f1b6 neigh_xmit -EXPORT_SYMBOL vmlinux 0xfa4aaf09 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xfa4aef8f device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8fe6dd pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0xfac14875 try_to_release_page -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae5ac77 bio_endio -EXPORT_SYMBOL vmlinux 0xfb1d4644 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb4010c9 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable -EXPORT_SYMBOL vmlinux 0xfb83b7ee eisa_driver_register -EXPORT_SYMBOL vmlinux 0xfb90005b ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xfb93eab0 ppp_input_error -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbaf4759 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbba9a63 get_dev_data -EXPORT_SYMBOL vmlinux 0xfbbf0192 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcf9225 bio_devname -EXPORT_SYMBOL vmlinux 0xfbd70d6e dma_pool_create -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbf2ab03 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xfbf391eb dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xfbf907c9 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xfbfddd92 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xfc0f79af request_firmware -EXPORT_SYMBOL vmlinux 0xfc1bc506 register_filesystem -EXPORT_SYMBOL vmlinux 0xfc1c97be mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xfc263a1e pci_remove_bus -EXPORT_SYMBOL vmlinux 0xfc289e94 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc54831c try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0xfc657f5a sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xfc791bd7 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock -EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type -EXPORT_SYMBOL vmlinux 0xfc9bebc8 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xfca915ff tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xfcb2c13a tty_lock -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd3714e max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcdf773a loop_register_transfer -EXPORT_SYMBOL vmlinux 0xfceb9717 xfrm_input -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd040487 skb_queue_head -EXPORT_SYMBOL vmlinux 0xfd054483 blk_rq_init -EXPORT_SYMBOL vmlinux 0xfd0ae4e4 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xfd22143e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xfd3ce5c6 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xfd64caad genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd94814e complete_all -EXPORT_SYMBOL vmlinux 0xfd949cd0 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xfd99d931 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xfda6d5ed dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdadac7d devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdb787ec ata_port_printk -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdbe8c1c generic_file_read_iter -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 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe39eb19 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xfe40bcf2 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4e2eb3 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5eb27f pcim_iomap -EXPORT_SYMBOL vmlinux 0xfe8118a8 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9555b7 key_unlink -EXPORT_SYMBOL vmlinux 0xfe9b0bc0 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb2f8a6 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfec3d138 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xfed00a1b pnp_device_detach -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef3c918 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff11c8bb get_super -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff595568 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xff5efa8a softnet_data -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6bc5d8 generic_listxattr -EXPORT_SYMBOL vmlinux 0xff7d9777 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff882def __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xffa938ce phy_print_status -EXPORT_SYMBOL vmlinux 0xffaa6feb end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffbf0676 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check -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 0x19711697 camellia_xts_dec_16way -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 0x67a94836 xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x6f3a8de5 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr -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/glue_helper 0x30a7262e glue_cbc_decrypt_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x32252542 glue_ecb_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xbb0d8c9a glue_ctr_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xc3fddeef glue_cbc_encrypt_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd0bb3d81 glue_xts_req_128bit -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 0x2b1c0ae4 xts_serpent_setkey -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/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc -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 0x2c7b3458 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way -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 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00fdf096 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01b89902 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0320f293 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x044d3c9a kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0538205d kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07d93f2d kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07dc0777 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a6e6c4b kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b6e1fc9 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c514a6a kvm_put_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d00a1f2 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1020db36 kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1076b2a6 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10db4e6a kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x133cd770 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x139a1e41 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1431dfe8 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15a2d685 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x190f89e3 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c664c32 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1da5f581 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db52255 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1eed17fa kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6cdf24 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x206e06cc gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2405c210 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24a10801 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x257b253b kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28f6bc3a kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a02cb0b gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cea9b1a kvm_mmu_invpcid_gva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dfa6807 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ef07f97 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31175399 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34dd98c5 kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3644da9e kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37b960e9 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a9c0d76 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3daa414a __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e66b83a reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x409ed9fe kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4235f437 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x451def60 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x472e33ab kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x491c5b25 kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a266b7a kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b6ee8f6 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fc49a5f mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51a56dbc kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54151ab1 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x555c504e kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5683c75f kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x572669a1 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x582cdac9 kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x582eb756 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5850db9b kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58babd85 kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58f6918b kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ab3045c kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b924d3b cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d43e94f kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fe1d86d kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6128b195 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x639c8bb2 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x659204d2 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66f7180c kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6794779a reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x683580b3 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x689f3cd3 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c77e0d3 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6da77ec9 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e3df1b3 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e91d70b kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f7d6f1c kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fe8638c gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7073a5b5 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75595764 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7618b638 pdptrs_changed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76594c6b kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7728eaa7 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bc83ec6 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c3e9375 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82c18a0d kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85c29176 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8849b6d5 kvm_clear_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89e32a85 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a044dd7 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ade3d12 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e59c927 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ed34454 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fc6fe05 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91a0b475 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x927ea361 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92b3fdb8 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x933a2cab kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94c5fbfd kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x956e879e kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x964f8443 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x988ae170 current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99782f66 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ab84f3f kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b7b6ff0 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cdbbb4f kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d081030 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d647119 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e2ea263 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2978293 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3e57d93 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3fdac69 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa485f1a2 kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaead83e kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab9190a8 kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabb76505 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac726775 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad6ccf8d kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf75a40a kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0f2660e kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb15d0768 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f3423d kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb28aa263 kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4f2e3fd kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb69c1d66 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb75783cb kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb84192fd kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9777068 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb4d3411 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf603aa6 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc151ad08 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc17b4f45 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2a39132 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2f606f8 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5c320fa kvm_can_post_timer_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc640054e kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7592c76 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc78c9d9c kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8443d69 kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc897b36a kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaf6b204 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc07551f kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc194740 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf34ca4d kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf60b31f kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd205e7fb kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd49dce4f kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7449c87 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7970590 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7c56716 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91d2347 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd96bb782 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda05d6dd kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda7ea916 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda9bc294 kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb1984c8 kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdba38029 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcd21bb4 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdec9c02c kvm_lapic_switch_to_sw_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe06c0596 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1251181 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1b156e3 kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2866234 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4d93be7 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5b37883 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe68f0010 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7955630 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe86381fc kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8bcb180 kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe905f1a7 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9be0a48 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea9a0477 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecaa4bcb kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee68bf73 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefd5d86b reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf18fa170 kvm_mmu_new_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf29b857f kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4321580 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf82f5c07 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf87f7f4e kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8ca7d7e kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9020162 kvm_load_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa42f0af kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa672652 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb41681f kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd0b4177 kvm_fast_pio -EXPORT_SYMBOL_GPL crypto/af_alg 0x1871517c af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x45b7856f af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x466c887c af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x48612176 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4b3c93e0 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x4ecb73c6 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x59ba6c1f af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x632084c3 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x8327be7d af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xa054c170 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa43144a0 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xb8ecae36 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xba9c2fcb af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xbdeadea9 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xc1a28f14 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xc5427025 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xc8cd7a62 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xf9afe3ac af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x9e3096ed asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xaa2fce4a async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x04d14b22 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x89c0d05f async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x19e627a0 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x40dc4231 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0c1388eb __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x24f6ec88 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb9e93d0c async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc0595f25 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x76a7c971 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x76d681f4 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x22ec5edf blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5f7a7c49 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xde110647 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/chacha_generic 0x1ca59810 crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x98d41fbc crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xcef14899 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xf970099d crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/cryptd 0x0e68a52a cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x29d6391e cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x4b9bd808 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x56715f0d cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5b037c78 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x5f6acea3 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x60e2cfc0 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xab01a968 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb0720d75 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb332685f cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb62b1530 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xbea850a9 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe1f98418 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0d5ac9eb crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x11deae3c crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x47d2510f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5645e622 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x610af7ea crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66768cc3 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7109b84f crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7dbada45 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x909cc6c0 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9a18d338 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa23fe8b5 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad88d17a crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2585cb5 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0055455 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3814dff5 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 0x789a07d5 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x894bc07c simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x94ba5b97 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0ddcca88 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x769988a0 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa478f853 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x946996ab serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x167a6eb4 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x69743974 crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xa99c24a2 crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xbae38b58 twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x597e3b91 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7e2bcf72 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaa2543df __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc7160120 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xda108b05 __acpi_nfit_notify -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 0x094c9c48 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12a95897 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x21d74b7d ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x23441dd0 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x272daf6b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29c35622 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x33f931b2 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44d3e7aa ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x58b84f1c ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5db24efa ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f7dfd53 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6f7f5a31 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ab95402 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93783751 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x998ff112 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c6d6bbb ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2e6716a ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbeb86b03 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc076e48e ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcb9bf4d9 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9e6a2d5 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdf926196 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeced8405 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3102f97 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0595a9ba ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x38b8d46a ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x394c4640 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3e425bce ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x604be0eb ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73a448ae ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x923c3b20 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9b4f8233 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7966dc9 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaba5e880 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xada43d4a ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc504bddc ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc64e4f8a ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd2968a98 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xedca65f8 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef0f55f2 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa77a7286 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x94f6ebea __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7b276721 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xccf7eb0e __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7ad485ff __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xad692332 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x48eb37c2 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5565f4c6 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x69e3389e __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcdc3bee6 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x6447d5b2 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xad339841 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bb0b7c0 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19d55d84 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a335b57 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30addfff __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f7f64f1 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56e81ac5 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57af4b58 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bd4e35c bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x824a92fd bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b2a1f3e bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91a7c9bc bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92731786 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f7c7a12 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa46b1c6c bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb24940df bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb61ee1e6 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd74ca6c4 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9f35cc3 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda6e7dfd bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe06e060f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8fde118 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf32f03c6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9b8d9e1 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfa6ee508 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x13323f0d btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x26915f8d btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b6a5979 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x547ffe5b btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae89295b btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd8bc95a0 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04f3c02d btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ebd44e7 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59eeb6cb btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ed2a84b btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ff6b628 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c91d716 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7a0733ab btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e4da183 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x913a0072 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1abfd44 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac74a37b btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb24b4746 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbea4b7b4 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd377be8c btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9df476e btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf15c3cf5 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb80b47d btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1021f374 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x60a85220 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x773e7c1c btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x78caca59 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x946f3605 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x98c294c4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9e024015 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa4ca06af btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa67a0b36 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd8078523 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe33a7923 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x242324dd qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4e0cb00f qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5c8b7754 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9babbb00 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb36d0689 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x15fa0c98 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x26b2049c btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x30c1f150 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc20fd78f btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc2be9c21 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6fccbbce hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x94258997 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbaa55c30 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe5a7e891 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x100b1feb counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x13f83a80 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x15d3219a counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x44ca9878 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5e8d3970 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x761c5dd6 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x784e8ecd counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x87469c9d devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x978fbcbe counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa71d234a counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xcc75c081 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xdb0b6d7d counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xfdc40181 counter_signal_enum_read -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 0x08224753 sev_issue_cmd_external_user -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 0x8fac14a2 sev_guest_df_flush -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xb15bd58f ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0071bdb8 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00eb236b adf_vf2pf_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ab51246 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x188a5a5b adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2346eecb adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e8fb371 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fcdd8d0 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x520d66a1 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ce8fbf7 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6203a2ab adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f913c32 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7592a13a adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77dd8f88 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x787fd032 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7cd3b3f7 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f6f4b2c adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x81365226 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e99a9f8 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x92421358 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x962d9b48 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x99b0f83f adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa3639784 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9501838 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad51f655 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xadc2aadb adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc66f842 adf_vf2pf_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbcfca168 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbd997165 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc4f81783 adf_exit_arb -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 0xd36c005e adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd40c2133 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd4a3c9bb adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd4eb5a97 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd566ee12 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe1c32192 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeb29dbba adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xec721bb7 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6d4f718 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8c9b135 adf_dev_started -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x9d8e62e3 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x80e8dfa9 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x141b7873 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x5bcb06ac unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x6ff5bc6d register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x762505f1 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xa5c77974 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xc9083a45 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xfc75265e dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1e4f35a4 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x44b0ccda dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0f66689f dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x802d775d idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8508fa90 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8a26f4d3 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x94ad30fd do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa0ce7d40 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa4a7c90f idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x844d0449 hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x91d3cc65 hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd5d0a7e5 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd9f1c9a9 hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x13a525da hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6043958e hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x489ce62f vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5e334f07 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x9b41f941 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc5509d71 vchan_tx_desc_free -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfc47dccd vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x4d9cf09b amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x830c469f amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xaf761418 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x3f6e4c39 alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x78bd145d alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0d6c6a28 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12ac8680 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x15e8d1b7 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1a9df7be dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24acb49e dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x29660e1c dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ae75d69 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x479966e6 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x51ba3fd0 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x69698099 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7967f653 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x83868bfa dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x934337e5 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa13e4daa dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1aeb911 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xead734ca dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf213b871 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf21fc184 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf41fbdfc __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x31ec8b28 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x46b61427 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4e61d00e fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d7b0c03 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x730f23da fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa7740e09 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc867bf80 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd400cdfe fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf0d852a4 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf1945833 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf25aaf63 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfb4f5647 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x176169bf fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a657a28 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d0763d1 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57c23f89 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x592296d3 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5d9f9b62 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x91d06a46 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x95526895 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb93f41e9 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcc91cd5e fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcecaadbb fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xee901cff fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf640f896 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2cb1ba3a fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x633285a8 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x676c8a08 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6d53e128 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x743cc43d fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf47c70f8 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xfa2a4d33 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x33dd7cd8 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x38e853ef gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7e3a1e2d gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x87af50d7 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd069a221 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x23677e17 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x847a5d36 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x89fce449 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x921628af gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe26e0f9a gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcd709107 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4f188a3d __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc2174df7 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1874f019 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1db82764 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b9f716c drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x31d88af4 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x347d5c88 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x44e49304 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4aaff979 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ad0d134 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ce3b09d drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69cd2eee drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a6eed44 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6b5ba29d drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ec22c39 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f6f5cc6 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x727ca852 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f96a682 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x895f2ed1 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8aae7052 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8c962c3d drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa20d97aa drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7778cd7 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb6259275 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbdd9fdb8 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe19d3aaa drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xea8c4124 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x002ae989 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0a6282c1 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2867c17d drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x538e29ba drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5414e418 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa009fa53 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd89d15f6 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xdf049381 intel_gvt_register_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x48684029 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x650baac9 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8fa0096a ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x121a8e05 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12b224c1 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13d4849f gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a673d19 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ee45365 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fa5c3ba gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29968af9 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c54ab93 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f37a1f7 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3000f0fe gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f6fffb1 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a28d3b7 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b989a33 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d671edc greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5acb289f gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6eba272d gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8af4cd9d gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e6ea5b2 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x997cc312 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb078814b gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb763b7b0 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb877d0e6 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbea9d873 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc13e0bcd gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0d243e9 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd113f725 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1415cf1 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd9362362 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdfb726eb greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe02f1b00 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2f5f16c gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe35e9ca7 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee598242 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf03015a5 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0692914 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfab71a89 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xffee7bbf gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x12cc55d2 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x164764a8 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x194303c1 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2000ae18 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2457e654 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x258ab0c2 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e168879 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fdb2fa9 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x31973da6 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35ffc50d hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ae74393 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f9bf596 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x48d665c8 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ad6050e hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b7692dc hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e0e82d3 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x549c9d7b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5868b7de hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5db87cd3 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5de37a9f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6198d3aa hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x650436cd hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6de700fe hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x717769e8 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75e22869 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ba2d9dc hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bf03b16 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7efadc70 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82159dec hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97625f7e hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b096f75 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8b430ff __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xae8c43dd hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb86dd754 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbecca241 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc31182f3 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc341bf7e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb64cc04 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5c40900 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe79bfe47 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4c49670 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfbe253f7 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfeb9e0e8 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfebf4577 hidinput_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 0xb13856bf roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x27af8407 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2ada6896 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ce6e657 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x59c1c9df roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7d9a03df roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbac55de1 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0b645a94 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x11ba4b0c sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1a5c3c74 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x53d16b1b sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x91bacd4a hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd9814be2 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xedd5fb43 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf6b82e1e sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf6dce6ab sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x43c6273e i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xcb0cf971 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8ecbf41a usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd233378d hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x280a7165 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x645b5d5b hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6c8f9e84 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x752051c3 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a5ec70e hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e2b720c hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a3775f9 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1645dbc hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa23a2d04 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa39b412e hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeaa7678 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc16eb8e2 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc2f213e7 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9bcb2d8 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdadcee67 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5e6822e hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xffac8497 hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x06d21075 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x097c75b4 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c122f6d vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2cce9031 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35a944e7 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43d643bf vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x457476c6 __hv_pkt_iter_next -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 0x64d12fc0 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e825f9b vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74bee8d6 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80a7d6e2 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85a2b134 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x89596517 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8b5deb9d vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8fc8ce2b vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9122dd3b vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9a17d857 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2c786a5 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb553cbeb vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbbf06f49 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc174534f vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd40a324e vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda56a907 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4c16448 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe827ba45 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfc99a60b vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x1a12ce4d adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9dfff5b8 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd5463c51 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x02db76ef pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x03436b9c pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x135e30fa pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x22712834 pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2ad164d4 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x342a9c44 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x373166be pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e80e7e9 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x652217a6 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7667aba9 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7b6f936b pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8957f054 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8fbdb5f8 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb7edc441 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xce161d57 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd6cdfff1 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd9820826 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe32e4d9e pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xecb20c4b pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x157c8eab intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2941b266 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44f1195b intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x48864340 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4c49a72c intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x541db932 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8b03b447 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa863d745 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xae7f345f intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x255a3bf5 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4e798e32 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5be21551 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1da6e43c to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2ecfcf38 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3f0588a6 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x44ac11bc stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4e4c3c76 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7e7ed423 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x97923434 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbf80df6c stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcfaa5e3f stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x05c6504b amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x06f1d504 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x29d4bafd amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8ae13cd1 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa235e1b9 amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb089e0e9 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xfb5904a4 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x8d9f43df nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x13eaf060 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x39ebbaa9 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x632c6f1b i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7805eb3b i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb4b2eb53 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x03363fc5 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x077404c6 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x086f452e i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1266f980 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b3891d8 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x216380b8 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x261a007b i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x28aa84de i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x38b6f14d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4578ab78 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53cb7092 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6714cc2c i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7c2848dc i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8f44ee2b i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91234385 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9458993d i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f72933d i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa6412665 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb6cc53ee dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3288580 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7cd8e1f i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe9c9f73d i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf0250d56 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf740356c i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xff8c0ba3 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x2128f9ea adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x5baee918 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x27cf54ac bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3cd659dd bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8d4cfa18 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcc76ea4f bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x161ce200 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4fea63a1 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xacfa9e68 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x3fffb879 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x8b9bc246 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x135c489e ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x16a0b932 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x328de074 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x78a93d97 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x97283c7e ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa6d70fef ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa798d699 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa8023252 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe1cbb3ca ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xff88742c ad_sd_reset -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 0x3e888a22 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6c634a96 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 0xb1f16771 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x4e4da56e iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x54300850 devm_iio_hw_consumer_free -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 0xe08b2b14 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x8ad54ab7 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x9c16a780 devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x8e9909fb bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0e1f857b cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0ee85354 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x31904149 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4adc58eb cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4b28847a cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x722c5a1d cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc12d5ff3 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc5c58967 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc8c4c889 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0e6e632b ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe16aecc7 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x79d8152e ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x99621a57 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x90f99541 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa9dadb4e bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xebb8e822 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x13d1c306 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x24c53ea0 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf9a13bd5 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2d35c2a1 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x49355ef2 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5b2409da adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x97fd17a8 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9b1882e6 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa4a89d7a adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa69f0981 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xad035557 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd8259c25 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeb1ae119 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1cca10b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf802f637 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x67530228 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x07a2ef52 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5d986d3f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x76ba1260 inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x008c91d5 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0238f5bc iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x046b495c devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08c66582 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f99ff24 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x195aa65f iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x198df285 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19925412 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1fa17a38 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x223dd60a iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x269afc7d devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x273df853 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b2e706d iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bb87396 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e081526 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34f0bf93 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c44600e devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d451d13 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48902936 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d4a6b0b devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x515171ac iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55b777eb iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b604065 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d1da723 iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f1c10b3 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72702dd0 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78a2a5c4 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79c9da69 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94e564a6 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x962ee313 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96b3fd89 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa08b2ed2 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad8934dc devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf1c9594 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb274123c iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb42c3fa2 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4802f48 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4fb4fc9 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7112ab7 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce21cf51 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd036a3e7 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd08350ce iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8d77f76 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdacc08bc devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde41b36f iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed7f9fed iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee33e21e iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef7dc03a iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4d0b2ca devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb916637 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xca97d575 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x47badbab mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x019a057d zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x349eec73 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x63a2c10c zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xbac43527 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc5bf166a zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe03a7448 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xe53e5e71 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x0e5ad617 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xdcbc9d62 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1c4653b9 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x284e1418 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x33940c86 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3401906c rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4a0f16e0 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c8a7a63 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x61b180ee rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74ea8a9d rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7ca2e007 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7e1a25c4 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa888308f rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb09f40db rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xca3e55f9 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x92943ae3 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9a9dcc5b cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xec1d2a9f cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa71d4890 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf206e41c cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x2b4538ea cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7c6ec51c cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x214516f5 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7a34b821 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb7cc787 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb9575d8 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0219538a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1fa74ed0 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3c780406 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5200c48e wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x52e08ddb wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ded22b9 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x67f631a4 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7221b15e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8338a4ce wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaeb0b4ea wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xceb35314 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf3a97a57 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0a0955af icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x12c802a4 icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x68d8dabd icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x771fb7f9 icc_node_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x980399dc icc_provider_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x9fa8e792 of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xa5f42745 icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xaa400624 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xb578517a icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xce8b371a icc_get -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0934c0a0 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x17ab0b3a ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b5235e0 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x36ee0dee ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x588bd014 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fcba486 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94e6c86a ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa9d38271 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb35018e3 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2c4464eb led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44c4f0be led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb783cd33 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc6493d50 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcc0de799 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf567995a led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x19a2466b lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2d84d53a lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x36750340 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4e109f4f lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74c74d3d lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f90cc0b lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a519614 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa6c08b9c lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xab9848eb lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc954ba9a lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xee5baea6 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/mcb/mcb 0x1b76fb2c mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x279c5b3f mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2bf07802 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x47bb8f06 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x54597690 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5828cdf3 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x77bbcbbd mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7a9e2fbf mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9ff546ab mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa0ef1124 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbeca8077 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8ddbf71 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf518710f mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf87aa7d1 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x011cb06e dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c7f3aaf dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2d7fac14 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x428e6cb3 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e1f415e dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56541048 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57404e0d dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c371449 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5fdf122c dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6689d17f dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6940ef6c dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x78e5e6f8 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x85e884ba dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8ea2073e dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9115f1c1 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd0f90fde dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf53f4af6 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 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 0xaa68149b dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset -EXPORT_SYMBOL_GPL drivers/md/dm-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 0xd985e860 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xda1cff96 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x072c4c12 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x77500119 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 0x2f3ca405 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6694a7ba dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x9d22bd69 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9f5f36bf dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdeaead41 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe022af8e 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 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x30c37cc0 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -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 0x5cf0d0bb dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5d80835b dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -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 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x168eda79 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3c77a28b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x454be922 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f583c2e saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7eb41d2c saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9c4f21ec saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa092ace0 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb6dbe64e saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc83483f7 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe42de9d7 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0f8bb3e1 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x27f8da5e saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3e405756 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4e2eb811 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8222b142 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8ada7ab3 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf7b4f964 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0255db6b smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2ce635d7 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c6cac08 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x48f10cf0 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b4b5025 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4cbabd30 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65de92f7 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6938bc73 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 0x8141c8a6 smscore_register_device -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 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ced5c91 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa0700c52 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa8458b40 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa86bf71c smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1bf9a9e smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdcfa6b4e smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe6ea4516 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa84f4e4 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0336064f vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16215504 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ad59478 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23add0ca vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x32474184 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3fe5cfe4 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5b77f34d vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x617aba12 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61990403 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x626b51e1 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x652702bc vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69c2e93c vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x88ea0642 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa5309ea2 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9545e37 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaaac7b06 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc4ffe7f6 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc6608540 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xccd65a3b vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd29b7faa vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd7dbf9af vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb84a166 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe06dd4fb vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe994c42f vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeed3eb70 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x19e9d2fc vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc24ab6f5 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf24a2763 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x72e0ebf5 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb8cc8953 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06ff4abe vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x09bac2a7 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x110ae24b vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17cd3645 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x261f1225 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x365b655d vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ddf88b8 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40fb189c vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f037ecc vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5dae6dcb vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x616eb9b2 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64837248 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x663d7ed3 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6904d787 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7228993d vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77b0f336 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8086e242 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85f89666 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8b9776a3 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95164bde vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9cc66d12 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d4dcbaf vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f3059d4 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0de467e vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa9123221 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb090fb0b vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb33775b3 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdcb0e0f vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfd02436 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd1c59d9 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1e4446c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xb4789c45 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x490de3bd dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7025cf6a dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xefa577b6 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa6939a4d as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x234a6c93 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x85d4a27c gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x89ca476a mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xa3d1ceb4 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xfa7db4c5 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x2918a28c tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x92cc5c18 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x5ea792a5 smiapp_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x049c3fcc media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0657c842 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08c2eca8 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09661182 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16054217 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x260e39bd __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26a6abc8 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31482480 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c6b5a21 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4acf228e media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b6dfca8 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52da3c75 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53f38f62 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x543221c8 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55550a5b media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b38c662 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60e7bb8d media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d9bb260 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7449a7c1 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x744a9385 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x898f7698 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8dac38eb media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a236e50 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9cd9bffa media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f429fe0 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0c9c78d __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa288f35b media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad89b4c8 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadb79f8f media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6399830 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb81ba8d9 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf536697 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd130326f media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd20fa817 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd38cd15d media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6480378 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8808681 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcdca090 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6abbdfc __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6d45fd5 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb59c4d6 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeecb3b01 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf271a7a9 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf33e5f5d media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4750c84 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf47b39e8 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x2f007807 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a9b221b mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15669739 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x164e7e57 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1bc61db8 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x254f2907 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3994ca6a mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4ec0ed6d mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6b8388d4 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f13f1d1 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7483648f mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7be2e2b8 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81b85b58 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a12bbd6 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaaa25f0a mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc23b8b14 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec4916c5 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeebcac00 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf22ccc30 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xffa4afdf mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x06848a86 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14ea2eb3 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x23adc100 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41eee111 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4984a287 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4dc8f7fa saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e57d721 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70389152 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a19503e saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7bc8f1eb saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8bcadf9a saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c8c3ac9 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3eed928 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad9c9759 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb595fe57 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6abb9dd saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd7faca02 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefbc4108 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbf7e489 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0b0db11b ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1abf0b03 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5f61dcc1 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x74e840a1 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8c9b577a ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9d5d429a ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa387208 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x250db32f mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x809ad950 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc2ec4021 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xe9262815 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xfdcbd36b mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x02303698 vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x11713049 vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x5dafa471 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x6acc36af vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xdd5d8523 vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xe22068ab vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x730ae18c radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc0681141 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1783c438 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1c8e69c0 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4c9607fa si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x844c9ae4 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9c23c4fa si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x14d088df devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x16beb527 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2071e0d3 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3011895e ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x324d7e4a ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c73bf0d ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x496a8538 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59cbe515 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6981e8de rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6be29ddf rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x750eab23 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x78cb11fc ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9cc46438 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6a26f89 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa96e5f24 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb83f5469 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xecf81c76 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf82536b6 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xae3e1514 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x765e167a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x32c0f22d mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xb01c2cdb r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x0a4fe622 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x141a9c4a tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9a401a87 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc55d6a50 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd50feba3 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf17efa88 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf4489f43 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1284653a tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5dfea6b0 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd489b207 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07d60f0a cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b4d7365 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e6773ab cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x15514aa4 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2f7da481 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d3dd128 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e3f7aff cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49f45c0e cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c31b610 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61089609 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c357755 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x804138c0 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96bcc632 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d646460 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa0788fa cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2198333 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8fc1868 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd635fb4 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe55c6559 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8e95cfa cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xfdee8792 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5529362f mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07c10149 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x37cb72c5 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3fca5d2d em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e48f8f9 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e47f6b3 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x699b0ba4 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78143f25 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x86c26d28 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa5f21bd7 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba33f519 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb1085aa em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbc78da7b em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbddff778 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbfba477 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9b9c2e9 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe2afc322 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeccea0de em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xece0bb6d em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x291cb2c4 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9afaae67 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb505adcd tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfe8f9d7c tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9d9f3643 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xafba1ed9 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb17faa84 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x48f55996 v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x57c7f274 v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x62d4e4a0 v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7db686fe v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x906b04d2 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa7033ce4 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xace1858a v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xad56ab19 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd5b76511 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf1bd7f98 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01798271 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0213b7fb v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x129d0c1a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23a99f50 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2662686d v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2baf10c0 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35f52d23 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3925bd88 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cf3811e v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d68d80d v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d55b06b v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55e469a4 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6155be07 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x638a9a2c v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d1547b3 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f301160 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f64458b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x759b5d36 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x765740e7 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d8001ba v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82091881 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c29f174 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f2315ff v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9664a208 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96c9142b v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x988e0551 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa83276c2 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb251d3ea v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbac8a8fa v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdf512bb v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbeaa4559 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6380638 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf37b0b5 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6cab76c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf77bc68b v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05bba366 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06699f6e videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x07825af8 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09ec4640 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0bb42b9e videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20569cb4 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3e59c103 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f0d6550 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61606b5f videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6789f9a7 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c484b20 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7081ccdf videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73dd161b videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x800b5e87 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86619712 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99084e10 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d21c9de videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad92fe76 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb1d2dc1 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf553851 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd152f03f videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5966367 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe7d4d14a videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb5805a8 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x35fa8657 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 0x58307b7a videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x877518e0 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xade460b4 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x183d7349 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x52d65aad videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb0d8982c videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x021f162a v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07604297 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16144918 v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e19a7ad __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f8caef4 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23a45970 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x255c6112 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28c92fc0 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x325523fc v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3259c5f6 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x360b3d49 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ab0e8a1 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ae3057a v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f7f8266 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41e45208 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x423f2df1 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43d4d45d v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b1f6af5 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4bf60708 v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53802203 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x541bffd3 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57c8cd3e v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5abad177 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ba73f90 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64e647e2 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x672b73c8 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x675cf14c v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b46661e v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f85eece v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c19383e v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x848eaf6d v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x886f56b9 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ca62dae v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa45a58b7 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa679f3a1 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa98665e4 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaab412f0 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae5941aa v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7aaffdf v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9492f1a v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbd4cbe7 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeb4fe72 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc39812e6 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4dd135a v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc965335a v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd08e5cd v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0de5154 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5a3d29c v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdda13f6c 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 0xe9dc93f2 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf026f40e v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf088a415 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf14c082b v4l2_compat_ioctl32 -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 0xfbebaa8c v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5373b8cd pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb71e16ae pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xea19410e pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x0cf2b40d read_acpi_value -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x22623472 read_ad_value -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x8f241b65 write_hwram_command -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xf9d2b563 write_hw_ram -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x274ef8fb da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x32624897 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x371dfe38 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4bc614a6 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7cf66775 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf2f42b02 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xff3e4719 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1106b4c1 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2ec4a0b9 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x31443773 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5099f81a intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xcbd80d59 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x28de4226 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c40fe2f kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4d6114bb kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6fc5aed4 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6fd90d2f kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xabdb74a6 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb6416613 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcab5174a kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x92b53fe3 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd163f1b0 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xea0f8540 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21dadf82 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4d6a78bd lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5f1f2eec lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9bc170d lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xba44fbbb lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc5f1b65b lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdf73168d lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x028d2318 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x240bbd41 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x3d4d9565 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08915243 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x089c8e03 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x104425f3 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1049f9b3 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x27c53e0e cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x27c8e24e cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ae3c93b cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3aee157b cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ba44f4f cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ba9930f cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4e407183 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x537138ff cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x537ce4bf cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x64f02302 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x64fdff42 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69af87cf cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76ed0945 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x79d6d437 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x79db0877 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x843932c2 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a9063ee madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa1067bc3 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xabb232ed cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3157efb cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb318a2bb cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdd488e41 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf02063f7 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf02dbfb7 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3a0ccba2 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8a1fde6a mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb41919ef mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcaa5954a mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd8aa6022 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf4c61021 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1cf1990a pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4a784d52 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4a933b73 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ff2203d pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61a00f89 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x640229e2 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x70a0bf88 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb38e41e2 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcdadd2b4 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0dd2bc4 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf92a5ac8 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4bcf2aae pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x619e2023 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x20c4134e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8858618a pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd3c01176 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdaa095d2 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe3386c85 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8e6c5ea4 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 0x15f0aded si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x161fe670 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27f033f2 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28534d45 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30bf7663 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30ec8eb4 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x316065c0 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x404607b1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4401854e si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45ed8b51 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5193cb96 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54c4d332 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5533545f si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56a560e7 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a8e14b2 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f2819b8 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x826f80c7 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x860fbde4 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86e79e5e si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87ac9f9c si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ba89934 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x95fe4bde devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e34280d si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fda8224 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf51b3af si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd6d8872 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb4df9b3 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xced6163c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf738252 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd07b61e5 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdba2edd9 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcaa2325 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea32b26f si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfaecca3b si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x80babbdc sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa0c4e1a7 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa51ce723 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd3421cd2 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xef40955f sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1c3368e3 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x22d82432 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3597d72a am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4907bac1 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xf1a3fe13 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5201b425 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5b16b4f8 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5c8848b7 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8d99c60c alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x90426bf8 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb54fbab9 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf2821b53 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x263b1cdf rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34eb4630 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x452573cc rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4611b3ed rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5cfdf403 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6daca1a0 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7002410a rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x73db5273 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x800a4170 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80d254d1 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97171de4 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa24aba42 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad39c727 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb2d0d427 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb32648ff rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5296477 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0ae3186 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc3e6913e rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcd880665 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd58d4497 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe0ea51a3 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8767d6e rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf914cfdd rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xff762f9f rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x38726eed rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4d808fc3 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x64a319cd rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x667734b6 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6dd98093 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x82ae96fb rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x95fb79a3 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa554b88a rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbabab2d2 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbd386773 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc8fc3c19 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf0553653 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb567315 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x15557732 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3c4e9daa cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x81713f4f cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd46395f7 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 0x5484e238 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5c3441c6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7143f4c8 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8c422c52 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb065f7c6 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc91a8df enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xddab73b4 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff17897d enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0da33b52 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x114248be lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x15736873 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b1e6e67 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa1837009 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbfadaefc lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7953d68 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf088d738 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x06885f57 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x21f4a869 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28a5441d mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2d1bb732 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x306f97ba mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3567a0d4 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3723ddbd mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4ab984d3 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x53525e96 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x63a2facc mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6c25fae6 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d140ff7 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6f6de771 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77aa12f1 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x796868c7 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87edba5f mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8f635f67 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90606b13 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x92df39ce mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb0e0a534 mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb4b86e0a mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb9857b1f mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc1815e90 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd7e5f7c2 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd95f0ae0 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdc404fd8 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe4f44e2d mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xee039cd0 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x29674c1d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x750fa0a3 cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x8da565b8 cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xb9bb984c cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xc25666ea cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x3cfc39e5 mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x6d2cfbcf mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x901b326d mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xab382da6 mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x1220a93d scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x258a8153 scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x2bf6488e scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x79ce52b5 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x1ca940f0 vop_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x2d6245d2 vop_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x5de263dd vop_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xdf426409 vop_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0a425159 scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0be70c50 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0edd2249 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1708df0f scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ce58cc2 scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3659a140 scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3f9d5615 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4959f1fc scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4ac26bd6 scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4fd03735 scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x515cf160 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x55f31c9e scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x57b092e4 scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5f8e90e0 scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x60c8fbcc scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6e7d1c59 scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8f2fed3f scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9eb7ea70 scif_client_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb76f24c6 scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc40bc6f1 scif_listen -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xccf3d091 scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd73c9d7a scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe19e7312 scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe1ecb03f scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfcc27e0e scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe2c2b51 scif_writeto -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 0x7d5ba9a9 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 0x835dd421 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8e3e3f4f st_unregister -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 0x24a9b6d9 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xc26ffeb4 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcd24cbef vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x00ceff9e sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x01d61e2f sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18bfa0c6 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fd96800 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x254d2724 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2978132a sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d7247d0 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3462d275 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373b5d00 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43e0f556 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x443b5f92 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a744232 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4bffe73f sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4cdf2d77 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x55ad4f0e sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58129759 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60bd7d7f sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f55b50f sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x707434ee sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71e8b5b6 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x72085cbb sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x72b66ede sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74e1fcf0 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74e49119 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85b99815 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89e62168 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fbd0407 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5c0f0cb sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa952eaac __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xad9e7956 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbe849897 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc579d78a __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc594d061 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce2dc003 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd20f8ada sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2ea57e2 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdf3c8bec sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7394625 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2acdb83 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1a6982f3 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7bdeea2f sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8520d3f7 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x95e8d6e8 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa5710f42 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd8b7cef sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc13b31ac sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd2132b86 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1f8c38c sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x54ae192f cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6b873cc7 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x96991951 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0a41e5e3 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7413ae33 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x87ea61b5 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xe5d4c8b4 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x088bd4cb cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9f2d6b59 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe7ab80bb cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4b59aa6d hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf7c2817d hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x028c807b get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x029bf68b __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08462e96 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10488b77 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14ccf8fb mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x196a03fb mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23bd6cd1 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25deaed1 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x297ed763 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c7316bd mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c770eeb mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ee53ff6 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f6f3566 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3013db15 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34afdf9b mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x364d2ab9 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36539a6b mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x381f72e9 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c4ab5d0 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3db42209 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44789185 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dd5f3f3 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x500143d0 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5330b941 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67f26512 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71e27de8 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74a0b72e mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7539e01d mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x775e0b87 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84d024dd register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x871c503e mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8831e031 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88a454fb mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a193434 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d81f060 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ce361b9 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1dfa0b0 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7c6ad84 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9a9bc7f mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb426b804 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb69f04f mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd647d10 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc409134 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4b1d48f mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5a06be7 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd83caed1 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda4428b3 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdac922ad mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3ea1a1d mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeff9eb22 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf15c1c64 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf37e3965 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbcb9681 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x36f05da6 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6fcc9ea2 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd8682fff del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf627e975 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfb4d03c6 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0a6a34ef nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2a1f6b5e nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45b16d0e nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4b6055e5 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x506fdd94 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x550ba0f2 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x63af3515 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7b1e3e5b nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7d53f0c8 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x87ba473b nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe5d061e9 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec755322 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xefa90dc0 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x2d843d54 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe3575362 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x3e503433 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x115a9b19 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x19694809 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cbda86c nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x24fcc16c nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x328e4a7d nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3b3a14e4 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5dc53351 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5f1b444a nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x614e6eaa nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x68042c85 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c1fd27f nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x749f3484 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7573d1f9 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79d8cc37 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x80cc773e nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8bca45ad nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91463256 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x95959ef8 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9a85c5a7 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9c4e5031 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa142bed2 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb4d35288 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcaf9199d nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf5831b3a nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf662fac2 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfdfcd3a2 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x3a546ac2 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2fbdbbe5 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe11fa761 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d1961f3 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e4dd99d ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e1f87dd ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x24d27aef ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2f94c7be ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x37b78b51 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x403052a0 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x61000827 ubi_open_volume_path -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 0x884cc7db ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1ea974e ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa77722c5 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xadf0bfa8 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfc2bb591 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe7f31e9 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5ad15c4f arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdd42ee75 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x202d26f7 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x28ef35a2 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3f50221e unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x60a29dcf register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x625632f2 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa4356510 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4d8dc263 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaca98793 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xde0f01d4 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf1df32a6 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02323427 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0c80f1c4 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x13757d03 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2271d68d can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x27dfe326 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2808d2de free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2a13d9d6 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2eed41e4 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x32e8e5af can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4a5d98c9 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x546e0b68 can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62494783 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67439bbd alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70a26a65 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71b6245c can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x977cb04a unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad318d3b can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbb0e1ac4 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc02fb611 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcaa08a6e can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb636243 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5efed8e can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6764450 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd9aa0d1e alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xedcedb14 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf15f97d5 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5cdec84a m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a2673da m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7f5f527d m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x912500b2 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9f64c4ca m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa2c58f11 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdbc78a9c m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xff895e84 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa35d1e48 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc1f29d40 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcac2f005 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd3f828c6 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x65708fd5 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x38992cec ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4efdc525 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x525295ea ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x96d63ec1 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb072b6a9 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb3c589f7 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6add3ff ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb9da98bd ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc61eeb2 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc067ebd8 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc31287d7 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc36c751a ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd25272e2 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdb3a1255 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xde357908 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf4caabf0 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf4d622ee ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0076d4ac rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x26ab24b9 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x55d2fea3 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x62881e42 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6d6b27cc rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x783082d2 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x786de08d rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x89313248 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9740f521 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9936c58c rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9c76d470 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa2e5039c rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbb9eaf90 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc69cbdc9 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe97c11e9 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf96f20ce rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x005ae347 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0456b954 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05610590 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05fc4af4 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08797ddf mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e4dd1e mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a1faeeb mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cdc8987 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6f34ad mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1208c065 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14198133 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14511643 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cc077d mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18ed0103 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a53d8da mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x215ddbae mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2247c686 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b43baa mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26ac86c4 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28654b20 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x297f1c2a mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bac74ed mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3015a478 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3102e9fe mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3178e5f7 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f6e7cf mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x338d90e3 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3555afc7 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x376892f7 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3937e86e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a438e81 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d244e17 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f719a9e mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40cf864c mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47873c5d mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48d0acf5 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49e770ed mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49ec0ebb mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a300399 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a789698 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac9cd6c mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d13f285 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4de0fb77 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dfe212a mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513c8739 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517fba87 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55a7616c mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56da23e7 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59716de6 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d1ee809 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x608b3647 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69dc8a7d mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a31271a mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a716450 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7a5ce2 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x700ddcf6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72010f46 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x725eacda mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fd9b19 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76df88cc mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c602d7 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77fac348 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e39ec12 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ebfe1ec mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x818e96af mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83e2539c mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841d0b33 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84382532 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8470b88b mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b3516d mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882fbac8 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf966f6 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db670aa mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91dcb597 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92fd0428 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93259906 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94bf4fee mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97776076 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98fb5f73 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a853423 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c965e1d mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f1fddfe mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa056be0d mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0da75fd mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49b5342 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa59f84d2 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5a9b413 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa69ff2ae __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad49c303 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae05f41e mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae4af121 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae66c207 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2d32fd mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3fe108e mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f2ff26 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5e1ee6b mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8e98217 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcea2869 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6d5a26 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe550538 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc067f50d mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc296f6d9 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5deaf3b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc801d8fc mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc84a0afc mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8690ef7 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc96301ae mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcab31526 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb74bf04 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc6d4129 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd020179e mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd36acf7e mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c0f7d6 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda103a69 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf083fde mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe46e9389 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe476d86c mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe677c6dd mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe68eaefa mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebaec4ae mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe1376c mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07badd5 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5de2eb4 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc6ec4fb mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdcc6d3f mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff8a1935 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x007592bd mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00a78310 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03f13717 mlx5_query_port_vl_hw_cap -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 0x08b8e733 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9030fc mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed4e9b6 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f18e731 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138489e1 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14eaf32c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x179fad27 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1950b074 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a9e61b mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb89b4c mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e651ecf mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21a979ad mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28672273 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e370bb4 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31691cad mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38fd1929 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de46b8f mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef19b94 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b63208 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4860be68 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ae7fad6 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d905edd mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506c2f12 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f4004f mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5733fe78 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x587ecf71 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4b3b3c mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x606fc152 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a8cec2 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f9f903 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ac3e8ac mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ce0bfd7 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d7486fd mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f7160c mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7432d49d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75d70c9a mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76472b01 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d000395 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d5ca0ef mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e615105 mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83b724ec mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8400b009 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8411a47d mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9086191c mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ebb777 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965bf0fe mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b45cc9 mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdfa941 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec495b0 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1fc5c0d mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3721fb3 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa46d67e mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaace1164 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabb1e1be mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacc14001 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeb9efe3 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0ae6184 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0e25fe9 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2006d65 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2f59bc9 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4df8a73 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5970116 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb66e8d0e mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70ea94a mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e270d9 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc35e90 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc62da0ee mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc71621b4 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde1dfa6 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd540bd84 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd756f21a mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6ae6c6 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6d735f6 mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe893d2d8 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea8ca6db mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb3b073 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0325982 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a4a63a mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94db156 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa33d2a0 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeccbc2d mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff595d1f mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x68df3a0a 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/stmicro/stmmac/stmmac 0x25d52597 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6a17b4c8 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 0x96890b83 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9b347e92 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x064d2e3a stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4f207b96 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x655adb6e stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x74196ad4 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xba19b370 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x115c3c0e w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x436e6287 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7195c91d w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8cdf9c6d w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x6b145e83 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x36e7937f ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8713d802 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb5acd68f ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd8b45974 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xde1b2d43 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x43e7b203 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x831d0916 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x91433cf8 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x943b40e2 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x329f076b net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x80d9c464 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3069550e bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31331e2b bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39c6d239 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43bb34c0 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f0609d1 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a15c8bb bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64eec4b0 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x770dacb5 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x793e437f bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e630bd9 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9fc421d bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa436733 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xabc668aa bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf8abf55 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2e68759 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebeaf03a bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf53b244a bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf92b3be8 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x1e53cd97 mdio_i2c_alloc -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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7b40d91e phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb06be32a phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd5ceb5e7 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -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 0xf816fcae phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x0e8097c2 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x52aed4fd tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x5b73973f tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x709a0c82 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x88fb4814 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xb92d9bac tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xd2381c9d tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xdd007588 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xed5234b1 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x47efd78a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x50125b22 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x92a9f86f usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xca74aefd usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdbdd800d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x14cd990a cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3c47dde3 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4d1e050e cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6ac581b0 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa0189049 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa8bbbf31 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xafd13a8a cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb25580bb cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2790ee8 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4808b3e7 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4c4bb03f rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c873dba rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xab3ce3cf generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc5abb891 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf225a58e rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09be03dc usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1132054c usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13f433cf usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1753c8ce usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c2bef66 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34b8d56e usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c043394 usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58637c71 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60cc0725 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x620dd5e5 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6430d582 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7952d41b usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86dcf1f7 usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88be0e05 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ae10d30 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91b244ea usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x958dff58 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96ff15c2 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0dab712 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3a3365b usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabc1b81d usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf8cdb8f usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba32a759 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe690bbd usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfcf7a91 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc74ade3d usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7e86155 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce948f2f usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd54569df usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf793e77 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe791bcf8 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe86847e9 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf50df593 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2056838b vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb18310e3 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb2d65a4d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xbe5f1435 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x09c368f0 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x14001a08 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x20a81922 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x281e981e i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2c1828cc i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x334ac30d i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x56087738 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x62254c6c i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6d20f977 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x86d99100 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8bf89e6a i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8df214bd i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x91258498 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc4f70d6c i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcb7883e5 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe495477c i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x76a404c9 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eb44396 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54ef200e il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f32cb3e il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4d968fa _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5309129 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04fa0c66 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0775a631 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a41cf7b iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0ccbaad4 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e6adf73 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f16542f iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b2e9457 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32d5e4e2 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x349b1e2c iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x364f4892 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36537942 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c92c491 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b697c6c __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d77c1a7 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f2aa6f3 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51248d26 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x558fd95e iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55c59af6 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d8603e3 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef7c8e5 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61e3c389 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67c051ed iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b5429c1 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d514c2c iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7150e625 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72d6e666 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75c4f74e iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x783bcae9 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x817a71ab iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x837cf496 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x856328a3 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a8ffc54 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e64da5a iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92a58fb7 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96f3d26b iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98d15b04 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b25f0de iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa11fbe3f iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3f6cc3c iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6b85811 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xadc7cd39 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0c3651a iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb714435c iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbda6e58b iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1c26c88 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc47dcba8 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6675024 iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7b8c5e7 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb2c2575 _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb308c8b iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf4c9c6e iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf58f9ac iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1875ac8 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4bfb201 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3ed73d4 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefd842ea iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1602626 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf414fab4 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf571d3c4 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x062e2027 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x55949770 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x72ebf7cf p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7f57b1c1 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8be61779 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb0d99467 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdf980266 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe26464e6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf9fcc856 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x09eb3cb6 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24bb0baf lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x332ba505 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3a3a897f lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56c3b37e __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d21b34c lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x69951dcc lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6b343140 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8c1704fe lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90702b20 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2e9298c lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa59ea373 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1eb0ca5 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbece5532 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xee43ea65 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf28ed241 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x053281e5 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4591dcff lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x46f650fb lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5504d86d lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb123c4f1 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb33d142f lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd9557a08 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf1be1d8a lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0e7b8223 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1765a0b9 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x17b969fa mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a44adc1 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e3c198e mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x364c861b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x396200be mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44d5fc5a mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b8c330d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51ca18fd mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5dcd1cd4 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x63f049db mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x789f75e5 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9502265b mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x95283632 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x99759d93 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbfc44215 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc308ae2f mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc576bd18 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdab85338 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8b24381 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0e862d9 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfc1048bb mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfec65b35 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05a76672 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07b0dc4b mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07cfb5ed mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x121b263b mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1aaf1317 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38d40d0b mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c9d33c4 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3efabaa1 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41080235 mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x429fd4f7 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43d9d84f __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b374f29 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51f7e321 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x545e7385 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56377183 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62a2b36e mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62ef0b8c mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6678c9e0 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x698f0352 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7957c0d5 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7da07f4c mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e5ba5c5 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x836fbd72 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9325f6e8 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9758c35d mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e164a07 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa46e50fc mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa894bf88 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa3d5c4c mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa71aaa2 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabbfccde mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0b1f2f6 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb160c198 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb240341d mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8dd2c82 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb76a3ad mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0731b52 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc090e0a9 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xced9b5df mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd031ab24 mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd06aeadb mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3fd40c9 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd576129b mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd0c115a mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfce3788 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe211bf93 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe42f0dc5 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb2d9e88 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf356e6be mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4c98e2e mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeb37dec mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff650ace mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff847b29 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x107cc5d0 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2e4ca2e0 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x401027df mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x578dd04f mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x617d508a mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7ef4e698 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd3638438 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf1312974 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x27acde58 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2a53c5c4 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x49ea0da8 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7dbf47f0 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa8d2f5b4 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbbe80950 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd107f3bb mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12f044f4 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13d202e3 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1464e8ca mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17bf0198 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c1237c2 mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22f35c14 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x242fb289 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26cdd24c mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33061d14 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x355b6d8d mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38d7142e mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4824e2f7 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d14ef70 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4dbae502 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x567d4d28 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56d56d4e mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58e91845 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd0be29 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66195409 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66e56c95 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a688a7e mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f8a162f mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75003796 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77201129 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x840753fe mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x870f7056 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8adc35b0 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92c18d22 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9497be48 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96002cc3 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96a7cb36 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ab9c13f mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ce36bf6 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ed1b564 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa435ae4d mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab5ad0e3 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab6190fb mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb061616a mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb332e008 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb50187ea mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb53df293 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb784a25f mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbda0c62c mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe2802df mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfefedeb mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc31730d2 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc43ea2ad mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcca4e160 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd15bce2e mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5177d2e mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd90a0260 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd99f0297 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9ebe880 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe497d62c mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4c544a4 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed85736a mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf36c2052 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3a3ad8a mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6cce632 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf87628d2 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa067d2e mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa53070f mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc44e663 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0a3cec5e mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x511862de mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x606b05bd mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x821af6e9 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbab514aa mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc118eed3 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcc52a308 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x161ad38b mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x20b827e2 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x244db2c7 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2f7bd1f2 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x45d4b5ad mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x67829f28 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x79db4f4c mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ac9debf mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9dc04899 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9f903d2f mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa4a86bcf mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac2c8c19 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaf2df0c5 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbbe55c4b mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca6c6e65 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd515cf8a mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7fa16df mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd89f1ff3 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe437d914 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x035830fb qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31ab8bff qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x43a66753 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5231a55a qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x711b5655 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8b74cd59 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xadcf4ae4 qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc947ea6a qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd225a778 qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02b9d0ca rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x070cee21 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10ea51be rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x138b56ce rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x192205c9 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1932351b rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f9eb37b rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x225809df rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29ba87c3 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f25cd2a rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4050b7d5 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40cb0364 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41e0b557 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42342104 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4492341f rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x451ac161 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x499fdc8b rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5155829e rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x586d8c2f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x587c16b4 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5bb1b6db rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5beee88c rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d2a2708 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5fc4a5f6 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6869cfce rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bb806dd rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d823e85 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ea2eee4 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e311fc7 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9603c043 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1bddf13 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5b37f1f rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8e3b7ce rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8ffdba3 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xabbb1a59 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf03398a rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb34c54e3 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6c47fc0 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9194e84 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0aacdb5 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3d1afe0 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd91ea46f rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe35271ad rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee4959bf rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x40a8889c rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x411e4ee9 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x43abf04b rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x48ac15d2 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x52e4fa0e rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5f4734e3 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x70cb44f1 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x74a7bb33 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8153d288 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x82c46c9d rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92288a81 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c1e28e0 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9e7a181c rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa4e83094 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae723222 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe047b6e9 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02142a02 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x062c8bb0 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08e323e6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c92bb3b rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ca31e54 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e3455f1 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1fb5a293 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x278ac430 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3048ca1d rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x346bd136 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x492e4074 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4af36a9c rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4dabdf18 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56ec3d64 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5956dfd1 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5dbfbe9e rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x606861a4 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6495e0c1 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a4ad244 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71278c40 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a42ceff rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d9c3b13 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x804dd7b7 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ee2a035 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x99c62e9d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a4249f7 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b591c97 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f1de541 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa81d0c95 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8221160 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaab31286 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf1883d8 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe487c93 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0fd9c3b rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc375a55e rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd274b062 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd29ec6ce rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2b1727d rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd59e5e51 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddf5443c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfa3acaf rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2740a3c rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeafb07f3 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec4e983f rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf78d7132 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb321337 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x095c0060 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x75f9c79b rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xadaaee73 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe5bfc1bf rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xeff66719 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0d9c16bc rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x358fc971 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x63564c93 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xcfd5e417 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x02348cad rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x239ab772 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x24b4c507 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2a43e400 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2db45c10 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x365f59c5 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x421a300f rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4d21d5d8 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x543e1d09 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8b3347d8 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8bfceaac rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbf9c4a30 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdac9b037 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe1f773ba rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4bf8a1a rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfbcb5ef5 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51d1abec dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86bb5594 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1bd2cc1 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc99674bc dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x198f436c rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2577567a rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x307e9053 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 0x51e5e020 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x542af7ff rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58563cb9 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64cbca1f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68d29f92 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f47bc85 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82f6d141 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89fccf27 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8cd87f20 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e2665ad rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9437b7c3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x95bdbf96 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96fc69a2 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9f5f26db rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa965e317 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb21eaeee rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2cbfdb1 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbcd8eaf9 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2d441b3 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe32d130b rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4890de1 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf515ed9a rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ed79afb rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2adc3797 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 0x31e20938 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x490951b1 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49a1a888 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cc72633 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51e1940e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58746a4c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59bf5cc9 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f1a4aec rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61c9523d rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x673a16b4 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67e60ed7 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c3a6224 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95e8e9a2 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c6e0046 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabd20ca8 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1b109cc rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbfcbd30 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcce61839 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf6bfaaf rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8f649b2 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6c246b0 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa15d566 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe284029 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3a99878d rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x723c98fb rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd1558e3e rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe891e82d rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xee48baa6 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2480ca29 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4fc53aa6 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb6d16cbd cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfd93c1c4 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2b09f1fb wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xac119394 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdbefaee6 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x057b208b wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ac1ceda wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1166ccb5 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1338dd3a wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1bb290f9 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x239fdf27 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24242486 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x327c6d01 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38c0c8a4 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3eaaffc4 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e9480f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4502ac72 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d1a1d83 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64a427ef wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ba9c93b wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7118f9fd wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77426e1c wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79176152 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8044059e wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81000efa wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x882902f1 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x888b92ba wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8941cea7 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b92753f wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92032388 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c18e1f5 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c6d026b wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad5fb1f1 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xadb8cfda wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2d1a7b1 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf5e5f05 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc87dfea7 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf1bdc99 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd62409ef wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7dfa6fd wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdab0610d wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb9a2274 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcbae4d1 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf25d7f4 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee6e3915 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf77054b2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc744eff wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfffddd10 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x29aad15c mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x587ab4bf nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xefa6a8e1 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x25afeb43 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8e00c2a1 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xac7aa17a nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd9405f71 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x58620c21 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e5ed30a pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xabd51c67 pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc68f7e4a pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1aef2537 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3c5cadb7 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x48072001 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x81beef7e st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8333ca64 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa2f96036 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xce46b7f5 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5dc88ca st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3b099513 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9fefdd20 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa503b8d5 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 0x5f94ce2a ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb109df80 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 0xf19b9082 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 0x7c530296 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xb9c2a340 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c708f6d nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ee090ed nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x201a81cc nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x240f38ed nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27bc5013 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36c05de2 nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c2fb8f7 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3dd0fd27 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41bc1b3e nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f7e5d0d nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x523d3080 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59b2e9a0 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c9c83f5 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5fde0565 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5fffb0fa nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x697c2426 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b9e9c06 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8350ec17 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83eb6ada nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b7ddf2a nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c215289 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c6bd62c nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9205245f nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9af6f941 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fcdc9ea nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa27870b2 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae48007f nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9c9f34f nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf1b6948 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0f1b248 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1a6f7e7 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9c280af nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6aeef52 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda9f7818 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf75c48fd nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf912e934 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa7d7db2 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfff3951f nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1853cc6f nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1cb2245d nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2648270f nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x43a74b7c nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5a5a2917 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7f6ed1cc nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa8b219f6 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb0ec9e80 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc54811a3 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc8955fdd nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd5add533 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe01c7a4b __nvmf_check_ready -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 0x6dc467d1 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 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2cc6436d nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x496e56e6 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b042f96 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7175a6be nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x79e4c6b0 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7c7c4280 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7e6d1825 nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x93d9cf25 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb1fb5b91 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd628cddf nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf08eea90 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -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 0xd409247d 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 0x2377a85c switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x04f146d4 intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x540ce65e intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xaa5683ff intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xb0965d67 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x00e8242d wilco_ec_mailbox -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x213310cd wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xac18d1ae wilco_ec_get_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xebffcef3 wilco_ec_get_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xee1f3a0b wilco_ec_set_property -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1dae4cfc asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xbaaff4e5 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1089775c dell_smbios_call_filter -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x2f4ad1e6 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf2e3b700 dell_smbios_unregister_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x6898d1bd isst_if_cdev_register -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 0xca5a64ff isst_if_get_pci_dev -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1c7565c2 telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig -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 0x21eef3ae wmidev_block_query -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x312dcc24 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa7c03376 set_required_buffer_size -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2927d20c bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3cf8425f bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4225abb5 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1d6d4898 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbdf80039 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xcc0c09f2 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x4d13b77d rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x5e8cb397 rapl_remove_platform_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x8855938b rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xba46f194 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xdbd8a8af rapl_add_platform_domain -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x132fe144 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5d114c51 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb33e5a7f mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x668d76e0 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7052ae8f wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7a94da47 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x873a185b wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8ba605bc wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd19e00d7 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0ed29ab2 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x42d0c7b1 qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11b549ac cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13fdad5b cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x160258c9 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x188bb988 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f223b12 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fd40700 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2dfed553 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x352f7a47 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38fb4007 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41458829 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4686831d cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cc0a7ce cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55a91f4d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67545249 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x688ba640 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c599fc1 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cb3a72d cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d83eabb cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f63980f cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70a15073 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x720cf2fc cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73e75a89 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x752a0a06 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75c8a567 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77f0d043 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79d1aeac cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c435869 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7db7a94c cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8091cb1e cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84a2a4f1 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x893d07d6 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9179ee4c cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9337d8ce cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b466f72 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cb04cf1 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0cdef35 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5ee614e cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9762e6a cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9a4ef45 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabe9cd99 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc220d192 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc73a1dd0 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1c6648a cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf439716 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x115c0e4d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ddd66d6 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x448c93b6 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4950528f fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49947d0f fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x573268d1 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69a48e83 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7210fb45 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92a4d1b5 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x957b31bd __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x99bab809 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9cade66f fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa2d63936 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbf5e5a34 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc379778c fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcbb39f3b fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2c77d795 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9ac3a658 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x22bbc44b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02673e1d iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dde4b73 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fe4d630 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2775804a iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x285f5cc8 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2acf2906 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2df0e73a iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x310dde22 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33a16223 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x358d9ef0 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41242829 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45b08237 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49383f34 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5054d858 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66fb6d1f iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7435f8ef iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x769741ce iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7840ca74 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78e6f12a iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d07a876 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa0fbe1 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b71b679 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cdea1c4 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e8d0db0 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa450100b iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa72d8931 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad6509c0 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadafd96c iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae215d28 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb26711c4 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb99873b2 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2a290dd iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd595c3d7 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8746b4b iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdaa40eeb iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcf2d7df iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedfd9355 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0a30949 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf672ef59 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9122ade iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd7de260 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff85c26f iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x02f70a21 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e9b80d6 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1236a35d iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14e74d4d iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15aa9b20 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a1c5ef8 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x237b21d3 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x265bf971 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f1f484f iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e79e7c9 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72188a62 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x828194aa iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x848e34a2 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1ca9b37 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaac216a5 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb087b916 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec8482b2 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01a85eaf sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b2dbbdb sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12c5dc2c sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x191b7776 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f51eac9 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x371313cd sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x378de3a7 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50246e69 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b4f6cca sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64ab8be4 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x787f0444 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92fb3ae4 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95ae02d3 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa167c7ed sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3335534 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa77d2e9b sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7d1a9d9 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca2c3b2e sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd576526c sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2434e76 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef8fd420 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf36e8f4a dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff8449e1 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffd4887f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07b403b1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x106f52d0 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cca5bef iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x231d3dd9 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30ae2886 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x332bc378 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36491739 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3be99ebd iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e9ef769 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3efb9132 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f4e9867 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47568904 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b4c8d57 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fb0f749 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5269a253 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54e647f6 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x560ab6d2 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56dc1e6f iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5985ebb0 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a064d77 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68078d2d iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68ddca98 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70e665a1 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b89876a iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c37c39d iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x955f6b78 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b6a8ce6 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c68551f iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbf16ff3 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd49ba109 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd1c60ec iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd4e81f2 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddcda26c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe919127b iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeac05d55 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1fb7493 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf692fa94 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8828040 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffa4f16b iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x18b6935b sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x60518405 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf7141b29 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfc9e9a7b sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb4735e33 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x26d9c149 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2ff2c97e srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x75a6ee0f srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa092cd98 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc31c4329 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd56145ae srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x158d34d0 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x309bed5a ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4dd89e6b ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8618bf1c ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x90f0cb1b ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb0b57fc3 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb3f4f497 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xebca1c3e ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfc84fa4c ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0cb346a5 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1c25ff4e ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x45a3b3e8 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5de38932 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6597ffa8 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x84edf38f ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb72c2316 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x15a16904 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x51d20b80 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa7256226 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc1770677 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdbc1b84c __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf82076b3 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x062c81a8 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18581f83 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b4b32a6 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d098a09 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2107841e slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x214f27f5 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x225c81b5 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30856c97 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34a64032 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56796a09 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6f5d31b9 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x773a0454 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79406d31 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b28a66d slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x950b8b2d slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x958fd125 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96c81e09 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa40a0bad __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa90d1abe slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa9790571 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc971b02d slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde08a686 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdf54936a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe07b7ec9 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf0c1c3ce slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd138ea2 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x148466b3 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x436fe133 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x49370187 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x4c5a1c61 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07f34be4 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1d11f1ab spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3438bc84 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3e3c0c24 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4c09e9f7 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2fba7b1 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x11a6409a dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x604ddff9 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6256dc26 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x937992dc dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9fb3ed12 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x713ee401 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb320dfac spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf17a745c spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b8cee3f spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x449ae0c2 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x50619eb6 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x550dfbea spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62ce4fd9 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9265b493 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9d72bc2c spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa26b7824 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5a4fb1a spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb86221df spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb358850 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfe17626 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd896347d spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xda9a166a spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdded79bd spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5af8e39 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe5f936fa spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5fef3c8 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x9c7b58fa ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x06b08f68 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d9d0616 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x193cd1fa comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x39b721ac comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x413638cc comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x46489ea9 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x46b8b9d2 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4b0f7461 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x63714f43 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x659ef70b comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x66d6f8ce comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6daf6cba comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6dfcb599 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7312a3e6 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7b8f3d91 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7c7e2211 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7d3ddcd8 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x87bcdde0 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8d9eba48 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dcf59d5 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x957535a9 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96edf0d4 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97cb473a comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9d66c425 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ecdbeac comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0d4a4ec comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac254279 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb259cb5f comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb36812df comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb87496da comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xca435309 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcddbcb58 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcfbb6e5b comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe6653b17 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf52e89ef comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6bb7b41 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1d848c60 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28c73f76 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x36b57503 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4e4b88fd comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x52c8434d comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5ad96ace comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8ed5fa65 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf6a285c8 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7c4641b4 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x7ecff373 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xad0f2d0c comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe005354d comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xe93d89ba comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xee66dddf comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf7830001 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x05ca5ac9 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1cabc906 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x291b9479 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5f7d7559 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8a0235c7 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbce9bbe0 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xdb733c6a addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xbc9413f6 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xfe5ee192 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xe7f26c4b amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x359f8c51 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7c411df1 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x82319529 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x823e7c00 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x84118c38 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x900fdc01 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9a761b0e comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9d512137 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaeb1d338 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbc34c55d comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc9c877f8 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd5bbaabc comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdd394cf7 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8d2cae3f subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9a494484 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd18f1c85 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x05c1f301 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xa1f1dccb comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xef156be4 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x1c7cf4cb das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0aef9319 mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2001fa83 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x20a41402 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2242f994 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3bdd35e3 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4019f4b1 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x49467c5e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5dfb1ea8 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x613747ff mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6401d5a9 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x81588ea2 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9201f4c4 mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x99ed4702 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb58823fd mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe993150e mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf9c893d8 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1b7089b2 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xdadf0d58 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x033c3017 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0dcc4487 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4c28fd3c labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6b3054e3 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc57d9b1d labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x25ce9484 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x300be184 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x374d4968 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x38c27dc8 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x44576132 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x593794e6 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5e6e0af8 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x60d85831 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x68046b46 ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x81dded9e ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9a3374eb ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa587ca62 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa79216b7 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa9d77236 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf65e2b61 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfeb186e9 ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x50549284 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5c313f9b ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x946a79da ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9e7ff54d ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe767d2e5 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe9311533 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x02293e58 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x15d84120 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4df0549f comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd432d32e comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe4ff4887 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf4b520be comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf81928dc comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x1d9e58cc fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd5008216 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd5e2ae62 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe55b8bc0 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x02782f76 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1870ebd7 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3730c99b gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x37868c56 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x40db92bc gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4a28c876 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5100655b gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x741c9b18 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x81b8c16d gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xabddfc68 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb400af72 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd23003b2 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf72cfdf1 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3dbce25b gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x43a3e853 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x453ef805 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x52ce1185 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa9e74341 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb66717c1 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xba35e400 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbd99e7d3 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbea5c3de gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc51bfd8d gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcb2dbe2d gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe42c777d gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe5b371ba gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x944132ea 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 0xe88d2704 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb97a3690 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xceea8afe gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1aa6f782 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x75e775af gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc9f7bcac adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x06272f92 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x096c5cdd gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x09df3066 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0eafa98c gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x49c81405 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x531c1956 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x66500c1c gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x683e7cb3 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x74b0913f gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7f8b8dc0 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x81742694 gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x891e34dd gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9cb161e6 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xaf77090c gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xbb58ae16 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe18b3461 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe34c338d gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x044e9d74 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0ec59700 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x259e5f26 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2861f3a6 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x40598a75 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4153c1ec most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x46fdb47c most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x56c1c496 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x61efc637 most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x8e17c681 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x95dc7a80 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x960abf58 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xacac44f6 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb9fa8772 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x086c3e71 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0a062bb3 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0b79b833 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1189868f spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2a951b8b synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3422064d spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x455e8b89 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x536baf14 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62ba5273 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x68996a8f spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x714072c3 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7836ced2 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9502c80b spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa28dcb9b spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcedf9688 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe63468f4 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf61f5b2e spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x63afe901 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x6dc516ca i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xa24cfeb9 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x05e2b216 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x29dac5a2 umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x9f13e57b umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xac89b367 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb6414fd0 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xcc981a86 umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xd2e3efce umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xf697389a umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x05dadc46 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d6f804b uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x24c9c346 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x26e422c6 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x26f538e7 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x320b9b29 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x33524c48 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3602e335 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3bc48aab uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x53728e27 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5d8d803f uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x610a2693 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x63dbecab uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6529cd73 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x66591fe8 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7f00e7b7 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7fb4ff9b uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x87787b87 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9333ce95 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9f2f6fd6 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9f405be4 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa14f77bb uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc6d59f93 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc8895864 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcf2ba436 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd3848483 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd57bb567 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdbe292ee uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdc8b7169 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe3e02f54 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe50e9762 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe9cf9184 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf12df103 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf18aca30 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf2e57f78 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf79a3116 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfeb7acaf uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0xa0e42062 whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x172f11b2 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x56a49627 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x8206ee69 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x92110b5f chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xcd958d7d wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xf13632fd wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xfeb14351 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x0597833b rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x17c070f3 __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x43d3663f wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xaf94da17 wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xb44f5ee1 wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xbfd32f12 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf0ee492a rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x05fc1d1c wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x0719a873 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x26ef57a4 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3c1a992e wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x51170d7f wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x625c6f0d wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x665d2119 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x76496a45 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x90ab98be wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xc7cc96d0 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xdfcdf0d0 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf7edf614 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf9be8db9 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xfd463deb wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x91e6bcf9 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xc3b5888d int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xf1509f0b int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x0c64a189 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x11d08fab intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa15751f1 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xb9070dad intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01356a9f tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x158a0c6a tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ff7a907 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b64e7c5 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42b10bc0 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x49025623 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50604af7 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a0ac148 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5fe90c31 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63ee6f6e tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x890754ad tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x93b21e7a tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa89e544c tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4552b7d tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc09dc16f tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda3a7e0f __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf5da3229 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf6008780 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x1cf6774e __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x554e7764 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8ef49d09 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7bce785b usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb1af72dd usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0f2a0349 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7a4bc925 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa0ac92b4 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1cd3916a ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x66f709bb ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb690476d ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe14e42b6 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf3c71e6a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf4a307b0 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2f7e59e2 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9d666e45 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbbe1d171 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdfe265cd u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf57a125c u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfd0f0622 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x049cef07 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1423b6f2 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1bdc6fce gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22e18181 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30729f92 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x591b65a5 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5eb505b9 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62155b6f gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x64e294e2 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73db7213 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa21189b3 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xda2dfdf0 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdf438e1d gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xecb05db4 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf476c4f1 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x03206cae gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6907b4f8 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbe9964ce gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6073722d ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9033e77f ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00ad4849 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0d2bbc87 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 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2a13ee9b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2be6186b fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x345de899 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 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ed93b0c fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69797e4e 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 0x75b1cdaf fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78df36b4 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x889b0a25 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x894a5bb8 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x91b5d464 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 0x966c33f3 fsg_store_removable -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 0xad7dfbb3 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2fd1d39 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee9d76d8 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_mass_storage 0xf8a902dc fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x04387922 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x34391cd0 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3603c6d1 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d75b3c6 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x679d2434 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x81927b2a rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85ec9f60 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8c4b829d rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d69c8a3 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f23b0f2 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa50fca36 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc671d72c rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd75ee5dc rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd9adefc1 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2373588 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0456e6ca usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x047adb06 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b1f91a4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x150f87dc usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2254f533 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b302c04 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3387667d usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x453bda7a usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45bcdc92 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x486df668 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x535bada0 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57416905 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5746dd7d usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ab27f40 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x628b6f43 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64ca129c usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x798b8448 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f69c884 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82909d2f usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x935060fc usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadd40e70 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb7be923 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2d77f3c usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd53fc697 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd9182cad usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdcfb7fa6 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea6e2ecc usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec41811f usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2451c4c usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7e00fd5 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7ec23a6 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x21f8193e init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x445cd464 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x44f0996c 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 0x6c635355 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x78b826e2 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x83983c21 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x83d110b9 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa6a8c74b udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc8e95f55 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e9ad267 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3e77cded usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fb26f13 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40fb4af9 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4361923c usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56d37991 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x678c934c usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a69f429 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6cfc3e4e usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x774f7e4f usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81a36504 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8de9e0f3 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x975c1e9a usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97a78589 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b74b1f7 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa16c76d8 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa3f983c2 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa1cfe10 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb469681c usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcae277bf usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd91228ab usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd83a3b5 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7d6dd32 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea96dd49 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9500db7 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x276208b2 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4ab7f43e ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x164459d7 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20a35260 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x27e6ab37 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5925a026 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x67c497cb usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x87902309 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa1490a71 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xacd050c4 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xff71562b usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2a3f7e64 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x61f4b467 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6d77330a musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd5582375 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x0be72dcd usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x351af361 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x79b81c10 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x99c645c3 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd624f12c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4d44e2fa isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x270dd2ec fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2c19f19a usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xe832b49d usb_role_switch_register -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x10a10538 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04b65c45 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15779511 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15aa72a2 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b7e43b3 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x415865ac usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41d2ac1e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45f267fd usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4cdf8f02 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4dafdfe6 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5157ff06 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55e8a459 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62d2328c usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f3e0d61 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ea49fb8 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89634793 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9271f408 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93316397 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb41aac65 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe4a57f7 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcca9944b usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf02c7c15 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1328e738 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x55a51ea4 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x9a9f8832 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_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 0x93707080 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/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0886de49 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12741bfa typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21ad01f9 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30512fd6 typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x343edfe7 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4641ffb7 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b23185a typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x505a650b typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x52fc55c8 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e12f2c9 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7415717f typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d0c97ac __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d89f017 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e9483dc typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9381c9db typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x954b2c88 typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98f0d6dd typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99ae5902 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0dc274e typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6783635 typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6d99d58 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8eead10 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4497aed typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3c90391 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc6dce918 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfc0c7fd typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea786175 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeaf1f86c typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed0890f8 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf039a4d5 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf21a86ae typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e17b00 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x285d77eb ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4e8343f2 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6c59e1de ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc63aebbe ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xed9b5903 ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0788f096 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1e32a376 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x265ecf58 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x26dab009 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x39ac11c2 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ec615ab dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4423c71b usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x589ec987 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x690bc309 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x892a71ea usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcd66cd7f 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 0xd9b9931b usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8058204 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xda78dcb4 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09f4bfc8 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0afeeaaf vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e001b1a vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1213d7aa vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x177c8ffa vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a3ba862 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x252b164f vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2745ad41 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2dea656a vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2dfe8f3b vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2faf286f vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a4dcb89 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bed973f vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43d0e8c5 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a52e791 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb416f5 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x542112aa vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56011f11 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x566ad7a3 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e2d18be vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60a55fba vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77188c0c vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84214f21 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85aa6883 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92551fb3 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x926355d8 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93cc76b1 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa376ad93 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad66a61a vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadca9e39 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc04d553b vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9e0730c vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0714e4f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5503fac vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6649f7f vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb2daa88 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeee0444f vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfae06a08 vhost_vring_ioctl -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 0x1325ca26 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x15507078 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x67091dd7 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x70786c6d ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x794a3308 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc410b84e ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfd8b146e ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2760f4ec fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd946788a fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xdbbb57e7 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2724dee0 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe82e6bd9 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xeb2e6844 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x174a50e4 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4ea9753d visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x9a702503 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xe8a15855 visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xec3e5000 visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xf4967867 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/w1/wire 0x09a33e79 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x39da0510 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3e7fba65 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5559b27e w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x677106df w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6bff0577 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6edfb42c w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7a13465e w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8b5119ab w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc7282b83 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf1afd4ad w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x088ade5f xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x45ca2a61 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x7de83dfc xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x88a10ba5 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8b11f0c3 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x90a7c742 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xf8c410ea xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x091b4dac dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x10fbe97b dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x14d53a46 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x06407eb9 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x166936f2 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2932fc7a nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7217484d nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x98a8fe7e nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf5841d9 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf7811b0c nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x012cb317 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x020ab60f put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x021df2fa nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02f8d328 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03214afa nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0651241e nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e88d72 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076e8415 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ade5ef6 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c433e31 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e803000 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f516695 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fe5c782 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15264755 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15dcd3e8 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1881cf0c nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7e03cf nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b872372 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be37f22 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d8827b4 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e51df2 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23f1fc3a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x243e93da nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28523791 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c0c384b nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c45ca07 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8840e3 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30e73532 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x321249f3 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3670fdb1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3708968e register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37245b9d nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x397decd8 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a764f85 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cd13d73 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d099ab7 nfs_server_remove_lists -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 0x44757776 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ad9ec5 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4703c5fb nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a7b8a80 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c2302f9 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5275d289 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57b3bb35 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58371c2a nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5871149e nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c540e5a nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65b208b6 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a9f1062 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b0ec71a nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b381441 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b7c0b75 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bdb7f42 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e00fc2d nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1a1ff5 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x746e0ec6 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x753bfbf1 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76230db4 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x768e8620 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7882dc08 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a886868 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d0d5154 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7de86001 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7edc1835 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa06a3e nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8238f542 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8423c254 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x884a45c1 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886c9955 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88768a98 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a7c906a nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b04eb67 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7b2013 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb3dc35 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d43c5c8 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f16b6c7 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f9ef1b4 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fb37f93 nfs_flock -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 0x9642f8f6 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a13a31 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x974f3be9 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a0d1573 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aa5e879 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ba5ebd5 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0ccd698 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa367dc2f nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5137fa3 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa52b6c41 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a3d130 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa632a9d2 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa38eb10 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab487d3 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac07be6c nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1050c9a nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb27841bf nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5e67d3d nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd1e314 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbf5583e nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc88c43c nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd87eb0 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0280299 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc527830e nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc61ad7c2 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8883666 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb2f27d2 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccd75d71 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7f4d25 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd14878da nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd625f7d6 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7bbd3fd nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb915d84 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdde0e3f7 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde1155e5 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf4681d8 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2341b05 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e3695b unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe42af898 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe691cb3e nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8f5f34f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe1e2c9 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee333798 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef875768 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0533d8f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38769ab nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ca0ff4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf67e9fa2 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8304e74 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ff842a nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa54f08a nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde45d4b nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5f1eaafa nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05201ddc pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06c5b508 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083aa13b pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x102922c4 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15fb4cc5 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c01a994 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fee9e68 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x339ddc0f pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x348e6f6a nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371251e4 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39303512 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c36e9b0 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c41a96e nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4218600b nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4344deda nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x440edf88 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4517bf7f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46ef2fb5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x476646f6 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49ffba57 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fa397a8 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5415d997 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x576bf08d nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58441cd0 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64348488 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65de5191 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65e71e48 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f35b2b pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78fa8bb5 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a337430 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ccd18cc pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x830b0e6e pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8620610d pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8db0ad74 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eedb0b3 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9838a410 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x992956d2 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fa5841f nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fc77a48 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa93ed593 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa97b4963 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab9ecdc4 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac0e2d78 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaefbf771 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb373a8b2 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba188240 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc60e0f47 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca61a839 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcef577b1 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf37bccb pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd258339a pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd80cc8ca nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec55bacb nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf27cded8 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2ed7431 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5beafc7 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7393f3c pnfs_update_layout -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 0xfa835de0 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcf3159f nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9bfed30b locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc25026bf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe323692a opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4f87940d nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x98f3b0d4 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x17d6877b o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4488e768 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 0x5b1021d5 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7227b109 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 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd0c20d40 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdfc77049 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf8c369f9 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0ef91385 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x11e58283 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4ddc8753 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7afeb94 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 0xe0106cd2 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfc69c7d5 dlm_unregister_domain -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 0x165e7b48 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3feb18a1 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa93c9ec3 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe3944fbe ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8080c5bd torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xca12fb2f _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xceb25342 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch -EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x363a5fd4 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xbb7db6f9 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x58672591 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfa625147 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x7494629a garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xbdd74908 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xc2408127 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xd0566b4e garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe58d10aa garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xef82b40f garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x131582e3 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1f52312c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x28eab69b mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x41d21f30 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc58110b4 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xf7797337 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x124c0e4f stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xd6306e91 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x293a246f p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x649be409 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 0x6b31c07b 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 0x1a90e743 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7ad3e851 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f418e3b l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xce94b481 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcfc5c144 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd652e9d1 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf405c972 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf54ece97 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x729122c6 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x178d65d1 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x31ad7ad2 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x33de4ce3 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34632773 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a94b78c br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b61923e br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f9f7a9c br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x62012277 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x673fa232 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89b79fb7 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x937996ab br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa4a8ad87 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa6703ffb br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa869db0d br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0e3e78a br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd0826ff1 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6ea8834 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xec010a78 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/core/failover 0x997b6d43 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xe4fae771 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xe72e3c07 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d35b45f dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14e312df dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14e7dc3b dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182a95d1 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x186d5872 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1aee16c7 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20a76f52 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21f607c0 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39bf5443 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a6d1379 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f8522e6 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x440516a2 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x45b6fb56 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a4b62bb compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e6be82f dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x508e64a2 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d947fb dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d8fae15 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68f20233 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x747b706a dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78d247cf dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x988624cc dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7b11bf5 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4c5fc51 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd21fc52 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc376e196 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9669a74 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbd52f75 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce9a3308 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe196e097 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1156f7d dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6887c55 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfecb04f7 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0b2c5832 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x17d2f860 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x38cd7347 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb85ec6b2 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe174c2fa dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe9f53494 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00f2bc7e dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05343bf3 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x110c1c63 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x166eeab1 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x223906ed dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41c61d8a dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51d6e396 dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55669b5b dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x58058133 dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c1fdcb4 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x639a7dee dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76c3f3bc dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a8f2c25 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x914d62dc call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e7bd6ee dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xae1e1ccc dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc14683a4 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd760ef64 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0289829 dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf53d783c dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9681d3c dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x360e389a dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x622d1752 dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x7851af9e dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x790775c5 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x14b5ccb7 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x29f13b5d ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x599a0246 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe72a8754 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x06cf7424 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0x37f8b2f7 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 0x47526580 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc1d65bf7 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xeaf8a713 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3e0f09a3 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa2e41886 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0ce664ea inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2abe533b inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e48a8ee inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f1041e8 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x71dbdda3 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa74b8ea2 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xac9956b5 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xacca517f inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe6c1a5c1 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1e2139b6 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x062c508f ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0807510f ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x447087ef ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x553a4d4b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5bed230e ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5fa400d2 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x739f11ce ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ad7f63e ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x826657f3 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8892fb83 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b982b08 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9ca9e620 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb363b044 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb431cb04 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca675064 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde32201b ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf0f69cd7 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb4b9d391 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x22313a57 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x21ba9e27 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4df5296b nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91935be6 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb654716a nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc58621e4 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc7616ebe nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb702cae3 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x307fdccb nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x48705dad nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8dcd78ee nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x5845a59c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb6809ef8 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x85be31bd tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac16c173 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb0081024 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc34352bf tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf0179b60 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0b518117 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x275320c6 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x30564681 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x30953dcc udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x56d7f528 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8d3c242d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc109e84f udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc118228f udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8b5bbfa9 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9b8930b7 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa095627c esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x20c0a520 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x689ca578 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd4964a1f ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe693e3db udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xebc43c88 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb54c1556 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1f0c40d9 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc2eca2fb nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xaa374868 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07648bc3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ba34e71 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5472471d nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xba730ad1 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfe96d59b nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x30656b8a nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0a133ffa nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x588ec1bf nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x67923461 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5c2a9fb5 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xeb19f072 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cd39d86 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x267ef740 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x341b8032 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37c06f54 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x661bba70 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67b61422 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7451781c l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x822050e9 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x848e8dfb l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x866cefad l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa038ff17 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf7f2a01 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb56a5fee __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb956a935 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0fba874 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef957423 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8dfe51b l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe31bf0bc l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0aacb4b8 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e220cf4 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a7a196e ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6bd87983 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e738b2b ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e9db844 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9204deb7 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9eac94e7 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa79a3613 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaca3505c ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc50a12da ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda898928 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf737e320 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf93c65be ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfc3b9832 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd258cd5 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3f51a9c5 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x750b5438 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f569800 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe18f974c mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xffea3173 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09c72ae1 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x10fe92a1 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x26e04c45 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39ba8733 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e932e7f ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4fc7e1cc ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ccb5aa4 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d7f38ff ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d641c5c 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 0x84c1614f ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ade1c37 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93de7e33 ip_set_match_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 0xb118d2f8 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4abca46 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf326edd ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd066777b ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe54bcc92 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 0xf9b0c638 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x02f6e646 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5529159f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb7b15462 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc835a36d register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x02dd8902 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x233ced8e nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9b2a8bb8 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd8c5586a nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf942f96c nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01e9d3af nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02503b99 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x048a77a4 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07289fc0 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08fb6ca1 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09c38fe2 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 0x0c63eec2 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d74d39 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16e45bf8 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1816acea nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19030a14 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1938e3b6 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1950719b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x207bb363 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23afe366 nf_ct_l4proto_log_invalid -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 0x2d44dfaa nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dd8cab6 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3db62655 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fe2bf0d nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x416af39f nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41efdd4f nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43a5426c nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x456e1a31 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4818c932 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a48e211 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fd24bdf nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x504011ab nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52019434 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52025498 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x538fd81d nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5686d4d7 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57c55a29 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57cc81ee nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d5a0bf4 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x658e93cf nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x683051e9 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6de2bdf1 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72aa6e91 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72b9c6a7 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7be861d1 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d92d164 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8544529b nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8573238f nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86ca9131 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87c4f10e nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a8f7670 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c31c7f5 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x906ee442 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x921118a5 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x923430bf nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92fb4597 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94595b22 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9af68c64 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b100518 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f7818b8 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa136ecda nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20a980a nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6b9ab94 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6dea062 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa89bc62b nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8eec610 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa93b7710 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad4a0447 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad7dc130 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1730390 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb413ca41 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6daf47f nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcf55d6d nf_ct_deliver_cached_events -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 0xc45b6878 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47e8fa6 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ed5794 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce6a9929 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3862bba nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf20a48 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdeaa56cd nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf965467 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4889eb9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6280851 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad999a1 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb8b1951 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe0f6df2 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4b35a145 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xbdad31cf nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe5f3b3f2 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x16b5e31b set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x23fb219c nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2dcef2c9 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3771df9b nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5dc1a2cd nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x604e0999 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x72299ab0 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa2cdeccb nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb326df7c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xee178f3c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x618d16bc nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0e2f1bf8 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x69c95d67 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x72d70e3a nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa4cb5efa nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0fbe64bb ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1e38ff5d ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x475d4b51 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x530f9d6b ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8d2123d7 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ac41d2d ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb10b7d9a nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x65ad0aa6 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbacae53d nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2db89db0 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7226f7f8 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf6d8cb7f nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x156a724f nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x23245027 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x23516ef8 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2decbdca nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x421255d8 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4cc16983 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5508fd24 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8776ab67 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa5a2ca0b nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbc7b6825 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe62677b5 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf57c7048 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x269251a5 nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x37cc623e nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xae5cff56 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc836bbdb nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd3dd5678 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xdc4fb824 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17249b2d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2b29209d nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fa22ebe nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3f1574f1 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4245f739 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4cb771d3 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58b6102f nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x64ca06a3 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x726eb457 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8faef157 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac9c33af nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xae5e4cff nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0d1ac45 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd69d1bd5 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 0xe1e50a3e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd1a214f nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x111ac342 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x32db1c09 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x38cad9c6 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6ce01dd7 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81c9f8e4 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x83c45449 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc854966b ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdff2f93a nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe933d04f ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf56952bd synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfbff03c7 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x030d5596 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0aec7cc5 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25125b50 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b5dedfe nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39e9ee17 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46aa267b nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6177640a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61c7cb2a nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62f071de nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6958ae72 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e4a9abe nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7190d71f nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77d82d25 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7922ecf8 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e21e677 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x884321ad __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a069925 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b1cc6b8 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x940f5582 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e90e935 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad3a9617 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc16cbc3 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc05864bc nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0928743 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0a1e4ec nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd374afb8 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd706d031 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd722177b nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7d2ef2d nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf13f766 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea984355 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb314d1e nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9f0089c nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfaf2a184 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb28894b nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x00c5d10c nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x01afdda7 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x133fa151 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x46a8cf03 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b264c6a nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6daa0319 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6ec5f2f1 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc65a2bc7 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe9c6ef30 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x34f35b7a nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xbad81aad nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x08f653ea nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3b6a502f nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5746bebf nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf2dee91a nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9583d281 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbb426d86 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfd1a815b nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x000e5dbd xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02977357 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10bdb8c7 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20a46fbe xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38c192ad xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x394225e8 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b2a1ed1 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47a829ef xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e6e3ff4 xt_unregister_table -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 0x920900fd xt_proto_init -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 0xa8b915a2 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabfd6741 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb01b9a6c xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc1b34ae xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc453f48 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc625f9a3 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc86f12b9 xt_request_find_table_lock -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 0xd66cd910 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda3e85d2 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb5d56b7 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8627987 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1b1ae8dd xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x45760f2e xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5c78949e nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5a63dbb nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfea862da nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2cc6bd9f nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3916ee29 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3f76e9bc nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x2e52608d nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x9ee11fb9 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x034ec72f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x14ede61f ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x261b2712 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x268b119c ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80f19cf1 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x947a37eb __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x1fe74f7a psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x4f09630b psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xd133d8e0 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xe78f2bbf psample_group_put -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x11d9d20d rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x208ccdd2 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x229d0d66 rds_send_xmit -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 0x3a0813aa rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x3c19197b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4179bb83 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x59557f0b rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x6124ecc7 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x634ea1ca rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x669b2ebb rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x6a51c9a0 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x6f5bbd72 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x719f42ed rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x7493e1ca rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x78c4ed17 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8d8dad4b rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8dfbccde rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa2609d6e rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xa6760677 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xb755e89a rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xb75bacb7 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb7edda1e rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbd53ce4f rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xbe09df1c rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xbf6c8d65 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5e26b23 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xeab5838f rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xf0262956 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x33567a43 sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0x60591c96 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x60c1f970 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x76040523 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x328aa88f smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3b62dbe1 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x50b18397 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x72849ca0 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x77f0a02c smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x991a7401 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xb2dd4ef9 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbecbd551 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd105814d smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xf745ec77 smc_proto -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0383df78 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0b509879 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x28db447d gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x312b14cb 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 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00e7c72c svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043f2b2b rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045ad429 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d94352 unix_domain_find -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 0x082b8753 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac3ab2c svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acb7bc1 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4aad68 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c53698c xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c7e2aad svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cb1fbe6 xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d30de9d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9deb64 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eded51a rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f04383c svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x153088d3 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x156cd564 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17917b89 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19cbff62 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e308e2 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19f0bb99 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c9d1bfd rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd9cf1b xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d15eec4 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1567cf svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fce07e5 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe97d1c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x202cb7de cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22cade5b svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22cf63f5 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22f0d885 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252164d2 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a37839 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2606ab7c svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b4c0d5 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288e651c svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289bcc4e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28cc2c11 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29426439 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e24616 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b27a8f7 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb15a5d rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2b7dad xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c95db06 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f4e8c50 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f730c38 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fbb2c9d rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32635ba5 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334ef80e xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34ffa1db rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359107c0 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35d1e7dc svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b41b72 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e1d59a xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38de12ea cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e50bbd xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39213f18 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b57ac2 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d22dbac xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d233a5e svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e333d93 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eabd35a xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb61f78 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f47e2f0 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42df1dc6 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44cb4fe8 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4530a743 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x457a8b41 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9c0381 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b2e2e49 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4b35bb rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b8aac19 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb1fe6e rpc_bind_new_program -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 0x4ec64582 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b811d7 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51060282 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53099e2e xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53a57592 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b52477 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56861042 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585d0218 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ccff3c auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x593197ee rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59800504 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x599ab1b5 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6a8a53 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dca12db xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e91e972 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f598a90 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601db0dd xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61caed67 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63591ef8 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d4333b cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64159c6a xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x685f5b68 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa3273b xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3901ef rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba527d9 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7afea8 svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e50bd58 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70aa5194 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71acf37f svc_addsock -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 0x75f2553a xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7774467c svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x780dd698 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79210420 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793a5232 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a0f731 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a29d750 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b42e30d svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b7af8e7 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c485233 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a1066a rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81902452 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8316602a sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ec92b7 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861dffa5 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86bd4c6c xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87455e0a sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x893a6f9f rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894594df xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aa34f8f rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aef42eb rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aef7d2d svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c567ed2 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9deba2 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fecd1ee svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91949e98 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928a3006 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92cdd8ee xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e11b13 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9318ed26 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93660150 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x940c0fa7 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9432081a xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94f7b767 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c595f4 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0272fd rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b364cd6 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0463e6 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d0d4607 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e87c355 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f22d52b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fbff1ff rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa06db2af svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f1a974 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa38508a9 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa447d96b rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa463d039 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58b4746 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6b6a38a svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84da60f xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa85bdc67 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8a639f4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cde029 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa910a404 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93e50fb rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa985539e rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9935d92 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaac2c49 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae871143 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ff7c8b cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2af08bf sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fc7385 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4517930 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5546074 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb646792d rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb738c89b svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87be1ec rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb97c116f svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb05ad63 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5bdf89 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe287a2a xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2856516 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b780a5 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2dafdb8 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc38ffc8d sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4756e3e auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc755c94a rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca292dc9 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfeaf71 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdfc29cf xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce23aa3c rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce90e515 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1bacbd7 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1be86a4 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54dcda3 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65e33bd rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd90bd547 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd976ffd3 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd97c08b9 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac6ed1c rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfd7a0d cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0217dd svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde19ee11 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6a98e6 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0fd1009 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52d900f rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe589b78b rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90c30bf sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaca3983 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaed6aa4 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba2e2f5 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec332dac rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec701029 xdr_reserve_space -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 0xeeafd88a write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0dea3f rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef32a1f4 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd266f1 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf07342c2 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf16a6f52 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74c4a8c sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f48b61 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf963a01c svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9676cd3 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa5b58af xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa8daec2 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad015cc xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1b91ca xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfda2764a rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff4b15b9 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/tls/tls 0x57323948 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xaf43316d tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x00dd7516 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x051a32a2 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b978be1 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1409d051 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x149b48f0 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x271fb435 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3221a382 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4bbfe932 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64be3274 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6598c56e virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67a90aac virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70886a07 virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75083282 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x777a5901 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77f9bbae virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c102030 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80e964ef virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f6a13af virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x939d73c1 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3bb4f13 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacacf2c3 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4a5f34a virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb53e5d04 virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6175e00 virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbbd03c31 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf44973f virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc35df98b virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc923014b virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca41fe49 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd26fbb7c virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3657c33 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6163a85 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6a47b8e virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9d11fcb virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeadf92ee virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebc93160 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0f33a9a4 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27b2340f vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33d99924 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e471be1 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x472db741 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x539edd92 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58cd9a79 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x684a64a4 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70ef3599 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79ed9729 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fa10c77 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92bc3a25 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6268b57 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae3b2ac8 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6f2f203 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc5688347 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7d848bf vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd20cdb40 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/wimax/wimax 0x052d1fcb wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0955c790 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x23207160 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x59fc85f5 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7174f1d5 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa746a315 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xaaa0b4a6 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb4cf9b61 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcd185b3f wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xd2410037 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe686f80e wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf79aaceb wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xfa911a62 wimax_msg -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19fdb2ad cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c65402d cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2063a889 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23f79ef0 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4da677bb cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4dfa5dcd cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x564815e0 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x65259361 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66229ffc cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x73c2b899 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x99f1c146 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa454e231 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8d45127 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc1522144 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc72df946 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca6c24a2 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8141232a ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x91e83b18 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe1f1b0c4 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf9258eee ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x6ac94001 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 0x1eddd5d4 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL sound/core/snd 0x37541f7a snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x4a5907b6 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x5478e97a snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x5ec84eda snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x7511c579 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x76dc5476 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xa5f46480 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xbad27125 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xe3303afe snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xf8b213ea snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x226bdbcb snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x238b94c6 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x7710fdf5 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xba15041e 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 0x14946b8f snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x440451d9 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x70f8ef38 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x72e87b6e snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e5faee9 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b51ea7c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa366834b _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbd310bea snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc34d4bd3 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdbaaba0b snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x25886367 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d22622d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3338ff8d snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60e22a18 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9910aeba snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d431886 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa8a21fc2 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb94b33d8 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xba5f9dbe snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd36be58c snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe7db3955 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x83b4284d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc554e4b1 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x160c57e3 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21c80512 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x86311e02 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e2bd2a7 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9d49e450 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9eff6e7 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xee76b697 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03e775ad snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1176741e snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15ab389f snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x199736d5 snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24793b37 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x250d7b9c snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x26427ef9 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x29d69136 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x331602fd snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e2855c5 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x40f26eff snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4cd03636 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4e6d716d snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5168dd87 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x55afa1ea snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6298cdce snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64a0448c snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ffbdbb5 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x74b0f1a8 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7943eae1 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f90f840 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f3903ce snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9393913f snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa07a28b9 snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa210ac80 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa371eb3f snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7d63ffe snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaaa92e77 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbf183c9b snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc9f8c6c0 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcbbe312c snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd26ce5e7 snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7d1b4dc snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4e34324 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xead65da1 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf0a7f301 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf64fc334 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04d08b93 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x056e6a53 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09dc9a2e snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a3219c7 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cf888e7 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14702f1f snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15140275 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20da45c8 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a12b6ae snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x301bf0c1 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33828ae5 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47296849 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c301631 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5624141e snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56c09009 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59accdda snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b01b801 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6acf7569 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b7486d9 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d17e9e5 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e2b37a3 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fd4643d snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71dc8478 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73e042c2 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74eab911 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79c88ac0 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b2089bc snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cbeb9bc snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d541ceb snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85e55ae9 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8685ce28 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fdbba7b snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9013067f snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9039ae8a snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90eda3c4 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x919111a7 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91a04a09 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95165d2c snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97199128 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9891bb9d snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c031681 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1077fb2 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2287641 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4ac59d5 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5133f08 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa61c0beb snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6a74aec snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa81de08d snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabdda703 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabfdda60 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01270fc snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3041f8d snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7b9ced5 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8658667 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb89ebc61 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba709ed6 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd4048ee snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6417f62 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc665d803 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8ac99ef snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9dc78db snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcafde96a snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbbccaac snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc568bdb snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc5f0894 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd6a6f54 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd08d8722 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8769081 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9dbd57e snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb3ffcf3 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf4cb266 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfee4c44 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0465c90 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe257954d snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe29cb2ae 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 0xe6fba748 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe860b312 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea301997 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea84c113 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb455714 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf561f2ae snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf85a6049 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb12b5fa snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe75dfe1 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x39adc0c7 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x73539934 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xfe485984 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x01cf99da snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x08556b51 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0b5c95f3 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4556e71a snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x48de59a4 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x77af277c snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00193593 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x006e1bd8 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x015439c0 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02d6b482 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04814964 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x049facdc snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ea6745 azx_stop_all_streams -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 0x06f35286 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0778c2b1 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d078883 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1135edeb snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x144ba7a5 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15e9e26c snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18cdc185 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x196c451a snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c812c43 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1db50dde __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ea2ad5 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2845350b snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c984636 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f7d42d1 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3050185d is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3409ecaf snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34baafa5 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37a5c96e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x394f0271 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cf59f95 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4147f68b snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x435f0459 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x451f9b11 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x474efe78 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x492c9c88 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb1234f snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2a23c7 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51485a94 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5161c29a snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54f938a8 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57eabf40 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58ff9866 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5951b33d snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b824e15 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c4bd8a4 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c7d6dfe snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5df7765f snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e395f81 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x604f5286 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62e1aae9 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69cb1831 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cef245f snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7188ae97 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x719a9c41 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x719c61dd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72967d12 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72c84a0e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x733a6611 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75b87b90 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bd1f807 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cba3d5e snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d6c9323 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f755da8 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ffbec56 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84391aac snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x862850e4 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88283433 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c77acf2 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fab5630 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fdc985e azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90c1ffec snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x932d5b82 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97c14b46 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a876993 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad8f8c8 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c20a306 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d19fc55 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9de8ad46 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0b64bc snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fda7732 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2ca775b snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa43eac90 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa55089ab snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa85ff59c snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa89dc88c snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac48d5d0 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad56e26b __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ea106f snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb14297e4 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb66b5b7f snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6a08b34 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6b6f722 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb879eccd snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9921bf7 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba3583b2 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb7ea245 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf0c296e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc16b080a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc934fcc7 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb5a5827 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcea8a8e6 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd179e7b0 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd54aefcc azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ab5189 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd88505dc snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8df6eef snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd99ff571 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32c8039 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c8e767 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9a43a11 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea2d42f9 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb2a03b7 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb31aafe hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec09a703 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecfacd40 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefae456d snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf19ca4a6 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf686c799 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6e6e947 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb0d3957 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbfc5538 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcff4c2c azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf2ccd0 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffcb002b snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14850801 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1c252a4f snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21830226 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c5d3abb snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3739b172 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4dfdefdc snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ab5ada3 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x679c4012 snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a3d5cd1 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76bd1387 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ce1d8ff snd_hda_get_path_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 0x9452720e snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96566c2b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x987dca15 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9938e3c8 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x99475787 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6181753 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd28b2797 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdcad7501 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9a09f29 snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf27e4d55 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8efefbc 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-adau1761 0xb10171a4 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xec65a0a1 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x46aaba1a adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4d0c7a23 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x64255d80 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7dd1d5fe adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9c15e591 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa70180bd adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb479eacb adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc0c40031 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd88a9dc0 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xffb6464f adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x11bfd05b cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf95b7af0 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x123c30b6 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x598d2d3f cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb7606916 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe03b4e50 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf34ef7ae cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x64faf263 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa6ac3012 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xecc53e9e cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x35402ab6 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x78323c86 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa149752c da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5ea06e2f es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc50d882c es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xac941b7d snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x44bdf959 hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xc89d5633 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x03313209 hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x3dc75013 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x75759183 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xaecdb72d nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x760932d8 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8e99478d pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc65fc882 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8929eba5 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf8d82ba2 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7b76c89a pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbc7bc7fc pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2a41d575 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x53c3d6c6 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x568a172b pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xea1c1ca2 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0ad66d1a pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0d7050e7 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x654def06 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x96f7919f pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xf91bf1d6 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0xe5533c6e rt298_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x663b6f76 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xebb767f7 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x56b9177b rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xa7d14c08 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6400ec6d rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x5f3ca416 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x86307109 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa80504dd rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xecec6bfb rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x3d03cb2c rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x22c18137 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 0xe8ece129 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6135a9ff rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x20b32af4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3cc79d07 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x62808992 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x78ae08a2 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcd107999 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe6dc2fc5 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x27d215ea devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0ccaac4a ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb3c0e7da ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x763dada6 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe3979d6a ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0cd798a8 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x27b622a3 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4d2f3596 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8677ad9d wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x73ffe13f wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x9dbedb29 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x65b45770 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9f969426 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 0x01669ad5 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0f82c086 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1de4012c asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2ba7b555 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37efdd41 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4e83063a asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5da95a9e asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6bf7ad53 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x77ff076e asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83a54c94 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb6f63a6e asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc06b60ff asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc4df531 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd77af674 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd88210dc asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe3652f01 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfcd8bbdd asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfd343fd1 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x68078414 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xf34d2c1c sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1efb7f03 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x455a7a47 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd0259158 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xe1cfa0dc sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xed6d372b sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x00899c7d snd_soc_acpi_intel_baytrail_legacy_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x08c27da9 snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a6c545b snd_soc_acpi_intel_icl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x210ac95b snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4c028d30 snd_soc_acpi_intel_skl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ea3c4ed snd_soc_acpi_intel_glk_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x52195614 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x59a53c32 snd_soc_acpi_intel_haswell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a93176c snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6038550d snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8b43f2f0 snd_soc_acpi_intel_baytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x98f106aa snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9c3d1561 snd_soc_acpi_intel_hda_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xcbb222b3 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd5af17b7 snd_soc_acpi_intel_ehl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe7826509 snd_soc_acpi_intel_broadwell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x03a6929a sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x136a65e7 sst_dsp_shim_update_bits64 -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 0x17422861 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c28dcc2 sst_dsp_shim_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c2aa40d sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2e7d0d13 sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x361b35b2 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4464d90b sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4558aeb7 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5b8870fd sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x666dfbc5 sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67b81249 sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x719b18ef sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x73a55e6b sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x77544516 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7ac2ec4b sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80998430 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84c04ad9 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x85de791e sst_dsp_shim_update_bits_forced -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 0x8b5dcd5e sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa653ebd9 sst_dsp_ipc_msg_tx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8b0ed24 sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xacfe2674 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb305fc07 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb845c5b0 sst_dsp_ipc_msg_rx -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xca16eef7 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd60c062e sst_dsp_reset -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 0xd8cfa873 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xde58e6c9 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe35add71 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x087d685f sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x08c25e50 sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x395c81c1 sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x40a55c2a sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x568a61c6 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x61d6dfdc sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x6b123827 sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x6c27bbec sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7dda739f sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x802bc0f6 sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x930cf67a sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9f8ee1e0 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa1cbc730 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa4f148eb sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xaa46ef51 sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xac24b224 sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xac5a3447 sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xae392955 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb7ae2b12 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xbbaba923 sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xca700154 sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd01a32c7 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd2e1fc7c sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd52dbb46 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd9d3b32e sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xda8f7b06 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe1470c72 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xeb6ef394 sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf89dbe64 sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xff0d2feb sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x16e6d092 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5993cdfe sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5b9fd1de sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x68a3a5d9 sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7c809721 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x87e4a5a0 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x96693a3e sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe88f4d9d sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x930a6cc3 sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x9626a345 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb40ff91f sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02f29518 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x030560c5 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0314141a snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x048eb87e snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05f7b03b snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07ba1efd snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b892d58 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d54047a snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e2e07f8 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x108549d7 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ae02a8 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11b2d7f0 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11cd1262 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11da4e61 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12c6494a snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13536e9b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13dc3fb7 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x140fb4e5 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a48c0f snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b0cbc87 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d44da3e snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f5e829f snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24856a57 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x262719da snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27a148e9 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x294d4052 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a4a2f66 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a908b13 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b95c04c snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3ef67a snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c6b2040 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d19d8ce dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32ace6fe snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335cabef snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33a598a5 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x359554cb snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x385d70ba snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a9823b2 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bbd1c93 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea714e5 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x413efca9 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4306801e snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x461bbe3a snd_soc_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49479ada snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49bb199b devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b8d88f1 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b8e64cb snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c7f26b9 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f0497db snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f1d32ef snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f23836d snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9c6fbb snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52fc6b71 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541aedad snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56bf6b3c snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56eaedba snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x590dc21d snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c7ae881 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cc6eb3d snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d6fa051 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd05f54 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e7361b9 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e82030b snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc5f1db snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6037aae3 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60ef7442 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61ef2f3e snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x633d37ac snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6458d9f2 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64f317d6 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6579392a snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65f54e32 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69378585 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d6ea9c6 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da7097c snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f169de8 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fbf0d61 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7008dc96 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705272a3 snd_soc_find_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72ef690b snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73f5b5c3 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7452899e snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x748a2a9c snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7502ba0b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7687c1b8 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7764bc05 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x785e977e devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x790d2704 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c9fe05 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810e5493 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8173baf5 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8316a75b snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x832953f1 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8448f186 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8874e360 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88eae84c snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89c6bccc snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89deddd9 snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd8435a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e566453 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ed67933 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f99be99 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e48cbb snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94797bfa snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x963d604e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a4c8995 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c47c448 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e491177 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fee73ca snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0816f7a snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0bb89b9 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0cfa752 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa131d5a5 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6b3dbd6 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab3a4119 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb67781 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacd0d154 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad0470f0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb005318b snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0182279 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f90b52 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1805e20 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2a0209c snd_soc_component_read32 -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37c90b3 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6436d3a snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb98aa019 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbab166a8 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc69f646 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf2a51f5 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfed2e79 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c054ba snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1e798ef snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2363db7 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b4553b snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2f7e582 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc342b68e snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4a88ee0 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 0xc8394815 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca44c69d snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca7e810e snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc688fb8 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcca35752 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd48a2c0 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd58e105 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4decca snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfead715 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcff2b5d5 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd46bd043 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4ebd80e snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd524d474 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6dcb8fb snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb8770bb snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddc359a5 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe494b8f3 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe68a3bd5 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe708269e snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe903f7a2 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe904c704 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9439d9f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed80cc3d snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf09aa408 snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf157fef4 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a053b1 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf66e2019 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6fcc838 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd90c444 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdcf3325 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe5bc335 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x083ffab0 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7fa9c601 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbbf038b0 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf78b3726 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x111a0f25 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f47ae3a line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x284fbe04 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31290e9a line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3864ac5a line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54df45bc line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x562de9bb line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x900bcc24 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e0f1b32 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa1799609 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb9a24f17 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf35848f line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc328fc73 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee8fdc01 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef59a003 line6_init_midi -EXPORT_SYMBOL_GPL vmlinux 0x00055d63 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x000de88b get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x002d1149 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages -EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x007151b0 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0090d89d spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x009d36f4 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x00a9d310 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x00b79e15 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00fde1cc __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x0103cf00 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x011b1be5 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x0123fe86 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x01765664 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x017c1e5d platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x01838df0 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x0191d088 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x0192c487 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0193c406 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x019d6115 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x01a60a30 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x01b2d7cd genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c5b3b0 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x01c8a906 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e30915 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01fcd648 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x0205b0cd gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x020714f3 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x0217ea32 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x02408fab dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x02455320 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025dcf46 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x02600773 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x02606f7f adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0261c0f2 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x02641e6b inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0275945b percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x028cd36d pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x02a15c52 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x02acc03e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x02d0b2a1 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x02fc1a2d ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x03023ff7 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x0307540d __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x036bce54 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0375e649 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x0387e105 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x038b8f69 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03b480c9 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03cb9042 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x03cbda57 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x04027602 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04077e74 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x04217576 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046e4f44 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x04794e49 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049929c0 hv_stimer_free -EXPORT_SYMBOL_GPL vmlinux 0x04a3930a input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x04a5ad47 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x04a675a5 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x04b60ab0 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c30a9d pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x050159ab nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x0508d0c0 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05702696 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x0577bc7f max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x058397a0 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x0586f528 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0594b728 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x05b48a3c regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x05c54890 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x05d15605 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x05e67ff3 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x060feb81 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x06218105 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x063286c1 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x06360558 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x063f023a regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x06472791 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x06487301 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065d5471 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x065fc4cb mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x0676188b spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x0689ccd1 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x068c38a7 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x069e044a relay_open -EXPORT_SYMBOL_GPL vmlinux 0x06afca38 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x06bac77e tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x06ddae28 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x06dfc8cf rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x06f1b018 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x06f67722 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x071143e0 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x0723509f fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072dbaa7 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0751ac33 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0772b4e2 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0777d92d validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x078c3e09 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x078d10f6 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x07982b19 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x079b9963 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b3fd60 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation -EXPORT_SYMBOL_GPL vmlinux 0x07b704fd cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07c1476b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x07c8a34e pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x07d51911 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x07e61d23 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x07eb844c nl_table -EXPORT_SYMBOL_GPL vmlinux 0x07edeba7 hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0813b6e6 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0814fb56 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0816c07e usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x08177343 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x08183202 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x0837fffb ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x0849a452 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x0858ca51 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x085d4f1b cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x086151f3 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x086545b8 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x086f2f1e crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0883c4bc ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0887b5f4 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x0887e01d usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x0890e675 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x08931182 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x089f887f regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x08b4ab8b efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x08b5cb81 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08ca0dd5 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08d830f1 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x08ec0617 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x091f58d5 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x092429d3 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x09261923 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x092b2e99 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094ca4e7 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x0973d232 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0998422b pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x09a2e400 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x09a72d7f intel_svm_is_pasid_valid -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09ce2a21 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x09ed9032 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x0a313902 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x0a4a0f86 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x0a4cda9d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a764c2d bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0aa6f3f5 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x0aad46da sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0aecc402 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x0af1e2d5 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x0aff43e4 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0b5320 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b20407c usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b51eae2 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b544b53 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x0b550e18 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x0b58f8d3 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0b6ebf99 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x0b729247 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b87bfb0 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x0b8f54fc __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x0b963c28 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0ba3fc78 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0bb6be96 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0bc9b04e phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x0bccccbe nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x0bdfcda8 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x0be4c9ea driver_find -EXPORT_SYMBOL_GPL vmlinux 0x0beebab5 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x0bf0caee mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x0bfafa85 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0d3606 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3596e3 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x0c3bab65 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x0c43cef6 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x0c567d45 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x0c5b88d5 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x0c7e18fd xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c8fa964 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0caac285 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0caed4f8 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x0cb6942d rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x0cc9c208 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0cd90be9 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x0cd9e648 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x0ce2fbde ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0ce3569e regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0ceab679 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x0cfa9fe0 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0d1b998e tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x0d1e6acb vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d2a7595 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d35e5cf rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x0d3cca5b serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d47f3cd tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d5877fe usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x0d5eee32 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d75a248 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dd1d4a5 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de18fcf dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e10de40 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0e131f27 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e25e01e skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x0e2d5003 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x0e5774e6 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6bba31 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x0e872866 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x0e911252 dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0e92233c __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eadb83a trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x0eb39710 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x0ee87e1d sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x0eea824d usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x0ef337bf devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f1a5169 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f2edb6c ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0f5a73dd set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0f713f62 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0fa72e1b phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd637d0 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x0fdf846a cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0fec9a7f sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x0ffa671a regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0ffbc14d switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1016a171 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x10195b05 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x10263507 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x1032725d sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x1036ed41 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10c88764 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x10e3bddf pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1102afd5 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1115c9ab crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x1118d490 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x111c99ad relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x114a1d9f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x114a4b1b rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x114c005f nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x1151b331 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x11594508 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x116b8959 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1177b433 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b2588a devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11e35889 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x11e69e30 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x12014daa phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x12067bf8 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1212ba37 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121f8670 fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x12218987 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x122bd85a pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x12341055 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x124ec3a7 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x125120a3 regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0x125a3714 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12763336 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x1288e39f tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x128c47ac mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x12b11a2a fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x12b7ff81 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x12c30256 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x12ce317e __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12df58e4 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12e3cfd5 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x12eb4456 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x1314835e gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x1316fac3 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x1319ef70 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131d3b22 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13428254 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x134825d4 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x13525300 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136b5bb6 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1376b092 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x13795c17 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13906e11 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x139def09 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x13cb57fe power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13eeb542 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x13f8fa2d fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14147d72 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14200c1e cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x14220fbf devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x142e7117 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1434ad17 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x144e99fd sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x145cf7d8 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x145e95ac bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x147a629d pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x1488333c dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x14a1adc3 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x14b2d0eb irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x14b670e1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x14c8000e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x15159846 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x15337433 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154302f0 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x1543f900 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x15537dd2 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x157fadbd clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x159052d1 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x1593dbaa skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x159a426d ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x15af722d cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x15e22667 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x15e50a40 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x16127f83 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x161e7ebf acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x16228a64 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x1623fb5a xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x16584c22 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x165a8d69 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x16604c70 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x1662b741 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16892b27 uv_bios_call -EXPORT_SYMBOL_GPL vmlinux 0x168b18b7 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x168e9505 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x16941f83 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x16a73225 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x16aaec70 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f83a76 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x16fce50e dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1736f786 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x173892ca acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x173ea241 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x174059af pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x17410419 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address -EXPORT_SYMBOL_GPL vmlinux 0x175657a0 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x175e1bd4 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17672367 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x1774f7de bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17804eaa tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x17912144 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x1797ffb2 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x179e37f9 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x17a8cf9c iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e79915 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x17ee62f7 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x17f2e501 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x17fbbf86 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x1803c565 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x180f7e9f bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x181f97a6 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x182bfb74 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x183674f5 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x183b0d11 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0x1844f930 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error -EXPORT_SYMBOL_GPL vmlinux 0x188b6c1f md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x18b06a06 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1901dbb5 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x190b7810 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x19140cc9 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x192fab73 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x1936f493 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x193b0427 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x193fd10e power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x194cd7ad pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x198bdb21 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x198ee2a4 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x19918edf user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19948f3d fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a8ca0c extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x19a9b8d0 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x19b0e245 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x19ca649a sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19f142b0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x19f19bdb pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a0483eb usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x1a0e6475 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a20d287 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1a2273ad tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1a40d2e8 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a5dea0e devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a5ee7fa spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x1a6b243a ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6e37f9 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x1a744f19 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x1a7b4ee1 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x1a94e6fb xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x1ab3c240 xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1acc738b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ace0266 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x1adac918 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afecf7f blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b02c781 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x1b147725 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x1b21109b sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x1b392c55 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b580d4a devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x1b5aad42 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1b5c7f85 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x1b773acb pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b961206 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x1ba1865f do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1bac5cba register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bd35652 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf60bf3 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x1bfcb20e pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1c0ef115 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x1c256839 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain -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 0x1c660eeb acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x1c79d15c dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x1c7b896b devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x1c7d65ec __memcpy_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x1c805722 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c91f6df map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x1cb22d05 tty_port_register_device -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 0x1cc9944b iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x1cf8e857 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x1d180c97 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2f8f9b tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d35a62f ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x1d39ccc0 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x1d772a48 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7b1ef0 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x1da53695 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x1db09405 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x1dd741d5 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x1de3590b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1dea64fc iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x1dfdf2be devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x1e056a5d tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0ed391 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x1e2583d1 cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1e3842e2 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x1e389e56 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x1e4629a7 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e64416c cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x1e7475b7 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e829cc2 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e968078 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x1e9d31b1 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x1ea564e5 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x1eaa39de msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x1eaec737 md_run -EXPORT_SYMBOL_GPL vmlinux 0x1eb2fe2f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb326e6 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec3e052 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1efffce4 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f456360 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x1f4aa9e0 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x1f4ba86c pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5e2816 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x1f725a04 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8a72ce rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f98629f xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x1f9a742f xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa08eae get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb61081 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fb8aac9 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fbf1024 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1fc0ae0b set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1feecbdb __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ffc8ed5 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x20088db2 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x20191ccf pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2047309e kill_device -EXPORT_SYMBOL_GPL vmlinux 0x2049736f cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x205b0fe7 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x205f2ed3 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x20616cde clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x2061b3e3 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x2069ca50 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x206b55f3 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208904e4 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209f51cd device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x20a61d7c power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x20ca8a53 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x20dc5d6b transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x20e9b7de bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x20ebee59 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x20f49e77 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x20fa8722 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x2110dc6e sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x2141af30 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217e86d7 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x218be54e cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x21957c7d gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac3977 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21c540e9 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21cd8875 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x21cf6028 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x21d2a76d vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x21fa7db2 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x22043c39 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2225c5c6 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x22332d88 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x225392e4 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x229b893a netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x22c830a0 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x22ea953d __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x22eb24a8 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x22f9850d crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x232a0b95 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x2332af76 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x2337fe66 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23479bad uv_bios_get_sn_info -EXPORT_SYMBOL_GPL vmlinux 0x23482f89 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x2364f17d __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x23662414 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2369be20 udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x236a2255 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x236df826 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x2379fef7 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238942e1 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x23e98216 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x23ee0d88 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x24099b51 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x241b1659 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x24383d52 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x243b0472 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x2443a7a0 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2467d2e6 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247a77f0 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x247a7bea regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x247ca5c1 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x248b1aa0 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x24ae3866 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x24af4133 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x24b4ea15 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x24b6f970 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x24d609ca usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x24d62153 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x24dd2e0c nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ecabe5 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fdb737 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x24ffedef dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2500f397 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x2502212d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2503bfd9 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x2504f38c blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x251d4c3b tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x252106e9 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x252756c8 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253ec48c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x254f1d50 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x254feed0 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x255c4b23 __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x255c7a1d security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x256319eb dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x2567e5dc ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x257c2ff2 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a8db04 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x25c18450 _copy_to_iter_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x25cd63be security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x25d0dfdf spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x25d5d133 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x25e990a0 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x25e9cfb0 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25f380f8 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x260aeb62 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x261d32f9 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x263756ea regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265dfcd0 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2662f324 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x2672b345 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x26778ab2 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x267a2be8 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26a01855 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26bf08b5 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d20609 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x26d51b4c iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x26d55c7f cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x26da0058 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x26e51b14 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x270750e3 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x27091318 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x271de3f7 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x272642f6 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x272c749b ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0x273db5d5 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x27417015 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2751c58b mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x27632283 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x276efd70 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x2785f1bb __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x278c2330 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x27a08530 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x27aaee2d irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x27b666af thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x27bcaf99 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x27c0b811 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x27c32874 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x27c62890 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x27cef84d __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x27d08645 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x27e5949e usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x27ec6c1a sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x27f32762 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f79ecd xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x28046881 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x280751cd gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x2812cdfc edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2817fc16 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2824f98a spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x284a1d60 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2875d4df netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288c1000 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x289ad72e usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x28a609f3 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28dbe9ea check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x28dc0a03 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x28df6cb8 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28fc6394 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x290505b2 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x29160a69 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x291fefb9 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x2937a88f percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x2946dfe8 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x2950596d fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x295cfa9d i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x295d313b replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x29649545 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0x2986b45f blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x298c03ad __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x298d5371 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x298ffd4a sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x299baeec bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x299c8764 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x299d0a11 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x29ae3882 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x29ae99ba gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x29c0d88d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x29de8b24 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x29e626e5 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fb46e2 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x2a05c6f7 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x2a0eb46b ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x2a186f16 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x2a2ee24b fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x2a4f345b devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2a5d5aa1 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6a409f xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2a72b036 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x2a7b50f9 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x2a9567cb gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x2a9ed6ec to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abc7b93 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x2abfa8bb acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x2ad1090d subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x2aed8952 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0c83de scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x2b2910cf sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2b37e210 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x2b3e23fa gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x2b42aad9 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b6519f3 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b6d3849 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x2b70d549 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2b796a4f tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource -EXPORT_SYMBOL_GPL vmlinux 0x2b8ceb30 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2bc3b71d lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2bcbee75 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x2bd5af38 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x2beadd26 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x2c06d68a inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x2c1ddab0 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x2c1fe067 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c270692 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c310f4f spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x2c469b34 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c81bee7 __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f021 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x2ca314c8 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x2cbc6d69 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x2cc24ea4 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x2cdb249b fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1febf9 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d2eb9bc __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x2d38ad09 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d43d500 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x2d469414 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x2d5b9bcd elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x2d6a2704 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d8774ad balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x2d8a5ac9 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x2d9c34f8 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db75fe8 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2df58007 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x2dfc0b34 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e1ae202 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e23fd54 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e45bdc8 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x2e4f0230 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x2e538e8e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e7343d7 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2e74a6c4 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x2e7a9a6d usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x2e7e254f usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x2e82b7a1 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x2e8c89d2 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x2e8e17e5 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x2ea41d65 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x2ea76d4b shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x2eb93703 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebdf96e dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ed4e953 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x2edb7c8c efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x2edcc9c7 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x2edd5417 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef2619e sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x2ef2fff7 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2ef3a9ee register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x2f032e07 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0f0bf1 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f151cd1 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x2f210362 device_del -EXPORT_SYMBOL_GPL vmlinux 0x2f2113dc pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3b1eab __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4354d6 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4977b8 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x2f4ab51b cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x2f52b3c4 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6845fa usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2f7cb5bc of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x2f94e214 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x2f982b21 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2f9bcf24 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x2fa071b3 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x2faca153 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2fb0be8c ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2fb45fd0 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x2fbe6c70 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x2fccb311 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0x2fee2f54 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x30033dd4 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x301a09bd tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x30301395 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x303136e6 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x303675c8 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x303ce6ae pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x30461339 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x306234dc acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x306f5576 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x30881d58 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x309e3c11 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x309ef0a9 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x30ad8d1c dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x30b4f711 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x30b8712d xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x30c85390 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x30ced803 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30d9866a __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f0cdcc bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x30f5349e tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x310ad9c1 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31167527 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x311f36c2 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31434d6b __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x314680e9 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x31486c68 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316c8474 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x317eb908 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31b40063 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x31b81c84 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x31c4d368 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cde655 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e2e76a tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x31e811d8 tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x31e813a1 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x31f3ccd0 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x31f747b6 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3205b306 cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x320f9758 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x32174a09 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32387a74 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x32522ddc sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x325e7e7d sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x32602597 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3273159f shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x3279cbb4 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x32900dec dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ac3f08 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x32b26fd5 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c01e11 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c56d8a __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e4c131 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x32eb9ae2 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x32f10176 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32f154ed sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x32fb7dbc phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330c680c devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x33109b5d sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x332b4940 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x3343bfdf mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x3343e866 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3345d4b4 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x334c7b40 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x337dfc5f sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x337f85df clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33818172 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x338e08aa extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x3397c94a acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x33b62c1b power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x33d02f3a iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x33d84f90 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x33dd9940 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x33e4dae2 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x33eda18a __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x33f37a25 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x33f9c0ab sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x33fdb63c aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x341dc1fa device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x341dfb96 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x343a738e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34463285 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x344ea971 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3489c8f4 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x34aab920 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x34b0007b sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x34c3931f bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x34d143ac tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x34d522f8 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x34e09a71 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x34e9a33f regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34ee37da pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x34ee69b4 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x34f96a76 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3504a293 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3524f7a7 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353bb0bf cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0x3541a642 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x3541cca2 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355c354c mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x3587c386 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35acc794 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x35cfb1a7 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d58fbf ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x35e4103e dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x35e9593b tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x35f089c6 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36145889 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x3622ad3b usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36546606 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x365be49c get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x36774166 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x367be068 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x368adb0f ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a97926 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36b950fb clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x36d6feef ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x36e50e54 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x36f6b692 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x37019964 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x370d5118 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x37122815 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x37388f7b sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x37437c88 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x376f87db rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377bc9cc relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x377fb935 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a56fd5 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x37cdea23 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x37d60c4c acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x37d7d9fc pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x37ed5381 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380d90d2 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x381a15c9 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x3828a518 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x385ed12a xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x386b4dab disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3871a127 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3876edfc pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x3882307a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x38915830 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x38bcf8f3 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x38d067df pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ee7007 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x391b088e devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x392b7c48 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x3932794d __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x394edcef regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x39532a20 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x395ae556 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x395dc785 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x396e2fd7 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x39735479 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x3979b4fe gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x39a68e2e gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x39b0b193 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39dfeccb nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f0375f tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x3a106e07 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x3a1c9c88 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x3a1ec3e3 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x3a1f7d83 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3a211e73 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3a22b340 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3c51ac tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x3a3ddbfa nvdimm_provider_data -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 0x3a652270 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x3a6ecd42 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x3a702679 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x3a7a7980 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9e9530 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3ac1d9e5 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x3acde8dc adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3adadbe2 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x3ade1218 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x3aeac0d2 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x3aef9ae9 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x3af45268 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3b220f56 md_start -EXPORT_SYMBOL_GPL vmlinux 0x3b4be61e spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b52d961 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x3b6acfe4 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b9134f6 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx -EXPORT_SYMBOL_GPL vmlinux 0x3b9354dd update_time -EXPORT_SYMBOL_GPL vmlinux 0x3b94d6f6 vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bab7d60 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x3bcc277e xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x3bd4345b usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x3bd93fbe cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x3bd94cae serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdb8151 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x3be4d77c usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x3be9f8da phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x3bea739c task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3bed3fb2 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c06985c irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1cca20 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3c3ebd09 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x3c6482e8 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x3c8709a5 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x3c87778f gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3c91e934 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x3c9ee6d7 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x3cb03770 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3ce0b536 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x3ce22c44 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3cec5931 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x3cf048fb fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x3d06965a device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3d09c179 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x3d0a6fa4 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d104510 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x3d387e82 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d452e47 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d7005b5 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3d77d2cc ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x3d85962b nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3dd1cf11 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df433c3 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x3df8658e bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3dfb013d ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3dfb092b ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x3e10f9e9 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x3e587613 ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e794738 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x3e9c6422 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea90be3 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x3ead95f8 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x3eadd006 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3ee955a2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f1912f9 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x3f2698c3 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x3f2bb86b ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x3f4292c7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x3f43a080 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x3f4a6d3a clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3f69a5fd usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f91a949 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x3f95d768 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x3f9d3cb9 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbf07a3 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x3fbfab90 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fcb0f9e dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x3fdff1c9 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ff51e7b power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x3ff97fbd virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x3ffc35c2 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4008e7b9 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400bb47c nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x400ca82a da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x401be148 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x40201afe blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x4020f8e5 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x40255760 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4027d4fb gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x402dbac6 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x40343950 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x403b14c0 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40479e23 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x404da509 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x40529757 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x405eaf49 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x4066fb5d devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406feb38 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40734b49 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x4077c699 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a86494 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x40ba7233 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x40bc10ae aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x40c0823f pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x40e30d71 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f0edb4 pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fc7da9 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x41005272 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41015375 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x410a314a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask -EXPORT_SYMBOL_GPL vmlinux 0x412f6b05 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x413982af devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414df514 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x4158d1f2 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x415dfa40 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x416550af perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x416b44ff acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41836a79 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418b478f devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x4191011b acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x419cb8af crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x419fb4a4 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x41b16cd7 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41e60895 mmc_abort_tuning -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 0x4205eafe pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x42082804 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4218dc03 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x4243c9cf pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x424bd491 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42a317e9 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x42a785f7 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x42abc67a mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x42b340f8 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x42cfe020 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x42d4172a fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x42dbd690 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x42de5bf2 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x42e03f61 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f88742 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x43043f79 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x43215b86 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x4325a2f6 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x432f9703 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x433e41a9 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x433f92c0 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x4348ca90 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x434ad2e7 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x435012c5 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x436e4a97 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x436f7609 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x43760b65 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x437d2104 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43a7ebed devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43b3dee0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x43bd22c9 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x43c98124 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x43e3763e scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x43e3af01 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fc0c34 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x440740e9 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x4423dd03 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x44265728 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x44275769 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x442d56bf __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x44314b17 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x4437bb3c badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x4444629c pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x445c5b29 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449b1266 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x44aa2820 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bbaaaf pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x44bbe0e0 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x44bc2eb1 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x44c1394b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44cf1af5 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x44d704e6 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x44dcbc6b thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x44de3382 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44eae390 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x44f4ebf5 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x44f8ce50 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x45153970 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x451f1f32 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x453ec648 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454e0002 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x4550c3a4 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x45551446 __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45746c83 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4575e8e0 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x458430c4 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x45904363 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x45c56208 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x45cd26de blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d6d590 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x45d75101 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x45dad198 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x45f0e03d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x45f16877 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461d7603 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x461f3e7c sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x46318e90 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x4633937d devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x465b7442 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue -EXPORT_SYMBOL_GPL vmlinux 0x466e85df phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x4678814b bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x467d109a __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468a7360 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x46934c5e __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x46a25907 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46a4cc6f usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x46a66575 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x46cbce9c firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x46cc2112 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x46d0998c con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x46e21f0e pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x46f152b6 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470e716a tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x47123480 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47245104 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x47452154 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476e75b5 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x4787fa5f lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479c533a xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x479d6ba0 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c1fa34 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d1ad22 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x47dc996e ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eb2509 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x47ef4fbb public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x47fa87aa switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x47ff7f1e regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4807d278 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x480c689f cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4813b730 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x481ba243 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482a5103 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x484bdd40 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x48585854 pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x48599469 input_class -EXPORT_SYMBOL_GPL vmlinux 0x4870cc90 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x48860c9a virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0x4886abc5 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48aac170 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48b24272 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x48d23862 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x48e70b48 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x48ee1c54 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x490358b1 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x490f3728 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x4914c662 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x49292aa6 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x492afab7 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x492de4b9 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x493509fd crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x493e0cd1 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x493ed066 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x494ffed6 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x496a1515 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x496a6627 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x496ad19d acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x497de3e0 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x497eb8ee nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x499b2143 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49b53d69 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x49bd037e sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x49bda91e arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault -EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb0c5b gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x49f45596 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x49fc30f8 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x49fd42b8 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x4a034b78 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x4a1174bf __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x4a1dce8f extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x4a2de199 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x4a375782 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4cf836 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x4a778966 net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x4a77d0d2 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4a7ce446 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4a7d9246 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x4a7f2b36 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x4a7f342d uv_type -EXPORT_SYMBOL_GPL vmlinux 0x4a8f5a14 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4a9d5ad5 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4aadedfd blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4ab6b29e __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x4aca4e88 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x4add5cfc desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x4adeffb0 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x4ae69978 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x4af8f82a register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x4afe49ae usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x4b0061f4 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x4b06b248 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x4b368587 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x4b3b6060 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x4b457896 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x4b47fc93 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x4b5a458c bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b7b47f6 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4ba15b40 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcbabcc nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x4bd6fa23 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x4be8cfdf serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x4c11c108 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x4c16a178 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x4c1f2e94 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x4c2bd6f7 device_add -EXPORT_SYMBOL_GPL vmlinux 0x4c360264 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c54fd7c vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x4c552d1f pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x4c628eff pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x4c73dd43 acpi_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4cb1ae60 skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0x4cc4ad46 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x4cce6d33 setfl -EXPORT_SYMBOL_GPL vmlinux 0x4cdb7e41 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0c1985 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x4d12aaac mmput -EXPORT_SYMBOL_GPL vmlinux 0x4d14ee22 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d4ac88a devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d53ed33 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x4d697dcd crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x4d80c86b pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x4d888911 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d8cc928 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x4d9f8c0e regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4da0b6b7 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dc9dc09 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x4dcfe598 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x4dd0dc4f pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x4dd62ac9 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df08fef gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x4e06ca4b bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x4e09aba0 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x4e0c4da2 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e16f220 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e23c0e4 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x4e30448b vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x4e3394df fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x4e4c2ba9 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x4e4c9558 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x4e7f474a trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4e96f5be ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x4e9810ac __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4edeb6a7 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4ee0a1a0 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x4eef50e6 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef62aa9 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x4efe263d i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x4f063710 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x4f1ef90b bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f3b011e perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x4f50b81b led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f57cfb1 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6b0676 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f832b88 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1cdbb paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff8a4a4 pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0x500ad2eb phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x500ea6e2 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5012feda acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x501b1086 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x5023d001 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5027a19a devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x502d2ca8 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x50396274 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x503e84d4 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5041bbc2 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x50577f49 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a45144 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50b1a3d3 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x50b93a31 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x50bd11ef bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x50c5fbfe wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ee8234 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fbc57e pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x50ffca31 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x5105cc57 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x510fcfd4 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x5123b2fd phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x512d00ad mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5146a250 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x5150563d cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51881409 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51972920 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x51a03953 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x51a30228 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x51adbd4d pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x51c78fee init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x51f17b3f da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x51f4e56d xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x520a0e1a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x520d3f96 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x5222a5e3 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5223e0e4 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5235c21d trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0x5242ce57 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5249d515 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x525e8278 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x5265e8e3 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x526e0f4b ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x526f51ff xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x5279495a rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52a0fbcc devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x52af741f __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x52b76ecd trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x52c1228d iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x52c6888e usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x52cd21b4 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x52d39814 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d9d99d mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x5325421c pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5358d650 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536f2592 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x536f7602 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b0aab5 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x53c47c53 apic -EXPORT_SYMBOL_GPL vmlinux 0x53ceeeca pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x53ed898c uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x5400d7b2 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x540abfc7 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x54163c19 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5421665b devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x54247796 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x542ea420 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x544fe022 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x5459757c ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x545b06a8 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x54643ab0 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x548463a3 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x5488990a skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x548d891a acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x54b13f73 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x54b822c4 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x54ed152a device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x54f471f8 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x54fe926b crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x55017c3b class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5505bae7 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x55073861 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x550bfe02 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x55232a45 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x5526536e ata_link_next -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 0x5543d13c mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x5558b76b iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x555b280c ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x5562a872 regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5577f072 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5581e7fd ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x559d02ec crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x55af404f tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x55bb883d ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x55c0fa91 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x55c20458 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x55c64736 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d1b512 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x55e10d64 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x55eb7a42 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55fdcbe0 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x56041243 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560946be fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x56102dd8 fsverity_file_open -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 0x5638af79 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564678c0 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x564a8cf9 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x5656c95e crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x565c8b0a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x567920ca sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x5679e2e1 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x567ac138 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x569b539d dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x56bd70de inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x56c78742 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x56ca592d tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x56ce6021 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x56cec9db del_dma_domain -EXPORT_SYMBOL_GPL vmlinux 0x56cf8e6e get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56ef3732 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x56f39762 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x56f4b090 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56f63f7b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x56f6d330 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x56fb71bb __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x5705a413 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5731a95f da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x57346feb cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x573772b0 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x5744acd6 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574fc58c system_serial_number -EXPORT_SYMBOL_GPL vmlinux 0x5750a023 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x576c7d8d efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x5778ede0 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x577d7ee0 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x5782b7b1 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5799fe29 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d13496 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x57d61f96 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x57db9d7f __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x57e9a453 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x57ecc50c crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x57f6b8e4 vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57fafd51 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x57fde9c0 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5800a3c3 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5810b193 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x5820b3f7 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583a18fb ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5851d418 set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x58535246 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587a3f10 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x5884d8db cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0x58945b46 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x589bf8e4 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x58b17617 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x58b7d7b2 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x58d42b7d efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e0a4e1 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x58eaa87f dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x591f63fe sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x59282e37 bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x59478a9c rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x594bb503 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59540642 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x597fe5b2 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x599f9f96 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x59a459c4 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bb127c spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59c8effc gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x59d4df8f power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x59df759f blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x59ee13e4 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x5a00c375 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x5a071edd devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a73a903 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a853784 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x5aaa1cae i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab8c059 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x5abdbe12 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x5acb9455 of_css -EXPORT_SYMBOL_GPL vmlinux 0x5ae4f306 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x5afcea1e trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x5b050293 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b78afe2 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x5b80c58e ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5b825c35 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x5b884364 hyperv_report_panic_msg -EXPORT_SYMBOL_GPL vmlinux 0x5b936963 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x5b99d153 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x5bb289ac __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc687e7 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x5bcdba66 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdda8aa fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x5bebbb92 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5beecac9 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x5c0f630c anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x5c17df60 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x5c184cc6 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c4a12c1 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c64bdeb fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6ff19e ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x5c9216ad __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x5c9a56e8 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5caeb52f tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x5cb31025 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x5ce3967f vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d03817d pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d25a120 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x5d333a92 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x5d3b38fc irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5d400ed8 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x5d45bd98 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x5d4b3cc6 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5d662833 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5d978922 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5d9e07dc ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da6b77f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5daf1042 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dbfe18a fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5dc2a243 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5dc51a68 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x5dc542d7 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x5de69006 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5dec3c31 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x5ded524c scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1b5476 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x5e1e4702 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x5e256a75 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x5e314169 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x5e3258ee crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x5e50f3fa pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e52f0b3 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x5e69c07f dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x5e6d0246 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x5e6d654e security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x5e7941ca edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e81e93f tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x5ead7bf2 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x5ec4975f pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ecb40bd to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x5edc88c2 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x5eea6e2a i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x5ef0227b key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x5f021154 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x5f0a5149 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f454dd8 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x5f49d891 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5f5476af pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x5f6cee09 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5f6d498a usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f723a6a irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x5f86ef69 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5f90b46c ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5f93e8a1 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x5f9963ba regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x5fa866db __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x5fa8eab1 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe96287 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x5ff422b2 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ff7a21b serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x5ffac179 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x600296f7 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6014c275 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x6024fc7d usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6050f1eb battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x60526cdd tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x60536dd7 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x60554e86 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x605b86ef usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607f37f1 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x6089db28 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60b27951 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x60b8384a dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60ba1f31 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x60dd4313 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x60e33575 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x60ed7ec6 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x60f20324 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x60f7026c blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x6102219c regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x61057c14 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x610d0e8e inet_csk_get_port -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 0x6138eeaf wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x6143338c inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x61493c9e debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x614b3d02 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x614d61a6 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x617abab3 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6191ba9a dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61b0b612 virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x61bbf8f7 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x61bc818c iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x61c58aa4 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x61cae81e dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x61dc2ca7 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x61ed2d83 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x61f58a3c xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fa3b97 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x62007bff perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62128608 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x621a9ce4 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x62265fab usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x622ba8c4 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62367f42 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x62377848 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x6237e8dd regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x62399cca gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x623d9370 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x6245366f bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625ab184 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x6262935b sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62663393 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6269fb4e badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x628b2191 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x62b299af alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c1d9ca lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x62cd8670 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x62e171bf pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x62e2d2f5 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x62f2539e kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x62f654f5 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x62f8615b irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x632960ce dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6331c6cd pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x63749af7 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x637e889e ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x637fe2d1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63806a1f fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x63829d2f fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x63851ea7 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x638c6409 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x63921b8b unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x63b7a0d2 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x63b97bb0 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c7c429 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x63c8fd2b hv_setup_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x63cfd6bd ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x63d524d5 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x63de7b96 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x63e120e9 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x63e3cdfb pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x63e8fc85 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f03134 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x64026247 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x640edc24 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x6411d377 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x6422b618 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6425fa17 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x64363d20 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x6437305a usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x644ad41a sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x64581d2e blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x646654df efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x6474a86b da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x64791061 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x648c5b86 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649625fb __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x6498ce9e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x64999da7 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64b5caa2 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x64b7772d regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x64ba0b63 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x64bdcaa8 hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x64cc4337 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x64cf76c5 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x64d0e797 nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x64d3a30a ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64e19909 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x64eed1eb acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f68aa9 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x64fa4796 pwm_lpss_suspend -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x64ff0ee7 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x650087e2 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650f7f7f fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x651870f5 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x65195676 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x6521a101 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6546240c ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x6572ba96 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x657fa699 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x6583c676 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x6589dd8d acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x65b56f3e edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x65b67e03 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x65be17e8 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x65c8ebb1 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65da0363 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x660613d8 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x660e27cc phy_init -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x66431227 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x6676942a rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x66799b9d query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x667b626f trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668e44d1 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x66ac0bc0 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x66b81c27 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66f43b6b iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x66f4f753 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x670ed7a5 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x672b6a2b i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67393edd devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6752aa5b iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x67675b86 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x67755a0d pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x6786a0af usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x6786e073 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x6794bc2d usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a66702 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x67ae03a8 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x67ce4d56 iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67de6807 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x67e341e3 uv_bios_freq_base -EXPORT_SYMBOL_GPL vmlinux 0x67e570a6 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x67eee01f wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x680e1d66 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x683b4154 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x68553d81 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x68585ee5 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x688202f1 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68981389 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x68c3549b led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x68f4a9a9 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x68f9077f reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x690d94f5 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x692b8be4 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x692dd863 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x693fbe9f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6944cbb5 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6952ab38 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x695d28cb mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x696709e1 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69babbf0 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x69d5df67 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x69dc92d3 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x69e1769a usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6a01b153 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a096a9d __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a42c195 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4c5a2c sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a658103 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a6dfa3b usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x6a716c82 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x6a813a39 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x6a817b30 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6aaebe50 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x6aca9d85 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ace803e crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6ad7f158 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x6aeb7fb1 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x6af8bad5 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x6afd4ec7 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b2818b3 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2c3409 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6b38e3a7 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b50efef pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b56d0ea ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x6b7465b8 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7bb23c nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b82df7d dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x6b9f6b77 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bcdae2f fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdee987 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6beac2ed crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x6c050d2e tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x6c09f900 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x6c24f0ac sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x6c2dcb1b serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x6c2f481b edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6c369072 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3b612b acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c47fbe2 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x6c49fcfe __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x6c4a241a pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c9c3664 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x6c9ea1d2 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cc6941e fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x6cdad578 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x6ce43813 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d29896f ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d38389e irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x6d509eb1 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6d65b1b4 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d78138b power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8f3cce devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d9fcbd2 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6da9af94 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x6db5edeb xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x6db95bd2 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6de00adf devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x6e052b28 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x6e200dfa __class_register -EXPORT_SYMBOL_GPL vmlinux 0x6e30f43c dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -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 0x6e9f1502 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0x6eb4c8cf regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x6ebd4f47 xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ebfbc85 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6ec286c6 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x6ec51fee pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eeb401a wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f0a1dc7 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f14a6d1 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6f16827f pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x6f25d488 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x6f343b4c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6f394989 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x6f508476 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x6f5171ca __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x6f70f79f devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x6f740491 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x6f7c128c vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x6f8b979d phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x6f93a315 cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb49169 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x6fd6049e fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x6fd78b84 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x6fd96c1b crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x6fe40a65 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6fec6eb1 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x700347e7 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x7004abf4 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7006d154 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x7028eca9 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x702fc01b __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x7047c4e8 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x70542185 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x705f1bfa uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70615535 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x709e3d03 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70bbeaba unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x70bc8059 subsys_virtual_register -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 0x70da1a4e crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x70f2fc60 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x70f3e45c ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0x70fdd851 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71119117 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7111d56a regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x711dd4f1 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x71331948 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7136c7c4 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x713ec95d nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x7143fb61 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x7148c386 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x71564acc firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x7156515a crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x716bf20f usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x716ce9b5 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x716e1eca tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x717d3462 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7198b0c8 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x719c179f inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71c40fa5 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x71ea1193 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x71f20fa7 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720052cc fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x7212f5fe transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x721e7622 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x725fb6e9 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727c45b3 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x729b556a gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x72ae26b7 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72f84cc4 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x73198e61 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x73314f65 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x7332ac94 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x73448aa5 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x734da0a7 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x734e2a14 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x73521935 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x736ab700 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738615d9 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x7389c3f6 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x7391f792 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c28685 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x73c81273 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x73ce213c devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d8cdd1 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x74007fb7 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x741ef028 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743d53c8 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x74413880 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x74421bca net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744c7614 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7453b3b3 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x74838ff8 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x74839d42 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7490aa12 gnttab_foreach_grant_in_range -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 0x74ce8b40 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x75052762 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x751093a4 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7520d267 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7547cc64 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x754bc02f of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0x757efc1f device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x757fd552 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x758e8f5d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759fdf40 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x75c53fd7 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75cda68a ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x75d67795 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x75dabdc2 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75f4f19d usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x7635b480 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x763fdfba bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7666363f led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x769ff06e nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x76a86e2b clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x76b6d301 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x76bb7b68 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x76c8c3a7 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e84b04 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x76e84bc4 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fe4aa7 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7717f856 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x77198cba ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x77243c46 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77437134 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x77467d31 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x774d233a wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x77546fbd tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a27e6 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x775f8d1e dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x7769366a ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x7770b5dc tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x778e76c2 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c199e8 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77d4eb48 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x780815b7 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x78106e4d pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x7817e5ef regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783ebc49 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x784797a6 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785af9bc screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x7861af06 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7867da06 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78812411 hv_stimer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x78ad55e4 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x78c67f5f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x78d871c0 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x78e81672 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0x78f6934f devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x78fd8a4a kick_process -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79592a89 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x796303bb power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x79728ff1 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x797ce7da blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x799ffe9f platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x79a51515 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x79a54fd1 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x79ab19df dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c82c26 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79eeb04c sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a0367c0 dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7a23e30e crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x7a3bb34c crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x7a3fa796 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7a5e370b nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a740834 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7a7ba7fe ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a7e85e9 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7abe6f41 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x7ac2f615 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x7ac5ac91 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ae0dcbc md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x7b0ea96f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x7b10c123 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1f3fde yield_to -EXPORT_SYMBOL_GPL vmlinux 0x7b29725b regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7b4f124a __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b571602 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x7b5951b8 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7bbd0d42 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x7bc32eff evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x7bc6e480 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7bd535fa __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x7bd53cd5 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x7bd9b90f clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x7be46e9c pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7be8bf2e pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7bef8fed led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x7bff796d led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x7c01f8ce bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c34f2ac rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7c374f69 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7c37586e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7c3b07fb ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x7c57421b x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c5807ab usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x7c8413ba xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc1031c crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ce20da0 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf007f2 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7cf16a50 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d1330fa dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d2500d5 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x7d3ca8d6 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5e9458 add_dma_domain -EXPORT_SYMBOL_GPL vmlinux 0x7d66b667 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x7d82ab27 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7dc694c1 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x7dd52b2b extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7de19be8 crypto_stats_decompress -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 0x7de76831 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x7de8e8ce __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x7df60c92 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x7df6aa2a tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x7e10b8cb bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x7e149504 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x7e1c051b dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x7e24b7cb usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6f2d5f ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x7e73455f dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x7e7ca742 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7e7d4f28 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eb1b086 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x7eb28007 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x7ebb93e5 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ebcbec5 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eebe86b crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7eed75d6 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x7eff8852 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x7f00a905 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7f0aa741 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x7f212420 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x7f269a1c cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x7f49b23b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x7f6c564f usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x7f729352 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x7f79bf74 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8620a9 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f9600d4 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x7f9de825 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0x7fa94628 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fac5dd2 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x7ff02157 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x7ff8df15 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x8007372b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x800d9129 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x80164d40 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x80193e5f __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x80461de6 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x804980bd param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807f98a8 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80956345 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x809f0cd0 cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x80ba242b devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dc8d2a rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x80deb9d7 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x80e4861c gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x80e7b1c9 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80fc2996 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x80fc66b6 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x81029c12 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811e9d46 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x8128172d pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815673d2 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8168c8bd irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x819403c9 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x819810f1 power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x819cf24d usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x81e3f149 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x81e56b1b genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x81eb9afd iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x81faf4d9 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x81faff2f devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x81fd0eb9 efi_mm -EXPORT_SYMBOL_GPL vmlinux 0x8204ae2e devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820b4693 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x820d0bcc dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x822f060c blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8230cf69 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x825855d8 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x825ccb38 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82917359 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x82a7f0b9 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x82bc87f6 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82bd00d2 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e932d0 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x82fdf851 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x832f0799 pwm_lpss_remove -EXPORT_SYMBOL_GPL vmlinux 0x83355b8b ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8344b4ba ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x834d9906 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x83596421 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x837ab44f bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838b6cd6 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x839167eb __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x83b7b504 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x83bb51e5 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x83be47e0 get_device -EXPORT_SYMBOL_GPL vmlinux 0x83c6e1e0 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x83f3dea9 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x840bec07 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x840d45e0 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84393425 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8445dd5b usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x849027dc unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x84ad0185 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b352f5 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x84bae113 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x84bc311d clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x84be6157 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x84beba52 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x84c31079 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850719e6 vmf_insert_pfn_pud -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851dc4e7 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x85390727 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x854674b9 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85475444 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x854e0c43 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85570251 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x85591f1b i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x8564871e pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x8565e5c1 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x856ac9a8 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x856ca8a4 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8583829f regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x8587a5a5 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x8596bc6e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x859f6298 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x85a0d49f pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x85a3ec98 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85a96c6e scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x85b18f7e mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85c30efc tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85cc3198 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85e7f5fd da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x85e9ca7d crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x85eae14b usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x85f01f1b ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write -EXPORT_SYMBOL_GPL vmlinux 0x861faea4 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x863e4063 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x863e700d bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x864519fc ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865a3a4c usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866581c3 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a3b739 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d33ba5 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x86e75183 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x86e99ab6 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x86f20c0e iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87051951 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x87085c3a dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87263c06 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x87321915 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x874a7e8c mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875d31d1 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x876d4541 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x87a6a507 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x87aabbed uv_apicid_hibits -EXPORT_SYMBOL_GPL vmlinux 0x87acba49 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x87b3b58a mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87b48b11 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x87ba2139 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x87e35609 hv_stimer_init -EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87e9f8cb tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x87fa7066 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x880cbff2 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x8810f5d0 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x881b6acf pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x883e9994 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x88471711 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x8856dc5c nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x88577e28 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x886430eb nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x887466a2 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x887c2848 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889346d9 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x8896b72f sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x889ea492 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b544e2 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x88be24ed vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x88c794af irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x88dde79b fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x8911c32a user_read -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8922586a __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8935a6ce arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x8938bcf3 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x8975208c dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x899e3ed5 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b73cb9 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bce88e devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x89c62c8d bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x89c6f512 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x89d29d06 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x89d3e474 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e967c4 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x8a1b09ff iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8a5d5633 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac6c70b pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x8acc9eb8 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x8ad397f7 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8adcd42b iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8add44d0 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x8aebcf0e generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x8aed95a3 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8afd3e2c dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x8b073cc2 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x8b0cb182 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b16a066 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x8b2eb2c8 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x8b3cf82c regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x8b3f11fa dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x8b4661b0 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x8b51a640 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8b58c8f8 device_create -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b6b75c6 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x8b7093c0 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b823d71 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8ba70ea5 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x8ba80a59 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x8bba3dfd platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x8bc24d70 pwm_lpss_resume -EXPORT_SYMBOL_GPL vmlinux 0x8bf930fe ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c219801 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0x8c276df3 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c642e75 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x8c673f1e gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x8c6a627e pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cb73346 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8cb8f43c serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x8cc193ec __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x8cc1b374 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x8cc56c00 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x8cf0298d regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x8cf1d320 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x8cfec19c dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x8d00fdf4 nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x8d15bc5c free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2537c9 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d602b05 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d98fa4f cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x8db6bee3 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x8dba4cdc __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x8dc15c2d power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x8dd2f7c6 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x8ddf5b77 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8ddfa059 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8de11f9b usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x8de49ed2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8dfc9234 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x8e06b59e gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x8e181fb8 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x8e462a75 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x8e499997 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e82c456 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8ea260e6 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x8eacbebe pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8ec70b33 flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x8ec9235f rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x8ed14060 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef8cdee phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x8f06bfca regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f19c234 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f27b483 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x8f2e88c9 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f35419b pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x8f4027b7 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x8f4772bf class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8f47cf07 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x8f558c3a pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8f5aeb43 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8f5fdf0a power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x8f642dbc fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x8f6952af clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f771ac5 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7d84e6 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x8f7e7917 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8f801d8d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f8f686e irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8f96125a pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8fa9b568 device_move -EXPORT_SYMBOL_GPL vmlinux 0x8fb44c87 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x8fb812af phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8fc20b46 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x8fd241af device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8fd90533 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x8fda61cc sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x8fdd9d1a ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x9009b444 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x900e3e23 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x9010821e __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9048aee5 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x90496b32 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x905ee632 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90777d9a usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x9084a7fe __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x908ab307 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9093f19e devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9098f0dc sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90c8fdf6 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90ddf840 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90e0b336 __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x911aeed3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x911ef89b find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x9123132f switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x91324dde register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x9135876a edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x91381944 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x9146ddfc regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x914aa0b7 hyperv_cs -EXPORT_SYMBOL_GPL vmlinux 0x914c0798 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x915d7132 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9166fcad regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x917f3e58 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x91988fa9 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x91a4dd1f crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91b3428a extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x91bf1f88 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x91d89386 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x91e106d1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x91f901e5 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x9204ae8d usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x920562c5 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x920a1c3b virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920d3923 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x921ec64f debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922f05d0 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x92347bad nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x923d9dba pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9248f056 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x926a0f6d mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x92787e3d md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x92bc884c syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x92c05cd7 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d4519f ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f310e9 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x930dfd80 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x933e5a82 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x93477179 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x93576750 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x935c2c5b blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x936b1e79 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x93763c8c serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93b93e8c nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e14e0c devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93eef70d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x93f82817 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x93ff52ab crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x94034a37 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x94114ed3 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94504a04 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x94522a05 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x94539d0d pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x94541d10 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x946779cf ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947401cb iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94909368 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x949aaefc md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a6a9f3 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x94c09360 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x94ca5b35 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x94e22f47 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x94e38012 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x94e6746c bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94fb69a7 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x95019eb4 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x95019f84 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950a5bdf xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9528195c usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x95289f41 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9548bd23 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x954b80a7 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x957a65fa uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x95853859 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x9587e5ef mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a0f37d sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x95abcac8 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95d407df pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x95d489f3 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x95dede6e iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x95ebe27e blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95efa1db pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x95f0d9a6 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x95f278f3 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x960881e8 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x9619cda0 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x962310d3 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x962420e7 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x9626a279 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x962bf05a tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x96368085 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x9646231e __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965e8601 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x966c0d4f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x967137db trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x96743a5d efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x9680e3ba iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x969e41de regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x96a02892 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x96bd16c7 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x96cc5e98 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x96d4cc44 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x96d594a1 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x96dba70f devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x96e4e054 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x96fb19ea bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x970225a8 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x9706dc8f crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x970d180b devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x970e1aa0 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97174ff3 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x971a7196 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x9720fe4c dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x9720ff1e fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x972d5538 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x9748289d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97561f1b genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x975f5640 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x9764c666 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x97871f3e power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9796b995 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x97999cda gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x979bdcd9 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x97b4d891 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x97bee09c uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x97d12355 hv_remove_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x97d4db09 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x97dc6f98 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97edc10c rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x98024df5 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x9818f736 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x981f4c89 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9829bbf7 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x982feb7a pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98365397 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x9838da3f regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9857702d rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x985cbb4a devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x985cc84e regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x985ea22c fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x986c99ea is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x988929fd virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size -EXPORT_SYMBOL_GPL vmlinux 0x989e7e23 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x98a15036 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x98bb1d0d vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98c8ca37 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x98cd42c5 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x98dfed8a sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x992fde78 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x9936519d elv_register -EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x99599c09 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x997dc480 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x99861157 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x998bb42e dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9999977f perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key -EXPORT_SYMBOL_GPL vmlinux 0x99d58064 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x99e005d5 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x99e600c6 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fd1ccd ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a17a1d0 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9a22dd0c crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9a2342cc __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x9a2e0645 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x9a41e11e acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5e18fc iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x9a69cb42 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x9a8d326f wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9a9eef55 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9aafef1c tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x9ab5110b pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x9abdb422 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad44321 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af3d1d1 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x9af9d0c9 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x9b03d048 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b0ef5aa devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x9b24ba9e tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x9b37c2ff watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9b46eacf pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b6075ba get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x9b6e8bc2 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x9b728c35 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x9b75ffed usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x9b7c503c tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9b8338a9 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8c5a33 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb732f0 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9bcf5336 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x9be4d2bd xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfde3ad balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x9c024fb8 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x9c159176 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x9c25339c inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x9c2a17f5 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x9c3340fe pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x9c702060 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c91d6ba apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x9ca76f1d xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x9caf361f cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x9cbeaee7 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc8f0b6 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x9cd39aa5 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d20bac7 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9d40cec0 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9d4adcc4 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d54ab45 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x9d6943dc console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x9d96f910 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9dc36f9c vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9ddd574a acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e18e8be fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x9e44c529 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4e106d dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9e526c1a mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x9e5c2912 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x9e6e85d5 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x9e7f4f71 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x9e85ab0c fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x9ea0f0c2 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x9ea23a1d dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9ebd0b78 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x9ec6e9a2 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9f47ead5 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x9f50af48 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9f6b37fc blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x9f71bc72 uv_bios_set_legacy_vga_target -EXPORT_SYMBOL_GPL vmlinux 0x9f81c696 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x9f84a279 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL vmlinux 0x9f8c64d8 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x9f8e2ded xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x9f93d6b8 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x9f996609 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9f9e6203 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x9fa6e47d get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x9fa7a7f6 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x9facce79 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0126bb4 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa0286ad5 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa02bebe7 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xa02c5882 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xa031beb4 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05e7502 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xa0601e11 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa0746561 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa0813f9b ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xa086f094 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa08b6cca pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xa0a829df vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xa0bbbae2 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa0c86ae6 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xa0cae446 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0da45a1 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0f0a3a3 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xa0fbe4e5 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa107ce61 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa123a34b ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15b33bf devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa15ca5df crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa173b033 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xa1775dab component_del -EXPORT_SYMBOL_GPL vmlinux 0xa178e861 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xa17b8610 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xa185272b usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xa18a806d pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xa18f91f8 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xa191bb95 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xa1958a5b regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa19d55ef phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa1d33303 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1fc6f5b ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa225c5d6 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xa22e9099 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xa240cb6e ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xa244cec7 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xa24f7bc3 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xa25e97fd crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa273896d bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa27d512e dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa282125f __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xa28694fd regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa2a030a2 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa2b8f2ed loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xa2bbd731 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xa2c0d823 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa30ee97a iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa30f6363 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa32585e0 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa349e247 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3545296 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xa3636ce9 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa3662308 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa39f8739 gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3ac0810 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e89ace kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa3eb2840 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fb7e70 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa421e335 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xa42ea9d9 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa43462f4 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xa43c53a1 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xa447baea vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44e48db alloc_dax_region -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 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4b71727 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa4b8de1c subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa4c1cfa7 blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xa4c3d418 device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0xa4dd9d71 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xa4fc402e remove_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4fce01d pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xa5038898 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xa506cea1 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xa5120659 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xa5128838 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xa51d1d7d pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xa521e549 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53451de thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0xa535a0ea nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa53a09d0 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xa5477f4a crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xa54cf39f fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xa559417c unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xa559f759 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa57c9bcb crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa586fcdb uv_min_hub_revision_id -EXPORT_SYMBOL_GPL vmlinux 0xa5878443 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xa5b842d8 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5bfe2bc crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e4a2bb fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xa5ec313d sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f0d809 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xa5f5a14e pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xa60a1d53 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xa60bdc36 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa62b7d0e regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xa63a9990 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa657a0df fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xa6643a0a pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa66c25a5 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa68a8531 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xa6aea551 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b0db30 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b49347 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa6b4abf7 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa6bd26e7 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xa6cb33bb kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa7002d68 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70a6251 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa7280667 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73eea91 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xa769dab2 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa772703a tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa774ffc2 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa78c9d37 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xa79fc85a regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa7a5dd2b pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa7b06d1d irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xa7c2dacb scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa7dd9814 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xa7f93173 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa8173a8d input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xa818d01c __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa839d510 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa84e492d task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa87b1e07 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xa88617f3 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xa88f2df3 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xa8a2f983 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xa8a37459 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa8a3cdfe component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xa8af508f edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa8b17be7 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xa8b8d4d9 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8c76c5d dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa916a6fc cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa917a071 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa935ce41 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xa9399cff gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xa9492e72 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa95e422c fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xa974bff5 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xa9767aa4 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xa97d06c9 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xa9825ea1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa983ffc4 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9ab662b clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xa9b65de4 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xa9d6c10b extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa9dd33e7 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ea3ebb kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xaa0046a6 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa1af07a regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xaa206002 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2e2b59 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xaa4123fc nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa82399a device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa8ffb0f tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xaaa681b5 devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabf04d9 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xaac7910c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xaaee2492 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xaaf602c1 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xab0dda0a serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xab13838e usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xab155732 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab224878 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0xab2bf80c powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xab582f6c ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab760075 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xab77b33e ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xab7b4a22 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xab8bc686 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xab8cd7bf pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabb5187b blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd186bf pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xabe22585 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xabf4b143 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xac00a0b4 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xac00a982 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xac404a72 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0xac4565ab inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xac57a1c4 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xac622ca5 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xac63777f clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xac685662 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xac710e19 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xac795511 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xac7f5fd0 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac81d670 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xac87f38d devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0xac909ae2 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbd3d81 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xacd02389 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacd5b9a2 blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0xace8f25b regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xacf00662 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xad097f46 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad0fb451 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xad114c5f dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xad134b8b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xad2e2f45 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xad542fd8 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad805871 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xad97603d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadab5297 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xadb50966 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xadbd8aa5 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae2f083a nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xae36d657 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3dd4cd spi_async -EXPORT_SYMBOL_GPL vmlinux 0xae431784 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xae59ff99 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae755370 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7f3308 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae845f61 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xaebccc79 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xaec111a5 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xaec6e229 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xaeca9494 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xaed5680a powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xaed7a516 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaef6fd40 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xaef74ab4 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf189684 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xaf1c9f1d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xaf2032d7 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xaf3f1ca1 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4c8b80 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL_GPL vmlinux 0xaf660daf ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xaf692d9c sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xaf70e088 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf8231cb fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xafa32a83 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xafb407ad iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xafc65b62 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe3b945 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xafeb1935 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xaff3f66f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xb01457c5 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02aca9f pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xb040fa5a pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0xb0464191 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xb04a89aa devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xb08fc94b kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b9938e udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0xb0b9998b fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xb0bb0472 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0daa08f gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb1013cea blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1116b55 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb127dbf9 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xb1416937 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1510dbc devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xb1520c8c scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb15fc370 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16c1e41 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb182902d rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1850819 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb193ebd9 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xb1a503d9 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xb1b13917 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xb1b3d323 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xb1b705f9 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cb2626 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb1f2007e inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xb1f21e2e xen_set_affinity_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xb1f6bfc3 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xb1fea06a task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb1ffeff4 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb20f7c82 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb212bc83 direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb23566f2 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb23be634 virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb241f434 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb25ebb0d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2755b8a fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb281cb9f debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e9c290 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xb2f125a0 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb2fd5445 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30e39ac sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xb30e8f98 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xb30f2a44 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb311e86b crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xb31426d8 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb33d077c device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb34d40cb pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xb34e9776 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb35e4f2a iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0xb3714757 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xb3768e34 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb378fbd7 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb384122f fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xb3872232 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xb3accdee serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0xb3ca4cdb regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb3cd54e5 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xb3e50f5f shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb3eed272 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xb3f1704f ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xb3fc3065 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb405b6d4 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb40d27b9 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xb4300867 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb43fe219 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb47d5548 cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xb4a319a9 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c5b87d fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xb4c7d797 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xb4cfd21e regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xb4d36985 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xb4d59a6f arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xb4e56ed9 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f1e323 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xb5005a0d ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50e1f27 __uv_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5160d65 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb54578bc ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb558f86c regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb55de04e ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xb58abbea __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xb58d84cc skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xb58f4fcb balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xb5a04708 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xb5a49480 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xb5a58349 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5c111db xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb5c19471 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb5c5381d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb5c8e1e9 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xb5ebb81f do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5eff132 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb5f92d50 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6296f0a irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6372199 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xb64aaa98 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xb64b9337 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xb663d1f6 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xb6642c8a trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb686353b ping_err -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb690c3ec dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb6a8963a pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb6b9bf2d usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xb6ba0bca ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb6c9957e irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xb6ca2e15 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f71aff __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb6fcfc55 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xb70a4af3 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb74c125c to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xb75e350d pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb771b3f3 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb79511e2 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb7bb5743 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xb7be19d9 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xb7bf8f2c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c89db6 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fab4ac devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb845d724 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb8460def crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84763d1 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb848002b dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb853c2f7 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb85ebb04 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xb868bff0 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xb875ddf2 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb87e02b6 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8955440 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a21192 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xb8aeee96 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb8b0e654 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8b58a27 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xb8bf25b2 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xb8c00d0e skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xb8c6e014 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d5cd86 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9178cc9 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xb91900e2 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xb928a97e gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb92ce16f regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xb9318174 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb93a0d64 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xb95eafdd dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xb96a51e0 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xb977f42d device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xb9a42fd1 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb9b99f72 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c18d24 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9da96ac of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xba016a3c __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba1d6f14 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xba25e406 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xba2a8f18 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba461f0c irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xba4e4229 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xba6369ce cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0xba6dd2dd usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xba978e76 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xba984d9b acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xbab65443 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabef230 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xbadfb46b crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xbae8cee7 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb25a5c1 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xbb301fa8 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xbb350a7e bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xbb565ec3 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbb60128c serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb6fb17d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb795a99 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xbb93ef5b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xbba3e4b9 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbc2ee27 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbbc631e5 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xbbc687cd __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xbbd17992 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbbd3f5df sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xbbd658dd skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xbbde8862 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbbe41275 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xbc0a4b4d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc149ec5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xbc17454a clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xbc19cc51 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xbc1c14e1 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xbc46507f crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbc524ab2 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc55e591 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6c9dab virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xbc85d978 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcab3fa4 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcb31305 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcbf0bd9 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdbf86a crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbcdc150f md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbced49ab sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf26670 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbcf9b761 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbd125b60 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xbd1bd1f0 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xbd39179b pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xbd3a4600 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43e14e regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xbd498b38 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xbd551bac ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd649c75 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbd72a741 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbd87da28 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xbd8cb73d serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xbda3fb46 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdd1594a tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xbde54ec2 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xbdf8f7ef crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbe0bf601 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe19f432 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xbe1a205b xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xbe23428d hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe2c9a26 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbe32537b dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xbe44260b devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0xbe4826ec tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xbe48f06a __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe53da50 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7c79e1 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea509e7 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea702aa crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbeaa0630 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbed076e5 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xbeedb5e3 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xbefd987a serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xbefe58e3 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf09387b input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xbf16b477 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xbf241e36 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xbf376c16 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xbf3d02c2 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbf4dc4f7 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xbf57b78a adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbf63844b virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xbf6d775d bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xbfa6257d skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc5ed85 pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0xbfd0c953 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff9f3a0 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xbffce6b2 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc00a9504 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xc00ecd18 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xc0110c85 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc01df0cc blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xc0464b2f tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc05b901d blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc0768648 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xc0a2471c xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0bcc79f mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc0cb83af ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xc0cf8435 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xc0d96eff phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e93c71 put_device -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f92b25 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xc1050ba9 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc115105c ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xc125ed73 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xc13f2b00 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xc1585f00 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc1634e8d security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc1665b36 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc191d69f set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc1af9c3a pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xc1b77c6b gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xc1bb6dd5 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1f36304 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc20f0fdd ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22ae409 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2417195 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc24cbae4 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xc259bc00 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc25b2e07 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc268059a irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xc26c9089 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xc276d8b6 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc2849330 devlink_params_publish -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 0xc2952136 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xc2a02916 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b57620 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xc2bab455 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e45c5c strp_init -EXPORT_SYMBOL_GPL vmlinux 0xc303e28c acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xc30d87d1 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xc311f875 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xc3159c49 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc348107b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xc36bb2e2 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xc377c4ec intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0xc379cf50 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc387220c rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc38f4bc0 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0xc3adee69 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xc3c149f9 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xc3c1f9d4 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3d97c98 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3eda7e9 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc3edf6aa save_fsgs_for_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc3f18674 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xc3f29355 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3fcb964 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xc3fe54cd device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xc3ffa848 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc40504e1 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xc406a6ab cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc4136c9d gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc41d1af4 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xc41f3c02 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4397db6 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xc43bff41 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47842ba fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48c62bd clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xc49097b6 is_uv_hubless -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xc4afe3a7 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xc4bc72e0 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xc4cc09a9 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xc4d583dc nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f92842 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc526124d arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0xc53fd930 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc57f08b6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc5996c8c pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc607e430 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xc60c9270 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xc60e2eda rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xc6108925 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61fa859 xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xc6259533 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xc6270537 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc62984dc devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc64d59c6 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67707c2 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc6956b6d crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ac26f8 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore -EXPORT_SYMBOL_GPL vmlinux 0xc6bf5eb7 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xc6cbc569 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6ed263b sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc7068a70 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc70765bb pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xc70dc57a gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xc7106085 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc727bc7e crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xc739a613 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xc742453e get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc7449f86 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc74d4cfa __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xc75d91e8 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xc763bc7f usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xc77d5e68 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xc7827779 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xc798e522 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xc79e53e3 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a1bc5a crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e77fd9 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xc7f727a9 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc80110b7 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xc813d384 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xc81f19f3 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xc8273630 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83728e4 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc853a73c dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xc85629fe debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc86a1043 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8aa5669 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xc8adaeb4 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8aedf33 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xc8b8408d netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8de0283 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xc8e55dd7 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc8ebc234 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95b1195 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc95d0756 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98ddbeb badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xc994f91e bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xc9a9bdec udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc9b7a6a2 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xc9bbfcde __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f336c5 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xca07b05d irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xca2d743c pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xca3dc4fb nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca413a47 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca61f75f serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xca63b748 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xca69b5f4 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xca6b57d3 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca891e49 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca8a9fb7 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xca8e076d class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaa80bb2 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1fec87 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2c2bab serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xcb3240a8 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb60a21b fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xcb622543 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xcb67d686 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xcb6dc4ff device_register -EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcb99509e fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xcb9e36b6 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcba0d227 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xcba6d555 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xcba82e8d xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xcbb5cceb fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcbb61aae wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xcbc78a75 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5eb38 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0xcbfa4c75 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xcc0a5dfb platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc2f61a8 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xcc46d982 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xcc49f4aa devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0xcc4e59a1 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xcc5463a4 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xcc6a17e2 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xcc7e7cf6 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca3078e sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccddbf72 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xcce8652e md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xccef6c1d tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd05a6d6 devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0xcd174215 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd56e125 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0xcd5ac8d8 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xcd6ceae0 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd76f72f pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xcd7d02b8 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -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 0xcd9e80a5 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xcdad801d xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0xcdafd1ba tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbaff45 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xcdc0e1c4 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xcdc2d7df gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd6005d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xcdd82381 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xcddc188d handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde2f715 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xcde401bd balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xcde7441e alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xcdf3f205 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0efe5a virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xce148517 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xce26ca0b xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xce275272 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xce37818a disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xce3df9ea powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xce407b57 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xce6271d9 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xce651fbb rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce98e05f udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcea67cf0 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xceab352b get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcec9063d tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee8698c thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xceeee768 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xcf0c6bfb tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xcf1d2c47 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xcf2feb6e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf3577f1 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xcf4bfc1a __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xcf4f48e3 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xcf520621 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf643488 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xcf652200 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xcf6715ca dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xcf8ce35a tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xcf9bba25 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xcfa52c45 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfce30ea gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfee0d3c unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0xcffc74d8 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xd00c2be5 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04bb888 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd0603889 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07c6916 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xd081dba1 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0ae98f7 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0cbccf2 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait -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 0xd0e74f7e devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd122854b ping_close -EXPORT_SYMBOL_GPL vmlinux 0xd14346e5 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd1607c3b user_update -EXPORT_SYMBOL_GPL vmlinux 0xd16fc1ba inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0xd1a5f7c5 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xd1a68916 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xd1af28a4 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cf873a sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1d5958e fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd1d7f107 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xd1e7cbc9 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xd1f0c21a _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f3f4f6 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd1f9b273 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd21025dc irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd222deb8 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xd2264040 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd266bee9 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xd26cde54 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27bdb26 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd288a579 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd28c172e device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xd28cdbe1 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd28d0cc7 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xd28d887b usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xd2a0b0d6 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2c020da rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2cda206 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd2dd6ef8 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd2e23959 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd2fb813f ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xd2fd2b38 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd30d6cea cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xd32a2cd3 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xd334560c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xd33dacf5 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xd342741f blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xd35f608e nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd3775fe2 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ac5e94 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3bb5faf cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xd3ccc994 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd3f348d6 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd3fc474d phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xd402d97c devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4048716 split_page -EXPORT_SYMBOL_GPL vmlinux 0xd418aab7 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43d3e43 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd43d96ef __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd43fa74f dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd4702db5 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xd47113b8 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xd48ecaa2 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd492d010 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xd4bd5ea2 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4ced090 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xd4d299f0 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xd5269050 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd53313aa virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd560ddb1 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xd564dad4 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd56b74b3 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0xd56dcfaf devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5cb6027 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xd5ce15f3 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xd5d5b733 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5f53d09 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xd5fa7f29 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xd61a845e ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6200360 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd63c6c29 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xd64340e3 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd64ee231 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd660d66f ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xd66172ae tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xd66d430e virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67383bb dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd673e4a1 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xd694e0e9 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xd699446a vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xd6a03ee7 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xd6a6fbf8 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0xd6ad7159 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6b01c2c spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xd6c76103 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xd6c84c2a iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xd6cb339e find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd6d7ca15 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd6ddd301 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7065d5f ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xd711a15f clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd71df1b4 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd746bff0 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xd7568e19 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75baa58 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xd765ebb7 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd775cf21 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd783a1c3 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xd7933589 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xd7bf7209 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7cefd52 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xd7d151fa ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xd7dae88e flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0xd7ded030 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xd7edb7ac rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xd7ef9d7d perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xd807760e __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd819113d verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd84427dd mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85abfd0 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8655db2 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xd865bc27 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd89c22da pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xd8a34c8e open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xd8b43e8b fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xd8baec13 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xd8c5aaa4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd8c8607a security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xd8cf7504 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd8d1aaf6 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xd8e54085 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd8ec819e devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xd8ee382c pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd8f16a09 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd8f3c01f tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90c3df3 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd932de87 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd93a8b33 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd9588b11 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9824cf9 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd985756e wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd988cd82 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xd991f143 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xd99837d6 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xd998b96b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd9b57455 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd9bcbe23 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xd9c3bd92 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xd9c4832c __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd9d3c46a dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd9d8c455 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xd9ea99b4 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f49353 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xda1b2858 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda299f24 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xda2c5614 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xda2da379 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xda39a099 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xda52dea3 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xda5d1677 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xda643f6a iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xda7f0cad pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xda8ccfa9 dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa1b7ea tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xdaac88d4 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab67967 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xdaba15ff devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdac37e50 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdac87e3b regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdad1eb62 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xdad5df9f mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xdad9f472 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xdaed14db devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdaf2e292 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xdaf48f82 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xdb095979 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb2c8f62 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xdb3c776f da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xdb3c963e da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xdb4de3fa __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xdb57dbf2 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdb5acd1d tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6d776c blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdb7b111f cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xdb7d9e22 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xdb802dfb do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb99798e __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xdba0553b acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xdba6c10c exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xdba74a68 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdbd97867 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdbe5e884 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xdbece28e transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc15e4b1 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdc1bebf3 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xdc2fad01 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xdc3b9cb5 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xdc4074a2 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -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 0xdc96f66a nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcae1583 cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova -EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xdce6dde6 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xdd05fcb4 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd11f220 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xdd23764e pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd2a8393 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd43472b pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xdd473d54 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd68ae70 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xdd79c456 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xdd7b84d9 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdd7f5df4 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdda214fa sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc29228 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xddc43439 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde09bdd dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xdde5d157 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xdde975a6 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xddfd88c0 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xde03c8c8 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde0c3473 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xde0d7d39 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xde40d5cc fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xde4e07ed regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xde6081e9 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xde6250b2 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xde63ca8a fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xde6eb5d5 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde965f60 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xde99160b smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xde9f1fba tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdeb32e88 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xdeb38e37 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xded51b68 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xdf0c44f9 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf20963f acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf31e2ad gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xdf392fff cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf6e6426 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xdf7b2ef7 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xdf7e69d5 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfa061a4 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfaed6a1 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xdfb9b5c3 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfdfaf03 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xdff953fd blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe009c1c2 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xe00f21d3 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xe019b0db devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe01b219f tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe040481c fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xe040fa00 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xe0431f1e clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xe04db5e3 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe07beffe rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xe085227b __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe098be5a iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xe0a01f38 component_add -EXPORT_SYMBOL_GPL vmlinux 0xe0a1f7a9 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bb0d8a platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0bea9a9 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0dea9e9 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe0e32c39 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xe0eb1f19 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0f6cd7f thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe10a9cc2 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe13b16a8 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xe1472438 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xe189de1a virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xe1925e39 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xe1927c8b regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xe1956ce8 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xe19d4001 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xe19f35ff irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b11915 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xe1b37a9f irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xe1b382d0 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xe1b44696 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xe1ba992f smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1cc4ed1 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xe1e63df7 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe1f6a9d3 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe1fd30ea iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe212d775 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe235adae xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe237eca2 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xe279fa86 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2cccd4a tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d8dc1f regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe35247c7 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xe35af85a pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xe3754f61 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xe3808b79 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe38bbc97 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a8c6ef mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe3b093ff cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bf0e63 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d057ed lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xe3d164b4 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xe3d820f4 gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0xe3f71d4a spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xe3f9419a pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xe4046366 __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe407cf15 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40fd76d fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe4242ea8 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4379e9a crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xe4383105 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe48ff27d ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe4918080 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49e26b9 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe4a0f97e fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4cd153b led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe52e97ae __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe53b40bd irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5557123 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe5609547 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe5826b51 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a11891 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe5a7f3b2 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe5a8c16f badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xe5ae4491 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe5d3a450 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe5e6c8da devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5eab5f1 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xe5ef8a78 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe61e4a13 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xe621e735 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xe623589e xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe62bba66 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xe62f6497 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe6432047 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe6472779 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe658ee40 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xe66dba53 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xe6885ec1 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xe6951a11 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xe6a04ac8 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe6a14f29 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe6c4f9e0 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6ef901e perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xe6f0a564 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe711434f do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xe7191d3b ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe724051a addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xe72c4ef2 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe740b377 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe7597c84 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe75db4fc rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xe7607705 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xe7678f9e handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe77c11d5 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe77dd7bb pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78820b8 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7ad59b7 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xe7b2c296 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe7ba5f48 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xe7bb53f1 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xe7c70526 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xe7ca033f devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xe7cc4293 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dcc5b0 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8034205 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe80d14a9 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe818aedc inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe818ef01 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe81f33a2 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xe8212567 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe838843e dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe839286e device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe84621bd pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85c2281 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xe85e6d8c dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe881865a devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xe881fc6f rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xe88abe76 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe88da389 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe891fa2f agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xe895eee5 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe8a90df3 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe8aa18db fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe8abae2f xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xe8b32891 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe8c2d062 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xe8dcc28a irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe8ea971c usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xe8ec3e5f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xe90b9eed bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xe9101465 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9444c6a tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xe9717373 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xe972403c kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xe973e29f ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xe977046b irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe98d12bd tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe9a7820a gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe9bd3eb1 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xe9bff0bf ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d2f11b crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea190469 cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0xea1a5015 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xea33ab67 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xea3b247a i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0xea543eb9 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xea5624e4 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xea5a0f70 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xea5fe034 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xea6b38dc __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xea884114 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xea9611be xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xea975369 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xea987083 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeaa156de mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xeab4b886 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xeac2d80a rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xead2c569 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeadd19ee flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae45842 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb1334b5 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xeb1b0337 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xeb1c5597 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xeb30cc4d fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb3ccd30 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xeb5752f3 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xeb58214b usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xeb60e83c pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xeb66d399 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8972ff pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xebbe60d8 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xebc17f8d rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0xebc4480f register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd94cce __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xec08193a ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xec0f7552 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xec1628e6 pv_info -EXPORT_SYMBOL_GPL vmlinux 0xec31b30a pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xec520d4b cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xec58f4d6 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xec5966fa gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec639669 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec6f5531 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec9f2a9c blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc82a73 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xecd1777a mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xecd184f3 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecde6b11 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xece509fd sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xece61d32 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xecf27912 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xecf8bb64 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xed003311 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xed0cd804 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xed14d512 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xed1a732d pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xed20d46f devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0xed5c3533 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xed6057fe devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xed6b53dc da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed886497 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xed8dd1d8 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xeda3ed53 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xeda3f5f6 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xedb8e35a device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd230db nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xedd8801c event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xedd8c3ef device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xeddb13cc irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf1c698 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xedf3b314 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedf61be4 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0xedfeb318 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xee06b6f4 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xee0d648a tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee197a50 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xee33cffc xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xee352f9c sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3a514d ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xee47593b regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xee4ea820 ohci_hub_control -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 0xee86c401 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0xee8ef0d8 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xee8ff374 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xee96f180 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xeedbf1e3 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeefaf642 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xeefea4d2 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xef1c64ae gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef291644 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef34cafc clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xef3aa903 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5666ae wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xef6aa503 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef70bd7b file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xef7982cf phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xef7d6f17 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa431d4 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xefb70e1b dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xefbf2b30 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xefc261e4 skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xefc901ab phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xefd8278d tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xefe9b027 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf00ad851 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf01a93e8 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xf01ade3c gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf0241c15 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xf02f0609 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf045d29b iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0xf0460bdb led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xf04a8416 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf0554a40 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xf0575707 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf05df4e7 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xf05f3c94 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf070a767 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf0a3ead0 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xf0a891e6 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0aa43dd rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xf0afd198 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xf0b82534 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf0bc059d devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xf0c6fbc1 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xf0cd8a23 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xf0dded7f dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xf0e6b343 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xf0e9d3a4 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xf0f2450d of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xf0f4d4f5 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf140f7b4 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xf150e665 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xf1540aba relay_close -EXPORT_SYMBOL_GPL vmlinux 0xf15f4f0e pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xf167cd60 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf199fc7e xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xf19b2ac9 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1ad6632 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xf1b1a33f crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1b3c4b1 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf1cf8f40 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xf1dbbf7f gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xf1e12ebe regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xf1e7a428 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf1fe873c pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xf20064bd dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xf2113ff6 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0xf2127abc hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf229f579 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xf249f641 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2514d4e iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28c6c37 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xf29d885b dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xf2a6f3f3 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bfa5f1 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xf2dfc41d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xf2ea3be2 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf2eb38f2 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xf3005745 scsi_autopm_put_device -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 0xf318695e sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31e23e6 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xf32116d5 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf321cbcd spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf340a0a2 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xf340a95f crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf34e6a6e crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xf3514f7b debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35221e7 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xf37c60de __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf394646a iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xf39508ad vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0xf3954f31 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf399ce69 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c14c64 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xf3e807d5 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf3fa2602 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf4538284 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xf457a267 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf4693a66 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf475942b usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf47e020f cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xf48ae658 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf48d885e blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf49c8b45 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bde556 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf4c69a48 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xf4da376d device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4dc49de blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xf4f40245 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xf4f4dda3 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xf5269722 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf53eeca2 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf551a12d xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55c64b1 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf55c7032 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf55ea024 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xf561d269 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf57881a8 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf5873826 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xf589b5cb sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xf598edd5 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ad9977 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xf5b4f686 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xf5b52441 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xf5c7d3bf to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xf5ca5422 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5d84523 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xf5e3ee99 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf617b45c gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate -EXPORT_SYMBOL_GPL vmlinux 0xf6238376 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf62a9c81 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf67c187b xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ac3f59 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6b4329d regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xf6cb2bfb device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6ccd2cd fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf6d7c64e bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xf6dd4b23 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xf6e05cd6 sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ecf13e skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf70c195b tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xf726b77b wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xf72b5f4d pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xf72c8b35 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74b58aa pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf75f8836 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf78e1612 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf795dfca devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xf7b72338 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cc12cd devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xf7e09eff perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xf805c20b rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xf811cf6a ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf838a4da handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xf852e55a sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xf872d6b7 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf873ad00 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xf8748215 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf880d211 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf883ec0b fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xf8ac27c2 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xf8c6c319 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8cc0e7c devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf8ce6c0a ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf8d12909 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xf8e02db5 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f61d30 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf90f2e71 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xf9245f20 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93271b3 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf936348e usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xf93afe3c dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf94c0d7f platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf962ba9f sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xf96824f1 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xf97119fa fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xf9758623 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf986b1d2 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9adeb45 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf9c1105e pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0xf9cea855 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xf9d37e00 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xf9f74e97 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xf9f9b301 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa203924 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfaa4afa8 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab99922 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xfacc2179 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadf61e3 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xfb2eb1ac pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb36a667 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xfb4ca082 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xfb5788a1 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xfb60ca09 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7b6124 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xfb830a5e dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfba5c349 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcaf1cb __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xfbce8698 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xfbd410b5 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xfbd92f00 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xfbf7ae08 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc16160c sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2fff17 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3f1067 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xfc4faea4 find_module -EXPORT_SYMBOL_GPL vmlinux 0xfc58912e platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xfc6db49e strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc768b84 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xfc784110 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0xfc807d2a transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfc830c05 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xfc9d96e8 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfccdb736 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xfcda2c7b i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xfce5b6d6 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xfcf38a88 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xfcfb5e2a wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xfcfd10fa devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xfd166441 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xfd1dfd99 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xfd296af4 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xfd31237f edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xfd33d4fb irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xfd4a76be acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfd647c39 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7b9474 rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xfd8578b0 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0xfd881c34 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xfd8af550 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xfd8ec095 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xfda18761 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xfdadf6fb __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdcf0d78 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xfdf1f11b generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfdfde635 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xfe0df1f7 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1021ff fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xfe169d65 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xfe255007 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4b7534 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfe584abd skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xfe5a1de9 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xfe5f9324 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xfe675926 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe7ab674 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xfe8e78b5 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee5d4d2 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef531c5 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff4fce12 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xff5a2547 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff7741a2 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xff77ef1c ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xff7c6db1 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff9dfdc5 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa2e893 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xffa6223f dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc42489 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xffc7f9f2 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xffc88172 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xffcbdbdf sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xffd76387 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xffdf9f2c devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xffefd80e crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xfff8f2b4 crypto_ahash_walk_first -USB_STORAGE EXPORT_SYMBOL_GPL 0x0216f3e7 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x10233fc0 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x11296f5a usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x12392d4f usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1296ea35 usb_stor_transparent_scsi_command 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 0x249fe635 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2a87b014 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x41011796 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b90f0d0 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6ad8de0a usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7290e517 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x76ea1faa usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7a390006 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8c08e608 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x94f4ea8f usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa24f62b1 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa3bab715 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcfb7a9dc usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd16f73c5 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf0fe9922 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf43b9abe usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfd34b76f usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfd7426fe usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfeb8cda6 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/generic.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/generic.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/generic.modules @@ -1,5506 +0,0 @@ -104-quad-8 -3c509 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_exar -8250_lpss -8250_men_mcb -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -BusLogic -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -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 -act8865-regulator -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv7511-v4l2 -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -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 -ahc1ec0 -ahc1ec0-hwmon -ahc1ec0-wdt -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak7375 -ak881x -ak8975 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -ambassador -amc6821 -amd -amd-rng -amd-xgbe -amd5536udc_pci -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apex -apple-gmux -apple_bl -appledisplay -applesmc -applespi -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arcxcnn_bl -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 -asb100 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asus-laptop -asus-nb-wmi -asus-wireless -asus-wmi -asus_atk0110 -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -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-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avmfritz -ax25 -ax88179_178a -ax88796b -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 -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs-drm -bonding -bpa10x -bpck -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -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-j1939 -can-raw -capi -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 -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-pltfrm -cdns3 -cdns3-pci-wrap -ceph -cfag12864b -cfag12864bfb -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha-x86_64 -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8505 -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -chromeos_tbmc -chtls -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cio-dac -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-cs2000-cp -clk-max9485 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5341 -clk-si5351 -clk-si544 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -contec_pci_dio -cops -cordic -core -coretemp -cortina -cosm_bus -cosm_client -counter -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpu5wdt -cpuid -cpuidle-haltpoll -cqhci -cr_bllcd -cramfs -crc-itu-t -crc32-pclmul -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-pclmul -cros-ec-cec -cros_ec -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_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_kbd_led_backlight -cros_usbpd-charger -cros_usbpd_logger -crvml -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -ct82c710 -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da9030_battery -da9034-ts -da903x -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_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dcdbas -ddbridge -de2104x -de4x5 -decnet -defxx -dell-laptop -dell-rbtn -dell-smbios -dell-smm-hwmon -dell-smo8800 -dell-uart-backlight -dell-wmi -dell-wmi-aio -dell-wmi-descriptor -dell-wmi-led -dell_rbu -denali -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -diskonchip -dl2k -dlci -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-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dm1105 -dm9601 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dps310 -dpt_i2o -dptf_power -drbd -drm -drm_kms_helper -drm_mipi_dbi -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-edma -dw-edma-pcie -dw-i3c-master -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-pci -dwmac-generic -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 -echainiv -echo -ecrdsa_generic -edac_mce_amd -edt-ft5x06 -ee1004 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efi-pstore -efi_test -efibc -efs -egalax_ts_serial -ehci-fsl -ehset -einj -ektf2127 -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -erofs -esas2r -esb2rom -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -eurotechwdt -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-fsa9480 -extcon-gpio -extcon-intel-cht-wc -extcon-intel-int3496 -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 -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_ddc -fb_sys_fops -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -floppy -fm10k -fm801-gp -fm_drv -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fschmd -fsia6b -fsl-mph-dr-of -fsl_linflexuart -fsl_lpuart -ftdi-elan -ftdi_sio -ftl -ftsteutates -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_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 -gasket -gb-audio-apbridgea -gb-audio-gb -gb-audio-manager -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 -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-clmulni-intel -gigaset -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gm12u320 -gma500_gfx -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpd-pocket-fan -gpio -gpio-104-dio-48e -gpio-104-idi-48 -gpio-104-idio-16 -gpio-adp5520 -gpio-adp5588 -gpio-amd-fch -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-bd9571mwv -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-f7188x -gpio-generic -gpio-gpio-mm -gpio-ich -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-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-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-siox -gpio-tpic2810 -gpio-tps65086 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-vx855 -gpio-wcove -gpio-winbond -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-ws16c48 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpu-sched -gr_udc -grace -gre -greybus -grip -grip_mp -gru -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hd44780 -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -hecubafb -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi311x -hi6210-i2s -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hio -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp03 -hp100 -hp206c -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -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 -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hyperbus-core -hyperv-keyboard -hyperv_fb -hysdn -i10nm_edac -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd-mp2-pci -i2c-amd-mp2-plat -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cht-wc -i2c-cros-ec-tunnel -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mlxcpld -i2c-multi-instantiate -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-parport-light -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-xiic -i3000_edac -i3200_edac -i3c -i3c-master-cdns -i40e -i40iw -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i82092 -i82975x_edac -i915 -iTCO_vendor_support -iTCO_wdt -iavf -ib700wdt -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_qib -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -icc-core -ice -ichxrom -icp -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -ims-pcu -imx214 -imx258 -imx274 -imx319 -imx355 -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int3400_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-rng -intel-rst -intel-smartconnect -intel-vbtn -intel-wmi-thunderbolt -intel-xhci-usb-role-switch -intel-xway -intel_atomisp2_pm -intel_bxt_pmic_thermal -intel_bxtwc_tmu -intel_cht_int33fe -intel_chtdc_ti_pwrbtn -intel_int0002_vgpio -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl_common -intel_rapl_msr -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_soc_pmic_bxtwc -intel_soc_pmic_chtdc_ti -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 -intelfb -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ioatdma -ionic -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_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 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -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_cxgb3 -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 -khazad -kheaders -kl5kusb105 -kmem -kmx61 -kobil_sct -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -ks0108 -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -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_gswip -lapb -lapbether -lattice-ecp3-config -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-apu -leds-as3645a -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lp3944 -leds-lp3952 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxcpld -leds-mlxreg -leds-mt6323 -leds-nic78bx -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -legousbtower -lg-laptop -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -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 -lmc -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lockd -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_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 -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693-haptic -max77693-regulator -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -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 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-i2c -mdio-mscc-miim -mdio-thunder -me4000 -me_daq -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_hdcp -mei_phy -mei_wdt -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 -meye -mf6x4 -mgag200 -mi0283qt -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx-platform -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -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_sound -most_usb -most_video -moxa -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msm-vibrator -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-quadspi -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxm-wmi -mxser -mxuport -myrb -myri10ge -myrs -n411 -n5pf -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nand -nand_ecc -nandcore -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-avx2 -nhpoly1305-sse2 -ni903x_wdt -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nic7018_wdt -nicpf -nicstar -nicvf -nilfs2 -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_idt -ntb_hw_intel -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nvram -nxp-nci -nxp-nci_i2c -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofb -omfs -omninet -on20 -on26 -onenand -opa_vnic -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -palmas_gpadc -panasonic-laptop -pandora_bl -panel -panel-raspberrypi-touchscreen -paride -parkbd -parman -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pblk -pc300too -pc87360 -pc87413_wdt -pc87427 -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-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 -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_pcmcia -peak_usb -peaq-wmi -pegasus -pegasus_notetaker -penmount -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-cpcap-usb -phy-exynos-usb2 -phy-generic -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pinctrl-broxton -pinctrl-cannonlake -pinctrl-cedarfork -pinctrl-denverton -pinctrl-geminilake -pinctrl-icelake -pinctrl-intel -pinctrl-lewisburg -pinctrl-madera -pinctrl-mcp23s08 -pinctrl-sunrisepoint -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn544_mei -pn_pep -pnd2_edac -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -processor_thermal_device -ps2-gpio -ps2mult -psample -psmouse -psnap -psxpad-spi -pt -ptp_kvm -pulse8-cec -pulsedlight-lidar-lite-v2 -punit_atom_debug -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-cros-ec -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pxa27x_udc -pxe1610 -pxrc -qat_c3xxx -qat_c3xxxvf -qat_c62x -qat_c62xvf -qat_dh895xcc -qat_dh895xccvf -qca8k -qcaux -qcom-emac -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom_glink_native -qcom_glink_rpm -qcom_spmi-regulator -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1b0004 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -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 -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcuperf -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rdmavt -rds -rds_rdma -rds_tcp -realtek -realtek-smi -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rndis_host -rndis_wlan -rockchip -rocker -rocket -rohm_bu21023 -roles -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-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-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wilco-ec -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -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 -sbni -sbp_target -sbs -sbs-battery -sbs-charger -sbs-manager -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -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_fq -sch_fq_codel -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 -scif -scif_bus -scr24x_cs -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdhci-xenon-driver -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -seco-cec -seed -sensorhub -ser_gigaset -serial_cs -serial_ir -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh_veu -sha1-ssse3 -sha256-ssse3 -sha3_generic -sha512-ssse3 -shark2 -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -silead -sim710 -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -sis-agp -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm3_generic -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc91c92_cs -smc_diag -smiapp -smiapp-pll -smipcie -smm665 -smsc -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-acp3x-pcm-dma -snd-acp3x-pdm-dma -snd-acp3x-rn -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-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-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-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-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-pcm -snd-pcm-dmaengine -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-rn-pci-acp3x -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-skl_nau88l25_max98357a -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-acpi -snd-soc-acpi-intel-match -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-bd28623 -snd-soc-bt-sco -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-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hdac-hda -snd-soc-hdac-hdmi -snd-soc-hdmi-codec -snd-soc-imx-audmux -snd-soc-inno-rk3036 -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-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-nau8825 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rl6231 -snd-soc-rl6347a -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-rt5660 -snd-soc-rt5663 -snd-soc-rt5670 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -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-skl_hda_dsp -snd-soc-skl_nau88l25_ssm4567 -snd-soc-skl_rt286 -snd-soc-sof_rt5682 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-atom-hifi2-platform -snd-soc-sst-bdw-rt5677-mach -snd-soc-sst-broadwell -snd-soc-sst-bxt-da7219_max98357a -snd-soc-sst-bxt-rt298 -snd-soc-sst-byt-cht-cx2072x -snd-soc-sst-byt-cht-da7213 -snd-soc-sst-byt-cht-es8316 -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5651 -snd-soc-sst-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-firmware -snd-soc-sst-glk-rt5682_max98357a -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -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-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd9335 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-acpi -snd-sof-intel-byt -snd-sof-intel-hda -snd-sof-intel-hda-common -snd-sof-intel-ipc -snd-sof-pci -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-intel -soundwire-intel-init -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-loopback-test -spi-mxic -spi-nor -spi-nxp-fspi -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-sifive -spi-slave-system-control -spi-slave-time -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spl -spmi -sps30 -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -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_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmmac -stmmac-pci -stmmac-platform -stowaway -stp -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -stx104 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3-wmi -surface3_button -surface3_spi -surfacepro3_button -svgalib -switchtec -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -tap -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bbr -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_nv -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcpci -tcpci_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 -tea -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 -tgr192 -thermal-generic-adc -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-ads7950 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-tlc4541 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -topstar-laptop -torture -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -tqmx86_wdt -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -uPD98402 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -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_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uv_mmtimer -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -vcnl4035 -veml6070 -ves1820 -ves1x93 -veth -vfio_mdev -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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 -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt-dma -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vmd -vme_ca91cx42 -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvrdma -vmw_pvscsi -vmw_vmci -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vop -vop_bus -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wilco-charger -wilco_ec -wilco_ec_debugfs -wilco_ec_events -wilco_ec_telem -wimax -winbond-840 -winbond-cir -wire -wireguard -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgene-hwmon -xhci-plat-hcd -xiaomi-wmi -xilinx-pr-decoupler -xilinx-spi -xilinx-xadc -xilinx_emac -xilinx_gmii2rgmii -xilinx_sdfec -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xlnx_vcu -xor -xp -xpad -xpc -xpnet -xr_usb_serial_common -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 -yealink -yellowfin -yenta_socket -yurex -z3fold -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zunicode -zx-tdm reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/generic.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/generic.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/lowlatency +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/lowlatency @@ -1,23840 +0,0 @@ -EXPORT_SYMBOL arch/x86/kvm/kvm 0xa0607688 kvm_cpu_has_pending_timer -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x0e4b5db0 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x15767bcd crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x6b2e1301 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xb4284c4b crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xd0906341 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xdd30ba95 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/sha3_generic 0x618c49d7 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x8300657a crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xf098fcc0 crypto_sha3_update -EXPORT_SYMBOL crypto/sm3_generic 0x2d06ba69 crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x64230901 crypto_sm3_update -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x40cd0b90 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xb60bb88f acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0xa3a2affa suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x0ee10903 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x54f6ae97 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xe56d9ff0 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 0x0bbf082b pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x218e219a pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x26b8b610 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x2dfbaa9c paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4a28d8e6 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x54066d01 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x62445caa pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x729b1a87 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x74aee3f7 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x7abb6bbe pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x8276eb20 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb9fb016e pi_write_regr -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7f7924a6 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xdf6f31d4 rsi_bt_ops -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 0x09390773 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x69809c71 ipmi_smi_watcher_register -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 0x8cbb637e ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdbae76e4 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x62149043 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x90c325f5 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xba6c4b34 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc40a32b2 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0c9d2def xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x90f16e64 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdc87f0cb xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x162ee6a9 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1d303dae atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x77f84e92 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x022c5d7f fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0411781a fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0955264e fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a1fe160 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x222e9417 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a2b2127 fw_core_remove_address_handler -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 0x4584e249 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x46c2e02e fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c9216bc fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x502ee507 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x62d7248a fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7431fb21 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8761e4a8 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8911a097 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x93854717 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa093aba3 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa1bd8cba fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa31888b9 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1175b34 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4a50914 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc64f76f5 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0c03156 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd460821d fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3218f92 fw_core_handle_response -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 0xeab1923f fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf61ef68a fw_card_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00540f0d drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0137d6a6 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b21af2 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x020636b7 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x022d7674 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x024a3d7e drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0300c5da drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x039308e2 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04fe7fe8 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x053d544c drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0558bca4 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065af467 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e239c3 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0822fb6c drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09541437 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09c6fe0a drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a139b76 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa4adb0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b017f00 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2b430b drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bebed35 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c55dcc2 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b9d4e drm_crtc_wait_one_vblank -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 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1109c43d drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1140ed33 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x116b166e drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1180e1c8 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c9c9b8 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f314e3 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12156458 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137c9875 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13abd262 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e48b06 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x150553cc drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x158b7ee0 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15eaed68 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15fb3df9 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x183f6ae1 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bbb473 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e06b78 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a5355dc drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a57bea3 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a706674 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ad90c1a drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c8bea42 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca6b6f5 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc39c8f drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e230619 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e434df0 drm_agp_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e93532f drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee6d56f drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fca8d6d drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20073e1d drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2065d36f drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ead2e8 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x238956b4 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23fafd5a drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x240e7851 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x242b1c60 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cc6864 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2571c693 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f95786 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x267fe026 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x276ac49a drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x279166ed drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x282dfa9d drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28734e89 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f0b853 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b5136e drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a389ff7 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a432720 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6d6882 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc969e8 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4c914b __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb14423 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d699dcb drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d91ed2e drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dcdff3c drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3091722a drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31aa6c30 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ab7e52 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d76362 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x347e8561 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d45552 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b986bf drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x360865bb drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x363c04b2 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x368e61a1 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x373b9ab3 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x377350f5 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a9f225 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x381925d2 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39193c11 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x395fc47d drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a59da89 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a6c2943 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7da2a9 drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acc5565 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad91503 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae1767c drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b18a359 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd0ebde drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd44a62 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc36e06 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3de8218a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dec3c58 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb2d6ba drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efe0faa drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x403039d9 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434695e6 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4349f86d drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ad0496 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x454a9288 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46cb3425 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4703a43a drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4748702d drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47984296 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x484c298e drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4915609b drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f7fee1 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1d5e78 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f00b80f drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f32c332 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3f99ac drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fabf056 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5012ba50 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50fa719d drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51615958 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536ecc22 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b1abf8 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x546a1a67 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d6915a drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56243066 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x567e8a32 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577971e8 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5858b4c1 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b4a81c drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b337457 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc0d1ff drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5618d1 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd52f3f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e392006 drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef91707 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f34ce21 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc70782 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc93e87 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ea6663 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x613654d3 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d9e4af drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e2c186 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6524bd28 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x653973bb drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x658aeaf7 drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f58d5a drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6724a3e5 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6867a384 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x699f7683 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a204819 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e274d9c drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e92faf3 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb250c7 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb93313 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f154f94 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb0dcc7 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fca2136 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f4d5a4 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ac6414 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74890b25 drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7546337f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75f284a7 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x761aea96 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c9a039 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77cf3861 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d489e0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7935c91e drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79744c84 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x798b6064 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a4fb8c drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e5e850 drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad01f62 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1ffafb drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5408f8 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7de0dd8c drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e574487 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eab5df8 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebabf64 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa7d8b4 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8220cfb7 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8227b9c8 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x822d52c1 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f34e6b drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842266a2 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x843a49f9 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8504cfcf drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86fe9e62 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8812c89b drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8818b3fa drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89526eaa drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0eff62 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6e41ba drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5ea861 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca34bb0 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ccd022a drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eda820b drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ce28e2 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x914c5533 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x922bb3cd drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x923267f2 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932bae8b drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x935cc68a drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b33ed4 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c1d8ee drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a5976d drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9853b89c drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x990f5527 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a15cd29 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9a50d9 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e69cc84 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6c62df drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02181b0 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02f3110 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05568ac drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa07ac9e2 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0cf731b drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e50176 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa37e7a46 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ab951a drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70cc5ba drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b031b4 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ce06c2 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab4bfa4 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7cb27c drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac8c9795 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad084ebe drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad143aa0 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06c4d6a drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a0b11d drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c4b78e drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a02b5c drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3d905ad drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4346295 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb484a573 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ee4ebf drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5504965 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b55009 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6687fab drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba21a98e drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9186e0 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad0d506 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb2f57ed drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb750961 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf0ea76 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdc548ee drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfcd5700 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff84234 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02ab854 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0630c2a drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a11e02 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc228765a drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc28d8d27 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a6b713 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ef89d9 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44ef841 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5592dc1 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5a56a7b drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63ee70b drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc666d8bb drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b0893c drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc89c598a drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8c4ab7d drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8a1b6a drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1216c1 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb36c62b drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbba1721 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc059b5a drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc2b189a drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccdfea63 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce223b6 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd343bca drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd820995 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee4d652 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc1b247 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07552df drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1913488 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d8cb17 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd359459d drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37fa6fc drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38fee26 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3dd1ea1 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd71b3a8e drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd71b8930 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd755f7e7 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ea455b drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd85e2c67 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88ce1e8 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd91a1be6 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda01419e drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb30d569 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb55b9f1 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb6da16a drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca27b44 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c58dd drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd58d28b drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd910173 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd93944b drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec302a3 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe038d0e1 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe10ec056 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1292b35 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c0906c drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe209ed98 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fa9a87 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3772f9f drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48a63a3 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48f7fc3 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c5a718 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5814c84 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59679b8 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5fad65d drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ac93b5 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70f4d6e drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7df4a67 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a601ef drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb081cc9 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8281ed drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8ae81e drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebac5ad2 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec6f3334 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc2c888 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0ff00c drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f04e80 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23bfee8 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3cd2f9f drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58fa3d6 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5d01e60 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5d21713 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64ecd3c drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf74e9cb0 drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7721fb2 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf88739d2 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a83c04 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b72db1 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa44da61 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa62369f drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad506fc drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafc1a24 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbade07e drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd42c1d drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd943f41 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe0cc370 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa9847a drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbd3117 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe86bed drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x032c3126 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04721eb6 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05f79046 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074bda16 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a639ffb drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d81426b drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1214cf34 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12bcfbfd drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13dd1c39 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145f85ed drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x159654a8 drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1616e093 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16edb13f drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172f8c67 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a65dc60 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aeabda7 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2030cc36 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20dffa1f drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x224d959a drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26167c71 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2801817f drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28890dca drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2930a8ec drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b104965 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b151334 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b72bd40 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc62668 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c06a605 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c11dac0 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fee2616 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a4d774 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3240d51b drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3348cd9d drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345ba80d drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e82a89 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36dcd1d3 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39a620e4 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aba91ab drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aea2f03 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b1e080c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f753d31 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fa4a600 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4231fdec drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466ccf98 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4880bbcc drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49d793ad drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aec9467 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aff5dc3 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d388888 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa078b5 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x518baaba drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57706485 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b1ea1a1 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cc599a7 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ce3397c drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d3da119 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da04f7e drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dba771e drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e897274 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea20427 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f80bfe2 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61071977 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6370c55b drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6438e5cb drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x659268ad drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f604c4 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696ebe58 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69aec662 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69b57668 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a144d08 drm_atomic_helper_crtc_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 0x6b69cad6 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb1f007 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f055086 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70112ba7 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706d017b drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7212d2b0 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x749feff3 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7514db5c drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x758cb66a drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e63ecf drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x784eda39 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c15396b drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7de24f65 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f2468a4 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81834147 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b69fb5 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85469173 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8553a035 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85de054f drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8956cba6 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e97b40 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89f72c56 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a230f30 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a381a17 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d0e852b drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0a8a6c drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e3ccd53 drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91eb24cd drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x924f4cd9 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x932d434b drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c57192 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d94c90 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x967545bb drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x967cca4d drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a03d27 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96e35f54 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97131c6f drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b58bd3 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97dbfd91 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99dc3c31 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a41dd88 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9619a7 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d0c56c5 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d2356ec drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa163c9d3 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3263fe7 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3d8b03f drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c379e6 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa65642ab drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68ca26b drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8b7e2f0 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf5461b drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab4ec9f1 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab66d5ac drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab8eac25 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac9b0ef9 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadda3717 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae70a766 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf4dafbf drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2a76240 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3154c45 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3554fc9 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b0edc3 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3cc1752 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5ed0612 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6817b7a drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72e331d drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba02170b drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb67d834 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc34d7a1 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5566d8 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc046ac6e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b80f9b drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc238689d drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2905e68 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2bf62a4 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc407ce06 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4dcc14c drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5717b95 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e178cc drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc985ccfa drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb67f544 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd7bfa5 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd6c5cb9 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce4f5516 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfad0321 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfea08fe drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3556b40 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5ad88a1 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5e764a0 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd66b777d drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a2d063 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb7f45b9 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc32b7c5 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc6914c6 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec80920 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe024a8ce drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2c609ff drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2e8ceda __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5231c3f drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe72f3347 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d2b9af drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9520ca9 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b4a285 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4acd82 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb0ffd53 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb5862fa drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec19d2f8 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec21c27c __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecb84243 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecdee163 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecfd5a3e drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02883f7 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1436bf2 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1e3c969 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20b1867 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38c26ab drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59d07ba drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5b4f2e3 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88f963b drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8aa8263 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d0846a drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe6e3368 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff0f7b73 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfffaeca9 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x081d442f mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x11a3a242 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x131197b8 mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x20744e5b mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x292da8e4 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2e17f8e2 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x43a4fbea mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x44fc4717 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x52248a08 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x56cb80fd mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c6a3039 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7dc89415 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7de5f19a mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x867f2435 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa0c85bae mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa4b9a9ee mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc85c3b1a mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe20d7c1b mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x04310543 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1255c37a drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x12caca6a drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2cd4d1fd drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3231b9bc drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a0f3ca3 drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x51ebdd79 drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x532bb163 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54603686 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x64ca6af6 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ed0472b drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x84dba953 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8804e7c1 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9204a49e drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb37ca1e5 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb87c8012 drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb9313756 drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe3c37a0e drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xecd6749a drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf3151ee1 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20263433 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2556dcef drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x274176aa drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x28bc32f2 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3b74693c drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x451de025 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e5abdd6 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5ee80435 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x678e0250 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x722a4382 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d57687f drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5e8fb81 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xafd921d4 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcfb9c6fb drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd0e86fa6 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdc067a28 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd7b9d97 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe9f67be9 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb04f7ae drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0db97edf ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e4bb284 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x123dbca5 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12a14a03 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ced6910 ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f1791d5 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f400e08 ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x223e4577 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d1a5400 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36d56023 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37a73e7a ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d415928 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f4219b0 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43efb536 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46082afc ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c9c3c3b ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4da9b640 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4db1a1f9 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f568c52 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54b836a6 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55290040 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f7ed902 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b33d1dc ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6babd0f0 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7124949a ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7214c8cf ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x793f5130 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ced314b ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e676fe4 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ea704ba ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7eef0c15 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x871550b4 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88412012 ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ca5b338 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d633612 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98fa0107 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a1c2773 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d2f755c ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa16c45e7 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa951fac1 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac78d043 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaca5f5d6 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf753bf3 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb316a80b ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb49eed77 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb662e282 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6cbef5e ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd444307 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc52641c0 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc97b8032 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xceb29016 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd18ea976 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1b32dd3 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd56a365b ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd76b094e ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda31cfc4 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe201e3ab ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2fe2993 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5c7d0da ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe72f41dc ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb887376 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf40f8489 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4f284aa ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd860698 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/hid/hid 0x8d5a2758 hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0072c35d ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0397404d ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ae8df9b ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0d5daab6 ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1aaae492 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1bfdde38 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20aa4000 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x26b5411e ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2dce8843 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2f8efe72 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x314e44e5 ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x31f1c749 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3248ac05 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x33583799 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x36a6fdbf ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x44eb9d5c ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x48901965 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f15780e ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4fce2c02 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5792fb1d ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5fe5d881 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x684a10ee ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x79c4408e ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7f6a0f3f ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x91fed399 ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d00d5c1 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa0384b44 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa7eac829 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb28ca84a ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xba84a483 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbd4dffcb ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc3445286 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc661082e ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc949dea4 ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd23ec1c7 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdcf99835 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe19bf985 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe6579b51 ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xedb0f309 ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf331cec2 ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf7491fa0 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xff69cd1f ish_hw_reset -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x5b1de17e vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x609f68fb vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -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 0xbbe2db7d sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1096c76f i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3b40eb5a i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x71145d8b i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x07b03c45 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x78f1c8c5 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x98f047d4 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x54205e16 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xdb1e5485 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf39678db kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12f7f8a5 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1774d5f9 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x221855e6 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x328ec560 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3aef3558 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x60f55a68 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7fb24d3e mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x865fb233 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8bb51f0e mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91825839 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9f824553 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xac331106 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc72107ce mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc7fc61b6 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd6df214a mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb0e52bb mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x535192ac st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x6cd38175 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfe8fa3fa st_accel_get_settings -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x08880a0d iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb7b81fa8 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x24c63a40 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2fb80320 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa667f35d devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe16faa27 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xbddceb43 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x02a42763 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2134dbd8 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2329f70a hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x39ba63da hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x41bee9e8 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7b50f3b8 hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x951c5026 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc6f87927 hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xebd4415d hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfb855dc1 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x041d4637 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3a154591 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3f188884 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7e55939a hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1ce33749 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2ca81528 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x388a47f9 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x44cd4127 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x80c69b21 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x87521f62 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2fc841b ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb53980a3 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf2b9e0cd ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x109f4780 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4a509b2b ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6778a505 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa4f6ba9c ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe6dd5449 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6cd5ddbb ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa07834f2 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe956c02c ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x09bcdad5 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x111d5bc7 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x136949cb st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51571c14 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x523eb584 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x54809b4a st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x58b0b794 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x72a07507 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7b631d48 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x92124135 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9eeaba30 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa1417b6e st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8e333cc st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcaf9245e st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd32c5b39 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xee5d9f93 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfb8521fb st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x8aa03dd3 st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa6f49beb st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xccb61b45 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9a24db99 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9f4d82b4 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xef481c37 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5993fc45 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x74e1a4d4 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9e6d0e36 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x47204d31 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd426d947 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x054ca9b3 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x542c69db adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x728be1a1 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x13c2bad6 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xd764ce9c st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x0a84c174 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x0fee5151 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x12ffb579 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x1bc22aaa iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x307cd1f5 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x316e1cd0 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x37598d27 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x404245b6 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x4244e50a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x43baffd3 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x645d0d87 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x77eaaaa2 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x7a4f7f57 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x7cd51883 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x869187c8 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x8881dc8d iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x95931228 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xb023b6c3 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xb6a18ad2 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xc6a9477a __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe020b461 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xf31f1571 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xffaca1fd iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x04817d6d iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0d22eb64 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0f9edd96 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x397d115b iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcc55f925 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2a36e0d9 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x659aaabb iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x71ce83dd iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd43740bb iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x75115b44 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x94c55480 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x2955415e st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xe103bf0f st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x234a3658 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4215f91c bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5b22a2d2 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfa6385de bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x4d3da3b0 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x84c20b04 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x8d6ddfe8 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xaa3352db hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0f99c597 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1e643f98 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8cc4fd7e st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x256a186b bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2dd1417a bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4d268687 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7e38226b bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xcfecc509 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x84abb99d ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xda94ce32 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x54c97507 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x99f03371 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf8eb89b4 st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1038a3b5 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ae46809 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4083aaf8 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x66a53cda ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6cbaefba ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x919a3ae0 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95794eec ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a2a4426 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4fe5b50 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaaa7eb27 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0e7459c cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb293a6bb ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb6cfded ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0516b25 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce17f9e8 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0e4c35e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe13d21b0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7c67ef7 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00bf7242 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05de32bd ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062f3d20 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x091d1244 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095d3228 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa1bc58 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3872ab ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c58704e ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0de44178 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f5dc567 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109f8eac ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10da59dd ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1413bb45 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1806bdc5 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a22120d ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d0aa873 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d54300c rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dcd601b ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f5dc712 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f9fa44a rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224bf39e ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2432d871 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x250664a1 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25272ab4 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x257f518a ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2580410b __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2924504f ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2946272d ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7858e9 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fea2a1d ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3072cc91 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35032e71 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x371b286d ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b57411 ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39aeff12 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39eacfb7 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b994810 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c35ccac ib_dealloc_xrcd -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 0x447e1889 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46fd7e76 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x490b9d1d ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f35b6d rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c00f1f4 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e037245 rdma_query_ah -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 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x516a7b39 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51820f3c ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519ad305 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52bceeb0 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e6193e rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5519f2ca ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5541e349 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56da38e2 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x572a2cd0 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5780609c ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x590e0765 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59c575ae ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d25383 ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59ecf8e1 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ca9cfbd ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dd17e3f rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ed39fef ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1d5514 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f283dbe rdma_move_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 0x65134060 rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x672fdd36 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x689490df ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6abb952c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c28fd40 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c305a33 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c4d3864 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dccbb29 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70215f4f ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72cc83a4 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73447df4 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x744a26bc ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75898693 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76a836cc ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f81fa2 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x789d8d6d ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7979183b ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b245221 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf3eca7 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eb593e1 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f6088bd ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81b1f728 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x839c07cc ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83abc885 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83c9787c ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d921d6 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a643fc rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x871db1ee rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bba2ce7 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c870dc1 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eab02aa ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92df3054 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94dfa86a ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95e20bdc ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ce9dae ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9adb2630 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce7ad37 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db50d98 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc87312 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa013213c rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0ececc8 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa127c6c0 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e74c8a ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa320b744 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3f16490 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4cc4053 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7d6c4c9 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa834750b ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8641e5d ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafc96318 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb331df06 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3db66e3 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb56ab812 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60335c2 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb629b51e ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb836cc60 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9fc6d56 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba19c7a2 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba83c20d rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadf43c5 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbc9956b ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc6c78dd ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd32afd6 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe8ecb76 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ee74bd ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2bdb28e rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3334f00 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc367ecae rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4077619 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52954bd rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc60eec9e ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7b076b3 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc801eb67 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd6e4c8a ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd3ad3b ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0efb710 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0fa6ab5 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd10c9de3 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd12f1ed3 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ca1342 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f737eb ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd643e7bb ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9428930 ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b66853 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda5e8c38 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda745843 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaaf7d1f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd6a66bf rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc54853 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde13f0b __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0ac7b12 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1681c2e ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4f8a9ec ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe56dc435 __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe67fec84 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe71f14d7 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a6b62d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7f10c84 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe80bbba7 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9115f82 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb272135 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed8983e0 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf858f9 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee0028fa ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed74eb5 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3e8136f ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf48b2ddc rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4a00194 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5136753 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5df99eb rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf69970d5 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6b547bb ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e015ff rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf75e752d rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9613d7c rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0b06e9 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9a2ba0 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe4f9d7b ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3ab3c6 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffecc318 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f9cacc1 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1693844e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d5d717f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e0d6cfa uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36e828d1 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x534d1d54 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d8ac394 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6414ec62 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65944f76 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x70d7d043 _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76b51edc ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7877e826 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8077e6dd flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88296274 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x931af2b8 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9dab1103 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa94abfd8 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc1a6446 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc13f9999 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc223e7f4 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd75d2513 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedc5e9da uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2aedeec uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2b33212 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3fed775 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfca17046 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0488afc0 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x171a7b00 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51ca1ca2 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x56acd67c iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x645e10f0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6dbaff6e iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe438568f iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc9deec5 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00b6f821 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x030c7036 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0635f495 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ffc1d5a rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d23a555 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x275828da rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c376a55 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a02af31 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5df43eaa rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63ce4ca3 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e00776f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6fefb07e rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x747d0df1 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81cd29c5 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b0fd31c rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x933c16a1 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1f7ff8c __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb551dd7f rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6864ad5 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc26d573 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc44084b5 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc60a1a5 __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd534d575 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd53a5348 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5c4b4a1 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0c1f849 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1f2beff rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf27a4105 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x02a9a327 rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x042524ef rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0cff0d54 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x12113504 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x12b9c919 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1546b3b6 rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x16428b53 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x46d27394 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4824297c rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4cf5522d rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5bae571e rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5c965dc8 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x71792bad rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7b371cbe rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7cbf36b1 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8c64a75b rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8e64ed91 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8f0905d9 rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8f734db0 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9042442b rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9bb6ce13 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaa9eb4cc rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xac996a61 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xadd0f4a6 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb204dafb rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc5140ef9 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc8de6e2d rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd8a643c3 rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9630801 rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf29caf42 rvt_qp_iter_init -EXPORT_SYMBOL drivers/input/gameport/gameport 0x23b2d822 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4e67d6e1 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a6f71ef gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf2ab761 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc043d4fe gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3f30bea gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd64e7eff gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdd67c0eb gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe41267e1 gameport_close -EXPORT_SYMBOL drivers/input/input-polldev 0x49b5efa1 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x791b3a72 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xac4ca4eb input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf6b68e76 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xff672d0e input_allocate_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1f75f02b iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5696b4b6 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa0541dcd iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x82b0a605 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x03174e8c ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x4e48f753 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6e35de78 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 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xff87bbd7 cma3000_init -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x2052c4e1 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0ebe8de3 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6910a9bb sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa4ae415f sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa4c60630 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf42b34e5 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5e5862ad ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x8a3c4ac7 ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x1056737c amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x331c75aa amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x59d1fffc amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x6e8d60c3 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7d42dc91 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xb8b02192 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x01f8b2db capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32fa6fe2 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x540f3b76 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7248999f attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x74d1df20 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7ae8f58d capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9c72b870 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbc3d086 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd7e0ca8c capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc99b71f capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -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 0x10d06269 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2997f9a9 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7884ede8 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x864e82c6 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x22660850 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdb3c239d mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x05d6dd3c mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x05f9981f get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1667e20a dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18e7ba4f 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 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x368d0bf7 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46f85a6f mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x573cdc46 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d2dbb54 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67f793c1 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a90846a bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x863e2a2a recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c3faa47 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99ca8a7e mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f09abb9 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd8bdd27 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd210648 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd68614b mISDN_register_device -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 0xdf5a77f2 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe72081e1 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee9741f7 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2e9c225 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3d476b0 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9d3abf5 create_l1 -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 0x9072f209 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x9285218b ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/dm-log 0x28e6fcef dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb8e7ab65 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xc76fa830 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xf551cb52 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x09e2f278 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x15508085 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2d308fb2 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c16f630 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xac99b443 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbff39eb5 dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x59bb660f raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xb8dad21f r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x08686041 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2fbf2769 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3d0be086 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46bc8ca9 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b8518e9 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x786761ea flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8c447b02 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x97e277f7 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x998405c1 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e3bd4c6 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3ddc4f1 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd6949574 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xedc3e59d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x263888cd cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2a12be86 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5908f9a8 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf2455f92 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xea1961f0 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x1a74759e tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x07281c68 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x2597f3eb vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x43058439 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5f2a55cf vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x77cbbf1e vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x78fe7d70 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb465a1b2 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd350e0ae vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x66da13e1 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04d530a2 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09796c8e dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17c207d4 dvb_register_device -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 0x3feecaf6 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x577dbf46 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57c7cb3d dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6086cda7 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65832442 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67480317 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b4eb8a6 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d439186 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a75a38 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x78f1f5e5 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e9116fe dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0527f92 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa572248c dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9f2f605 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbbd74669 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe643810 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc144f7ec dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc762fbe1 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb5ffa9d dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde881997 dvb_generic_release -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 0xf3c0595f dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5e87a7a dvb_dmxdev_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 0xfed46af4 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdf9dd054 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x0547520d atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d3d1e5d au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2353cccf au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d2b608e au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7f5cfdb3 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x861f5273 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd718debb au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd8b4910d au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdc35e1d8 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xebd73d01 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xfd588ecd au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x8f1c429e bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbce810c7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x81a1f8be cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x85a51132 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x816ee1ae cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa85317a2 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3df58f07 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xa436b51e cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdd95348e cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe6a86083 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x2cada580 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x946b2221 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x96fec272 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7f743abd cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4f514060 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb408eaa9 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb51e5107 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe1b32fbe dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeb329da3 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0e224177 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1af4d85c dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4810bd72 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x60bf6f27 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6320d736 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6cd3c178 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa6888b39 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab4cf1d8 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5937918 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcdb2c0d3 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce2da9ca dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe13b60d6 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe93a0b5a dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe9ede42a dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee9ac62d dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x763c76a0 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x088fdf3b dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2d6e8225 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4e3ac656 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xda8ada90 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf3292060 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfe6d771b dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0ac71cb7 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x125164ca dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5eca2d9a dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xad296e5b dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x199c912d dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb4257b32 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0dd81def dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x199376e3 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1a23c117 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x48519294 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4c4e57a3 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6fac5e1f dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x761ff77d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7b3c9c4e dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x806bb142 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc015effd dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe6878a7c dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xea43a4c1 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xecb8796c dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x16974499 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1d31a538 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61503da6 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x95987404 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa9fec876 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdd984952 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xcd291dcd drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xb20a9972 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x2ab01448 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x174934db dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4afc0524 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5268dfef dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf9a6fb87 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xdbd19f2f ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x5e1c8d68 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x96f43888 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xe1324f6f horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x50af2266 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xe1fe6148 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xe723cf1c isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x5e77f314 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xb99beb6c ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x4b42694a l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x32e59303 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x814ef9e4 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xbfe3c85e lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x2b300a32 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x21839c7b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x27ed0b31 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x744318e3 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xfbf383a2 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9033104e lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xee3f8f40 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2e283f18 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6420a0a2 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe45908d5 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9f231bd9 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x229ab3e8 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x372d0e63 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x9cd87565 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x74711ae1 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xe3bda41b nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xe35ff498 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x6f9a465c or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xda2c97cb or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x93f3f52e s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xd313dc5f s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x012fe189 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xdc01e891 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x49abde1b s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xae2bfa91 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x66df421e si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x68e69c8e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xea0894d9 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x1d02e1cb stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xf1a7652d stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xfe895595 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x564d13c0 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6746d87f stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x5f9d5c0e stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2ed1512c stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5e4f2ecd stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xebec2825 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x27984b29 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3ef1206f stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xf16e8f9e stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0c2c2669 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc7b28367 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc6373625 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x8c3d7718 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa63e0eda tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb0deb173 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xbcacc5ca tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x06444f81 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xcb0fa1a7 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa94aec10 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x35b84de4 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2a5632a8 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x99bdca64 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x6991c969 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xcbd22faa ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x75d46102 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc36f15e9 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2011c86e zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa7f53ec2 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xd19d2609 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2584289c flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4372d2dd flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5bff5c8f flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9515efa6 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9bf83b7f flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcf4438c7 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xecb88454 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x159b8e8e bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3d6fb01c bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x56c7a123 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5c40cd6e bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x057f3cae bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x360ab9c9 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7835cd29 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3730e6e1 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38bfbf52 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x49246685 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4d89310d dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x62d47ec7 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6ac5a11b read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcb2c984a dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd57807f7 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc5fccd5 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x05c7c812 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x35ed6e90 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8b0b9e13 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb108aeb8 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc59472cc cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd22f24d6 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x0080d3b4 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0c7c97a6 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x512350a0 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x68d23251 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7f74e213 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86abf0eb cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe66292ed cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x85183ca3 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe0002e2f vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7a4a7ee9 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb5635c70 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe529073a cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe8b053fe cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x57eb804b cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8ef7d83d cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9dc76966 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbff302a0 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcdff5e3f cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf56b212a cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf601156d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05833f2d cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08b7e3dd cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08c3016d cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28b6ba8f cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34f178b6 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38e2b8d7 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x393e6fbe cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63fa9aa8 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67024c14 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x784f9e1c cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86c82925 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x884ec425 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 0xb215093b cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbb971d8f cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc83ae45c cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5571db1 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb2644db cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0860860 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa1697fd cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd8a8528 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05131b8f ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14ffe909 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x266e6459 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x27b45e8f ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c394c12 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c9cf2cf ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3459436d ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ab847a8 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6b53274b ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fa77060 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7f728e30 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8522c280 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94e6efb7 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbedf8ec3 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7fc9d1a ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd673c19 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe45b767a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x23387a74 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x27ac6bf2 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39b3062b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b93c5e0 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x839f0476 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83df122c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x89a9d6a3 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8ab68b7e saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb44622f3 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc24afac2 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd1332a0c saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xcfa16e9a ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5d4ac42c snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5dc7c8c4 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x66925231 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x68c6c076 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x88914696 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc7520fbf snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd06601b0 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6dfd7104 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xc8be42d1 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x1b423d18 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1c51121a fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x13bc70e2 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3426531a fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6a37132a fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x68a3446b max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x54a135c1 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x40ad707f mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x0b566083 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc86fe4b5 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbfe2b34a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xef9e0267 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcf04184d tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xeb586db5 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc2b23ab8 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x9debf5c3 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0ad3314f cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2f9e212d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1052788c dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1f1139da dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2aa977d0 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2d06956f dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32daf690 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6da2cd26 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x957410af dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdce96d04 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe16afbbd dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1806f233 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7b6918c7 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7e5e7de6 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc33a36c7 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xde87725f usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe62ce777 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8c18851 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x046b79a6 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x09f80a94 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a836ee4 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7122f44a dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7bba2f57 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x88af065e dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa8db791e dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbcb8eba2 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd6bcb2de dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xee26121e dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7f283b54 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe0c941a5 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x73dcf8a1 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd9ac41bb em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3661e674 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5552d372 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6d54c0ef go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77912dec go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9b7e13d0 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb70d8091 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbcb37dcb go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbccc1b78 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdb98ddcc go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0aa92647 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x422261d4 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x44383d3e gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ec9719c gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x983bf09a gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd2b2971e gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd45f8935 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf334fb09 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1a9a197c tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x22e596a3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe20469bc tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x85d4df98 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xae13de52 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0870ba32 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 0x75aece27 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcf776116 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x046da360 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x073c0fa0 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b9b680a __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c78d3a3 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dfa131e v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1119f664 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x125dc04a v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d55886d v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2669b0cc v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27e0c064 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28e784d9 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a3dc63b v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x452377f6 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c40210e v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fbefeb7 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fdea95a v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bbaace v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53b0de24 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x584ee593 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x587538ef v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c00df73 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d129f3d v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x680a15d2 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6964417e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a5871cf v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a7267b6 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7116061f __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7672c656 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x786c5bf0 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b85861b v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ed5b872 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x842e72f2 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ce6e0e9 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d48aaa4 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d5b5b37 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e490c16 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e92d542 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6721725 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb38ffa27 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6fd8f71 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7024ef9 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7630a12 v4l2_ctrl_poll -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 0xbf9b9b81 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc35ca726 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc46566a9 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4a87803 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4cea135 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc77294bc v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca705d80 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb308ebf __v4l2_ctrl_s_ctrl_string -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 0xd2dc0c85 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd726dbb v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddf564dd v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe16d0777 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe724c96c v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9982f0a v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xecfdaadd v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1b21ef0 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2719bb5 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf724c369 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf77bd6d2 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf984d54d v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb2f459e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdb7c628 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1809c167 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f32e2a3 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x87e0271d memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x905c7f58 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x98529173 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x999428e2 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9acec98c memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb2d057d6 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3b09eec memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc68b391c memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xda98af3e memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe074224c memstick_new_req -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b459dff mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13c34853 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15d1bbc5 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34e44d3a mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x392ef44b mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x405895bc mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59232183 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e37da3c mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e68574c mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6450b35e mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x689fcd01 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x776c68f5 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d927b2e mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95200d26 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf2d5f86 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5b27ad0 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5c227cc mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb90321ba mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb84a75d mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc58dfeb7 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc71e1cee mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0711279 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda754db7 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf3b3f3a mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6b5a62d mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe87d6fb9 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb7f0de9 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf37c3b94 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa7cdfcb mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2dffccf1 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a6ca109 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48617be5 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48726b7d mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fd8b2fa mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d172a3e mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65b041c9 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66643c28 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d983773 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f31a543 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x744b03a5 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84d31cdf mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87434e70 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8edca9cf mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90a5ea4e mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9302fc6c mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9cf4ff02 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3579b37 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacf2649e mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb808b15e mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc335bc84 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc792d204 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8870723 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8cac2bc mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xceef64ed mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfa758ce mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe12c131f mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/mfd/axp20x 0x93cce890 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xa8933085 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xe03fe266 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x16d55c03 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x434b62c4 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc7cb51ff dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x45a49917 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe1f7cff3 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0e4f9301 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1ea3ad6c mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33564b3f mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x41e5e344 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x42d8863a mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x448c581a mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x46b1acfd mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8421c4ae mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xccc381e0 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe27fa8c2 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9d57382 mc13xxx_get_flags -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 0x313e0b62 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x4eccbbee wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x651a91c2 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x82f2af9f wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xd1aeb9c3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe394025a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5792da13 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb9a748b9 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xb9f0fe98 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x3220390e c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xb592a9e3 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/tifm_core 0x0370998d tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x12c984c6 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x213d015e tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x29a5f708 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x4bf781af tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x55f1640b tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x721cab5a tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x7d768f4f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x8165a773 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x907a8dbb tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xeb536fe0 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xf55da550 tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x33585786 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x99ef3178 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xee7fe2f5 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf0da9889 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf83a4fb6 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x21dbdc79 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4db83f11 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76f96647 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb0cb602d cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc5ebe3e3 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf02a3f19 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf95bcaf3 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8a4a0607 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x965fd3ff map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa1473687 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5cc6699 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xd6018290 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xdeee7d88 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1f81dec6 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x2f2020d8 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xad17fbf1 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6434a579 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xf743fd87 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x0e1730ee denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc10fced9 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x065869d0 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1a13c600 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2d41e7f2 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x50051ceb nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x55e66c8f nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x93492a82 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa058e7dd nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc8f723df nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcbaa05d6 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1a380a5 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x11c64af2 nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x4053808a nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x049249c7 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07ae55b4 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a77bf87 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e9c47b5 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4395dfda arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x594e6c8a alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e7ed8d7 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d638e91 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdcdc9c41 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xefdf30ed arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x97f279b8 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd3312182 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe2aa7b72 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x09d6e25e b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x147c3d41 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27571ed2 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x364edaba b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39b55d63 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x406f1297 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4586c825 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a3e8526 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dc60c1c b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b9acf88 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5bb86b73 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cea63c3 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f6ccb26 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7df36436 b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80953e6a b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x840cf5a0 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84641d19 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c97bce9 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ca97561 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa287e1f6 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2b2361e b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9eb7e7f b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0f28019 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1f6caf0 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc307b2eb b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5846b90 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc59c4d30 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc60f79d6 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc616317b b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6d880a2 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca4f685d b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd839b1e6 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb1f313d b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdfc4ff01 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb6955af b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee2c1a09 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb94dcec b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd794c7a b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2207bf3e b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x71f58baa b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb7cb52bc b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbb7b597d b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc6dab85d b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf3eb12fd b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3398265b lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdc45eac9 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2dbd2983 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x6fd29f83 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x60bb9a71 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6a1278b0 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xadc6458e ksz_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01b56f94 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x22545885 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2684b2c6 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4b43cfb5 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x733633f7 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74094985 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x86e78162 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd6a4635f __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeddb7df5 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1bee05f NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x2698cc5d cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0846f30b cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x60b6b991 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 0x235a9f81 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x260ba756 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x554a255c t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d438b6a t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6de7017f cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75fe5dca t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7abf927f cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85f19158 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8affacb1 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92b83dc4 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1085499 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc72be119 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd8568ed8 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7588adc cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfdcdcde6 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfdf4226e cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00c21532 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c6bc805 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x146a06dc cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x148c409e cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15b51dc0 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1613f63a cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d3949e2 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1de5a43c cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2506c6a2 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25cc72dc cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x260e0c8d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x275140fd cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27f78291 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d0a9114 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d52a93a cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30e56806 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x310cb778 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35642934 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35bbe8d8 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ada1115 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c4c2c43 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ea0606b cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3eb7f941 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x493d2aff cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a45eb3f cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57e8e2e7 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c34af73 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60729ae2 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69ee3528 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7195e27c cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a1709d3 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90245eef cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92604a00 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c07f6d3 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e886b3b cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa063ac07 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf13081f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf99049d cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfcb8f95 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2836ece cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe52230c1 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe90f4e31 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1e66644 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2b06b4e cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x14e1ad2b cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x224bc354 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x287e8f79 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6c43ff3c cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6c4f596c cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd19f923f cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xde2c8a4f cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0dde0e56 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x80a92b12 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc3943994 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcea8c068 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf05ef5d8 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf6984dbe vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0e897b29 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 0x5a215438 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2175c9c1 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x4e1bea2a i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x84c8f4c9 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb6ff2189 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x052fee53 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05ba0599 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a356881 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e42f548 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x289aaf68 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cc2bf35 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36abd403 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b08fc15 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x412d8f77 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x414950b0 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b66616c mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b7b44be get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f862c7b mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fcccaa2 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529d625f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582f068b mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc4f57c mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x692add5c set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69b64b9c mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e8f3402 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ac9ff6 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b381932 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bb4f9bc mlx4_SET_PORT_SCHEDULER -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 0x882a3083 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e9472e0 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b96279 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9622c9e4 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9df34f47 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa40f07c0 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad0cb8a4 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3b51a3c mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5e445f1 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc65f63fd mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda99f0b mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd10d40e9 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd54761ab mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8982ec7 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe01bba5f mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb38ffe mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed85e087 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeefe0c11 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0c1f5f0 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8110000 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf914f103 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04493602 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05968441 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06875bdb mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa8da59 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e6df1fb mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b6e6b6 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17274c4f mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18548c53 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18ce711f mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d33cec mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c150c85 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cd69073 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce42e85 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22453299 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26324a60 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b2faa2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2961b42a mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9762f9 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3178d74c mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32b3798c mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36df4baa mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393d0061 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3973b4b6 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x399c2477 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ebd6839 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff9c25f mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44397ae4 mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x455db873 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4792ed57 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a843f47 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cb072e2 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506ad066 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c06d50 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x519cba8e mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52eee423 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x566597eb mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56d80586 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5828b46d mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f7093a9 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x610e7b32 mlx5_register_interface -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 0x6420bcf6 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ed891c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683bae14 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d2daec3 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6decf4b8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71809d3d mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75ebed5f mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fecb270 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8032cb47 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88fea0e8 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89ee2759 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a71b8bc mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b19522a mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bd3a5f8 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bed0ae4 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1dc213 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fbe04f2 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90ecd652 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92404c57 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9393bc42 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939b6494 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x970818c7 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9734bf93 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d02cab7 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d64ed4f mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e988f83 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa06c9a48 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1025de6 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa42bf409 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa47d84c3 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53e44d9 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d8f0c1 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacc0ef34 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff04e1e mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3a1e590 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb716ed94 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc654a06 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc704391 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccb7ce5 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd16ab5a mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0f4e90 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0fa6893 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1df1624 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ea505c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6bb8275 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc734ac9c mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce28f8c4 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf995d0f mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd24062cb mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28ce22a mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3aaaaa4 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd479f8e8 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd64277f0 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd68b4d43 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7af8142 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8cf7824 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd29e964 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6660b80 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe82a5c2f mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe92fdbfc mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed1d490d mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ab21cd mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf62f50a1 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce5194a mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe4a9641 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe855fc0 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfedfdc13 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x5ccd3e48 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02d3d534 mlxsw_core_port_eth_set -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 0x05b0f77e mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b6fb706 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -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 0x1f93326b mlxsw_core_event_listener_unregister -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 0x2bd8ef16 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e7ff99e mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x480c08d3 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71c36002 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75a47614 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76f62826 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7bb40ea0 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e2358e2 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 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae0c8eaa mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaf867510 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd16da7c9 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1903ba1 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf968175d mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3fab9050 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7617cc90 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x88f52ed1 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb572c564 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0d1ccb4e ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1d6cc758 ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2f75ad68 ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x3a4f7f74 ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x438f8140 ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x522d06ed ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x92a38552 __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x92f38344 __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9f8b2bb3 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb656dc8f __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc61e67a0 ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xdfac6b5e ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xfde91b6d ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8509f7af qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x92cee5dd qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe5eb8e75 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xed18125c qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x17142cd5 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x69fa59cf qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x12b98bd3 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5866b4f1 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb8cfc354 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xea75b222 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeec53667 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 0x7db84a25 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/mii 0x0b50b843 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x28624511 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x3f66082a mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x446fba2f mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x459d519c mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x651de06a mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x696518cf mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x7eaafa58 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x809c29d8 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xbd110bdb mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xfbcbcc62 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4aa8dba2 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8bd3897c alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x66f0392d cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xb800b3c9 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1dfe5bac pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5bcba906 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x66b6bfd7 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7d8d476e register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x933fb8cb sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x33d1add0 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x59b39d8c team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x62fac542 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x6a163ada team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x77e48a67 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb26a80ff team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xc81504fd team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xe057bd4d team_options_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x156b0b21 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x209ceef6 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf72a971b usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x178b4237 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x19dac75f hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x59651769 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x647d14b2 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b557972 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8cc8ef86 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d5dd7de unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb0446ea6 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xda2cbb30 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe029f66e detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xc30b35dd i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04031024 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x126d4d84 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x51911360 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f7fc054 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76f9b0a9 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x831c66f2 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x890cd4db ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8d811787 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbff29ac0 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xee90b05e ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3534634 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfecbb712 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x073b1f51 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08a32616 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c61d712 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a121b7b ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c363515 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21da9a99 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b884cb8 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c67265c ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3da48fee ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ea04b57 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46a728c8 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4724f0b0 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57e910f5 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c35897c ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e3b49d4 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6567f4bb ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6770425f ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6937fe98 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dea9502 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f85530d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71e59961 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b6ebb21 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84dd3d49 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x85960e70 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b1d00a8 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98faf1f6 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa01f4467 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3881d06 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4a7f61b ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1928c84 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5372ac1 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd4e49e3 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe21300c ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc47ab241 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce7f24a4 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf72d99f ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd298a5b5 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd39184fe ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd517ef63 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb7287d3 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf24eb9b ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1013aa8 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe48e104f ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec0dcdce ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf58dc0de ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa7509c3 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe240091 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0225c3b5 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 0x36ddf9d4 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6619d06f ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67e066f9 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x70ceec6a ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x760db369 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb10703e8 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbdaebecb ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4f2b847 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc92166cb ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf2ff816a ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00f2e632 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07435b8a ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x191abda1 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x216305cd ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x218eaba0 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3522db49 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41122713 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x426f51a6 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f7c71f3 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56d2eba0 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6684b6d8 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x71eb9e0b ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b0d5977 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d32842a ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x865c050b ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad43266a ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5a01736 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0d8f791 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecaf7b21 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3f80225 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8afcacd ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfac0191f ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfda17733 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01b23222 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05f32958 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07d627fd ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d11fabe ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eb338a6 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x102dd0bc ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1153388f ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115eebde ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12155336 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15ce7a9c ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x189ac7ad ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x196cab3f ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b88ee97 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1eeb2d76 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x207d20ce ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22bf8390 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24cbe023 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2661bcc6 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2794430b ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a6d8dcc ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bb8726b ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ec5853a ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32e3587d ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x365d78d9 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38effb1b ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396a5896 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e204331 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e7dbfc8 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f9b111f ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x402e6e1b ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x429ba2ea ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42e4f1a9 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x431e256a ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c62860 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45b35004 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47dae04e ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c6e5c4a ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d6c353e ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50ec9a5d ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x515137d2 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x536a9cd7 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53da8953 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x563c07bf ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a622dca ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6388e38e ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64ce00ec ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6509eac4 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67e20399 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a8a295c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c3f0ce2 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c7c6627 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x760367b6 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d636f48 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dcfc0a4 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ddf8fc1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f46647e ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87509abe ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c09bcb0 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ce2d5f3 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6103a0 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92021f2c ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9579e906 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9658debb ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9961fe5b ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bbd5f50 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0835bd8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa289cbec ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8a9c16a ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa77e18f ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac143bf8 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad395f57 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad790362 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf870d81 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb212163c ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4ab011e ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb67ab628 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc00b5ee ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc330459 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfe252cb ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc85c893e ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca4f2e87 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd2bd9eb ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfb07b5f ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1954ed7 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd253cfdf ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28d4ab7 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd458d7a3 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6535cb9 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd2e279 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd57972f ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd76adae ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd7d222d ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeb90032 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1eaf3e4 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe27a17c8 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2a5ec59 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7485b2c ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8f37430 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8fa1148 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9bef03d ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebb490a6 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfaa729 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede237e4 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede2e9e6 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1e98ab8 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc43e01 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdeb06a0 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x01a412ec atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9294f168 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb2eab58c stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07990a61 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0ed4be9f brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1610186a 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 0x58ccea57 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x713f4982 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x91e47efb 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 0xa1e7bef2 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa4f7607f brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xafb95285 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb04ef1fd brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb661e50b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd2cb4195 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf0bbffb8 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2dbc737c stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x59be737e init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5c504ade reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03919c94 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x07b64793 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x09c0ce39 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0a975227 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22b56443 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3baabd8a libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41598b0e libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b91f9d9 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6bc6b974 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c4ab1b2 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f9bbeea libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x90709164 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9f625907 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb94610d0 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbf1c9a02 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc11be86a libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc8323708 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd43d9503 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdb591bd8 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeec6c6e0 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0080922e il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0179cdb5 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01e11189 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0567858a il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x068bbb95 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bbb37ad il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d75e463 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1509a80c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x156cf838 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18421c64 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b07f1db il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21de385b il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26fd38f7 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e51a0d2 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c64ead il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b202fe0 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c71cdad il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d798183 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f554c9f il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43c24dce il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468e055b il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46b9726c il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bb58ce3 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bf02e80 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ce86196 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e82d270 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f0961f4 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54fe203b il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b81bc6f il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5db8dea4 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e0acf21 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e8e0736 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f24d9d8 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fe80fb0 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x606657e1 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x641526d0 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68029da3 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x682638e5 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ef622cd il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76de4d28 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x774baaf1 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x775daad1 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a1732b5 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a304888 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b3c995c il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d240310 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dd39158 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x843e0ee0 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8498fa08 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87d6101f il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8863f602 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x892e2faf il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a0ad13e il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b451fd0 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x912a7b88 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93aeac76 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9806be24 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x984ae038 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f22a9a2 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa41b61f3 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6a3718c il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaaa7f639 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac8b3477 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaea8099a il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb40e0d24 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5207d52 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb55e35bd il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5869352 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5de1fd4 il_full_rxon_required -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 0xb805a22c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb856d5ce il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd510e9b il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1d90544 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc284eb6d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc535f53b il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc61783a9 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7420c81 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc418a4a il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc9f3d20 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce57fe9a il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf9aed48 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4315a1a il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd81baf75 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe182b9d6 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3d479e8 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea9047e2 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeac8695e il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb855227 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1318674 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf362af6d il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4fbc5eb il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf743ec66 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7d483b3 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8569c68 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb0e16f0 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd7e7d97 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd9d15a0 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfde826be il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0cf17d99 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1c4b50b0 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20bb3eb6 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31835f67 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x32600d9c hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3e6d4188 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cb568e5 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cfd13c8 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4eb3a482 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4f4d7bc1 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5011ca0d hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5031bda2 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52bec3f6 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x570b1fe9 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d7619cf hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7da24f9d hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x86c2e5cd hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8985f25f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x93e29358 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb21294aa hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2654f74 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5e6c95f hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf0542a0e hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2bb86a0 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfc85d33f hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x04260a70 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0d93089a alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d4fed22 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x627a7b29 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6373e763 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x67e0f0c2 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x85bee440 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8f6b9ad3 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9426185e orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x96dda3e5 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf78d1f5 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1dc4b68 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd5bdc707 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdd1e4294 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe2d8001b __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x3c4b4f55 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6d692cc8 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a5f09bd rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0afbcebb rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15e12ca2 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2119990b _rtl92c_phy_txpwr_idx_to_dbm -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 0x29e6e260 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f4e1c2f rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32eecb3c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f122942 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42765a93 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42b482bc rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45401b53 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4abd5355 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x505e2cd6 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5337a499 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58a71a87 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6419a950 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x646346d7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6dd8d6c6 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f4f5f90 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x704a35d0 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70af369f _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8971c6be rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92f87ec5 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c1f76d4 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa01ad99b rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa523e747 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa53909b4 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7c9f87f rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9b61054 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac82bd29 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb973eca6 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1e109a2 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd2557e7 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd656e98f rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb81f43b rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedf77411 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeff79c8b rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2a6cbe6 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf414e9e8 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfaeeff6b _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd07c20b rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x17f81e8d rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x251b0b22 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xca46f9fe rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd34c8a9d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x09b0dba7 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x28e930f3 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9ee403bb rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa03a1ad5 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1362118d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d7344c5 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22f702eb rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x286d0de5 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f962807 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c416d0e efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d9f7acf rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4302452d rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e61b1ed rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f74d50a rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58b9e129 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b7c0082 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6813f9fa rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6eccea8e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71613b52 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77f07052 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a86bad9 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b69d55c rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f5edff8 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x916d6264 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c503d26 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7229751 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa90b1d7d rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5b84c65 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc47954c rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd99b3a1 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0fe7e13 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4963270 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd593ffc1 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd5d4d90 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe99b30d3 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb1fcb79 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x046ed68a rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0c9f5a8b rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x166e854d rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3576d71f rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3ed6861c rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4fcb0de4 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x521345e3 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x5b0f0e56 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7e33d66c rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x835d4805 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x88a79d89 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9d7e07be rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa00966da rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa0bfabf1 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa42b7756 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xbd3716ad rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd924ef06 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe4cd43ee rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x28b97665 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x70dff55a wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7e7b399e wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x90a467df wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x81400dcb fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xae1e8ca9 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd00ee523 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0x734d6eb7 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x77c7ad35 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0c84f331 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe231ad92 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe8a1472f nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x190cad30 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5526c18d pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdc3957bb pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x56f2c7a6 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9093809e s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9879ce6c s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x06edfe0f ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x52deca06 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5487f5ac st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x56ff5768 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x681b9a63 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6b7bfa36 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x76aab3ff ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7f2aecc2 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd6d34ac7 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe09852bc ndlc_open -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2adbf288 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4367b7a9 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73ed427d st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ef48490 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fa9b623 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x87faf2b2 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8deaf14d st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91c2fb23 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x949dbdbd st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9d74571 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb887c8f3 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3bcc4b7 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd0ffb8d3 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1c7d059 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdcb25689 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3b9fcf0 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeed0463c st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfbf30af0 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x12ee8729 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x16693b24 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x31c470a6 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x343d96af ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x5df946c1 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x659a2f63 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6847738e ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x7431c2e4 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x78fd6360 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x86566768 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x902b968c ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9a9100c1 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xaab12c38 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xb3376de1 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xb409aa9f ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb736ab9e ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xbafbb14c ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xdc9c0f5c ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xdcce21b0 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xee6073f0 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x75b3531e nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xac7a7891 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0310ed5e parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x091e15b2 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x1b46379e parport_release -EXPORT_SYMBOL drivers/parport/parport 0x1df3804d parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x1e9c0158 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x3728251a parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x4520a47a parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x47481d0e parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x587613ea parport_read -EXPORT_SYMBOL drivers/parport/parport 0x5d551800 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x6c2f86bd parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x6c5dd543 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x742834f4 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x77351dde parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x7a2245b7 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7aaf5e26 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x963f912c parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x9eefaa54 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa93d70e1 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xaa2e7dc6 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xbad173fb parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xbbf6277c parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xbec19bc3 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcb708ee8 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xd41e9e16 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xd7f41150 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xd94553bc parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xe0a746ed parport_write -EXPORT_SYMBOL drivers/parport/parport 0xe4b41f56 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xf12737e7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xf76d3831 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf9dbef11 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport_pc 0xf6e10d26 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xff07129e parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x39f7f7d1 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d20589a pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6f8c2c9b pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7869e8ed pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7f1db10a pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7f2e4f38 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8008783d pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x867b0582 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9425cbe7 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9e49eb27 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa0885b04 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa0e1555a pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa9dd85d8 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaa6fcc06 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb7e5835a pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc2cbd55c pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb8a4eae pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe1e59f07 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x00c78299 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x23b261a6 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2c756385 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4e33c3de pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8bc421c8 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa51eb492 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb298198d pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb65adfe5 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd002b3a6 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9356522 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9627a858 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xfa5de2a3 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x051099da cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1f201364 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x680c495b cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc5882476 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy -EXPORT_SYMBOL drivers/platform/x86/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/platform/x86/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 0x81d9fc93 wmi_driver_unregister -EXPORT_SYMBOL drivers/platform/x86/wmi 0x84ae8f94 __wmi_driver_register -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14dc5997 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x16ec03f2 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19e1df71 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x374e930e rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x539f2b3e rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x59f219d3 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6a96bc6d __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f579bb5 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x92d084d0 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad570d2c rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb1c79af8 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc275c73d rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf62d2e64 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf6532f5c rpmsg_create_ept -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x795a0ea1 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x7236f694 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/53c700 0x8fd7561e NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1aec3aa1 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7cba58eb scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8c143ac2 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa58e441b scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x201c9283 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c47ffd2 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4272df52 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x590ff75e fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c0c1fef fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x733b8bc8 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7e41ad1b fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96f3ccc0 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xae3bb21c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4478ffa fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed3508e9 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02c3078e fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x079af3d2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x087b5703 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x115188f0 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11accfb2 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d59ccc6 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2403e019 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b9de46 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3107bb22 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39b58e2f fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4527b3e8 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d83286e fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dfb8414 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f5911b2 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5148418d fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x552ca4bf fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63fa3766 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65556995 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66b46b48 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69e712ab fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c3ab15f fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f896b4d fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x743a7e07 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775fb871 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c000706 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d0b231b _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eba03ad fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8284cc7a fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a2345f9 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a3e98b1 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ec2ae68 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b575612 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d92d4de fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa29e5692 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4747a6b fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9375390 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb29d2354 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3735463 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e82215 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbebb5370 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5e12113 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd31b55e9 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5aff512 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd79a689a fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8f54c3d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2bc1442 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe65cd675 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7231c05 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeae9b948 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedcc07a5 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf138f702 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf258e718 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2bba063 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf372c215 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaa73f98 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb6a1517 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb7a1fda fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe70a744 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0a78c468 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x50361bea sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbd01b01a sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd9e1e5cd mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1781a9d8 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ba4380e qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30785fea qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33582576 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x663bcf58 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6839beb1 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6d175458 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d8f0a2e qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e66fa99 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb0fb33c4 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe883b3c9 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0829e67 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0213fcc6 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x042b38ab qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x487d9d99 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8449e235 qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9642600b qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbd8be6aa 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 0x534969c5 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x7075d752 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xd1b626c5 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e7dfc80 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x294f2893 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a8f7e9d fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x338d9936 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x401de5b8 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ba8787c fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4de7fecd fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x653c5252 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6a693f60 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76d6b2de fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83640de3 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1147f0a fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4967e5f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1fd0bd6 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe64b26e5 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xea80c2ad fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x002d0535 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x109cd623 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x117878d5 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18a28c6c sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20ff96b5 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2944fbb6 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d2a056a sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e0226e1 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a5e8793 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41d9dc56 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4710ef5d sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a9056eb sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6229693d sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79f5728b sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x892dd980 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c1050d4 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9191fe0b sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b0ec716 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc551eff5 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc7bbbdcf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb17ddc1 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccf793d6 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb61f524 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe12eeac8 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeca9d60f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4bd1270 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf698c94e sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf90bd74e sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9f5f6cd sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3698c92a spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5e7b5498 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x868f8f89 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x93b31829 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfc0b974a spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5643097a srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x65bced69 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x86c6b967 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa4c1df63 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfaee2d6e srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x0c3b9417 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x17b97951 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x03470ea8 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x05bdbf15 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0ac3faa6 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x318c9012 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5a8ad49f ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7f4ae47d ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x99984fdf ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdec138b4 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf0104a06 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xad7216f8 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xfa5e4684 ufshcd_dwc_dme_set_attrs -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 0x28ce9e22 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x34d4dfcd sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3671da70 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4a010a77 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4d11f594 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76992717 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ddb1f49 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80d0c3c7 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ab61b14 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe133637 sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2c2e101 sdw_delete_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdeb96281 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef40f541 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1316334d sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3412a64e sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40f644f0 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x663ff099 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x81b358bb sdw_cdns_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x891557fc sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x90d8117e cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa76a6fcb sdw_cdns_thread -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa77e5888 sdw_cdns_get_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb665a438 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbfd05dac sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc273c37b sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcccd225c cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd2c30b84 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x13199d28 sdw_intel_init -EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x5e07cd60 sdw_intel_exit -EXPORT_SYMBOL drivers/ssb/ssb 0x029e4bfc ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x16cae3cf __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x33c7244d ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x42d27a2b ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x44ce35a8 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x6447a66a ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x6cffc08d ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x72a98187 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7d704849 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x8872225c ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x8a42865e ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8caf0220 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x932ea038 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xa60ecb82 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xa9b747dc ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xaf9d77e2 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xc9425c91 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcca8d9f5 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xcdef553e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xfc0dd3d4 ssb_device_enable -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x02abab85 gasket_wait_with_reschedule -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x03154416 gasket_sysfs_put_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x15f516ff gasket_reset -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x1e4d5bb9 gasket_get_ioctl_permissions_cb -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x36f4751c gasket_sysfs_put_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3c58ab6e gasket_mm_unmap_region -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3c86f83f gasket_sysfs_create_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x5264771a gasket_pci_add_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x69a5ffc3 gasket_pci_remove_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x6cee9e00 gasket_sysfs_get_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x795b2659 gasket_sysfs_register_store -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8d6ba212 gasket_unregister_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x935adf29 gasket_disable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xa6165c49 gasket_reset_nolock -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb828b3c9 gasket_register_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc4795275 gasket_sysfs_get_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe2645ee1 gasket_enable_device -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xaa8f02a7 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xcd66d0b2 ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0c924d78 b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x252e8c31 b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x314aafaf b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x5cf07409 avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x6467604d b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7dd575a1 b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x88239d3a b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x90f25075 b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xae313b85 avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb457c2ae b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xbf803e90 b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc15e1f8b b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xd28f8683 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xd5d699dc b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xeb0dd2c0 b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x124e358a b1dma_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x2216afba b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x33612fa4 b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x472468cf b1dma_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xbf277eaf b1dma_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc7c9fde2 t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xca51e9fe b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xeaaca368 b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xed7ab5d5 b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0x29562993 b1pcmcia_delcard -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 -EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x006dc3ac rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0630cca5 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x076c54d5 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07960b06 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08f3a3f3 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0903a10f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x143ac9e7 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14c14081 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b673f12 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ac64df8 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ad74bd8 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b2cbfd1 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cf60904 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f1b6748 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39b3a070 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e4868da rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e9b4404 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47d6c553 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c7f4a25 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e1bf434 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5042607d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54ffa842 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58b29c23 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a966ee3 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bbfcc74 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a068fd8 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ae32032 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d0fb11b rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x785845d3 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a02af37 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x829d40ad rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83342c18 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x856282c0 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87afe36f rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90bd21b0 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x969b003a rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa04727d4 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5885b30 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa963426c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf4563e6 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5c9c273 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb46390f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf45df8f dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9d308ed rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe30a07ec rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe57dc50e rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1e1a03a rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf99eb30c rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff56a94d rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x046b3735 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04cf3646 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06cba88b ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17fefc7a ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2195c215 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2437901e ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24ddee62 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35d68920 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40fca88f ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46029883 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47656d61 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x486be439 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ab6bd98 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cc21e63 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50092581 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5382787c notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57de7e6d ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d654d7a ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x693ceb43 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x718b6d4c ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78720ed0 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x865e9565 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8928c3e7 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8baeb399 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e042e39 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95bea192 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9af4fd38 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b0256a0 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d4188c2 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa863d2e0 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8abf7a8 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8cb9089 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb05877e2 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb10299c1 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1092511 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb288ad80 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb761a7b2 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaf214f5 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccc711e2 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcccbc522 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd59e2385 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9c9d676 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfd8475b ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe062b9df ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0cafbb6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe21e389d ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe36b95cb dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb6d0e52 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec52ca37 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf07213f5 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9aa2d01 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa266c09 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdae52a5 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x064831c6 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c466808 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17724ccf iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e9e844f iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24fc059b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2852af74 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28de0f33 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29c438fa iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30813f1c iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39929836 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f49fe09 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40320d2c iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x404bf859 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54421668 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6109d3e5 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62a2ba64 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x693ccf1c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ba0e0f6 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x703ca332 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7178ab7c iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72c4436d iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x736d49ec iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f26750f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9480fa3b iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b0cbedb iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad24b76d iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafd2ee40 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5f9bff8 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbce5c3eb iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe1897f5 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf7f323f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc470fda5 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc64bdccb iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc67c56f0 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9d34d4f iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7727282 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb1029a9 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde169246 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5ac0026 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe710f365 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe824fa17 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebe79a0b iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed8b7423 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffb6ba56 iscsit_add_reject -EXPORT_SYMBOL drivers/target/target_core_mod 0x01bab0d1 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x067b9559 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x095ab8ce transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b12ac3c transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e1d0cc5 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x137d6d69 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x15c9f789 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x185e500d target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x189828e6 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c72abc8 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x209b7fbf transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x21d17450 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2313214e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x248a4bb8 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x26500471 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d99040d core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x375d14d3 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c63078e transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d7e0b96 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e7ac050 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ecc9218 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f126934 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x3fcb2554 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x42b8b8d8 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x478a5660 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b10b73e spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x5194b117 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x51eccad5 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x529717d0 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x567f92b1 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x57e07e7a sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6166a234 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x61a20486 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b555440 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d5e0dce transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x739229aa target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4911e1 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x81091e66 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x856c290c target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9199aca5 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x91bc8171 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x92706950 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x93800dc7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x93c70221 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a84abd8 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a9a26c6 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b61ee09 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e1b94e2 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9edc1921 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xa17f64c0 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa68d0366 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xaca601ed core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5ab8dec target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5c91cfd target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xb77b7efc sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xb983004f target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe51a717 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf3c62cf transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc18317be target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7a5bd28 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8f76026 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xcae11d92 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd53836d6 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9111faa spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xda624e6c transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xda7013d3 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xdcbe6a9f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xddcc1b40 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf461470f transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf67da089 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb14c7bf target_send_busy -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x45e572ef usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x339d8278 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9c4e6946 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ef68be1 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x229ee448 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b1c78d3 usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x63faad3c usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6865ead0 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6a38fa2f usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9822e41a usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc5951c85 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8f758d2 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca8e149e usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe43fcc6e usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9f1c599 usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfa8555cf usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0401d022 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5eca95e5 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0447ad1d mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0c8abc80 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x20911f02 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x62e35810 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6f039d96 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8054fc51 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x83b98565 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x93fef7f6 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd4b776f0 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdd11f576 mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe7e61d7c mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf98c8830 mdev_uuid -EXPORT_SYMBOL drivers/vhost/vhost 0x8579d8f8 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xab365ff9 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x0a543ce7 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7781d5e4 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbf1a1801 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc2fdc1cd lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x40c08d4b svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6abc4518 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8ad7e14b svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd50be0d6 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd833e008 svga_tilecopy -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 0xe875c899 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeae8d89a svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xcd458bdb sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2d64a71c sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x1d9d4b79 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x511f7cfe cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xfaf23b05 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4a953af9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7317c5fa matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf2062c76 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0a604a24 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6ecfde69 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xce5a6e42 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfd26e6da matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x6162b9bf matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x43244fc7 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x13991bb1 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6f5e6f65 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7ec3d048 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbd2665a0 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1da5c540 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x83f174d4 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1e131eac matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x21078bba matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25148e6e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd85510c2 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xebfb9b66 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x6ca4ec63 mb862xxfb_init_accel -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/w1/slaves/w1_ds2780 0x0a475296 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x258d07b8 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc2a8fd65 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf7cb5e13 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x11b90540 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x6a0e0650 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xeb986315 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf9c8da94 w1_add_master_device -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x0003c7b5 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x094e0d7b __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x0f4d8ff4 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x112a4d57 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1171ece4 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2239fdd6 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2e1e10eb fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x39182fc9 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x3febbdb8 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x5064d609 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x5c60534c __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5cc4f3aa fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x64518cc7 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x718867cf fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x72af4140 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7bdcc203 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7e1d73a4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x8149dba3 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x82aa488f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x846bfdc1 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x8afaedf9 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9374939c fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x9b369128 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9ee58269 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa25855ca __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa4e3d0c2 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xa4fcd915 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xa92ea070 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xacff8aa3 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb297d693 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xbcc78288 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc85c5ba0 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xd1dbfa76 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xd80d6f7b fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xdd544b86 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe3a3e3ab __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe52410ae fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe5458bc2 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xff3a3ca6 fscache_mark_pages_cached -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x06b15802 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x07951c58 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x39bf9f70 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x689b48a7 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x9e2faa29 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xc157b7ec 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 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x415ec4f6 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x8e0825fc lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x044c4c47 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1b5e66c1 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3f11414f lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x41191330 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x55aed9ca lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x80017259 lowpan_register_netdev -EXPORT_SYMBOL net/802/p8022 0x54ccb49e unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xd130bc64 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x939ab91b unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xc1e58738 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x08cc3b5a p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x103cee2f p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x11bb5ece p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12924270 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12a0bff3 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x15147442 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x193046a7 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x19da1034 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x22f476ce p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x24944111 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x338abd5c p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x33ea0d22 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x3ce83030 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x40210e87 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x410ca435 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x42537284 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x48e2c46e p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x4f2e2122 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6fa11d5b p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x731fd75c p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x735af1c7 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x754f6af1 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x77414020 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x77fc69c3 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x83ec023f p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x8784902a p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8b9488f9 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x9191a60c p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x91fc3b4b p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x949ed138 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa0b08ab7 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xab3a771a p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xb01f96fd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xb3c089c9 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbbcce7a7 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xc69142f2 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xc8a36b55 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xc8d5b4f8 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdee23e3b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xecaa09f4 p9_show_client_options -EXPORT_SYMBOL net/appletalk/appletalk 0x3643ff48 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x502ce78c alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x8dc4e8b7 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xf2b8afee atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x00f0ce48 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x16c4da92 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x1f852418 atm_dev_release_vccs -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 0x5309ea02 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x7859e951 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x8543c79f atm_charge -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb1bc83d2 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xb99410c4 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xcaf6c241 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xd7dd8b0e deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xdef6316c atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xf3969815 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xffe6910b atm_dev_deregister -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x280cf143 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x43f58502 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x44043f15 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x45381e72 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x505a1ce9 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7d15a28d ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xace95c55 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd56df06f ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x000201fc bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x092615c9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x137e2cb8 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x146e3a75 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16e82991 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x187e089d bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dbcf12d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1eab95af bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fccafc9 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2443283f bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x264860c9 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x283ecf44 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x322491f7 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3679a968 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b3efab4 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x412b97b6 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x58de2aba hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b85ce54 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c48e3c0 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64528f7e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x666d79a4 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a7c0d78 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88eafb39 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a14fce0 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a6c8617 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x956975f6 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e8050e4 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3fdf287 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab53f550 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab685783 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xabf81166 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf112e3f hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb413dad4 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6a8bf17 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfdaaf10 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcae65e55 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc315961 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1a0bb9e l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4990b3a bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4ce0a14 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea2aa5d3 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef3e6e86 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0606c5a hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4db461e hci_unregister_cb -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x54e7aaa1 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x97221ef9 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc63b370b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xffd9a09c ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x0a951448 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3d97a3d8 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x818f7fb0 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x92339de4 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 0xe3f1b674 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x097ac0c3 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x362ae6cf can_send -EXPORT_SYMBOL net/can/can 0x4494e40d can_rx_register -EXPORT_SYMBOL net/can/can 0xa2524b52 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xfce16dc5 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xff9927e9 can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x01aeb9b6 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x063cd7bc osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x067c9b24 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x0c7bc9dc osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0f3c2651 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x12032a33 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x13a6c5b2 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x176423e3 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1986fa6f ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x1a5175f0 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x1b287ccc ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x1b860843 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x1c373ee0 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x20532921 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x217f713c osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x246d6d9b osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x29d32c52 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x2a3e9f54 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2cfc5e6a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x2e9e9f5a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x2eaa7cc3 osd_req_op_extent_osd_data -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 0x3d5d715a ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x40ad2a0f ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x4284e4d7 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x42943fd3 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46f28bf1 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x480cc155 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x50da1f33 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x546616f7 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x55ae36a7 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5e959120 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x5f6e3322 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x6191764a ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x65d56286 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x6863abd4 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x6967c9f8 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x7276cbbc osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x7894097d osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x7a4955fd ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x7c972494 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x7d80c76f ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x80fa1c60 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x81ec4557 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x851a290b ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x8539e6d6 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8afea15b ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x8b945a3e ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8b9c117d ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8d3ae97f ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x93b629a1 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x946c0b6f osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x97c7a801 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x99ae61ca ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x9b483a62 ceph_osdc_readpages -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 0x9f37b16a ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa9032ae5 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xab980933 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb0470529 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xb0e169f4 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xb1b74776 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb1d73756 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xb3ccfa6c osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xb502346b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xb53b31c6 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5b7abb7 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xb7087b36 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7507991 ceph_auth_update_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 0xbf7f18ef ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc510b34e ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xc5932a98 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xca7262d1 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xcc0b12af ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xd0a45cb4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xd2646699 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd28be41b ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd49e5c32 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7b6c45d osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd8f7493c ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xd9ec8af4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xdc33139f ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe17d2c4d ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xe324b7cd ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xe47478f0 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe4b7b91c ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe5f9136e ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xe64126a2 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xe72e12b0 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xe76b7b7e ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe85e63bd ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xea85f728 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xed23cd5e ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xee1be611 ceph_monc_blacklist_add -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 0xefde1c0f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xf862c5d6 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xf9131b25 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xf9441001 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf987b0c4 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xfacbf8b6 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xfd586ccf ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xfee52638 ceph_monc_do_statfs -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6ee5d7d0 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd363cadf dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0x0ffe4e10 dsa_port_vid_del -EXPORT_SYMBOL net/dsa/dsa_core 0xef12295d dsa_port_vid_add -EXPORT_SYMBOL net/ieee802154/ieee802154 0x09b261e0 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3fc482f8 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x82fdb30d wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x84a1c50b wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc637cfa8 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe102b60c wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x9a3f0a13 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x9e5e8039 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x15e38f9c gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3d3331e5 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x94a75272 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd5244f4 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd555518a ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x36bac609 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x38138ae9 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe657e216 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xeec1f4e1 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3e00eafd ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9da8d755 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd23941a1 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x7d13c69f xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xbbac0fc2 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x72b2be29 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41378ced ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x48e5ab2c ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x78f3d753 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8cea38ac ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa34db1a5 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc1cb3873 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc722b022 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdd221ec1 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf43bb2b7 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8793d1e1 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8ef17a4b ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9fe89cf7 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xbbcad085 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xf9781a1f xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3ffa1960 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xba5ac8c7 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/l2tp/l2tp_core 0x05da702b l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_core 0x81fd2b20 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xbdc3b10c l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x09fa6e30 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x4067b38c lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x90a8c13d lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x93128acd lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xa8bc4e63 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xed5a041f lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xf45ccb46 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xfd9cf579 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x031c616b llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x245fc316 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x40eed213 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5d3a9d3d llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xa784a2ad llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xb3173893 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xbf6b1de1 llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x099eb2ac ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x12b02f93 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x15040549 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x1673fd89 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x17024bdc ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x17fffd98 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a561871 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x1b2880f1 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1bfdc5b1 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x25226b26 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x2a0ea8f1 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2f51bafa wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x309f8c9f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x311a46ec ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x342675b7 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x360af517 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x36808c31 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x38b54f63 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3a9d938c ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x40e4c51b ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x42fc2eb7 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x4a9323d6 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x54722f9a ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x576850b2 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x57c5f995 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x59cfdded ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x5beed63a ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x5de6e9f8 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x60a21583 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x6413c0f6 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x667aaba2 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x66ba63b3 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x67a916e8 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x68512d96 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x710a8714 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x711f14df ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x7165090a ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x72c208e7 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x799fad03 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x7b24db30 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x7bf710d6 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7c4cba22 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7e4befc7 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x7f783bed ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x84c214cc ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x869350aa ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x879f9f16 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x8c675bdc ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x909165d7 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x913f6297 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x960f0d4e ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x990ec70e ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99902b80 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x9aee475f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9afd5a03 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9c015e66 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x9ecb0840 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xa20ce9c4 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xa3b75ee5 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa4773c42 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xaa1df0e6 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xac161115 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xb085f80f ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb3df6c83 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xb45353d4 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xb8365c4e ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb8b549d6 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xba609724 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xbffc2dbd ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc04ffe14 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc42266ed ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xc4ed0897 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc92c8195 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc9d9b315 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xca3599b8 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xcb198084 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xcc560c0b ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcd8abd9d ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xcda42e81 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd2a748d2 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd4151b2b ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xd61be59f ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdb47b10b ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe61a4363 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xe8d9ae04 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xe9985a32 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xeb615286 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xec10bcd1 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xf2e48ac0 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf9ef6ef1 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xfb1ecef6 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xffba8228 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac802154/mac802154 0x0b2265d8 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x135f8ad1 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x2367c2b3 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4ba93b90 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x80855fa2 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa95ef7ad ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbdb8eaf7 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xcbe7b0f3 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ea69e4b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20f31083 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3bbe0490 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47619b66 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a46152f ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x50040343 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55dc4900 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x662ebbd9 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71375282 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c9a54ec ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3d16449 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb95e4136 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca1422bc unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8c87976 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe0ce9c87 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xaec94a45 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd6d07644 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0ffb609d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x2dc18060 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x6a46d9ce nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x90f0edcd nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa5d5a927 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1cb12a1d xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x230ee03b xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x33f3183b xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x480c1233 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x8248bdaf xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x8b6b4c1f xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcf6d807d xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe86a2d2c xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xe8f84ded xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x234ec708 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x2c4bd9db nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x317ca1a8 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x3cebbe32 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x4e310271 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5a49b954 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x663683e0 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x6f90aeb3 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x72dc8f41 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x916b1d44 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x96455fc9 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9d88483d nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xa2ff09b9 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xa60ec0dc nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa83aa3db nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xb0975e47 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb9417047 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xd4a2ace9 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd678d0f3 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xeb6afd18 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xf3fdebaf nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x0646829f nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x1197b666 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x1a1aebf6 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x211c4c79 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x2c0d4bfb nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x35f95fcd nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x53cd5c91 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x55126e4e nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x59786a38 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x611a759a nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x6c9973f6 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x75c89853 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x76a62986 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x79daf022 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x7ae3b7d4 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x7cc37efa nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x88b97a93 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x93d181ae nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xa54e0443 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc0801fd7 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xc2c48a1a nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xd0e8348c nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd12c471f nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xd4b4f5ea nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdea62c28 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xec9ae877 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf75d6c0c nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xf843f18b nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xfbec5c35 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nfc 0x29c74966 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x311bcada nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x314e13ce nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x346dd18d nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x41702fd1 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x422c973e nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x47c3a942 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x4b90ac63 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x5272dcee nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x5fe647a7 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x600e9a39 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x69bccb55 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x71c15f0b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x72c25138 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x9102c85e nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x9b44db14 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa1d36912 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xab743168 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xb0d522f3 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xb1162c4a nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xcb6d7b16 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xcf963260 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xd11f1566 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xf0ca908c nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xfbefd106 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc_digital 0x07e55fea nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1106d80a nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe72fe96e nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xf14863e3 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x05748e06 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x0bb0aae3 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x11ccc75c phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x15524458 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x17a9e9cd pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x1d140056 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5cd376d4 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x5e420a7b phonet_proto_register -EXPORT_SYMBOL net/rxrpc/rxrpc 0x07204eb2 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x118d6369 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1c23ce00 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x283b2a80 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31590fde rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3608dc5f rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x44d50726 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4fe30ddf rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x544a4e00 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x575fe4c2 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e45d1ad key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x63cbc12f rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7cc5a00a rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xae2aecec rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc03c33cc rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd418ad2e rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfcc999e3 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/sctp/sctp 0xe8aa15e1 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0372219f gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x623f3050 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa1240a14 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4ccf3c04 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcd14c9ea xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xee0f9059 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x1883f7b3 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x1d357374 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x2a88e5d0 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xbc4329f7 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x3dd7327e tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xb9c924da tls_get_record -EXPORT_SYMBOL net/tls/tls 0xf9ae4700 tls_register_device -EXPORT_SYMBOL net/wimax/wimax 0x23130432 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xb760ade6 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x007aa503 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x009a099e cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x0230c511 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x04ce4022 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0785d17e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x08a5d29f cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x08e66ebf cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0acc28cd wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x0c0a6701 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0c182218 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x0f100c7d cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1252b8a2 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x188f8e70 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x1b623fd9 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1ca4ee87 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1ca7e48b cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x239276fe cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x25da516e cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x2ad7d7db cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2e49e38e cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x3193b8c0 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x375102fd ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x3c2733ae wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x3e79b3df cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4034fb8c wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x416703c4 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x488bf5ab ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x48d6493d cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4943701c cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4a7383a2 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x4dc65166 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x4e9a94c9 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4ef06c6b cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x5257cd53 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x585550e4 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x5a7764e5 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x5a7bb59b regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x5be94bd8 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x631d0a2b cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x658bd82e cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x663d6380 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x68c86913 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6f3d8140 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x749b77db cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x77cac822 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x77d346c5 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x785750c0 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7bf483be cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x803694b3 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x88aa1dd9 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x8fd13bcb cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x9637ed73 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x9837f7d0 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xa3f381a8 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xa6accece regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xa84b6750 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xaa1fcfa2 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xaf06b49a cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb10dbd17 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xb285acf4 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xb3a53e1a cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb560346b cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xb7f3fb65 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xb8d6a561 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xbccbeaad cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc0381457 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xc95e7afa wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xc9c81371 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcac7c62b cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc9730b0 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xce613aad wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xd54e15a6 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd602c9a9 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd648abe7 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xd668c922 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xd8d24f5f cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe06656b3 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe140bd65 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe2c703f4 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe3918ef2 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xe54b1ad0 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xe5837704 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xe837a8f3 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xe8efa998 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xedc1b2b5 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xf037bbee cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf105dc9e cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xf4b75bb4 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf52ff1f8 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf7488716 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xf8634431 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf9820c2e cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/lib80211 0x65dbed8e lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x65e7b4f6 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x67081b79 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x710e524a lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x71155607 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x8e636b25 lib80211_register_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xbcd7b25d ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5e84b98f snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x73d8521b snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb7fad269 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc23b1b92 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 0xfb38eabe 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 0xf0a1fdb3 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 0xb92c35a8 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x010dbd28 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x09bd97f7 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x17491b5d snd_card_file_remove -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 0x19a64b59 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2056ce77 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x226c735b snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x2309e694 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2a18b3d1 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x2f2b442f snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x31dda0bf snd_device_new -EXPORT_SYMBOL sound/core/snd 0x32694538 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c86b4db snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x414e9dfc snd_device_register -EXPORT_SYMBOL sound/core/snd 0x4737fe4c snd_register_device -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x58d1fbdd snd_card_free -EXPORT_SYMBOL sound/core/snd 0x5995c155 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x6130d7de snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x649bfe83 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x66a12f17 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x670272ed snd_component_add -EXPORT_SYMBOL sound/core/snd 0x687a07c0 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x68df4c35 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x6aa20dca snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x6afd64f1 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x6d1820c5 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x6dfbba82 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x6e85ce83 snd_device_free -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 0x7af4706b snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x805ebe7f snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8863be81 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x89eb43c9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x8de8e1cc snd_card_new -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f505393 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa09983f7 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xa9cf2d20 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xa9d3a703 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xae09a720 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xaf7a3328 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb65c2a90 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xbe5bcc42 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xcaedf7cd snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xcc25603d snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xce9ba028 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xd23e6cf7 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xd7065ba1 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xe1e1ed42 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xe2f41d3d snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x212a78f6 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0020e4b8 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x01c028bf snd_pcm_hw_constraint_minmax -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 0x06a113e0 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x07bd828e __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1387b923 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x15b4e01b snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1e0d901c snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x20bfd50a snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x2abdc28a snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37a7716b snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3d2167da snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x3d88d80c snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4a223879 snd_pcm_lib_get_vmalloc_page -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 0x51b8ec9a snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5afc07a6 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5eac2d94 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x5f4502b4 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x641c6484 snd_pcm_lib_mmap_iomem -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 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x707649e1 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x70ff9380 snd_pcm_sgbuf_ops_page -EXPORT_SYMBOL sound/core/snd-pcm 0x75870b9a snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x7fdb8405 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x826a02a0 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x853f42bc snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x86e4e76b snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x86f1d621 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8c392e15 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8d958ca6 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x8ed7c090 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x93ddb594 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9495132d snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x99e481e7 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x9e0373eb snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xa41e7de7 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xa44c05a5 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa6a866f4 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xa8bcda7f snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb052ee09 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbfe61110 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xd18492ab snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xd459880c snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe285d23d snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xebb53d1c snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfcbbecda snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xfccbcfd6 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x00e566b2 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d7749ad __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x321e5202 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32e34edf snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x367a2738 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x48c455d3 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4d45a498 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a413a66 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x60b00728 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x99b343f5 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd0258ff snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcd339f0c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd4479a29 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbe2ceb9 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0be0efb snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe232c454 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2f2c07e snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9bb43f9 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfa4fa215 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfcc04dc2 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xa1bd81a9 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0ab41bb2 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x1574479f snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x1e330af5 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x29dcf07a snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x2fa4030a snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x4a02bc66 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x5add2cb3 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x5e94fb3f snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x90d268e0 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xbdc8c404 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xbde2a55b snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xcddd593a snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xde7c4c5d snd_timer_notify -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xccbc0eca snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x64aa622d snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7a2016f7 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ea8739a snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8f60fadd snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xacfc4cd9 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb8de4953 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd0f4f8fb snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe06874ae snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfe36f970 snd_opl3_init -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2442cecb snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28d3532f snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3f29f858 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c97347c snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa3a12d8e snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb843836b snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb06bdf5 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed3cba33 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf8b2ac7b snd_vx_load_boot_image -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20a85ded cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x211b3875 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26bcac74 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d9e6664 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3611b1d1 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3dabc73f avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fa1c3a8 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a182ab9 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c4da577 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69feb31b amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x751378df amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7aedb13b fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b867ebe iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87df4d89 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95f25ce7 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x987b84e7 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9acff5fa amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c58bedc iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e8b98ed fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa65c5ebc cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad3915dd fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf3d8fdf cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8ea9804 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd05c256 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7d299ec fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb9f2f79 amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xddbe7083 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe03ae8d1 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe40f63f9 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed4cc097 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4ae039e amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf607ecae avc_general_get_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x22809a35 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf95a6cf2 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x347acbf1 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3c54fcd9 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d0b8d56 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x40e592a5 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5675dc3d snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7ee269a5 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb2ba2ffa snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc36214c9 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x059b8bf8 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x31a4db55 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x33329b7a snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x357d3c55 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x41aef533 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xba67090a snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x05c23264 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x46d99b17 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xaebafdce snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb9bb7511 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3324f5c0 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfdef83bf snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3129742a snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43dc68c9 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9f3fd638 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa0162a92 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbb2caa20 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfafbd697 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4e6cabd0 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6e530629 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x89f3297e snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9e56791f snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd9b03369 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xefdf9e2d snd_i2c_probeaddr -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x10ef1af5 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x324399ba snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3fc3256f snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x47dcebc7 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6cf5e655 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7fc020cc snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x979e67e5 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcd29ad32 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcd3ca84e snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe310296f snd_sbdsp_get_byte -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b03dbb4 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e3eef41 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e201678 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x32bead3d snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5502c6da snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5517fd91 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x67b0e9f9 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8200cace snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x842cce7b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8defac81 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9fc0fa7c snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2cae40e snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb594116c snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb702ddaa snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9a60e1c snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1f0fb9a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe455e124 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x0739187e hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1085a91e snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x18c73329 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x334a61c3 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7cda5396 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8262a31e snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb87e831e snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0c0b21f snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd4238c1c snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf1e95a77 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x43a649ea snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe1f6c19c snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf9a528af snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0341e4d7 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2632fa64 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ccd062c oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x344a6342 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49d2d2ef oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53df4b09 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x626d261b oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e3fb112 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7e1e0120 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x864fd240 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c063e33 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d51a818 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7008cfa oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb820f36a oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4120719 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd6e8530c oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe379f579 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3ef023b oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf605fd23 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6415fa9 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8d8d1bf oxygen_read8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x39440c6b snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8996b540 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8ef40a8b snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdba8db95 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf7f7dd00 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x538fc6e2 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xbe80e6eb pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf8ebbe67 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xff9f94b8 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6c1bdc71 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x8793127c aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe1152463 aic32x4_remove -EXPORT_SYMBOL sound/soc/snd-soc-core 0x0b0ecbbe snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x156bccb1 sof_cht_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x18685b55 sof_byt_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x5e25cf8d cht_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x8587b18c sof_tng_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x8639b9f0 tng_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xaabb51a4 byt_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x116e626f hda_codec_i915_exit -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x2087bf82 hda_codec_i915_get -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x2e5d3943 hda_codec_jack_check -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x2f222d13 hda_codec_i915_init -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x3e241d3c hda_codec_jack_wake_enable -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x7720ac04 hda_codec_probe_bus -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x992817a7 hda_codec_i915_put -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x5b5be595 apl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x61cf31b7 icl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x703e1716 tgl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x993e797d sof_cnl_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xacf31f39 ehl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xecfa9993 sof_apl_ops -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xf4d48b52 cnl_chip_info -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x0a608d3f intel_ipc_pcm_params -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x39792908 intel_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x889cf0a5 intel_pcm_open -EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xcb90a782 intel_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11865afb snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11e71590 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a2ce754 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b4810cc snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b3e8d06 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b8a7472 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c1b4358 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40b3d1ef snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42236c24 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48081cc4 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a91cb3b snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x58e1a245 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5daa04a2 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5dd21d5e sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5f86f1b1 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x604e0769 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6395ca95 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c9752f1 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7111e9f1 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x731fa3e9 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79933930 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a69f5ce snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ad5a3d9 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ccf75da snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94dd45cc sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x974ed1c5 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e828c26 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa257cf48 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9616337 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9d1c47c sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad99cf09 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb291b980 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc25f48b9 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcbd8d3a1 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3df8df3 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd95b73ad snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde53b8f4 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3774095 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4e202f4 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5a67f11 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea19cb8c snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf23e955d snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf281ea66 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf64a7251 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf67ef59e sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfbb73bc4 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/xtensa/snd-sof-xtensa-dsp 0x99e359be sof_xtensa_arch_ops -EXPORT_SYMBOL sound/soundcore 0x5959c76a register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x613fa55a sound_class -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa1eb158f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xb5905c6a register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xb7b1b19f register_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x05921f27 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5985068f snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6d586d69 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbb7eff47 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd0db8080 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe9a322f9 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x293ac667 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x34ac95ae snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x48f920c4 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7d95566f snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x85659341 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x97bb24f2 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9db98086 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe2935f8c snd_util_memhdr_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc32c797b __snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL ubuntu/hio/hio 0x00678e20 ssd_set_otprotect -EXPORT_SYMBOL ubuntu/hio/hio 0x0781504f ssd_get_temperature -EXPORT_SYMBOL ubuntu/hio/hio 0x646d7483 ssd_set_wmode -EXPORT_SYMBOL ubuntu/hio/hio 0x7087a13d ssd_unregister_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0x76f15c24 ssd_submit_pbio -EXPORT_SYMBOL ubuntu/hio/hio 0x80477fbe ssd_get_pciaddr -EXPORT_SYMBOL ubuntu/hio/hio 0xaf207ce3 ssd_bm_status -EXPORT_SYMBOL ubuntu/hio/hio 0xb5f2aa4e ssd_register_event_notifier -EXPORT_SYMBOL ubuntu/hio/hio 0xd230c1eb ssd_reset -EXPORT_SYMBOL ubuntu/hio/hio 0xd32cb6df ssd_get_label -EXPORT_SYMBOL ubuntu/hio/hio 0xf2763408 ssd_get_version -EXPORT_SYMBOL vmlinux 0x002870de nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0x0052df7c xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x005b9bc3 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0065c635 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x0075f776 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x00840f39 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x0091af21 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x00953697 __inet_hash -EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00d195bb get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x00d49f92 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0105b9ab set_user_nice -EXPORT_SYMBOL vmlinux 0x0118ea0c sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x011c6f43 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x01215295 nf_log_unset -EXPORT_SYMBOL vmlinux 0x013b2987 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x01420d44 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x01444fc8 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0176a978 __pagevec_release -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01b0a936 is_nd_dax -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b92978 inet_listen -EXPORT_SYMBOL vmlinux 0x01b96d3d writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c36513 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x01c3abd1 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x01c46647 vga_client_register -EXPORT_SYMBOL vmlinux 0x01c7e67c filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x01d8b695 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x01df383e dqget -EXPORT_SYMBOL vmlinux 0x01fb9c6f simple_dir_operations -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02212bad __check_sticky -EXPORT_SYMBOL vmlinux 0x0221f4a7 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x022af484 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x0233502c vme_irq_free -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x02464f7d nonseekable_open -EXPORT_SYMBOL vmlinux 0x02531d91 phy_stop -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x025ac7e8 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x02606df3 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0262dd8b blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x0263d200 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02754906 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x0292f8f9 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x0294a2ee phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x02964b8c __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x029db215 __bforget -EXPORT_SYMBOL vmlinux 0x029f0ae9 param_ops_uint -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02a7823a ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02d75782 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x02d869d3 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x02e17c9c fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x02e7234a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f013ac blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x02f15a61 vif_device_init -EXPORT_SYMBOL vmlinux 0x02fafca0 vme_irq_request -EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033da92d vme_slot_num -EXPORT_SYMBOL vmlinux 0x03455cda fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0357944e set_pages_wb -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03700126 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037e238e cpu_tlbstate -EXPORT_SYMBOL vmlinux 0x037e4ffa __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03923a54 dst_destroy -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a2e7d4 tty_register_driver -EXPORT_SYMBOL vmlinux 0x03cc2127 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x03d60a4b tcf_em_register -EXPORT_SYMBOL vmlinux 0x03daf270 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x03eda267 dev_add_pack -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x041a32d2 blk_get_queue -EXPORT_SYMBOL vmlinux 0x042ad728 __find_get_block -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044e98a7 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x04510f41 inet_add_offload -EXPORT_SYMBOL vmlinux 0x04660720 ping_prot -EXPORT_SYMBOL vmlinux 0x046925ef bio_uninit -EXPORT_SYMBOL vmlinux 0x0470b29f blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x047a7522 do_SAK -EXPORT_SYMBOL vmlinux 0x0482cb85 dst_release -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0490588d is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x049a5b79 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x04a08f44 pps_event -EXPORT_SYMBOL vmlinux 0x04a59576 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x04a5a0c1 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04ce4afc lock_sock_nested -EXPORT_SYMBOL vmlinux 0x04d151a9 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x04d381eb vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04dd8eb9 proc_set_user -EXPORT_SYMBOL vmlinux 0x04de1bda nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ebcae2 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x05064782 tty_name -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050c3829 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x055b6936 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x055cae1e ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056174ce skb_copy_header -EXPORT_SYMBOL vmlinux 0x0585986c unregister_console -EXPORT_SYMBOL vmlinux 0x05a097fd pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x05a39939 amd_iommu_get_v2_domain -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05b96ccb flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x05c1b4cc proc_create_data -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x0613bba1 new_inode -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0644b431 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x06690985 udp_prot -EXPORT_SYMBOL vmlinux 0x06798b9c jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x067ce2b9 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x06888c6c bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x069891bc __tcf_idr_release -EXPORT_SYMBOL vmlinux 0x069a8b3e inet_recvmsg -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06a9d2b8 send_sig -EXPORT_SYMBOL vmlinux 0x06ab429d i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x06b887df arp_tbl -EXPORT_SYMBOL vmlinux 0x06ba457f put_disk_and_module -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06bffbc8 __neigh_create -EXPORT_SYMBOL vmlinux 0x06c56ee0 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06d59950 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x06d78735 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x06e2d8b0 mdio_device_free -EXPORT_SYMBOL vmlinux 0x06e665eb pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x06f01a8a bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x06f6d77d agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x07046c42 uart_register_driver -EXPORT_SYMBOL vmlinux 0x07109cc7 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x07177ad4 noop_qdisc -EXPORT_SYMBOL vmlinux 0x071ce926 gro_cells_init -EXPORT_SYMBOL vmlinux 0x071ecb3b ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x07509b30 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x07609f7d kthread_stop -EXPORT_SYMBOL vmlinux 0x076588b5 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x0767f69e register_framebuffer -EXPORT_SYMBOL vmlinux 0x07a4b22a udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07afd5ff xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x07c6dcdf create_empty_buffers -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07e7aca0 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x07f011ff mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f87f8c nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x07fcf2bc has_capability -EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080ffddd sockfd_lookup -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084b4073 simple_open -EXPORT_SYMBOL vmlinux 0x0858aa26 config_item_get -EXPORT_SYMBOL vmlinux 0x0861e92c init_special_inode -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08ac80da __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x08d1ed9b blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x0911b719 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x09266ebf ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache -EXPORT_SYMBOL vmlinux 0x0944c43f node_states -EXPORT_SYMBOL vmlinux 0x0946dd90 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x09602ae9 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc -EXPORT_SYMBOL vmlinux 0x0967e5aa vm_mmap -EXPORT_SYMBOL vmlinux 0x09682235 down_timeout -EXPORT_SYMBOL vmlinux 0x09720e84 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x097347c4 user_revoke -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099194bb jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x09994312 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x09b9390c tso_start -EXPORT_SYMBOL vmlinux 0x09c3ad63 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09ca016d xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x09cb3471 inet_protos -EXPORT_SYMBOL vmlinux 0x09ce49cd bio_add_page -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x0a06f35a __put_page -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a2e60a8 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x0a412c55 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x0a4327c2 input_grab_device -EXPORT_SYMBOL vmlinux 0x0a5aaa54 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a77d909 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x0a78315b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0a9a6da4 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaaffb0 kill_litter_super -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0abd1703 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x0ae1b550 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x0af18489 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible -EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 -EXPORT_SYMBOL vmlinux 0x0b07e5df nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x0b11b2fb tcp_make_synack -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1cc375 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b28e223 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b4471c7 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x0b5be7b6 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8270df jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x0b86a4d7 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x0b8d7099 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x0b956c38 ipv4_specific -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bce3f04 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x0be610aa dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x0c0741eb bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c203ec1 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c39ec6b udp_set_csum -EXPORT_SYMBOL vmlinux 0x0c45b8f9 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0ca13acc vme_register_driver -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cb55e09 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cbe386b sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd3c707 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf64bb5 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d087d74 inet_frags_init -EXPORT_SYMBOL vmlinux 0x0d1e875f pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0d23251b posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x0d324277 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x0d360b61 key_unlink -EXPORT_SYMBOL vmlinux 0x0d443caf skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x0d49004a __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5cf7ec ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d64434a xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x0dce7400 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x0ddffa8e generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x0de303e1 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e52066b read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x0e678890 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e789cd6 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x0e8a3f28 set_create_files_as -EXPORT_SYMBOL vmlinux 0x0e99937e simple_nosetlease -EXPORT_SYMBOL vmlinux 0x0e9b7f57 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecc80cf sk_alloc -EXPORT_SYMBOL vmlinux 0x0eec4d6a would_dump -EXPORT_SYMBOL vmlinux 0x0ef05c58 nf_log_register -EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f182cb3 dquot_disable -EXPORT_SYMBOL vmlinux 0x0f1c7f4c pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x0f2319f3 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x0f28cf36 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f4002f1 sock_create -EXPORT_SYMBOL vmlinux 0x0f5b029b tcp_seq_next -EXPORT_SYMBOL vmlinux 0x0f79deff lease_modify -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f90f9e9 tty_unlock -EXPORT_SYMBOL vmlinux 0x0f9936ca key_move -EXPORT_SYMBOL vmlinux 0x0fa0be6d mmc_free_host -EXPORT_SYMBOL vmlinux 0x0fa21e27 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcce24c sk_dst_check -EXPORT_SYMBOL vmlinux 0x0fce2253 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fde26b0 iput -EXPORT_SYMBOL vmlinux 0x0ff3fb4e pnp_is_active -EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1054fc84 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x1064b31b __module_get -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107b5911 blk_put_request -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1096327d elevator_alloc -EXPORT_SYMBOL vmlinux 0x10aba8a2 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x10b050b8 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dc557a generic_setlease -EXPORT_SYMBOL vmlinux 0x10dc9624 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111c0137 dquot_acquire -EXPORT_SYMBOL vmlinux 0x11300ea0 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11720b83 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x118380bf netlink_broadcast -EXPORT_SYMBOL vmlinux 0x119f731f _copy_to_iter -EXPORT_SYMBOL vmlinux 0x11b26a58 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x11b7c968 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x11cd6f91 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x11d9b782 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x11de2f98 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fa2253 input_allocate_device -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x12165a2e bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1217d904 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x12282931 _dev_warn -EXPORT_SYMBOL vmlinux 0x1259ace8 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x1273a260 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x1279fff4 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x127a0aef ata_dev_printk -EXPORT_SYMBOL vmlinux 0x12892824 may_umount_tree -EXPORT_SYMBOL vmlinux 0x128eda5b tty_port_close_end -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a4e472 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d73d0d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x130a12ad skb_put -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 0x1322eb9f netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x13243876 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132fc8b9 single_open_size -EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x13473fc8 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs -EXPORT_SYMBOL vmlinux 0x137ac25d flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13aa95f7 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x13acc889 get_vm_area -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fde373 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x13fe97ef simple_get_link -EXPORT_SYMBOL vmlinux 0x140b3abe netlink_capable -EXPORT_SYMBOL vmlinux 0x1412006f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1417a6c8 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1464537b finish_open -EXPORT_SYMBOL vmlinux 0x1481bfce kset_register -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x14a64e25 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x14b7bcbe jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ce690d dst_alloc -EXPORT_SYMBOL vmlinux 0x14ebca78 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x14f9d829 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x15150e34 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x15252c3a udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154942f3 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1559e4eb __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x157f216f generic_file_fsync -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c03526 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15f12b91 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled -EXPORT_SYMBOL vmlinux 0x1611742b neigh_parms_release -EXPORT_SYMBOL vmlinux 0x161a28ff ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x165b145c ex_handler_refcount -EXPORT_SYMBOL vmlinux 0x165b80d5 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x1662308b netpoll_print_options -EXPORT_SYMBOL vmlinux 0x1664ff4f inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x1666334d mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x16722842 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x1673b88e ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a911a2 fqdir_init -EXPORT_SYMBOL vmlinux 0x16c4fb60 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16de4ebd mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e78526 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x16ef38f3 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x17085c81 devm_free_irq -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17141f56 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x1719f792 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x171abeb1 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x17374211 register_md_personality -EXPORT_SYMBOL vmlinux 0x1749199f unregister_cdrom -EXPORT_SYMBOL vmlinux 0x1751fa24 get_disk_and_module -EXPORT_SYMBOL vmlinux 0x175c48e2 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x175ec6ca phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x176ea392 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x17749656 dquot_initialize -EXPORT_SYMBOL vmlinux 0x1784b7aa set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x1792b983 dentry_open -EXPORT_SYMBOL vmlinux 0x179767d4 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x17bc6477 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17fda801 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x1833e66e block_invalidatepage -EXPORT_SYMBOL vmlinux 0x18512427 vfs_get_super -EXPORT_SYMBOL vmlinux 0x186041e4 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x18613d5b d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x1863c59d ip6_frag_init -EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0x187e4b1c fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189d0f36 vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0x18a0b711 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x18a50514 d_move -EXPORT_SYMBOL vmlinux 0x18a5a1f7 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18d837e2 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x190cfed4 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x19102bf0 misc_register -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x1934a246 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x19359c5b tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x193e2654 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x19466187 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x194779bf __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x1948c366 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x194fb70b dm_register_target -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x195e20ca dget_parent -EXPORT_SYMBOL vmlinux 0x195f7370 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x195f82c1 dev_open -EXPORT_SYMBOL vmlinux 0x197854f7 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x197f8fed __devm_request_region -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19cf69d8 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x19d5b5a4 pci_restore_state -EXPORT_SYMBOL vmlinux 0x19d84621 register_console -EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19e487ca padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x19ec0cb4 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x19f28c6b serio_interrupt -EXPORT_SYMBOL vmlinux 0x19f4303c mpage_writepages -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a282bff d_tmpfile -EXPORT_SYMBOL vmlinux 0x1a31b18a read_code -EXPORT_SYMBOL vmlinux 0x1a34f852 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a580915 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a63b0f8 set_anon_super -EXPORT_SYMBOL vmlinux 0x1a6c453e phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a95365c __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa0696b pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x1aa83a50 fput -EXPORT_SYMBOL vmlinux 0x1aad7715 secpath_set -EXPORT_SYMBOL vmlinux 0x1ab0ecb2 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x1ab7ac25 udp_seq_start -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1adede64 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x1ae4598c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b3623ef tcp_sendpage -EXPORT_SYMBOL vmlinux 0x1b595ad3 inet_gso_segment -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b640c7d dentry_path_raw -EXPORT_SYMBOL vmlinux 0x1b647c1a dup_iter -EXPORT_SYMBOL vmlinux 0x1b66239b ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x1b7053e8 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b851a2c vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b95e854 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x1b982f58 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1b9a1ac4 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1ba6263f input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x1bad1328 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1be8d26f security_path_mkdir -EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x1c1bf964 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x1c1caa68 tty_devnum -EXPORT_SYMBOL vmlinux 0x1c2182a0 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c396d07 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1ca55b4e udp_seq_stop -EXPORT_SYMBOL vmlinux 0x1cad3512 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cc3d049 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x1cc9c96b seq_release_private -EXPORT_SYMBOL vmlinux 0x1ce931a5 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x1cf118b3 processors -EXPORT_SYMBOL vmlinux 0x1cf4d48a truncate_setsize -EXPORT_SYMBOL vmlinux 0x1d02a80a vlan_vid_del -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2881e6 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d2e3f58 framebuffer_release -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d61d3ea mfd_add_devices -EXPORT_SYMBOL vmlinux 0x1d637301 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x1d78d87e seq_printf -EXPORT_SYMBOL vmlinux 0x1d825b67 nd_device_register -EXPORT_SYMBOL vmlinux 0x1d97f7ea pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x1dafcf78 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x1db2e1b9 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc462a5 path_put -EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dfb4358 kill_pid -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e3b512e try_to_release_page -EXPORT_SYMBOL vmlinux 0x1e3f2925 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x1e57d4f8 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x1e614628 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1e65f1b1 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6ecee9 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x1e87c2c4 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x1e902d9b inode_insert5 -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eaa3cac d_obtain_alias -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee02758 vme_master_request -EXPORT_SYMBOL vmlinux 0x1ee7a6e1 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x1ee7acc1 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1f029499 vfs_fsync -EXPORT_SYMBOL vmlinux 0x1f06fbd4 update_devfreq -EXPORT_SYMBOL vmlinux 0x1f09ea14 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x1f49b68e md_register_thread -EXPORT_SYMBOL vmlinux 0x1f4b186d dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x1f5a6092 softnet_data -EXPORT_SYMBOL vmlinux 0x1f5c731d mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x1f7d3127 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0x1fa5ed1c genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x1fa94fd7 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fc97566 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x1fca3571 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd1fa89 config_group_init -EXPORT_SYMBOL vmlinux 0x1fd6f9b7 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x1fde0ed0 napi_get_frags -EXPORT_SYMBOL vmlinux 0x1fe51e40 is_bad_inode -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1ffbc60d simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2054465c __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x2057aa95 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x2058034f __put_cred -EXPORT_SYMBOL vmlinux 0x205b8251 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x2063e822 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2072710e phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x209c9033 csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x20a748e5 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20bac0a7 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x20c9e6f0 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d5ca0a md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dd8739 d_set_d_op -EXPORT_SYMBOL vmlinux 0x20dec79a mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f8aab6 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x210dbfbe simple_transaction_get -EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x2116c6bd dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x2120371a sk_stop_timer -EXPORT_SYMBOL vmlinux 0x213879bc jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2140a78b vfs_link -EXPORT_SYMBOL vmlinux 0x21553710 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x21557799 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x217f7e8b scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x21876e2c pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x218bccd4 unix_get_socket -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2190b99a kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c38422 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x21dce5a1 set_wb_congested -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e4bd17 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x22175944 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2231eeac netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x22331420 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223fc3f6 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x2263a3db module_layout -EXPORT_SYMBOL vmlinux 0x226933db i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x226add48 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227b1718 tboot -EXPORT_SYMBOL vmlinux 0x22b20b23 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b79a46 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x22beb9b6 dev_close -EXPORT_SYMBOL vmlinux 0x22d9677a noop_fsync -EXPORT_SYMBOL vmlinux 0x22dc1e36 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22e6ad89 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x22f56dde inode_init_always -EXPORT_SYMBOL vmlinux 0x23121548 generic_write_end -EXPORT_SYMBOL vmlinux 0x233db920 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x23540bbd i2c_del_driver -EXPORT_SYMBOL vmlinux 0x2364da19 key_validate -EXPORT_SYMBOL vmlinux 0x236cf42e peernet2id -EXPORT_SYMBOL vmlinux 0x23745460 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23a83f65 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23d986f1 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dcdcde __block_write_begin -EXPORT_SYMBOL vmlinux 0x23e98ab9 bio_reset -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23fd2fd7 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242405b3 udp_seq_next -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245ad263 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x245d9405 tty_port_open -EXPORT_SYMBOL vmlinux 0x246616f0 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x246c9de3 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2498b024 __scm_destroy -EXPORT_SYMBOL vmlinux 0x24a2b30f fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x24b87282 pci_save_state -EXPORT_SYMBOL vmlinux 0x24b9a140 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d888f4 sock_edemux -EXPORT_SYMBOL vmlinux 0x24ddb654 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x24e7b6d9 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x24f3a284 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x24f87306 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25557f97 inet_del_offload -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257b3636 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x257ed0c5 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258dae9e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x259c3a32 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x25a5be84 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x25a7d2ed phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x25acd61e security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x25c48424 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x25ca2c33 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x25d45976 bio_chain -EXPORT_SYMBOL vmlinux 0x25d71450 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x25d9c061 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25e93428 lookup_one_len -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f221fd pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26161431 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x26235039 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x262b6dff dump_page -EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 -EXPORT_SYMBOL vmlinux 0x264cda90 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x269a7542 eth_header -EXPORT_SYMBOL vmlinux 0x26bdb40f blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states -EXPORT_SYMBOL vmlinux 0x26d36b0a mntput -EXPORT_SYMBOL vmlinux 0x26e13e23 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e2b24a pci_request_region -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x27042638 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2724659f xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273f51ce inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x276d9da5 dev_get_stats -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 0x278e5d50 mount_subtree -EXPORT_SYMBOL vmlinux 0x2791e081 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x27926b2d md_cluster_ops -EXPORT_SYMBOL vmlinux 0x27a2ce8a acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x27a8e3bd starget_for_each_device -EXPORT_SYMBOL vmlinux 0x27b1c569 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x27bbb2bf d_lookup -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c7560e scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2807741f hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2833d7a2 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x283a8c61 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x284f3c32 path_nosuid -EXPORT_SYMBOL vmlinux 0x28691900 bio_init -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28a580f7 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x28d61a4a I_BDEV -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x291a1ae2 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x292ac179 console_stop -EXPORT_SYMBOL vmlinux 0x292b5a79 __seq_open_private -EXPORT_SYMBOL vmlinux 0x29361773 complete -EXPORT_SYMBOL vmlinux 0x29430837 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x295a49b5 agp_enable -EXPORT_SYMBOL vmlinux 0x29619a2b __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x296a6c07 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert -EXPORT_SYMBOL vmlinux 0x296e7f93 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x2975b415 mmc_add_host -EXPORT_SYMBOL vmlinux 0x2983f47b pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e7cd7b __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x29ef2fda thaw_super -EXPORT_SYMBOL vmlinux 0x29f68d44 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x2a096844 pci_request_regions -EXPORT_SYMBOL vmlinux 0x2a154c46 put_fs_context -EXPORT_SYMBOL vmlinux 0x2a26428c brioctl_set -EXPORT_SYMBOL vmlinux 0x2a2719d9 genphy_resume -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a65c7af phy_init_hw -EXPORT_SYMBOL vmlinux 0x2a67c012 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x2a98bbcc rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x2a99eb0f dec_node_page_state -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa05dc3 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aa83e1a keyring_search -EXPORT_SYMBOL vmlinux 0x2aae4f0f dev_mc_del -EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock -EXPORT_SYMBOL vmlinux 0x2ac7d539 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x2ac9d5c9 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x2aef8043 dquot_transfer -EXPORT_SYMBOL vmlinux 0x2af1773e __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x2afa92e8 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2b076499 netlink_ack -EXPORT_SYMBOL vmlinux 0x2b0db555 __page_symlink -EXPORT_SYMBOL vmlinux 0x2b22a199 sock_no_listen -EXPORT_SYMBOL vmlinux 0x2b3f2c17 mr_table_dump -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b641b0b sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2baced95 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x2bd47466 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bdbf7a4 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x2bdd238f fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x2bebe154 param_ops_long -EXPORT_SYMBOL vmlinux 0x2c15ff3c phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2b8a52 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x2c4aef14 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x2c523d96 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c562055 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x2c572ddd pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x2c5a0484 sock_no_connect -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2ca2bf6c twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cc3e9fe tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2ccd3064 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x2cd2ea6f remove_arg_zero -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce5c420 dev_driver_string -EXPORT_SYMBOL vmlinux 0x2cf4906e pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d0cc143 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d573220 dump_emit -EXPORT_SYMBOL vmlinux 0x2d5afb59 send_sig_info -EXPORT_SYMBOL vmlinux 0x2d8cd9af block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2dbef3cc scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x2dbf3f4e ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x2dcce150 del_gendisk -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df483bb skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x2e0114a5 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1efc1e ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x2e1f22ea mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e37232f md_bitmap_free -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4bf5a9 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x2e5ee2d9 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x2e6b19ac scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x2e81def9 sock_wfree -EXPORT_SYMBOL vmlinux 0x2e9bd36d ip_defrag -EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin -EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee91465 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x2f02f934 md_error -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0fc918 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f5621cc input_get_timestamp -EXPORT_SYMBOL vmlinux 0x2f5b0764 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x2f6986a7 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x2f6cae07 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x2f71a6da pci_match_id -EXPORT_SYMBOL vmlinux 0x2f76c744 simple_empty -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8613d8 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x2f884157 udp_poll -EXPORT_SYMBOL vmlinux 0x2f91fdc3 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x2fab650f kernel_bind -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fdc14a4 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fea20a7 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x2fede1b6 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x300bd831 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x301fa007 _raw_spin_unlock -EXPORT_SYMBOL vmlinux 0x3023a857 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x3038b249 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x303f5802 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x303fd465 hmm_mirror_register -EXPORT_SYMBOL vmlinux 0x305c8468 xattr_full_name -EXPORT_SYMBOL vmlinux 0x30608529 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x3060d938 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x3069e0a2 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x3071bff1 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30d625cc configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x311a9d1e pci_release_regions -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x316bd742 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x316caed4 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x31836629 build_skb_around -EXPORT_SYMBOL vmlinux 0x318aeaf3 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31aa3665 kill_pgrp -EXPORT_SYMBOL vmlinux 0x31aeb428 seq_escape -EXPORT_SYMBOL vmlinux 0x31b2f088 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31c1b960 pci_clear_master -EXPORT_SYMBOL vmlinux 0x31e394e0 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x320fc153 proc_symlink -EXPORT_SYMBOL vmlinux 0x321744a6 scsi_add_device -EXPORT_SYMBOL vmlinux 0x322883b4 pci_find_capability -EXPORT_SYMBOL vmlinux 0x32359441 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x324bfee9 iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0x3258936d __pci_register_driver -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x3274d0be sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328de691 dst_discard_out -EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x32c1dd0f pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x32cb51d7 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f8c6f5 netdev_crit -EXPORT_SYMBOL vmlinux 0x330cc484 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x3311360e scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x332b5ef5 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x3371f08e tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x3376f806 install_exec_creds -EXPORT_SYMBOL vmlinux 0x3390dc43 tty_check_change -EXPORT_SYMBOL vmlinux 0x33afe85d ppp_input -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33bfcafd icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x33c1bbfb unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x33eefe5b register_netdevice -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 0x33fedf32 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x3417734c locks_init_lock -EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x3471cf5a fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x3484e3a6 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x34899046 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x3491bf7f dump_truncate -EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x349c5635 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349def0a xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34cc2732 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x34e5c215 vfs_symlink -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x350a59a0 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x351327ab dev_alloc_name -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3538ba93 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353d6773 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x3550fd20 mmc_put_card -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356af23c km_state_notify -EXPORT_SYMBOL vmlinux 0x3587f8eb agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x35a2e773 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bea333 param_set_long -EXPORT_SYMBOL vmlinux 0x35c00163 md_integrity_register -EXPORT_SYMBOL vmlinux 0x35c03418 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x35cad33a register_filesystem -EXPORT_SYMBOL vmlinux 0x35d1db12 ip_frag_next -EXPORT_SYMBOL vmlinux 0x35dc71cd phy_resume -EXPORT_SYMBOL vmlinux 0x35de557c generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x35fa153a amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x35fab4ab fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x36098915 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361e51df d_rehash -EXPORT_SYMBOL vmlinux 0x361fcef3 current_task -EXPORT_SYMBOL vmlinux 0x362a8478 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user -EXPORT_SYMBOL vmlinux 0x3633e327 dst_init -EXPORT_SYMBOL vmlinux 0x36481844 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x364a3695 account_page_redirty -EXPORT_SYMBOL vmlinux 0x3652122e simple_transaction_set -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366aa809 tty_throttle -EXPORT_SYMBOL vmlinux 0x366fbc2a nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x367d3c9f tcp_close -EXPORT_SYMBOL vmlinux 0x368fdcad tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x36a109e9 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x36c2476d netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x36e1e742 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x36ff1d4a dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x372b0ac3 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x372c0c13 param_set_ulong -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37461792 pci_bus_type -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375b8f47 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377f8bd9 set_device_ro -EXPORT_SYMBOL vmlinux 0x378c6714 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x37905906 rio_query_mport -EXPORT_SYMBOL vmlinux 0x379efcf7 finish_swait -EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b1291f vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x37b3fc43 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x37b89bce wireless_spy_update -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37be1ee3 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37ca94fa netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f2029a eth_header_parse -EXPORT_SYMBOL vmlinux 0x38010743 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x386a30cc flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x386c2d37 unlock_page -EXPORT_SYMBOL vmlinux 0x387bae40 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3886aca5 blk_mq_unique_tag -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 0x38a4e08f copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c15676 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x38ceacde scsi_device_get -EXPORT_SYMBOL vmlinux 0x38e22cf6 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f053a2 irq_set_chip -EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu -EXPORT_SYMBOL vmlinux 0x39038d41 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x390ac108 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x390f4fd4 wake_up_process -EXPORT_SYMBOL vmlinux 0x392d20f5 dquot_resume -EXPORT_SYMBOL vmlinux 0x392d8d4b unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x3938f061 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394cbfc9 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39561fc8 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x39769c94 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x39827070 mount_nodev -EXPORT_SYMBOL vmlinux 0x39833f52 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399c7e22 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x39a55e47 vga_get -EXPORT_SYMBOL vmlinux 0x39aa8ab4 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x39b4b5a2 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c66fd4 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x39dad77a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39ece919 bio_put -EXPORT_SYMBOL vmlinux 0x39ed2f27 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x39f18fb2 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0x39f27002 param_set_invbool -EXPORT_SYMBOL vmlinux 0x39f456f7 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x39fdf2b1 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x3a023db2 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x3a0637dc scsi_ioctl -EXPORT_SYMBOL vmlinux 0x3a06683f vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a203e84 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush -EXPORT_SYMBOL vmlinux 0x3a415650 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a6d5139 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x3a98dd02 __sb_start_write -EXPORT_SYMBOL vmlinux 0x3ab25fa5 sync_blockdev -EXPORT_SYMBOL vmlinux 0x3ab461e1 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac3a8c0 vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0x3acc9be0 seq_file_path -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 0x3af32b03 km_policy_notify -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b0a06a5 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x3b0a5110 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2ad67c pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3f18f5 sg_miter_next -EXPORT_SYMBOL vmlinux 0x3b4c23e7 phy_init_eee -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds -EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bab32ba blk_get_request -EXPORT_SYMBOL vmlinux 0x3bb0e73f km_query -EXPORT_SYMBOL vmlinux 0x3bb3bdc4 param_set_uint -EXPORT_SYMBOL vmlinux 0x3bba9a82 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x3bc2ef52 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x3bd9682e iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c08ae1d of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x3c116557 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x3c14a596 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c834473 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x3c85c803 devm_clk_get -EXPORT_SYMBOL vmlinux 0x3c939bc1 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x3c9cee3b mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x3ca2b029 set_trace_device -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf0dd87 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x3cf0ec31 dquot_destroy -EXPORT_SYMBOL vmlinux 0x3d010946 get_acl -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d07b093 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3d11702d mount_single -EXPORT_SYMBOL vmlinux 0x3d1a5146 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d447ffe capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x3d466001 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x3d6f470d __ps2_command -EXPORT_SYMBOL vmlinux 0x3d9f5eed netdev_info -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key -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 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e006183 input_reset_device -EXPORT_SYMBOL vmlinux 0x3e02f315 param_ops_charp -EXPORT_SYMBOL vmlinux 0x3e08f3e0 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x3e0a8206 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x3e1d532c amd_iommu_rlookup_table -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e2f339f fs_parse -EXPORT_SYMBOL vmlinux 0x3e4f64e2 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x3e574c96 generic_permission -EXPORT_SYMBOL vmlinux 0x3e580251 param_ops_int -EXPORT_SYMBOL vmlinux 0x3e58fa18 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3e69917e linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x3e79fcb0 ps2_command -EXPORT_SYMBOL vmlinux 0x3e8b9e6b cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ea8f25c pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x3ebba619 inet_bind -EXPORT_SYMBOL vmlinux 0x3ebd523d ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x3ebd8e89 request_firmware -EXPORT_SYMBOL vmlinux 0x3ec2781d mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x3ecd7be2 elv_rb_del -EXPORT_SYMBOL vmlinux 0x3ee1189c dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0a8394 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1b562f page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x3f1cac81 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x3f1eb27e __f_setown -EXPORT_SYMBOL vmlinux 0x3f3bd226 tty_kref_put -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f46d888 proto_register -EXPORT_SYMBOL vmlinux 0x3f4b45fa __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f5c7885 __lock_page -EXPORT_SYMBOL vmlinux 0x3f61bf35 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x3f680eb0 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x3f6e3673 cdrom_open -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fb51b57 pci_select_bars -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe7b22c tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x4000be6f clk_bulk_get -EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x400d1672 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x401c589b proc_set_size -EXPORT_SYMBOL vmlinux 0x4021c4b7 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x402fa577 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x4046412d flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x4056fac8 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x4059b8ff elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x406adc08 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x407f9ca8 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x408254c8 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock -EXPORT_SYMBOL vmlinux 0x40a0adee pskb_expand_head -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40ea9e92 param_get_string -EXPORT_SYMBOL vmlinux 0x410a3844 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x412a4c75 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4150f72d skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x4157218c nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x41688eef param_get_long -EXPORT_SYMBOL vmlinux 0x416e8dbb file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x417892a8 inet_shutdown -EXPORT_SYMBOL vmlinux 0x41799db0 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x4181c7d5 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4190ef69 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x4194c1ab skb_find_text -EXPORT_SYMBOL vmlinux 0x4198ca95 __do_once_done -EXPORT_SYMBOL vmlinux 0x41aa4922 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x41be4536 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x41bf522b devfreq_add_device -EXPORT_SYMBOL vmlinux 0x41cc5daf md_write_end -EXPORT_SYMBOL vmlinux 0x41cd5bc3 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x41dbe1fd mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x41e07bb7 sock_create_lite -EXPORT_SYMBOL vmlinux 0x41e6b967 give_up_console -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f0ccc3 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x42062c1a __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42253b6a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x426de60b alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x427ceea8 pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x427d0688 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x428ae8f6 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x42a08995 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x42b01361 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x42b68cea nf_log_packet -EXPORT_SYMBOL vmlinux 0x42ba9c63 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42cd4ba0 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x42e563d7 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f412c1 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431bb242 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x432c95d5 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x433283f3 page_mapped -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 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437a7391 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x437d97c9 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43cc87ff pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x43f18044 param_array_ops -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x440026cd dev_set_mtu -EXPORT_SYMBOL vmlinux 0x44013d76 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x440a339c kill_bdev -EXPORT_SYMBOL vmlinux 0x441d5748 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x443ef747 seq_pad -EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4451b2a9 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x4451f30c phy_write_mmd -EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data -EXPORT_SYMBOL vmlinux 0x445c83ea genphy_update_link -EXPORT_SYMBOL vmlinux 0x446f2127 rproc_alloc -EXPORT_SYMBOL vmlinux 0x4475ad00 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x447ac922 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a79627 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44ad9229 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x44b2f3bd __kfree_skb -EXPORT_SYMBOL vmlinux 0x44e063eb vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4509bbff acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x450c047d inode_needs_sync -EXPORT_SYMBOL vmlinux 0x450fa651 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x4511c006 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x451b0990 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x4522a1f8 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x452ad09b tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x4531605c acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455cd05d init_task -EXPORT_SYMBOL vmlinux 0x4566665c end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45821698 input_release_device -EXPORT_SYMBOL vmlinux 0x45927d70 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x459dda9f tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x45afc554 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x45cf578f xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e69e01 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45f979f1 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x46101466 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x46112454 _dev_notice -EXPORT_SYMBOL vmlinux 0x4613c804 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x4629d746 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x46307647 dput -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4639d96c ether_setup -EXPORT_SYMBOL vmlinux 0x463a8a4e pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x4640b4f5 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x46480cce fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466a0109 put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466da12b _dev_info -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x468e6e25 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a668ca tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x46b0e02d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x46be9afe disk_stack_limits -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c7fa40 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x46d02b87 ihold -EXPORT_SYMBOL vmlinux 0x46dd2b61 search_binary_handler -EXPORT_SYMBOL vmlinux 0x46e5005f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x46f123a4 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x46f4b8f3 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x46f76717 kern_path_create -EXPORT_SYMBOL vmlinux 0x470f0503 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x47148b0c mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x473543a7 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x4740f37b __kernel_write -EXPORT_SYMBOL vmlinux 0x4742beb5 genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0x476d8f29 dma_ops -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4771db82 __put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x4787e32d kill_anon_super -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x4794d652 pci_request_irq -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479b6a52 dma_find_channel -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x479fe6dc blk_integrity_register -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a3978e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x47b148de pci_assign_resource -EXPORT_SYMBOL vmlinux 0x47bd953e is_subdir -EXPORT_SYMBOL vmlinux 0x47c1a783 arp_send -EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47ddb1c1 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x480ef5ce __register_nls -EXPORT_SYMBOL vmlinux 0x48146e68 key_link -EXPORT_SYMBOL vmlinux 0x4816b8e8 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4832382f alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x483e5dec mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x485637dd xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485c574b unix_attach_fds -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486bd22c __ip_options_compile -EXPORT_SYMBOL vmlinux 0x487ef3de dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x488add1b vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x489976e8 skb_vlan_pop -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 0x48cd1546 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x48d0db22 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48e4cd38 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x48f8c781 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4909513f netdev_err -EXPORT_SYMBOL vmlinux 0x492599db sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x4998d880 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b84edb pci_get_class -EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x49d28998 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x49e2ffcc netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x49f78c94 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x4a21ee66 proc_create -EXPORT_SYMBOL vmlinux 0x4a28859d netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a45ee7a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x4a48401d compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x4a4f2ce0 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x4a68897b phy_attach_direct -EXPORT_SYMBOL vmlinux 0x4a6a6edc pci_pme_capable -EXPORT_SYMBOL vmlinux 0x4a7ae12a default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4a8d28df kmalloc_caches -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aac4a79 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x4aac5e6f logfc -EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x4ab5b985 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4ae79873 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4afb14d6 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b203e14 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x4b341b46 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4b3c2a8f twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x4b4106a4 phy_device_register -EXPORT_SYMBOL vmlinux 0x4b431b68 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x4b43ef71 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x4b471854 sk_net_capable -EXPORT_SYMBOL vmlinux 0x4b49611c bio_split -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6c308c kernel_write -EXPORT_SYMBOL vmlinux 0x4b786c37 set_cached_acl -EXPORT_SYMBOL vmlinux 0x4b7bea4b tcp_req_err -EXPORT_SYMBOL vmlinux 0x4b7d742e fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x4b965df9 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bdc20f5 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x4bea0452 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfbe810 param_get_byte -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c2b7e4d agp_bind_memory -EXPORT_SYMBOL vmlinux 0x4c33c93e __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c6ed9e5 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x4c7884d3 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x4c88095f i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4cad59c9 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x4cb4db42 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4ccd378a _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4ceca9bd pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x4cef35f3 dquot_commit -EXPORT_SYMBOL vmlinux 0x4d03e377 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x4d1251f2 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d46689f dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4d56cf05 mr_dump -EXPORT_SYMBOL vmlinux 0x4d61618b agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d7a2945 vme_dma_request -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db03c36 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x4dbf5b29 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4de39159 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x4de3a871 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df1b15d generic_listxattr -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e2add91 put_user_pages -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3f9e8a devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e54c9bf security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x4e5c8e0d pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x4e5fc690 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7b9ad8 pci_set_master -EXPORT_SYMBOL vmlinux 0x4e7dc9e4 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x4e9a138d seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x4e9ea227 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea57fc0 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4edd06e8 make_kgid -EXPORT_SYMBOL vmlinux 0x4ee2d5ed posix_lock_file -EXPORT_SYMBOL vmlinux 0x4ee7eba9 request_key_tag -EXPORT_SYMBOL vmlinux 0x4eefda48 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x4efb2f2d rtnl_unicast -EXPORT_SYMBOL vmlinux 0x4efe4a34 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x4f0a085d device_add_disk -EXPORT_SYMBOL vmlinux 0x4f104f10 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f495e0d jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f801233 ata_print_version -EXPORT_SYMBOL vmlinux 0x4f83bc5d devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x4fa0832b _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x4fa6b6f1 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x4fb509ba kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x4fc2f974 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess -EXPORT_SYMBOL vmlinux 0x4fd75282 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x4fd77de3 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x4fd92432 iterate_fd -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe83efe cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x4ff79bdc eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister -EXPORT_SYMBOL vmlinux 0x50665373 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x508052f8 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50bd346d kmem_cache_size -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -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 0x51034593 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x51218ff1 deactivate_super -EXPORT_SYMBOL vmlinux 0x51328604 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x5137df6e phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x5137fa4a bio_free_pages -EXPORT_SYMBOL vmlinux 0x513f05c7 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5173dfec netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x51763b2a seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x51782276 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d9cf84 skb_copy -EXPORT_SYMBOL vmlinux 0x520bc55b netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x520c4e7e __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x52585f8e nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x525fa35c fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5274d695 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52bac9f2 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x52beaf36 sk_common_release -EXPORT_SYMBOL vmlinux 0x52c1af61 security_sk_clone -EXPORT_SYMBOL vmlinux 0x52cebd41 fasync_helper -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52da45ce ip6_xmit -EXPORT_SYMBOL vmlinux 0x52dc5a02 drop_super -EXPORT_SYMBOL vmlinux 0x52e9ca48 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x5300a885 fd_install -EXPORT_SYMBOL vmlinux 0x5300c870 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53167817 md_handle_request -EXPORT_SYMBOL vmlinux 0x5318f2d8 register_qdisc -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x53224bb0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x5335b0b0 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x53382ef6 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x533b804a pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x533f7724 kernel_connect -EXPORT_SYMBOL vmlinux 0x535234c6 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x538e1608 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x53994fb1 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x53a2c8bd nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x53a991a5 xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x53ab7307 tty_lock -EXPORT_SYMBOL vmlinux 0x53ac625f devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x53b586ee dma_free_attrs -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53bd284d seq_write -EXPORT_SYMBOL vmlinux 0x53bd67ea pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x53bf242a kfree_skb -EXPORT_SYMBOL vmlinux 0x53ebc338 tcp_mmap -EXPORT_SYMBOL vmlinux 0x53f9df8a mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5410b142 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x541e806d nd_btt_probe -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542a7d94 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x542ac506 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x542f1432 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54529bda poll_freewait -EXPORT_SYMBOL vmlinux 0x546db707 tty_vhangup -EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54d1a729 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x54e01517 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ffa3f scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55249d02 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x5529cd78 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x553204f4 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x55334888 d_exact_alias -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55504878 fb_class -EXPORT_SYMBOL vmlinux 0x555d5adc blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x557eb4cc dma_cache_sync -EXPORT_SYMBOL vmlinux 0x55862549 con_is_visible -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559f9af6 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x55ba0dbe scsi_host_busy -EXPORT_SYMBOL vmlinux 0x55d795e6 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x561f8ac5 pci_get_slot -EXPORT_SYMBOL vmlinux 0x56296b44 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x56355a85 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563e6dff sort_r -EXPORT_SYMBOL vmlinux 0x563f4a0e bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x56431cd8 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5648c04d shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x566751a7 vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x5692abf4 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x56a2b81b dquot_drop -EXPORT_SYMBOL vmlinux 0x56a4a48f dev_mc_sync -EXPORT_SYMBOL vmlinux 0x56a6069f inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x56a9a933 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x56b8d37c dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f2ba09 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x5739e38a sk_wait_data -EXPORT_SYMBOL vmlinux 0x574747cf skb_push -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575a0ffa tty_port_close_start -EXPORT_SYMBOL vmlinux 0x575b590c blk_rq_init -EXPORT_SYMBOL vmlinux 0x576a3fec inet_release -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579836ba flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x57a000aa bdget -EXPORT_SYMBOL vmlinux 0x57a7be2d rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x57a83d62 load_nls_default -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57bfea16 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x57da85d8 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x57f59eb7 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x57fbda21 dev_activate -EXPORT_SYMBOL vmlinux 0x58035f00 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x581ebedb xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58267902 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x582b1b24 ata_port_printk -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583e539f netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x584f068f blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x5874d6a6 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588e0db7 tcp_prot -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x588fc401 dev_addr_add -EXPORT_SYMBOL vmlinux 0x589478be mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x5896d2fc pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b4da66 fget_raw -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fb2d9b devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x58fdc2f5 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x591cf622 page_get_link -EXPORT_SYMBOL vmlinux 0x5932d4c7 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x593988d0 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x5944373e i2c_release_client -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x5968badc make_kuid -EXPORT_SYMBOL vmlinux 0x597305ae mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x597c5cfa dev_get_by_name -EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl -EXPORT_SYMBOL vmlinux 0x5987fa88 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x598fcc1f __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a0b715 bdgrab -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59ab2e2e __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b86223 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x59b9b974 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x59c9d1f9 tty_write_room -EXPORT_SYMBOL vmlinux 0x59d719a4 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x5a00f092 sock_no_getname -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0d7893 __skb_pad -EXPORT_SYMBOL vmlinux 0x5a17ec8d blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x5a1d269a ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x5a1d9508 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock -EXPORT_SYMBOL vmlinux 0x5a385309 rtc_add_group -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4d7b7e tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x5a578660 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a735a17 ps2_drain -EXPORT_SYMBOL vmlinux 0x5a7b7b18 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a9084c1 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a92e1e1 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x5ac4e1c1 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x5ace2429 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x5ace3192 neigh_table_init -EXPORT_SYMBOL vmlinux 0x5ad99cd2 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x5adfcd1a vfs_unlink -EXPORT_SYMBOL vmlinux 0x5aec75b6 phy_connect -EXPORT_SYMBOL vmlinux 0x5aee585f i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x5afa9d9d tcf_block_get -EXPORT_SYMBOL vmlinux 0x5b04c5da sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x5b1b7137 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x5b2ccd30 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x5b2ee2ae dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3aaa99 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b582a1a amd_iommu_enable_device_erratum -EXPORT_SYMBOL vmlinux 0x5b81d8c4 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x5b8381f9 security_path_rename -EXPORT_SYMBOL vmlinux 0x5bae161b seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x5bb4b368 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x5bc5ad43 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x5bda05fe prepare_binprm -EXPORT_SYMBOL vmlinux 0x5be152e9 param_get_short -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5becd1ca fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x5befb16a posix_test_lock -EXPORT_SYMBOL vmlinux 0x5bf1d553 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x5c1d7a7e phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c43b74f fb_validate_mode -EXPORT_SYMBOL vmlinux 0x5c4a4753 dquot_alloc -EXPORT_SYMBOL vmlinux 0x5c53aa73 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x5c6b6f71 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5c6d198a tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x5c8b559b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x5cc597b9 vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0x5cdfd267 __sock_create -EXPORT_SYMBOL vmlinux 0x5ce618e9 unregister_nls -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d01831e phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x5d1e3fa8 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x5d2795f9 pci_dev_get -EXPORT_SYMBOL vmlinux 0x5d2ace25 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x5d36b1cc input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5dc5b36a __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x5de851a2 uart_resume_port -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e1c9fa3 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5e1f606f __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e7884b5 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e8073eb __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x5e80eb65 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea53bb7 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x5ea6f96d finish_no_open -EXPORT_SYMBOL vmlinux 0x5eb1799c free_netdev -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ed9cbd7 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f07b49f mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0b507b skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x5f3f2198 set_blocksize -EXPORT_SYMBOL vmlinux 0x5f4dfabb ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f614c1b vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x5f616c4b param_ops_invbool -EXPORT_SYMBOL vmlinux 0x5f65d111 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f6c4a3d __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x5f88da5f seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x5f8ee6db phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9f5575 __put_user_ns -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd35f86 napi_complete_done -EXPORT_SYMBOL vmlinux 0x5fd72c09 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x5feb8845 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x5feed47a xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffc2bc5 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6009b008 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6035d8b9 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60682532 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608d3ed8 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60adcd8f kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b9a940 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x60bb4e3a fb_set_cmap -EXPORT_SYMBOL vmlinux 0x60bde4d1 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x60c0558b __quota_error -EXPORT_SYMBOL vmlinux 0x60ca1f6b fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x60d20d38 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60de5053 seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x60ea1db2 to_ndd -EXPORT_SYMBOL vmlinux 0x6102e91a qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x61099c3d max8925_reg_read -EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds -EXPORT_SYMBOL vmlinux 0x611f5854 simple_getattr -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61352586 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x613f49ab security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x6148a0de pci_scan_bus -EXPORT_SYMBOL vmlinux 0x614a6c56 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x614d1417 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x615702b7 tso_count_descs -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615a313e d_splice_alias -EXPORT_SYMBOL vmlinux 0x615ac5f5 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x615b0d52 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x615f476d fsync_bdev -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x617f60c7 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x6196cbd7 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a71ffb __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x61b02129 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bd9c4c inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x61e70318 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61eb4236 pps_register_source -EXPORT_SYMBOL vmlinux 0x61f8214e __bread_gfp -EXPORT_SYMBOL vmlinux 0x620821ca mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62179c6d nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622e3233 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x623961a4 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x6263b931 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x628fbe4b pci_get_subsys -EXPORT_SYMBOL vmlinux 0x6290d56a tcp_connect -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62eee53f sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x62efb35f end_page_writeback -EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x634f7674 put_cmsg -EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x6362fcf2 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x636e1502 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x6386ac98 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x639c4b26 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x63a20ff9 drop_nlink -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63bec07f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c8099a agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x63e63454 dev_uc_add -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6415b0d0 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x641e2cda tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x645cb6d9 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x646d1e36 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x6480b0a2 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648e241d page_pool_create -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6494e323 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d8820 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x64a3f3b8 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x64a6d43d fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b8803b igrab -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64ca73c3 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x64ef12ec vme_bus_num -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65184efb ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652383e5 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652e346a acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x653b1a52 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x653c546d kdb_current_task -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654ddc03 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x655de769 rt6_lookup -EXPORT_SYMBOL vmlinux 0x656a418e param_set_byte -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65737344 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x657a3de4 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x65954a6b max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x659a219d tcp_child_process -EXPORT_SYMBOL vmlinux 0x659a9344 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a5e916 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65c4199c netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x65cea7a4 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65d9f27a jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd2e23 scsi_print_result -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e4232d skb_clone -EXPORT_SYMBOL vmlinux 0x65e52271 vc_resize -EXPORT_SYMBOL vmlinux 0x65eca2f3 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x65f4c587 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x65fcef03 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x6613e584 udp_disconnect -EXPORT_SYMBOL vmlinux 0x662052f1 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x66209e5f find_get_entry -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x664b2546 tso_build_data -EXPORT_SYMBOL vmlinux 0x665796ce textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x665a904b pci_remove_bus -EXPORT_SYMBOL vmlinux 0x665e7641 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x665fbcb3 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668572e1 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x66867a17 netif_skb_features -EXPORT_SYMBOL vmlinux 0x6689d8d2 input_match_device_id -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x669c460d dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x66adfe8f block_truncate_page -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673edb0d jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6758933d call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x67728df5 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67b10fc5 bioset_exit -EXPORT_SYMBOL vmlinux 0x67b25be7 bdget_disk -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c5f5d3 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x67da2f3a fc_mount -EXPORT_SYMBOL vmlinux 0x67dd7d45 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x67e194f7 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x67f19531 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x67f40f8a input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x680483ce kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x681ce984 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x68200a58 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x6828e8c2 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x6838b53c should_remove_suid -EXPORT_SYMBOL vmlinux 0x6840b33d scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x684ef012 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x685d823c mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68871ec1 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x6890ba0f fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x68931d72 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68b48fe9 param_get_ulong -EXPORT_SYMBOL vmlinux 0x68dc716c pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x68f11d46 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x68f88e83 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x6906fa51 proto_unregister -EXPORT_SYMBOL vmlinux 0x690a3045 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x69439187 _dev_alert -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69660219 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69753639 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x697add51 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x69838cbf uart_match_port -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c1412b twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x69d1049a uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69ddbcc8 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0607d2 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x6a0d1dc3 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x6a1685dd devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x6a1fb75c mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a3d7125 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a7ac1a6 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x6a864fd9 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x6a87c956 skb_tx_error -EXPORT_SYMBOL vmlinux 0x6a8e4e05 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa96921 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6ac593ec __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x6ace02fb qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aec6705 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afa2352 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x6b03e526 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x6b14caaf get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6b15f3c5 inode_set_flags -EXPORT_SYMBOL vmlinux 0x6b1f6af6 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b36aa72 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x6b3d10f3 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b6cbe60 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x6b7c37d5 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x6b7d58cb jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x6b83de43 inet_getname -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b9345d5 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x6b9422cb eth_header_cache -EXPORT_SYMBOL vmlinux 0x6baca641 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x6bb0a15b tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x6bb5ddec jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x6bb8f282 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf467a9 register_shrinker -EXPORT_SYMBOL vmlinux 0x6bf4775b rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x6bf6528b __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x6c0c06d9 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x6c115654 dquot_release -EXPORT_SYMBOL vmlinux 0x6c1eec68 generic_fillattr -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c2ea06f __breadahead -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c795c9d skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x6c86d39d nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x6c8c17ad jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x6c971fbd sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x6caa0ceb pci_choose_state -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6ccf7697 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x6cf5ff22 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6cfc396b napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2c0f12 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d54e222 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d74ebf6 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x6d7abe02 first_ec -EXPORT_SYMBOL vmlinux 0x6d7c7d09 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x6d7e0f3a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x6d999972 invalidate_partition -EXPORT_SYMBOL vmlinux 0x6d9ef9b4 get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0x6da6c83c sg_miter_stop -EXPORT_SYMBOL vmlinux 0x6da9f3b0 __d_drop -EXPORT_SYMBOL vmlinux 0x6daeb157 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd308f7 iunique -EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion -EXPORT_SYMBOL vmlinux 0x6de572ef vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x6e06b382 get_fs_type -EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e978b72 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eaf60c1 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6ef53a85 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x6ef93634 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x6efbddba uart_get_divisor -EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get -EXPORT_SYMBOL vmlinux 0x6f044c53 rproc_del -EXPORT_SYMBOL vmlinux 0x6f0697df scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f1fcad7 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6f2ac193 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x6f31a3c2 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f6d385f skb_ext_add -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f852930 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x6f8d69bc dcb_getapp -EXPORT_SYMBOL vmlinux 0x6f8e77cd input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9a3da8 d_drop -EXPORT_SYMBOL vmlinux 0x6fb036c3 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc2b401 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcc4282 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6ffde86c blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7022a475 fget -EXPORT_SYMBOL vmlinux 0x70232dea inode_init_once -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702c3f9a pci_fixup_device -EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x70842da1 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x70880475 tcp_poll -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x70932874 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x7093365a ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x7097517f rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b81803 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x70bc4183 generic_writepages -EXPORT_SYMBOL vmlinux 0x70c4142f mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x70c41aed pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x70f77282 param_get_int -EXPORT_SYMBOL vmlinux 0x710dbdd6 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7138171c stop_tty -EXPORT_SYMBOL vmlinux 0x713d1588 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x7142c0ee tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x714ceacd dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x7169cb62 neigh_for_each -EXPORT_SYMBOL vmlinux 0x716a1224 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x716d0b70 consume_skb -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x718b4877 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x7191173c tcp_release_cb -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aec18f __scm_send -EXPORT_SYMBOL vmlinux 0x71bd45cf input_unregister_handle -EXPORT_SYMBOL vmlinux 0x71db3b43 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x71fa48f8 nd_device_notify -EXPORT_SYMBOL vmlinux 0x71fe024d blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x71fe2dae tcf_idr_search -EXPORT_SYMBOL vmlinux 0x720681a5 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x72133625 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x72135676 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x72354db0 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x7238c2e7 component_match_add_release -EXPORT_SYMBOL vmlinux 0x723e504f skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x726bc04a ps2_end_command -EXPORT_SYMBOL vmlinux 0x727175c1 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x727493af lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x728469ff rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x728ecda2 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x729d5cff ilookup5 -EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c0b607 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x72c5c6b9 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x72e7e7a3 inet6_getname -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72eda0e9 netlink_unicast -EXPORT_SYMBOL vmlinux 0x72f50f99 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x72f52d1e __dquot_free_space -EXPORT_SYMBOL vmlinux 0x730a6c54 con_is_bound -EXPORT_SYMBOL vmlinux 0x730cb53f napi_gro_receive -EXPORT_SYMBOL vmlinux 0x73118a8e agp_copy_info -EXPORT_SYMBOL vmlinux 0x73128962 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x732d407d d_alloc_name -EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73677152 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7378b1fb tcp_seq_start -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738fca90 simple_release_fs -EXPORT_SYMBOL vmlinux 0x739141d3 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x73964302 keyring_alloc -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e2027f inode_get_bytes -EXPORT_SYMBOL vmlinux 0x74028a57 agp_backend_release -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x7422b1b1 bdi_register -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x74422888 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x74535f17 __close_fd_get_file -EXPORT_SYMBOL vmlinux 0x7460301f iov_iter_discard -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x748f29e4 bio_advance -EXPORT_SYMBOL vmlinux 0x74af0dfe fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d255cf security_unix_may_send -EXPORT_SYMBOL vmlinux 0x74dc2ae5 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x74e19516 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74eccbed security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x7511e410 fb_show_logo -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x753fecfb param_get_uint -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75545565 scsi_device_put -EXPORT_SYMBOL vmlinux 0x7560e4a0 dev_set_alias -EXPORT_SYMBOL vmlinux 0x756bed66 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x757105d5 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75a95d38 dma_pool_create -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bf9c0d input_register_handler -EXPORT_SYMBOL vmlinux 0x75cf1e54 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75dfb20d nd_btt_version -EXPORT_SYMBOL vmlinux 0x75e60613 key_put -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760dc79d blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x76204df4 genlmsg_put -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7626e264 elv_rb_add -EXPORT_SYMBOL vmlinux 0x762e523d __SetPageMovable -EXPORT_SYMBOL vmlinux 0x7632950e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x7640ed37 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764b1fc7 path_is_under -EXPORT_SYMBOL vmlinux 0x764d30b6 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x76861944 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a9d2e4 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x76b38651 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x76b743ca inet_sendmsg -EXPORT_SYMBOL vmlinux 0x76b9daf3 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x76cd8ffd mntget -EXPORT_SYMBOL vmlinux 0x76d27ba1 bdi_register_va -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76edecc9 param_ops_bool -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x771c0207 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x77241040 ps2_init -EXPORT_SYMBOL vmlinux 0x772f0d37 tcp_gro_complete -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 0x77459967 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x77954f2a follow_up -EXPORT_SYMBOL vmlinux 0x7795b8b2 nf_log_trace -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77a5df5f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ca530e legacy_pic -EXPORT_SYMBOL vmlinux 0x77d457e1 bio_devname -EXPORT_SYMBOL vmlinux 0x77de64cb pci_get_device -EXPORT_SYMBOL vmlinux 0x77deeedd mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x77e51ebf netif_device_detach -EXPORT_SYMBOL vmlinux 0x77e6f229 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x7806cd24 vme_lm_request -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784d4627 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x785a443d pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7860c096 seq_dentry -EXPORT_SYMBOL vmlinux 0x78666af4 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x786e16b9 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7892f9b3 seq_vprintf -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b382c2 sget_fc -EXPORT_SYMBOL vmlinux 0x78ce2389 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x78d5836d filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x78d70795 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f78c3d eth_gro_receive -EXPORT_SYMBOL vmlinux 0x792d95cc generic_write_checks -EXPORT_SYMBOL vmlinux 0x793a4814 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x795b1ad2 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x795bd09c page_mapping -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7974c202 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798ab09f netdev_emerg -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79d636c6 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x79dce3f5 register_gifconf -EXPORT_SYMBOL vmlinux 0x79df1ac4 pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79ead09b devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2040e3 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x7a2215b2 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3a198f ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a69e9d6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9a4cfe arp_xmit -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7aa05907 _dev_emerg -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aac988f tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae263c5 __page_pool_put_page -EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user -EXPORT_SYMBOL vmlinux 0x7afa2e56 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x7afb8e3e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b03d107 _dev_crit -EXPORT_SYMBOL vmlinux 0x7b0f9f84 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x7b29b453 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x7b3be419 d_obtain_root -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b832a68 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x7b850b40 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x7ba05bc6 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x7ba2747b devm_release_resource -EXPORT_SYMBOL vmlinux 0x7bac1b27 tcf_classify -EXPORT_SYMBOL vmlinux 0x7bacfae7 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x7baee46f do_clone_file_range -EXPORT_SYMBOL vmlinux 0x7bb23afb complete_request_key -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbd2476 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x7bd7e0bc path_get -EXPORT_SYMBOL vmlinux 0x7be0db2a __phy_resume -EXPORT_SYMBOL vmlinux 0x7be6fcbf dev_mc_init -EXPORT_SYMBOL vmlinux 0x7bedeb19 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x7bfead9c tcp_time_wait -EXPORT_SYMBOL vmlinux 0x7c0aa6f1 padata_free -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c33b496 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4ee137 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x7c66a445 follow_down -EXPORT_SYMBOL vmlinux 0x7c91c2a0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7c9876c9 pci_map_rom -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9efd87 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x7c9f025e skb_copy_bits -EXPORT_SYMBOL vmlinux 0x7ca8d43d pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cb58bff cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x7ccb2917 phy_read_paged -EXPORT_SYMBOL vmlinux 0x7ccdd336 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base -EXPORT_SYMBOL vmlinux 0x7cda18d3 sync_file_create -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce66514 filemap_fdatawrite -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 0x7d0eda8e forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d229c0d simple_write_end -EXPORT_SYMBOL vmlinux 0x7d491af8 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d6885ac mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x7d76ac71 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x7d789fb0 iget_locked -EXPORT_SYMBOL vmlinux 0x7d7e514c tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x7d7f2dce single_open -EXPORT_SYMBOL vmlinux 0x7d8479b0 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db2b2a2 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddac094 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7deffd9a pci_pme_active -EXPORT_SYMBOL vmlinux 0x7dfc4f6d scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext -EXPORT_SYMBOL vmlinux 0x7e1294c3 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x7e1ab0e0 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x7e25a999 dev_get_flags -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e39a0ff pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x7e3a9743 put_disk -EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x7e64a30c __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x7e67bdc5 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e853ecd mpage_readpage -EXPORT_SYMBOL vmlinux 0x7e96e6e5 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7eb572d6 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x7eba5902 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock -EXPORT_SYMBOL vmlinux 0x7efa3fed phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f090cf3 get_phy_device -EXPORT_SYMBOL vmlinux 0x7f18152d insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f303262 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5886ac qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f625223 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x7f625d4c mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x7f64a78e truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f84b635 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x7f8c71de pnp_device_attach -EXPORT_SYMBOL vmlinux 0x7f93929a rproc_free -EXPORT_SYMBOL vmlinux 0x7f9661d8 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x7fa89a3c pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x7fb34cda pcim_pin_device -EXPORT_SYMBOL vmlinux 0x7fb68f58 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff60940 phy_disconnect -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x8009c673 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x8010ac36 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x801f27b6 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x8021b98c watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x80476f7e arp_create -EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x80869e60 input_setup_polling -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809953ef vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80be896c kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d571a2 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x8102eb24 genphy_read_status -EXPORT_SYMBOL vmlinux 0x810cbab1 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x81319b33 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit -EXPORT_SYMBOL vmlinux 0x813a9cee kernel_sendpage_locked -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 0x81771f41 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8185f6be mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x818f2116 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x8193aa64 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible -EXPORT_SYMBOL vmlinux 0x81c346b1 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x81ce9b3c backlight_force_update -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82077b74 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x821b3c68 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x8244f721 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x824b4062 phy_device_create -EXPORT_SYMBOL vmlinux 0x82634864 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8264865f keyring_clear -EXPORT_SYMBOL vmlinux 0x8264cf10 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x826f32ab neigh_event_ns -EXPORT_SYMBOL vmlinux 0x8271b71e vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8286c27c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x828e74a2 iget_failed -EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x82e7ff49 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x830359c1 sk_stream_error -EXPORT_SYMBOL vmlinux 0x830f1a1f blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x831014d2 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x8322126c generic_perform_write -EXPORT_SYMBOL vmlinux 0x832e5048 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x833bf988 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83793139 setup_new_exec -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x83a48bc4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x83ac556e release_pages -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cf88eb skb_checksum_help -EXPORT_SYMBOL vmlinux 0x83e1bec2 kernel_listen -EXPORT_SYMBOL vmlinux 0x83e25edb input_unregister_device -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x842ae48b devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x842bcdd3 bio_endio -EXPORT_SYMBOL vmlinux 0x842dc755 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x8466fcbb elv_rb_find -EXPORT_SYMBOL vmlinux 0x8472d7ba netif_carrier_on -EXPORT_SYMBOL vmlinux 0x8473987c gro_cells_receive -EXPORT_SYMBOL vmlinux 0x848927e1 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x84ac0dee phy_suspend -EXPORT_SYMBOL vmlinux 0x84b8151c __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c5aaff fb_pan_display -EXPORT_SYMBOL vmlinux 0x84d5b923 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x84ea5a45 proc_mkdir -EXPORT_SYMBOL vmlinux 0x84ebefb2 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856a45a9 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x8573fdad __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x857ca82d thaw_bdev -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8596a257 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c18288 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x85ce2f08 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ec5469 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x8602eb02 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x860b655a update_region -EXPORT_SYMBOL vmlinux 0x861ed9cd input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8674dd5c bio_copy_data -EXPORT_SYMBOL vmlinux 0x8679fd15 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x8684e698 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8696815e pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x86aa1223 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x86b88bcd pnp_device_detach -EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86dabe77 serio_open -EXPORT_SYMBOL vmlinux 0x86e12627 hmm_range_register -EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86f42f79 rtnl_notify -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fc7354 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant -EXPORT_SYMBOL vmlinux 0x8701aaaf vm_insert_page -EXPORT_SYMBOL vmlinux 0x87110bbc __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x871ac6a3 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x8730e555 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x873f1622 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x874beddd skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x875831ec tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x875936fd seq_open_private -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8764e400 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87ffd737 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x880521ee page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x880df33b flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x88198313 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881e90d4 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x8825e234 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x88550c72 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x885856c5 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x885a3759 sk_free -EXPORT_SYMBOL vmlinux 0x886aba04 vga_con -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888a8806 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x88942c0c user_path_at_empty -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b13993 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x88b9fd33 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x88c16959 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x88d6842c xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88ddb4ba mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e22c81 input_set_capability -EXPORT_SYMBOL vmlinux 0x88f9941b md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x88fc1143 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x88fe0083 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x89072b61 devm_memunmap -EXPORT_SYMBOL vmlinux 0x890fa9f7 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x8914bfbb dcache_dir_close -EXPORT_SYMBOL vmlinux 0x8934f4d8 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x894ed320 override_creds -EXPORT_SYMBOL vmlinux 0x895f772f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x896420dd kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x896743d6 nobh_writepage -EXPORT_SYMBOL vmlinux 0x896d4f5b security_sock_graft -EXPORT_SYMBOL vmlinux 0x897db8d9 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x897ec273 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x89a222b5 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89b5f7e3 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x89eeccda blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x89ef5e14 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x8a01b528 ip_frag_init -EXPORT_SYMBOL vmlinux 0x8a01f50f __udp_disconnect -EXPORT_SYMBOL vmlinux 0x8a022362 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a29282b sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a3c2124 user_path_create -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a63ad83 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x8a64d86c seq_lseek -EXPORT_SYMBOL vmlinux 0x8a669d4e jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe -EXPORT_SYMBOL vmlinux 0x8a74a4cb neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a93ea1e sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aab6e3e napi_disable -EXPORT_SYMBOL vmlinux 0x8aad2dd5 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac376e4 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x8ac71190 phy_attached_info -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x8af6ffb7 simple_readpage -EXPORT_SYMBOL vmlinux 0x8af87135 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x8afa15bc blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b2451ae file_open_root -EXPORT_SYMBOL vmlinux 0x8b3f5eca dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b5ca0ce build_skb -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b764a15 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x8b7cbcff inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b82ab6f blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8c1492b7 get_user_pages -EXPORT_SYMBOL vmlinux 0x8c1fe298 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2d0fb3 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x8c405321 __sb_end_write -EXPORT_SYMBOL vmlinux 0x8c5dda72 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x8c5fdd08 tty_set_operations -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8c9f11db blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x8ca0880d pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd2cf32 vfs_llseek -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce684fa vme_irq_generate -EXPORT_SYMBOL vmlinux 0x8d0cbb3c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x8d356cdf netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x8d4337ba sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x8d476105 netdev_update_features -EXPORT_SYMBOL vmlinux 0x8d479871 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x8d5170fd to_nd_btt -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d85023a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8d9f3e30 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dc9d448 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x8dd09ada inet_put_port -EXPORT_SYMBOL vmlinux 0x8dd6dc08 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dee2a32 vfs_mknod -EXPORT_SYMBOL vmlinux 0x8df0f4cf iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e00b3b9 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1bc7fc cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x8e1c85b2 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe -EXPORT_SYMBOL vmlinux 0x8e2d3988 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x8e360a12 inet_accept -EXPORT_SYMBOL vmlinux 0x8e5f0fdb agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x8e6004ec ptp_clock_register -EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds -EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e6e7c34 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x8e7f7ba4 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x8e8e6f6e netdev_warn -EXPORT_SYMBOL vmlinux 0x8e95a2cb __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x8ea7e346 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x8ea9d2a6 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ebc1d03 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x8ebe92fc max8925_set_bits -EXPORT_SYMBOL vmlinux 0x8eefe8c5 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x8eff3833 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f2bc70b icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x8f303f80 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default -EXPORT_SYMBOL vmlinux 0x8f3be100 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x8f43e4a0 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x8f4a9bc2 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8f4fc501 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x8f515505 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x8f596b91 config_item_set_name -EXPORT_SYMBOL vmlinux 0x8f5ab0b3 sock_no_bind -EXPORT_SYMBOL vmlinux 0x8f601ac5 get_task_cred -EXPORT_SYMBOL vmlinux 0x8f6d737b rproc_boot -EXPORT_SYMBOL vmlinux 0x8f75af93 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8f785dc3 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x8f7c4c48 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9a498c sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa3cc1f end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x8fb243af twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x8fb839f5 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8fc982d6 file_remove_privs -EXPORT_SYMBOL vmlinux 0x8fd2d45e agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x8fd8bd55 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x8fdcba4a xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x9019682f write_cache_pages -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9045bf15 ip_options_compile -EXPORT_SYMBOL vmlinux 0x904add6a cdev_add -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576734 skb_checksum -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9087c9e0 cdev_device_del -EXPORT_SYMBOL vmlinux 0x90a1d168 ata_link_printk -EXPORT_SYMBOL vmlinux 0x90b09ed7 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x90b10cf2 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x90b580d0 d_delete -EXPORT_SYMBOL vmlinux 0x90bd1629 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x90cfe061 blk_put_queue -EXPORT_SYMBOL vmlinux 0x90d266f5 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x90d494be tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x90d5767b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x910a11ee fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x9139dbd3 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x91520712 dev_uc_del -EXPORT_SYMBOL vmlinux 0x9153725e param_get_bool -EXPORT_SYMBOL vmlinux 0x91560729 kthread_bind -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x9186382f blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x918dbcf6 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x91909974 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a6b7c5 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91c043c8 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x9210d458 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9232ab0a simple_lookup -EXPORT_SYMBOL vmlinux 0x92351c0a i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x9238d093 freeze_super -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x924fb525 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x9253162c touch_buffer -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926b67b3 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x927c74c1 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x927e46f4 add_to_pipe -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x9289b250 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929662ce netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92b6b816 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x92b6cb5f devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c65628 seq_read -EXPORT_SYMBOL vmlinux 0x92e9e89d flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f81eed generic_file_mmap -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9301ec59 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9306456d scmd_printk -EXPORT_SYMBOL vmlinux 0x9317eaeb __lock_buffer -EXPORT_SYMBOL vmlinux 0x931b8296 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x931d4f3d vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x93736f2f inet_sendpage -EXPORT_SYMBOL vmlinux 0x9374e01a page_symlink -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93787019 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x93835804 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93aa6642 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x93afb518 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c94c1e get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x93c9bd25 notify_change -EXPORT_SYMBOL vmlinux 0x93d59d08 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x94008ebd flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x940c60ed ps2_handle_response -EXPORT_SYMBOL vmlinux 0x9417459f neigh_app_ns -EXPORT_SYMBOL vmlinux 0x941a51af __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x941ece24 get_super -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944d7c2c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x94507ffc skb_append -EXPORT_SYMBOL vmlinux 0x94652481 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x9470343a rtnl_create_link -EXPORT_SYMBOL vmlinux 0x94770499 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x948cdd28 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b73611 read_cache_pages -EXPORT_SYMBOL vmlinux 0x94baf72d tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c2b33d sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x94e31d45 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x94e3a4be __icmp_send -EXPORT_SYMBOL vmlinux 0x94f4b527 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x9509af83 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x950bb2d8 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x9516c114 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x9528d07a xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x953670a7 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x953b4903 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954fe055 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule -EXPORT_SYMBOL vmlinux 0x9570d4bc rtc_add_groups -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x959db775 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x959faca2 netdev_features_change -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95a686e3 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x95d1a8d4 fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95f4ced1 simple_setattr -EXPORT_SYMBOL vmlinux 0x95fa3c2b netdev_printk -EXPORT_SYMBOL vmlinux 0x96085be6 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x960c58ca tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x961d9a7d register_quota_format -EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x9656010b pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x96615100 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x96624690 f_setown -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x96a651d7 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x96a9079f fifo_set_limit -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96de7f57 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96e713f4 cdev_device_add -EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96eaf6cc generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x96ec03a2 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x972e99cb sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x9733c008 register_netdev -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x975ef1e7 block_read_full_page -EXPORT_SYMBOL vmlinux 0x97650d77 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x976d9eec __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97aa9499 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b4a737 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x97bc681d d_path -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cdf591 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x97d617f1 serio_bus -EXPORT_SYMBOL vmlinux 0x97def56e con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x97ff08c6 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x98027b02 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x9812b617 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x981be892 set_security_override -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982a559f framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x983f1423 file_modified -EXPORT_SYMBOL vmlinux 0x9847278e pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x985c8ff4 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x98662968 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x98862d61 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x98a7ce1c nvm_unregister -EXPORT_SYMBOL vmlinux 0x98ab4eff vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x98b608c3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x98b6301a security_inode_init_security -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d24425 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x98dff37a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x990da0d3 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9910a463 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x9921a1f8 agp_free_memory -EXPORT_SYMBOL vmlinux 0x9926f114 input_close_device -EXPORT_SYMBOL vmlinux 0x9930efc4 __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9942485e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x99437a72 md_check_recovery -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996eb654 simple_statfs -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997a0186 submit_bh -EXPORT_SYMBOL vmlinux 0x998d817a done_path_create -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a86bea remap_pfn_range -EXPORT_SYMBOL vmlinux 0x99b42e7c __frontswap_load -EXPORT_SYMBOL vmlinux 0x99bdc72a rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x99c82d7f d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x99cc6b51 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e0882d netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x99e49239 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x99f8453a __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1531e0 discard_new_inode -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f1720 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a305d7c truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x9a5631c3 __scsi_execute -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a59390a alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9a5de9b0 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a86d68c blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x9a8c514f dev_uc_init -EXPORT_SYMBOL vmlinux 0x9aaab585 edac_mc_find -EXPORT_SYMBOL vmlinux 0x9aae65f0 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ad3b64e skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x9ad4ea6e napi_consume_skb -EXPORT_SYMBOL vmlinux 0x9ad59c96 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9adab66e input_register_handle -EXPORT_SYMBOL vmlinux 0x9aeba489 irq_to_desc -EXPORT_SYMBOL vmlinux 0x9af07b02 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x9b006cd3 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2eb343 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init -EXPORT_SYMBOL vmlinux 0x9b3172bf migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3c05cd __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b49d1d5 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b5db411 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x9b60d245 netif_rx -EXPORT_SYMBOL vmlinux 0x9b683017 pv_ops -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b725c13 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x9b80a94b get_tz_trend -EXPORT_SYMBOL vmlinux 0x9b81368d dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x9b9823a4 _dev_err -EXPORT_SYMBOL vmlinux 0x9ba0d3fc param_ops_ushort -EXPORT_SYMBOL vmlinux 0x9ba29e3e phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x9bbf0440 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x9bcea238 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x9bcf059b proc_remove -EXPORT_SYMBOL vmlinux 0x9be066a3 genl_register_family -EXPORT_SYMBOL vmlinux 0x9be5e234 mmc_erase -EXPORT_SYMBOL vmlinux 0x9bfecec1 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke -EXPORT_SYMBOL vmlinux 0x9c3c8fd2 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x9c4b799c soft_cursor -EXPORT_SYMBOL vmlinux 0x9c618a43 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x9c7c9ef1 neigh_xmit -EXPORT_SYMBOL vmlinux 0x9c92e3db ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9caec602 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x9cb713a2 param_set_short -EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cc522d3 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd8e214 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce29cec scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x9ce30902 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x9ceedf08 to_nd_dax -EXPORT_SYMBOL vmlinux 0x9cfa22b7 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d13d157 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0x9d21449e splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x9d3a5569 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x9d57762b padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x9d5b0ff4 mmc_start_request -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d64399d lease_get_mtime -EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d8c637a path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d9b4516 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x9da43686 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x9dbfa19f max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9df090f3 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x9e033e43 blkdev_put -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0dc171 simple_rmdir -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13a227 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e3cccd9 neigh_lookup -EXPORT_SYMBOL vmlinux 0x9e48b32f bprm_change_interp -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e612f25 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e6922fb genphy_suspend -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e7fbcfc i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9e9d1d07 param_ops_string -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf -EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9ebd5d5b mmput_async -EXPORT_SYMBOL vmlinux 0x9ec07cc2 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef5168a nf_hook_slow -EXPORT_SYMBOL vmlinux 0x9ef60450 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x9efa0d31 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x9f06a4c3 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x9f34baba devm_request_resource -EXPORT_SYMBOL vmlinux 0x9f376bbc nobh_write_end -EXPORT_SYMBOL vmlinux 0x9f3a4978 compat_nf_getsockopt -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 0x9f6c9490 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x9f6d5ee8 input_open_device -EXPORT_SYMBOL vmlinux 0x9f808a1d qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x9f881573 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x9f8ca20a ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x9f923c2f __mdiobus_read -EXPORT_SYMBOL vmlinux 0x9f97cbe1 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b07f0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x9fa61b5f prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa8a0bb serio_reconnect -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fbcc752 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x9fbdab12 unlock_buffer -EXPORT_SYMBOL vmlinux 0x9fc86473 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x9fc8b14c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffe481b fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa017c922 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xa025763e del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xa028474d netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa053c0b9 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa067079c mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xa0723b0c devm_iounmap -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xa0924232 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xa0958bac mmc_can_erase -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0ae5c9d devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xa0aeccc8 scsi_init_io -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b550aa from_kgid -EXPORT_SYMBOL vmlinux 0xa0c65723 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xa0c7d812 read_dev_sector -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 0xa0f493d9 efi -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11ec923 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1217881 param_set_copystring -EXPORT_SYMBOL vmlinux 0xa12685f2 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xa14c474a netlink_net_capable -EXPORT_SYMBOL vmlinux 0xa1525b2f serio_rescan -EXPORT_SYMBOL vmlinux 0xa154d8bb phy_start_aneg -EXPORT_SYMBOL vmlinux 0xa156cbb6 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xa16936e6 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xa1777cc0 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xa179bdd6 phy_loopback -EXPORT_SYMBOL vmlinux 0xa18c5502 fs_lookup_param -EXPORT_SYMBOL vmlinux 0xa18e71ff __serio_register_port -EXPORT_SYMBOL vmlinux 0xa19d037b get_super_thawed -EXPORT_SYMBOL vmlinux 0xa1abba3a dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c003e9 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xa1d9406e try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e15f89 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xa1e93672 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0xa1fd5f40 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2138839 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa2380ba9 migrate_page -EXPORT_SYMBOL vmlinux 0xa23b9fe0 get_dev_data -EXPORT_SYMBOL vmlinux 0xa244c820 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa259056e get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26d7ae8 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2948350 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xa2970feb generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xa2a3cdb9 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xa2a7c489 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xa2e5ff8b flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xa2e852c3 sync_inode -EXPORT_SYMBOL vmlinux 0xa2ee333b sock_release -EXPORT_SYMBOL vmlinux 0xa2f7189c vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0xa3204016 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa320641e tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xa33c7b75 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xa369543f jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xa37e2f10 pci_free_irq -EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa38f8972 mdiobus_free -EXPORT_SYMBOL vmlinux 0xa3a7c257 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xa3ab813f intel_gmch_probe -EXPORT_SYMBOL vmlinux 0xa3c67711 seq_open -EXPORT_SYMBOL vmlinux 0xa3dd47cc cont_write_begin -EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3ff2d0a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa41423a1 param_get_ullong -EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa4241091 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa42e1a36 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xa430f7f3 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xa441413b locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xa4456eeb tcp_check_req -EXPORT_SYMBOL vmlinux 0xa44a4764 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xa452a0bc mmc_request_done -EXPORT_SYMBOL vmlinux 0xa45604f8 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa45f993f phy_detach -EXPORT_SYMBOL vmlinux 0xa497081d inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa4ae1ad9 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xa4ae33e9 __break_lease -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c2d1cb tcf_block_put -EXPORT_SYMBOL vmlinux 0xa4d0d753 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4dd2543 security_path_mknod -EXPORT_SYMBOL vmlinux 0xa4e18671 scsi_host_put -EXPORT_SYMBOL vmlinux 0xa4ea21df blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xa4eb9f7e acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xa4eed2ea __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xa4f5e588 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0xa5096bd2 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa519a936 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xa51b690c inode_init_owner -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa557a8d3 agp_create_memory -EXPORT_SYMBOL vmlinux 0xa56c1d5d set_page_dirty -EXPORT_SYMBOL vmlinux 0xa5953cac blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5a014fc security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5ce1917 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xa5d532e2 pci_find_resource -EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5ed3c5e secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xa6015be1 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0xa6045c0f xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6285a30 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xa667767c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xa67bcebf mmc_of_parse -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68d3e54 netlink_set_err -EXPORT_SYMBOL vmlinux 0xa68e60da fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0xa69572cb kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa69ea4d3 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xa6b760a5 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xa6d95dc0 iov_iter_init -EXPORT_SYMBOL vmlinux 0xa6d9b4d6 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xa6df0211 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xa6ef0846 km_report -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa72593fe rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa73a6196 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75a9b26 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xa7742b53 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa77b569e get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa789a378 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa7c0a873 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7d9cb0e scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa7dba1c5 param_set_ushort -EXPORT_SYMBOL vmlinux 0xa7dd2ab1 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fa85f4 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa822ae87 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84baea4 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xa84c0e0a scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa8588258 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa863bba3 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8769a27 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa8a6bd19 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xa8c77850 seq_release -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d2285e pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xa8de8f0a filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e71212 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xa8ea050f xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fb01a4 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xa902ac64 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xa90b6a29 mdio_device_create -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa9119544 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa953c456 skb_seq_read -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96cd059 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid -EXPORT_SYMBOL vmlinux 0xa9862396 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xa98ba3b4 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xa9b19640 d_add_ci -EXPORT_SYMBOL vmlinux 0xa9b212d8 bdput -EXPORT_SYMBOL vmlinux 0xa9bab323 pci_release_region -EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9f9e0e4 default_llseek -EXPORT_SYMBOL vmlinux 0xa9fa6497 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0335fe flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xaa0d423d tty_register_device -EXPORT_SYMBOL vmlinux 0xaa0d6350 d_make_root -EXPORT_SYMBOL vmlinux 0xaa1b64d7 nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xaa2f562a setattr_copy -EXPORT_SYMBOL vmlinux 0xaa32baa4 dquot_operations -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa3513e4 inet_offloads -EXPORT_SYMBOL vmlinux 0xaa480aab alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xaa567c8e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xaa693d16 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xaa6cee92 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xaa6ea6fa mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xaa6ec5d5 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa73c34a __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xaa9e1f8c d_find_alias -EXPORT_SYMBOL vmlinux 0xaac6bd8e textsearch_register -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6a8ee jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaadb742d genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xaae41403 md_update_sb -EXPORT_SYMBOL vmlinux 0xaae5302e __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaeae640 sock_init_data -EXPORT_SYMBOL vmlinux 0xaaf0a28d netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xaafd28c1 inet_ioctl -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0a7f2a blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xab278507 dm_get_device -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab39375a pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab446460 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xab46b1c8 inc_nlink -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 0xab6968d8 skb_split -EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab9d4cbc devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xaba1b14a input_inject_event -EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0xabb02c74 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xabb0407d ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac00513e simple_rename -EXPORT_SYMBOL vmlinux 0xac10b88e vc_cons -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1de6e9 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac42b1e3 filemap_flush -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6a1815 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xac79b0b4 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac8dc978 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xac8deaa4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbd827c md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xacd53eb8 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace091ab netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xacebadeb dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad069666 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe -EXPORT_SYMBOL vmlinux 0xad3cf24f phy_find_first -EXPORT_SYMBOL vmlinux 0xad3e4e9c iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xad461f7b blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xad4fc05b flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7c00fa iov_iter_npages -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad9429f6 xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0xad948581 padata_start -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xad9d09d0 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xada10b87 simple_fill_super -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadac71a2 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xadb241c9 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadec9057 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xadee3c43 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae0b446b inode_add_bytes -EXPORT_SYMBOL vmlinux 0xae0d0942 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xae17da47 try_module_get -EXPORT_SYMBOL vmlinux 0xae30973b udp6_set_csum -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae469283 dcache_readdir -EXPORT_SYMBOL vmlinux 0xae50d4da phy_start -EXPORT_SYMBOL vmlinux 0xae55c7cb rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae69ec89 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xae6a33a4 vfs_create -EXPORT_SYMBOL vmlinux 0xae7c1582 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xae9cc040 bdi_alloc_node -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaecc4238 param_get_charp -EXPORT_SYMBOL vmlinux 0xaed2c4f9 neigh_destroy -EXPORT_SYMBOL vmlinux 0xaef76024 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xaf3c7c73 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4a3862 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xaf4bf1d5 fb_find_mode -EXPORT_SYMBOL vmlinux 0xaf51f48f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xaf546eeb pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xaf555e51 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xaf61441a ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0xaf693eda netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf805571 vmap -EXPORT_SYMBOL vmlinux 0xaf90b014 vm_map_ram -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafaf37e4 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xafb25831 km_state_expired -EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string -EXPORT_SYMBOL vmlinux 0xafcd9bee mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xaff2d906 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xb003378e __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xb011fbcf eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01ef5a7 file_update_time -EXPORT_SYMBOL vmlinux 0xb02da0a4 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xb038e94d pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb04ed62f netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xb04f4bda genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xb05d299f seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xb09f25a1 inet6_protos -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ba04ec pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0d48af6 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eeab85 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb1190af4 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xb11cc343 phy_write_paged -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb124fde4 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb135d3b2 amd_iommu_pc_get_reg -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14cd878 PDE_DATA -EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb16ccf2b xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xb16eb7ee jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xb177416b pipe_unlock -EXPORT_SYMBOL vmlinux 0xb1796461 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xb1855528 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1a1a42f alloc_fddidev -EXPORT_SYMBOL vmlinux 0xb1bf223e scsi_remove_host -EXPORT_SYMBOL vmlinux 0xb1c39091 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d3e033 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc -EXPORT_SYMBOL vmlinux 0xb1e6b2ac mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xb1ec0742 register_cdrom -EXPORT_SYMBOL vmlinux 0xb1fc02e5 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xb2116fdc set_nlink -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb2227ed4 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23ac940 cdev_del -EXPORT_SYMBOL vmlinux 0xb25dd13b backlight_device_register -EXPORT_SYMBOL vmlinux 0xb26ad50a pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xb273aedf eth_change_mtu -EXPORT_SYMBOL vmlinux 0xb2830978 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb2a7f379 datagram_poll -EXPORT_SYMBOL vmlinux 0xb2a8b627 hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb2ab2bdd param_get_ushort -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2de020b find_lock_entry -EXPORT_SYMBOL vmlinux 0xb2e9491b kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fa944b qdisc_put -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb3357e27 pci_dev_put -EXPORT_SYMBOL vmlinux 0xb336f8c3 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xb33eede8 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0xb34108da dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xb34e2c0b get_agp_version -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb356b9b4 genl_notify -EXPORT_SYMBOL vmlinux 0xb35c3f3e ip_do_fragment -EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36e4b8e audit_log_start -EXPORT_SYMBOL vmlinux 0xb3715822 dev_addr_del -EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb387c821 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xb3888f7a key_type_keyring -EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3b41b51 sock_i_uid -EXPORT_SYMBOL vmlinux 0xb3c317a1 pid_task -EXPORT_SYMBOL vmlinux 0xb3cfaaf3 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3dee474 is_nd_btt -EXPORT_SYMBOL vmlinux 0xb3ece188 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb402a489 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4402414 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xb44927a9 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xb44ad116 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user -EXPORT_SYMBOL vmlinux 0xb44f8258 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xb450d971 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xb451d739 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xb4566ea4 skb_trim -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb472c5d0 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xb47b083b configfs_register_group -EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb488586e nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xb48b67a4 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4ba6f8f sock_recvmsg -EXPORT_SYMBOL vmlinux 0xb4ec2baf tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xb4ed82c7 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f493ef vme_slave_request -EXPORT_SYMBOL vmlinux 0xb4f848e8 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xb50b0aad mmc_detect_change -EXPORT_SYMBOL vmlinux 0xb50f0a6c mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb574d86f xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xb57b7da1 mdiobus_read -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ab72aa dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5bd536d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb5c94d7a dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xb5d3b9df sock_i_ino -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ee8417 nvm_register -EXPORT_SYMBOL vmlinux 0xb5f9874c cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xb6013836 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0xb6079a08 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xb6200617 rproc_add -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb6309846 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb64eaf56 simple_write_begin -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb683a097 vfio_pin_pages -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6af9a39 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xb6bb6d26 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb6c1582b netdev_alert -EXPORT_SYMBOL vmlinux 0xb6d8ceda netdev_notice -EXPORT_SYMBOL vmlinux 0xb6f1a6b0 param_set_ullong -EXPORT_SYMBOL vmlinux 0xb701db05 fb_blank -EXPORT_SYMBOL vmlinux 0xb71c685a eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xb7267dc9 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xb7291c88 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb739b3a5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xb73f5711 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xb7547f2c amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0xb75491b6 device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb76dc30a icmp6_send -EXPORT_SYMBOL vmlinux 0xb7771299 bdi_put -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7b7e4d9 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xb7c24ea6 zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7c856cf compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xb82590fd __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xb82dde75 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb8340847 devm_clk_put -EXPORT_SYMBOL vmlinux 0xb84ebd17 dm_put_device -EXPORT_SYMBOL vmlinux 0xb86a4da5 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xb86c0478 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb8723a05 tty_port_close -EXPORT_SYMBOL vmlinux 0xb874dc4e netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xb8789902 __free_pages -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8ae4921 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8d6de5d vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e7ea89 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb9072337 dev_add_offload -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb928da23 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xb9307d99 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb94f522a get_unmapped_area -EXPORT_SYMBOL vmlinux 0xb95967c2 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xb95a8d75 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xb95d17c0 phy_attached_print -EXPORT_SYMBOL vmlinux 0xb963a8c5 set_binfmt -EXPORT_SYMBOL vmlinux 0xb96743b9 param_ops_short -EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9841fe1 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xb9916e26 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xb99e0d12 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb99efbc4 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xb9abb71e pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9d5bf1e ip_getsockopt -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 0xb9f6ce79 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0xba0007d0 fs_bio_set -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ac8a5 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xba60ebe8 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xba72b956 set_disk_ro -EXPORT_SYMBOL vmlinux 0xba8a8c7a i8042_install_filter -EXPORT_SYMBOL vmlinux 0xba91986d cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xba946ee6 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xba9bc36e pci_dev_driver -EXPORT_SYMBOL vmlinux 0xbac368ab free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbaedff94 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xbaf1ecf5 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xbaf725cf filp_open -EXPORT_SYMBOL vmlinux 0xbaf8be83 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xbb037cea tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xbb05034d tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many -EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb1c1335 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2d1a98 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3acf09 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xbb4ea027 misc_deregister -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb7f73b7 kernel_read -EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbba2ce13 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xbbd3a297 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf0d1ae vfs_readlink -EXPORT_SYMBOL vmlinux 0xbbf93c3d inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xbc083279 phy_attach -EXPORT_SYMBOL vmlinux 0xbc190701 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc5aff81 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xbc5de2e7 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xbc637af8 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xbc8848b2 input_free_device -EXPORT_SYMBOL vmlinux 0xbc9969b2 finalize_exec -EXPORT_SYMBOL vmlinux 0xbc9efd19 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xbca79d61 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb18740 unload_nls -EXPORT_SYMBOL vmlinux 0xbcb1e344 md_done_sync -EXPORT_SYMBOL vmlinux 0xbcb43321 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xbcbd3fc2 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc57630 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xbcdd2eb4 padata_free_shell -EXPORT_SYMBOL vmlinux 0xbcfb6e27 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xbd07b02d single_release -EXPORT_SYMBOL vmlinux 0xbd4598a3 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd64e2cf call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd8ca772 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xbd9860cf bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xbdcbcd0c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xbdec59fa inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xbdf6d4c8 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe1bf1ef tcp_init_sock -EXPORT_SYMBOL vmlinux 0xbe1dedd9 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xbe22a7ff generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4ae502 sock_register -EXPORT_SYMBOL vmlinux 0xbe4e02c0 current_in_userns -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe502bdb xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbebe584f copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xbec640c8 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xbeca9a5c pnp_get_resource -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbeee7d23 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf010429 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xbf0545e0 xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0xbf29c4bd crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf33999a generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xbf4352b7 dev_change_flags -EXPORT_SYMBOL vmlinux 0xbf4f323e tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xbf6390f2 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xbf7d1462 config_item_put -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfad7c90 scsi_print_command -EXPORT_SYMBOL vmlinux 0xbfb52695 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xbfbdd884 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfc20920 blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0xbfca4366 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xbfcdb3dc i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xbfd970fb max8998_read_reg -EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0xbfea7fb8 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc00fb540 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc027db40 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xc0333000 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xc065be02 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xc06cc391 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0a7a042 touch_atime -EXPORT_SYMBOL vmlinux 0xc0ad30c3 amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bbee0b pci_enable_wake -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0d62bce mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xc0e114a1 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xc0e94a1e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc0eee0fb pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xc0f7cd8c amd_iommu_pc_set_reg -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc10bed87 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xc133ccad km_policy_expired -EXPORT_SYMBOL vmlinux 0xc13503b8 dquot_file_open -EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc137242e put_tty_driver -EXPORT_SYMBOL vmlinux 0xc1416a68 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xc142a906 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xc14d4dcd skb_store_bits -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xc156cae6 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc15b6f31 pci_disable_device -EXPORT_SYMBOL vmlinux 0xc15d33ec ppp_register_channel -EXPORT_SYMBOL vmlinux 0xc160411c pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc184fd5a devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xc18e942e scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xc1c4280e grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1fa78e0 i2c_use_client -EXPORT_SYMBOL vmlinux 0xc1fd4153 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xc21f7abc skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xc228129e revert_creds -EXPORT_SYMBOL vmlinux 0xc22e1352 param_ops_byte -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc24e044a dev_load -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26f8fc7 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc271cd6a mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc27b54c1 dquot_enable -EXPORT_SYMBOL vmlinux 0xc28b45ab t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xc292c9b7 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29f51fb phy_print_status -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2ab8222 sync_filesystem -EXPORT_SYMBOL vmlinux 0xc2abd1ba dma_set_mask -EXPORT_SYMBOL vmlinux 0xc2cfb3f2 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e711bd cdev_init -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3119a81 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xc3271b2f ppp_dev_name -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32daaeb console_start -EXPORT_SYMBOL vmlinux 0xc3313cdb jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xc34f942f param_set_bool -EXPORT_SYMBOL vmlinux 0xc3595348 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36bb83b seq_putc -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39c16de __ip_select_ident -EXPORT_SYMBOL vmlinux 0xc39dd215 init_net -EXPORT_SYMBOL vmlinux 0xc3a33285 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b459bb redraw_screen -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3bd3964 __frontswap_test -EXPORT_SYMBOL vmlinux 0xc3d63b9f mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xc3d7b013 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xc3ebcdb0 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xc3fd8b7e iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc410209a address_space_init_once -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4212e58 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc42e145d unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xc434bc79 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc434fe3a tcp_disconnect -EXPORT_SYMBOL vmlinux 0xc438490d ab3100_event_register -EXPORT_SYMBOL vmlinux 0xc4511ed3 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xc4628d72 param_set_charp -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc483c89e pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xc48772a1 unlock_rename -EXPORT_SYMBOL vmlinux 0xc48f9707 param_set_int -EXPORT_SYMBOL vmlinux 0xc498485b iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xc4acdebd write_one_page -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4af75d9 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xc4b37371 lookup_bdev -EXPORT_SYMBOL vmlinux 0xc4e1ef9b locks_free_lock -EXPORT_SYMBOL vmlinux 0xc4e6fa01 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xc4eeabef generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xc4f74b5a put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xc503aed8 file_path -EXPORT_SYMBOL vmlinux 0xc5230530 get_tree_single -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53824d0 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xc53b1bea devm_of_iomap -EXPORT_SYMBOL vmlinux 0xc53d052a ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xc53ed235 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xc5490e02 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc5586af3 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xc5664491 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0xc5694d7f security_task_getsecid -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc5936157 __frontswap_store -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c3f8d5 tty_port_put -EXPORT_SYMBOL vmlinux 0xc5c6c107 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xc5cde59a dev_change_carrier -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e19e25 param_get_invbool -EXPORT_SYMBOL vmlinux 0xc5e26c97 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc609d2bc da903x_query_status -EXPORT_SYMBOL vmlinux 0xc60c088a hmm_range_unregister -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6579a81 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xc65c30cb devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc65cd270 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc661ec60 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a0ed5d iget5_locked -EXPORT_SYMBOL vmlinux 0xc6a59044 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cbe60a tty_hangup -EXPORT_SYMBOL vmlinux 0xc6d80468 inet_gro_receive -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f8258a dm_kobject_release -EXPORT_SYMBOL vmlinux 0xc7034259 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc730b269 d_instantiate -EXPORT_SYMBOL vmlinux 0xc7384171 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xc73f52a4 module_put -EXPORT_SYMBOL vmlinux 0xc73f9262 simple_link -EXPORT_SYMBOL vmlinux 0xc76fe3ea __alloc_skb -EXPORT_SYMBOL vmlinux 0xc776f679 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xc777240a iov_iter_advance -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7866f2c filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a2cbc8 genphy_loopback -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a8f6b4 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xc7b5d295 bdev_read_only -EXPORT_SYMBOL vmlinux 0xc7b9596c dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc8243278 of_find_backlight -EXPORT_SYMBOL vmlinux 0xc8378784 netdev_state_change -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86288cc no_llseek -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc873cbd3 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88e618c fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a8d2d6 pcim_iomap -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8c3e4c1 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xc8c72fbb compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0xc8e8e86a flush_old_exec -EXPORT_SYMBOL vmlinux 0xc8ec089e zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xc8f375c1 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xc9066440 sock_no_accept -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94c01bd seq_puts -EXPORT_SYMBOL vmlinux 0xc94ce612 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9677e33 skb_unlink -EXPORT_SYMBOL vmlinux 0xc970e500 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9724bc0 netif_napi_add -EXPORT_SYMBOL vmlinux 0xc972e0d3 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc98a8cab jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b50e04 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc9b5f999 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xc9b7e86a zap_page_range -EXPORT_SYMBOL vmlinux 0xc9cde922 dcb_setapp -EXPORT_SYMBOL vmlinux 0xc9de4aca tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e9d2e7 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xc9ea52d9 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xc9ec099f vlan_for_each -EXPORT_SYMBOL vmlinux 0xc9ed2f9e fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xc9f1da45 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xc9f37811 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc9f38a78 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xc9f6b1ad skb_copy_expand -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca249305 dqput -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca50d849 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xca5fc859 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xca62e245 mpage_readpages -EXPORT_SYMBOL vmlinux 0xca6867c3 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca6ccb0f d_add -EXPORT_SYMBOL vmlinux 0xca703f12 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xca80fadc init_pseudo -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa304f6 translation_pre_enabled -EXPORT_SYMBOL vmlinux 0xcac612f5 inet6_bind -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaf1a38d clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf54e40 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0a8fe5 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xcb222dbe agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xcb23b628 get_amd_iommu -EXPORT_SYMBOL vmlinux 0xcb24ed02 block_write_begin -EXPORT_SYMBOL vmlinux 0xcb312c83 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb5a2878 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0xcb5cfea3 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xcb627211 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xcb65d121 submit_bio -EXPORT_SYMBOL vmlinux 0xcb70075b cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb75d380 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xcb886c47 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xcb8ab63f mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xcb905c0a serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcba5f331 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbbac7c0 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xcbbb446a tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd12ea3 bmap -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbeb4cb9 config_group_find_item -EXPORT_SYMBOL vmlinux 0xcbf332d6 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xcbf9d51e rt_dst_clone -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc0f5a29 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc1fa13e rproc_put -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5dcd83 task_work_add -EXPORT_SYMBOL vmlinux 0xcc6675fe kthread_create_worker -EXPORT_SYMBOL vmlinux 0xcc795bcd dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xcc8ffc3f ptp_clock_event -EXPORT_SYMBOL vmlinux 0xcc9764ec vme_init_bridge -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb356f8 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xccb6ad87 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xccc0c561 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd11e34 iptun_encaps -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccdfb484 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xccdfee7a revalidate_disk -EXPORT_SYMBOL vmlinux 0xcce3e86b nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xcce5556a dma_resv_init -EXPORT_SYMBOL vmlinux 0xcce71b3f get_gendisk -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf1ea39 noop_llseek -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 0xcd07d472 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2a6f76 dev_deactivate -EXPORT_SYMBOL vmlinux 0xcd52a271 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xcd57c835 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xcd5bd0b2 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xcd610f1a dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xcd7d5c09 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcda5cc51 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xcdaaa9f4 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc56d3a pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce281582 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce351400 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xce37953e end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xce3f9426 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xce41cfc8 devm_pci_remap_cfg_resource -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 0xce6477b2 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce7c3f49 xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0xce90d312 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xce965cf4 pci_iomap -EXPORT_SYMBOL vmlinux 0xcea2d047 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb00f82 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xcebef859 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xcecbb53d clk_add_alias -EXPORT_SYMBOL vmlinux 0xcecc2a4f tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee8c000 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xceff2772 vm_map_pages -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf239ad2 load_nls -EXPORT_SYMBOL vmlinux 0xcf278c51 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xcf2a00ed nf_reinject -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf35fac2 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xcf445fa2 sock_efree -EXPORT_SYMBOL vmlinux 0xcf4f7c45 input_event -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf53e7fd sock_from_file -EXPORT_SYMBOL vmlinux 0xcf63a983 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xcf6f58e3 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9fb9dd generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xcfa02507 mmc_get_card -EXPORT_SYMBOL vmlinux 0xcfa99d56 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xcfbf621d bioset_init -EXPORT_SYMBOL vmlinux 0xcfc52c31 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xcfd94914 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xcfdd13b5 release_firmware -EXPORT_SYMBOL vmlinux 0xcff1321c ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xcff4531e netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xcffb6585 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xd01a2c7c flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xd02e3b1e __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd0370a8c scsi_register_driver -EXPORT_SYMBOL vmlinux 0xd038e0b1 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xd03c0e56 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xd040132f free_buffer_head -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd04ae0b6 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05f417b param_ops_bint -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06cfe38 input_set_keycode -EXPORT_SYMBOL vmlinux 0xd0796344 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd0922ccb blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xd0984949 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b77e1f put_ipc_ns -EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd0d08531 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xd0edd10a amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0f54c0b dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0xd0f7bdfa iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1128d74 kernel_accept -EXPORT_SYMBOL vmlinux 0xd113214f netif_napi_del -EXPORT_SYMBOL vmlinux 0xd1256472 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14571d1 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xd150632b __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xd15c423d twl6040_power -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0xd1b533a2 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xd1bd569c gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd1bf84e6 lock_rename -EXPORT_SYMBOL vmlinux 0xd1c3b834 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xd1c5c45a pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xd1d15f1b uv_hub_info_version -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f0ad8e alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd208fe18 serio_close -EXPORT_SYMBOL vmlinux 0xd21664d7 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd227fa06 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xd23f94f1 filp_close -EXPORT_SYMBOL vmlinux 0xd24d0666 get_cached_acl -EXPORT_SYMBOL vmlinux 0xd2561430 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xd2578abb nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf -EXPORT_SYMBOL vmlinux 0xd26c890c inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29469ba pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xd2b7a44c inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xd2c1e0cb mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xd2d423ae devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xd2d47824 __alloc_disk_node -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 0xd300b02a agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xd32987be sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3576c26 input_register_device -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd374c030 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xd37687d0 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xd37816a3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xd3810ffb mdio_device_register -EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd3a6f8d9 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xd3a932cf nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xd3ac60e9 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xd3ba852b bd_start_claiming -EXPORT_SYMBOL vmlinux 0xd3c43cd4 generic_fadvise -EXPORT_SYMBOL vmlinux 0xd3c50c72 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xd3c5fc62 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xd3cc434a devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xd3dc3d0b netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41e9674 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd4253a78 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xd427254a get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xd458ce06 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4818886 eth_type_trans -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd489d03f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xd48d753c __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xd4a18e5a pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4babca4 mdiobus_write -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4caf665 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd506db1c security_sb_remount -EXPORT_SYMBOL vmlinux 0xd5147eb3 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52cf9e1 input_get_keycode -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd545d98f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xd583bdff genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd59e71bf tcp_filter -EXPORT_SYMBOL vmlinux 0xd5a4a2c5 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bb197a dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61f5bea pagecache_get_page -EXPORT_SYMBOL vmlinux 0xd61f974f mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd65d67e8 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xd674ddeb dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xd68748c5 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69e2bee rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xd6a6914b from_kuid -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6ea6b20 blk_register_region -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eaf88f skb_queue_head -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7111529 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xd71c7b08 iterate_dir -EXPORT_SYMBOL vmlinux 0xd725aefc passthru_features_check -EXPORT_SYMBOL vmlinux 0xd7288812 block_write_full_page -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7528cf3 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xd77c940f crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xd786a8a1 component_match_add_typed -EXPORT_SYMBOL vmlinux 0xd7893d4b inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xd7b66a14 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d90573 kill_fasync -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd8049c9e nvm_end_io -EXPORT_SYMBOL vmlinux 0xd8129ba5 inet_addr_type -EXPORT_SYMBOL vmlinux 0xd81a7c49 dev_mc_add -EXPORT_SYMBOL vmlinux 0xd833acbd xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd84010e5 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd84a2dc8 dns_query -EXPORT_SYMBOL vmlinux 0xd85363c4 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd8682376 qdisc_reset -EXPORT_SYMBOL vmlinux 0xd86ce38c locks_delete_block -EXPORT_SYMBOL vmlinux 0xd86e2717 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xd8900c61 __destroy_inode -EXPORT_SYMBOL vmlinux 0xd8943215 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8c318e2 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0xd8cc829a netdev_change_features -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e089f5 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xd8f797e4 dm_io -EXPORT_SYMBOL vmlinux 0xd904b083 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xd90a6f96 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xd9145f5f xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd91c08fa fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xd92bb762 pci_release_resource -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9387a3c kernel_getsockname -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0xd982ff54 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9aaf8ed dst_release_immediate -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9bd5da4 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xd9c7c8f2 read_cache_page -EXPORT_SYMBOL vmlinux 0xd9d07512 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd9ee9c71 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xda076563 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xda0e714d irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0xda24d543 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0xda2ab051 __skb_checksum -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda44516d cdrom_release -EXPORT_SYMBOL vmlinux 0xda446c49 set_posix_acl -EXPORT_SYMBOL vmlinux 0xda51114c d_prune_aliases -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7b7f45 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda90da10 km_new_mapping -EXPORT_SYMBOL vmlinux 0xda9a5478 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xda9fec02 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xdaaadf88 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad413e3 dst_dev_put -EXPORT_SYMBOL vmlinux 0xdad63f54 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xdadba30f simple_pin_fs -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdb0a7133 stream_open -EXPORT_SYMBOL vmlinux 0xdb0d8420 param_set_bint -EXPORT_SYMBOL vmlinux 0xdb11929d abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xdb11e7d6 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate -EXPORT_SYMBOL vmlinux 0xdb54ce5c ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb82efc5 inet_select_addr -EXPORT_SYMBOL vmlinux 0xdb8cebfe sk_capable -EXPORT_SYMBOL vmlinux 0xdb927b75 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xdb9e18a5 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xdbad2275 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xdbadb8a5 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xdbca738f check_disk_change -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xdbf19329 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xdc0f8015 page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0xdc121543 may_umount -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc3a0599 can_nice -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4ea78e mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc57a413 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xdc5c5757 tty_port_init -EXPORT_SYMBOL vmlinux 0xdc5d370f vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xdc852756 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xdca08b1d inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xdca749f9 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xdcaf5673 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xdcaf73d3 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xdcd6cb86 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xdcd9322a dump_align -EXPORT_SYMBOL vmlinux 0xdcdcb90d tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xdce3eb57 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xdcea1f10 ppp_input_error -EXPORT_SYMBOL vmlinux 0xdcf454a2 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xdd13a7ab agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd28e33d generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xdd2b4800 set_pages_uc -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd3b167a csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xdd5139b3 md_flush_request -EXPORT_SYMBOL vmlinux 0xdd5dfb3b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xdd630c5d dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd66ee44 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd98073e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb937f0 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xddc3ee70 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xddc95a5e vga_tryget -EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2fe71a import_iovec -EXPORT_SYMBOL vmlinux 0xde382416 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde64d556 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xde658e56 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xde692f75 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xde7ac851 node_data -EXPORT_SYMBOL vmlinux 0xde87d7a4 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xde8821c7 generic_update_time -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdec57d50 md_reload_sb -EXPORT_SYMBOL vmlinux 0xdeca959e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf10fd73 path_has_submounts -EXPORT_SYMBOL vmlinux 0xdf1a97f7 inet6_offloads -EXPORT_SYMBOL vmlinux 0xdf292a82 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf300fed inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xdf35bf4c pci_enable_device -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3c7e22 sock_alloc -EXPORT_SYMBOL vmlinux 0xdf436eaf cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xdf46c328 cdev_alloc -EXPORT_SYMBOL vmlinux 0xdf470741 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xdf573bda __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf81df60 __brelse -EXPORT_SYMBOL vmlinux 0xdf8922ca devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xdf8a0b70 block_write_end -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf8f4221 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd9a9df serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe016d014 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xe01d6929 dev_set_group -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 0xe06aa3e0 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xe06d39c2 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xe0775a5a inet_frag_find -EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe086a46f pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0cd7a4e file_ns_capable -EXPORT_SYMBOL vmlinux 0xe0ddbc07 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable -EXPORT_SYMBOL vmlinux 0xe0ee9c80 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xe0f43cf8 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xe0fbc485 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xe1036253 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe128a0c0 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xe128e921 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xe12b7945 vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xe147cc8a dma_supported -EXPORT_SYMBOL vmlinux 0xe16d4778 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xe175fcf6 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xe180dad0 bh_submit_read -EXPORT_SYMBOL vmlinux 0xe192526c inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1c3da0e rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xe1daf958 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e502b6 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xe1f35344 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0xe1fa4fa2 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe21f0910 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2427c41 block_commit_write -EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xe2607855 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xe2737167 migrate_page_states -EXPORT_SYMBOL vmlinux 0xe27d8ba8 blkdev_get -EXPORT_SYMBOL vmlinux 0xe27db948 __napi_schedule -EXPORT_SYMBOL vmlinux 0xe2b66f85 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xe2bd2f45 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xe2c6390e neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d05ef0 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xe2d4906a audit_log -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e63229 mmc_release_host -EXPORT_SYMBOL vmlinux 0xe2eda27b udplite_prot -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe30c1a56 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xe30dd601 netpoll_setup -EXPORT_SYMBOL vmlinux 0xe327729b vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33a3af8 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xe34ba371 dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xe3551c83 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xe3591e5b refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xe3698807 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xe38f82b4 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3a68862 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xe3ac6492 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0xe3bdefc3 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xe3c1e780 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3e9bcfc vga_put -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xe403235c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe435e3ba input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xe441d8df __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe4460f26 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xe4495556 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xe44c37b9 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xe4651729 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xe46d4bf1 clk_get -EXPORT_SYMBOL vmlinux 0xe47cc030 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe48d0222 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe48fe8e5 make_bad_inode -EXPORT_SYMBOL vmlinux 0xe493a463 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xe4a3a07a follow_pfn -EXPORT_SYMBOL vmlinux 0xe4b92886 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xe4c22a45 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe51471a5 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0xe522d9a7 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe53402c0 dquot_get_state -EXPORT_SYMBOL vmlinux 0xe5483760 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe56aca56 padata_do_serial -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59cfc8c inet_register_protosw -EXPORT_SYMBOL vmlinux 0xe5b70230 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5bf8ad9 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5dcbf28 d_genocide -EXPORT_SYMBOL vmlinux 0xe5fd9759 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe60891d8 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe6175964 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xe61e3c09 nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0xe6284c17 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xe634b5cb fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xe6706a54 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xe6856b77 md_write_inc -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe69a1886 agp_bridge -EXPORT_SYMBOL vmlinux 0xe69dc602 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xe6a96137 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xe6d3a89a i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xe6e1b1ad __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe6f7c99a abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xe70020e5 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xe701adfc simple_unlink -EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7109243 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7265ee7 vfs_get_link -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73e882e security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe760065a vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xe77b4195 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe78b6435 pci_find_bus -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a70cef mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe7ab5cc9 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7de86f9 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xe7e1f965 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xe7e1f9f9 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xe7e7bf9d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xe8069ac4 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xe8082453 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xe80ffca7 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xe84319a4 current_time -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe8720e69 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe873def4 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe873f4f9 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xe88ce4a1 kern_path -EXPORT_SYMBOL vmlinux 0xe8bf01a4 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xe8eb4103 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe905d34b mount_bdev -EXPORT_SYMBOL vmlinux 0xe90b5568 pci_iounmap -EXPORT_SYMBOL vmlinux 0xe9131c77 generic_make_request -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91decc1 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xe92958a6 generic_file_open -EXPORT_SYMBOL vmlinux 0xe934291e jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xe938fddc fddi_type_trans -EXPORT_SYMBOL vmlinux 0xe9431628 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xe94ea74a __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9bb443a blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xe9d4cad6 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xe9dc4b9a compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9efcd4d neigh_update -EXPORT_SYMBOL vmlinux 0xe9f4e458 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea01c015 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xea08f9e1 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xea1b572c qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4b73bd truncate_pagecache -EXPORT_SYMBOL vmlinux 0xea510a70 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xea6c86c1 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xeaa8477b generic_delete_inode -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs -EXPORT_SYMBOL vmlinux 0xead0a182 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xead39a61 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xead9b441 devm_ioremap -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf6a93e inet6_release -EXPORT_SYMBOL vmlinux 0xeb016e69 write_inode_now -EXPORT_SYMBOL vmlinux 0xeb0abd2d input_flush_device -EXPORT_SYMBOL vmlinux 0xeb1c3a6f qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xeb2210af sg_miter_start -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2da46b __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xeb309f3a ll_rw_block -EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb43850f kill_block_super -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb471767 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index -EXPORT_SYMBOL vmlinux 0xeb62c8df ptp_find_pin -EXPORT_SYMBOL vmlinux 0xeb66dcee agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb9b5ad8 __invalidate_device -EXPORT_SYMBOL vmlinux 0xeb9e6edc dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeba27e3f mpage_writepage -EXPORT_SYMBOL vmlinux 0xeba51761 find_vma -EXPORT_SYMBOL vmlinux 0xebb164f7 skb_dequeue -EXPORT_SYMBOL vmlinux 0xebb1afa9 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xebc0f12f jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xebc7a705 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xebd14125 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xebee403a mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xec0da4d1 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xec0ddde7 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec45f09c pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec51557e pci_disable_msix -EXPORT_SYMBOL vmlinux 0xec695f0e get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xec845398 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xec8c8408 nf_log_set -EXPORT_SYMBOL vmlinux 0xec8cb583 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xec906e8b scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xec95a3da __ip_dev_find -EXPORT_SYMBOL vmlinux 0xecaaa779 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecd8f316 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0xecda368c security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf6eb7f sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed14f368 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xed18baed mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xed2f1036 scsi_host_get -EXPORT_SYMBOL vmlinux 0xed30c44a setattr_prepare -EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed4c980e __netif_schedule -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed8d6919 vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0xed9e904f open_exec -EXPORT_SYMBOL vmlinux 0xed9f6678 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xeda5738e dcache_dir_open -EXPORT_SYMBOL vmlinux 0xeda88915 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xedad8c42 phy_device_remove -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbc7f2c __devm_release_region -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xede01968 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xeded9218 md_write_start -EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put -EXPORT_SYMBOL vmlinux 0xedfec829 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table -EXPORT_SYMBOL vmlinux 0xee10e761 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xee19e64d vfs_rename -EXPORT_SYMBOL vmlinux 0xee223b1e request_key_rcu -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3ea6e4 fb_get_mode -EXPORT_SYMBOL vmlinux 0xee585dca unregister_netdev -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5c7952 PageMovable -EXPORT_SYMBOL vmlinux 0xee69a7de seq_path -EXPORT_SYMBOL vmlinux 0xee6d1de2 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeee3fd2a vfs_setpos -EXPORT_SYMBOL vmlinux 0xeee40845 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xeee58186 sock_create_kern -EXPORT_SYMBOL vmlinux 0xeef27bd4 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xeef48cab netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xef06dc6e sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xef0dee0a reuseport_alloc -EXPORT_SYMBOL vmlinux 0xef16f33e from_kprojid -EXPORT_SYMBOL vmlinux 0xef296d0d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xef2993f4 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xef454594 bd_set_size -EXPORT_SYMBOL vmlinux 0xef932adb ilookup -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefad12fd phy_driver_register -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb46cd6 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xefbc7350 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xefecc825 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0038e2b mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xf0086823 dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf01e708d vfs_fadvise -EXPORT_SYMBOL vmlinux 0xf04ae117 xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0xf04f3293 make_kprojid -EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf0818b47 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xf0882a8d scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09a0f12 dma_dummy_ops -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a1361f cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xf0a4040b dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xf0ca7542 flush_signals -EXPORT_SYMBOL vmlinux 0xf0e4a6f1 filemap_fault -EXPORT_SYMBOL vmlinux 0xf0e70b02 sock_wake_async -EXPORT_SYMBOL vmlinux 0xf0fdb1ad pci_set_power_state -EXPORT_SYMBOL vmlinux 0xf100830e page_readlink -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf1050a64 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf110fc31 d_invalidate -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf137febc neigh_seq_next -EXPORT_SYMBOL vmlinux 0xf13d77f9 do_splice_direct -EXPORT_SYMBOL vmlinux 0xf14026b1 dev_addr_init -EXPORT_SYMBOL vmlinux 0xf168bf0e input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xf17c70ff tcf_register_action -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf188d24e clear_nlink -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19d3c90 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1abb67e amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0xf1c083fc generic_read_dir -EXPORT_SYMBOL vmlinux 0xf1c7820a pipe_lock -EXPORT_SYMBOL vmlinux 0xf1c9f795 udp_ioctl -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ff2d3f lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf22379c9 wireless_send_event -EXPORT_SYMBOL vmlinux 0xf2299656 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xf22ccb53 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf2889c79 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xf28a83d7 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xf28ba67a module_refcount -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29c1f76 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2ab06ea crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e26ffb input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf30a291a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf324cb27 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33c731e __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xf344f7f0 i2c_transfer -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35846fe sock_rfree -EXPORT_SYMBOL vmlinux 0xf37acb6b mmc_command_done -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38d05f3 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3a9fa92 release_sock -EXPORT_SYMBOL vmlinux 0xf3af55fc mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3ccf164 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e15253 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc -EXPORT_SYMBOL vmlinux 0xf41236e5 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf43ff190 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf4555416 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xf4605ee8 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xf46684aa unregister_filesystem -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf477765d ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xf4867722 devm_memremap -EXPORT_SYMBOL vmlinux 0xf4911fd8 dump_skip -EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0xf4a85743 freeze_bdev -EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cfb25b abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xf4da3be4 kern_unmount -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51d2e71 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xf52a1b34 follow_down_one -EXPORT_SYMBOL vmlinux 0xf52ee56e vme_master_mmap -EXPORT_SYMBOL vmlinux 0xf5355b83 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55d81a7 phy_device_free -EXPORT_SYMBOL vmlinux 0xf564591b dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xf565ced1 free_task -EXPORT_SYMBOL vmlinux 0xf5768c6f clear_inode -EXPORT_SYMBOL vmlinux 0xf57cfb61 skb_dump -EXPORT_SYMBOL vmlinux 0xf58c8510 padata_stop -EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5ac72b7 security_path_unlink -EXPORT_SYMBOL vmlinux 0xf5b29185 poll_initwait -EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f81eb1 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xf60442b4 dma_virt_ops -EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf6115a82 _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0xf6121201 empty_aops -EXPORT_SYMBOL vmlinux 0xf616ba73 tty_do_resize -EXPORT_SYMBOL vmlinux 0xf61b95a2 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xf62168f4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6471dd4 registered_fb -EXPORT_SYMBOL vmlinux 0xf65a0905 vme_bus_type -EXPORT_SYMBOL vmlinux 0xf6629237 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf67cc812 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6828c1e fb_set_var -EXPORT_SYMBOL vmlinux 0xf6a0bce4 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xf6a4ac31 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xf6a68efa inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xf6bac5cc devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xf6cdf3b7 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf6e54d83 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf715fdec bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xf71fa248 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xf72cbd10 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xf73043db mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75df9d7 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77b2f61 start_tty -EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7b89ecb neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xf7d4939b dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf7f64020 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xf8064e0c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88ac604 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xf8930801 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xf8b93120 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c8c8be fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf8cbad73 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d43756 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xf8dd40a0 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xf8decdcd mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xf8e406d3 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xf8f3c05f touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf938526f cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf951af32 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xf964d8a4 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xf9923abc __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xf99a4500 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xf99d2f3b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xf99f8826 __register_binfmt -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9cf2005 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xf9d23893 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xf9d66e89 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xf9e61416 __close_fd -EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfa10fee3 blk_queue_split -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa3c807e truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xfa584dc1 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa601610 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xfa71db12 inet_gro_complete -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0xfabbce22 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacf3319 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xfad43738 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xfae24af5 vfs_statfs -EXPORT_SYMBOL vmlinux 0xfaecf6d3 cad_pid -EXPORT_SYMBOL vmlinux 0xfafc1dfc rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xfafc314d mmc_can_trim -EXPORT_SYMBOL vmlinux 0xfafdd34a __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xfb02b813 inode_permission -EXPORT_SYMBOL vmlinux 0xfb1a6dd2 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add -EXPORT_SYMBOL vmlinux 0xfb33d84c pskb_extract -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3d6ea9 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable -EXPORT_SYMBOL vmlinux 0xfb7590f7 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xfb7dd9a6 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xfba4e423 sock_diag_put_filterinfo -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 0xfbd1d9c8 d_alloc -EXPORT_SYMBOL vmlinux 0xfbd572c0 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbf93b2f cdrom_check_events -EXPORT_SYMBOL vmlinux 0xfc00cfae mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xfc3152f4 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc4d8714 netif_device_attach -EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0xfc5e112f backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock -EXPORT_SYMBOL vmlinux 0xfc802e51 dev_trans_start -EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type -EXPORT_SYMBOL vmlinux 0xfc98af1d iov_iter_revert -EXPORT_SYMBOL vmlinux 0xfcaea6c3 vfs_getattr -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbc753c sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xfcc76810 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcde6c83 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xfce2e721 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xfce38f80 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf6502c skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xfcfddf47 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xfd1c0d8c security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xfd3b4c58 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xfd518801 skb_pull -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd875e01 sget -EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd94814e complete_all -EXPORT_SYMBOL vmlinux 0xfda716a8 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdace3b3 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xfdaff185 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdcaba32 tcf_idr_create -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 0xfdf45aea xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xfdf6a903 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe036174 __register_chrdev -EXPORT_SYMBOL vmlinux 0xfe0522ee vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xfe0dce8f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xfe11062c jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xfe1893e7 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xfe1b7325 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe24c014 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xfe3c1a5a set_bh_page -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe559803 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xfe55edb2 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5f6dda sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xfe62273e scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xfe82a84a bdevname -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee48512 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xfee89b0b hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfeedb6fe netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfefcc15c mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xff036795 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xff1bf4b1 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff24e24e dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xff2649b5 xfrm_input -EXPORT_SYMBOL vmlinux 0xff2c0b59 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xff5b11b7 dev_printk -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff77d0e0 import_single_range -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff91dd70 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xff99f94b pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffb9d34d __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xffc25404 fqdir_exit -EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff6092b nd_dax_probe -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x050c2885 xts_camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x19711697 camellia_xts_dec_16way -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 0x6f3a8de5 camellia_xts_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr -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/glue_helper 0x093a80ee glue_ecb_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x67f4a9a5 glue_xts_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x80859845 glue_cbc_decrypt_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8a61c725 glue_ctr_req_128bit -EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb21c83b1 glue_cbc_encrypt_req_128bit -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/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x6b80091d xts_serpent_setkey -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc -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 0x2c7b3458 twofish_enc_blk_ctr -EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way -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 0x00aaf935 kvm_disable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00ed59e4 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01978c7a kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01bb9b6b kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0228d3c1 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03f33bf7 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065cbbc3 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x079f6dfb kvm_mmu_new_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0824290b kvm_clear_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08254829 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09d570e8 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a45586b kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a674393 x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b595d96 kvm_put_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c5aad54 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c60484f kvm_mmu_unprotect_page_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d11f146 kvm_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4b751b kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f802479 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1008ad8c cpuid_query_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x101d8e19 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x161cd665 kvm_write_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19492e9a kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a251536 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e3a4afc kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f0365aa kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23438548 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24d0ccca gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25395af4 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26352daa kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26f2e576 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27791845 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28e88695 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c3fcd6f kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dba35fc kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ef9b51e kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fce11bf kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fdfe605 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x302ac3d4 kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3097bad7 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3274a2e8 kvm_lapic_switch_to_sw_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e532fd kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x387cb0de kvm_mmu_slot_leaf_clear_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f8481ad kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x410bb100 kvm_mmu_slot_largepage_remove_write_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a271cb gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42994517 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4414f7c9 kvm_vcpu_reload_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x490a4971 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49a90384 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49bc4317 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bb496e4 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bb643bc kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bbae627 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c119d99 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c35a71b kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f66c251 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50745994 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5311a3ea kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54d45166 kvm_mmu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55ed533b handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58963d96 mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x590ec882 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5931cf3b kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59b758c5 kvm_mmu_slot_set_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a03f668 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cdf89ca kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d0d79af kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d49f9e8 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ed0b5f3 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60472df5 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61b96f3e kvm_init_shadow_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64688144 reset_shadow_zero_bits_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66e27abd kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c3a5fa8 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d761476 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f4abf2d reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7008e681 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70522390 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x713d2274 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71469457 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7174d206 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7294a07b kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72f1a032 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75bb7787 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7691082b kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77501695 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b3db53b kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7db18f65 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dec4a1f kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7feb5b0a kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81119707 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83021a2a kvm_mmu_unload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x837cba70 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83c2af74 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86426d84 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a078b6b kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a13b436 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bee54e5 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc7b934 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cf3a375 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d59850a kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ea8d52e kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x903eb50a kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92505fd8 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93e50ab4 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x947d857b kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94e10ff1 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x961349ed __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x990ed78f kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dd01250 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa23016a7 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa32d0159 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa429fe2c kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa46e3aee kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4829ecf kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa29e9e9 pdptrs_changed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa38e6dc kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaad1ea99 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3148e6 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3d90b0 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad95c2e7 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae6ebdf7 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1e7f0bf kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1fa2054 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb681ed44 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb855e784 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8969072 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8def03f kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba905a23 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbad3f264 reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb141239 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd6320ce kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbee603c4 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0015163 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc147c6d5 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2831f5f kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc299c56d kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc36bb64b kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3bccb58 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6a215d0 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca5f4582 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca6171e8 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbc20aa0 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce0fd24 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcee87019 current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfe5e348 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1abc63c kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2e78512 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5784347 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6abf39a kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8d40027 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda1dc39b kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaa36ba6 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdae7bb99 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb7e5a6a kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb9dec82 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd1d282c kvm_mmu_invpcid_gva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddd8a767 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf69b061 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfe4ae2e kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe05de942 kvm_can_post_timer_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe12c22aa kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2624ddc kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe39a85f4 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3e50377 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe59e3629 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b60c27 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6f0f735 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7b771df kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaa997be kvm_mmu_clear_dirty_pt_masked -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed65cc07 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed9f061f kvm_mmu_sync_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedeeaca7 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf25e14e0 kvm_set_xcr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf27086a3 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf33d057d kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3febc1d kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6b3ee08 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9b58f44 kvm_load_guest_xcr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa0a8deb vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfec6ec08 kvm_mmu_unprotect_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffacb1f7 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffccf877 kvm_vcpu_init -EXPORT_SYMBOL_GPL crypto/af_alg 0x253c3b13 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x2e792f3f af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x30c85dab af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x324a326c af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x32cd87d4 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x387059e1 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x51d1d6c0 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x78e806b4 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f6cd1c8 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x86add52c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x9f14afbf af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xb2bd1abc af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xd04cf53b af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xd51876bf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xef755957 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xf20632bc af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf365c40b af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf3836c58 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xf7f4fd78 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x32b7d365 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc051da1a async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd1185f54 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbe80a7e8 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd04b9998 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x40a80823 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x892baa5f async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe59a6f7d async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf7987cad __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4cb0eb76 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5b1b55b4 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf89b2d4f blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x66fdbac9 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x69657ec4 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt -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/chacha_generic 0x3654db5a crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x59b19806 crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x68288180 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xdea2080a crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x11402991 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x2321fb5d cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2ad43a91 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x2f186b36 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x351ab99b cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x487c4916 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x8a2911c4 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x8dc6eb1e cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9017d1de cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x98988661 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xc639afc8 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd57ba2e0 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xfe19952c cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1fe547bf crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2d33b806 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x352e61d1 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3728cd95 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6087ca28 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x69c893d0 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8b422486 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0761eb8 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc0a7886d crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc152be22 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc2ccc997 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xca8de1d1 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd38ab255 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe0ac0309 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x1a44a465 simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x98f2cab9 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb66d2304 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc8fc749a simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2a26e1f5 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcdef893d crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdbb3c688 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9ff5b479 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x0a5bd7e5 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x1def606b crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xf13ac9fd crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xfe34d004 twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x147df088 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3c079218 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x456609de 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 0x9adf8e86 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa9a62f6b acpi_nfit_desc_init -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 0x00e5b911 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x065c1d53 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12bd6579 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x13a61606 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x20e073cc ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29f01eb2 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49463b2b ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5eb16650 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68ef962c ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6e706c3c ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8052b475 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x872b1279 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b2316ed ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8bf4f3ab ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x94815e35 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9fd8e9b3 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa323769b ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcbe1f8a9 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd08aa5a9 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe86f6e63 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xee6ed15b ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xefa4ee00 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfe5a0652 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xffb0da2b ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x12ff0e60 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x16da8043 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x192e3a06 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x20d06bcd ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25d97488 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x39117265 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x521178b0 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x527a73cf ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8377a61c ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9755075e ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa537e034 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaa34d7c7 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc134dd12 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc6ef530c ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd06f9812 ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe8bb2397 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa47f6d10 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate -EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xe4508ab0 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x8817e0a4 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x8ecebecc __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x8bb450d6 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc5e0ede2 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1ba48f56 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6755b1f7 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcc59c744 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe188d18a __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x94d2331f __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xdfaa0d31 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x017d8abe bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ddcd055 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1035b8d9 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1668c797 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1678c6f5 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x225e8faf bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e05d289 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x405aa994 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4178b0d9 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e16318d bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x564db449 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60bcfb2e bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8203c217 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x970214a7 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0ed735f bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9460b6f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaba5d039 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xafc14ff4 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb00e328e bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1d352a9 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb1e42d1 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcb196f5 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca5baa83 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf054b1a0 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x05ed119e btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1c249d72 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb01f5e75 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc3f7febc btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xce723321 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfa1213f9 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0192e6f7 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c969bcb btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x12e0d84d btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2a4daf79 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x35f1f9a3 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ec7c830 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x51f34783 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8008fe62 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8a7d09c1 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8ed3b8cb btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa13261ff btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa35974f7 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7ddf903 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdaba2f62 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde3ecf63 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8f782ad btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa7469c5 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x45fdff77 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x530a1dd4 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a134a79 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62886df2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6747be11 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fdf29c6 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x829eb265 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x88e539be btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa2e79513 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb9eab0b btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf428a99 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1e98024a qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x267b3089 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x555064a8 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5a6267bc qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x98eff474 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x333ce907 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x380c1ede btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x405e4368 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe96ec903 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xea0e5e27 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3fe0affc hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8080161f hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xabfdd5f0 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc5de6bd3 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1f09b9ee counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5865573a counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5b1e81c6 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x87709f2e counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x877222a6 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x9431dad6 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x9ab02c2c counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb16e6a5f counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb404cd11 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc2ffd89d counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe8a9e4b7 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xec5c349b devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xfb6cc589 devm_counter_register -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 0x7a3e26a4 ccp_enqueue_cmd -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 0xc2fbe47d sev_issue_cmd_external_user -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0eadbae8 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1128e857 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17aa2c48 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1837856c adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x192ed744 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c4d559e adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1cfb7152 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x237f2a50 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x27989ccc adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x28b36a7d adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x329933d5 qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x408fe8d1 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x471872e0 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a263db1 adf_iov_putmsg -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x686147a5 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68b1d62c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ddac92e adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80a5223d adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x82937948 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x85e0cf45 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x945614d6 adf_vf2pf_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9dec6fed adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa15dfa8a adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7d1b622 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1158b6e adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb863eee2 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbd074441 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbec36dfe adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc02345df adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc48dae6c adf_reset_flr -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 0xcfff3776 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd67daca1 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8d70e01 adf_vf2pf_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda24b7cc adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdcdcadae adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe8da84bf adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea8f0e30 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1f9de02 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf5f91dbe adf_dev_init -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xf754b895 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x3165510b __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x12da4ab0 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x3ad85ab3 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x53ac6aae dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x5fe677e5 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x7243fb99 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xa2335c31 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 0xb4ae177e register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7b5fbbb9 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa6fece77 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x517702b3 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x67a5d49e idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x695d6f6b idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9c6d0205 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa6cf872e do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcd5aa8ac dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd6a64727 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x29ff2cb7 hsu_dma_do_irq -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x2e49705d hsu_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbc0c3da7 hsu_dma_get_status -EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd2ffff31 hsu_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2b2e4903 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x396cc4f9 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x77c10ec2 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x83bda72e vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa694b99a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe9734c4c vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xff2d0e3f vchan_tx_desc_free -EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x03c2bb98 amd64_get_dram_hole_info -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x830c469f amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xaf761418 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x79d54b5a alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xfa38cfb5 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x01cb2b78 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04e42a52 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x19711900 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x21af1df3 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28fe5b29 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d034665 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5306ed59 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57f66d49 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x71244db1 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8166497a dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e6122c7 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96399d86 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x98198622 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaba00804 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd85aa5ed dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd898db23 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdc64f2c9 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe64f8c46 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff8fc4c1 dfl_fpga_cdev_config_ports_vf -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 0x1f75821d fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5e9a2bc4 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5fc918c1 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x73701572 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8370fb67 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x90e015db fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa3123745 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa4b154c6 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc88aa4ab devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc9064e50 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd6f4a90b fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe62ad529 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0645b49a fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x133a8a75 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x23416fc6 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2ad755dd fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x332cbd39 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4490ba18 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5acb7a0a fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9fb4d2e3 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaf18bc56 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc85c4259 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd1333e08 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd9a7b022 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfa4f698d fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x58872ab7 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x69ddd7f0 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6c0c65cc fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb2f69a0e fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbca0a7c5 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc970d7c8 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xecbaac55 fpga_region_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1b68db32 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1cdc1fbb gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x994715cb gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcc043012 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xdb53f5f4 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1087e86c gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x16c6c067 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x293daea6 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x98073d98 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc7613ba1 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x8f3e8def bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8f068f4e __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe38fea3c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c367802 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x143bb794 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19b556d0 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x276e4765 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3525e984 drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39b8b82c drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d9cfc28 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x707e33fe drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71cc215b drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79fb78a6 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7cad5696 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e44e388 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86510ca8 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x90cd59ad drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97c4f703 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e1c980e drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa27236bf drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae899cec drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5dcb3f9 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbb0790ef drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1842746 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed4f3bab drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee0bd300 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xef7ff4ef drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd4e5325 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x16fd5e16 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x197c1944 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2f7cbc22 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x42632971 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6908a659 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7b733d01 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb5bc411a drm_gem_fb_create -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 0x5db80524 intel_gvt_register_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x522aa332 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x68a0aa7f ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x838026e4 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04f0c9be gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x056d3504 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a0ad03f gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c7b1b78 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16d6c0dc gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a62683c gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e9c2b60 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x20d31a4a gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24a48045 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c41f053 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30f9c86b gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31b7ef9c gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37efb7d2 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x390364a1 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b1f633d gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5703f562 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e6ffceb gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85621696 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8752fec2 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8a39c63d gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x908cde9c gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93ec1de2 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98c3630d gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa97da7bd gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9f5da1d gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabba298a gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xacbc9421 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae795da3 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb017ce97 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2c35a05 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2d8f9f0 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6f48838 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcf004d7 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0ddafb1 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf08dd9ad gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2eed830 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd23b594 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/hid/hid 0x00f75208 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01540da2 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x03177177 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x057370aa hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x074bb0f9 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a23c138 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c61d886 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d1e1db5 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fe519a9 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11cfb63a hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17842034 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a9609bd hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e2ab030 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x20bdbed2 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26eb111b hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29a70663 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dbc2115 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x32f33dc0 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4198b217 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x53d999a3 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ca3833a __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6833888f hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ac6d9ad hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7039b28a hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b534cfd hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7db4596b hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x88af0ae7 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ede1c57 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x942f0924 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x987fea24 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a0f97a2 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3580c53 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb009fac3 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb56c403b hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7ebe47a hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbba8f265 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd18aa776 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd45c8593 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdeafb314 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4a5927c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb297f61 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf61f1cad hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8f03320 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa4223c4 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xeefee945 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x01724918 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1df832ca roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3c0e2176 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7b4469e0 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa07a6af9 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaa416908 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x13e3765a sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x44e5335b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x53ca15b2 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6765fc97 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x68a3d8f9 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbe13d236 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd9d40e54 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe0424574 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xefb520f2 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x15b9d085 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x26c81f48 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x63a6f425 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe73f2733 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x161ab925 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1cdfe9fd hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27d4bf51 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x376185db hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66a2083b hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70ec9f9f hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x78206220 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x829e130b hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a11bfee hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f153be3 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x999fc357 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf5eb49d hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0c08bd3 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe5e9c4a hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd23c8005 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd326f2eb hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe178e2ac hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b2b4f94 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0cacf5ae vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x13a33dee vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x160438b5 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35a944e7 hv_ringbuffer_get_debuginfo -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 0x6eac0c91 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x75116341 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77c6845f vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x81f7582d vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8619f567 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8fc8ce2b vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa25dcc1d __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2c786a5 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb11a57d2 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb9d0d117 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbbcbdbdf vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbdc31d0b vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbf4f5778 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc1c7d22e vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc249109e vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc7a67a61 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcd9b3acf vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcdd8ce84 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc91f603 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf934015e vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9ec00a6 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x1023d2a8 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x227ca79f adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8588ae90 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x03c2b5db pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x05c639cb pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d529203 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x22670c47 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x296be48d pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x42eeb63b pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4b3129a3 pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4ba4f4d0 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5c5d9877 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x61ed8a2a pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x78bb106d pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7c024313 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x80cdda2b pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x820a61c8 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x856bf206 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x99b5c5d8 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcb1cfbca pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcd947d38 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf66c81fb pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x06076c2a intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2d6bc89a intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39580952 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6f230219 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6f899cab intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc32b2d2c intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd38f05d7 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd8979744 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe369eed6 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7bba1459 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc0a2a4df intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe6009ae4 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2616686b stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c5c474e stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4e764907 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7d6b683e stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbc9781a5 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcaa1d844 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xceaea86f stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcfede784 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xde5007e0 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x052cc5e3 amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x12ca1753 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1d00da05 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1f908031 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x42fe57b2 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd4ea0d23 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf968dfed amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x3e97d15a nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1817b633 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x59f8cec9 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5cdbae1f i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7ce9062a i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x23e951bc i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x02c30d43 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11c41397 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x163c80a1 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x336e137f i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5288e8ef i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x56d9a1fb i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x57fbab8b i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59893bb7 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6327fc3a i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x722a41ad i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7aa2c730 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f04763d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x933545f3 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x955f62c1 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb6a80add i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd190fd2 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc0a42ea2 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc71b521e i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcb70f71e i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3ca97b6 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe87535df i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb6b905a i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xebddfd2f i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4c97246 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfa1455b6 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcbf3d825 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xff4c487c adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1cea3b42 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x374cf85a bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x814db126 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa1dcc584 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x16cd5a6f mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x95d81816 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa9ee520a mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x43c2c1d3 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xcc077abf ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0177f04c ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0c1efff8 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2179aefb ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x36bcd1f1 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3c7209c0 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x872411c3 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb305a976 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcc5c8504 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcdf29d16 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd681d7be ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267e7741 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb0ef2888 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc7e1b2a5 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9ace88a5 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xc6f8ebb5 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xeb44d8bf devm_iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x62ab458a devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xdc559d90 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xa7295fea bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1d3b3da4 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x20828cf6 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x27a401f8 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x433d89b9 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x82735a9a cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcdc57147 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd450adff cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf20cace6 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfa6574fa cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa64b8b3c ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd316b95e ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x8e71a457 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x91961a88 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2c718150 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5fdd3af4 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa7d40839 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x37a89e13 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc033387e fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xec5db02c fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x02d8f750 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x19638e81 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x274ea8bd adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x32108c79 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x32261d1b adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4e83f6cc adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x778fa9f1 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8919bd0c adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x99dd6f1f adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd0fadf51 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd6df6a47 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf98cd72d adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x0c7e21ca bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x6ab5f047 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe1ad0f33 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xf41c616c inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x138ed61c devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1657638a iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17afe9ac iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1917c0aa devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c35529c __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ec9e330 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cc33a32 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2efb634d iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f0aedaa iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35ccef40 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35f154c5 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x39340e59 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5293b9d1 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5319e6a6 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54454732 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x576ad727 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59442941 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e29ed9e iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fe6d179 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6564f75a iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x764c31c6 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d499644 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7dc086fd iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85f72c91 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e59c681 devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90d6926a iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6fee6a7 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xadbfa0ea devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xadf0a6cf iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6d72e7d iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbd2081f iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc73ff192 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7dd96d1 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8ea6839 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb13fe7d iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc18411d iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcccb5a8e devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd9b4673 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf659567 devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfda6e65 devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcff35aae iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3bb3ed2 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb12f422 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc19413a iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdda95c95 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5a74d36 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeeae44de iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef09eabd iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf16a6b0e iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9868d9d iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xc3003b77 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xd4155d50 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x547730d2 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x961c20d5 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa4572b3e zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa6b270af zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc830aa60 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd6d06e5b zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2c618ac3 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x54910e9e matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x6acaf480 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x102abd36 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x173f1de7 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2f86d06f rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3762e720 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7f4f5648 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83dd1db8 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa59ee422 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xccd302f9 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd0c4c83a rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd6beb54b rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe40ed7b3 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf9bd3a84 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb59a04c rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x18e4450d cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2f686303 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x885285d5 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xaa643124 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe6b6b460 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x311328ca cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd78097aa cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x46ccb747 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x87ed22b0 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd71e6ee5 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xebc55184 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1798d04b wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17f31c53 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x62ecfec7 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b141ec5 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7616cc04 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7f52e39d wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c4ff599 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x92684bd5 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb3f8e303 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb677e726 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd35bbb9 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf0f4bba2 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x3f5d5b58 icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x4e9465b2 of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6ce090e6 icc_provider_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6fc227b2 icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7505c67c icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd0505caa icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe105f8f3 icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe781e0a0 icc_node_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe9e0bf94 icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xf48a130b of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2db4fc16 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bb7f322 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5c7bd5ab ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8df68a90 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa76075d2 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbb6898be ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcad40463 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeb4a552e ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf8a268ed ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0e9c14d6 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2e3210fc led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x71d76e03 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa5da0a03 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xad3ddc9a led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xefb4af23 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x21db9027 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2590d379 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x510f6c2b lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x569d85e1 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x73dfae86 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c29a909 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9191121e lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9aa76feb lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa002a840 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcf3e6b70 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfc12e395 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x02648964 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x13f6b4ad mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x16a1b237 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2b4adf9b mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2d757fe1 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3f418011 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x795a86f3 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8a1a51ef mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb0ec8c23 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb25fd520 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb5cd51b6 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc21578b4 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd9b88843 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfe295186 mcb_get_resource -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10bdd469 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16ad3e9a dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x19c0d4f3 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c82a4ea dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2d516f36 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e1cf6c5 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4189313f dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46c8ee6f dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x50199442 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6a9b5d8c dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6aeecd28 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x930eb908 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e31d42c dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa86c8e55 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9242aec dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xbfe06944 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc57b1100 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x573a3efa dm_bufio_client_create -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-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1bbebc92 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x28fc72d0 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 0x353777cb dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9b452f8a 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 0x338841ec dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x35d35952 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 0x427084f9 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1894493 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb5df2edc 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 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 0xfacfde13 dm_rh_delay -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 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x30c37cc0 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -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 0x5cf0d0bb dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -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 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf860edb2 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x084dc7fc saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1c7f552c saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3374e864 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x404e5e9a saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x577a6b4a saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x66a1f282 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x67d0a25c saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x91cda504 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa91f44d0 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf2ff95ee saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x101e9aad saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2521b4af saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3be30112 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5a80f161 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7c97ed8b saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x95ecf461 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf75db1c1 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1790b98a sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2096d0a2 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2121de49 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x35b8adc6 smscore_register_hotplug -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 0x4bc706d6 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6033b067 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69429593 smscore_getbuffer -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 0x80c58a78 smscore_get_board_id -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 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa4a69dc9 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa8149b68 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca06ae0c smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca81d79d smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd33d8b4 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd98c09c2 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe589d011 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea3490be smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6cd54af smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0793f3ea vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08d7ff2a vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a3b8cfa vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1175f5fe vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e7f56bd vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x218e9afa vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d230965 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b597c13 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x483caaf2 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x59c26f36 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x66d92243 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d0a36e3 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x844a2323 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d544608 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa51ccf29 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa73918f9 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac2fda30 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb231c879 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5535a03 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc75748d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xee3549ad vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4fd2f50 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5b359e2 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb1e995b vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfff0141a vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5ea16d17 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x97df031b vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xea830112 vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xca334632 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xdf4efd09 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06328c9e vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0eb8f311 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fee8b05 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x11da20d9 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1882cd1c vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1cfacd3c vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2234b61b vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a812dd2 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e44e0f4 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3949ed1b vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3abbfb62 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47be9ca6 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x540e9312 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5ebfac13 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x625b534d vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x637644a2 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64026b58 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68621f88 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x704b5c9f vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77caf581 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x823d3f47 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97437e21 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaa654eb5 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1a90bb7 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb976c7db vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb993f98c vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xef83d391 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2bd4124 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2e5f9e4 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf50801b2 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfab09d03 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xb1c018fb vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x29d9d536 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x312a6646 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x99085fd6 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x3ba9a32e as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x501e9e76 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xb008a12f gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x590147ab mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xeecd455a stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb496e9c7 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa1f27b59 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x72740f51 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x4ef864d2 smiapp_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x022a18d2 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06b35b60 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x169f715c media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1daaad83 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20761f51 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ca86a64 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32af283d media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c02f60f media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e8dfb7b media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40af69ba media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cd04417 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cdfa87d __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4fc87c0d media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52093510 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x641b964d media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65ecd8c3 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x676afabc media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6796e526 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6931c94c media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x732bbf99 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7465fb4a media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a7995a4 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fddb20a media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x804d812a media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x836145d9 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86105df9 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a67f833 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8b769a65 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90aba4f3 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98e7f637 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99343755 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa575842e __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaaafa3c1 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabbf3386 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba7980cc media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba98e0d9 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc438746a media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8cd7e7c media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8e52f9d __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9bed6cf __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfdd047a media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd623cbf media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2383cc5 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf44cdc9e media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa8b1dd3 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffa203eb media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf3632697 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0cad1ddb mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x151cb2d6 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1edee458 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f7069b1 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3beb0449 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48ffdb5a mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x565018af mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x575255e5 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x67949fb7 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x75e76634 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8ee66f1e mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f17a038 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3c03f35 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6ea2061 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7a74f44 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfa05b8e mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedeac91c mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb607b7e mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfdc438c6 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x095f9d97 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3187c020 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36940a74 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59ee153d saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70b57e6c saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73141612 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x778f4e20 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x783e64b4 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8105a983 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x859c9b2a saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x85e09569 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x984fa1d7 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f840b38 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa450e948 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa90a4fd8 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaae2449c saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc3d554ce saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd45118d7 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe079881b saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0be3a168 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4fb741d9 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x95ff4266 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd61f79ea ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe816ecc1 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf1e14461 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf663c6f0 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0ca8ec0e mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x15b834a4 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6199ef69 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8c082ea4 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc05417b8 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x2501d2e0 vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x28587add vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x40e86e4c vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x595a1290 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x69c1e91a vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x891d6ebd vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc01a40d5 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe1bc1a5f radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1525c3d2 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x192e9fd0 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd50a9fac si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdcd67497 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfe018b8a si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x104e0373 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1e945b05 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32abbf5d rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4bf2fe0c devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x580884b6 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x63aa426f ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x64ad7b11 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x85a81f14 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8aa2cb10 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b15284a rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x949c956d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9cea5335 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5ebe302 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb08da08b ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd504a72 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcea2dc9f ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd9f046fc rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee378c87 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xa803707f mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x51b2175a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xee54f635 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xb3d0a534 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x5bb752ce tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xb0bac5ad tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0cc3c660 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3bf7b0a6 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x96f830e8 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbaa3c241 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe34016b2 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4df6dd31 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5c6f3838 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x355e5bea simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x036286a3 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e27fbfd cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x24478a01 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2597ae66 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x276f7521 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a219e35 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5424b59c is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a86199b cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75855cf0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ede3538 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82329e88 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9940f76f cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9e7d9c41 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb00c1225 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb327f2a1 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd806cfa cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1233cc8 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9e2f0e0 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda8c0206 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfbd959b3 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x53a33de0 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5fcb551c mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1843f471 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d6d2668 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a841b52 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78ae8051 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80f9f6ba em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x82e74535 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8f242dcb em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ec64c1a em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1d1e2d5 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc589e034 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc99471c5 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcea449eb em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdaf6ab3e em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd270849 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe477b75e em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7522a22 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec8d4af4 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf64b3dcc em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x676ed7d8 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb8393aac tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc3cead1c tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xeedebf81 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27ee0746 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x48d34e60 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa8f8922b v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2abace40 v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x347b37ae v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x52eaf218 v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5ff0ddf7 v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x652b538e v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x731533df v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa3681ceb v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcaee7557 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd53c5625 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe29aced5 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x044cf486 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e6236e2 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0eadad49 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x199d0a4c v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19ef2806 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d469fb1 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x207fc3ac v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f6e79d3 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4377e44e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x510eec2d v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x569c233e v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5daa89a0 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6712120a v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cfc8f89 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7483b821 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86c97d8c v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e7adbf2 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91d0ebe2 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b361e52 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa01ac2cf v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0367e3e v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa13ae2e0 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5d4618c v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5b7250e v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9ac758f v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba868ce7 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc176aef0 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5d27011 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 0xd0b12005 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe62b9051 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea5076d2 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec549127 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf19dc0e3 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc890c49 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffdb02c4 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10ca84d7 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x184d0b71 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19527b73 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d1e6a33 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c05a0a5 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3e726254 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4da78c7a videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x540daa89 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x547559be videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58ce7c72 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6111e93c videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ada2a1f videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c8f776e videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72b012ee videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b208e4c videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c887b1a videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9cf170ee videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa50bf9f8 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6a6f2c3 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc49d2925 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb7ad3ac videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfb1478a videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4c2ea46 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf675e244 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x35ba4f8c videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x52ef4c04 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 0x93d01f79 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa497ddfe videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x545c9aa9 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x64fd7bb8 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x95843ac6 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0beb4f42 v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ff24015 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1618755e v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18101df1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab4f2b7 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34822f64 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c277cce v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3dca4580 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4038133c v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x416a2f41 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47179380 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47a1fec5 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b78db0b v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fbde41e v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fcdabed v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fe9b7ae v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52acbc64 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55d02b07 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5632cd7c v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a380c97 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c5051c0 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68d62fb3 v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ca532f1 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75838d78 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79d0197f v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d374942 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x831cd88b v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x865f0234 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8dbe438d v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90171a6d v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96579a36 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9790ca77 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d1067ae v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1d3b2e1 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6d04593 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8b6429a v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9d3db66 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa89e5e2 v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae81eebb v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb893741b v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe2384f4 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4b8cdde v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc52d2372 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc57ed619 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca372587 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfaf5d0c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfeddcac v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9b87aba v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6d0b831 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec893c97 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee376ea4 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf47f86d6 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6e5b416 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcbec598 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x56a00bef pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8ef6a962 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc3756e15 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x36ebe8a6 read_acpi_value -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x9c14bca6 write_hw_ram -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xbf82b1e9 read_ad_value -EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xfd8f95d8 write_hwram_command -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4b9799e8 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x64516cdb da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd58d9e20 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe0d514a1 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe366ee17 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf11eaa62 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfdf9614e da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x25e22638 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5d1129d0 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x68483429 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x6f16ec00 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xc2b7c522 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x01a106bf kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09668990 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2037a6de kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x20fc74c4 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40ad10dd kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x874cf466 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd9a91db1 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdede28d0 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4667f521 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x53fe1b45 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x70c41d20 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3d208c8f lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7acc3da9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x826ee4de lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8272887d lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x89a7344a lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb980f04c lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbec503a1 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x15a35e75 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9b7b68f8 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9d6ff95f lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a022173 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0c76ae7c cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0c7b723c cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x14a3d9cc cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x14ae058c cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2322c231 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x232f1e71 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c5992cd cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e043504 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e09e944 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4348ee3e madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4f43b370 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4f4e6f30 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5796c4c0 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x579b1880 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6017df3d cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x601a037d cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d312808 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d3cf448 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x824e6111 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87375491 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2c97857 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xae9eae90 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7f282c4 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7ff5e84 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc9bb79b cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4c79fc8 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4ca4388 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x088c33e3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1a83c68b mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x45daaaa8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5a398dab mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6ef11279 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x93667737 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20bb32cf pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2c95124c pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x470fa411 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x64713bb4 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x693747d4 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e49fb4f pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x742deedf pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99f01920 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd46f2ee4 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xddbbb0a2 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf481426e pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd23fc0e8 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xee708d8a pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x338e7262 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x798fa1e0 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb03e2c32 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc0d32420 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe3bea362 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x32adc827 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 0x065405f4 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09ffdcc3 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22d56a6c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x476da7ae si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4abb1480 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c39f9c2 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d813ade si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52623667 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57bfb9d3 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f0b96a0 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f4f0fbe si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68f7c572 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7502d3f9 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7aea35fb devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b99bd0d si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e26e3d1 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x850618e2 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a080efe si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90885359 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x929f4f91 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa49f9e0b si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac8a881d si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd63e819 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf838c5d si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3759521 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe50df011 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe606af10 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe68540bc si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6962f2c si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8e7e45e si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9043307 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1617dc4 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa6a9085 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfde35c8a si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x06ec2fcb sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x55dbcd0a sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x628b7ba8 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc08dc2d0 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd847cf7a sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3e0374d1 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x43daba16 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa1fc55f4 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd9cd0334 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xc9ba2585 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2495cbba alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3e6c29f4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x45eb95d7 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4b1eafd7 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5cf82963 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8835022e alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x94337572 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11c06913 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1424721c rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2bc2a7cd rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3e179de8 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48444dde rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x58f8e8b9 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x67866c3b rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b7fa151 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ce6679a rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x700261f0 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b0325f9 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d065f3d rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x820186b0 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82c6075b rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x84928480 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x951e2d93 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xac381aa5 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb79e800a rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd75b971b rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe04c67fd rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe75c5ffa rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe96820cf rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf22c33b1 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6d50b88 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x08979b3d rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x464fb40f rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x46ae2e73 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5f941595 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x69fe9a9a rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6bea2572 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x768ca24d rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x77613b57 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7aeb4757 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x89b2a074 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa3338d68 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xac107bdb rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbac7eb30 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x171d1571 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x65eeba23 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa2faffee cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfaab2ea8 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 0x26992e6a enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x274e3de9 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5be66d3b enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6bcd709c enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d4a93df enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaf4cdcfc enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe95b8f16 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf23ce6ac enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2b6543d7 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x30e73853 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a8ce008 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8b03529a lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8d60fd78 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb073aec0 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xce3f5cb2 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf3bbcf60 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x08939159 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1094e0f4 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1c76e75e mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2fff1b06 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33bdbd50 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x40290db4 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4038bca0 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x57c914b3 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5c8b85b2 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7059c59c mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x78982b33 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7df018fb mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9138855b mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x974aa820 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9cc995c6 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa1404572 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3a73f4f mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9abb02b mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb63d4ed2 mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc2efd8f mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc1d61ed0 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdc5ae13b mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdd543b68 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdeb4af54 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf696317 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe27f683b mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfadf3b79 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc432e43 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x1664e20d cosm_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x45a9a7b4 cosm_find_cdev_by_id -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x48382a80 cosm_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xbf57292b cosm_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xf894d826 cosm_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x4a190a4c mbus_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x683cd44d mbus_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xac9cf06e mbus_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xc786e13a mbus_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x01fdff38 scif_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x1db5efed scif_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x4e75a125 scif_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x9ef0d5ff scif_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x64cc1576 vop_register_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x848696c5 vop_register_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x9fbf0bb5 vop_unregister_device -EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xf1e8b705 vop_unregister_driver -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0562c220 scif_client_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x06c2b918 scif_unpin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x10da61ca scif_get_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x136bc91f scif_writeto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3f9d5615 scif_put_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x45dcf840 scif_fence_signal -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x47a74598 scif_poll -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x49b71b76 scif_fence_mark -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x59ec12d4 scif_fence_wait -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6aa42523 scif_accept -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6b0c1bc2 scif_vreadfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7662be48 scif_recv -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7ee4d03e scif_open -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x81beb855 scif_readfrom -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8f2fed3f scif_get_node_ids -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x90fa41dd scif_send -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9d379a3d scif_vwriteto -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9f3fec15 scif_register_pinned_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xce3d5d4f scif_pin_pages -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdf85488e scif_bind -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe685a3c0 scif_listen -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe6911760 scif_close -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe868718d scif_register -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe8ebf3c8 scif_connect -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf392416e scif_unregister -EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe382e72 scif_client_register -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 0x7d5ba9a9 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 0x835dd421 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8e3e3f4f st_unregister -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x83fa2b71 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 0xe89a5734 vmci_qpair_peekv -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 0xf65e2bbc vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05a3122f sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08192451 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0be6f066 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x109a3cde sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1180b386 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13fe956d sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1952f6ab sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20a748cd sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25a50a9b sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28d66b41 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3f3014f9 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a083a35 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x542ea74f sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b6b1c8e sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x633e9f3d __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x68a7a7fa sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70f00291 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7466efb1 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e3ceeb1 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86236a57 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87d133c7 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88225b68 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x962f7609 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97fd7851 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa966c002 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xafa3ac06 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb466034f sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb50dbf16 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb775458e sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbae69fa9 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc8dd047 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbff0eaa6 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf59c70b sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf881198 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3d02ee2 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe08a79a4 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4725845 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xedc538c1 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf271d9b1 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0d07282c sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2b6d00e5 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x499a965e sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x834cc6f1 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb1dfb937 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc0ff183c sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc53e4a06 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd6814d03 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe7d4e7df sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x02cd6017 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3de445ff cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc0fa6069 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2270d70b cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5c229cdb cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd189188d cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb3b7b18c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0cd191ee cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x302b54d7 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x556b563e cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x84b9e52e hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xca4db4c6 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f418afc mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10f52a07 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x155e4d1d mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1824aae8 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a42a16d mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1aff1433 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b77285b mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f133de0 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ea0a40d kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3154c0c1 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3226919a mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x326f2457 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c408059 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42e7e4d0 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a31eeb6 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4de9578b mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52fc6238 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68e85a0c mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76681199 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a5485ad mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c0348c5 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x900bf748 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96be6a72 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99737762 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99766074 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1e76817 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa28dfce5 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5726196 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2fa0fbf mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6c17edf mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf044b3c get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc310ad78 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc315aa51 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6bacbe1 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf5cc141 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd00e303e mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0b21336 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2d1b339 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd31b19a4 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4cf4c37 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd68b6741 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6a06522 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda00bf98 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc9a5ac7 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2a3fa9c mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2df21cd mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7efe59d mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeaae1a67 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed1dfca3 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf26670af put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2caa755 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6561089 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf894d7cb mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x043a7f85 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x54d062d0 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x60e10f3c deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x84716e69 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcb921dc8 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0cb1fa3e nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0eaf6cbd nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x310f93fa nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32ca9651 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x40aa6120 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5154fae5 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5be9c4ce nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x68da27dc nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7460a86f nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa3eb835d nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb79ae752 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe4701209 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf54fc031 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe297fb31 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xfd70db1b onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x84da2dff denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x09da63ed nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0c09cdb7 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1034e3b8 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cbda2f1 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d9bc1ee nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2fe27852 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x401d7335 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d7b1131 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4ea17c2b nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x517ede92 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5ccc16e7 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x60efbe54 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x62d4b51a nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x63117467 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x901ce427 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb5754560 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb65efa27 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd8180c1 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd8d4811 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdcedfd16 nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea551f29 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xed40c7ec nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf3693635 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9a9b6e0 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd7b528b nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfffcc841 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x5797c7e5 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0786d061 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x6a2d500d spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09729c3b ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x15e1fafe ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b2cbae9 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b2efe47 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f4f6966 ubi_open_volume -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 0x6866deed ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x72a1e1be ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a548673 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbede8191 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd6c4e922 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe268abdb ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb4aec52 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef21dea3 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf131ed84 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6ce0af74 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xeaa9f81d devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x10602f0a register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5dc4df66 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6981461e unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9be10d94 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1b07f45 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe0a315fe free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x20b88cb0 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x68aa35d3 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xac7a2a5a free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdf2dfa7c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x068d0b59 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x105a6d99 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x178b7160 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x324c69fe can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b6eccab can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d142fcd alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x467c917b unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b6713e2 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58c54816 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e02a285 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5fa00626 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x614cce9d alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67a2e43a can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e68bcc8 can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92c369df can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x98f847e5 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ecb316f can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf61b4b2 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb33c485a can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8aaed63 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc410c9c9 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce4f6fb2 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0ccfecd can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd90ee1ae safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd96db194 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec45128d register_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x34453031 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x88376af9 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x952f949a m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa57bce5f m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa72ec785 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb85ec4ca m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcd22c02e m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdceb411f m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3ef4ca3e free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7bf9e899 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa5d05b47 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcda8ca9f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5489b094 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0725f867 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1dee049d ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2c0a849d ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4bb727c3 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5dcf83a2 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6659ed9f ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x676b7d0b ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6872d007 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x99399790 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9cf23295 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9ebf6bbd ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xab3228cf ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac0bb6d4 ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb11fe9e2 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbd736c82 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcd9f7bbb ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xda227243 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f00d615 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f0e28ea rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x16d834ff rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x17af8d70 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a702143 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2bb63a51 rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x34f1c591 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3502abb0 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4acf1f5d rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x527757f9 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x81e26139 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8a52cd56 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x98a8df65 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb175bdf8 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb4ad6bf8 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe8b5710 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x006b3572 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x010b3df3 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02eb6c75 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03f3cf71 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04d971a0 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x058e4c50 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0642977e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06f78947 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06fb2167 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0974da7f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ff5c2fa mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146045df mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16617f41 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b637067 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273eb9a8 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x280931ea mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b289eef mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7e9da0 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe5fad2 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ca2345 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x371702fc mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x388c815b mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d038e9 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39598f1d mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c1cfb1f mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d83bb65 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3da38443 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40102163 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4032e5ba mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40626063 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x424f221e mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42612a36 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429ae9cd mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x478e2e36 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49fa8591 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c2f751d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ea203a6 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fa2d0b6 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d83729 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e17a22 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5805ca14 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a18b0ca mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1319af mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b88f38e mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c504b97 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60fae622 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6935c6f8 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69cc8737 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c2d4438 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de15289 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e9d60e3 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70960321 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x711a5a5f mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734ed1f5 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7394044b mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e598b1 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b74ec42 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2966f6 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ab345d mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889e189d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8905ecc9 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89bcf646 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b538ef4 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3edf6f mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x918dee6b mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91fb97a3 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92413880 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x937a519c mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96da6c0d mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x986f5d9d mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994b88dd mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997072d8 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a94f106 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a9619cf mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e6e5ea2 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a1a77e mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7876c94 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8a1d79d mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa763546 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaabeed3d mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac1fcf66 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac24caff mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8202bb mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb071ed6c mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b06fd5 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8da3515 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba5b06fe mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb3f62a mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1b324a mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc142381e mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d7734b mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc27352cc mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57dd8d9 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6fd4619 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc768c4e9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7c8e75d mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f632b0 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf8be5b __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda076e9 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b007fc mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd242ce5f mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d004e4 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4715a53 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47d3f4d mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4b4e806 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65dc2fa mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6c9f92 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddd5a1c5 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde299787 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2740bff mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe27f5d6a mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe388f8f8 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6085460 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8a0a438 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeabfc974 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec2bd228 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef493c2 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf517fadc mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61b1f04 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf712db0c mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9a4b54b mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa5f0eec mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba80dcc __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe95901d mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff11b3ea mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffef62fe mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0141fc46 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02f9cc34 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08336e0a mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08795d69 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08cba99d mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa38085 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8c62c6 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1238ab7a mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128fb54d mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x178bf08f mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ffeee44 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20f607c7 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d84d58 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x280787f0 mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fcc89f9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f8c7e8a mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420609b4 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44125ecc mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f84edb mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ab84419 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4da020de mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f32e80c mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5472de29 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57166bbe mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6285719d mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62b9669a mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6687dc36 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ae35ca mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8fae87 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a980f32 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5f548 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d696a72 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x747d73c4 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7677841a mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a40e8c6 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d2365a2 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8010a89f mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80df995f mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x814d2298 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b876dd6 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f0fbd2a mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f4115f6 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90aead86 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x924b11a1 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92eb4c01 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94600143 mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956d3e35 mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f51361 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d4f66db mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1bbe964 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1cb1732 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa32110d8 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa36e9332 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37d90d9 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5013fc6 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6643d5b mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6650b57 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7114711 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa94d390c mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb59d60d2 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60605f7 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa91a7f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc1b28f1 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd13472f mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc218aba2 mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3666e7e mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f06742 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87c777e mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca9e16cf mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce7d1d3c mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd544e96e mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb04d6ed mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb31d626 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1ae8fda mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4b8ee1a mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ce9f17 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fd2b73 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe92f2012 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb20637e mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7288fe mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5059f4c mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8e552ea mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3f7a13 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd81f683 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffcedf2d mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xf7ceb8be devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x06a92896 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x08d9dd4b stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x52aff29f 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 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe540b269 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x02f27355 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x22802c18 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8b55f225 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc45514b7 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcdf292b5 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7381b69c w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xaaae3ecd w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc248897e w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xeab1e44c w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x52fc66fe geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x28d7c962 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5847fdf6 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x667e44be ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x717c970a ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc9496305 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x304dd030 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5939884f macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7b588981 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x86b89c29 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x17c67a16 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x44fc11a0 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x363e8828 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4cbfabb2 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e07f5dc bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77abeab3 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bcb919f bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e6ecf47 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81f91d58 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8280f8ce bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b29bb49 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98edbacc bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xacbd4a33 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd20b2f1d bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd349adf2 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc244fd0 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf5d75f9 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed0dcf2f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf59ebb45 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd8d267a bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x03b4554a mdio_i2c_alloc -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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3ff55033 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4d33bc9c phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xafc022d7 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc60c181a phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x077b4bd1 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x3cc34165 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x4413e187 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x6a171ae5 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x6c8e814a tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x7f764fac tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xb6861862 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xdc2cacbf tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xe0cc47ed tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x56998626 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x654ffdd9 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x80a9ce00 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9c72d598 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4c0b8c0 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1a916b81 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3416c139 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x66beaea8 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b5f0eb1 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b9d4a45 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4bfc0ff cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca5f7a3d cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3a12994 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe82ead6d cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x310c726c generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x31ff7b69 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x54cd3af6 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x67cb650b rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaf972540 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc1cd1572 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16d4f895 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2414e9ed usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c34bea2 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34cf050f usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3512ae9f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3774b6ef usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4757e6ea usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a8685f7 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4cc35dee usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d02cff3 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x542055c0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54c79cbd usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5758bc28 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5afda6ad usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b9dd56f usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66445f66 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69004d5e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x705529b3 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a7fe8a8 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x825117ff usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x839ab7da usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8419fe80 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91e7be77 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9863777a usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9fb7514a usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2b54291 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4a926f0 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab500fa0 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb03e8d0c usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc237ba88 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccb19d6b usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd80f6f06 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec2c11c0 usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7e6fcc9a vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x88238cce vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb752eb1c vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcbf1f933 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0f4217f0 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x18870a22 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1b717b7b i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3174d44d i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3bc8c7c4 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x45384644 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4f64b5db i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a6b4ee0 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x679225bb i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6da2a6e7 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x87e42ec3 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb40d7d00 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbc245547 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xce8aabe4 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd80cb079 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf57b9da3 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x071e83e3 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x309db0cf il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56b1889a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f8bda79 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf296561 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4d058ba il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07767ded iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08dd6dae iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a7bf8b5 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f3df1b9 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16f36eda iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20fd5135 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x275daedd iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x291c34de iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2dfed0c0 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32335539 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35850a2f iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36442d3e iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a36ccdb iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a640b90 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43670aa0 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4af377b3 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x506c8ddb __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x59251dae iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c92b11b iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60b102ae iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61370611 _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x64859554 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68e10779 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a5df493 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ac5aeb8 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x705ff2e4 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7407f99d iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77f4abfe iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x786c9842 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x787c5fc7 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c648a02 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80657c44 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x855f3d80 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9dce8b0e iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1324cb3 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa37c953e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa54b0844 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7733723 iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa84d95d4 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab485e5e iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac2c34ed iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb80c9b7d iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9228f50 iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc3a0c8a __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc04786d1 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7955a24 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7fcaf31 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd1e9cae iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda2a5465 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcbc6605 iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe007235d iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe45789b4 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe945540e iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeaf79692 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeeb1f8fb iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf26666be __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8fbd671 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdd23041 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdfe9e33 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2753b359 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3e29df8e p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7a85a886 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x85ae5abd p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x87207ff0 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x90568c78 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x98109f42 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc22dcf94 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd0edbefb p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x00bffe2c lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x385c2894 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3bb40dc6 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3fa777b0 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x79751c98 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x79f01b7f lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x81152072 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x811b65ff lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb074f1f6 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1648506 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb63a21ae lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb769bb58 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb7e3d889 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc247e920 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdf7a0f17 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4ced30c lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1994114c lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6299a3ba __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7c0e233e lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9d6d1a81 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9ef3b8a5 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd8141600 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdaaecc61 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf6e57dab lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x04dcea22 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0ff90fa9 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20a93f40 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25952592 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x27a4bc95 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x35bdb639 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4dc7b003 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4de41ac8 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x53218491 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a37cf1d mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94a8b0fb mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x97d84cd7 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9b8d8bcf mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9de73cfc _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e0c5b71 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb49d1f44 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1e03f73 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 0xdc8a5f51 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe6f54521 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xec840bf0 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0034f1e mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf34cb06c mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9dad1e3 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfef479c0 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04dc085d mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05147fcf mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x060e9dfa __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0881e3e5 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15368279 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a3822cd __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a4f01ab mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x253bbb3e mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25b8eff9 mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x286ac94c mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2914b6be mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31707dfe mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32dbb55e mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x375378bd mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38692900 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a91e3dd mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x473583a6 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49431b47 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e984948 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f49a563 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5be319be mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d56dee0 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x623d96eb __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63a5403c mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x659e32c2 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x690de521 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6be6651e mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75d51991 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7adfa453 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95a84606 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96606f9a mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d8039cc mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fd58265 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa061e8d3 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1a9ca24 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3c69335 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8e50f8f mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa08c676 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb30e2dcc mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcbe506a mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2432119 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc68d22fd mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce334f7d mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf477674 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd286b3ac mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb1e4b10 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcca7ef7 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde850258 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdea07b71 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1996d84 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf474d71f mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcd47619 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff851ab6 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x097d0b43 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1243c945 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x15d1e4e7 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5736ecb1 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x89266986 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8c9c3159 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x99eb5efb mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6d0229e mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0704410e mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2c05ae68 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x36f91536 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x39683cc5 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4a38a295 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa6c38d93 mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc9170b14 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00fc7970 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01d375da mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05086378 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06fac72f mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bba402e mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c1b5cbe mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x130e159b mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18db9417 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b4b05ad mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1dcfa24d mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24bb905f mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27b004c5 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b0d5810 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b66a05f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e2019aa mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37045fd1 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x382887bd mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f2e34d5 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43d87c7c mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b01b726 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ed49e4b mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cc32785 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e4545c5 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6039a322 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66d18014 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68a4678f mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ce3e6f8 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x746cce05 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7479ffa0 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7838ece2 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78e69bf7 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7900ca9e mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b6255d3 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83c7ee7e mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8706500b mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bc665ab mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x952aa2ad mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9585639c mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x974480a1 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c384145 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c79ac9c mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c8e027e mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f9f08c9 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa016bc4f mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac3456f2 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb203f488 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2d58ec2 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9736442 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc749295 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc443ff4c mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4c10dfc mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd0b22c8 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd05d335c mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3f8235d mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc18f563 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdca49f19 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdcb397f8 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf287bcb mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe262f0dc mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe686fc48 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef0ea015 mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf30af476 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa2b4654 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5af6ce38 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7117bd0d mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x85d24f0d mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd244618a mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xdde554ff mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xde64bec6 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe0695b68 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x150537e1 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x15fce5c6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x19b838f7 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2dbe6480 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x35326067 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ebb75d7 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x52f6b282 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58f75f46 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x692830dc mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a392691 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6af90a45 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa4c580bd mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa899055c mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2e8236f mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb8e56d42 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc945edde mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd87607b8 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc24388c mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfd8d9f0d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x27582b75 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4cd7f091 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6ad042df qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7024518c qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x76ef8f4a qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb977310f qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbf082a08 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc1b2399d qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc85d80f0 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0575dd18 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09382369 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bab334c rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14f69d15 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15b28816 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x171ea032 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ca0db26 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d0e6692 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33ac623e rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37682abd rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a65625d rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x459afd17 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x475e8a18 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x528865d2 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x545967c2 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58307336 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a0b023c rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b21e17f rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bbf31fc rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x750aa8b9 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76a207b4 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a5997d2 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80b49ed4 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8175251c rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8204a4de rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x868c600c rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b5e8237 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b1a302b rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9fdd0780 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xabcfbed3 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5e5c052 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6ca5e97 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8a4bdb4 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba8cbd16 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc546956f rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6551b1e rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc81dd690 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce661634 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd06ae045 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd32ac85a rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd478e29e rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe46ea5dc rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeab614d6 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf36992c9 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x31187ce5 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x55189772 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x567432b1 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5786fcf3 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa655ab rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x777094cf rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7abbe4a3 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9e5e4047 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa0b33e7e rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa5f0039d rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaebdd33d rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc17bf329 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xccbbcb75 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd2954bca rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd6c3aa3a rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe026e30f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x092ec3ec rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f957f4a rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12c9f755 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1baa3239 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ff65ad6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ffd9c8e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20a8077b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ed7f11 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2536852a rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2680c746 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2cc84cc6 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35d0072a rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d1b10a3 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x460c43aa rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4aae384c rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4dd2d65e rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52f4d415 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59ec9319 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62a28a51 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65a2a3cb rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66ea8950 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69fa1a0f rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d446b15 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e002b5f rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bad8547 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d794361 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e2c60e8 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8278b9e9 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8334aedd rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x852edf71 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94a0201c rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5bbb62f rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7619afa rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac646738 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaca1fbe7 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb82a42d9 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcba86a25 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbdea0f5 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd734a132 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0920ef3 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe4c5e264 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5df5315 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef5889cb rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2d76052 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5208c5f rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf680ce4a rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x34b7297e rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x54818ad8 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5b4b6c4f rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6bf97954 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc71de8bd rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x18853648 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x294d420d rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x30c6ed9d rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5bf2de05 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2f5d9291 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x41fd4ca2 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x50d0cc9a rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x55590829 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7a06c72e rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x860cee90 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d11fed4 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0073a99 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa85b792d rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xadce925c rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc510eb6f rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd74545c5 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9f66863 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe5706e03 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf9f2228c rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb3cde58 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71bec357 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87e6522b dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbfa8ad1 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1af24e6 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x242ba0c9 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d740975 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49d81bb3 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d7d8b5f rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x54af3180 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58faf1e7 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x610e02f2 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bcc40cf rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6db953c7 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74f2ac4f rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e9b862c rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80487b0b rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x902f267c rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa40c7c1b rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb366ea74 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd8bbf78 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc824de17 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcda0ebd9 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf9219e8 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde070e65 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdeb7a10b rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2362d34 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe51d3fa2 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf07e4508 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3231983 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x015c6c16 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 0x2bef594a rtl_fw_block_write -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 0x338c3fcc rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34de6f54 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e62958a read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a2b5861 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a42c03f rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73c539e4 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x764df29e rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d022eab rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d37ffa3 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96318a1b rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1933e4c rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe460a40 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc29dd512 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc91cbe44 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb1d6061 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd7846cb rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcde3d0cc rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0a41439 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1964fd6 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5b570af rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe616b567 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2a5af0a rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf85e8b5f rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x01ed49c2 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23f42aca rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x872bacd0 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xca796104 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcb476854 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0049a857 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x175e3638 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x78882189 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xefa284f9 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4cf079ea wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa81d63c9 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe7b9bde4 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01c31ba2 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 0x0a65820e wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dce473d wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f991e54 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ab79c65 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23fa5d21 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24025d96 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32dd0cce wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x375176c7 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3985d5ca wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x418b8e74 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x427ce212 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47a19021 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60e61695 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6271f2ea wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69dafe85 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b44843c wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76422722 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x776daf23 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a7b80bd wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8130f9af wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x891f49ad wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89df3826 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90bf8b91 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9313127f wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98247258 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b43dfd5 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0f56017 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3ba10ae wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa55f563c wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabba3396 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xadef03cc wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1714f26 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb477b5f7 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb74a2eda wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb2d0253 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc15d05cb wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc78106ab wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8765d2d wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc889388f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8fe3849 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6792ab8 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6dc3cd8 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x29aad15c mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb6a98fa8 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xc27ebf75 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x39c37bda nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x508a90e3 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe3d18785 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xef219d49 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x01966311 pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x33ba6223 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd78c0885 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf3c6339d pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x265c765d st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x28a0d63f st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x47340e2e st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5f4c2b31 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc6ad1274 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc83f3154 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xca5a4144 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xef72843c st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0c7a0ff9 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x27cecece st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x31cd0731 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 0x7941bf2a ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9dace805 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 0xd47e07f9 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 0x5e02b5a2 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xc9b90702 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09684ea8 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a44b3f0 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bea241e nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15a37746 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e76185e nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x235fbd4d nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26903c53 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26e1144a nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36c0471f nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41dd73a8 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48807292 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a4d75c2 nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ecd18ad nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5144bf1c nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x547fec7b nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ad42f4b nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b6e1896 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e2a594d nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63e21386 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7038e443 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7913f26c nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8200cf99 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86d763b2 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86f86699 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x909169de nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95112724 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f60fcd3 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaecd1b9f nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc28aff3 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2deb653 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc64e1186 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd06b8c8f nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2533941 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd53e6d64 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd62bc91a nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebaaf00f nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeee033c8 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbe4782b nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x22609db5 nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x25b3e3ce nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2973e0c3 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x31d8a6d8 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x41f792a2 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7ff5fd90 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x858556ec nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9f151021 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbefbc7ef nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc34b3f33 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe2f33061 __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfb06d743 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x264eb9e9 nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0042160a nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0c13d68a nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x26f394ea nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2967630f nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4427d66a nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x88054818 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb840fa8c nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea95d25b nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xebfc081c nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf196e065 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf36907f5 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0cdc9a7b nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x35a48abc switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x1b663601 intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x26950b8f intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x40a5c4d2 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd4da8cdf intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x2ad38a11 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x661b3e79 wilco_ec_mailbox -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xbb76fef8 wilco_ec_set_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xd4c97f29 wilco_ec_get_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xf8e079d2 wilco_ec_get_property -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xd1a26e13 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xea226532 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x67f1d4ec dell_smbios_call_filter -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7875d98d dell_smbios_unregister_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xfd47eab5 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size -EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x02031475 isst_if_get_pci_dev -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 0x4536c682 isst_if_cdev_register -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_core 0x1c7565c2 telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period -EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig -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 0x553bb419 wmidev_block_query -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 0x9061a10a set_required_buffer_size -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xcf009daa wmidev_evaluate_method -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 0x08efc913 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xebdf5536 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf78c2f08 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x34201862 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdca45469 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf8f750e1 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x1a2bc1b2 rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x63a63b27 rapl_remove_platform_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x82699aea rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x9a28ef19 rapl_add_platform_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xf462d705 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x750fea10 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc01de4c8 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc77eb650 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2e801b0e wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6e68c390 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb0a7dbb1 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbe9eaac7 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xee03e49b wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf447ba7f wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3fc55059 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xd0586715 qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0624f7f4 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10f7d5b5 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x112e1614 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b79792d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b966dca cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c79ebf2 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1eb3e0e0 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a30fa49 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b3aedf5 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c52034e cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ff381dd cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x315804a4 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x328e87cd cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a478778 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c1f9665 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3df4a27c cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43aed6f7 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43cf0543 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cb158d6 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ef4405c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5349b003 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a6f3d8f cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62cdb9da cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x645281f4 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69236cd6 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76cc7c30 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f5c76d0 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86671554 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b4a3193 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c607e92 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1a084b5 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1b196bf cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb380bd0d cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd7def36 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf466ee1 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6269724 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4b7785d cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5d3b945 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd802462a cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe02952f0 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe41e74d5 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6b1e073 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea1902e9 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfea6ba35 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x213d369c fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28447cc0 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a4b1968 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a7ee13c fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3fdc9898 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45b008d6 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65964020 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7af293db fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7edff696 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x81e4b13c fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x85411f7e fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9fe8942a fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa445d664 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb801bacc __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe14dd18 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5c3fab3 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xb4e09065 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xd1fa4808 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x22bbc44b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0228273a iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06661e70 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07602788 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07b7bb71 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x172f9eb2 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a4268bd iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2707255a iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a2521bb iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2af49466 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ea2b83d iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x331fd26d __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x375b3f81 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ba47d74 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ecda655 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fd4ad0b iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bc491ac iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50759c18 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a87640a iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c77b4e2 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6153397e iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66d33eb3 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x675ea59b iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x683412ed __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73f1ad84 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86b35352 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ade1be4 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e8e798f iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fe67e09 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x909943f5 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9136313f iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93617197 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2fd1171 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa413c276 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac2d1fe1 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8f26b01 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc07ceec6 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1bbf8d9 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7fedc03 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8b8bb10 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc96f3665 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4147b5c iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd2ef73c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0bf1b3ad iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21e05f07 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27f2d4cb iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a85fed5 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c18e71b iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59baa612 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68297305 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68af6a38 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6df4abfc iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x89c2a840 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96bf1276 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6e32151 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1d9c773 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0bfa43a iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1705099 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd452eea1 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8c5c605 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x005cabb5 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05790b22 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1291552e sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x140fb4de sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a4335ed sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46af7c8b sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49df3478 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c11d140 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ed95cfb sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ffdb09f sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60475418 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63fb8123 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a73db98 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92414ce2 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97b9fe62 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1b9b98f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafa4d97c sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc03d6795 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc47ab927 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc41e711 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe73e374f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb3c0e8b sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec28894b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff916d9b sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04820f18 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x100707e3 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x193515ea iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cdbb429 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26c890e0 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ca86665 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36f54806 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x476bc679 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49da80b0 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5861c217 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ab14af1 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61af10c0 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62f01a16 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63e56a33 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64498e50 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ccafef7 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d11440d iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bb15aa6 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8016bd65 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84d1ec6a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c87d8df iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93a0db74 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e07f111 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa130869d iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa36f743f iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9a562bd iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb08db8a8 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0b12148 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1900739 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc69cc3a iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5eb61bb iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3d0ffbb iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4b1a9f8 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde35b150 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb5b7493 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecd20fb9 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5d47f0c iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf890a6d8 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfff08345 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x33b371da sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa499bb82 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa5b193df sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf8c98080 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x87381f44 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 0x14e41dfe srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x468190c8 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x62aa0a6d srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c9de7ae srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6ecb79c2 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa912198b srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1152ac94 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2492704b ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x32c8ccb1 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8156cf30 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9cd5abe3 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xab3d1c09 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb0905998 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcd5d127d ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfd1cc9b4 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x255e82aa ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x293e8534 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x87fcabf2 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc10b55d4 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc7e244a0 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd68c3ae7 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe889b029 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x14e671e4 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8ba70d6b siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x95ee8b7e siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa2ab9082 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa8c6beb9 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe0334c8f siox_device_connected -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x000e498d __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x187440be slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b3e68e6 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x234b6985 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23c88314 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3dd84ff3 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f407bbc slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x411ac54e slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x43f23d3f slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e85d2df slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f134853 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f159640 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x539413b0 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61d7d8d4 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74311e82 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79fc1f5e slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c546aca slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x966a2b2a slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa74984da slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab6baecb slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb4372169 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5e147c1 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccf727cb of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcea1023b slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf7ec384 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf443728d slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x23e2ace2 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x5b6b129b sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb1dabd34 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x97183b99 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x44026d07 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7a275e3f spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x99f1faca spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb74c2352 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe0c2831f spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf5b0ed8c spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0a038c0c dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x70ed8509 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x72a6e343 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xad69e643 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbd128fd0 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5d74f231 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9bdebb59 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdc45c535 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13884b80 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x14b2a75d spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1843a90d spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x37a16d3e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4021cfcb spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x440e170d spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x487bb8bd spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4dd9ad2c spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x58286dfc spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6227071e spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70848a85 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8829833c spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a100189 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97011fc0 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1844fdf spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde71cf12 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xffbe31e9 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xffe489c2 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x61d0cd42 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0d13f727 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x105d0030 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1644f072 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x185554a4 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22f61513 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x281ae257 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3669c514 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x49d40d4d comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c923d96 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x534e525d comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a15245e comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a1e2d9f comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5de02ba6 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x69cd85a1 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6bc488bb comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x718543b8 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x724af149 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7a09614c comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8f8bdea0 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e44cd80 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4dd7389 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8aa57f1 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa817986 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb17f230a comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4ec105e comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb5cdb857 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8d10865 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcf6135fa comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd07ca8b5 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdfc9c869 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1687194 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea959428 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0ac7508 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf4374fcc comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff09f617 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xff98f672 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x05a8478c comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x090f3951 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x288a96ea comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x437f3d77 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9dec3d7f comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd9f0e256 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe756f75c comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf96a4d2d comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x09fd6475 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x182c71b1 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x4a492dad comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x58c9982b comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x68cbd90b comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x6fa03a8e comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9d363fc2 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x09b0e673 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3f8697b8 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5d326a3c comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbbdbf278 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc517dcd5 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xede326bd comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x97eb2ba0 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x3445b548 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x4ee4b84f amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc19631dd amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0f25d5a1 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x17ab3fbd comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4a32cc1c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4b627ee0 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7a1dff5a comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8529a9bd comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9b432a44 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa3740b05 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc4d7644f comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd05352f2 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe0e94d00 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf817d775 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfae34ab4 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3f7ad5eb subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x7d89a2f9 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaf0f8ce4 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4ab82d67 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x65f35e36 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x6eba44a6 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x5df3db0f das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x011a26ee mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0accc8e3 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x10f71dcd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b3d7f7e mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57aa4f89 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a4bc2d9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6095b5c3 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x71b8663f mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7e626ce8 mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x884ce3cb mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa4bb7a51 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa5dccb3b mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa7eadb06 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae15dcf5 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe01a4e85 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xecd34fae mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x61600b31 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc96c7955 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x18b2d0b7 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x19d6d859 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x810386b9 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xd3d8ae9e labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xe77a6c85 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ce93b0f ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x45dac8cd ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5511695a ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6d0ea61a ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6f28154c ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x79466ec8 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x79feab4b ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x890fb19f ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x933e8089 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9ee3aa99 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa5d580f3 ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc00c471e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf5d99fb ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe0e5b6b6 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe3edad6e ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfc0a8521 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1b977deb ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x248e61a9 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6e024935 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x73eb0a94 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdcefdb16 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe830ef51 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x23ecda75 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3e9201ef comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x77584220 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8023e94b comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x90062ae0 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf0b4306e comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf87dabc0 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x094e866b fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x1f81487e fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7f46f3a8 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9bbae499 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1483b6e7 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2302dada gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x61880619 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x671bffc9 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8604f283 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9608c49a gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb6dda787 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb8f8e39c gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbf73f396 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc21dd790 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd2a933f5 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd0b92ce gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb6ad685 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x09590d93 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0e0715da gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2fa929c5 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37ab5b62 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6f2d8c66 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74090733 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74a3e726 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x90d921d5 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb1771dca gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdfe007e9 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf13930e1 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf5099e9b gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf5660362 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x944132ea 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 0xe88d2704 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x384b7ef6 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf802d735 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x3ac9f54e gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xb46cab0b gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x61800d5a adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x18c6186e gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3ba11c7c gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3c03805c gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x55d0dc83 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x5e0e04ad gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x60ecc1bd gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7615d878 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7d07de90 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8a432d85 gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x973da871 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa1df982a gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa4069a13 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc8e60439 gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd2197c47 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf0eec8c6 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf5243e05 gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfbd82a62 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0b6040e2 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x43d53b67 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x47ae97a7 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x5cea41b9 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x5f880e79 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x66d481ef most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x9b3a53a2 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc9a7d3a7 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd9afe485 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xdc175e85 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe8cd7ff7 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf444df96 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xfc6661ac most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xfd91d1b5 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x002e6e09 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0926f428 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0c5866a5 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x10fa3ed4 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1d279b99 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x263793e6 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5e6a859d spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x66ee965b synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6c14f7e0 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8f8db326 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa637d1b2 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb62149fa spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbdf96dd8 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xccbd5303 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd689f888 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe70427c8 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfb0f2d36 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x184eab3d i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x715500dc i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x88080b2c i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x16325dbe __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x18ba4b63 umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x2cc81a4d umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x33ea7d89 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x4091e088 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x5993fade umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x65fee2f9 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x66eafc17 umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x07556d04 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x08356334 uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0a894a88 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0e3dcc09 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0eb0058c uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1451a0ff uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1547f6d6 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x16cd8cc3 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1ea9b50b uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2cbf2a3d uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x33ecea05 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x347ea01f uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3499bb20 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x394faf10 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x39e2e13d uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x442acb85 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x443ff231 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x51e7930f uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a1408ce uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x60fd5100 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x66888f76 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x68f2e634 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x78cd7a57 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7a22d60b uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7b3a88ff uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x84b95e58 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8b92ee40 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8fef5740 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x90cf57e0 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9abfad3f __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa09e5de4 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa3c6c63f uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbc785886 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbd7c74a0 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc15fd65b uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe67da200 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xec81f6df uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x5b8f0648 whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5ec0e858 chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x636305f0 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x65c04746 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x89cf5a84 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x9d6de976 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xa8c1be59 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe744860f host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x09812400 wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x1a857e2d rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x2a015b9a wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5736433c rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x8e412ce1 __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xa4ff89a7 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xafa4f5ac wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x0c280776 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x291ad904 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3832b300 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6044ddbd wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6a30596f wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6e356996 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x76cbc94b wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7d10c262 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7dc7422e wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x88a321e8 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x918e679e wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xbd5cf79c wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf0cf899d wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xfcd2a71a wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x81ef30c7 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xab69a8c8 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xd101962a int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x01474267 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x1f1c6195 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x8d30c5bb intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xb06d7676 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3b58fc6d tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x40b3a9f4 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x43a711d7 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4b60df33 tb_xdomain_find_by_uuid -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 0x4ff02a10 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5cebc7dd __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 0x67e76014 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x71d0be6f tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x768fc74a tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8c37355c tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1afc025 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1b6337c tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa96bdcd6 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb5dad531 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdd9aa83d tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe70754b3 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb5404a7 tb_xdomain_disable_paths -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 0xf7604f13 tb_ring_free -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x588a2093 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x75b51406 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd681824c uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x151a03bc usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcf62034b usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x13720b90 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x81c3a7e4 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8b97240a ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x089764df ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6070cf33 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd796a0f2 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xee9e5f77 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf00158dc ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfa3a221c ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x062b6ea3 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e73dfe2 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x87369f0f u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x87897d99 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb68cd66b u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc0eb2548 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0145843a gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20355a46 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37cb29f2 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a4797e9 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3eecf0d1 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5e75564f gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f45a10d gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x857efcf1 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa31a9bfe gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac4458c3 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad964d86 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd2d66bf7 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe4d1fb24 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xecf5ee93 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf2c6f681 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2b247f6f gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 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 0xbe9964ce gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf9425153 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x238cd819 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf88a13e7 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05958bff fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x063f4bd8 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x08c2e155 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 0x15771709 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b02ba8f fsg_show_file -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 0x39b09717 fsg_show_ro -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 0x4631ccc2 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4775b9a5 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x47fb8a6f fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x837b778a fsg_lun_fsync_sub -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 0xa33d4a70 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa8dcfb8f 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 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 0xe54cb167 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec99b8ff fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3b20593 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf7b241ce fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf888007e fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x011ebe09 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0e55708e rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x179c1403 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1bdf02c8 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21f14e14 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27ad6cde rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ab47ab9 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8431e28d rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9f25fe0f rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad5031f2 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb15e295f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc40975d4 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc66abe64 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6d2c88c rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf247d06b rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x01cf7428 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0485114c usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05ffe3df usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07491436 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11bfcaf2 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b41912a usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1eef314b usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23729c2e usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2980a468 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b2dbc55 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d543efc usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36991804 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d8099bf usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4047f78c usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a20fefe usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66257917 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72b0fe69 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x906509fc usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa076b632 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa287e132 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7cd74f2 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac347e1e usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadaaca7c config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc87b6a96 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd157efc usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1aa550c usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8593a05 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe008ff63 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf21f0166 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf28a3785 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3d6991b usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1b2140eb udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3babe4e5 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x54c72e33 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 0x6633b234 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x66ef0e22 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc4142343 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc5da4ce2 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcffc7500 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfecdfa15 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0715909e usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0814c3ea usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f86068e usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b8814c1 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4813df32 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5b41a7d5 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dd4d3d7 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fad97eb usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x633094c9 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74dd7115 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94bd3c90 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9c7102c2 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa05746f5 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa534ae02 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa404c2a usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb5cd007c usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc099ff82 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc679312d usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc6a5dc37 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7cd5484 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc84f18bf usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe51fd8c0 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe68631f2 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe94c79fa usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfb8686c1 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x53301a99 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x904f56ba ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x06e6af50 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0f617803 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2cf93b9c usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x46c48235 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6730df97 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x80906d9f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8be7b5a2 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd512a8d9 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xeb230ab4 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x158d7f10 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1cca438a musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4150f8e1 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc13721a1 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x12c89dbb usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x14eee9cd usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa04bc89c usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xea12e00c usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf885aa0b usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbd1c0e80 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x41a4fd9b usb_role_switch_register -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x78245cac fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xa5009ca8 usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xff224303 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0beb61c9 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12c7fd82 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13be56a6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fc27afc usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2fe1dc09 usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35140cb2 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e43deef usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71dd72fc usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74d5f32d usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7793ce5a usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7919a060 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9622f981 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb55ec3cf usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb71630a4 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf22fa6d usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcccfbb9b usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcee4a1c9 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe8a2cf08 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf57c1c49 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5d89f90 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf90505b0 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x0a957ecb dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x500c51d5 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x1b1fb70e tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_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 0xdb3eb951 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x011d665e typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0afbec1d typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12775274 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d59d82b typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e327f4d typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33edc574 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e43ab2b typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45ded7d5 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x484d92ac typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c33de81 typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66b62b45 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7208bc17 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77993b53 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7bc32230 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ce1f32a typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81fdf617 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8252eeac typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x89656611 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x89df03a5 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8de4e4e9 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90fc3b1c typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97820257 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99808977 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fe79b45 typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac254e59 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3ae9537 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6104355 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe2527df typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3d40e49 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc72bec37 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf224509 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3ed3773 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x24f1eb4c ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4c1333bb ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc5917248 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xceed4859 ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd2d207f3 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b3ac0b7 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6528f345 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x66f2a6f3 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9bd1131e usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa966918d usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xace2fdac usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb365c626 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcaa3a61b usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdcf5649d usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe4d02d68 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea2161c2 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf61a1d99 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfd07d56e usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x2b97c1ca mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01861ee6 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0211e595 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0289591e vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12de9236 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1812ee98 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c1f6b1f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27e9e221 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34b7a3aa vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37abf20c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ba2acfe vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bc2ce63 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ff751dd vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41c3668c vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46f3b7e2 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4749c98e vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64e7aeba vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d518fd7 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72862d30 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cbe9dcd vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d3408ef vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dcbc26b vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93cc0b02 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1408522 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1d972f7 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb11ded5e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd0cfd51 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc046986b vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0d44a87 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc233f379 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd2a1775 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda384144 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe061498f vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe170cf09 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe41ba025 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe53eb194 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee49461c vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf51dd4bc vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa7752a5 vhost_vq_init_access -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 0x5ab5c574 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb6ef4eae ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbb7b4df7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc5b0bb46 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc6fe99b3 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe69726fc ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf903ca8a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5ae0b46a fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5cdc4b10 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x71157d50 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa475ffba sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf74a3832 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe97abe0c viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x05613a27 visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x40976a88 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x570d2a78 visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xa7696140 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xa79322bb visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xac65c193 visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c5abefe w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x444cb0f3 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x605a1f34 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x71049e10 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x73962864 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x93fe64ea w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb38275c5 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbf3c0932 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd2a509bf w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd852e8ca w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe25d0751 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x09ffd619 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x287dcc65 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x29e72262 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc8085bfd xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd7f71375 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x39902cf6 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x720b3ca3 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x16042020 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x70ba55b9 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa70eefb9 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3d272828 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4165aa1f nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42956140 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x577262d1 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6a782ff0 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e3e1ff1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf93c90a4 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008bab91 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05eae104 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a7eb3d0 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b116457 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b54c9db nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4d91ca nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10473078 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1113e1d7 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11c82cd0 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x132b7f66 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x139571b5 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aa0ca79 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x219e80e4 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2347751d nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2543d914 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b3d80d nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2964f298 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ebe9978 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f9c8a5b nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fd2293e nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31bc58ae nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x328b810d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3463e57a nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3576d99a nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d8c842 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38cdd9a9 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39cc401d nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df08398 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f184ecd nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f71b07b nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x404ce239 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41109045 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41cfb295 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44aa9734 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49e0b491 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a22b4bc nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a3b3f0a nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f42a915 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54bcf722 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b7397d nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55fe7d3a nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56cee387 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57e4d1dd nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a2ae2ec nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a3f3184 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ccad545 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cf4dc18 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f526db5 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6159f95b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64aba03f nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68206da5 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c9a3d5 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a61f6cb nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccada1a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d0da8c4 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e7cd876 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ea4b5e9 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6eb05a07 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7762c8f1 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7968ffb1 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ce82aab nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f5c3610 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e00a2f nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86d6992e nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87129596 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874fb38a nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x889f6f12 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc68332 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e96dc98 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911ddaa8 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x949e8dd5 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95074bbc nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9732e23e nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97ce47f8 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x997a7452 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a7e3225 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd396f7 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9be8e2c6 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ef9940f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09f5115 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa146043a nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1db2977 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa217fedd nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa44b4b09 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa56d61eb nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa63f4d60 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6eac42c nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7c61d27 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa996b2b0 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa13d17d nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaad4d33e nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb34fb388 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb89e2807 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9dd969b nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc0e7115 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc5ad09b nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc77d3d8 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4a8561 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4d88a5a nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc55b4c7e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7fffba4 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0669210 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b4597e nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd156fc4e get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1df5f0d nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd34218e2 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d85d2e nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7de842e nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8618464 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaef74e9 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd9407e9 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb45420 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddf77e8e nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe12df449 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3ab18d3 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f67739 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb528999 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebd01bb1 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2a45a1a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf379c9df nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6bf9578 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf748551c put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7fb96a6 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9d0a7e5 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfafa51c7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb8da481 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcafde91 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde9c9b2 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff08027b nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc0cf5feb nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04439878 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05f5740b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09d4a831 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13a8385f pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x179a671a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b1ed2e pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21536f19 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2258c4af pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2314b5d2 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x281c767f pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x287f29a4 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32c97d5e pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3688e89a pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39ca838e nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ad66b1b pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be68b59 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x404a9d21 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x426fd58e nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47bf01e4 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4af18594 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f38cb94 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f68661d pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x654f0b67 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c71aeab nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca30684 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76ffceca pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77419d2a nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ac2b83c pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dd014cb pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7efe37c2 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8196da46 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88b1b860 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8914dac6 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8940eb8b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x918e51d0 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93075af3 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930bd2bb nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95538314 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9967189e pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5d8e244 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa687832e nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4fee45d nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc1e021d nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd7cb1ba pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0b7825a pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb0e46a3 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc03b726 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda7ab926 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4e4b70b nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe721da18 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8cc2256 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb0dd051 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf21fbf77 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3fa7b48 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf45679ab nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf496f72b nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6c32e05 nfs4_mark_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 0xf9ffd946 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdceb7c9 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9bfed30b locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc25026bf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe323692a opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0a25affb nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0b79a15c nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0bf55659 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x147e0f36 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1eb6b24c 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 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x86214118 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa4382d05 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbee52a0f o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcc8444f0 o2nm_node_put -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/dlm/ocfs2_dlm 0x032a7bac dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x11a59e94 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x17b237fe dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6b88ca3f dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6c78d01b 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 0xb66babfe dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x5f085c30 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 0x9a7a8acf ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd890f25e ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xff9023c3 ocfs2_kset -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x243d2891 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4b2e73cf _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6bf8c5cf _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch -EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0b879950 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf6a3fdce notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0cd9c432 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x13fa2604 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2fe5a91f garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x3579478d garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x4e5659e9 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x81a3c2f0 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xcced0fcc garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd39d9f84 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0c808a68 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x43885a1c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xad2c945a mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xc04f386c mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xd76bdf19 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xf4c3c713 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x6ef69340 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xfc8acf34 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb215172c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xf80295c7 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xffebe829 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x16983311 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x342f2418 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43f4e395 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6265ed5f l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f3afaca l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa070ee5c l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa8233757 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7d19437 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x8b9cb074 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x02e40053 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x040038ee br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x08abd13c br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bb0e1fa br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x175ceb94 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2137ebca br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2ee8ab26 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x40873fb6 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57b80434 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x580aa090 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b15b20f br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c769c8e br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x80466a6c br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x94cad969 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a72fb13 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1071450 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf8924df br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc53fc383 br_multicast_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x37cf9429 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xe929e8e4 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xef22dac4 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d9560c dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ce4f866 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1376d4b4 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x15d5d79c dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29270e2b dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30f03d6d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e74944b dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41f3a187 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51c66a98 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52706a47 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53e3d6ee dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x54c252c2 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61c3f7ff dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6bdd6307 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ff6d5f6 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x814a3b93 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8959c9f5 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x940e1b3e dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x97bdd19d dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xac828791 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7835e0e compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7da5144 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc80c10c5 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd281bbdc dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9dfd6db dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdba5eb38 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0f2042b dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe163770a dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe43d5c47 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe497de02 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1ed3860 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4546f87 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7c12a64 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1635e9a4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5252395e dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x93220587 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbb5114b9 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc6ad824f dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcbb288ac dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01579b94 dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x064e4599 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0cea0d39 dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x268e6a38 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e330385 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3961b307 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45abb929 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48596468 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f1f568d dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5bf0fa79 dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63aa42dc dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x664c34cd dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x664e9fc1 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95ac1cd7 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc4e4a4f4 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc59137fc dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5e6e12c dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd43aa48b dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd59c04d3 dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeca602a8 call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4fedd56 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x81bab1c8 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x8c2be12c dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9463d34b dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x979e2565 dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x52d86ce8 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x81e699b6 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfa1e9dd4 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfe778357 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x10b1d996 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 0xdbefa63e ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x936caf89 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb91f3cf1 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd822e817 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x14c599c6 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x61050265 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07213914 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x124b90a4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1404f49f inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x19becdd5 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e755209 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x46bfb8c1 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dd33f48 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa19cdc48 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5242e02 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x18384b7e gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02f06bbc ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1480d310 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x175b7fd0 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a503e66 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35cc9402 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3dee9632 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4b03657c ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56a48911 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bfb7921 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8ab1ba74 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99af7044 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7baafd2 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd580de36 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe194570b ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea2ecc82 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa649984 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x449648ed arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc5ec90a6 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6245a461 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd5dec5f6 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ac2dbf5 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4e252725 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x668f5d18 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9ed41626 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf1225c20 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb74eea6f nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x14d6d83a nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8e3e3066 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe90a68ed nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x730b08a1 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x920ae3c2 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3d9d546a tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x44faa25c tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x515d52d8 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5bc42f51 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8f1e9df8 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0c31d728 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1508ad14 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2a6e9508 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x552985cb setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x59835e0e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6c2e26e1 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa954b171 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbefbf029 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0c6d0c09 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2da7c6df esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x76b9325b esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x55eb14ba ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x67ef44e8 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x87950e93 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe4302f92 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xff843176 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb0d96cd0 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xcd8adf04 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xff9ea1c9 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x48b10f93 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1a3829e3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x417cf323 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc07b24b2 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc76262f7 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe212d224 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x30294b06 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5ae93fce nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6c82ca87 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xccca5a56 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xabf1055a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb9c87dfd nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x093597b3 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e7d0ca3 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fd733d0 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3853d517 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64a3f1bd l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e109bb0 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6fdb8482 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ad53ccf l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafdf0da6 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1c39013 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0847a3b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd05293e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3b871ac l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee5d6dd7 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2293a67 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf42fcf04 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7217763 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x7c9532ce l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x005e2356 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0505b4c2 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x166039c5 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2474183c ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d7ada10 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b997041 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a5504ff ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d8ae76b ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x919dd4c5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc40c9d2d ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc848b761 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2cc1bd1 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe30ffd59 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5a50dd7 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7dd19ba ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfff30151 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1814aed7 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2181fccd mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x56bf978f mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x92739afc nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdf8781d5 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11423e8a ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21bb1625 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 0x2b7eeed0 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2bef409a ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x384ac66f ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3961084f ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3ff08b4f ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4dae288e ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66b2e604 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6873b523 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6de4dd1b ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83c0f9b5 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x890bdfaf ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92016d3f 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 0xb89fd170 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7924750 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4a78632 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3561b96 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07e65a51 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x900c71bf ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x91daa5b0 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9726fd9b unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0456205c nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x27cd9bc0 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x488db4f0 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x70be6473 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa70dd30e nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x002336ce nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x023ea930 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0375e8fe nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08a80825 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0db6171a nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x104b6c4a nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1229e607 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13d8caad nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x168d81e3 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18a484cb nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18d53638 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b0f7192 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b53c394 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c26375f nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e4c0809 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22ccd5db nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x247ed435 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25e8a27f nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26c6ebb0 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26c843f1 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27c65ba9 nf_ct_tmpl_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 0x2ab7f7e3 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c67d02d nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cf711e9 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e701a56 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d629300 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41956aad nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45259cea nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48fc46d0 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49b6cf43 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c767e1a nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fbb1612 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50af9648 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53b366b0 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55aab6f3 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55e104ef nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x581f1955 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x604bb457 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x637e108b nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d1e09b7 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e32eef7 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75dd65b5 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79a5d520 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c0b9a38 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ebd4bd7 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8198b2bc nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874501b3 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8868d044 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ee533e9 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f7c3058 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x951c9822 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x976e08ee nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bb1ebaf nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9eeda9bd __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0ed097d nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5b01e3e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6a55b37 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa79ef939 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1c685ff nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb29ceaec nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb68f1700 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6b78a30 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaa4edf3 nf_connlabels_replace -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 0xc4f0d71e nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7920ad0 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc899045e nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcab05bd1 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbb84a12 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd33ed73a nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd55554a6 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd461975 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdea52665 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe34730e2 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ae3ffa nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea7c1d64 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf114f2d8 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf240a019 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7d088fb nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9065016 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa0dc1d5 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd9ec774 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf91c1394 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x19236040 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf347f180 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x111ab8f1 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2e386832 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f396fab set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x406374b3 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57affeeb nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5e2d3e76 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70a83706 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7102691f set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a38e697 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb67ff226 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5cbf1518 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x17272a8c nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6c9ac76f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8fad8e1c nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x902bbd34 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b220fac nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x545ca414 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x59649015 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9be9282c ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbef17c52 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1b5efa2 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xce9526f7 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x755c274a nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x2cb18ee1 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8adec20a nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa8dae1b4 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xd16e221e nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0dda3f2a flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2120e3b5 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c281ce7 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x47ab4e01 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4db438e8 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61c03b11 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6bc5a98a nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x79470739 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x871b7d8e flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa03e91b0 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcb6babf6 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb359d2c nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0ac49253 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2793faa6 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4a2db344 nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x69d00375 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc787ec6f nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf402f6db nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0accd600 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c225379 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x201207b1 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b7564d7 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a2ca4f5 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6682b6a6 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b120847 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6e73f6d2 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75a343d5 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8754dcb1 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8d367489 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7533b41 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xacc67d7d nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd65758a nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xddcc59e5 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe346dcd1 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x19f87d22 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x26c7dae4 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x29fbdc15 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x684713a0 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6f309768 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x835b4ca0 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x99609ca6 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaba276bc synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb6faa222 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdfabd7db nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xed26a7f6 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cd67290 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11af5964 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13dba8fd nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x204142c9 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x216e8513 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2250e05c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x242af26e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b145d85 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40dcb112 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43bac47a nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44ee1327 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x488b123d nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a0b8ac7 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50810afb nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57bb0a83 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b620b3d nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6337aaa4 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6770d3ec nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6790f1f3 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c0d77bb nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7bc08049 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92900ad4 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2b167b3 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadb94b59 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae7ebd1a nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf136805 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9ef34f5 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc14123e2 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc190e686 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2535926 nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc81dc301 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9f7e8b0 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda7c1751 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb17d9f9 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe13823a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x33b774f2 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5c07ecc4 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x930a1346 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd2339e34 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe642e6b2 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf348d51f nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3ee9e2c8 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x76758ea7 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe2883246 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb1723763 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xbe1f96b6 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0fe24e7c nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x520bacdb nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6d3c5b7a nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbe3d3c08 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2c16c39e nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x76af7794 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5fbc6b2 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02af0c97 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07803812 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b9448e4 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d737ffa xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b815518 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ca6700e xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83b0df78 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c485dc4 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92499d76 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94968dcb xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x955d6323 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaac4f511 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaae4d652 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc2c4772c xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc347cd46 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd17446d2 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd55efaf3 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe66e6430 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf48ef197 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa62e811 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff663e5f xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x629ff635 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf8dcf9ba xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2f6b5d33 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa944ff73 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbbf3709f nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4ff21d1e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xacbab78f nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xba05b739 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x670a4867 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xd386d725 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1865fc2d ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x22f28123 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x35373942 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9aeba73a ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab3ef20f ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda428291 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x0de55fe5 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x61289c8a psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xe21230b0 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xed3e51e0 psample_group_take -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x048d586c rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x0ede67cc rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x0f87cdcc rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x28990379 rds_for_each_conn_info -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 0x3f0ae001 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x40e0ccba rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x424d9a1e rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4b23b10f rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x4e2b8ab2 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x514c7584 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x59df8c39 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x5f20699a rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x616d63bb rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x7a4d7a86 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x7b184ebf rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xa41bdf5f rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa6f7800d rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa76f7657 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xaf58cad6 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc1063a41 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc92e1ec9 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xca9ae4fe rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xd4e1b0d8 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdb24192c rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xeb4f71aa rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xfa1a7fa0 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xfb406e23 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xfff941f4 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x1a123a4b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x493369c5 sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0x57fc7810 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x84aefc85 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x03f12f49 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x2765214d smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x336b588f smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x46d63cc2 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x67dc2fc0 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x88c08f7b smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xb1cc91b1 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xd531a482 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xe983c535 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf8fb3f7a 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 0x629fa3c0 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x765be4f0 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcba06a79 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfa3be210 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00033783 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x003eccda sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01ddc76f sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028f8601 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x059dd626 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f41572 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f859be svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08b0072c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a9389a rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfaada1 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d34a68a unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd87be0 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0def97fa rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e4003fd svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f99a597 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe51438 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cf1f8d xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e3523a rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12bfa493 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12d1e1f7 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13f0c007 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142248f2 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181c34c5 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18720623 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19931418 xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a277c92 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2a3ee0 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6a48cc rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b868785 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7da4da xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cf3203a rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1f83f5 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e3c4e56 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb3a6c7 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fdfe19b rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x217a62b7 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b6518a xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ba1d8e rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24415049 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d49f2d cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252731d3 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ff61c3 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2669ab8b svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b6a79f xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a61199 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a046770 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc1ff7e xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c51a75e svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e1c1727 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa548e3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300c5e02 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x311958b5 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31c0748c rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32baf162 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33864dd2 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33eedf89 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352656f6 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x370a29dd rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3859d131 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38751b36 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395daeb2 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3987dc22 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d222495 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef8a625 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1d58ef rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f24d0a8 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9d7ead rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f572d2 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41814687 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423a6f11 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42529036 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429561f2 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429de328 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45f91888 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x471d2f7c xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47c859c5 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48556e6d xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aa9f084 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdb4c9d rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c12ab72 rpcb_getport_async -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 0x502adf9e sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f654fd xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50fc8296 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5187dcb5 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x531e6d3c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543ff43e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x544cd75c svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545a25f6 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e71b13 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56175430 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57502f15 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57cc4681 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58879bad rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a573a3c rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6a0391 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5deb3d93 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df6bd74 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f192c91 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fda176e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6036c1d8 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c932c0 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6440f519 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x645f2862 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a0cd48 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b20f51 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69470ffd __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af0507d svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c296195 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff1a571 xdr_reserve_space -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 0x7207ac25 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721e194a rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75997d24 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75f33111 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77185fc1 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771fe41c rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c51628 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7acc2e2a xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba6d848 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7beac5c3 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d78274f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e066e96 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e3bf532 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7efc9406 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803fc641 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8275cc1b rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83937347 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839aefbc rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83af4846 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8641249a rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b3b71b rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87126312 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876f1922 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x899919d1 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5b94da xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c06d365 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d6b3780 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8df37c10 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6a13b5 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9fab56 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x910a5ab4 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94d65fb9 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9603c7cc xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x963543fc rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fb6a92 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970aff3e svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971b8586 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a486038 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9ecb19 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9baecf72 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bc2dd72 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5a42ae rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f54bdc6 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f9e4b1e rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa078b844 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d9afa1 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0edf393 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa19367a8 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a2b3c1 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8a73f9e rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f7d318 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd2fab4 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf29ad98 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf68f3d3 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafea925a svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb03c78a8 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb03e80af rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb247cb9f svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb46b68ca cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6cf28d9 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6fc9d97 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72f9f8e svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7eeaebd rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9479a32 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc91ac54 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdfb877e rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe35e98d xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef56f1a xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf4d1ea7 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc196a355 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1c7f3cd svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4dbb4db svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67f5ad9 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ebf2c1 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc92ac106 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca174242 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd11cb60 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdad5c5d rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdf0f3bc xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf418384 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd073ff7c rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0cbbe15 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd145376b rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd18930c9 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c984c0 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd410ceb4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5000ad9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd62116a4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6af965f xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8512779 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9bd9933 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda808c2a rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1eca9a xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb34e3dd xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde2f777d rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeec0352 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe00e2b7b svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3010744 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48c3916 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ff3ad6 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe82d2aa8 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea5cdc37 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea89e5d1 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda8edfc 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 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1129a68 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b6978c xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e9330d rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57b5de2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa702e53 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb168e0e xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdccdaa3 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec5a778 cache_unregister_net -EXPORT_SYMBOL_GPL net/tls/tls 0x02af9661 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x6bb4022b 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 0x056880a0 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f10bbf7 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11a1997e virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17c58e11 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25b5d576 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x269ef9b2 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38722783 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e7e217b virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x406a0fc4 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4558e6fa virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46a2e26e virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48f627f0 virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x540c2b8a virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55b6e96a virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6acc1998 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c55d835 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6db62b05 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x709f5cdd virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fc1935d virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85ccfb70 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94ee7478 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97753380 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b325b13 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ecf6965 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5f47231 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb84f3b6c virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf7c2a37 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc6697a65 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc6bf4ad7 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd14ae2fc virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3c7e9f5 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe16e02a9 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf32e4368 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf37ed0ea virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf49ac353 virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff498348 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00a22a58 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08cba9b8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ace7d2b vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0be411d5 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ab61f48 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d49fd46 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e763468 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e207ca5 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f82d897 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60e82bbd vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eadc3f4 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7d4051cc vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82d10323 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8ff27435 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb35dec7f vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc172bd3 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6f58d36 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf656eb79 vsock_add_pending -EXPORT_SYMBOL_GPL net/wimax/wimax 0x028468b2 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x19e95f2e wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x442aab52 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4c9e78be wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x58a79747 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7d9e1594 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8f2897cd wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x98acc356 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa24be607 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb67a6a35 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1ab7aad wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xec60d264 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xfb9b4d22 wimax_state_change -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a990927 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1243ee81 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2cda4e27 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37a0339b cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a9e2511 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4baef569 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84c6bfbc cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8888123d cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x88af646f cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f17d9d3 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x92d1ac7a cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaebc48fa cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb789d828 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca40dbfa cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcccef8be cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe268ba3b cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x44f2b6a2 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x54bf1ed3 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5f985449 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x615a98dc ipcomp_output -EXPORT_SYMBOL_GPL sound/ac97_bus 0x80d118fb 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 0x1cf9fc02 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x2032aac0 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x301fb9f2 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x37fe4ebd snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x53ac2b5c snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x577e35ab snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x6c95dc3f snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x8fdca5e3 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL sound/core/snd 0xaf8680dd snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xba53c0d3 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xc8326cb2 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x01656a02 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x15d02339 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2b9faef8 snd_compress_register -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x81def00d 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 0x1187fe7e snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33aa20c7 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4372eea2 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7f16d456 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 0x9f542874 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb4c8b59c snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc62d38cc snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xce623fd2 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd485117f snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf6f5891b snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09cdecdb snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0d03d72b snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x12e822bf snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x23feca60 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x32d16dcf snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x39359971 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c1ce49a snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6086d1e8 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x86d5618e snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x90d8420b snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfe6eb8e0 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x5d662321 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcc9be51b __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x176725b0 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3549320c amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x49fdfca8 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa2a8a7b1 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd4e57852 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe243b29a amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeceff2fc amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x05162aa8 snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x057f99bc snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f5fcd1e snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11b66105 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2a6930ad snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2f90d98a snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37276c08 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3fc16248 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47444e03 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4d4f0db2 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x55111288 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5a373a2b snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6720d738 snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d832c5e snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6dbbddd5 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7199a2fd snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7abac3d6 snd_hdac_ext_stop_streams -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d67aae2 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ee31002 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ef63ebc snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x80edd2dc snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x82a4c0d1 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83f8a016 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9edc804d snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbca5dcb3 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2cd6cac snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc67db1d7 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb4edd77 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce2bccd9 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd29814f9 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbcc44f5 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe8510ed8 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe93bea36 snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xef6a6e75 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2339905 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2e15c5b snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf336488d snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x024757b7 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03019f46 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03bbf2b2 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07217fdb snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0793092b snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x085f3c6b snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e3e1c8c snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12527bf7 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1415992b snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16501a49 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16df7f5a snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c327a5f snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2425e475 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x265037c8 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27058f6b snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28066f86 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29797fdb snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e1faac6 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a0344ae snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b99cb6e snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ffe4f42 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x463142f5 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x477824f8 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47e66105 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4aa7412c snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c349df6 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dcdcfcc snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4df15c25 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e0246fd snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e39fe88 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x506f6566 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54ce51e5 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59434712 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d42bcc9 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66bc8093 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67a4406e snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c66e504 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7211d3b7 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x738d59ed snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7792b95c snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7da161a7 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fee3065 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81261178 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x862d14b0 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8788ccc6 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x886e6677 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8979b9f4 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89d0401f snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c2b388b snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e004d9d hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e529431 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x913e9371 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x958b5c5e snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0861ce4 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4a01998 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa63132d8 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8678d03 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaac3d175 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaac640c7 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeb35265 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0bfe753 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1eb0b38 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a7bac3 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb78d780c snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb18b4d0 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc69e3adf snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca6c6ee0 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaa744b3 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb671d32 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd5df58d snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce4bc684 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6390894 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6bfa2e7 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd960e011 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd69d421 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0750231 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe099c362 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe164d8d4 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea5dffa9 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee14979c snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf151be0a snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf61a7d1e snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfabddec9 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfadf0fd4 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xbf5fbe8e intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc3ea8b3f intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xf1a79af5 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x00f92050 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cbf504d snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x61bb7fa1 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x92b0759b snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xacb22add snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb46041e snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0272f853 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0343510f snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x045cd3f2 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ffce0f snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x073a6912 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07ba2c12 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07f0dce0 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bb71fd8 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce1114a snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11f5b3ca snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136fd26b snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c0d622c snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eb01f70 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fe05781 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2053f59e snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2452b680 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33774ccd snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36349911 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36510674 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cc4c9c9 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cd9ec08 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2e39f2 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e814d23 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x407b809c snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4144a842 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41a4b996 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44db950f snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4841fe6f snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aec2aea snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b990759 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c171292 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6a1a55 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d0cfa83 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ec6af0d snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51e961e5 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x561c919e snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56976233 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x582be72a snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a43a66b __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bdd0207 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d51ee0a hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e593aea snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606dce1d snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60f7c98a snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x647cfef4 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6694e089 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x697f4692 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cee2ec4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71122a0d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7160b196 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71b8413c _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cbe6ea snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x779dbf53 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b08dc9 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x791d7b79 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b691022 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e2aea0f snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fadc06b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81639c94 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85657593 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x864ce618 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86db93eb snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab59097 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cf36367 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ec73e5c snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f646a03 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x909547e4 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f59e1b snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a76d163 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad1c8af snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b3d3ee1 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa10621f8 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1161ca5 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa40a7121 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4103bc0 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa859d448 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab594b5b snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad67523d snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2f82302 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb56551d1 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60ddf82 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb70fa46f snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c429b6 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9e05199 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba65432a snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb15a1d7 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6554e33 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9789825 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca9774ae azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb3b4cc5 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb7e06ab snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcccf5403 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce60f829 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce653258 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceb08cd8 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceeea86d azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0309fd4 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1dc2dd5 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd59b3c33 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6581109 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd875cf73 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9800b96 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9e0a5a9 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdde739c8 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe12ffa snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdff8094b snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe01834af snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1a19e5f snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2fbe1b0 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3392a77 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3ba1abb snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe41c0623 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe67935b7 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7f93ddf snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8889b9e azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea3afb74 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd0681b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee407cbc snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0c5bfe4 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfabf6812 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe5a7329 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x02ab1e87 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e38a135 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b24cfb1 snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x216c0b49 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22c9100c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28d8e05a snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3251e1b3 snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33c0962c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x65683dc4 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6cbfde78 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7816ba27 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fbb6238 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x88c9a440 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2c38e38 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5a6ec4f snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaad981ea snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5997c67 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd6b86678 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8f03cd1 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebe0f2cf snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebfa89cf snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6da043b snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x2bcc1e0b adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3ea813de adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x05e3d033 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x14b213f5 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x434e3e13 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x504ded4c adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x54d78561 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5a30a26c adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x60da8a1f adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x701a2f1c adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa6a351a5 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc4ccf345 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7b9fff84 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xcdcc7dcd cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x167fbee4 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x18f9c24e cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3b0bba4a cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd9104213 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf06bd858 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x694d6fd8 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x704ecd26 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xab2c373b cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x41aaa1d2 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xae7e5270 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfbd07b9f da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x32f0af19 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x64ff4c84 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x2971c092 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x01c7892d hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x8890a072 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x50bf199d hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xfab34103 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x51ca3490 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x37351e52 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1370b786 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x414f82d5 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xe052185b pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x235e05ec pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x46ff2efd pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8d32382e pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x9bf048fd pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9a70244e pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9b5141d7 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe137dc2e pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe7ccffba pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x66172b37 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x81473f36 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb0f9766d pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfc929dae pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x28b3c3f9 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x161de198 rt298_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x00e9e3fe rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xadaa56f8 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x48000e46 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9d251040 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x5fbc2975 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2190f836 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x371446f5 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbf11e2d4 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc30b35e9 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xb36a38c3 rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x91926da5 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xec54b938 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0cbb4384 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x145ec64f sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8fb3eeb7 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd27fe001 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xddf1ceae sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x77adbf7a devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x512e8429 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc31c6912 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfa7f0f02 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb3fe1cf8 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x187826a1 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1e4e0f1c wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2fd75734 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe1b606fa wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xea276cab wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x074f4428 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4b89824f wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x255d51bc fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3681b044 fsl_asrc_get_dma_channel -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 0x1c159a76 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23f861a5 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x292620b8 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2edd3ef0 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3cc18ee5 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3e39e205 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5762c07a asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6fcdd4af asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83a9dd6f asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8812db32 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8fcd8c3b asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x984f5ba5 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb143a2d0 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde50b2f7 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea4ad868 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea97072b asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf1d3c5bc asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf68645ac asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x940cbbd6 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xee75cd6d sst_register_dsp -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 0x7ef1b513 sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x89aec6dd sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8e51a216 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbc3de95a sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xef58b20d intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x00899c7d snd_soc_acpi_intel_baytrail_legacy_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x08c27da9 snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a6c545b snd_soc_acpi_intel_icl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x210ac95b snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4c028d30 snd_soc_acpi_intel_skl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ea3c4ed snd_soc_acpi_intel_glk_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x52195614 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x59a53c32 snd_soc_acpi_intel_haswell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a93176c snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6038550d snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8b43f2f0 snd_soc_acpi_intel_baytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x98f106aa snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9c3d1561 snd_soc_acpi_intel_hda_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xcbb222b3 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd5af17b7 snd_soc_acpi_intel_ehl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe7826509 snd_soc_acpi_intel_broadwell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0504fbb7 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x091fbbf3 sst_dsp_shim_update_bits64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0ef7f2c7 sst_dsp_boot -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0fb5eb4b sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1003eabe sst_dsp_dump -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1250455d sst_dsp_ipc_msg_tx -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 0x1fdbbc02 sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2ec79568 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e8d5dc0 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46f43eb0 sst_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4c78569d sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5133497f sst_dsp_reset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5bdc1ff6 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x62124d01 sst_dsp_shim_read64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67844cb5 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7316a409 sst_memcpy_fromio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7843a4e6 sst_dsp_shim_update_bits64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7ad208d8 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e1a2e9b sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x859eaddb sst_dsp_shim_read -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 0x8a932900 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x966b4af1 sst_dsp_stall -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x97d07c11 sst_dsp_shim_write64_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa5c0512e sst_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf554904 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc48ef8bb sst_dsp_ipc_msg_rx -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 0xd9bc91f9 sst_dsp_shim_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb8beba2 sst_dsp_shim_read64 -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 0xfc86e9c1 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfda23775 sst_memcpy_toio_32 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x015602f3 sst_module_runtime_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x0b08689c sst_dsp_dma_get_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x0d624265 sst_module_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x25575fd3 sst_mem_block_unregister_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x29c01ee7 sst_fw_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x309ee288 sst_module_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x32223af1 sst_dsp_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x56dbabb6 sst_module_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x5d981e30 sst_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x73709071 sst_fw_free_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7525478d sst_module_alloc_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x772c0f88 sst_block_free_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x78f9642b sst_block_alloc_scratch -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7c011153 sst_dsp_get_offset -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x80a6ab42 sst_module_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x90c27b7b sst_dsp_dma_copyto -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x92000e38 sst_dsp_dma_put_channel -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x994e9db7 sst_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x99a5b10c sst_module_runtime_restore -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xaf23b75e sst_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb1c6e77f sst_mem_block_register -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc1a47561 sst_dsp_dma_copyfrom -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc53020f4 sst_module_runtime_free_blocks -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xcd9ad8ce sst_module_runtime_new -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd25301d5 sst_fw_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xdc55fde3 sst_fw_unload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xdd15d5eb sst_module_runtime_free -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xec0fbb23 sst_module_runtime_get_from_id -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf445a1d5 sst_fw_reload -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf5bc3506 sst_module_runtime_save -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x26f5ae5d sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3510b20a sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x36144e4e sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4cfd4030 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5b8481a6 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6bba9b1d sst_ipc_drop_all -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd09514e9 sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf1e07a38 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x0aed1a72 sst_hsw_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb40ff91f sst_hsw_device_set_config -EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xbdeec8d7 sst_hsw_dsp_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006b95ff snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00702a6f snd_soc_find_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00df7680 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x067eb660 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06838959 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08eee59c snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x096a0b56 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e79ade snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0efca78e snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f3bde00 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1219d242 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13631560 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1413092c snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1504223a snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1598fae7 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1604fb62 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16e388f6 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x176f8806 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b56f7b snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18d74389 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3b1c24 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e53baa0 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fec02fc snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2115e816 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211ca4ae snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229b2515 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2393970a snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24e91a11 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e159b5 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e2c3d5 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29d39c95 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a35bce0 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x332a3a45 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33e752f4 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34759f70 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x353c62b8 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3923a2bc snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39714f64 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39bd0dbc snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a24a248 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a3ee84a snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a529233 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d846b6d dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403ebc9a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x424df51d snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42a20844 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44514be1 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45879a6f snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b217a9f snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bdad215 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c5982d2 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c8e2ae8 snd_soc_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbf43ac dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb0ead2 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52586c19 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5342e282 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53721517 snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54dd6b94 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55c3a9a4 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac900f9 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cdfc9b7 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db1cf4e snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x603ca07d snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60be7d47 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61b4de0d snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62a3fd24 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668a9f38 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ebcf5d snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a4c93d6 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c90e248 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fe0a03d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7344839b snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73b7f7cd snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75d7c7b1 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7601de95 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7677e280 snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76808d2a snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f002e9 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a7a0ca snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79ad1eed snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806335a7 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82b5a78f snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x860e0904 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86eb7a08 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86fc0490 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a2ad32e snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b0babf7 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d1a5a4f snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d9cff3a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e7d7b3 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9350dca0 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93a3a8f6 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9636e9c0 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96d482f9 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b5f735 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99960b7a snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c0f89be snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa128d6b7 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa337ed8e devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa685e49b snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa75c05c1 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9e08279 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab5a83c5 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac2a5931 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6d6a71 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad31b841 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf81aed3 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb237fa69 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5b4fabf devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6273727 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb933263f snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb977e1fd snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcd9f754 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe3f38c1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc09304f4 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1871a54 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2cc6aac snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc31482f7 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ae6a6a snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5f0596d snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5f8e8ef dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc793057a snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8a99f56 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc982e6b5 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9d0bbf7 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccbf80d7 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcedf61fa snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcefa5997 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd47ae4 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd50dc908 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65b55b6 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7c7c1e1 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fed828 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d1939c snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd929a090 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb78fde3 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcb7f071 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd13a439 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd62de79 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdda45d3c snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf07351a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfd613c0 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0fd2d5e snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe242c473 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe244a370 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe555a30c snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6dc5422 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f0b0e7 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75015d9 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8ec3f3b snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97f8edb snd_soc_component_read32 -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a8720e snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeac42dca snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb698c64 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec3c7412 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed432492 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xede5be8f snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf235fe43 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2402c38 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf42b3a44 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf470ffb4 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf562a64a snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa1a5cb3 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc1c8c74 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd1b4288 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdebc5a3 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff189a37 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff7efd15 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x060815e7 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1adc7fb3 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x35e76d7e snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xee70fef6 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15451125 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x225e4d00 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x418336af line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5410a658 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x71559242 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73a73b5e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x789cebee line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x91bfc39c line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa3796aeb line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xacf3c2d2 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcc170a17 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce48a656 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd8302955 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb8a48c5 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf606221d line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL vmlinux 0x0003ab14 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x00197225 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x0029df27 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x0043c723 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x00474f96 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages -EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x006cc544 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x007a983f perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00989504 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x00aed265 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00d5e4b4 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x00d6992f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x00db0248 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x00e91a21 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x00f99e17 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x011da819 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0153a0e1 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap -EXPORT_SYMBOL_GPL vmlinux 0x0198a782 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01ce98a1 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x01d74a71 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ebfe10 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x01ee1340 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0205e0c6 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x02279606 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x023b623d blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x024078ea edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025636b6 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x025e8d60 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x026359fb regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x02731683 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x028def38 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0293eafc fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x029faad8 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x02cdda74 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x030cda34 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03253848 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x03304368 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033f07e4 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034fa847 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x03581a60 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x036bf3bb param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x036dd986 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0381e8b9 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x0386a2a9 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03891fed __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03ad47a5 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d3f20a ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x03e32b6b xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x03e3bb1b ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x03f43b9f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0407949b xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x04289ee7 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x042924a7 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x0432dfc5 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x043889d9 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046f935a bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x04868c86 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04985f35 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x049929c0 hv_stimer_free -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cf82ca kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x04d7d5ea device_move -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04f451c3 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x050d9175 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x05101427 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x05231f59 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0537b13b crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x0543f45c dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055a5ec7 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x05644175 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x05c45860 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x05c7113c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x05d5fb6c pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x05e6c104 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x05ec3e95 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x06057a88 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x06169a20 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065773ce xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x066e207f devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x068a68d5 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x068fc700 setfl -EXPORT_SYMBOL_GPL vmlinux 0x069ba174 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x06b11e74 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x06d22271 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x06de603e irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x06e22cbc dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x06e2616f __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x07016675 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x072109d5 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0724970f power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x07266d0a pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x072dbaa7 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x07329b0d pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x07431d6e fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x074c747d cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x075721de __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0780fe47 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x0795dbc7 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x07ae3aff node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x07afe23d i2c_dw_read_comp_param -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 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x07c9617b pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x07d0161e tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x07d42cc6 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x07edeba7 hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x07fcfa9e tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081e526f sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x083263e5 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x0842c904 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x08549a8f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x0857ad95 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0865ec75 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x086e6af1 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x08711ba6 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x08738bc5 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08831070 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x0887fb4c gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x0894188f perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x08a702a6 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x08b32e89 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08c8566a blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x08cf08ac pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08d921ac regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x08dbdab8 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x08e0f6ca sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x08e70ddc skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x0903a774 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x09148656 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x091c5aef pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0922ff98 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x09255e36 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x092ae04f alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x097f7048 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x097ff060 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x098e9666 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x099a61b1 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x099de9de class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x09ae0719 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c1c7dc ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x09c6c732 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x09e94874 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x09eca7c0 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x0a00c6e8 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x0a0937b0 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x0a10c167 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x0a17ed7a sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x0a2133e0 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x0a2239aa __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x0a2751ba blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0a35cfbe blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x0a3edd2e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x0a40b059 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0a47419b nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0a986e53 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x0a9c3b8c xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x0aa4c78d spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x0ac5dbb3 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x0ac7f100 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ac9e3a4 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x0acff98d pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0ae21e3d fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x0ae5736a pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0aeea20b iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x0af8ac5d __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b07be21 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b24e96d __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x0b2ada35 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x0b2d8ebe unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b319cbe gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x0b424e09 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b55be08 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x0b569701 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x0b6eb1a8 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0b7ce6fa device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x0b7da0e9 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x0b84a6d2 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b91685d component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x0b92455e blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x0bb11296 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0bca01a0 pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0x0bca0948 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x0bf2584b spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0c034962 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1df2ea pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x0c1f99fb posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c26ad1d devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c317289 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c377ea9 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x0c378ca7 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0c45e242 of_css -EXPORT_SYMBOL_GPL vmlinux 0x0c478801 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x0c7c4168 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c86a8d1 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x0c89fd20 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x0c91dde8 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x0c9fff03 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x0ca4ed06 split_page -EXPORT_SYMBOL_GPL vmlinux 0x0ca8f811 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x0cbb781d cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0cc001cf regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x0cc8a145 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x0cdb0f56 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0ce317ed crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x0cf49e2c __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0d0011f7 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x0d0553a9 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0d19d4d4 virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d2051ec bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d3778b5 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x0d40e466 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d593836 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x0d622ecb blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0d773c51 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x0d874499 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x0d89756c pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0da98af5 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x0db8d87a ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x0dbc27a3 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x0dbf7b7c sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dccaf1b rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x0dd2923a bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de334ae dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e086f8b gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x0e0aded8 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1a71d1 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x0e1bbba1 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e22145a devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x0e25db81 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0e309f95 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x0e30a859 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x0e385b07 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x0e546649 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x0e5fee62 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e794478 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x0e805ea1 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x0e9a9180 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x0ea2ebd3 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ec71de9 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x0ecde158 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x0ed94f20 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x0efa9134 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x0f0075a0 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f1f3161 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x0f23145f component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x0f2a1150 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f2e2563 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x0f4bb0f3 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x0f76473e cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0f7a5c33 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f965c87 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0faa7a80 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x0fc1986d sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x0fc2b390 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fdb5883 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0fe7dd6d ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x0fe91e91 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x0feae38c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x0feaf718 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x0ff2cd8f pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x0ff71999 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x0ffc12bd fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x10011848 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x100b6dc6 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x100e4cd8 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x104da5ca regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x105a5b2e bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x1078b298 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x107dbfc1 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x107fafaa exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x1081f66d pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108c3ff5 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x10a0407d bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x10a58949 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x10aaf8d3 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x10b2dcdd ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x10b507bb hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x10c17030 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x10d052a9 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x10eb14f3 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f75b03 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x112333ce handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x115a143b ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x116712eb __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x11783637 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x1178d996 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x1189f862 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x119106d8 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x119f45a3 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x11a0e1bb sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a65f94 __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x11b2db9d badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x11b5ff87 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x11b92b7b debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f1ae54 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x121779fc ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x121903c0 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12301eea acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x123499c6 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123813fd power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x1248da7f fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x124b35db crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x1268d821 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127bdd87 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x12856fe6 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x12bfb1fd irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x12bfd476 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x12c02aea dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x12ca04ab devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x12d255ff serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x12d91525 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12dd4405 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12f0fbf4 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x13032523 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x1307843c crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133599e4 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1345b9fa tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x13515196 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13661deb uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x13737962 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x138793a2 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1396c671 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x13a6e610 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x13ac10f4 vmf_insert_pfn_pud -EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x13c1c6d2 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13eeb542 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x13f170e7 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x13fff79d sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1404e47d devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x14065444 pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0x1411e97a ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142ebc32 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x14338759 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x14375755 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1450f38e raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x146c05db thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x147523d6 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x1477f046 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x14863d9c devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x148ff1ef dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x14a08ee4 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x14a26121 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x14a4119c acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x14acd4f0 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x14bc1a94 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x14c64967 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14ec1a6c crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x14fcf623 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x151ca972 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x153826be security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1546c400 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x154c0ef1 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155e175a genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x157fc2dc genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x1585b432 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x158ebded device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x15b89026 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x15ba0c49 net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x15c79e43 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x15da789f irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f35712 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x15f6adf8 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x160898f2 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x16394b40 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x1642a7dd exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1651823c pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1673dbd0 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x1675ca67 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16892b27 uv_bios_call -EXPORT_SYMBOL_GPL vmlinux 0x168978da sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x16a08b7d i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x16a40445 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0x16aadd10 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x16ad658c devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x16adee64 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x16c6de3c add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16e54ba7 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f2d7ad usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1701c3b1 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1715afa4 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1723408b ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x1725082e proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x1729e272 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address -EXPORT_SYMBOL_GPL vmlinux 0x1750db33 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x17528f00 pwm_lpss_suspend -EXPORT_SYMBOL_GPL vmlinux 0x175ee60c class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x17ac9410 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17b1d9f5 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e07792 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1805fd7c platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x1822fca3 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x182e5a36 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x185180f6 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x1853a586 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x185e725d rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error -EXPORT_SYMBOL_GPL vmlinux 0x188d83f2 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x189aea33 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x18ab90f9 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x18ae306c dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x18af2d73 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x18d5fed0 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x18db1407 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e9f226 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19269d9e extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x19334109 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x1939edd7 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1970d112 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x198c85cb debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x19919e73 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a8667b proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x19bc5aaf cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x19d03c07 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a10015d crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a2d72ec pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x1a4b3aba devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x1a4c0c34 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a5a20ff devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x1a63df30 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a71b36e irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x1a77892c devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1a7f6104 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x1a8e75fa __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x1aa23b36 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x1aa76d5a dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1aa8d28f dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x1abd0295 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x1ac036c6 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1ac69923 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae4ec85 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1aeaf60f devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af3ba26 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b059621 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x1b340140 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b35159b dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x1b3de4c8 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1b42019e rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x1b4ea9be sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x1b65ea5a gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x1b7465ec devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8956bd dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba7dac6 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bcb4aef dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x1bdf64a5 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c004175 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x1c0c26c1 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x1c341b61 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1c3a4ea1 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5e9c6c blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c70fdaf rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1c735891 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x1c7d65ec __memcpy_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x1c802059 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c81f0f9 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c892bdc __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x1c8d7ad8 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x1ca1a0e7 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbb9b86 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cbdc018 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1cc6de72 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x1cd7ac86 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x1cd7f9ab blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x1d098367 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d16994c rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d6d9189 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1db11ba9 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x1df982b0 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e11d11c tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x1e194796 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x1e19f589 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1e223efb blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x1e440671 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x1e445628 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e70a56d usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8f737a rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ea29276 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec0f1a2 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1ee806b6 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x1eed64ca trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1eef02b3 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x1f041478 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f113617 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x1f16df00 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x1f292d38 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x1f38e8b5 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1f41f63d virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f7ece68 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1f81ed29 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fac9aa6 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fba0c18 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x1fcc6057 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x1fcdce14 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x1fcfde03 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x1fe0dfe5 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff79c8b __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1ff976ee rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x1ffb0cdf irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x1ffeb9a3 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x203d4306 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2042ee0c __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x205db0ce dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2088c5dd phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20b5d0ef ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x20def0a1 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x20f23a54 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x20fbdc27 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x20fc06a4 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x212e360c acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x21436810 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x2143f029 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x21578cd6 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x215db9ca inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x215f3cba dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x216b0590 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2199e136 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a5c5c3 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b5b755 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2209463e tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x22149379 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x22262e97 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x222c3bf0 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x224ba1f8 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x2250af54 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x22577216 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x22595a3e kick_process -EXPORT_SYMBOL_GPL vmlinux 0x22633ed1 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x226dbe78 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x226f670d of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x229021d6 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x22b64d53 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x22fb6f5b subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22ff6bd7 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23479bad uv_bios_get_sn_info -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x235ff39a blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x23621ae3 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x236f1d78 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x237d2df3 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d39bd led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a26885 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x23b03899 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x23b3944b devres_find -EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23b5a015 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x23b7c50d edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x23ca8d63 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x23d0f28a ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x23d17842 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x23d89f3e handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x23defc4c max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x240451ce ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x241e8e98 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x2425efad trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x2429c2a2 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x2431b692 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x243dcb15 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x24453500 __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x244c6ab9 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x245a3519 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x246192fb posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2476bb79 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24999e3b phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x2499a655 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x249edc44 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x24b025fa pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x24b8cd48 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x24be49e4 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x24cb53b8 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x24ea240b spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fb365b iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x2507ced3 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x250dc138 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2510b690 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x25147526 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x251c6384 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x252b750c mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x252cdb88 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25436b8d cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2564d256 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x257b27ca sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x258f3e1e pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0x259087fc driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x259214a8 virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25ce9414 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x25dac26b pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25f0346c fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x25f74df1 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x260d3fda ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2613a878 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x261ccf14 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x26213282 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x262bb5e1 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x2634d120 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2659cb12 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268a0daa pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x26974b23 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x26a13424 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x26a7da8e pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26acac96 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cb4c56 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x26cc376f tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x26cf2865 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x26d8adb9 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x26e62c4d sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26fae538 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2706d24d xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x2735dbcc store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0x2743e5c1 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x274e16cb dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x2756556f watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x27566827 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x2769d524 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277cec01 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x2785efc0 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x278f52ac devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x27a7e2c3 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x27b578d1 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x27d1c068 clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x27ddce6a devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x27e2dcee pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x28259ebf net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x2826c70e crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286b62fa gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287066ea crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x28792f00 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x287d024d efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x288371df ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x28851009 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28c2cd6a smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x28c88af5 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x28d072da serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x28dcbc5a rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x28e30149 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28e78863 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x28f458d1 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29149e06 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x292543e9 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x292c11cf pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x293fa039 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x294fbc76 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x2958858f agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x295bbec9 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x29649545 xen_pcpu_id -EXPORT_SYMBOL_GPL vmlinux 0x2967bfcc iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x29850e9d devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x299b5118 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x299bdf69 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x29d3b900 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x29e1828f acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x29e7259f skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a134cb8 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2a2875fa hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x2a2ac201 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2a45a374 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x2a56491c rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2a5e2311 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a733662 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x2a863a00 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2a881e33 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x2a8c0548 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x2aa5bb04 clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab46eef i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x2ab59a56 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2adbe84e platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b08dec0 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b13e21a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2b24bba6 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x2b2c7ed0 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2b396391 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x2b3a2459 intel_svm_unbind_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b3be842 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2b3c184b cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b46cab4 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x2b5d5a8b fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x2b6381a3 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b76d612 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2b7a3c00 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource -EXPORT_SYMBOL_GPL vmlinux 0x2b807e43 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x2b8a2ba6 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba309b5 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x2bb0276a clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb142f4 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x2bb7d53a pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2bbdf2b8 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2bbe5572 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2bee0921 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x2c1bc522 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c22b0dc max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x2c2a3785 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x2c2e7458 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c5ccdd6 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6c3f6d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2c6f8589 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2ca7e42e of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2cab535a sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x2cac7cdc xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2cad8ede wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x2cb07688 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x2cb408c4 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x2cc6ee86 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x2cd1deab devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf2dacf scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x2cf316ca usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x2d074e83 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x2d10cca9 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x2d1998e4 PageHuge -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 0x2d45b881 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2d4e5101 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d71d37c ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x2d7c03f3 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db7a812 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2db7c37d rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x2dbbe93e nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x2dcbc105 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x2dd5886a devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2df4550a devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e10ca19 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x2e13c99f serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3413c2 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x2e360a5b cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x2e388bfd inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x2e3dafd8 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x2e4ad86a rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2e514ff7 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e7581e5 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x2e861848 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x2e8b60a9 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0x2e9a75ed __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x2e9ea108 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ee7bb82 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2eec7ede blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ef56368 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f34fa51 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x2f410a6b fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f46a816 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4ec1b3 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x2f52aed5 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f79c1a5 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x2f7c149a dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2f7c6871 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x2f7d2cf9 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f8588c6 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x2f96ce3a validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x2fa7e78d nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x2fd013b0 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x2fd9537e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0x2ff81c05 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x300bfe19 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x3034c878 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x30352d1c i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x305b1b8b crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x305d4d51 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x306a9f48 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x306f5576 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x3078d92e usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x3087d630 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x309f7cd5 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x30abc787 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x30c7dc60 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x30cefdb0 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30e1de3d usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311dd761 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3125c3dc perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3138e991 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x313a1487 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x313e5907 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x314b0e00 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316b1d5a dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x316c05b0 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x31749c89 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x317b7ec1 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x317df270 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31c5c51d handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d354b2 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e5f388 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x31f7e020 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x321e5309 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32518d5b ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x325632e9 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x325dd5a8 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x32627469 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x3263936d fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32769a0d bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3280f239 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x32a51cff clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x32a61c36 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b09e33 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x32b16e60 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bca565 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x32c70e03 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33163bd5 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x331aa5db rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x334ab932 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336177c3 devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync -EXPORT_SYMBOL_GPL vmlinux 0x336936fb input_class -EXPORT_SYMBOL_GPL vmlinux 0x336e0138 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x338256e7 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3391c7c4 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x3399c7b0 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x33acfe23 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x33b919ce serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x33bd0733 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x33dd9940 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x33eac1ad pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x33f2420f extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x33fa642b devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x34086698 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x341509f1 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34595677 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x345b2682 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x346a89b6 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3488bd92 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x34929ec4 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x349f9289 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x34a4a13e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x34cf56e2 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x34d3c42c pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x34ea27e8 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f4597f platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x35177ad2 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x352f06e0 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x353681a0 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x35498071 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x354b47cc ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x35684f46 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x356e8ec3 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x357084a5 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x35732236 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x35741067 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x357a4285 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x357c10f8 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a9616f crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x35b5f30e debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x35bc615b devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35d3bf62 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35db6026 cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0x35dd9683 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x35e173c5 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x35e990f2 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x35eb0c51 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36096ce2 cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0x361ba6ec led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36275338 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x36360578 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x3642a221 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x36584a94 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x36722831 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x36816f9c edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x36983668 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x3698da3d blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x369d2c4a tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bb24a4 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x36dd4106 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0x36f113d4 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x36ff0b9e skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x37077910 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x373c0675 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3741b660 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x376d243d nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x3770d982 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37922ac9 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x37a69a4c fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x37c0f3ce xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x37e4c9d2 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x37f0553b skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x381495f0 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384a1e9a clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x385d1ae7 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3898b387 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a8390d class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x38c4c8e5 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x38c66503 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x38e4e99f pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ef88bf usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x38fba700 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x38fcc6ea scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x392514ec power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x392efaf0 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x39408103 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3955073c crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x39585785 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x396a284a i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x396db066 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x396e2fd7 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x3982b7a0 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x39892141 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3992d365 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x39ac8dab device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x39d6207f ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x39d9905a watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39eea4f7 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x3a042036 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x3a06cf4a crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x3a25864d ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a32743a device_create -EXPORT_SYMBOL_GPL vmlinux 0x3a46a72b fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a982fc9 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9eff79 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x3aa7ca94 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x3aa831d0 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3ab011be phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x3ab1e06a dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x3abf8ac0 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3ac4465c acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x3ac5295e sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3adb42ab __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x3ae9170a device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3af25634 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3af6c226 xen_set_affinity_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x3b1b0a5a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x3b22e103 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x3b2bf435 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x3b301b17 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x3b4658f6 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b698256 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x3b6bf113 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x3b6d3dee sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3b809a27 blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx -EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b965e09 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x3b97abae gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bbaa645 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x3bbd805e pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x3bc01afe crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x3bc2a27a power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x3bcb6522 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bee7797 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c1094b4 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3c578a02 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3c5af72e xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x3c65ec2b tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x3c684422 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3c9d3cc6 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x3ca108b8 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x3cab098f fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x3cb85ed0 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x3cbed3cd console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x3cc21c45 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd537b4 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cdb3d23 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x3cdf4667 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x3ce38c8f gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x3ce87a7f __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x3cea0fa3 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x3cfb3ecd flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d118581 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x3d2c9630 spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4bf095 device_register -EXPORT_SYMBOL_GPL vmlinux 0x3d4e3f8f bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d631bb8 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d9a5a72 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x3da07f37 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3db84972 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x3dcabb32 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x3dcba361 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd78c7a flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x3de34d9a security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dec07b7 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x3defde35 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x3e21bde8 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x3e3dbba4 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x3e4e7546 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7ad55d to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x3e95595d dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x3e9e442e acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea797d2 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x3eb1df37 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x3ec3a785 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3ecf7625 intel_svm_bind_mm -EXPORT_SYMBOL_GPL vmlinux 0x3ecf9013 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x3ed3c060 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f109cdb mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x3f13a7d3 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x3f4c2fb4 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x3f5e808f blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x3f625d53 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x3f66e70e ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x3f6c52c5 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f9303b1 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f9cfdcc edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x3faae8f7 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3faf4728 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3fb67bb7 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe406a3 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3febc378 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x3ff9cb32 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x40300206 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x403ca6ee sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40450f64 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x404804f6 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x404c6841 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406cf285 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4073516e regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x408def0f noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x408ed661 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x409375e6 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409baa15 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x40a606d5 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x40ba238b md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x40dd1b5e debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f0de30 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x40f57a15 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x40f6175b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fcf504 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4101d772 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x4105d824 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x410e1006 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x4123259a pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask -EXPORT_SYMBOL_GPL vmlinux 0x413157cc serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x413390fe spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x413928fc cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0x4142d165 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414dc31f irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x415d00bd bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4187eeae mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419c41ac mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x41b10ce3 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41c1aeec input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x41cde17a dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x41e374db bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x41e53256 alloc_dax_region -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 0x420a32a9 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42116e50 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x422a47b9 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x422af243 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x423e47ec ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x423f11e4 blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0x4242d758 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426ed8e1 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x427563af pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x42816cca mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428dac4d serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x429522ee acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x429b4313 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x42b39d9a l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x42bfd4f9 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x42d18249 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x42e38135 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x42f06965 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x4300952e devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x430b8294 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x43136678 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x432179b5 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x432a3cec usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x432ae506 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x43418f33 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4342dceb tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x43526fa0 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x4369d8a8 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438d355b noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438e6b3b fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43d45d84 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f97061 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x43faa698 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x440e646f nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x44270f2e edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x4439ad8f sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4447b57a dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x4449fbe8 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448cace6 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x44ab4263 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x44ad9052 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c14fbe __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x44c2954b fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x44c440ed device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x44d9ed49 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f8c19f regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x45076edb device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450ae79a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x4513662f sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x45332d14 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x454aa2da gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x45515ff5 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4559e1f9 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x4561a6c5 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x45680a73 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x456ae352 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x456b5fd8 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4580e6d0 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x4581e6fe usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x4583c514 xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x45acae5a dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x45b48a16 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x45c328b8 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45f01399 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4611696f crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x4621098c apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x46224d18 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x463c924f efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue -EXPORT_SYMBOL_GPL vmlinux 0x4662fa43 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x466bca87 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x468470c3 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x46866990 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x4687f894 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a4cb33 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x46afec35 skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0x46b3b243 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x46b8a21f fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x46ba38bb bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x46bcebc9 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x46d0270c iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x46d9d803 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x46eaa1d7 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x46f3b9ca bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f58223 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x46f64a7e blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x46f7b833 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x470f9b52 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472a37dd bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x4742a2aa dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x47481e3e regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x475a2816 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47689bbb get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x477085cb lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x47802fc0 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ab4c7f sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x47bd16a6 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x47c5526c wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x47c8ab61 pwm_lpss_resume -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x480746de get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x481ead76 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x48232cba udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x48264650 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x485809b7 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4863e102 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x48662440 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x486685eb bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x486ef06e sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x487c50a9 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x48861693 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x48961977 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x489b672a iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x489eb747 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48d676c1 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x48de0295 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48f3284c screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x49032679 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x49042c9f regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4917a5df fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4925870c rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x49466c92 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x494f7fb5 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x4952e06b perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x495ce051 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x495d2215 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x498cbb1b sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x4998207e xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x499aab27 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x49a7d7d6 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x49be24c2 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault -EXPORT_SYMBOL_GPL vmlinux 0x49d51943 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x49df0b0f pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f30458 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x4a063fb6 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x4a0a8dbe scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x4a0bafa6 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x4a177a99 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4a25f2f0 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a587448 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x4a7f342d uv_type -EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab8409e pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x4ac04767 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x4ac69a47 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x4adf87cf efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x4ae13c95 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4ae685da platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x4ae6c31e debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x4b064c4c devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x4b11e31e led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x4b1ffd88 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b2bc5aa tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x4b75b6b7 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b7aa83d ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4bb985d2 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x4bba9e73 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x4bc66c5e list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd7f1f4 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x4be24af8 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x4c08df61 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4c0cb47e phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c4e8be2 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x4c4f880d clk_register -EXPORT_SYMBOL_GPL vmlinux 0x4c6c5f49 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x4c712fba regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c79edb8 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x4c7b0506 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x4cbd307e dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4cc85e81 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x4ccb5fc8 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x4cce854d regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x4cd47838 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x4cdc9f6c pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4ce9243b acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d077eb1 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x4d160cfe fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d4f5bc4 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4d552f74 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4d5eb042 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x4d66f962 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x4d6e29e0 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x4d797695 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d91dee9 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x4da18124 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x4da6b18a tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db75538 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x4db8441a serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4dea8e32 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x4e032770 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e29e3b0 tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x4e34170f crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4e42ef0f spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x4e5a6e23 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4e5b5942 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x4e666558 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ead4312 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef9da67 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f26fcbc usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x4f3977fa rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x4f434fe8 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x4f4e6d33 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x4f601a31 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x4f64bb0b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4f65b807 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6c8698 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f8af54e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x4f97c808 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x4fac6531 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x4fc8a954 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x4fcbd018 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x4fd0b25e irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x4fd281ab dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe9e67a dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x5006637e ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x501a5dd4 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x501efd6e usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x501f4f6a regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5026c42d blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x503b6373 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x503e53cd regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x50512edd inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x50583411 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x506e5b0e iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x50709f98 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x50807958 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x5082cbc4 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5089ad33 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509275c9 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x509ce6ea pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50b3a9df nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x50b9febe i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x50cc8e9d sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50db5b7f phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x50db7490 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x50e40313 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f6df84 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510cdebc tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x510e38e8 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x513116b4 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x5145136c device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x5151a10f ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x516f3f1c pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x51aff7d4 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x51bdb135 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x51ceed4e fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51e0afcb edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x51f142c3 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x51f4266e __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x51fef58f iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x521a668b sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5236fecf xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x52417303 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524bf09c rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x524ec125 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x525ce644 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x52715f79 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x527aaf18 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x5297e6eb pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x529beaf0 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x52a3eab9 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x52d4a5f0 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x5302e43e serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x53074478 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x53090925 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x53111fd8 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x5314af12 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5338a3ee device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x534a5f1d crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x535225ae dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x5361d4ba unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x538619d6 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x5389e27b scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x5393dc09 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x539e316d clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53bb8571 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x53bbcb74 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x53c47c53 apic -EXPORT_SYMBOL_GPL vmlinux 0x53cb3aa8 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x53d03363 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x53e87c9e pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x53f1bc9c wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x5400db30 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x54521edc acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x54739b7b screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x54803747 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x5489e1dd dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x5495c8e1 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x54b52dd2 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x54b576b5 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x54b74222 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0x54bc3204 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x54bca3eb cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x54d2688e invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x54dfa66c get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x55073861 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x5507eaa6 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x551b56b1 led_init_core -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 0x55542e3f spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556ff1e2 cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0x55717f40 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55a078b7 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x55abee4a crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cbca98 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x55d0b6b2 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x55ed2da4 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x560166cd iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x56043c00 regulator_bulk_force_disable -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 0x562e41ad serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56322766 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565c8b0a init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x5665941c nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5679e13d aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x5687e0bf pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x569567ce ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x56a7cad7 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x56acb2b7 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x56bfd295 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56f1485f dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x57007016 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x572a6879 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x57331d1d unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x57386202 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x573e18e3 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x574135f3 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574fc58c system_serial_number -EXPORT_SYMBOL_GPL vmlinux 0x5754cfc9 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x575fd26f sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x5778ea98 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5781b948 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579a98d2 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x579e1ec6 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x57adf1a1 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x57b00320 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57c92883 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x57da1bfa md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x57de2568 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x57ee6f97 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57fbb98c task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x580949dc debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x58277152 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x582d5bfd sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x58300307 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583ecbd5 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x58536a3d devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x5867acd8 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x58708793 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58829919 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x5891ab1a blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x58926d06 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x58a1eb19 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x58a8f67d fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x58ac0375 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x58bbe95f gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x58bffb1e dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x58d15bbd pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e17a47 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x58ef6b66 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x58fe92b3 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x590b573a led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x59187fec pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x591b7731 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x59282588 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x592cd774 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x594bb503 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x5965ed9c ping_close -EXPORT_SYMBOL_GPL vmlinux 0x5966e974 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5969fd0e devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x596fa16e xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x596fbdaf ref_module -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59ad436d sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bc0132 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x59bc85bf __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59bf2c6e scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59e6fb6b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x5a2601bf sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x5a34bf5f crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x5a4601e0 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5c9ced usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5a659cec sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x5a666f04 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x5a695f28 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a709e81 udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a920b50 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x5a9c25de ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5a9e2870 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab3efd1 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x5abd5f13 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x5ad8649a iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x5ae14d05 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x5af21651 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x5b21596f gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2537d4 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b516ec5 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5b5c8376 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b870dc8 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x5b884364 hyperv_report_panic_msg -EXPORT_SYMBOL_GPL vmlinux 0x5ba417b9 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x5bb289ac __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c01a090 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x5c141748 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c3046c3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5c3d8999 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5aa6cd ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6f62c3 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x5c927dcc da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cf62c8c devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x5cf7b271 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5cfe7487 bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x5cffc77c shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d0dff9f sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1b47a9 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x5d25e05c tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x5d2e7efd crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x5d408e30 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x5d50af50 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x5d6510cc device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5d6b392a blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x5d78fccc led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x5d87389d fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5d9aaa2e dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x5d9e5f5f usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5da57e32 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x5da5edc7 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dbd2f29 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5dc4b4f7 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5dcd311e hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5dd5fa66 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x5dd857a1 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5decf26f pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x5dfdfeef xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x5e0106fe of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1aa4ec regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x5e27a58d irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e64d79c netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5e6c5055 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5ea72828 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ec7dba6 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ec9232f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x5ecbab27 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x5ece06df security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x5ed39515 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x5eda9ddb dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5ee23ce0 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x5f01f4d1 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5f149db7 acpi_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x5f1f8925 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f1fa9f1 cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x5f227651 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f27fce7 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f370878 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5f3ce7f9 cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5f5421f3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x5f6776a8 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f771e01 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x5f7e58e0 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5f984e5d l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x5f9acac4 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x5fa0c5e6 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x5fa1e3be gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0x5fade324 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x5fc4b610 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fd27b56 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x5fddff79 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600dcc2d clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x601da2c6 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x60289a44 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x602c0641 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6055389c virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x605fd97f do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x606ddaff platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607c7cd9 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x60861382 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609c8360 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60b286dc blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x60bdb7f2 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60fc4bbc tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x6109c294 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x6128e1e3 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612e0ee4 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x612e27ed pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x6146457d ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x614e181c regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x614f9f54 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x61631595 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x6178b3ae clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618f8030 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x61985d4d regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x61a1578b irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61ae2352 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x61c3de8b sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x61cc95af transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x61d87f36 clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x61e2f800 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f88b66 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x61fd1108 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x6211565f securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623feed6 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x6242b2d7 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x6262ad1c acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6277475b arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62be96a9 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x62cd2b08 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x62d28c26 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x62d3568b tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x62e7507e ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x62eb4679 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x62edd742 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x62f48d6e gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x63060b68 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x630fda28 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631e108f debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x632055d3 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x6345da15 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x634bf479 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x635bbb77 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6375bc82 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x637fe2d1 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x638f2f6a devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x63917b7d udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x63aac719 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c40798 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x63c8fd2b hv_setup_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x63cd555d crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x63d52631 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x63d5744f loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x63db9b74 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f02f54 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x641686df unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x643114da remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x6442efa1 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x645566ac crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x6479908b crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649cc386 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x64a0e602 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x64a3f2d8 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64bdcaa8 hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x64d15d94 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64e5f49d netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x64e850e6 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650c78cf kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x6510da12 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x6516a2f8 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x6520db3a device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x65210047 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x65212fd0 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6541a5d5 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x65426b9b relay_open -EXPORT_SYMBOL_GPL vmlinux 0x65470757 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x655c867b ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6562d313 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x656bed8c nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x6572439f serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x658df60a iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x65a8d120 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x65c3aa9d nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d9609b usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x65fac817 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66196b29 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x661a1e28 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x6628a284 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x6635a067 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x6635be16 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x667367e0 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x6682e74e bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6695cf0a debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x6698dd2a sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x66a3e06a pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ce4a89 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66de7e39 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0x66e982ac watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x66f0fdef sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x6723a9f4 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x675201cc kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x675aab79 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x675eb2b8 devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0x6788cde5 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x6789e2a4 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x67911f53 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x6793d7d2 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67ab1107 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x67afdd34 devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0x67c2e277 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x67d9888b device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67e341e3 uv_bios_freq_base -EXPORT_SYMBOL_GPL vmlinux 0x67f9742f usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x682b7ce6 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x6832c253 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x683cdddd i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x684f1393 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x687e2d0b scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x6880ae84 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689ef491 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x68aad609 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x68f21bae pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x69090e97 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691002a8 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x6915b8f5 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x691742bc clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69290f84 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6953be00 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698cd6a5 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x698e8f7d devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69c0e024 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x69c18358 find_module -EXPORT_SYMBOL_GPL vmlinux 0x69cdda97 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x69dfa017 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69eb6adb account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x69fe0626 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x6a0202b8 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x6a02e763 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0748ba powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x6a13b8c3 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a187ff8 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a427b70 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4c8445 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a74fac4 flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x6a80cc23 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a91a0cc dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x6a9242c1 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac9c39b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x6ada79f0 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2dd77f xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3d27b4 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b4a8249 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x6b577eec vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x6b6f9282 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x6b78fa41 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8dc4e2 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bc7ac3c rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd2adf4 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6c013298 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x6c14e230 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6c1cb9be exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x6c22b62e device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c398576 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x6c3b612b acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c46b4e9 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4d6e8a __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x6c5d5d29 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x6c628b0b devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6c2a27 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x6c71d686 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6c7c4d34 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x6c98bce4 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cbd9ca2 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x6cc4acfc rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x6ccc77a3 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x6cd67f0d __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x6cd85069 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x6ce6b39a del_dma_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cf73d33 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0bc0d9 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x6d101ef1 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x6d1e64d7 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d2d23c0 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3e468d iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x6d4a55cf ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x6d5818e5 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6d5c07b7 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6d5cd114 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x6d65b1b4 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6d690dd0 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d753775 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x6d7c25ab tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6db8ef4c subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6df0f4b8 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x6e0f302a inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6e3be2d5 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e3d0a14 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e419b43 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x6e42ddcb extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e5d81b7 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e98e4fd generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x6ea0087c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x6eb4dd97 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x6eb782a1 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ecd55a0 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef15476 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f177493 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x6f298a40 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f35868e __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x6f448d4b sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x6f5b8a14 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x6f63cfab virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x6f6ddb46 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x6f760df6 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x6f82084c device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x6f8eef10 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6f902151 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6f975c1b sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa933cf acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6fb632d9 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6fb7f78a sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x6fc63a13 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x6fcef92d extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x6fd61e8c pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6ff492bc dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x6ffed1e9 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70158b09 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x702d1a09 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x7037ad50 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x70383a8b sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x7041c116 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x70420ceb gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x70513533 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x70527f3d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7052ecb7 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x705fcd18 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x706526af regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x70722290 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707871a9 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x709e50a4 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x70a53837 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70b87ed0 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0x70bff7d1 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c2fd3b extcon_unregister_notifier -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 0x70d3753f led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x70d8caea debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse -EXPORT_SYMBOL_GPL vmlinux 0x70fde8af nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x710bc1da fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71160eda sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x7118e99d skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x71253fbb spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x712a0a84 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x712c620f ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x712c803b switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x7143f819 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x715726ed dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x7157f7a4 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x717267cf crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x717e1759 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719b0d0d vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a2c3b1 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x71ac6282 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x71ad7fb9 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x71ad95cd arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71b36483 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x71b93af6 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x71bcecd7 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x71c3b10c pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x71c82669 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x71e7c305 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720028dd wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7203cbac __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x722844e4 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x72358d68 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7235d0ef __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x72394d6f rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x723ee852 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x723efa8c sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x727120df n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727ae990 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x72920251 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x729a3464 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x72b29f97 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x72bd3432 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x72c22648 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x72c54d13 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x72cf97ed bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d59940 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x72f42928 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x730447a4 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x731b22c4 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x73237d4b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x733365b4 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7335ef51 clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x734517f6 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x7358a516 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x735b7e1e do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x7363e5c0 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x73655244 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738f3155 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x73952a8d devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x7399ce50 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73adc875 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x73b23e34 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x73b57770 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x73bbad1f xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73f63c1d direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0x73f7542e irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x73f8c704 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x73fd3a0d __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7417fb5d regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x741a91a6 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x742977ca pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744ecf8b led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x746088e2 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7464c0e2 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x746b5559 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x746ec0b6 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x747953eb phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x74868978 virtio_add_status -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 0x74c89b64 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x74cda069 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x74d810a2 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x74da6911 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f4be59 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x74f5ba51 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x7504e058 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x75082e48 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x750f7b15 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75187497 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7527e3a7 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x753ad476 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x7568be59 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0x75898a80 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a8932a setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d09125 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x75d2724b ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x75dde7a2 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x76114ec8 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x762c47b4 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x762e66c7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7637d176 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x766e374b pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x767354f4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x767449d6 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76857dd2 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76903405 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x76bae624 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x76c3e940 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76c8d104 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dfe12b simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x76e1827e extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x76e82e1b __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x77011f2f nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x77068669 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x770dc325 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x773ca7be i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x77427587 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7759ab76 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7770f9b7 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b28157 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x77c070e6 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x77c1ae9f __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77ccd2d7 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x77d7579d cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x77e775b5 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x77e7e792 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x780c4496 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x78423620 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78497bc3 component_add -EXPORT_SYMBOL_GPL vmlinux 0x78514588 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x78527b61 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785cdac4 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x785ed3d0 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x785f306c fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x7863203f dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x7878e472 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78812411 hv_stimer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x788a1066 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x78947283 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x78a7c898 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x78d3f531 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x78edf626 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x78ee5d06 user_update -EXPORT_SYMBOL_GPL vmlinux 0x78f9d8e7 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79094ac4 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791109ec bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x791bb586 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x792f9935 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x7937339c regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x7944635f ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x7945085d serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79526898 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x7961bffb xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x796728fa device_del -EXPORT_SYMBOL_GPL vmlinux 0x796fdac7 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x797029f0 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x797611e1 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x79da13bf mmc_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x79da7a6c devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79ef61d1 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f6b3d2 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x79fb0f82 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x79feee90 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x7a084e69 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a158ace cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x7a2f5a90 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x7a41b1ac irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x7a5154e7 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x7a52aac8 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x7a5de465 edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0x7a5dec9b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7a5dfbf6 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x7a622be4 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a744fdf blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x7a78288d ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a85b929 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x7a97f9ba regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7aa258d1 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x7aad3882 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acf1f97 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7af32b6f trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x7b08dd89 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x7b0b8c34 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1bba7a fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x7b22b75b yield_to -EXPORT_SYMBOL_GPL vmlinux 0x7b2be06c regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7b371062 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7b418b01 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b633569 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b74aee5 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7b812841 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9b4b19 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ba0738d debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7bb5466b msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x7bb61041 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x7bb769ed disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7bbc5251 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x7bc1a514 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7bddc388 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c2ccb46 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x7c437e91 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x7c487083 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x7c57421b x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c67fe8f devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x7c76e4ff spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca5de0f blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x7cb42679 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc0d717 vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x7cc969b5 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ce5597f mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf21604 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x7cf9b404 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d01eebf ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d268b85 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d375fcf irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7d40bbf8 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d4803b7 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d64a0f0 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x7d948e3f pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x7d9d9182 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7db0f18f unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7dc66cf7 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x7dd2e34c i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x7dd6ac15 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7ddb4fc0 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x7ddcc72b regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7ddef934 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x7de129be dma_buf_vmap -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 0x7df29beb iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x7df5ffa1 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x7e017396 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x7e21b814 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7e32d699 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x7e32db02 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x7e53fb4a subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e5de070 intel_svm_is_pasid_valid -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e8051c4 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e9029a9 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x7e9200b6 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x7e95f876 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7ec56232 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ed9e3b9 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef28744 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x7efb6150 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7f00c53a crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7f035ca8 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x7f12d6c8 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x7f12dec0 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x7f1413fa tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x7f221c73 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f2eee94 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x7f32f3d7 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x7f376900 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x7f376d29 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7f41ea12 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x7f472f30 iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7f736bd3 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8e6932 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x7f93bfba inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fdc7ecb dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x7fe25911 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x7fed1e27 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x7ff75ae0 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x800abf64 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x801d34c3 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x802f244c md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x803568b5 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x803bebe4 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x804b18df device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8058c8ea __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807abff9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x807b2da2 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x807b5390 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x807c991b pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a005ff nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cdf457 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80de907c pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x80f77328 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x810d3c30 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x814a0d82 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x814bb94e dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8161fa01 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x8162c1d9 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817c850e xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x81847984 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a8a697 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x81f29222 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x81f48e7d cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x81f9c180 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x8206a923 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x822936c2 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x822ab119 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x824ccb05 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x824d5b04 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x82540128 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8260abaa phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x826430f7 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x826896ff blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8278cd10 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82bd83bc crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x82cfa7f7 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d893b6 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x82fb6472 cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0x8339c526 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x83612147 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838eaaa9 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x83c25fa1 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x83cc7614 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x83e6b3d8 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x83f30f1f acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x840a0d58 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x84103d59 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8419ffaa task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8428a4d4 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x842b5885 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84324c94 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844c0606 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x844e24cf devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8481f979 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8488d5e7 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x84a59768 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x84c67a28 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x84cad177 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x84d0f582 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x84ed7083 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8508b4a4 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x852f8b21 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x85420740 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x854d6228 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85581622 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x8574ecb8 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x85783cac fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8578825b subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x8578b645 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x85806c54 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85a04182 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d36626 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85dcb0d2 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x85e7158b pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x85f75722 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write -EXPORT_SYMBOL_GPL vmlinux 0x861be4a2 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86309b76 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x864ec7e7 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x8681a2b1 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x8683c0ae usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a5be41 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86b50b91 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x86bc2fe0 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x86bd8b90 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cdcaf8 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x86d94a73 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x86ebd8d5 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x86f01217 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86ff18c4 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x870aceee bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x873d863d bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x87557acf ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x8756fd75 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x8781ab00 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x878fe35f devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x87aabbed uv_apicid_hibits -EXPORT_SYMBOL_GPL vmlinux 0x87abfd20 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x87b44278 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x87ba30ea serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x87d31bf7 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x87e35609 hv_stimer_init -EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x8807cd1e fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x881f2bdf irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x88233718 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x882c36bb tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x883bb4d3 xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0x88468ac8 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x8876bc0b __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x88793647 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x887aac97 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x88821ee8 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889dba51 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x88a090c4 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88be9984 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x88ca7fc7 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x88d54f2b is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x88e996fa sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x88eb95af pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x88f1afe8 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x88fc1aea rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891d1dd3 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8938c535 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893e27d0 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x8940ef18 md_start -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8952b65f blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x895588ca devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x8984c3ac regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x89890adb fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x898a069b devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x89920a93 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x89932d12 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x899dfa54 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x89a90f83 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x89ac883b arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b4ceb8 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bc2ee0 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x89d4fb99 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89ec3654 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x8a003601 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8a0c356c pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x8a181b2a set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8a1fd960 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a45bf83 user_read -EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a662ac6 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8a66a492 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a8bc359 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x8a9e616d usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8aabf3d1 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abc34ad virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8adae1db netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x8af58075 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x8afac9db ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x8b079a94 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x8b0bc2d1 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x8b0e6f18 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x8b13fecb thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2e31e5 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8b61f65f serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b68ace4 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x8b6ab48f unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x8b8373de phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x8b83e5d3 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8ba2499a pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x8bd45b73 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x8bd76e4c mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x8bdce4b5 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x8be4a65d __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x8bf644dc devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0e78c8 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8c0feb2b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x8c258ae5 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x8c308855 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c6146a1 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8c670580 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c6836c8 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x8c68afdf __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c78d400 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x8c7aac55 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x8c7bcba4 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x8cc8cc86 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8cc8d2ab sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x8ce226c9 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x8ce71357 __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8ce9eb80 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x8cf2d3ec usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x8cf46fee dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x8d1c055c rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8d2003df rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d388bf1 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x8d432e43 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d527b01 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d6ab8ef dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d818272 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x8d83779b serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x8d868ce0 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x8dbe2e6a dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x8ddc34d3 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x8ddc48eb ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8ddc6d36 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8de2a120 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8def72af dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x8dfc9591 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8e1d5c77 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x8e1efcfd virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x8e3f8d75 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7d7445 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x8e87a131 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x8e8b9c0f regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8ebd342e sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x8eca0135 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8ee0a674 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f090da2 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x8f128dc7 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f2cee74 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f3096cf crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x8f35d3b2 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f4f004b irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x8f537ce0 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8f59ef04 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x8f5c3559 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7ad834 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f801d8d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f9ae012 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x8fa10f34 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8fac80f5 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x8fba2dd6 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x8fc7bec8 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x8fc8acd3 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x8fddf90b vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x9003a47e iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x9007d357 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x9008702a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x900fdfca gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904c0158 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x90527bb6 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x90545cd0 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x906fb99b sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x908d2e95 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90b14180 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90cb1094 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x90ceaa44 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x90d829f0 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x9100ff55 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x910e88e6 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x911edd7b __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x912940ce genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x914126f8 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x914aa0b7 hyperv_cs -EXPORT_SYMBOL_GPL vmlinux 0x916f4087 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x916f7108 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x917193b6 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x9182283d regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9186a0f2 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x9187b5a2 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x919ffd36 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x91a2b04e md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x91f770ad dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x92017b43 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x92283810 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x92347fc5 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x923d9dba pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x9241b1ed register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x9275f84d skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x92974f0a __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d55b3f xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x92d77ec1 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x9314a1ad usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x93191349 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x931d7398 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x9323fa4b lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9349cdc1 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x934fc40b debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x935b93cb __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x936b8134 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x9378066c __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x93786804 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93a62bd7 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x93c4956c platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x93c7d556 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x93d0a309 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93d653bb virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x93d8d1e9 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e8a014 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x93eaa450 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93ee9c79 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x93f0fb85 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x93f1a2f4 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x93f9747f pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x93fce64c devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9409b7a4 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x9414817a rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9420504b spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943d1a12 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9443fcd0 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x944a40ab shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94775f6f irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9479f01f nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94874849 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x9496a96b ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94c23917 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x94c5cd45 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x94cdeefd vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x94d3c2bb pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x94dfc81a regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x94e06fa8 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f6d9f2 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9509c7ec memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x9516022c __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95274a38 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x952e9df5 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95758205 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x958b7962 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9594279f bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95b315c4 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95df3f66 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95efa1db pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x95fe186a fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x960a9e0a alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x960b867f fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x96148899 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x9624696b ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x9628d84b wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x963e432d ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9647e52f iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x967b7295 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x96a449e1 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x96abdba1 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x96b36fc4 __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x96ce20f0 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x96d3050d iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x96d41dca irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x96e2b745 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x96eb82c9 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x96ee0e10 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x96fef927 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x9702f172 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x97130bf1 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97166ffb device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x971de443 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x972b20de cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x975136b6 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x9754b573 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x97bbfe8d gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x97c8be70 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x97cb4045 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x97ceecea inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x97d12355 hv_remove_stimer0_irq -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x9813c5d5 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x98146256 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x9814e76c acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x98299ad6 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98686da3 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x986b7a13 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x986d4843 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9873dda8 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x98741d39 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987a22b5 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x988755ec __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size -EXPORT_SYMBOL_GPL vmlinux 0x988cebd1 cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x988d98b1 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x989c06d9 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x989ed419 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x98a0b74e of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x98a4bbba blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x98b91f76 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x98c4e3ec xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x98cc1550 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x98ce6f53 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x98d61079 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x98f1e49c rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98f56a8f pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x99000f08 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x9919b3ad clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x991df05b skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9921134f devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x992524f7 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x992d18e9 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x993c1717 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x995738f8 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996b83fb devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x9982976f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999db17e pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x99b1610d tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key -EXPORT_SYMBOL_GPL vmlinux 0x99c78c71 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x99cd4fb7 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x99d566c9 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x99d6526a device_add -EXPORT_SYMBOL_GPL vmlinux 0x99db1ee8 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f23e8b __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0506b2 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x9a0c9ed1 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a16be00 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x9a1b5ff3 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9a24cec5 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9a2578d3 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x9a261301 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x9a2e8f02 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x9a30b99a pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x9a454000 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a6482e5 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9a87a757 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x9aa36bdb inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x9aa707cd devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x9aa7445b xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acc6b05 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x9ae0713a blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af539fe nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x9b0854c2 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x9b209638 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x9b2496ba shake_page -EXPORT_SYMBOL_GPL vmlinux 0x9b4be1f5 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b64b3f2 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x9b74bd78 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x9b7ede62 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x9b7f9357 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb313fc blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0x9bb9fe09 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9bcbb778 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x9bd3b44a fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9beee04a sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x9c05118d lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c0c6700 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x9c0d7a58 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x9c17f9e2 dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0x9c46aaf2 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9c52f32f phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x9c5ff9d6 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x9c60b3cc usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x9c668e63 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x9c6e6114 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9c706664 put_device -EXPORT_SYMBOL_GPL vmlinux 0x9c733f4e xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c84d636 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x9c867970 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9c8eb815 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x9cb4009c devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x9cc0c84b tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc753ab tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9ccb69bb ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x9ce2cd09 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf8b155 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9d05fedf shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9d092c9a pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d19f596 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x9d1cc89a nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x9d26c25b driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d5ded92 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x9d655dcd __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x9d6cb51f gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9d86155d usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x9d8f9c36 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9d9cdab8 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d9dce00 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x9daea719 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x9dc277b1 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x9dc6ee55 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x9dd7dd0a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9df6b247 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x9df90e23 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e052bd9 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e23cbac vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x9e2ed775 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x9e3e9128 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9e4211a9 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4b33ab blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x9e6677ea do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9e8dde49 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x9e9fe23a thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ea1aa14 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9eb1ee82 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x9ec3b58c acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ef59776 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x9eff3885 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x9f055c50 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x9f1ac282 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9f392f1c fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x9f49ce26 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x9f4e102c uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x9f71bc72 uv_bios_set_legacy_vga_target -EXPORT_SYMBOL_GPL vmlinux 0x9f94686d xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0x9fa64ecf trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x9fa78950 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9fa9e36c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x9fb6fd52 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc57bd3 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd98a93 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0x9fe37007 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9fe6d2b2 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa009b49d powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xa00b4fbc sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa02fb4b7 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa04a24a0 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xa04b0148 pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05213e4 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xa063a2c3 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa084a09c ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xa090134f crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa090e65f tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xa099a7b4 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa0c557d7 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xa0c6b24d md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa0c82e93 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0ee1a1f nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xa0f6ef73 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xa10340fe __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11a6cf6 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa1724db3 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xa1734fe9 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa188fa04 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa18e6bd2 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xa1933ed7 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xa1a168ed irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xa1c569ef shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1fa0eec devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2250a0a fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xa2476a27 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa2652424 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xa26c2604 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2732dd3 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xa27a3289 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa27e1c40 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa28b9397 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xa28daade da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2a17785 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xa2a9aeeb rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa2bd8065 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xa2c17a5f rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xa2c7cd9f ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa2cb4a31 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xa2debc5c sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2eb784a smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa2ec075d pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa2fd3962 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa312da9c __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa321b11f usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xa34e3961 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa36e5fc8 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3cb0c3b sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xa3cd4543 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xa3d19d05 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xa3db1f56 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xa3e9a361 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa423bf4f file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xa444d69c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45bb420 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa467eaaa bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa47233a0 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xa47501bf perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48202d0 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa482532e find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xa48bb877 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xa496362b gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xa49f716c bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xa4a4b13e crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xa4bc6da7 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xa4e6bf6e sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xa4ff2602 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xa511bde9 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xa5130dc5 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa51f2e3a cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa52db0ae do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa534628d gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xa54cdc37 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xa56d44a0 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xa577d8c3 ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xa586fcdb uv_min_hub_revision_id -EXPORT_SYMBOL_GPL vmlinux 0xa58a009f request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xa58fede5 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xa5941ad4 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xa598bee7 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa5aa7c0f fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xa5aeab2c vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xa5b1d480 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa5b6d0b5 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cf15a5 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f05549 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xa5fcf058 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xa600e854 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa60120c5 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6070f6f platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa6087052 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa60b3cbe pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa63c37fd ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xa64fc543 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xa651d49c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xa66a45fc usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa66a7fdf to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa68e562a edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xa69def2c devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa6a020fa sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xa6af0173 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c2ceb7 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa6c6322d cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xa6cee1de iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e25b8b tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa6e95667 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0xa6ee62c2 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xa6f052c7 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa726f2be hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa72d62a9 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73b7369 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xa75eadb3 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xa76efa87 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xa77185a4 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xa78d9e87 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa78e0ed8 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xa7a20a81 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xa7a78c4c acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xa7c1f860 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xa7c721ec usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa7ffbc40 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xa801173e crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xa803305c clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa80eb800 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xa823d110 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xa8305e50 __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa83ea7dc dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa842d359 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xa842d53b nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa84419dd thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa860494a tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xa8680d36 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xa8739495 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8746e4c strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xa878d067 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xa89ea735 fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xa8bb9ddf devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa90924a0 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa9097c27 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa92f5928 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93c1653 _copy_to_iter_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0xa93fd54c rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xa9422b93 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xa94608a9 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xa97235ea irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9af0c4c vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa9b15a04 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xa9be4025 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xa9bf522b irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xa9c34333 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xa9c948c0 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9f08e35 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xa9fa866e dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xaa009aa8 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xaa1b85cb power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xaa1da1b4 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xaa230604 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa27987f sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xaa2e2b59 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xaa2f38b1 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xaa458df1 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xaa4f04a8 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa5ceb12 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xaa62133d tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6d5057 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xaa7d7d30 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa86ff35 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xaa94e343 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xaa9847e9 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa9bbb4f bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xaaa7087f wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaae46a5 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xaab1946e blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xaab6e997 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xaac4b3cc rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xaad5d294 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xaae6e765 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xaaee3b1a gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xaaf00898 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xab078cdb dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xab107191 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xab1aa72f unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab2128ac devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xab3f23d8 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xab566d4d devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xab62f0e6 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xab69275a kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabbd8c50 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabe0ff4e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabe6d1ab platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xabfb1b12 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xabfff4c4 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xac1a472e nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac258981 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xac42f9cb subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xac647349 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xac9b0310 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xacae0c4c dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xacb02dd6 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb71a56 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xacbef6cd device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xacd62204 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xad0c4e16 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1c1f16 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xad24aa37 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xad27f965 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xad2f8194 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xad40d6e8 nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xad46d582 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad7bb66f ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadabab64 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check -EXPORT_SYMBOL_GPL vmlinux 0xadbe346d scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xadc2c663 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xadc5f1fa xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xadd8501e devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xadf5f5b0 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae0255d3 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0a28f8 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xae0b5ddf __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xae0e9dba dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae2b7fee ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae34a5d0 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3eb385 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xae4102fc gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xae4c90eb pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7bf7db da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xae8d0924 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xae95d1b5 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xae9fd511 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaef63ea9 crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xaf04c0bf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf07f03e tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xaf2199b4 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xaf3126f4 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xaf3b1d52 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf53ed85 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xaf5ac29b platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids -EXPORT_SYMBOL_GPL vmlinux 0xaf64d3d5 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xaf667df0 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xaf6f79f6 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xaf72986e ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf87e92b devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xafa60cf0 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xafd61582 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xafd99877 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xafd9fd39 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xaff53ffc sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xb00092a5 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xb0138971 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb0156ac8 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb01ce724 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0356068 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb046a28b mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xb0625f40 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xb066579e gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xb067c3c0 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xb09b41e5 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb0a392ab ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xb0ae848a iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb0af50f0 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0b5e284 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bd040c dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb0c75a6f alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xb0d06b31 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e2b9e0 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10e537b rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb1150704 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb11667ee iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb11d23ad xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12c208f device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xb13ab0c4 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb148fdb8 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb14d2d13 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb164a431 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xb165430a gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xb170e551 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1784b66 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb189d1c2 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xb18eace8 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xb1b5ccf0 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xb1bb9918 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c46948 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb1d17654 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xb1da4325 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ebfa0b skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb1f35717 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xb1f98058 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb204c7c2 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xb21510f4 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xb216e87c ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xb21c3c28 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb261e8a1 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2711a8e crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xb27ecc43 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb290f113 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb298f94e cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb2b63104 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xb2c1e798 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ed0fe2 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xb2f455f6 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xb2f51cf8 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xb2f9232c sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb32835a6 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xb32d06a7 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb3406925 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb3414ebd da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xb34414f8 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb34aff75 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xb34e7e97 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb35ea095 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xb3626442 xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xb36b57d3 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb38387cb device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xb386cd44 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb38bddfb crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xb39b0919 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xb39d29ef usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb3b3f00a open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xb3b516ae shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0xb3cbadb0 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xb3ceb01b gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb3d7bef3 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xb3db8582 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xb3fac712 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb40257c1 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb40fc19c pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xb4296600 blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0xb42ae69f ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb42aec78 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xb42c0547 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb443a096 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb462ce61 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xb475f3aa vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0xb4895bbf mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb49666d7 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xb49889d7 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xb4a0912b phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xb4a3e487 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4a5449e usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bf5960 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xb4da2e7a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f784ca device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5040d34 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb50e1f27 __uv_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5121111 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xb51c91cd fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb535c858 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xb5489fe9 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5612f22 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb5641d48 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xb56be406 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb5891bab adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xb5a0022a devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5c92eb4 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xb5d43c7c input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5f0213d pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb617cc0a crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62c3442 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xb6411740 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6791b6b pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb69680a9 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb6b3f06a genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xb6b42209 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xb6b63bd9 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xb6b96c48 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6ce17ad tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eafbea rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xb6f02fc9 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xb6f4f086 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb7402556 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb74174dc dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xb74b6704 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xb74dcde2 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb761f478 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xb76bbe77 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xb76f7b5d inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb779f656 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xb77cc51f lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xb78aa134 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb797b39f regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xb79cc527 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xb7acc91d platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xb7b2176e napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xb7be4606 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7f43c50 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb8045afa dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xb810f472 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xb8209284 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb8272074 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb83c612b device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xb84580c5 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xb845d724 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84d6d8e __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb85a634c tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xb86d6797 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb870ecdb bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xb874acb4 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb8793abd _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb893a1bc pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a7c655 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c0dc42 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8da9c5c gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb93a3766 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xb93d59e1 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xb9404000 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb96e75ab bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xb98e36b1 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xb99014ca ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xb994b597 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb999f854 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xb99a28dc driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb99bd809 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be878b devlink_port_param_driverinit_value_get -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 0xb9e9e0f4 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba08e902 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xba1aefde cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xba23a931 fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba33a4cf tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xba3e3d42 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xba48d303 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xba61c6b1 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xba8268c9 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xba8306a4 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xba89d0a0 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xba95e6ef pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xba984d9b acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xbaa1e50c sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbad74568 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xbadcccc7 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xbae28d91 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xbaeefc70 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1f206c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbb41f5eb inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xbb4a8e05 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbb52b898 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xbb557741 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xbb613a43 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xbb66019a gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb9ecc81 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbc8e327 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xbbd72356 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xbbdbd76f __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbbea18de xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xbbfc3d11 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbbfd7454 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xbc05987c iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0xbc24d432 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xbc302cd2 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xbc4f17b3 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbc5b27a1 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc8f7fcc pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcae6f8c devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcb98cf9 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xbcbe5b3a regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc9a812 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd4dbca regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xbcd9220f cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce4740b pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xbcf0ca80 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf36b37 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbd0f052f hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xbd128205 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xbd1f0c1d pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xbd310e6c dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xbd3e11c7 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4b2f97 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbd51a552 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xbd5a0613 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd6aa9c7 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbd809713 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xbd80dc95 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0xbd932fa1 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbda97fee bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdc04978 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xbdd98639 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xbddcfd2b spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xbde69e96 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xbdfe7a1c pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xbe05cae8 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xbe0f280e power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xbe13a9f5 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe25814e devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbe2c3395 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xbe3a3245 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xbe3b7e84 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7c29ea blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xbe837135 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xbe97ae36 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeaab6bf i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbee13b70 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xbefb42fc crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbefd4c3a crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf06af5a security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xbf088750 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xbf1b9cd9 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xbf21c6fb pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xbf2cbd8e posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xbf2eed06 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xbf3d02c2 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xbf43e8c7 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xbf481775 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xbf6fa2b2 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xbf837f78 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xbf874cc3 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xbf9487c0 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xbfadf3d2 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xbfb08c02 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xbfb17ba3 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfbb0457 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd29c39 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe9e281 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xbffc762f udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc0164701 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xc02d6719 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xc038493c device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xc09006df rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xc0a41e2f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ae300c pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xc0bb9404 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xc0c0bc22 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xc0dae732 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0ec7a77 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0ff18fd pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc112014b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc124003b get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xc1289e5e is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc130d9df gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xc168f5a7 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17130fe regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17610ae xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc19e78c4 cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0xc1b17648 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xc1b3e5a6 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xc1bdb892 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xc1c1cfd4 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xc1c5828e spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xc1c61dfc dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xc1d5940e ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1eba7fc regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0xc1f2f30e dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xc1f5ed2d edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xc1f789d3 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xc1f8a678 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xc1f9c2b4 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc202e6da serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc20fe8df ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc211c1c2 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xc2180b52 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xc218fc4d unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc2257748 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22fb6ad clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc26e664b thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xc2729978 efi_mm -EXPORT_SYMBOL_GPL vmlinux 0xc2748855 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -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 0xc28cce60 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xc29b0ca1 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b5b60b add_dma_domain -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d6e763 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc2dc5e58 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e9f5b9 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc2ede3b0 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xc2f2b11a pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc2fb3d18 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xc30e032b dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xc31d652a irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c74410 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xc3cabada dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3edf6aa save_fsgs_for_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc406eaf1 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xc40cd0d8 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc4138b2a thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xc416240b da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42d8126 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xc43e841d __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc45478e7 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45d8799 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xc46410c2 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48acb5c debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48db9a1 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc49097b6 is_uv_hubless -EXPORT_SYMBOL_GPL vmlinux 0xc4912f61 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49eedfa netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xc4a2661c efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4a85061 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xc4ac1a7d ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xc4d8f7a5 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xc4da2f16 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xc4e64dc3 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f77b59 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc50033fd __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0xc5576930 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc57f7532 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xc5875c9c sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc5996c8c pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xc5a02db0 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5bd1d55 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc5c1e7fe fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc5fd4afe bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc6013a45 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xc612b1c7 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61e7caf tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xc622cd54 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xc63bb945 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xc63f4384 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69fbab6 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa8f6b __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore -EXPORT_SYMBOL_GPL vmlinux 0xc6d043c7 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc6d14b3b sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xc6db2472 flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc71a4b8a kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xc71cbd10 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72027d0 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xc7288053 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xc74051c8 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc748ea53 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xc75727de nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xc75bb534 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xc76b2aa3 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc76ee8e8 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc7759358 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a2241f virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xc7be0faa ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c84d03 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xc7d05c28 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xc7d24747 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7e4dc64 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xc7e911d9 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fdf46c mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xc81180f1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc8142ab0 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xc822d329 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc832898a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc84f72c8 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc855785c device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xc87d0cc0 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc88268f9 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xc89e8427 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b3cc6b dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xc8c0ac04 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xc8ca5d5f ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e1e312 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xc8e426a5 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xc90013c8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xc90ced6e cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9190c76 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xc9286f92 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc942bdc4 cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9752066 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9b3f1a5 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9d40045 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xc9d54305 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xc9e085eb crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xc9e4b7e0 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f9b786 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xca03c514 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xca0e92ba perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca1b013d skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca49729f pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xca498561 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xca5edc6a devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca9e1083 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabfc460 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xcb0709f5 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1ae6c4 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcb1c18bf rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb31d469 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xcb359a25 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb5abb01 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xcb6dadf9 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcb78bda2 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xcb8945c6 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcb9aca44 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xcbbb5a54 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xcbc0d7de blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xcbd0d5a0 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xcbddf45d xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc117cd2 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xcc132cfd mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc3db258 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xcc6bbdac wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcc75dbe7 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xcc77b228 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xcc7a8417 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xcc8d73dc cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9544a3 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xcca1a7e7 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xccb07ba4 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xccb567e0 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xccb76aff device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xccb88a88 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xccc191ea sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd40222 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd06b60b rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xcd06e083 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xcd0826e8 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xcd18ab02 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd3d8bde blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd44bdd0 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xcd522aae tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xcd66547c rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd71fba5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd823708 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda64916 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xcda69aa7 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbcb1e3 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xcdc8749d phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcdff3a acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xcdd57627 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xcdd7cc66 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde5d8df blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xcdefd068 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xce09e3cd scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0bc225 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xce0e00b4 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xce15ffd6 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xce21cfaa devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xce3c79aa bus_register -EXPORT_SYMBOL_GPL vmlinux 0xce639952 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce74b77d __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xce7c99e6 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xce7e8b32 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xce97246c fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcea709b3 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xced07c45 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee5e330 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcee8d8cb gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xceebe1b7 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr -EXPORT_SYMBOL_GPL vmlinux 0xcf033a29 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xcf0b7fdc phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xcf1c9f24 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xcf1cea22 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xcf1e942a dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xcf22c51d pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xcf3b3711 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0xcf496eee register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcf4cdf42 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf89ccda da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xcf927a08 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xcfa09296 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfed2655 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xd00235ee dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xd00254d4 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xd005a7b7 __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd00c01de skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd024948a md_run -EXPORT_SYMBOL_GPL vmlinux 0xd02e64e9 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xd032e0f2 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xd0367a85 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04bdd7d i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0673e08 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0765c84 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd079ee4f blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xd083dd0d crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0b3bdfc firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd0bc7603 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait -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 0xd0e7d470 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xd0ebb91e phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd102a199 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xd121ea4b irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xd1225087 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xd12c7ece ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xd1516d08 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xd158a3f5 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15f3684 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0xd1800bca vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xd19a6548 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xd1acbb8f pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd1b67e18 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0xd1c64d9f ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d56b1b usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f3d428 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xd1f8ff67 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xd204657a pwm_lpss_remove -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21ea133 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xd22f121b pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xd24b518f gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd259ba92 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd25e673b fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xd25e78ec nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xd261a891 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd26cb347 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xd2700e0f aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd271caeb __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd291509e pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xd2a4d3bf io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b6f985 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xd2bbe426 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xd2bc0f2e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2d70293 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xd301511c dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xd32ad266 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xd34188b4 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd3639e13 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd38d3fb4 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xd39d9d05 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b05d9e dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xd3b8a2f0 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xd3c81962 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xd3ce81e2 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xd3db8084 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xd3e0ae6f kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40736cd trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0xd4075df6 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xd4168dfa devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd46168db xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xd4636de1 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xd465a13b wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xd4665c7f get_device -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd4736490 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xd48d4b4f __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd499cb1d pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd49e5f6e gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd4a4b12b devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xd4bb6f0e clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c729fc fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xd4e14c24 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xd4ff872d devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xd502e2fd blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xd52cdff9 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xd54f0004 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55fe965 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xd59384a9 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd593bb55 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd593f50a usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd5b93f9d usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5beff3a serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xd5c7d9b4 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5ffc779 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xd60090b0 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xd60db8ae devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xd60defbc xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd612e04b iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0xd62874ed crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xd6304dd8 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xd6370c39 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd65778f4 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd65ce025 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xd6625a2b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd6731414 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd673869b wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xd684377b handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xd69a41c9 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd6b3b7e0 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xd6c287cc each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xd6c2a238 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd6cdf383 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd71225bd pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xd72f66eb dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd73744bf nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd75228ed fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xd75656bf i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76c2365 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd791d404 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xd7ae063c devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd7afd567 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova -EXPORT_SYMBOL_GPL vmlinux 0xd7cae2d9 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d01200 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xd7f8ad2d md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xd804af03 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xd804d6d1 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xd80e22d8 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd845d697 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84dc8bc rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8537334 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd8734cb0 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xd8746b28 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd889acaf ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xd8a46452 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd8b0c70f irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xd8c56f36 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xd8c977e7 i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0xd8c9895f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd8c9d6cb devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xd8ca5917 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xd8d1f344 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xd8e34fbf ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xd8fadf83 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9126f62 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd92b4006 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd92dadad disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96bd15a devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xd9778ba8 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xd998b96b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd9a17702 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xd9a74484 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xd9ae4584 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xd9b31a47 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xd9b801f8 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd9c9b338 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xd9caa05f pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xd9caee93 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd9d801cd __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd9e718ca crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f633cb pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xd9f7d548 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda099734 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda20a430 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xda59d30f xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0xda6abf80 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xda6d2c41 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xda85fd8c genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab1f4c5 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac46a66 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xdac8e63d blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xdae91d11 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xdaf2b4a9 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xdb41665f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xdb41c56c skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xdb4fbd55 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8d3f84 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xdb9209b5 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xdb928aa9 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xdb94723f __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xdba6f30b badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xdba7b772 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xdbb14192 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xdbbf8b59 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xdbc20116 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xdbcc81e7 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xdbd7ae57 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xdbdd2b7e shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc000392 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xdc02f479 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xdc3f92fe xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc46e9ef ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xdc636de5 blkdev_read_iter -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 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c6b35 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcb0053d udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova -EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xdcfd4734 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd13dbf1 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0xdd16428d __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xdd19de95 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd35a862 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4487a1 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdd9a6309 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xdda878f6 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xddbc5ef8 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc37dc7 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xddcfd31a tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xddd52da4 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde60067 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xddf07e71 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xde07d717 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde21fdf1 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xde2ca95b devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xde4d7e64 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xde533783 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xde596dd9 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xde5c9527 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde8370dd uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdec4fc10 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xdeff12c5 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf12130c find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xdf21d5cf usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf51c6a0 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xdf762e12 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xdf7b8db2 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xdf813671 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdf96ba2d __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xdfbda08f virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfe4e873 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0xe007b257 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe012afb1 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xe02cda77 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0558a55 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe061a372 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xe06711f3 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xe06f1682 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xe07c95ce get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0919fff ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b2d295 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0db6181 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xe0def4a9 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe0e4f84a __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xe0eb7c18 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe10d2a5f nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xe1126b74 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xe11281e5 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xe1285fec devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xe12aa2fb pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe132b30c devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xe1419003 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xe16ca92f inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xe1863a4b acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe1a27777 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b0c60d security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xe1b76149 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c2ac80 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xe1d20734 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xe1d7dd02 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xe1d88f6d regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xe203a051 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xe2061b7a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xe22993a1 regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe22e909e mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xe22fd6ac serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23d14f8 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe23eb433 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xe2584b95 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xe25da878 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2bd0ad9 cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0xe2cde4bc register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2f8433b pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xe2fdf24b badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xe30024f8 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3055761 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xe30b90bf uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xe3135ab2 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe316f08f mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xe319eae2 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xe31d0516 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xe32733be dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe3416e86 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xe352a29d dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe35657bd blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xe380f902 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xe38a9a26 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe3967e53 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3b6431b pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3c1a459 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xe3c1b513 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe3c94469 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d2d926 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xe407cf15 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe415369f device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe41d0df2 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xe420af28 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe4240c42 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe424d36b serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe42f05ad driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe460d919 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xe464af3c clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe4756322 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xe476a384 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4800a07 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe48e1179 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a4dc4c phy_init -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4beacc9 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d701e1 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe5006772 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xe50dbb28 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xe5335b8b crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xe53b5896 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xe55a195d pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xe55ad907 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xe55e9e2e usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe564f8ed posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a30570 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe5b1502b nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xe5be053d i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe5c86d94 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5e92153 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe5f3ba54 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe6123e13 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63427ab serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xe635541c nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xe63bde75 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xe63e84e2 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xe644433d pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe65aba16 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0xe6967d89 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xe6aca785 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xe6e39ceb scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e8d765 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe7091ef6 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xe7129bdf dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe71a3329 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe7228427 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe73ad4fb ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe752e33a gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75e4108 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe771038e dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xe774f046 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xe7751ba7 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe791b0b8 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xe79778f1 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xe79a8301 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7b84532 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe7bcd309 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe7d1f2af scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe801a862 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81a3e4a max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe822273b spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xe8266087 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xe82e8405 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xe8385a7b led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8537aa9 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xe85d0761 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe862df8c extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xe8689283 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xe87c0aca ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xe87c5d74 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xe8826060 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xe8ae4a11 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe8c7d081 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xe8e5b9d3 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe8e7950a gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe8f5f495 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xe8f6c1ee platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe911883e lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xe918fd70 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe95ca700 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xe96be840 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xe978056b anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xe982e7e9 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xe9862a7a dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xe9887b28 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xe9aa55ea iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xe9ac2975 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe9b30ef6 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xe9b659af blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xe9c20748 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xe9cc2dda pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9e36e6e regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea09d26b cec_pin_changed -EXPORT_SYMBOL_GPL vmlinux 0xea0e1f55 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea16780b iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xea26400a extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xea2fb0d4 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea3fb151 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xea4598ec __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xea5543d2 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xea62221b dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xea829ea0 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xea834e46 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xeab11294 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xeab239b5 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xeab7a585 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xeacb6345 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae6ef3b scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xeaf3df6d usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xeaf78b0e ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb0be09b inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xeb12cd69 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xeb22978f pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xeb3ba190 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb5ffa41 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xeb6d4850 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb6e3225 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb992187 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xeba2447f virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xebbcde72 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebcf99ef inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd8133b perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xebd9e4ad sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xebe8aba1 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xec072f53 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xec155b5c blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0xec1628e6 pv_info -EXPORT_SYMBOL_GPL vmlinux 0xec3c7ea3 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xec3f04a5 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5bfdc4 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xec63d084 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec6eb325 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec77a805 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xeca5a5bd tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc07336 ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecde8349 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xecf27912 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xecf9b14e crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xecfa596e devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xed02d2b2 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xed074c6e bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xed239e02 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xed25a3fa devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xed277509 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xed357d06 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0xed40fbc0 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xed47dcf6 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xed522e3f sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xed5d6bed bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xed6137d3 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xed6b5ea9 nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xed6f8c51 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed7fba80 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed8b6346 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xed8c9186 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xed9b4432 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xedba7fc3 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xedc5162f seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd7ee2b __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedea9f06 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xedf73b69 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xee0b7def acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee320659 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3a3079 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xee451263 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xee493dfc pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xee534b7f gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xee5a32b9 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xee613909 iommu_sva_bind_device -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 0xee7d2e15 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xee983a13 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xee987676 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xee9a0171 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xeea0c542 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xeec334c2 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeeee7f1a ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xeef0f50e sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xef0bf7bf rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xef11213e ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xef117f0e platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xef1e4912 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef312287 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xef371cee dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xef4059b7 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4ffb32 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefac1f3a blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xefbb4bfc of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xefc5c008 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xefe2cd21 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf00c83ed pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0465fcb nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf08a3f08 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf08ab44e __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xf0a9b676 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xf0ae4da1 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf0c396ce sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf0cd2e3a gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xf0ef53f4 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xf102e858 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xf10e2e1d edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xf113cb75 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf11e394c dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0xf11f9069 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf1354843 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf14ffae3 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf158749b gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xf165ddf8 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1856267 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1cbf23c dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xf1d01127 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf1d0ca0d pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf1fb6154 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xf1fc6765 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf210d93b balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2127abc hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf216c3e6 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf21bcccf is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21fdd00 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xf22f1a1d acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xf2410ad0 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xf24ef571 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf2525d71 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xf254551a ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xf25ddd12 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf272cb14 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf285dea7 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xf28ebd9b gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xf2978936 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xf29eb251 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xf2a3911f acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xf2a9cd4e usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf2b15e77 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bbb8e0 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xf2be1596 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xf2ce2d76 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xf2d3b2c6 clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xf2d460fb xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xf2ed39df ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf2fb23b5 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf2fbc521 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xf2fd9899 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xf2ffcc2e __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf3039603 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf309172b inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xf309fc1d ata_pci_bmdma_prepare_host -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 0xf31f4333 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33393d0 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf37767e1 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3954f31 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf3956870 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf3978826 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xf3ab5802 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3cabe40 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf3e8c0b7 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xf3e9b0c3 vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0xf3f13649 vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0xf4225fd3 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xf4272922 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf4638027 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xf467a4a6 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xf4693a66 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf46dba7a sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf47e020f cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xf47f6489 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xf4802e66 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xf48bbde2 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xf4a14113 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf4a3b66c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4f994fb devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50a64aa __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xf5102704 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xf519c84e devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xf52ab3f1 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf52d28b0 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5525780 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5573dd1 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ae05ae tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xf5d0f991 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xf5d6713e xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5daaa26 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xf5dc4b4c sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf608f941 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate -EXPORT_SYMBOL_GPL vmlinux 0xf627fd81 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf6326f8a acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf63e7dcb crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf654d049 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf676dd80 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf68983b5 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xf6a09f23 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a3ac6e component_del -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xf6d77c65 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xf6d962dc hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xf6e3c00f fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf6e72177 da9052_adc_manual_read -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 0xf704b959 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf7250fc5 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xf72e058d clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xf7443b05 fixed_phy_register_with_gpiod -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 0xf74e0269 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf758d061 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xf7615318 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf7648727 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xf764bcce clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf76ae8ef call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xf77b2227 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7968319 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xf7b45bd6 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c1573d device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7da34df i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xf7e1f666 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf7f34ff1 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83ee3a0 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf84a56b8 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf865de39 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf86b109f skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf87e09b4 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf88cba8d class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xf8907a37 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xf896a931 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xf8a4fd9a regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf8b12a90 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf8b33679 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0xf8c2e4ff power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8e217bf sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f616cf l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xf92a65ce dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xf9317726 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf9334dd0 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xf94726b3 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9685854 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xf97c1b4f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf97e4320 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf97ed0c5 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xf991d0dc cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9988388 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9d4ca48 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xf9ff1e87 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0xfa196b10 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa23e38f gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xfa347b9c bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa4c5037 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xfa57da85 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa60d4b6 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa7c4e8a gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa888185 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa95bc33 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xfa9b7a82 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xfa9f9bb2 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xfaa2378c devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xfab24c33 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfac40a76 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xfac5ce2f device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xfac8b911 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xfacc8d67 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xfad88499 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadc4368 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xfaea5d95 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xfaedb21a fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xfaf438ca virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xfb193ef5 sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb60ca09 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xfb68d289 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb882c9f pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xfba2e20d arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xfba742fe devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbdbfa3 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xfbc9fef2 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xfbcc5773 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xfbee0c13 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xfbf063ec relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xfc0aa43b device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc408f0e nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xfc520e9b page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xfc68ae4b irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfca66699 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc5f9ed inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xfce8a788 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xfcffb22d pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xfd037969 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xfd069325 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xfd0b8646 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xfd10b1b9 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfd172d80 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xfd199c15 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd3ccc52 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xfd3d2049 update_time -EXPORT_SYMBOL_GPL vmlinux 0xfd3fc4a6 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfd51bde0 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xfd538a76 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xfd65392b dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xfd69da39 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xfd718f16 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd8204be debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xfda2e479 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xfda65bcb clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdbf8a39 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0xfddfe06d vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfdf92928 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xfdf9352e rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xfe015fcf __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe0ef29f regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe1cf388 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4775e0 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xfe4bb504 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xfe4d4056 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe755dab pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xfe79e2e5 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea3d4dd ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xfeb5f514 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfec170d3 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xfecf4aa6 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed28961 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfed2e99b acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xfee27fd7 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xfeeb8f14 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef7c0b6 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff10215a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xff186db7 iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff30037c gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xff49b551 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xff51d31a devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5d9606 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xff64d1b2 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xff7c2444 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xff7c7d68 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff96a761 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa6e18e devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xffaa822e __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xffab582f hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xffacf5a5 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb9bf48 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xffb9d2a0 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xffc3b3b4 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xffe16802 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xffe21b5d dma_request_chan -USB_STORAGE EXPORT_SYMBOL_GPL 0x00efa06c usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x044c5fcd usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x06a8c30b usb_stor_clear_halt 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 0x1c725797 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x33f544eb usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x373ee41a usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x405ac04d usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x40f0342e usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6cf7f4db usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x70499dce usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x729a6d5a usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89fa517c usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9b276b5b usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaa71e4a5 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb56706cc usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb738ba89 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbcdc8a1d usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc919a5b8 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xca80d89a usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcfd72dca usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd83b6b6d usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb37026d fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdc387b36 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe08bd469 usb_stor_reset_resume drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/lowlatency.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/lowlatency.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/lowlatency.modules @@ -1,5507 +0,0 @@ -104-quad-8 -3c509 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_exar -8250_lpss -8250_men_mcb -8250_mid -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -BusLogic -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -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 -act8865-regulator -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv7511-v4l2 -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -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 -ahc1ec0 -ahc1ec0-hwmon -ahc1ec0-wdt -ahci -ahci_platform -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak7375 -ak881x -ak8975 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -ambassador -amc6821 -amd -amd-rng -amd-xgbe -amd5536udc_pci -amd64_edac_mod -amd76xrom -amd8111e -amd_freq_sensitivity -amd_iommu_v2 -amdgpu -amilo-rfkill -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -anatop-regulator -ansi_cprng -anubis -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apex -apple-gmux -apple_bl -appledisplay -applesmc -applespi -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquantia -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arcxcnn_bl -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 -asb100 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asus-laptop -asus-nb-wmi -asus-wireless -asus-wmi -asus_atk0110 -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -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-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avm_cs -avmfritz -ax25 -ax88179_178a -ax88796b -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 -b1 -b1dma -b1pci -b1pcmcia -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs-drm -bonding -bpa10x -bpck -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -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-j1939 -can-raw -capi -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 -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-pltfrm -cdns3 -cdns3-pci-wrap -cec-gpio -ceph -cfag12864b -cfag12864bfb -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha-x86_64 -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8505 -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -chromeos_tbmc -chtls -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cio-dac -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-cs2000-cp -clk-max9485 -clk-palmas -clk-pwm -clk-s2mps11 -clk-si5341 -clk-si5351 -clk-si544 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -contec_pci_dio -cops -cordic -core -coretemp -cortina -cosm_bus -cosm_client -counter -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpu5wdt -cpuid -cpuidle-haltpoll -cqhci -cr_bllcd -cramfs -crc-itu-t -crc32-pclmul -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-pclmul -cros-ec-cec -cros_ec -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_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_kbd_led_backlight -cros_usbpd-charger -cros_usbpd_logger -crvml -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -ct82c710 -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da9030_battery -da9034-ts -da903x -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_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dcdbas -ddbridge -de2104x -de4x5 -decnet -defxx -dell-laptop -dell-rbtn -dell-smbios -dell-smm-hwmon -dell-smo8800 -dell-uart-backlight -dell-wmi -dell-wmi-aio -dell-wmi-descriptor -dell-wmi-led -dell_rbu -denali -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -diskonchip -dl2k -dlci -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-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dm1105 -dm9601 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dps310 -dpt_i2o -dptf_power -drbd -drm -drm_kms_helper -drm_mipi_dbi -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-edma -dw-edma-pcie -dw-i3c-master -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-pci -dwmac-generic -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 -echainiv -echo -ecrdsa_generic -edac_mce_amd -edt-ft5x06 -ee1004 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efi-pstore -efi_test -efibc -efs -egalax_ts_serial -ehci-fsl -ehset -einj -ektf2127 -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -erofs -esas2r -esb2rom -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -eurotechwdt -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -extcon-axp288 -extcon-fsa9480 -extcon-gpio -extcon-intel-cht-wc -extcon-intel-int3496 -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 -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_ddc -fb_sys_fops -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fjes -fl512 -floppy -fm10k -fm801-gp -fm_drv -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fschmd -fsia6b -fsl-mph-dr-of -fsl_linflexuart -fsl_lpuart -ftdi-elan -ftdi_sio -ftl -ftsteutates -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_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 -gasket -gb-audio-apbridgea -gb-audio-gb -gb-audio-manager -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 -gdth -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-clmulni-intel -gigaset -gl518sm -gl520sm -gl620a -glue_helper -gluebi -gm12u320 -gma500_gfx -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpd-pocket-fan -gpio -gpio-104-dio-48e -gpio-104-idi-48 -gpio-104-idio-16 -gpio-adp5520 -gpio-adp5588 -gpio-amd-fch -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-bd9571mwv -gpio-beeper -gpio-charger -gpio-crystalcove -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-f7188x -gpio-generic -gpio-gpio-mm -gpio-ich -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-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-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-siox -gpio-tpic2810 -gpio-tps65086 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-vx855 -gpio-wcove -gpio-winbond -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-ws16c48 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpu-sched -gr_udc -grace -gre -greybus -grip -grip_mp -gru -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hd44780 -hdaps -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -hecubafb -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi311x -hi6210-i2s -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hio -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wireless -hp-wmi -hp03 -hp100 -hp206c -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -hsu_dma -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 -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hyperbus-core -hyperv-keyboard -hyperv_fb -hysdn -i10nm_edac -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd-mp2-pci -i2c-amd-mp2-plat -i2c-amd756 -i2c-amd756-s4882 -i2c-amd8111 -i2c-cbus-gpio -i2c-cht-wc -i2c-cros-ec-tunnel -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-matroxfb -i2c-mlxcpld -i2c-multi-instantiate -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-parport-light -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-xiic -i3000_edac -i3200_edac -i3c -i3c-master-cdns -i40e -i40iw -i5000_edac -i5100_edac -i5400_edac -i5500_temp -i5k_amb -i6300esb -i7300_edac -i740fb -i7core_edac -i82092 -i82975x_edac -i915 -iTCO_vendor_support -iTCO_wdt -iavf -ib700wdt -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_qib -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -icc-core -ice -ichxrom -icp -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -ims-pcu -imx214 -imx258 -imx274 -imx319 -imx355 -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int3400_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-rng -intel-rst -intel-smartconnect -intel-vbtn -intel-wmi-thunderbolt -intel-xhci-usb-role-switch -intel-xway -intel_atomisp2_pm -intel_bxt_pmic_thermal -intel_bxtwc_tmu -intel_cht_int33fe -intel_chtdc_ti_pwrbtn -intel_int0002_vgpio -intel_ips -intel_menlow -intel_oaktrail -intel_pch_thermal -intel_pmc_ipc -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl_common -intel_rapl_msr -intel_soc_dts_iosf -intel_soc_dts_thermal -intel_soc_pmic_bxtwc -intel_soc_pmic_chtdc_ti -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 -intelfb -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ioatdma -ionic -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_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 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -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_cxgb3 -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 -khazad -kheaders -kl5kusb105 -kmem -kmx61 -kobil_sct -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -ks0108 -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -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_gswip -lapb -lapbether -lattice-ecp3-config -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-adp5520 -leds-apu -leds-as3645a -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lp3944 -leds-lp3952 -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxcpld -leds-mlxreg -leds-mt6323 -leds-nic78bx -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-ss4200 -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -legousbtower -lg-laptop -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -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 -lmc -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lockd -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_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 -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693-haptic -max77693-regulator -max77693_charger -max8649 -max8660 -max8688 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -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 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-i2c -mdio-mscc-miim -mdio-thunder -me4000 -me_daq -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei_hdcp -mei_phy -mei_wdt -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 -meye -mf6x4 -mgag200 -mi0283qt -mic_bus -mic_card -mic_cosm -mic_host -mic_x100_dma -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx-platform -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -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_sound -most_usb -most_video -moxa -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi-laptop -msi-wmi -msi001 -msi2500 -msm-vibrator -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-quadspi -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxm-wmi -mxser -mxuport -myrb -myri10ge -myrs -n411 -n5pf -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nand -nand_ecc -nandcore -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-avx2 -nhpoly1305-sse2 -ni903x_wdt -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nic7018_wdt -nicpf -nicstar -nicvf -nilfs2 -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_idt -ntb_hw_intel -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nv_tco -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nvram -nxp-nci -nxp-nci_i2c -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_xilinx_wdt -ofb -omfs -omninet -on20 -on26 -onenand -opa_vnic -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -palmas_gpadc -panasonic-laptop -pandora_bl -panel -panel-raspberrypi-touchscreen -paride -parkbd -parman -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pblk -pc300too -pc87360 -pc87413_wdt -pc87427 -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-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 -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_pcmcia -peak_usb -peaq-wmi -pegasus -pegasus_notetaker -penmount -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-cpcap-usb -phy-exynos-usb2 -phy-generic -phy-gpio-vbus-usb -phy-isp1301 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pinctrl-broxton -pinctrl-cannonlake -pinctrl-cedarfork -pinctrl-denverton -pinctrl-geminilake -pinctrl-icelake -pinctrl-intel -pinctrl-lewisburg -pinctrl-madera -pinctrl-mcp23s08 -pinctrl-sunrisepoint -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn544_mei -pn_pep -pnd2_edac -poly1305-x86_64 -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -processor_thermal_device -ps2-gpio -ps2mult -psample -psmouse -psnap -psxpad-spi -pt -ptp_kvm -pulse8-cec -pulsedlight-lidar-lite-v2 -punit_atom_debug -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-cros-ec -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pxa27x_udc -pxe1610 -pxrc -qat_c3xxx -qat_c3xxxvf -qat_c62x -qat_c62xvf -qat_dh895xcc -qat_dh895xccvf -qca8k -qcaux -qcom-emac -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom_glink_native -qcom_glink_rpm -qcom_spmi-regulator -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1b0004 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -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 -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcuperf -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rdmavt -rds -rds_rdma -rds_tcp -realtek -realtek-smi -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rndis_host -rndis_wlan -rockchip -rocker -rocket -rohm_bu21023 -roles -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-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-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wilco-ec -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -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 -sbni -sbp_target -sbs -sbs-battery -sbs-charger -sbs-manager -sbshc -sc1200wdt -sc16is7xx -sc92031 -sca3000 -scb2_flash -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_fq -sch_fq_codel -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 -scif -scif_bus -scr24x_cs -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdhci-xenon-driver -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -seco-cec -seed -sensorhub -ser_gigaset -serial_cs -serial_ir -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh_veu -sha1-ssse3 -sha256-ssse3 -sha3_generic -sha512-ssse3 -shark2 -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -silead -sim710 -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -sis-agp -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skd -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm3_generic -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc91c92_cs -smc_diag -smiapp -smiapp-pll -smipcie -smm665 -smsc -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-acp3x-pcm-dma -snd-acp3x-pdm-dma -snd-acp3x-rn -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-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-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-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-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-pcm -snd-pcm-dmaengine -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-rn-pci-acp3x -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-skl_nau88l25_max98357a -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-acpi -snd-soc-acpi-intel-match -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-bd28623 -snd-soc-bt-sco -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-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hdac-hda -snd-soc-hdac-hdmi -snd-soc-hdmi-codec -snd-soc-imx-audmux -snd-soc-inno-rk3036 -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-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-nau8825 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rl6231 -snd-soc-rl6347a -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-rt5660 -snd-soc-rt5663 -snd-soc-rt5670 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -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-skl_hda_dsp -snd-soc-skl_nau88l25_ssm4567 -snd-soc-skl_rt286 -snd-soc-sof_rt5682 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-acpi -snd-soc-sst-atom-hifi2-platform -snd-soc-sst-bdw-rt5677-mach -snd-soc-sst-broadwell -snd-soc-sst-bxt-da7219_max98357a -snd-soc-sst-bxt-rt298 -snd-soc-sst-byt-cht-cx2072x -snd-soc-sst-byt-cht-da7213 -snd-soc-sst-byt-cht-es8316 -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5651 -snd-soc-sst-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-firmware -snd-soc-sst-glk-rt5682_max98357a -snd-soc-sst-haswell -snd-soc-sst-haswell-pcm -snd-soc-sst-ipc -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -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-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd9335 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-acpi -snd-sof-intel-byt -snd-sof-intel-hda -snd-sof-intel-hda-common -snd-sof-intel-ipc -snd-sof-pci -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-intel -soundwire-intel-init -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-loopback-test -spi-mxic -spi-nor -spi-nxp-fspi -spi-oc-tiny -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-sc18is602 -spi-sifive -spi-slave-system-control -spi-slave-time -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spl -spmi -sps30 -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -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_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmmac -stmmac-pci -stmmac-platform -stowaway -stp -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -stx104 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3-wmi -surface3_button -surface3_spi -surfacepro3_button -svgalib -switchtec -sx8 -sx8654 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink -synclink_cs -synclink_gt -synclinkmp -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -tap -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -tcp_bbr -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_nv -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcpci -tcpci_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 -tea -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 -tgr192 -thermal-generic-adc -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-ads7950 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-tlc4541 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -topstar-laptop -torture -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -tqmx86_wdt -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -uPD98402 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -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_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uv_mmtimer -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vboxguest -vboxsf -vboxvideo -vcan -vcnl4000 -vcnl4035 -veml6070 -ves1820 -ves1x93 -veth -vfio_mdev -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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 -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt-dma -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -visorbus -visorhba -visorinput -visornic -vitesse -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vmd -vme_ca91cx42 -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvrdma -vmw_pvscsi -vmw_vmci -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vop -vop_bus -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wilco-charger -wilco_ec -wilco_ec_debugfs -wilco_ec_events -wilco_ec_telem -wimax -winbond-840 -winbond-cir -wire -wireguard -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x38_edac -x86_pkg_temp_thermal -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgene-hwmon -xhci-plat-hcd -xiaomi-wmi -xilinx-pr-decoupler -xilinx-spi -xilinx-xadc -xilinx_emac -xilinx_gmii2rgmii -xilinx_sdfec -xillybus_core -xillybus_pcie -xirc2ps_cs -xircom_cb -xlnx_vcu -xor -xp -xpad -xpc -xpnet -xr_usb_serial_common -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 -yealink -yellowfin -yenta_socket -yurex -z3fold -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zunicode -zx-tdm reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/amd64/lowlatency.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/amd64/lowlatency.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/arm64/generic +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/arm64/generic @@ -1,23555 +0,0 @@ -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x901d8ed8 ce_aes_setkey -EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt -EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt -EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt -EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt -EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order -EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0xcdb6a418 sha512_block_data_order -EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x2fe686ce crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x69d83dc3 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x94d16bb4 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xb660bed3 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xc133d800 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xf6976686 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/sha3_generic 0x2e063d69 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x49625b62 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xf052f4e2 crypto_sha3_update -EXPORT_SYMBOL crypto/sm3_generic 0x1536a2ff crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x914905be crypto_sm3_finup -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid -EXPORT_SYMBOL drivers/atm/suni 0x0e657c38 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x18de75d4 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xc0448f5a bcma_core_dma_translation -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa5839ede btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6c1bb540 rsi_bt_ops -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5aa9b9d6 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5baae926 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb3bf1da2 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xeea74716 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5bd49ab9 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8cd5682a st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x978da976 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd2113ba7 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x26dd6cfd xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x79bde269 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7ab83cb5 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x03487807 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x37c24c4f atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9f0f7ca1 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 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 0x46a87d18 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0x6a0345d4 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x78b920d7 caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0xb036ade1 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0a88aabf split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x59d8c3c4 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6c0a8ca6 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc819f1ca gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xfb835d84 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap -EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash -EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x7a1b7f13 dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x3752defa caam_strstatus -EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x4af822df xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02ed3749 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x056a83b8 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05fd869b fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x08837216 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b793519 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x21f4a55a fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d6e2d6b fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x379e4275 fw_bus_type -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 0x40f42c98 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x59ae89ee fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5dc83df2 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x63f980b0 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x768019ab fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8dae7d4c fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x93d2cd5f fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa32b445b fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa899b79b fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xab197f75 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xba4f6af9 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc699f958 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbceff90 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdef23b10 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe63cebbe fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8d710a3 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf94aaf56 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb68f5e4 fw_core_handle_request -EXPORT_SYMBOL drivers/gpu/drm/drm 0x019d6aba drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f54bda drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ac61b6 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b72904 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04c0af5c drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04cf1fc2 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f2a5f7 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0692c343 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c52656 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fc93a7 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x097779ab drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5b7a42 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0baa743f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c0389c6 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7b2ca8 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5d2ba7 drm_mode_put_tile_group -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 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1107e080 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11702b04 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x123f8125 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x128b0c08 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1307acb0 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d0c679 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f0036c drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1561c541 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c156f5 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d24db7 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f818a4 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fca141 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x180e484b drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18128d85 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1836edb0 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1931120e drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1942ce37 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a644742 drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ada8b2c drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b08ae36 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd05849 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf18393 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d91c67b drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc0b678 drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0c7d41 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e13b8cb drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f00f124 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f08730b drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8a2878 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cc1b4e drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x220b1677 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x232e8057 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ffab5c drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e73cea drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x255175ba drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26693f3d drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28181ff2 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28edf0de drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29cf9114 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e26493 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2f3d29 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b309704 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b342f9d drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5e1558 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cea89f8 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e72312d drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7ec0ae drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e90439e drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9de5b0 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f0ce18f drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2a6e97 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x309e7c74 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f37f5a drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32429333 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c60f5c drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ed7dab drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x336c321b drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x345c38e9 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35593d1b drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x358a2907 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b3e709 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e72293 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f7e891 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3737aec8 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3758f9ce drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37985977 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a112b4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37fa20c9 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3989eb5d drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39e4acc9 drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fda264 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1fb240 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9054fa drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc873ac drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bcc402d drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c99661f drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4d0c48 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e08cfa2 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef8d619 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0903d2 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8e2bfb drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbe0aac drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4216ef2d drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x437c576d drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d328d3 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45395d8a drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45975698 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x459fba0a drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46cc1c8f drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x483105b5 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48812421 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492ca747 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x494cec22 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4968b565 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49914986 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b45748c drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc01b00 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bee09af drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf1dbf9 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c019440 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e483932 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd5eb7b drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x500ace80 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50312047 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5148c449 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51651769 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x531854f8 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53907049 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b26663 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53de135a drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c09681 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x554ee80a drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c7a826 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5608bd0a drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x562867d6 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x563e7f02 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5661d2a7 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5739342c drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b30998 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57dbe4a5 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5809bbe7 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bb6ebd drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e61c51 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f94665 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5ed09e drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd3e26d drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8ccd59 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca74b57 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc95427 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3b8176 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e55be6c drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5fab9a drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x606ff426 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f557e5 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66081bf0 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6750f79e drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x689e0b43 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6962d060 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x697ea8a3 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69dd8753 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c759332 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d895604 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8cc4a4 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x706b31fa drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70793237 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e19952 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71734439 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71dae817 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x734095f0 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x741f4b46 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74379bca drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7710d57c drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77aa93d1 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e17e14 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7921e755 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79436101 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a254b35 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a75f46a drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9576b4 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9530cd drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba4554b drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be092e5 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c898bc9 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc58f19 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d052d24 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9c5987 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e07e3c4 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea1d5f4 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eafbe37 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb0362b drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2b9cd2 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2cdd8e drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f558ba8 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa91e94 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8017b11a drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x802192e1 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8215de29 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828543ad drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x836807d9 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ed60e8 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f0e066 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8420009e drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x852ffeb2 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853c42dc drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8646cea4 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86590854 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x884fb45a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x890c9004 drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a2159c drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b7381a9 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5b66f5 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da911b1 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f69f3f8 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x910fc1b7 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f1bc6c drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fe3cba drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92444e7b drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a5f115 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9395aa22 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x951ce9b6 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95bee7f0 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a727e0 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x970e232b drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9792d10c drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a7a887 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa5b36c of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd786fb drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1afd84 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4d81ce drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6499fb drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f80d418 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb18bf1 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1dfebe8 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa41ebab5 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa420416e drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4359adc drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa43d8f61 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f8f259 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa667aae7 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d4ffb4 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa828f1dc drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9793e47 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a5f3b2 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa8385dd drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2d29c0 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad11b792 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad437488 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7875bc drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee9d4df drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf98dae7 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb03e9a0a drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb079c364 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb09d52af drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0edaf3e drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e3e7a3 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb283c226 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a9acd3 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32fc961 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3fb9d99 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44d5ad6 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e6070a drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a15db0 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cbe235 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb73d407 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb01379 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd95e8da drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbddc46a6 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc034da15 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0aa8ba7 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b30275 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2eeb2ac drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc41c449b drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc47f0a7f drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5924559 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc594f26b drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8684e40 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88dc1d0 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc899cc9f drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ce6fde drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9729fb5 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9ebeb81 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca082a81 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb52b451 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9bee8c drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc4eb60e drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc747728 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd48017e drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4ef1ae drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8961b4 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecb6a81 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd882ba drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0619697 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09976d2 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d77fcf drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d1bdb1 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44e6644 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5565915 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd595e4b8 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d407a7 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6389439 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd656014c drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd768b335 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7813f48 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8252b2e drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d7a85d drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda4ba18b drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8e100d drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac98011 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb036a7c drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbbe1de9 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc8a2959 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcec995f drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9d7250 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde73a4d drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2d63ff drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee1666e drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0dcc72 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a517e8 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d5395e drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4985e75 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f0ffd3 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f16e9c drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4fe2b39 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a67ef1 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe72e05ba drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe771564a drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86d0435 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b42135 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe930d8d5 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea08f02d drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0c6fbe drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebfe9ad4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec814ec9 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd07dda drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bdfc19 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c904c5 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f12b9a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf30a65ee drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf36b1c74 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a6270c drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf548896b drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6415976 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81dee12 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7aac20 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3238db drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb510f99 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc439eb4 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc57c7a9 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd071281 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe40f099 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe51683e drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff19be59 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff85b235 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x006c2e03 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00be86e4 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00d147bc drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030acf3a drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x034eb14b drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03a254c5 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d7627b drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04df1b9b drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05724337 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05a8e0a4 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07c3a42c drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d1b021 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0875a82b drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08b02188 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09dceb3b drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b43a986 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b50842e drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bd296b2 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dc30539 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebe6af1 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f685986 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13498c5f drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x149e1273 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14b095d8 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x184ec43d drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18887682 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19f80298 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a2afdd2 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fbd139e drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b433ca drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c756be drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24c16926 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x254bba5d drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26896553 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x277fc6a5 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2915d171 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2973c3a8 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b091544 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x340d7a41 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3628b7da drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x373625f0 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a21122f drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a83a0f0 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b0fe3ae drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40546758 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f486b5 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b6ad45 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44fec537 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45328fac drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x464ef26a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46a83107 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47eb487e drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b556c64 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1c01c9 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f37d315 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f703e4a drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f4c2fa drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51fa0be0 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53fdbd34 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5413cbc8 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x541f8f7c drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x557131ba __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ed4b28 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x573c6abd drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57841567 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590f1d06 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d6c595 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f8837d drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c164e5a drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c429f8b drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf1fc7f drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d743689 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dda35ec drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fea2cd8 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60c0cef4 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61438b37 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620d4b0a __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x639cb427 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d5519b drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a2b8dc devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68be8c7b drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6952ad83 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6978f67c drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ab55e80 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce14182 drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcffab4 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f31aeac drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f42cf59 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7082683c drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a71efa drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x732134e5 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75db3dcc drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79db8c12 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79e542fa drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7adbe526 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdf575c drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e8a0f01 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7edf40e2 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f71793c drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9f0b17 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80393ebb drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8157c8f9 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c2b4f3 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81f3eaa7 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x824572f8 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x840bef15 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84617dd1 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8478ef98 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84fd6dc1 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x850dfe78 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8546a986 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873b006f drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89a4a095 drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a2980c0 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a9e7258 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8bfbcf drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e4b1121 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ec37234 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee2f1a1 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f039092 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f621d28 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a64762 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ad80fb drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95018ec0 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f08d84 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e2c9b5 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992b8aa5 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99537da8 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99bdafa0 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a79f967 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb514cf drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0761ec0 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1ea935d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42ec7a9 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4a8c80f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa615f543 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa79f369d drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa875d518 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9485808 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa1a9233 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb06f1cd2 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb19ac34c drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ff8577 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3fff3fd drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6761988 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71622a9 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c93d80 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb94a4b17 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9a79ccf drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba79811 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd76ae59 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf318b11 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf38c733 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc00c50c6 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc15e8b98 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc733e9bf drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc74af39a drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f3e916 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb795f12 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbbc6167 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfd69cf2 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd33a63cc __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4591741 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d47877 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda109247 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc9e910 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d1a7e5 drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e41015 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe53d3ee1 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe642f19c drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8faffac drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe93e27c5 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe988810d drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea21c148 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea3e522f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec7ae1d9 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed69ae1a drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed6a2933 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee9c9fc8 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef697a91 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefa65373 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0adc30b drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf313c2ff drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf48a217b drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c8fbf7 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4ccfd81 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6804546 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6a33827 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf768681f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9ad2066 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc843a2 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfe8c84 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9a2172 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffaeb1f5 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffe0a442 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x126b6ebd mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2a372cc8 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x33bf850f mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x392bb4a4 mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39f3409e mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x53c6d38b mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x54c590f6 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x71e77a8f mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f47f2d9 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f5e39ef mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x93cb82e7 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb66cc2b9 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc32f4632 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd2523212 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9bfdf75 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdaa3e881 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdb0d18ec mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe97af5dd mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x046dbc4f drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1e16ac8e drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2707b3b8 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a4a2276 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x352df92c drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x36d4e7b4 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3fe06908 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69e9ef80 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6bed63db drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x71d24059 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x83dc7d63 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x95456ed0 drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9b00f9dc drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa92d1eef drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xafbb1784 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb00bf13a drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba1bfb51 drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbb55745a drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe608e1d0 drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf499eeed drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x88441244 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06f22d95 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c699bdb drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4348b852 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x50b195c6 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x51574a11 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76741b55 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76d16fdd drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x815785f4 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82297d85 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x829454f8 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82d688bb drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x91f1d795 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa8f6aced drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1098917 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcac0c575 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdbaf5314 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0847d39 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe28e600a drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf5b2af15 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0340492e sun4i_frontend_exit -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x258ecdf1 sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xbcb0d88e sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xc5e588c6 sun4i_frontend_update_coord -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xd7c4fd03 sun4i_frontend_update_formats -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe192a2b7 sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x01cd0627 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x275427ca sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3a51fafb sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5fd6edd5 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8d66d0ef sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe36a6be9 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x3bc8e8f6 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x5b9199fc sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x024fba61 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x097c506b ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ab4bb89 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c842e56 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1035cd80 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x130585ed ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16ce3eec ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e4d083d ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x215f70bd ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x234335b9 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b6db8ce ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x362ff2d9 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b65fcc ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3810dfad ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b786c29 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cb056b3 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45138cea ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d02b1d2 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53981eec ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55543130 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x576c02c5 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59211211 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cc2807a ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x604466b7 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x647f203d ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x664b78df ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6db1757a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73e3fb85 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7410d41b ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x742c67b4 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7879a998 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cb712a7 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d35b677 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f110d81 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81b453b5 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81c72050 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81ed8f31 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x844deca2 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86d0f2af ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89f91506 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a20c605 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f656fda ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b18ea5d ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fad26a8 ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa08537c6 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa53c7c3e ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad2b8ccf ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad574f54 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0d19531 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0e25010 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3a60510 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb64d2af ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f12b25 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbb1fdae ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde0ed454 ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe88fa79e ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9605dd9 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeac019ef ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf062b2a9 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf69cc374 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf774c665 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6d7104 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbff8b9a ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/hid/hid 0x823e0c67 hid_bus_type -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x4a6e2e87 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5b17fd06 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x858c4f7a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf6bf278a i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3906a6dd i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x597d4093 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xbbcb5dd0 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x0a98962a kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x4c82770e kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa3dcb9bc kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1219c582 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a1a13ec mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x30b52741 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3925354e mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3e6daf33 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4e78f414 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5af50049 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x636d69de mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6eab9284 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9da00c9b mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5879f3d mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc64df530 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xccfe4e7b mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd12cda34 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe1f3cd72 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef481b69 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x56605954 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc73dbc04 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd0cc2e99 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbec4c5b9 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfbcd0836 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x059b29c6 devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5ef352fa devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5faabdaa iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbb0c0caa iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x4259f1dd bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x215d09fa hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x24928dad hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x46930c2d hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7bc6fed8 hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc8aec657 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcde05000 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd0d24b23 hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdfda1d9b hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdfdf486d hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfcb61a86 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0fab83bd hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4d766ce3 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x50a81ad3 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xde45c9ec hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x29c70dfa ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2c600726 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d7859fb ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x63358f11 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x65743524 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x90b8127e ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd570ca2b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd94b9378 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd9d2d47b ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x21966c58 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x594bb5b3 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7ab97098 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7dffccef ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd9ebb803 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x40f5526c ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5af9951e ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb4649457 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x08b1497e st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d5d649a st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ab65b93 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ad5adbd st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3f933183 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59d0bfb6 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62b95e83 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x677eb98f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69620e87 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7727c7f1 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x81c07923 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9b769009 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa31dfba5 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa67f2679 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd6a4ca5 st_sensors_of_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd83513d st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xede044e9 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfff7c2df st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x5be64f7f st_sensors_match_acpi_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xaf534dd4 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x2a351dd0 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x93162767 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xbccc61ea mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc85ba7ca mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0a13e885 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1e304ad5 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2fc132d5 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x29cbc592 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf993b553 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x8ee0dc40 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb683aacc adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x7c84f38b bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x455455f9 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x51194ed2 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x0135d1e4 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x0b152353 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x11ad8a64 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x174ccd6c iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x19606b6a __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x336f70af iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x3cdb4ee2 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x489bc28a iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x68de3210 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x72f5bb12 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x7441f8ad iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x947f6ca6 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x97a48230 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xa1ef6f7e iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xaa19068a iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xadb1ec1f iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xb572d5e8 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xb61c7816 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xbb3b63f3 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xc54939da __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd87c6d20 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe237d234 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xf9b462ee iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x30c4f3d0 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0873a6ae iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x433f6ba2 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5ee68f46 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcc5732db iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x80064afb iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb6524fa8 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd6504095 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfd7ebd1c iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8ad3ba0c iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xea7a43f6 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x66acdd79 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xf45bce5c st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x119184c1 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x1edd47dc bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x6655cf2f bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xcfb87f7d bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1e88ce64 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x54c6cbbf hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xae4b84db hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf7dc3e0a hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x09ca2b70 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7111b357 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbe35f974 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x1d3f833d bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2c028990 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb7812fa9 bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc68454f2 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf4c7fdec bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x46e7b167 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc525f04f ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5d9b12ae st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x8dafced0 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc159964a st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14a83129 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cff64a9 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2dd4aaa4 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3eac8432 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5999ac77 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c4671a5 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x740e07eb ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x83da4dce ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x850845f8 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c224d57 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaca4cd41 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb52a42bd ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6ea5007 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc76c6b59 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf8af86f ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xedaa2c4d ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf68da369 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfffa0d90 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01063c4e ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01097542 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01296f50 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02cd98df __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x042c793e rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x075f1ee9 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09f7dd15 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a62d7dd ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f6128 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e76240b ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f2606fa ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x102978be __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1093cf3a ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1375a37f ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1428d3ec ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14bfb326 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x191cd356 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x196c328a ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad34593 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b2bbc85 rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cabd00a rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dff9b53 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e94a86f ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f875199 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fd2eb30 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff7d5f2 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2031d76d ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20afaa52 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210fba97 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21f063ee rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21fcdec8 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d92c83 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23dc3e1f ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x247107a5 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24d4404e ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x259a5ff0 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274e42a0 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b7164d __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa9f045 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e4dee13 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ff190a3 ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x306aeb92 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a1d966 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322212f3 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32bd5f69 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35d2ff33 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38041159 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38117212 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381ab6bf ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38a109cf ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x398d7b33 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a30ea63 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b4c5bae ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c0a6cef ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d20bb19 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e46bb02 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f7a88cc ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x408f15f5 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x412f9e76 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43774417 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44575571 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45581b26 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x479da019 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4939b2bc ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49485f96 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4968c1dc rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a505d2 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c675fd3 ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d595507 ib_modify_port -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 0x4ec4a65b ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f1c906c ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50917256 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5183e5e0 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5269787d ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52c2a3d0 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54c12e6a ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5629f2ee rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5985b124 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59cd4a76 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d041a0d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f35c4b9 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fbdc9f1 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fd39c10 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a8e577 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x631c8f31 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d447ee ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6815cc6e rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6928430b ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69961d11 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b46e7be ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3e557b ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e683ab5 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e6ac1f5 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e9e61e0 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe95d79 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c82ae2 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7208777a ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73a3dc82 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x762c9958 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76813eae ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x796c248d rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b740bdc ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c755029 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8cb7f1 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ffee777 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81cd8fdb ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8325e509 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x847e3b3c ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x865a7207 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86790800 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8881435c ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa8cfa6 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d0b0a50 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94096a66 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9420b7aa ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x959364c9 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9726889a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x983fae10 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a0cfced rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bef5710 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cd227ca rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0996f2b ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa433e9bb ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa44b5e3e rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa54eafd2 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5677862 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e0f383 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa5850f8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaab23dee ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac70344a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad905165 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeac9145 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaee22847 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb09822bd rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0991ca7 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb268f4b5 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27878fd ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb29ff0e4 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb42000f9 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5431f46 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba31e01f ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb83998e ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd5cc33b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf263b54 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc05221a8 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a58cfe ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4ce2c03 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc57e3476 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62706af ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66dd38e ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8aa8508 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b8cd4c rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca3b4ad5 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbfece58 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceadb361 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf9c7c06 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd14e994d ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2c1d51c rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3c8f942 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd53dee45 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d89a82 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63fd397 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6444169 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd930186f ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd154e64 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddaa12ef rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4612c18 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4709a70 ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5b90615 ib_unregister_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 0xee611d1a ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04cedb5 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1576911 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf31190fd rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf315c23e rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3ab48b7 ib_port_unregister_module_stat -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 0xf71015dd rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8825450 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9284efb ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9680864 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfae81752 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc831a1f rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd590a31 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff77c2a9 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26693654 uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e93408d ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37d4c90f flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x450b002b ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b9c2b93 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53a16c9e ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57826424 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64e648a1 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6aa6cec8 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6be94cd7 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6dcbd275 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e23d65e _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7827ee3c ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a2a1975 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fb4fb21 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b81c139 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95409166 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0232480 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2fe2e4a ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc294917c ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5a9837b flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd816d90b ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe48b7be4 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3b0ca03 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4fd0de8 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf955738f ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24e72649 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x583b44f3 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64d8baa8 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa07a20b6 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb61969a2 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb365b16 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeffab02e iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff876b42 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00f9f9d3 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08688917 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c7aecbe rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ce52902 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x124a2765 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c027cab rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x224c062f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23eb7bda __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fc49097 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41b86fc0 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44106a03 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4434e714 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e0bb60f rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5aa57eac rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5bd1c076 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c9d5c1f rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77ad8947 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x905c2509 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa75ae22d rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8955c31 __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba0802f4 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc123251d rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc97ed558 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcefe0a5d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdaa86d62 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3ac1be9 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4bfdfc9 rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf257aa4f rdma_reject_msg -EXPORT_SYMBOL drivers/input/gameport/gameport 0x036c3cbb gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0f326593 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x35ab3da9 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4abb728f __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x825f18ce gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x831ba3e9 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x97137860 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa7e49899 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xef4e9b2b gameport_unregister_driver -EXPORT_SYMBOL drivers/input/input-polldev 0x2bea20ca input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x465d2c56 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x46de26e9 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xa310f5aa input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xfc021b26 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x3712a98f iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x401a6a8e iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf00d144a iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x328188d7 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x23702b3e ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x597d1609 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5ac669e1 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb6dbeecd cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x514dc8ab rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x38d3e682 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5e016f5e sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6b8a3492 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9e791f29 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb94d65cd sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6a1b58ea ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb20208c9 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x01f8b2db capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0b328eb1 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32fa6fe2 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4c6c047a attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7303e8c7 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb7041aa2 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb8ccfab6 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc025ef5d capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbc3d086 capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcecb2b04 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -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 0x31da6ec4 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x67a5be08 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb8af83fe mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xefee9c73 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3d0c60da mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x8f11fca1 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1240494d mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cc4f55a recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1fc8217c mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26a7ebe1 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28892d54 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31b5d3f1 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3662e7cb recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x392ce840 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ebf0a5f recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b772e56 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58302831 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5fb88e2e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61ea59bb mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7028d564 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87fd22ce mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88c0118f mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cd99252 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95b476e1 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a62ae31 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa690351a create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8c351ac mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1daef68 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbf50a04 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x63619b4e ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xf3557c31 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2f67afb3 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x69c0b1d6 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa6e87251 omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/dm-log 0x2166d58e dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x2dbbbb19 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x46f63a31 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x4c693b34 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x11448947 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c773f20 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa4885784 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xaff34211 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc4ecde9e dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcdc1d210 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0x2b02369e r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xba345e12 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2d6ebb0c flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x35445bcf flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6525d1a9 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6e449c6d flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x72d6fc06 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b14f44b flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x940f8e17 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc002d319 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd0eac5c3 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdb33acc4 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe02664cd flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa9ff0fa flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb742540 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/cx2341x 0x3dcbb0ef cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x923867c3 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbdb80795 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe2748202 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xf30f3408 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x1ab7e0df tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7aed408b vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xec0d956e vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x09853231 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa0ee0295 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbef7b93a vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc962dab5 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xda56321e vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdaae855e vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd18ea347 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x001f75b9 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x065a9aee dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09eb7837 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e4375cd dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24f510a8 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x335ea74c dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37613036 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38b0bd33 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3feecaf6 dvb_dmx_swfilter_raw -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 0x67480317 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x677f0154 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68dca0e8 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x88865dc8 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c582b1b dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ca7a18a dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8eee6ac8 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9523b190 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96c44f60 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b438d89 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1ddeae3 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb41521be dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcdfff874 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1e0e8d7 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd37f145e dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets -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 0xf7a1939a dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfee07f4d dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xcc4ed1a7 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x10d351e9 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x042c3c62 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x537c2f00 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5debefa3 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8b249626 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9b0b6b57 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdc4c38fd au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe32b3efb au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4a58ad3 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfd7dd700 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6cba2608 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x25152cc8 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x361deef7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x24dc51b2 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xaa24d8a3 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa2fdd0c9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf14e175c cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x86715e7c cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xda358f97 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x197aad47 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc9d71b40 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x28d73f3c cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x623192a4 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbb703999 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x6f79413c cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x110df1f5 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x228f6308 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbdf81ac3 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd71de792 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf5cfa539 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b60d728 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2ac3ea78 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x49d1bf61 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c66bae7 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x69fbb859 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x73b4e95e dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8aaf18e2 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8cfccff2 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94c51fff dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96069599 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xabe4655a dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xadb53b19 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd846e9f2 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdba4960b dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdfd7e783 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xc2040236 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x76ccab94 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x85a421fb dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x96038bed dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc2910cf4 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd890daf2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe1aec779 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1adbbb73 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6b80bd67 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa20bb4da dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe97b87e1 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2477a16c dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb6a6590e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x12173733 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1d2b8967 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2c00dea6 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x58b67e03 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5ffcc178 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x769f52cc dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb0bc80d8 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc23fa5fd dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xda200dea dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf0d94d5b dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfc6ae4c7 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfd58a285 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xffdf3a5a dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4e476852 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6e068e13 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x79a359e8 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9709acf1 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xac7b9e98 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd89c9928 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x27452c82 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xc0c15598 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe4b9dd82 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7f802c81 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3de85253 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x651f69dd dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9626763b dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xfb94f4a8 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x082d07a9 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2002f72e helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6b5ed36b horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x0edd4470 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xb2c28583 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x39e1f05c isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x58d044b4 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4db7e7a1 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x94eabbbd l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x4c56f292 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x16838217 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1aca4643 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x6ce7eba0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4699410c lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x738a44cd lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x7782e229 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x01baecc0 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x101f5d27 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6e539263 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xff12297e lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x013966fe m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2a12e080 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xe1c0c37b m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x125c808e mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9bd84efd mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6ccfeced mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x78706e14 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x9b9f6bf8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x0755adf3 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x247a24da or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x186ffdaa or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x534b8913 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x9c9aeafe s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x56a0709b s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf37e9352 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x34cbb067 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa90f018e s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xfc87eea9 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x13163e2a sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x09f36c47 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa4157447 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x162e4865 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x401f9581 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xc470a5b4 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2198f098 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xcc14bc73 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4f07d4ca stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7160ff1b stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa9e00e88 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7cbd3890 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7b989e77 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x328b64e8 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf0172efd stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xcfd0c5d9 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xcbb2772b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6bf40422 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xcf003f9c tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xeb743773 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd28ab614 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x0aa84188 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x98ec02fa tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x84c0d911 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdfc3eb6d tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x73138f42 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2aef99a4 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8ce80e8e ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd0c3d264 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x209a8d02 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4744da05 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x48cd3da2 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe6796a19 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x0010e802 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x06cd84ae flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x35def979 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4736a386 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x601a7914 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a1f06f9 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6c4ec7d6 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbb85c23a flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x045cfacb bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x26c47148 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5be03685 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x657fe48f bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x74e8a5d0 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7791fc06 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7d211dd0 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36932066 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x55c5647c dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ae3cc69 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5fa94a2c write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x724aa358 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa06e3ffd rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa384d896 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb2d8e514 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd2d4bdff dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xff607212 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x102db0c2 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2529403d cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2c08a00d cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56a2e92f cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdb90e3a3 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x482fc8f2 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x66ff6b43 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6de239d7 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6f42a642 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa7e0aaa1 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe81a1589 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfe2be93d cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1c65fd00 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5709bfc0 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1588a2d4 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6501d058 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb184d1aa cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd12b39ef cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x026c5a32 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3b06a099 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6a90c8ea cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f977ff2 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc3e8c608 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf9419457 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf9d4584a cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x021438ee cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f468ef9 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x255de131 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x41c30539 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4358b5bb cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x682351be cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70ee8e5f cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x775aa117 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x780fee04 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x850e8402 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8aa0879d cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e7c393f cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ffcb299 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90f3961d cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa17b888d cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xad3721af cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd2233e8 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xddb1e16e cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe662aaf0 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfff943b5 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1877ca1b ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x24e2d90b ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x267f89ec ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x272fcdb2 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x44a8809d ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d576a2f ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4f49e766 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x56f1c6ab ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x62105148 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0317d22 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0b67fdd ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7ddb507 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc31bf07 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd04978a8 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xda667d70 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf14f14b5 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdc46ba5 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x063c50b2 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1013e2d1 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1576fc31 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4f8b30e0 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x540f3e51 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75752247 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabf15770 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaef98c62 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbcf2f68a saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc38f4459 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd98ad98f saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x86366d43 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/radio/tea575x 0x020c99fe snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x25f223fc snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e36664b snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xac8989fc snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd18ff6df snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe4d60fbe snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe6cda9da snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3d9725f9 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xe519e08a ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x5874a17e fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xfe21cf48 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x41d8a6ef fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7b64b10b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf59df739 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x81d65a1d max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5363b384 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x256d4130 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x6863a604 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf9c46da1 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x761391c3 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xb3994e88 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x3d5770fe tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x70fede16 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x101b1cec xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xff1fdc40 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x07332808 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3faa5e94 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x33e54f49 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3901351a dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a713ccc dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4ec8e5a9 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7f468351 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa7d93d8c dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb4ce56b1 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcfa0b8d5 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xec362444 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x04610d6d dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1df388ac usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x42a47466 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7b67aec3 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8964709c dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf13144a5 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf2949837 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x25cd20c9 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0c02972a dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0e1ee74d dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x162538e9 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b346376 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x49c2ffb7 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x569911bd dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x752d64ee dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba9f8b16 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc4fa1c7d dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x0c3ba8a4 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6f00c977 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0acfa955 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb75533ee em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x083176df go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2c413b64 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x48486039 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4f0c37a1 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77a71817 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xab83ff47 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbd35d267 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe24d6ca4 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe9f133b5 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x002d0a52 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x300bcd78 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3442c37f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x38ab6c5c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3978db6b gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x75a93efd gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9ced24a9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc1a4467e gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x138a6e9f tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x758cf571 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf9e037c2 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1df81fad ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x363f1e67 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x52005792 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdfc256b7 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf89db1e4 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01d8d0f5 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x042bbcb8 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0841aa89 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0aca3cca v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bd28246 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ecd1630 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x111836db v4l2_ctrl_auto_cluster -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 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f224da9 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23cf98b3 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a9b1b0f v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d76031 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x367cdc95 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d5b3985 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3decdbf4 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44415481 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4753d056 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c276253 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52822f64 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5805b906 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59673da7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6030f8ed v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x607940af v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x659155ad v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d39e6e5 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f4ecf27 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7154d074 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72ff211e v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73cfed8e __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75ba4bb5 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e221aaa v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f495609 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86e330a2 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93f3fe36 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96f899ec video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99283332 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99444479 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9edd499e v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa217a6ab v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa33d31ef v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa38b29e4 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4835324 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa50a994f video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa669355c v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8350342 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0c1a3c3 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb289ae27 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb546711e v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8201b92 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb837f22f v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb98c0b8f video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc20b3d63 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6d90212 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8a0758c v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8e1f2f5 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcaf3fb9c v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd01b439 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd66642f v4l2_ctrl_find -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 0xd3a37b98 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd75f2185 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb4c940c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde6eadaf v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea042b50 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee54a2eb v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8364957 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06c2e918 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x229b57ce memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3a22fd8f memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x459b2bd6 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4608a8cf memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6ec4913a memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x745f1e11 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x909e092b memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9b61c25f memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd7bbf998 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf0bb64aa memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf8f888c6 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x096c1851 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f1940a0 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36b89af7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b2fada0 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48f42c44 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b2e9ad1 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6458253a mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x645834b4 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d7ec308 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6fdbf79c mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a3f0070 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x807c12c3 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89e762df mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0b7d04b mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb3d2dde mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb7f5a7b mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc76fa1ca mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd136018e mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1691112 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5ff61e7 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd850bf0 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdea3dc30 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe925681f mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeae1882d mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef5df100 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0cd382e mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf33ec651 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf94c51bc mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe929d15 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0bf06546 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cd30616 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x142cecb0 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15d8548d mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17c0a4b6 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x192d7d16 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x229c4176 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26565883 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x49fe3b8d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bb62c19 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4df84edb mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b60bd37 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c37225a mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76330696 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f0a9fea mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84f14619 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86055582 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8afa6f71 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9376f7f6 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9544eafc mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1e25071 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9515541 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc29b78c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd165f7a9 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde1c32dc mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3cb6627 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf71ecab8 mptscsih_host_attrs -EXPORT_SYMBOL drivers/mfd/axp20x 0x5dd3b000 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x84f3f3b7 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x93cca36c axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x131a1b50 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xb4147f48 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcd81fd08 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x23e6c13f pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5ef23964 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1cb285bd mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2429c4d5 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48a00ec1 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x89e9e916 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9347e6d2 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x962a034e mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9caff0f6 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xac40e4eb mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2f76ce7 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb30d4e89 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdbe421b7 mc13xxx_irq_unmask -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 0x17914792 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x3eb81c67 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6f5a5134 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xba5e9fc8 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xc202e880 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xf0385319 wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4d4c92bc ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdc867ef0 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x54fcdc66 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x8bc09ca0 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xa4e24a1e c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x42189124 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x659dccd5 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x74dbc4dc tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7771dd45 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x920148cd tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xac31e2f2 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb6c77e44 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xb8cb5a24 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xe70d492a tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xf19bccc5 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xf8a7b5d1 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xfdd602b4 tifm_unmap_sg -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x12595cb1 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x88dfdff0 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb4e54241 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfceba6fa cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfd420ffa cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x13dcd960 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6801d731 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc4a25ccc dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc9d90e77 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x4246f01b mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8ef4e434 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x03c2e737 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1e6de9b5 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3adf50a6 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8063803a cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f711b9e cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8432a32 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff6eb705 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6b7a9e6d unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6fb72838 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc7d2b887 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd970e2d2 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xebe4648a mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x96ed40d7 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x72a204c3 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x174d02c5 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xdec7b41d mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x19c4131c flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x677abff8 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x280f5d6a denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x99920953 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x4f46ddac of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x00bc2be1 nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1c5ca021 nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2f0998bc nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57085348 nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79c3aa8f nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x89979081 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xafc327ce nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xce05183f nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd575380a nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf887f3f0 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x57185da9 nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xe05647af nand_correct_data -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1da06822 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2aa5fcd3 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53a7f2eb arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5a5db6b4 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ae140a4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e2b5928 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd24e3320 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd2ae40fe arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe6a2f0ef arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1e58575 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3b5cb7e1 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5f33c98e com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe6ef29e6 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b82abe5 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14c3c5b4 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2005fcfd b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x259a86fd b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x275d7c3a b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a24ac65 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x32ebf30c b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34a27729 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d730fd8 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43e6fca0 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4539e590 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x48b57887 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x494e0566 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e2936cd b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55fa49e0 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x561c06a5 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56302de7 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69d58b5a b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e302d27 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87baa9ce b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93efc32c b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98f630a6 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4f12aa0 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb337bd25 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf7d3fba b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd3eebaf8 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdabb7161 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe07e8fe0 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1fcabeb b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2484422 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2856709 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe3a97280 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef83aba2 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xefad1b0e b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3775195 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5d18933 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa83695f b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfaebb431 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x556479cd b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x64c15508 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x73a3e1dc b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x81b14242 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa37eb202 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf580a24b b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd27be060 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xeaf720ba lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x54a19966 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x2cd966c5 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2b03cbbd ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa4771ee5 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdf2bc935 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3b33f6bc vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9334e9b6 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1215fa07 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x24c47505 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x36205265 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x476af919 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5eb2c34a ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79289af0 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa7e47c5c ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd475d8f5 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe522342e ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf0ba6f0c ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xf3934177 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x6ca14baa cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xa795db0c 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 0x16906b9c cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x37e5b05e t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x382c3ece t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d435cb0 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x50b3a64d t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5232caff cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66d18a71 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x71ddbaf7 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7546152a dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d601bba t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8da142ff cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e26ee36 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95cefa01 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0d924e8 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd532c21e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde0fde67 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0025fe89 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c939739 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24e61fc3 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x284493ed cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c4b60db cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33006723 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3528f5b8 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36ab8d67 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x373f8c91 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b3fb699 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40bab384 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42a1c374 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4670e660 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53cdc89a cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59f48a20 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61350adf cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66521abb cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fa9c3bf cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x719ebcf3 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x728f1ecb cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ac6ce94 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d9798c2 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90ac138b cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94a02317 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9678a6fd cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x979bd6a8 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fcbf343 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa25ca2ba cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa47ceefd cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0779bef cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3bf3dcf cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc01e6b72 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc16dad62 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc30488a3 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4c0c78f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca473e6a cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd27f6d07 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc158cb3 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1ea3e1a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee142b7e cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf07f362b cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf390f222 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4603369 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf71f0711 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x20eae2b4 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x222c660f cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x97c74227 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xabc06b2c cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb15be6e9 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdc19490b cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe4c8de14 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0d1256aa vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0e952b5c vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x35064bfa vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x423ac19a vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x613008bc enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6958f9f6 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x32606c2d 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 0x750e1852 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x288ce673 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x54603494 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7bec7394 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9f98643f hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa600b1c0 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x12de8338 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x144100fe hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x225cd11e hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x73169bac hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9a4904ed hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9ba5a2c5 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcb034e5f hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd7673b72 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xa41a0744 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xc1287d32 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x96656a26 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb90fdfd9 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x0cee09c5 cgx_lmac_linkup_start -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x0ff59a9a cgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x27c65569 cgx_get_lmac_cnt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x380cb7a1 cgx_lmac_evh_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x399852d2 cgx_get_cgxcnt_max -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x3e6f11a1 cgx_get_pdata -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x45a34f51 cgx_get_mkex_prfl_info -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x54d178c8 cgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x68dff5d5 cgx_lmac_evh_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x93295045 cgx_lmac_addr_get -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xa90238f3 cgx_lmac_promisc_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xce7b3103 cgx_set_pkind -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xdaec7b61 cgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xdbeffa32 cgx_get_link_info -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xf66092a2 cgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xfbd0b5b6 cgx_lmac_addr_set -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x01f4a61b otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x2dfd6537 otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x3c4c0ca0 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x5d3b60eb otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x933519e6 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xac864be9 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xb0a2490c otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xb94fded0 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xbad1fca3 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xc0309bff otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04d946f2 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05b94aa1 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09363759 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b10bf04 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12b3208c mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18687c0a mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bbfdf57 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2507e741 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e64c238 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1cfe24 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347adc9e mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36be7027 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b8196f mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39df5e62 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a7d0ceb mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43b0e742 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4670d23d mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x489dab82 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dcf34aa mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56d208ba mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x588e099c mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6742fb0c mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b4b7a58 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x723d71ae mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7259876c mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76731166 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e764d86 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ebf04ab mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8216fb9e mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29db5ed set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa36485d6 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaffbe3e1 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4dbe9e5 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc323ef56 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb264b91 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcddfdc5b mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf419a00 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdae693d5 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddb88fe0 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf39c2ea mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e9a94f set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf384d30f mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9b2fdbf mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba37802 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c200f4 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08155b94 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0948d7cd mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096c4fd3 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09b91765 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5f610a mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10c6a596 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126010e5 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14738105 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14f873bd mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1877dfa0 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24765b14 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e636c1c mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31236189 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347ac211 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x352cf90c mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x384be5e9 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x386a6557 mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a9a1787 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3be73e mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8d9c57 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a6e235 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4511d612 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x457809df mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d6e95c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e28c3ad mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f04ad83 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ff198cc mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x550c4000 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57cc5a29 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e453308 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5103e9 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60bf9c73 mlx5_fpga_mem_read -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 0x6431296a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x669e8c12 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f20b405 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70280d1d mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721e997a mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d98666 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73341fad mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7747cf31 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78137187 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9d8621 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bdc4b82 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c4a3346 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dd1ec0d mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x804994ca mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80da84fa mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x817522ae mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88c381a0 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8945a9ee mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8af232dc mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3a4176 mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9058c8ac mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x953118f0 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97fbc6bd mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9822dfc6 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f655ab9 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13f0142 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa337a4b0 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7f5dc39 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f0f32d mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaf52744 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba6ccfe mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac065ac7 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac125335 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf25afef mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5629d4a mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86aa0cd mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba116b8f mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe942c42 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f5dcdd mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22e7f7f mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4b33fc8 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52e5d61 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc57646ce mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc70feb69 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc84a1a45 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6f359d mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbef7f85 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd496275 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce177eeb mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ca3bc7 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3fc8d83 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd605c764 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd79d119c mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c20962 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa9725a mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbb7f049 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21ede6d mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe236b622 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3309eab mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ad21db mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe50a3fad mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e53247 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5f536e2 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea10c9ed mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea95efc0 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda9951f mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf384f3a4 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cb1f8b mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8d260ec mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaa2a7be mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb458ab3 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbaace75 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcf560c2 mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea00bf6 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x306560be mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -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 0x1f93326b mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22f35e20 mlxsw_core_rx_listener_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 0x28d70227 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e47daec mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x481d89e8 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ca89d7d mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5307d3df mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a7b1df6 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x649a1d45 mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b11eabf mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b711b72 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6e62bb19 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74e833fa mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76e87620 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90c9b74f mlxsw_core_trap_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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdae7e0a1 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeee7fc2a mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x74d386cc mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xefb9b57f mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc5659c6e mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc7bd09ef mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x054ada91 ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1c6daf31 __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x32804206 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x32b72801 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x4a8cf5ec __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5b5710da ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x806370ce __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x900b1a3c ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xad9aa7bb ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbb5f1f92 ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbb98b54f ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf4a485dd ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf76775ea ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x48dc23b4 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 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 0xb4154a4c qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbbd77ca4 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc688b88b qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x0616a1cc qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3fa89ae9 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1ebcb050 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8656b7dd hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x87b8c3e7 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x95251b44 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaf1fea0d 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 0x7db84a25 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/phy/bcm-phy-lib 0xe54e1472 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5cc0f261 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd76a62a5 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6565504b cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x6ca3411f cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0eefa63c xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x55eb3306 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x83df8903 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9d80cd14 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xd73fd20f xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x06d733eb pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x52e523f7 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5a7b0104 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x96645efa register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xbfe2e8b5 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1d3f1a7c team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x1f46368d team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x306f7c14 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x8ba48cad team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8dc5d4fd team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x9ca28791 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xbde9b126 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xe177fe6e team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x4d560212 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x5b68499c usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x5ecc3f65 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x07c49eae hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0c1b941f unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1eccbfcf hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x38d46316 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x39c75c06 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9711d30b register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb184e718 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9429011 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd5d2cc94 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xda0a986a detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x59bd21b8 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1ebe859e ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x20b945d8 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b03abff ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x774c99e2 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9886fe8a ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xacb2b0a2 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xad1e8130 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbc402177 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbc4547d7 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc93965d4 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe2e5620f ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf934520b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02929fd2 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x071c1f98 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ac955b8 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18f363f7 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dd6ab77 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e444f6f ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25a876d1 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27b4a050 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bf568f8 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37861afe ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3aee2d3e ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c6a3340 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49d08983 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c642d13 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d704740 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x543fd888 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6053a66a ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6257d7e2 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x688777b5 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7120cd7e ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72edbfc8 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74a63437 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74bce73e ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75f851f8 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7959c163 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a118b0a ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f5395ef ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f56987b ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x850e56f5 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8995884c ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a473f98 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x967abe48 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b16a489 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9cdc6c09 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa635c7d7 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa63faf76 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa4c43fa ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac0c7c83 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd180b29 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc81418b6 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9c2ed71 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf404314 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd668f95e ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9e1a6a5 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb03eda3 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf55b9499 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7720b82 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1fceef51 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4e547bb0 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5159d816 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x636ce2cf ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadb38b10 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb7a58200 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 0xc6b82e4a ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc74706ab ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca717be9 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe449a9c6 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf3109bce ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02ff3ddb ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08006d43 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08ccf878 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x210f2810 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24b77813 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30f6db93 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41c56360 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46b4a64b ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48b73737 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f1764c8 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b0915ca ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5dc2bc1c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63d04cfb ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65e90378 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8269c816 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x950ee394 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95ec6730 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cabef8d ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe51bd31 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xef56f062 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0e81aaa ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0ea86ba ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf855f08e ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00f9b3fb ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02c60e27 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c0b026 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12e815e3 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18cdca59 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19ce1f69 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a9cc169 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1be38d02 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d6d430e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x230fd8e7 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25c87741 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ce177e2 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cf5cdbe ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d43fbf1 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d66a062 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e678243 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3060bef5 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33db229f ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34d68a30 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35124c25 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3600b3cc ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3709219b ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x380440d1 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a2c63ce ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a3e706d ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a91c365 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cf94a2f ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d93a0cc ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f1b59ca ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x438c56ca ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x485747fd ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a14b597 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a2e5d44 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4acf4f44 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bfc5ddd ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c5ef8dc ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f57baa8 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fa5b2f6 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66838811 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74042acd ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746d3093 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75345bee ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x759fe3c6 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75b95399 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7625a79c ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7684114f ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78195a96 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e5088d ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a248685 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a279683 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7be73139 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cd81379 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe8545e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81698b48 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b098ea5 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ed328a7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91843775 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x925de64a ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x965bf61c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4f103e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cc21f4d ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa61c886b ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa7feeee ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad0a71dc ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafeab5c8 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb227399f ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb242c7d9 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28fba9b ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc5eaf32 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd8f033f ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe34bd3d ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb5a72f ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf7314a5 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3056994 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6ae7793 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6c92968 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8822223 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9b25b3d ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9bed4fd ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb074db3 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf1ac732 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08c91ab ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a4eb79 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3981fcd ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6eafe3b ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd86ebc0a ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb83c4bc ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd27eaf ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc8d282b ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfec2ede ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe14b6712 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1eb004e ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe252249f ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2da3939 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3ba6ac6 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe49e1586 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6d64039 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8bffde5 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee1a78b3 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee1d277a ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0c0bca7 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4865697 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf57db963 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf708d22c ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8f09396 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a3d8b9 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9e69d47 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x048eaa4c init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcefda0ba atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xff3f0741 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x172936e8 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 0x49bf90e0 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4a3660bd brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6d57752f brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x868d8125 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8cf29cdc brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa2c36583 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa69d3873 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb56d5e0 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe722a61f brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xec9d8d9b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeed78e4f brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf789a562 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x001cccb8 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c219feb libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c832dac libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10cfdddf libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11982394 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1bffa24e libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5633bb30 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67ff3cf3 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70d71403 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7c3af7e9 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x877ad3b6 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8b9fba5b libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xabca80b8 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7f8fb09 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdaf60d28 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd464365 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe705e3c6 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe9d09129 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7b9ce16 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb4b5a8d libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x000225a2 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02448f43 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x036e7c23 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03d2ce83 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04060a3f il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07d621f7 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ceaa3eb il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x100b5660 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1433f321 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dccd02d il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f12ffc4 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f13d7ca il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21d85d91 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22a7c74e il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24142ca5 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x244755da il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x264a82d2 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28bf425a il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2997ab43 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x302b540f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x307a8991 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3208c9d3 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3273404d il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3314c466 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3397bcd9 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34bee685 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3adb5a7f il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c6cc249 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ec03377 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42dc9298 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42dff5c5 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43de936b il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45272731 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47b92823 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4900d16a il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ae21059 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d2a18d4 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f67ffcf il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fd647b7 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50cb3ca7 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54924f80 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5699ef41 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fd8bbc7 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x668b62b4 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68e41346 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6af84608 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fc9a446 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7229296b il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76d19998 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d618469 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dc8715b il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x824690fc il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85a67b90 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85a99f15 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8754b30d il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ffafc25 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d8a28c il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93fb2bf9 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x945d047d il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94b5ce9f il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98cf2bfc il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d4cc90 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0502cd0 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4413d6c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa790c4b2 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf65d811 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1a6b790 il_cmd_queue_free -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 0xb8eb39b9 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbae3f445 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe1950da il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf0fe79f il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf28166e il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0a91023 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1f54daf il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc43a2442 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc844b876 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaf9f8fe il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb7d5631 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc0535de il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdbf9372 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf8847e8 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5b987e6 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd71b6848 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8f5009d il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc65c832 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc8f5be8 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd9f7b64 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe02134ac il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8ed6d65 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf064af08 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2d1a9c9 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf33c33d8 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3cadd83 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8f51de1 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb434d28 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb98fca0 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfba74cc5 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcfb900e il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x00943c92 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03a49eb8 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1efadf38 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x265906be hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x283a83d9 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3290a34d hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4026f8e7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x471aa05b hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d993740 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c91911e 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 0x859930b5 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87da415d hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e78165b hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x948f239f hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95e80557 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f6a08fe hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8c9221d hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab45d531 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb79a1726 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca2eaba2 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcbbbddeb hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4c8f2e6 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe745309f hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed456f20 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf76c4b25 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x105e1327 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x12ddfafb orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x171b88fb orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43e74787 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4fe15ae1 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x557d52dc alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x824259d4 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x86b332be orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x90da5f51 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x98ded70e __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb131d00a free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbf556198 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd35e2f22 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd95e1739 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdc528b36 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x2eaaed37 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3530683e rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x053b5b06 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x078f1820 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x091b43ff rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f73d2c2 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10c61108 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1de6d535 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f51735c rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x260ba5e7 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d244e98 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x386a405d rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39a6bebd rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46279fc0 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4655e8b7 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x499af6b9 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ea59f32 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51b52410 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a819a88 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61ab9723 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65891d8e _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65df3890 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b2898cc _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80e3d21d rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91a1c784 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x989e023e rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99e4e5aa _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a3c5e75 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9aecb21f _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2b2e8d7 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf43717b _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1e496fe rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2bcc916 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3e4819d rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xceda0507 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd696d8b6 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0175e2b rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe33253bd rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8e6e54f rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec97e3d2 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4b89d8e rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7c9a6a0 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd9a9f08 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3020b138 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9237e5b0 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9ff48b75 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd8c8cf54 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x13c25d8a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x13ebd3c7 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9e82135b rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd6d33850 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01bc7af6 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05810a57 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x063c1e48 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0eea63b3 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17b915b3 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2401c274 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aa0b71e rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f308288 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35946267 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35e22470 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36020532 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41329a39 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4274fcfb rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x503a4ac3 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6650f998 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6df6ccbd rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73cf8b34 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7558eb15 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80c5981e rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ec31414 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3143102 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4a996f1 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa703109f rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8fc297b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe4ceaa9 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdc86832 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2e261ea rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd43bea3d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9124b1c rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef9d61ce efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3f0c901 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbc8ec2b rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x02b81b0f rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2142a871 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2998ccd5 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x486bcd6f rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4bb9f823 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4c191f97 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x67c1d2a0 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6ac26ab0 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6fb131b4 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x774047e9 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x85748131 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xaa899edc rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc278b667 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc65aa7eb rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc6d73b11 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd1c9ae1e rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe6d86b19 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x0f9dc077 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x29837bfc wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6adfbcc5 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8e1a9ffa wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc4b3859f wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x05ebe1d2 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9392e1ff fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbc4c3f17 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x5a92869e microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xd51a2148 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x262569c1 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd3ff980 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf1ee283f nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x75afe2f8 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4e5e8df5 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc99eceb4 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1813aa95 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x82e7a3ef s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x86e05543 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0e32ff72 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1ecc35af st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2000c4ef ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x258ab602 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x287cfd57 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x43c5a217 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x58a3d6e9 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7e01c97d ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x852d984f st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc127d748 ndlc_open -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0090812c st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0927345a st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13e399d4 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18e4601a st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1afb0c77 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b61e6bc st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2aaa7e35 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2dad1594 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x46eff8ec st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ddea56f st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89e6e74e st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dc97e53 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dfff09c st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x96ae2868 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa0a35573 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xba3a9c14 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbdc0161f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdbc53cc5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/ntb/ntb 0x0c523bb9 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x169969c6 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x1eeefbf7 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x3f9ae0f8 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x441f9307 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x53d112b9 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x5647844b ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x67e4040e ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x6b72e693 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x91288413 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x93263de4 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xa6c927d1 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa8d898dd ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xacf32894 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xbf842d87 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xc40cfe4d ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc8f4bf03 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xd4c12461 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe6ee2b70 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe72145c4 ntb_db_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5e54712a nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb30ddb88 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x02a69ffb parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x0627b9d2 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x0ab4ee98 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x18f5b132 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x211b30c7 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x224290c7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x28a93a68 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x2a9f6127 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2bc8fb3d parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x2d13f994 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x39f693b1 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x3ce1d9a0 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x49ca4076 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x4cf83f2a parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x561d06b9 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x5c1d1cde __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x7b6cc1fa parport_read -EXPORT_SYMBOL drivers/parport/parport 0x86b60e37 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x8c133d15 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x90a66b4d parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x9cb26bda parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x9ecdcf60 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xa42ac3c9 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa6816c52 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbc6ef9f7 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xd0af130b parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xd5716862 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd8b91108 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xdf1b8a62 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf83a3704 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xf8f41dde parport_write -EXPORT_SYMBOL drivers/parport/parport 0xfc6085df parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xabde0690 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xfdbbbb34 iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x00ef2f1a pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3abffec5 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x409d04d8 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4515dcac pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8cfa0f2b pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa732bc64 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa848e0f1 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf016c20 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf7b6b754 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf93c9a5c pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xfd929582 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x63b7b9b6 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6d327628 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x79edad08 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xaad8ebce cros_ec_resume -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xf9dda79e qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x04c9abed rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x075a02c5 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x17fa9b6c rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1d1cffd7 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37dd0a38 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42cc296a rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x45d43cd4 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70077b08 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7aab35b8 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83a81b33 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa80790f1 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc96fa83d rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8c6df10 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef6d42ab rpmsg_trysend -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x8cd784e3 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2c7fa19f scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x534c3502 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6cd15482 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaa5aa453 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x061f8dc8 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9eb3eb fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d68deee fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4fa47c78 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5f82b0b3 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9178413e fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91b9b1e3 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x98e1f7ca fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6e36af4 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf5beca2 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe5888503 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x005c24ed fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04b289db fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04f493b9 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x079af3d2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c99cffd fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11accfb2 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18ad4118 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bb6f17d fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e2b2f73 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e946623 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20af37bc fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2736b520 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27983a76 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f13396 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fc06d62 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3272fa8b fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x341f775f fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38f2c94c fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b43f591 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bd8518f fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c1307d9 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f68fe28 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4360e49a fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46e34ff6 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f5911b2 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x551810fa fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55f1c760 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e2ff680 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e8175bb fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x700f9fa2 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x749fb282 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775fb871 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7867bc84 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bb0e654 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d0b231b _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95b9ebbf fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b2f6eb5 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1270455 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6073f77 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9375390 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa21959f fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad17e660 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb36629d8 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3df1d3e fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb436bbf8 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb596e2e2 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e82215 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5172ac9 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc63a2404 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc65bb012 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc894dde2 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca2f8f4f fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1e41fb8 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f8e446 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe923a2cf libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0415743 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb0eac4c fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb6a1517 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04d96d42 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x50625dce sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdad7fe29 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5c378cc0 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 0x1b761abc qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c7dd58a qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a1f7db3 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x70917e28 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73d59c3b qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x787d1d0d qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8cf6b597 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x966d1e6b qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c91ffb5 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb23b8a1e qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb9932a0a qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc17fe101 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/raid_class 0xc22c1ac2 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xc7f2c1ed raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xc93914d8 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x00b8efc8 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03851d47 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x064a5210 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0663ac53 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e2ed15b fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1fc68cff fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b4cb635 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2bffdfc5 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3475205e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x681667a2 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x729504b6 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ae1b004 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81a2f532 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8982e47e fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c71f65f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96315112 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b051012 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d74e5d3 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28d5073f sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29633164 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dfaf019 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30155546 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46694a23 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4aabf935 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4feeaa5a sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50bd1656 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e23fab0 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67535013 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67df4e8b sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x730936d3 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a015659 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bee17af scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7dff037f sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82984653 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88897581 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b57de62 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d16383a sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe59f49f sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc509c7ca sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd581957b sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5ef16e1 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddab7dcf sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdef4c933 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6331fde sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf487c7ea sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0ee1c21f spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2326a67a spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8ac9d6eb spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbe398e8f spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe8116090 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3e8bc177 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6961d156 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7800e8fc srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa19a3e20 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf68d059d srp_rport_get -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x9f89e924 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xf3824740 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0d34f351 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2ecac956 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x45ac1460 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6441ab23 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x90afa189 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x97544d8d ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa710952f ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xad00c1ed ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xba7edb2e ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5ed72cf7 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xa92184a8 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0348ce8f cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x23d0b9f2 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x34f6582d cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x50396152 cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x70bf96bc cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x83a75e6f cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x85d36b5e cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa066b5c3 cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa9dc86da cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xede9ce4c cmdq_pkt_flush -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x215ce1cd geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x37ce3043 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3f4e3c41 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4fd7c4dc geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7929b350 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8e69b2eb geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x987815e6 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9e9e2f06 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd2472510 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd35d58fe geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xee2c5213 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfd9a2add geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x01f130c4 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x36a9f888 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x38025cd0 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x38e12447 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x579a5e4d qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9e259a9a qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa1f5823b qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaa5350b3 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xae555599 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfbca3d8a qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x6917ed81 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x29ea536e sdw_delete_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30dbc579 sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4177e7f5 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4ecf7cd9 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5f3c3aa2 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ff769fe sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6773c71f sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b16bc2f sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaed7db9d sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaf4096c8 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2b083d2 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf57094cf sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb46472d sdw_write -EXPORT_SYMBOL drivers/ssb/ssb 0x08abbb7b ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x08e2638c ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x0a10a469 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x1a94089a ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x3973d18a ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x692efc8e ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x6aaff688 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x702c021a ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x868827e5 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x8ce45f2e ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x8e5644a8 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xadab35ab ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xb4667521 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcc5677bd ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xcc7cc83e ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xcf4b3c6a ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe08db2f7 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xe453abbd ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xebf33e66 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xfb670950 ssb_clockspeed -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05315692 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05eb0aa4 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12fbf685 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17708145 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2375f940 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24871586 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x336639fd fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4955b90d fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e598006 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62a2a265 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65516a00 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x69eff171 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76241c14 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e80a4b6 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d082881 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb35967e5 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbd4a4e9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbcd97c58 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd393f0e4 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea62134f fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb94e8a4 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5c4843b fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6b8002f fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf789cb11 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc762558 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x15ebfb58 gasket_pci_remove_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x2a48c9d5 gasket_pci_add_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3388bada gasket_sysfs_get_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4b69a55c gasket_get_ioctl_permissions_cb -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x51f07fca gasket_unregister_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x60ce4e4e gasket_sysfs_put_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x7a347120 gasket_wait_with_reschedule -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x7fcd0bbc gasket_sysfs_register_store -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x84896575 gasket_sysfs_create_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8bb49e77 gasket_reset_nolock -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8e1155c7 gasket_sysfs_get_attr -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd1af8a78 gasket_mm_unmap_region -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd9633ad0 gasket_reset -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe3aa1beb gasket_register_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe5dde77c gasket_sysfs_put_device_data -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xfb3fbe44 gasket_enable_device -EXPORT_SYMBOL drivers/staging/gasket/gasket 0xfc8e20a9 gasket_disable_device -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe7bce3f4 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x019d969e ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x1118ff82 b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x21dcbe93 avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x4b2a60c2 b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x4d3b5e95 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x4f0016ad b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x5028b3ce b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85aa8d6c b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8948e383 avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9751a77a b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb8f0c312 b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc7c68453 b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xce06f855 b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xd17972fc b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xec352a3f b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xed548b5e b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x0489bd42 b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1d9013c4 b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1e6de423 b1dma_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x36ca22d0 t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x43fd09c4 b1dma_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x7ed94faf b1dma_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa7aa5340 b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xbaacb307 b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xbe3e588b b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03e896b0 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d0d3623 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d397578 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e21b6e0 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2270b17e rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cab8700 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2eac5f89 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35d8858f rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37faa094 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b84250a rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cc26d59 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45a3bc8c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x479fa8af rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e0e09c0 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ec7943d rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fa26d0e free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52834ee6 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5376cbf7 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x542b59ce rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x552f839f rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63ff90ea rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x652c6f1d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67b4865f rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77582037 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b341c39 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c6a30e5 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83527c54 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87c07f76 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8960137a rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8eb06268 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9524102e rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9588490a rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2a495e3 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7ca9d56 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0d0a52e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2958b30 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2f4cd77 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0408b13 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0e37e29 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd56115d7 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6bae480 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb313ee4 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe053e45c rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4e5a177 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8566f00 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe988e4e4 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee159341 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee18dfac rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9051b41 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00a94983 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0178a81d ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04ecf43d ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0eb05e0b ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cd07229 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x236521a8 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33819ac4 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33a0400e ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38f3dbd7 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ba30f93 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41fcc221 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58a8ff1c ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61926828 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61f23f89 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63ed2b60 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67b9f58d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72b61a9a ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72d42e9c ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74de4a01 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f82d3ef ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80f90847 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81b8cba4 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8eb13432 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ffa94f9 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b22be7c ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f84816c ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa20ec9b2 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa74e65ec ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9c704b0 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4c5255a ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdda8742 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc03622ed ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0bfcc5f dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0e8e53e ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1669c58 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6246801 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc74c70c2 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8441e8b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcca8a3a5 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd83ecc0 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1adf476 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd27a1f1d ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf23bab4 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe09c7633 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6697950 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7814f46 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9603f68 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9c08769 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xead8a050 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf10ff51e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf148c04d ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd87f3e6 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfddb7314 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x03ec8e32 vchi_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x04390690 vchi_service_use -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x18bb8ba7 vchi_get_peer_version -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3317ac58 vchiq_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x347e59c9 vchi_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x36331e4f vchi_held_msg_release -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x45a172d0 vchi_queue_kernel_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4784c007 vchi_service_close -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x49a7510f vchi_disconnect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6216493d vchi_msg_peek -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6ae198f8 vchi_service_release -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7b2177c7 vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8561e970 vchi_bulk_queue_receive -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x940e4bdd vchi_queue_user_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x94535fd6 vchiq_bulk_transmit -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa7fc046a vchi_msg_dequeue -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa90297a8 vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbbb12b82 vchi_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc8b507b7 vchiq_shutdown -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xda468542 vchi_bulk_queue_transmit -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdaf25f60 vchi_service_open -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdfae4319 vchiq_add_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe03ce8ca vchi_service_destroy -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe928e745 vchi_service_set_option -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfc90ea41 vchi_msg_remove -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfe69bc62 vchiq_bulk_receive -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00294829 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04bff14c iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04cedb1b iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0595a769 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0657ba69 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22ed41e9 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29c06455 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2cb72848 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d590f97 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bd097a7 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3da4b020 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e257a75 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ef50030 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43776c83 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45398da9 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a5c57ba iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c72fc06 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e19ae4d iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73fb0f2e iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74140758 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79a25896 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aa42130 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aa69e82 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x845ef168 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f027a8f iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92ff63de iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa026088 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb43a1179 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6c03d56 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb992da5 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbff13cdb iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc243ece2 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3037878 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca699b5c iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5dbb388 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7cac0f3 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9c0998c iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdedc7529 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe27d78c9 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4f5c251 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0248287 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfda881bd iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe9f4d75 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffd02913 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x014e01ad target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x083263ad target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x10b25de7 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x153cae5f transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x180ee871 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a57ae88 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x217f9fcb target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x21a4fe14 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x22d306c0 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x2313214e core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ae8e9e8 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2afacc0b target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d3cdab9 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x30b5959f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x3625aec0 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x37453d49 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x396fd2e5 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x463f91bf target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x4762225b core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x477b7d9e target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x54b68f74 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x58ed3e3d sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x5aba85f1 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bff8531 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c6a5ea2 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x60602d0b spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x60da7a68 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63e334dd target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x66930429 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f38c1aa spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x74dc19dc sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x76e4a9f3 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x78d81672 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7999c798 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x79c3c352 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a8bd962 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x959ceb52 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c86e6f2 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa40ecfce core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7b42e0e passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa98f46e1 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xaed91aed transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb583085f transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8f8c99c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb97954d8 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe651b2a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe95e2e5 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc9213e9 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xceb8ce12 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcebff1ec passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0bb4488 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1126aa8 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xd49c70b4 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6f4dfbd sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xda239d8e core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe186c975 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe62bb3ab target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6899ace core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7a89234 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe83b5253 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a77ab5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9578b9a transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xef8d0aae transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1a941e0 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3f085d7 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4ad17ed target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa05e280 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb07d1db target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcaa902b core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcb0ef19 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfeda749b spc_emulate_report_luns -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x68ca2f28 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x3f0bf9c8 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x98fd67f6 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00be313a usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x213ffae0 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x287a0da6 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x626d0ae1 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x635528b7 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x770e04e8 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8b5efb01 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8df2721f usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x99c05bd3 usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9ac9c26b usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaa2f1d3a usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8685aff usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca575c04 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x56dabc86 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x710ebb70 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1c0a4dc4 mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1dc5f6c4 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x276bafdd mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2c23f7e0 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x357d6c57 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x54510a5f mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x591cf4ad mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x736e8f83 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x832ae431 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8d43b4ba mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x95551df7 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfdd8b6ca mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x36ae709a vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x3ba734f0 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x9f11e7c5 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xde4561a6 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0x29c77137 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x5e36bdce vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x1514e43a devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x15fa5f2d lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4f3bfc81 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xad9463dd 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 0x2601ad64 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2ef19720 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x33f5f46f svga_tilecopy -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 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb382f4e4 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc9b09d07 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd546ccf9 svga_tilecursor -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 0xe5378c42 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xacdf8fbc sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf70f43c1 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9f11e860 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x22641a37 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 0x98cae5e8 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x01d6a59d matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe6b7f25a g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfa6abac3 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0670faa9 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x482bec14 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8e81b6b0 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd9410f72 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x71713493 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbdaa5f64 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0d8e89ea matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x32b05ecb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbf6b0abc matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd1362b75 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2ebfcff8 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd4705e6a matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb320241d matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd005d57e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd794e0c2 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xecaf6acf matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf510aea1 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xe1decf45 mb862xxfb_init_accel -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/w1/slaves/w1_ds2780 0x1226bf88 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x41dea700 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x666c4e4b w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7c20a2a7 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x16c82159 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xbfcc07b1 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc766b40e w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xf973797b w1_unregister_family -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x2913ae3d bd70528_wdt_set -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x4997ae49 bd70528_wdt_lock -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xa8827722 bd70528_wdt_unlock -EXPORT_SYMBOL fs/fscache/fscache 0x02598006 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x184a7a97 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x1aa4da16 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x226ccbe5 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x22cad2bd __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x22d9c2bf fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x32695e77 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x361b9c08 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x47aebdf1 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x496d1c64 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4a5ae60f __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x546ec4a6 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x5c50b64e __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5e8c8b98 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x742c3440 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7641f13e fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x76df1e28 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x835c32b6 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x8514401c fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x85b027c8 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x8a1a1355 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x921dcfdc fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9e343c6d fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xa01acdcc fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xa6976487 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xacceabec __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb623d742 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xbe28fe08 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xbe46f3dc __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc11a0a52 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc193846d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xc52e4853 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xc89321e8 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xcbf01a4b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xd1f495ac __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd8e56261 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xd9fda8f2 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xde48bfc7 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe7ce0c8a __fscache_update_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x25e8085d qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x39ec14fc qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8250a85e qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x83e132ef qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xdeb0467c qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xfeb0362b qtree_delete_dquot -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be -EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x7c762fd0 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0x94c3b313 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x11e19397 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4a08f7b9 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x643dbd3b lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x68729199 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7f367533 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf96ff168 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x717c1630 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xb74ef7e3 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x9e284fb5 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xfbefa3a5 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0c2bd903 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x10b89c90 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x144247f1 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x22199757 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x27a3243b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x28507d32 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x33b42472 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x37c1e34c p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x3809e6ae p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x3bb6e016 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x3c55f7b7 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3dbf78b4 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x3e0bee13 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x424a51dd p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x457088c6 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4641af20 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4d8864c2 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x4ec1cd19 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5da330dd p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6d30e818 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7e7c35bd p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x7edb59f4 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x89345678 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8edf6eae p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x94314865 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x983aee0e p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x98e3a204 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x9d916ab1 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9fd926e2 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xae3271fd p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb585a8ea p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xb5e2617a v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xb79038eb p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xb931298a v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xbef0ce33 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xbf297d13 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd8d9c500 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xd8dcc7c6 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe9e96849 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xfabd733b p9_client_walk -EXPORT_SYMBOL net/appletalk/appletalk 0x00f67765 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x54f7beb2 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x559c2b3d atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xc2a9c9c9 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x2c71a222 atm_dev_release_vccs -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 0x4c5f4c34 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x604ac443 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x60a11797 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x6e7ea2d9 atm_charge -EXPORT_SYMBOL net/atm/atm 0x801bfaa3 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x8a00116f vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x91a51355 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x93380688 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa59b9b1b register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xcbbb92f3 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xe75aff98 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfd0a2c87 vcc_insert_socket -EXPORT_SYMBOL net/ax25/ax25 0x02c643d2 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x0bc9621b ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x0e4785d7 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x0e6ba3ad ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x617c13d8 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xb8051a36 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf527010f ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xfd485d18 ax25_listen_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03481391 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0454d228 hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0999119c l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ab8b042 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bc5bb6f hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c6d3ffc __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19b0a615 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x21dc8d4a hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x276a5ec2 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fbcd3d5 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3286fe85 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x32b98605 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x389b24c4 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x432e80e8 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44275391 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x46a0780a hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x58965ee3 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71c3cf35 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x745ccb1b hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x75a1ee04 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b3df34d bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8814d776 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89a3d2af l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91b4bcad hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x98bf5077 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99a48f3d hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ab94b2b hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ff45c0d __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa25e530f bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4924eef bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb89deb77 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbba3f780 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2c66921 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc37022f7 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc403ccce hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5466759 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc82a9631 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca0fe976 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda4d5527 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc1cf7cf hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2fe4f92 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf54aaf04 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5559eae hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xff466d04 hci_suspend_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x22159163 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x51a43500 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x58a6abe9 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8c89b812 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x0ecfc27f caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x49492099 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x772271eb caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x7b701ea2 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xf1307044 get_cfcnfg -EXPORT_SYMBOL net/can/can 0x042cf77d can_rx_unregister -EXPORT_SYMBOL net/can/can 0x1ca2749d can_proto_register -EXPORT_SYMBOL net/can/can 0x4ba33a0c can_send -EXPORT_SYMBOL net/can/can 0x5c28b107 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x6d6ced55 can_rx_register -EXPORT_SYMBOL net/can/can 0xc1123e3b can_sock_destruct -EXPORT_SYMBOL net/ceph/libceph 0x02f04b69 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x06a32220 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x07408cd8 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x07d11507 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x080d25be ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0ad22582 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0b2b9bcf ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x0d7e638c ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x0d8825de ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x112f61ed ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1228d6b7 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x14044548 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x1adadd51 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x1af5da59 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x1b7fadcf ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x1b834858 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2141c98b ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x2245fc1c ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x22d1dd47 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x281cf01f ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2a857d96 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2b0387fd ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x2f06b49e osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x36b958cb osd_req_op_extent_osd_data -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 0x3dfdda3d ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x40abe944 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x412a5436 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x412bf1bb ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x456c63e8 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4b3924cc ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x4c566c1e ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x4ca8d3c9 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x4e5ca838 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x4ed5b113 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0x4fc2a9e3 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x5092baf1 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x54be6f5f ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x56e841a1 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x5770ba04 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5878d648 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5bca2542 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x62f8cb02 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x64d56aa9 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6d222938 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x6de17ac9 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x704523c9 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x7217e553 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x79892c06 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x79b5179b ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x7d5fa911 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x7d7cfd06 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x7ee52613 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x8007800b osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x83b4fecc ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x84827416 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x85b4c2c9 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x86321d9a ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8954bdea ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8bae461e ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x8d269b39 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x8ed83e2c ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x945e18bc ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x952f7def ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x966f5837 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x97dc2697 osd_req_op_extent_dup_last -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 0x9f00b06d ceph_con_send -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 0xa22379aa ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa7afa822 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xaa886084 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xab5273dc ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae7ee7b9 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xaea0abc4 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb502fe6f ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb64320e8 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb880498b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xbb37fc5e ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbfaef7a2 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc4b98a4f ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xc70c3469 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xc882b285 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc896226a ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xc8bb7805 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xca443c0c osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xce20fecf ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xd11c2a9e ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xd1a0f7d4 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd37c7147 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd55c75bb osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xd562006c ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xd66190e6 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xd6de47d5 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd82397ee ceph_auth_update_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 0xe011fdd2 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xe215000b osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -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 0xefac926d ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xefb1fccf ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xefc8a654 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xf4cfba38 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xfc79668a ceph_osdc_unwatch -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2c8a8143 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xdeae46a8 dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0x34a2eb02 dsa_port_vid_add -EXPORT_SYMBOL net/dsa/dsa_core 0x8f8c5cb5 dsa_port_vid_del -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0636cfb7 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3cd9fb3d wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x59d9e7b9 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x96ee0a03 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9ce7e7b6 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc22ce40e wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xa29f87dd __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc5323f6b __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x56039f31 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08e84371 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0b0c3dbb ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x60154273 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8d2760d1 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0c934650 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4196625d arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xba35e132 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdb548a29 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x672d21eb ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb1383657 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe7ba0305 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x03e21bad xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xbbb04460 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x0eb96f31 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0fca8d86 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1457eb8d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1acd3c3a ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x24278815 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c459026 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9fcbe3fe ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb25bb2c6 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc9c92bfa ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd070eed9 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2491b32a ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4a3cdfa5 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7a5febe6 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x1edeb17a xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xecb79ea2 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa8546c00 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe34cf9d4 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0x2429a8c9 l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_core 0xf3c4519e l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x878aa5e2 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x02571003 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x58eae780 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x62761d3d lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7ad55ea0 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xa9db729c lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb37f4e6b lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xbb75b626 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xd3abfba2 lapb_register -EXPORT_SYMBOL net/llc/llc 0x284b296d 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 0x5900a86b llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x638e3837 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x6b5a2920 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xa7983814 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xee7767c9 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xf3e2f3c2 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x01b745dc __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x043168e0 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x048a8c4f ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x07c74bb0 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x0b00f0e8 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x0cf3b3ec ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x0ee74730 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1efc0417 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x20b35edc ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x257dccc5 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x27707fc0 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x298250c9 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x2a48cc21 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x2d6b6c21 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x2e159223 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x2e5d2216 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x2ea0c8d9 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x30f62329 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x35ca7d11 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x3c2ad8a8 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3cc809d5 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x3e4bd7f2 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x3ffd4877 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x47f3d7c5 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x49c545dd ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4bf974c2 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4c8de8dc ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5b601884 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x5d97d80e ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x61d0a5ef ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x645f932f ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x66a05630 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x6775cee7 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x6ab9cb3f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6aefd963 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6f58f856 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6fffccdd ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x76a8c096 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x797c7f85 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x7c977320 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x81b08081 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x84c29aba ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x86d52683 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x88eec4fb ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x8dfb3ae4 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x8e163bbe ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x950cdfab ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x95e73853 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9842cc6f ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9871d304 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9e30b6cb ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xa1b09471 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xa2a24d13 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xaa0ed409 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xabcb294d ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xafb6147a ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xb06fc596 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb1623f4f ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xb362a301 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xb4791ab7 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb7810779 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xb969743e ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbb264030 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xbcfd1645 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xbf37ca8d ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbf5b7eaa ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xc32a4f5d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc636396a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc79a731e ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xc87edaea ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc94d9604 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xcd50bdd1 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xce23026e ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xd143c004 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd38cf845 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd5642041 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd6522954 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd76d5934 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xd842a911 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd9d5b27e ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xdad83caa ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xdadc5af8 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xde6274a0 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe0e83879 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe3815b7d ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xe80e4e9d ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf62beb1c ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xf9279647 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xfcc6445e ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfd638179 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xfe26f543 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xfe90c740 ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x44a92727 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x54ba3a4a ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7a987822 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x96259b86 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc3c3fcc3 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xcea8d3e2 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xea450d78 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xea77f286 ieee802154_wake_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x296f34d3 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d6e05dc register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3db4d2f5 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4613c702 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x569949c1 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7096d9fe ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7ad38508 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b424d48 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4827478 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2e46cc7 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc44cd434 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc623462b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcab42e1a ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8ef7a48 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6f7e798 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1863f495 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc248fdd9 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x13ba9eea __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x1ebc9dbf nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x6cf9cd01 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x9fe14303 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xb38de80f nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x11200a48 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x327e7f17 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x3e6dd6ba xt_register_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 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x92c6a729 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x9f4fcd9d xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd5a1c8f3 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xeaecd0ef xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xec50d421 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf8d52e93 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x00f33b25 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x0aaf06f8 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x100407bb nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x1cfc3d18 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x1d0bb342 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x21df792c nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x2698fa93 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x2b27652e nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x36dd8e41 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x43cd6ffc nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x49ee89a6 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x57aa28a2 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x59d5b9fb nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5e30ff77 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x9da461d3 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xaeba8574 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc2ae0f4b nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xcda09cd9 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xea5004d0 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xf6a6cf1e nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xf9caf139 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/nci/nci 0x02f7b85c nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x0f936785 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x1111ffdf nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x18aafe17 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x285844e2 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x303de13f nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x44d94448 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x4b88313c nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x55767a5c nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x59462492 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x66eb9eda nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x69e94e52 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x6bb829e0 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x70bc1663 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x78db85c8 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x79fc76a5 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7cfd19df nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8326254f nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x86d5373b nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8c40ff38 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x92dbe965 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x9746d80d nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9bc4c410 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xad7bfcb8 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc2471c66 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xc347f6da nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xca577164 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xed0e2516 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf4afc85f nci_core_conn_close -EXPORT_SYMBOL net/nfc/nfc 0x089d9cad nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x10c31de0 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x1c46a117 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x1efdc0e2 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x2405fd3e nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x3c6199d6 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x3ec1c7f9 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x3f79f54c nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x525dfbe9 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x581d95ac nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x68d915ca nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x6fa27182 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x7416a526 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x770dda5a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x798415de nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x837bf492 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x83bb7bf7 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x89a647be nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x9ef61ff2 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xbce00739 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xc2c3cc15 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xcc38283f nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xedd6776c nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xf1f7687b nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfe36747d nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc_digital 0x2500e0f1 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x54979b80 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x60b97cab nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb77d5277 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x4cefc08f pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x59a7ba9f phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xb22f748f pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb621f71d pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xb81508d7 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb947aca4 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xf6803dde phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xf852d568 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1dcca43e rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e9b5a60 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2423dfa5 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x301e5ab5 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x37e3cb8d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x49fcbb17 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x584b44a0 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x58be91ab rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x58d166fe rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6db7c5e7 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x72cb0cba rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a42a160 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x94b0c126 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc2e7025 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe3ceaa60 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8d9181c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe9dd5d4 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x6ab86837 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb32185fb gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf251fe22 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf3e24f77 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa50b6e92 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb39d24ce svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xec79e8f1 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x71bef0ef tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x8e1f8f71 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xac4be45d tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xb786cd68 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x4c847c45 tls_register_device -EXPORT_SYMBOL net/tls/tls 0x98638f5c tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xc79027df tls_get_record -EXPORT_SYMBOL net/wimax/wimax 0x8ef86a46 wimax_reset -EXPORT_SYMBOL net/wimax/wimax 0xdee26846 wimax_rfkill -EXPORT_SYMBOL net/wireless/cfg80211 0x066c9457 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1375cc85 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x13fa6871 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x166c1c92 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18f8d773 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x1b199b00 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x1c5c0ab0 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d7f8746 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1f326146 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1f9513dd cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1ffcd389 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x225fff12 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x25952f9d cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x266ffd19 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x27bee583 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x29750d49 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2a7d7747 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x2b1fb789 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2b6f95c4 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x30a087ac cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x31fde269 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x32089166 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x32cc4f30 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x331ca0dd ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x3346fcea cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x39e7f8d0 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x3e6c65b6 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x41e96949 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x42631e94 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x49cdb4de cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x4b004730 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x4b713367 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x4e438ca5 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x50c55730 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x55d81277 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x56bc024e cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x58ccfaea wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x59420478 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x5a822db1 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5e8f248c cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5fb9b000 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x662d1852 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x686a2216 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x695b0068 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6bd83bb7 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x6f80e6c0 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x70217e9f cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7119dd76 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7ae4298b cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x7b214281 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x7f0a5374 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x80647e8d cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x861fa1ef cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8e439762 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x913572fc cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x92b5fead cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x92bb92a8 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9338237d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x96db25cb cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x96e6373d wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x997fc56f regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x9cb0bb1b cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9d8bc2c2 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xa0d10781 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xa0e6ff2b ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xab5eb196 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xb0a9a0c4 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xb2dfcb01 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xb45d84d9 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb63ab214 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xc0cfd4b7 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc2599de1 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xc28db458 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xc4aab139 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc7289126 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xc7b38d90 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xc8272857 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xce457540 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcec22aa6 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd15a647a wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xd18744be cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd4cb693a cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6dd4ac6 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xd8f7cf98 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xda57223d __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe0ccb63b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xe2f58684 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xe3c6000f cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xe475dbcd cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xe81b45d9 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xeb77c501 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xec87d94e cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xfc0f4513 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/lib80211 0x0a9657b8 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3b2232cf lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x66455c87 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x6fb67ea7 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x7b1db40e lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xcc1d965e lib80211_register_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x12e719d2 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xbb77b6ef 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 0x563b95c8 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd63f646a snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe79f509d 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 0xedbc2d53 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 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 0x314bc068 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x02638536 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x032ad0b1 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x05a6a10f snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x06a6e8f2 _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0x0b4dd775 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x0f63fc30 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x13d2f734 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x1591b15a snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1f8b5ef7 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x306742f3 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x40b18827 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x4789b7af snd_card_free -EXPORT_SYMBOL sound/core/snd 0x48ad0c7f snd_device_new -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4bb2b9d1 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x536a6b1c snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x59595536 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x63b2c340 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x6e9c58d1 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x70fae654 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x74c2ff50 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x76500aa3 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x7c642244 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x7cd20f21 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x8611050a 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 0x9a6a6b4c snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x9e6b5e7c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9ee20e6b snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xa43ae457 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xa8e64635 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xafbec07e snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb548310c snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xc233febc snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xc3896f0c snd_component_add -EXPORT_SYMBOL sound/core/snd 0xc41a3dcf snd_card_new -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc8f99d31 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xcb4ed7a6 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xcc45bdd0 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xd1f620c7 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xd2ba4c14 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xd2e792b4 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xd3e4bc9c snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xd48a8ed4 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xd5056741 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xd6a1ed28 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xebc6cead snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xf5671455 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xf5f3195c snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0xb679e4d5 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x007c3aef snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0d16f69a snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x15c06187 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x1acd06a4 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x25dab69f snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x26e84e09 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x2b908eb8 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x2d047b47 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x2e303717 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x35126ccd snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x37d5c110 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3de2af32 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x3fb1b1d2 snd_pcm_hw_refine -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 0x553589a9 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x5600852a snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x58e95823 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x59d65d3e snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x5c97db87 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5e6b2058 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x617cbfb3 snd_pcm_new_stream -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 0x6d722840 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x6dae50c0 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fa6a419 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x811df6ee snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x84dcbaeb snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x85e2097f snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x8a40b434 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x930d7d75 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa0cc2b7b snd_pcm_lib_ioctl -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 0xb83712d5 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbb2a21d3 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xbb861bfa snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xbd04abe6 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xc2030b91 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xce046ab9 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xd32a1632 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xdbc589ed snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeedb5b6a snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xf1204d5f snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xf55edb92 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf9f0765e snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xfd78d587 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0d7f3480 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1013524e snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x11ead295 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x24395e96 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d6d18d2 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x33b936a7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fe9a0e1 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x40930bae snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x51e42551 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x56987176 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x61a1fc5c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x666a5c2d __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa1ebbecc snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa43612a6 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xced17d7b snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd345daf8 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf282a46b snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5084941 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf643fe2d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfeb05531 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x09247b5b 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 0x21fb334e snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x3557ad12 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x3a03a2aa snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x41d1901e snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x4c8763d8 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x4f4be95e snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x58959a11 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x80822556 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x87751030 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x9d184c1b snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x9e5f6cfe snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa675c817 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xb8efbdff snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf3ad034e snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1109db97 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x51b916b5 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6aa335ab snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x95370ce1 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x966195de snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba9caf46 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8cbe3a4 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd4cd13d snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfba06182 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x04ef4549 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 0x28afeedb snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x355a95b8 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5ea679ba snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8331ee98 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb5ccbfe1 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbc4175f1 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xef86b79f snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf3a0a092 snd_vx_dsp_boot -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01d6f065 amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x064c47e9 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x067dee6f fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b980338 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0bd1fcef iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d190aa7 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1db841a8 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26b3b009 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e26d852 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x44f4d7e7 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45c9d40b fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x582a14c5 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a592530 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d229e72 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a49749a fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70439c92 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77d137c9 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d029e98 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81a9af28 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x90fa904e amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa45a83d3 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6ee1b78 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb39349da amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcdfd9348 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd09a85af amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3d495a4 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7caec1f cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7e579f2 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf40b5cc8 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6788fd1 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8359a9a cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfdd9bf92 amdtp_stream_update -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x42e840d5 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbade2a1a snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x03c3f40f snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0e99714a snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6cf1cb49 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x75522543 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaeb14c3f snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc309d45a snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdf743603 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe81045e2 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x112b7f15 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1d5ae239 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xca1f06ea snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe7cfe201 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe2112eb8 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe498983c snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x10e8a6ce snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x39563e52 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x59bc250c snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6b0b654a snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7ded33d4 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe38d68c6 snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f50d127 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12da8092 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18a5a368 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x196d95ab snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2aa24215 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f738fcd snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x753e0e17 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x826785cc snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87813677 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8fb0666c snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x927dc0b4 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9bf8aafc snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2a7375a snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1e21ea0 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd81120e7 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe51e406e snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf358d121 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x14691b41 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x30eeaebb snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x36fa3cfc snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0e4b368d oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e2c8a4f oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x31f8cba3 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35643807 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3a8c10d4 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4573bba5 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f7b60e5 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b51fc15 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c51130f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70d8c678 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b62ef5b oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7de4f1f7 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91efed92 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4e8897c oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7cf4cdd oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc853aeb0 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcccd7fef oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd036f863 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1e6c571 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd257ee0d oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeefd5ca8 oxygen_write16 -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x6757c5b0 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7356c191 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x177d45ba tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf4a858b1 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x584ba546 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x72559047 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x8f64d27a aic32x4_remove -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x58f59524 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0x877c0412 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x01503209 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02ea9de9 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0647973d sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x07545f0b sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0af9463e snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d0a7893 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x139f8853 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16a3156e snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18323fee snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e920654 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c501702 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3989b106 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39ad4361 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3cf80f1d snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x417cddf5 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x539ecd53 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x570c8b6a sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65d85f39 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a98a87e sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70b58531 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74461e68 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x779a976c snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a2b020b snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x936688dc snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9669fca7 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97fe597d snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b3f9d85 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9db867ce snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa35c9802 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa475fe34 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa782d3f4 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7d1065e snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab6511bf snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab814dec snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb12da83d snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3ba196d sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb74ff81f snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbf8f4c5 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc02088ab snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7941d1f snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2bbbdfc snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd8043ede sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb0cc9c7 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd6f3a38 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe876648a snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2da1cbb snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfee86744 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soundcore 0x3916b080 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x866765b9 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x91e36c62 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x968a5a35 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xbd56de0d sound_class -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xf09c5897 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x000821be request_key_tag -EXPORT_SYMBOL vmlinux 0x0015b95f f_setown -EXPORT_SYMBOL vmlinux 0x0033cfc6 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x005a2842 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x00743454 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x0078a3dc compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x0084ffed acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x008bef4d md_write_inc -EXPORT_SYMBOL vmlinux 0x00a34094 __serio_register_port -EXPORT_SYMBOL vmlinux 0x00c66a96 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x00d45645 posix_lock_file -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e36389 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x00e46d50 __devm_release_region -EXPORT_SYMBOL vmlinux 0x00f9a20d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x011affcd input_get_keycode -EXPORT_SYMBOL vmlinux 0x011d42bb neigh_lookup -EXPORT_SYMBOL vmlinux 0x012b773b kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014cee47 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x014f9ea6 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015a8e26 sock_release -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01629ea9 sock_i_uid -EXPORT_SYMBOL vmlinux 0x0172c594 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x018f073b serio_rescan -EXPORT_SYMBOL vmlinux 0x01a8c0b4 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d3b05a find_lock_entry -EXPORT_SYMBOL vmlinux 0x01eaed44 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x01ecd190 ip_frag_init -EXPORT_SYMBOL vmlinux 0x01f38308 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x021ce753 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0238c564 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x02444ae8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x0262cb93 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02838925 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x029267e9 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b82f63 phy_attached_print -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02cda8ed t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x02cf5fbc tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x02e65a77 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f180ed ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x03024d18 dev_activate -EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x032fa1dc tcp_seq_next -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0357dcb4 meson_sm_call_write -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03783a84 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a3932e fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x03d692be from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x03e48210 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x03e696bd __sb_start_write -EXPORT_SYMBOL vmlinux 0x03f66d05 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x03fb9b36 vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03feea40 cpumask_next -EXPORT_SYMBOL vmlinux 0x04016463 phy_device_free -EXPORT_SYMBOL vmlinux 0x040742c6 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x0408dc4a sock_no_accept -EXPORT_SYMBOL vmlinux 0x040f6ca0 put_tty_driver -EXPORT_SYMBOL vmlinux 0x044265db devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x0442b0d3 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04893943 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x04a8c473 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x04ac8a0b fman_register_intr -EXPORT_SYMBOL vmlinux 0x04c0f9b5 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x04cec5ad tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x04d7464c seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x04e8fc81 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ee8705 compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x04fe7896 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051c846d phy_aneg_done -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x0521eb40 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x052330ea blackhole_netdev -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05249472 proc_create_data -EXPORT_SYMBOL vmlinux 0x052d69d0 pipe_unlock -EXPORT_SYMBOL vmlinux 0x0534d3a1 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x05368ea7 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054b1af7 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x054d0a7c sock_from_file -EXPORT_SYMBOL vmlinux 0x0557d4c4 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056a5d2e xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x058d18af inet_frag_kill -EXPORT_SYMBOL vmlinux 0x05907354 register_gifconf -EXPORT_SYMBOL vmlinux 0x05a0e089 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x05a36dc0 skb_pull -EXPORT_SYMBOL vmlinux 0x05a461ab dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x05af2f41 iget_locked -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05d506b1 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x05e533db t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x0600c60f blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x061024a5 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x0613c6b4 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x065e7eed bio_devname -EXPORT_SYMBOL vmlinux 0x066c5021 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x06705988 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x06735e24 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0684e162 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x06a49d1e ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x06b37ec3 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x06baa2c2 dquot_drop -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06d06fc7 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x06e700ba hmm_range_fault -EXPORT_SYMBOL vmlinux 0x06e9177f jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x0708506f eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0715f4dd get_tree_keyed -EXPORT_SYMBOL vmlinux 0x07177dd5 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x0718d829 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07357422 pci_enable_device -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0749ff6d flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x0765edf0 fb_set_var -EXPORT_SYMBOL vmlinux 0x0769ad27 dquot_release -EXPORT_SYMBOL vmlinux 0x0780e5f7 __inet_hash -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x079cedcf mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x079e7d20 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x07a280d9 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b01722 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d88dde d_find_any_alias -EXPORT_SYMBOL vmlinux 0x07f39823 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0807c0c6 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x0812bb0a ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082e7bb2 vmap -EXPORT_SYMBOL vmlinux 0x0831796b invalidate_partition -EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084b8e9c flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x08624abb xfrm_init_state -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08ac5218 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x08bbc421 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x08cac718 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x08cb2780 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x08cb67fc of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x08d27649 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f21abe jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x0909716e arp_tbl -EXPORT_SYMBOL vmlinux 0x0911cfbe mdio_bus_type -EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0939543f imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x0944f2cf security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc -EXPORT_SYMBOL vmlinux 0x0964d44f unlock_page -EXPORT_SYMBOL vmlinux 0x09682235 down_timeout -EXPORT_SYMBOL vmlinux 0x097363f7 misc_deregister -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x09828589 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a22f1b is_subdir -EXPORT_SYMBOL vmlinux 0x09be49dc textsearch_prepare -EXPORT_SYMBOL vmlinux 0x09bf38ca xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x09bf3d0f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09c9b89d inet6_add_offload -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09e5809d kfree_skb -EXPORT_SYMBOL vmlinux 0x09f61906 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x0a0e8d0c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a143d6e clocksource_unregister -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a30ca7d fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x0a3a7e3b blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x0a4abeb1 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x0a6e0e34 __skb_pad -EXPORT_SYMBOL vmlinux 0x0a703342 pci_map_rom -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a778576 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x0a805e54 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0x0a84688c freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0a953c76 simple_readpage -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa97175 put_cmsg -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad33692 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible -EXPORT_SYMBOL vmlinux 0x0b12a330 phy_ethtool_ksettings_get -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 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b3c0fd0 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x0b46feaa nobh_write_begin -EXPORT_SYMBOL vmlinux 0x0b6b6445 nvm_unregister -EXPORT_SYMBOL vmlinux 0x0b70b7fc generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b84370d wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x0b9e3b62 __kernel_write -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd30d40 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x0be61005 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x0bef94a1 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x0bf94941 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x0c008838 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x0c00b552 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x0c090898 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2c4a65 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x0c363bd8 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0c46da66 vm_event_states -EXPORT_SYMBOL vmlinux 0x0c552e35 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x0c5a5f28 _dev_alert -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c8d5f13 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x0c95236c __breadahead -EXPORT_SYMBOL vmlinux 0x0ca1b6ea msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cb3e882 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc25a12 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x0cc2c9e0 make_kprojid -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd6a38a ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf186fa mmc_get_card -EXPORT_SYMBOL vmlinux 0x0cf3ae7b fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x0cff5193 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d3c344f __serio_register_driver -EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d79304a __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x0d970a77 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x0da096f4 fget_raw -EXPORT_SYMBOL vmlinux 0x0db386f9 pid_task -EXPORT_SYMBOL vmlinux 0x0dc5b9f6 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x0dcdd2e1 elv_rb_del -EXPORT_SYMBOL vmlinux 0x0de8e1a7 find_get_entry -EXPORT_SYMBOL vmlinux 0x0de8ea7e pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x0df188d1 phy_device_remove -EXPORT_SYMBOL vmlinux 0x0df42533 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x0e1019fd __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1994bd blk_put_request -EXPORT_SYMBOL vmlinux 0x0e3f22be del_gendisk -EXPORT_SYMBOL vmlinux 0x0e47c90f tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x0e6f24b1 bdi_register_va -EXPORT_SYMBOL vmlinux 0x0e738e65 pci_release_region -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e769376 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0e786e80 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x0e87e203 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x0e9e8956 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x0eadd52b insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x0ebb4e35 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec97b0b ip_defrag -EXPORT_SYMBOL vmlinux 0x0ee1aff0 from_kprojid -EXPORT_SYMBOL vmlinux 0x0eeb58f2 follow_down_one -EXPORT_SYMBOL vmlinux 0x0f0219c1 kobject_put -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f14721d cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0f35213b eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f5a832d tty_port_close_end -EXPORT_SYMBOL vmlinux 0x0f80b668 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x0f860657 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f928974 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fac358b tcp_release_cb -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcefa57 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x0fd60425 to_ndd -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe22bed mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x0ff2216d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x0ffe0559 simple_rename -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1035dc44 devm_ioremap -EXPORT_SYMBOL vmlinux 0x10422144 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x104f41e9 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x105aecf2 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106c095e rpmh_write -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1084e2ae fb_pan_display -EXPORT_SYMBOL vmlinux 0x1088fbf7 vc_cons -EXPORT_SYMBOL vmlinux 0x10893611 bio_uninit -EXPORT_SYMBOL vmlinux 0x10955dbb tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x10bb9af7 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x10be9452 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d9c4a6 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e5b2a3 __break_lease -EXPORT_SYMBOL vmlinux 0x10f4b8cc mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x10ffa75e __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x11025d64 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11145e88 irq_set_chip -EXPORT_SYMBOL vmlinux 0x1123a405 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x1123dabf block_read_full_page -EXPORT_SYMBOL vmlinux 0x113c6158 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x1145ae18 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x1148f606 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x115710b8 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116bdbe1 iov_iter_init -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117d299a mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x1185e8a7 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x1191c143 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x11a0c53a vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x11a80055 nf_log_register -EXPORT_SYMBOL vmlinux 0x11cd9ce2 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x11db1e59 proto_unregister -EXPORT_SYMBOL vmlinux 0x11db7a02 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x11de419a pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x122b12c6 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x122b972c blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x122b9b3d bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x123e074f param_ops_ulong -EXPORT_SYMBOL vmlinux 0x1243b64b xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x124cbce2 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x124ea7b2 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x124fefde dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x12641cfe filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x12767e7b udp_gro_complete -EXPORT_SYMBOL vmlinux 0x1292f76d mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12dca813 seq_release -EXPORT_SYMBOL vmlinux 0x12ea609e mmput_async -EXPORT_SYMBOL vmlinux 0x12eed5b4 set_page_dirty -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12f749ee ip_fraglist_prepare -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 0x131c317a of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x133653ab csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1355e5de vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x136f73bf of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x1388d776 filp_close -EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a7c63f qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x13ace8d8 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x13b219a7 inet_bind -EXPORT_SYMBOL vmlinux 0x13c77f37 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e08024 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x13eaa9f4 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x13f35936 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x1401ff80 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x140b23d4 soft_cursor -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141ca3b7 lease_modify -EXPORT_SYMBOL vmlinux 0x142425ad mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x142f9910 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x1446b0b3 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x144aa5e4 wireless_send_event -EXPORT_SYMBOL vmlinux 0x145d2ac5 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146d046c mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x1491e10e of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x14a717b2 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14c4f323 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cf2dee mntget -EXPORT_SYMBOL vmlinux 0x14d0dec4 input_match_device_id -EXPORT_SYMBOL vmlinux 0x14d6d9b2 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x14daebe6 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x14e52e9b generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x14e5c3ea dev_change_flags -EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14f96acf md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x15081f58 devm_iounmap -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1525e362 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154d6f65 d_genocide -EXPORT_SYMBOL vmlinux 0x155088c8 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x15528eb3 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x155d629a kill_pid -EXPORT_SYMBOL vmlinux 0x15606652 block_truncate_page -EXPORT_SYMBOL vmlinux 0x15690c9e tty_unthrottle -EXPORT_SYMBOL vmlinux 0x15721597 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1578f63e vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x15969ac6 flush_signals -EXPORT_SYMBOL vmlinux 0x15996b9a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x159c5921 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x15a7c9f8 is_nd_btt -EXPORT_SYMBOL vmlinux 0x15b3f4c2 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bbc573 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15d27712 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x15d42dc6 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x15d45ce2 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x15e9dbbe phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x15ea4898 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x16046515 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x161b4b76 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1631e10a xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x1643c0b8 sock_create_kern -EXPORT_SYMBOL vmlinux 0x1658185f vfs_fsync -EXPORT_SYMBOL vmlinux 0x165ba50b md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x165d6913 bio_free_pages -EXPORT_SYMBOL vmlinux 0x1665f02b dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x16689339 lookup_bdev -EXPORT_SYMBOL vmlinux 0x166b3a99 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168e8a5c abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16b1dba1 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x16bb2478 fb_class -EXPORT_SYMBOL vmlinux 0x16bb2bf9 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x16c37858 migrate_page_states -EXPORT_SYMBOL vmlinux 0x16c86804 kern_path -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16cf2937 fs_parse -EXPORT_SYMBOL vmlinux 0x16cf7728 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x16d37a53 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e3f9d9 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x1705c1e5 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x1708eb91 iterate_fd -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1729713c sk_dst_check -EXPORT_SYMBOL vmlinux 0x173e767b tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x1742baf0 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x174f0c6b mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x178092c0 kill_anon_super -EXPORT_SYMBOL vmlinux 0x17a5e4a2 phy_disconnect -EXPORT_SYMBOL vmlinux 0x17ecdb4f proc_set_user -EXPORT_SYMBOL vmlinux 0x17ed9dac __find_get_block -EXPORT_SYMBOL vmlinux 0x182701ae __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x182db23b seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x18328c5a sync_inode -EXPORT_SYMBOL vmlinux 0x1844b0b2 finalize_exec -EXPORT_SYMBOL vmlinux 0x185a071b xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x187144b7 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x188631fd __frontswap_test -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188cd684 phy_resume -EXPORT_SYMBOL vmlinux 0x188d7b1a dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18d9a4a2 clk_get -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ee3f87 sock_init_data -EXPORT_SYMBOL vmlinux 0x18f54fbc component_match_add_typed -EXPORT_SYMBOL vmlinux 0x18ff59ba skb_find_text -EXPORT_SYMBOL vmlinux 0x190bfe7d nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x1925a851 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x1947a5fa uart_get_divisor -EXPORT_SYMBOL vmlinux 0x194b060a __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x1987ea9f tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a0b9a3 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x19a2b9a4 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x19b1cf88 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c39ff7 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x19cf8713 kern_unmount -EXPORT_SYMBOL vmlinux 0x19e0e2e3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x1a045898 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x1a08343d netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a2ae5f4 register_cdrom -EXPORT_SYMBOL vmlinux 0x1a30a0ab fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x1a3ba69a get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4ce570 of_node_get -EXPORT_SYMBOL vmlinux 0x1a4d6d1d no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x1a4eb0fc dev_open -EXPORT_SYMBOL vmlinux 0x1a542382 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x1a7c289a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a879008 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x1a91c3ab nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x1a936287 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x1a97aec8 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1abdb862 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x1ac49ae2 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae78d84 hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0x1af0cb05 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x1af3c435 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x1af46b32 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0b064b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x1b2895d1 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5aa74d fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6ec427 vme_irq_request -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b78cbeb dquot_acquire -EXPORT_SYMBOL vmlinux 0x1b9375c8 sk_alloc -EXPORT_SYMBOL vmlinux 0x1b961fbb pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1ba847cf devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc7007d generic_permission -EXPORT_SYMBOL vmlinux 0x1bcc481b phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x1bced74f __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x1bd405c8 sdei_event_register -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1be414bb scm_detach_fds -EXPORT_SYMBOL vmlinux 0x1be507b7 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x1be8f97c register_qdisc -EXPORT_SYMBOL vmlinux 0x1c103f4b input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x1c21ca1a kill_pgrp -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c47ebc5 nf_log_trace -EXPORT_SYMBOL vmlinux 0x1c56da52 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c61848a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x1c6d334b input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x1c746616 udp_prot -EXPORT_SYMBOL vmlinux 0x1c7bc1c4 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x1c843dd3 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x1c8d5c2f unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x1ca140d6 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x1ca6b5bc skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cbd3ea8 of_iomap -EXPORT_SYMBOL vmlinux 0x1cbff956 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1cc7d663 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce019fe _copy_to_iter -EXPORT_SYMBOL vmlinux 0x1ceb83fa pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x1cfd4883 fqdir_init -EXPORT_SYMBOL vmlinux 0x1d07d7d9 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d493790 d_add -EXPORT_SYMBOL vmlinux 0x1d613c73 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x1d825883 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x1d8893b2 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x1d8a7df2 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x1d8c166b i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x1d95d5ac napi_get_frags -EXPORT_SYMBOL vmlinux 0x1da4ce1b udp_seq_next -EXPORT_SYMBOL vmlinux 0x1db30a11 d_invalidate -EXPORT_SYMBOL vmlinux 0x1dbca91c netif_rx -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -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 0x1e0d4cf2 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2c5c14 register_filesystem -EXPORT_SYMBOL vmlinux 0x1e4e7897 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1e68c42c __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e88aa05 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x1e8fdb57 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x1e93354d dev_uc_add -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1ecd9b86 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x1ed2dbec tty_devnum -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1f11731a try_module_get -EXPORT_SYMBOL vmlinux 0x1f3d8495 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x1fb329f8 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fcdf410 simple_setattr -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd26cf6 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount -EXPORT_SYMBOL vmlinux 0x1fe0c030 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x1fe674fb fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x1fe83fba sock_create_lite -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x204a64bc security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205588e1 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x2058034f __put_cred -EXPORT_SYMBOL vmlinux 0x2058fcdf acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x2069be64 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x206c1886 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x206d0599 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207f8e9a scsi_add_device -EXPORT_SYMBOL vmlinux 0x2088fd3b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x2099791e devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a9b0eb pagecache_write_end -EXPORT_SYMBOL vmlinux 0x20b58813 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x20b79342 netif_device_attach -EXPORT_SYMBOL vmlinux 0x20c68403 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20cc57d2 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x20cd8029 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x20d59996 set_disk_ro -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20eafa39 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x20ff7879 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21096afd of_find_backlight -EXPORT_SYMBOL vmlinux 0x2111f762 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x211e6521 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21afefb7 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x21b8288e tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c2c4c3 xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0x21c494e1 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x21d64196 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x21e0e90f __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e252de blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x220e55d0 mem_section -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223056b4 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22408746 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x224b93a1 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x22530d47 kernel_accept -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2291ecfe phy_detach -EXPORT_SYMBOL vmlinux 0x22978d08 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x22a012a6 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b93106 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x22be4ef1 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x22cdcdcb dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x22dc5d8b deactivate_super -EXPORT_SYMBOL vmlinux 0x22e976f4 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x22f2a5ce fman_set_port_params -EXPORT_SYMBOL vmlinux 0x22ffc7d7 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x23068601 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x230cc225 PDE_DATA -EXPORT_SYMBOL vmlinux 0x23208da7 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x233520d0 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x2364da19 key_validate -EXPORT_SYMBOL vmlinux 0x2380cc6c km_report -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23d782bd __sb_end_write -EXPORT_SYMBOL vmlinux 0x23d9a7ed blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23e62ef6 setattr_prepare -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2418dcf7 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x241d8502 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2430812c tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244db45b jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245dfa10 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x24682f6a dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x247938a4 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24aebac8 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x24b04d6c redraw_screen -EXPORT_SYMBOL vmlinux 0x24bea38a netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dfd0b6 fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x24e6bbb2 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x24fdd3f2 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x251889c9 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x25449706 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x2548b4ba pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x2552d293 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257561ec inode_init_owner -EXPORT_SYMBOL vmlinux 0x2577527c open_exec -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x259047d8 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x2590dbca devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x259289cf of_platform_device_create -EXPORT_SYMBOL vmlinux 0x25986685 noop_fsync -EXPORT_SYMBOL vmlinux 0x2599f454 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x25a65511 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x25b5ec7c pcim_iounmap -EXPORT_SYMBOL vmlinux 0x25befd07 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x25d8b2d7 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fa917d mmc_free_host -EXPORT_SYMBOL vmlinux 0x2605e580 vme_slot_num -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x263a939c xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x2648ac9a bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x2649a932 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x269230dd devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x2692a428 skb_split -EXPORT_SYMBOL vmlinux 0x26b32155 set_blocksize -EXPORT_SYMBOL vmlinux 0x26d2582e fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x26d78932 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e5667c __dquot_transfer -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2753948a vme_register_driver -EXPORT_SYMBOL vmlinux 0x2754c49e amba_find_device -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x276b5f3f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x2770afb4 lru_cache_add_file -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 0x2783e361 update_region -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27930ccf neigh_seq_start -EXPORT_SYMBOL vmlinux 0x27b2fc22 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c270aa pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27da8e45 cont_write_begin -EXPORT_SYMBOL vmlinux 0x27f06769 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x27fb97f3 _dev_info -EXPORT_SYMBOL vmlinux 0x2802310b jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x28155895 dquot_destroy -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28255c5c dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x2832d6f8 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x28344d9e xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x28391998 skb_store_bits -EXPORT_SYMBOL vmlinux 0x28398383 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x283a7707 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x284fcda7 ether_setup -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28862919 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x28af77d7 netif_napi_add -EXPORT_SYMBOL vmlinux 0x28bcc209 param_ops_byte -EXPORT_SYMBOL vmlinux 0x28c1d555 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x28ccd689 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x28fa4eed generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x2901c4e3 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x290914f6 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x292daa06 fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x29361773 complete -EXPORT_SYMBOL vmlinux 0x293abd07 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x294e1787 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x295a64e2 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert -EXPORT_SYMBOL vmlinux 0x29c06035 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e2198a dquot_commit_info -EXPORT_SYMBOL vmlinux 0x29ea29db __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x29fe4b04 security_path_mknod -EXPORT_SYMBOL vmlinux 0x2a246593 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x2a2f63c4 __tcf_idr_release -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3e0ef5 inet6_getname -EXPORT_SYMBOL vmlinux 0x2a5327da vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x2a60c2d7 node_states -EXPORT_SYMBOL vmlinux 0x2a754acd inet_release -EXPORT_SYMBOL vmlinux 0x2a7ca0a2 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x2a7ef531 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x2a84eadc devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x2a8911ef seq_open_private -EXPORT_SYMBOL vmlinux 0x2a957790 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock -EXPORT_SYMBOL vmlinux 0x2ad0de5a blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x2ad8e63a vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x2aed807d device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x2af9f759 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x2afbec2b mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x2b0468b2 ipv4_specific -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b227188 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x2b266732 to_nd_btt -EXPORT_SYMBOL vmlinux 0x2b2bf086 zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0x2b414650 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x2b4e6fb5 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x2b4f0935 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x2b531078 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bafaec8 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x2bc71ea7 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x2bcb6267 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x2bd59fff blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bd7fde4 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x2be10b62 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x2be628bb file_open_root -EXPORT_SYMBOL vmlinux 0x2beeb49f dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c04f302 inet_frag_find -EXPORT_SYMBOL vmlinux 0x2c06bbf5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x2c0d5f36 vfs_symlink -EXPORT_SYMBOL vmlinux 0x2c11c799 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x2c13690b skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x2c20bbe9 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6c18f1 fqdir_exit -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c870d54 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c9882a5 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x2c9e7fb5 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x2ca55456 serio_interrupt -EXPORT_SYMBOL vmlinux 0x2cad6781 kernel_bind -EXPORT_SYMBOL vmlinux 0x2cc969d9 is_bad_inode -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cf6414d mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d14a384 blk_get_queue -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d247e03 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x2d2d54f2 dentry_open -EXPORT_SYMBOL vmlinux 0x2d2fe1b6 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3b721e remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d5e2870 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x2d667635 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x2d849287 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d934f3b scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da322bf config_group_init -EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd0d9ce add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x2defec22 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x2dfe520d dm_table_get_md -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e288cac i2c_use_client -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw -EXPORT_SYMBOL vmlinux 0x2e3473e2 rproc_del -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e5ffdad file_remove_privs -EXPORT_SYMBOL vmlinux 0x2ea1d60e generic_delete_inode -EXPORT_SYMBOL vmlinux 0x2ec3453b qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin -EXPORT_SYMBOL vmlinux 0x2ede7908 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x2ee27248 start_tty -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee7f826 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x2efbe818 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x2efeabbf __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2eff0e6e simple_nosetlease -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f1b2cdc nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x2f258ce6 genphy_suspend -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f33cbdc devm_release_resource -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3957ef vfs_unlink -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f61bc98 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x2f673e28 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fa36297 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x301336fe open_with_fake_path -EXPORT_SYMBOL vmlinux 0x3016d2c4 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x30248b3e tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x302eb9be fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x305951ed touch_buffer -EXPORT_SYMBOL vmlinux 0x305dd9b6 register_console -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b3687c __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x30bd5ee0 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x311a6e05 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x31256e6e pci_release_regions -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x31636cb9 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x31645bf1 genlmsg_put -EXPORT_SYMBOL vmlinux 0x3176201f simple_transaction_release -EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ae5c87 vfs_get_link -EXPORT_SYMBOL vmlinux 0x31dac53f revalidate_disk -EXPORT_SYMBOL vmlinux 0x31f04250 d_alloc -EXPORT_SYMBOL vmlinux 0x31f6570a __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x3202fe86 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x3208f6bb __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x32109016 arp_xmit -EXPORT_SYMBOL vmlinux 0x3245c44a udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x3271771c node_data -EXPORT_SYMBOL vmlinux 0x327312b3 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328999d7 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x3291a615 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x32ab0296 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x32ac91f5 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x32c4bc68 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x32c73d51 page_get_link -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d04af1 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x32e6e5f9 netdev_printk -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f7200a stop_tty -EXPORT_SYMBOL vmlinux 0x32fc35cb filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x332ab9a0 pci_pme_active -EXPORT_SYMBOL vmlinux 0x333b5fb3 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x333dd530 tcf_register_action -EXPORT_SYMBOL vmlinux 0x334c52d4 __close_fd -EXPORT_SYMBOL vmlinux 0x3353f4a5 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x3355a8d7 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x336604e6 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x336937aa seq_open -EXPORT_SYMBOL vmlinux 0x336f5837 noop_llseek -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337f2745 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x33852d00 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x339a0565 ll_rw_block -EXPORT_SYMBOL vmlinux 0x33b4ace2 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x33b7aba7 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x33baccc5 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x33ccce6c blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x33db40ab param_set_ulong -EXPORT_SYMBOL vmlinux 0x33e479f0 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fbb64b sk_mc_loop -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x341696c1 skb_queue_head -EXPORT_SYMBOL vmlinux 0x34312cae lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x343643bf ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x344ca9d4 qman_init_fq -EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34ab8e15 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x34ae4f9b netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x34b1c130 uart_register_driver -EXPORT_SYMBOL vmlinux 0x34b6ef7f xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x34bfcdf8 d_drop -EXPORT_SYMBOL vmlinux 0x34d51329 vme_slave_request -EXPORT_SYMBOL vmlinux 0x34dd496e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34ff5d08 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x34ffd986 phy_loopback -EXPORT_SYMBOL vmlinux 0x350ad401 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x35112e93 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x354813dd iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0x354e48ae get_tree_bdev -EXPORT_SYMBOL vmlinux 0x355d03e8 inet_gro_complete -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3580a2a1 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x3589628b mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b57a88 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x35e53cfd of_n_size_cells -EXPORT_SYMBOL vmlinux 0x36069148 param_ops_string -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362d8f2e of_match_device -EXPORT_SYMBOL vmlinux 0x3641b8f0 ppp_input -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3666063a input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x36662d40 serio_bus -EXPORT_SYMBOL vmlinux 0x368b6cee iget_failed -EXPORT_SYMBOL vmlinux 0x368e1e4d _dev_notice -EXPORT_SYMBOL vmlinux 0x36d8229e sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x36e1032a vfs_mknod -EXPORT_SYMBOL vmlinux 0x36f8f8e2 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x370d7766 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37153083 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x37195e74 skb_tx_error -EXPORT_SYMBOL vmlinux 0x372178bd ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x3724f422 con_is_bound -EXPORT_SYMBOL vmlinux 0x372ced92 inet_gso_segment -EXPORT_SYMBOL vmlinux 0x37361f8f iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374cf65f simple_pin_fs -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37599638 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b50b7c netif_carrier_on -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cf891e netlink_ack -EXPORT_SYMBOL vmlinux 0x37d0a0dc vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37ef8f21 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x380cecfa mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x380f8dc8 set_posix_acl -EXPORT_SYMBOL vmlinux 0x38158f81 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x383d7180 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x385b421d __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x387e3b0d vm_mmap -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 0x38b910d2 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x38d3b885 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e9d7c2 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x38ea34f1 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x38f76817 nf_log_packet -EXPORT_SYMBOL vmlinux 0x3902004c key_link -EXPORT_SYMBOL vmlinux 0x3914dbd6 unload_nls -EXPORT_SYMBOL vmlinux 0x3917505d twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x392b223e page_mapping -EXPORT_SYMBOL vmlinux 0x3933a0b0 block_write_begin -EXPORT_SYMBOL vmlinux 0x39396ac0 bdi_put -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393fb1d8 blkdev_get -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396cf443 generic_listxattr -EXPORT_SYMBOL vmlinux 0x3979c8b2 of_node_put -EXPORT_SYMBOL vmlinux 0x3981beec netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a938ec scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bfb0b3 dma_cache_sync -EXPORT_SYMBOL vmlinux 0x39ce9e9a rtc_add_groups -EXPORT_SYMBOL vmlinux 0x39d4a211 napi_complete_done -EXPORT_SYMBOL vmlinux 0x39f9769f irq_stat -EXPORT_SYMBOL vmlinux 0x3a0d340b vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a175de3 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x3a201731 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x3a2d38dc skb_checksum_help -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a31018d dev_mc_del -EXPORT_SYMBOL vmlinux 0x3a34a25f tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a587c36 cdev_add -EXPORT_SYMBOL vmlinux 0x3a94407c pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x3aa295f0 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac4750c mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x3acd9020 param_ops_bint -EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b08824b framebuffer_release -EXPORT_SYMBOL vmlinux 0x3b13392c udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b22ccbd simple_unlink -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b39eda1 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x3b3e98d5 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x3b5d74b5 netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b673360 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x3b7c611b __netif_schedule -EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds -EXPORT_SYMBOL vmlinux 0x3b8f0911 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba9c3e1 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x3ba9df8e fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x3bbb3323 netdev_warn -EXPORT_SYMBOL vmlinux 0x3bc79a71 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bfbaa0b mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x3c0d57a5 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x3c12376c of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c292c01 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x3c3f2134 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c526a9b pci_assign_resource -EXPORT_SYMBOL vmlinux 0x3c5d42fb kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3c5ff94b __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3c698cfc devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x3c8038f9 unregister_nls -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c823cf7 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x3ca4e080 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x3cbc1e5b eth_get_headlen -EXPORT_SYMBOL vmlinux 0x3cc1722f inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x3cd1bdb1 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cdb622b phy_drivers_register -EXPORT_SYMBOL vmlinux 0x3cdff7bf compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf0f4bf ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x3cfd1c37 kernel_write -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d536640 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x3d536b69 sk_capable -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x3d6be752 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x3d789561 truncate_setsize -EXPORT_SYMBOL vmlinux 0x3d8560e4 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3d9f5cee d_obtain_alias -EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db91ea6 import_single_range -EXPORT_SYMBOL vmlinux 0x3dbdca55 simple_open -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd2a99c audit_log -EXPORT_SYMBOL vmlinux 0x3dd79baf blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddb6dbe input_register_handler -EXPORT_SYMBOL vmlinux 0x3df65acc xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc3d7d mmc_put_card -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0ed915 nd_btt_version -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e4347a9 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x3e535151 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x3e57aabc ppp_channel_index -EXPORT_SYMBOL vmlinux 0x3e7082b0 uart_match_port -EXPORT_SYMBOL vmlinux 0x3e8a1273 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3eb1d42f pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x3edc5036 bd_set_size -EXPORT_SYMBOL vmlinux 0x3edf07b0 arp_send -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3efdfddf pci_iomap -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f160134 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x3f17763e pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x3f44dfdf skb_vlan_push -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4fac58 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x3f58eabd ip6_frag_init -EXPORT_SYMBOL vmlinux 0x3f674f80 finish_swait -EXPORT_SYMBOL vmlinux 0x3f80a3e6 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x3f82ed68 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x3f885ded inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f935dcb kset_unregister -EXPORT_SYMBOL vmlinux 0x3fa12f5c mdio_device_register -EXPORT_SYMBOL vmlinux 0x3fa47684 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fbfa89c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe45890 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x3feb8f1b scsi_host_put -EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x40454178 get_vm_area -EXPORT_SYMBOL vmlinux 0x40528e86 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x40613af9 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409983d6 inet_getname -EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock -EXPORT_SYMBOL vmlinux 0x409de65d dump_truncate -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b76ce5 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c7b34c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d6070f dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x40d752f0 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40d9d2f3 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x40e852bb param_ops_ullong -EXPORT_SYMBOL vmlinux 0x41055b3d fb_get_mode -EXPORT_SYMBOL vmlinux 0x411c0559 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x411cc89a submit_bh -EXPORT_SYMBOL vmlinux 0x412e0bca kmem_cache_create -EXPORT_SYMBOL vmlinux 0x4137a81e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x413cb374 of_phy_attach -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414cec5b sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x4156927d serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x4157c2f9 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x415de379 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x41691e86 sock_no_bind -EXPORT_SYMBOL vmlinux 0x4174b932 dcb_getapp -EXPORT_SYMBOL vmlinux 0x4176f91a follow_pfn -EXPORT_SYMBOL vmlinux 0x4178de86 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0x417e77da i2c_release_client -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419811f6 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x4198ca95 __do_once_done -EXPORT_SYMBOL vmlinux 0x41a53545 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x41acc512 tty_lock -EXPORT_SYMBOL vmlinux 0x41b678ed blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x41c29400 param_set_bool -EXPORT_SYMBOL vmlinux 0x41de239a of_phy_connect -EXPORT_SYMBOL vmlinux 0x41e4d7a4 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x41e9bbc6 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x4211a199 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42353c24 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4273cc78 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x4280d7aa inet6_bind -EXPORT_SYMBOL vmlinux 0x4286cfb7 bdevname -EXPORT_SYMBOL vmlinux 0x42a7140d fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42d898a4 simple_write_begin -EXPORT_SYMBOL vmlinux 0x42e3a3d7 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431f21af neigh_parms_release -EXPORT_SYMBOL vmlinux 0x432bc051 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x432f3716 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x4333b9c6 kernel_connect -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x43433875 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435794ba blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439225c8 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x439d6932 dst_discard_out -EXPORT_SYMBOL vmlinux 0x43a4bd4f xfrm_register_type -EXPORT_SYMBOL vmlinux 0x43b43846 param_get_invbool -EXPORT_SYMBOL vmlinux 0x43c04ca9 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x43c3a1f6 notify_change -EXPORT_SYMBOL vmlinux 0x43c4b0bf scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x43d1c541 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x43d7bd4f __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x43d7f663 rproc_put -EXPORT_SYMBOL vmlinux 0x43e71900 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x43ec66ae simple_release_fs -EXPORT_SYMBOL vmlinux 0x43ec6d2d vme_master_request -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x442fbb82 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x446a0ba0 mpage_writepages -EXPORT_SYMBOL vmlinux 0x44747cd6 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4488241f security_sb_remount -EXPORT_SYMBOL vmlinux 0x44923eea generic_make_request -EXPORT_SYMBOL vmlinux 0x449459fa jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a2090f udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x44a2426a dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x44a75068 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x44b7bc82 iproc_msi_init -EXPORT_SYMBOL vmlinux 0x44ce27cb pci_dev_driver -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ec1bd0 skb_dequeue -EXPORT_SYMBOL vmlinux 0x44ef0a4c irq_to_desc -EXPORT_SYMBOL vmlinux 0x44f061d3 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x45345914 param_ops_short -EXPORT_SYMBOL vmlinux 0x4538c422 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45416ab3 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455eb12d __ip_select_ident -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458077f8 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x45819004 bh_submit_read -EXPORT_SYMBOL vmlinux 0x45957f01 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x45a1e8b0 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x45bd8641 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x45c7452e neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x45cd1487 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x45e69e01 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x45e6b7f0 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x45f0b2bd mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x45ff0e40 key_move -EXPORT_SYMBOL vmlinux 0x4601c743 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x462db277 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x46311f19 dev_deactivate -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4634f952 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4645eeea fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x465a8217 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x465b7185 param_get_byte -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4661134e fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b640e5 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x46bcff4a fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x46bdcc60 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d82709 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x46dc8e8a bio_advance -EXPORT_SYMBOL vmlinux 0x46df0331 processors -EXPORT_SYMBOL vmlinux 0x46df8417 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x470984f3 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x471f3181 simple_rmdir -EXPORT_SYMBOL vmlinux 0x473dd443 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x4765ec59 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cdc3db simple_empty -EXPORT_SYMBOL vmlinux 0x47ddce83 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x47e5bfcb __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x480e8fff fman_bind -EXPORT_SYMBOL vmlinux 0x4813d17d pci_bus_type -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481b26d2 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x483bf94a generic_fadvise -EXPORT_SYMBOL vmlinux 0x483fdae1 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4840784b cdev_set_parent -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4880178a skb_free_datagram -EXPORT_SYMBOL vmlinux 0x489eda10 memset32 -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a6f080 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b98bb0 proto_register -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48f87c77 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x48fe2415 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490f22e7 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x491020c1 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x4917e1ef of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x4959f419 ihold -EXPORT_SYMBOL vmlinux 0x496a58da clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x496cef75 mr_table_dump -EXPORT_SYMBOL vmlinux 0x4976c7be sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499588f0 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a168fd write_cache_pages -EXPORT_SYMBOL vmlinux 0x49a276c6 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x49a6fe11 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x49b15a62 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b5477f sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x49ee0920 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x4a05a3c1 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x4a0c8b05 vme_bus_type -EXPORT_SYMBOL vmlinux 0x4a1707ab crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x4a4cd0c3 __devm_request_region -EXPORT_SYMBOL vmlinux 0x4a7476c2 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x4a75f4cb clear_nlink -EXPORT_SYMBOL vmlinux 0x4a8125d8 __quota_error -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9a940b nd_device_register -EXPORT_SYMBOL vmlinux 0x4aaf0175 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x4ab7b6a7 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x4ac6403d vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x4acda7fd fb_set_cmap -EXPORT_SYMBOL vmlinux 0x4ad4dba0 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af20584 mount_single -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4aff1922 give_up_console -EXPORT_SYMBOL vmlinux 0x4b24eb69 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x4b3fc984 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x4b4010c1 tty_check_change -EXPORT_SYMBOL vmlinux 0x4b4f9b36 __check_sticky -EXPORT_SYMBOL vmlinux 0x4b50cb71 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b70b2b8 bmap -EXPORT_SYMBOL vmlinux 0x4b72fc78 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x4b7b15df __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4b8b9c63 param_set_invbool -EXPORT_SYMBOL vmlinux 0x4b9431b1 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bb08056 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x4bb5f8d8 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x4bb877b0 kill_litter_super -EXPORT_SYMBOL vmlinux 0x4bb89b9e i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd770b0 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x4bd957f5 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x4bdc654c pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4c01fb4c inet6_offloads -EXPORT_SYMBOL vmlinux 0x4c03c221 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x4c04e5cb skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c10af23 pci_clear_master -EXPORT_SYMBOL vmlinux 0x4c140091 sock_i_ino -EXPORT_SYMBOL vmlinux 0x4c14430d pci_get_subsys -EXPORT_SYMBOL vmlinux 0x4c1fe453 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x4c2c0dd4 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x4c32ab53 passthru_features_check -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c406c4f vfs_readlink -EXPORT_SYMBOL vmlinux 0x4c40e973 phy_read_paged -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c42d787 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x4c4b1a23 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x4c4ebd41 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x4c5e6fbb inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4c77b9f7 tty_do_resize -EXPORT_SYMBOL vmlinux 0x4c9b8339 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc67bc2 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x4cff3722 update_devfreq -EXPORT_SYMBOL vmlinux 0x4d0040a0 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4d2ad530 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x4d2ae8d6 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d2f759a fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x4d3c7f72 __invalidate_device -EXPORT_SYMBOL vmlinux 0x4d3ddbd9 dqput -EXPORT_SYMBOL vmlinux 0x4d453d81 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x4d49b21d pci_scan_bus -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d8d74af kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d94ddb3 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da5b73b skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dca502c kdb_current_task -EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4dede515 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e163720 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x4e1b09dc devm_clk_get -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3cd87c netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x4e43340c devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e5a8062 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e881922 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x4e884895 netlink_capable -EXPORT_SYMBOL vmlinux 0x4e97a85b noop_qdisc -EXPORT_SYMBOL vmlinux 0x4ea10802 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea7ff5f kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x4ea93532 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x4eb19685 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x4ebcc19a pci_match_id -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4edf0775 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x4ef0eb4c sk_stop_timer -EXPORT_SYMBOL vmlinux 0x4efa7fde nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x4efa8c81 inet_frags_init -EXPORT_SYMBOL vmlinux 0x4efd01bd d_alloc_name -EXPORT_SYMBOL vmlinux 0x4f00137a vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x4f0509e6 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x4f0eb3bf dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2bcc87 skb_push -EXPORT_SYMBOL vmlinux 0x4f31efbd pnp_is_active -EXPORT_SYMBOL vmlinux 0x4f3747a1 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f7d2f64 __put_user_ns -EXPORT_SYMBOL vmlinux 0x4f95e5b3 migrate_page -EXPORT_SYMBOL vmlinux 0x4f9ad1d8 task_work_add -EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4fe7c3b4 kill_fasync -EXPORT_SYMBOL vmlinux 0x4ff1ca9b inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x4ff22b24 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x4ff5f3d6 default_llseek -EXPORT_SYMBOL vmlinux 0x4ffd4abb dump_align -EXPORT_SYMBOL vmlinux 0x5007591f param_set_long -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500f8161 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x5011bc7d ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502bc800 generic_read_dir -EXPORT_SYMBOL vmlinux 0x502c2d15 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x502c9d04 rproc_add -EXPORT_SYMBOL vmlinux 0x50558c25 kset_register -EXPORT_SYMBOL vmlinux 0x505f67e1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x508572b9 cdrom_release -EXPORT_SYMBOL vmlinux 0x5090372b blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a6b727 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50bdb0f9 netdev_info -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50cfd4ac seq_printf -EXPORT_SYMBOL vmlinux 0x50d0f972 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fe5f91 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51049bc6 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x511bbba7 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x514b1a74 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517ccbd0 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x51850885 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x518a90ed sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x51a2c803 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done -EXPORT_SYMBOL vmlinux 0x51d09838 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d30ccb scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51ea44bd of_find_property -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5206e39b tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x5217a441 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x521d0e33 pci_dev_get -EXPORT_SYMBOL vmlinux 0x52642776 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x526d5908 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527ad776 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x52941e5b devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a10d3f nf_log_set -EXPORT_SYMBOL vmlinux 0x52af196b param_set_short -EXPORT_SYMBOL vmlinux 0x52b64a29 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x52cf577e tcp_filter -EXPORT_SYMBOL vmlinux 0x52d6851e PageMovable -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f22c1d sync_file_create -EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530d2ebf framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x533ab8ca dput -EXPORT_SYMBOL vmlinux 0x536b7c66 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0x536c40ad scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x536fed06 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x537aa6d0 sdei_event_enable -EXPORT_SYMBOL vmlinux 0x5393f728 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x53b18934 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x53b7a9d1 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c67b5a fman_port_bind -EXPORT_SYMBOL vmlinux 0x53cd6097 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x53d1b2ff cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x53d6a559 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x53d92957 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x53e6ddd8 device_add_disk -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5403b451 __free_pages -EXPORT_SYMBOL vmlinux 0x5410e2ea ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x542aa5c0 __scsi_execute -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54469711 generic_update_time -EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x54527106 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x5478b6ca install_exec_creds -EXPORT_SYMBOL vmlinux 0x547a1182 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x548cc2fb compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5491bac7 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x54a3cba6 pci_get_device -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54c36c3d mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x54c4be60 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x54d71aae tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54eac574 register_framebuffer -EXPORT_SYMBOL vmlinux 0x54f1bedb unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550984c8 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x5519a946 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551d7f3a nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x553ab8a5 netdev_emerg -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5562cce3 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x557b4939 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x55833d3b ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x558857ae eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a910e6 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x55cb06d5 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x55ccd8aa security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x55cee690 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x55daa87e padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e6f188 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x55f79858 bdi_register -EXPORT_SYMBOL vmlinux 0x55f8ee42 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561f03dc generic_file_llseek -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563e6dff sort_r -EXPORT_SYMBOL vmlinux 0x5644b290 flush_old_exec -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x5666392a rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x567640b5 seq_dentry -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569ab1db sunxi_sram_release -EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x569ec4d0 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c99bb8 dquot_file_open -EXPORT_SYMBOL vmlinux 0x56cf3c46 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x56d87a65 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x56e3f81f __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x5721081e mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x572478cd pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575ee3be dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5768462f xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x5771feb6 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x57751d06 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x5781977e input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x57875c2c mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57b8e1bf pcim_pin_device -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57dcfaab unix_attach_fds -EXPORT_SYMBOL vmlinux 0x5808f8f7 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x581fc23c pci_disable_device -EXPORT_SYMBOL vmlinux 0x582a29c8 skb_append -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58457083 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x58469044 freeze_bdev -EXPORT_SYMBOL vmlinux 0x584c266a release_firmware -EXPORT_SYMBOL vmlinux 0x58595084 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL vmlinux 0x5861d7d8 pci_find_resource -EXPORT_SYMBOL vmlinux 0x586294b2 I_BDEV -EXPORT_SYMBOL vmlinux 0x5866e926 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x587caea3 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x58a8b74e security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b50fdf md_finish_reshape -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d88fb1 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ea9a73 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x58f78432 __bforget -EXPORT_SYMBOL vmlinux 0x58fd839a path_nosuid -EXPORT_SYMBOL vmlinux 0x59314076 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x59629707 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x5967c1f2 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x597887e9 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59c9f48c user_revoke -EXPORT_SYMBOL vmlinux 0x59dd104b fman_get_revision -EXPORT_SYMBOL vmlinux 0x59eb7b70 pps_register_source -EXPORT_SYMBOL vmlinux 0x5a066d37 tcf_block_put -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a209b2f mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x5a39a22e simple_statfs -EXPORT_SYMBOL vmlinux 0x5a3d9201 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4e389f netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x5a58f78b alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a660d2f account_page_redirty -EXPORT_SYMBOL vmlinux 0x5a7a6130 sock_register -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a8d3d27 bioset_init -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9284ff dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ab1d65c __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5ac1de0c pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x5acd32cb blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x5ad799f7 dev_trans_start -EXPORT_SYMBOL vmlinux 0x5ad8728d ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x5aed5ce2 nonseekable_open -EXPORT_SYMBOL vmlinux 0x5b2aaea0 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b39d4e9 current_in_userns -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b4cb2e7 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6ad266 dev_addr_add -EXPORT_SYMBOL vmlinux 0x5b6b9336 drop_nlink -EXPORT_SYMBOL vmlinux 0x5ba18845 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x5bcc75ff pci_free_irq -EXPORT_SYMBOL vmlinux 0x5bd9d95c _dev_warn -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfdce76 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x5c209568 rt6_lookup -EXPORT_SYMBOL vmlinux 0x5c3f9b94 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c5d7e39 get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0x5c6449ed nobh_write_end -EXPORT_SYMBOL vmlinux 0x5c6632db seq_path -EXPORT_SYMBOL vmlinux 0x5c77c95e __scsi_add_device -EXPORT_SYMBOL vmlinux 0x5c89dbcf fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x5cd33296 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x5ce158d1 tty_unlock -EXPORT_SYMBOL vmlinux 0x5ce890e5 pci_find_bus -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfae45a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1fee11 inet_listen -EXPORT_SYMBOL vmlinux 0x5d2c7616 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4d41ce n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x5d4f718a xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x5d5d9d85 vm_map_pages -EXPORT_SYMBOL vmlinux 0x5d696b92 km_new_mapping -EXPORT_SYMBOL vmlinux 0x5d6970fb touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x5d6d12a0 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0x5d79fdf9 seq_write -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d832555 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x5da085da blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dccba78 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x5de5d6cd pci_read_vpd -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e02509e call_fib_notifier -EXPORT_SYMBOL vmlinux 0x5e055ca8 ping_prot -EXPORT_SYMBOL vmlinux 0x5e07e62a do_clone_file_range -EXPORT_SYMBOL vmlinux 0x5e0e8176 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x5e23614e i2c_register_driver -EXPORT_SYMBOL vmlinux 0x5e2a21ef pci_enable_msi -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e51333c iptun_encaps -EXPORT_SYMBOL vmlinux 0x5e5586c5 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x5e715cb9 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eae60da tcp_ioctl -EXPORT_SYMBOL vmlinux 0x5eafea87 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec3a67f __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x5ece877b mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5ed46861 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x5ed86ca5 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5eecb167 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f291b07 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x5f415035 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x5f57033d cdev_del -EXPORT_SYMBOL vmlinux 0x5f594189 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f80d895 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5fbd0ed2 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x5fbd5ff9 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe95604 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x5ff316b2 from_kgid -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600e69e7 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x601188c0 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x6018f70e kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x601d431f xfrm_input -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602afc99 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x602f872f inet6_del_offload -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6035a963 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl -EXPORT_SYMBOL vmlinux 0x604dafd0 dev_addr_del -EXPORT_SYMBOL vmlinux 0x604fa412 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605fa129 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x606956af send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x606bb2c4 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608f0e54 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x609000ec user_path_create -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60989fac bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60af7d07 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x60b12892 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b40e92 param_get_ulong -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e89815 key_unlink -EXPORT_SYMBOL vmlinux 0x60f1c16f register_shrinker -EXPORT_SYMBOL vmlinux 0x60f5284a vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x60f94fef prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x614b6586 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6161e80a fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x61650903 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x61818bb5 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x6189c8da __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x618c067a __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61abaf7e iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c55e4e set_user_nice -EXPORT_SYMBOL vmlinux 0x61d5cd5f serio_open -EXPORT_SYMBOL vmlinux 0x61d65f02 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x61e1cb47 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x61e522e4 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f26a03 sk_wait_data -EXPORT_SYMBOL vmlinux 0x6213c8d6 scsi_device_get -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6216d2c3 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622cc3aa init_task -EXPORT_SYMBOL vmlinux 0x6265d684 ip6_xmit -EXPORT_SYMBOL vmlinux 0x6271c666 softnet_data -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62756bbf amba_request_regions -EXPORT_SYMBOL vmlinux 0x62768e4a pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x62a7c516 tty_port_close -EXPORT_SYMBOL vmlinux 0x62b112e1 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x62b6ed03 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x62b7459f dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62f73f7d __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x630d3a7d devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x630d718b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6317605c tty_throttle -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x632b39dc eth_mac_addr -EXPORT_SYMBOL vmlinux 0x634fb1a7 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x6376eb69 skb_checksum -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b1b4a4 setup_new_exec -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c8129d nmi_panic -EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x63e8ef6a new_inode -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x6411e823 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6439c326 blk_queue_split -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x64452cca unregister_netdev -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x6455b40a generic_write_checks -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649cf454 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x64a29a89 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x65136fc9 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65153284 phy_driver_register -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x653d0a2e netlink_unicast -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x65475361 param_get_int -EXPORT_SYMBOL vmlinux 0x655585d6 qdisc_put -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658f4474 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x659ef168 locks_init_lock -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dc81f1 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ecd303 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x66023d00 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x66040989 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6613b947 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662dff91 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x665f65cc security_sk_clone -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668056d4 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x6680b420 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x668192cd xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x6699c551 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b1c98b hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66d59d10 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x66e0eb76 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x66e23abb __SetPageMovable -EXPORT_SYMBOL vmlinux 0x66eef386 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x66fd9d4c d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x6706c5ac nd_device_unregister -EXPORT_SYMBOL vmlinux 0x671299e3 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x67151eed md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x671f65e3 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6768ca13 bio_copy_data -EXPORT_SYMBOL vmlinux 0x676a9699 cdev_device_add -EXPORT_SYMBOL vmlinux 0x676e168c __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x6776d154 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x6781fc56 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67af2d34 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x67b2445c input_set_capability -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67dc61a4 blk_rq_init -EXPORT_SYMBOL vmlinux 0x67eec2fe done_path_create -EXPORT_SYMBOL vmlinux 0x67f5fbb6 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x67fb3753 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x680411d9 generic_write_end -EXPORT_SYMBOL vmlinux 0x680b1e31 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x681190e1 ps2_drain -EXPORT_SYMBOL vmlinux 0x68290174 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x682ab571 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x68380326 vfs_statfs -EXPORT_SYMBOL vmlinux 0x683f5cf6 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x684480d7 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x6869fcd9 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6889fb8a kernel_getpeername -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68b38a83 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x68d0d580 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x68fd8e7d jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690f436f path_is_under -EXPORT_SYMBOL vmlinux 0x692d4ebf jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x692ffdd1 _dev_emerg -EXPORT_SYMBOL vmlinux 0x6932da4d vme_bus_num -EXPORT_SYMBOL vmlinux 0x69375d74 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x6938a1dc dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6947722e devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695b086a __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x6965f537 __block_write_begin -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696c64b2 d_lookup -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69829c1d xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69db8e10 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69f910cb inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0cad85 hmm_range_unregister -EXPORT_SYMBOL vmlinux 0x6a122329 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x6a1df310 md_integrity_register -EXPORT_SYMBOL vmlinux 0x6a270817 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a48a0f0 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x6a4d4412 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a7e9459 request_firmware -EXPORT_SYMBOL vmlinux 0x6a7f1530 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x6a99c1b9 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x6aa0915c cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aabeb8e vfs_get_tree -EXPORT_SYMBOL vmlinux 0x6ab1c13a rtc_add_group -EXPORT_SYMBOL vmlinux 0x6abecd8f xfrm_state_add -EXPORT_SYMBOL vmlinux 0x6acbb1a8 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae33c56 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x6ae5d2f1 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x6ae6b3de ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b0d137d pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x6b13b5c0 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x6b1a71dd would_dump -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2941b2 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6b2b6d5b xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2f1ae2 mount_bdev -EXPORT_SYMBOL vmlinux 0x6b2f8885 netdev_update_features -EXPORT_SYMBOL vmlinux 0x6b374130 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x6b4024b4 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x6b408553 generic_setlease -EXPORT_SYMBOL vmlinux 0x6b44adcf mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x6b4aa5dd fddi_type_trans -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b5c9559 bio_init -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b6a9ecc dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x6b74db32 from_kuid -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6bb5be7c phy_attached_info -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6be0977e simple_transaction_read -EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf87efb mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x6c05cde8 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2b96e5 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x6c33b08d locks_delete_block -EXPORT_SYMBOL vmlinux 0x6c41b0bf mark_page_accessed -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c876211 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x6c941e96 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x6ca5decf pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x6ca6e3fe nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cde29e0 km_policy_expired -EXPORT_SYMBOL vmlinux 0x6cf37a7d kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6cfd1b17 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3ac5d8 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x6d3ec134 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d73fcff __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x6d7abe02 first_ec -EXPORT_SYMBOL vmlinux 0x6dab52d2 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd4b439 datagram_poll -EXPORT_SYMBOL vmlinux 0x6dda82c3 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion -EXPORT_SYMBOL vmlinux 0x6de48d7a pci_request_irq -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e003cb3 fc_mount -EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x6e2363e6 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x6e2a526e dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x6e568ce7 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e6dc353 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e77e654 inode_set_flags -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6e9e5a3c jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x6ea2f2b2 clear_inode -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb040a3 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x6ec49bdf __frontswap_load -EXPORT_SYMBOL vmlinux 0x6ec652b9 of_device_unregister -EXPORT_SYMBOL vmlinux 0x6ec72c86 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x6ecb48ea tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6ee968f2 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x6f052696 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x6f068d07 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x6f0f9ff3 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x6f10415b __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x6f13cd9d file_update_time -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f23af87 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x6f30f5bc from_kgid_munged -EXPORT_SYMBOL vmlinux 0x6f3c6abb phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f454934 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x6f510dac rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x6f55bc29 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f6f7ee0 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x6f77ac80 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f79de6c eth_change_mtu -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa32480 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd37f5e copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x6fd572fc alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6ff521af pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x6ffa69d3 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7008f60f ___pskb_trim -EXPORT_SYMBOL vmlinux 0x701bb591 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x701bd2e5 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702c3a1f fman_reset_mac -EXPORT_SYMBOL vmlinux 0x704ad56d no_llseek -EXPORT_SYMBOL vmlinux 0x704bd797 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x708748bb pci_release_resource -EXPORT_SYMBOL vmlinux 0x70899e80 cad_pid -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x70942848 block_commit_write -EXPORT_SYMBOL vmlinux 0x70ab3a24 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70bb9a82 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x70c62d7e component_match_add_release -EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x711a3fee kobject_add -EXPORT_SYMBOL vmlinux 0x711eee07 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x7124fc54 pci_set_master -EXPORT_SYMBOL vmlinux 0x71293c5e i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7137970e of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x715beec6 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71876e98 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x718ecedc pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x71924c09 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x719a02ec mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x719d5f80 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b3cc24 pci_choose_state -EXPORT_SYMBOL vmlinux 0x71c0559e generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x71c77995 dev_add_pack -EXPORT_SYMBOL vmlinux 0x71c94f6d netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x71cabe20 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x71e49d83 config_item_put -EXPORT_SYMBOL vmlinux 0x71eacdaa security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x71f40b7f search_binary_handler -EXPORT_SYMBOL vmlinux 0x7202a0f8 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x72094732 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x721275f5 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x7243bc2b netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7254c19d unlock_buffer -EXPORT_SYMBOL vmlinux 0x725ab09d rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x725caafe __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7266e662 udp_set_csum -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x727fbb1d mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c4b71b dm_get_device -EXPORT_SYMBOL vmlinux 0x72c57be9 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73055917 devfreq_suspend_device -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 0x731ee47e tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve -EXPORT_SYMBOL vmlinux 0x7354b118 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x7358dda1 free_task -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7372da45 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73847187 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x73847bf2 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x739ff58f netif_device_detach -EXPORT_SYMBOL vmlinux 0x73b35e00 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x73d1f6e3 phy_device_create -EXPORT_SYMBOL vmlinux 0x73df6efe netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74112e4a _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0x74129b3f __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7413dd1c proc_create -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7429bb89 stream_open -EXPORT_SYMBOL vmlinux 0x7435e2b4 send_sig_info -EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x7442b199 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x746acb1a msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7475c825 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x74847d48 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x74864dde set_binfmt -EXPORT_SYMBOL vmlinux 0x74aa5e10 km_state_expired -EXPORT_SYMBOL vmlinux 0x74bc7557 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ce6591 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x74cee1a0 __sock_create -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74fb80de input_event -EXPORT_SYMBOL vmlinux 0x750170d3 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x751dcdac __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x75298b80 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x754e99e8 phy_init_hw -EXPORT_SYMBOL vmlinux 0x757341dc skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75900071 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x759018ad backlight_force_update -EXPORT_SYMBOL vmlinux 0x75af7edf mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x75b4a1ca block_write_full_page -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c634ad dma_resv_init -EXPORT_SYMBOL vmlinux 0x75ccde3a ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d8548d pci_select_bars -EXPORT_SYMBOL vmlinux 0x75e4daa5 vm_insert_page -EXPORT_SYMBOL vmlinux 0x75e60613 key_put -EXPORT_SYMBOL vmlinux 0x75ff8a01 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x76064f6d __ip_options_compile -EXPORT_SYMBOL vmlinux 0x76092644 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76139c20 get_phy_device -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76380d23 dquot_enable -EXPORT_SYMBOL vmlinux 0x763af22f dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x7643fc19 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76625419 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x766527fb tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76806955 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x7684c881 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x768b3f5e devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x7691d8da pci_restore_state -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a8c4da __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x76b89a47 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x76d36255 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76dac2a3 nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0x76df66f4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x76febf5b i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7701c6e8 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x770e24cd __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x772499e7 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x7730bde8 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77370b11 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x773a2fb3 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x773d1a8b cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x773ff40e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77525006 bioset_exit -EXPORT_SYMBOL vmlinux 0x77736d0b dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x7776cbfd meson_sm_call_read -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779c7903 nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f4a20f md_write_start -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7811fc19 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x78195f2c of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x7836a15a __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789d43b4 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78bb3f3b phy_stop -EXPORT_SYMBOL vmlinux 0x78bde98f pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x78dca6a0 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ec103c md_register_thread -EXPORT_SYMBOL vmlinux 0x78f7af02 set_create_files_as -EXPORT_SYMBOL vmlinux 0x7915e4be pnp_possible_config -EXPORT_SYMBOL vmlinux 0x79354247 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x794cf129 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x795738a7 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x79628f61 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798ec3b4 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x7998ac59 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x79a2cc73 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a574d5 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79bad1a0 twl6040_power -EXPORT_SYMBOL vmlinux 0x79be74ac mmc_start_request -EXPORT_SYMBOL vmlinux 0x79c29047 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x79ce60d5 param_ops_int -EXPORT_SYMBOL vmlinux 0x79ffc708 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x7a027b29 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a15634b filemap_fault -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a28c027 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a382635 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x7a3c8ff0 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x7a3e0b1b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a5a0fc8 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x7a5fbd2b __put_page -EXPORT_SYMBOL vmlinux 0x7a72a68d dma_dummy_ops -EXPORT_SYMBOL vmlinux 0x7a7396de tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x7a7bef78 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a97b139 dcb_setapp -EXPORT_SYMBOL vmlinux 0x7a9a2182 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a9cf031 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac17533 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae7183a blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b124b36 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x7b259c6e page_pool_destroy -EXPORT_SYMBOL vmlinux 0x7b2e3313 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x7b4d5893 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b541a01 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x7b6431af dma_virt_ops -EXPORT_SYMBOL vmlinux 0x7b6a89b2 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x7b77a2af ps2_init -EXPORT_SYMBOL vmlinux 0x7b7c7d44 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b82f5e5 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x7b987429 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x7bae7968 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc2f2d2 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x7bc4154b scsi_register_interface -EXPORT_SYMBOL vmlinux 0x7bc50bed textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x7bc9c0e4 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x7be8e781 clk_add_alias -EXPORT_SYMBOL vmlinux 0x7c06c2dd kernel_read -EXPORT_SYMBOL vmlinux 0x7c164be7 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c266b9f get_fs_type -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4f4c5c pcie_get_mps -EXPORT_SYMBOL vmlinux 0x7c4f5f1f pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x7c53ba2a nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x7c67309f input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x7c77a8ee vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7c7d2cd8 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x7c8328dd dev_get_stats -EXPORT_SYMBOL vmlinux 0x7c921e3f pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca6f41b get_super_thawed -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc48b14 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x7cc57ab8 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x7cdd6bbe reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfc3d0a page_symlink -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d012920 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x7d048c32 fscrypt_free_bounce_page -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 0x7d165e59 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x7d3204a8 consume_skb -EXPORT_SYMBOL vmlinux 0x7d3e4924 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d51f10b dget_parent -EXPORT_SYMBOL vmlinux 0x7d583f1c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x7d588f00 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6b82c3 of_get_next_child -EXPORT_SYMBOL vmlinux 0x7d7150b2 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x7d7504e7 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x7d7b600e netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db51bf5 proc_set_size -EXPORT_SYMBOL vmlinux 0x7dba1aa2 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x7dbda2eb pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x7dbf5017 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7dc0519e dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x7dc4dfb4 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x7dd19443 should_remove_suid -EXPORT_SYMBOL vmlinux 0x7dd5e73b brioctl_set -EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission -EXPORT_SYMBOL vmlinux 0x7de20a40 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x7de3f84c security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x7de79263 pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7e15d27d sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7e1e7d0c xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x7e2de23c scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e36cf5e of_dev_get -EXPORT_SYMBOL vmlinux 0x7e422c65 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x7e5b9d33 param_set_uint -EXPORT_SYMBOL vmlinux 0x7e685d18 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x7e76cf65 param_set_copystring -EXPORT_SYMBOL vmlinux 0x7e779fce phy_init_eee -EXPORT_SYMBOL vmlinux 0x7e82686b tso_build_hdr -EXPORT_SYMBOL vmlinux 0x7ec355e4 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock -EXPORT_SYMBOL vmlinux 0x7ef9e623 key_type_keyring -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2560bb t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x7f37e6b9 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x7f38e9bf unregister_qdisc -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5b8572 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x7f5e4a6a get_task_cred -EXPORT_SYMBOL vmlinux 0x7f64dd1c configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f84323c i2c_transfer -EXPORT_SYMBOL vmlinux 0x7f86801d ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x7f9a02b0 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x7fb3c7e8 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x7fc7a260 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x7fcf3009 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x7fd8fe10 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7febe885 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x802f62b2 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x803a3f71 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x804175dd device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0x806c0c5d page_readlink -EXPORT_SYMBOL vmlinux 0x80718abe napi_disable -EXPORT_SYMBOL vmlinux 0x808a62f2 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x809245bf netif_skb_features -EXPORT_SYMBOL vmlinux 0x8094f0c5 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80aa23a0 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x80bd707e sock_alloc_file -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d66a08 phy_connect -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80ebfc1c udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8118b16e pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x8131a5dd mpage_readpage -EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit -EXPORT_SYMBOL vmlinux 0x814e565f pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x814e959e udp_seq_ops -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815e3a4a mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x8166eaaa pci_disable_msix -EXPORT_SYMBOL vmlinux 0x816cedec skb_copy_header -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x81a81a76 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible -EXPORT_SYMBOL vmlinux 0x81d0b2fe pnp_register_driver -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81ee1025 zap_page_range -EXPORT_SYMBOL vmlinux 0x820304fa write_inode_now -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x820bc4a8 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x82112643 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x82141ca7 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0x8219f6c6 vfs_get_super -EXPORT_SYMBOL vmlinux 0x8221dfbb fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x8230ae1f tty_register_driver -EXPORT_SYMBOL vmlinux 0x82326dd3 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x823d9f19 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x823f81b9 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x824a80e6 __f_setown -EXPORT_SYMBOL vmlinux 0x824eedc4 param_set_charp -EXPORT_SYMBOL vmlinux 0x8260baea __scm_send -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups -EXPORT_SYMBOL vmlinux 0x82c26af0 input_setup_polling -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x82d7d9d2 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x82dff142 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x82fb05d7 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x8304b7f8 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x83456883 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x834640d8 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x83480804 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x8348b04b splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x836f5ca9 set_wb_congested -EXPORT_SYMBOL vmlinux 0x8375139b genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x8375399d dev_load -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8382ee33 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838f9801 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83db85fd flush_dcache_page -EXPORT_SYMBOL vmlinux 0x83f66b48 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84075f01 pci_save_state -EXPORT_SYMBOL vmlinux 0x840ae6ef tty_register_device -EXPORT_SYMBOL vmlinux 0x8413caee phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x841b8e37 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x8428f483 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x84293be2 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x84299732 neigh_update -EXPORT_SYMBOL vmlinux 0x844362b9 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x84461df1 amba_device_register -EXPORT_SYMBOL vmlinux 0x845a8425 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x845b4fce get_cached_acl -EXPORT_SYMBOL vmlinux 0x84659d1c __brelse -EXPORT_SYMBOL vmlinux 0x847347ee rt_dst_clone -EXPORT_SYMBOL vmlinux 0x847439c5 file_path -EXPORT_SYMBOL vmlinux 0x84bfe583 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x84c1271f init_pseudo -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c988f2 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x84d27590 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x84f63cf3 dma_find_channel -EXPORT_SYMBOL vmlinux 0x850d010c load_nls -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x851db0d1 fasync_helper -EXPORT_SYMBOL vmlinux 0x8522b92e inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x852c1157 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x85400f22 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x8548f4b8 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x8550d322 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x85534b95 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x8556d927 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8567e630 get_tz_trend -EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85be0a42 eth_type_trans -EXPORT_SYMBOL vmlinux 0x85be8b68 get_tree_single -EXPORT_SYMBOL vmlinux 0x85c525eb devm_memunmap -EXPORT_SYMBOL vmlinux 0x85c5ce7f xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x85d29d77 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x85d8dcca sock_recvmsg -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e155f4 con_is_visible -EXPORT_SYMBOL vmlinux 0x85e196d0 seq_file_path -EXPORT_SYMBOL vmlinux 0x85ece3cf block_write_end -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x85ffa9fa of_get_mac_address -EXPORT_SYMBOL vmlinux 0x8605c234 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x860d1d96 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x8615af68 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x862586d9 phy_start -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863ea1b4 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x864c55cb neigh_direct_output -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x8654780e netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x8670984c seq_puts -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868bc97b locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x86ab967e poll_initwait -EXPORT_SYMBOL vmlinux 0x86b27e61 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x86b5173b rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x86c75979 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x86d69b0a pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant -EXPORT_SYMBOL vmlinux 0x872a4ccd fb_blank -EXPORT_SYMBOL vmlinux 0x873d3114 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x8752ad16 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x875c117f dev_mc_init -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87692711 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x8780e093 of_device_alloc -EXPORT_SYMBOL vmlinux 0x87822cba build_skb -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87be6ca9 __register_binfmt -EXPORT_SYMBOL vmlinux 0x87ccfce8 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x87eda7ff alloc_pages_current -EXPORT_SYMBOL vmlinux 0x87f0b2d0 add_to_pipe -EXPORT_SYMBOL vmlinux 0x88010027 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x8818fc2b __scm_destroy -EXPORT_SYMBOL vmlinux 0x881b5cb9 inet_ioctl -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x883664e3 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x8852629d __bread_gfp -EXPORT_SYMBOL vmlinux 0x886289cf bio_chain -EXPORT_SYMBOL vmlinux 0x886975f0 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x886a9708 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x887549f9 xattr_full_name -EXPORT_SYMBOL vmlinux 0x8880b35f iget5_locked -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88966d73 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x889ac9af scsi_init_io -EXPORT_SYMBOL vmlinux 0x88a51c71 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e84b84 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x88fc9293 cdev_device_del -EXPORT_SYMBOL vmlinux 0x8901aa12 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x890448e3 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x89105ddc qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x891ecf40 dev_addr_init -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894be463 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x894ed320 override_creds -EXPORT_SYMBOL vmlinux 0x895b1e6f devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x896afd82 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x89718cd9 sock_alloc -EXPORT_SYMBOL vmlinux 0x897b8a74 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x89869268 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x899fe73b security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89beb6fc writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x89d4b59f gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x89e05748 sync_blockdev -EXPORT_SYMBOL vmlinux 0x8a1390b8 inet_accept -EXPORT_SYMBOL vmlinux 0x8a1a287d dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a25b055 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a507f06 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a74c938 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x8a77b558 keyring_clear -EXPORT_SYMBOL vmlinux 0x8a7c88e8 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab2b28d netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8afb9e44 fput -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b050ebb __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x8b0c6a2c generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b3dc44d genphy_loopback -EXPORT_SYMBOL vmlinux 0x8b3dfad6 md_check_recovery -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b65731b irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x8b720840 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8c22dc scsi_remove_host -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ae936 pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba64a41 dev_mc_add -EXPORT_SYMBOL vmlinux 0x8ba69aab dcache_dir_open -EXPORT_SYMBOL vmlinux 0x8bb50abb security_unix_may_send -EXPORT_SYMBOL vmlinux 0x8bbee595 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x8beacb38 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x8beed4fd skb_trim -EXPORT_SYMBOL vmlinux 0x8c06c67b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c364d6c __module_get -EXPORT_SYMBOL vmlinux 0x8c3efa58 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x8c421980 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x8c65a03c padata_stop -EXPORT_SYMBOL vmlinux 0x8c84a314 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8cb206bd dquot_alloc -EXPORT_SYMBOL vmlinux 0x8cb4a65b ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x8cbdc8b4 bdget_disk -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8d1052c6 mii_link_ok -EXPORT_SYMBOL vmlinux 0x8d1b0338 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x8d21e515 blk_get_request -EXPORT_SYMBOL vmlinux 0x8d3d6bd1 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d900d9a lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da31ceb vfs_llseek -EXPORT_SYMBOL vmlinux 0x8dc08f24 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dde13c5 mntput -EXPORT_SYMBOL vmlinux 0x8deb069d dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x8deb770e dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x8ded5f78 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfdf56a sdei_event_disable -EXPORT_SYMBOL vmlinux 0x8e027c4a deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x8e03b860 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds -EXPORT_SYMBOL vmlinux 0x8e657437 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x8e906d35 genphy_resume -EXPORT_SYMBOL vmlinux 0x8e9d4851 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x8eab5cbf md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x8eaca046 inet_shutdown -EXPORT_SYMBOL vmlinux 0x8eb13c70 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f1fc8d8 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x8f38f455 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x8f47a556 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x8f59a7e6 sock_create -EXPORT_SYMBOL vmlinux 0x8f63606a udp_sendmsg -EXPORT_SYMBOL vmlinux 0x8f740286 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9f8b48 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fda6a7f __next_node_in -EXPORT_SYMBOL vmlinux 0x8fdfbbe8 rtnl_notify -EXPORT_SYMBOL vmlinux 0x8fe05583 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x8ff80dcb config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90073c48 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x9012e395 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x902b7e63 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x90443e3c param_get_charp -EXPORT_SYMBOL vmlinux 0x9055b6b6 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9061ad4a dev_uc_sync -EXPORT_SYMBOL vmlinux 0x906e5df4 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x906f0766 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x9081b9e2 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x90a9b772 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x90b052ca tty_kref_put -EXPORT_SYMBOL vmlinux 0x90b9ea39 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x90bf4406 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x9102030e mdio_device_free -EXPORT_SYMBOL vmlinux 0x912e2380 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x913229ba truncate_pagecache -EXPORT_SYMBOL vmlinux 0x9139ecf1 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x913a0036 kobject_set_name -EXPORT_SYMBOL vmlinux 0x91615c81 dev_close -EXPORT_SYMBOL vmlinux 0x9163813b skb_dump -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91894f38 get_gendisk -EXPORT_SYMBOL vmlinux 0x918f5f81 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x9193ab43 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x919a9ff9 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b8fe2a scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x91c67240 empty_aops -EXPORT_SYMBOL vmlinux 0x91cc111e __getblk_gfp -EXPORT_SYMBOL vmlinux 0x91e11fc1 km_query -EXPORT_SYMBOL vmlinux 0x91ea6c2f drop_super -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x920cd20d padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x92213708 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923d7033 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x924d6868 md_error -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92678f2e dev_uc_flush -EXPORT_SYMBOL vmlinux 0x92834e95 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929656e1 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x9298fd8c redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x929fae88 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x92b988e7 seq_release_private -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bea566 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x92d9e13b xfrm_state_free -EXPORT_SYMBOL vmlinux 0x92de1ae1 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x92e80e8d sock_edemux -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9316a10d neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x931d32d6 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x93368169 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x933d14ea filemap_check_errors -EXPORT_SYMBOL vmlinux 0x93550fd8 write_one_page -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937967ce read_dev_sector -EXPORT_SYMBOL vmlinux 0x938800a4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x93959c0e skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d51347 phy_suspend -EXPORT_SYMBOL vmlinux 0x93df0d9a seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x93f39e25 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x93f3d44a scsi_target_resume -EXPORT_SYMBOL vmlinux 0x94191c85 iput -EXPORT_SYMBOL vmlinux 0x941f8cd8 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x9421aec3 security_path_unlink -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944cec17 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x9462ba41 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x946656cf mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x947ccdc2 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x9481242d udp_ioctl -EXPORT_SYMBOL vmlinux 0x94830563 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949cfa4b elv_rb_add -EXPORT_SYMBOL vmlinux 0x94a8a680 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bc52af posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94cb88a4 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x94f95646 sync_filesystem -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x94fecbfb capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x94ff8050 rpmh_flush -EXPORT_SYMBOL vmlinux 0x950d2122 dquot_initialize -EXPORT_SYMBOL vmlinux 0x951ea537 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x953d5b69 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954c60c5 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x9592da83 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95a77708 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x95a9d722 page_mapped -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95ebafcb pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x95efb7e7 phy_write_paged -EXPORT_SYMBOL vmlinux 0x95fd58f4 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x95ff3697 dma_set_mask -EXPORT_SYMBOL vmlinux 0x960be71c netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x9625e37c inc_node_page_state -EXPORT_SYMBOL vmlinux 0x962ee579 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9634deb1 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x9636cbe0 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x964a68da pci_disable_msi -EXPORT_SYMBOL vmlinux 0x9661a77b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x967f0234 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x968207c5 simple_fill_super -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x969d8014 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x96a33960 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b98677 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x96c114cf show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96de41bc i2c_clients_command -EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x970646b2 dev_set_alias -EXPORT_SYMBOL vmlinux 0x972128c7 da903x_query_status -EXPORT_SYMBOL vmlinux 0x973c19ee d_obtain_root -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97628d2b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x97638c7c scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x977cd23c __sk_dst_check -EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979aa291 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b7fc00 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c5f86f rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x97c97f3f mfd_add_devices -EXPORT_SYMBOL vmlinux 0x97d68392 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x97e4411f kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x97f81731 padata_do_serial -EXPORT_SYMBOL vmlinux 0x97f97f77 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x97fa2929 input_grab_device -EXPORT_SYMBOL vmlinux 0x981be892 set_security_override -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98467a55 tty_port_put -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x984d350f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x98695297 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x9875a6f0 get_user_pages -EXPORT_SYMBOL vmlinux 0x98a7f0e1 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x98a82d9a tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x98b94309 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x98bd5d04 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cd623d freeze_super -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98e0b785 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e60c40 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x98eb9ac6 tcp_req_err -EXPORT_SYMBOL vmlinux 0x98ed6678 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x98fe5df5 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x99211dd5 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x9929fd0f hmm_range_register -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994143be csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9944ad53 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9962e074 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997f70f4 get_super -EXPORT_SYMBOL vmlinux 0x997f9712 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x998acd8e writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99ab0dd5 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x99b7e58b phy_print_status -EXPORT_SYMBOL vmlinux 0x99d464d4 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d554fb misc_register -EXPORT_SYMBOL vmlinux 0x99d93bf3 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x99dfed54 tcp_prot -EXPORT_SYMBOL vmlinux 0x99f39096 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x99fc4228 sock_rfree -EXPORT_SYMBOL vmlinux 0x99fd3af5 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f6877 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a25420a compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x9a301232 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x9a35f4ec blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7a634b console_stop -EXPORT_SYMBOL vmlinux 0x9a7ce21d iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x9a824846 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9a8c10f1 tty_port_init -EXPORT_SYMBOL vmlinux 0x9a94baf4 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9a9b0619 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x9aa4bba5 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9aaeed03 elevator_alloc -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab33289 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x9abfdd74 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9ac7bc43 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x9ad641cc mmc_release_host -EXPORT_SYMBOL vmlinux 0x9ad8c650 simple_lookup -EXPORT_SYMBOL vmlinux 0x9adbe0e9 tcf_block_get -EXPORT_SYMBOL vmlinux 0x9aef4b61 registered_fb -EXPORT_SYMBOL vmlinux 0x9afbf9cc devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b186b46 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x9b219911 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b487311 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b59cd16 input_allocate_device -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b811f68 get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x9bae389b dquot_get_state -EXPORT_SYMBOL vmlinux 0x9bda32de generic_file_open -EXPORT_SYMBOL vmlinux 0x9bdda706 seq_pad -EXPORT_SYMBOL vmlinux 0x9be28117 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x9bf660b3 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x9c092313 dma_pool_create -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c172f79 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x9c1bd4ca poll_freewait -EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke -EXPORT_SYMBOL vmlinux 0x9c3f6aef iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x9c431424 qdisc_reset -EXPORT_SYMBOL vmlinux 0x9c5331ce d_delete -EXPORT_SYMBOL vmlinux 0x9c690b26 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x9c7f3d92 param_ops_bool -EXPORT_SYMBOL vmlinux 0x9c86093e md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit -EXPORT_SYMBOL vmlinux 0x9c9dbdef end_page_writeback -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cae9b3d rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cfc5b10 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x9d0665ce __pci_register_driver -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d155457 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d220676 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x9d320232 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x9d3a9019 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x9d43b9f7 register_netdevice -EXPORT_SYMBOL vmlinux 0x9d59bf0f devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x9d5b55f7 inet6_release -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d7d16a7 input_register_handle -EXPORT_SYMBOL vmlinux 0x9d8c396a lock_sock_fast -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9db719a5 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dcefdb2 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x9ded3e88 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df2b317 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x9e065f92 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e12382a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e372ad2 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e557960 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x9e57b4af phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x9e5a8db3 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e7c5dfa blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e85dfa6 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eae4dea pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x9ebee9fe tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x9ec0b2e7 param_set_ushort -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec285a9 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecd9230 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee48c86 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x9eedaf34 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x9ef1546c mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x9efda955 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x9f29c57b backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x9f2d9a4e cdrom_open -EXPORT_SYMBOL vmlinux 0x9f3461eb _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x9f420b33 tcp_mmap -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 0x9f5aec0a setup_arg_pages -EXPORT_SYMBOL vmlinux 0x9f6cc69d kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x9f79e99e of_get_pci_address -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa660bb kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9faf903b kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fbd76f9 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x9fc55e2d nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9fcbc204 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x9fd06be2 md_handle_request -EXPORT_SYMBOL vmlinux 0x9fd22dc6 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x9fd958eb skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe00da8 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffaf4aa __alloc_skb -EXPORT_SYMBOL vmlinux 0xa001dbea scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01ef213 dev_driver_string -EXPORT_SYMBOL vmlinux 0xa01f2b34 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa03af161 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa068608e sock_no_getname -EXPORT_SYMBOL vmlinux 0xa06e8749 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa0815dc3 amba_driver_register -EXPORT_SYMBOL vmlinux 0xa0840f96 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa09228d6 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xa09ea1d8 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xa0ab5bd9 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa0ac6857 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c5a8da filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0xa0c9ba67 check_disk_change -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 0xa0f493d9 efi -EXPORT_SYMBOL vmlinux 0xa0f9c2a1 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fcd48b cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1195865 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa15dda4a tcp_check_req -EXPORT_SYMBOL vmlinux 0xa167eaa5 sg_miter_next -EXPORT_SYMBOL vmlinux 0xa16829c4 inet6_protos -EXPORT_SYMBOL vmlinux 0xa16a01d8 import_iovec -EXPORT_SYMBOL vmlinux 0xa192a122 _dev_crit -EXPORT_SYMBOL vmlinux 0xa1b63e6f devm_free_irq -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e8f03b pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xa1f9c0a5 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa218c511 logfc -EXPORT_SYMBOL vmlinux 0xa225be21 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xa22ffbac icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa2340f98 input_free_device -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa272335c devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xa276cdcf input_inject_event -EXPORT_SYMBOL vmlinux 0xa276f8c2 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xa27df3e2 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29c85da security_path_rename -EXPORT_SYMBOL vmlinux 0xa29da053 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xa2a7a5c2 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xa2be7e04 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xa2ef4546 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xa2ffc763 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xa3083041 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0xa3114c80 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xa3135431 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xa326b929 filp_open -EXPORT_SYMBOL vmlinux 0xa33153af dma_async_device_register -EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xa33cd11e pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xa348c2e0 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xa355a0ce igrab -EXPORT_SYMBOL vmlinux 0xa35901f1 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xa35f9031 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xa3696a3c netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xa388350c d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa38ca175 rio_query_mport -EXPORT_SYMBOL vmlinux 0xa395a71c vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xa3ac0e96 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xa3c887dd inet_sendpage -EXPORT_SYMBOL vmlinux 0xa3cb49c1 phy_attach -EXPORT_SYMBOL vmlinux 0xa3cf0a68 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xa3d08128 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xa3ed790d pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xa3f231ce neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa40a1bb1 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4160833 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa417424f serio_reconnect -EXPORT_SYMBOL vmlinux 0xa42ef02e param_set_int -EXPORT_SYMBOL vmlinux 0xa43474cd phy_find_first -EXPORT_SYMBOL vmlinux 0xa434e3d4 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xa445f36c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xa4549a54 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xa461e67a rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xa479f34f dquot_free_inode -EXPORT_SYMBOL vmlinux 0xa4a80dd5 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xa4c6c054 iterate_dir -EXPORT_SYMBOL vmlinux 0xa4df3239 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xa4ea1a16 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xa4f3b84b bdgrab -EXPORT_SYMBOL vmlinux 0xa4ff09bf mmc_retune_release -EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xa5101f29 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa51570f1 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5520173 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56ea222 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa597aa58 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xa597fe69 release_pages -EXPORT_SYMBOL vmlinux 0xa5a65d85 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5bc1a09 scsi_host_get -EXPORT_SYMBOL vmlinux 0xa5d47f23 udplite_prot -EXPORT_SYMBOL vmlinux 0xa5d6c067 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa60138c5 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0xa612357f blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa626fd52 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa62c2d8c register_quota_format -EXPORT_SYMBOL vmlinux 0xa64ecddc _copy_from_iter -EXPORT_SYMBOL vmlinux 0xa66a7c51 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68d0740 md_write_end -EXPORT_SYMBOL vmlinux 0xa68d68a0 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa6a07b31 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xa6d66b0f mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xa6f656a9 mmc_erase -EXPORT_SYMBOL vmlinux 0xa6f8e19f mdiobus_read -EXPORT_SYMBOL vmlinux 0xa6fe5595 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xa70effc3 read_cache_page -EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71cb6f9 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0xa73a67c0 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xa74090e3 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7588ea0 dump_emit -EXPORT_SYMBOL vmlinux 0xa7789e11 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77c3958 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa7a60423 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xa7a9a0b3 pnp_get_resource -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fc454d put_disk_and_module -EXPORT_SYMBOL vmlinux 0xa7fce11b tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xa80529c4 sock_efree -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa83a9ba2 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa846929f tcp_read_sock -EXPORT_SYMBOL vmlinux 0xa84b7370 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa85549c7 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa8600288 make_kgid -EXPORT_SYMBOL vmlinux 0xa860c461 sock_no_listen -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa884084b vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa89fd079 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a94634 make_kuid -EXPORT_SYMBOL vmlinux 0xa8c0af31 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d95f84 input_set_keycode -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f3fe87 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa90393cd inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa94f426a may_umount_tree -EXPORT_SYMBOL vmlinux 0xa9609284 __register_nls -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96b41e2 bio_add_page -EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9ccc13a rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa9d34e2b pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xa9dc5bf7 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0fd453 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xaa10f6f7 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xaa2c682e nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa3d905f meson_sm_call -EXPORT_SYMBOL vmlinux 0xaa3e6a1e sockfd_lookup -EXPORT_SYMBOL vmlinux 0xaa4362af free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xaa4a99a2 param_set_byte -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8655cd blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xaa86d9c9 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xaa93f334 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xaab16eff debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xaab80fd6 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xaac11c2c get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xaacd7442 skb_ext_add -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 0xaae36a4c skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf9e17d __napi_schedule -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab05518b fs_bio_set -EXPORT_SYMBOL vmlinux 0xab0f2846 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xab2d7265 d_exact_alias -EXPORT_SYMBOL vmlinux 0xab2f0de6 rproc_alloc -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4f2db7 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xab55f322 ilookup5 -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0xabb4054d vif_device_init -EXPORT_SYMBOL vmlinux 0xabc6dad7 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabd7e63e pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xabea5c6f input_reset_device -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabff7b19 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1abbab bio_put -EXPORT_SYMBOL vmlinux 0xac2357a9 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xac28f7ee forget_cached_acl -EXPORT_SYMBOL vmlinux 0xac2f523a xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac3bc915 vfs_create -EXPORT_SYMBOL vmlinux 0xac3d7a53 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xac48d347 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5a6ee2 param_get_bool -EXPORT_SYMBOL vmlinux 0xac5b46df kern_path_create -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac66a2b7 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xac7b3e76 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xac94f6eb flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacaf0d2a pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xacc1ff0d qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xacd10d06 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xacd666b7 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfd4d54 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad07d656 ata_print_version -EXPORT_SYMBOL vmlinux 0xad245e4b is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xad28a113 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0xad28d62e lock_rename -EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad57f169 param_set_bint -EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad75e604 inet_select_addr -EXPORT_SYMBOL vmlinux 0xad7e39aa tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xada222af dquot_transfer -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada74fc4 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xadaf09a9 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xadb7a0d7 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc64c7d call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadda25a5 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae0679be dev_mc_flush -EXPORT_SYMBOL vmlinux 0xae079ab4 config_group_find_item -EXPORT_SYMBOL vmlinux 0xae1d436e acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xae260b16 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3322ab dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xae381b03 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xae4788d5 set_device_ro -EXPORT_SYMBOL vmlinux 0xae547771 vme_dma_request -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae7167c6 netdev_crit -EXPORT_SYMBOL vmlinux 0xae742bb5 qman_enqueue -EXPORT_SYMBOL vmlinux 0xae75f72b acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xae7a4799 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xae7efd90 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xae8b933d security_path_mkdir -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec7b82e pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xaed5b090 do_SAK -EXPORT_SYMBOL vmlinux 0xaee32dc9 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xaf047e81 dev_uc_del -EXPORT_SYMBOL vmlinux 0xaf104b44 md_reload_sb -EXPORT_SYMBOL vmlinux 0xaf23d23a of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xaf245b4d hmm_mirror_register -EXPORT_SYMBOL vmlinux 0xaf24f6c8 fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0xaf2a4782 file_ns_capable -EXPORT_SYMBOL vmlinux 0xaf355770 inet_del_offload -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf463165 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xaf4b4659 put_user_pages -EXPORT_SYMBOL vmlinux 0xaf507de1 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf73c3f7 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xaf7b57fa __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xaf835e93 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xaf9dd720 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafaef3d3 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xafc990ac pci_request_regions -EXPORT_SYMBOL vmlinux 0xafccc7e1 filemap_flush -EXPORT_SYMBOL vmlinux 0xafd1a4ac free_netdev -EXPORT_SYMBOL vmlinux 0xb00d38fd nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0240818 input_unregister_device -EXPORT_SYMBOL vmlinux 0xb0448582 proc_remove -EXPORT_SYMBOL vmlinux 0xb04f4e0f ip_options_compile -EXPORT_SYMBOL vmlinux 0xb053829a i2c_verify_client -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0d6ac78 eth_header_cache -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fa5c68 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb113c0f7 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb11d2398 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb1292707 sg_miter_start -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb130e9a8 scsi_device_resume -EXPORT_SYMBOL vmlinux 0xb149ec29 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xb15d3f6e rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xb15d705f mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xb162bb4e ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xb165c9bc file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb1991ad8 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xb1b22c8e vme_lm_request -EXPORT_SYMBOL vmlinux 0xb1c09b46 of_device_is_compatible -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 0xb1e12d81 krealloc -EXPORT_SYMBOL vmlinux 0xb20a0fcd xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb24c3230 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xb26dcfef rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xb2763b86 simple_write_end -EXPORT_SYMBOL vmlinux 0xb2826a39 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xb2838646 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xb28e5e34 kobject_del -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb29b0953 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2ca0935 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2eb8458 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3275fd1 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xb3336237 dcache_readdir -EXPORT_SYMBOL vmlinux 0xb367d723 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37f6608 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xb395db71 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xb3b4312c udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb3c4ce6b devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xb3c78f9f fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4ca81 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xb3e73eb8 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f8e1e4 vfs_getattr -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb405ddfc __ps2_command -EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb422f58a d_add_ci -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb437b52b rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xb43f38e5 udp_seq_start -EXPORT_SYMBOL vmlinux 0xb455a6e1 pci_get_class -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49b1127 sk_common_release -EXPORT_SYMBOL vmlinux 0xb49e4ebd inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4c55d9a page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0xb4d23cca genphy_update_link -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4fcaea2 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xb5112dbd genphy_read_status -EXPORT_SYMBOL vmlinux 0xb511ddd5 devm_clk_put -EXPORT_SYMBOL vmlinux 0xb5175b21 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb51b0ad0 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xb521c602 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5457432 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xb5460dfa serio_close -EXPORT_SYMBOL vmlinux 0xb54684df tso_count_descs -EXPORT_SYMBOL vmlinux 0xb54e0418 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xb55a2cf5 d_path -EXPORT_SYMBOL vmlinux 0xb55ba0f0 netdev_features_change -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ade6d7 padata_free -EXPORT_SYMBOL vmlinux 0xb5b6b778 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xb5bae4d0 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xb5c41764 __d_drop -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5e8d482 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xb613b889 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xb61d8855 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xb624b76b tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xb628fcc3 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb62fc21c tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb64cce09 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb668fbf2 mmc_request_done -EXPORT_SYMBOL vmlinux 0xb66f3649 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xb676cd0b qman_create_fq -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67880c3 netdev_notice -EXPORT_SYMBOL vmlinux 0xb67a1622 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67d1da0 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb688141c dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69ee5ef qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xb69f6636 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xb69fd4b2 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6cd722f adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xb7028d0a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xb7081377 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb717100f devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xb71ca182 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xb725e38a mmc_can_trim -EXPORT_SYMBOL vmlinux 0xb7299ce4 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb739e583 path_get -EXPORT_SYMBOL vmlinux 0xb745262e compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xb746a70f md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xb76153bc __neigh_create -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7aa1153 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xb7bdc322 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ce9e0f scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xb7d80a72 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xb7dab47c dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb804e886 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xb806e337 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xb81907cf max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb8303638 simple_link -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb84c8259 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb86dabb9 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xb87102ee pnp_device_attach -EXPORT_SYMBOL vmlinux 0xb87cb5e1 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xb87e5d85 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xb88266a3 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89e43f2 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xb8a63569 inet_offloads -EXPORT_SYMBOL vmlinux 0xb8a9a1fe set_anon_super -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c071a6 __register_chrdev -EXPORT_SYMBOL vmlinux 0xb8e03153 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb903738e sdei_event_unregister -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91729cc single_open -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9684a19 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0xb96ed47d copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xb97414b9 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xb97950cc kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xb98457c1 nf_reinject -EXPORT_SYMBOL vmlinux 0xb98ba493 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xb9a78349 proc_mkdir -EXPORT_SYMBOL vmlinux 0xb9aaabc6 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9d19ff3 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xb9dc6fc0 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xb9dd939a inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f3e1bf blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba079daa dma_resv_fini -EXPORT_SYMBOL vmlinux 0xba0b8f9c nvm_register -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1ee4dc __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xba1fb3e7 complete_request_key -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4f0e67 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xba5321c3 devm_request_resource -EXPORT_SYMBOL vmlinux 0xba6aa71d vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xba77bca9 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xbaabdbb5 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xbaaf8586 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xbac3d5ea phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbae2e3ca single_release -EXPORT_SYMBOL vmlinux 0xbafacf41 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xbaffe262 nvm_end_io -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb23d404 posix_test_lock -EXPORT_SYMBOL vmlinux 0xbb246f8f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3aea44 of_get_address -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb578165 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xbb5ed26f generic_fillattr -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb7087c5 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xbb72dae3 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xbba841f7 dump_page -EXPORT_SYMBOL vmlinux 0xbbbb4c53 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xbbc73d6b tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xbbcaa2c7 ip_frag_next -EXPORT_SYMBOL vmlinux 0xbbe804c8 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc39d8d6 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc3d41bc nf_log_unset -EXPORT_SYMBOL vmlinux 0xbc418186 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xbc921347 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcbb6c7e nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc0d908 bdput -EXPORT_SYMBOL vmlinux 0xbcc1ebec netdev_change_features -EXPORT_SYMBOL vmlinux 0xbcc260d4 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc766d2 eth_header_parse -EXPORT_SYMBOL vmlinux 0xbcd41356 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xbcddbfbd of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xbce2a67b mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xbceaf0fa __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xbcff306e md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xbd01dc5e dev_get_flags -EXPORT_SYMBOL vmlinux 0xbd1b7759 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xbd25635d input_open_device -EXPORT_SYMBOL vmlinux 0xbd28f613 touch_atime -EXPORT_SYMBOL vmlinux 0xbd37134e backlight_device_register -EXPORT_SYMBOL vmlinux 0xbd3d830b setattr_copy -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd533293 param_get_short -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd724567 padata_free_shell -EXPORT_SYMBOL vmlinux 0xbd7b863a fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xbd84ea4c ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xbd94f7e1 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xbdb31f74 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xbdead605 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xbe017f04 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xbe06b46a inet_add_protocol -EXPORT_SYMBOL vmlinux 0xbe28c298 dquot_resume -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5165ac fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xbe5616b5 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe786798 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xbe7dfed5 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe84a527 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0xbe856b54 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xbe9fb658 init_net -EXPORT_SYMBOL vmlinux 0xbeca6abf vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0xbedc3e99 param_set_ullong -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef787a0 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf007145 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xbf13b0dd dev_add_offload -EXPORT_SYMBOL vmlinux 0xbf17db56 bio_split -EXPORT_SYMBOL vmlinux 0xbf1fb1c1 d_splice_alias -EXPORT_SYMBOL vmlinux 0xbf283a66 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xbf2954fe sget -EXPORT_SYMBOL vmlinux 0xbf56196f inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xbf821919 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xbf921865 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa29ae9 param_array_ops -EXPORT_SYMBOL vmlinux 0xbfab396b netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xbfb06207 simple_get_link -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfce24a2 ilookup -EXPORT_SYMBOL vmlinux 0xbfed3b1e skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff6352a fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xc0050f8f locks_free_lock -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc02a98e7 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc034d472 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xc035885e kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xc03be1d1 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xc041cb39 skb_clone -EXPORT_SYMBOL vmlinux 0xc065e1cb vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xc06c1daa fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xc06c3614 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07e8cf0 _dev_err -EXPORT_SYMBOL vmlinux 0xc094216e xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0982cf5 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c2bc3a bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc0c7e67f __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xc0d6bdc4 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xc0f58159 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xc0f947a2 dqget -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xc11aaf0d dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xc1249a80 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc14db073 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15243ff md_cluster_ops -EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15f2194 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16d1999 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xc16dbaac __pagevec_release -EXPORT_SYMBOL vmlinux 0xc179300f param_ops_long -EXPORT_SYMBOL vmlinux 0xc1cafd90 config_item_set_name -EXPORT_SYMBOL vmlinux 0xc1cf9302 mpage_writepage -EXPORT_SYMBOL vmlinux 0xc1d0b680 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xc1d30646 __kfree_skb -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc21b76d0 ata_port_printk -EXPORT_SYMBOL vmlinux 0xc21f6aa9 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xc228129e revert_creds -EXPORT_SYMBOL vmlinux 0xc23008f2 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc237eecc mii_nway_restart -EXPORT_SYMBOL vmlinux 0xc251e9b8 param_ops_charp -EXPORT_SYMBOL vmlinux 0xc25eec0f tcf_exts_change -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc2734037 bio_endio -EXPORT_SYMBOL vmlinux 0xc27496cc sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xc2855037 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xc28ede03 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc2906352 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b8065d ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xc2bf1bf8 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2f70080 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc317f275 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32f6646 pci_request_region -EXPORT_SYMBOL vmlinux 0xc3461db9 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xc34e776a scsi_host_busy -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc3720fa5 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc3746196 sock_wfree -EXPORT_SYMBOL vmlinux 0xc37510cc vfs_rename -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3820712 sk_net_capable -EXPORT_SYMBOL vmlinux 0xc382d1a1 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38d84a0 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xc395f934 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xc3a71f56 address_space_init_once -EXPORT_SYMBOL vmlinux 0xc3a8b092 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c1dd7e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc3e47847 get_disk_and_module -EXPORT_SYMBOL vmlinux 0xc3e63bd3 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc3f50b1d iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xc3f74206 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xc3f7e090 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xc3fa2df6 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc411bfd2 proc_symlink -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc4597d54 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47f1b4c pps_event -EXPORT_SYMBOL vmlinux 0xc4aae4bf tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4c50ea4 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc4eee4ee flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xc4f2476c dup_iter -EXPORT_SYMBOL vmlinux 0xc5103f96 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xc5241972 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc55bd2a4 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc56a7970 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3baac read_code -EXPORT_SYMBOL vmlinux 0xc5b29ee0 phy_device_register -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5b7b646 kobject_init -EXPORT_SYMBOL vmlinux 0xc5ba78dd ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xc5cb6c11 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xc5cc3971 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xc5cceb50 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xc5d2863b unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xc5d4a2f6 dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xc5dad16a mmc_of_parse -EXPORT_SYMBOL vmlinux 0xc5e23f0f pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ee090c console_start -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5fbeb88 follow_down -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6131a28 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xc62e3f03 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc640a5fd block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xc654b157 dquot_disable -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6702ab2 path_has_submounts -EXPORT_SYMBOL vmlinux 0xc68056ce kill_block_super -EXPORT_SYMBOL vmlinux 0xc6b720c5 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d368c2 inet_add_offload -EXPORT_SYMBOL vmlinux 0xc6d411c1 tcf_em_register -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc70b5ed4 file_modified -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72f00d9 inet_gro_receive -EXPORT_SYMBOL vmlinux 0xc761c089 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xc7699650 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc76a34dc of_match_node -EXPORT_SYMBOL vmlinux 0xc76fb339 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xc7713d1a fget -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7868178 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xc78e3de7 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xc794bbb2 param_get_ushort -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a05874 page_pool_create -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d8686a pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xc7f1bd98 register_md_personality -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc8100c9c sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xc8141f9a netif_receive_skb -EXPORT_SYMBOL vmlinux 0xc81d3ead uart_resume_port -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc827c15d sk_free -EXPORT_SYMBOL vmlinux 0xc8296ad7 mr_dump -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc848c7fe ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87f1520 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89527de padata_start -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b21eae of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xc8bfcccc mdiobus_free -EXPORT_SYMBOL vmlinux 0xc8d6d1b0 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0xc8e8e214 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xc8f99785 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xc908064b module_layout -EXPORT_SYMBOL vmlinux 0xc90c445f genl_notify -EXPORT_SYMBOL vmlinux 0xc911577d tcp_poll -EXPORT_SYMBOL vmlinux 0xc912ff4e tty_port_destroy -EXPORT_SYMBOL vmlinux 0xc918723d fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xc929ff74 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xc9356049 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xc9383672 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xc93bbe4b vme_init_bridge -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc948f017 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xc9611f24 do_splice_direct -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc963e415 xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xc967bdc4 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xc969c85c vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9957204 __arch_copy_in_user -EXPORT_SYMBOL vmlinux 0xc996f159 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a261f2 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xc9abd559 seq_read -EXPORT_SYMBOL vmlinux 0xc9cc4b23 pci_find_capability -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca16a2e5 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5027c4 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xca5892f6 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca8472d7 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab46b45 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xcabf9410 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadc2b99 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xcaf25e8c tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf50e5c fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb036654 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xcb190e36 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xcb2975f9 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb603039 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb9143ac forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xcb956065 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0xcb9665ec __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xcb99b072 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdf29e2 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xcbeaa0af blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xcbf09ecc locks_remove_posix -EXPORT_SYMBOL vmlinux 0xcbf533fe scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc362078 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xcc37abae unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xcc3d527d send_sig -EXPORT_SYMBOL vmlinux 0xcc4029f4 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc60d98a rproc_boot -EXPORT_SYMBOL vmlinux 0xcc8816bf cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xcca4d350 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccafd5b0 vga_get -EXPORT_SYMBOL vmlinux 0xccb823db prepare_binprm -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccdc21fa blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf20cf7 sock_no_connect -EXPORT_SYMBOL vmlinux 0xccf63128 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xccf8b41a __block_write_full_page -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 0xcd071704 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xcd166a7e dentry_path_raw -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd36e84e locks_copy_lock -EXPORT_SYMBOL vmlinux 0xcd46b47c truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xcd497ebd reuseport_alloc -EXPORT_SYMBOL vmlinux 0xcd5ae9d1 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xcd5bbfe9 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xcd6324ed blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xcd644dc7 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xcd678719 param_get_long -EXPORT_SYMBOL vmlinux 0xcd7b44d4 inode_init_once -EXPORT_SYMBOL vmlinux 0xcd85a3d0 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xcd8626b5 tty_set_operations -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9496df may_umount -EXPORT_SYMBOL vmlinux 0xcd98ea79 thaw_super -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd2f0e7 input_set_timestamp -EXPORT_SYMBOL vmlinux 0xcddf45c2 __vmalloc -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcde7e1bd delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce051d62 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce36059b xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xce487adc sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce51a4ec iov_iter_zero -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5ce83c xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0xce746249 d_make_root -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce82c965 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xce8bd9c7 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xce91ce4d d_find_alias -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebd1a1b of_translate_address -EXPORT_SYMBOL vmlinux 0xcec1f762 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xcec42de4 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced235af tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcefab358 fb_find_mode -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefeac76 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf0e29b5 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xcf1498e4 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf24bd88 single_open_size -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf40a3d3 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5447cc unlock_new_inode -EXPORT_SYMBOL vmlinux 0xcf578e41 simple_getattr -EXPORT_SYMBOL vmlinux 0xcf5b19ec __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcf716196 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xcf744864 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xcf85de62 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xcf984adf dst_init -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfef7625 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xcff98445 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xd011f580 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xd0370b7b vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd049ee3f __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd071488e qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xd07d7ef4 vc_resize -EXPORT_SYMBOL vmlinux 0xd08a2097 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xd08f1f7a can_nice -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a57836 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0ab776a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd0c74150 md_flush_request -EXPORT_SYMBOL vmlinux 0xd0d3b3fd pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd10d38b1 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0xd110db4a scsi_print_result -EXPORT_SYMBOL vmlinux 0xd11429b1 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1411106 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xd1468375 __frontswap_store -EXPORT_SYMBOL vmlinux 0xd1469e0b param_get_uint -EXPORT_SYMBOL vmlinux 0xd15767b2 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xd1580e90 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xd17a4dd2 tty_hangup -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1a70c3d security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xd1cedd98 __seq_open_private -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1db0e7f inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd1ff5e99 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xd20322d8 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd22193f7 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd2298816 dev_printk -EXPORT_SYMBOL vmlinux 0xd2456c57 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xd25ad3a6 nobh_writepage -EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf -EXPORT_SYMBOL vmlinux 0xd26e1152 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xd26f8b8b __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xd2701ade vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xd278096e inet6_ioctl -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27ffd6c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xd2936384 neigh_xmit -EXPORT_SYMBOL vmlinux 0xd29992dd mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xd2b03be0 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e164da netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f22ee8 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xd2f83ad0 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3252d58 __icmp_send -EXPORT_SYMBOL vmlinux 0xd3263441 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xd340f2d1 mmc_detect_card_removed -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 0xd37f721c __lock_page -EXPORT_SYMBOL vmlinux 0xd3962c34 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xd3cc1dbc finish_no_open -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f96252 nd_device_notify -EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd4003203 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4180b3c inode_permission -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd43e6dd7 scmd_printk -EXPORT_SYMBOL vmlinux 0xd44c4bb7 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45d7af2 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xd4683c73 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xd46bff74 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xd46c4816 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xd47ade0c tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xd47de935 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd485c09b scsi_print_command -EXPORT_SYMBOL vmlinux 0xd493926e set_cached_acl -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c4ac20 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d9c901 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xd4dcb66c xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xd4e46d0a vlan_for_each -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd50531fd pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xd50a6f86 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xd50f75ef netpoll_setup -EXPORT_SYMBOL vmlinux 0xd512c893 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xd5171af0 inc_nlink -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5294803 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53cbd26 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0xd5555225 scsi_device_put -EXPORT_SYMBOL vmlinux 0xd560a6fe flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd568de23 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xd583047b watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xd597a4a0 md_done_sync -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5e25909 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xd5e6d760 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xd5f57f54 sock_wake_async -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd6085d0e netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xd614af71 inode_init_always -EXPORT_SYMBOL vmlinux 0xd616ce65 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xd619aa30 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xd61aba3e uart_add_one_port -EXPORT_SYMBOL vmlinux 0xd61c807a rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xd62c9db1 dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6abf408 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xd6b138d0 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xd6c52f38 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xd6cc04fe current_time -EXPORT_SYMBOL vmlinux 0xd6ccf1cc nf_getsockopt -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6d3cfa1 generic_perform_write -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7028d21 try_to_release_page -EXPORT_SYMBOL vmlinux 0xd709d4d2 km_policy_notify -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd71326f5 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd72e36a9 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd74de23d inode_insert5 -EXPORT_SYMBOL vmlinux 0xd753d3e5 thaw_bdev -EXPORT_SYMBOL vmlinux 0xd75b5729 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xd7858190 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xd79d6f8f i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xd7a3669b param_get_ullong -EXPORT_SYMBOL vmlinux 0xd7b1fc2f ppp_unit_number -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e6d74c nf_hook_slow -EXPORT_SYMBOL vmlinux 0xd7f7d0fd alloc_fddidev -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd814c519 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xd81590fd neigh_for_each -EXPORT_SYMBOL vmlinux 0xd819b047 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xd81f26d9 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xd8497412 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd84a2dc8 dns_query -EXPORT_SYMBOL vmlinux 0xd84fffc4 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xd85b0826 of_clk_get -EXPORT_SYMBOL vmlinux 0xd85ea499 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xd85fdf3e of_get_next_parent -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd87f8661 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xd88da8e3 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a6c9fb configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b5feda blkdev_put -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8ebc9e2 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xd8f4a56e jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xd8f51338 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xd902fb84 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xd90ecadf pci_get_slot -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd9561d79 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xd96aab27 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xd9784731 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd992300c cdev_alloc -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd9eba558 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xd9f0eedd of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xd9fb6884 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xda28cffe md_update_sb -EXPORT_SYMBOL vmlinux 0xda392ab9 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3e9b43 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xda607ea2 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xda6b8919 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7feb8f request_key_rcu -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda909922 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdaa775f3 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xdaa946c6 inet_put_port -EXPORT_SYMBOL vmlinux 0xdab3bf3b put_fs_context -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacc70e8 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xdad53390 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdaf8d336 path_put -EXPORT_SYMBOL vmlinux 0xdaf8d55b input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xdb18219b sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xdb2184eb dquot_quota_off -EXPORT_SYMBOL vmlinux 0xdb223489 textsearch_register -EXPORT_SYMBOL vmlinux 0xdb30d2f8 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xdb35bed7 generic_writepages -EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate -EXPORT_SYMBOL vmlinux 0xdb42cec7 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb714e1c mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdba01a5b tcp_child_process -EXPORT_SYMBOL vmlinux 0xdbb14036 skb_copy -EXPORT_SYMBOL vmlinux 0xdbb2afdc input_register_device -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbcfa0d8 peernet2id -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbdf7dba kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xdbead36f unix_get_socket -EXPORT_SYMBOL vmlinux 0xdbf730b9 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1c9169 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc362038 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc76f4cf generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xdc8fb9f6 netdev_state_change -EXPORT_SYMBOL vmlinux 0xdc9823a6 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcb0f221 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xdcb38dfa xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcd30491 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xdcf12b90 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xdcfcdd1b jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1e1894 imx_dsp_ring_doorbell -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2c69ee kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd375077 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xdd3f92b0 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xdd50f16c balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xdd528ee5 seq_putc -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb25ef9 mdio_device_create -EXPORT_SYMBOL vmlinux 0xddb426eb of_get_property -EXPORT_SYMBOL vmlinux 0xddc74f71 mount_nodev -EXPORT_SYMBOL vmlinux 0xdddb1b66 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xdddf0e11 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xddedc218 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xddf638cd kthread_stop -EXPORT_SYMBOL vmlinux 0xde01e44e dst_alloc -EXPORT_SYMBOL vmlinux 0xde021fef pmem_sector_size -EXPORT_SYMBOL vmlinux 0xde1f6bb5 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde35d971 pipe_lock -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde4f9a87 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xde6afc66 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0xde707ea4 configfs_register_group -EXPORT_SYMBOL vmlinux 0xde88b1b1 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xde8c2a09 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xdea1cebb skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf0db370 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xdf27f0b0 fd_install -EXPORT_SYMBOL vmlinux 0xdf2b99bb inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf326bcd __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf46e139 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5f89aa get_acl -EXPORT_SYMBOL vmlinux 0xdf678b66 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8d26e3 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa96461 skb_unlink -EXPORT_SYMBOL vmlinux 0xdfac54de __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xdfacfdbe of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable -EXPORT_SYMBOL vmlinux 0xdfc8265f make_bad_inode -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe7386e pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xdff5883d tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xdff60d98 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe04f0e08 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe0508251 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xe0621813 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xe065caf1 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xe066caa3 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xe0697748 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xe06c7813 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xe0733fc1 mmc_command_done -EXPORT_SYMBOL vmlinux 0xe0782746 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe07a5ecc hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe07edda1 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08569c7 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a6acb5 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b9125f __skb_checksum -EXPORT_SYMBOL vmlinux 0xe0bddfbe mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xe0c42511 udp_poll -EXPORT_SYMBOL vmlinux 0xe0dab324 cdev_init -EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable -EXPORT_SYMBOL vmlinux 0xe0f05ce6 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xe0f22fc2 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe0ff27eb pci_dev_put -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1172a63 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xe117657a input_flush_device -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123c695 sk_stream_error -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12c5f12 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xe1404595 vga_tryget -EXPORT_SYMBOL vmlinux 0xe158354c mmc_add_host -EXPORT_SYMBOL vmlinux 0xe15bee59 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xe1752ea8 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xe185346b md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xe1a1cbeb __udp_disconnect -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1bfe5c6 tty_write_room -EXPORT_SYMBOL vmlinux 0xe1c94811 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xe1cf447c set_bh_page -EXPORT_SYMBOL vmlinux 0xe1d338bd __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xe1d4c332 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e11eab uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1e844a0 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xe1fdb6ed pci_read_config_word -EXPORT_SYMBOL vmlinux 0xe20a47ed copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xe20f4d9e tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe228b32c ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xe22eebd4 dquot_operations -EXPORT_SYMBOL vmlinux 0xe230f508 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xe23c5db6 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xe23dcbcd blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xe27762d9 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xe297a0c5 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xe2bd4c8e generic_ro_fops -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d3ccae seq_escape -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2da56d1 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xe2e0c7c6 __flush_icache_range -EXPORT_SYMBOL vmlinux 0xe2e1f244 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe2efeeca netlink_set_err -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe30d9749 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xe30fa206 dst_destroy -EXPORT_SYMBOL vmlinux 0xe315af3d napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xe3190369 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xe3286041 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32d453e blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xe38a0720 gro_cells_init -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3d8e0ec skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xe3e2f199 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43467c2 release_sock -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe46b2d2e tso_build_data -EXPORT_SYMBOL vmlinux 0xe4803d69 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xe485d443 tcp_connect -EXPORT_SYMBOL vmlinux 0xe49a4bb4 kobject_get -EXPORT_SYMBOL vmlinux 0xe4a12092 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xe4aa8627 load_nls_default -EXPORT_SYMBOL vmlinux 0xe4aae708 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xe4af3161 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4d359ac nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4d7cccc jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xe4ea0b1f ptp_clock_event -EXPORT_SYMBOL vmlinux 0xe4eec6c5 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xe508c1ab kill_bdev -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe54e505b dev_uc_init -EXPORT_SYMBOL vmlinux 0xe559f0c8 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xe55f8d41 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe56fbb47 config_item_get -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a3fe3e devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xe5b74237 tty_port_open -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c5e593 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d3735a filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe5d5d5d1 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe5dcbf68 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xe60acc64 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe641023c __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xe675e402 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xe67bdaba tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6e3a004 kthread_bind -EXPORT_SYMBOL vmlinux 0xe6e4d904 ppp_input_error -EXPORT_SYMBOL vmlinux 0xe6e56e6c try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xe6e7e3e4 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe6e837e3 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xe70fcdf5 mpage_readpages -EXPORT_SYMBOL vmlinux 0xe713f2a3 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe732e1c5 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe76d66d6 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xe7703ee9 vga_put -EXPORT_SYMBOL vmlinux 0xe772a271 find_vma -EXPORT_SYMBOL vmlinux 0xe772e300 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xe7736b38 param_get_string -EXPORT_SYMBOL vmlinux 0xe7802e6a edac_mc_find -EXPORT_SYMBOL vmlinux 0xe78dc8fa pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xe78f4fe4 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7ac25be ps2_command -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7b44264 pskb_extract -EXPORT_SYMBOL vmlinux 0xe7d17c02 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7fd7c73 lookup_one_len -EXPORT_SYMBOL vmlinux 0xe80ddbb2 param_ops_uint -EXPORT_SYMBOL vmlinux 0xe8220619 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xe82a2e03 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xe82e21f5 mount_subtree -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86ba728 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xe87a3943 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xe8980a07 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe8a7742b eth_header -EXPORT_SYMBOL vmlinux 0xe8a977de cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xe8c66a02 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xe8d246a2 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xe8f408af __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe906badd truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xe914ced5 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe91f25b9 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xe938ff30 dm_register_target -EXPORT_SYMBOL vmlinux 0xe93fbb82 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xe943726a jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xe94f0616 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe955962f rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xe9809858 register_netdev -EXPORT_SYMBOL vmlinux 0xe9838b7b devm_memremap -EXPORT_SYMBOL vmlinux 0xe9857105 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9cbfbcb max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xe9d2aa7c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xe9dab7c0 rproc_free -EXPORT_SYMBOL vmlinux 0xe9dd5855 fsync_bdev -EXPORT_SYMBOL vmlinux 0xe9ddcb47 d_set_d_op -EXPORT_SYMBOL vmlinux 0xe9e05c38 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xe9e18c9c neigh_table_init -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xea042e32 dst_dev_put -EXPORT_SYMBOL vmlinux 0xea1f0979 skb_put -EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable -EXPORT_SYMBOL vmlinux 0xea38a53f of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea415ade tso_start -EXPORT_SYMBOL vmlinux 0xea421219 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xea626551 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xea67e56d inet_addr_type -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea854a6f dm_unregister_target -EXPORT_SYMBOL vmlinux 0xea948468 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xeaa4afb3 skb_seq_read -EXPORT_SYMBOL vmlinux 0xeaaead1d rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac5b372 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xead482b6 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xead6c69f ata_link_printk -EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb30f582 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb6ebc15 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb8167bd security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xebbbfcb8 __destroy_inode -EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xec07063b inet_register_protosw -EXPORT_SYMBOL vmlinux 0xec236f62 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed -EXPORT_SYMBOL vmlinux 0xec276381 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec3bf571 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4f1d2a put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xec6548eb bio_reset -EXPORT_SYMBOL vmlinux 0xec75c48c fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xec7ddd4a neigh_ifdown -EXPORT_SYMBOL vmlinux 0xec809d0d dquot_commit -EXPORT_SYMBOL vmlinux 0xec822564 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xec893a56 set_nlink -EXPORT_SYMBOL vmlinux 0xecb544cf tty_vhangup -EXPORT_SYMBOL vmlinux 0xecc7d190 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xeccb4755 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xece0fa4a mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xece16404 mdiobus_write -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xeceab11d genl_register_family -EXPORT_SYMBOL vmlinux 0xecf007de block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed0aee38 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xed275f43 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xed3cb158 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xed42e3a3 keyring_alloc -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed687fd7 free_buffer_head -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed99d6eb inode_get_bytes -EXPORT_SYMBOL vmlinux 0xeda32424 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xeda7aaac of_get_parent -EXPORT_SYMBOL vmlinux 0xedb031e8 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd3dde3 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xede5c7a2 dump_skip -EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table -EXPORT_SYMBOL vmlinux 0xee03b3d1 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xee20e2cf of_device_is_available -EXPORT_SYMBOL vmlinux 0xee23b0c3 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6fc33c pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee914d27 tty_name -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee97a1b4 vfs_link -EXPORT_SYMBOL vmlinux 0xeea64cc8 module_refcount -EXPORT_SYMBOL vmlinux 0xeec02bb3 input_close_device -EXPORT_SYMBOL vmlinux 0xeec424eb inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xeecd0422 bd_start_claiming -EXPORT_SYMBOL vmlinux 0xeecfc421 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xef039248 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xef0ce781 finish_open -EXPORT_SYMBOL vmlinux 0xef0fb9b6 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xef3b278d uart_update_timeout -EXPORT_SYMBOL vmlinux 0xef40be83 netif_napi_del -EXPORT_SYMBOL vmlinux 0xef51f169 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb12aeb inode_set_bytes -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefed0fb6 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xefed342d dev_set_group -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf0141788 has_capability -EXPORT_SYMBOL vmlinux 0xf04bda4d alloc_pages_vma -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07a2080 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xf07d6b2a seq_lseek -EXPORT_SYMBOL vmlinux 0xf089a4ed __mdiobus_write -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a1241f udp_disconnect -EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b6374d netdev_alert -EXPORT_SYMBOL vmlinux 0xf0db7fb5 elv_rb_find -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf108d650 unlock_rename -EXPORT_SYMBOL vmlinux 0xf10c2c44 vfs_setpos -EXPORT_SYMBOL vmlinux 0xf14cef94 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xf17532fe dst_release -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf1932660 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf197889e filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xf1b0085e input_release_device -EXPORT_SYMBOL vmlinux 0xf1b38026 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xf1c1260b kernel_listen -EXPORT_SYMBOL vmlinux 0xf1c729c2 vga_client_register -EXPORT_SYMBOL vmlinux 0xf1ca9ae5 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ef8f8d get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xf1f2506c rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xf1f2bfab vme_irq_free -EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf22901a2 inet_protos -EXPORT_SYMBOL vmlinux 0xf22a8d83 profile_pc -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xf25eeee1 ps2_end_command -EXPORT_SYMBOL vmlinux 0xf25fafc4 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xf2626417 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf26fce9d inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28896a2 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a30a19 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xf2a46d03 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xf2a56e1a iunique -EXPORT_SYMBOL vmlinux 0xf2b2c61c prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xf2b37cbc discard_new_inode -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c9963b bdev_read_only -EXPORT_SYMBOL vmlinux 0xf2d0743a ip_ct_attach -EXPORT_SYMBOL vmlinux 0xf2d5378a __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f70c25 qman_fq_fqid -EXPORT_SYMBOL vmlinux 0xf311e256 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf335e563 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xf33b6948 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35566fc create_empty_buffers -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3918522 qman_retire_fq -EXPORT_SYMBOL vmlinux 0xf3959582 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c93494 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xf3d9e9de nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f1340f input_unregister_handle -EXPORT_SYMBOL vmlinux 0xf400caba acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xf4014ec5 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xf404d16f max8998_update_reg -EXPORT_SYMBOL vmlinux 0xf40890c3 tcf_classify -EXPORT_SYMBOL vmlinux 0xf40b12f3 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc -EXPORT_SYMBOL vmlinux 0xf4264f7b ip_check_defrag -EXPORT_SYMBOL vmlinux 0xf4331a8d xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf45868c3 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48f1a03 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4ce4864 vm_map_ram -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4eb5494 amba_release_regions -EXPORT_SYMBOL vmlinux 0xf4ed5293 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4fb0bdc blk_put_queue -EXPORT_SYMBOL vmlinux 0xf512c65b bdget -EXPORT_SYMBOL vmlinux 0xf52c5562 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf544be5c vme_master_mmap -EXPORT_SYMBOL vmlinux 0xf5461755 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xf549d609 d_tmpfile -EXPORT_SYMBOL vmlinux 0xf553771c xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xf55dc755 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xf57373e2 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xf586f41e vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xf5915ba3 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5ae6247 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xf5b0665b dm_put_device -EXPORT_SYMBOL vmlinux 0xf5b77fb8 dma_supported -EXPORT_SYMBOL vmlinux 0xf5d0ad2b mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xf5df05b8 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xf5e69cbe follow_up -EXPORT_SYMBOL vmlinux 0xf5e7e3f8 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5eab8c3 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf60887cb ata_dev_printk -EXPORT_SYMBOL vmlinux 0xf60d685b build_skb_around -EXPORT_SYMBOL vmlinux 0xf6359fc6 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf651e62e __page_pool_put_page -EXPORT_SYMBOL vmlinux 0xf65aeb16 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66ee2d8 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xf66f3190 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf690d69d security_sock_graft -EXPORT_SYMBOL vmlinux 0xf6a2be9e devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xf6ac1ba9 seq_vprintf -EXPORT_SYMBOL vmlinux 0xf6ae645f netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xf6b8eba9 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf6bff65d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xf6c62d45 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xf6d068e4 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xf6ddf485 init_special_inode -EXPORT_SYMBOL vmlinux 0xf6e8f75e blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f66309 amba_device_unregister -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc03b7 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fd8c61 d_move -EXPORT_SYMBOL vmlinux 0xf6fff439 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xf7086817 wake_up_process -EXPORT_SYMBOL vmlinux 0xf709691d nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xf7191dbb skb_queue_tail -EXPORT_SYMBOL vmlinux 0xf721013e xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0xf72f2758 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74746fb blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf78437dc scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xf790e33c scsi_print_sense -EXPORT_SYMBOL vmlinux 0xf7975f3e fman_get_mem_region -EXPORT_SYMBOL vmlinux 0xf7a4b6b0 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xf7acfd4e dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xf7da55ad mii_check_link -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 0xf8188148 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83642b0 unregister_console -EXPORT_SYMBOL vmlinux 0xf83942b9 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xf83d5214 __mdiobus_read -EXPORT_SYMBOL vmlinux 0xf84b73b3 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84d5ebc scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xf855f16a tcp_make_synack -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf8845b26 __page_symlink -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8971a97 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xf899eae4 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c2bd40 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d25747 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xf8dc9531 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xf8e96d57 d_rehash -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90b7b62 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf925fbae filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xf92c2e21 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xf92d87a2 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xf9378e94 read_cache_pages -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9448cbf pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf949411e of_device_register -EXPORT_SYMBOL vmlinux 0xf95b0a98 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf963ebbf elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97860ff scsi_dma_map -EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xf986b2d5 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xf99d4a7b genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xf9a08c92 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9af328d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf9b7c00a __close_fd_get_file -EXPORT_SYMBOL vmlinux 0xf9b83d1e zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf9bb1994 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xf9bfb6ce vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c425a7 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xf9d16ede fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xf9ea0fe1 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xf9ef0c55 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xfa065c8a mod_node_page_state -EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfa19dbfd hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa43371a ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa66f24a netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xfa71247f of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa9bcdc7 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xfab2070d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xfabfcb9a of_root -EXPORT_SYMBOL vmlinux 0xfac7fe24 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacb2b73 audit_log_start -EXPORT_SYMBOL vmlinux 0xfacc26c1 genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0xfaefa1a3 keyring_search -EXPORT_SYMBOL vmlinux 0xfaf30ac2 fb_show_logo -EXPORT_SYMBOL vmlinux 0xfb07d54c of_dev_put -EXPORT_SYMBOL vmlinux 0xfb1ae628 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xfb2282d8 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xfb29c8dc scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xfb360cdd scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb4729ba _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb5b372a vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xfb6269ac clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xfb69f485 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb730769 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable -EXPORT_SYMBOL vmlinux 0xfb83381f request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xfba37c8d of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbada0dd sget_fc -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbcc0c2 tcp_close -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc89e27 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xfbe2c679 module_put -EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbf5aecd vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xfc097268 __lock_buffer -EXPORT_SYMBOL vmlinux 0xfc104b86 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xfc13f361 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xfc15b868 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xfc16c910 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0xfc791121 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xfc79f443 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xfc7a0659 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock -EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type -EXPORT_SYMBOL vmlinux 0xfca60c06 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfca8a91b tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xfcb046ac of_parse_phandle -EXPORT_SYMBOL vmlinux 0xfcb0fcb3 blk_register_region -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcbba714 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xfccc6cb6 pcim_iomap -EXPORT_SYMBOL vmlinux 0xfccdcad7 __phy_resume -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcec6ede netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xfcfd1f1a submit_bio -EXPORT_SYMBOL vmlinux 0xfd18cb1f unregister_shrinker -EXPORT_SYMBOL vmlinux 0xfd1b05cb iterate_supers_type -EXPORT_SYMBOL vmlinux 0xfd32c5a9 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xfd3fef85 dm_io -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd80116b mii_check_media -EXPORT_SYMBOL vmlinux 0xfd832795 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xfd8373d0 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xfd94814e complete_all -EXPORT_SYMBOL vmlinux 0xfd9a837a xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfd9cef4c kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xfd9e0d4b ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdab2252 km_state_notify -EXPORT_SYMBOL vmlinux 0xfdaefd3d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xfdb251fc netdev_err -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfde826af put_disk -EXPORT_SYMBOL vmlinux 0xfdf764ae pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xfdf9413b get_mm_exe_file -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe111ed2 icmp6_send -EXPORT_SYMBOL vmlinux 0xfe1d0a5c neigh_destroy -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe2922d6 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xfe4858d7 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4fea34 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xfe52ff2a security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c93a5 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe99a995 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea12dce sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xfea489dc netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff1871e7 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff39955a d_instantiate -EXPORT_SYMBOL vmlinux 0xff56aaaf secpath_set -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff773b7d pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xff7fbe90 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff89b65c arp_create -EXPORT_SYMBOL vmlinux 0xff8d3d6e security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff95a2ae handle_edge_irq -EXPORT_SYMBOL vmlinux 0xff9e7781 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL crypto/af_alg 0x191152b4 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x32a0bdc7 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x47f35c68 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x527b73c4 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x551d35d9 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x56650f1e af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x5e1ea395 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x613204c4 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x659107e7 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x77c4a3fa af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x93f2ffc6 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa4501845 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xbb4f9550 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xbf857286 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xcaa2f115 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd225f490 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xd4d00158 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf438ebb1 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x8ac0be15 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x914f2eb7 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2d387846 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3660d24f async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x195c4e8a async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb5f962f7 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x231c8dc7 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3ec424db async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x59f8b9a0 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb4a33ac4 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5ba73ee2 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa6719349 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa9819c6e blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x332a11ba cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x460a0636 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt -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/chacha_generic 0x659577d3 crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x66b6767e crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xb147b663 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xde970562 crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x000e511b cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x061d71e5 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x18d9994e cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x23c4dede cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x268d6a4b cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x30a7b26d cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x6c226e56 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x714f0ac3 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x7db95342 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x87ef54eb cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa5f27773 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xaed93c6c cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xcbe92d38 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x28dfd338 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2ce6c244 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x369f42de crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x37d4d63e crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39870a71 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3bd0aa5f crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x64303846 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x823582c7 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbada192b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe88e5f4 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc8a5e8e9 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd0481361 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1461754 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe44cd1dd crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5941c2c9 simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7bbf202f simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc7c8d609 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xeb8c0792 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x33731391 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x50829fd2 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd1095bb4 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbb53ea81 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x4f886f2c crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xb661683a crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xf9112255 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xc8eaa30c twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x101b44cb __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x418ea702 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 0x853aa450 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbaa4d9c8 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf360ad95 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x0cd5ca3b __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x85e24e90 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x7a69136b __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x23632cb8 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc2f20746 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x0269f536 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x083397b9 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0716e830 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbf8f8ec9 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd598d34 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd67290f6 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x057322fc __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe89b0cc8 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0859adb7 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a569fe6 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x347ffd33 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43c97ee0 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x469f317b bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51682996 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53d792ed bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ba8fa38 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x661bc5de bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6af84c75 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f0c4a2c bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a87f359 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ab6552c bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b1ecc60 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97a7c9a1 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x980782c9 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f7a16f0 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1e8ba51 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca355aa1 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc694803 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd18d1ed6 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb8b34c1 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde8fe4f9 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf98a4726 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a0fcb5e btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e9aabb2 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9db83eee btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaffd1665 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb843ff06 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbfaa5347 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x070effdd btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x086f1675 btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1273c0ff btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x19bcd846 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c30a538 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f7b3e69 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x507eef8c btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84c767ab btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x87bf44cb btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89c604c5 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b0699a5 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaaf484b1 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7d4621e btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc36ad7f8 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcd69f8ad btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdeb28be3 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb6f13ba btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3469fcf2 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3bb9134c btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x42a28b35 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59011e80 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x82fcff75 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9a40e0b9 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa49d383a btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb80effcb btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xda17dac5 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfa7534dd btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfdf85212 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x64008929 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x98f151e0 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd1df442c qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdbc15113 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfbaf3a65 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2c6363e0 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x47f047dd btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8e8d18ea btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc70cc172 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfd9fe3ea btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x40f4fc18 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5d410894 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb16d7658 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe07c8705 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x259675af moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2b70b55a moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2eee3613 moxtet_bus_type -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x72dc2ab5 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x95bf6274 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x9b87a9b7 __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xaeaece5d sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0326c975 qcom_cc_register_sleep_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1eea9d26 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x56898ed4 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d1ea56c qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x653458b6 qcom_cc_register_rcg_dfs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6646bed0 qcom_cc_probe_by_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ca8a88d clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8cb1c5b3 clk_fabia_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x951258d4 clk_alpha_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2995521 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf231898e qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x03d3a7af sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0b579624 sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x20e969aa sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3005c034 sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32e68ffc sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3ff8dac1 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4d9bff88 sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5be88ca4 sprd_div_helper_round_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x67deac3a sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x86e82b4e sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8a9f0601 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa4a0f683 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfc3762c1 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x13130d1d devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1dc2b34a counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x48fe5f73 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4908091b devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x4d719b6a counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5ceeb1cd counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x6f457598 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fa1a974 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x900e0178 counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa6bb3a7e counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xadd12b82 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xba0bd0c2 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe231471d counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set -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 0x9057a1a4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x01df7f04 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1dc6e626 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2705ddec hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x28a0e597 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x325fd3d2 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4ba13d4a hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x697a24c5 hisi_qm_set_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7dcb3cf6 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x88076870 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8950c214 hisi_qm_hw_error_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8c1400a5 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x982928bb hisi_qm_hw_error_handle -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9d7f8ccc hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa6416eea hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc20dda9c hisi_qm_get_hw_version -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc32a8a96 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc5925d5b hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc601fc07 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc79ebe3b hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd3ceb1e7 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd73e5d67 hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xf16ed916 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6eddf3ab dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7fa09c6e dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x05a3e6e0 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x426a55f7 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x482af6ff idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89ceaa58 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe14cb189 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf5c00aea dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfba5e7b9 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x016c5f23 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10779f74 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2768f0a6 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x37f25769 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x490f0872 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x49821a12 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4a3823a2 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x63338780 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6ca72633 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c7dca8a fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb1189943 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb799919b fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7ca5357 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc8e84fb4 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc9a29683 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf7076b8b fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x04a390ab hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xcbe602f2 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xd810b2f2 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x34fba026 stratix10_svc_request_channel_byname -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd2ed3a9a alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xefb18b9d alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0f8b30f9 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x17fa7eae dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x217f4491 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3eaa30a4 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x402c9c34 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4451c534 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50dc20b2 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x62846ed5 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x64f5a8d9 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e1ddd58 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9b7c1371 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa0d6e015 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xabc8c994 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc589d9c8 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe788ea25 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe93ca965 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xec82eee0 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1121fbd dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff71970a dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x02a45681 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x034275bd 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 0x1b3d4dd3 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x35859cda fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x591a3721 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x635f2b1a devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8f71a21e fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9226a97f fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x986a79a3 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa362d0e4 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb48f62d9 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc80efc52 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x01f2e3bb of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x18f46a54 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1df6f03c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3108d458 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x38474877 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5b522694 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a1e3ba4 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ee70338 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9706d35c fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa1b16cb5 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd7fc25f5 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe0cc6e45 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe877405a fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0105e8d1 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0f53d51a devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2d666871 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x300c03c7 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa2126464 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa61fc1ac fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe38dc437 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0e53050f fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2f70e194 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3779dae4 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7e7e8982 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9f32d3b3 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa1307ae1 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbdcacc70 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc841265b fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd314aad9 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe9a485d8 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x1ea4fec2 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x64dacda2 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xb4fdf19a sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2cb9c3f2 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xaee17587 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb4b709a8 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf57172ab gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfcffac09 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x04f13aa9 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x27eca219 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x52e9c480 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x96219eb9 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb4a8b0c9 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x118b25c1 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd87900d1 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x20ea8cf6 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2e1310f2 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x35f304f1 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4d19b969 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4d2473cc analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5a3f910f analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7876baf2 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcb70db5e 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 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x41ea4fae dw_hdmi_bind -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 0x632b053f dw_hdmi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xc0121f2b dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xf66f7fb6 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c101e04 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ced80c5 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27676d9e drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x29c79bdf drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2d587d8a drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x327f45b2 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b17d28b drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42fb3700 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53f1b637 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59bed3e8 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59e4e3cf drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62b6ea7e drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6335d5e6 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x652c522c drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6775db8c drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76b2db42 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77f8c5fb drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x795e35d2 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9fd8ac12 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa013084f drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa229bc93 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb962d1a3 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd4e5668c drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd51ceaaf drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf959299 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe225d837 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2afd0da drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe93f938f drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1195b67 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x07d933e5 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7261fc3b drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7ed1e15a drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x97ed88e2 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9db074d8 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc3a75b1d drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9abf8fb drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x18cc5054 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa7aec21b meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd87a3c59 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x095981ee pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x2982ad91 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xb1cbfb87 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd002d338 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb1d263d9 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfbece010 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x7016491c ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x78188e81 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf0b366e6 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x049c5d1e gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x08872009 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0d728fe9 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x132350c8 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x146e4605 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f71f60e gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27298f57 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x322b5962 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a13e351 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f95b154 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x507eb2cb gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x585f6aa3 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6427dddc greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x662d8cad gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66871ea7 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71d8d185 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82bfc462 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8403c0d1 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87aa7d50 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8a014d15 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2639138 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5293f09 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa538b225 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5d64e18 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa886ecc6 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9dadf37 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9f94372 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae3d4fe2 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb1ff09e9 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbaac18ea gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0a6ab7e gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4f25cf3 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0ad5de5 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4c5c2d6 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf32f16f2 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3b0a9e5 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4145fb5 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/hid/hid 0x04e92638 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x14b50b4a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b5f8458 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d634717 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x28a5b1fa hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2be56d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f6dd93e hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x37bd8c65 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x385c52b1 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x38e0a0fc hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c3cd302 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x43d0a72a hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x43d70bdd hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x441c74a2 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b6bd47c hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f536438 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x684d0e35 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e38ee16 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71147dc6 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74fb5bed hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c8e4b6b hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x885b28f2 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d092b23 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f23ee57 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x921355fe hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x938d3fc6 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94155dea __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x977289bd hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a62547b hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1dcb621 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4534768 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb723ea14 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb798377c hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc6daea8 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd45a946 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf042432 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc63507a8 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0ee8587 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0fa85b8 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2f0854e hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8286edd hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe896b7d6 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef03b61e hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd33a19a hid_check_keys_pressed -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 0x7752a8cd roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4dfd3882 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6c750410 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7d503ec9 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x95859591 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa31006ed roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf7239f19 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4ae5efe1 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4b5a6136 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71a88f9f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x73ced4b3 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7961912e sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ad743fa sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa24b21d7 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xca3a139a sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb0dde4f sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4179471b i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xfde36419 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xce2b3048 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf03535d2 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21fe824c hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2944b73a hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x31def91b hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x49ed4f53 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50b6166e hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5461caf8 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f773ad9 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a2aac39 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a522640 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x76994e76 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79097572 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7bb67db2 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7f8c635e hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a40bd4a hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x940ca3f0 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x98b38795 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf5542a3 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd1e65278 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x51c8ba1e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x888a8400 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x96131a26 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x03dc896a pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0b3570aa pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3e2bd986 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4c180836 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4c9f6f25 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4d850f89 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x541282d8 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x59c8bb3b pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5c243271 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6163b755 pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x783c964f pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7f2d6c1d pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x82848f17 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8c7fb92b pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8d440863 pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa0b52d1f pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa15e2d64 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe43161f6 pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe9e72e2c pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x14bd476d intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x446fd20f intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x651a2bb6 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x72e35bd6 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x87a1f3fb intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x95f09fc6 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc6b47aa5 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc7965cc2 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf44d2607 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2d381c9e intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x69f3876d intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa0e6d181 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29f0d526 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x48595ab6 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x713a41e1 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7e90d09b stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xad57b96c stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd68c1636 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe54e73c1 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf4817316 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd79d7de stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x10922ca2 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x284b245a i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7ee33809 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd0dd9bfa i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x467a453c i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0530ca1b i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b859ac8 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bf954b9 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4093873f i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x44e15034 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x554fc22f i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x641a054a i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64ed3f1c i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6831e39b i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87950fe9 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa17e1672 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa87feb54 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa94e83df i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xacb2d0a9 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb412e1c8 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc8779a35 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcf49a2b4 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcf74a6d3 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd9eba78a i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdce81337 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdedf9f96 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe8a5ce36 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf0f6e7a4 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8608506 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8ec3d73 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x6e0817c5 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x8f26328e adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3dc2d121 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6cdb2d27 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x797c9b32 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd42c1bf0 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb79b8e05 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xee9eafda mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf1e37a25 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x5ad0451a ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf2a0f91a ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x115fcf60 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x138e1a46 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x19f5417e ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2d899425 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4af5a269 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x980adbf4 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa3bdc003 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xacb68040 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcb6a9eca ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcf18dc94 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x29afdc0f iio_channel_get_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 0x3967c940 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 0xd535c862 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x61399a05 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x8b28fee5 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xf050ea3c devm_iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x14db5db5 devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xa3c18814 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x68f59c9f bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x03dbc3e8 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2c47d817 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2c4a09f2 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x57a514ef cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x905b07c3 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb704afa5 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbe96cba4 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcdea0286 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf634c661 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbbc4b2b1 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd320d7e6 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x27c0e882 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb6bdc963 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x83ea72f9 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd6cf0041 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf922b401 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xaefae719 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc26c8c4b fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc67b7daf fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b12cb43 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2af7ac44 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x39b06c28 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x76db41c8 adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8b29c76c adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x98e6f86f adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9b448d64 adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xba57682f adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc1f61131 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc75a7c4c adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcb50c375 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf0c037fc adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x27961bbb bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x34434c7f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5320c08a inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x9faa8683 inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0274a0b5 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06e97723 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ac5077e devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e3c09ff iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11141032 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13b93319 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1581e7d7 devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19067d3d iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x231890a4 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d17c440 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3222acef devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x399b25f0 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cd4daa7 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3dcbb563 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3dd0cbf2 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44df19f6 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x510c9127 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54cd94e5 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b20856a iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b65b644 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d4585fd iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x608d3f74 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ac264d6 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71565c45 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76d75576 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fb56180 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9082595e iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x943dfdf8 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x952fedc1 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96393a88 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99c87d24 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa625d717 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad0de5da iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae97507f devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1a2b0a5 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1d1219a iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4c46189 devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4e07d63 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba6a61d6 iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf7ec7f1 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd045b524 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf88a9bb iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0670d38 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe36e745a iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea56bcac iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf241a09e __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6c409b6 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf767d866 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdebce47 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff84dd60 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x32c32885 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x4cfceb2b mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6eb25a84 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x717052e1 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaed9d5a7 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe09e7020 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe998d998 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf38fd73d zpa2326_remove -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x12b9fd35 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x1a1aaad3 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa8e06dd9 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x074d8804 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x17cdc4bb rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1a08c33a rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x215a6554 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x266d6c31 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x33908e8f rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x37e985bb rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3c7ccf21 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x902d18db rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa655bf15 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xae36e418 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xca692eb3 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd05140ae rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb0ae228c cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc8e87046 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe484e7a1 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xde88f66e cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf4793d7e cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3f07e4c1 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe286188a cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x459a6146 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb81aaffc tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbcfb09bd tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd3254f1f tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2657c089 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c150aff wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2cc4fdba wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fd58a8d wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x317ae0e0 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x331aecf3 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x73c7b7ec wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc0dbfcb wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xda536d40 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe06efd24 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe298b19e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfcad2dfc wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x15dacf39 icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x45078ef0 icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x497a57cf icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7d983731 icc_provider_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x87a1b297 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x9e4a684e icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xa4bcdd9f of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc6250d24 icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xca27fc46 icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xea4bae44 icc_node_del -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 0x7929e2af ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7ef77574 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82bbc457 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9d73eec3 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa699c794 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb139d927 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcbfe7048 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce81900b ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe4c0b011 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4e83d27d led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7b9e99bd led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9cd5fa33 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa616b59f led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe2998a47 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xee1d78fc led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4236305f lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x528c874c lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5896979a lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x80111fa4 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8c6afe8e lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97f90457 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa102e814 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa1950077 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd40e4f30 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd59c6b07 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf7aad197 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/mcb/mcb 0x069f2024 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0d616efd mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23a872b5 mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x46e7ac61 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4905ab38 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b6fd8f1 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4d445920 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5436b9b6 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6061a12b mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8f3b4a6f mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa578a2c4 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xac980934 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbb6db3a4 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc1e4aec9 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x05c9c415 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1138d2c6 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 0x18cfa888 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x258c3c57 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3f998d5f dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x48115e01 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x65d09231 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7851c5f6 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7b444cf2 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x825ed322 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x86f9b6af dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa14ee73a 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 0xc8612925 dm_get_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 0xdcf13028 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe811a444 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9e1cbc6 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb48795b dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xe53e0262 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-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 0x9eaaeaf2 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-cache 0xe90ff1ca dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb38cd975 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbe8e4364 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 0x1be55532 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2eb99ba6 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x555ee3d2 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 0x6dd0579e dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6f561541 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7b81c7c5 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 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x30c37cc0 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -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 0x5cf0d0bb dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -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 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb63729f8 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0a65afe3 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1784e28c saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9a40763c saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa6733452 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8103ecc saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb2a31a09 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb672e5d2 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe1596b0d saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf257758d saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfe98ce2a saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x02c8b521 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x086adc6b saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x89451ee5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb7c38439 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd3774b90 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xeb2787bb saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff4188cd saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a320a13 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1b930e10 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x352f3ae9 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3d9132e8 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42766597 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5e765364 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f92ca6d smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8add66d0 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92883f97 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x993b4a0d smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa290a71f sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbdffa382 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca3c067d smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3d60943 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xed1517a1 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfb3481e9 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc5c6172 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0669a151 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x098416e4 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c87e5cf vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a6ee39c vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x302cf736 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4701bcdd vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x591fa06f vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e783895 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69709941 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9296a76c vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3c34513 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3cfdc09 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa811becb vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2b60e2c vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc2253459 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5cbae12 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf4017cc vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe65c1a3c vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe70b3863 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7d4b258 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xea1babf9 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec29c1ea vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeddbb608 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xefa77988 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb7e81cf vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x963f6985 vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xd9d59a75 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfc1e97b3 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x5a882f5c vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x7a800085 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01051edb vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x190cadfc _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x199e79f6 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d6b7ce9 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x48092f32 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4bdbf337 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x519853a6 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55a50953 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58ea25f5 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x69523a27 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b4657a3 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c9027ab vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75f864fc vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a82807c vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9358b6d5 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9883b13b vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98cb06b8 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a87e1a7 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0fd36b7 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa2e8895b vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa9cbd8b7 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaaa59412 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb10f3719 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xba8d95ea vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbbaa5e6c vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4b27825 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfe71cd1 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd06f9528 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdee70d98 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf452ea6f vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xffef19ae vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x1b5aefcd vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x03acfbd2 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbd375edb dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf639e216 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x8a7833ff as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc5ea9422 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xe15815f3 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7478687e mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xb6b2dc8f stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xbab5efb5 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf0ae25f6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3b0b0799 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0xad12716c smiapp_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x064d3bf2 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07a50a15 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12d0933e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1900ca99 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c8e3fd8 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30eef8e1 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32fc8d89 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x349ac8d0 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36d4fb11 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3836e168 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x39b96783 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42d0d856 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43661dd2 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b6d9347 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53b353c4 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5af06509 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5cdfb116 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f4d0465 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67789fcd __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6861b43a media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6891c744 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ac12b9a __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x70217f06 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71799e7a media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x772b71de media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x829dc38f media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x881f4951 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90f3e752 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9182aed9 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f6367c4 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f751313 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa42f06fb media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0139e6f media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb07dd1a3 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0a9288b media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfece407 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0d21df9 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5278e14 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc633d781 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9e01789 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccafe3a5 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5649e21 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9074d5a media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefeeddb9 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfcc18091 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe11b1d3 media_device_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x61cf7ac9 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x07729b0b mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e7a2aa1 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c3074d1 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ed539e8 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57589842 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ec24de6 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6142fcc5 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a887fdb mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83add5df mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83cbdf31 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8799a9de mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88b4dfad mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa9572d12 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb46ffc47 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc1d6e11 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcfef2618 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd4adc9c2 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda58c12f mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea108126 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02118d9c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0952e673 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14a166a5 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x19e153e6 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x335a80bf saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c71564a saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e70758f saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40719b6d saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42523a40 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4cdcc356 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7baf9295 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d5e5ff0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x898732b2 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9574db6f saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7671fab saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb12a400c saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcab922a0 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0aa5a2c saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf1febc97 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2869420d ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x342facc2 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76bcca91 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa64c3cae ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaf46d780 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd439c1f8 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe7bb5184 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4fb8fa18 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x573acb3f mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6bded43f mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x955461d1 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xde7af677 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1aef69ff vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x227c7d07 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8933322d vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8937c18b vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x99fd359d vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xac809860 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd309734c vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd638f045 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x00d925c6 venus_helper_set_core_usage -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03ffc5a4 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0ae1df8d hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x11da6342 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x12e08e9b venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1cf3840c hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e27977f venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x20fc03e6 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2438882a venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x29b61ed5 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2c0fa3f8 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ce4dd04 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d0dc486 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d27e0ae hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x46702702 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x478894de venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47e7dc04 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b206fef venus_helper_load_scale_clocks -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4bb7fc35 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d3a982d venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d7b50b8 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x55a3ded3 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x55fda62f venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x614a654c venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6451d510 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x65acb2c9 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x663e2a6e hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7dd9c918 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x80048bf9 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x81befcac venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x83b7f0ae hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ab683c6 venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c3d25f6 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x947fa79e venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9707dfc4 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x97bf5a57 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x984d8244 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9ed00406 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa144ac6e venus_helper_power_enable -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac20404a venus_helper_release_buf_ref -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 0xc0470624 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc975e44f venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd08342a3 hfi_session_start -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 0xd93bdd71 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdcc3e659 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7b2094f venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeb1c31fc venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf30495cc venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf9db740c venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5df49f71 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x24170ef9 vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x29c5e714 vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x2fbc3b56 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x33fe6c0f vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x5c21ab18 vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xfe72b5c1 vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2024e62a vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x55792d48 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x68cd1188 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7c492b3c vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7f4631f6 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa86e2c54 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe543eae6 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0d55008a xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7df70578 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7ea7e81e xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x862e08f6 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x91f0aff5 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 0xc4761456 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa66ae3c xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x30e6674f 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 0x248558db radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc8becc06 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3c7e919d si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x44465a59 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x68b4fea2 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x81524e79 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x846861ab si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x07de9427 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x22cdf1f6 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27594e72 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3f521fb6 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46f27e5e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6547809e rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74a65ec6 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7660aab4 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88cf942a ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91f9d6f0 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc36b93cd ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60862c3 ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd4315f95 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd5a11832 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe197b145 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe3116a35 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe4f11823 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef14e387 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x96921aac mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xbcad62d7 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x4902075c mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x5dccfdf7 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xabaf3514 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x3e75ad31 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0e64285b tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6035474f tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x9f9013a5 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x2e9364d9 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x77a70c70 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2752301f tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5d80f54a tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xf11be5c7 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00f446cd cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1815be29 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2222ab24 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2398d2aa cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23a909c9 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76b11383 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fd8ca5f cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a3b6113 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9495ccc2 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ea35eac cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa59b33e0 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4a2a7ff cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbfcce9ad cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc28f8bfa cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4226a69 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9c49d07 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde34c05c cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefdc5dfc cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1574cf3 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe2eafe0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x08eed695 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x80a5773e mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e55fa2b em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10982966 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x135788b8 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x209cdcc7 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a465d27 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x598e82f3 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b7b6f27 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b8cb96f em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x745922b8 em28xx_init_camera -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 0x9e340a57 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e3af218 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf089c6e em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc076ac97 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc368aad9 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde10afb2 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe200566a em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea424499 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff98f50d em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3f546d70 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x654408ea tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa6dc72b5 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xda6dd2a9 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2128669c v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5ef9727f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xdd12da99 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x04068264 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x06b298c4 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x117449f1 v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1c5e7636 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4e70b42f v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x62c6acf4 v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x81623481 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x816f963c v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb1d3ae53 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd1d8f34c v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0170a492 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x020b959d v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05a21ec1 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a9ec576 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a95df55 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cd0d454 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d70006b v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c9084fc v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cee7b02 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ec01d88 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x513414a9 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54ac904c v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aeababa v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71f83dae v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ced9872 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dd5cc7c v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e210811 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x905a4c03 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93d7a51d v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a1e9053 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b010cb0 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4e0b1a6 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9c86ca5 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa4a5385 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaaeff2e8 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf0d3b5d v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf2a5d69 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcd6e4e4 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfdd4415 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc37daa86 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6ddf3f9 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 0xc780f908 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce07f653 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe594c932 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd9b9692 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x129bb293 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x136bace1 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x254e7c06 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2645ff7b videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3472723f videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c9fd817 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x401a7e86 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52b6383a videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6422d160 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x647ab14d videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x692cc65d videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a0e799e videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b17fef8 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81b20ef4 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8576aeba videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87ff39c0 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f36cf01 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb650afa4 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8228203 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb3f7a4d videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2daebf7 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6f0eb1e videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb4d5f07 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfdfb3e91 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x37503d1e videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x41dc787a videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4763a97b 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 0x81bb6569 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x518cb9ee videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x87a5ce3b videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa0bb88b3 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x046b7732 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x070feea8 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c70af37 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d2410a2 v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f35d348 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x112b0feb v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11b6ff23 v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x140858e1 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x154d5b43 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16f50cf5 v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1991b880 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19c1a57e v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d04a6bd v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x275a827f v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37263b7e v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38dd39ca v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a306aa4 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46b1ee3e v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x511ff371 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52746578 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ce7f668 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ecc6fb6 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f155409 v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64d9a1c8 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e12577b __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73f4e3bc v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77e1b5d5 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7807f9f8 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c4869b2 v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80fbd85e v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89f79e23 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8dba2b90 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90609506 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94fa7d6a v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97a66d06 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b2a545e v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d1659ea v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e3b2fa0 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1bc16fd v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cc763e v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacdccf70 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf903309 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb74643e4 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb81a4f70 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4ee1555 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd351359d v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd60303aa v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6dcfd9a v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde689072 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1e2ee77 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec992cbf v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4bd8245 v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb612ff4 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd26c112 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1f40e3bf pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x976f2047 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xab76909b pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0cb55e19 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1545702a da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x16db340e da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x55f1caac da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa220fb29 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa318346e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xede4acdd da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x908976a7 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb246edb0 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb53c0f76 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xccd88f71 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd14dd8af kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde67070e kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9fb9127 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf19c45c8 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1efd7678 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x84fa7517 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd5539f34 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x164a33fe lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x21efe719 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x22198a3b lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x362b13ea lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x58f51318 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc3f8801f lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfc453337 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x24f3d0ef lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x43143432 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe112de0c lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0871a503 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x087c7943 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x15575236 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x155a8e76 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2725c94e cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2728150e cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ff0befe cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ffd62be cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46579afb cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4b44b80f cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4b49644f cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x551bffbc cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x56624f3a cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x566f937a cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6410d442 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x641d0802 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x669cbff6 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69a48805 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7cc5a3f2 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7cc87fb2 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d047354 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9756048a madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ca1e5f6 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9cac39b6 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9f7c3b52 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc75dfdc3 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdf94f8fa cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdf9924ba cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x193f5ebf mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8019501a mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x816cc040 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9216a572 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2acee52 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xeb155213 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x070c7bdd pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x081c019f pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x188ac793 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e6be0fd pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4cbf352b pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x84a3f5d6 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa575835c pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xba601a55 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcfa956b7 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xefc8a03d pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfc52301e pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2314d694 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcffe53ad pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x126d8539 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2184f4be pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x42a3c6f5 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x95a80848 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xea8ff93c pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x634abaee 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 0x06717da4 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e21bdad si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11f2635b si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15288847 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1baf24ee si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1be68bfa si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c3d0d50 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24b5b259 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x322a65cf si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35b89847 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x394a6baf si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3bfc4831 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4386dd32 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d5830fe si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a17aa96 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5caea387 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68440777 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ddaf8fb si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f6792ba si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x764b3e3b si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87b3e2b8 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89af3bb4 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94ed73ee si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9902a342 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cf8d8e9 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0943b7b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbacb824 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3b53fc4 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf81fb9b si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0ca91d3 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xecab9a28 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1af5064 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5e28fe0 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb9ce2e0 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0b207fb3 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x15d9bb73 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6a894dce sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x94138c51 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd731a013 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x4e80cce1 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x89284988 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x32f99cb1 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5de4f810 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x771c4544 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd0db80e0 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x25dad2cc tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x464491c2 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x974b16f7 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xdf9bdcad tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x434f3847 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe9b73071 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xed51d449 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5f68ac7d ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0acad165 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0d630050 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1bb48641 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x45edd675 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8f7b27a8 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb24b6c3a alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfc675f3d alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x030dbfb6 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0326f253 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x09fab42a rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x13b2f3c4 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x177e4577 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c179779 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d9d672a rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2122ba94 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x230e2a37 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26d9da12 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x359c76d9 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57655f11 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8cf9882e rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8f532dfa rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5fcfa04 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbbf1a341 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbcf9f626 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcf14f3fd rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcfb398cc rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd30980ca rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3f585fa rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdbf20766 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf318519b rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfff0e0b5 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0786b667 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x19ef7fa7 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3d9133c1 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x81a37d61 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8966f75a rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8efcef9a rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa1b24b34 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbaebff51 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc2a0ef55 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc2da8ad3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd16a7789 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf622938c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf716b22c rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2f32a00f cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x449551ea cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x54937072 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xea547d03 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 0x17e34461 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3362e93a enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3925bc1f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5f698f44 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x74ac3631 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90a0f04f enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe72dd590 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8c284ec enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1054df16 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x166f8e5a lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x25ed0e3b lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x303bbc60 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3771a052 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x65d30240 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8d610234 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd5015515 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x835dd421 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8e3e3f4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x730d7b95 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x96699eb9 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa9c33a7a dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xb26e818e renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xe12a7c70 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07b09400 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x112ab58f sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13324732 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1474519d sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x248b4479 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x306e29c8 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x308a0263 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x327ed956 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39ac9a77 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46c4ce57 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x482a6584 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4883999e sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4bec012b sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4cbc6ec5 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59ca1c47 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5e9fbb9a sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x675f9410 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e025ae9 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7944123a sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7dbe8805 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bfd332a sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98597b63 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a026724 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c5d86f6 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa14ede8b sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa152daf4 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb35ac7d1 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb885c48e sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc15aefe sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc3e5918b sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc925f9b2 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda8f5b86 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe16602a2 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe307bbe8 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe52bbb9a sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7848888 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3e6db2f __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8ab5425 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbd38579 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x00c363ed sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x24ae3516 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51aded8d sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x58626a25 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc15b545f sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdaeeb1af sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2789b15 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5d3b912 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf6a15924 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2d09e3ed 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 0x3f0b862d tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6d60dbf0 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7778136b tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x799f35a9 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8e6cfbdb tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x969c3d8e tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa55741c3 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc04704dd tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5c241f68 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x630d3a80 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa13a3afe cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3de2c64c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x43b08d9c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb049421a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd277eb1b cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1c8d8ec0 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x507855a7 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xed1e088b cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4a18dbd1 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7bce8c5f hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x006746a3 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0292f7d7 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x047948d2 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0bc2fab5 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ccbd472 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e2d8843 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f9a4b19 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17443095 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19c223f8 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d24ed55 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20f90392 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3369d6c6 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3773451d __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3841a07d mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x440969a7 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x471f089a mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x484b8595 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b7c3c07 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51580ee1 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51969281 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5992dda5 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d101550 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x680f2c97 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6911e998 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a28bfb8 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f1a5d94 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72a3ddc1 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x731c0ef2 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x750b63c5 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x772b1771 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b30b8a9 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7eb8db10 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8104b6fd mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x834c7a51 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86f9f72c get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a44c995 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b0dad57 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9dbcc5e4 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa344436 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf479b1a mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6da4d42 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb89c9c51 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc7459d7 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc52d6bee mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcae0bd3a mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce48ee7c mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcee1321a mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcfad8d51 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd75d3172 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf76d2c2 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf389fb5a mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3f95f6c __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb011d1d mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x14419aad register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x371f1dd0 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x515fd9df add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7e3ee2d4 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc82190b4 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x126781d5 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x378557f3 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6434635e nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x657961b0 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6c0f10e8 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x71be502b nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb05a07b7 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc0b70dde nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc4e62241 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8ed4fcf nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdf35af37 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe634e063 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf0611a0d nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4712640c onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa9287050 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x00074045 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xcc7f2169 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xf1ea169d brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x3e0306c0 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x06aca20d nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x12478fd0 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1963159f nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1adec222 nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1c644742 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3b5623d7 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4c29f126 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x55ee72a7 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5e990ee7 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x719599a3 nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x75aa0b2d nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x770db5a5 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x918e1bab nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9383dcbd nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x956f52cb nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbb6da7bd nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc4428581 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc70cb67d nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcdb9e3f9 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdfc2e8df nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe0037584 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe31aea3f nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe84be9e3 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee761310 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf403246c nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf71abbf8 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xeb776595 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0f9f78a1 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xcb75d19f spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0bee2ce9 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x31e7efe2 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x686d44b1 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6b41595f ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d27139e ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93fe408a ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x989377dc ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa2b7e810 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa4e2247b ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xabea64ed ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc821cb5c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xced2374d ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd432f5de ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe58d9213 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x02b49485 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1b1e1a59 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d725324 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1ef29851 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x51738765 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x725fd976 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7c9ca51c mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c00be25 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9298d0b2 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa5e44680 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xabe84f51 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdfb9bca9 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe50927c8 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6a5645f8 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb9ae1dc7 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7b3c26ce c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x944040c8 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb897e6a1 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd2f7be99 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdcb7a49f alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xee67d6c4 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1431a129 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x59fd05a2 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x959bd979 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xca718986 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x017c6ace can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06e16f16 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0dae6dea can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x102d0a06 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a6735a4 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b59e3d6 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x424a1b04 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4a5c8ef2 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f11252a alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x675fae56 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69ed710c can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a99c392 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6cee7f22 can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7cd227fa alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x87acd23e can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9df91c61 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa02552a7 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa24befb3 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2508fb9 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad80ba67 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb834560d can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6bae864 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3166d76 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe45dffec can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe58b02fd can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf044fe4b can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf169a65b unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x149238e2 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x17008f1a m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x985156e9 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x997c81a6 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcd86e2ea m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd4629ac0 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf6cfa0f1 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfd77f4e4 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x30fccd9e alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa37b06ee unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb69dbbcf free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbf51d072 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xbb12a0e1 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1f5f92d5 ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2327f9a4 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2e016487 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2eb862bc ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e502d71 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x502909f9 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55981856 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x628f6c45 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x79e2c0c4 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x841c26e4 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x924a6645 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9cd85224 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac928b7d ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc6cb3b7b ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe47d1bc6 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe99e52e5 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xee4dce9e ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x008a7003 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x257d45b2 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x395203af rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4aff17d9 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4f48c591 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x66ae7cd9 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x671e45c0 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x762f595d rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x91b95e4b rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9396bd5d rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xacc0b732 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb28e53a3 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc764ade2 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcba8d0ad rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe42916f9 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xee13822b rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x8d6dbb36 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xe01f70cf arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003734fb mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0423fa35 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a26c4a mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a89b2a2 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e93a3b3 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eb0092a mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ec831e2 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10fdcead mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x112d15b3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11348182 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x118f2a48 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1215fc1d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12717938 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14abdb9a mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1636e3fa mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1814f4e0 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18aa4744 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0b50dd mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b64abf3 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bb7fc4b mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc5ca4f mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1be858bd mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bf1202d mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c4980a7 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211b65af mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21f196cc mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x238e8af6 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2592f5e3 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25d9fd60 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274cffe1 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2852fd90 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28c59838 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2996d5ad __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d7bed09 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x304fc989 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3133f78d mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x326decf0 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x346b798d mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3512b37c mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39052d91 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3923271b mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3977e56e mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39cb9d2f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be5b339 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dd5eb95 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41870189 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42d6a6ca mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49ba47f2 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a14971a mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a340048 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52dee95c mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5396be25 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x551d3572 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55611068 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5742f953 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x613050fd mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64130ecd mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64843cb2 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64866f37 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67daa073 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cd317af mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d736cc0 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e3841b4 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6efcea94 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f7c493d mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd270e2 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7079bce4 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71ba5fd0 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x723bf470 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74053403 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c97500 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac828e9 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ae082dc mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff9a56b mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f8e842 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88dd17db mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8931e17d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8950b3a6 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aecb0ce mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eeacb1e mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90c72a97 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91aeabea mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96047a8d mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96831ab1 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99e4e793 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b44e289 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ca47d58 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2ed0b54 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa667fab8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac8f46e9 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae6dcabf mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0a0bc3f mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb22edf6a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3e85137 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb79478e4 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8269e29 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaa8087f mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd770536 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe803e10 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf099ed4 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c357d1 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0cc6bbb mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2953e7c mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3dd5824 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c9bc7d mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a7af82 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc81cb5d4 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9238d8a mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b0ac72 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc20e267 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc5f3238 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd963f51 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0089f72 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2949f41 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8933693 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde9f917c mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1bc8c97 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2663960 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3872bbe mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ece3d6 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec27bb01 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed9e3cb4 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf421b06e mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4db439d mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce6e8aa mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff29f037 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00db378d mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06287c32 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21c37e mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c08bed4 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8bfb43 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10bc4cbc mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c28a4e mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb1b11a mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc62f25 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dd2a3e1 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x208a539e mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2458399c mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2517ec49 mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x263a595e mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a978f47 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c6e3173 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30c8b51c mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x316ea5ab mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x319f5a57 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x338c9472 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351d52f8 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x381600a7 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x416a5ded mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44be24b1 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a2e78aa mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b58ab60 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c895f17 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e87efeb mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fca3c8f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53453853 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56194716 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5be07b0f mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de0a72e mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa3ce7f mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6367def0 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x686390f3 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x693c00df mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecd079a mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7196a733 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74b9abbd mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b37c4d mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a210c49 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c37d5bf mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a34aa0 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866a77cc mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a7bce16 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c8676f1 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8cd885 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f3a1c6f mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906bed79 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f044c3 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bcbe8e0 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c1b8960 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5155c7 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0cf9b7d mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa42347c5 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a966f1 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa79038c4 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8bb03c2 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4869fc mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1640bca mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb23582ae mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7ceae63 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6dd694 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6fbb74 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcac171f mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0b059a mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe196fb0 mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc82a951e mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8e30789 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96f47f6 mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9dadac mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc000d0a mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc2d2dfe mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcce8c35f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3759557 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd489d869 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b6862b mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd927751b mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef9a9168 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6a71267 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9150729 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9f09f2f mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfac6f522 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe46286d mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xdf81ebe5 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -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 0x196a98c4 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 0x93d1535c stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa3a61700 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdea03a14 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x443a42fb stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7b7208ba stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x87f1622d stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x892ffdf3 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9928f983 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0523682e w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x70edfc38 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8bcd1c8b w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9972789a w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x4b94e814 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x604adbd0 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6c7db156 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8fe9a525 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaced3b15 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfedff0e2 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8ac43b22 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9905582d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc3537e00 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd45a4e3a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x170a7696 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x36ec0a30 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e81c842 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c904449 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31515d05 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a8b7cb4 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ca6b90b bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x511cf289 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ec6564f bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x735b92c1 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78834f05 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89ad9da2 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8df460c1 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9823d8eb bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9f96ef7e bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae402e80 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9f636da bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5e835c7 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf44bd9bd bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf92bcb75 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xb189824f mdio_i2c_alloc -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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43fdf2ed phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x71b468e8 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa7891e41 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd3f74b4f phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x00d91b84 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x01fe4063 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x14f6f75f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x1b58c8ec tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x691c33bd tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x9034d1b7 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xa1fd0574 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xa3706e98 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xb339d4df tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4bf2c182 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4c750961 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5948f266 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc6f5145c usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xedfcd3cf usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x051e6e2f cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x406c938b cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x679a4724 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7da391bf cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7f5ad45b cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81d09be4 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8529d662 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe25ee5c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe5d7c257 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2efc279a generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa6993ec6 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaa2f953c rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbc546660 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe46d938d rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfeb6180c rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cbb9269 usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f5ad013 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1de1d224 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24a18a6a usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24f5eb82 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x316b8981 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x455cc58e usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47ee000d usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c2789a7 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e584114 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fe45c21 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x514e4226 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x668fc4c3 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67a5bdcc usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x788f83f7 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8258d4e7 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x886b62e1 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8894c778 usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x894fef1f usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7fd0de8 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa99b008b usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb25c7d5b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb84f94d9 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6900cc6 usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6bf4622 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd043b07d usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3208ef5 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda939e14 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0357602 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe727cf59 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee42f9e5 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee7c178d usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf11d12a0 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x967b0cbd vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc4055f8d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xccbbcdad vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe326244d vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2609813d i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3cdd7b15 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3f0705b7 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x43d9504d i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x496dd1f1 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6dbec554 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7eadb61e i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa279605d i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3ed5ff1 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa672a3cf i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb9e6dd56 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbbe20f96 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc05132b7 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2f2b120 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefb7c9a2 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1e3eaed i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xe35c1b15 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fc9e3d3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x897853bb _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9860bc94 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa942a702 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb502c0d il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a2b09a5 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fb298b9 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fc8f916 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x116ffdc1 iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x145b9c25 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1868af8e iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18f55e6c __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x223f94ce iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3296a86f iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a8ee235 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f5c11f2 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4041c8ea _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443283bc iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47952f8f iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48ebb41e iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49a02f25 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fe15f5e iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5152ede9 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52270bd0 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58729a9c iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f9a3266 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b5d5ee8 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e7340cb __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7220d4de __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72478249 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7331a770 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73626aff iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x763241af iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78ca223a iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86ad9c8b iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88e0b4be iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90c0a25d iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x981438e4 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98af00bd iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b107765 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0a604b8 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6e6c5a5 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa98c609b iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa790d18 iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae0d8aea iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae60215b iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb221abe0 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb2822270 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb31f773a iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9b7bd4b iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xba33e9b3 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfb7fa38 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc03d0a60 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc570263b iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcdf88f56 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce811371 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd963d958 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd0e7a3a iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd924413 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1c5e3f8 iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4c9b234 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeccd3751 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf08d4388 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf98197f7 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0caf6817 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x120a4215 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6055ac51 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x68be7447 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8b3b9251 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9366e9c1 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa9f7e07c p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc889e575 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xedcc1b50 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x21c7621c lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3f2073a1 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56f74d8b lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6ba3a822 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6e83198d lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x79cc9554 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7aa345f6 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95253c6d lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b92105c lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9e52ed5d lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa95e8f46 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa979f295 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb914234d lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc71057ae lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd8a429f lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe3a1ab53 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 0x431a8d16 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6cd03c3e lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x80f967b7 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8d58087b lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x91b93746 __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 0xeecbba8f lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf4ac6848 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf9d9d0f3 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x01afc3fd mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0601ca36 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d911c57 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e4a6c02 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x42e60857 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44df598a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4e2eb28f mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e423f06 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65426a1b mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f6e71c0 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7037561c mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x75f62a06 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fd10973 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89b74d41 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f7e436b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x952fe4f7 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9d4eb7b3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa42ce33d mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb370420c mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbd4d2403 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd597b79f mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe00e09c9 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe2952f23 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0cd29ad mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06a477fa mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0cdc9f42 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d0318ea mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a260f40 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f1cab64 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fd97425 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x206abacc mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x233cb29f mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e2cb4b3 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32920456 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x353257a6 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x395b7552 mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39771376 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b63d975 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ffe1159 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x454b52cc mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c82a568 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x598e8d2a __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c819656 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b52b651 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x704b1b06 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x706bf53e mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71fdb455 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x728ce789 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cac049f mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d810d48 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7df12cf3 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f42c0b0 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x849c2709 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8734407b mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8810d18d mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c3fd579 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90a860c3 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99eeff5b mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa081b0ed mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1178a69 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa695e5bd mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa821a75a mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9032cef mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa740bed mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb158a50d mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba6f7a1e mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc8877cd mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbeb66443 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5f2c886 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaf89dae mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd16d06ee mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7935a79 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1f23cd9 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6dcc259 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf57c3d99 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9f45f7b mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbd64602 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0145330b mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x42da2076 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x56006716 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x891f8c80 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbecc48cc mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc923213c mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd03563da mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdf66710d mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1e907c91 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x24c93a16 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5798ba3e mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x66d526f4 mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7f6ed79a mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd11e2e59 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfe806364 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00a42ea7 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06328f31 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06d86aa7 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x076acd75 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09927b9e mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09dcfdf5 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a7e7bef mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1080a97c mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1681f4dd mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x176d1e15 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b4b16a1 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d1f841f mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20657b20 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24d55580 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x271c2ca5 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d948b3a mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x433ab7ae mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45d16ce2 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49fb2c68 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d5a5fc4 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5167205a mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58e695eb mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59aa5527 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a11b064 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b15b0ae mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dddd9ab mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ebc081f mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5eee9ced mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62a462bb mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64b50d03 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69e4f6b3 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f659548 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ff25b25 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x718e1b99 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7546ec5d mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fe3840e mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82d78f00 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88eeeb6c mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8970fa83 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8fdbdedd mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x998e7bfe mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99e7a3f0 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ffbfbaf mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0818f48 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa59f313c mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa2b9c0c mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb72fb9e3 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7d07c3e mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba056a32 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb66e94d mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc3e949b mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1adffce mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd52801d8 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd63550e2 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd658283d mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc20977e mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf1e35f1 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe23ecf3e mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2425285 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6457150 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9113ea4 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7bb33e2 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc16d4c0 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x127d12b1 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2ba7b460 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x843e3484 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb847f8dc mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd3ce3c88 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf5087a97 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf50e9cd7 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x038d7f11 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1518e11d mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ab3b373 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x40bb4aa6 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x44cad885 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4feb52d2 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50ed4726 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x84c20b81 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa45dc614 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5737aa3 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbee2d175 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc72901dc mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcd99596c mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf06bc09 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7a9802f mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde77ac1d mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe3c2c54c mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe87507e6 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf6b3bc95 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x87a638fe qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x89b87974 qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9a0588af qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9ae2e3d9 qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa0c468de qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xabd98ec0 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb116f925 qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc5455c40 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf0e28c60 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x070eb602 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a2ccfad rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0eefbf75 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1569489f rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19b97444 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b6f5a5f rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ee316f8 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x310a301a rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39acec6f rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ac0ee4b rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b5e2525 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e30f018 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49b50ded rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50a083ba rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51457b1a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52ce386e rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52d7286b rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x734b62d6 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a6e1999 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86d5245d rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b037952 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90ad7a44 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95fe8d17 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x980e16c8 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b213157 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e42c786 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3ed5511 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbafa53dc rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcfdf871f rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd2dbf561 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6c12f06 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd894c265 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc257413 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc391ebe rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe65dedb3 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8def376 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeafb01a8 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb2e7fd2 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf107d504 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf479121b rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4e30c47 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6faf20d rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7ab5904 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7e17581 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0527ec07 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x118ce13d rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x15171c62 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1e36410a rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4a6fbc4c rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4bf5631d rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8772ec08 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99de24ad rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bdcceed rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa08091d6 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa6f8aeb4 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xac32c784 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb299148d rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbd9b0678 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc725fa46 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd25acf2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c4d7c74 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10f5497a rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14a730fa rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x169975bd rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19ce5c6a rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a61445e rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e18eacf rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x203981fb rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2295db15 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a97a968 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ab0ea34 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4552951f rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b331988 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ed60dde rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4faa6e0e rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54faedaf rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d05b952 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x620e3bd1 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x632844e9 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66a84927 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f461613 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7232cf93 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a0cb1fa rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8121e801 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b5aa658 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ee3a6bc rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa011d0d8 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa257f904 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaec69e8c rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb195775b rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb236ce98 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb260e543 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5b6c5ca rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9f39e1c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb0457c3 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1a1d9c4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd5187c19 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6bac575 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe08399a4 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe662cc32 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedf3d498 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeeb716ca rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0394f83 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8d10f1c rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb119579 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfed4e7e0 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2f4c3331 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5cecbc8f rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xabd5c482 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd6546dc1 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xef377047 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7f4fc683 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc3d593a8 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xede40b3c rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xfeeaa908 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x072bc810 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x26245d17 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x26d3396c rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x29b63837 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x67a63f24 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x72a7aaaa rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f0c3a5a rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x88f069ef rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8c0cc9a6 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e0c61d5 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa70c072b rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb779ae4d rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc20ab13a rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8d5e1c7 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xef951885 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb0e33bc rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3da5ce3e rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x609de3ae dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb671331a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf2e02e3 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16efb2a4 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cd223d6 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35053636 rtl8723_phy_rf_serial_read -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 0x40fe3b79 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x525b2d75 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f496bc1 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f2c3b49 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x766dc154 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b56678d rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x831519f0 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8417e07d 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 0x91aa2e9f rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa11aee40 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa99105ce rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3831dd7 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc339d1c3 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcdeb9425 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc25f931 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc6d47c1 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde6f3398 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe3c8af53 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5c146bb rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe89973c0 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf96833f0 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd7d8401 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05bff373 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25384e61 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2595d422 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e50beed rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3490c278 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ac32433 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e6c9551 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x524da3c6 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a0ef9fe rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6052b965 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65a89764 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68f956a5 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7364312a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73f8e4d1 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83156cdf rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87c675e5 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x921f4750 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6eef077 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf0bb96a rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0cd0ae9 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5bc2c3d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2d2f3b7 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3ff45fb rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4a255f8 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe61749c rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x05e58717 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 0x405deba6 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5165aa82 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6e0cc27c rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xee3a7c4f rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x15fa1715 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1f4f3b64 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x83627551 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb58f5784 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7d799d59 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbc25c72c wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeb2aecab wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00607b73 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0112f0d1 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07d3cd76 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08e81434 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f6238f3 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e5bec8d wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34345361 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c60f841 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x471adc27 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4966dba0 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49b040d2 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a9dcd1c wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ad8ee46 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e67390a wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6606dc52 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71e4090a wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74f0dc0f wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78652838 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e1d461e wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7eb93e08 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83573b08 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86e9558f wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x888abefb wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e76d1a5 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9302d3e2 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9401c844 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d38886e wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9db08501 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa02ee8ae wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb108fcfb wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1dd0732 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb352800d wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc00ffbef wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc092c807 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3f42215 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb707e5d wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3c9b548 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe486fba0 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe506171a wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe61887d2 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3d6efc4 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf443306e wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf94b5fce wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1f1a8e1b nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4e6b8c84 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x57757bb7 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xca132bd5 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1469548d pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x92d8ae04 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc4af55d0 pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xda06cca3 pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x098c230a st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0a47c9da st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1903fad4 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1bd6c8cf st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3822a452 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7c581d92 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x886cfcd2 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa9ecdc47 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x248016a3 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x84d5a364 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xefebc383 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x00d1ed80 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x672b35c8 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x92a96864 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 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 0x65024a25 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xbd035319 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x179fa2e2 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19762526 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e9ab7e4 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3338ebc1 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37a22513 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d36a6fb nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x427d8914 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d9481f8 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ec6d267 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x540077f2 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54d853c6 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55fac5d6 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x606dc2d0 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78d1c740 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x790c1c10 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93a9d853 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93d78bdd nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b7c41ab nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9be86665 nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb36d43f0 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6bdc8ff nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba28cdd9 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba3910da nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb0151c6 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf044900 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc603e630 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6e1866a nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8c29541 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd32f92f8 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 0xd8c37c5e nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe271c072 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe589a8bb nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9d10bc6 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebce8040 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xecfbfda5 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefe1b281 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2c35002 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5d4e7db __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x020ea5ec nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x05b81bc4 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x095994b2 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x18c0ab69 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5973a0c0 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad728ee0 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb0b58b8c nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc94af3ee nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdecf3f4a nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe23290a2 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe8498112 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf8569fb0 __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xf4f4c04d nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2545c3a8 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x52aa0b2d nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x59c4c43a nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x68049b25 nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89543160 nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9442c117 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x99177e92 nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c06f077 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xaf25df3d nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcbbd4f4b nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea5d89f8 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x99a2e414 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x13f63e18 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x4f9c82c4 switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xe2910dfd sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x1cbddf2a ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x5dfa0de2 ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x92d97cb2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xbf227f33 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xc031b4d5 ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xd21a54c0 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xd3e46823 ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xed8ffc11 get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xf49dcd4e ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xba1e51bd reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xbcac55be devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc7997508 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe9a106bc reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x224063dd bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa2f8f41f bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf4880dd4 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0bee35bc pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xae459edc pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xeed63594 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x681d4598 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6e081b52 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x72723295 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8ac84248 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xadfea7b2 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb59df236 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf6e3134d ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0a0a81fd mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0bb4b0b6 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0c71d49a mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf4f8e994 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf94f532d mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0377e0af wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x07588741 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x55351e22 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6f40b255 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe8070abb wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf2106d2c wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x96a3a765 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7083a032 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb8bb25bc qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xca376c1f qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd9ecc7a3 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe9715ce3 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xee8ee2ed qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf3dd4caf qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x33832d8d qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5b4fe0d2 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6403cb39 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9eb299ca qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xbb7d1821 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x96352193 qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x1aab6326 qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 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 0x8537bc34 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x049f8e4a cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c8e3607 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cdea979 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x208c7f03 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28bacea9 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e070673 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e1b1756 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34af7432 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3564d685 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b16be8f cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c17caca cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c1ae44b cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52fd1a45 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x530e0850 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58d080ad cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59f96575 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bcea9c5 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fcd4030 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60aa4d53 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60cea1cd cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69e33532 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b37d524 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f832efe cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8545e892 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87541a21 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9559ab6a cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x984095a2 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d0995ab cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa588cb8b cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa92cde83 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb101b13f cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb159e04a cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1ba1938 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5145349 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb407513 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc47f69fb cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc57ad4ce cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce0a40c9 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8f49c9d cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7f80c25 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef6b2e26 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0704b54 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf162ca20 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe2e4a40 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03043100 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x04b69799 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0d5e8441 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ccca47a fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c060419 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x759e6df7 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d95ce58 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6591ec4 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba4e1133 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc7cceebc fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce2f56f2 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde61229c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe081b038 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1fe1570 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf4656c13 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc984702 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8f120dbd fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xacf752ae fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0df112a0 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1ae0b2b3 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1b7bb1ec hisi_sas_debugfs_init -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x242b99ef hisi_sas_debugfs_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x28ce6b94 hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2c5e59fd hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4013ecf6 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4c749ddb hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4e3974d8 hisi_sas_debugfs_exit -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fb41a1e hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x59e08e3c hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5cd94e69 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7beaf5d2 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7f5fb73c hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x81f0e56c hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x95db64ef to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x97c00d40 hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9cb40a07 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac72bd2b 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 0xc36263b4 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3ab8e76 hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc5e7d880 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcdc6d2b4 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdf23b232 hisi_sas_get_fw_info -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 0xf71b1a32 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x07108a85 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c26efd9 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6acc4ecb iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xacba58c2 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xddd458a6 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf20f56d2 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf94cdcb8 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x22bbc44b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x037dcb05 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0450aace iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bb74343 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ccb747d iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19744172 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e43be01 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x269add1f iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x280ead28 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x324d7917 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x334f776e iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x382aacd5 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a2feb2a iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e55f30a iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fda88da iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x450e93b7 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d3e0443 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51dec4d3 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x595ca2f9 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bbb85a8 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c0c8211 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c8585c6 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6dda39d4 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82ec2a9b iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8989db5e iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b3d6e6f iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c23c111 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90504f37 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0204e84 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa202397 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadd9b2da iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7a13cd3 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd7fadb0 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe932295 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0803476 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9778b71 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd3f7df3 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9efeee2 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf047279 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfcc36a1 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4f6fd8e iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef6fc740 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeff60a2 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ab6464e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15057c48 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d0a4c5a iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2090345e iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2171e158 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f833a08 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3de4b943 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x45d4da75 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c665003 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72924d32 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88c15f2f iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e1d8000 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3c5348a iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb0024294 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd7e5fd6a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4e2faa9 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6deca20 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e5a312f sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3586ac5f sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fabef87 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48d41736 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e4a8e6e sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ea0b991 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x544c6e36 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59a4b13c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x782f181c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79c6e910 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x800c8070 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8dc3d37a sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e0cdd50 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90fe6461 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95bf8e84 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e0c7001 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8432d95 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd6a0d9c sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd6ced12 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee47a80b sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeede7229 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2c2201c sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6cc2518 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8bc8fec sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08a230eb iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f06f883 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24051028 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d6fca97 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40492eac iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c5d725a iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f5ce578 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54704dcd iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54d3c409 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c30d0ae iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d1e3d59 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5df78a97 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62875fc3 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x638654bb iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64b5cfd3 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 0x6de34acb iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8617c61c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8778b22f iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c2db533 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ce4f49d iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9435e4b1 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94464d7c iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3f0eb2f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa0b209e iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac6b641c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafa568a0 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb72da50e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfec8b2e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1c353fb iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc20b86cf iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc316e467 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9181b58 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe29fae8d iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2fb7f2c iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3508559 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed54461f iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2ad028d iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbf3c011 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbfe8c73 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x23cd2d09 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4f9d983e sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5e954fad sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa4a0819a sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf78aca6b spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0054810f srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x05eb4720 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x48e45dc0 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa99833ef srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc0512e3f srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd7d3ec06 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x181829e2 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x225e8d17 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x52958fa6 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x80137584 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x91385243 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xabe21004 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xca3fccc8 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe1624501 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe4ac5530 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x088a1237 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5330fbdf ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6e72e594 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8d560f79 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa253184c ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xca5fe843 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf1aaa24b ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x33debc5e __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7b9f0a3b siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7c99d6e2 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x958b40da siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa6d6c6e1 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb237c2a3 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0d85e159 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x102987ed slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2118874b slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2bae16a0 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e28e53f slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x32cf8067 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x33e161ef slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x38e3cbef slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cdc13f8 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d7de0f9 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x43f5e58f slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x44096de1 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4a3487f5 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x586ff2b6 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67856b34 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70cddd01 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x856a3c1d slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9026b028 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa70b3ed5 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7341d30 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa997cc4e slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad194b92 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc570e723 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd60c9c53 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd859f169 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf5ef5dd3 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x50e6c215 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x18074189 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x23ec1b20 dpaa2_io_service_deregister -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 0x3af8f10c dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x15da5bb4 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x43b04580 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x532fcdea apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe91f1d19 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x03c9a66d llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x0679b34d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x24210887 qcom_llcc_probe -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x7e773088 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x9f88d703 qcom_llcc_remove -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xad3516c4 llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xb534ec76 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x400dde58 qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xb08b2130 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xc9c43bc0 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xda5de173 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4690ecae sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6ab2b45a sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf251d302 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x50aa6eb8 bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xdfbb6431 bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xf8216571 bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0d2e7789 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x55078b8a spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x94b49460 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc4b377cf spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xddeb9ea1 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf6917637 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1f6fc903 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x322caca9 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x429e9735 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc17c007a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc5436a43 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6b21982f spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf22c7d93 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf9530ce8 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03d26aa4 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a55955a spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x181a9471 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x22c3706d spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b15ee06 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x483b35c5 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55d6fd2d spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7999ed8a spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86c95668 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xac6ff3bd spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8cd45c9 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9e489d1 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcb38f30c spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf262abd spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe1e26094 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe65694f4 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9a2f5be spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xff2e6855 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x94178c43 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x00feff38 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ac04868 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ae9b4c4 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1062d81c comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f878614 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x28837c8d comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c6db018 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x306a346a comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3b4717c6 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3f5518e4 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x425b5605 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d3ae920 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x510eb3a3 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x53cf4a6e comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5ad9e530 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d017a30 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f0c39d7 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6e401ae5 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x878c13f1 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88e44546 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c3d6bb2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa10c4e2e comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa22c1682 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4595ec8 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3121a50 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc7c6817f comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd8e39068 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd990b769 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe305ee9b comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe5b2c65d comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xef8ebb75 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6d2b500 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf6efba79 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7bfd78e comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf98fc9cd comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfaec6929 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0f29aea9 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x37164097 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6a183e6b comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa287f4a5 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xadbc41ed comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd4ba8a17 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe961f708 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeeac9b74 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1071a628 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x898dda91 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8ca0c3a9 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x96d89e1b comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc2d93565 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc7cdf4ca comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x6a4a8fb8 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x568179f9 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xadce824e amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xd7851308 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x01977c20 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x10d32c70 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1462948c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x170801d9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2a6f4b18 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x407c396e comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x487feac3 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x56ce3f08 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x669f2932 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd58d0b32 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd7fa2237 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdad84be3 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe2b2fac1 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x13114bfd subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x18ae0b0e subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4ac490d7 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xeaf59dce das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x007f6cf4 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x02551d66 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05aa958f mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x33865424 mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3dec18c6 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45d422d9 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x46d8257a mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4849d8e7 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x70f5c632 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x72b83989 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7d96f9e7 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb6e1b328 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe95f9230 mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xebc61885 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf0410eb6 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfda00fbd mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x4f7c75c1 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xda56250d labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0b868881 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0cf3832f ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x52985b38 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x563d7d9b ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5beb3e4e ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x65ba91db ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6e87e9d5 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x79bf6a1b ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7e407913 ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x90da1937 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x996b556b ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa8c39091 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc64395dc ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcac4d807 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcadaf72d ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4ac5664 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x00f8e088 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1cd12ef1 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7fe24b14 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa037ed11 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe62e3cf9 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf1938bff ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x16ce35fe comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x755875d0 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x92e166e5 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc2209202 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xea37746b comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf2010844 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfc0571f4 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1eb3802e anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2403dd03 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5b54360b devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6b32f0c1 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x717b63dd anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x730efe8c anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7802e286 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x838e0c53 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa71ea107 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb70b10f9 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc801d838 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc8b7f9e4 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe692ed3c anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3de40fd7 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6b30e6c4 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x92bf8fd9 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xfe2fb898 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x00925617 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1087a41c gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x297c6468 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2c5da4d7 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x385c87c5 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7382e1a6 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x89364587 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa0d877f8 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xae59aa14 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb1f89455 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc9bf656c gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xee93f975 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xff113a1e gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2658b72f gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47e4bc3f gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x69fb9977 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x77b85585 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x78a4b33e gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x808c04dd gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9497bbc0 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9cb0c96d gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9dbf5428 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa2ff5b29 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe5a8b63a gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf2ab0490 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf406c67a 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 0x3382038b 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 0xa58f0d13 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x6681807c gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7020fe76 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x2db6e21c gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xb8d3fae8 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xfc7ab3fa adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x02a7bc58 gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0cef7ed5 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0e5aa185 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2738c90a gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x36239ee5 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x4306c9dc gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x460b50ec gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x479b437d gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x4be6a834 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x657a9722 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x762da07c gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9b23434a gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc45d16c9 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc9589a12 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xcf2f7aba gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xdd2853ed gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfd08ec4c gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x165c61da nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x1ece8504 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x68ff810d nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x6beba56a nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x837a49ec nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0xb9ea419d nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x24f0e76e amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3d278309 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4d8db834 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7b63b1d7 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7e8e7051 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x87a6c83c amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8e4c6c4b amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa44c6834 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb470d2cf amvdec_add_ts_reorder -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd05416fc amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd187560f amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xddbb2c38 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe57a9eb0 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe91d0b92 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf02ea079 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf1b5af2a amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1e730ac8 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x43d58c87 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x53a101a5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x54cfc7ee most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x65fd6150 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7581ffdd most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7f533c0d most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x85bc7b29 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xadbc3fbf most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xae34bd0d most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd21097bb most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xecbc124e most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf27b689c most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xfa1de8fa most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x03209731 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x05ba8027 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x29dcae58 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3d2ed8c1 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4b207de0 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x628a751d spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6fb5ac00 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x73df4d1d spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x996c9ce6 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9997d946 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9e4636cc spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae050b78 spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf50b1b7 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc975f3f1 synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xda67788a spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf721d583 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf881bbda spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xb0a9b1a4 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xb916b31d i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xf7bfc090 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x0d82e9b6 umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x1836a786 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x213a54be umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x6f9b6a92 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x9258755e umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xa5988db6 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xc18fe12f umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xe0681aac umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0af9b18d uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0bbe6d6d uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x179eeea0 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1bf52e84 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1d439a43 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2077d496 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x20ed1250 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x23a8fc4e uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x23dcf2d5 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2db27739 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3b51e18d uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x44a7e1f2 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4713a0d3 uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4cc03b7a uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5205a076 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5300c943 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5431f78f uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x54a62c76 uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x54aeac76 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6df34b73 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7277f849 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x76d059f3 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7d9247d0 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x855c679f uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8f5131fe uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9e012fbe uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa0161220 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa119345d uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa16263ba uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa5bda508 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc9d77211 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcdf41f50 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd4207256 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd6b86f4e uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdb542987 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf3407737 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf96d8665 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x460712ae whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x15b04f95 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2d9f3cad chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x3e0cb0b0 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5cdc2221 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x719b1d13 chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x7ba8b8cb wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb62d9ef1 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x0838832d wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x08b87be4 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x0fa23a41 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x8c4f7315 wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x9916e6a3 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xa4d27dfd __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xd84cd6f7 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x0e348dc2 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x16c8f2ba wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3996ceeb wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5507c8dc wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5869649e wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5cde2c73 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7c24750d wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x83ad7d5f wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x901342a9 wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xb97691e6 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xba5535c0 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xd1258ecc wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe4af3b42 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf14f5b38 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0bcd78c0 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x16c3b304 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x27123cd9 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x29090a89 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x41fe74c1 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x556c6c63 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7817e379 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8375261a tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8523f46a tee_shm_priv_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x91496fc4 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x935cf292 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9a262b29 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e69f39a tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa956016a tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaa5acce5 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaff34770 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1c8c67b tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbb1919db tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc5d8eef2 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd69690ae tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xda8f073b tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3eddc73 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf49c8014 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf574164b tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf9cb59aa tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x22feb6da uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x92342155 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x99c8e40f __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5e954f4a usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x808cedee usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5952e4a2 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6a3f37f5 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd863d009 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x66a92726 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbf9c7357 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc764838a imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe28c5ff3 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xfdd8f070 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1b46e544 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x289ae2c1 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x34b6af9a ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3b204e83 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5f9fa533 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd3ab1e50 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0dfa0f17 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x255744a4 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5a7d39b8 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa1b2c56d u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe4eb2c94 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe78cfc22 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06895005 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2aeca246 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e25a62d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43f0fe30 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4978f26e gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x56902889 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7705b4a6 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8cb21657 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x92b67eb1 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8307c4d gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaaa8afe5 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3155988 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef038661 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf5ebe6f6 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb69a152 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x217f34b8 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 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 0xbe9964ce gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf38f17ea gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7c2953d6 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd30fcb00 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x359a8677 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b52aca5 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f38a71c fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6bb57f5e fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6c0742fc fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x71c26319 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ca0eebf fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8b3caeca fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90f2b165 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 0x9b852496 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9d2587a5 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 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa78299d7 fsg_show_inquiry_string -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 0xdc296e29 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdcee4870 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7a5d7c7 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeb2e6b49 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 0xfb0490e0 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11c62dce rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x14ec9027 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17dacc54 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x24352705 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x28b850e2 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2b6b20de rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x399d1215 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d6c99df rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6397d5eb rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x782808c9 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8110e9a1 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9a6ba8bd rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa89a90fc rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb921cdb rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd7e5cdb5 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x017c8b02 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x030c2e18 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x069dd3ed usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f812fb6 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x304cc401 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35c20fe0 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3925dae6 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40c71ce0 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45024d01 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56bc1fbb config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65b411b5 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69e6978b usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e0a6b1d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x769add05 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79d49ed5 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fead8c0 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83a88058 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x932c1fb0 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9689690f usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa19f89d7 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa81df7d9 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadc5eea6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb22d37f7 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb3b4a7c2 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc36783dd usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca4d4edb usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb18fdf1 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xddd2008d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4b2c451 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb5361be usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7c93906 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x06effdaf init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1f8fe326 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x30697198 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3b731a13 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4ba329c2 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x563b3663 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x687afc3b free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe168619d udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfb5ca2f6 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00a76950 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a6f8f9f usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f8ca3ca usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1700459d usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22422471 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45155606 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fb347e6 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73e69bb0 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78196fec usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x880df54b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92e06141 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x939b563a usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab108887 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab48914e usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab6fc96b usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf7fffef usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb64d8f39 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc72e20be gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd12f1c8c usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd74d469a usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf421ea2a usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf51d4e43 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfda88689 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfded7b63 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xffe90a5a usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x44fc46c2 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xbff6f41b ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3de59abf usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54a98e39 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8b55d739 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaaa72c32 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7576374 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xca4577ed usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xce7afdac usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xec59af45 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfe17f23c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x47023ada musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7243b655 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc462063d musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xde5dd01b musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x18f3e324 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6e155d81 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd84729e6 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe3f84ea6 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf428b2bf usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x5cb3f989 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xabd083a6 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06bd77f6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b30640b usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fa12cba usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12c66abe usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21244dbd usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f858589 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35518c7c usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4585203b usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70b4e1cc usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f609183 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8188182e usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8591678b usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b6b217c usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90f5b6f5 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x91a2af0d usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9475a002 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad9b1526 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaeefee76 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2aa6ffe usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde0d1dc1 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf1a3c646 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x3bd67d83 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x8c127755 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x70697361 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_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 0xe828fff4 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x041eedf8 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a4cd825 typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15fb62f6 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b933e53 typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21b58c55 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x298e2011 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b77a6a1 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x341db2a8 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46d06228 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49475833 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c7c600b __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50bc76e5 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d94e332 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e35bec1 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f4e7729 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x737c87c0 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80b1d627 typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80dfadee typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x92534a79 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6a3793a typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8de5eaa typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa043405 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xacabeb21 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb191df2d typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb49652c5 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9a7589b typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd74cdee6 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0256219 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe639cabd typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebf0fc98 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed3bc6b4 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8c295e5 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x255d241f ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x776394ed ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7ab1736c ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd4479252 ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf2587ac2 ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x03931ed5 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x10ef333e usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16797992 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2e7df3ef usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x330119f0 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x582930e0 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x867db59f usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa391c3bd usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa72387ca dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc6fb788d usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc7ddf137 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1089b32 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe9af521a usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1355548f mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x02e125be vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x217f1901 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xccb01200 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd4a75dfa vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x40d97e95 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6008a6e5 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6c2a1f38 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x87d72c6c vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8b760468 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x94e1c2c3 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1bee78b vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdae89cad vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfef05c7d vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x898ab7de vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xbccdeaf0 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01fb5ba5 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02f653ce vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x090797c0 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b6c9fc9 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c245fd7 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1078192f vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1277b8ef vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x168acf32 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a463e7a vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1de0b8f0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x202efa74 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x215a5b6a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x299b9212 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2bfd7690 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2edafd60 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x435e7862 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fbdff43 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x518b1a39 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x579a4ba2 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b064fef vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7532ef26 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78dc2968 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x796a45f4 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c648a93 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97902e7e vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9da3fbf2 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa214150c vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2359b22 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabf5282c vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad10f950 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb529b790 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb7e9462 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd96fec97 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdac23459 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc2273da vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe65bcb15 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef2a8da2 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfea3c22a vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x06d6fef4 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1a70884d ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4ee5654b ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x515add6a ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6987472d ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd4ce53af ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe1b2db18 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd17482ab fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x94bf1a45 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xad5708ec fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc5e3c328 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf8187dbe sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1de3c481 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2109a0d2 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x303cb908 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x53c93b68 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f4952f5 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x88303d23 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9648e40b w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9700bfb9 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc3800205 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xda0fa1e7 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf6eaac44 w1_triplet -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2035bcf4 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2d04a02f xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x816b7221 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa1b5001f xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb98f4eff xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x00369382 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xabe41c57 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7bef5b08 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8de9a7e3 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xced24542 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x25744165 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2595bff1 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7d3fb5ca nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8cb345f6 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x953b60eb nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa51bab10 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcfd08f04 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0159a616 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03054b8d nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0379b216 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03c69ec3 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x040988d2 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e24856 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0848f0ef nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0abfae30 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bbc538f nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce5c738 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7102f8 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e29b10a nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e6def8f nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f91a1cd nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1000229d nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1267fc71 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14a93a29 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15aa3101 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x171c0b91 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be29197 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2840ca nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f570b05 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x212a4fb5 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2161495a nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d99752 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24785dfd nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2518a0b9 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26d97192 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28444a63 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x292bfe27 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29b2a2b4 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a380378 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a8b92c9 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c81f36e nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ca31c00 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db8abfa nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31f28856 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36dc040a nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ad6819 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bff3829 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c5b8425 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cd37848 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x444c0e26 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x470ddcae nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aa66f97 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd92e9a nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf38896 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a9e676 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5287fabe nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x551d4536 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555fc5fb nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55c90a5e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5618e482 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5995304a nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ec0076d nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb76260 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605cb595 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60c428c9 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61d69575 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6205a118 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62366abd nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x627ce103 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62f97e8e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e2b4b8 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d8283b nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66123554 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68611595 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68a4dc44 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f0d0f3 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d2ecfed nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fcb0fb1 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fdf6a8f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712551dc nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x727b0161 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73bb7932 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b88bb4 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78651d0c alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81b91071 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x875057a0 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89097977 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d11ce4f nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d27c848 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b966cd nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9226c206 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92812eb8 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9288b639 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94744bc7 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x957f1aff nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9905b4cb nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0bd6fbd nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0be024b nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa472bd79 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4fdad2a nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa72cda48 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93c2ff8 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacccc7a3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad344508 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb07da00b nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb10ee4e9 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86e36ac nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb88f34da register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb96297f nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbce81bfe nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbff3745c nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0ed289e nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56c7943 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc844fe4d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc95dee6d nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc95e491c nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbbec9f3 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce5a1d80 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1ac04ab nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2e955ba nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e78fa6 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd429aab0 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd64361a7 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7ec0383 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca79331 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb434cf nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdec0c671 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0178c71 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe48357d4 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb6af51e nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee391a8c nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee92cf45 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeea82c99 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b4ecdc nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf334cf37 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb0c0cc nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe63dbefa nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08772b58 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1152218a nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1551c172 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b1da160 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d1c465c nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x220404bc pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d652e32 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x321487d2 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33a3ecf8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36fc5f40 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38aa5772 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bc28e41 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d1246ab pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d2c7be1 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48fad213 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4da00c5b nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54bf37ff pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5591f747 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58b3db9e pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c74becc pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6195598c nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d82303 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x658598e0 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7013fa00 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70444b66 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71a2456c pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x735e8acd pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b4ddf67 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x810047c7 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e72f292 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f6feeb8 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90c3fe8b pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9128b53a pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92eefa18 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94d22860 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f58066c nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa364aa5a pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4edeacd nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa90bf46 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaca14e2f nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb23b2f4a nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3e467e2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4d0211e nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba6e68a5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd6e1b6 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5aa3c53 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8f4d0de pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbafc7a3 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddadd0e3 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf4d278d pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe39c6d5b nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe768ea8d nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe90f5316 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb5a52e2 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb7a0fec pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebbe1132 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefb067a8 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf06255ca nfs4_init_ds_session -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 0xfdbd1a5d nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9bfed30b locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc25026bf locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe323692a opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x34d19499 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7d842480 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x33b4bb2f 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 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x76f013d8 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94766ba3 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa135c94f o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaf54dd0e 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 0xdacc623c o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xef65469c o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x302e6b66 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x34068a50 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4b9d2537 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 0x88d4a754 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91289a4f dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa68689a3 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x24f3ae63 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 0xc7297b90 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 0xd5a6b48b ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd935ec1a ocfs2_plock -EXPORT_SYMBOL_GPL kernel/torture 0x1410794f _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x83203c6e _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xb892fa1a torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch -EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9bac6873 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xff88eb99 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x47e6898b lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x72831b25 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x441a4811 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x67994543 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xa1f4ffb1 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xae973846 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xdf82119b garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xecc64a4f garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x07b67e33 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x10bce972 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1367e35f mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x5633e5ec mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x8143d675 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xeeb31b82 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xc4c86d82 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xe175a9e2 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x7773d0d2 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x848edc9f p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier -EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier -EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xd229e475 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34a221c0 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x35ea4d1b l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81c5a4b0 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x892e7054 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbc05c533 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcac1bacc l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcf854c08 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf70356b l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x71526b88 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0358a0ce nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x18ef20f8 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x25502f64 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ec0aeec br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61d38c75 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x70375627 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7678a9b0 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7875265b br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x821065e6 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89d9e599 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3834156 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc41f44a br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc2a01d85 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe7186540 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe7e0fc29 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea6410f5 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeda3c91d br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf1b5bebb br_forward -EXPORT_SYMBOL_GPL net/core/failover 0x0144bf73 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x3b9a22df failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x43d1e502 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b61ce45 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14dfb99e dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x188ed281 compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a8683c5 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1eae6225 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21fcad7b dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22359cf3 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2666b931 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29489cca dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c8eeebb dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3217e675 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x346c9517 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3847b892 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ba58c25 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c3806ff dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x443c4c44 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b57bca1 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ccdd9c dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bda7c96 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x619efef2 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b525c5d dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74d9fae4 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x816892f6 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89a50eac dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x90960e31 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bdf94c9 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa67551c dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb123016c dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb147a53f compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5136a39 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc27eeb98 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc53f370 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd95cac63 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4d1e7069 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5ae32a88 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa8316b2f dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa9bda870 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbfe706fa dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xff2ac8b5 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01a9e234 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x078a875d dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08f146f8 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a75c3d5 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e53e0e3 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37c5444d dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a925e07 dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46cf8523 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53c3dd6c dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b9ea8d0 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7edce266 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9b482063 call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0ab587b dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb70bbb1e dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb766e66e dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe69485f dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbc8d531 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbdd1067 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xddf0a624 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe37ebd53 dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8023e0e dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x5395d2e3 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x5a89525a dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x84bc2721 dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xe3be0229 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6133ef36 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x66005d57 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7541795e ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8e17a747 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xcdf90ea9 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xfbee2694 ife_decode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x029ed286 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x88dd8cb1 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xcc291693 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x08c32bcf gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8cfaee73 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x005e706e inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1ef0dfd7 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x73cd7e74 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x77779c2a inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dbb0d86 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa657803c inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2cbc970 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6edbe70 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd1bd8798 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x7df752c3 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ce02539 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13f5804c ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2807157c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4b6679b0 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51172601 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x826f6830 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x932ca818 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa51f2299 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb52c0a3e ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5791411 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xced53e60 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd101427d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda297aaa ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xef71c1c8 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7c49c1b ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfabaf49e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc289fdb9 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x85e564c9 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7f9bd08a nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x8878a5d6 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x321ddc64 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x585100af nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x64a1a9f1 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8c010098 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd6877397 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xd0b00170 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0dffdd69 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3347613f nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3abe3a60 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x23b2aa85 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xd8fabcdf nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6d11b687 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa12131a7 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcd48b331 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf781298d tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf8ed670e tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x559fe30c udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5794704a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x58174647 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6f5d9e09 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9fa8ddd6 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb7f54ee3 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe8b902b1 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xffdda76a udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2e5d61b7 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8eb2da45 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xaf9ccccd esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x369df3a8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5b7dfcbf ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x98afaaf8 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x90ff6aff udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf29e6870 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7822fc4d ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x064c0df7 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x57069322 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4dd3770a nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x547efd9c nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7c90f179 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9351ac01 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe11621d0 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xecb4c4f2 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x57d7a019 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x425c3103 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4a839865 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb6ead0f9 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x060f2957 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xfeb0a1d5 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x13283722 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29f2da55 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3bc12b07 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42c0150f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53ad1c82 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x55aec256 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6034324a l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64d446dd __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74896907 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87045076 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaee2b754 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb55b239f l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc926ae6 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcdca1e98 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd38cb8b3 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe968043a l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeccee561 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc962a500 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0f1c3ff6 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2253b167 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a110149 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f786ffe ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40ec2025 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d84e7b7 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x530c6a87 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65421275 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a5826db ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dcfbfe2 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x92554b49 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa6d05f63 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab9f1204 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbcb350c5 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2bbe1bc ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2dd751a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45e717dd nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6b922a4e mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcc4cd7f2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe4686de4 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe8df4e73 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x007b44b9 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a486195 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x41cd2c33 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68166cbe ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d253539 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b1f370a ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d1666a9 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 0xadfd00e4 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb3764df6 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce2facc8 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd11cb779 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdae04df5 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe4873ccd ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5f9a808 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf07ad46e ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0dd3a2b ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf282c16b ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf8d3c203 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x033550b1 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa0024b08 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1e68558 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc4ef8da5 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6620e9d2 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x94c212b6 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9ea86880 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaa644bf7 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xada63689 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0704eebe nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x074e7890 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d9e1468 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dec053f nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e6d4259 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed97839 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x217340be nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26258970 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27939fce nf_ct_expect_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 0x2ac7cde5 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da1926d nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2de3b537 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f7bc27c nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe985fe nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3251cdb2 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34ced8d4 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ae46a88 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c518c02 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fb8f8ec nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ff50f52 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40ee029f nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42ae460d nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x465fe7f4 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x482247f8 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49f84625 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b9262a7 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e25c1ba nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ec5d96c nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55c8c32d nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55d9d860 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5693271b nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d3cf618 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e73b8ca nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x625bc380 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62ff2043 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x651f4aad nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68c8d8e8 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5d7d6a __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x727cc86a nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74721346 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x747af401 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75810a81 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7725bc5b nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b9999f1 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82e5ce6d nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x836e5dbc nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84197f44 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89d30277 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b5d9087 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c30a852 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9386c759 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93fb9b35 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97dd452c nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa268deb2 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2a7f614 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa341fbf1 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5ac6597 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6fca304 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa97e055 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1e0a27c nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79d2efe __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba64a5dc nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaefcc4c nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe3cf4b6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfee9752 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc87227fc nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc89e1ba7 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcac3709d nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5734cdc nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6237b5b nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0b6ca6d nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecf0410a nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed93fa76 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedc39db7 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7b1d20 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee943a7a nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf353cf53 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf728f515 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf796e32b nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb351f9c nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb5dac44 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xdd4a663b nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x41fc04b2 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xabb3538c nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x178be893 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2616c865 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x49a590b8 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c7b378c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x631a9d36 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa8b58854 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbfe61b5b nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc17aa737 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6731ac8 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf12d54d5 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7144bac4 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x02a89350 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8f70b1ed nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb006b3a5 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdea6c413 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x45d7a13f ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56c2b820 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6130d266 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6bbfba8d ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x965f8bf9 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa579a54 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa8fcfdd ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8adb4919 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x3928b87d nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0be666b0 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1861b429 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x666993f1 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x04ce4b0c nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x20550bcc flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x25788178 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2fba7962 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3bbf9643 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x65bca740 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f13d59e nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9fe01eed nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3aec1f8 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb5c6690b flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbeaf75ed nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf67bf6e flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0fb2e3c5 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1c2c882c nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2ad892f4 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x45d6237a nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xab78cb0d nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf2ebbd16 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03ddbbd0 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1310d85c nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x191e1e99 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ada3200 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1af7e062 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2188543c nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x400e2e08 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x574b9e1e nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5edf5fce nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6900a424 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6edbc75c nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7013e3cc nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xba62a71a nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbaa4f1da nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbfcd33f8 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 0xf63f10b1 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x16c0cf5b synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x342d7702 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3f7094d9 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x404b8830 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8731da18 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9d368a5a nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xad42f6c1 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc21616f4 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc66eb783 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd515668 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe9507568 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01194a61 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04cbd052 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e9ebcf3 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x251138a8 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bf68035 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e459f0b nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36221ed2 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3cfd5809 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x491b991d nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bc29435 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60fb8c7d nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x678da16b nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70e779f6 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76572e6d nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b3257cf nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d3464b3 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8fc85739 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x932f9360 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9816563c nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b9ea53b nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e09bd68 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbacfdf10 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd436f80 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbdf26ad4 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc466d119 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4b03eaf nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc687ba88 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1bf130b nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7d81243 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd71e93f nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe355fac6 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebdfd5ae __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeff8939c nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4268180 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8566e9f nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3928b016 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4485ea0b nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7e367cbd nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb15f93d4 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb721357c nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd05d89f5 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x01c648d3 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9e2a0f56 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf5ce4d12 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x225ad3db nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xa67fa972 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x677bf6ea nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x67ca819d nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc20756f1 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcb15eeec nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x028c12d0 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x60f38a7b nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6e956b08 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 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 0x073c929e xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fd17c18 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e90f6c0 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3537167e xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46ec1fd0 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x485cd80c xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c9c2652 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 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87d6bbf7 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f7fd53f xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93c2c996 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b27f8fe xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d50c51b xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9dc0f554 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe81deda xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc55cbb6f xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8dbac1a xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9af6aef xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf8ada82 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd21367c0 xt_compat_match_to_user -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 0xee99273e xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd375f46 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x026976b5 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8a9bbd73 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7daf7af9 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x88bb4958 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9dd9d160 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6bd55181 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7e4f75f2 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xda82e64a nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0f16b535 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x57461d6b nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80cfbb1b ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8d28db07 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9c39f1aa ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb7abf29e ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcbf11350 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdcdae576 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x453f57e3 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x57dc3701 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x7dfd801b psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x8ce4324d psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x40ed3a36 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7d262884 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa294ef86 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x05011e87 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x0b7a1b9a rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x20a3654c rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x26d69889 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2882c87f rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2f0272d5 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x3405ae56 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x37c9e09a rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3bf5b1ac rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x3f496f05 rds_conn_create -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 0x598c44e0 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x6ef2b65e rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7c12dbcb rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7d100c1f rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x92966396 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x98bfa4b3 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x9b3b91aa rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xb63f8135 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xbf8a8374 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2fd8849 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xcb6adecd rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xcf006e8a rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd219259d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd699b15e rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xd79ebe8d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xd918c34c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdc8cb430 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xf62eb5cb rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5467ce66 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x646d0570 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x770fb91b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf28a7056 sctp_for_each_transport -EXPORT_SYMBOL_GPL net/smc/smc 0x41004eff smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x4edd880a smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x60dd3729 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x8dc8823f smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xa325e15b smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xa3d3c007 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xb12377b3 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd2e5e650 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xd8b79551 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xdc9aa633 smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x14aa10bb gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1dbe82ce 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 0x5de6f649 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x78dd8210 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a385b5 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x023e595c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x027e6daf rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040b3be6 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0614006d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06eb3244 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075de195 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084fb680 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac63f1c rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b186f2e xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf6e6d0 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c5b23ff rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d0067f2 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e6038f6 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec2216b rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f8ed1ac xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1131af00 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bc5d96 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17f0630c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x180284a1 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ad67e6 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a88acda svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce99967 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d485b24 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d4a128a xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5b2950 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eeee2e0 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ffb8c23 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20f01933 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2365f296 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x277e88ac _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27abdc5b svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27eecb44 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29499d6a svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4d5e17 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0d9d81 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d27ee43 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dd8cda9 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309aeffd svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314ca698 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b2352a svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34390120 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343eb201 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b566a6 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3749d8a2 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38d9d125 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e45545 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e58c8f xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1c64c1 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a52355e rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ae40835 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ba4db22 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bede7a7 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c39fe7c xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e051db9 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42323a7b rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c628fd xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452dc232 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46566647 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465b2223 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46c199fa svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4745c2cc rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9ed20f xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c766bbf rpcauth_init_credcache -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 0x51bcc457 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x524fa70b rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52a2405f xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52edf471 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548c3a17 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566437a7 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5669cb5d svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c9c62c xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58fba0bb rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2b2b30 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aae8018 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b97d9ba svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d19c5aa svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da6b967 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ecd8e16 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff2882f sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6069acad svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60f815a8 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6138f169 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6260ddee rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e16283 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ab8cef xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b054a2 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b20905 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664a7645 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c5ed54 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67bacf8c svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b61cfb9 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc0ce74 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f5c13c7 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f77ebfa rpc_init_pipe_dir_head -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 0x72a77fc7 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7431fa37 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748d0d00 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75c05396 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771f7f63 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77564877 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7796f717 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3a4b71 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1e36c7 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e40be4b rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f9823d5 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8040c052 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ec08e9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82bd9eda csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8360def9 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a41a3c xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849cb463 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e2aa2a cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87245609 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x877fcd02 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89602891 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x896b83ea rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a380b68 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a64e3c9 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1efef1 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf45e2b svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c0e01c8 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4eeacc auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e630235 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec4260b rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9378edc6 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9772f137 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b37e8b xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9939cbaf rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x996ec9e6 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d28800 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccbac09 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cdbad43 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d748f9f rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d958639 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0e9867 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fbb5d4c xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa11710cb xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d11db3 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37ea41d xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f71590 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43cec34 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa561d526 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7bbc8cd rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d29983 xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa21b9e0 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab5f2864 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad83a2bb svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd91ecb xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08d4440 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20d791a xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23e0fc1 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb250fa33 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb252ffb1 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38282a2 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ed3bc4 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4aaabe2 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb92aff19 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb962e0b4 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5b99bb rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2e777c rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdbdf02a rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2cb4f38 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e4ade8 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc605468f xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc629b00d svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6e9cc5c rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b5af2e svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8bb8dc2 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9dd9535 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca9d8659 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15000fb svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd276d430 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2fb70c4 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd36d4150 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3795ea7 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45f7163 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd615c26b rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd63ad0ce rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d42c75 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd744d296 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f80291 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd99a6d71 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9ec9944 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda5a857e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb44ab7b svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0503ca svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd05f7b xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd75c907 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde83e39f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8250ba svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc594f1 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06df848 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe080cf41 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cb3e9f svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe10c51b4 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14fad54 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1519263 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3d207f8 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46ad051 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe554283e svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a8ada7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6a0b588 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dfde19 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7dc1a90 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea7af05d rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe7b436 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee5e17e7 sunrpc_cache_lookup_rcu -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 0xf144eadc rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b1cfee svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46f1cd0 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf483b978 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5102f35 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf58e180f svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf69d60e8 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c8291f rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c6a62d xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb14480b xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc5eaee3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7b4727 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe965f27 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/tls/tls 0x6cf137e5 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x8627d0c0 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02438f6a virtio_transport_set_buffer_size -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 0x06c61bba virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b95883e virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21b10e47 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26eed9d0 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ffc210a virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e39c5f2 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x402860ca virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x478e73ee virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49da9033 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4bcfd9f5 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4de3e31d virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53911541 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64cc1df3 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65eb832c virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6700dfd5 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d80f1bc virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72fd6c1d virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74d7c995 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x810f1bd5 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81a89dc5 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x84cc3c66 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x86132800 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cfbece2 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98605ce0 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa3322db virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb34d16c5 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6741241 virtio_transport_notify_recv_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 0xbdc8bb29 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc25f4836 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc28f38de virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc700aaa virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd6eb35c virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf96676f virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd25a97e6 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9a5ef1b virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0dc1b16e vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b9f462e vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x343c2499 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38de470c vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46b1dd98 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5cb3eeb6 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86546892 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e2374a4 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92cf6417 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97a0b22b vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e0e5933 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1375ad7 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8e0be0e __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe96fd22 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd82663c9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbc34b8c vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf40b40da __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb5ddd57 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/wimax/wimax 0x31ab8412 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3678f2ed wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x584fa978 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x678a7951 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x6d9f7bce wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x6f7101b0 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x7fac5fc7 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8b45eb6f wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xac2b0036 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbcabe003 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1e73c88 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xda51cca6 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf0488e4b wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x15a053d9 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x226bc801 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f485d0d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43abafe4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x481050a0 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c10619b cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5277021d cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5434479 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb16e6d05 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb40bd62c cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc864e556 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9bb4017 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdaf672fc cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe807da24 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf77ab175 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd1787db 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 0x2a4d2046 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2a7cbcab ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8b7e87fc ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8bbfade7 ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0x4fdd1654 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 0x12a04704 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x228646e0 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x56806e09 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x58750041 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x5cfc4454 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x76a43936 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x9a281021 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x9dc4244b snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xc33c5f28 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL sound/core/snd 0xd7d59f17 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xe1bb3c59 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa0f2a8a4 snd_compress_deregister -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xb8ea1e86 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xbbe09ef1 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf7521e91 snd_compress_register -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 0x1260f55a snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12b6e40c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4caae649 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a658279 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6854a9a0 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x71e4183f 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 0xa16649af snd_pcm_stream_unlock_irqrestore -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 0xbb51ce21 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd4a7bb08 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf4ffa7ee snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x22039fcb snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x443f2356 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x59984134 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c2b51e8 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c8c9474 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa6fdf64e snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2d32fc2 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb6194bf2 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd60ccfb8 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe0a56e05 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb03f145 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x5a77fe56 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x63bfc6aa snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3af4dcfa amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x444e69d2 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5c822403 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x79e13be8 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc4ce72e7 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd139d730 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe6f84afc amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0091ff98 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x014c7ef9 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bddca78 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dc19a2f snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11d6c51e snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c386f3 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18a93e3d snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bac3d1a snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e7f86d8 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20561c6b snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2417f4ce snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a631c6f snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b03502d snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e099ae6 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ec6abeb snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3256cd6c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35a2b787 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38004ce2 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39fa82da snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4619f743 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5027c7ab snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5214167f snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53b41687 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53f3e7bd snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54ad6577 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x595adf30 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60f0d3bd 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 0x6b874235 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70681047 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71cc4f7a snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x766d016d snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b3c4999 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bcd9a8c snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fbc5667 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8850ce61 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88d2d452 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x900406a3 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x952ddc0a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96027e9a snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cdd6a82 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e0e713e snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e28892e snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa12c4d6c snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4a4ef13 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7620403 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7ad7321 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa89ac590 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabd6e0cb hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad64df09 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada1701f snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb051818d snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1a08330 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3fc1b93 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb63279bd snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb98699b7 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99c0663 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9fbd5ca snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbde46d7d snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc091026e snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc85a359d snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9c6d188 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc79e524 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce627fce snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce915f5b snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd462e02b snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda0546c3 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd04f90e snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde81d883 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdece2759 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfe22d70 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe00e3a8c snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe27480fe snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe579f964 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe599c67a snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe79f2419 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7d68d1a snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7d9c0a4 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9bb6f1c snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfab31134 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbdcdac7 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfde3db2e snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe07dc22 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x19189b92 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8b7a8732 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa172c18c snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x11a5f68e snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x170ecf18 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x244cec5a snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x44af713f snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7e95a708 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x93ae55b2 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05f5bcbf snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a3e2829 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b226a68 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ccc8ca2 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f191c8d snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0faae55a snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x116183db snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117fb68d snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1200d83f snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12dae489 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1344df2a snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15e7c5f9 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16402488 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18886f40 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a515dae snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1da849d2 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e5c63fe query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2151762e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2234cc6e snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24311b03 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2504a6d0 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25d87a5f snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x275c3cfe snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x276e0472 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28221a81 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a8a13b7 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cd8e46d snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dc6e6a1 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2df4f793 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e994142 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f5ca0d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x362218cb snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3996fee3 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a5233b2 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b936f21 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e309c21 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e338c8e snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f5ae405 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x406094c9 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4075b3c3 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d1a025 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47051db5 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x485dd6b9 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49a461f1 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ba008c7 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6f382a snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c9cf5e1 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cbf65ef azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dcfaf51 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4efa22fd snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x500d6ac3 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53f6e475 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5592316a snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x589460b5 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e67dec0 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6137bd73 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61fe401b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x647f2539 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64874a64 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ab209e snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x675000c7 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x685aeefb azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0e0a2d snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b770e54 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c5cfdf7 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f1b31a0 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x708e5264 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72b46b6a snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73c9c66f snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a6ee870 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad34464 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b19b888 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ceafb1c snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fa0d43d snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81bda5ff snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x822da851 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86e8bfbf snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ba66671 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c4e8626 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906f323a snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ab3914 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9262cea6 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92bcbc67 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x982e0262 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99f7d45f snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e69abdd snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa03ccedb _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0e0156e snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1be1a38 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa57a139c snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa628ebd7 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaba9bb53 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafc45945 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1b79b7f snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba02a244 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbac879b8 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdff0680 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc14da531 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc21142a6 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7d1b55a snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcac7b595 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd006c38 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd2c5310 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf5d03ef snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd142c77a snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd16c2e91 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd78991a5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc602bb2 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde98ae49 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfc4f635 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 0xe514ea8a snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8849c4c snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebd2239e snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec416d6c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedf8af01 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2cb5234 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf469196f azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8a6fd8c snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa3c6fe2 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaa27195 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfde36810 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19017ee2 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b806265 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b9287bd snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f11acc0 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x304ae323 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e3b84ff snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x436aa929 snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45b7e92f snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49cfdbf7 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a325083 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x602a648a snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d7975ac snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e5022c6 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 0x832e303c snd_hda_gen_path_power_filter -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 0x8736d863 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0a81dd5 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb41c8f8b snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbc9d1ee1 snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcbed21ef snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd62b1a83 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefbe16a3 snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6c20bb8 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x13376d70 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xb72b2322 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0cac89df adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x73b23774 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8390db56 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x84092d24 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa1053998 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa7affe33 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xba330ddf adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc35ad81a adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf205ba7 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfe7e8f0e adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7e51e892 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdb5530c4 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3e00ccf5 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x95b3ca62 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc7163499 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdba9999e cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe1e237bb cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x28faf5b4 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2916ec75 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7b0f31f2 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-da7219 0x6370fbf0 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8693c39c da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc559d12f da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x71e091fc es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd9c7f67b es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x428b3ac0 hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x3f1147f8 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x6273b743 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7b0693d6 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x916c841c pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa8593e8e pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6c872d7f pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x96dc2834 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x31791c04 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x40e41f54 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0007331c pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0710a15b pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x13a644cb pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2a6d6a4b pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2e372bfe pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3144bad4 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbee730ba pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc318d763 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -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-rt5645 0x2ea630d3 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xbaa4b8ed rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x607e7ccc rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1208b8c5 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x45a8fbaa sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x88a17f38 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xeafc8d9b sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf843d6c6 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x0487c230 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x822ddda2 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x017a142d ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x133f6fdb ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xaec1a989 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x6e6b11aa ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x653ecd10 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x74ad1614 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7d4d21e9 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa937524e wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7bd0013e wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa5d7f29b wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x1c1945a2 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x89c5f228 fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf7f7b0c4 fsl_asrc_get_dma_channel -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 0x00b975f3 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0480afd7 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x122d8a34 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x32833841 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a5400e4 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x681f2613 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6d5fadd0 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75a61bf4 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7ceec122 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83a1807b asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa698c66b asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcb66bc90 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf31b357 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6cf5315 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe36e73f1 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xec266902 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf8957add asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfd5a13cb asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0ce55f89 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2349fcea mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3c8a128c mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x401b7e1d mtk_afe_pcm_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4451a826 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4b9e060e mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5735718c mtk_afe_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x616e7e8a mtk_afe_dai_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68bae0e6 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6eadad9e mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7affcb03 mtk_afe_dai_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8ac4ae05 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9d1afd66 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc7a8998a mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc814f005 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf7edeff mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcfc6189f mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3abd3ccd axg_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x627b99c3 g12a_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8a17749d axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xad52312e axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x216268ee axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2375c1be axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9258a990 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb0e9b620 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xcbc9c69b axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xd6361dff axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xf2948bf2 axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x8d714adf axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1b5d53ac q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x60ce0bc1 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xac1f541e q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port -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 0xadd27fc8 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 0x151ae9d4 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x61dce678 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 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x78acabae asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbc46c83e asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xea6f5aa4 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf743634f asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xfce538fd asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xf1d5f6a1 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04e47ed7 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05b705bb snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06f08f9b snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b73139c snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14adba4e snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14ddb71b snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1707dda5 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a36aa6f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bdf1ce0 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c185c69 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1a09a3 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d713ed9 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e94e7e6 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23db40f0 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2565b26c snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26b87e5c dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2738cd88 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2895b613 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7cbae7 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a882760 snd_soc_find_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b27927a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c47777d snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c7efa9c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f790307 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fb18137 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x312e1df2 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3337aa41 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3378a0f1 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34a04a6d snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34e20845 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36a4e5b6 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37cb9ec4 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d8f2aa snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e9be5f7 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ee3631f snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41dc690c snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x420ff676 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x429ccfcc snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x454d2142 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f565e1 snd_soc_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46954227 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b0e6ec3 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc5289b snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4caf6ca0 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dfd74a8 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4f3af5 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f12fe90 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb9bccb snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511c9160 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x519ad4b8 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d5e237 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b31e55a snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x637e1c55 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6434ef7d snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6502efe9 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bdb6994 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c47857a snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cae4ecb snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd01737 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8aa4ba snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fb4ee71 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fe719cb snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705a8b50 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a81aa2 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73387f62 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74a31851 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75805fa3 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76689e28 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d1c80e snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a92c205 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b3e0595 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c492788 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82202db6 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8408833c snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84591f8a snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87f5ce29 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88dfb550 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89af3ed3 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89fe8e09 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d740f76 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f6e47fb snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94f8b299 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97fb6f31 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x988a3431 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98990f1f snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bb11c6d dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de3d231 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef668e5 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12d3cf0 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa234e2f6 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa40f5827 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4cffb58 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa50ce3c2 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa82824da snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa4be485 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadfddebf snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8dfc4f dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb09e8cd0 snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb15b4ff0 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b559ef snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb31cf4af dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5553bd6 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb55e89b7 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb631b800 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6c7ef03 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8197677 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8309bdb snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8defcca snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba9fca34 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc9439ef snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe204b35 snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe490c29 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe4d56f8 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfcc343d snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc01322dd snd_soc_component_read32 -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc05b8443 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0973d0f snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1f022f3 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc259bbe2 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ec8f20 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87f552d snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8b6f64d snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca15e824 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca2caeff snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca2d9a2f snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca5981db snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdcdbb61 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0cde91 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf745e5c snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf865fc5 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd119f48a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd20d7d37 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd28a0ec2 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2cb9d32 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2cecb0e snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd42be941 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd473eddc snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7956e47 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8242632 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd992f82e snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9ba4ec2 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda82b5a5 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb55280e snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdba5c2aa snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe01c5d63 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3f8f9c0 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4cc61ff snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5134e1b snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe56c8dc4 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe671aa8c snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe769f0a8 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8a0be23 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe96fe264 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99eebb1 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead842db snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef413266 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0275843 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e661e5 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2c1c1bc snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3aee8ad snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3cd2e32 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69bd60b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7d567f7 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb50f5e9 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc0b4eaf snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc2cdc03 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfde15118 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff61d889 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x46122655 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x82190ccc snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc3b356ae snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd38e3bdc snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x14a26800 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d308818 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x666377c0 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e3351fa line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7bc26bce line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x845bd501 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89631dbf line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9898f590 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc3ca8a67 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc73f4336 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc7db41cc line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfa7da02 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee0210d2 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf7a1b412 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfdff486c line6_init_midi -EXPORT_SYMBOL_GPL vmlinux 0x00180655 xhci_mtk_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x00263433 fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0x00352deb kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x005112eb __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x0063f92c dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x0064bb3c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x006619ed virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x006744ef led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x007824af wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x009495c0 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00b66d11 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x00ca5b8b bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00d834f3 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x00de1365 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x010ff785 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0113deb1 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x011a3b62 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x011b4724 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x0120449a devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0138accd kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x013a1565 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x013e9e61 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x01468eb0 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x014fd665 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x0155e745 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x01598785 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x0165ed8a rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x0185880c virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018fbd76 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x019221cf md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x01936660 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0195b31f kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0x019f6c8e thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x01a45891 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x01a5ccda devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x01c120c3 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x01c4ff56 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01c8cf15 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x01d36e91 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e88647 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x01e9956e regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x0202f566 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x020daf90 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x0214ecac dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x021bcb2d rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x023ea797 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x024280fe devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x027334f7 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x027d0033 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x0283f0ec fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x028c2eb5 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x02918755 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x029542d5 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a0aede phy_get -EXPORT_SYMBOL_GPL vmlinux 0x02a23be4 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x02d2ee22 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x02e124ab blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x02e2ff35 fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x02e8dea2 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x02f47039 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x030e0c6a regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032d411d get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034d3535 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0372bec4 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x038246da devres_add -EXPORT_SYMBOL_GPL vmlinux 0x0382556f tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a80673 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03bf9ad5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c475d0 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x03cb5b25 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d5a695 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x03f656f2 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x04023edf thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040cf935 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x0418092a sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x04298d47 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x043d1cb2 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x044aaed7 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x04602163 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x047d1b19 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04954646 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x049ca1d8 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x049f85b9 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x04a0776c iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x04a41fff powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x04b9bfc8 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cbd544 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x04d68ef6 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e519be __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x04f27928 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x04f805e2 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x04fa7f19 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x050596d0 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x050c97ef i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x0512dbb6 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x051452e1 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x05151fb3 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x051d61ba device_register -EXPORT_SYMBOL_GPL vmlinux 0x051f5b5c ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052ea3cf blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x052ee063 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x0539d0cd ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x054816a3 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0552bedf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05595017 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056bf816 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x057fa512 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059752f4 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x059968ab ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x05a40c1e ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x05a58aea of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x05cdc3e9 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x05d0de21 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x05f2268a lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x05fe172f kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0x0609dbc8 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x060db729 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x06128882 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x06175d8c fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06428803 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x064967ca kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0650a5f3 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x065bd1db housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x06648de3 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x066c4473 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x0677a793 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x067cf29e bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x06898165 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x0694f8af irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x0695f725 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x06add70c udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06b07e93 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x06b736c6 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x06d67fc6 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e52cad __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x06e91333 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0728abb5 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x073e98ae cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x07437031 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x07493b20 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0766e23d ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0791de17 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x07971bbb virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x07a36e4b ping_recvmsg -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 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x07c794a7 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x07ca84c2 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x07ca865f serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x07d8912a wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07fd5d45 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x07fd954e ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0824a16d genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x082c01b5 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x0840d247 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x0850ffc9 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x085bc203 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x086cf24a acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x0871b9ba pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0880eef1 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x08a1f04e usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x08a8aa9f perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08cf3e55 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08deed2d devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0914e84a device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092e7aaf pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x093531ae led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0950f8b4 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0957e08d of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x096db98c regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x097ae245 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x09890cb8 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x098a66ca dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x098ef326 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x0990f9ce sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x09b3e0c2 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c161e1 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x09ceda9e trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x09cfc69e edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x09d240d2 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x09da1465 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x09f26c78 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x09f2f3df crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x09fcf252 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x0a5edd4e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0a6b6fc3 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x0a6bdf43 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6c665d cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0a7587a1 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x0a863336 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x0a8e80fc vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0a9d77d9 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x0aa97b20 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x0aaf7dc1 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x0acce6b6 dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0x0acd3998 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x0ad4c7db tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0aee7307 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0aeeb851 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0af4e662 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0bfd96 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0b1715b0 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3cb5d2 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x0b41907f of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x0b438f34 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b559d78 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0b614499 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x0b743f8d ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x0b83bf1b virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0ba5d0e8 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x0ba911ff devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x0baabb86 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bc56c4d blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x0bd17de5 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x0bd27021 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x0bfbd408 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x0c04abbe bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c184ea2 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0c22285f __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c35b982 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x0c424669 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x0c474222 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x0c49b853 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x0c7f7665 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x0c9649e5 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x0c9e8604 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x0cb6ff9c i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x0ccb505a acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x0ce1e635 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0ce594ed iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x0cf41e2b regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x0d0cf119 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0d1702dd nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d34ffd4 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x0d40d8be ti_sci_get_num_resources -EXPORT_SYMBOL_GPL vmlinux 0x0d434292 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d6769b5 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x0d8d371f sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x0d8d65aa tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x0d9857b7 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x0db4938f dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x0dc11d70 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x0dc363d7 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dc73530 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x0dd08dd0 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddc4075 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0de6e855 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x0de843dc blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0de986fb regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x0dedea35 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x0df89c9f dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e008023 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e164741 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x0e346e5a set_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0e372cc6 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x0e3bdf6c ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x0e5c2c01 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e71371c usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x0e71873d gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x0e89ea8e fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x0e8edaf4 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x0e930eeb init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eac1d52 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x0eb00f77 ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x0eb06023 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x0ecb9341 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x0efa7b10 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x0f06f9fb device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0f1688f9 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x0f2173bf kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x0f226c1d skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0f2d8663 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f3619f1 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x0f4e7c16 xen_set_affinity_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0f52e655 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0f57fc83 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x0f5e516a crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x0f6ca743 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x0f6f0e21 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f841a3a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x0f891149 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x0f993978 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x0fb73041 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0fcc3241 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x0fd36e8d acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0fe7cf15 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0ff84777 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x100cb0a6 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102437e9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x10496b46 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x104d0477 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x1068e44d perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x1074351f of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x108350d8 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108c066b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x109e6e20 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x10afa80b device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x10be25a6 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x10bfcc06 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x10dc07e2 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x10eaadb5 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f6b315 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1106f89b crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x11106c0c ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x1112aff6 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x1139fc73 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x113f7078 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x114dd323 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x115d9661 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x116dbb67 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x1182a8c1 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x119ae766 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11ab9d65 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x11b32f65 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x11b6dfbd iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x11bfe9c0 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11d3bcc3 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11eb04f9 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x11fb02cd vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x1208b39b usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x120c816f platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x121376ee tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12240b91 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x12292272 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x122f87bb debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x1231b9f5 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12673b70 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126e8c52 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x1278d802 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x12828de2 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0x12892a10 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x12b59738 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x12b5f77d dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x12d09cce hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12dd91b1 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x12df9165 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x12e13791 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x12e233f4 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x12f46608 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x12f6f236 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x1310e567 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1348758b bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x135e5a04 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13675639 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x136aefc5 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x136eb1b3 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x13702e84 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x13786adf vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x1380a4ef bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a301f5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x13b86a6a bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x13b8ffa5 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d10d20 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x13e8d56f of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ef0e05 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x13f36c2d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x13fe7ccc watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1403dba8 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1422a7bb relay_close -EXPORT_SYMBOL_GPL vmlinux 0x144cf134 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x14675603 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x14842fe8 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x1485a307 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x149d97e0 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x14b1faa9 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x14b7754a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d3eb3f __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x14f42bb2 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x1507b687 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x150cda99 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x1513d434 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x152dd07e wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1543ce23 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155f93de irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x15755065 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x15767afa relay_open -EXPORT_SYMBOL_GPL vmlinux 0x158b140e sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x15b4702e fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x15b51b5a __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x15be48ec event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x15d5ad2e ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x15d8e459 devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15e879b2 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f4d475 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x16030333 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16180154 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1618fed1 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x16260e93 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x162e67ab platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x162f1a49 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x16355f2f acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x163e20af dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x16517c39 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x165677e4 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16807eb7 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x16ba6c76 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x16bfb7b9 inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x16d087d7 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x16d5ba3a genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16e1a01b pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1706a2c9 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170ef703 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x17133124 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x171ea71b kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x173a68ee clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174d2c37 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x1768b438 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1798823b usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a35ce4 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x17a90d27 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x17b1c7a4 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x17b7f928 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x17bd2918 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x17c929f9 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x17c9e235 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17f3be9a crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x17f3dd7c ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x17f84d8a fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x180c9c77 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x18173615 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x182f0a60 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x1834a436 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x1838fd14 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x1841ffe5 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x185a9660 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x1870c42e devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x1877bfe8 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x187978ec pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x1883fcdd sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1887bd4d of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x188c50a2 devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x189a892d of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x18ad3597 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x18b78491 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x18c257ec inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0x18cd98fa ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x18d01961 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x18dbdcc1 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e939f9 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190604ca extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x191e4bd3 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x1932a169 spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x193c6ca5 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x19419183 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x1946d87f mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x194f2f79 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x195eed47 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x1966f558 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x1978db5e kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b665a0 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19dc3d1f cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x19e028b2 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x19e50e8a housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ed9143 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19fb6bbc kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0x19feaca2 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1a038230 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a27795a acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a62b009 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x1a63be18 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6fe3eb thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a83967e ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1a857e1e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1a8910ce tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x1ab4f03f fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x1abd0020 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x1ac1ffad power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1ac6b618 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x1ac97059 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1acdb5c0 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1ace4b0d serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x1ae97bb3 pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1af755a4 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x1af799e3 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x1afad398 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1b052c5e __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b55c531 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1b5d270d tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x1b862a1d devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8c5456 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba15bbb usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x1ba37fce genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bcc00e7 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x1be7551e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bfb30dc __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x1c17eeda i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x1c18b97d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x1c2f71c9 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x1c34610b iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x1c347537 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1c3d3b90 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1c4a2ae5 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x1c50a186 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c56c22d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8d8d7f md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x1c91ad92 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1ca804ef gpiochip_irq_domain_activate -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 0x1ce343dc sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x1ce426bd of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x1ce66ea2 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x1cea853b dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x1cf1b78e dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x1cf8bc6d __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1d01d410 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d281a30 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d34bbf7 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1d50b3f2 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x1d5a191d kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x1d5e6205 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x1d625906 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x1d664e51 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d6a96de dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0x1d6ee554 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d809130 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x1d86b9b0 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1d989d2f pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d9d2198 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x1da3a6ef pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x1db16f82 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1db9967d crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1dc8dc70 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1debff4e usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e17a38a ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x1e23b2e8 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1e2b55b8 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x1e2cbcd9 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1e3246af kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1e3503dd acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x1e3ff93b iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x1e46ddcb clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x1e4f7276 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e5df6b8 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x1e6a21cf crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7c77ad mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1ead6df7 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x1eb6a36d gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec55de0 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x1ed1f56f blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x1ed6354c serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x1f075a66 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x1f0a7ca8 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f25621c debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x1f33f4bd __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1f39fa5a cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f58d219 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x1f7df0ac wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f915b61 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa9f476 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fbf3d1b tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1fc73baa extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x1fcf9d4b ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x1fe2a4a4 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x1fe3c206 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x2004e5ca crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x20262246 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202e8e76 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x2042441a spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2090df57 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209cbc1e crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x20a09e96 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x20ae0244 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x20ae6074 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x20baa064 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x20fe5a6e pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x20ff7c0f gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x2103298f netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x2104826f sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x2109af37 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x210fdbfc palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x2113b2c5 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x213f5d76 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x214f3e5f of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x215f0d36 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x2168e0dc lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2193632f aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x21a11a36 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21ace211 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x21b376cf edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x21c150f4 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21c43a9d pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d214d1 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x21e32c38 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x22016310 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2219dccd __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x221f9d84 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x22358c5a led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x22483ae9 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x22522183 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x22523b8e devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2286578f gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x228b27ff phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x2299e809 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x229fd72e xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x22b0d20c nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x22b6ecbe bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x22cf2a61 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x22d4d63f rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x22d55d37 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x22fc9ae1 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x23207e84 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x2321ea6e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x23314a7f acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x23349a77 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23461b1c iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234fc559 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x23743304 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x2379eaa3 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0x2381eb9b dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23872f2f sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x238f5e14 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239b345b __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x23a2e848 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x23c57c55 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x23d4e544 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x23d6a483 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x240a718e pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24135234 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x241edf6c blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2428305f bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0x24284274 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x244ca6c0 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x244ebe7e param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x246f7789 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24c0395d xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x24c4fd65 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x24d37d00 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x24d8154d store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fdbaf8 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x250d58d2 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x250f9b8d crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x251b2370 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25351773 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25414ba5 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x255c9bef bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x256a784c disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x256b7ebc tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x2589840d dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a490f6 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x25b2ddcf skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x25c9f2cd xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x25d71711 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x25db77d7 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x25e1a235 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x25ee0060 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x25fb6f6a irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x26163f71 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x26362325 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x264e4a81 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x26642077 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x267ce2db __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b41d57 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x26b7da89 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c6f232 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26fa2412 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x26fc465f spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x27121cc1 cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x273a7f6a bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x273b924f sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27694a4f devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x276e4656 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x276e591c xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x27715e4a enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x2792afcd regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x279e2327 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x27adcaa3 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x27b0197e led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x27dbc634 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x27e7d624 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x27ef48e3 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2800128b devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x282b0734 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28317227 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x2854f88a cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x2858fd11 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286a5e26 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287236e1 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x287671eb pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x287eb7d5 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288c739a dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x28a012d2 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28ab6388 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b2d9ac bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x28c3dfd7 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28ff563c skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x291be6d9 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x2921b30c of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x29279d1c debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x292d404f pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x292da477 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x293e7ce0 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x293eba0b debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x29435614 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x294a21da virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x297b3a93 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x29a87a83 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x29a93ea1 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x29abc8d9 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x29e1e01b devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x29e85cba ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f5ced8 xhci_mtk_sch_exit -EXPORT_SYMBOL_GPL vmlinux 0x29fc3bdb sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a0e03cb sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a192156 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x2a1dd3b2 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x2a491c7b cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2a49a799 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x2a4ca550 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x2a4dbfa9 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2a5b6c5f account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a745e75 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x2a772d2f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2a9e4dd9 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abd5eb2 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x2ac63391 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2ad5ed64 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2adf661e usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x2ae34890 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x2af05821 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x2af54747 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2afb856e acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2b07172d of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b08a348 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b11d49a dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x2b27df63 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x2b297cf5 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x2b2e75af pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x2b346079 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b49844a pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x2b4f3a4f wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2b5a8492 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b5d00f8 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x2b6e4d69 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2b733d85 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2b78c9aa dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x2b889d67 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x2b940472 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b9987b6 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba08919 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2ba333f6 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x2bab0d14 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2bbcb3c8 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x2bbd2aa5 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x2bbecb61 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x2bc73837 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x2bcdd473 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x2bedaa22 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x2bfc6fa1 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x2bfcc04f rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c263991 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x2c2fa90c edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3e4bbb ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c5321cb bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x2c613ca5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c66d934 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca1e03f pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca812f0 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x2cbc27be spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2cc634f9 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2cd99d19 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2d0aad81 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x2d15119e cec_pin_changed -EXPORT_SYMBOL_GPL vmlinux 0x2d163a49 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x2d18e5d7 genphy_c45_read_status -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 0x2d4817f0 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x2d4a0a23 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x2d4ef9ce ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2d5a2af0 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x2d64fd90 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d7f5b4f dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x2d97a9db regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2d9e2c25 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x2da0ffa0 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x2da19ead __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x2da963f8 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2de6975d clear_foreign_p2m_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2de9785e __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x2e005fe4 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x2e0320e6 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e214289 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e490cb8 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2e5f1e0b ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e69531c __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x2e78f37d __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2e814d77 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ee4c140 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef7739b kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x2efcf2ec __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f17c7d9 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x2f27ddb6 setfl -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4e8e4f da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f59b158 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f7ea4b3 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2f880b25 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0x2f8e10a3 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x2f92c9a3 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2fa86f94 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x2fb3a0d2 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x2fbb4229 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2fbc7d00 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x2fc492cf __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x2fd0b85d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x300aad65 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x300ad460 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x301ef3ae of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x3021f81a serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x302867ac pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3029b6fc ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x30303459 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x3031cdc1 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x303cf94c tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x305662d1 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x306160a7 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x30650968 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x30651080 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x306f5576 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x30791717 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x30aec812 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x30c6718a switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x30d8ed24 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f3a9f9 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x30fdab16 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x311168e4 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x3113151e ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x312078fd tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x3120e2f4 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31458a6b of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x31671c18 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x316a3deb event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x316d25f1 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x3189ed06 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31931c18 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x31945e64 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x319de7ef fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x31aad8e8 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x31ad61dc wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x31bfa3c0 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x31c2f51b devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x31c59e78 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x31c78630 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d9f900 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0x31db8393 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x31dbcc76 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31ebdf4d ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x31f26065 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3206ae90 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x321214cb skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x321caaf1 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32598775 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x32608c19 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x327e72fa fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x3283e3fd iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x329b98b6 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x32a11069 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b00672 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c2b062 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x32fa9b2b clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x32fcdc7d virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33040cca ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x331d85a3 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x333b40b4 xenbus_unmap_ring -EXPORT_SYMBOL_GPL vmlinux 0x333c51cb pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x33443e2f da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x334ee862 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x335878e9 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33665797 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x338baac3 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x339ddeb7 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x33aaec97 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x33af761e alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x33b6d5a0 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x33cfe668 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x33e4a4d7 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x33ef692e usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f83c77 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3410d81b sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x3410f8d2 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x34285466 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x342a39b2 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x345d05f7 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x348601d4 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x34951320 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x34af5505 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b509d1 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x34b85ad9 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x34cd14b8 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34edb809 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x34f8a127 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x34fc0ddc __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x3506c2b7 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x3510e9b9 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x35138dde component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x3522ae10 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x3525f6fd trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353664e2 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x35478779 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355d43c9 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x3566b716 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x356b56d6 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3574241e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x3577b7ee lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x35887be5 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x358d6a07 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35910b3f da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x35925d13 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x35946ba0 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x3598613b pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x35adc132 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x35b49548 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x35b68c99 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d80456 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x35e3208c regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x35faa268 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x35fe8546 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361d45fc hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x36233fea uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362d14a3 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x363b2bd1 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x3641545f of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x36457b79 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x36534254 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x3658882f blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x3661e496 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x3667a19e device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x366e540a xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0x366f77c7 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x36781674 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x36971f03 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x369e1fe5 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36b4b191 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x36b76394 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x36bc410d ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x370fa3f5 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0x3714e507 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3721cdcf of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x37275666 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372fd78d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x373fc35f pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3753ec33 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x3756bcf8 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x3791aaff wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x37a57260 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x37a67a1e xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x37b63e4d spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x37c3b374 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x37d55d95 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x37dcb564 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x37e1302c devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x37e8b89b xenbus_map_ring -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380ae1ad ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x3812983f wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38595b7b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x38678be3 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x388ae257 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x38902bfa rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a78b0b edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x38b36291 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x38cec5a3 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x38dd2bc0 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x38dfc86b crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x38e2badb usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3902ed1b spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x391694e9 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x39342082 edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0x393c9e2f led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x3941dbd5 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x39606eaa pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x3963d7cd blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x396585d0 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x3966ab2f tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x397a4c24 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x39963f93 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x3999d5e6 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x39a80637 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x39a8caec attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x39b786ff tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x39c85573 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x39ca0bb3 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x39ce4506 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x39d1ac52 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x39d4ec7a l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x39dbff51 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e561a5 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39ed013f gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a016fe9 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x3a0963a3 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x3a148bb1 acpi_subsys_runtime_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 0x3a56e069 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a70440c pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x3a893d98 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x3a89f375 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3a9a7797 __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa2c6bf led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x3aa39fe1 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3aac8423 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x3abda718 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad3ca52 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x3af33946 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3afaadcf disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x3b13a643 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x3b3dca16 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x3b43ca8c follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b622f1d regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x3b62fe41 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x3b6c287a lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b8e2336 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x3b962de7 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3b9a3d86 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba4fad9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x3ba68c00 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x3bc438ab __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x3bc9fccf crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c065432 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c32ee73 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x3c454638 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3c546255 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c622530 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x3c6cdfd8 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x3c8e9e66 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x3c9e0932 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3c9f79cc dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x3ca0444d ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x3caed95b ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3cb8961b is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x3cbbd192 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3cbcadc2 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd8f7db tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3cdd1e6b tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x3ce431b3 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x3ce77caf register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x3cf1e848 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x3cf3f0ad dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x3cf7c8bd of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x3cf86fef dm_put -EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d1538ab irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d1a99bf lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d392afd crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x3d4aeb0a crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5278aa key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3d5d0f73 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x3d6239af rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x3d659c4d thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3d7da390 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x3d80aa98 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x3d82af01 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d92bb38 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x3da53251 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x3dabf296 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd2ddb2 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deec787 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3e1151bc i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x3e19b2cf uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e2569ea fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x3e269fef pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x3e3658b1 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x3e3f0c85 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x3e42722b cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x3e4af3b4 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x3e4f5a7b fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3e605145 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7fdec1 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ebbcbd5 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x3ec0333a fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x3ed15dc6 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x3ed57edb bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ee1207f da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x3ee84b43 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f06a65b cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x3f06eaeb fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x3f095995 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x3f135d28 __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x3f2975f6 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x3f58a606 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f872b89 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3f8761b9 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe42b19 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x3fe4398a dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3ff1fcb3 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3ffb5537 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x3fffa05e wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x4001abb2 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4012b6da find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x401d2e12 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x40217de5 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x40386b50 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x403c2581 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40547fde crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x406526d0 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406bb89b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406faa03 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4072f890 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x407358d7 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4089cd95 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x408fbd3b of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x40952036 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409f3b52 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x40ab2f28 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x40ae4883 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x40b258ee class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x40b44509 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x40b71e8b fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41036f26 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x410fc399 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x41327693 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x414ad85d devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x41570727 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x415a6222 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x4166c6b9 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x416cbc17 user_update -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41846c4d gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419123ae __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x41ac899e usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41b33ad3 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x41c4dec0 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41c7a41d crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x41d3936b pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x41e1ba0c anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f39d34 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x41fcd501 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42117de0 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4213b353 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x421b24a0 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x422b7a5a create_signature -EXPORT_SYMBOL_GPL vmlinux 0x423308b8 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x424e208f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42705a76 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428b257a regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4294696a clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x42977bd6 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x42a63c01 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x42b5406e dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x42bbbf68 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x42bc553e tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x42cfa668 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x42e5531a __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x42fdddce sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0x4300d2e0 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x430c48ea mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x4313263e debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x4319908a md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x431a8fca serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x4329fed7 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x43396fec rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x4359fb3c mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x435b304e scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x43742dc9 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438dea7f devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x4395903f usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x4398777e wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x43a49408 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43b4736a genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page -EXPORT_SYMBOL_GPL vmlinux 0x43c7ef2b device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x43d06791 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x43e49785 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x43e686e6 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x43edd8d2 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x43f2df74 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x44102fe4 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x44127faf device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x4416a454 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x441707ff usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x441a939a blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x441bbd7a page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x441fb897 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x442421f1 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x44329f4a fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x444e173d sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4458d23c devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x44723661 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4488b35f is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4490ae35 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x4494c03c __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x44967be2 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44b64270 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x44ba6523 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d80225 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e8ba03 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450f8c20 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x4524921a pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x452b955e ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x45350ef6 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x45361fcf rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x45362ad1 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x454907d1 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x454b16c9 devm_rtc_allocate_device -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 0x4576ea21 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x458d1661 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x459f4e4f acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x45af3493 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x45bbf52d fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x45c8b4ca of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x45cea132 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x45dfac29 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45e42989 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x45ef6aa9 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x45f0e01d devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x460ac1a7 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x4610330b init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x46223f98 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x4627fd66 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x463fac9f of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x464e75e0 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x4653a257 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x46597579 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue -EXPORT_SYMBOL_GPL vmlinux 0x4661dcbc devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4683e17b devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4685190c blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46af05e8 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x46af90c4 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x46b11fb5 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x46c814b2 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x46e9f1f8 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x46f281f1 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473cf138 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x474b614c usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x474ead8f tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x475cea6f acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47810016 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x479919de phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x479c0829 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b4c500 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d51eba tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e2cf00 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x47e71ec6 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x47ed474a extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x47f732f5 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x480bac13 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x48124cee __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x4816efc7 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x48241068 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x48274dce sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x483ba249 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x48524412 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4869bacf sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x486bca9d usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x4877858f crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x48825141 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x4882f4d3 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x489af3ac __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a50546 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x48ad1d2a pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x48c81a7b virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x4908a9bf device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x4909af9b ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4949d632 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x494ad4c0 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4950ce69 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4967227c netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x49706d7b pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x497625fd serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x498d7f03 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49919354 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x4994f6e7 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x499e0207 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x49b8b3ca platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x49b9ceb6 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x49ccc61c rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x49dad646 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49fbe39b ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x4a2bbd9e class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0x4a2f097b sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x4a370e3b dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4eaa68 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x4a7dce14 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x4a7f3447 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x4a934d1d usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ac263a9 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x4ac4b43f kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4ac838a3 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x4ae54124 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x4ae75e65 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x4ae79c83 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x4af0c858 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x4afc1df0 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4afdd629 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x4b055aa0 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b194f14 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x4b1e3228 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x4b269a01 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x4b29bc6f platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x4b2f1f3d arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x4b3b6032 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x4b4edabe nf_route -EXPORT_SYMBOL_GPL vmlinux 0x4b508fc3 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x4b519bc6 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5d2541 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x4b6262f8 rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x4b63d9f3 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x4b648a4d arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x4b66817c gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4ba33514 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4baad7af iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x4bba233a regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4bc24b64 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4be6ddad i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x4bee7f49 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x4befa93b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x4c11adda platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c1dca67 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x4c231c97 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c976e73 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x4cacd16c pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x4cafa000 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x4cba28cf irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4ccbd6ef transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4cd4d846 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x4cdd91dc xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x4cf65202 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d01a287 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4d05bf0a __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d230660 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x4d2ad4cd ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x4d2bcba7 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x4d43a46f srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x4d443fbc devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4d4b1817 acpi_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d5180a1 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x4d54ab3a __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x4d6a5e8e tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d8427e1 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d9e8766 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4daa19cd of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db3db99 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4dbb6716 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x4dbd8745 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x4dbdb767 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x4dbe868a fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x4dc46479 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4dcf5cd3 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de3ddb1 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x4e087c07 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4e0c4c0d otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e16c812 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1e4610 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e43c2db dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x4e44038c i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4e48026a of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x4e589ca5 device_create -EXPORT_SYMBOL_GPL vmlinux 0x4e6e0c02 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x4e70d825 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x4e7845b6 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x4e8310c2 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x4e8f355f gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4e980380 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eca700c usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed239e1 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f128f99 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x4f159894 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x4f183828 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x4f2449bb i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f276644 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x4f43b07f subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f72f3bb regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x4f7f2641 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x4f832450 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x4f8385eb phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x4f97e516 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa29ccb spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x4fc176d7 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x4fd37e0d virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff3003f meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x500807d0 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x50085019 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x501458f2 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x502178f2 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5029ce87 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x502de8d6 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x5044aa48 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x5046db5f genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x505cbfe3 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x5068fd7e i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x50741fa9 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50cdf883 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x50d0c2ef regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x50e3733c kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5115885f i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x512493f7 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x51370ff8 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x513ae2f0 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x513af1fb __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x513ba4ba tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x513d7ff4 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5145fed6 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x514f3e9d ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x51601bed tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x51613611 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x5175631b direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0x5183d580 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518bcc46 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x518c2a64 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x51916db7 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x51926693 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x51960e65 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a023e9 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x51a13f2d debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x51ac720a dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x51b6acb7 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x51dbbf50 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x51eadc69 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x5203aad5 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522f74a1 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523b496d dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x523ea930 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x5260f216 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x52832ace usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x52a9b14e devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x52c65ca6 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d96140 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x52f9a155 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x532ecef7 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x53430c90 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x53460d71 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x53888e17 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x538ad962 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53ba9f69 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x53ce27fe edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x53d02f99 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x53d4cf0f inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x53db03dc ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x53db50f3 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x53f2ed3f regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542610a4 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x542e910f skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0x5430e74e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x54473c9f sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x54476f82 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x5449af05 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x544cb790 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x544d4639 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x544d7354 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x544dea18 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x5474b36b security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x547adb62 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x548e5662 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54c4e8ca sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x54c665d9 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x55046106 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x5506fff5 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x550ea38e pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x550ece8b rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x5530cb8c skb_splice_bits -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 0x554665de netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x55478a0b platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x5549d68a device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55515000 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x55561cbf ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x556caf3f regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x556d1ec9 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556f35df trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55948b11 ti_sci_put_handle -EXPORT_SYMBOL_GPL vmlinux 0x55997c24 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55b420c4 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x55b89f7f devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x55bc38bf irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55db13cb sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x55db9e3d kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x55dd184a ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55efe5c0 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560b54cb blkg_print_stat_ios -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 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564e94a3 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x565bb20f device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5674c3ae sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x569b2a40 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x56be0e00 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x56c33dee pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x56cb7c94 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x56ce07ed tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x56d5f40d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56d83a02 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x56da8a80 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56e5ccc2 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x5721a17a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57256c0e kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57480792 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x57586dfc do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x575ec475 __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x576537e5 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5769855b gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x576f96dc pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x577518a6 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x578626bd platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x57883dcd irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x578e92c0 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x578f041c of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5790a1cc evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57914e91 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a1f175 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x57c1dae8 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57d5532a ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x57da39b4 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x57eb94b0 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x57ecdc66 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x58012d91 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x580be176 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x58290e7c __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584ec12c regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x5852692c pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5891a244 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x58961bd0 crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x58966d85 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x58a9ddae gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x58bfe323 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x58c745d5 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x58c9ca07 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x58d448f1 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58fd67a0 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x58ff8e7f iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x58ff9fc1 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x59027e9d crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x59198bec sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x591c3a18 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x594bb503 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x59573433 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x599605f1 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x59a1f4c1 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b8d6d1 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x59dfe183 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59fb1134 cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x59fe70a8 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x5a08d4fe tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x5a14c570 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x5a2887ec usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x5a2bd0fe kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x5a3992a5 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4e21b6 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5a50bba7 bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5a63c1f6 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x5a644640 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7574b4 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7f5c43 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5a8ffb1b dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x5a930dd1 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x5aaa2f59 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ac86d34 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5ac88ed7 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x5acdc0f6 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5acea1ce phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x5ad15608 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ad814a3 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5aec9811 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x5aefbf43 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x5af3fb7c ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x5b00d318 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x5b068e21 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x5b0bd5bc netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x5b15f950 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x5b210737 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b39afd4 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5b5a4f34 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x5b5cb493 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x5b618bd7 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b914874 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf14847 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x5bf20442 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x5c061a65 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c4d70be dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6e8174 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x5c7942d7 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x5c79eafd pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x5c80a2ba power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x5c866ef2 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x5c954b5c tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x5ca8edb7 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb80e19 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x5cd581b2 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x5cf284a1 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5d00841c device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d086a1e irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d3855fa usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5d3f8688 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x5d54bb0a fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d5d2a3b debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x5d76cd4c __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da7dabb __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5dae1297 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0x5db35a01 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x5db3f470 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x5db7a5cc rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5dbaf9bd dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x5dd2f729 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5df3c4ef tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x5dfaa7aa wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5e03d3dc get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e11b95d led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e3515bb pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x5e398520 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x5e4c51f4 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e522227 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x5e61a8fd transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5e6a8460 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x5e71c6d1 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x5e760fbb crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e834e16 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5e87d27e ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x5e982351 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x5ead63ae sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x5eb18469 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x5ec43a69 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ed82c02 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f34d818 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x5f57b96a kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7e6fa4 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x5fa675a9 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x5fadf65b dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fdb0189 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x5fffc311 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x6000de27 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60119a53 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x602474cf devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x603458f8 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x603482a3 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6039a273 iommu_group_remove_device -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 0x604a4a70 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6054b649 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x6065c62f open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x608ee863 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60960cf3 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60bd5fb8 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x60bf7528 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x60cc13ee pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x60d7372c fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0x60e370af invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x60e58b4f acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x60ea0097 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60fa8f84 usb_get_descriptor -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 0x6131cd97 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x61440919 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6152d34a scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x61777bcb ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61935368 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x619686c2 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x61a04e19 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61bdcca4 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x61c4c652 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x61edb367 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fb6136 pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x61fb9b34 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x62046bbf dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x620500b7 skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0x620c261d seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x620f960c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x620fb93c class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x62192a36 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0x62225937 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x62265a05 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62396b1a cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0x623a0acf pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x623de70e inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x623e3514 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x623f5190 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x624fe341 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x626589a7 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x62717ec8 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x62785c94 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x627e879c irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x628aa085 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6297ea40 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x629cb668 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x62a7b9a8 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c07e19 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x62d2329d devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x62db4249 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x62e4321a pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x631430eb rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63249310 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x63492e63 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x63539a46 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x635bb9d2 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x635dad0a vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x6382d01a uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639badc5 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x63a0ffe0 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d20776 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x63e4e282 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x6401ed1d __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x640d5e7a sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x64143741 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x64180677 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x6443014c dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x64556bf7 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6463d9f9 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x646bf067 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x648d248a crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649936db rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x64c0b1b8 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x64cca049 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d64aed kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x64ded798 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x65048c79 tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x6509a42e devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x651637c4 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x6525c8f2 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x65284481 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x652adf0f nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6535aa29 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65384b83 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x6540ffdb bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x6554c379 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x655d37c5 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x6561c556 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6569589e of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x656cde6e kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x6579f1d6 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x658e6041 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x659628f1 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x659f2385 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x65b1bf74 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x65bf543c irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65daed28 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65f131b6 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x65fd2fa4 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661b1917 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x662052b6 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x662f4395 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642539a xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6643f244 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x665a54d6 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x665a9bb1 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6687eb7a usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x6688f80b rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x668d8bf3 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x6697e96a dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x66a65f05 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66baf9ec devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66dde56d ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x66f23790 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x67007420 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x6701449d ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x670f01d0 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x6720515c validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x6720df27 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x672cf641 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67378a62 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6737e653 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673bef0b power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x673c54cd bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0x6755b7d0 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x67596eca cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x677bbef8 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x6786683a rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x678a701a dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x67950be4 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a2fd58 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x67a707ba crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x67c273a1 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dbf68d posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x67dc87b6 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x67dfea27 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x67dfff66 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x67e01274 clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x67e6c543 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x680672e2 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x682664fa call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x68341719 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x6838465e serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x6853eaa4 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6860c14f iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6866f5a2 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x6869c8eb unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x686f5148 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x68718d3d usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x687220f6 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x6878e0e2 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x688de8ce usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x688e6dbb crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x68903b01 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x6892389f dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x68b1cdef fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x68b27914 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x68c21121 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x68c57f1b ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x68cd6da9 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x68d39435 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x69088840 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6913a482 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x691636ee tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6927b74b phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x69358e29 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6935b0cf dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x694f0154 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x695042bc devm_of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x69514cad posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x695ec13d kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x695f4352 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69676f70 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x696d1695 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697d79b0 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x69a0113d dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x69a63ef6 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x69a70f7a cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x69aa069e cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x69b3f43e pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x69b43c7d devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x69b8ecb5 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x69b9faa3 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x69c510cb irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x69c95a14 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x69d28b1b nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x69d95ab6 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x69e3d9e9 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69f34394 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a134203 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2e4898 kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0x6a33551d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x6a37e0d3 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x6a381062 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x6a3d2748 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6a420286 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a453580 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4b32a7 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a54ba7a mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a674691 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a773af8 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6a801917 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a90ecbc hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x6a92a1ed thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x6a949213 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x6a972d41 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa39525 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6aaa02eb probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6aaec965 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x6ab617fa devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x6ab7ec32 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6abb15ad inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6af012cc bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x6b047469 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6b0b4c16 __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x6b0b5171 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1950db gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x6b1aece0 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x6b26bca9 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3ce694 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b46abc6 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x6b4ece1a pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6b5165a0 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6b6ec0bd dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b857835 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x6b8d132d cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b91c857 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x6b9bea74 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba47178 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x6bb4997e sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x6bc4a415 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be48275 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x6be7a8e4 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x6bfea01f regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6c147d62 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6c32cf03 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6c3535cd ping_close -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c38ab57 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6c3b612b acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4102c8 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5179c8 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x6c55d2b7 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x6c5f7ecf ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c77d0df dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x6c94e5fe tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca57bfe cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6ccc56a6 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x6cfa1b08 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6d066b9b regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0f7b3b devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6d123d68 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d29ab89 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x6d2bb52b pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d34119f mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x6d55be35 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x6d5866fd ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x6d65fe92 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d737ce5 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6d7426ae srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x6d747c34 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6d788994 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d7f88c7 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x6d97ee34 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6da35410 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbdcca5 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x6dbf249d regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x6dc5ae38 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x6de889e9 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x6df863f6 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x6dfd4973 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x6e063a58 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6e0ad21d nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x6e1f8965 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6e21aeb9 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x6e2f1591 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e43f518 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x6e458bc5 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e784f54 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7d0177 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8f5180 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6eac306f tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec3cdea pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x6ed04825 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x6ee1ced5 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6ee5495b do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef52a50 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f14e614 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x6f4b1aef devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f7bf711 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x6f807141 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x6f829286 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa2568d pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x6fb0d5ab dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x6fc1e928 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x6fc916ff scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x6fc9ad10 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ff41d63 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff67dca uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x6ffc75b6 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700e76a3 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x7012e3fc of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x7021cb56 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x702faa76 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x70541515 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x70575f22 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x7062554e devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70695931 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x70734e67 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70832a69 ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x70a6b442 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c7a1c5 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d2fc2e css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x70e34377 xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x70eade79 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x70ed81d4 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x71012884 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x7102e526 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x7108cc8a of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x713e5bb4 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x714d64d3 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x715da7d3 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x71785869 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719548c8 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x7198cb3e fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x719be12d usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a8904b tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x71bcd078 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x71c728a8 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x71d8da14 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x71dd238e regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x71e226c4 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x71eb91f3 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x7200fab7 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x720de171 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0x722953ca fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x723f8541 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72a84fe2 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x72cf643f acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x72cfa5b1 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72ed2853 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x72f8781a tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x7309d3cc pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x73148164 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x731f0255 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x731f217c device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x732177fa iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x734c981a wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x734da10c bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x734e4333 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x73595b38 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x735d3e13 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x73611162 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x736d4917 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x737b6122 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73866f0b gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x738e32f2 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x738eee4d rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x73930185 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x73a08d83 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x73a364e9 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73aeabd6 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x73bba6a4 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x73c0981a crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c61331 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x73d50f4f virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73dd7b50 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x73e11a5b crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x740f42cd edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7431fa9a phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7448bdff spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x746d6499 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x74703996 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x7471a575 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x74767edd led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x74924b04 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x74990431 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x74a24467 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c54eed user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74ccfddc mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x74d288e8 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x74d4213c __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x74d72ee5 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x74dca08c iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e8622d page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x74e8c7f8 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x74ec619f __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x74f01abd tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x74f1a1c1 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x74fc7f56 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x7506ac1f ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x750bfc6c add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7510b674 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7526dfa8 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x753453bb acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7535597d blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x754779e5 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7551f51e relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x75571001 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x755edef4 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7597a7b4 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x759816d1 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a7fa72 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x75a9aca3 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75ce1e80 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x75d6ea11 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x75d6f195 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x75d9a748 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x760483ce irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x76062005 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x76112c0b gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x7619c4c7 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76263adc ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x763fa486 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x764a6e4c usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x764c75ec dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x76501961 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x76536136 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x76665428 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x767adce0 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76861dce pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x76894dc0 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x768f2faa fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x769f0297 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x769f82bf md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x76b8db23 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x76cb1db8 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0x76d16262 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76ee517b __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fa66a9 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x76fce44d fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772bb48d udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776247e5 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x7774c921 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x777a002c iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x7780644b efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779551db led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x779715c0 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b99cba adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77d26b45 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x77e4befe irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f7574b hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x782fa54b sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x78329f60 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x784fd2d0 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x78507505 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785d5b3e kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x78638cd3 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x7867ba22 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x786a71c2 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x786bc83d bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78815d2b of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x788d34cb gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x788d69be rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x78a9aa2d extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x78afbe9a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x78b0cdde cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x78d0ddc3 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x78d82264 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x78e3c0e6 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x78e67d5d cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x78f85497 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0x78fa10f7 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x7901a843 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x7908f3be devres_find -EXPORT_SYMBOL_GPL vmlinux 0x790a9a5b pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x790ae1f1 flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7923ec7e __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x7926d161 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7940cf23 crypto_shash_digest -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 0x795010d8 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x79669c0b bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x797634fb ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x7977d9ec dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x797d0348 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7990a6f6 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x7990b265 regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x799c4524 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x799d42e0 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x79b5a993 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x79b8a3ea irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c4c892 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x79ca650f kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x79d2e8d9 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e29167 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x79f58d1a gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f9ad05 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x7a10737d of_map_rid -EXPORT_SYMBOL_GPL vmlinux 0x7a4f5bb5 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a672569 xen_xlate_map_ballooned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7a67dbfc input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x7a6d0988 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a80d71e dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a820e3e nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x7a915c52 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x7a987af7 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa3595d rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x7aaa8a0d usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x7ab1f7d7 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x7abf354c of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acaf56c pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ad7f2a2 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x7aef98f1 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7af0ce31 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x7af6b79c rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x7afa8162 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0bf427 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x7b132af8 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1c56e7 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b2cd9a0 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x7b3e5c6e regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x7b41a79c perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x7b507fab tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b557a67 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b759453 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x7b85ade1 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b93463c to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9cafea pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x7ba88d43 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bb10290 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0x7bde1edb fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7c04e072 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7c0e02bc hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x7c0fdac0 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x7c1b00a7 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x7c1b1051 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x7c238cfd preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7c2acd13 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x7c326325 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7c338a08 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x7c37b7b0 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x7c3da03b __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x7c3e0457 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7c43bcdd devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x7c54a215 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x7c55e944 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x7c57421b x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c5e45bc fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x7c648c71 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x7c780b58 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7c7c6ae3 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x7c8836c3 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c965b62 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup -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 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ce5416e crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf1dcaa pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x7cfad87b debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d168b21 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d354e3f cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0x7d3de83e kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x7d3e6e17 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7d45b0df ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x7d58ff90 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d716438 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x7d86c19e md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x7da611ac rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x7dae1f60 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x7db2dceb fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x7dbd9f9c xhci_mtk_add_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0x7dc040d7 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7ddbf06b crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x7ddbff9b usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x7de3376f pm_generic_thaw_noirq -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 0x7de98cb4 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x7deec0d3 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7df09258 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e08519a inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e24aa7b gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x7e3f9450 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x7e48e92a ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6bea92 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x7e6c1af7 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7e726ec6 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7ea20e74 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ecb926e crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x7ece5afb nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x7ede871d edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7edf624f dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eef87cc sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7f128d01 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7f1c389a ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x7f407e0b sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x7f41a6b0 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7f510e07 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x7f52a815 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x7f790649 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7d8774 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7f9369a6 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x7f9b9105 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7fa3d5fc skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fc06aca devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x7fc1e234 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fcebe2d dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x7fe57f10 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x7fff7b74 device_del -EXPORT_SYMBOL_GPL vmlinux 0x80018b29 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x80175829 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x8049cab8 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x804c93b5 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805a088e put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8064b09d ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x80723ad3 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x8076627e pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x807684a3 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x80b781b5 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x80c1bbbb blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c9503b blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80f94e0b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8111b71c regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8114b868 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x811c6155 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8128b935 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x813fd16d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817ed285 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x81958eee acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x819b99fe get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81aed457 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b0fca7 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x81e100e8 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x81f34958 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x821f6c2c devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x82258938 dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x822ae8e9 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x822ed349 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x823348b1 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8236f1c1 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x823af5fe file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x824bd99d pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x825ec903 iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8285c4ed cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0x82a1060e transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x82b494da da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x82c405b8 pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dc16d5 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x82dd70c6 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x830970be xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x830d0da8 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x83118d07 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x8314192d ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x832879df pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x8329d703 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x834b781d of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x834c9bce devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x834f8cba devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x837b95df dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8391a791 iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x839acae7 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x83a57a2c acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x83a6e09c debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x83b0c921 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83c18c5a spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x83c70c4c ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x83c811f5 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x83ca4c16 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x83d0de4f security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x83e607c5 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x83ecb00f regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x83fadebd of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x84054069 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x840996f1 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841fd4c2 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842cb7d6 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84318f9e regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84406d2b devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x8443bad2 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84709749 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x847b045e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x84849c68 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84c2f538 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x84d9d0d9 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x84e30514 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x84e8170e led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x84ed3dc5 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x84fbc341 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850857ac crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x8528d896 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x85298dc1 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x85499061 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x854c32ca iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8554c5c1 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x85552f1e sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x85641869 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x856b702d acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x8570dff6 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x857f6439 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85b67411 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x85bd64d9 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cec0b7 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x85e24812 __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x85e70567 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x85fe3ceb ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8634534b pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x863d9cda usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x86539846 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x8658eb38 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x865c9b97 clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8678c00e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x867aff5f security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x86804a8c dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8683b245 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86ada6a3 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x86afab3a usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86c3b0a1 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c79480 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d2ad6c device_attach -EXPORT_SYMBOL_GPL vmlinux 0x86dee97b bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fa29cb dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x86fd09a1 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x8700aede __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x870d4762 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x870e958e gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8710f655 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x8711ed3d virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8715389a security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x8720dd5d fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x87275d2a pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x872f9690 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x87361b4b tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x877a714b dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x8786e5c0 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x878d785a pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x87aa9def usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x87abd4ff gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x87b5cdc1 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x87b6b664 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x87c09fa4 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x87fa7910 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x8802cc43 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x881bf469 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x881f2f80 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8824000b get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x882b1e30 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x882ea19c shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x88361c65 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x88787b69 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x8892e00a gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x88956d2b devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x889ba07c scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88bd6882 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x88cba115 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x88dd36ed list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x88df457e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x88e0ca14 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x88ea8841 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x88f1c5c3 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x88f3ada4 blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891a5fb8 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x891c777f wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x89207418 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894f1d39 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x895e1618 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x897408ef bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x8976746d acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x897e1d05 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x8994294d gpiochip_line_is_persistent -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 0x89c4a931 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0x89c76b27 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x89d31603 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x89dc3fd2 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89fc8c4f debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x89fe5692 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x89ff7f98 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x8a055d8f dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2a22ec shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56d59d pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6e7267 find_module -EXPORT_SYMBOL_GPL vmlinux 0x8a7459c3 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8aa32e7f tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x8aaa8980 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x8ab9d353 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x8ab9f8d8 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac1dec6 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x8ac7302e crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x8adb2b21 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x8add7ef0 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8ae53787 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ae88e73 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x8afd001d fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x8afd58f9 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8afd89cc dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b48bee6 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x8b609307 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b9183a1 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bceb684 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x8bd55990 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x8bd70523 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c1944fc dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x8c289646 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x8c35afcc flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c4121a8 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c5672bb ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7622df devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c88e045 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c92b438 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c948a83 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8c98b5c9 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8cae72a5 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x8cbc7aec iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x8cca5406 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x8ccf4cb3 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8d064e8d i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL vmlinux 0x8d22716a adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d254fda srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8d25d998 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d4165b0 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x8d4d3395 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8d600470 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8d6dc07b irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x8d71439b devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x8d7541e0 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x8d7607ee clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d874e77 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x8d8d7cfc da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8da4424f devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x8da55503 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x8dbb04ea sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x8dbb47de pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8dbb7ba3 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc006e7 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x8dcf8954 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x8de2dfe2 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8e0f9d60 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x8e124a80 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x8e1273d8 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x8e14aeb0 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x8e1866ec n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e1be335 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x8e1c96b5 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x8e24475f list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x8e249f8c ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x8e3d75b6 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e50e6aa gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x8e550d53 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x8e5f3921 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x8e66d3a6 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e79e6c7 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e88934a pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8ebd281c bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x8ec14275 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ec21051 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x8ec34b8d dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x8ecd9942 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x8ed54dca wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef48cab arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f02f4a3 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x8f067c3c arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f19e427 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f1b7206 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x8f275f51 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x8f278f07 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x8f28b328 cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0x8f302524 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8f35a0da powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x8f37f691 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x8f38f077 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8f5ba605 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8f633ed0 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8f6b747b usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8f6c991b iomap_is_partially_uptodate -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 0x8f7df01c nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8f801d8d rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8f864913 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x8f917399 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x8fb7c702 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x8fd357d7 mtk_smi_larb_get -EXPORT_SYMBOL_GPL vmlinux 0x8fea4008 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x900ffa44 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x9032d2d6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x903ae46b bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904c2788 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x90551ff6 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x90637d38 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x9083bbb6 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x909a09d4 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x90a9997d balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x90ad5d38 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90f2d247 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x91132b26 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x911e5a94 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x9153c6eb of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x9158b310 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x9160cdde sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x91758f83 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x917738ff of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x9183a606 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x919425fd pv_ops -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x9197dab4 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91b5ba7c vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x91c12d08 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x91c401b0 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x91db1fc2 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x91df5058 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x920a4c5c fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920e686d acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x9215f21a bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x92204d33 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922d37ea xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x9234eab3 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x923d9dba pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x927e7da7 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x9285cf04 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x929ef82e metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x92b72826 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x92b799ce pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x92be762b nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d55b5c save_stack_trace_regs -EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x92dafc5d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92de799c pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x9305ec36 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x930c7117 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x931fee91 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x933f8feb __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x936783f5 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x936ba1de mtk_smi_larb_put -EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x9377a681 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93901c6e ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93ebb26c gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x940d9015 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x941bf3cb scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x942effef tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943d584b xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9441c052 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x9455815e of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9485401d cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x948ea05e blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x949b4e42 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a62d45 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x94d4db0d pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94e74e34 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94fb6bcb irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x94ff7074 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9518b6b2 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953d570a clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f55be crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9549c89d fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x9557003f power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959d27bd kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a44288 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x95a67fba mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x95a7468c inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x95b11a21 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ca8e62 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x95e1f872 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x95e7e363 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95efa1db pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x95f5c5f9 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x95ff2ab3 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x96031af0 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x9612a1b3 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x961a2c95 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9627681e blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x96287c4e irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x962c24f1 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x96404247 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x96446f5d regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965b4751 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x9676bb86 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x96855f1a usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9697a643 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x96b71063 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x96ca3984 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x96ce0c54 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x96cfa310 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x96e766b0 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x96fb42b9 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9735104f mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x97354547 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x9743d36e udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x9748f52e kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9752062f fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975730c3 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x975cf0ba i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x977232d4 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x97755d90 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9787eae1 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x978bab74 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x9792a75c spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x97b872e2 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x97b922ea devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e18937 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x97e4ba37 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97eb45f7 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x98083a08 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x9808e69d sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x98167294 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x98267e80 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x98286706 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9831ebe0 pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0x9833adaa pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9852fd55 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9857e2b0 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x98583379 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x9864ba3f usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x986bc6e9 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x98747252 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98839f5a devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x98850e9c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x9889cf89 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x988e1b44 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x98954cae tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x989fc8e8 component_add -EXPORT_SYMBOL_GPL vmlinux 0x98a6b27f of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x98b77bee handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x98c1f22d to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x98cb8bcf __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x98f7ba7d kick_process -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fdf7bd devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x98feb5ae usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x990bd299 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x9913fff7 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x991f4ee6 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x9920dfda ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x9927b970 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x994d8ee0 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x9951a0b7 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996a4fed vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x996f43f0 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x997744d4 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x997bed10 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x998f2729 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x99a1c277 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x99b1782c root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99ca1d38 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0c503c bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x9a10def3 device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a11fb97 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x9a14f004 fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x9a1ebed4 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x9a2a94f0 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x9a3216d0 pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x9a4a279a register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a63de1f kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x9a7c21b8 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x9a803a6a init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x9a87506c debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9aa63893 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ada11e3 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x9ae30a2a clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af3194a devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x9b122172 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9b1edaa8 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x9b2249e8 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x9b3e2794 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b568d44 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6e20f2 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x9b803652 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b930c89 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9ba1aa22 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bbb89d2 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x9bbd210a phy_create -EXPORT_SYMBOL_GPL vmlinux 0x9bbf7307 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9bce910c bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x9be0810d nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x9be3d5af max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1f6fdd pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x9c3faf57 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9c5377e1 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x9c53d991 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x9c5b6585 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9c6d2243 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x9c75dc9c ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9c76c9b9 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c82d412 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x9c8e73a2 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x9cc10ea9 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cc20bef i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0x9cc41818 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd1a91c sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x9ce63ca7 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d014c43 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x9d086e18 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1d38ae dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x9d252de0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x9d45036d dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x9d6f9582 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9d759468 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x9d7f3f68 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x9d834c01 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9d86871d attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x9da2c935 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x9de96d80 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x9decc5f9 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x9df9dc3f srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x9dfcd3d9 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x9dfdbee2 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x9dfefbbc key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e008931 xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0x9e0528b6 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e08dec1 component_del -EXPORT_SYMBOL_GPL vmlinux 0x9e130632 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9e157c44 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x9e25b509 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x9e3e878a tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5392f1 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x9e659d90 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e82f235 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x9eae16d9 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9ece3452 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eda21d9 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x9f136a76 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x9f182e6a ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x9f1a20fb elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f1e6461 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x9f2d032b devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9f47af7e rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x9f4bacea debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op -EXPORT_SYMBOL_GPL vmlinux 0x9f5ae2d3 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x9f65afc7 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f66a257 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x9f78c0f2 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0x9f7ccfc5 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x9f85799d vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x9f99af6c virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x9f9a261c xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9fb4d643 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9fbef5bd devres_release -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc7152f dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd15c76 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x9fd3cc02 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x9fda4549 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x9fe00924 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x9fe20aff smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0029f4b sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xa0068dc0 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa00fdacd debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa02142ef kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xa0265b83 nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05f84af spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa0650d97 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xa06e71c8 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa06f57f0 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xa0726ac8 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xa0788508 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa087757e skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xa08c6d0b xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xa09a28f5 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa09adf53 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa0ad3b29 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xa0b8bc66 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa0ca21e3 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xa0ca9a98 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0eebe3d mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xa1043605 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xa10636d9 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xa10d728e edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa125a264 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xa12669fc fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xa132a18b crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa14041d7 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa14136f1 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa16f4c04 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xa171833f of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa1739205 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xa195790b __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa196d76b skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xa1be4a09 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1cf56b8 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xa1d28619 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa23a1206 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2730d73 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa27396f5 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xa28a3aa6 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xa28cf851 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa2aab6cc __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xa2bcb18e tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xa2bd42d2 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa2bf98fe serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xa2cf412a devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2e0059a virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa318f223 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa32fe700 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa33e53a0 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xa341bb06 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa3530a57 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa3704750 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa3849684 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa39158ee acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ba6601 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4009a36 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa4223f20 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xa42326b6 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xa42f47a7 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xa43cdc5b device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xa444e3d0 md_start -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45ba4f3 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d2b00 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa4604e6b pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4926199 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xa49dc442 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa4a3ac5a __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xa4a86a16 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xa4b3b57a dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xa4b87ade amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa4c0292c to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xa4d28746 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa4d5d123 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0xa4e0297a blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xa4e0eab9 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa4e6afce ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xa4ec0fa5 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4f8df8d rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xa5130f15 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xa5288878 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa530f730 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa54b7274 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xa569cffb bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xa56cdf09 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xa58415b0 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xa59295d8 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa5998053 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa59f8537 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cf84b6 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa5d45f37 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5ebd5db to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xa5ede822 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xa5ef24f9 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6058a13 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xa6060cab bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xa62259bc pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa634d6b9 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xa639fa24 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa645bf1a gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xa64963a5 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xa64bc19a tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xa66a4e2b hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa694ecb3 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xa698162a clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xa6a1c83e __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xa6a3431a regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6bf8018 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xa6ce3d08 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xa6d1bf7d task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa6d79b25 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6d7b8b3 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa6da7f11 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa6fd60dd usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xa6fe8266 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70a3fec skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xa70bdc36 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa7814678 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa782339b scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xa7846e0a mmput -EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xa7901a37 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xa7a3303f bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xa7a3c11c device_add -EXPORT_SYMBOL_GPL vmlinux 0xa7aa761c perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xa7da34e9 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xa7e9a831 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xa7ed8937 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xa82dcf11 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xa83cf4b4 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa83f4602 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa873667d inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa881b0da balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xa886edca disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xa888432b pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xa8904bb4 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xa89607a3 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8a5aa71 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8d9890e badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xa8f0ef7f of_css -EXPORT_SYMBOL_GPL vmlinux 0xa8f88306 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa90b7633 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xa9114546 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xa9146355 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa9175534 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa91f49b9 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xa92e2f90 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa932a332 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa95aff73 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xa971ef95 ti_sci_inta_msi_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xa998c87f serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xa99e3abd devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b2dbb0 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xa9c98775 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xa9cd4ec0 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa9cf997b to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9eb6336 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xa9f8bfb8 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa9ffc833 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xaa05b6be fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xaa228f2a ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa29b66c mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa30179e ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xaa334830 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xaa356208 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xaa3773cb xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xaa443225 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xaa4ea547 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xaa5692e6 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa5849ca devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xaa5db232 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6fb877 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xaa7f1910 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0xaa929f33 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xaa9bddd8 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xaaa7bb29 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac7d921 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xaad32a3d platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xaad641f0 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xaade4bf2 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xaaeff885 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xab05abab ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xab0d26a9 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab0d3b19 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xab362da3 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xab5a9abf of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xab64e189 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6d3462 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0xab744290 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xab8c27cf xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba0de15 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xabbe13cf genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabdb9ba2 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xabfa54ca timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xac0048ff net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0xac0760a1 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xac1d081c serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xac23227b dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xac26640c elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xac4218b8 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xac76e205 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac975362 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xac9e3937 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xaca232d3 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xaca9550e lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xacafdd17 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacba41cd of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xacc43d27 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xacd2e279 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xace2828d pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xad0c51d6 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xad0c6c7f phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xad0cf262 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad117c0d serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xad38ab2e kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xad38fda3 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xad50717d pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad593c51 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xad625b61 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6db333 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xad701293 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad73c1bb mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xad813046 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xad8885db usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadb92ba4 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xadc4c64e efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xadce8812 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xadd261e7 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xaddd59a0 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xade59d43 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xade6a022 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xade7622a sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xadec6aff alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae01c46d acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae12a7f2 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xae12e6a3 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xae2c5c5e max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae310999 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xae36f3da irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae74c335 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7f3844 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xae9048d4 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xaecc30db sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xaed1c6b9 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xaed605fb __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0ab996 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xaf14df62 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xaf1f57e8 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xaf2c196b pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xaf2c5ef1 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xaf30d01d devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xaf33ffee hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34b39d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf43018f iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xaf61f3e3 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xaf780a71 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf8687a3 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xafabce3e devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb14124 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xafc99206 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xafdc0eea rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe379d0 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xafe7060c amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xb00051a4 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb014a723 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0410b59 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xb051848f cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb061c345 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xb065b4c5 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xb06c0007 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xb0736627 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb075db8e inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xb07fa41d blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xb08686c0 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb08968a7 devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb0a4eb10 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xb0b20f9c devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c39fb4 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xb0c46ddd fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xb0cfb581 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0de18bd devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0e97c16 fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0xb0ed1949 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb0fb4ebf __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11ce739 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb132be06 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1a7ccbb ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xb1b855a4 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1bd3648 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c1f242 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xb1cf48d9 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xb1d00c8d tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ee5f8d kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb1ff29ad proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xb20e8c22 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22494e8 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xb229b757 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xb22cc4e7 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb22d4b2c acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xb22d6d7e usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xb232a91b dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb239bab9 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xb23ac28e screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24f5a17 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb2544a7b stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xb2560c91 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0xb2697a7f tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26a81b9 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xb278c62d skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xb27a803c usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2873f1c bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb28f5f2a md_stop -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2ce5365 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xb2d52c04 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xb2dbe1cc spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f3f6ab fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb2f8ce26 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb2fdad62 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb3019d08 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30e289f netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb30eb1b8 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0xb312209a tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xb3288c8f __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xb32c5d1c wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xb33ccb1a devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb3546134 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xb359487a nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xb3682845 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xb385c369 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb38ddeff dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0xb3b3348f ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3b73ce5 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xb3c6968e devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0xb3d57fbf get_device -EXPORT_SYMBOL_GPL vmlinux 0xb3d671de nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xb3e2bb45 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xb405396b proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb40971fe efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb41160a2 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb41bfaa9 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xb41ecf41 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xb42df186 __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb437a3d8 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb443bb5d rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xb446410d spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xb446976a irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4592242 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xb45d93af gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xb468ec76 udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0xb48976b1 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xb4960072 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xb4a25be1 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb4aa07c1 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4be81c1 flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0xb4cf15fc pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xb4d82f3b dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5092c3c put_pid -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5145bc3 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52447d6 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb5262c8a eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xb52c5885 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xb540114b virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xb549af10 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xb55891d6 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xb558a049 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb563d6f7 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb5749fc4 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb57b0b5e cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xb5811725 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5aa9706 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0xb5ab6cfa fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xb5b202ad addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xb5c3a41c save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0xb5da4940 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5eee2de akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb5f3ae01 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb5fa1bb1 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xb5fcfee8 vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb60ed99e ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb629850f trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0xb63818ee regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xb643d1dd crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xb64781fe nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xb659559d devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xb65cedd9 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xb6681a26 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xb6763af3 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb684aec6 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xb68f77f4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ee779a bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xb706e3a9 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xb70b9806 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xb70e6eef crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xb72198b5 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xb72506eb skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xb732589f 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 0xb73a3a0e rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xb740aa94 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb7474a75 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb74e56be pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xb758407b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xb7694dca acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xb7784e8c gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xb77e38c4 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb79ca638 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xb7aa88ba split_page -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7eb613e alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb8053004 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb807b4c6 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb82ca546 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb831349a pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xb834adf0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb83fecb4 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb8444c2b usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb851c0a3 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xb876d1df nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xb879722b crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb8819d08 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8917c61 xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8c265f4 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e9825d tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb90074d3 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xb90198ef phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xb90b8d82 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9142596 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb9332655 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xb936c40c mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xb93b011e pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xb94403df add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb95926cc nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xb976db23 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb998ac95 user_read -EXPORT_SYMBOL_GPL vmlinux 0xb9a31d79 fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xb9aa43d6 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d93ca5 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xb9dd2e91 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xb9f98ec1 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xba01c91b devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xba139327 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xba182a56 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xba1b0b74 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xba1d8bbe lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xba23872a devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba386cef xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xba4b5de0 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xba4dfa76 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xba57cdf3 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xba626d8a of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xba7f11c8 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xba984d9b acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xba9c548b of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xbaa1248b register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xbaa704a3 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xbab15a34 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac3d351 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xbacdc670 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbad6b05b usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xbad927b6 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xbadd9b4f zynqmp_pm_get_eemi_ops -EXPORT_SYMBOL_GPL vmlinux 0xbaf31c0f devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb35892b usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xbb44890d extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbb51a60c blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xbb5663ac cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xbb6a1450 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb745726 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xbb7a5505 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xbba1f713 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xbbaec476 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xbbafd556 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xbbb01324 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xbbcd3c68 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xbbdeb7c4 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xbbec7a91 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xbbeeb2cd ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbbff0aa0 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xbc1e36e9 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xbc2c3bbd xhci_mtk_sch_init -EXPORT_SYMBOL_GPL vmlinux 0xbc31d2e8 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xbc52aa48 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xbc53d170 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6d2a66 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xbc762fa4 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xbc767e10 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xbc7d6b6f devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xbc8cb267 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbc8da1c3 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xbc923349 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xbc9691f9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9fed51 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xbca3731a rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xbca723e7 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xbcaaa443 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcac6f76 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbcb4bf50 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xbcb71b4e crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xbcbc0b27 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcdf3ab6 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xbce2bd15 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcfe1b3f ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xbd147cc4 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4f5ffe crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd61529a xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xbdb39c6b serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xbdd41eec phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xbdedae93 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xbe0d1282 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xbe0e3603 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe2b3a95 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xbe30e541 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5df327 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe8a97d3 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeac3551 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbebc2da9 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xbec32014 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbeef369b stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xbef18881 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xbef2b5b7 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xbef2f8b1 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xbefea0c2 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xbf027698 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf10545a get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xbf2bfa93 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xbf2d6d12 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xbf326c30 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xbf4cf20f ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xbf524c7d fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xbf65f0ad dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xbf683424 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbf6cbd62 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xbf97acfa da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xbf9bdb66 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xbfa119f0 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcac2c7 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xbfdab2db of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xbfe21471 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc00b948c bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xc00d95ac spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc010c79f phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc018fff3 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xc019b387 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xc025d3f7 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xc02f0c1b pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xc03b8e72 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc06803e3 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc06f93f5 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc06fcfb0 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc0745f88 cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc088a996 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc08a11e1 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xc090ef9e blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xc0a8c334 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0afe474 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xc0b044a9 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xc0b183f4 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc0b6db52 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xc0c29353 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e72d0b dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xc0e9b596 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f94603 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc100c8cf tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1133ce3 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xc1161205 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc12e36c6 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xc130a9d0 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0xc13df570 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xc14f95b5 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xc154660c bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc15e57c1 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xc169f3f3 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18d97be security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xc1a2650e ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xc1a69494 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1b54d25 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xc1b71d87 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xc1c7e4d2 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xc1db877e unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xc1f18b50 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xc20cce20 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc21b89db mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xc223c84b shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2423ce5 kvm_clear_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0xc2564859 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xc26cfb0b ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29692b4 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xc29d7dde mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xc2a31145 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a56111 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b8baca crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc2b9b1df dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xc2bfcd6b pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c44a16 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xc2dbf501 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ea54c4 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xc2f20cc1 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xc31b6ae7 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xc3218786 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc33ff3d2 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3465646 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc368b441 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xc378fe0f phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xc37ab315 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc3a35a32 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3e64117 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ee10a0 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xc3f57bfa input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc419341e dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc444c8d0 blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0xc44a9a76 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4937b95 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xc4940c8d phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xc4b6b8f5 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc4b93268 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xc4d06cf8 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4d23fff class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc4dd4ce5 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xc4deceaf clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc4e36ca4 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xc4eae733 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f94f40 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc528f27f inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc52ab2cd uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0xc54c1d87 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc564fc00 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc5996c8c pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ac1f38 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xc5b540f9 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc5dac62d devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc5dad0f8 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xc5e5ee06 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0xc5e96156 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xc5f1f83c ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc5fd725e vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xc5fe50e1 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc603e2d3 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc6056bac da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc6137935 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc61738f1 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61e07cb phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xc62b61e8 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xc62bbf4c iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc648b026 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xc652ab5c devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc65dbdfb wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67c6a08 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xc67dcf0a paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xc67e0c00 devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67fd517 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xc6845507 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc6849f57 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xc68a1f0d __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc68fa939 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc693cccc dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a1a0c8 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ac900a serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xc6adc0ea bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xc6bb5055 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6f8b57a fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xc6face4e user_describe -EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0xc70362fa input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc7140b1f device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72f73af ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc750d433 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0xc777808c perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xc77ecdf7 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc789d628 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xc79413b2 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xc79528b0 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc798b4f8 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7adaee6 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cc045a dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc7d88f9f __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc7db7d02 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7ed973d fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xc7f36716 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc824f440 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc82662da i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82ee71c kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc844eaea reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b1c97 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xc8672a64 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xc8722a9c gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xc8734f81 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc885b8cd xhci_mtk_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xc8860b6e driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc88aea31 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xc8956fd8 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8cd01a7 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xc8d59b3d dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0xc8d79658 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xc8d7ccbc tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc8dba4bd pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ec5621 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc8f4f9cb update_time -EXPORT_SYMBOL_GPL vmlinux 0xc8f840ad rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc90caf9a anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xc90e02fd power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xc90e7e74 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9186a3e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xc92638bc pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xc926afa7 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xc9289f1c of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xc92fde7c pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9703a51 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9912198 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc9949b1d pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc9da9e3f regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9eebcf8 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca12dd56 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xca196f90 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xca2f2c50 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xca36be1c dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca56a636 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xca5b2141 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xca5f860d alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xca64a119 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xca655d0c power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xca6baaf0 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xca77736d blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xcab2d7e8 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcaba7db1 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xcaf05010 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xcafaa547 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xcb0cbbd7 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb265075 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb30be49 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xcb3b3628 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcb3b3f08 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xcb4d2eb8 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb60efb2 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xcb624464 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xcb6a5fde bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb846e13 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xcb8f774d pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xcba49fef of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0xcbb1835e rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xcbe544ab devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeb7a26 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcbec23c6 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc062f63 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xcc0aa1f9 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xcc14e9a1 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xcc2403d2 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc308045 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcc3ec3de tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xcc42d3e5 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xcc55d2c4 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xcc655a46 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xcc687225 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xcc6fc8bf amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xcc7b659f fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc7bbaf6 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xcc7f81bc of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcc81a1ea power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9f5058 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xcca1723c sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xccaf719c sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0f09b6 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xcd0ffbe2 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd38818a ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xcd38a880 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd419171 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xcd52025f kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd72ca4d da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xcd772d6f bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xcd7ea359 pci_create_root_bus -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 0xcda42b54 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0xcda68383 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc2b641 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd44fe3 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcdd9ebfc xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xce06a5f5 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce12ae6b sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xce19fe54 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xce1f8f15 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xce4e8ffc ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xce5cad0e dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xce622ded ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce871f11 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xce8e3edc pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xce911d67 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xce93af2f tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xce956d32 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0xceab5bf9 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcee8d65e regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcf04b141 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xcf12e582 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcf131c4a tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xcf1474a7 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcf1e2df9 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2964cd class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xcf4a93c4 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf63446f tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xcf721ea0 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xcf72e69e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xcf8f802d devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xcf9cd39e sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfd0877c sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfe542a4 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xd003b447 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd032eccf is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xd033a277 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd065b58b wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06e5414 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xd079769e kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd08dc88d __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xd08facf7 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a2bbc4 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xd0a3a24b regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xd0aa3a72 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c967aa iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d26743 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d4eef0 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f1815b sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xd0f82ed8 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xd1089829 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xd11b0c65 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xd1204007 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd1268df4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xd132de71 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd1355c93 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xd13b1745 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xd13e81f8 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xd1491960 device_move -EXPORT_SYMBOL_GPL vmlinux 0xd14eefd5 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd17603e9 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xd17b2e07 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xd19005f8 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xd19a99e9 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1b97229 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d5a69a nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fa235b decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xd1fde824 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xd202feba vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd210128c sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xd2165de1 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd25ffcb9 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xd266c9c6 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xd2697792 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xd26e24f5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2835c45 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd29127f3 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xd291e6d7 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xd2aceb58 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b2a103 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xd2c20fad usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2e1b013 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xd2e5afe5 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2eeae28 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xd2eeffc4 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd3078ed5 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xd314209a firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd3162536 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xd32c3b05 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36841f3 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37846e9 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd37a6291 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd388baec ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a1cb5b devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b49383 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xd3b6fca6 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xd3c31901 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd417963f md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xd41cf336 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd43377a3 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd43add50 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xd4420e3b __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd446089e mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd46ae514 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd473f699 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xd486b827 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xd495f0d8 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xd49d5357 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xd4b77865 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4ca5343 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0xd4fdd2d7 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5182ca8 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xd51efafc ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xd527581c sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xd52dd7bf regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd537f5f9 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd5521600 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56f0411 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xd57b3f66 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xd58de158 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xd592805f dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c06bb2 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xd5ee7c15 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xd5ef0195 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xd5f87cf8 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xd5facfb4 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd60135e5 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xd602d702 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xd6035702 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xd6070874 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xd6105f20 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xd63ad4ab regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd64aaf29 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd6552dec sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd65be20f blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd674e7b9 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xd6750577 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xd690d11c debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xd6937afc cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xd696017b devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xd6c26280 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd6d48bec irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7239841 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd752bca3 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xd755f1a9 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd761cd3a gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd77ef2b2 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd7801786 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7ceaec5 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd7d0d9ef acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xd7dd01e2 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xd7ddb51d platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xd8011094 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xd803f63d usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd80769fd tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd84c5cdd iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd853b8d2 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xd8611c12 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xd86d8a44 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xd87216c6 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xd87d05f7 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88c79b3 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xd893ab1d ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd8e82746 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90b538c spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xd90d3751 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd92ffbb9 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xd93383a5 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd942db73 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xd966bd05 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd970daa4 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xd97f6172 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xd98c2b4a tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xd9b1de96 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xd9b364bc phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xd9b7cfeb of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xd9b9d5c9 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xd9bbb1df device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9c3892a ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xd9d3ded8 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd9db0f2a nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xd9dfa538 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f42fb1 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xda266cd4 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xda2aa3d5 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xda78d286 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xda89ab30 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xda91ef65 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xda9aa920 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xda9b0403 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xda9cb0dd usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa0efa3 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab895c3 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdab8ebca of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xdac86b2f console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xdacfda8d strp_done -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdaf7cd10 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb027ee0 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xdb322258 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb38645f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xdb3deddf devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xdb4eaac1 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xdb53f9bb devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb5f4ac2 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6de8a3 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xdb734cf2 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8defc6 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdb994b12 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xdb9c30be devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdb9ea00c devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xdba27380 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xdbb7b303 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xdbb8e46e efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xdbb970e1 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xdbd1c999 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xdbd1cb83 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xdbe8f816 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfdacd3 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xdc052ee5 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc152681 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xdc1b0c80 gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0xdc1f4588 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xdc31b3e4 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5d4cd9 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc7dbed4 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc81a4f2 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc945caa pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xdc979850 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9e29ea regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca29164 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xdca4cf72 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xdca57914 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcb05ed6 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xdcb0ffb0 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xdcccb432 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xdccd03e5 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xdccf5be7 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova -EXPORT_SYMBOL_GPL vmlinux 0xdcd88547 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xdcdd94a4 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xdce13d47 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xdce870b1 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xdcf22259 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdcf75374 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd157064 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xdd1f238e xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3f6c83 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd7b55e3 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdd7f64f0 cpu_logical_map -EXPORT_SYMBOL_GPL vmlinux 0xdd801584 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xddb9e5fc bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc47a54 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xddc54537 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xddc74445 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xddc938d7 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xddc960ad virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdde03d6b ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdde2db93 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xddf8ce96 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xde05dc0c bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde09f3a0 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde131d54 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xde169b8b irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xde192b1e blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xde288dff debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xde366cbd pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xde381854 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xde529d50 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde76930b xhci_mtk_drop_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0xde7bf72a simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeb033ee vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdebbc9bd extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xdebc6824 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xded93bf0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xdf00c905 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf15e694 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xdf1bea6c usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf2620fc edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2af039 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf340b00 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xdf452cf4 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf5d0e4d cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xdf5fa8d6 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xdf702700 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xdf75c41a task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfa9a0aa regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xdfaa6621 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xdfb01ac0 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdfb27057 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdfbfa250 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xdfc7cec3 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfe860f7 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xdffb1b6d srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe015c65d usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xe025c96d nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0345efa mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xe037666e unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe040b6e0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xe045cc5d pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0645b5b metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe0788a15 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xe08ddaf5 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xe09b0197 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xe09b85d6 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0a60611 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c7e9c6 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0ed8f09 blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0xe0eec89f gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1252967 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xe1313ff0 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xe140b87e platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xe153fa7d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1780500 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xe18356bc pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xe186bb5c blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1b34e0a rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1b82f24 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1d6675a of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xe1e8b046 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xe1f5ee29 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe2111118 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe240503b serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xe241e238 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xe2461262 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xe25a5672 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe2743865 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xe2a10da3 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2eea9e3 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe2ff5737 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe31c72ea fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xe3255514 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xe335dcd2 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe3397f6c bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xe362941c of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0xe365f9c0 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xe3888c0e device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe391c1aa xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3aba2b8 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3ba262c handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3c26f2b gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3ebf9bd arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xe3f4ce8e i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xe3f98292 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe3fab2d4 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xe4064ab9 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe412b557 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xe416be0b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xe4172a1f arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe435d1ea bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xe439b18d perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xe45a146d devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xe4661491 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xe466161d nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe48c2f8b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4ace451 mmc_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4dd8857 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xe4e24e4b udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ea553f cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xe4f1a794 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xe4f6bd59 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xe4fab4a4 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xe4fc2ba5 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xe51111f6 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xe524af62 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0xe525dd25 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xe529f367 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xe539421f put_device -EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5538557 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xe55ee324 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xe58001b5 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5889ba7 cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0xe5906c03 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5924f12 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5d3ac7b __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe5df92a7 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe6011e83 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6346f7a devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xe6400bee switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xe6417bbb pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xe6438a0a pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xe656baaf irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xe65a6813 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xe663009e irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xe66e7745 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xe67b5488 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe68fd25c __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xe693ba59 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xe698ecb3 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xe6a38885 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe6b0f2fa tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xe6dc13f2 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6ee95ee unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fd1ac6 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xe7002923 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe71f4e7a gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xe738c835 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe73fd463 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe7437e96 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75c20de regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c0cdd xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xe76c4b74 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7894bab blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xe7a9f228 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xe7b52937 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xe7bfec8e __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7da2326 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe7e2fee8 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7fca6c3 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe8046c41 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe804e56c skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe82879e8 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe84db1f8 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe854c77c dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86b6776 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xe89de35a sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xe8a32dac phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xe8a778b0 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe8c3afe4 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe8cd30f8 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xe8e0a520 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe8e88d6a devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xe8f038e4 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe8fa0e81 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xe91d6a49 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94b8567 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe94da15f rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xe9507c8e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe9546227 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe976c118 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe97990de disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe97f7f82 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xe9808793 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xe99a782b ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xe99e2a8a sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xe9a62dc1 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe9bed782 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xe9cfe3a7 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9de78a3 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xe9dfdea2 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xe9e4162c clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xe9ed141d sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xe9f74df4 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe9f7895a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe9fdcc80 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xea0e288f iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1582ed i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0xea15f813 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xea2a5c60 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xea42ad9f efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea573f58 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xea5e56d2 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea61acba efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xea746eaa policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xea7888be ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0xea995cb8 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xeaae7f5b usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xeab1093c generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeae07203 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae302d1 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb00f282 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xeb0cdaae ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xeb2cd9ce irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb3f8466 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb5f2dab xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xebb99601 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xebc5198e of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebc9fe52 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdbeca4 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xebf0ccf4 xenbus_dev_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xebf7cdd8 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xebfbaf3e do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xec00c97d gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xec0ff1dc i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xec25d84d fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xec2f3b46 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec67713c gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec764117 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec8bcd03 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xeca9d8ac wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xecb31511 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xecb405ad usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbb7afa blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xecd7e114 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdc3543 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xed0901c9 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xed16f91a get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xed1f09e4 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xed243707 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xed2802e2 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0xed30001c device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xed492a1c __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xed5082e3 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xed5608e3 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed9f075a nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xeda55334 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xeda55f32 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xedcad19c usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xedcf4a3e iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd3d03a ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xedd6d636 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xeddae72f of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xeddc2aca serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xee00d78a serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee177dbd sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xee28f1de pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xee2ca9d7 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xee38863c iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3a1b3d rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xee42732f pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xee43e667 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xee49fc3d meson_clk_cpu_dyndiv_ops -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 0xee837eaa ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xee85e6ad pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xeea6a5f0 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xeeb1e5a0 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xeebe6e87 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xeec49f9b ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xeece46ca of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedf5e65 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xef15993a sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xef15bde6 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef21a030 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef54d758 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xef69a890 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef70b0c5 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xef72d1e2 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xef79cd8e devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa5ad1e sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xefc946a1 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xefd981d7 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xefd9f73d driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xefe235e5 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefef8240 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xf004c3bb iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf01dc111 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xf02a3a8b dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xf0364209 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04ba3d9 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf0565133 acpi_dev_gpio_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf090a4f6 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xf0933737 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xf0aa7669 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xf0adb34d led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xf0bdce2a rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf0c1af76 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xf0cd6be1 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0d55f51 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xf0df56a1 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xf0e56562 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xf101b417 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf102eaa2 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xf10765e6 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xf10fac41 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xf1223097 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xf1301495 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf13eaa02 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf14a5bf9 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf14b011c usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xf1557488 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf1610698 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xf17a4186 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf17e2c7b devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf185607b gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xf19440ee efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xf1adbade regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c26b26 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xf1e6c0e0 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xf1eee2ef regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf1f053e9 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf1f5abdd regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf1f5debb bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xf1fe056d stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xf20936ae crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf216d787 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xf21a4cda spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23647de amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf23db43b pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xf24d29d0 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xf24f68bf vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xf25205d7 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xf2678e00 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xf26dc1d8 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0xf277834c sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28ad1c2 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xf2a344dd srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2c19515 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xf2e39e68 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xf2ed44da scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xf2edc54c netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xf2f9107a ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30d5422 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3171791 irq_chip_eoi_parent -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 0xf3397972 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf34f8f42 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf358c150 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xf37de823 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf389f546 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xf3a95b51 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bfa336 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf3c9b74a blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xf3ce4724 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf3d0b176 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xf3d91e9b __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xf3e1a46e inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xf3e92570 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3e9e08e ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xf3ee99fc ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4102487 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xf41e2b4d power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf421339f srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4264a6d kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf42d3811 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xf432ad42 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xf4417560 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xf444abea usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf44f0949 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xf4516794 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf452eca3 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf46d43a8 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf4868670 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf495cb08 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xf498aba1 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xf49b2595 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xf4aae302 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4af5062 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4e085ba devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf502715b inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova -EXPORT_SYMBOL_GPL vmlinux 0xf51c0d54 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55af6e2 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xf5616a97 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xf5688064 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xf56dadcf tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xf58ca233 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf590ffc3 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f4163b of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf5fede76 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xf60f9dcc inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf616d6a8 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf659f884 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf67a7c86 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xf6881b13 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xf6883b38 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xf69400f2 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xf6976b62 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a807e7 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xf6aa3b5c sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf6b08fcc led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0xf6b66389 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf6b8aa3f __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f0b72d crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf74001d1 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf747b079 mbox_chan_received_data -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 0xf7506999 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xf7554741 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf7595fb7 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xf75b8fb8 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0xf75fcabf dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xf7602881 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xf78048a6 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7877a97 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf78e71d6 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf7907673 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xf79b80d3 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xf7aec867 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bc969e ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xf7bf22bb fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cacad6 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf7cb6200 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xf7d72738 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf7dd4f7c iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf7e8851f nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xf7e96ebc da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf811e6c0 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf81dc8e2 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xf82ef0be regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8309e3a perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xf847a795 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xf8572c36 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xf857c680 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xf86e5899 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf8837943 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xf8b10693 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xf8bc23cc iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xf8beced5 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8c9e78e cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf8d00936 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -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 0xf9808842 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf996d0d8 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ac0cbf i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xf9aeffa3 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf9bfff1d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xf9e05a9f scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xf9e315ca rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xf9eb6cd1 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xf9f49a25 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfa009357 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0xfa18773f led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa40f23a kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xfa437f99 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xfa4f6c2e rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa769b87 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa906480 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xfa96fc5a rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfa9ce99c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab9f48e dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xfad28111 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xfad41738 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfada5566 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfadc14e3 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xfaed4aaa unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xfaf92c13 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xfb1f7a99 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xfb223fe3 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb54995f pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7c8988 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xfb7f4602 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xfb85f20c __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xfb903734 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xfb992494 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xfba22c48 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xfbaa7177 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc6918d sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xfbca6bfb xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0xfbd11066 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xfbf3669e pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc172543 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1afef4 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc384700 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc489f69 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xfc53d0da ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xfc66fb6d ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfca9a263 dprc_close -EXPORT_SYMBOL_GPL vmlinux 0xfca9aaba sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfcaec2ec md_run -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfce41d47 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xfcf34ceb serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0xfcfcdb6b crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xfd0e6139 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xfd10dfc2 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xfd1a73a3 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xfd227b74 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xfd42d663 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xfd454a93 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xfd5eeeba find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xfd629249 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd752115 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xfd9660b7 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfda50254 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xfdaebf04 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xfdb25951 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xfdba1646 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdca3082 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfde7566a extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xfdf13e8f regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfe0c33f2 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xfe0dbc65 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe153dd4 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xfe1eed5e dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xfe3790a5 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xfe3a0bec rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4c2e22 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xfe5a9671 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xfe63fbda dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xfe64f3c1 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe6adab8 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xfe75ad8e virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9eb641 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xfe9f2952 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xfea0b330 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfeaa38e2 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xfeb0ea28 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xfeb0ffc6 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfecfd042 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed6ae02 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xfed7fc50 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xfed8fc99 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xfedeb0cb skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xfeebaee0 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef4c78e pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0fc8d5 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ccb9b hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xff39f863 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4f88fc pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xff5905dd devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff8af655 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xff8fc021 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xff98536b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa062b2 input_class -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbb40d6 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xffc00fc9 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xffc7e1ba thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xffda4b26 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xffdd27cd dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xffdeebbf regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xfffc8e9f devm_hwspin_lock_request_specific -USB_STORAGE EXPORT_SYMBOL_GPL 0x033eed45 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0955c198 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x10ec2b10 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x14d6428d usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x184ee967 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1f43d876 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x27605fd1 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x41e368d1 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4ff45051 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x53d529df usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6983d8cc usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x76ed9b32 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8753dc2d usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8920ba79 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x93870118 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa094d28c usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa35417fa usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb61936e5 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcf09bb40 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd679036e usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb513980 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xde1df282 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf81a5a69 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfed0d493 usb_stor_suspend drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/arm64/generic.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/arm64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/arm64/generic.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/arm64/generic.modules @@ -1,6001 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_exar -8250_men_mcb -8250_omap -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -a100u2w -a3d -a53-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -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_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs450 -aegis128 -aes-arm64 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -aes-neon-bs -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_brcm -ahci_ceva -ahci_mtk -ahci_mvebu -ahci_platform -ahci_qoriq -ahci_seattle -ahci_xgene -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -allegro -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc_pci -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anubis -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apds9300 -apds9802als -apds990x -apds9960 -apex -appledisplay -appletalk -appletouch -applicom -apr -aptina-pll -aqc111 -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_dsu_pmu -arm_mhu -arm_scpi -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 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -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-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axg-audio -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x-rsb -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bam_dma -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-flexrm-mailbox -bcm-keypad -bcm-pdc-mailbox -bcm-phy-lib -bcm-sba-raid -bcm-sf2 -bcm203x -bcm2835 -bcm2835-rng -bcm2835-v4l2 -bcm2835_thermal -bcm2835_wdt -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm7038_wdt -bcm7xxx -bcm87xx -bcm_crypto_spu -bcm_iproc_adc -bcm_iproc_tsc -bcma -bcma-hcd -bcmsysport -bd6107 -bd70528-charger -bd70528-regulator -bd70528_wdt -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluefield_edac -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs-drm -bonding -bpa10x -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb-avs-cpufreq -brcmstb_nand -brcmstb_thermal -brcmutil -brd -bridge -broadcom -bsd_comp -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -caam -caam_jr -caamalg_desc -caamhash_desc -cachefiles -cadence-quadspi -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sdm845 -camellia_generic -can -can-bcm -can-dev -can-gw -can-j1939 -can-raw -cap11xx -capi -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 -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-pltfrm -cdns3 -cdns3-pci-wrap -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8318 -chipone_icn8505 -chipreg -chnl_net -chromeos_tbmc -chtls -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-hi3519 -clk-hi655x -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-phase -clk-pwm -clk-qcom -clk-raspberrypi -clk-rk808 -clk-rpm -clk-rpmh -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-sprd -clk-twl6040 -clk-versaclock5 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobra -coda -coda-vpu -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -contec_pci_dio -cordic -core -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppc_cpufreq -cptpf -cptvf -cqhci -cramfs -crc-itu-t -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-cec -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_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_vbc -cros_kbd_led_backlight -cros_usbpd-charger -cros_usbpd_logger -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da9030_battery -da9034-ts -da903x -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 -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 -de2104x -decnet -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sdm845 -dl2k -dlci -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-integrity -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 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dpaa2-console -dpaa2-ethsw -dpaa2_caam -dpot-dac -dps310 -drbd -drm -drm_kms_helper -drm_mipi_dbi -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dumb-vga-dac -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_drm_dsi -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-keystone -dwc3-meson-g12a -dwc3-of-simple -dwc3-pci -dwc3-qcom -dwmac-altr-socfpga -dwmac-dwc-qos-eth -dwmac-generic -dwmac-ipq806x -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dwmac-sun8i -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -ecc -ecdh_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-mxc -ehci-platform -ehset -einj -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -emxx_udc -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -envelope-detector -epic100 -eql -erofs -error -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -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 -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -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_sh1106 -fb_ssd1289 -fb_ssd1305 -fb_ssd1306 -fb_ssd1325 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fixed -fjes -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -fscache -fsi-core -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-dpaa2-eth -fsl-dpaa2-ptp -fsl-edma -fsl-edma-common -fsl-enetc -fsl-enetc-mdio -fsl-enetc-ptp -fsl-enetc-vf -fsl-mc-dpio -fsl-mph-dr-of -fsl-qdma -fsl_dpa -fsl_ifc_nand -fsl_imx8_ddr_perf -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_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 -gasket -gb-audio-apbridgea -gb-audio-gb -gb-audio-manager -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-ipq806x -gcc-ipq8074 -gcc-mdm9615 -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcc-msm8994 -gcc-msm8996 -gcc-msm8998 -gcc-qcs404 -gcc-sdm660 -gcc-sdm845 -gcc-sm8150 -gdmtty -gdmulte -gdth -gemini -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-ce -gianfar_driver -gigaset -gl518sm -gl520sm -gl620a -glink_ssr -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd-fch -gpio-amdpt -gpio-arizona -gpio-bd70528 -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-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -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-moxtet -gpio-pca953x -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-pmic-eic-sprd -gpio-raspberrypi-exp -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-sama5d2-piobu -gpio-siox -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-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xgene-sb -gpio-xlp -gpio-xra1403 -gpio-zynq -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpmi_nand -gpu-sched -gpucc-sdm845 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hanwang -hbmc-am654 -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd44780 -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421v530-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hibmc-drm -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hip04_eth -hisi-rng -hisi-sfc -hisi-trng-v2 -hisi504_nand -hisi_dma -hisi_femac -hisi_hpre -hisi_powerkey -hisi_qm -hisi_sas_main -hisi_sas_v1_hw -hisi_sas_v2_hw -hisi_sas_v3_hw -hisi_sec -hisi_sec2 -hisi_thermal -hisi_zip -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns-roce-hw-v1 -hns-roce-hw-v2 -hns3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp100 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hyperbus-core -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-bcm-iproc -i2c-bcm2835 -i2c-brcmstb -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-imx -i2c-imx-lpi2c -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-scmi -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-synquacer -i2c-taos-evm -i2c-thunderx -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xgene-slimpro -i2c-xiic -i2c-xlp9xx -i3c -i3c-master-cdns -i40e -i40iw -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-core -icc-smd-rpm -ice -ice40-spi -icp -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imon -imon_raw -ims-pcu -imx-cpufreq-dt -imx-dma -imx-mailbox -imx-pcm-dma -imx-pxp -imx-rngc -imx-sdma -imx214 -imx258 -imx274 -imx2_wdt -imx319 -imx355 -imx6q-cpufreq -imx6ul_tsc -imx7d_adc -imx7ulp_wdt -imx_keypad -imx_rproc -imx_sc_wdt -imx_thermal -imxfb -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int51x1 -intel-xway -intel_th -intel_th_acpi -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ionic -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc-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 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb3 -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 -kbtab -kcm -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kheaders -kirin-drm -kl5kusb105 -kmem -kmx61 -kobil_sct -komeda -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -kpss-xcc -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -layerscape_edac_mod -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -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-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-sc27xx-bltc -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -lego_ev3_battery -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -lima -lineage-pem -linear -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -lkkbd -llc -llc2 -llcc-sdm845 -llcc-slice -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 -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 -lpasscc-sdm845 -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-encoder -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_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-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max8649 -max8660 -max8688 -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 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mcp16502 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-mscc-miim -mdio-mux-gpio -mdio-mux-meson-g12a -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-octeon -mdio-thunder -mdio-xgene -mdt_loader -me4000 -me_daq -mediatek-cpufreq -mediatek-drm -mediatek-drm-hdmi -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-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mi0283qt -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microtek -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlx_wdt -mlxbf-tmfifo -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8996 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_sound -most_usb -most_video -motorola-cpcap -moxa -moxtet -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi001 -msi2500 -msm -msm-vibrator -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-quadspi -mtk-rng -mtk-sd -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxc_nand -mxc_w1 -mxcmmc -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nand -nand_ecc -nandcore -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -netsec -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -nixge -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-1 -nls_iso8859-13 -nls_iso8859-14 -nls_iso8859-15 -nls_iso8859-2 -nls_iso8859-3 -nls_iso8859-4 -nls_iso8859-5 -nls_iso8859-6 -nls_iso8859-7 -nls_iso8859-9 -nls_koi8-r -nls_koi8-ru -nls_koi8-u -nls_utf8 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -nps_enet -ns-thermal -ns558 -ns83820 -nsh -ntb -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nuvoton-cir -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-bcm-ocotp -nvmem-imx-iim -nvmem-imx-ocotp -nvmem-imx-ocotp-scu -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-sc27xx-efuse -nvmem_meson_efuse -nvmem_meson_mx_efuse -nvmem_qfprom -nvmem_rockchip_efuse -nvmem_snvs_lpgpr -nvmem_sunxi_sid -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocelot_board -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -octeontx2_af -octeontx2_mbox -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -ofpart -ohci-platform -omap-mailbox -omap-rng -omap4-keypad -omap_hwspinlock -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -owl-dma -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -panel -panel-arm-versatile -panel-feiyang-fy07024di26a30d -panel-ilitek-ili9322 -panel-ilitek-ili9881c -panel-innolux-p079zca -panel-jdi-lt070me05000 -panel-kingdisplay-kd097d04 -panel-lg-lb035q02 -panel-lg-lg4573 -panel-lvds -panel-nec-nl8048hl11 -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-rocktech-jh057n00900 -panel-ronbo-rb070d30 -panel-samsung-ld9040 -panel-samsung-s6d16d0 -panel-samsung-s6e3ha2 -panel-samsung-s6e63j0x03 -panel-samsung-s6e63m0 -panel-samsung-s6e8aa0 -panel-seiko-43wvf1g -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-sharp-ls043t1le01 -panel-simple -panel-sitronix-st7701 -panel-sitronix-st7789v -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -panel-tpo-tpg110 -panel-truly-nt35597 -panfrost -parade-ps8622 -parkbd -parman -parport -parport_ax88796 -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_imx -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pblk -pc300too -pc87360 -pc87427 -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-pf-stub -pci-stub -pci200syn -pcie-iproc -pcie-iproc-platform -pcie-rockchip-host -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia_core -pcmcia_rsrc -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pfuze100-regulator -phantom -phonet -phram -phy-am654-serdes -phy-armada38x-comphy -phy-bcm-kona-usb2 -phy-bcm-ns-usb2 -phy-bcm-ns-usb3 -phy-bcm-ns2-usbdrd -phy-bcm-sr-pcie -phy-bcm-sr-usb -phy-berlin-sata -phy-berlin-usb -phy-brcm-usb-dvr -phy-cadence-dp -phy-cadence-sierra -phy-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gpio-vbus-usb -phy-hi3660-usb3 -phy-hi6220-usb -phy-hisi-inno-usb2 -phy-histb-combphy -phy-isp1301 -phy-mapphone-mdm6600 -phy-meson-g12a-usb2 -phy-meson-g12a-usb3-pcie -phy-meson-gxl-usb2 -phy-meson-gxl-usb3 -phy-meson8b-usb2 -phy-mtk-tphy -phy-mtk-ufs -phy-mtk-xsphy -phy-mvebu-a3700-comphy -phy-mvebu-a3700-utmi -phy-mvebu-cp110-comphy -phy-ocelot-serdes -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-pcie2 -phy-qcom-qmp -phy-qcom-qusb2 -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-rcar-gen2 -phy-rcar-gen3-pcie -phy-rcar-gen3-usb2 -phy-rcar-gen3-usb3 -phy-rockchip-dp -phy-rockchip-emmc -phy-rockchip-inno-hdmi -phy-rockchip-inno-usb2 -phy-rockchip-pcie -phy-rockchip-typec -phy-rockchip-usb -phy-sun4i-usb -phy-sun6i-mipi-dphy -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-ipq4019 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-mdm9615 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8994 -pinctrl-msm8996 -pinctrl-msm8998 -pinctrl-msm8x74 -pinctrl-qcs404 -pinctrl-qdf2xxx -pinctrl-rk805 -pinctrl-sc7180 -pinctrl-sdm660 -pinctrl-sdm845 -pinctrl-sm8150 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -psmouse -psnap -psxpad-spi -ptp-qoriq -ptp_dte -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-bcm-iproc -pwm-bcm2835 -pwm-beeper -pwm-berlin -pwm-brcmstb -pwm-cros-ec -pwm-fan -pwm-fsl-ftm -pwm-hibvt -pwm-imx-tpm -pwm-imx1 -pwm-imx27 -pwm-ir-tx -pwm-lp3943 -pwm-mediatek -pwm-meson -pwm-mtk-disp -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-sprd -pwm-sun4i -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q6adm -q6afe -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -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-pon -qcom-rng -qcom-rpmh-regulator -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink_native -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -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-qcs404 -qnoc-sdm845 -qnx4 -qnx6 -qoriq-cpufreq -qoriq_thermal -qrtr -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ramoops -raspberrypi-cpufreq -raspberrypi-hwmon -raspberrypi-ts -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-vin -rcar_can -rcar_canfd -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rcuperf -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -renesas_wdt -repaper -reset-brcmstb -reset-hi3660 -reset-meson-audio-arb -reset-qcom-pdc -reset-scmi -reset-ti-sci -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmtfs_mem -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-io-domain -rockchip-rga -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rocket -rohm-bd70528 -rohm-bd718x7 -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-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-mt6397 -rtc-mt7622 -rtc-mxc -rtc-mxc_v2 -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-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -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-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -rza_wdt -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sahara -salsa20_generic -samsung-keypad -samsung-sxgbe -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 -sbs-battery -sbs-charger -sbs-manager -sbsa_gwdt -sc16is7xx -sc2731-regulator -sc2731_charger -sc27xx-vibra -sc27xx_adc -sc27xx_fuel_gauge -sc92031 -sc9860-clk -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -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_pm_domain -scpi-cpufreq -scpi-hwmon -scpi_pm_domain -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci -sdhci-acpi -sdhci-brcmstb -sdhci-cadence -sdhci-esdhc-imx -sdhci-iproc -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-omap -sdhci-pci -sdhci-pltfm -sdhci-pxav3 -sdhci-sprd -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -ser_gigaset -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh-sci -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sh_veu -sha1-ce -sha2-ce -sha256-arm64 -sha3-ce -sha3_generic -sha512-arm64 -sha512-ce -shark2 -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skd -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 -sm3-ce -sm3_generic -sm4-ce -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smd-rpm -smem -smiapp -smiapp-pll -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bcm2835 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -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-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-acpi -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-armada-370-db -snd-soc-audio-graph-card -snd-soc-bcm2835-i2s -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-core -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7219 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-imx-audmix -snd-soc-imx-audmux -snd-soc-imx-es8328 -snd-soc-imx-sgtl5000 -snd-soc-imx-spdif -snd-soc-inno-rk3036 -snd-soc-kirkwood -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -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-g12a-tohdmitx -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mtk-common -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5663 -snd-soc-sdm845 -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-spdif-rx -snd-soc-spdif-tx -snd-soc-sprd-platform -snd-soc-ssm2305 -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-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -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-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd9335 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-acpi -snd-sof-imx8 -snd-sof-of -snd-sof-pci -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-variax -snd-usbmidi-lib -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 -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -soundwire-bus -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-armada-3700 -spi-axi-spi-engine -spi-bcm-qspi -spi-bcm2835 -spi-bcm2835aux -spi-bitbang -spi-brcmstb-qspi -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-fsl-lpspi -spi-fsl-qspi -spi-geni-qcom -spi-gpio -spi-hisi-sfc-v3xx -spi-imx -spi-iproc-qspi -spi-lm70llp -spi-loopback-test -spi-meson-spicc -spi-meson-spifc -spi-mt65xx -spi-mxic -spi-nor -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -spi-rspi -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-sifive -spi-slave-mt27xx -spi-slave-system-control -spi-slave-time -spi-sprd -spi-sprd-adi -spi-sun6i -spi-synquacer -spi-thunderx -spi-tle62x0 -spi-xcomm -spi-xlp -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spl -spmi -spmi-pmic-arb -sprd-dma -sprd-sc27xx-spi -sprd_hwspinlock -sprd_serial -sprd_wdt -sps30 -sr-thermal -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -stratix10-rsu -stratix10-soc -stratix10-svc -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sun4i-backend -sun4i-csi -sun4i-drm -sun4i-drm-hdmi -sun4i-frontend -sun4i-gpadc -sun4i-tcon -sun4i_tv -sun50i-codec-analog -sun50i-cpufreq-nvmem -sun6i-csi -sun6i-dma -sun6i_drc -sun6i_mipi_dsi -sun8i-adda-pr-regmap -sun8i-codec -sun8i-codec-analog -sun8i-drm-hdmi -sun8i-mixer -sun8i_tcon_top -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sunxi -sunxi-cir -sunxi-mmc -sunxi-rsb -sunxi_wdt -sur40 -surface3_spi -svgalib -switchtec -sx8 -sx8654 -sx9500 -sy8106a-regulator -sy8824x -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -synclinkmp -synopsys_edac -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -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 -tc358764 -tc358767 -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_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 -tea -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 -tgr192 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -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-ads7950 -ti-ads8344 -ti-ads8688 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_sci_pm_domains -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc_core -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217 -tps65217-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucs1002_power -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-hisi -ufs-mediatek -ufs-qcom -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -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_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vc4 -vcan -vchiq -vcnl4000 -vcnl4035 -vctrl-regulator -veml6070 -venus-core -venus-dec -venus-enc -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_mdev -vfio_platform_bcmflexrm -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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-sdm845 -videodev -vim2m -vimc -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wcnss_ctrl -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wimax -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgene-dma -xgene-enet -xgene-enet-v2 -xgene-hwmon -xgene-rng -xgene_edac -xhci-histb -xhci-mtk -xhci-plat-hcd -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_can -xilinx_dma -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xilinxfb -xillybus_core -xillybus_of -xillybus_pcie -xircom_cb -xlnx_vcu -xor -xor-neon -xpad -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 -yealink -yellowfin -yenta_socket -yurex -z3fold -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zunicode -zx-tdm -zynqmp-fpga -zynqmp_dma reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/arm64/generic.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/arm64/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic @@ -1,23062 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x3b403946 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x9942b400 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x92c70678 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x9461d737 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xa04a679c crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xb4f4fad3 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xc44819f1 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xfa4a0e11 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x099a9eb8 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xd0118233 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xd972f12c crypto_sha3_update -EXPORT_SYMBOL crypto/sm3_generic 0xa464ec9a crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xf3cbed6c crypto_sm3_update -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x872ae248 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x0a7f042d bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xf8814489 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 0x00249460 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x2af2de9a paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x3d8e864c paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x431d2a25 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x4b07f9f2 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4c2d1c87 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x61af4802 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x6fa40c4d pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x9c659745 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xb17c52b3 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xd637b504 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xe7ce04a4 pi_write_regr -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x684d0bb5 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x84d5912d rsi_bt_ops -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2dfa9bd5 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x71f03dad ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc5825ab0 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0db8e11 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7ecb46bd kcs_bmc_alloc -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf378f8fd kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x03aee39c st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3c629205 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x417771b0 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe17c13b4 st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x631aa197 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc90013d3 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe0230d58 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6363379b atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x8658060a atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9dc469a3 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x25a248d4 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa4ea92af caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb66e9857 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe04e41e0 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf7a8841d caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x46efe449 cnstr_shdsc_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4b74fe69 cnstr_shdsc_rfc4106_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4ead8e70 cnstr_shdsc_aead_null_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x6de99a64 cnstr_shdsc_rfc4543_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x756131a7 cnstr_shdsc_aead_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86089940 cnstr_shdsc_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x893ab046 cnstr_shdsc_aead_null_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x8a8c929e cnstr_shdsc_xts_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa2ea5326 cnstr_shdsc_gcm_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa970bc2f cnstr_shdsc_xts_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xbef6ab16 cnstr_shdsc_chachapoly -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xc6c7d14b cnstr_shdsc_rfc4543_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xe05ab546 cnstr_shdsc_rfc4106_encap -EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x686d05f8 cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x9dc00876 cnstr_shdsc_sk_hash -EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x72e87822 caam_strstatus -EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg -EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0055be20 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x01d66723 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x06c20334 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ecfc7de fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x192c787c fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d2581fd fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x323630e5 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x362de2a5 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x639596ac fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x691f48c3 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7820cd13 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bbe0bbc fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x867fc399 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87266928 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x93bccdd5 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a6c31dc fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa51e2400 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbbbc43f8 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2400dfa fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc95dbcb1 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb83703c fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd5f93096 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd7dc2bac fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xda3db315 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5b6564d fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf14aaa32 fw_iso_context_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x002397be drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0075a14f drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x010095d1 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x020bb340 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f809ac drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c3d067 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ce2523 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d21d32 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x043f25a3 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0441a1f9 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0465997d drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0633611d drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x069d0ba0 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x086fbc17 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0883d972 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x097498d6 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0986db58 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c1a2293 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc488a7 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0deadddf drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e39a4db drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eae3c04 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb33fe8 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1043958b drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124743c0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13981735 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1474a1ea drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1715fed0 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17bef7c3 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ff9ea6 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a67329b drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3f638 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf1a059 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0b4887 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce84a80 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf3bec5 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d608b27 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2a8fcd drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc72c7e drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d39f63 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x223c8852 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22686eca drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x233a9cc1 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x233f32e0 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b93866 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x251a1d9e drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x263b0272 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x263e408a drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26dc3184 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d23c3f drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28382076 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28866a62 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a49a635 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4a8198 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bd2dc3f drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c46139f drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d96d02f drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de0bdb2 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f71406f drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb9424d drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30511116 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3228c272 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x347256b2 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34982351 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a1c7ca drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35917ac2 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x364c9e7d drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a94a70 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376b9087 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37f02c08 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3844526a drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3869afb0 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x391f62e5 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x395ab7a0 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a89ea2 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0fdc80 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad6c372 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c71b60f drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce0cd04 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1902c3 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8ad5ff drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da29bfa drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ed39e65 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x408ad696 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40d54dc5 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41689f95 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b2616f drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4207132d drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42792535 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42db0c79 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ee30fa drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44592fd4 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x446095e5 drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4499ef83 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4556868d drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d06277 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45e5b852 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x462b6b72 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x476d2684 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c9981a drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47cccb91 drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x482d3bf0 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48859f0b of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49592e72 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49bdb1d4 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3bc4b9 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6ab163 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6687e9 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7abe7f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce8cc0d drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da50a30 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dabc37c drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e9f132d drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1b956c drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50721cfb drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50897dbc drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a89cef drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5123523d drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cae621 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x556d0e23 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5720ff3b drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5776f643 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6d957 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c33e69 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0acc3b drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b521588 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b875e91 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da8c97f drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df7d05f drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7739b5 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f95c5be drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x600aa6c5 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x601f70d8 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x610a96f5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b414cd drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b985b3 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62315148 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e2fe40 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63168e32 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a18b9a drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x682d48ff drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68726409 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c837fe drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ff7757 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69da6f53 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e714a9c drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f838f63 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fff2fce drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x706b1b1a drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713353d8 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7145db38 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f5b128 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7262a3f0 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7296ed2d drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a3196e drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e0b81b drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fb9160 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x768b68bf drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f49f53 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ac3ceb drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f9dcb1 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7839f471 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x783abad9 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7894a21c drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a97e86 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c268e1 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c4271e drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a010e82 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a38bb3c drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b3bb509 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef83122 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x804ba362 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e4fa93 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8284355d drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bd49cb drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e39113 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8324bd6b drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83981449 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x845bbab9 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x845ea5bb drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85085881 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8542dc2a drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8548d3b7 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8577d4e3 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86105e46 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x872b97f8 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8734582c drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8735d1ab drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x879f1796 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9dc0df drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aef1e0e drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b3f0121 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3417a9 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d68b305 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da2fd39 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da83594 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f0373f2 drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f228c0e drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f603df1 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x907c7e29 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91056f24 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91328039 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b997eb drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x935a0986 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9382f530 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94586d77 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95bc3a36 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9648cf47 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9760933f drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c22999 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d7a4cf drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98491f07 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c29227 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99364fd7 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1d243d drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9be9ff41 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2f0278 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e5e0cb7 drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef8eb5c drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd3be25 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa009910a drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa048796e drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13b0333 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52a8fde drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa570a71d drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b808ab drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63fc136 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67ac9e4 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7640c26 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c305d5 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ecfd83 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff65e0 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa822641b drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8dcbfdd drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93a9276 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb1e22 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab5d161d drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbe9cc8 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee6999b drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf083a63 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2130a1 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf66c8c4 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0dfffac drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1841195 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b14e19 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2769398 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb27c3a2e drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c471f4 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f8d2a9 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3267008 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c2d043 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e0fc40 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb53049c0 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5627e09 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d67e53 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c586e1 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c5f366 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb935eb1f drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fef43a drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0cc88b drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb9d6a0d drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcd7a473 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcb27b1 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe6f61bb drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0e1f3b drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf7289f1 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe3bf37 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfffeac9 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06cf1bc drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0944f37 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ac08ee drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a24db6 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f42c0d drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3098e95 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39ff710 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc441bf11 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48fb99e drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce9af3 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6281e09 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64d74ee drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc74416e0 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c42bcf drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca252deb drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcafc4079 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe74c47 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3a3c9c drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2583ed drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5d3cd1 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd14422 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0d014a6 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e8c728 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1426ece drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a70242 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b19ce1 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd431476f drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4fb5db3 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd51f1906 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6465ee8 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7003d70 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77d7844 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ea2fc6 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8421a62 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b4b2b1 drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9ea4297 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb20a37a drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5a0800 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5f3e1c drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc39b88b drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3a73f4 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6287d7 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8d1680 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda24277 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde730fe drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1ecc1a drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee07968 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a31d6e drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a6a3ee drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f01cb7 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe21400c7 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ea66ce drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe37f1526 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e81063 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e265ab drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e730c7 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d8a0b5 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ae7f90 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8c30127 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea732a4d drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf103cb drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafdc34a drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb17f1c6 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5c8fea drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6a73ad drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc5556e drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec4a521d drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9f6d5a drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed02cd56 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef10834 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1a160d drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d9c3eb drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1c7ed56 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c76d94 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3936f38 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a02294 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ad2f28 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d2e3c7 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ba2ff7 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62298d4 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf778960e drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf799bf12 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a71ede drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9df6634 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa90ee61 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd946c1 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfce5ab45 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd38c552 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4247bb drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2d4ec1 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe44af08 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ba7fde drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02c09868 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04b420d2 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05758e2a drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x068f779f drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x077488ff drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0814f76c drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0906c3b8 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x096371ba drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09cfe0d5 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c1f9581 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x144629dd __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17a3df64 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b4537d drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b4cd679 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b561217 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c2e31bd drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbe4416 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cde2c53 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d707c77 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e76b7c3 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22cbc2c6 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24cd309a drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285dd68d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28f23781 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ad6cafe drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b43426e drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b982a31 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c73b18f drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e0c38fe drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f2e682d drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f8d7a01 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f93875a drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fafafb7 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30bbf2ee drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31dc1e6d drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3200de69 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x321add95 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334e6e70 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3501588c drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3880b5bb drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38c86ee0 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3937067d __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c6ca51 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1e977d drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4139eb2e drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41fcfdb5 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46068956 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46686332 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f65914 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b794fc drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e6566b drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49174abc __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492387f3 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bc6520f drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d44108a drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dae935a drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e474042 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509453c6 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x535f8067 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c6de11 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54f31e41 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55579038 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5582720f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5617fc20 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d21eba7 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb27412 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62c8d07a drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6342c614 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x635bc7a2 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65d7db85 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666cf997 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678c8712 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c206bd drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69a3edf6 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a469edf drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afb1f3a drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d8725c3 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6de910f6 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70bc0855 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71fc459a drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721f6583 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x729af64e drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7435d642 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74564e71 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7709a1e9 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x780c48b2 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x787d1e60 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79dbd9a2 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c183ff7 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce73ab0 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7db1e302 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ea0ed1b drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f8d8837 drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fb73fee drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80dfd25d drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829494b2 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x840e590f drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f559f2 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8806d494 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88f8d9d8 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aa0ac9c drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c14a4b3 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cac8ff9 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d0cbf5d drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d48f77d drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f759f3b __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8dfcac drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916198f3 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a53ff6 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94908cf5 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97cc7380 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98389592 drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9983e5bf drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac99c16 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd24673 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c869531 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc87004 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cd9189d drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1266b50 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa390b805 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa478fe99 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa57f43e6 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa84f33ad drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa85a3094 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab123f0e drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab2988fa drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaedf7a11 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00e1bca drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22d7e23 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb298534c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7947d82 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8206f3d drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8774272 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9f6f001 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaabbbc0 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd3e32a devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd1eccac drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd44ac75 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdacb3e1 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef18b82 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17e4386 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc18f2414 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c0f51a drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1de8a15 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc41022ea drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4791087 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a64ebc drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67e8ade __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d0295d __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc988e716 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca174166 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb5735e8 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbef8899 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc327fd5 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc478924 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd072590 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce6cc5cd drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceae04c9 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf83678c drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf9cd7c6 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fcc3d8 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd42fdcbe drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5bd9dbf __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd60aa327 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd740b33f drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd863ebe7 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda33f9f9 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda742d42 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0dd64b0 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe343d734 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4445359 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe491d232 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe683d875 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c50edb drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe94b9445 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe980f1d1 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea540e02 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0c6263c drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf14e8b7d drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1efdaa6 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40e0860 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5312a5d drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf53524a9 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf680dfba drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6999aa2 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf699a730 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf72a2dfa drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7b4882e drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf830a830 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9bc0e85 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb2cb527 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdde9425 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff77c24d drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa7dcf7 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x267c2201 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26912573 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4eed3a23 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x509945bc mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x698c52b9 mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7d631a74 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e185910 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x835397b3 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85aaba5c mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8938e034 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x92fbd600 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x96ac039a mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa005b871 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6218cfb mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbee3f83e mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6622bc7 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd90cf202 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe0496cb7 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0be81237 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1e014965 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1e0e1c69 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2f69c458 drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x36aaa692 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3deb2c77 drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x43b075c3 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f837ee3 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ace85bf drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6fb47856 drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7f943f79 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x94dea20a drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xafad3307 drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0511d57 drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc618a923 drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc88f1c61 drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd728c916 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee811f96 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfb5af572 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfd3617f1 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x7c9ce57d rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x067de27e drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13afc0cd drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x160d7d58 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3414165d drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x446c5f20 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x462f5be9 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c2e8cd0 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5d900d7a drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c047e1b drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86e3b85e drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x975eb009 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad929b00 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc04d4a0d drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc57dfa2c drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc881cb36 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd1c6ca0 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0e5d067 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7d37b1f drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf56b5448 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x011c9053 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04599d6c ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0df8069f ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f717dfb ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1015b3d0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10aa9156 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13f95ff2 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18d2602c ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b9b0f5f ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x270514e9 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31b96d64 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c52253f ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d389530 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45f26cec ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x497d4553 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c173891 ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d6ab938 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d7dfce5 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e112dcc ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50c0be9a ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x533fc008 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53cdec7d ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x553a96c0 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5980bd88 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b320cfc ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f78d1e2 ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64939a2d ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7203d944 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x733fa580 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73aa9378 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c5001a6 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7dcd6809 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ff05ee0 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x869160ad ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b02cc04 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d0d005c ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d6a46e6 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fbf65cf ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fedff7b ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x957d633f ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dcd271c ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa28918d9 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8e6d3d8 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9195455 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad40e6db ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf280fb3 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf3b4f88 ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc37ab0d2 ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb254df5 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbec700c ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcea5da97 ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8001452 ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda786c1a ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe52140a4 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe79f849c ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeabd6536 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef7050f8 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1215d0c ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf71ebc27 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7efb5bf ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8aaab81 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9f3c3fe ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfacf6f0e ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcadd7e0 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1184fae1 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1b3bc700 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1eadbead host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2c637661 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d3882da host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30ee137f host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x31f62cab host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32ec8ff6 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38f7903e host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3c89babb host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x405941cd host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4ad5e9e5 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53d7f0cf host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6919268f host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e4b0023 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa79dba6b host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb203f112 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca9c634e host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcbe8a2d2 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd9897a59 host1x_syncpt_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdbe9b4bb host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe68ed37d host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe9fc57d6 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb78067b tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xef662562 host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf29a4747 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc942b3f host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc96fdad host1x_job_pin -EXPORT_SYMBOL drivers/hid/hid 0xfe3c42d1 hid_bus_type -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -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 0xba438982 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x75e0bc26 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbd525b2a i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc56dbeba i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5d1dbc89 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x71ac7531 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x6381d37b amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x0f78dbd9 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xad5bcf9b kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd4ba19b0 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x061ff601 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x59e5d0ff mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b366be7 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x733cc157 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x98757080 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c847ddb mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9df7b0d1 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa1d0a967 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb4515947 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xba67c2f8 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc329e5f9 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc78acfb4 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf39b0bf5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf5d495ad mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf6164007 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb8a5e96 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0ac5e637 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x16554e36 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x6b1114ae st_accel_common_remove -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4fc93a57 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x69099f7c iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4cbb3855 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb93902d6 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdcf23213 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf44e5c8e devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x883557da bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0e1752ab hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1a1ae60a hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3f41a094 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4a27378d hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4bee7a85 hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6b6a6957 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7d02f0c0 hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8e7f310e hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc81d58cb hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe010f4b6 hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x12bc9e91 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8ea016d3 hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa37ff1cd hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf55d47aa hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x10f52ad8 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17d1fa9b ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6667b23e ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x773777b8 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x88a7ed5e ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9c6b5eca ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaa1d6275 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbb631c0e ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc1256e6d ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1fc4f6f7 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9fc9dff7 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa95bda8f ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeeb43106 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfa765823 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2359d96d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x77455766 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc73e1d4b ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x39af5f11 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ce5da1e st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42492cfd st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4284fee3 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5501eb70 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x575b1494 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5ab40417 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62699940 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x78cadaf7 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c8dcf7a st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8862dfbc st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x88d73566 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8dbb295b st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x934865cb st_sensors_of_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbde198c7 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8b545c3 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd79ea3b2 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdda6d262 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x76b7aaf3 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x1aa889d6 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x219f9250 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x65e47947 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x97aaa0ec mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x009d9220 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x260ccfde st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd1f8804e st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x20e50e4b hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x4adf2665 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x16ef99ed adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5dca0b3c adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x19a3ff33 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x75a80d39 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x98b639c7 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x0576a437 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x1362ac5c iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x1c136709 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x26ef1c33 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x288c789a iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x30a0ea44 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x355cb0b3 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x50ecabd9 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x594d73fc iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x5a37bfe9 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x81e6e764 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0x8c03c324 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x8c533160 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x8fa429f6 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xa6020336 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xa9636c74 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xd299eff6 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0xd6c9d16a iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xd99fcd78 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe9dea12a iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xf3297858 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xf972671d iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xf99cc857 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x66c62fbe iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0738e9ee iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x86cbcda7 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa59eb1ba iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc45ccf5d iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x07850f4a iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x57809fd4 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x87b27856 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc444ca07 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3a4e2b7d iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x787fb699 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x35653053 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x39ef6e77 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x1a72f0c0 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x51347436 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8cc2777b bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc13c52d0 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x4263f283 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x6893d9a1 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xbb5daed0 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe2adafeb hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x0aa46d7c st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x91695981 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc1282bf4 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2f2ffdd7 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3d48b4f1 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb8ae6dc6 bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd7ce6993 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf9cc09cc bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x40b35189 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x44d2836a ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0ca1cc79 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5e944be5 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x748356c5 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0976b481 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12813f17 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1fa066c3 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2298776e ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36dc9620 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x423f40c5 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x425fbdfe ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x605d9dfa ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6170cd8b ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x709669b0 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76734fc0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ad21d87 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8150efe6 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b45b998 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6bccde2 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8442757 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3fdfef8 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda2a24ba ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cc393b ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d7b851 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03677652 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0385d87b ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03e10b66 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a4e440 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a51728 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07a59c34 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08ed0877 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093a7171 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ae70891 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0af2070d ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b043efb rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bfd87f3 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3d76d5 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db2987f ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12c9194a rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15313b9b ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16094b61 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1fa9eb ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce4e78b rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e03cc2c ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ed382b5 rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a82f99 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2592797c ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x262c1f10 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b480df rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a0f877c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a42650a ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b00b53f ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b17d91d ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2be174f1 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d4dd81b ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3269dc5f rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3565ed76 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3608bff9 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37cee89a rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b84054 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x392b0307 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b224f35 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b97fa4a rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e054c85 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4266cd23 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43d00b62 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b5168f rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45ff423e rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4717030a rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48bec96c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48e8dca5 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48ea7659 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x495a72e2 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49602380 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f196ab ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a1a9f46 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af6148c rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c7620ef ib_destroy_srq_user -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 0x4f3bef7b rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ffb2a07 ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a24b44 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ac06e3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f60447 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x534f6bef rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53eda20e ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542fd4f8 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54c15653 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d64508 ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f1677d ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x554f8cd7 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5681af88 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58d33fb8 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x590d7a7c ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a44ee86 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ad5875f ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ca8b965 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2b9159 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f0da073 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f496b12 ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fe50ddf ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60fb9f2d rdma_nl_unicast -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 0x6201200f ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62121e21 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62312669 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65e257a1 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x661ab24e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67145fb2 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x694ed71a ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a06b0ec ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b0526cb _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b6b4f77 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c195a3c ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f70a874 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f6cb88 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x751351b0 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x772f0de2 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7799da12 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x788f68e8 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790e5a92 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79c98cee ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c0e4878 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da97524 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7feaa901 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8214cf54 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c7908d5 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cd2e9d1 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e9fe7ce ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ec42bd5 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fa3eb6c rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91187cf8 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x914f2c9f rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929e8cf8 __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9590f2e1 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x964d248c ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98afab30 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a7254e9 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b20294d rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba905ca ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb36a00 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d95b9c7 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df11351 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa04dee86 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f3915c rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa19a7de3 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1bda9de rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa415062c rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa645c1bc ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6717419 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa960509b __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaadb10ad ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab763f54 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab9f47c4 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0673680 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b61e04 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2609b51 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e282a5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4eaf04b rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4ec1f3c ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb55d7848 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6c26d50 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ab0d92 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d1de58 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd22ea0a rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe6a06e0 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0e64c04 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0eca3e2 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1412162 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc15f70ce ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17422a7 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc19294a8 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e11016 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2478432 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3af6769 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42390dd ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5337e31 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc82006af ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89e1233 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdc2af6e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2032948 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd35b7450 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42b7157 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd595829c rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd65a77a3 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b363ae ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbad0953 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2a5638 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddfe4716 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde61a721 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfcb6095 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7c7cb2f rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8036c69 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb8cde5d ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecc334e1 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xece322ee rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a8d3f0 ib_modify_port -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 0xf84f47fc ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf86af591 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9f749c8 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0c69cb rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa988814 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac1ceba ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb5347af ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc241516 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6b3090 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe291d7d ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe5dbbd0 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7989f6 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x111bc9fa uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x141a0398 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c59a7c5 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28319044 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2aeecb45 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2fd52a3a uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x324dbf96 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36a0afb7 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39a5ebc6 _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40218ef0 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4df68de4 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56339790 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59fdef88 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ba6b004 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x805d8a3c ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84a42a4f ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4ea7fa1 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9ef152b ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab0b4ab4 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc54e284c ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6216339 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcedbf682 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4d082f4 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd79ea564 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdf785506 uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9951c24 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f5b9771 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1374a51e iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a29ea02 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2cd736ce iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51f8b48e iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7cce790c iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab9ef349 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3e82128 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07764902 __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c3049d6 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e12d005 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e7c20ef rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x303f233f rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3662014e rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a4d0656 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c14b71f __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a4a7058 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c32a6bd rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50af52e1 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a25df61 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d0566ff rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x679d0343 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e3bfac rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c6e4719 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x829528ef rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a4319be rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa189e803 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4594dfc rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa93f4f15 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa6b56e3 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca5f8007 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd408477a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4fe5b3b rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeaecdb95 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa969d32 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfedf433a rdma_set_service_type -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0b6e89ea __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x22cce72e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x37fff8e1 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6b780843 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x869263d1 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x934f4ae9 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa0f4e8f0 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf435a8c3 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5de23df gameport_open -EXPORT_SYMBOL drivers/input/input-polldev 0x127db166 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x71c08bdb input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x7f1c2c4c devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x8ca526c1 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf29a6441 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x6132ed9d iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x6a752027 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x88faf815 iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x933cfde4 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x2b5a5e46 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x86837f39 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xdd2a1ee2 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x1c7a9146 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 0x9374deaa rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x58bf9bc6 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x63721bd4 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c1e1c2a sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8dc5d374 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbea4188d sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3fcaa95b ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x52fed0e3 ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/iova 0x58604e4d alloc_iova_mem -EXPORT_SYMBOL drivers/iommu/iova 0x858b3fe3 free_iova_mem -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1c965df7 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x25d59e14 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x25fa427d detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5b45f11b capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6bde2e81 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x73fe295e capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9ceec3f7 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb64e5f35 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbbf1bebd capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xda8af8ad capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -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 0x4d7eeaef mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbe06ed81 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdb648877 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdb6f1081 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x47093d56 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5ee0465b mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0715c16e get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b8c2a95 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d9366ea mISDN_ctrl_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 0x36885735 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e5c40f6 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40937acc recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4974d5bf recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a031886 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8296c473 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8702cfbd mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ba819c6 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ce760b1 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94e2b166 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96053859 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x982ee700 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d72af5f mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ec6efaf mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa730fa7f mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa83dc5da recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabfcdedc mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac78dec7 bchannel_get_rxbuf -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 0xdedeb580 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbfe09e6 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xa71c19e7 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 0xd1c3c545 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x419bb730 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x53beced2 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x5f3db650 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0d8904a0 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0x34c333b4 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x611da4ca bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7782e88f __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e23be52 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8efff430 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9ac7c147 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xadb6b25e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf788fbb bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc140a4f7 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2e8205f bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc4022eb3 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6a36e24 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2381a89 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd47b1f8e closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9e35cf8 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3e5dad3 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfa93de35 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/dm-log 0x03918f3f dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x1478b6ce dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xc4e4001c dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xe9917da9 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2831cb5f dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x318c7ede dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa67c14d9 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb3e5762e dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd4aa8a2c dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xee886986 dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0xb7b7c116 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xdbdebe3d r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39a7c3c5 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b618670 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8381b7d0 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x860e9e8b flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8cd59374 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d0b3e2b flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91b1edd6 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9cb8c119 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d10945e flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb31fa293 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd0633e47 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe51a6436 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf72a9300 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/cx2341x 0x255a6e35 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x38c16800 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb01ab37c cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe5ca059c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4d31e2a8 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xab4256f1 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d6788f5 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x55738520 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x86a19d62 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x90c3492b vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xba5e64ea vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfa9ace21 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfae15892 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfc449006 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x55701de4 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x006d6880 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0291c91d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05ba9c31 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10400fda dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13d41305 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1853f050 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a56e81c dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21381c3b dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x263c54e1 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d6e8650 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x358fd2f5 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c29c59c dvb_ca_en50221_camchange_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 0x4be5c646 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f65a212 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65f59f21 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b334d3c dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e7d0ccc dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b8e3c19 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dfc055c dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa939fb46 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf4e014d dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7d5ce98 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb7c6f52 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda7593ef dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdafc31c5 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd779b18 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe898a996 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedac26b2 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedda2b2f dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4f8a030 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xf82a182b ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb55ea60b atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16cbe6c6 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33f9b518 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4add86f7 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x56e4d58f au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x601519ae au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7040b939 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7645827b au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8722cc10 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9ae4e383 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7ad709b9 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xc179714f bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x559cbcd7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x42460fee cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc9a58a83 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x36b28818 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xdf6f6b36 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x6bee746f cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x6be7dd03 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x345ed590 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9dd5f2eb cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa6670fed cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb1aa2775 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb242cccf cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x30b55bb4 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21bc3d68 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2933dd37 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x40ab3af0 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4e96ae4f dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8241297b dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1c11ae46 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1cc5e9fe dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x245a41ba dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x27f403a4 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2d06e30f dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2d32b8ae dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3cb8bff1 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x43d2799b dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6db77ca2 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8106020d dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab52b97d dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbc8be685 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc77e035 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe61c7467 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb37afba dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xbf4cf2c5 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x01a40043 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6500b040 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8148885c dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa5921b35 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa975a761 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd6752d91 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5bed6fbe dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8bffb6c2 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc0498a3b dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd0b3402f dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa1c53243 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x3f9be50e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1fc9016b dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24b7aca2 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2d561fbf dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x36d87596 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4b3bcb6f dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x55adde6d dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x721ddb49 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x813cd4f9 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa2b3f5ab dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc1e5d3bd dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc2f1aaa5 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf7a9745 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdb0eb76e dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x08f5c6fb dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2333947b dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x317bddf1 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4478c7e0 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc647c12b dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x2704f645 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7a6b3f30 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5bca894a drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x64aa72f0 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x17546c35 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x30f575dd dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3dbdb84f dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x96739c27 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xcdce49d4 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1d40ec5f helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x553c9f88 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x5f3a1ae7 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x025177ce isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7ea62656 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1337a0a5 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xc4b5d26e itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4916b0f5 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xa2b0742c l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x95ed42a9 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x07c33803 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x32260672 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xb66a1d9e lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x2518132c lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xaaad6874 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb9231de1 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xc1a1bbb7 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x547b14a8 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x85c83820 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xd7997cae lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4840d9bc m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xdf75e818 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4876b736 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3cc58f4e mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x3ae39482 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xa26e1325 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xb856bf6e mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x95ab31bc nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xdcb96e58 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x2a4e7e9e or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xeeedd3f8 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xcea66062 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x284b3c3a s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0ef75d82 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x47b3c4ea s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x801a66a3 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xedb8bcf2 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x9a1db0f5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x5c876d76 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x46623f1b sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2337b7de stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x421ed436 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x80fcc0b2 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xceaabb58 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xce4a8690 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x172d5998 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5ff9f0db stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x619edb0a stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x87790148 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x16447d1e stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb132b153 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x35ed46ab stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xd66f7a38 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x550dcde8 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x62040366 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x579fa64b tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1e4e4b0f tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3a3a43e0 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd62be140 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xef16cd70 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xfb6d50da tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5b24998d tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdab125e8 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe8185390 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7edf05f7 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8f821df7 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x71f8081b ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x35962d45 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe042b374 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6fb5708c zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x08b210ef zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8bb78416 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x269d2893 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x30cbb946 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x43ef18c5 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x584f9261 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x639d9438 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc4f83408 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd21b6c16 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x00daccbe bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1f77fca8 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2766d867 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96781119 bt878_stop -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 0x1a76d580 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4f71d6ef 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 0xda408deb bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x31dacec1 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x79bd228e dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x813cd7fc dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa7894cca write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa871e0dd read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd17dcde0 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe7349109 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf25781fd dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf68fb281 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x95155a3a dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x09924c65 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4e83c03c cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x55549920 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x97eeb168 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb0b1ecac cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x59a5ad6d 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 0x16075938 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3ea06a7f cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6ccf0b66 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9567c794 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9a78d381 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa0ed1fbf cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc7cd33b5 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6fe370e7 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9bf28071 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x291522f7 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8603f511 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaaff6b6c cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfb9e3772 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1af68eb8 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f8d1824 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x41ecbe3f cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5a4e6709 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xceba00d4 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd558e8f2 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf32d3108 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x047e8044 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08ac864d cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c131e6f cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a27f8f7 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2dd0843e cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40909567 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46f5c78d cx88_wakeup -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 0x7033db61 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c4e4836 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89c81193 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9312a9a8 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96b3fda6 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa26ecae3 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc40f24e7 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcab62f3d cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4174f62 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd865c0dc cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc142445 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf57c7d31 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfb9522ad cx88_core_put -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07c3eb77 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2cbb30fc ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3494c9ee ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3af9733c ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x466ccaeb ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c9f866a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ffa7282 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64908bc2 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64938360 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71ce29a9 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x83830afe ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8bad5ad8 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa328af9a ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb724d6ea ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc02404b8 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd15bbc49 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeaa1630c ivtv_api -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0a00109b saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2c24a029 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x55b71463 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581fccf6 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c956929 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x885122c3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7959e05 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae0539e2 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb3d11da5 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba2f5ccf saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6e9fe4c saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc52655d saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x8ac85beb ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x6671c6ea vdoa_context_configure -EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x787fe8a8 vdoa_device_run -EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x7fe3d6f9 vdoa_context_create -EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xd96c63ec vdoa_wait_for_completion -EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xfc58eef7 vdoa_context_destroy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x05d985f8 csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x765a2b1b csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xd03d78eb csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xd930416c csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x743bf73e sc_config_scaler -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x7e892088 sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x886f7a70 sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x9cbfd50c sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xcab53d0a sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0c7202f4 vpdma_hwlist_get_priv -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 0x1b59ccd7 vpdma_get_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1b7b04d9 vpdma_get_list_mask -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 0x1e8ce2b9 vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ef52f08 vpdma_hwlist_alloc -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2cb759f1 vpdma_list_cleanup -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3a354d77 vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5118bd7d vpdma_add_sync_on_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x58662760 vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x62f9e013 vpdma_update_dma_addr -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 0x7b81bd07 vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x84ee7700 vpdma_list_busy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x87c0415e vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8f3db62c vpdma_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f311f0 vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa63945de vpdma_submit_descs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa9ba7bea vpdma_clear_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb0b0dc64 vpdma_set_max_size -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xbbf54fd7 vpdma_hwlist_release -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdd7f11d3 vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe68d78f2 vpdma_set_bg_color -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf7f26dca vpdma_set_frame_start_event -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf93ba9bf vpdma_reset_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfab94a51 vpdma_map_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfefbda83 vpdma_rawchan_add_out_dtd -EXPORT_SYMBOL drivers/media/radio/tea575x 0x34ecebc8 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x386bc9c9 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3f0d66ac snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa73aeb33 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc817b402 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd7cc2690 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xe75796b4 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/rc/rc-core 0x16f5b5e4 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7ab89ddb ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x09307c4c fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x8d19b596 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0d8a0959 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x394e9703 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5e739a30 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x6b9f5bbc max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x9378e4f3 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x8824e80a mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xc52a0f3e mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x6f2244f5 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xed184d11 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x257f67dc qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x3a3152bd tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xb9a73a1e xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa4caca28 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xee0c6831 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbefe84bf cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf9a21328 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x20fde737 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x229c4102 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d9ee3c8 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5c698179 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d9e2e67 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9ad34620 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb373da22 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc8bf01ce dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe4cdd9bd dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x046f1714 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1e88eee2 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2a975263 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3cdf83ae dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x47477758 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7af10caa dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcf1ee52a dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa18f5ef0 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 0x2fefce45 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x65f9dc95 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7388d9fc dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x816b8dfd dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8e515107 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2228d14 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc656c10f dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea73aad6 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1fbf22c dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7190d500 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc21babb2 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x29bd051b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe40e6638 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11ca8164 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x232bc4f7 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3267ddf2 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x481ab852 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e60697a go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x584f31d9 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xafaa542c go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc4141279 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe142fe3e go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x09688f48 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x42b93152 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x51f90a20 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5bc3bb5a gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6f0f0499 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x864b7fb0 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8e29837 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xccf7ca91 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb4d54a43 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbfa35bc9 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf9373835 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8faadf9b ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa46dde51 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4d3c8ed5 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7652bdd4 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc635a6ef v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c18ef2b v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c9bed89 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ceb72a2 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x107b1bc8 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10dba6cc v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x110dd2a1 v4l2_try_ext_ctrls -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 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e3d6971 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e44c5c8 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20476249 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dc5ad0d video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2fa6c768 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x397f6cd9 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cb769df video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45422998 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d92ff72 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x515aa31c v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5587ad16 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b752936 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e669130 v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6242b1b8 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x626006ed v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66c6487d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67003d10 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69d135e0 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a2bf590 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b57e76c v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c35b278 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70ef6049 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8258b4fd v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82ba4c92 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85d4c9e7 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b202484 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c2b3428 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d01f040 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92b3863f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9514be1b v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x982c5fe4 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2d86a28 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4153117 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae9eee55 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf896fb3 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb225c309 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb25e18c3 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb39d27f8 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb57c3a3b v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb669b1a9 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb868f715 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf40befe v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1958cb6 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3330030 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc37c1dfd v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc53569d2 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc623df8b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce4fcd39 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e9904e v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8b62ccf v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8d4fec2 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd944c2b7 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda2a0b68 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda44f364 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc4dab13 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3227dc7 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0fda97e v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfda6095f v4l2_ctrl_activate -EXPORT_SYMBOL drivers/memstick/core/memstick 0x040f3951 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0970168f memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x17814970 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x55d5a2ee memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6cab8644 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x75685cc1 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x805a2fb3 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8a14ab83 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xabe529ab memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb73bf536 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcbdef45f memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf5af78a2 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b85b7d3 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0df55a12 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18ea4453 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2027f10b mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ea1340a mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ea56f2c mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x45430eca mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cf9097e mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51522d1a mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x577079dd mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58d2e8d9 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x592e0e4c mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x642b3b55 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6569bbe6 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68b1e887 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d78f640 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e3bc92b mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e9527ab mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b29e1d2 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x91aff5a4 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9527732a mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0993816 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2fcdd20 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbc2cd9e mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda972d48 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe549a33e mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0588c87 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3b8a9a3 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5d6bc08 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a35e4c0 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ed89657 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ac24372 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25568b33 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26ad3d52 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cd1f5b3 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d3b2a7b mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x382b80d9 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aaa412a mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cdcb86d mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x469d3196 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d5074d7 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ee28918 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f6a7baa mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82a1e206 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x854f0729 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90edcdc2 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93f1a0fe mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c1824ec mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4728d11 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8f96f4c mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc1ac5aa mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9d503d2 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xced0c1de mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe788355f mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1ee8f24 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9e3fa15 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/mfd/axp20x 0x39042755 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x48cc6b81 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xb77a50ab axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x0569ce78 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x62133ddc dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xaad36ce4 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x047c332a pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x768f0998 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b13a1cd mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c5a4a11 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x27f7b61a mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x31aa8da1 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4fdc48d9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x76acd064 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8e9b3dee mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa8053235 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad77edc2 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb7280dab mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc34f3d4c mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994 0x0228a39d wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x33241704 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6987f402 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9e7caeb0 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xac461529 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xbee3f1c3 wm8994_irq_exit -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x2cad5dc6 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x41385f66 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xe54686a0 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x5ce9a454 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xe018f8dc c2port_device_register -EXPORT_SYMBOL drivers/misc/tifm_core 0x21df63e1 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x42009ee1 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x42e286c5 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x762ccbe9 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x878fc2c4 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa3084988 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa60a0a17 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xabf73e63 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xbbfc17bb tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xbee8cd61 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xc62d8531 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xce706167 tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x16f74d48 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x35deb441 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6eef9c01 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x86ae9ea4 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa09b4225 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd2820645 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5053c2a5 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x75f984f6 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x80a52762 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaebd6f7e cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdcc43ecd cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf59cf7a6 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfdfccaf4 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x20ba5fae mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x06bc24ab lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x3c43d5bf onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x93ba677c flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x301831e4 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xdf733349 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x24351100 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x342d4102 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7eb47fa9 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2afba221 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2fe22187 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5d96ce07 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x62acf61e alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9edbd89f arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb6a8010a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc711d360 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe7095ff1 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xea6273db arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1cdf896 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x72be32f9 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xad837d48 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd0151c03 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a0f4c03 b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1721f5f1 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x184c0a63 b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1862c79e b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1cbfeeb8 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d410899 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27fa57bd b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29ed1dfa b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30092ff5 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30972f5d b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34413d58 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41d6a9ca b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44ab7a94 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f11f675 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53719e3e b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5452b288 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x576005df b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ad88a68 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6084d44b b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66959acd b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b7f742f b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b856e53 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d34dd7e b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9156d479 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x922c75b0 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96d0644f b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb78c4274 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbae6cfce b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc538b79d b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7e3a097 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc821a866 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8b18ebf b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca1bf3f8 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd113a496 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4dc5924 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd93dba55 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec16f932 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcc11c6e b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x334cb76a b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x39dbc6ad b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x598daff4 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9d8e5a32 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa56d6438 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc63b7087 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2fa67f21 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe913e34c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xfdced725 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x50fd3937 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd279d072 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd52f4b09 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xde292d72 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x24a83aa2 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6e5b1e2c vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x084618c5 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29d3a1a6 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3b77a70d ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47065016 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x751d1a22 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x937f33a5 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc11636e4 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcaa663b1 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf2e785d NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4e51a6c ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9ce993c2 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0cf23677 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1043c4a8 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x164ede14 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x252129b3 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x452704cf cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x464202d8 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4be7e437 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75d7ca20 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7bb08e57 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x84498b28 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85455bca t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b96535c cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xab3dd00f cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5a99890 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd1cd29a9 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda51d61d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x022aa516 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x072c5317 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x124ecb13 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1534f957 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1eb7c861 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2614a1ea cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3055602b cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x314daa11 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31b2e4ae cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34314e65 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49d90d7d cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57f7e52b cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dba84fd cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63856dc0 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6699608d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71cd0d8d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74794f37 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74ea8594 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a12bae9 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c0240eb cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x802945fb cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x803823d4 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8129b602 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82fbac24 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82fdcc19 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ca3d256 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x931de005 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa233131f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab0fbfec cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb450a0e3 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb60cf4f7 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbba18712 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbed1d05f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc60d67b2 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6eb20c0 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1195f4b cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb2474df cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe46bfc5c cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe61a2225 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea240e4d cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xece1bede cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfaed852d cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdaf116d cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe8d5f22 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3a358ff9 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4733685a cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x89a2610b cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8dfe367c cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa4f91478 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd8eb3e63 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfe470201 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x029f6d42 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2333f316 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8eae1719 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc50ed685 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcbee2849 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfee89c50 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 0x6b512f79 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd3291a21 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0531da62 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x20f584df hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa9e4633d hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xbaa92499 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdea31029 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x07ff4ec3 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0c3425fe hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x14ee8678 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1814e2dc hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2bd49bb9 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x69a142ff hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa756a8d9 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd6e308fa hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x89c3cb08 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x9dca0273 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x45cb0ac8 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x895f941a iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0269ecdf mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0419c9ab mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07136794 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cec8223 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8ad22c mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272c8199 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2adde480 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x326a9635 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a6dbe5 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54634b22 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d5ffb94 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e867bc mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68ecc294 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d248604 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7412b0ac mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x743db792 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a62c2e3 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c646bdb 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 0x8a3e418a mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb3fd00 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff3bead mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9409d248 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f5836c mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa161cd5a mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5199ae5 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb56e8f set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf535a6 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6215313 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba22d25 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf7b72c7 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd769cbfd mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc8c5979 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd853d20 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4189738 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe871652b mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe915d51a mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefb51049 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff5fca0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1b67227 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1eb666e mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ef92b5 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc3447fa mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc849703 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfebfd611 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0282986e mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039384ed mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x042bb862 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044bcbc5 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d60e25 mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06275847 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a6f9673 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aea849d mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2fc676 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6c1676 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13b6ed8f mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1566dec8 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17f7bd26 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x197eb391 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c0461e mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a5d3820 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e17f2c6 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24785570 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24b9350b mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x264ff56f mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2807856e mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fda64e1 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3335f963 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36571ffd mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36b6fd9e mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3762497f mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e5f36d mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39153c11 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eb9f337 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40c05926 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40f3e8f9 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b3c6d6 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x471ba38f mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad7e9d4 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b53af61 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ac76eb mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54bf67f3 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f5fc32 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fa7d83 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x594fcb7f mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59922595 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de40d3c mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6fcbc1 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f4495be mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5a69ed mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa61fa7 mlx5_fpga_sbu_conn_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 0x61f5b03c mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63bf403b mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64666846 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67919658 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a635b6 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e97152 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ba529d6 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d35dc1c mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70d0bc0a mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x730de7bf mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73193ce9 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x751a38d3 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7627eebb mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d93cf8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8333b530 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c91fb4 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a40c81a mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c3b9966 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e90099c mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90018bd2 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c807ea mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x935b792f mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94896c43 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9572aa1a mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b8ac0f mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d47eb2 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b65ef7b mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dc6e498 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f82958b mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa15f7a07 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f45720 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e005d6 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace923a1 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2551d0 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8697956 mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbba298ca mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbd55744 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc501320 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd78e9ca mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc490cacd mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58b0a05 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc900f30d mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf2c35a4 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c02fed mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd289363c mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3003e15 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7e94fdb mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7ecb625 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ce8175 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdabd21e6 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd2a6d07 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd47ca8b mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd651fa0 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8175fc mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0e0a077 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe424a999 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe42a92dc mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5bfc2d9 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7dd529d mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ed183c mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4e75ee mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedcdb655 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4b4e77 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee727a47 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eeca40 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3764474 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7763222 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9079c10 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf99a8fff mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9ee6de9 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8555c0 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc3ebc0b mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe9ded15 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff05e262 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xd498f809 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x01196abf mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x09b85ef1 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10e836f0 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister -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 0x244607dd mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x257ced36 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3e4dbf02 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write -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 0x4743e692 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ee4b54d mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f595634 mlxsw_core_driver_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 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x89a283e7 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e8328b1 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x922156c7 mlxsw_core_ptp_transmitted -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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbcb0d0e0 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc545bd8a mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc0787cf mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue -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 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1647a18 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x55231842 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7fc96115 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x2766a7d6 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xcfd66f17 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x03a97acf ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x26c75e35 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x43117e1f ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x457fb4cc ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6f3afb5e ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x82472727 ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8416670b ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa70e21ba ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xada219ef __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb6df8410 __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc06339e7 __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xcc69ab0c ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe7efe315 ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x266c3b10 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x43a1ba69 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x455f4a14 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 0x992e03d0 qed_put_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x08eef8b6 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x20a51ac7 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2e239b7a hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x98c9b4aa hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc59780fe 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 0x7db84a25 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/mii 0x1aaff40a mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x62e9a76a mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x6fb15c85 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x72c2411f mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x7314b2d9 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x82073e04 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x887bdff9 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x8c89f03e mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xf5c93c2d mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xf7d697e9 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xa537e1b1 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x20e649d4 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x625377b6 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4cd1c8c4 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7435cc5e register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xecbc3057 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/sungem_phy 0x43d19ae6 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0bf8cd5c team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x11886b8f team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x31a9b32a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xa2739204 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc49ca657 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xced128b9 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd5b9438e team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xd8b1f86e team_option_inst_set_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x0a923ede usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x1148d2f4 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x959d7467 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x156643b9 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2be09cca hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2d4b8b77 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x31ff2adf register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x32fd660d hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6d0ef654 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d316ff5 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf022d3ce attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfca6224f alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfe0c371c hdlc_close -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x31cd7c2c i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02ffd9fe ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b723c60 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60e26839 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7925f7f2 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x87417442 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8967045e ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8e99abe6 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96f4027b ath_rxbuf_alloc -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 0xb7b3d1c9 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd6de3868 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe627cf05 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf38dc0eb ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01f37474 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x025758b6 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06a13943 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07f7ecb5 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cf7a15b ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f802a4c ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2205710b ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x225598ec ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28df9f09 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3135b8cd ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3da9661c ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f7657a3 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f93d4ba ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3fcfad11 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x457ab2b2 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x474c1055 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4eeddfe8 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51fb15a1 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53060c22 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69ec9dc8 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6bdc01ee ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f94ea86 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73ba318a ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x781b9ba0 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ad3eda0 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82363198 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8564915d ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86c9f0e7 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8baf2ca2 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x944882af ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a87abbe ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e3c6d54 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e4a6ff5 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0a6426a ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0cd3a3b ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3f85768 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0481baa __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba9fe5e1 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc1470de ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0237491 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3bfa770 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc34f46e ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0f82462 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb28c915 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8a4241d ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0cce878 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf77ac375 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf86003eb ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31c8ef5c ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7dccdb9b ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f71a001 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 0x991644be ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa7e1cb66 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 0xc40f3b60 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9fd2742 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd46c25c3 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xde928a9a ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe15e34f7 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe1dc64dd ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a29161d ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22be4c74 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x309a1e69 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39cde8f6 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3a3a8e95 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3af4c5da ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d2cd068 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5287520d ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6331ea6e ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x797b22fe ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a0b74aa ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f3cd746 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a54f294 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0f8c4c2 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1852481 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 0xd626fdc1 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd70e4fa5 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd841163a ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7c518d5 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec0d3590 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf04db242 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3daf30f ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd570bcf ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x009134b1 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x049a4dc6 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04c7cf0f ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e07c9e9 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e51846f ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eb2948a ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ee6919d ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x123c47fb ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1962e20d ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19ed74bb ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a6b1fea ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bedb4b0 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c3675f3 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c68378d ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ca8d59b ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f3759aa ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb69316 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22b3e144 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x245636d2 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28d20876 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2993819d ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dadf69a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2de838b5 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e01cb32 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x329ccb0f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34153e88 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x381fc161 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39dbf03c ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a7f8d34 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e70cc76 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e9cb130 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x464410b0 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46fe47f3 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d859b9 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ade1a7e ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c7a824b ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d79f4b5 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4df7a216 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x509704e0 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50f2516c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5118c625 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x513c187c ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x522ac27b ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52e46759 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52eed42e ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68464edf ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a2dd610 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d496dd5 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4ebf9f ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70c37cd8 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736f6ec1 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746f5fa2 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7677b8e0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x792b70c5 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c64c226 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cadf827 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e79502b ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ef0000d ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fde554a ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8197f015 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82748715 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x868dd0a7 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x887c3e43 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ad60b66 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d0baa42 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1a67aa ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9080b5d7 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91dd530f ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f719e7 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ceb234 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93e24cbb ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94c2a905 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994f35f5 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9981784e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bf279c6 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d8aafec ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa46d4bd2 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa65f445 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab157ff7 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad3fed0b ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf560484 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0b3a525 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb38508d7 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3a5741e ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb90fcb24 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab00352 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb6516b7 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb987c5a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc06e30e5 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc381eca6 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3e3e198 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc494473c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca0fff6a ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcac2e02a ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccd79207 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7edfa0a ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddc4b048 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc32d92 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0b24f43 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe128ca21 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe218213c ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe222d28b ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe63b37a8 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8fe1ebf ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4dbc290 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf971f4bf ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb819de ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x85b75291 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb49b7f6e init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe78ae4bf atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c57c6c8 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13488214 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 0x3b8925de brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ee7f1dc brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x61f8a921 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x72d8f33d brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x86418339 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8ea6d9ba brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xabed328d brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xac1bb83c brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbf4190fb brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc5e54593 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 0xeddcabfe brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x15d558dd libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1a09595b alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d473995 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c3c4265 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b508c76 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3de12e40 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4c50e425 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56b8500f libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64f29332 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6522d745 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x69ab2206 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x82921087 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x96e505cc libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a2c360d libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9caea48f libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd54a7386 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd738fc7a libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdf57008b free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe029fa41 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe494618b libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02cd467d il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x089c6dd7 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a93c82a il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e475002 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x150fb597 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17d093ca il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x185e2321 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f13653d il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fb6c332 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x225773ff il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x238e4f6a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28b1454e il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29ab44a0 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a28151a il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ce6fccd il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fefe9bd il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30788d52 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3327e734 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33bcb825 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3534bd24 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x371a502f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37300f99 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b8ebb1d il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f895410 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41d3c5b7 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42bb90a0 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x494cd95d il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c42928d il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ea1904c il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4efbddb7 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bbf8dd7 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d8330cf il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65da341c il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698c2935 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69e31c91 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a023318 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ac8d879 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ddd32fd il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6de2bbe2 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x705da58f il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73f8eca2 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x761f1498 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76403a12 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76a14098 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x786ad862 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x797ecce8 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8047593f il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82c7cbac il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8645c0b6 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x887b9d0b il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89fa79b6 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d4e26b6 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8deea9b2 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97bd2725 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99077ac7 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d49a42a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e45f880 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa434cbd3 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6ab4968 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa72fafef il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8fac6f3 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab036f3c il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacdadf4e il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacdc230d il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad0d69da il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad4908d0 il_tx_queue_reset -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 0xba0de547 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba6e2879 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe353ddf il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf187653 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc32ed0fe il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5e28c58 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1a828eb il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4545584 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd469a391 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd87fd03e il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd993da02 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9b4299d il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9f2a18d il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc230fda il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdca018c9 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd2451fd il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddd9ce1f il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe016f1f6 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe03bdc09 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5192eab il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8d53de0 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe911599e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe92f4200 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec90ba7f il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee4e7c50 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf034a2d9 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf24af92a il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2d356ea il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2dd6b4c il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf67ac8da il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8966838 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdb4dc6e il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01c296c1 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b09ae99 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x261a0c42 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x280883c2 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2f77834b hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3f6f6bc0 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x454058cb hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x475e3031 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50e0a1eb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d119726 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f8753b7 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6007cb43 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6efad051 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70fa268c hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x733775c5 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c66e416 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c3e8dc2 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa00d4bcd hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab99415a hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb6ee019f hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd58cac2 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdddc3dfc hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xea5c5339 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6d75c8e hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd5d58f0 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0376a62d orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0cf021e3 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1ce4b4a9 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43691fcd free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43afcb0d __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6168e9a0 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x751dac46 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8119f778 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x88bf9cbf alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x93324c2e orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x94d6e4b8 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x956380ff orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c9b81ce orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbfa538b0 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1a13735 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb4c9831 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x0da9afa1 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf5a85332 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00539b27 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03b2378b rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09ed8264 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bdb2df3 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d50909e _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 0x242ac6ed _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29ce1498 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35157476 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3846290e rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39ef7691 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45dd85c3 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b374625 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c82b401 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d978f65 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6473f650 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cd460f1 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x807e3b7e rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ebce63d rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fd038d5 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x955b1c66 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x981c5831 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d0ae418 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3f67614 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa52a270 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6406d61 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8457523 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcfcc748 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe44a0f1 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfa7b3fc rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc04889e9 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc11538ec rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc25339fd rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5e0d86d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb7dd8dd rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce0cb75d rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd62cf2e3 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6f14421 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7bc09d6 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf46f3341 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf60a53ed _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb527c2d rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x07a4a8b1 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7a993555 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc94cbaab rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd102474f rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x08602b10 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x69f1ebc5 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x84d595b0 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x86059d11 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01e4a5eb rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b8240ba rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x123c7a53 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1268d47a rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12933561 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d163180 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e702a13 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24aabcef efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bab0531 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e39f552 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c09a3ca rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dd1048c rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e999756 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53f7bfed rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56284963 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x574d8160 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59ff67f4 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5baf62ff rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62ed0d6b efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x874e194e rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c5f660e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e430a1a rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa31bbc81 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xccff6df4 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5e2ed22 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb608d88 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbe0700d rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbf4a340 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3edb138 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed93a3f3 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2529f7f rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8705299 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0b3b2d8f rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x165c606b rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1ae332d2 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1f24570d rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3434269d rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x50ef9313 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x5a642bab __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7fd6694b rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x82d0675c rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa169a457 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa5bb3c59 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xaa4cfbbf rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xcdc90dea rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xcff3f50b rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xda0048b8 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf0e63c33 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf4c42dbf rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x5564a0ca rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2e11eb0a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4837b305 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x575cbc79 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe0d6aa38 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2de568e2 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4f4d5478 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x695def3c fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/microread/microread 0x8ede9ed1 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xbfbc1751 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1cefe84f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4c9ad9a4 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8406e0a5 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xd901cc4a pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa519de7c pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf8e2a78f pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x57517226 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa1f981df s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcad8b007 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a78e23a st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6482c06f ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x786373f9 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7aa00aca st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8138d1d9 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a41ee7f ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2791756 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda19b1d0 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdd02aeed ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8c1fa0e ndlc_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x043b47f9 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09d30b2e st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1791b712 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x189861f9 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1cb44094 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d5f946d st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x385a7eb4 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f13530b st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x45bbe6a7 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51875c1f st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x651c46ed st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7006d339 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74381789 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x773398c9 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b892b9d st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e5ad10e st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe972c600 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc1f7c66 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/ntb/ntb 0x15d119c9 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x272fc020 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x3c5fbe32 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x4d8d7feb ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x4ecd21df ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x51c8480a ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7cc9843d ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x7d7b0b90 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x8015658a ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x8c61b795 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x93d196e7 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x98e5e307 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x99111677 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xa3bca28e ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa7ca6213 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb093f090 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xc493bcd7 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xdfdf50eb ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe6e86e71 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf9b8f805 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/parport/parport 0x04226323 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x0bea0340 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x0dea7c1c parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x128bd203 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x1cc59a02 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x358c637b parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x38d83f0a parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x3a19dde0 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3a27a33e parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x435bc8dc parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x4443d034 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x49fefe35 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4d3bb822 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x53709514 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x5ac54352 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x63793fc0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x63c51e0b parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6bbb1d0d parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x6ff2a981 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x83360297 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x85694ee9 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x88884e48 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x9417e02a parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x99842d48 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x9b2bf50e parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa9cba49e parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xc7ee59d7 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xd11a9f4d parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0xe269e032 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xe3b0da5d parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf3c98b90 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xf4807716 parport_find_base -EXPORT_SYMBOL drivers/parport/parport_pc 0x37e1f66c parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x7e11b386 parport_pc_probe_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x45b26494 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa1f92a12 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb1935bb7 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfe7985fc cros_ec_resume -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x99aa4f13 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c16e7dc rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11353e99 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14f1ca25 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2ef8e579 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x32042fc1 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c3998e9 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x952ba280 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x984e633a rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa292cb8b rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa9192880 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaa6895c9 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4133365 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd6e0a5ce rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe91a306e unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xb1d30e76 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x37c90312 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb535db5f scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb8a5d056 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdc3a3fa3 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0c7b9550 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a51c89a fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x36faedcb fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b16e3d5 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5f226fcb fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x694a1f62 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76cbcf85 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9925f4ca fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa999fd6a fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb8d08d57 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe03eb27d fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03245541 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x049ca377 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04c7e4cb fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07e93589 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cd19c68 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d347f7d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12ae8c93 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x196f1533 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ff20c40 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x228db01a fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x239b7791 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x254cbb5c fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2907fd91 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2980e0d3 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c4c29a4 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cdf17f4 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fdf229d fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x321d0a28 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x339df537 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x353aac7d fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b6f1120 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ede63c9 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50d660d4 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53b99805 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x563311db fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d3394be fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65bc463b fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x667adde5 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ea7e4ab fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ee4f85d fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x736ab827 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75683567 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x762886b8 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3cc903 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80f2147a fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81fdfdd4 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x897c5fe1 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a94916e fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8de232d9 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f88a5c7 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9326817b fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e930dfe fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e9dd6f9 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa31ac2ee fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa543d639 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0acd31f fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7a1daa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbcc5d43 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc39558e2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc566133b fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2072fa4 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd827d48f fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2756a11 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2bca5a5 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7362ed1 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0548b15 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6424a01 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9211f9c fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x59c0fa60 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcbc2cbf1 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfb9585c4 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5b7a0edf 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 0x2a871caf qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3469c0d7 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3d73954e qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3f90f003 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f5ab24e qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7c116e66 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1ea5940 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc244eaf4 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc31fcccd qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcac33429 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf14a4cb7 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf2946456 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/raid_class 0x1b77caa7 raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xcd10577e raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xf928d8ad raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02be1473 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0776fa2e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f4ce0d3 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x148e670e fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27749c87 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x415a2d08 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5806c6ec fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5eb9e22d fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f2149db fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6420b770 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6caf26b6 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9271cd6c fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94bb3f79 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x988fa7e0 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbac70ce0 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc52ece7 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cb61482 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e658db9 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x319d2aa8 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32a18ec1 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36ab421c scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x380d2219 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b6a17a9 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42112e0f sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49170bb8 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bda7e2c sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80d9dd67 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81f489d5 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ecacb9a sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9029540e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb32d2d28 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb34a364f sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbf79425 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc37a9b2a sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcabd0dc5 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd0e117b sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf15679f sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7344c3b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd91fd4b2 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde562cfa sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0d613ec sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe57ac5e3 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xecdbceaa sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf21896a4 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb4a4366 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x18ed3f63 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x27bd465d spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2ec1486f spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8657ec1e spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x91648cdb spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3e090970 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x437d0374 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7d0a1de3 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x94b5effc srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9967d2f8 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2b085547 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x62ba7439 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0dbcf647 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3a793107 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6c5aa5e4 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x953af734 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb2bfa2f5 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb586660b ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc3e8b202 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf71080fb ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfe293387 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x212ec12c ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x67b4219b ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x12b26a2f cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x134db152 cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4fa8f9c7 cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52eb8e83 cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5ab2e662 cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6d61d952 cmdq_pkt_flush -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x75343489 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x782df519 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91bd54f2 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd192d0d1 cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4aa5e796 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4f59ea7a geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5380ddaf geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5971a625 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7871b446 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa45f258c geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa5aff6a3 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbeb9a341 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc0c1db04 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc8d4815f geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcd3987fa geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf53ddbc6 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0cb01181 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1063e7c8 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3e636f8d qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x62ed6f5d qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaebbc065 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7712292 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdd43f575 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe10f0f3d qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf5a892ef qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf8214921 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x694c56fb qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x0e9bdb24 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x325e49c6 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35f894ad sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x362769f7 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x529bd350 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x580e2666 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a459ab6 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8485965f sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9b51bd38 sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9bf69b1f sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9fec333a sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbd0f3630 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed401822 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfc37f5ad sdw_delete_bus_master -EXPORT_SYMBOL drivers/ssb/ssb 0x09a21776 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x0ae369aa ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x0d201f8a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x2d82ba43 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x34c511c2 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x365df564 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x4a6d0eff ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4bc8ed4d ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5290fe98 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x5d9c42f8 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x712d0cc7 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x7907673d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x9c2c4031 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xafaf7364 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb48f700e ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xbd8e5108 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xc12bd907 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xc471ea6f __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc71d1edf ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd43e4d96 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x007b4ca3 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07b8ab73 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09597681 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1391755c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1aed90da fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2aa6abab fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x304e1a5f fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4661d484 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x472b616e fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x624ceaf2 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x663a82c5 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6fb97209 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70d530d1 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c9f9fe0 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e0e89ff fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x865f2a6e fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95c369db fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e19eeb2 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa139c6ab fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9ff3630 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb12b87bb fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb917640a fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1e0f8ec fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9017d4b fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe1237a9 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe508d0ce adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe4e8e556 ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x035fc759 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x099a1636 b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x272847d4 b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x58698a93 avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x621e6c3b avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x698e9306 b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x80f3a62a b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x83796e44 b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x838c2b8d b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x86c27fea b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x95dec976 b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9d1931b4 b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa736394e b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe56e1c48 b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xee85bcb0 b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5967eb0f b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x628becc0 b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x7174008c b1dma_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x7675cdd3 b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x856ab4ae b1dma_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x8b202e0c b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x928c1a21 t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xda3be2e2 b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xe8404e2a b1dma_proc_show -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x21bc3c9c nvec_write_sync -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xd96fd84d nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d69ef1d rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e355afe rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x109b3f56 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1699e4f2 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21b1e46e HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28c3d82b rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x296b4e5e rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c192a8e rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31cdc4a0 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32828f6f rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33efdb90 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3577124c rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f8536f7 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40585d27 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47680e2d alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55b232d8 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x569c3e8e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61eb98e4 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71e76684 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a4c13d rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x788e7313 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e75253e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90bb5d99 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92a6f43c rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x937fa566 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93801e89 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95adb040 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96f6fbb0 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97ba63c9 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x981c8abb rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b79b7e8 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0cdc5a3 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2d29c98 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa41b651b rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7723f86 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8971bb2 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadac3f3c rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafb460d7 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf3277f8 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4c45c5b rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4d37442 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc776909f rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6786f27 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6ae804d dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda0ffe01 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde922306 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea730148 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea9d6d59 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd299dbd rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a18d027 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1243cf4a ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1afbc124 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x212fd1dd ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23654738 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x293da47e ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c12f4cd ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cf95262 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39befef5 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40757af9 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43185cc2 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43d38b24 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46d3fc37 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dd09bcc dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x561cc2ff is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a8fa922 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c56ae88 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63c045fc ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69348135 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ac42b96 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x787ab631 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e8b3106 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80280bbb ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84701d11 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8825011e ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89e932c5 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d25db02 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93b76510 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d0bceb8 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fda0e39 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa26e4bae ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa42d9d58 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8759156 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb637a972 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb792dd25 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba31d1ef ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbafa0609 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc0ce804 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfe5e0db ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc50e7e43 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca5f955c ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd69110e8 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc237154 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc9bf492 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc9da89e HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7498015 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe760bf90 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed168e88 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1a549ef ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5f0a06c ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfac39523 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc2b499e dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc91465f ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x063e34d1 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x065d697e iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dee35d7 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e410a0c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10bf3c0d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14e69c61 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1529d8c5 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x166b9f75 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2679709d iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b461255 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3dbfc183 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4076f4b6 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f050840 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50f3cb5a iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62b21249 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6337e7bd iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6822f974 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x720f4888 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e17ee31 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80b7cbe2 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81a33aae iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8da3cf13 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e623dee iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x934c9c8e iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9769749d iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98cd7053 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d26159a iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dc2866b iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f30bf25 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa6ffc41 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab247f2b __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad7f2e96 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadba1650 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb23de0ef iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7a2a0d7 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb828d79f iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd14019ac iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd92d74a4 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe08d495c iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe919a282 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf05c1fdb iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf348c46e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf42dd84a iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9685db6 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x06c7c8c4 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0903296b transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d90e208 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1211bf target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f2e466d target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f792584 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x11913c27 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1698c327 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1acb490b target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b51b833 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1edd43d7 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x205905d6 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x2340367d transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x25adf2ab target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x26a1f189 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c9e591c sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ebe7b47 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3257a851 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x335ad5be core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x346e9116 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x347bdf7d target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x34fb3b56 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x389cc42a spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x394512b6 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bfe7f67 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x407d406e spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x42d3bbc3 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x478ea4e7 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4938949f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a6a45b0 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x503a76eb transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x51e215a3 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x63498f5c sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x6aa5bd38 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x73d7b7ec transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x750db106 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x7acee65b target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bd40a1b spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7cab4d59 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e66cede core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f8dd26c target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x815ebaf9 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x858ade5d target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x87fcf5ad transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x891e0788 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b6766ec target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b9ecfdd transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8bf13794 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x8bff9cd0 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9463f5d1 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x96bcf479 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0fd4106 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6b16388 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa84f4175 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xab4f1d5f sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb151974c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb40335d3 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6277a9e core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd4d7ddb transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xbdfb96a6 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc092720c core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc22ac934 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc44adff6 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5469292 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc915fada target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe103e2c0 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2107a77 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe51f27da transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xea80ff87 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xeec180cc transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf964ef43 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x2598493c usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x282889a8 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xce8e064d sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x013ec2ce usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x26e43e5f usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x77cedf0c usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8373fa9b usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9339aa9a usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9eddf352 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac0faa8a usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc4c8c2b9 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6629434 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed226ee4 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf5fe318a usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf876857a usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfe8f90c6 usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7c92e29b usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xcfe82e8a usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x150a85be mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1bd99976 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3ec6c6ea mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x45d8daef mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4e784a1e mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x618e3b1f mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x661b19f3 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb5167a58 mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc534fe70 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd024f6d5 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe40a2216 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf264be85 mdev_register_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 0x1419c523 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0xa363e2c7 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xef99736d vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xefde04ea vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x269b6fae vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x2a3dfd45 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_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 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa75ff962 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc7f2440e vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x08ec934a lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x570d8371 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x70ae6dae devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa5ad218a lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x03193cc8 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x192801f9 svga_tilecopy -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 0x717edb70 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7f349633 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 0x99922b7a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcea6454e 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 0xf814db47 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8f740b46 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb8cac61f sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x82f80503 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 0x5f79de16 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x0de4bf4d mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x12da9373 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x42476848 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x72795aee matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x288cb708 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2db6901f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4580b52f DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7d517e70 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xcb5e76dd matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xa56eca26 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa2f2f042 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa58e7fb9 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa7424ea7 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xeb4b8fae matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4dd3fbc2 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xed0992c0 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1d5b2be1 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3755a529 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa99395a6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb2c4d666 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc0fcd941 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xdef4ff85 mb862xxfb_init_accel -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01165fc8 dss_mgr_set_timings -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 0x130881e0 omap_dss_find_output_by_port_node -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1959d12a omap_dss_find_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1b4b6244 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x22bfa76e omap_dss_find_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x29142fcb dss_mgr_disconnect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2c0649e6 dss_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3ca5bc1e dss_mgr_disable -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 0x4292b2d1 omap_dss_get_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x459954d3 omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4d7b48bd omapdss_find_mgr_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4ed57dae omap_dss_get_output -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 0x5855381f dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5d178f1d omap_dss_get_overlay_manager -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 0x6f552cef omapdss_output_set_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x71cf08db dss_mgr_start_update -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa01ae9d2 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xad123296 omapdss_default_get_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb45c2f51 dss_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb8c7e8ba omapdss_default_get_recommended_bpp -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbeb89608 omapdss_unregister_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc32da3a9 omapdss_default_get_resolution -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc95a2523 omapdss_register_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcccdc000 omap_dss_get_overlay -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xce466b8f dispc_ovl_check -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd52b0fbc dss_mgr_connect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd6c95586 dss_mgr_register_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe1fa27b9 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee7d6e3b omap_dss_get_next_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf51031a6 omapdss_find_output_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfecff7be dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x42b11f87 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xaaa4bc50 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1dbfac94 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd7c3f18f w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x061ac7eb w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x4eb42923 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x5ec04411 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xa9d100d9 w1_register_family -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x5e95a498 bd70528_wdt_set -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x938f942f bd70528_wdt_lock -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xbb654834 bd70528_wdt_unlock -EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x09e8c15d __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0fccd259 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1263c756 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x15ceab8f fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x180d59d5 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x19ff1f41 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1ab08103 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x203794a5 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2baa0088 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x3203bcfc __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x3ff3021e __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x41b08a13 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x44de3820 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x551d0695 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x55a29ae6 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x61db9eec __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x6d5e6d90 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x78d1ae8a __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x7a664004 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x7b377b70 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x84783841 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x8d6ad736 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9232ccc4 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x989194e7 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x9bf91869 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9fa24ef9 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xa2adcbf1 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa56f5047 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xaff303af __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xb1aae289 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xd3b50b05 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xd47de1f7 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xe1a6820c fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xe4e5d436 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xf1c01638 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xf34c2341 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xf43ec95f __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf92c5b7c __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xff5bb713 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x076a3d2a qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x121c563c qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x952bffcd qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xbb26c613 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xeaf51922 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xed8bcce9 qtree_entry_unused -EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be -EXPORT_SYMBOL lib/crc8 0x5a742e56 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/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x24f12134 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xcf07ede3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3890d421 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4a8d0144 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6449c4e2 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x82cfd3ad lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbbfe5b7a lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe41de80 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x55014d43 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xe3a4f57a register_8022_client -EXPORT_SYMBOL net/802/psnap 0x0ff2b5e7 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x24512b38 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x002447d5 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0505c1a8 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x0cc93c5f p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x17944328 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x18582f3b p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x223583a2 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x38c00b23 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x43bf77fb p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x44657a18 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x460f1942 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x4617a45b v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x484f97a5 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x4a210a20 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x4f321ef0 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x592c858d p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x5ec22c85 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x64044224 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x71203d19 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x772e54ec p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7bc16612 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x831d7c2c p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x8e576938 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x95b89050 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xa37b1264 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbcf0e9c0 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbfb13d32 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xc0e47cbb p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xc5d4c432 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xcbd62fb7 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xce48bc91 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xce4918ea p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xda254e59 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xddbce87f p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xddf11053 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xdea0f9a3 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xdf7f1d80 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe3c637d9 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xebe88f04 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xee4b2720 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xf2c25098 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf3927c31 p9_client_create -EXPORT_SYMBOL net/appletalk/appletalk 0x138cd5da atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x7c59de0c atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xd70ab1b9 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xe443ed7e alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x07bbe346 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x299b9091 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3d173518 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6690470c vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x6a3ab725 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x7602554f atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa19ba8ad vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xa1db4de8 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xa78e0b34 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbe95829b register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc1161785 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xd4517255 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf3d0f07c atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x02ae51c1 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1b41a29a ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x60b44e3f ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x6d8e8ef4 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x775cabb2 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8e61e35e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x981ed643 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xb7040e83 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06be8c27 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x08aee09b hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0da89ceb l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x119d86e3 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x155c3d6b hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16f2536a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x187982f5 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e00a26a hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x262143b8 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x262cb984 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29aec4c1 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41045b2d l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x42aae54f bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4639a956 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4857157a bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b1d5499 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c4e227a hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51a29f23 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x527ac08c hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53f8e966 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5458c60a hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x602fbe5b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61dba2e8 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69b27179 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7092b6b5 hci_reset_dev -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 0x878b559a bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b3ef2e8 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x922c9d15 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa165e1bc hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb22e2950 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8b375dd bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0496e05 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7f1ad3e l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd223df11 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd56ff132 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd61c1364 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd72b404e hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd95e51cc bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdade9244 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd9d8eb4 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0103db5 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe07a02c7 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf629b898 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf65d42d7 l2cap_is_socket -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b1c79c9 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7ebf355a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0520af7 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe80eb199 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x270ac0b6 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 0x480dfdfc caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x99235263 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 0xf04245a0 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xf6740e64 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x039655f8 can_send -EXPORT_SYMBOL net/can/can 0x6379fa94 can_rx_register -EXPORT_SYMBOL net/can/can 0x7133792d can_rx_unregister -EXPORT_SYMBOL net/can/can 0xd6730e69 can_proto_register -EXPORT_SYMBOL net/can/can 0xdf4d44ae can_sock_destruct -EXPORT_SYMBOL net/can/can 0xf076cb72 can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x01f92a68 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x052e04e2 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x054742a2 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x054ddb97 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x09e09b2f ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0b1110c4 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x0f571c94 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x102ba5bb ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x10adaa8d osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x10db63a8 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x1434a4c7 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x19d5e43d ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x1b00a034 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x1b4e128c ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1d76023e ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x22a3bdf2 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x22b3245d ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x271fba5f ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x3021b57e osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x3085eda4 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x328c2b50 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x32e38a63 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x37857599 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x37d03056 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39073798 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3ef0c591 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3f0e8a36 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x3f19712d ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x3fd1ef68 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x430b5cf7 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x4487718a ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4987b61e ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x498f36ee osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x553afd8b ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x56d59f97 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59a4f829 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b25956c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x60702124 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x61838810 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x61d29c4f ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x62218e29 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x682871bd ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6a8e1eb1 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x6e296110 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x6f5c5f84 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x758b0166 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x762fb5cf osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x76c96f13 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x776ad836 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x7c9eb825 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x80197be3 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x80841c4d ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x809ea911 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x80cb67d8 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x8227333c ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87ee103a osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x89c26f12 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8aa94590 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x8ab63ebb ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8d94fa2a ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x8fec9393 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x90911c8e ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x9536d279 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x95a1a512 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x97663e89 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x98fe757c ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa0a75d97 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xa1f444ec ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xa3f7bbda ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa41f7695 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xa42e0d90 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xa4340600 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xaa1e4fa1 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xac5e45d4 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae1dd157 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xaea3da45 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb47d2bbb ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xb4fdde0d ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc0f261f7 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc57b8b2a osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xca6a71bc ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcbff8722 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xce799349 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xcfd2a8df osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd0e09547 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xd1aee97e ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd37f6ea1 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd603f7ad ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xd7090001 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd79b9e49 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd823dc13 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xdb70c544 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xdce1e374 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xdead8bf9 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdf1296af ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe23ffba8 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xe2405f43 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe902ffc4 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef5eaeca osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xf2c977e7 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf4491cae ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xf8948d41 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xfb44b9a9 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xfe085fbb ceph_monc_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbe366e7d dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe91e8f08 dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0x7fa6bd89 dsa_port_vid_add -EXPORT_SYMBOL net/dsa/dsa_core 0xf99e23f7 dsa_port_vid_del -EXPORT_SYMBOL net/ieee802154/ieee802154 0x298e30a9 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x62c699fc wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x66eef331 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x76689fbf wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa07f3ab1 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc0398d01 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x688ceb02 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x7b701776 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x487bd10e gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x33091f7c ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x896e0199 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbdbfccef ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xff67b639 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x16fee20e arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1926edc6 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e0e64ec arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcecffc66 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x03761758 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x968c8aa4 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xce453156 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x4476dc99 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xe0eb8abf xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa0e8b544 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x44d7a3ea ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4bbc5d1a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x563afe1e ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5d7907b6 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8d1ec63a ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa3226b8 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb39840c6 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb468c59c ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xebe34565 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2082e614 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x501a5363 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf3e969ed ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x58caf5f3 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xd3c13d5f xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x350bbb67 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb10b87d2 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/l2tp/l2tp_core 0xa1c4581d l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_core 0xbbfc07ad l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x46255ba0 l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x197d2066 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x3e69ff13 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x6bb7611c lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x8800f73d lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x917a3373 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xc8e3d4dc lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xe00d2693 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe6cce3b4 lapb_connect_request -EXPORT_SYMBOL net/llc/llc 0x0515f65b llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x638cd0b6 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x85f213f4 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x8b038204 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xa9aeb04d llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xe1bb7ded llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xf4019963 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x05dc1699 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x0aa22a4b ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0b6a6a5b ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x13d4b09e ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x164d79db ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a7a8fb3 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x1e45e202 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x1e7f9df9 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2346cbcd ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x271b4bc3 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3174a8c8 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3c5ec7b9 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3eee9c65 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x42f027c4 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x43e4e51c ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x4444c174 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x4ac19308 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4bb1248a ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4bf3a32e __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4f3b3419 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4f6f2170 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x540013f4 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x579e54d5 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x586647ff ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x5ea1506d ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x5fa32974 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x65030b40 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x666e19ad __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x66c212cf ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x6700a8ed ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x67263598 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x68a7ff1f ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x69289e57 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x6a84a755 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x7047b89e ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x70b0b3c8 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x77e551ff ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x7b0849bf ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x7d775165 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7dac4271 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x82744940 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8703baaa ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x8847eb96 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x8d54f0cc ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x9751418b ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x9882135d ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9bd2c4fa ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x9c229dda ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x9e2575e6 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xa113ec36 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xa244be32 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xa51b3931 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa58cbe79 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xa7d80ea8 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xb0eede22 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xb165ae87 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb4d555f5 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xb5a48318 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb6d0f34d ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb7ecfe2b ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xb81e477a ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xba653498 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbbf2d124 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xbc411b65 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xbe077339 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xbfd42837 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xc16f4ecd ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc50a4259 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc6b37e9a ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xc8e9fae5 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcee4d461 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xcf0f0230 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd1b66216 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd31681fd ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xd3bcfdbe ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xd5c0e867 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xd6356884 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xd77f7014 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd892542e ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xde985814 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xe0792b06 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xe11ef9c7 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe9e5942d ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xee8de2be ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf1754401 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xf2307b5e ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf255ec81 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xf2f685f3 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf7afb2a3 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf97da8d5 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfaf0fb71 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xfb588365 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac802154/mac802154 0x73faf13a ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x861d4ef2 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x943379b1 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xad6cb915 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbb86024e ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xbd2d06b7 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xdd920b0d ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xfb10030f ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6847bca3 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d071f8c register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f117924 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x72e76185 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a6df4c5 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81f5c85e ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x868eb3b3 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95ff1e85 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4855f33 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc144566 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd2869e6e ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd74fb5b6 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee87dce5 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf00960b6 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdab993e unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7fb02b62 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x91e44c72 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x05a7422f nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x05b5c04c nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x9aae7a05 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x9e3ba52d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xce9ca013 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x171f96b2 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x1f859c7d xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x4043a6b6 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x66226be7 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x6d982540 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xaca430ca xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xbafd8663 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -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 0xe41dbccf xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xf8482497 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x100ead6f nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x12c6b653 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x325ad664 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x5008cc1c nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x5dcc0b9b nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x62d9dd79 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x62f8128b nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x639646aa nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x75f6276c nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x7a59857a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x85e1be4e nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x862fefb2 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xa4fe68b3 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa64c44b2 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xb8329ec0 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xbb8bb4bf nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xc684815d nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe39da92a nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xe59df499 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xf487dea2 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfa6948cc nfc_llc_start -EXPORT_SYMBOL net/nfc/nci/nci 0x0bdf574f nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x2db7ad9e nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x2eb7cd56 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x3894f33b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x42f513a3 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x48e032a3 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x56f7a59c nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x58ec165e nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x5e07c6d1 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x65b5bdbe nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x6bf309c2 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6cfa0c6e nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x6e37119b nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x723b425b nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x748f33e1 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x74902987 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x788a6c6a nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x7c88b5b5 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x80862bce nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x80fb664d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x859ffee9 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x85fb47be nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xba719b65 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xcaae5e88 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xcfb066a8 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd16630a5 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xdd834fa5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xe6ae6f41 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xebab5ba6 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nfc 0x027fb23c nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x0379d765 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x0809c028 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x09b2562e nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x0bc4865b nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x0de5dc01 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x19f5b27c nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x1bf1bdf0 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x1de94e32 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x4eb8507a nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x79f0f81b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x7caba74c nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x8f3520d0 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x923d9dc6 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x9a86e388 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x9b5d3089 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xa83a6e30 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb07127c2 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xde2b1e35 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xe2051c5c nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe3ee7872 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xe42fc10a nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xe5437e1f nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xf5487718 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xf8645c18 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x1591f0cb nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4c3fe6ff nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x94d91de5 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xcfda64b2 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x03263777 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x18b22ad1 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x4653431e phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x57a824d7 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x65b242c4 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x713da5d0 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x71fc9937 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xc8cdb8aa pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x058448d2 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0cc0d363 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0d374e80 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x22d99b18 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d9c99cd rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3b3f8628 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ce3e1f1 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5161ec3b rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x53b8fc4d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b037e6d rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6d2e65d8 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x878fd547 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x882d2266 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x98cdbaf0 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc035040e rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd8885293 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xec254a89 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0x05127a46 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3397c31d gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x524d13ac gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd18059b0 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2039ccfa xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaa415213 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb8228ca3 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x60285ad6 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x60423f94 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x83e0156a tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x9fae2b89 tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0xdcde2fc3 tls_get_record -EXPORT_SYMBOL net/tls/tls 0xe771992d tls_register_device -EXPORT_SYMBOL net/tls/tls 0xf797d9aa tls_unregister_device -EXPORT_SYMBOL net/wimax/wimax 0x15bf88b1 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0xe33ed7f6 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00ec4b40 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x01a327cc cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x020717c0 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x04574352 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0aabf272 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x0eea26fe cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x1409afc3 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x141f502b cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x17ac736e cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x18349b34 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x187ee543 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x191affee cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1942be34 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x1a96764b cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d771636 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x1fd059a0 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x22b2df92 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x2332c35c ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x27e98e64 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x284107f7 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x2d69d9eb cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2d797bf7 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x3cf539ae cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x3e3d649d cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x42ee4df7 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x43170d19 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x444b3479 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x4a9c35a4 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x4bbb57dd cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x4cc1b8c6 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4cc6755d cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4ce8ce08 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x4f06f4d0 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x503f024e cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x50d42406 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x518aaba6 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x596e27d6 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x5aef8436 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x5becbdff ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x5cea3532 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x5d3a2425 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x6274e8a3 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6281ca59 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x6409480d cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x66530b20 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6cddb969 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x70418282 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x743a3bbc cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x78e8cd9c cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7bada841 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x7fe82631 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x81524707 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x8891bfad cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x90354a00 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x90eada24 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x91a7190a cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x96a9cade cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x98811901 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x99d8b693 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x9eefe9f4 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xa0075f49 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xa1e89d57 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa2b86642 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xa71db392 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xac45469a cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xacb14d89 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xad8c1d15 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xae5fafab __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb14e5218 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb3b9d585 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb732fe33 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xbe63e05a cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbf1e284b wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xc19b459c cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xc359b272 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xc6148e6c cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xc7bf2a52 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc9c42032 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xce7664f7 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xce7c628b cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd7f6f362 cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xdb929566 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe22356a0 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xe29b0f6d cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xe496d5ab cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe60acc4c cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xec9993ae cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xefec71cb cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf3e34a57 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf5361aee cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5aa9c23 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xf6dcef13 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xfbb4abd8 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xfeb34068 cfg80211_get_station -EXPORT_SYMBOL net/wireless/lib80211 0x3abe5d2f lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x4c5d3098 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x60828fa8 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x6ddc5ab9 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7d8b8249 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x8d292fa0 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x9b4979e7 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1656603c 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 0x311e40c1 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9a3fa16c snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa075a271 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe6e3b2d9 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x2a42917a snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x14698ffa snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x18645ec1 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1db1d5d0 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x35cea1ae snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x55830894 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x835620a4 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x88b89e3e snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b95de56 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8c44d250 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x90296242 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x92d5b83c snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xac36a06c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0b1bf8f snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5a74bfa snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xba9387f0 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbd86e5a snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf8b39d4 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfa2c884 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0d01c54 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xff912d0d snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x56a96807 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x1c31ac4d 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 0x2cf1b33c snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3a4a6f68 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3c7558b6 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50e13d79 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7654fb70 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa5e87d17 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae95225a snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6d6bd55 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xee486f5d snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1331ed97 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x67167db6 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x88efacc9 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x940b90c0 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbe7a8918 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd47ea7b6 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe63ebc2b snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xefc244b0 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1b95d12 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00902ccd amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0246816d cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x033768ef cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0355dfc7 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c10c587 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17b25d9d cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18152559 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ac26e1c cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x208819d3 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23b3b000 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x335d4098 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34f80f42 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4844ecb6 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a79982e amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d671f50 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53225abc amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c2979f4 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c787957 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x680c627f cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69486303 amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a67a6c5 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b5480a2 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92c18e01 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cc642e4 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb59e1610 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba232c96 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbbb92e2 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc29253dd iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc92bcd0e fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce2b287d avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2444b4a fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd81ae734 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7d451f57 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf3971ba8 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x73a27d52 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xafe460b2 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd404c1ac snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe6294e96 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe98039ee snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xecab2817 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xedd12e3a snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf70ebb40 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3dbf4f1f snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc4d5d715 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xec4d91e0 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfac0555a snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x01290368 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x73d83492 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x19e7468e snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1e90bd04 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3c704640 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6f8f53b9 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcafa46be snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xce1ea5a5 snd_i2c_probeaddr -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ca9b87a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x244703ad snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x338a5104 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34ac01cf snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x36d60bd9 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c6fe64e snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60805d3a snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x72f1ef67 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7ca781aa snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaeb2ebbc snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1a6d6aa snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfaf1c41 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd3c1549d snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9df6cdb snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xefcd2da6 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf8b2caa6 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa998f9d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa246384c snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc584810b snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe6b08db7 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d00b212 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1f389d11 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26c03c4f oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b2c2483 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2eae59df oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49a1dc58 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5196c7e5 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x679ad566 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7995a09b oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9589476c oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa16329b9 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa7146445 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf1a206f oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xafc7431e oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9d67dca oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbde381c0 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc45dbe03 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcbda8805 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd796b394 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea83599c oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf637ac5c oxygen_read32 -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x19d4bc37 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xab84d4d6 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x81bf50dd tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd380a4d5 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x02d398e3 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe004b57f aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe04c4a5c aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x3d4511f9 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x36d4ca98 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d19b6a1 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f3f6c7d snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x118ebc1e snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e448851 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23ef709b snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27956498 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29493525 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32ef3c68 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3493fd2e snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35618ae7 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x375a796f sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x391cb857 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3aa9e6c0 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c1df7da snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d267e8c sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c4d9bb7 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d01e2e0 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61db31cc snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70cf7cf3 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73691be8 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x774c0e22 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a418ea1 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d27d492 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x829f6ec7 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82b70108 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91101793 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x912cc629 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9786a26a sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97bc70d3 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fcb9681 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0cb5a6e sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8f05dba sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9227616 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5aea32e snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfcd434c snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcffdee4e snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda4c399d snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc248f9d snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0d85a85 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3701f4f snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5505a46 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec07af71 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf726e974 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9c7355b snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd5481e3 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd9a225a snd_sof_load_firmware -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 0x7f9bbbbd __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 0x000224a7 param_set_ullong -EXPORT_SYMBOL vmlinux 0x00137557 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x00229d0c dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x003f09c0 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x0042aa69 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x004bc6a8 kill_litter_super -EXPORT_SYMBOL vmlinux 0x0069adc3 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x006e10e7 bdevname -EXPORT_SYMBOL vmlinux 0x007085fa pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x008a576e twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x00974d48 xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0x00b86f3f set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x00cca1c2 tty_port_close -EXPORT_SYMBOL vmlinux 0x00d3c427 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dbd2aa cfb_imageblit -EXPORT_SYMBOL vmlinux 0x00f97dc8 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x00f9eba6 pci_release_region -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010a822e jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x010d8eca generic_delete_inode -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x01153088 input_register_handle -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x01223eaf dquot_commit_info -EXPORT_SYMBOL vmlinux 0x013892c8 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x0148aab4 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01535b01 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x0163471f bio_devname -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x01767d70 pci_find_bus -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x01943efa __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01b37430 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x01c641ea inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x01c72108 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in -EXPORT_SYMBOL vmlinux 0x01f0053a pci_map_rom -EXPORT_SYMBOL vmlinux 0x01fadde3 snd_timer_notify -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x021a675d of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x02258ae9 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x022a7d95 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x022c1c03 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x0254e0e8 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027ee44e unix_get_socket -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x0284e830 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x028d5635 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02c60343 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x02d90074 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ea2174 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02efd714 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x02f36cf7 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x02f93edf netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0x032c3963 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0341a527 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x034adb6c netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x034e9f43 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x0366494f deactivate_super -EXPORT_SYMBOL vmlinux 0x036e84c8 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0385f476 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x0391e732 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x03972e1c csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a8d66c device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x03afea91 _dev_crit -EXPORT_SYMBOL vmlinux 0x03b0b397 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x03b286db blk_put_queue -EXPORT_SYMBOL vmlinux 0x03b41293 xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03e9762a set_device_ro -EXPORT_SYMBOL vmlinux 0x03faacd0 skb_push -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04209d81 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x0423359b dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x042f9906 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x0433b378 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x0441e91f scsi_host_get -EXPORT_SYMBOL vmlinux 0x0445b367 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x04482986 generic_file_open -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x045b09f2 fget -EXPORT_SYMBOL vmlinux 0x048ecd2b snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x049f5718 inet_del_offload -EXPORT_SYMBOL vmlinux 0x04a5f8e8 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x04a82204 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x04ad36c0 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x04b587e5 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x04cc129b vfs_iter_write -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04e56c5d blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f8bf16 cqhci_deactivate -EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0519b159 simple_release_fs -EXPORT_SYMBOL vmlinux 0x051ef158 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053c7624 vfs_llseek -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054f4ac5 blk_get_queue -EXPORT_SYMBOL vmlinux 0x057c1fee vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x05a4bbd1 inet6_getname -EXPORT_SYMBOL vmlinux 0x05aff3e9 blk_get_request -EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05ca18a2 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061c3138 ata_print_version -EXPORT_SYMBOL vmlinux 0x062d7b9e udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x063230f9 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063613e2 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x065283b9 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x06570406 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x066622da input_flush_device -EXPORT_SYMBOL vmlinux 0x0667e188 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x066b0f7c vme_irq_free -EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x067452d1 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x0675d5c8 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x067ea780 mutex_unlock -EXPORT_SYMBOL vmlinux 0x06a9b2f7 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x06aedf57 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x06b07b73 pci_choose_state -EXPORT_SYMBOL vmlinux 0x06c69f6b fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06f933ad file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x07040866 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x0704cd6f snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0x071cf319 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs -EXPORT_SYMBOL vmlinux 0x072aee96 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07339c24 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x073488e4 bh_submit_read -EXPORT_SYMBOL vmlinux 0x07408220 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x074e9f6b uart_add_one_port -EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x07793f47 input_register_device -EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x0796811f sk_dst_check -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b1ec17 udp_seq_start -EXPORT_SYMBOL vmlinux 0x07b92a3a bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x07c8b571 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07df7219 keyring_clear -EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07eff5ec of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x08012c1a nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x0801c29a make_kprojid -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080671f3 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x0807033f invalidate_partition -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x081b071e give_up_console -EXPORT_SYMBOL vmlinux 0x08203210 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x0829e342 kernel_read -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08386f1b scsi_remove_device -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084c3ab9 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x084ef58e ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x08515a29 __nla_reserve -EXPORT_SYMBOL vmlinux 0x08517359 freeze_super -EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache -EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x08734df9 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x087f590b __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08883515 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x08a1553e filp_open -EXPORT_SYMBOL vmlinux 0x08a42e0c dmam_pool_create -EXPORT_SYMBOL vmlinux 0x08b23851 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x08b8a9d1 security_sock_graft -EXPORT_SYMBOL vmlinux 0x08b9c1e5 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e923d4 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x08ecf9b9 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x09021822 dump_page -EXPORT_SYMBOL vmlinux 0x092906e2 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x09307dff phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x098490bb dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x09877341 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098db8f1 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x09a2e303 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x09a707c6 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x09ad85a1 sort_r -EXPORT_SYMBOL vmlinux 0x09b65ca3 of_find_backlight -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d39191 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09e16e6d sock_sendmsg -EXPORT_SYMBOL vmlinux 0x09e2aa26 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x09f5eeac kmap_high -EXPORT_SYMBOL vmlinux 0x0a0773f0 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x0a2032db kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a248680 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a407aa1 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x0a422439 i2c_transfer -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa92814 key_validate -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update -EXPORT_SYMBOL vmlinux 0x0aec6f14 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x0b0827c8 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x0b0f9ac2 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x0b10b9a0 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x0b148900 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0b158369 of_clk_get -EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b34cd5a get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x0b370f5a devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x0b404543 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x0b40d7cf _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0b43a206 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75c2dd mntget -EXPORT_SYMBOL vmlinux 0x0b78e97b remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x0b85553c fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0b8597c3 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x0b8698df revalidate_disk -EXPORT_SYMBOL vmlinux 0x0b8c2fcd __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x0ba67994 qdisc_reset -EXPORT_SYMBOL vmlinux 0x0babc10c crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x0bbfd452 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x0bc3b1d0 configfs_register_group -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd78234 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x0be027cf serio_close -EXPORT_SYMBOL vmlinux 0x0bebf0da xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x0bec3c92 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x0c07a03a get_super -EXPORT_SYMBOL vmlinux 0x0c16f584 pci_save_state -EXPORT_SYMBOL vmlinux 0x0c1f152e sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c28be0a i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x0c41c03b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x0c50d221 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c7d33f4 __page_symlink -EXPORT_SYMBOL vmlinux 0x0c97d587 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cd5560a netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x0cdc575f devm_release_resource -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cf23c82 vfs_setpos -EXPORT_SYMBOL vmlinux 0x0d036f3d skb_pull -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d112f04 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x0d25e34d __frontswap_store -EXPORT_SYMBOL vmlinux 0x0d30f782 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x0d31a893 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d53944a blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d652162 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x0d6ab795 tcp_check_req -EXPORT_SYMBOL vmlinux 0x0d6c3eca snd_jack_set_key -EXPORT_SYMBOL vmlinux 0x0d84cf91 bioset_init -EXPORT_SYMBOL vmlinux 0x0d9cfae7 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x0da60c1d __mdiobus_read -EXPORT_SYMBOL vmlinux 0x0dae4a14 page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dca1410 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x0dd46b57 tty_lock -EXPORT_SYMBOL vmlinux 0x0dd890a8 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x0df033eb md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x0df48992 kern_path_create -EXPORT_SYMBOL vmlinux 0x0e0cb5b5 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e215d98 skb_copy -EXPORT_SYMBOL vmlinux 0x0e276544 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x0e46013f cpu_tlb -EXPORT_SYMBOL vmlinux 0x0e6fed30 __sock_create -EXPORT_SYMBOL vmlinux 0x0e81adb1 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x0e891868 elv_rb_del -EXPORT_SYMBOL vmlinux 0x0e9be47b d_genocide -EXPORT_SYMBOL vmlinux 0x0eaf3ef3 dm_io -EXPORT_SYMBOL vmlinux 0x0eb88b97 install_exec_creds -EXPORT_SYMBOL vmlinux 0x0ebf2fba finalize_exec -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef8cc50 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x0f0648e8 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource -EXPORT_SYMBOL vmlinux 0x0f07bb26 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0ad7c0 inet_accept -EXPORT_SYMBOL vmlinux 0x0f0b3a48 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x0f20e4ae inet_csk_accept -EXPORT_SYMBOL vmlinux 0x0f3494de edac_mc_find -EXPORT_SYMBOL vmlinux 0x0f40bdbd pci_read_vpd -EXPORT_SYMBOL vmlinux 0x0f559391 inet_listen -EXPORT_SYMBOL vmlinux 0x0f609549 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x0f72d2c7 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x0f7af33a redraw_screen -EXPORT_SYMBOL vmlinux 0x0f7d5a2f phy_disconnect -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9fc54a __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x0fa980e2 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbb5b1b tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x0fbd459b generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x0fc66112 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x0fd268ff qdisc_put -EXPORT_SYMBOL vmlinux 0x0fd520ca flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ffb6b95 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x0ffd32b2 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x1003f02c nand_write_oob_std -EXPORT_SYMBOL vmlinux 0x100b3bed clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x102dfff7 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106acde9 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1085d5ee down_read_killable -EXPORT_SYMBOL vmlinux 0x109d0eca __vmalloc -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c83b5d devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10ddb10e pskb_expand_head -EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x10ff6c16 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111a4827 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x11388df3 request_firmware -EXPORT_SYMBOL vmlinux 0x11392efc register_netdev -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116bd2c3 set_blocksize -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11857182 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x118f34dc jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x1199df80 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a41351 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x11a699c5 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x11aa40d7 pps_register_source -EXPORT_SYMBOL vmlinux 0x11ae1f2d rtc_add_group -EXPORT_SYMBOL vmlinux 0x11b32e45 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x11cae794 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x123a5470 __scm_send -EXPORT_SYMBOL vmlinux 0x12494ad3 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x126dd59a kernel_connect -EXPORT_SYMBOL vmlinux 0x1271bbc0 __do_once_done -EXPORT_SYMBOL vmlinux 0x127450c5 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x1284af71 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x12884ad3 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12bcf003 __block_write_begin -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cf8634 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x12d2baac _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x12e4b9c5 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x1307f019 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1328fb16 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135f323b passthru_features_check -EXPORT_SYMBOL vmlinux 0x1379d4f9 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x1385c4fb km_query -EXPORT_SYMBOL vmlinux 0x138b3238 udp_poll -EXPORT_SYMBOL vmlinux 0x13952975 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x13b9fb36 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d4ca68 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x13dabe8d ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x13e30333 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x13e6dfb7 seq_vprintf -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x14024715 snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x141fa15e tcf_exts_change -EXPORT_SYMBOL vmlinux 0x1435e22d nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14688519 mmc_command_done -EXPORT_SYMBOL vmlinux 0x14766107 param_ops_long -EXPORT_SYMBOL vmlinux 0x1477c57b nand_create_bbt -EXPORT_SYMBOL vmlinux 0x14808461 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x1480cf76 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x14829791 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x1482ccd4 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x14855947 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x14913acc dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x14a56d76 eth_header_cache -EXPORT_SYMBOL vmlinux 0x14bda618 inet_shutdown -EXPORT_SYMBOL vmlinux 0x14bf5aa0 sock_alloc -EXPORT_SYMBOL vmlinux 0x14d1ae5a fb_set_cmap -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14dd28c6 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15312c4e tty_port_hangup -EXPORT_SYMBOL vmlinux 0x153dfc05 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x15415e97 vfs_link -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155ee0f6 register_md_personality -EXPORT_SYMBOL vmlinux 0x1596ca37 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0x15ab102e snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x15b2a933 sock_release -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15e4d102 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x15f958ab locks_free_lock -EXPORT_SYMBOL vmlinux 0x1614bc75 mount_single -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x163c7c59 add_to_pipe -EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x165931c8 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0x16634ed7 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x16712640 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x168a1551 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x1693720f end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x16a46406 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x16ace698 bioset_exit -EXPORT_SYMBOL vmlinux 0x16db27bc PageMovable -EXPORT_SYMBOL vmlinux 0x16de8cf7 param_ops_int -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e35bcb generic_file_mmap -EXPORT_SYMBOL vmlinux 0x16f70873 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x16fd43e8 iget_failed -EXPORT_SYMBOL vmlinux 0x1738c19e _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x173a2078 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x1769a36f path_put -EXPORT_SYMBOL vmlinux 0x17732d48 fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x17ad4951 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x17aeebba genphy_resume -EXPORT_SYMBOL vmlinux 0x17d24e23 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x17ecea40 setup_new_exec -EXPORT_SYMBOL vmlinux 0x17f5ebb8 __pagevec_release -EXPORT_SYMBOL vmlinux 0x17fc65a5 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x17fe0c72 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x18014ccb netdev_info -EXPORT_SYMBOL vmlinux 0x1830bebb of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x18496bbe tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x1849e62f cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x184ab07e __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x18587339 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x18be7e9a __skb_get_hash -EXPORT_SYMBOL vmlinux 0x18bf21fa pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x18cc7e63 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x18cf3e96 key_link -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e6b41f da903x_query_status -EXPORT_SYMBOL vmlinux 0x18ebeed5 set_bh_page -EXPORT_SYMBOL vmlinux 0x18ece5b5 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x18ed27a2 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x1902fa0c simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x190785a4 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x1908cfef nf_setsockopt -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x191fb54c devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x1936618f page_pool_destroy -EXPORT_SYMBOL vmlinux 0x1958ac8c security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x195d4ac9 memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0x19776b16 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x197c12e2 empty_aops -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a58c86 seq_escape -EXPORT_SYMBOL vmlinux 0x19b0ed00 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d8e0fb dma_cache_sync -EXPORT_SYMBOL vmlinux 0x19f006a0 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x19f64b6f skb_checksum_help -EXPORT_SYMBOL vmlinux 0x1a015c32 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x1a075147 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x1a1b502d dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported -EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a3242f8 rproc_boot -EXPORT_SYMBOL vmlinux 0x1a35293c ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x1a365537 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9eef8f netdev_emerg -EXPORT_SYMBOL vmlinux 0x1a9fdc96 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1ab3cfed __i2c_transfer -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad90f54 dput -EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1afa00c7 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x1afc61da ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b02ed9a vlan_vid_del -EXPORT_SYMBOL vmlinux 0x1b1ad70c jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b629e13 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64013f abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8b0068 param_get_bool -EXPORT_SYMBOL vmlinux 0x1b999c98 dcb_setapp -EXPORT_SYMBOL vmlinux 0x1bbd176c scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x1bbf67de input_open_device -EXPORT_SYMBOL vmlinux 0x1bc4c2a5 kobject_put -EXPORT_SYMBOL vmlinux 0x1bd85ee6 vm_mmap -EXPORT_SYMBOL vmlinux 0x1bdb27e7 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x1be7e263 hmm_mirror_register -EXPORT_SYMBOL vmlinux 0x1c173b50 neigh_destroy -EXPORT_SYMBOL vmlinux 0x1c20431d phy_find_first -EXPORT_SYMBOL vmlinux 0x1c30802c param_ops_ulong -EXPORT_SYMBOL vmlinux 0x1c42a5c8 snd_timer_pause -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c667b92 ppp_input_error -EXPORT_SYMBOL vmlinux 0x1c682376 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x1c806cdb amba_device_register -EXPORT_SYMBOL vmlinux 0x1c84a9e9 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x1c86b60a flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x1c9e16b3 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x1c9e68ac serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x1ca3893e mmc_request_done -EXPORT_SYMBOL vmlinux 0x1caf4c2b wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cb5ea15 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x1d003ee9 skb_dequeue -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d27dab6 path_nosuid -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d312c49 nvm_unregister -EXPORT_SYMBOL vmlinux 0x1d355f67 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x1d4b68fd flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x1d586acb phy_init_hw -EXPORT_SYMBOL vmlinux 0x1d83eeae pci_pme_active -EXPORT_SYMBOL vmlinux 0x1d85a25e xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x1d8e1695 vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x1da26d54 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x1dbd928b tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0x1dbf0f52 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x1dcccba9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x1dd17ab5 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x1dd336e8 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dec1eff cdev_device_del -EXPORT_SYMBOL vmlinux 0x1defb9e0 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x1dfcd3be release_firmware -EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0a74f8 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x1e149d84 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2539b3 vme_slot_num -EXPORT_SYMBOL vmlinux 0x1e4a12ee tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x1e6c8db5 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8094d9 key_put -EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e9af2ed simple_transaction_get -EXPORT_SYMBOL vmlinux 0x1e9cb39f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1ebbfbf2 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x1ec57cd5 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x1ed3acfa nf_getsockopt -EXPORT_SYMBOL vmlinux 0x1ed8038d qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee7acd0 __quota_error -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1ef2d880 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x1f0bf112 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x1f2047f8 sk_capable -EXPORT_SYMBOL vmlinux 0x1f2a19b2 sock_register -EXPORT_SYMBOL vmlinux 0x1f4e2ade vme_dma_request -EXPORT_SYMBOL vmlinux 0x1f579bca blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x1f5e72bb pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x1f775048 sock_i_ino -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1fae4fab netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbd2c20 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x1fbf1617 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1ff10291 nand_read_page_raw -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x20015b57 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x2004cb46 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201ff472 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x202352ec pcim_enable_device -EXPORT_SYMBOL vmlinux 0x20317146 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x2044bedf inet_frag_kill -EXPORT_SYMBOL vmlinux 0x2046fbc0 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2051fb36 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x207e2ba4 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x2083129c sk_alloc -EXPORT_SYMBOL vmlinux 0x20846110 down_killable -EXPORT_SYMBOL vmlinux 0x20a16b87 bio_split -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a7fd15 netdev_notice -EXPORT_SYMBOL vmlinux 0x20abaf33 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x20c8f6ee wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20df388c open_with_fake_path -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2120c107 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x212133db xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0x212dc837 vfs_rename -EXPORT_SYMBOL vmlinux 0x213bc59f __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x2167cb1d rt6_lookup -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x218ab764 kobject_del -EXPORT_SYMBOL vmlinux 0x21a04302 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x21ac07b7 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21bdc117 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21be5256 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x21d80354 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x21dbc4fa generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x21debf6a ip_frag_init -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21f24397 tcf_block_get -EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x21fa6d8d eth_header_parse -EXPORT_SYMBOL vmlinux 0x2202ffbd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x22069ad3 devm_free_irq -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x225bee5e xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x22712130 of_translate_address -EXPORT_SYMBOL vmlinux 0x22754706 inode_set_flags -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2291a0e2 sync_file_create -EXPORT_SYMBOL vmlinux 0x229499b1 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x229ca96c can_nice -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c2f48b vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x22df7a72 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x22e9d413 fsync_bdev -EXPORT_SYMBOL vmlinux 0x22ff1360 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x232b5af6 pci_get_slot -EXPORT_SYMBOL vmlinux 0x232bbbf7 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x23446a09 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x23576a35 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x235c7b3a rproc_alloc -EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x2366d8e1 km_state_expired -EXPORT_SYMBOL vmlinux 0x2376312b __mdiobus_register -EXPORT_SYMBOL vmlinux 0x2378da70 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x23898276 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23970366 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x239793fa skb_vlan_push -EXPORT_SYMBOL vmlinux 0x2397a39d __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x23b35123 pci_dev_get -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bbdeed _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23c9c827 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23ee8079 md_write_inc -EXPORT_SYMBOL vmlinux 0x23f5d2a5 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x23f71f5b phy_detach -EXPORT_SYMBOL vmlinux 0x23f9c5ce xps_needed -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2431fa19 sock_create_lite -EXPORT_SYMBOL vmlinux 0x2441fa4e netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2445c06f bdget_disk -EXPORT_SYMBOL vmlinux 0x24461651 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x245074c6 genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0x24560ea4 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x24575fd9 wake_up_process -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x246c216c proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x2488bc86 tcf_block_put -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24b97378 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0x24c995b7 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e8b56b touch_buffer -EXPORT_SYMBOL vmlinux 0x24f94ef4 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x2504293f tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x25125c3b mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252aaeec max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x254eddf4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free -EXPORT_SYMBOL vmlinux 0x257f8bfa param_get_int -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258a33ca seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25958824 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x259f70a1 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x25ab58fb inode_add_bytes -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec52db submit_bio_wait -EXPORT_SYMBOL vmlinux 0x25ff4e52 padata_free_shell -EXPORT_SYMBOL vmlinux 0x2602a16b scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x260e5957 key_task_permission -EXPORT_SYMBOL vmlinux 0x2623b9d2 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x264bf0c5 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x264cbe06 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x265e3a24 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x267ef14b __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x269a7353 sock_no_listen -EXPORT_SYMBOL vmlinux 0x269f10f7 end_page_writeback -EXPORT_SYMBOL vmlinux 0x26a11d27 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x26a8eeb5 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x26ac0ba5 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c6a514 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x26d4fff4 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x26de373b kmalloc_caches -EXPORT_SYMBOL vmlinux 0x26e350d0 __kfree_skb -EXPORT_SYMBOL vmlinux 0x26e36376 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x26e5b4b9 empty_zero_page -EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x270f6f0f tty_set_operations -EXPORT_SYMBOL vmlinux 0x270fac73 zap_page_range -EXPORT_SYMBOL vmlinux 0x27190417 generic_listxattr -EXPORT_SYMBOL vmlinux 0x27252db3 follow_pfn -EXPORT_SYMBOL vmlinux 0x2731f26b pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277ca17f submit_bh -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x2785ade2 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278d1f1f tty_check_change -EXPORT_SYMBOL vmlinux 0x27949a4d __page_pool_put_page -EXPORT_SYMBOL vmlinux 0x27a1f2b0 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x27aa6c4f fb_show_logo -EXPORT_SYMBOL vmlinux 0x27ad6fab tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x27bb3471 get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27be7391 posix_lock_file -EXPORT_SYMBOL vmlinux 0x27c0abc0 inet_getname -EXPORT_SYMBOL vmlinux 0x27c31d32 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x27c50b6b nvm_submit_io -EXPORT_SYMBOL vmlinux 0x27c68705 node_states -EXPORT_SYMBOL vmlinux 0x27da3fa4 _dev_info -EXPORT_SYMBOL vmlinux 0x27dcd25a __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x27e58190 param_set_byte -EXPORT_SYMBOL vmlinux 0x27e9edbb phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x27eda3e4 proto_register -EXPORT_SYMBOL vmlinux 0x27f5baa9 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281faf8b snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0x282befa8 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0x282c41b2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x282ddfa5 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x2832e9e3 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x28399947 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x284647ef pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x2850f4ae crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x28692079 misc_register -EXPORT_SYMBOL vmlinux 0x2873297f xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x2889b206 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x28b463a6 twl6040_power -EXPORT_SYMBOL vmlinux 0x28d3fc0c netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x28db6d8f pci_enable_msi -EXPORT_SYMBOL vmlinux 0x28deddfe ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x28e62fef ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x28e80c37 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x2920e01a tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x29276e84 of_device_unregister -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x296705cf blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x296edebb udp_gro_complete -EXPORT_SYMBOL vmlinux 0x29768030 module_put -EXPORT_SYMBOL vmlinux 0x29881c93 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x299ca313 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29b9285d serio_reconnect -EXPORT_SYMBOL vmlinux 0x29c885ad blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x29c8f6a3 mount_bdev -EXPORT_SYMBOL vmlinux 0x29d92c9b phy_loopback -EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x29ec9f75 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x29ef8520 sound_class -EXPORT_SYMBOL vmlinux 0x2a096bce jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x2a098c75 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a90d7ef sock_rfree -EXPORT_SYMBOL vmlinux 0x2a98b2a0 inode_init_always -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa9a5c5 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x2ac0a691 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x2ac5b0f9 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x2acfa03f phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x2acfa402 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x2ad4b9c3 mdio_device_create -EXPORT_SYMBOL vmlinux 0x2ae354fe scsi_host_busy -EXPORT_SYMBOL vmlinux 0x2b01ccc8 ps2_command -EXPORT_SYMBOL vmlinux 0x2b086031 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x2b0986f2 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x2b30b698 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x2b3172c1 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2b56cb6d open_exec -EXPORT_SYMBOL vmlinux 0x2b5ab97d _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x2b61f152 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x2b67eefa blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9c7db3 prepare_creds -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb33077 vscnprintf -EXPORT_SYMBOL vmlinux 0x2bd03a06 param_get_byte -EXPORT_SYMBOL vmlinux 0x2bdf97eb param_set_uint -EXPORT_SYMBOL vmlinux 0x2bec3dbd eth_mac_addr -EXPORT_SYMBOL vmlinux 0x2bfaf031 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x2bfb6c96 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c009999 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x2c066f69 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c2017ea get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2ac063 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c3d0769 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x2c460a42 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x2c51927f devm_clk_put -EXPORT_SYMBOL vmlinux 0x2c553d41 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8d1f08 phy_attached_print -EXPORT_SYMBOL vmlinux 0x2c9d3756 vsnprintf -EXPORT_SYMBOL vmlinux 0x2ca0686e security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x2cb3e906 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x2cb44097 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x2cbe124e pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x2cbeb57a tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x2cbf8c82 inet_add_offload -EXPORT_SYMBOL vmlinux 0x2cc80cff xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x2ccf2def skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x2cea252f pci_disable_msi -EXPORT_SYMBOL vmlinux 0x2cfbaf67 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2cfcb84d neigh_seq_start -EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d06d61f efi -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d15f6a7 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x2d23fb8f tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x2d28605b md_update_sb -EXPORT_SYMBOL vmlinux 0x2d2b7bf5 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d32704c pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d4ed7d3 tcp_connect -EXPORT_SYMBOL vmlinux 0x2d525951 ppp_input -EXPORT_SYMBOL vmlinux 0x2d65def9 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d723b8d register_framebuffer -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da2af4e xfrm_register_km -EXPORT_SYMBOL vmlinux 0x2da81bff _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2dc34177 locks_init_lock -EXPORT_SYMBOL vmlinux 0x2de5bc38 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x2dec67cd _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e302b18 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e6118ed sock_no_mmap -EXPORT_SYMBOL vmlinux 0x2e8ff23a seq_read -EXPORT_SYMBOL vmlinux 0x2e9dc857 seq_open_private -EXPORT_SYMBOL vmlinux 0x2ea39f8e mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ec842e3 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0ae69f con_copy_unimap -EXPORT_SYMBOL vmlinux 0x2f0e0fec rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x2f1a601a reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f1cd60b file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x2f2311fa dma_dummy_ops -EXPORT_SYMBOL vmlinux 0x2f248c84 tcp_poll -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f348ba7 dst_alloc -EXPORT_SYMBOL vmlinux 0x2f3a6451 __lock_buffer -EXPORT_SYMBOL vmlinux 0x2f3d9d91 seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f6164e4 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x2f6ea6d2 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x2f7c945f skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x2f89731c key_revoke -EXPORT_SYMBOL vmlinux 0x2f8a5154 finish_swait -EXPORT_SYMBOL vmlinux 0x2f8d44f7 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x2f8f407b tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x2f91883f napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x2f97d372 revert_creds -EXPORT_SYMBOL vmlinux 0x2fad70ee account_page_redirty -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fbb5728 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x2fc073f1 bio_chain -EXPORT_SYMBOL vmlinux 0x2fe19ba5 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ffea0a3 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x30275bfb __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x30492f94 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x30651b60 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x306c62ff mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x306e13db from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a43bdd mount_subtree -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a8101e ip_getsockopt -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30bc17e0 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x30c02e91 fb_class -EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -EXPORT_SYMBOL vmlinux 0x30e05e45 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30ec9f24 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x30f94add map_destroy -EXPORT_SYMBOL vmlinux 0x30fdf3a8 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x30ff6dd3 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3104fff7 mpage_readpage -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312fbe94 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x3134168a register_sound_special_device -EXPORT_SYMBOL vmlinux 0x313c8097 mr_table_dump -EXPORT_SYMBOL vmlinux 0x313f0040 hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x313feef6 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x314869a7 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x31573ca8 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x315ba039 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x315d7a4e netdev_state_change -EXPORT_SYMBOL vmlinux 0x3181f2a7 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x3189e8c8 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x31916033 bio_reset -EXPORT_SYMBOL vmlinux 0x3195a661 netlink_set_err -EXPORT_SYMBOL vmlinux 0x3195dfd8 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31babb7b inode_get_bytes -EXPORT_SYMBOL vmlinux 0x31db23da kunmap -EXPORT_SYMBOL vmlinux 0x31e201c1 key_type_keyring -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x3203804b blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x320aa6e3 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x3221c103 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x322517a3 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x32312631 of_dev_get -EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x32542665 mmc_free_host -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x32763580 snd_register_device -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x328b6902 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x32b5cb6b devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32f2b05b gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x33354100 block_write_full_page -EXPORT_SYMBOL vmlinux 0x33404810 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x33496eb3 __register_chrdev -EXPORT_SYMBOL vmlinux 0x334afd57 kern_path -EXPORT_SYMBOL vmlinux 0x33532b66 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x33667030 dst_discard_out -EXPORT_SYMBOL vmlinux 0x337c82e5 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x3383a3c8 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x3384e24d skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x3384ffee pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x338e23e0 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x33917004 inode_init_owner -EXPORT_SYMBOL vmlinux 0x339236fe of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x339694ec param_get_ulong -EXPORT_SYMBOL vmlinux 0x33a225ad phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x33cc8ca3 unload_nls -EXPORT_SYMBOL vmlinux 0x33cdbbb7 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x33cf6ef5 stop_tty -EXPORT_SYMBOL vmlinux 0x33cfc38b inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x33d9877b tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33de068e __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x34129531 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x341de898 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x34390906 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x344c9fc4 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x345591d5 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x346db3c3 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x347634d1 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x349725ad sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34a2d985 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x34a9925a tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x34a9cd2b vm_map_ram -EXPORT_SYMBOL vmlinux 0x34aa6432 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x34ac6b96 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x34b65ead filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x34cca201 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f65f20 dquot_release -EXPORT_SYMBOL vmlinux 0x3509083f simple_unlink -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3524532a kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35696cb2 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x35751256 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x3576e5a7 fs_bio_set -EXPORT_SYMBOL vmlinux 0x3595aef0 mr_dump -EXPORT_SYMBOL vmlinux 0x35a3f9d8 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b6df8e proc_create_data -EXPORT_SYMBOL vmlinux 0x35bb4072 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x35be71a1 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x35c279ad mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x360062a6 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x360b078d devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3611daeb netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3615ad9a pci_find_capability -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366a021e proc_create_single_data -EXPORT_SYMBOL vmlinux 0x36944ff5 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x369a2bcb __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36e136f8 block_write_begin -EXPORT_SYMBOL vmlinux 0x370749c0 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x3707884d pci_write_vpd -EXPORT_SYMBOL vmlinux 0x37090bf7 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x370d04ce dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x372487f4 skb_seq_read -EXPORT_SYMBOL vmlinux 0x37394964 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x3741916d crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x3752c6fa thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x3755e587 input_inject_event -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3761537a snd_card_set_id -EXPORT_SYMBOL vmlinux 0x3781bd37 thaw_bdev -EXPORT_SYMBOL vmlinux 0x37942be2 uart_resume_port -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37af729c devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x37bb4324 register_qdisc -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d8030c alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f1c593 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38326546 seq_dentry -EXPORT_SYMBOL vmlinux 0x38376a49 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x383c9541 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x3850bd11 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0x385dff6d delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x386a4dd3 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x389a395b __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a66f56 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b20a91 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x38b32105 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x38bf1623 input_register_handler -EXPORT_SYMBOL vmlinux 0x38c6951e jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x38d20558 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x390b371b dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x391054a4 skb_queue_head -EXPORT_SYMBOL vmlinux 0x39160426 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x391d96cb sock_edemux -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x3973c696 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x3977296b blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x397e20e3 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x397fce29 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a12ca7 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x39af50d6 nonseekable_open -EXPORT_SYMBOL vmlinux 0x39b1ad55 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39c25c34 get_tz_trend -EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x39e07207 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x3a1732f0 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x3a2e2a88 udp_seq_next -EXPORT_SYMBOL vmlinux 0x3a3b9159 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x3a40ee47 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x3a42c9f1 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x3a4c7db9 dquot_get_state -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a6aa3cf flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x3a8b2cd7 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x3a961d1f snd_seq_root -EXPORT_SYMBOL vmlinux 0x3a9ed02f __lock_page -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abb5de0 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x3ac4351a tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3adae4c5 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x3add1e3f dev_driver_string -EXPORT_SYMBOL vmlinux 0x3ae5fa0f iov_iter_init -EXPORT_SYMBOL vmlinux 0x3b0f31ec d_instantiate_new -EXPORT_SYMBOL vmlinux 0x3b202067 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3b284ac0 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b4ecd53 input_grab_device -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b697738 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x3b702a42 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3b743f8a __d_drop -EXPORT_SYMBOL vmlinux 0x3b87c87c __phy_resume -EXPORT_SYMBOL vmlinux 0x3b8ecf9f tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3b917bbf complete_and_exit -EXPORT_SYMBOL vmlinux 0x3baae46a tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bbf79f8 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x3bc383ff tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x3bc5174c cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x3bc96bb5 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x3bcd5faa nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0x3bd96a04 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x3bdb7066 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x3bdcd057 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3be21c12 napi_disable -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bee38c4 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x3bffcc53 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1daf32 tty_port_put -EXPORT_SYMBOL vmlinux 0x3c357891 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x3c3615af backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4c2d49 get_phy_device -EXPORT_SYMBOL vmlinux 0x3c50e6ca console_start -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3cb0b6fb tty_port_destroy -EXPORT_SYMBOL vmlinux 0x3cdeddd3 poll_freewait -EXPORT_SYMBOL vmlinux 0x3ce2861e netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceacf10 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x3cfaa763 dev_mc_del -EXPORT_SYMBOL vmlinux 0x3d028aba param_ops_uint -EXPORT_SYMBOL vmlinux 0x3d0933d7 rproc_free -EXPORT_SYMBOL vmlinux 0x3d2164b0 bio_copy_data -EXPORT_SYMBOL vmlinux 0x3d249bb4 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d52fb7f unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d621c75 genphy_read_status -EXPORT_SYMBOL vmlinux 0x3d9a9b88 stream_open -EXPORT_SYMBOL vmlinux 0x3d9af957 complete_request_key -EXPORT_SYMBOL vmlinux 0x3d9d139a input_reset_device -EXPORT_SYMBOL vmlinux 0x3da69b7d from_kuid -EXPORT_SYMBOL vmlinux 0x3db372c2 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up -EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3de16223 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0f9f79 iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0x3e1e2257 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x3e1ea19f cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x3e236378 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x3e275e7e of_get_address -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e2bcd55 free_netdev -EXPORT_SYMBOL vmlinux 0x3e3f5a82 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x3e409d5b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x3e54cc1f wireless_send_event -EXPORT_SYMBOL vmlinux 0x3e64eeef new_inode -EXPORT_SYMBOL vmlinux 0x3e8db35a inode_init_once -EXPORT_SYMBOL vmlinux 0x3e8f1196 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3eb8b95c copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x3eb96cf7 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x3ec3729c remap_pfn_range -EXPORT_SYMBOL vmlinux 0x3ecdd595 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark -EXPORT_SYMBOL vmlinux 0x3eed96a4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3eee8ef2 no_llseek -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f055761 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x3f1275dc netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x3f16d449 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x3f1acb7f pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x3f1c82a6 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x3f1d6d7e of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x3f1e06ef proc_create -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f50eb4d xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x3f60aeab napi_gro_flush -EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init -EXPORT_SYMBOL vmlinux 0x3f74492b module_refcount -EXPORT_SYMBOL vmlinux 0x3f88c8ae refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8aec68 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x3f913b4e tty_do_resize -EXPORT_SYMBOL vmlinux 0x3f931c7a iterate_supers_type -EXPORT_SYMBOL vmlinux 0x3f9a386b nand_correct_data -EXPORT_SYMBOL vmlinux 0x3fb27500 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x3fd69af4 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe3739f __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3fee44a4 md_flush_request -EXPORT_SYMBOL vmlinux 0x40260238 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x40346499 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x40352133 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x403f5413 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x4071071b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x4085346d phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x408e357a framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x40929585 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x40961a5a md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b31ae1 of_match_device -EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x40b7b0e3 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x40b9822c seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x40bcd6dd fb_pan_display -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c9d4f0 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr -EXPORT_SYMBOL vmlinux 0x40d4dc40 fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ea130a start_tty -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f66ec6 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x411af6da __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x4169c3e8 unlock_rename -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41d0cb66 iget_locked -EXPORT_SYMBOL vmlinux 0x41d696b6 sock_wake_async -EXPORT_SYMBOL vmlinux 0x41d90dbe tso_build_hdr -EXPORT_SYMBOL vmlinux 0x41e82f16 vfs_get_super -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x423902ec generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x4241ae77 ip6_xmit -EXPORT_SYMBOL vmlinux 0x42468228 vme_register_driver -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4251526e phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x4252e372 padata_free -EXPORT_SYMBOL vmlinux 0x4253aa7e down_write -EXPORT_SYMBOL vmlinux 0x425429c0 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x425ac195 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x425d6f50 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x427ad1c2 dquot_initialize -EXPORT_SYMBOL vmlinux 0x427f19d4 touch_atime -EXPORT_SYMBOL vmlinux 0x42981a30 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x42a7fbfc generic_read_dir -EXPORT_SYMBOL vmlinux 0x42bf6d0f pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x42c16d07 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x42ce87de mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f64edf snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x42fd7ddc fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43134876 snd_info_register -EXPORT_SYMBOL vmlinux 0x4328c949 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x4333dc8b wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435ca862 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x43773110 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region -EXPORT_SYMBOL vmlinux 0x43859aa3 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43c37122 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x43c52339 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x43da3156 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x43fb25bf __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x44014208 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x441c0c22 cdev_del -EXPORT_SYMBOL vmlinux 0x4420d820 kfree_skb -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x4428c3f9 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x4432184a input_setup_polling -EXPORT_SYMBOL vmlinux 0x44323928 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed -EXPORT_SYMBOL vmlinux 0x444ed45e file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4467d72a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x446afb37 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x4476cc88 md_integrity_register -EXPORT_SYMBOL vmlinux 0x4493907e dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x449a1f4c sg_miter_next -EXPORT_SYMBOL vmlinux 0x44bc751c udp_sendmsg -EXPORT_SYMBOL vmlinux 0x44c15f5e pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44e0e56f blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45085651 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x4511dfc5 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x451a9657 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x451b5404 phy_driver_register -EXPORT_SYMBOL vmlinux 0x4525597e cpu_user -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x45323f83 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x45367784 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x455faa61 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x4572fdd0 arp_send -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458f8271 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x458faee4 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x45991f43 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x459fabe3 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x45aeae4e con_is_bound -EXPORT_SYMBOL vmlinux 0x45b37087 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x45b7758e cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x45bc05c4 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c46b89 cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0x45cac151 inode_permission -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x4634fb71 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x46383358 dentry_open -EXPORT_SYMBOL vmlinux 0x463abffa flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x467010db __ps2_command -EXPORT_SYMBOL vmlinux 0x468522bd netdev_err -EXPORT_SYMBOL vmlinux 0x468ced81 serio_rescan -EXPORT_SYMBOL vmlinux 0x46909ee4 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x46960f82 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x4697f700 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b79d26 inet6_release -EXPORT_SYMBOL vmlinux 0x46bd7e65 pipe_unlock -EXPORT_SYMBOL vmlinux 0x46bfb877 dquot_operations -EXPORT_SYMBOL vmlinux 0x46bfbdbd __ip_options_compile -EXPORT_SYMBOL vmlinux 0x46bfe1b0 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x46d1cf4b nla_put -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46e0c41b fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x46f0d8b6 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x470d5a58 _dev_err -EXPORT_SYMBOL vmlinux 0x47155aa0 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x4715d175 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x471dc282 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x47207cbb rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x47282e30 backlight_device_register -EXPORT_SYMBOL vmlinux 0x474ba707 unlock_page -EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy -EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x476ae571 devm_memunmap -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477351e7 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x477e3f76 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x4781e957 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x478a8249 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x4794696b dump_truncate -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a81e95 tty_kref_put -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47e9cc5d follow_up -EXPORT_SYMBOL vmlinux 0x47ea77e6 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x4800f131 softnet_data -EXPORT_SYMBOL vmlinux 0x4808ade4 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x4818c735 neigh_lookup -EXPORT_SYMBOL vmlinux 0x482d8454 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x482fc151 input_enable_softrepeat -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 0x487f59d0 check_disk_change -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b1ae27 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x48b6040a page_pool_create -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48baf9c4 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x48bb80db hex2bin -EXPORT_SYMBOL vmlinux 0x48c4ef3d sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x48c55008 generic_write_end -EXPORT_SYMBOL vmlinux 0x48cb057c register_sysctl_table -EXPORT_SYMBOL vmlinux 0x48e22b70 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x48e549fc devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x48e7c9d7 ll_rw_block -EXPORT_SYMBOL vmlinux 0x48f8fa47 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x4904107e scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490dbb43 audit_log -EXPORT_SYMBOL vmlinux 0x4932aaea ping_prot -EXPORT_SYMBOL vmlinux 0x49359308 register_sound_mixer -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x493cc41a ps2_end_command -EXPORT_SYMBOL vmlinux 0x493f99cd scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x4943afb9 cred_fscmp -EXPORT_SYMBOL vmlinux 0x494de4dc pci_claim_resource -EXPORT_SYMBOL vmlinux 0x495d60d1 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x49647dc5 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x49706c9a param_ops_bool -EXPORT_SYMBOL vmlinux 0x4988a56a security_task_getsecid -EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x49c0217a eth_get_headlen -EXPORT_SYMBOL vmlinux 0x49cb1fdf seq_hex_dump -EXPORT_SYMBOL vmlinux 0x49d3457a cpumask_any_but -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x4a2d3562 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a3fb254 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x4a40213c PDE_DATA -EXPORT_SYMBOL vmlinux 0x4a592f7f nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0x4a70f832 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x4a794a61 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4a953503 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a997fee balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x4aa98175 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4ab2a71b tcp_splice_read -EXPORT_SYMBOL vmlinux 0x4ad2d961 cqhci_irq -EXPORT_SYMBOL vmlinux 0x4ade8b2e kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x4af0acde netdev_features_change -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b0d9d42 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b27af7a tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x4b351220 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x4b3ade77 param_ops_short -EXPORT_SYMBOL vmlinux 0x4b473ec6 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4b478c34 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x4b4915cf cdev_alloc -EXPORT_SYMBOL vmlinux 0x4b52d366 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b62c26b param_set_bint -EXPORT_SYMBOL vmlinux 0x4b79a4ba devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x4b79b5ab find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x4b7e3cba md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x4b935194 vm_node_stat -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bcf204c qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x4be22a9a inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c015720 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x4c05fa0f xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0x4c15a066 iterate_fd -EXPORT_SYMBOL vmlinux 0x4c1aff7c mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3b0312 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c8f00be md_check_recovery -EXPORT_SYMBOL vmlinux 0x4c92ed5a bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4cb2a144 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x4cb8146f nf_reinject -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc0f033 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4ceb2935 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1c3b0e inet6_offloads -EXPORT_SYMBOL vmlinux 0x4d2520f8 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x4d30c38e set_nlink -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d633c89 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x4d634803 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x4d6c0a55 i2c_release_client -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d8158a2 nf_log_set -EXPORT_SYMBOL vmlinux 0x4d862e99 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4dae4884 snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0x4dae6728 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x4db56640 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x4dbcc1c4 __inet_hash -EXPORT_SYMBOL vmlinux 0x4dc11ca2 pci_restore_state -EXPORT_SYMBOL vmlinux 0x4dc239fa d_lookup -EXPORT_SYMBOL vmlinux 0x4dc8c0c6 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x4de42100 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df479d9 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x4df8ff1e fqdir_init -EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e2116d7 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x4e2f6dff page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x4e3214c5 truncate_setsize -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e47c2d1 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x4e4c7e6f genl_unregister_family -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e595dd8 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e85d19c scsi_print_result -EXPORT_SYMBOL vmlinux 0x4e924c9f inet_release -EXPORT_SYMBOL vmlinux 0x4e9a81c5 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x4ea576cf inet_ioctl -EXPORT_SYMBOL vmlinux 0x4eb40bb9 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x4ebb3c71 tcp_close -EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee2719f inet_recvmsg -EXPORT_SYMBOL vmlinux 0x4ee49499 block_read_full_page -EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4efaf46f dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x4efb4ebc component_match_add_typed -EXPORT_SYMBOL vmlinux 0x4f13b3ef inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f21f536 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f22d6f9 completion_done -EXPORT_SYMBOL vmlinux 0x4f291385 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x4f3c6500 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4f52004d nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x4f58bff7 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x4f5f99f6 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x4f6be192 put_fs_context -EXPORT_SYMBOL vmlinux 0x4f7fbc9e kmem_cache_create -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f952dbd skb_queue_purge -EXPORT_SYMBOL vmlinux 0x4f9c2c16 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x4fa417ce dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x4fbcdf9b netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x4fcf31e1 pid_task -EXPORT_SYMBOL vmlinux 0x4fcf42d6 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x5002cd2b eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x5008638e __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500fed4d fget_raw -EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node -EXPORT_SYMBOL vmlinux 0x5037ba02 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x50567fa4 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x50580406 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5071e129 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x50786373 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x50816809 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x50964455 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x50a16764 build_skb_around -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a7b0b2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50da59fd md_finish_reshape -EXPORT_SYMBOL vmlinux 0x50dbbaf1 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x50ec46df tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x5102ed62 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x51045dcc simple_open -EXPORT_SYMBOL vmlinux 0x510eb2dd xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x5137d685 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x513b74a7 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x513cf4e2 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x5157b01a skb_trim -EXPORT_SYMBOL vmlinux 0x515c2672 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order -EXPORT_SYMBOL vmlinux 0x5175c87a netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x518719b6 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x518bcf82 framebuffer_release -EXPORT_SYMBOL vmlinux 0x51bd07f7 page_address -EXPORT_SYMBOL vmlinux 0x51e0e5b4 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x51e3d41c abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x520836d5 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x521b426b elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x5229b580 set_create_files_as -EXPORT_SYMBOL vmlinux 0x523065a2 ipv4_specific -EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x5262fcc2 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x52643315 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x5264d7cc phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x5280b9b1 tso_count_descs -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52c3b359 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x52c89790 clk_get -EXPORT_SYMBOL vmlinux 0x52cab8ed get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x52cdfd87 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530d6973 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x5320cd0a napi_complete_done -EXPORT_SYMBOL vmlinux 0x53232fd0 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x5329ea79 of_node_put -EXPORT_SYMBOL vmlinux 0x533284fa phy_validate_pause -EXPORT_SYMBOL vmlinux 0x53527e4b skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x535f91aa xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x5360be7f snd_timer_open -EXPORT_SYMBOL vmlinux 0x53709650 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x5382fc88 dcb_getapp -EXPORT_SYMBOL vmlinux 0x538be6a7 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x53942bc5 set_groups -EXPORT_SYMBOL vmlinux 0x53a6494d bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x53aeed6b tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x53b548a6 cad_pid -EXPORT_SYMBOL vmlinux 0x53c270cd __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x53c54639 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x53caed77 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x53d2edd2 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x53fc3b85 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x54242244 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54580a20 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x545c1001 param_set_long -EXPORT_SYMBOL vmlinux 0x5468c2dd inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x548aed70 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x548e8694 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x54a085bd netif_rx -EXPORT_SYMBOL vmlinux 0x54a96909 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54af8386 put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x54af9466 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x54b6552b ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ffc6b7 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550a294e file_update_time -EXPORT_SYMBOL vmlinux 0x55159308 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551da5f6 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x5537c2c2 xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0x553e8c76 dev_load -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55519f94 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x55523b4b textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5559c5a6 tcp_filter -EXPORT_SYMBOL vmlinux 0x555d1be4 devm_clk_get -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a63892 make_bad_inode -EXPORT_SYMBOL vmlinux 0x55e19495 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x560327a1 of_device_alloc -EXPORT_SYMBOL vmlinux 0x56171263 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x562139b4 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563cf581 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x563d19f8 inode_insert5 -EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x56573065 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x5663c1cb invalidate_bdev -EXPORT_SYMBOL vmlinux 0x5667a277 down_timeout -EXPORT_SYMBOL vmlinux 0x566efd60 d_move -EXPORT_SYMBOL vmlinux 0x56748e32 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x56784bc0 vme_bus_type -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x568f75b9 mpage_writepage -EXPORT_SYMBOL vmlinux 0x56a51c21 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x56a7c94c padata_stop -EXPORT_SYMBOL vmlinux 0x56ba077e netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x56c3388e devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c879f9 config_group_init -EXPORT_SYMBOL vmlinux 0x56f4b68e blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x56fd76e5 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x57013af6 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x5729d781 get_gendisk -EXPORT_SYMBOL vmlinux 0x573732da bdget -EXPORT_SYMBOL vmlinux 0x57405e09 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5767bdb6 from_kgid -EXPORT_SYMBOL vmlinux 0x576bf119 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x5780ae6b mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x57b65d2d ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x57bfc647 __put_page -EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x57d85ca5 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x57fc42fd xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x581cde4e up -EXPORT_SYMBOL vmlinux 0x581f924a dev_get_iflink -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584d76d8 device_add_disk -EXPORT_SYMBOL vmlinux 0x584ebaa8 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x58923b3c ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x589ca004 inet_bind -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f6b6af nf_log_trace -EXPORT_SYMBOL vmlinux 0x58f9dd17 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5907e20d xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x593ec192 sock_no_connect -EXPORT_SYMBOL vmlinux 0x59476779 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x59553322 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x59808e70 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x5994bf4e proc_remove -EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59b0a253 seq_path -EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource -EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d3fd0b security_unix_may_send -EXPORT_SYMBOL vmlinux 0x59d436e5 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x59da6fc9 snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59fedd14 set_posix_acl -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a1e56d4 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0x5a3d648f kset_unregister -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5aa573e7 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x5ad0393d nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x5adddc8a padata_do_serial -EXPORT_SYMBOL vmlinux 0x5ae4cf0d __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x5aec6c91 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq -EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b1e6e41 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x5b24c0c4 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x5b2d3caa default_llseek -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b55f287 rio_query_mport -EXPORT_SYMBOL vmlinux 0x5b62d12e sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x5b7c2857 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x5b7cc447 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x5badbb78 string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5bb1e1d1 mpage_readpages -EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bc46991 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x5bd3b05a of_node_get -EXPORT_SYMBOL vmlinux 0x5be62c8c dma_find_channel -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf986ae serio_interrupt -EXPORT_SYMBOL vmlinux 0x5bfad872 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x5c148611 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c44bd35 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 -EXPORT_SYMBOL vmlinux 0x5c909f24 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c955d21 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x5c9b1e02 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x5cb38c85 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cce6263 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x5cd41122 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x5cd841b4 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x5ce5329d logfc -EXPORT_SYMBOL vmlinux 0x5ce9a942 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfa7853 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x5cfe4d94 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5d062109 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x5d0eeef6 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x5d1442b1 ns_capable_setid -EXPORT_SYMBOL vmlinux 0x5d249d9d hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5d24bb9b do_splice_direct -EXPORT_SYMBOL vmlinux 0x5d32caf4 lookup_one_len -EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d69adc6 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x5d723773 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x5d810f97 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x5d82ddb9 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d85679c mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x5d8b9631 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x5d8c7634 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x5d906d8b sg_miter_start -EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last -EXPORT_SYMBOL vmlinux 0x5dbef39a snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd60d2c dst_destroy -EXPORT_SYMBOL vmlinux 0x5ddfb622 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x5de04d75 scsi_print_command -EXPORT_SYMBOL vmlinux 0x5de08f12 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize -EXPORT_SYMBOL vmlinux 0x5dec620b dev_add_offload -EXPORT_SYMBOL vmlinux 0x5df434f5 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x5e013d32 tcp_child_process -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x5e459f31 param_set_copystring -EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e79133e __bread_gfp -EXPORT_SYMBOL vmlinux 0x5e7d1791 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e8bda47 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x5e9468f6 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e98d4a6 cdev_add -EXPORT_SYMBOL vmlinux 0x5ea8589c kernel_listen -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebd6548 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x5ecf5ab8 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5effbcf2 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x5f05d5d7 elevator_alloc -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f374273 clk_add_alias -EXPORT_SYMBOL vmlinux 0x5f41dd01 iptun_encaps -EXPORT_SYMBOL vmlinux 0x5f468bcf pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x5f49136f __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x5f50ac95 dump_skip -EXPORT_SYMBOL vmlinux 0x5f688b0d pagecache_get_page -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f762379 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x5f7f4527 pci_request_regions -EXPORT_SYMBOL vmlinux 0x5f849a69 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5f9cba0e pps_event -EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fdaf04e scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x5fe81b04 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x5feddea0 vfs_getattr -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ff124cb cdrom_release -EXPORT_SYMBOL vmlinux 0x5ff523f1 inet_frag_queue_insert -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 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6042a8e3 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x60474168 rtnl_notify -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6075edf4 irq_to_desc -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60928243 bio_integrity_trim -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 0x60c6c7c6 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x610e0c64 path_get -EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x613b14cc i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x615469d2 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim -EXPORT_SYMBOL vmlinux 0x6157492c drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6165c326 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x61834205 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61ea13cb xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f24050 skb_dump -EXPORT_SYMBOL vmlinux 0x620a0823 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6220d4b2 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62342fcf kmap_atomic -EXPORT_SYMBOL vmlinux 0x624e70bf __serio_register_driver -EXPORT_SYMBOL vmlinux 0x625cf9f8 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627b883b dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x627d4340 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a11eb3 generic_write_checks -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d5f7c2 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x62efbb89 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0x62f29e4b __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x62fdedcf finish_open -EXPORT_SYMBOL vmlinux 0x630ab221 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x630f2cb8 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63211b6a inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x632975b1 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0x632d3aaa blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x633cb216 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x633e0fe7 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x633f1ba4 bdi_put -EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x63448b79 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x63558c54 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x63650f58 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x636cd40b nvm_register -EXPORT_SYMBOL vmlinux 0x637530c1 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x6375e375 mntput -EXPORT_SYMBOL vmlinux 0x6384bd6c scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x63a3dde7 consume_skb -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63af48b2 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x63c238f6 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c79586 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x63c91698 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x63de13ce param_get_charp -EXPORT_SYMBOL vmlinux 0x63e22d15 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fa0b8a security_sk_clone -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x641152f0 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641346ce blk_rq_init -EXPORT_SYMBOL vmlinux 0x6415cc79 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x64206469 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x642526c0 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x64660538 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648c1ffa wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6495e20e ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64fd9c02 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65168ad7 fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652b15bc km_new_mapping -EXPORT_SYMBOL vmlinux 0x6538b6ff dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x653ed752 may_umount -EXPORT_SYMBOL vmlinux 0x653f467b pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6544a39d mmc_start_request -EXPORT_SYMBOL vmlinux 0x654caa04 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x655537bd nobh_writepage -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x658036c1 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65ae52d6 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x65b20b36 tty_vhangup -EXPORT_SYMBOL vmlinux 0x65cc758c vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65db8a61 devm_memremap -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e8002c jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x65f6487d param_get_ullong -EXPORT_SYMBOL vmlinux 0x65fb909f dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x66099108 __register_binfmt -EXPORT_SYMBOL vmlinux 0x660d3045 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x66226868 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x6623e576 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x662b9b24 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x6661325c __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order -EXPORT_SYMBOL vmlinux 0x66686b78 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx -EXPORT_SYMBOL vmlinux 0x6695627c tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x6698d6e5 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x669ec11c md_write_end -EXPORT_SYMBOL vmlinux 0x66a98a9a get_task_exe_file -EXPORT_SYMBOL vmlinux 0x66b44ff4 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x66bb4145 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x66d1bc4f clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x6716c058 neigh_for_each -EXPORT_SYMBOL vmlinux 0x6720b0e2 has_capability -EXPORT_SYMBOL vmlinux 0x672dcec9 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x673d9617 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67559cad fb_validate_mode -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x677e3680 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6782d34a rename_lock -EXPORT_SYMBOL vmlinux 0x6787d2be icmp6_send -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d93307 prepare_binprm -EXPORT_SYMBOL vmlinux 0x67de89e6 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x6808c968 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x681a07d9 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x68289084 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x68431a67 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x68459e30 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x684faac2 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x686885d6 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x686aa122 seq_release_private -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688ee92f kmap_to_page -EXPORT_SYMBOL vmlinux 0x68949b2d dquot_resume -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68b48338 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x68cd2202 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x68ef1095 simple_rmdir -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x693e28db release_sock -EXPORT_SYMBOL vmlinux 0x693e8add ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x6946dc3c tcp_make_synack -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x695595f8 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x69658ae9 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6974ae05 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x697d3998 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x698b0a4f snd_timer_new -EXPORT_SYMBOL vmlinux 0x698d28d3 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x699a501c __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x699c5e48 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69b733a5 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x69d2685b dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x69d770fc nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69eb5747 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x69eeda88 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x69f18f84 seq_open -EXPORT_SYMBOL vmlinux 0x69f2594e eth_header -EXPORT_SYMBOL vmlinux 0x69f40714 mmc_release_host -EXPORT_SYMBOL vmlinux 0x69f85244 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a06fe13 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x6a0d2094 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x6a22c2dc sk_stop_timer -EXPORT_SYMBOL vmlinux 0x6a2f5c15 fs_parse -EXPORT_SYMBOL vmlinux 0x6a418e80 nf_log_register -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a91ce5d key_invalidate -EXPORT_SYMBOL vmlinux 0x6a942ce2 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x6a9e7b96 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae27ff4 dev_uc_init -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b0e61e3 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b322fbd __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x6b438b7d __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x6b4da7f7 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b5ffc48 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b648409 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd5101e md_write_start -EXPORT_SYMBOL vmlinux 0x6bd97c5d __dquot_transfer -EXPORT_SYMBOL vmlinux 0x6bdb5a6d phy_resume -EXPORT_SYMBOL vmlinux 0x6bfea2ba pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c1fa94a twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c25e629 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x6c403d35 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c698e7f drop_nlink -EXPORT_SYMBOL vmlinux 0x6c6c2f32 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x6c6f2d61 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6c81b3fc hmm_range_fault -EXPORT_SYMBOL vmlinux 0x6c81d80a register_quota_format -EXPORT_SYMBOL vmlinux 0x6c93dabd mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x6c988be8 get_fs_type -EXPORT_SYMBOL vmlinux 0x6ca6f3ff seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdf5d97 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x6ce39c93 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x6ce9bc8d snd_timer_resolution -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d020356 kill_pid -EXPORT_SYMBOL vmlinux 0x6d02855d console_stop -EXPORT_SYMBOL vmlinux 0x6d0a4e74 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x6d149a45 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x6d26031a flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x6d287a18 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d61c92d neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d74c9e5 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x6d8986ab tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6d8c6b2c writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x6db284fb ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x6dc3a2bf __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource -EXPORT_SYMBOL vmlinux 0x6dce721b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6df018a9 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df47633 mdiobus_write -EXPORT_SYMBOL vmlinux 0x6dfb602e scsi_ioctl -EXPORT_SYMBOL vmlinux 0x6e09fb90 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x6e0de585 dquot_enable -EXPORT_SYMBOL vmlinux 0x6e450a27 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e57be5b tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e97e2ad cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x6e9b36b5 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ebf47ed fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6ec567ff ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x6ec8c648 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ed682ee tcf_idr_search -EXPORT_SYMBOL vmlinux 0x6ed89c35 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6ede729c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x6edf6cda vc_resize -EXPORT_SYMBOL vmlinux 0x6ee01ccb security_path_rename -EXPORT_SYMBOL vmlinux 0x6ee2039b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f078ed4 config_item_get -EXPORT_SYMBOL vmlinux 0x6f0bbb7e sk_common_release -EXPORT_SYMBOL vmlinux 0x6f0dade4 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x6f25ed6b blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x6f5137a5 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x6f57d1da register_sound_special -EXPORT_SYMBOL vmlinux 0x6f60c37a generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x6f630276 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x6f78153d __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f91b682 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd2cbd9 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6fdef0e7 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x6fe6873f pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x6fe854af _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x700ced31 d_delete -EXPORT_SYMBOL vmlinux 0x7019bdb7 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x701efbc4 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x7022a165 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x703d47d0 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x704d0e8f __breadahead -EXPORT_SYMBOL vmlinux 0x7063adda msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x707400d0 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x707abf3f of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x70867d6a param_get_string -EXPORT_SYMBOL vmlinux 0x7088f544 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x708fba59 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x7090fe66 init_pseudo -EXPORT_SYMBOL vmlinux 0x70955723 input_match_device_id -EXPORT_SYMBOL vmlinux 0x70ba73e3 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x70be5c2d rproc_shutdown -EXPORT_SYMBOL vmlinux 0x70e08b0e __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x70e158b6 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x70f244d5 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x70f72e94 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x7103451c __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7107346b fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x710f85dd unregister_cdrom -EXPORT_SYMBOL vmlinux 0x711879d7 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7120a527 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x712140f8 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x71262dee pci_dev_driver -EXPORT_SYMBOL vmlinux 0x71280311 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71323fd5 config_item_put -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x7154700b dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717bc051 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x717e6a32 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x71800d23 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x719e6d45 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ae1afc bd_start_claiming -EXPORT_SYMBOL vmlinux 0x71b8e11d set_user_nice -EXPORT_SYMBOL vmlinux 0x71c28b14 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x71c31c60 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d7ea5f tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x71e169f3 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x71f1ae4b tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x7209f382 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x72139120 snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0x721e2f72 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x722bc5fe __brelse -EXPORT_SYMBOL vmlinux 0x7242ea2f bprm_change_interp -EXPORT_SYMBOL vmlinux 0x72480699 netif_device_attach -EXPORT_SYMBOL vmlinux 0x7249949e seq_puts -EXPORT_SYMBOL vmlinux 0x724c0aa0 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7262ce8b __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x728079e2 phy_attach -EXPORT_SYMBOL vmlinux 0x7288e100 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x72951dfa unregister_qdisc -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c47d49 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f9b9e8 put_disk -EXPORT_SYMBOL vmlinux 0x73015c30 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0x730ed83d pci_iomap_range -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x7336edcc skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x734457c2 __nla_put -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x735f33b0 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x7364a3ba __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x73663ea1 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x736a948a nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73a6a4be d_instantiate -EXPORT_SYMBOL vmlinux 0x73aca11c of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x73af587f register_netdevice -EXPORT_SYMBOL vmlinux 0x73b00e57 skb_tx_error -EXPORT_SYMBOL vmlinux 0x73b17df7 __scsi_execute -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e618bb max8998_write_reg -EXPORT_SYMBOL vmlinux 0x74024a1f gro_cells_receive -EXPORT_SYMBOL vmlinux 0x740befbb blk_execute_rq -EXPORT_SYMBOL vmlinux 0x740c1d74 __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7417b211 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x74184544 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x741d2d27 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7436c820 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x743f2a15 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x7442726a ptp_find_pin -EXPORT_SYMBOL vmlinux 0x7450e305 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x7451a9b8 snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x74697d65 vmap -EXPORT_SYMBOL vmlinux 0x7479212d vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x747de8b0 snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x74ae2728 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d03b94 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x74d5e277 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x74d81ea5 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x74dd553c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ef987b amba_driver_register -EXPORT_SYMBOL vmlinux 0x74f438e7 pci_request_irq -EXPORT_SYMBOL vmlinux 0x74f97d6c block_invalidatepage -EXPORT_SYMBOL vmlinux 0x74fa9cc6 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x750c9e55 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x7514a2c7 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0x75243d7e kernel_bind -EXPORT_SYMBOL vmlinux 0x753ef692 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x7544056d md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x754f348a complete_all -EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x756bc761 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7576624c pci_resize_resource -EXPORT_SYMBOL vmlinux 0x7582280d __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x7585231a hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0x75877161 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x75901e3c nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x75ab3033 single_release -EXPORT_SYMBOL vmlinux 0x75afa5d6 __find_get_block -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bf4983 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d9a045 bio_init -EXPORT_SYMBOL vmlinux 0x75df72c2 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x75ee2f5c rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760d83cd snd_device_register -EXPORT_SYMBOL vmlinux 0x7617d71c __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x761ae926 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x7623782e udp_seq_ops -EXPORT_SYMBOL vmlinux 0x763d12be ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76506cc0 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x76521550 kernel_write -EXPORT_SYMBOL vmlinux 0x765df73a pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767943b9 lookup_bdev -EXPORT_SYMBOL vmlinux 0x7684389d xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ad9183 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x76afb057 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76ebc824 pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x76fd9ba9 of_iomap -EXPORT_SYMBOL vmlinux 0x7700f7af ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x770b19d8 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x770bf64d register_gifconf -EXPORT_SYMBOL vmlinux 0x77152c8b eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x7749e762 snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0x776f4fe8 sk_wait_data -EXPORT_SYMBOL vmlinux 0x776f80ad pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x779a3962 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x77a11051 lease_modify -EXPORT_SYMBOL vmlinux 0x77b8cdef dev_get_stats -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d005a6 inc_node_state -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f65ceb pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x77f6c690 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x7804e229 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780a4447 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x78135879 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x78193c92 input_get_keycode -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x7841fce4 vga_put -EXPORT_SYMBOL vmlinux 0x784277dc __neigh_create -EXPORT_SYMBOL vmlinux 0x7860f8ca locks_copy_lock -EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78c7a3df nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x78d19d1d security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e7f0cd tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x78f07192 padata_start -EXPORT_SYMBOL vmlinux 0x78fee9e7 f_setown -EXPORT_SYMBOL vmlinux 0x790bf2f1 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x790ca54a ip_options_compile -EXPORT_SYMBOL vmlinux 0x7917d446 skb_store_bits -EXPORT_SYMBOL vmlinux 0x79213a6e noop_llseek -EXPORT_SYMBOL vmlinux 0x79236400 skb_append -EXPORT_SYMBOL vmlinux 0x792774e5 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x79292b1c mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x792f8324 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x7933010f config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x794f9981 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x79691563 dquot_file_open -EXPORT_SYMBOL vmlinux 0x7969458c snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x79803897 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c374f9 dev_get_flags -EXPORT_SYMBOL vmlinux 0x79d890b8 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x79ef5d7b pci_get_subsys -EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer -EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2797c5 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a4a3d60 pci_enable_device -EXPORT_SYMBOL vmlinux 0x7a504973 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7add3d26 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x7ade9187 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae62f98 generic_fadvise -EXPORT_SYMBOL vmlinux 0x7af4a3c1 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b0fee80 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7b116fe3 audit_log_start -EXPORT_SYMBOL vmlinux 0x7b2634dd blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b44d9d5 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x7b4c4f1d dev_uc_add -EXPORT_SYMBOL vmlinux 0x7b59edca max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b7e806c file_open_root -EXPORT_SYMBOL vmlinux 0x7b954b9a key_move -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba9cd11 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x7baf9c28 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x7bbcdf9c mdio_device_register -EXPORT_SYMBOL vmlinux 0x7bc8642a seq_release -EXPORT_SYMBOL vmlinux 0x7be50fae config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x7bef1dac generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c257318 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x7c26aefc blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5ee392 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7c6e88bf tty_name -EXPORT_SYMBOL vmlinux 0x7c750823 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7c90aaba vfs_rmdir -EXPORT_SYMBOL vmlinux 0x7c9ac9a7 tty_port_open -EXPORT_SYMBOL vmlinux 0x7c9c1d71 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x7cac0042 kthread_stop -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7ccbc43f iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce36fe7 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf4166a netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7cff5221 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d224d38 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7d273dcf fb_set_var -EXPORT_SYMBOL vmlinux 0x7d31a9af mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x7d474d41 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7d4793f1 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d51a68e netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x7d63329a nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x7d67f7bb devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x7d6b1ebe scsi_host_put -EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x7d6d4756 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x7d6f5126 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0x7d7d4861 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x7d8a69b9 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x7d9b9802 kill_bdev -EXPORT_SYMBOL vmlinux 0x7d9ce752 fb_get_mode -EXPORT_SYMBOL vmlinux 0x7daa0659 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x7dabf518 __devm_request_region -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db0d535 generic_fillattr -EXPORT_SYMBOL vmlinux 0x7db4d0bb iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x7dcb382d xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df0616b __scsi_add_device -EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e1290df file_path -EXPORT_SYMBOL vmlinux 0x7e177128 inet_offloads -EXPORT_SYMBOL vmlinux 0x7e207e3f pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e32e7c7 irq_stat -EXPORT_SYMBOL vmlinux 0x7e421ab6 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x7e45ee31 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x7e8a89c2 ihold -EXPORT_SYMBOL vmlinux 0x7e8d5a1c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0x7e8e5b27 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x7ec2b175 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x7ed43c4e dev_add_pack -EXPORT_SYMBOL vmlinux 0x7ed4a2ea phy_register_fixup -EXPORT_SYMBOL vmlinux 0x7ef2ab18 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f13bd2e kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f33580b dget_parent -EXPORT_SYMBOL vmlinux 0x7f39403b netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x7f43ee4b dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x7f47052d pci_pme_capable -EXPORT_SYMBOL vmlinux 0x7f51733f abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x7f58979d flush_dcache_page -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f7929e7 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f809752 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x7f88efd1 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x7f9ae71c inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x7f9f4379 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe826f4 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7fef08b2 generic_update_time -EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x800ac922 find_vma -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x803780b5 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages -EXPORT_SYMBOL vmlinux 0x8039c72c inet6_bind -EXPORT_SYMBOL vmlinux 0x80454a85 hmm_range_unregister -EXPORT_SYMBOL vmlinux 0x8061d641 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x807a0875 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x807ad693 d_exact_alias -EXPORT_SYMBOL vmlinux 0x80952e79 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x8098ab03 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x80bc1e48 bdi_register_va -EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ce71bb vme_register_bridge -EXPORT_SYMBOL vmlinux 0x80cfc3b8 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f0ca34 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x811792d5 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x81280c23 param_set_invbool -EXPORT_SYMBOL vmlinux 0x813b816a iput -EXPORT_SYMBOL vmlinux 0x8153e464 genphy_loopback -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815ed2e0 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x816b01b6 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x8176f565 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81c479e5 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x81c4db85 init_net -EXPORT_SYMBOL vmlinux 0x81c52660 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x81c672be keyring_search -EXPORT_SYMBOL vmlinux 0x81c6912a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x81d4c78e jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dfcd1a snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x82193a97 __krealloc -EXPORT_SYMBOL vmlinux 0x821b84af security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x821f8be8 sock_create_kern -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822582fe security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x822d9337 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x824dc332 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x82500613 param_get_uint -EXPORT_SYMBOL vmlinux 0x82558955 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x8265b302 kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0x82711b1b rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8281b816 generic_perform_write -EXPORT_SYMBOL vmlinux 0x828bb526 param_set_ushort -EXPORT_SYMBOL vmlinux 0x82914c17 iunique -EXPORT_SYMBOL vmlinux 0x829e735e __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x82ab5e28 get_disk_and_module -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x82faeadd ppp_channel_index -EXPORT_SYMBOL vmlinux 0x831efef8 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x83203b7d current_in_userns -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x8329a803 commit_creds -EXPORT_SYMBOL vmlinux 0x8337ab2c sk_net_capable -EXPORT_SYMBOL vmlinux 0x833d7303 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x834d491b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8358db4a tty_port_init -EXPORT_SYMBOL vmlinux 0x8363be2e d_drop -EXPORT_SYMBOL vmlinux 0x8365ca1c pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8377fc0d down_write_killable -EXPORT_SYMBOL vmlinux 0x8389ef1d current_time -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83910402 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x83a8c9aa dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x83b3564f simple_write_end -EXPORT_SYMBOL vmlinux 0x83c0e9d1 snd_ctl_add -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c89d3b __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83d549c2 ip_defrag -EXPORT_SYMBOL vmlinux 0x83da0bc1 pci_clear_master -EXPORT_SYMBOL vmlinux 0x83e72f05 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x83f6c7a1 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x84037de2 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x842fae46 snd_card_register -EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table -EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table -EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84911185 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x849ae39f devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x84a68b2f param_ops_invbool -EXPORT_SYMBOL vmlinux 0x84aeb5d7 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b64420 snd_timer_continue -EXPORT_SYMBOL vmlinux 0x84c8b3f5 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x85205ed7 inet_gro_receive -EXPORT_SYMBOL vmlinux 0x8523a384 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a67943 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cc5a16 imx_dsp_ring_doorbell -EXPORT_SYMBOL vmlinux 0x85d93fc7 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f09301 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x85fadd79 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x8605a59b fb_find_mode -EXPORT_SYMBOL vmlinux 0x8606a112 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x862acce5 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x862f0dd6 bmap -EXPORT_SYMBOL vmlinux 0x86348e33 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x86572a11 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x8659290d tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc -EXPORT_SYMBOL vmlinux 0x866f0a71 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8678f44c xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a4b08c of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x86a8db86 send_sig_info -EXPORT_SYMBOL vmlinux 0x86aff7a8 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x86bf320a dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x86d31685 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x86daa644 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x86e0b937 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec -EXPORT_SYMBOL vmlinux 0x86eb7353 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x86f8f7e8 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x8716f3a3 bdput -EXPORT_SYMBOL vmlinux 0x8719a94d skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x8737a3bd jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x8742e4f8 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x875a0ada netlink_unicast -EXPORT_SYMBOL vmlinux 0x877c36cf truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x877ea7f6 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x878b281e put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x879180cd snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x87a7dd31 __sb_end_write -EXPORT_SYMBOL vmlinux 0x87ca171e tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x87f65558 md_reload_sb -EXPORT_SYMBOL vmlinux 0x87fed2c5 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x8814baca mount_nodev -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x882945f0 inc_nlink -EXPORT_SYMBOL vmlinux 0x88455f0f tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x886a6348 proc_symlink -EXPORT_SYMBOL vmlinux 0x8874d1ab jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x887b7221 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x8880688a dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x889dcb54 phy_attached_info -EXPORT_SYMBOL vmlinux 0x88a1e3ff netif_skb_features -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b1e61a devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x88b414f3 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x88b469f4 omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dcf139 dev_change_flags -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e7df67 tty_throttle -EXPORT_SYMBOL vmlinux 0x88ffbca2 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x890051bf phy_init_eee -EXPORT_SYMBOL vmlinux 0x890de126 omap_vrfb_setup -EXPORT_SYMBOL vmlinux 0x89209952 snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x8927cea6 find_lock_entry -EXPORT_SYMBOL vmlinux 0x892cdb4e __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x893e789b __lookup_constant -EXPORT_SYMBOL vmlinux 0x8940c377 simple_get_link -EXPORT_SYMBOL vmlinux 0x894b8779 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x8952319d page_symlink -EXPORT_SYMBOL vmlinux 0x89671ac6 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x898cd9d9 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x8997e79c snd_ctl_replace -EXPORT_SYMBOL vmlinux 0x89a2e6c4 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89b45294 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x89e4d340 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x89f24025 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x89fa0798 simple_lookup -EXPORT_SYMBOL vmlinux 0x89feddf1 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a3223bc netif_rx_ni -EXPORT_SYMBOL vmlinux 0x8a3784dc __xa_alloc -EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a728af5 d_path -EXPORT_SYMBOL vmlinux 0x8a744c64 phy_connect -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8abe4e84 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ad279d2 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x8aea8fbb inet_gso_segment -EXPORT_SYMBOL vmlinux 0x8afcbb5f __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b186a41 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x8b555235 phy_suspend -EXPORT_SYMBOL vmlinux 0x8b5683bd tty_devnum -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b71bc69 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x8b746310 elv_rb_find -EXPORT_SYMBOL vmlinux 0x8b7a2048 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x8b7d693b blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x8b7e9496 __napi_schedule -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8e11c4 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b938194 __kernel_write -EXPORT_SYMBOL vmlinux 0x8b965c9f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x8b9988fa skb_clone_sk -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba15561 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8ba9f9d2 elv_rb_add -EXPORT_SYMBOL vmlinux 0x8bbcc74c uart_suspend_port -EXPORT_SYMBOL vmlinux 0x8bc59134 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x8bc740da no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x8bc80820 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8c0deb11 dev_uc_del -EXPORT_SYMBOL vmlinux 0x8c2ca278 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x8c415ee5 nla_reserve -EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c5fc997 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x8c74d344 dquot_transfer -EXPORT_SYMBOL vmlinux 0x8c9d507b end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x8cab704a rtnl_unicast -EXPORT_SYMBOL vmlinux 0x8cb18714 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce1c038 omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x8cea167d ip_ct_attach -EXPORT_SYMBOL vmlinux 0x8cfd84e4 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x8d0563c6 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x8d08ab9f set_disk_ro -EXPORT_SYMBOL vmlinux 0x8d0ab985 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x8d459428 km_state_notify -EXPORT_SYMBOL vmlinux 0x8d513d60 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5f53e0 dquot_alloc -EXPORT_SYMBOL vmlinux 0x8d6e3b6b of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7a4cff iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x8d8be08d max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x8d8f42b8 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x8d9255d0 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x8d9bdd1e vlan_for_each -EXPORT_SYMBOL vmlinux 0x8dc71b94 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dea07ce jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x8dea56a5 dcache_readdir -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfa0f6a nla_append -EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e116a88 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x8e45a31d mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x8e651d27 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x8e734880 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x8e7b8408 iget5_locked -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e8ae752 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x8e9fcb54 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x8eb0f0ec proc_set_user -EXPORT_SYMBOL vmlinux 0x8eb81206 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x8ec15172 __break_lease -EXPORT_SYMBOL vmlinux 0x8ec9fec4 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8eef7cfd path_is_under -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0c3c6b of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x8f226263 nf_log_unset -EXPORT_SYMBOL vmlinux 0x8f278e87 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x8f3625fe _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x8f422af5 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f5ea169 md_done_sync -EXPORT_SYMBOL vmlinux 0x8f618adf unregister_console -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f686001 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x8f6d62c1 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x8f8a0eb2 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x8f907a7a register_sysctl -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa7bf67 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x8fa96bfb secpath_set -EXPORT_SYMBOL vmlinux 0x8fbe119e unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd69f18 file_ns_capable -EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x9012162f ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x902a0243 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x902d106b path_has_submounts -EXPORT_SYMBOL vmlinux 0x902e8962 __put_cred -EXPORT_SYMBOL vmlinux 0x904a3416 override_creds -EXPORT_SYMBOL vmlinux 0x905b9e3b uart_match_port -EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x9068f9ea mr_table_alloc -EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x907ac053 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x907bf7cb blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x908a89dc nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x908ea78e csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x90a5c76b phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x90b6c52c napi_get_frags -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90dab662 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x90e80e95 clear_nlink -EXPORT_SYMBOL vmlinux 0x90f17728 mdiobus_read -EXPORT_SYMBOL vmlinux 0x910480fb device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0x9123b483 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x91292003 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x9130262b mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x914a5c81 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x915e97a4 page_mapping -EXPORT_SYMBOL vmlinux 0x91695c85 dev_set_alias -EXPORT_SYMBOL vmlinux 0x917e8eb8 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x9188abb0 ip_frag_next -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91973164 genl_register_family -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b2a327 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c318d7 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x920b71e7 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923956e8 posix_test_lock -EXPORT_SYMBOL vmlinux 0x923a6507 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923ea194 __xa_insert -EXPORT_SYMBOL vmlinux 0x924444b0 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x927a4c8b dev_uc_sync -EXPORT_SYMBOL vmlinux 0x927acb66 elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0x9289d1bb phy_start -EXPORT_SYMBOL vmlinux 0x928ae1a6 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x929545c0 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x92b4ed11 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92d259d4 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x92d8603e tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x92e8af03 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x92ea2b55 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f8b6fc security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930a0b5f blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x934685e8 ns_capable -EXPORT_SYMBOL vmlinux 0x934c421c udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x93637a65 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x93713086 sg_split -EXPORT_SYMBOL vmlinux 0x93758680 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937feacc jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x938dfad7 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x9399c89a ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x939e60f3 genphy_suspend -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free -EXPORT_SYMBOL vmlinux 0x93d2a923 cdrom_open -EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set -EXPORT_SYMBOL vmlinux 0x93e7254f xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x93ea237f nf_log_packet -EXPORT_SYMBOL vmlinux 0x93f1fc6a of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x93fe0210 __frontswap_test -EXPORT_SYMBOL vmlinux 0x93ffc606 sock_wfree -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x94205154 vm_event_states -EXPORT_SYMBOL vmlinux 0x9425caca _raw_write_lock -EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9452ced5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x9459e526 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x945d026d ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x945d6cde param_ops_ullong -EXPORT_SYMBOL vmlinux 0x946847fe __sk_dst_check -EXPORT_SYMBOL vmlinux 0x9480dd94 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x949373c5 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a6c751 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x94a966b2 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x94b514d8 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c3af90 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x94c8c0fd __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x94f01fcc xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x94f171a6 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x94f97d92 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x9505af4a __destroy_inode -EXPORT_SYMBOL vmlinux 0x95174bf6 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x9521eb08 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x952fa535 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954e7fb5 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955cc2a8 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x955d52da netdev_crit -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x95840e51 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x95a64354 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x95c61adb vc_cons -EXPORT_SYMBOL vmlinux 0x95cbcf60 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x95d3d918 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x95d5701a dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95df3da0 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x95e2b2b6 dev_set_group -EXPORT_SYMBOL vmlinux 0x96004295 set_cached_acl -EXPORT_SYMBOL vmlinux 0x96564ccb vm_map_pages -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x9670f4b2 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x9675de03 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x967fffdf kernel_accept -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x969c9cea keyring_alloc -EXPORT_SYMBOL vmlinux 0x96a73790 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c2adaa input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x96cd06da km_report -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d1b574 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x96d5f65f i2c_verify_client -EXPORT_SYMBOL vmlinux 0x96db6f5d pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x96dbf501 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x96e36bef dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x96ecc3d7 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x971bcd59 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x973e7b47 d_obtain_root -EXPORT_SYMBOL vmlinux 0x975d2765 simple_empty -EXPORT_SYMBOL vmlinux 0x9768a48c qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x977b62cd jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x978bdc91 vif_device_init -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x9798437e blkdev_get -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a2a3de tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d26ae7 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x97d6946a iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x97def13e dev_addr_add -EXPORT_SYMBOL vmlinux 0x97f6ed6a vga_get -EXPORT_SYMBOL vmlinux 0x980654e4 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x9820fb48 page_mapped -EXPORT_SYMBOL vmlinux 0x9824b7ab ip_setsockopt -EXPORT_SYMBOL vmlinux 0x9839d629 __seq_open_private -EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x9842f1f2 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x986b8664 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x98776597 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x987f7d8a kunmap_high -EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x988ac97d clk_bulk_get -EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98b380f9 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x98b8f18d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x98ba00a4 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x98c6c053 task_work_add -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98fa1bfd xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x98ff9860 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x9902f134 is_subdir -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x992de001 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x9933b6dd skb_unlink -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x993c9ca5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x993f218b cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x994037a2 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x994593ef tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x996e4643 __check_sticky -EXPORT_SYMBOL vmlinux 0x9971bff4 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x99996dcb dcache_dir_close -EXPORT_SYMBOL vmlinux 0x999b9918 elm_config -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b802e8 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cd25d1 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x99cd5d06 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x99d3ec4b pci_release_regions -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99dad9f8 set_anon_super -EXPORT_SYMBOL vmlinux 0x99dd25b7 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x99e8e3c2 ata_dev_printk -EXPORT_SYMBOL vmlinux 0x9a0768ca bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x9a077528 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a12d07b sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a245883 build_skb -EXPORT_SYMBOL vmlinux 0x9a281c3a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a78a9a3 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a8899fb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 -EXPORT_SYMBOL vmlinux 0x9aabcfe7 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9abff199 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x9ac24a3b dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x9acb8066 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x9ad39aae tcp_mmap -EXPORT_SYMBOL vmlinux 0x9afc4b58 peernet2id -EXPORT_SYMBOL vmlinux 0x9b0016b3 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 -EXPORT_SYMBOL vmlinux 0x9b2401a2 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b44c4e4 do_map_probe -EXPORT_SYMBOL vmlinux 0x9b458f36 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b5b47e3 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x9b6001a7 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b6f3323 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x9b9ad6b7 mdiobus_free -EXPORT_SYMBOL vmlinux 0x9bb52e54 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9bc043e4 is_bad_inode -EXPORT_SYMBOL vmlinux 0x9bc88688 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x9bcce305 param_get_invbool -EXPORT_SYMBOL vmlinux 0x9be2f3d3 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x9c13bd55 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9c15e383 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x9c1a2d57 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x9c1cb56b input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x9c2109b9 datagram_poll -EXPORT_SYMBOL vmlinux 0x9c2d13fd mmc_remove_host -EXPORT_SYMBOL vmlinux 0x9c37249b phy_modify_paged -EXPORT_SYMBOL vmlinux 0x9c3a2e2c ptp_clock_register -EXPORT_SYMBOL vmlinux 0x9c6f332b inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x9c6f5d87 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9c9b5098 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb6c517 of_get_next_child -EXPORT_SYMBOL vmlinux 0x9cc9675d sock_alloc_file -EXPORT_SYMBOL vmlinux 0x9cd34646 _dev_warn -EXPORT_SYMBOL vmlinux 0x9cd9f50b ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x9cdde7e1 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce1b776 set_page_dirty -EXPORT_SYMBOL vmlinux 0x9cf20b7d scsi_block_requests -EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x9d0a9262 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1d446e mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x9d3678ce generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x9d437b07 sock_from_file -EXPORT_SYMBOL vmlinux 0x9d47b826 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x9d513f66 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a225b reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x9da7ce90 finish_no_open -EXPORT_SYMBOL vmlinux 0x9db1f194 of_get_property -EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dc72545 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x9de83fe9 fb_blank -EXPORT_SYMBOL vmlinux 0x9dfe73fd jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x9dffece0 iterate_dir -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e452cb0 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x9e456a3c jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x9e492f92 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5b6a22 dev_open -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e66c807 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e701b7d ip6_frag_next -EXPORT_SYMBOL vmlinux 0x9e8ae0ce neigh_xmit -EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x9e9d3a3c fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ebd519c __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec13110 generic_writepages -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed39a54 down_trylock -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ed9bc9c mmc_put_card -EXPORT_SYMBOL vmlinux 0x9edc1b14 mmc_add_host -EXPORT_SYMBOL vmlinux 0x9edc2ac5 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x9efe8f72 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x9f1daf14 skb_clone -EXPORT_SYMBOL vmlinux 0x9f24a355 sync_filesystem -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f49a3ce unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f6b8631 free_task -EXPORT_SYMBOL vmlinux 0x9f6dd335 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x9f934343 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9dad5c devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x9fa40d83 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fc8fbfe ptp_clock_event -EXPORT_SYMBOL vmlinux 0x9fd865ef unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9fdda667 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x9fde3e29 send_sig -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0180f42 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xa01c65a8 save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0xa0226d96 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xa03b31c3 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04d88ea security_d_instantiate -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa0595cc1 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xa06bfcc9 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0xa06c2167 vfs_get_link -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08dee49 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09a875b register_sound_dsp -EXPORT_SYMBOL vmlinux 0xa09e4bb2 security_path_mknod -EXPORT_SYMBOL vmlinux 0xa0aaa603 snd_timer_close -EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0bcad5e genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xa0d1bd4f input_close_device -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e727dc pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xa0eae566 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa1055f12 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xa105a8c2 pci_get_device -EXPORT_SYMBOL vmlinux 0xa106e9f5 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10a2db8 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xa1106b3f insert_inode_locked -EXPORT_SYMBOL vmlinux 0xa11d6853 netdev_update_features -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa126d6b7 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa16280d4 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xa16d26ed security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xa1785b45 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa17e8e12 vfs_fsync -EXPORT_SYMBOL vmlinux 0xa182b584 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa1a3e82a __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xa1a607f1 bio_advance -EXPORT_SYMBOL vmlinux 0xa1b9bd16 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xa1ba82d2 input_free_device -EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1be2783 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1ed134f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xa1fd49e3 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xa20345b8 of_device_register -EXPORT_SYMBOL vmlinux 0xa204bf0b iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20bc07c inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xa227e748 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xa232d710 vfs_statfs -EXPORT_SYMBOL vmlinux 0xa23e3aa1 bio_free_pages -EXPORT_SYMBOL vmlinux 0xa24491bf ida_free -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28efd5b mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xa291309b rfkill_alloc -EXPORT_SYMBOL vmlinux 0xa292fec4 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xa2acc76e phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xa2c419ea snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xa2c4e2a2 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xa2c8e592 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xa2d91fce get_cached_acl -EXPORT_SYMBOL vmlinux 0xa2dbf403 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa30834f6 from_kprojid -EXPORT_SYMBOL vmlinux 0xa30aa36c __tcf_idr_release -EXPORT_SYMBOL vmlinux 0xa333dd71 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xa3482961 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xa3661257 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xa367854e frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0xa392bf60 netlink_capable -EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a78c47 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xa3abbb1b mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xa3ac158f sg_alloc_table -EXPORT_SYMBOL vmlinux 0xa3b22e5a sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xa3b4814e user_path_at_empty -EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height -EXPORT_SYMBOL vmlinux 0xa3bb1358 __free_pages -EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3d653c7 seq_printf -EXPORT_SYMBOL vmlinux 0xa3fb1f7f netdev_change_features -EXPORT_SYMBOL vmlinux 0xa406a0a7 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xa4106955 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xa4340d15 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xa43d650e __devm_release_region -EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa46edb15 simple_getattr -EXPORT_SYMBOL vmlinux 0xa4712c4c dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xa4740166 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xa487a66f mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4bc5882 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa4c8b38f request_key_tag -EXPORT_SYMBOL vmlinux 0xa4e93609 snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xa4f5ad27 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xa4fd0797 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xa4ff25bb dma_resv_init -EXPORT_SYMBOL vmlinux 0xa50eb4c0 read_code -EXPORT_SYMBOL vmlinux 0xa5173510 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xa51ceaab blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xa52ba0a6 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xa5376d61 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xa53c7f71 __f_setown -EXPORT_SYMBOL vmlinux 0xa53d9d89 of_get_min_tck -EXPORT_SYMBOL vmlinux 0xa5497d8c dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55fe088 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa58298e9 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xa59052f0 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa592b9e5 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa59cc748 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xa5bb88d0 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xa5c3be05 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xa5d4a8aa of_phy_attach -EXPORT_SYMBOL vmlinux 0xa5e0b36b flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xa5ea05cc rproc_put -EXPORT_SYMBOL vmlinux 0xa5f63111 __frontswap_load -EXPORT_SYMBOL vmlinux 0xa5f69813 cdev_init -EXPORT_SYMBOL vmlinux 0xa5f6d921 migrate_page_states -EXPORT_SYMBOL vmlinux 0xa6061ba4 snd_jack_report -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa62bbaf8 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xa62d1902 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xa62f77d9 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xa66744c3 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xa679695d rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6997cf5 vprintk_emit -EXPORT_SYMBOL vmlinux 0xa6a1122f __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6cdba08 cont_write_begin -EXPORT_SYMBOL vmlinux 0xa6d86b8a of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xa6f4f141 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xa702bdcd sock_create -EXPORT_SYMBOL vmlinux 0xa71d2490 param_set_short -EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0xa72a9c42 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xa73dec5b phy_aneg_done -EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa73fe80f tcp_init_sock -EXPORT_SYMBOL vmlinux 0xa74254da ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa761a979 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xa77b51ca hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa784a545 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xa78ec8c3 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa7933b50 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xa7984179 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xa79ec550 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7bcef72 d_tmpfile -EXPORT_SYMBOL vmlinux 0xa7bd7361 __close_fd -EXPORT_SYMBOL vmlinux 0xa7cd0995 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa80cca7b xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xa80f48d1 dev_mc_init -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa8286090 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8643dab iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xa889e584 vfs_readlink -EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8c75b1e __register_nls -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cbeb9e proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xa8cce2bc vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xa8d7cf87 udp6_csum_init -EXPORT_SYMBOL vmlinux 0xa8e2765d phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xa8ea72d2 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xa8eb9218 tso_start -EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt -EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size -EXPORT_SYMBOL vmlinux 0xa8f4939f single_open_size -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xa8fc8efa mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xa907e545 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xa920a57d d_set_d_op -EXPORT_SYMBOL vmlinux 0xa92cf442 tcp_req_err -EXPORT_SYMBOL vmlinux 0xa93b484f pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9679fea kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xa96fdeb8 tty_hangup -EXPORT_SYMBOL vmlinux 0xa9908d2c security_path_unlink -EXPORT_SYMBOL vmlinux 0xa99383fa dentry_path_raw -EXPORT_SYMBOL vmlinux 0xa9a26781 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0xa9b50ad2 tcp_prot -EXPORT_SYMBOL vmlinux 0xa9c10d65 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xa9c8796d __scm_destroy -EXPORT_SYMBOL vmlinux 0xa9ca6b92 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa9cc0271 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xa9d4fcba of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xa9d52e2f seq_pad -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xaa047e74 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xaa2b9405 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xaa407491 sk_free -EXPORT_SYMBOL vmlinux 0xaa61980c tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa9ac0a9 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xaab72cd1 put_tty_driver -EXPORT_SYMBOL vmlinux 0xaac25608 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad5dbc5 kmap -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaafd9237 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaafe0546 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xab2a9882 _dev_emerg -EXPORT_SYMBOL vmlinux 0xab2ab8be zerocopy_sg_from_iter -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 0xab619c2a register_console -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6ebc99 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab80ab58 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xabc3a103 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1f674e bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac547871 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xac5889a1 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xac59eef0 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac692dce mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xac7113d2 phy_stop -EXPORT_SYMBOL vmlinux 0xac84395e ps2_handle_response -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xac9ce491 locks_delete_block -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb31ecf _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xacba791f set_wb_congested -EXPORT_SYMBOL vmlinux 0xacc79b03 input_set_capability -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace81870 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacff5710 input_unregister_device -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad1f06b3 param_set_ulong -EXPORT_SYMBOL vmlinux 0xad3e236e notify_change -EXPORT_SYMBOL vmlinux 0xad53e602 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xad5885b9 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xad6c48b5 ata_link_printk -EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad85604d sk_stream_error -EXPORT_SYMBOL vmlinux 0xad8715ef vm_insert_page -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadbf3d0f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xadcaef65 soft_cursor -EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0xadded61f dump_align -EXPORT_SYMBOL vmlinux 0xade4b5c5 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae093790 _dev_alert -EXPORT_SYMBOL vmlinux 0xae117e26 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xae14059a dma_set_mask -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae603ae5 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xae6b2c8f hmm_range_register -EXPORT_SYMBOL vmlinux 0xae8287c5 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xae874496 input_set_keycode -EXPORT_SYMBOL vmlinux 0xae88dbf2 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xae9849dd __request_region -EXPORT_SYMBOL vmlinux 0xae9a64f6 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xaeaa1921 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xaeb4b847 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xaecd56de ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xaed945f9 key_alloc -EXPORT_SYMBOL vmlinux 0xaee65e72 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaef97f8f tcp_read_sock -EXPORT_SYMBOL vmlinux 0xaf0729b9 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xaf078e33 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xaf14b9bb simple_transaction_release -EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf227556 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xaf3cf189 vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf533948 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xaf53f539 filp_close -EXPORT_SYMBOL vmlinux 0xaf5b77b6 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf6e174e blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xaf7410f4 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xaf74b19f __serio_register_port -EXPORT_SYMBOL vmlinux 0xaf77efc9 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xaf7a0548 of_match_node -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf91e208 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafbb2d30 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb03a7abd vfs_create_mount -EXPORT_SYMBOL vmlinux 0xb0462d78 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0668ec4 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xb06c1509 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xb0738315 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xb07e5072 netif_device_detach -EXPORT_SYMBOL vmlinux 0xb0895faa scmd_printk -EXPORT_SYMBOL vmlinux 0xb08c0d74 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xb08d4fe2 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xb0a7e988 __icmp_send -EXPORT_SYMBOL vmlinux 0xb0b437e3 of_root -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e64fdb scsi_device_resume -EXPORT_SYMBOL vmlinux 0xb0eb7189 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb0f4d492 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb0f70fa9 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot -EXPORT_SYMBOL vmlinux 0xb1089bfe inet_frag_find -EXPORT_SYMBOL vmlinux 0xb110b412 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xb11667a5 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fa6a4 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb186b67a get_super_thawed -EXPORT_SYMBOL vmlinux 0xb1a16c78 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb1a954d1 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xb1ac1d8a param_array_ops -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1b4adfe dquot_disable -EXPORT_SYMBOL vmlinux 0xb1c1a809 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c69908 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xb1c97f8f netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xb1ce0001 sock_init_data -EXPORT_SYMBOL vmlinux 0xb1d8a968 md_error -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1f00812 inet_sendpage -EXPORT_SYMBOL vmlinux 0xb2065120 pci_disable_device -EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0xb21925ec inode_nohighmem -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23697ac noop_fsync -EXPORT_SYMBOL vmlinux 0xb236a2af vfs_symlink -EXPORT_SYMBOL vmlinux 0xb2404865 dst_dev_put -EXPORT_SYMBOL vmlinux 0xb2435961 filemap_fault -EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb24a7fad ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xb264b9fd dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xb26fce1c dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb2894d28 kobject_init -EXPORT_SYMBOL vmlinux 0xb291eaf7 release_pages -EXPORT_SYMBOL vmlinux 0xb296efdc bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xb2982f00 security_sb_remount -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2d0053e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e316f3 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb30718a2 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31589f8 sock_gettstamp -EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb32a9930 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xb33021f2 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0xb3302fde always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb33c8552 write_one_page -EXPORT_SYMBOL vmlinux 0xb34dc687 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xb351e8a7 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xb3667805 dqstats -EXPORT_SYMBOL vmlinux 0xb36735b7 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq -EXPORT_SYMBOL vmlinux 0xb3680329 request_key_rcu -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36fceea ilookup -EXPORT_SYMBOL vmlinux 0xb38f6b58 udp_ioctl -EXPORT_SYMBOL vmlinux 0xb396bce7 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xb39d9899 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xb3abd31a devfreq_add_device -EXPORT_SYMBOL vmlinux 0xb3b09a82 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e3c292 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb3eb5745 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xb3ed6ae0 bdi_register -EXPORT_SYMBOL vmlinux 0xb3f369b4 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fde910 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xb407c549 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb40bef0b mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42fa4ac sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb462c6ad input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49085d3 snd_timer_global_new -EXPORT_SYMBOL vmlinux 0xb49ebe03 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4d5c293 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb4dfb3bf fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xb4e5a717 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f924b1 pci_set_master -EXPORT_SYMBOL vmlinux 0xb4f99089 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xb501cbbb pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xb519769f tty_register_device -EXPORT_SYMBOL vmlinux 0xb51e5dbf inet_protos -EXPORT_SYMBOL vmlinux 0xb550af7c ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xb558ea1d of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xb56188cb eth_change_mtu -EXPORT_SYMBOL vmlinux 0xb561ac5b wait_for_completion -EXPORT_SYMBOL vmlinux 0xb57153fc nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0xb571e44e generic_start_io_acct -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58bf5f7 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ae1cf1 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb5c1f08a set_security_override -EXPORT_SYMBOL vmlinux 0xb5e1e81e snd_card_file_add -EXPORT_SYMBOL vmlinux 0xb60bc6dc snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0xb6197855 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb62f451c _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xb631c67b mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0xb6387606 snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xb638eb6a netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xb6428835 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb6569b71 inet_select_addr -EXPORT_SYMBOL vmlinux 0xb65ad953 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67dd0d0 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a454b3 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6adb6e3 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6c43d35 lock_rename -EXPORT_SYMBOL vmlinux 0xb6d00672 arp_create -EXPORT_SYMBOL vmlinux 0xb70480e9 tcf_em_register -EXPORT_SYMBOL vmlinux 0xb7238e2a ptp_clock_index -EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb78ff937 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xb7a8473f kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d97b37 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xb7efbd97 amba_release_regions -EXPORT_SYMBOL vmlinux 0xb7fb843c dup_iter -EXPORT_SYMBOL vmlinux 0xb8004ac8 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xb82f3a09 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xb84fa9f7 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0xb871d68a vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xb88a4801 dev_activate -EXPORT_SYMBOL vmlinux 0xb895bd9a clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b393a7 follow_down -EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xb8d37468 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xb8d67f03 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb8e596fb pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb9042a1d pps_unregister_source -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9226b80 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xb94321b5 dst_release -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb946968e __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xb9546b14 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb96149af pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb9651c0a dma_supported -EXPORT_SYMBOL vmlinux 0xb9a21d8e gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb9a31d0e of_device_is_available -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b71cae snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0xb9ca6ab1 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xb9df9215 get_task_cred -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f9092a pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba00f9f0 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xba163c4f pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba5c48fc phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xba6bd125 fs_lookup_param -EXPORT_SYMBOL vmlinux 0xba6e3a5f neigh_table_clear -EXPORT_SYMBOL vmlinux 0xba6ec9c9 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xba9e10bf rt_dst_clone -EXPORT_SYMBOL vmlinux 0xbaa7c8c5 krealloc -EXPORT_SYMBOL vmlinux 0xbaab73ca i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xbaae6ce4 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xbaf434c2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xbb008c17 sync_blockdev -EXPORT_SYMBOL vmlinux 0xbb047f1f unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0b9965 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xbb103ace simple_rename -EXPORT_SYMBOL vmlinux 0xbb13ddab __bforget -EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2bd773 pci_free_irq -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0xbb4a80aa dev_close -EXPORT_SYMBOL vmlinux 0xbb52e76a dev_set_mtu -EXPORT_SYMBOL vmlinux 0xbb57b53d get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xbb5f4232 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xbb63df99 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb849fb0 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xbbb24d2f skb_put -EXPORT_SYMBOL vmlinux 0xbbc3abd9 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xbbc87e5f snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0xbbcff9a4 check_zeroed_user -EXPORT_SYMBOL vmlinux 0xbbd293cf generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xbbff9f9a flush_signals -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc118f93 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xbc380306 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc3f02e5 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xbc41f618 amba_find_device -EXPORT_SYMBOL vmlinux 0xbc49a6be simple_link -EXPORT_SYMBOL vmlinux 0xbc6347c7 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xbc760631 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xbc81ad60 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xbc8c8b46 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xbc8ffae6 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xbc970a44 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xbc98ffd0 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb3a85f inet6_add_offload -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcd43d89 setattr_copy -EXPORT_SYMBOL vmlinux 0xbcdb0788 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xbd02b7a6 fc_mount -EXPORT_SYMBOL vmlinux 0xbd04919b xfrm_state_update -EXPORT_SYMBOL vmlinux 0xbd1443a0 write_cache_pages -EXPORT_SYMBOL vmlinux 0xbd161ff9 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xbd17436b dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xbd21a8b6 put_cmsg -EXPORT_SYMBOL vmlinux 0xbd293dec scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xbd6953ae phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xbd790df9 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd8555f8 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xbd86dee0 con_is_visible -EXPORT_SYMBOL vmlinux 0xbd8d6472 genlmsg_put -EXPORT_SYMBOL vmlinux 0xbd95713e configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xbda2aa00 devm_iounmap -EXPORT_SYMBOL vmlinux 0xbdbbf69a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xbdc2ff50 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xbdcc397b dump_emit -EXPORT_SYMBOL vmlinux 0xbdd01b4d tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xbdd88c12 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xbdf31b28 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xbdf839d7 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe124ed8 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xbe415bd6 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe57f9d4 put_user_pages -EXPORT_SYMBOL vmlinux 0xbe58206e vm_zone_stat -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe88e971 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xbe8a00f8 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xbe8eb7fa vfs_fadvise -EXPORT_SYMBOL vmlinux 0xbea160f2 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xbea371a8 pci_find_resource -EXPORT_SYMBOL vmlinux 0xbeaa0371 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xbeb6884c sk_reset_timer -EXPORT_SYMBOL vmlinux 0xbeb70f92 pci_select_bars -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbee714e1 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbee9df78 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xbeeb3d93 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xbeec55f8 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf07c10c processor -EXPORT_SYMBOL vmlinux 0xbf0c6a59 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xbf2ca524 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xbf30f2d8 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -EXPORT_SYMBOL vmlinux 0xbf5fb769 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xbf616697 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xbf688379 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xbf74fc82 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf7c1995 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xbf7ee361 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xbf87e9c0 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xbf9affe6 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfbb7206 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfcd4d5b xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff93d70 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xbff9440d inet6_protos -EXPORT_SYMBOL vmlinux 0xc007d4fd alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc056fb16 dm_register_target -EXPORT_SYMBOL vmlinux 0xc05cd84a vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xc0662d04 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0807428 kill_block_super -EXPORT_SYMBOL vmlinux 0xc0812fa4 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0cc7c22 get_user_pages -EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0f2aed7 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xc0f834be bio_uninit -EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xc0fcc32a md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc104368b wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xc108e2b7 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xc119cfac input_unregister_handle -EXPORT_SYMBOL vmlinux 0xc1264c04 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xc13af6dc dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xc13c8314 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xc13fcfa1 user_path_create -EXPORT_SYMBOL vmlinux 0xc14e2ae5 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xc14e688a d_make_root -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15311b5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xc1575214 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen -EXPORT_SYMBOL vmlinux 0xc161611b simple_write_begin -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17692b8 of_get_parent -EXPORT_SYMBOL vmlinux 0xc17ed588 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc18cc588 snd_unregister_device -EXPORT_SYMBOL vmlinux 0xc1a6a89f tty_port_close_start -EXPORT_SYMBOL vmlinux 0xc1c2e557 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xc1d1f1be mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dd90b4 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1faae81 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0xc21f2f0d jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xc2307c93 km_policy_notify -EXPORT_SYMBOL vmlinux 0xc23bce15 init_task -EXPORT_SYMBOL vmlinux 0xc2572bc8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xc26249c2 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc268fbbf eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xc26ca4ab setattr_prepare -EXPORT_SYMBOL vmlinux 0xc271c3be mutex_lock -EXPORT_SYMBOL vmlinux 0xc279969a omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xc290eb2e kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xc297925d sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return -EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0xc2dab9aa config_group_find_item -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2eac6ba mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc3025d8b vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc30a514d rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xc322a28f snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0xc3255910 phy_device_create -EXPORT_SYMBOL vmlinux 0xc32bf038 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33f4958 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xc3402617 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc35bdcb9 dev_addr_init -EXPORT_SYMBOL vmlinux 0xc36f273d __skb_ext_del -EXPORT_SYMBOL vmlinux 0xc37c2011 snd_timer_start -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc385fc62 dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38ea8db tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0xc399734b submit_bio -EXPORT_SYMBOL vmlinux 0xc39ae5c5 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xc3a4d1ff vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xc3ad5091 seq_putc -EXPORT_SYMBOL vmlinux 0xc3c0adc0 skb_split -EXPORT_SYMBOL vmlinux 0xc3db9eaa vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xc40bd328 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xc41b77f9 sget -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4220d7a inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size -EXPORT_SYMBOL vmlinux 0xc42c23a5 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xc43dbc67 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xc43f741f blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xc450fbdb scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xc45adf4f input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init -EXPORT_SYMBOL vmlinux 0xc46b37b3 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xc46d4eaa dev_trans_start -EXPORT_SYMBOL vmlinux 0xc47035fb sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xc4772008 dquot_drop -EXPORT_SYMBOL vmlinux 0xc4776a7f __netif_schedule -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4810c91 mmc_get_card -EXPORT_SYMBOL vmlinux 0xc48c7d27 dst_init -EXPORT_SYMBOL vmlinux 0xc49c4819 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc4a2c75c devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xc4c6fe4d snd_pcm_new -EXPORT_SYMBOL vmlinux 0xc4d5f014 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc4e7eadb simple_statfs -EXPORT_SYMBOL vmlinux 0xc4ea7725 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xc4f2b975 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xc5003ce7 i2c_use_client -EXPORT_SYMBOL vmlinux 0xc50581e0 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xc51dd240 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xc5215c69 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc5300e1a d_rehash -EXPORT_SYMBOL vmlinux 0xc5304ec4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xc5348b49 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xc545499a con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xc560076c phy_write_paged -EXPORT_SYMBOL vmlinux 0xc567a851 rproc_del -EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59d4e7c clear_inode -EXPORT_SYMBOL vmlinux 0xc59e4854 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc5a9c591 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xc5bfe81b kthread_blkcg -EXPORT_SYMBOL vmlinux 0xc5ca7ca2 genl_notify -EXPORT_SYMBOL vmlinux 0xc5e09bac snd_jack_new -EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0xc5f214be pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6205093 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xc62a8765 contig_page_data -EXPORT_SYMBOL vmlinux 0xc62c4df4 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63726d7 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xc64329bb netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc6500ece registered_fb -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc65e5fbb tcf_classify -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6758a91 ps2_drain -EXPORT_SYMBOL vmlinux 0xc68765ed scsi_target_resume -EXPORT_SYMBOL vmlinux 0xc6a0a6eb get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0xc6bdcde1 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d85e66 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xc6ed22ae param_set_bool -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6feb673 snd_card_free -EXPORT_SYMBOL vmlinux 0xc706a771 would_dump -EXPORT_SYMBOL vmlinux 0xc70c3afc tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xc70cad4c i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xc70f2a6b __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc7205953 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xc7207c9c phy_device_remove -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72220bf kill_anon_super -EXPORT_SYMBOL vmlinux 0xc73635a5 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xc736376b skb_ext_add -EXPORT_SYMBOL vmlinux 0xc73c26a5 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xc7669521 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xc77219a5 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xc77377bc dquot_destroy -EXPORT_SYMBOL vmlinux 0xc77acaab mmc_erase -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7901a81 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xc799c0fc dev_addr_del -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b973ee security_binder_transaction -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c8a0b1 d_add_ci -EXPORT_SYMBOL vmlinux 0xc7cc43ea unregister_netdev -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc82a19c4 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xc82d801e migrate_page -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc8482b7d pci_match_id -EXPORT_SYMBOL vmlinux 0xc848758b mark_info_dirty -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85d73c0 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87eb8c9 sock_no_getname -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc886ec35 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xc88bf03b kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xc88dfdbd sget_fc -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8c1bc90 kern_unmount -EXPORT_SYMBOL vmlinux 0xc8cdae46 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xc90ce08a mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xc92b3cbb xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xc932488a user_revoke -EXPORT_SYMBOL vmlinux 0xc93c23e4 drop_super -EXPORT_SYMBOL vmlinux 0xc94b5e78 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xc94d20ed rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource -EXPORT_SYMBOL vmlinux 0xc95f2910 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96e6a94 km_policy_expired -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc994c2fd __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99f2ffb blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xc9c43c66 sock_no_bind -EXPORT_SYMBOL vmlinux 0xc9dd80ee devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e43051 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xc9e689de discard_new_inode -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca26f276 ilookup5 -EXPORT_SYMBOL vmlinux 0xca34c1c3 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5de79c filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xca656a2f sock_efree -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca6a23d9 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xca71c323 skb_copy_header -EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa9e00f genphy_update_link -EXPORT_SYMBOL vmlinux 0xcaca6824 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xcacd5c47 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xcad2bec8 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xcae8b638 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xcaedf70c __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xcaef8286 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0704ea sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3c90fb netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xcb3ce334 vfs_create -EXPORT_SYMBOL vmlinux 0xcb4326e0 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xcb4a7be9 vme_master_request -EXPORT_SYMBOL vmlinux 0xcb5cd1fc bio_put -EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcb90921c tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbbb036f dev_mc_add -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe7e943 inet_put_port -EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcbfea792 vme_lm_request -EXPORT_SYMBOL vmlinux 0xcc1e195e flush_old_exec -EXPORT_SYMBOL vmlinux 0xcc1eb500 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0xcc32f599 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc54c929 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5f6edb param_ops_charp -EXPORT_SYMBOL vmlinux 0xcc677ae8 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xcc6f95ca __skb_pad -EXPORT_SYMBOL vmlinux 0xcc798516 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xcc7f0c4e dev_printk -EXPORT_SYMBOL vmlinux 0xcc8084b3 seq_file_path -EXPORT_SYMBOL vmlinux 0xcc81ca06 igrab -EXPORT_SYMBOL vmlinux 0xcc9f8bca scsi_add_device -EXPORT_SYMBOL vmlinux 0xccae7e89 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xccb7b9c2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc42acc of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xccc5c0af ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xcceeadd6 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xccf3674d d_find_alias -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcd0408b5 proto_unregister -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd158bce snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xcd1d2136 nand_get_set_features_notsupp -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd293e2e dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd443345 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd66e6dc fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xcd76fdb5 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xcd7dbbe8 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xcdadbd6e d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdce2fc3 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xcdd795fc __sg_free_table -EXPORT_SYMBOL vmlinux 0xcde1e42d fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce042a14 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xce214eb3 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xce26f9fe snd_device_new -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce3ea03d blk_queue_split -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce517449 irq_set_chip -EXPORT_SYMBOL vmlinux 0xce558ce2 import_single_range -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5c199b __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xce714532 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce8f1f1a set_binfmt -EXPORT_SYMBOL vmlinux 0xcea0e1de blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceafa4ce blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xcec5beb2 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xcee11f6d d_prune_aliases -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xceed2c94 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xcef485b9 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf060804 dns_query -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf2f8869 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xcf3fac84 cpumask_next -EXPORT_SYMBOL vmlinux 0xcf7847c2 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xcf8a9c02 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xcf945518 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa5df97 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xcfa9947d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page -EXPORT_SYMBOL vmlinux 0xcfdf3335 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xd0048ae3 netif_napi_add -EXPORT_SYMBOL vmlinux 0xd017b578 kobject_get -EXPORT_SYMBOL vmlinux 0xd02b443b pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xd032a344 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xd052b8f1 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xd0534713 dqput -EXPORT_SYMBOL vmlinux 0xd0537b95 snd_timer_stop -EXPORT_SYMBOL vmlinux 0xd05c5d55 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06d2c95 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xd0860d60 component_match_add_release -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0b6e1c9 netdev_alert -EXPORT_SYMBOL vmlinux 0xd0cba595 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xd0dc17ed __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xd0dcb64b snd_timer_global_free -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0f94080 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xd0fccb17 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xd1164a77 param_set_int -EXPORT_SYMBOL vmlinux 0xd124f9d5 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13a24d4 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xd141815a alloc_fcdev -EXPORT_SYMBOL vmlinux 0xd17412bb nvm_end_io -EXPORT_SYMBOL vmlinux 0xd180b06d inet_gro_complete -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd184b3bd address_space_init_once -EXPORT_SYMBOL vmlinux 0xd1884059 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xd18af826 snd_device_free -EXPORT_SYMBOL vmlinux 0xd1954a6c dec_node_page_state -EXPORT_SYMBOL vmlinux 0xd1a60b25 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0xd1c20589 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xd1c597cf netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd2055418 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xd20658ad input_set_timestamp -EXPORT_SYMBOL vmlinux 0xd20e26ea d_alloc -EXPORT_SYMBOL vmlinux 0xd21126d4 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xd2300b88 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xd2316358 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xd23458df dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xd23961a0 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xd2485acd try_to_release_page -EXPORT_SYMBOL vmlinux 0xd24dd406 udp_pre_connect -EXPORT_SYMBOL vmlinux 0xd25c5c92 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2605444 load_nls_default -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27c447f register_key_type -EXPORT_SYMBOL vmlinux 0xd290adea mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd29a3332 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xd2ac4500 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xd2b2bb66 backlight_force_update -EXPORT_SYMBOL vmlinux 0xd2b8e2b1 vfs_unlink -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2df0f0c inet_sendmsg -EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0xd2fee2b8 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xd3198585 find_inode_nowait -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd320a8de textsearch_register -EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd33102ab pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xd3364bef deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xd33651be blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xd339bf71 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xd33c5519 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xd3469900 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xd350a693 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35c9c4b uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string -EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd3759547 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xd395233d phy_print_status -EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3a77d2d devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xd3ac44f3 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xd3b4db2b lock_page_memcg -EXPORT_SYMBOL vmlinux 0xd3bda030 poll_initwait -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3eecaff xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4217ba9 page_readlink -EXPORT_SYMBOL vmlinux 0xd42c08dd blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xd4329643 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4abe22d devm_request_resource -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d19e58 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xd4ddad53 udp_set_csum -EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xd4edc02d dqget -EXPORT_SYMBOL vmlinux 0xd4f4e478 abort_creds -EXPORT_SYMBOL vmlinux 0xd4fef1e7 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5467a07 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xd54c0772 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xd5739fb3 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd5825c83 neigh_update -EXPORT_SYMBOL vmlinux 0xd58cc2f1 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bdbb2e __nlmsg_put -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd600c2ec pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd62303ca inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd651b120 snd_component_add -EXPORT_SYMBOL vmlinux 0xd6527b00 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd667a0b4 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xd673e5cb tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd6944dd9 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xd6a1906e param_set_charp -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6ace265 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xd6af2b01 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xd6ba24ff pagecache_write_end -EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6de4818 register_cdrom -EXPORT_SYMBOL vmlinux 0xd6e4d963 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7528b76 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xd7745c44 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0xd7838fdd sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd7903a90 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7b2e035 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0xd7b64fe2 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xd7c02b60 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e19063 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7f338dd of_dev_put -EXPORT_SYMBOL vmlinux 0xd7fbc50f blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xd83dc5e6 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd847ba23 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd860755b __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xd86a5eeb mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xd86eb712 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0xd8a16159 __invalidate_device -EXPORT_SYMBOL vmlinux 0xd8a94835 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8d97ee1 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xd8da9545 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd8e76b76 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd92674c8 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xd9441827 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0xd954201a rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd95d17af mdio_device_remove -EXPORT_SYMBOL vmlinux 0xd972ab0d in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xd97c5eb7 serio_open -EXPORT_SYMBOL vmlinux 0xd983c9a5 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9879f1f msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xd98e1590 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xd9914b0a migrate_page_copy -EXPORT_SYMBOL vmlinux 0xd9cbe1d0 snd_card_new -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d40d4d netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9eae255 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xd9eb0957 __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0xda054888 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda487908 bdgrab -EXPORT_SYMBOL vmlinux 0xda4a52eb tcp_conn_request -EXPORT_SYMBOL vmlinux 0xda577481 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda757c9d skb_copy_bits -EXPORT_SYMBOL vmlinux 0xda8483fe get_acl -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda961e06 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xdac33042 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae6f10a __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xdaf41d85 netdev_printk -EXPORT_SYMBOL vmlinux 0xdaf782d7 blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0xdaf869ae rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xdafa911c make_kgid -EXPORT_SYMBOL vmlinux 0xdb03a2ab on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xdb20b98c blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xdb39c2cb kobject_set_name -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb429bf2 bd_set_size -EXPORT_SYMBOL vmlinux 0xdb4e7edf pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0xdb58436f fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0xdb65353c pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xdb65428a phy_write_mmd -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a5fce mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb9ca3c5 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xdb9ddbf5 skb_find_text -EXPORT_SYMBOL vmlinux 0xdba2da59 kdb_current_task -EXPORT_SYMBOL vmlinux 0xdbaae4ad cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xdbc91d0b watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xdbc99d9e _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0xdbd0d717 do_SAK -EXPORT_SYMBOL vmlinux 0xdbd14533 pskb_extract -EXPORT_SYMBOL vmlinux 0xdbd1bca2 vga_tryget -EXPORT_SYMBOL vmlinux 0xdbd6a146 mtd_concat_create -EXPORT_SYMBOL vmlinux 0xdc0f61b8 dm_get_device -EXPORT_SYMBOL vmlinux 0xdc11666b blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1c9f81 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xdc26d0b6 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xdc29fe15 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4f2329 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5a61de md_register_thread -EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xdc77d170 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xdc7bf139 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xdc831cdb proc_set_size -EXPORT_SYMBOL vmlinux 0xdca2ad4a reuseport_alloc -EXPORT_SYMBOL vmlinux 0xdcb05469 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xdcc3f23b tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xdcda44f2 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xdcf40bb3 write_inode_now -EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdd015629 arm_dma_ops -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd348864 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd4ffa9b mutex_trylock -EXPORT_SYMBOL vmlinux 0xdd50bf06 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xdd53730a call_fib_notifier -EXPORT_SYMBOL vmlinux 0xdd77a1b2 load_nls -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd7f214f xfrm_register_type -EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddad2718 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xddad29e9 update_region -EXPORT_SYMBOL vmlinux 0xddc2b7ea get_unmapped_area -EXPORT_SYMBOL vmlinux 0xddda358b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xdde6cd9b __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xddf2439a fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xde40e34a devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get -EXPORT_SYMBOL vmlinux 0xde61e38a sock_no_accept -EXPORT_SYMBOL vmlinux 0xde6b0122 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xde6e80d2 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xde7df502 nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0xde9abb6f napi_consume_skb -EXPORT_SYMBOL vmlinux 0xdea4ae72 input_event -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec5c83d __getblk_gfp -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded290fb try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdedbe2f3 ps2_init -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf25ba3b of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf41cadc arp_tbl -EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf654ab7 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf94aeb1 kthread_bind -EXPORT_SYMBOL vmlinux 0xdf95672f pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xdfb804eb cfb_fillrect -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfd932ee md_handle_request -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdff9c5f3 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffc8616 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xe01cbfab register_shrinker -EXPORT_SYMBOL vmlinux 0xe01d50d5 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xe028a6ca atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xe065ce29 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next -EXPORT_SYMBOL vmlinux 0xe075af3d tcp_sendpage -EXPORT_SYMBOL vmlinux 0xe07664a6 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe08527d4 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe09ac50c uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c4375f tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xe0d93aa1 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xe0f18adc md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xe0f65c29 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11539ef put_disk_and_module -EXPORT_SYMBOL vmlinux 0xe115a78e freeze_bdev -EXPORT_SYMBOL vmlinux 0xe11f3e13 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe126e1a5 tty_register_driver -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe13ae75b irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe157eaf1 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xe1962506 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xe1973cdc __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a5b84e devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1d86738 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xe1d8d69d tcf_idr_create -EXPORT_SYMBOL vmlinux 0xe1da295f dev_deactivate -EXPORT_SYMBOL vmlinux 0xe1dba507 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe207cf5c dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xe20c5762 vme_bus_num -EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe23c6694 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe2689e99 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xe274833b block_write_end -EXPORT_SYMBOL vmlinux 0xe28e4207 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xe29782dc netdev_warn -EXPORT_SYMBOL vmlinux 0xe2a3cdb9 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xe2ac51be unregister_key_type -EXPORT_SYMBOL vmlinux 0xe2b3af2d param_ops_string -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f1b16b put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xe2f9d4a7 pci_bus_type -EXPORT_SYMBOL vmlinux 0xe2fafb10 simple_fill_super -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe30e1708 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33b786f __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xe346f67a __mutex_init -EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe34dc9b3 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe3555bcc phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xe3591c0c snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0xe360e9c4 fasync_helper -EXPORT_SYMBOL vmlinux 0xe3662286 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe380a54c capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xe399e661 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3ab5177 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xe3ac6553 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3e108a4 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f6416f nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe40994b6 simple_map_init -EXPORT_SYMBOL vmlinux 0xe40a0b79 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe42a4d1a register_filesystem -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe455b95a uart_register_driver -EXPORT_SYMBOL vmlinux 0xe455d804 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xe4568565 unlock_buffer -EXPORT_SYMBOL vmlinux 0xe45a99b8 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe4702b3a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0xe477fc9b memremap -EXPORT_SYMBOL vmlinux 0xe478fee5 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xe47bdd10 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xe47fecd9 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xe4977ed2 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xe4a9cde4 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4d667dc generic_make_request -EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one -EXPORT_SYMBOL vmlinux 0xe4fa6988 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xe5056c2b vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xe5061c79 xfrm_input -EXPORT_SYMBOL vmlinux 0xe518f053 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe526f5a9 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xe54886ff phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xe54b347d i2c_clients_command -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5977479 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xe5a47ede generic_permission -EXPORT_SYMBOL vmlinux 0xe5b24996 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xe5b7beed devm_ioremap -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c0863d nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xe5c3c93f udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d83add i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xe5f1bdeb input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61529fe read_cache_page -EXPORT_SYMBOL vmlinux 0xe6203f5a xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe6231ab5 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xe624af6c generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xe63fe29b udp_disconnect -EXPORT_SYMBOL vmlinux 0xe68f3b6e tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe69ab9ef ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xe6c12171 complete -EXPORT_SYMBOL vmlinux 0xe6cabe5c ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xe6d4d457 nobh_write_end -EXPORT_SYMBOL vmlinux 0xe6db5977 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xe6f21812 rproc_add -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe72356da netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xe72c27d2 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe74de525 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xe7791081 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xe77aa6bf netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xe78e61d6 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xe7907d80 neigh_table_init -EXPORT_SYMBOL vmlinux 0xe7963b0a netlink_ack -EXPORT_SYMBOL vmlinux 0xe7a34985 d_invalidate -EXPORT_SYMBOL vmlinux 0xe7a8ef0f key_unlink -EXPORT_SYMBOL vmlinux 0xe7d340ca vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xe7d35231 kset_register -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dee08b __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0xe7f01c89 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xe7f5f0f1 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xe7fe746b xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xe806c9b2 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xe8300d6b end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xe834fc5e vme_irq_request -EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xe845dc16 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xe847e59d tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xe84f74ec mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xe86ad1be devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xe87452c0 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xe87a2fe9 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xe87afbcc cqhci_init -EXPORT_SYMBOL vmlinux 0xe894b113 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xe8a4df21 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision -EXPORT_SYMBOL vmlinux 0xe8c37419 fput -EXPORT_SYMBOL vmlinux 0xe8cbb7ca cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8cd6b62 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0xe8d018f7 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xe8d02fbf d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xe8e5595e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xe8ff7614 get_vm_area -EXPORT_SYMBOL vmlinux 0xe904bd99 amba_request_regions -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe93d3cb5 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0xe94d163c gro_cells_init -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96712b4 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xe97ab060 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap -EXPORT_SYMBOL vmlinux 0xe980a189 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe9837c16 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0xe9b31cd5 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xe9bd8e44 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe9d8d09b ppp_dev_name -EXPORT_SYMBOL vmlinux 0xe9dd07ac xattr_full_name -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9edb578 try_module_get -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fd8efc dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xea079832 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xea147114 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea439841 scsi_device_get -EXPORT_SYMBOL vmlinux 0xea5b1577 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea73379b proc_mkdir -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7f9bf5 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea89fad2 should_remove_suid -EXPORT_SYMBOL vmlinux 0xea98c213 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xeaa80a85 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xeaadf59c param_get_short -EXPORT_SYMBOL vmlinux 0xeab4d629 scsi_init_io -EXPORT_SYMBOL vmlinux 0xeab558b5 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xeac41a73 single_open -EXPORT_SYMBOL vmlinux 0xead48089 vme_slave_request -EXPORT_SYMBOL vmlinux 0xeae7e1bd param_get_long -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb0b9bf9 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xeb147bd0 pci_request_region -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb1c42bf __ip_select_ident -EXPORT_SYMBOL vmlinux 0xeb275605 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xeb362ee4 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44bdd6 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xeb44ca72 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb66a653 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xeb6f0875 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xeba5382a reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xeba6ae42 free_buffer_head -EXPORT_SYMBOL vmlinux 0xebbe7fcc iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xebbf52da read_dev_sector -EXPORT_SYMBOL vmlinux 0xebd001f9 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xebd4869f neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xebeab14c d_splice_alias -EXPORT_SYMBOL vmlinux 0xebeefe62 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xebf69f16 bio_endio -EXPORT_SYMBOL vmlinux 0xebf93c84 ether_setup -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec0eaf51 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xec2cfd87 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec3f2cc2 page_get_link -EXPORT_SYMBOL vmlinux 0xec49dcba bdev_read_only -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec63058b follow_down_one -EXPORT_SYMBOL vmlinux 0xec67b2a8 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xec7c3318 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xec7ce2fc tty_unlock -EXPORT_SYMBOL vmlinux 0xec8b62ca sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xec8de21d ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xec9c0630 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xecdf947a skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf0a895 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecf9247c dquot_acquire -EXPORT_SYMBOL vmlinux 0xecfce40a sock_recvmsg -EXPORT_SYMBOL vmlinux 0xed0ea877 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xed2c9eb0 mmput_async -EXPORT_SYMBOL vmlinux 0xed2ddb78 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xed2fc9ad vga_client_register -EXPORT_SYMBOL vmlinux 0xed389954 blk_put_request -EXPORT_SYMBOL vmlinux 0xed393389 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xed417f9b snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xed57bde6 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed76c2f4 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbbe01a io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc474f1 netpoll_setup -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xede29989 udp_prot -EXPORT_SYMBOL vmlinux 0xedeb59d9 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee524333 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeeab9bcf phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xeeac3fb2 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xeeaf10fb flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xeeb8d5b0 phy_read_paged -EXPORT_SYMBOL vmlinux 0xeeccd8d0 udplite_prot -EXPORT_SYMBOL vmlinux 0xeed94d1e tty_port_close_end -EXPORT_SYMBOL vmlinux 0xeed9e69f blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xeee131f4 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xeee5c642 generic_setlease -EXPORT_SYMBOL vmlinux 0xef27040a ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xef31bffd serio_bus -EXPORT_SYMBOL vmlinux 0xef439752 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef5fc104 phy_device_register -EXPORT_SYMBOL vmlinux 0xef640e60 dm_put_device -EXPORT_SYMBOL vmlinux 0xef68a590 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xef6f3b61 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xef7b2048 of_find_property -EXPORT_SYMBOL vmlinux 0xef7be3ab sync_inode -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8e56a4 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xef9259a5 vfs_mknod -EXPORT_SYMBOL vmlinux 0xef9f5f03 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xefaa2d07 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xefb33ded pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xefb7bccf _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xefc2c128 param_ops_bint -EXPORT_SYMBOL vmlinux 0xefc94e33 simple_readpage -EXPORT_SYMBOL vmlinux 0xefd0a08f jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xefdbaf37 nand_bch_init -EXPORT_SYMBOL vmlinux 0xefdd177f __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xefe0eb05 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf002f457 seq_lseek -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf01315ad abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn -EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf0380d3c xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xf04e42a0 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xf04ee9f2 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xf05dab86 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf06bac74 scsi_device_put -EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf07f65c4 block_commit_write -EXPORT_SYMBOL vmlinux 0xf08a6063 config_item_set_name -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf097059f _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0a91ebb configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xf0ae23b1 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xf0bf13b3 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xf0c0120d inet_frags_init -EXPORT_SYMBOL vmlinux 0xf0d53920 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0xf0ddff40 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf10231d9 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf102732a crc16 -EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xf112f883 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xf115aa84 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xf11ec524 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xf12f0c2f get_thermal_instance -EXPORT_SYMBOL vmlinux 0xf144c478 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xf145aaa8 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xf16078d4 __module_get -EXPORT_SYMBOL vmlinux 0xf1721935 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xf191e5a5 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xf192e068 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19f504c snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align -EXPORT_SYMBOL vmlinux 0xf1b21b28 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xf1ccfb7f find_get_entry -EXPORT_SYMBOL vmlinux 0xf1cf6213 phy_device_free -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e82c90 file_remove_privs -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf21b99eb pipe_lock -EXPORT_SYMBOL vmlinux 0xf21db84c loop_register_transfer -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf2226e3d file_modified -EXPORT_SYMBOL vmlinux 0xf2236752 module_layout -EXPORT_SYMBOL vmlinux 0xf2270376 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23c5258 mem_map -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24ad5d8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xf2501aa3 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf277a223 zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf29bd48c blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf2a2ee0f done_path_create -EXPORT_SYMBOL vmlinux 0xf2a74049 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2ae3833 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xf2c43d7b eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c78eb1 arp_xmit -EXPORT_SYMBOL vmlinux 0xf2c7a999 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xf2ce202e dquot_commit -EXPORT_SYMBOL vmlinux 0xf2d1881e rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xf2dba1f9 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0xf2e4655a tty_write_room -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e87e0a input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xf2f2e099 dma_pool_create -EXPORT_SYMBOL vmlinux 0xf30445ec xfrm_state_add -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf317c20e get_tree_single -EXPORT_SYMBOL vmlinux 0xf3222638 d_alloc_name -EXPORT_SYMBOL vmlinux 0xf33875de sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xf3427775 sock_i_uid -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35b946a noop_qdisc -EXPORT_SYMBOL vmlinux 0xf3759003 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xf37bee81 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xf386610f flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b5e4b2 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xf3c2d3b5 __alloc_skb -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f2a89d ata_port_printk -EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf4154122 snd_power_wait -EXPORT_SYMBOL vmlinux 0xf4162da1 cqhci_resume -EXPORT_SYMBOL vmlinux 0xf4416d43 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf455fb44 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf457749c in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf45b90d8 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4757157 blk_register_region -EXPORT_SYMBOL vmlinux 0xf4779860 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4b905a4 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xf4bb7593 snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c7ad2a flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xf4d373f3 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf508c6f7 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xf519d33d omap_rtc_power_off_program -EXPORT_SYMBOL vmlinux 0xf52d28fd simple_setattr -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf544af48 search_binary_handler -EXPORT_SYMBOL vmlinux 0xf546bc6d __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xf5473534 cdev_device_add -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5a86722 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xf5aa2495 pcim_iomap -EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5d0ca2f fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xf5daa094 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0xf5e59b36 fqdir_exit -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5ef84ad tcf_register_action -EXPORT_SYMBOL vmlinux 0xf5fb07fb mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xf5ff0b83 __sb_start_write -EXPORT_SYMBOL vmlinux 0xf604acc5 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xf60fac16 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xf616fe82 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xf618e58b param_get_ushort -EXPORT_SYMBOL vmlinux 0xf61d1b1d pci_get_class -EXPORT_SYMBOL vmlinux 0xf6265845 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xf62b2782 filemap_flush -EXPORT_SYMBOL vmlinux 0xf63ecfea seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf65441a4 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf668cd02 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xf672b2d7 of_phy_connect -EXPORT_SYMBOL vmlinux 0xf67a9a7d import_iovec -EXPORT_SYMBOL vmlinux 0xf67c99e1 kobject_add -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf697bd8e fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xf6a3f5a6 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0xf6bbd106 seq_write -EXPORT_SYMBOL vmlinux 0xf6e86b0a inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f87e7b brioctl_set -EXPORT_SYMBOL vmlinux 0xf6f983fb init_special_inode -EXPORT_SYMBOL vmlinux 0xf6fb897a ioremap_cached -EXPORT_SYMBOL vmlinux 0xf6fc5d9f dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fff3f2 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf70e101e phy_read_mmd -EXPORT_SYMBOL vmlinux 0xf7162297 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf7185e2d pci_release_resource -EXPORT_SYMBOL vmlinux 0xf7386b9b may_umount_tree -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf7418010 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xf74b2492 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xf756a272 _dev_notice -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75c71b4 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7825d59 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xf782e5e1 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xf78dfb2a mdio_device_free -EXPORT_SYMBOL vmlinux 0xf79053c6 update_devfreq -EXPORT_SYMBOL vmlinux 0xf7af924f unregister_nls -EXPORT_SYMBOL vmlinux 0xf7b18b8e __close_fd_get_file -EXPORT_SYMBOL vmlinux 0xf7b2bdc0 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xf7bc3242 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xf7d1fa49 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xf7f05ddb mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xf7fc0846 fd_install -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf84854d0 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xf859b1b3 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf86f59d0 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xf873bd8e invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xf882cefa __put_user_ns -EXPORT_SYMBOL vmlinux 0xf88b8998 kill_fasync -EXPORT_SYMBOL vmlinux 0xf88e4d4b flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xf8aad5cc pci_iounmap -EXPORT_SYMBOL vmlinux 0xf8b2dbf5 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8c0c0eb snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0xf8eda3c7 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xf8eea354 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xf8efdde9 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf936d0e1 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf946f518 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf98111c7 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xf9883a45 netif_napi_del -EXPORT_SYMBOL vmlinux 0xf9a10746 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xf9a21ceb rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xf9a36b47 down_interruptible -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c2d95a tso_build_data -EXPORT_SYMBOL vmlinux 0xf9cbc8f8 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf9de28f0 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xf9eb6963 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xf9f218eb input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xfa236002 pci_dev_put -EXPORT_SYMBOL vmlinux 0xfa24360b bio_add_page -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa3e540d generic_file_llseek -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfaaa63c7 input_allocate_device -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfb09f665 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xfb11f1cf kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xfb1a18d2 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb1dca6e I_BDEV -EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb556861 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xfb55b299 blkdev_put -EXPORT_SYMBOL vmlinux 0xfb6517e8 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7bfd41 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb80016d tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0xfba38d31 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfba452fb neigh_sysctl_unregister -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 0xfbfaa4e3 block_truncate_page -EXPORT_SYMBOL vmlinux 0xfc13f948 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xfc18c0a2 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xfc3521a9 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xfc369f93 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xfc375be9 mpage_writepages -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfc4889f7 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5d2ba1 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xfc5db97d skb_checksum -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc65482e pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xfc8ff16c sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xfca546cf nla_put_64bit -EXPORT_SYMBOL vmlinux 0xfca60abe pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xfcc01f0a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xfcc7d002 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfce03743 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xfce1adb8 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xfceb6205 thaw_super -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd3fd656 del_gendisk -EXPORT_SYMBOL vmlinux 0xfd41f2fb misc_deregister -EXPORT_SYMBOL vmlinux 0xfd55b8f1 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xfd6026a3 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xfd60f384 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd80f264 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd9d3987 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfda9e2bb ppp_unit_number -EXPORT_SYMBOL vmlinux 0xfdb39301 param_ops_byte -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfde20b13 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1d0866 inet_addr_type -EXPORT_SYMBOL vmlinux 0xfe300d6e input_release_device -EXPORT_SYMBOL vmlinux 0xfe3fa38e i2c_del_driver -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe504dfe of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe83dca0 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xfe91f299 make_kuid -EXPORT_SYMBOL vmlinux 0xfe927846 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xfe92e2c9 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb74e8d ip_do_fragment -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefab07b vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0f2ff5 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xff145ce3 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f4174 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xff407891 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xff579538 d_add -EXPORT_SYMBOL vmlinux 0xff604461 kill_pgrp -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff625e38 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xff669192 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xff66ada6 pci_iomap -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7ad045 eth_type_trans -EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff756d2 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xfff93da6 __SetPageMovable -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x22ad7fd7 sha1_update_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xb179fda5 sha1_finup_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x214024a7 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x21dcfb5b af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x277b8fb2 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x30d90ae2 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x34bb069a af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x3de7b00b af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x430f9a7c af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x44aa5e1f af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x451a2bd1 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x5a977d1e af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x82167c3f af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x90675eb0 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xa58d77cf af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xae9df699 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xafcd8da8 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc4db77d2 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xcaf3a7c1 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe125f5b0 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x68147b4c asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x3fc4d02d async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x29b7548e async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xcde80e57 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5cccc720 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcf669147 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2eb4dd95 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x540d2103 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x66147618 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd8099d7f async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x98fe51ff async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdcfb1017 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x5c62385a blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x07181225 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 0x30b56bcd __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa4875c97 cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt -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/chacha_generic 0x463c17a4 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xbe2d109a crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd22213aa crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd71c8c87 crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x08d87c1a cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x09ac56a0 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x0cc1b94d cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x137c6119 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x1d2046a9 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3f34eaab cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x45c0569a cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x81911ae6 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x8fe51266 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xa32db403 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xb7889676 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd831d9dc cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf3f10de1 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x02b05e42 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x164bb1ac crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f1cb666 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x44494fb7 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x48f96d17 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5816a261 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5953741a crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x731450c3 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9c091322 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa9cee325 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa80dd51 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe3732665 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe9f7a6fd crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xee18c3f2 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x35c02e9e simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3fbefb0f simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x903e2ff5 simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc4163875 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4312ee06 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9893ca5e crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xad4e8e37 crypto_poly1305_update -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 0xee2017ab serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x08dda132 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x96d1891f crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xc05c29fe crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0xaf117472 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x5723a65b __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x01ad6e8b sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x11144dd4 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd474e3a5 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe5ba590d regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xc115f3ba __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd02c9d6a __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd05e7a03 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x9409b8a4 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xa5478595 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4f7bf249 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x90c956c1 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa780d2fe __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd33dd286 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x92b27689 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe889c91c __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1132e011 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1470a25a bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22ddfaf2 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c4f1750 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x438b9bd1 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x524bc268 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f7baddd bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67ffdf5a bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68ecfe1d bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7074fdec bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7599ef3b bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x859a9f44 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa13c3426 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa25be9f4 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab9d5b37 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb03c25b3 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb87cb276 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcf1dc11 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc36e3602 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcea56522 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdde39add bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xefe10544 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3fa6126 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf99dd8b5 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27cf0ab6 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3bff4c85 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x877439a3 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x91f04130 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc564390d btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf1699646 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0fcd7c46 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x174cf02b btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x179e7926 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x243190c5 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b4ff353 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d951bbf btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x459ad5ee btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x550fd9cb btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x71c47a55 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72016aff btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76bf8a2a btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8600a436 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8b31175e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7f7731e btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc32d6596 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4da8a07 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf72d84d3 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x13b948f5 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18e64784 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2eb195da btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x37d26022 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b9a9407 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77e37678 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7be622df btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe3f338c8 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe75006c2 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf863757d btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfce5654e btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2cf76c25 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3cc32d20 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4e87f88e qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7f99cb63 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb62e09b7 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0e98f54c btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1e4c3199 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x80d064cc btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x95c4e187 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb0650ab6 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9c974a00 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb3923104 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdd8b3528 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe0e5a592 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x11b564ba moxtet_bus_type -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x37f235b9 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xaa6306bf moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc09f0711 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xde5f630c __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e13d6f qcom_cc_register_rcg_dfs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2df91853 clk_fabia_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4e12101b qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x512af5e1 krait_mux_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6101323f qcom_cc_register_sleep_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63a309d3 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x692517b7 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ca8a88d clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x719aa441 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x749eda9f clk_alpha_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb4666632 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb73a2cd3 krait_div2_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb9481b5a qcom_cc_probe_by_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x27aec86b counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x375a4b6c counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x54a5198e counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x578f1fe5 counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x6860a9a9 counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7477ceb3 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x75fd312f counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x98549b25 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa2785121 counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc2974207 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xcb808c80 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd8c31f51 devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd98a4cde counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe51f786e counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xff255655 counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x7249d45c bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xe8914fc3 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd5328478 omap_crypto_cleanup -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x075b36d7 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7774032d dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x516f4e40 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x54db2398 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7f306522 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x91a6ae31 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc7d0f6fe dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc66b5ce do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xceba868b idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x072cb516 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10207b2d fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x13bea43c fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2ddba53e fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4fc640eb fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x54904a33 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x817f318e fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9f2237f8 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xad57ff4a fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb1db72fa fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe780057 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbf038e36 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd23304db fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd7891123 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe9aebb16 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf0d75d29 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x09338e28 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc77bf586 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x81bbbbd6 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb8972c0e alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xee789895 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04561867 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e9db44b dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x14a0cf5e dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x22dea264 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ee6d2d dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f528eb1 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52287eaa __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5738659e dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x781abaf5 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9f92d97e dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9fb48bd0 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa584fead dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa1917bf dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab1406b7 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb60039ab dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdd18d17e dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe5e64edf dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee84312d dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfda3fd56 dfl_fpga_enum_info_add_dfl -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 0x10008ddf fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x16826141 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4d6e5511 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x62c44926 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8f9d6e40 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x90eab6ab devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa0ecbc03 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbd364737 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc90ac9c6 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xed27007e fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf8c5383d fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf9c80324 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x21fa617d fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25c136be fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2be514e6 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x36b6737b fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5bf629c6 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa849751e devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb2697146 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcc3e11e4 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3c421c0 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd452448b fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeada957d fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf3c0515c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf4adf01e fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x01487fc5 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0d3073e2 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0f1e420e devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x21b22bb7 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x83e225fa fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdd5c8760 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf39d45bf fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2f17f360 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5060ce1c fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7250c70c fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x75eeb755 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x790a57c1 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xae1d3619 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd6fe129f fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xde2524b8 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe9bb91fd fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf694f474 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xee145507 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x032dcd69 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xef440138 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6e6114d0 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x704924d5 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9e607d60 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa20d4aaa gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb06eeb4d gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x06a89eae gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3690ab78 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3f48fdd0 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x44fd0cca gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7ffc77cf gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x2e54a1ed 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 0x9eb6977f aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x18a6611b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3184aa5c __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x284f0a57 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2dba9939 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2ea1b195 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x30f3d9ff analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x340f6369 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4748fdf0 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf4e96189 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfca6198c analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbc9b9d5c dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd4991ca3 dw_hdmi_probe -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 0x26eee6cc dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xc8528b4a dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x069f8fdc drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b29095e drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ce4d4fb drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1679b36e drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x34bd654c drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36a12956 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ded8882 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4be6b03f drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d3f87cb drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51d1b56d drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x618e2d4e of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63a18752 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69d63852 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6dd1a0dd drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x709a702a drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73bd369c drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78d6a526 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c12fbb3 drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7db54ccc drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ed66bc7 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x920185aa drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa5434bf2 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xafc2d3dd drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb43a341e drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbfd66b83 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc3ee5d5 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcee12db1 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7175855 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdad0b6d drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1d4a21a5 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x55b15e29 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x67cadd7c drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x77be1131 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x95fb0301 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaeac743e drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2a909b6 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x1200e59c imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x2509080a ipu_plane_disable_deferred -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8575b779 imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xb2f245b2 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xe7d7687e ipu_planes_assign_pre -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x1483ecbb mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5464719f meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc507732c meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf587a753 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x9e372c1e pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x39a5b9d7 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x49e80956 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xfff4ecc3 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x72283e57 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x973c91d1 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x00d8bc8f ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01ab3e39 ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f4ee1f ipu_image_convert_adjust -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0a3fe0be ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x164e5e9c ipu_csi_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 0x18756672 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18790378 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2036322b ipu_prg_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20e09f6f ipu_csi_set_mipi_datatype -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 0x24fdd051 ipu_idmac_select_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 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 0x31318590 ipu_dp_get -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 0x34156af6 ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3aa1f72c ipu_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e20fa8a ipu_set_ic_src_mux -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 0x3ef96ab1 ipu_prg_channel_configure -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x41682757 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 0x438a2978 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4621fa23 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -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 0x4a9be430 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4d9b6fb0 ipu_dc_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 0x52812274 ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x565b2abf ipu_prg_channel_configure_pending -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x58bf6a49 ipu_prg_channel_disable -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 0x5cc328e0 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5dabc6c8 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5fd521a3 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x605d1d13 ipu_fsu_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x63593ec7 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x643fe204 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66e729d2 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x68818738 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6e310d76 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 0x73c506b8 ipu_map_irq -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 0x7911b4cc ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7aa91b40 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7d66c52a ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x820d2d3b ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x835792ff ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x866457db ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x89d91019 ipu_prg_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8e2edf22 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ece82bd ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x958417ed ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9964fdfa ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9b5d1b2e ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6e9ee55 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa97c120b ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xabfe3d07 ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xad5f94ab ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb3165dfa ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb36434f8 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb81ee605 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb82e7b8a ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbb77a30d ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc8b9ebc ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbdba046c ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbea6736a ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc9005a4b ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xca62f1ae ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcc2eb33e ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce10db35 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcea1ec01 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xceb1eb77 ipu_image_convert -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcf9f89ef ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd01082e0 ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdb2c5354 ipu_idmac_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdb39f7e7 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xddde49e9 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe80f6d71 ipu_image_convert_prepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe90ca5c7 ipu_prg_present -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xebd522de ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xee00973f ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf3bb309c ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf42bea07 ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfacf15ad ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02e8dacd gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15fb0c8c gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x282add44 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x292ebfaf gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29f7da7f __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31884da7 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38b89571 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x416fe7cc gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x428164d0 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a09bad7 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c369eef gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50517685 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5236b092 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x526dec0a gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5772d0a1 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58cd05c9 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60a3eed1 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6cdedbff greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75c9730a __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7863fecd gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d57ba3e gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f4db22b gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8a28e0a5 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b0c6307 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8dfa8c0b gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97c2aa0c gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98729a61 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1e01580 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa73914ff gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7ee93ce gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac25163a greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4a972c1 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc03772c gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc277e57d gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3b0f3c1 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6295211 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdaae8646 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0d37bde gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea019b0f gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef578ef2 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf166203d gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcad21b3 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcd391a8 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02f4189e hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09a93b8e hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c8cc3b9 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d042ba7 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c9606dc __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22151afd hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26cb2cff hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2aaa852a hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x38ee0fd6 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b374dc8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cbcde07 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4058c213 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x434555ba hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5095c0c7 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x555000f8 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x660d17e9 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c8cea53 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75c4c881 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c2cef1c hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cbd937d hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ebd50f2 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87380d64 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x90eed310 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fff1b8a hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa954b5b0 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa4d0636 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb649d894 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6bfa06a hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaaf7651 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcc04a22 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0df2be4 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2671162 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3370909 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd41140f5 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4ace20e hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xda26f344 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdab0ad58 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbe2980e hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee9caa25 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4371fe5 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf605a254 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6c744ee hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe38c1ca hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfefb4fc7 __hid_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 0xb1fb378d roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x02e53439 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x667a78ac roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x72429c13 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8a2bcdb8 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa90586b7 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda30601d roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3a17caca sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a7a6031 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7962e7e9 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81c89406 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x87f1d685 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8d2e70ba sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x990caf0c hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcc707316 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe80239b6 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x727ed55b i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x740c0743 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0553f7e4 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x20f3cf09 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x04585f23 ssip_slave_start_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x152a61f1 ssip_slave_stop_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x402784b7 ssip_slave_get_master -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x64804e36 ssip_reset_event -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xba5e2d44 ssip_slave_running -EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x112eb2eb ssi_waketest -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00ec8b5e hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2e9e55a5 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d3db9e4 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x44c10729 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4adb8025 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x62c7d69f hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fb9ed65 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a8f9673 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b802aab hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ac31e8a hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cdacdc1 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1f57071 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbfade6fb hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc48f986a hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd96288b0 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef8a40bd hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf100082f hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf6b82394 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8c28158b adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9b613be1 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xdcca4889 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0384b427 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0a60f1d7 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x221bd0be pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x39b93808 pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3a7d4464 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40c6df72 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5d13db5c pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6da8953b pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x85dd2392 pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8935eab1 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8e0dacd4 pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb1008be6 pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb68d5c67 pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbab54191 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbc77f960 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc82088c3 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe65083a4 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xee885663 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8d4c177 pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x291ba8e6 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x307a3a59 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x42cb680a intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x773720f7 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x900746c0 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa0e1e792 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8683334 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd832ad0d intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf98c7616 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0446e5ad intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3e9a9592 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf492dbc0 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x05eb25ff stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0edb51e0 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2236e566 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x708bb563 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x87d42f20 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88cdad81 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe5b0d2cf stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe63b10f2 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xef63720b stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7b9de979 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x951b9f03 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc8f4ad94 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe37116cc i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x36917c95 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0717dbf4 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x075969c9 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a44ff9c i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13931c27 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2f2db25b i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x38044961 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6462a5eb i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x67555bba i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x72e65650 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73bb3f78 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76b9720a i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7916d78b i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81530f73 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x968cf1d1 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9699fe0c i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f77c0d4 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f813f86 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa06e5fad i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa9ff2aa0 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xadeb52ee i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae01c4d0 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb37cf3f5 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe2c33065 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe4a7bbfb i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe9225c07 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x4ef4e571 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x52aae6f9 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3a65012a bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x427056be bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x52559253 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc5cadf9d bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x0ecd11e2 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x2e8d80b8 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3702929e mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x5e65aef8 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb3a63d06 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x09f29e5b ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x352b8b8f ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5fa16533 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x94f761c2 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb10ca5a0 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc53786cf ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcdf3cea6 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd31bda4d ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xec236cf7 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf7a10a35 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0db55fc5 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 0x72eae415 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 0xe5d5cfa4 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd394c240 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xda3e1d8e iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xf1d2b70b devm_iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xd9d16ca3 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xfe12c0df devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x75bc2c0c bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x086b68bb cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2b8730f9 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2e3b761a cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3428c283 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x38dabe68 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4bad1773 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x71991c37 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 0xb21ac0af cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb6b92546 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4107e22e ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x92cdc147 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6f7285f3 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb9dbdee1 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa0636ff2 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa473304d bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe40a97fa bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x12be3018 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x544ed4c8 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x67b6662c fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x24d328f5 adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x30167372 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d2ff678 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x50484531 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5aa31a32 adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77d1143d adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83421c3d adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa2814c9a adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa537af4d adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe87369b0 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeed2f7ca adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf322527e adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xa32e1eae bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x6912c833 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x73191a1a inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x9b492e58 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x034a9c78 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ffe2fb0 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14db6fff iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1848d759 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x187c8846 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ed0e0a2 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22e3e037 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x233e8517 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x246ed4d8 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24a6c996 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b75e116 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ef1da4e iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3019aab8 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b3ef617 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b417348 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x413a07a0 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44074160 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4450a945 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45f6a265 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58f0e9f7 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5934e4f2 iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a7f6d87 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f822ea3 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65284d50 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69c7d70f iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f7c3d5f iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e2421fc devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85cd2dbe devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x866349ea iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x872819a1 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89a11a25 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d5b42a3 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa56c706b iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa93b114b __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb46b3c1f devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7978241 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9e5b1fe devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcae8be5d iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb719b75 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9a1dbc0 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9ed7e00 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0a0b8cb iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3e74e12 devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea3ff7c1 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec07ba4d iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0bf2ffd devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8a954a6 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa1c798e iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc5539f0 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd571af7 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x10f21a22 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x35b4f73a mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x20708ad1 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x31e24a04 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x322f3940 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x51890ac3 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7af2000f zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xab11101d zpa2326_remove -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1fb30602 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9aac2dfe matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x0db8a160 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x14c9f9bc rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1ca3bb05 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x212c4bc4 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x38093c89 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e1c7ae3 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x59725874 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x61d93bcf rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x67ec18c1 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x68eb9e1b __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6ce4ad64 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71239dde rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7ab2e62e rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8d033a4a rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x13b34548 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7d526380 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9794e9d1 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3e742e44 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7409de28 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x25abb972 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4b4236ec cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x27eae9fb tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x46b137c6 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb75b5b9 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf749bf8c tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07339d84 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27a29bf2 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2bc07a7b wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bfc7c01 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72a174c8 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x73b9c9bf wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa650baab wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc4052903 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd89f21fe wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeb089b6c wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4dcf3a9 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf6b68636 wm9705_codec -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x4796f0cf icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x54698549 icc_node_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x620debef icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x656181a3 icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7107c513 icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x725037fd icc_provider_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x8a1c9fa8 icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x9c86034e of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xcda4d172 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xf45b660e icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x14450656 free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x560ca013 copy_reserved_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x632be339 find_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6591423e alloc_iova_fast -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7b03b40e reserve_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x89032608 put_iova_domain -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x99b29474 free_iova_fast -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xa4066476 init_iova_domain -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xb9939bcd queue_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc76f53b7 alloc_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xdaa3dd25 __free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xf4901ce0 init_iova_flush_queue -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x088b8fd9 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2f4e6838 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x33a6540a ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x596af9ae ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x59829340 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7f6f1a0d ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe5177922 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf0b101c6 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf516586a ipack_device_init -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5bd97e8f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5d934c3b led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6a3c7eb8 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7de556ac led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf3b9b70 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdf6f2412 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x279bbe05 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x279f1bec lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x28409dfe lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55dfa167 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5bfcb955 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x82fdb40e lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x999db10a lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc7ea8026 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcad4d0be lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd44948d2 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdad0f972 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0058a578 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0df50e48 mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x117fb0cf mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1e7482cb mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x26833331 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x290c187a mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x47993ce2 mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7d064078 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9131af22 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9744ea88 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xae7d83c1 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbcf52873 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc02b4765 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc4682d3d mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf4092f2b mcb_get_irq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0fc45895 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x12e82d3d 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 0x1b298534 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ee3350b dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x24952342 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 0x3b1ba18d dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x451add44 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46ca74f7 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x52c13e18 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c4593ad dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63e342b8 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68d916cd dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x70e6ab58 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93a6ae9a dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa29542e0 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbcdbb7dc dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc8fd14f4 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6565c262 dm_bufio_client_create -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-cache 0x03bb93e0 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9b1a61ba dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xeec72270 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x28427257 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfe8eda61 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x007dda21 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0d69cd77 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x9425ace0 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 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc98d3ce0 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 0xe5d57ecb 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 0xf92bc662 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -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 0x2adee13f dm_btree_cursor_next -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 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -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 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55f98e63 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8ef41099 dm_block_manager_create -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 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7083b63 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8dbd4e1 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6367ed7 dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10d54544 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19ccde49 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1fe49560 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x31877e6f saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x85d3c07a saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8e9a82da saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbff998e1 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd3707523 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeea0c6f3 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf13d0127 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x064bdfca saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1348d1d3 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1407aacb saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4ddfe8ef saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x50e8a5c9 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x75c6bdb5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xeafc3479 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17f58c9d smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17f77913 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x361018ac smscore_get_device_mode -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 0x4bfe56fd smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x52e5e5cd smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x57cb8722 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68c80732 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70a6ab38 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77b4b959 smscore_unregister_hotplug -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 0x8db573c5 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ed47923 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3c117fa smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3aa3c2a sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1365e46 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xde747dfb smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xed77720f smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa810bc0 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x058ad2ff vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0aa6af5e __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10ca7a89 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x142bc223 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16c17641 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16f67eef __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x352e4789 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4dcc2880 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x567cad45 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e9a6e68 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x66c5b3ce vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x673969bf vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7eeeee2e __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83f16e81 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8552195d vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86926d3d vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8723d642 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x937f665f vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f4ab8e3 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa6db341b vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb1e2d5af vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb301c3a2 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb899ec03 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0e3531e vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca13a78e vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8192224 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc286866 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf309e9bc vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf8d073aa vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x05fc9292 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x55493285 vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8c61c09c vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x9302617c vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x7e9e942f vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x012a40ce vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x110389e9 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14e9c365 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x20b6d9cd vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x261667ba vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2674eeac vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b23d3c1 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e1bf851 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34263e3b vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a86b995 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47e2ee82 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d8fe327 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76a3c802 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c28617f vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7dd80719 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82be01d9 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d4444b0 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8de894cf vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fc3ea42 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c91ced8 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e458201 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e5c75b8 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0865cfb vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa9138a49 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xba45e118 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc8f6bc61 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8abee42 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe258f968 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6ad9f34 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf23e4934 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc1a0a1b vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x20fd454b vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x2ee58f5e dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x42ec187c dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xdb3e8955 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x66224af7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa66bc602 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xfb1904b9 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3be93b22 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x9f687f04 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x547e9543 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6e5f6730 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x09e92c85 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x8fcb544b smiapp_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x027dd67d __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x069dd68e media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0734786d media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bba5068 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1580d9b7 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1647db6f media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e44b6e3 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e3b5142 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f375902 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3388306b media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x358cc4ca media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ff4d0b5 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x405f2e83 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44f9357a media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4532070b media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4719fad7 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b6d3dd1 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e7f3ca9 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f2061ea media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e7f0291 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x661066c5 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66daf559 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76f0913c media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79443765 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d71f165 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c640d04 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e61d5ba media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ec590d3 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x951c96f5 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d127d73 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa22d8fe2 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa2aab1ea __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae8c2d86 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4a901b7 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb788cc3d __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf2f8b53 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc724ed35 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6dc7eb8 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcf1a2b5 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde3f1ce9 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde926701 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe127ddb9 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe304473a media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee1f9859 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf95f636b media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfea7f6cf __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf2ec734b cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0840a8c5 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08e769da mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1182c376 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c3e7854 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x244d2080 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b19ebdc mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x369460d6 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5542aeb8 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6390a7d9 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x866afe84 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa03c22b9 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab736f29 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad69a7c7 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae0ca256 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc44ca95e mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcca4b926 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcee3b281 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe685ee53 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7f10a4b mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0350e42e saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0680a894 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29f5ed47 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x393a1718 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f744266 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5244e936 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e3331b6 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x71d40e6a saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81adb27a saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8cff7a1a saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91933d8d saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d0c3370 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa832ef54 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb29e1465 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd999902 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc130063d saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc91f8dbe saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd836c62a saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe60c5343 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x052ef65e ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x319f5723 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x347d5981 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3ab75501 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7ece9032 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf637eff ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc7b1d557 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0fa1f447 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x81b43178 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8391239e mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xdfd3cbdc mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf912d1d9 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x044f3995 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1a129071 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x243f4452 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x2a6eb6cb vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x37696da7 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9f4880db vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xac0d0d72 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xfa6af2a4 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0a59c11d omap_vout_new_format -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0d615dfe omap_vout_default_crop -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6e8a3074 omap_vout_new_crop -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3eb7209c rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x000ffb35 vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1aaf7f57 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x4291c512 vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x5b733420 vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x685dfeb0 vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x894d4ffd vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x186414b4 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x30af112c vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x58aff6ea vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x62feb961 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x8a66296a vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xad4d1d2d vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xdd3f19c2 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3b03866c xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5c5909f6 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7a568def xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xafb2ea30 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb2fc500d 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 0xc602c003 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff4a99fc 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 0xe10eae1d xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5666d39a radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf17cae15 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x15de30a4 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x53abac86 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x87f0da92 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xabd9e261 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xce283466 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e883b2a ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1aaa6953 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x35f47985 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3660644e ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f9b3a0f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x62541547 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x640632be ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x698f7339 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8c088cef rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9484023d rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5502d27 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba09216c rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc77c8598 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc8aaf28e rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcbf2779f rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdeb6ec4c ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdf98a39d rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe3d0641b rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe451970d ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf6fa9b2a ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbb35318 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x56894ddb mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4e9b5205 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xed26c1f4 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x16f35b4b r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x168ad430 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x726bda54 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4c922549 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd2b95a19 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5199453b tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x61d5448c tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc0581e2f tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc9994ae9 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xddf11cf2 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xfeafd7ff simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00fab62b cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0656ab7a cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22846de6 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42217c48 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4280413f cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50407eaf cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x60bc4a8d cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62c8e37a cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x652effe4 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76a7369a cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88b0a74f cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8fd22fab cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9da8ecb0 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa031d06c cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5f67b3e is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbff1dfae cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xccbd8ece cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf153a63a cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf66eda45 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfbc8d668 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x05f25fc9 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc2674ace mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02d64f05 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x051ac87a em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a0bda95 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x218e5b3b em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x242229a1 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x39a5ebed em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47a2cd6d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5990efb2 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x760f3448 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x857b3724 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa51f10a2 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa86d8159 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8e530b5 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7331b15 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe38287c5 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe584c8a4 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf90661da em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfac6e7b3 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0a09bd0e tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x336cc239 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdfa73473 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfad2190d tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1a8aac57 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9d21c0b4 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xdbfe6857 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x07d1b775 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x14582b7c v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2c226a82 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x481b8522 v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4d112d91 v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x72336bee v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x78a1f7d2 v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaa25ce65 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcf1a7852 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf0eedae4 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05f7bc17 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18ea36c1 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d4aa6f8 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20c14fcd v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x288d0fc1 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b4d1f95 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2cd0dbf5 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32fa9c0c v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3408e5af v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d144f25 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x466d6bce v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5366770c v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5449aa8f v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x564443a5 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57a18fd0 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5adb5ebd v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6bfd5f1b v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c977687 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 0x799cec69 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79f454ab v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x861a2838 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ad63b61 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cf6068e v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f2e1463 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5bc44ed v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafaee92e v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4b78161 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb871e01c v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5967372 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca98fad7 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3291ca6 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6d7b725 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd85d7d9c v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0bb8647 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb7d9d74 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0276e28b videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a096c5e videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b85acf4 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x316f78e0 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x407d1d5b videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x473dff9d videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x505076c8 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e355b7c videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74958a37 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77cdd121 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c667eef videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x821a6663 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7e93ae5 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabe86e46 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc82403d3 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8d24d59 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc99d9887 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf8496d5 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd06124d9 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4fe1db6 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4119596 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed6e80bc videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee42b461 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd8a32d0 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x687e9eb2 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6d6ea0f8 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x71a24b36 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf400a50d videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x26f2e59a videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7870029d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe4894fcc videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02387a95 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03389963 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x072b7ad0 v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d001dc0 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16df7b99 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x219e88a9 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23888a62 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c057b21 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x331a1b31 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x352f0e73 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41567697 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47e30a59 v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d4e8d56 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5629fb34 v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58c26bb7 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b9eef28 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fc40d59 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x650fde2c v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6692fefe v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67bdb5cf v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68e17080 v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b5ad65a v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c64bded v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f51b046 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7102e420 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x720e9457 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72a227b1 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75c5f740 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7736bc5a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x801da807 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80e8e7a4 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81278b69 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8361a5b6 v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83ecd61e v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x849e4125 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x945b27b2 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a9e3aac v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ae09bbc v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9df77081 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa110813d v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa16bb927 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7d12cde v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa336b71 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb102bc35 v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6d5769d v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8f715d2 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4378985 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcda97ad2 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7488556 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd16cb8e v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2efbe8a v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedfc1f21 v4l2_device_register -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 0xf7b3f72f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x27ed2092 pl353_smc_set_ecc_mode -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x2eec2ab2 pl353_smc_ecc_is_busy -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x31112d75 pl353_smc_get_nand_int_status_raw -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x80ef3725 pl353_smc_set_ecc_pg_size -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x84eeb67e pl353_smc_set_buswidth -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc00d163f pl353_smc_set_cycles -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc37aa3c1 pl353_smc_clr_nand_int -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xe2603369 pl353_smc_get_ecc_val -EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type -EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0xbcf322c5 ti_emif_copy_pm_function_table -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2778e34d pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x37f6b700 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x81aa0d2a pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x111b107f da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x38a327bb da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9cd3e355 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9e7fd423 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd399bc20 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xebe96a2c da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf949e00c da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0493b15b kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x106e3500 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37ccfb4a kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40b9a10e kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x67649a54 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa15a18a7 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbb7ece28 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2124144 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02dfe01c lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1f7a95ce lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x53a7a7bd lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2c7d448d lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x55441754 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x83133b3b lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa1effbfd lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa7f7c878 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb19b1241 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe2760f62 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x19c89fea lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x46ba8ba1 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x843f27b3 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x035e419d madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0ce6c0e8 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0ceb1ca8 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11c037dd cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11cdeb9d cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x26412c20 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x264cf060 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ff3b4e6 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e945b90 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e9987d0 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49ebb825 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fd3dde4 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fde01a4 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52f52ad1 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52f8f691 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5317c9a7 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x597a9ec2 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x65216b96 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6574312c cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6579ed6c cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x668d75eb cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7da1469c cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7dac9adc cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x85107728 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x851dab68 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87ff9e7c cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6256a24 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc628b664 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xaa57ce84 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb373c648 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc1e8f8b5 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe1c67800 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe630b021 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf3c98d68 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0023a3b7 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03781f2b pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x267da390 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3233d421 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x379b52a0 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x78679a31 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fc0fc4b pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9f6d5e27 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb85877b pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf3c626e9 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf88f6b6f pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x85beb28b pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa9217e4d pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7f58009e pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe3d15e08 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe954a893 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf9022d23 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa1f7b7d pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x9a01534e devm_rave_sp_register_event_notifier -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x023a8cbb si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dd935d0 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17748a34 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ac0cae4 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2156b8e8 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2268657a si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28ecd7fb devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c0b7e7d si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x599b21fa si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e9f0561 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x750d8254 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76eb4b1d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7a3dbb93 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e88d13c si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7eea1d81 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89ae9fc9 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b40a852 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f1ca5de si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x950fe813 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e0a8b6d si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad6691a3 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1e6ac35 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb289e0c8 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbad84afe si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe670172 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc45f0467 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7efaaac si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6e125cc si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd740c92c si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0324047 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe32b8de9 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6fc6359 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed5b0ec7 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe2bb598 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x1539bb11 ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xb59111ff ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x20f86103 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xe3c86c7f stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2da2e9f2 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2e37900c am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x31ab3a94 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7a58c9bf am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5a62e1c4 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x966978c9 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb49c8062 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xad91610d ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3c532723 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x559dcfdc alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x55a2972f alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x75669329 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa8ded648 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe5812efe alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf13cd993 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0005e133 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x158a15d7 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d3d8d66 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4199728e rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d0ef35b rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x679dc029 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x73ea4e83 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x995b499e rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9a2012f9 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0b1655b rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xabb2ade5 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad7a1a96 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xafaafcbd rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb424fdbd rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd132328f rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd61be51b rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb9572d2 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdd54c451 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdf09b48a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xec00ef1a rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf5d001ba rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc9f5a37 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfcacc136 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe8c32fa rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0a7a3b34 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x18283d52 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e9ad6a9 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1ed0567f rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5e767866 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6427effa rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f9eb457 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7536dd44 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87d14b93 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9fb1ed5e rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb7b0521d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd2c25635 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdefc1788 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x263e148b cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x46550574 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa6093e24 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf7c5c259 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 0x22cc187c enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x388ccd59 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5b58cb42 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x68d1ecd7 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x989b2e7f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb6c8a7bc enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc595f782 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf9411ef7 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0645efd5 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x386f633b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x897c28be lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9c014fc0 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb8d518e1 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcbe6f028 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe6043e74 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf5282f53 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5b5fa797 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x70275b75 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1f1f3cd4 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x5cc0625e dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xba5326f8 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x715fac36 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xc4178d97 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0be70310 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x103149eb tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x519ff8f9 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x59643dac tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7438443c tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8fa363b7 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdaba0799 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdb7e3a79 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe8785076 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x44f5a3dc cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7bdc8634 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x86c2a3a2 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a1a5f10 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x644814c0 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x97b1db46 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xf58f7247 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9da1747b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xcd8a9b85 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe6113a8c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6330082a hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd99aa012 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x84783add onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xb52f995f onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0806b046 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x38ee5df2 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xafc3abcd brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2e81bd6b denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x0f1d63c9 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x26da282e spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x49e1a659 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x05554377 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ab4f834 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0fcfb25a ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x221fc832 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34c119a0 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x477491f5 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x47e1f8f0 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x518aed5c ubi_open_volume_nm -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 0xb5cffad7 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd5896d60 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa303a92 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb3a3264 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb9b6506 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfdb57f92 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x11ea649c mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x191e7d1e mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x26078d89 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2ce81cbd mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4d2f1dfb mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5394acdc devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7e9c2fbe mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8550968e devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8cc88a0d mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x92bf6582 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x97147f7d mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9d5a08da mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf50d4534 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8cd9a8ce devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfcbccd4b arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1cfe1e95 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x34e5b77c c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x458137fa unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5209c95b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x94ec2ed0 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbb013dbd register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3a16b073 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x40b4fd82 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8df75923 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaee07727 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0caf8295 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d3b8d35 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x14b5ec1f can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16e47634 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x220b074c close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3169a077 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3bd3b553 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ebcadb1 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x59a03e54 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x60c53ec5 can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x60ccc750 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a8de712 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f48f5f2 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86b3f5e8 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x975c6817 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d8fda2c can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7d5113c alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb449ea60 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb76b24b1 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2b67515 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8770394 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce4cdac6 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd50c6156 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb3597bd register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2d6c3c5 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8572819 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfc466203 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1f02ddcb m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x47a9e798 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5bf47a67 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5f73570a m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6086c974 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x652b1385 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xceaeae60 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf0850912 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1cc0e3ec free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7a67c4f6 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa47a0830 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe7d5365 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe677b4bf lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ff60a88 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x107c8df5 ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1a6a7801 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x37684d88 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x39458f9c ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x48dbb1f9 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4f4de3a3 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x549e7c06 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5521276f ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5a8c976b ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8addbca6 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x990a7963 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9b3e3cd0 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9bbdbf77 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa0d7bc94 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa6724fbd ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbfeca6d0 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x001e284e rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0ca25c40 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0da81c32 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x122641dd rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1295f19a rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x18930111 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x355bb38b rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x61899028 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x65bc0c2f rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6e7f2be3 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x876f7a38 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xac71fb91 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb5f0fbb2 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe91a9540 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfa0a79ab realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfe15e883 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0909f1f3 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x2efd545f arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0085c60c mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00d98b4a mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0103374f mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x013e8146 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0314a034 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0596af78 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cf184e0 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5fbe7a mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eaa5e1b mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x110caf04 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11dbb8ec mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f74e59 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15e51464 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17d4c876 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a7dcc65 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b943b21 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c1bcfb1 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca4ae47 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2150a6b4 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228d1cc8 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x272c1025 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x290d3bcd mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2abb2e84 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2acf1c4e mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d442053 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e5ad8eb mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fbef938 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x300d96a9 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x335bae6c mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33e392a7 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x346cf407 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c956b9 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373f5be2 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39daca0d mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40910632 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41e8e4da mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43821d73 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4435346a mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x467bb297 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48b5ed31 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bfa752 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf919e6 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb8e6aa mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53676a1e mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b2b60e mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556260a4 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ea8225 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ec935d __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a17a243 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bb34717 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d381e78 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ecb290f mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efd0e3a __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62d34623 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62f752ee mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d918dd mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69de2e28 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b0a4f84 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b5ac60d mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cedda70 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7143b0ff mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71476629 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x737125bf mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74eb6728 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x773b5527 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f7a21f0 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81eeeed3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86191dc2 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878474bf mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8976c535 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d69f38 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91ceb985 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x927edfb2 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x939da772 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bcc103 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9651499c mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aba9a50 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d356a69 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f15eb24 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f67190f mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2cc4b3a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa415d822 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa596f344 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a08086 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa801cb9b mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2602adc mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb701548c mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8327866 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb899adba mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ff77ef mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9778e3a mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb49f48 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc7cb072 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc91c9b7 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6bd7b2 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe2be6ff mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a78f6a mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc665447a mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9fdb2ab mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc94e489 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccfe9577 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd16470b7 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38209dc mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7c0a59d mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f1b8c8 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda36ea90 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1babc3 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbbb790e mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc461efe mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd06602 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde467756 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf658df8 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a44795 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe49858d9 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe909fcde mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe95d5a87 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebc9522e mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecd722ea mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeff2164 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefea843b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf080e048 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf58567df mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6247f84 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6b5b347 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf84b2499 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb46e9da mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039612ff mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0449eac2 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069e1daf mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07cec011 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082ae077 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08ae5381 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c35429c mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e18f0e1 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164bdc5f mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b70ecbc mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e557031 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f90fa5a mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23ac6c58 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x276c3c22 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29f063d3 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ed2eadb mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f8aedad mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3065acbe mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30acf1f0 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x330e66f4 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35a31560 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c02bee mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36597b18 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c92985b mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d82af4c mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41deb9eb mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420f67b2 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45585df5 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de83d65 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5027dbd1 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x512e8d48 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e15d0e mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52522e74 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53fe2e8d mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d57955 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5592c6ac mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a9d12f mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cbeaecf mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60fd089d mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64c56c1b mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x670fd283 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ba4c8b mlx5_nic_vport_query_local_lb -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 0x73d95d61 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x755ef5a6 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a04b334 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8289f821 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872c6b0a mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876c51bc mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91595ac5 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94eb812d mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98245bd8 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a226eef mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b3e61ea mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cfd1d62 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fbdf84a mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1b3c61b mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2fd2964 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d4e14a mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa71aacdb mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9233900 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a249b3 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba55937 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabeb598e mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39e3fff mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d2fb51 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a887df mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbce07562 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd17e494 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1003100 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc18a3c6f mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc452a034 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e3a726 mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc525847c mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc53b8ea8 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9db1761 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef86afe mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4fcb0b4 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc1d647d mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe279fe75 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe761b83c mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb413cbf mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebabcabc mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef316349 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef90284f mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf18dc147 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6d8ae59 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff45a1e4 mlx5_query_port_oper_mtu -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 0x920512a6 devm_regmap_init_encx24j600 -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 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa44291bf stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb619da57 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc967e139 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf131cc40 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x05f41634 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x19b8ab96 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4487fa36 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x50a3bb1f stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x591fced4 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1eea96fd w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3faddce0 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd58b8f9d w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfca59f95 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0xabd3e18a geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xade92564 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbad9599a ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc73a93f7 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe4667cd3 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf8365bfc ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7e19af76 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa36336a6 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc65d2635 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe6865786 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb16d868e net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe359efdf net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b963a54 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d4beaf7 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ea12db4 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40f71e1d bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44543136 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x462c1b13 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53d0c9bb bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64bd3220 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x66e0d41d bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x671879bc bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d1dee28 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72569a36 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79895da5 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8308337b bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fae5f77 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd190691 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc88cb384 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfde50ff2 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x0467348c mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x1a861d3e mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -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 0x1584ce6d phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa90e20b1 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaa273e16 phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdc414740 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x3aa9ce40 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x5b4e4ecc tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x97d08c07 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xb5f36648 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xc65d3386 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xdd4bf975 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xe5fae7a9 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xeb882ec4 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xf8fcf9f5 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x004f8760 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4844a685 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4f38ba4d usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9dc1b0d3 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb4889241 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x12cf6e00 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1d99aac4 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x53938355 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x647c7287 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e6369e2 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb0f79861 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb295dc9a cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc0fd4f0b cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf1489f55 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x23e615ee rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x48d2699c rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x56815f8f rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x91304098 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6be6dac generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfb559636 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x084a7a93 usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x112821d1 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ae48621 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1da99564 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x328762a6 usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36aa3696 usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36d07223 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c2ab145 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41083336 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x442e158e usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4463b790 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46381265 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x502f804a usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54e463c9 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d30891a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79ef1048 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7eaee4c4 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8949c763 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e00581c usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc0bf243 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9f9ab48 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdf032af usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf6e7e6d usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf70b9d6 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd50d3f37 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcfa49b6 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed0b1779 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf10308a3 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf18238f0 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5a0c7c2 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7a0d685 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff1e12d0 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffd64a9f usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9e70de49 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xbea54845 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc4bf5588 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfad63844 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1f975d6e i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2829d0b0 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4f5e2cd7 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4f7113f3 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x57cb21e4 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6b72dca8 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6bb10b4b i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x734e74a1 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7fb1e787 i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x975d0a6d i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xafbece04 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb4cbf52b i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbbb8a483 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe87e3123 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfa6624f2 i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfb55c8c8 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x923f984d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3380622e il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d1729e9 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57ed64bd il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61ae715c _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8dea160 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x011c4e2e iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0189c36f iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08145e8f iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c0c509b iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x136df8e8 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x158b5444 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x177648aa iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d00644f iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e5e0e32 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2b6352 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ad62f4c iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48e8442f iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a6a904d iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53d0dced iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55fefa6c iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ae6b044 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5cc4491b _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x654b652a iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68b4b711 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6bbc665b iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4c9977 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x705b8a47 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x741d285e __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x79d5092b iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fa8e1b8 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cce402a iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f8140bf iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92df3c7b iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ec3393f __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa15386ec iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4cd64b9 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4e22417 iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4e5220f iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6435b16 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4fd5f40 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7535a83 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8aee9ed __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7f7a26b iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8bb52fe iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce7ce3b9 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2fcfdeb iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7067920 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb2b367a iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb5cde2b __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde16ad16 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe07684bc iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1275d53 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1a2e070 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3e23c94 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe48e5ce0 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec57e03b iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf48490e5 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf89db5a2 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9ac0dcb iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbe0f386 iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0a1acb47 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x158cd87a p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x50c185d2 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5bac513a p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x687ce0d9 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7b06f128 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fd117ba p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xae7f1ff2 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd6557bb9 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x016fa698 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0f234b0d lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2751a898 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3fb4ed28 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41297b07 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4422364f lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6d726c21 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x94bc62ea lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97327c31 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b3e3b4d lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa3e0c93a lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb30086f2 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc78f5102 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd4dd99b5 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe8614b2b lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xeb2d2833 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4c48cc56 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4e35ecde lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x602306fd lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x95157b70 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb3ea2de6 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc3c9ff9a lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc7ed40c9 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfa69a97e lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b42d1db mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x241fcd1c mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3cddcfe5 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41570a9b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58387c35 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x612c28db mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d14cd3d mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x703d6028 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x779c90cf mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c126af0 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d9620e8 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fde197d mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x84509bb7 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f5e9992 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94218dd3 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x977e48a3 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9a335160 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb46c5b7 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc9dbcee mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd749dc62 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd97c5b9c mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf799eb73 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfbfe10bc mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe81aacd mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01454456 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03825aae mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04299bfe mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05a5aded __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e65c5b5 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f563db2 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fbd3634 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20126fe0 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20c9dd05 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25bf16e4 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b24995b mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31f864f0 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x323554e9 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x332c5617 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34af94e5 mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x495f3957 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x509bc87f mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x547f1054 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54b5a23f mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64bdccd1 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x680c9766 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f8da6b0 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7402ce35 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7970899b mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b513a74 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x821d7238 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84d9dc74 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x868bd394 mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x886c9946 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8da1c434 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fefb1e5 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90062d8c mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x991bda70 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9dca1aa2 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0cc5d87 mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf32bb91 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb031779f __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0294abb mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0abdfda mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1a41bc0 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcafa0d92 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6353caf __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7c45047 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd862a50e mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2f564c7 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4667ba0 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea839292 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec5ef40f mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf11aff66 mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2f9c529 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf517ef25 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8e5ede5 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbf1590f mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0369c2e7 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x158b66c6 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6f546acf mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7ec4d46c mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe0a11a4a mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe59ddbb6 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf007d06e mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfe0efd5d mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x051ecf38 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x85dfdd0a mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9cbc5c58 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd83130d0 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdac89cd4 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe5846af3 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xecb4e2cd mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05d7eaba mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a055f0c mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13037740 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1be443c5 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bec6db2 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e335082 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f89342f mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x231cddb3 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b3be738 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x316e13bb mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33eff114 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3527d2dd mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c10ecde mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x414ec270 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47479169 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e74dc2f mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4fc730ff mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5175ca39 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52c4e803 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 0x5d3500a6 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63c87efa mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x650a3335 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66dc3d68 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7001ac92 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72bc3e78 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73e4d4a2 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74dc07f2 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75ed774b mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84281e6f mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84d088df mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89dd6b8e mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8eae2b37 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91c7f5ac mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92b43484 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99b60263 mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b6b1776 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bce0cba mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e353fb7 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa27a7308 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa38df79f mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa59bf29e mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5a28f7c mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6d2c487 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa9c16fe mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad7253d8 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb009b665 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1f4cbe1 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2cfb77c mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf6c1f51 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf8e313d mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1b7acf1 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb0f05f3 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd44d4784 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7c80e05 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd99dedfe mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1da04bc mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe859fdcb mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf25c4549 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5e6f9c7 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf66f6f9e mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb1827b4 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcca5ff6 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfec29ae9 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3b5203fa mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3da1b81d mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x96678673 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa1ad838e mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xabd15951 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xccd3516c mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd87e9bf9 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x01bd3f52 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x022d92c0 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x194b2d36 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1bdcdbd1 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23d371dd mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x388fe613 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x624e0381 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7dfbb2d2 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x868a81c7 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ce43fbd mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa114d987 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa6c043f4 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb6cb6786 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf4160fa mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd26d5fe5 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde0dc743 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe21f7f76 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe4f1ad58 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfb55eeac mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x056ae64b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x13d3b23f qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x15f3310f qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1dde5655 qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x274e1e52 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 0x6e6e0c3b qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa24fdacd qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbb7b7f18 qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfd285723 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x021e80a6 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07681756 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07df281e rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1801a27c rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19ee1c8c rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2196e6b7 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2bc4c08e rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d04d03d rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ad63d02 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d4f379d rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a9e5ece rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66521d7f rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69299b2c rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a239543 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77fe8727 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d63e6be rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x821a0c90 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b22f614 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90c6c902 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1cf0cab rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa420c4a4 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa892a4db rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8be821a rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3ec5021 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5946dbf rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d7967f rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3612921 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5a960b8 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9057150 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc0ca839 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0cb08b1 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdae2d319 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf388d80 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe39495a9 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe52fafcf rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7a0281c rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe88df9f1 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0ea9873 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1aef493 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2354c27 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4e46b6a rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc2569a9 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfcd579f9 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfcf7a25e rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x069e5b9f rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32f0f81a rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3b1e7daf rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5b5014ce rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5cc039a1 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7b2328d7 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83a7b7f8 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x85598856 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x86d67977 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99fe7ca0 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaf318cc2 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb6a85f1b rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc184b5b2 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc3df2477 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdecbb66b rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xef41b8c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x074b1941 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x087197c0 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1fa32f4c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2cd65d34 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30434c57 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32d26f42 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x330911d4 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x389c8c97 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b9720c6 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4127629c rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b9042ef rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52514323 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x539b1ba4 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5535f1c4 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x584fe521 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5bea2c07 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d9f0da9 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x614732f7 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x657b3f46 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x693ead52 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ed102a0 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7705290d rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77955117 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78896bdf rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d65e7b1 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81a4d9b7 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8485113c rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x874bbd6e rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x999922f8 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c40ed9d rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8498820 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab514e26 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xadc967d4 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae2387ec rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf16759e rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0b1052e rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb74090be rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb495d03 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc77f8ee8 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbb77641 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd0396c6d rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda95a266 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde0980e1 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe410ffe8 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4c77f8f rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf61efea3 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0636ec62 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x13018142 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4876b4d0 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x83de7784 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc79b2667 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x03674708 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x25445e48 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x94f76c74 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd68c1933 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x085bd7e2 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18cfe6ec rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x29d76108 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x333e72df rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x37fcf039 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3bb24f92 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x453b9cb5 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5dc11d51 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f056e08 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7279777f rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7c45acbc rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8fca3c88 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0e90d81 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc98a6ccd rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfa42a1e rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xefb9b344 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52da70d3 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x621a5b88 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83ff2951 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x976cca6f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01343be3 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01b48bc0 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09e09803 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ad0fe8e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a23e241 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3fef3dc7 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5aef387f rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63159dc0 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6be6e9a5 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f4dd6a8 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c1e9b9c rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e52b236 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91642036 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d35cbbf rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3f60cd6 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5ae6acf rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa79948ca rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab1685ef rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf2399cc rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf85f2df rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc231da7c rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0a93a36 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7e1939b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc5706f4 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb6d009f rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03a6e2af rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x173c8b6b rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b113345 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2eea9218 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x356e8eb6 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x358d539b rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43f5b235 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48125973 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b185fdc read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e5af95b rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58ac6a25 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c23b44c rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f3a9c52 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x806f0c85 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81bac419 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87b2801c rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f56fc95 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4fe9edb rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbffaa164 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca64d483 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6add6e7 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd909cf1d rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee7dbaf8 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf08a4b2d rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9559a46 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 0x370c439a rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x39ed1295 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c5486fd rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x85d530c4 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc778a99c rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x121f3222 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x31965070 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5c43faff cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x951f8436 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0c1429d7 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8ab32e8a wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbcea6361 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d30a1a wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12354b4c wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ed4ecf7 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2045c90a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2beb583d wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d8cf354 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f87f897 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f2ed739 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x400b7fcb wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x433fe8d1 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43e964f5 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ca29f7f wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55cefd95 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a106bc2 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x619f39eb wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76136e18 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77bbf9a9 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x788b922e wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x820b99b5 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d35324e wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e0a4359 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92a97a73 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93c327f5 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x945a775a wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a7053bf wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa35da6a0 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4b99e9e wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4ede9c0 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6763f67 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6c740a2 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa367a5a wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb12e2fb7 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdb0d57f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd44fffe6 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda99f2a2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe573d8fa wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6f45563 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe78a9e14 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef6ffbf4 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf21de941 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf89c9a2c wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc3130cf wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffece039 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1902b496 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9f1af3b3 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae96311e nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xef04528b nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3fa2ca9d pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x96413d17 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc32255ac pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe68454b4 pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0c1bd13a st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2811d628 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2ba3b34b st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2db48b87 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x645438be st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa319598b st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa651d09f st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb3c58566 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb95cf295 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xcc134634 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe15c2970 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2f2cca99 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 0x6debf472 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf04f6543 ntb_transport_register_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/nvme/host/nvme-core 0x00910541 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x012314cd nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x087d51ab nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09f79094 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a20048c nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1065881f nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18f94102 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19876274 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b77cd3b nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c059ba9 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d2a0924 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c2b7f67 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ea8193c nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x367662be nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54f30447 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6960e434 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b5a8ce2 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d3abacd nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8757ff55 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dca11da nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x926296d2 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9737df56 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c622905 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab80e368 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3f02f57 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4173f74 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb56c7130 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9b4b534 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf74850a nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc546ef85 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd35556cd nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4243324 nvme_remove_namespaces -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 0xe38d5929 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5e29641 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6ffc113 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedaa60a2 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee45404e nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee9f6a17 nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc67673f nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x40d6037d __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5fa429f5 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7f031eec nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8133ed6d nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a24e2b3 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x999b6ecf nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9d6542d7 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa2e68b87 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa320d5b8 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbcbfe65a nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc0faa667 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc88f73f5 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd9b9a881 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 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 0xd2112c45 nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01cbbebb nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0e5af2df nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x15a1de37 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x258e18aa nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x28c5490a nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x36581a9b nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6cc6e834 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a790368 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7b8f2575 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8ca62d15 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xabaea615 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x17a2f1d9 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x87927681 nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xddb93c97 nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfee33ec7 nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xa351741f switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x0f549f11 ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x229bd7c8 ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x90668e7f ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xbba7be8d ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xc846ca2e ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xeffc1804 get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xf519ecf8 ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xf8bb1fd5 ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xf9a73f92 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13f26a70 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2601fae8 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x581aeaae tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6bbcd171 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc11c5b86 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe52f7c0c tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x046bde53 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xcec6b887 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xe3bd5bce omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3ff57e7a reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4ed7b347 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9bfc79f4 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb49d4f51 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x312d39b2 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4154e4aa bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8bdff335 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x731a2567 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7d5a48ea pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdaeeb69f pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x207c7027 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2452dcb8 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4b996521 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5df4c86d ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x83db0d05 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x857687d0 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd69355be ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x162bab4f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1a2ef6df mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1cd8c429 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3e819c1e mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbd494541 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x27a45e41 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4fad4b71 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8c4063d4 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8dbf8bbe wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaaae3309 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe6e44203 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3212491a wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0783a9c2 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2d197d5f qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x30664737 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6cffce6f qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8fa761ce qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xcd3d3743 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfade39f0 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2755ee19 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x30c47ff8 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3d80f117 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb2ae4d56 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf2568c09 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x28cbd8ce qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xaefbe8c0 qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x0737e0d9 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x052b955c cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x062ccd31 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0eb69dcf cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0feb85cb cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23e106ae cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24ee043d cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2659e1fb cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d1e682a cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30e04c61 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3bc8b3b5 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ea1d94 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x455fd3b3 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d151259 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x547e8e0f cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55c106c0 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59561a91 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b49c062 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b6e4574 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f033698 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60a5eeaf cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61999d9b cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a577987 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a7c5e93 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72e77637 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7788e75f cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x835dcb8c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x858d12f4 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8910b94a cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x893b7e2d cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a3a8bdf cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c73f82a cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa68f34c9 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae8e01de cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb790959b cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7b678ed cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3aaab08 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce5e7354 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfb90b66 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd548fc05 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7acbb09 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9384399 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc56f7d6 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdce8258d cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf49a450 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x092bdb86 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x117ff470 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cbd4ece fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x310cc466 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39c888ef fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a709bf1 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f1eb90d fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b15f1e4 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8153bf6f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b2438e6 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92ba1a6c fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbab09a0a fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc129ddc6 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd006bab9 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb34f3a0 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf95e930f fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x72241eae fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xeb5dc405 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1de01ddd iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x73b8c28a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0e9d25e iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcd880311 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd596513d iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea0b1f54 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf5735439 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x559c2254 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0626570e iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07738f1e iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0abb098a iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bb53180 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c70c993 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15383390 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15a5ae05 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x164bea15 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x246a4bd7 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25384245 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a7b7a30 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ee571c2 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f599906 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32f88a09 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37fd3375 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42ac41a3 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a2cbbc2 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52a7e515 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56a7e695 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59b46817 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ccf4443 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b00604 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65a2c230 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x697a6864 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x752ff4aa iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cb58aa7 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7de57b36 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8060b99d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94908426 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c33ce38 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e11e60d iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa00c3c34 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa190b6aa __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa42ded0b iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7c22e21 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa89f7502 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4776f99 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b188a6 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbabbf760 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbadc907c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc80f441 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfff4392a iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0637144c iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29535852 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4527e17f iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54b81411 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60e2da7e iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x627d17c5 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70a6e0d9 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71b52192 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7748ca01 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a86c31c iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa709d4d2 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab98c6c3 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabda24e5 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcae93433 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcefccf82 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4cf8396 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf15fb260 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18ee9eda sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1beaf2f1 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21afe68c sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28b213a9 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2af530b9 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ec07363 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f1f8afe sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32d23313 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41a036ab dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52d9d2b8 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c1dc1f9 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x840a244b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x847e3653 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85b109ba sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x941d5fcb sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96769097 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d95ea32 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb477349a sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6b72e72 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf8b3f56 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb7c5272 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2198a56 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2ecb77a sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd274f2c sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10c232f8 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10e20a85 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x191ccaad __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bae8654 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e456dc8 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e5fbcc8 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x282d39fa iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b8899eb iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32c825e9 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b309363 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c99454c iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dd4f8d2 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43aea7d6 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x441eede4 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55f49158 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d9d2b2c __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6520fec2 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70ff52f7 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75957acb iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7af84492 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd7d6be __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85a2bcc2 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x862104a3 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x894de597 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89870ec2 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99d3ad79 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a2528a6 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaef39268 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2b4726c iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5c47e0b iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb832765e iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc81b402 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc00afbb2 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc82f74c iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccc7caf7 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2e0ae96 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf7d587a iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2431b82 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe721135d iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8c11097 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb747f66 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf62cdcd3 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf682787e iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf94fd0f2 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0dfa9c63 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x117ab62a sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5c37d129 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9ade440b sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc8280589 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x07992667 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1fe9b142 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4eefb681 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x646eae31 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf1931273 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfdc7e630 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20adbdc0 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3966962c ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4ae448d5 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x51ec2616 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6ff6b082 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8e7881f2 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb4caccc9 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe534bbda ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xecba07f1 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0c4cca99 ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x22387dbb ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x441c2919 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x49396c3a ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6a176031 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xac3a1816 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd6aa64ac ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a7f1cb5 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4db00a1f siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5faaa1d8 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb21242fc siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb2ff3b8a siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd42f7c3f siox_master_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x135b35a2 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d20e738 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22ce3d5d slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23906ffd slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3841ab85 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b76d363 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x473e3a5a slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b8c9651 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6bca228a slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7bdb2df4 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c082ecf of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x832f1673 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8b20e37a slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9dd53036 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad377f73 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbd8ff349 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc30bc968 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc6f422c2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcecf4ab7 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd00ae730 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8597473 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe971774f slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9811161 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb055d00 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3ef330a slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfdf71758 slim_free_txn_tid -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 0x898bf2c0 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2ee99f35 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x443d0d64 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6f057365 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc3ee479d apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x06285798 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x07f855f3 qcom_llcc_probe -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x09afc16e llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x14f99b76 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x2027e82d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x62ff6e92 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x64a75a37 qcom_llcc_remove -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xdffee709 llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x0646d539 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6c2eab43 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x841c4682 qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x9c6bd08e qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x34da86f7 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x5df11e3a sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x93430118 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x29cef6f2 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x51789be8 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x631d8803 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb24671b7 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc5069bf9 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf854eed4 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x045da4ce dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3f69803a dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5ec5237a dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x628e21ce dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x892d1063 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1196469f spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x195b9e85 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5ff37869 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00fc5422 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05833920 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x095691f2 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0eb9fae5 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16f3e249 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x272c1378 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35c0e8ac spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6a69ac0b spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7aaee2c4 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fec180e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b1b932f spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9c6cad8a spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xadf429de spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb016c50f spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb071615f spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd878f3db spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xddd03b27 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe84d2d59 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0ddb722d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x091612cd comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0aba1124 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0b68d775 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e7cb5d7 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x239595f8 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29cb8a83 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42d6c94c comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4465edb8 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5bc48ad1 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64c78727 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73977fbe comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7f698038 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x85b0a9b5 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8737ab6a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x936425bd comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x995dccb6 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9dce51d3 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ea3e77f comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4844266 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa8484763 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa856cef1 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaaf6865 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb37c88a0 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba2ad022 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbaf1b924 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe818624 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc3164707 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6ded5be comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc20de31 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd15d89de comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd3024208 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd4d3f67c comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe03e5348 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1440b50 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe5f54fe4 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf172ff80 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0441e7bc comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0f00c963 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x53a75c1d comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5579aecc comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x73f26634 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9470a033 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb232d7b6 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfbaae571 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x301e3f17 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4fc3ccfd comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xac2e26c6 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc2f2dfb7 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd3a01941 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe14c1fe1 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x14de4921 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x495b3f89 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x5bd3dd43 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x9f8db090 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x18dd4f8a comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2995572e comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3c8fc744 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3d3c0f1e comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4f839da9 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6414ae33 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x646a32ea comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x707c2de0 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7d8e4b33 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x93b54f7f comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa4b0b644 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdb75cd55 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xeb950b42 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaefa31ff subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd7b2faa9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xdd74646f subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x6ce57fe1 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45323809 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x47de49aa mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a4e9776 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7d9aa7a7 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x84e57564 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x86536aff mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x92c71e8d mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb1534bee mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2d84287 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd4403beb mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1f7183f mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe7e9ec35 mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe9bbbfd1 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xedfb8124 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfb642a7e mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff4fa927 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7b7b966d labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xe9a2b13a labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x04535c68 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2e9189c1 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3fcb31bc ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x47621659 ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x498e910c ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5079690d ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x77ec6a8c ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9ad2cabc ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9c3fa8f1 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa5a0247a ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb3b6310a ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xba046ff9 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd2e79f0b ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd4171294 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xeb302676 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xefb8b89f ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x359a94a6 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x775831ad ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7b9ba6f5 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa103479b ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa3cb93aa ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf8baf20c ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x48819ffc comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5648289f comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x77568d68 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x94dd8d07 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa62487c2 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb2d5338b comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd36b42b8 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0de8574e anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0e4776cc anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3129bbd5 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x32e5e13e anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3528ac8d anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x47a1bcd7 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4dac9123 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f9de9b5 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa90bd04a anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xac4d0fd9 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xad640a75 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb2073ae7 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfa81e20e 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 0x35b05e80 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6b02caa1 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8ee6d093 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb99c5c87 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x09391684 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2738688a gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x493556bf gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5bab8b9d gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x747570cd gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x89260119 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9bb8dc3b gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9f4c442e gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa163d7fc gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa650ae5e gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb466276b gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd57e75d8 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfa202852 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x38a1165a gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3b2ae04a gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5be16ae2 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x782b3883 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8490c820 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8acce443 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x957a037c gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa92268e9 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb1219630 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbf043ab6 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcc23ee43 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfdd4ad81 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xff8e146f gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 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 0x864e750a gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xee699c45 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x2b8152b8 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd862e6cc gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x38e8ea48 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xab003a12 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x957e86c7 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0255b39c gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0eb3290d gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x16d82740 gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1bfd3a7b gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x238e82b4 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x4c79153e gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7764cb1f gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8126a484 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3565dca gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa61ac0e7 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb86f9bdd gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xba4a331c gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xbc54e23b gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xbcf3a74a gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd0c543a7 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd151b4a4 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf6199c2b gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x03c2b78b imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0861cecd imx_media_enum_ipu_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x096b29af imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0cd83a3a imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x182cba9d imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27852dab imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2a410de6 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2dea1896 imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x305e8f69 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x374b5412 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x38ff70c1 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x43a8df38 imx_media_enum_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4b50f186 imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x59a9180a imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x61008412 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6461c72d imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x78cd1b03 imx_media_mbus_fmt_to_pix_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x86e0d860 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8760f64c imx_media_ipu_image_to_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ddea09e imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ecbc324 imx_media_find_format -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 0xa98ba391 imx_media_find_ipu_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xab6f73ad imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb816c87d imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc053440f imx_media_create_csi_of_links -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc62ca08a imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcc332e76 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd33b0f2c imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd65cd4d0 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd8d632b8 imx_media_create_of_links -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xda5fb1d3 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xee3fc957 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf612486d imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf7918930 imx_media_enum_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfe2c0bb4 imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03f84588 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0b55a0ec amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x100852c2 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x27cae258 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x41ad03c8 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x63213f8d amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x721534e1 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x83596558 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x97c9788e amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9e705fbb amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb3a0ae2b amvdec_add_ts_reorder -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd3d3b9e4 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd3fae316 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdd4d634c amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xee39747d amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xef54ce83 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0a29dbf4 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2889224f most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4edca65d most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x8269a494 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x94917484 most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xa3552846 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xac46d2fb most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb1783284 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xbc30a6c8 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc7715de1 most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe3a5804d most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe4d6db8c most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe934ab14 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf3e9ea07 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x68d09fa7 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbe021d4a nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xc219450b nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x05cf6629 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x13cd324d spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x19a7dc23 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1cd48e51 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x228e9790 synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x24c22a99 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e7e21d7 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x32e2443f spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4f91ed6b spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x600eb970 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7babd404 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8181ceec speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x87578449 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8842b067 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9371cb6a spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9e59cb06 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xad779d7f spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf662ba7 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc7c38e97 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x4a4b5fac i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x51ab8c27 i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xc8e4dfac i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x1e8f111e umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x2991fc3d __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x4a68d27a umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb0b005d8 umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xeb562630 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xebcbbe80 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xef94feaa umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xf07db53a umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x04fb548c uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x05948e15 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x105fa1db uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1127e6f2 uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x12b6660a uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1a67cf7e uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1aeb4e02 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2d11d684 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x36ce1ac4 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3798978a uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3813e894 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3bfd7125 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3e75342e uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x46e86d28 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5fcb8fc8 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x61c1e724 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x67811181 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x682fd9a8 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6a3d8c00 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x76fbb171 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x78964aef uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7cd921cc uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x80d2f3e5 uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9047de99 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x91ad892b uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x929277d8 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x933638bb uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9f90e39c uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa0536daf uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa5dbb086 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa700af61 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb7edee2f uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc729a71d uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd5b31bfa uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdb664f81 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe3dcf236 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe9244abf uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfac616ea uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfdfeeef1 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xffaeebfb uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x43dd496b whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5f9d595b chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xa3458d68 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb0331cd6 chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc3ec7fb0 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xdafc1de9 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xdbad2a7f host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xdde1dab8 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x3fea03f4 wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5469c212 wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5ed37512 __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x9954adb5 rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xabdabda1 wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xb3548297 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xbf8b3d91 wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1069f298 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1834d5b8 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2786b2d7 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x36982611 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x384ab2fd wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3983c8ce wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3eb24030 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x41c9abb0 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x4dc5f559 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x63d4fff6 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6dcc2645 wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xbc6bda44 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xd9fecf89 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe447428a wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x083a06f5 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c3de8b8 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x131d3410 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x17d0c74e tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x256200aa tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x482c47b0 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6d8ef6e9 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x74bd9b86 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x797c1534 tee_shm_priv_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9586d14c tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa43d2f03 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa43efc27 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa728c4d0 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa93150ef tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xae72c91c tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1330a62 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb82b6067 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9499da5 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9545152 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc803513f tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc8a51c0b tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xccc1c863 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8f88d5e tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe5e1e05e tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf97c9cc6 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6f2e72c6 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x83470a39 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x903633e5 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x275dff4e usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe1e6aeb8 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3959c3fe ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8b540ada ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf70684f9 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x547c7a70 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6213dfc2 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x985c48b9 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd02e07c1 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd5044ae0 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x101d87b4 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1bfdb945 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x21625cef __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2e43f3a2 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd75f6a0d ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6c6909a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5a742f62 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5ae6f104 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa02362cf u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xae4846f8 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb5cee5f3 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xead82a6a u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0826d42b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x179d4a8d gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e8ece73 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x788ffae5 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ed78e4c gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fe4cea9 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x818c0ef6 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88f81d00 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb172e93d gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb911e3a7 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc4d98844 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5e17486 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd47bd1b0 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd5ea3ae5 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed8f1b73 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x02310200 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x35067ec4 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x868258e1 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf54dff38 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3df5db03 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x62c86ec3 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf38b6cba ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13abcf6f 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 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2c7391b8 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e27a303 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x405ae4aa 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 0x463ab386 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x491090d0 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x51649970 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x585805e2 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5986342c fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x60d8230c 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 0x73bf31c9 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ffe4a2d fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x96ce0e24 fsg_show_removable -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 0xa9ecb263 fsg_common_remove_lun -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 0xc1051d45 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcd734c20 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0c2228f fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fb2fd92 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26e32c31 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3fc6d981 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4240860b rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4b8dbc82 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5453c349 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d21711e rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83cbb014 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x849d9d3b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x958c3d5d rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d646e73 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb964012b rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb522c9f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdff17cb6 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xee7a2189 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02193964 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10532f30 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x123e2bb5 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d396656 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x234648f5 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3503b497 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3aea99fe usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x411f014b usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4359d87f usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44473996 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ba5b738 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50321041 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56c7b485 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x60d4c02a usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f52e3ae usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7124ba73 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x765d98ef usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e9af3e0 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b9c67c7 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d2712f3 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7d34ac7 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa89e02c9 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae8f5dc2 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1c44a17 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf63ed83 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc558a446 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9dcbe03 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc3c5f29 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2471dfc usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd9d3c45a alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4f3c7f0 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf185f37b usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5e47095 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d68c091 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x699f694f init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x87474764 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9365d567 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x940b7044 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9d3af11a udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb0c2e4d9 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb0d7018e udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc0936e7c free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x18e83740 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf3f8166b ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a8f0b64 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x610c2319 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6339c944 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc22bbd75 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc3d23de1 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd7eb2a9d usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdeff8a90 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe4e047e8 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe6017a36 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x944d77b1 am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x91db2470 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x377fe895 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x419e97ab tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x75616610 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xe6424ea5 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x56fc3753 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00af616f usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0169989e usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04a3956e usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29d50265 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c5f054f usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x491f067d usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5fff6b3b usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x60270dfc usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x741b76e4 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x75a13fd7 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ca81bbc usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8532be8a usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85a456e8 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x998e4243 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa46128c6 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa8a13fe7 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaca6ce81 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0a3caf7 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd262a32a usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5b5c83c usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf786604f usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x45b4c696 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xfa5ee6db dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xe7a1cb12 tcpci_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 0xa809cd26 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/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x06209623 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0867ab64 typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1669876c typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1da099d7 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21502599 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x236b8cdb typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3754de46 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e9a30a3 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45c2a538 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a6b32ba __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4dfb8770 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54df1cff typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x633b6742 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6528e779 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65927fa6 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74bb1ce8 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74f46c5b typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7bfe4159 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93bee195 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9865e894 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa61df009 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4503ec2 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb487cea2 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb7aa568 typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd4c7957 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc4703ad7 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2389f11 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2eadd2a typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5d206f8 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6d3d68a typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec7205d1 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf206af38 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x227cfced ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6288883f ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x81ca5152 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa8d8b41c ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xab9d6a54 ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0df1fa15 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0ea090cc usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x220ed6c7 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2c860406 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3c1dac3c usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5f0f23c1 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x74476069 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x849aee34 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xadf113f3 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc1bf3216 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf15bfe6c usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf1c0cd46 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7e80cd8 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x40376c0e mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x28ba7129 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x4a146464 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcf5906aa __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf0887f0b vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0344d723 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x14af76c7 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b767de5 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48367694 vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5da60f7b vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8f99267 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd26042e vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeeea5368 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xef58c918 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x3bd3da6e vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x62eab13b vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c7dc378 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19e932a8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1da272e4 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e334118 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27e1825a vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x302ffa23 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3de9e7f3 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5025451d vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51d6bdd9 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x525be38e vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57f56bfe vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x599fd97a vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5bdd7209 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65c8bcd8 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ab6825a vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c191073 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ea3914a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x777f0c9d vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80d9970e vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89d2aff4 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d27f99f vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9090c8c5 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x921db1b2 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b62fa3d vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0d51ad1 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa35b3a60 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab23494a vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb054bfde vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc899f19 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccee7e58 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0faf818 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd52a735d vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd674d61f vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd98c1656 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef0231d8 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1caf310 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3557b3d vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff26ddfc vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2b583d34 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x37d6e350 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x44456515 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5a733a32 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa92b4236 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaef212b6 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd5c4ea34 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x82a5e326 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa5214990 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb31df50d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x24c0663d omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe2a9c267 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf0ce1131 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfd6c1813 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1b8798c5 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xff284b2f sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x23eb32db w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x343ea455 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x34f857db w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x47931b19 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5173f74d w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6e29fada w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x981af2f0 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaf0e3e01 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xafd9d44e w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc88a107b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xda999fe3 w1_touch_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3fb27dc3 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa6a490e2 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe1c0cb96 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x090853f8 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x24001ea1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x478d8664 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x479a2eb3 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb610a094 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc3ce1324 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf5ba8cf9 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x013c16d0 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03568579 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a5cf81c nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b02594e nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fda012f nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x105c5512 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10bae6b4 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x121d7247 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129dad2b nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14566a21 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f2dae6 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1667da8f put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17d588f5 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19381fb9 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2eb5ae nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d6ed6b7 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d896e6a nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e77ba13 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2289051e nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x237c48a0 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2724f299 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2924a099 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a7c81c3 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ab2981f nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ea11ad9 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x308f344e nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b37610 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x334e3f0f nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34933244 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e4b98bf nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ed203aa nfs_file_release -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 0x40a4eb90 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41feed58 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44dbe6ec nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45572f84 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x460f0063 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f44ea7 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a107f9 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x499a234f nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae61262 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b497f13 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51104e0a nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5242a9a0 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55027613 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5620f7e6 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5813bec5 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58ab0b0b nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be151a4 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c08501c nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c57f218 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e21b03a nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f162d5b nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60730e05 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x642a06af nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6600414b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66a6094c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c7a3d6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d9387e0 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc06b96 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7127431d nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7141de07 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x726c49ed nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f63ae9 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a2d3ae2 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a802de5 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bdcb23b nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ca2fc5f nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ccf1694 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dcc2de1 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebf4ace __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8058faca nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80a24372 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e577cc nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8264043c nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8377234b nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84975979 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896bde56 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89f03056 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc5e97d nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e84e379 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ff7f4df nfs_free_server -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 0x923a4de1 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x968eed8f nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d160ed nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98138f85 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x995c7228 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x997afdf0 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x998fc94b nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b354179 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfa1286 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de26c98 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e956c96 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1cf88f5 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20d48b2 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ff641f nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa56831f3 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5d4a48f nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7cec946 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5a64495 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9b221e9 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc75e73 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc018edce nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b63b6b nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1934430 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc398b9c0 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5aaf48e nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7614417 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f8f788 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc91cd18e nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcab9c5a0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc64cd80 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccfc0b60 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7d60ea nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd34a86d9 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7ab88bb nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd7cba9e unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde69c5c5 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded57201 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe16f0bee nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe40722a5 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae4988e nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebfcb6e7 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec9fcf20 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1b14053 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2f5372b nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3cb7eb1 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40b1705 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8199266 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa6782fd nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd16dc51 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe10a87b nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x477e056c nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0535b2ec pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bc20830 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d87bafb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10d806a1 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2445f2ab nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26a55c47 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2adb317e pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aef3af7 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e98fc56 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34d6cf3c nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36751a61 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bab5635 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cf1f3f4 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e73f10c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5205f7ed __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5458c3b9 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54aae314 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5788ec5a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f1e1956 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6498b1fe pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65a1d6f1 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69348ff9 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5dee0c nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e16b52a __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e4b9ab1 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x744f23d2 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75690506 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x789f9956 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b57bdb5 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83424157 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86037cf0 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x862e9635 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86db5983 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8814ae1e pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c2a2fc6 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94248131 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x968dbe7e nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9780fdda pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a76df02 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa004415a nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1251d2 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac3af716 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf861e6a nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2a46464 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3a431e9 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85de48c __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb75439c pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbff65f9e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151e45f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2003d66 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3708c44 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc717e7b8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8fcd895 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9e56dc2 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca5741a7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2161233 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5a31dac pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5dc216d pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1eca9bd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe57194c1 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe675d280 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7044e1b nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf184b5d2 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6702fbc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf86067d1 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd65990b pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x18485480 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7342f113 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xee2dcb2d locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd9d87a9f nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdb2653f9 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7d5ff885 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8af66a67 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc828de60 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xca61ee3d o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe4a219bc o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xea1beaa5 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfaefe936 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x24d8cc19 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x26d5148e dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2819632a dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x380e5f49 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x58bee861 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe6b5aec5 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 0x1dafe6ff ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3d17289b ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa6dbde7c ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd430b71d ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x21abd2ca torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x91a2011f _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe58eda19 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x17e30218 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x86d139ce notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x58b03517 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc3bd4206 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x022dd2ef garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x3aaf9cbe garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x4b6f82c1 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x62b3590d garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x6869d3bb garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9bb93897 garp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x04517a88 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x16fe41e7 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x8f6ab3e0 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x91b030fb mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xca148275 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xe7b63d57 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0xa60cc92f stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xc195a3ab stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x13cdf641 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x8e2edf74 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 0x19a463c9 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 0x34abf6ca l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6092645c l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x68a43fb3 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a428d8a l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8588e821 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9ed8f473 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xccb1b6c7 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe5c8cce5 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xe53f0c64 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1615fb03 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d1520a1 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d2b60ec br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x47722584 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e2be08a br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5276639b br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x55565a6c br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x55dc203b br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x619bca56 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x70bab115 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb35b67f4 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb63dae66 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc74474e br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf281b17 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6a7b6aa br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xda1d6cb4 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeedfd99c br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8128e69 br_vlan_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x72353f5a failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x9a387f63 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xd2d784e7 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x059986aa dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a9abb7b dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b405188 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20ca9a70 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2af11799 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x313598f7 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f806f8a dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51c93bae dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53a77322 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55da6582 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5653be25 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d051c48 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x622f8e20 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c26f12 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x730be055 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x73399143 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ac87c87 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89f697c1 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x94c24df5 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x94cb1525 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa43e19f0 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2acd7ec dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6dbe66a dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc228067c dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6a4b656 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe99cb34f dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb468732 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb6e8cef dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xecb35a5b dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0784aa7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf27a4485 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe8d0d22 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xffd945e3 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1534a9e7 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3f2200e1 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x592cb58b dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9cefe1f6 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb50e9df1 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc1c8f877 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x16f8f837 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30122a18 dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33aa32ff dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46aef8d5 dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x579a2069 dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64ec6e09 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6724b467 dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7021ec6c dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x750cc388 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x769a9eab dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8b0e1302 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d45e5ce dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9db2b7e8 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa350ac44 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd36548a call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc117e1b9 dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc700991b dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8d265ba dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde05e558 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde7d2bf1 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe27f8658 dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x62f08ffb dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9ff2ba94 dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xf009acdd dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xf403fc8d dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3a59e65d ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x46c4d554 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6e924ce6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb7678430 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x58b2e12f 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 0xb49382fd ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x25d8078f esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc02986e3 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc797aa9b esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x40af72d7 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8f5673c8 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44979640 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7307e0da inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8479257a inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x90474729 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xac75b9e4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc02e547a inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc9e244be inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdfb19375 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed7e6942 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x87d1cf52 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0845481a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a166676 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f0a6871 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59bfbd31 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x734d24da ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa08d575d ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf256621 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb10842fd ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb9ec8190 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbbd4055b ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbffc2740 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc590b027 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc76cb2bc ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd552531c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5bc3eb3 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff54706c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x3ab19d07 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xccda75c1 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xac982df4 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x13a8535e nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x154b1595 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x47f41e0e nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbb4cc1e9 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4dcbfcf nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf3d2aa6b nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc67caf40 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x48b74b59 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa1bec64d nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf64e2f77 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x71683229 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7fa4debf nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x40ec2e46 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4b434d02 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x544f8863 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc1fef579 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf02bffc6 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x01cfb23c udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x096acab7 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1285e9b5 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e943492 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x56cbc379 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9cee6391 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa01419e3 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa7bdaf17 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x10a8c5fd esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x651b8796 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8c64ba20 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x05ba7273 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x54dc0e47 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x83fcb51d ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0b1d56b7 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x60c60541 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xaf73556b ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa8dd9fab nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xfc9ea773 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3fce0812 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6d83b20c nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7d7ca4b5 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc8cbafd3 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe071a92b nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfa21f436 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x411b0e29 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2363587c nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5217e940 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x783741b4 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbb856e0b nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe0835621 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ebabffd l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b004f1c l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d3e488d l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dbd2f70 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a6bfd20 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4348e203 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4bf277c2 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51a15fc2 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63d21050 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x656d31a4 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b93ad83 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87ae0d93 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c460100 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c14d438 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3e27e4d l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb835ad6f l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc527ca20 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa387e309 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x074ad182 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57f15bd1 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5934d00b ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c7cbb0e ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6f8e00af ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x74aa3301 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c549bdd ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7db771d9 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3167415 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb036cc69 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb28915ff ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4543658 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9d66edc ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdce8681c ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec21b5dc ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0d2e9ad wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x387f5df6 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x82372888 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xada57026 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdfa9afce mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe6307d1e mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1542e9aa ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x210a88a2 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 0x2cebb6b0 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33c27d26 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42a2a81c ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5d13f36d ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64fbab96 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a814df7 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d50fa0a ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8640f065 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa71d73e3 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xadaabacc ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcda810f3 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd11acc60 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3e10b0b ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc65bf20 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6acb73c ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8a1bdc8 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6868d495 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa2801c3b ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc9a81fd2 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xddea7986 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8aa2ccf1 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c71310f nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc47c1343 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xda39d2d5 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf804ba62 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0134c41d nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02b4f37e nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03c4649e nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x062c0421 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06a478a1 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10070550 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10385ab9 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c808bc9 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dd76864 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a7d8ee nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25f446e4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x278429d4 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b8577b5 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bb78ea4 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c1c5733 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3016b9b4 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32bf119b nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x414e2802 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41a62a50 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x429cb45d nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x436b314d nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f1b262 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc1d4d5 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c345fa2 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e1e6e37 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f2df8ef nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61e049de nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6522dcfd nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67413986 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x747d143a nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791cc560 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a216b8e nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dc01e00 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f14db2f nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84ee753d nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89c57d58 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b78f35c nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93c496f4 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982e1e3f nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a3c5dae nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b0aae5b nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b8b2302 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ca76015 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cbf14e4 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8dd75a nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ef1a08b nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa134b05e nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa33f3a1f nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6aa73d4 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa739a12e nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8750c12 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab61dd4c nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac7cc79e nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2e0a77a nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb361d24d nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb36acc9b nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3e942c5 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4123101 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba122669 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf93b89c nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0a49fd3 nf_ct_expect_alloc -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 0xc5dfd465 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc61e573d nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc72c662 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd3465fa nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd8d9107 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcda0f8be __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfaa1eb2 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfb819e7 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2e6e407 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3d89e9e nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5a5a5b1 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd906b2e1 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda304889 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7134c9 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdde4f689 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0b20f8 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2508542 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe35c0545 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4c8c794 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb1c37c9 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xaa4e4334 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc457ec32 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x38044790 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0a359342 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x34cdcf8a nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6a9e62d7 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7261e38c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8b09f74a nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x918e8967 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9eb12bfb set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb69c19e2 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd3927f94 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff406cdc set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x0d4e0bb8 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x063f9498 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x387cfdd8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb3663dfe nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf68178c4 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1bdefd22 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x465d34a7 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4fab558b ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x89841f0b nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad15da26 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcffaf284 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd3295051 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa493394b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x44149567 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3afa0fa0 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x68daca90 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf0470695 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0826a7a8 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5128a953 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x52c65afb flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f6b9887 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c47b207 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f9c0451 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa8d3fdee flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb2c9730b nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xca630e11 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0a375b6 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf929096c nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfc0c28e3 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x365425af nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x36cf737e nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x86f28245 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc21be3f3 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd0e8266a nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd3a12674 nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x030d5376 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b29643d nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x324f161e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x358f04ff nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x42f42adf nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x69d8d2d8 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x715dcf07 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73970c93 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8e60e444 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91134b93 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9249fa4d nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa589d01e nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa90bbcf3 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd16aeb2a nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7b953d0 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 0xec549056 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1409cf40 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x177b07c9 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x567639bc ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x775abd24 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7936de66 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9146053f synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb3da0704 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd8ac4144 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9e8e5b2 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd97deab nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdffb0b35 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a015b95 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d0bb231 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10707b5e __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c1a1531 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ea7576c nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25160288 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c2ee0f8 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30f45924 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41d68add nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ee85072 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53327b89 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5539f3af nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f4b2955 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60f3235c nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62a28f6e nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68e7a92b nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77c15342 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7959cb12 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c4676e4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80ed8dcf nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x824a2be6 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83e20d86 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d72d203 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f439cda nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92c73895 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x931a0fbe nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93bc883e nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9949d9e9 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9eeb64e0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f5f13da nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbafe5f0a nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4a122d6 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4ba1e04 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcccd7904 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcc79846 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe070b6a5 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf5fc51df nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfcce170d nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b870e06 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4cb7cd2d nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x997aa9b6 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa8db0d7d nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd8c4ad16 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf89d26ab nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9745cb20 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdf063637 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf51c20fd nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4bcdcea9 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9d2e0771 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x127f1477 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6eb0000e nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9cf2c00d nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xae0a368c nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6ac6a9d3 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x829c86f4 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf7760cc9 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1206db6d xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17b9f394 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18a8ca84 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21afd784 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x26bfec92 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57a06e8e xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a5c28a4 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b3303bc xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x843db2b6 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a20ddda xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95f9fccd xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0766ca8 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5e616f1 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd56c1e9 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfea08d05 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x87529c7b xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xff38dc1c xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x566332c8 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6e967bf4 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd3ec86b2 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0388aa84 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x35c7fabb nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe9605019 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x32f7e882 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xf94dd40d nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x001c4b15 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x153a5582 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1de7d2e1 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3fb44e21 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e3be1a6 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7598d9f9 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x0a67c8c8 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x10824500 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x5317ecec psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xcf4cc3a6 psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x51cb3824 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xab3b7dde qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xec487f5f qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x15c1f75c rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x19177383 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x2101e585 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x31eb52e6 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x367cab22 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x36a5c9e9 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x38cb815e rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x38e77f91 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3b9027c9 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x4178652c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x428bbd5c rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x580b22d9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5cb0d08c rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x5f5d613b rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x629204e5 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6cdbe2e9 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x7678bc86 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x7b4074f1 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x7d453975 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x871a2019 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x97752899 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9bcaf498 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x9c85f85b rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xa2e483de rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa32f8dcb rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xbf8d1779 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5d8c998 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xe69195d7 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x62c024f0 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x9ee50e24 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3159814e sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x9e43e690 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa1b87e3d sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf930d52c sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x06894e97 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x09deaec1 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x0e40d16d smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x199e561a smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x2bbc13d9 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2fd37c9e smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x62d7b12d smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x72a44a93 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xc2877f1f smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf8aaf531 smcd_handle_irq -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x06bfcb70 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1495dc4d 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 0x41ee1ca3 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa6ae4319 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01b6b8d2 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c04851 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x020567fc cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0356c79b rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0393a529 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04ab1060 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06074212 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0730530d xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x078c3703 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08497110 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a7e175d rpc_sleep_on -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 0x0e235246 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ca3b91 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f7365e rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11705947 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11bd72c7 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ac6935 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13264d28 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133c53d2 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14eb1075 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a69605 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15aa1326 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16260870 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1629346f rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17da3760 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1828f1bf rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b058cf6 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bbdfc6c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bfc11d7 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1c65b5 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c73fad2 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f08d4a2 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fef83ad rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x213b4413 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22408d71 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228b0a7c svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2343392a svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258ae4c7 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d3082b rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286e7ee0 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f23d47 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afc1dc1 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b3defce svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1dceab xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d59134c rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe1bd7f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3218da62 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34de4e9f xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35925728 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366f98b1 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3768ae57 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b5c553 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39651e91 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7d52fa rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b5410df bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc7964c svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc90bbd svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c0154a8 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8f4f9e xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cea4ccf rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da3625c cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff68fa2 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f8bc38 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4156545c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c5e5fa rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e75ab0 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d2d31d rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x446a1ccf xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e220b7 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f967dc xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c681f4 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476a0c81 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47aefaf4 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a6fcf17 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cee8b61 svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e57268c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a2b58a __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52dfb8e2 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5515ce69 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57596b2a svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589dcffc rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a05b5a7 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a32ae8e rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c55a169 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cfaa905 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4f4dd3 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f9872ad sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c5d210 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x635f0c79 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64bab7b0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65cfbd34 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f8a324 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6727cc6a xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67752904 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6816e27f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6842a414 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68664f38 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6869decd cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b43451c sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c7fe7a5 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8a39d9 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d6a4d35 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbe0895 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e0ef1e2 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e6f8d75 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72fd26c1 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b081aa6 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b6b2967 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d4b78dc svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eebf037 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x802ebc03 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803b22c6 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a5d203 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ab442b rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83059504 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83143e43 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b31708 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e40621 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f68306 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86057366 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861011f0 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x879b12ac rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87cd389b xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a86c4cb rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c132100 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9aecfc rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x914a49c6 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925a1085 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e80ff2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x939405d7 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9509ded3 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x965652fc xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ac811a svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99de5cc2 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99fb674e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a460161 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c493c2c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c494159 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d913978 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e044ed rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1960582 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d678d1 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa28f2026 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39b2a2a rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f6b306 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa778296e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93f8380 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa32f61 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaef913b auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab2dce06 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc5ae7e rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafb75551 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c4584b rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4241967 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb427d27f rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb46f05e7 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb47b0c06 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb49ff668 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ad3522 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3ee668 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb437522 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb93c2ca svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbf2f418 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc23b890 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5a5ba0 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce7e4f2 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe6edde6 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf75485e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc209795f svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc25ede5a cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2bbac2d rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc418d1a3 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc54c9eb0 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc709a8b8 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7588c1c rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7fe7b7b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8219d14 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b08b2d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb524b9a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb780fe0 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc242c6b rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca33c5b sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd82f1d4 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdc394ce rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6b67d1 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4bb611f xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d98dd2 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87c1b40 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92746ba xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc1acec xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc92c886 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd3ba20c xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea6d775 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe044cb75 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe126b2f6 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe232420b xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c1fd11 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33239d0 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36c5551 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe444f677 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52b230b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5352042 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ab9c50 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7223c1c xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe723ea28 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90e880a svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef02e4a3 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef113ad1 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeffb8926 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf14a7bd1 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2440ed0 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf328b8a5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf38b04a1 svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62a6bfc write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6374d72 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65d2d7e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a51978 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8747715 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d5f92f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb15148c rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff01167a xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffdfb159 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/tls/tls 0x0a02de2f tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xd45e9aba 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 0x05125394 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07158118 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ff9ac25 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x118a551f virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1230b9e7 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1287e04a virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13550c45 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37be0bc8 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3945eb54 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x401fd4cc virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42123bb7 virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46f93e39 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b391186 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4bd5be3d virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b07e437 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5dc58fa7 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x699c1178 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d339ead virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75960c5b virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ab63d0d virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bd38c7f virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83473573 virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f3d9cea virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91920167 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x964fbe23 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0eab8d0 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa88491b1 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3cd4dd6 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9a76cca virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe234ec82 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2714667 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9e9f6b6 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6e7515e virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7f96552 virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb6aea2f virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe3730de virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e14ce7c vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2fd5fe0e vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3be36b18 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ce43702 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6744624f vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x682ad3cb vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6c85b0a9 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d3341e5 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70582bd9 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x736e6c89 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c353050 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82c5de59 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb83a08 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xadc2fec1 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb67580d1 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbceb941d vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5f77e41 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6796bcf vsock_remove_tap -EXPORT_SYMBOL_GPL net/wimax/wimax 0x116a4c58 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2cb8b377 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x42b81e7a wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0x50f9f888 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5c8c58fc wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x83aa1282 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x911050ac wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x9e4f1eba wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb410a816 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xcba395e4 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe59c4020 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xec3374df wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4d28adb wimax_state_change -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f86ef6a cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c61cd1a cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28029aeb cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30acff2f cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4cfa4305 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5bd31989 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x735a97c0 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f8d6e76 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f189e03 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc152d3bf cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc847008c cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcda9cf89 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdc41e99f cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe4e9f17a cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf4728186 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7781b9d cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5e0eea9e ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x744d398c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa2319efa ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd4af27a7 ipcomp_output -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xba0f1c34 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf45eaa4c __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1e16886e amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x56305124 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x566535ed amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5f8458ba amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x618aa31b amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x95797889 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc70318f6 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03b2baa1 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07d6b77e snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a6ed5c6 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c631210 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10f94186 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1197a6af snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x170b0a9f snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x182a1dd5 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b8afa6a snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d9660a9 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x220ffb20 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26684335 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27fe1f2f snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3113a04f snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34c61e21 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x352c8454 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3573ed7b snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a184b0d snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b5fb439 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48a89bca snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b2c99fd snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c85fbdc snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cf4916c snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d361020 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f4b21b4 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5038d2ff snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50482b80 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53be0083 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5aa57429 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b87c0d0 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e08b38b snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6007d6a7 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b874af8 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fc1a587 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x723f4e0f snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7827af70 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c45243b snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf4bf13 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e41a167 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f189bcb snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x801c4fd9 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x821720cf snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84ef50b6 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89a0572a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8caf7741 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e6df9ad snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9422e023 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97abc62b snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4f142fb snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa63c5b24 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae9f9695 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf98b5f8 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb07f5953 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb18bf567 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6541fc6 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb915bd5f snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc322aa2b snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc475fc48 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc60588f snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xceb91dfb snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd67d41b9 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8de5cef snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda4fbde2 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb07bb2c snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc31e6c0 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe17689ae snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2a75b1b snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe48dd4a3 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeabac12e snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb8a5169 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb8c751c snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec6ae994 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed4cf6c0 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf228a2dc snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf51ab532 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5fa887b snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf972c43a snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb7f4de3 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe0a6945 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff0adb3e snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff3d77b9 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff912dc3 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x971b6589 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x09c87503 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x93b343ab snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb1d2c044 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5cb9d3d snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc6361f6a snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe7ef1805 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x022c1a6b snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b99d25 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05676cdd snd_hda_shutup_pins -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 0x082113d5 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0859a0fe snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c853c6f snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f9c9f43 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11442cb5 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1291af84 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1397921d snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15147d48 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15d70614 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b74de7c snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ca3a378 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cd6be48 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d3d2a9e snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25819248 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2756a6e1 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x332a9eb8 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x334d644b snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f60efae snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f808e27 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3faea276 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40c24ef8 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44f6b1d1 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45136ca8 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463ec4e6 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4edb71df snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5159b4b0 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51f74b0b snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53b49c4e snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5410cb6a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x549b0d56 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56f3e1d0 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575282bf snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57939bde snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59710ff4 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ce1585d snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ef91125 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fd80234 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x629d137d snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62e80e4d snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64354ef9 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x666bab4f snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x669b2c52 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b5014c snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x691bd646 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cf509f4 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72c93926 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x751f5bc9 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7910c856 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b7fcf0a snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fd4cb96 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fee3e8f __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83917845 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84d8a114 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8601e381 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86804197 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876d58e2 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87e5cf81 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x887d8823 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x897fd395 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89e471d7 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aa5bccb snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8db86841 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b24c3d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x942bc81d snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95ae5009 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x968d760d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8eb5d3 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a9b2278 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aee003e snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa16261fc snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1d9e14d snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2e16121 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3286b19 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3bc760d snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa70cbfc9 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7ca8653 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa865748a snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8ccf487 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacc09008 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf650e32 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2349812 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb271589e snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb91b20f6 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb96c22bc snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7962cd snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe910b77 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbea27763 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2b8b071 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e66039 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5437c79 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc564cd9b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc69f119e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8d22368 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb918558 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc745d6b snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc7f3527 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1c4f111 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd390b281 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd70c8477 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd94541b5 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9c4b60a azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb3ba0d4 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf02cccf snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe01ac005 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3fc14f4 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe48ec6e0 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6f7ec80 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaea08e3 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4aef2d snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed70bcf8 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf298ba00 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6108124 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf86620bb snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8a58a17 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb6b0e16 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb7ac385 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcc060dc azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff0392d0 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x03ee013f snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x057a6e78 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05faa28c snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x070f5873 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19428a9f snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1986c6e0 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c405f9e snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x32e91afe snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34c96da4 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x395f1ebb snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3c215ebd snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x555a945f 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 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96901bdd snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e6e5a84 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaeb79ac0 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xafe21388 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb603f02f snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc4dafa58 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7f38fd5 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3549ca5 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xedad2ccb snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb9d8af8 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x94d35092 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xdc5498f0 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x010611ec adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x11a750e5 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1ee0a49d adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3fb847dd adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5b20f826 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6ada7f42 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8ac6203f adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9bf8ad4 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb672ad39 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbd38efa6 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02d7ed2e arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0a32e0ec arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x141120e6 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1787ee0d arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1c6e2c5b arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2265915f arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x339e4caa arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35cda456 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3bdafa71 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x402da8f5 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x580acf4b arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x59fa2fbb arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a0f123d arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5ba50bd1 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x60c379b0 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x60d91ffc arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63008cee arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x68fbbbe8 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x76b5d641 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b83e92c arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7db94d9b arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e33265d arizona_set_sysclk -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 0x83c8a83d arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x83f9ad75 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x85b81fbe arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x88829712 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bc87a09 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fd95b0c arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94ef2301 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9dadf1c5 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fcd54a0 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa3bea8fb arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9f6b791 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab09a2b4 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb6bb5bc3 arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5c75265 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcc3047c5 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd0afd326 arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd1d5f85a arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd24ea83d arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3e7c8d1 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3ff5dad arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd72aa04f arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xda4518d2 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe80b6c48 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf8a0fb0f arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfb523ba6 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4e2e6e38 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x836e74e6 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x037b8cd9 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5c91771e cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x78245cb3 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x977455f9 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xee098436 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x47bb62d8 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9799b49c cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb96d5462 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0020f8ed da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc03bf105 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc8c5bf99 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x903368c0 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc47aa640 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x25be69e2 hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xe3d6f55d max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x9b294db6 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x421e25ef nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2ac132b5 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x530ee18c pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xbb397340 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x27cdfc76 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x54be4da4 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0573a3b6 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x98360a13 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x235a7b25 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x97925b32 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbb556e74 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc20d6c6d pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3a1f3ac6 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9a02bcd6 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb9032ad0 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe996af93 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5a6ffd5a rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5e7fe2dd rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x67859ef8 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7775c979 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xa1367300 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc107a681 rt5677_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x425a794d rt5677_spi_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xa8c77592 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6399461 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x73a9aea8 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7e8a151d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x98854455 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa01e8fae sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb957c1be sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x95e8ff08 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xae9ed716 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcb15b9da ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd15d0a4b ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa3392d18 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x419bb7ad ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x3ed09f3f twl6040_hs_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x8178c349 twl6040_get_dl1_gain -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xa3477cb1 twl6040_get_hs_step_size -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xb6ab12c7 twl6040_get_trim_value -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xd0a76a76 twl6040_get_clk_id -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x05fa3b22 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c934752 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x19b66a7f wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1bb2e4a5 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x49cfdded wm_adsp2_component_probe -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 0x5fc79d6f wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x62e6cc35 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x68df5e64 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7cfc0499 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fecf379 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x88273117 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x927425ad wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x94c220b9 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa79379bc wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa9fe360f wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb87b2585 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb9fefb36 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb6c8342 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc5e1ffa1 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc8d131a8 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcaa0dd85 wm_adsp_fw_get -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 0xfdb81e8e wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfdda4747 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x05647646 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x29e66169 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3cb815ad wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x42959b61 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4de4b6f7 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9a6a0118 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa17237d9 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe1622d74 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1cad65f2 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x78796ebd wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbe7396eb wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe1763462 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x57590765 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xed7c57b7 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xbd3294a2 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xed272911 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x184000c3 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x667a6138 fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x02a0f480 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x039eff47 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0dd7b056 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x54679d1b asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5711517a asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5aeb26bf asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7249b0d8 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x906f4a7c asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x915be2f1 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92b540b6 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc15c6d66 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd98590d6 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdcf69940 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd7d0a64 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe0b1d60c asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe863b7f6 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee6b2352 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4ca474c asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1495641b mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1c613b55 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x31dea6e0 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a263e0a mtk_afe_pcm_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a5654d3 mtk_afe_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3b3ec9ee mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x52759dab mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x57128910 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x58e3e86b mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x624afa42 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x74882ba7 mtk_afe_dai_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x75b2cb93 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8d9ac7c5 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc0db72a5 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf6a166b mtk_afe_dai_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd3d6ca86 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef3b35d5 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2aa25dd2 axg_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2afd6e3c axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x590cc07d axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xef638b57 g12a_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2db27767 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x40bf4a64 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x57580b1c axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x679cd72f axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9734c838 axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb711a93e axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xeaf1cae4 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x078c68ff axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x183ea3a5 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3fc168ce q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xaec3b4bb q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xb75202b1 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x151ae9d4 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read -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 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe432623a q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0b45b950 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2a88f2c8 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7d9f1507 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9f2e4230 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4a61873d asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x211bd9ab rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x0340de96 idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xb482be74 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1d7475b1 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x346c8197 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3f5f9184 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd981954a snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x61fe431e tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa9cea920 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb0ae26a5 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x067ec359 tegra_asoc_utils_fini -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x4250eb57 tegra_asoc_utils_set_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x4fb2bf88 tegra_asoc_utils_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xa084597d tegra_asoc_utils_set_ac97_rate -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x386bbc30 tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6060e6f9 tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xa1ff9485 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x887db6e3 omap_mcpdm_configure_dn_offsets -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xb6208e84 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xcaf16e97 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1a822299 uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x257d4b00 uniphier_aio_dai_suspend -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x37137ce2 uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x67b7e8fa uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x700c0b54 uniphier_aio_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x8cc73ba7 uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xb6927923 uniphier_aio_dai_resume -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xd7f069de uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xeeb32748 uniphier_aio_i2s_ops -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fe7c389 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1635ea77 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x21a21c14 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24b61b3c line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4690ffdf line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x925b708e line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad1dc527 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb6247d80 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc996f6b6 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcaad7b90 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xccd4638f line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce34770e line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe6d5f547 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4cd7328 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6474eed line6_suspend -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 0x0000075d scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x00121456 device_create -EXPORT_SYMBOL_GPL vmlinux 0x00249865 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x002a45a5 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x0036cdbc crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x007d1fd6 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x008b889c unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x00b7e3a5 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00c68928 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x00ceae44 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00d73a77 __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x00e231d7 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x00ef8995 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x011c548e tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x01257ce4 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL vmlinux 0x01313e75 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01890590 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x018a443c crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x01913167 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x019555ca sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x0197f52c mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x019edb5c of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x01a6deb5 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x01abfbfb edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x01bd6553 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d1d8ed ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x01d747f5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e6dbc5 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x021ec4a2 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x021f23a0 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x022493cf snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x0266858f generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x027121d7 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x0287253b wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x0289c4ad mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x02903a78 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x02991177 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x02992467 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x029a5c99 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x029b390d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x02c25c2e blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x02d7f2fc device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x02e2262a mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02fbaac1 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0315150a cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032df7b8 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x033601ba unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03554945 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x035ac50d switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x036045c8 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x036333d2 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x0365cb45 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x03709b62 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x037184cd pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x03830b3a fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x0394299e pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a76aee pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03c8c412 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x03cc80a0 nanddev_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x03d2cfbf rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x03dfeb13 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x03ea1a2f fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x0402a54a __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x0405409c sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x044185c5 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0443bb2f snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046e50fd snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0472ad80 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x0473b66b dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x047d1836 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x047decc8 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x047efafd tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04914794 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x04949261 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04b0a553 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x04b24546 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x04b35897 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x04b93234 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x04b9babe bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x04bf49a1 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x04c18844 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cb76fd rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x04e03ff7 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05418e14 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x0541e5d4 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x0541ea0e find_module -EXPORT_SYMBOL_GPL vmlinux 0x0544aac4 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055a4fad cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x055ab863 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x055c10e6 sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0563866f device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0578daf0 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x057fbfa0 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05902625 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x05a6725e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x05b6a962 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x05b989e2 nand_status_op -EXPORT_SYMBOL_GPL vmlinux 0x05c9f237 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x05ce09a5 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05de8a18 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x05e7ddfe inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x05e84187 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x05ee27e8 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0603f892 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x061ec744 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x063f42d5 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x0647bc24 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06511896 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x065f86fe crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0662f945 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x06643dd8 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x069cb559 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x06a14494 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x06a176a5 deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x06baf042 flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x06cd5024 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x06e10bfc tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x06e150b5 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06ebe794 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x06f2d089 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x06f2e3c9 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x06f446bb rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x06faa1c1 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x06fea36d do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x070bb305 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x071ebc80 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072602f8 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x0743e014 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x075494cd usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x07631a27 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0764a334 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x0777298d sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x077c87e8 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x078fe6c4 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x079ece2e gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x07aebb0c mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x07b07ac8 ipv6_dup_options -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 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07c24bb0 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x07c4d452 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0x07e75624 clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x07edafd8 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x07f58b42 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07fa4acc irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x084a9ab8 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x087431c5 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08951d3f dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x08a8eebb ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x08aeed7f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x08bbfefe cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x08c1a2ee dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x08c52106 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x08c56b8c devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x08c8f06b virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x08d21c16 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08e94300 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x08e9d00c nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x08fc5fa5 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x0915e4c0 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x091dd5a1 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09203f80 i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0x0929f96d pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x093215d1 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x093ca698 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x0953b032 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x0953f2b5 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x0956b414 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x09626dd1 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x0971859a kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x097b6011 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x097f15e6 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x098b4cdb smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x0992ee96 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x09999865 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x099c482a crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x09ad26bd ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bb8da0 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x09bc3172 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x09bd2c7f usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x09c89f5f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x09d93550 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x09e232ad devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09eb4a1b tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x09f9bf64 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x0a045419 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x0a10fd74 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x0a1dd546 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x0a1e9999 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x0a22631c clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x0a336385 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0a337310 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x0a34f679 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0a3e0fb6 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x0a405be9 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x0a5103b3 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0a5b77af sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a77b5a0 vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0x0a8c97d4 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0a901889 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x0a9ca061 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x0abc3d93 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0ac50e75 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0ac9ab72 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x0ad1c787 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x0ae733a7 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x0aff497b dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0b2c5ce4 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x0b36eac8 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x0b4817ce of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0b4d0e12 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b525091 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x0b5543e5 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x0b641750 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x0b6e9f75 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x0b813ca6 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x0b876799 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x0b8e5a75 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0b916332 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x0b97c5c7 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb209fe blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x0be1c15a crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x0befdb69 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0bf6c9e5 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0bfafa0d badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x0c070d45 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c11513c tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0c15aca3 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c412625 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x0c45e15d usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0c4efed9 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x0c5f5581 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0x0c63b2b1 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0c925107 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x0ca2c737 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cc3066a kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x0cc452d3 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x0cc97b6b gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x0cd0fd71 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x0cf00361 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cf13186 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x0cf81cbf devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d1f499d crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d2894f7 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d2e6ef3 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d2e9553 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x0d436c36 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d49d7db devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x0d4bcdd2 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d5f3584 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x0d74b006 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x0d79c512 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x0d8d7e21 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x0d8e1863 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x0d984ea4 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x0da0c619 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0dbd248b debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x0dbf3a8e mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0dbfdc10 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0dc26a1b ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dc93306 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ddb191d regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de640c1 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0dec297d kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x0defa633 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x0dfe29a8 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0dfe8e07 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x0dfff9c0 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x0e004b56 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x0e09e4d2 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0e350943 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x0e38e700 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x0e714314 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0e976673 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x0ea45ed2 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0eb19c12 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0eda1b05 snd_compr_stop_error -EXPORT_SYMBOL_GPL vmlinux 0x0f04d702 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0f0ac99f blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x0f1c68c9 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x0f201277 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f4319e1 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x0f773519 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f840f17 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x0f869559 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x0f89c1b0 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x0f958a62 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x0fad7de8 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x0fc58b0e gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x0fd6f09b pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x0fdc8b29 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x0fdf7bb8 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x0fe999c7 dapm_pinctrl_event -EXPORT_SYMBOL_GPL vmlinux 0x0ff2bb79 device_add -EXPORT_SYMBOL_GPL vmlinux 0x1002796f of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x100ae9de devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x1056763b flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0x105d2693 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x1073cd7e of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x10774221 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x1083264b gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x10898bec pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x10a118ec dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x10b4b739 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x10d0794d usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x10d1968c snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x10dae49b kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f4aa74 clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x11146644 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x1116f619 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x11376315 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x114f671c ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x1155364e dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x1158014a dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x116cfdee hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x116ddb97 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x118159cf usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x119ce87d stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b90ed2 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11e45fc8 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x12102598 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12278a7e regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1227eee6 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x122ea7b2 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12437221 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x1244328c __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x1247d7fe devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x12490ac7 cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x125b8496 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1279ec77 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12b0ad68 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x12b3a181 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x12ba63e8 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x12c630c8 omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0x12cab428 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x12d9488d snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x13000c46 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x13155f48 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131ea698 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x1320565e kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134f217e regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136beca5 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x136f6714 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x1378e0fc blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x137e2312 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1383636d sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x139da3a7 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x139fbfaf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x13baac64 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x13bf816f tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x13c321c3 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0x13c73e17 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x13d1b45f sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x13d649bb iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x13ddf326 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ee6fd1 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1415c41d raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL vmlinux 0x144145c7 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x1448f77b snd_soc_dapm_init -EXPORT_SYMBOL_GPL vmlinux 0x147743eb sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x14844e96 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x149bd583 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x14a41ea1 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14b53216 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x14b85ce6 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14dbccca fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x14e34df4 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x14ffc504 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x150757d1 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x1507b4bb irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x15308909 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x15350114 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154bc4c7 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x154c9e1b dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1554748c crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x155547b8 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x15604a66 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x1577d5a2 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x15867d8c __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x158dc18f sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x158e6fee software_node_register -EXPORT_SYMBOL_GPL vmlinux 0x15b05c42 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15deb830 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x15df145e blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x15f8792e sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x1613f12f driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x161491dd snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x16273a12 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x162a543f power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x1632b397 edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0x1633a709 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x1649f012 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x16523aae ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x165837a8 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x1666314a dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x16665311 __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x16898615 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x168fc068 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x16cf2e14 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x1700c4c0 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x1708fe31 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x172c3f2e __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x1737d011 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x173b739b clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x1757039a iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x175a041f of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x175ac626 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1760f440 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x1761219c __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x176a7219 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x177853e6 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x177a0633 arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x177c2e7a of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x179138ca sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x17938fc3 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x17945066 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x179d5a14 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x17a085f1 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x17a7b67d wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x17cb41ea __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x17d32a5a gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x17e1b3d5 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x1816f6ab bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x1834f811 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x185594be usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x1855f50e platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186a9699 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x1872e8b3 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x1877c3eb direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0x188f773c virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x18a04c47 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x18acb26f __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x18ae4dfd debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x18b7908a pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x18d18c77 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x18da14b0 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x18ddfa86 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x18df3e7d devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x18e368ca crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x18e38f06 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18ec1edd regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x18ec8c89 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x18ecffee snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x190f3b8b watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x193d9377 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x19452d16 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x19531299 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x195409ee amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1968574a regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19732784 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x197e9e7f usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x1993a4e2 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b8f519 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x19bd29aa sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19d67917 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ee7515 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a104bfa hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a2a8507 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x1a4379fd phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x1a44f6d0 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a64a9be bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6d6787 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a7b1ecd virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x1a818584 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x1a8b6b31 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1a98b5d1 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x1aa37975 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1ab37a24 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x1ab7d340 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x1abe85d5 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1acb27c6 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1ace129d __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x1adc9cf2 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b13a85f phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x1b1adc22 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1b25a6e1 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b6c7475 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b819237 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bb29071 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bcb4bb2 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x1bda029c pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x1be5aa65 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x1bee3820 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x1bf922a1 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x1c0d90e7 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x1c192bd3 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1c23d09f platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c2520c6 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x1c32ae89 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1c4ca6c7 gpiod_get_direction -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 0x1c71faa3 sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1c778a36 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c842156 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8abc9b soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x1c90a308 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1cb131a0 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x1cb9611b dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccd47ca crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x1cd59114 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x1ce8789f devres_get -EXPORT_SYMBOL_GPL vmlinux 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0x1d064a3c sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x1d08fa2e devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1d101fdf devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x1d140b17 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d339912 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0x1d3c17b7 snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x1d5807fe __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x1d5ffe7e disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1d6779da gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x1d706af0 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d8a5fb0 snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0x1d903ff5 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1d95e2c6 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0x1da31cf5 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x1db46574 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x1db95661 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1dbcd8ec alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x1dc647a7 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x1dcaab29 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1de63476 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x1deed5fa wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x1df1d6c8 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e16c666 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x1e1f7fb7 nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x1e204213 musb_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x1e3ace49 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x1e3d63e6 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x1e3fbe25 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1e417fd1 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x1e421d32 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1e467374 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e5ffc5a of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e7e196a dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x1e81b691 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1e836ed7 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9ce10b pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x1ea64404 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x1eb2fc14 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x1eb50dbe sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x1eb8e4d8 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebc7dae of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed4a731 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x1edb7e8f __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x1ee3bf1e platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1efad30a dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f165460 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x1f2df113 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x1f4029a1 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4ac05d elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f60f3ba fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x1f65d261 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x1f727f77 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f7c03b9 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x1f7daeea irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f85537a ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9c0f36 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fc12d92 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x201cf33c noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x20210d6a rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x202a0a7c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x203ddc05 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2053929d gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x207721a8 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2083e645 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x208bc4b7 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x20a0fde5 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x20b0e34c clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x20c29c1e devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x20e02648 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x20e4a3db rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x20f43e8e class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x212b4158 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x212bfc0f of_map_rid -EXPORT_SYMBOL_GPL vmlinux 0x21334d20 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x21374d4d genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x217aece3 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x2196d645 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a75913 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21aef6c2 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x21b1f020 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x21b8defe arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21cdc5ba tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x21d31629 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x21eb19f6 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x220fd2ef regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2212963a led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2231229e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x2241d86b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x224610b1 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x224ac13f nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x22593504 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x225e7661 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x22648c02 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x226893c5 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x226d9dee class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x226fcae3 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x22901e23 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x229b5eda snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22a7ba5f ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x22adae5b snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x22b116f3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x22b7f641 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x22bf0ef5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x22c5edaf device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x22d922c2 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x22eced01 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x23017b97 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x2303c906 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x230e47f3 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x2326cc30 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2336f2de serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x233b87f6 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23434b07 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234f1010 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x23541449 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x2356b2bc inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x235a95e9 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x235ad573 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x235bd0b1 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x23649900 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2399dba1 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0x23aeafa1 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x23b8e177 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x23b96610 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x23c359df snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x23d0e397 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x23df57e9 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x23e48866 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x23e7ed3f subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x23e86172 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x23ecf974 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x23ed94ae tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x23f5e823 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x23f9f0ee dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x240f73e1 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x241e4f75 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x2422fa16 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x243370c0 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x24424348 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x2450621d pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x2472b50d crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x247ddc0d ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24d8785a sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x24e55635 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x24e8236a fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f4cbb3 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x24f5b69c lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fc7caa mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x24ffe51e sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x250ae045 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x25147250 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253852a4 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x253c4ef3 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x2546d8d8 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x2552e97e uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x2554a28d wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x255f4a62 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x25672565 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x257eff66 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x258c0886 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25939d04 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x2594b32e da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x25968b7d virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x25a5594b tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x25b56509 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x25f0440d regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x262a0fe8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x262f4889 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x26459980 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x266a2de4 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x26796c55 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x267f27f6 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x269cef1f fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x26a3cfb9 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x26a8129f devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26aa9967 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b5b8d8 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x26b85aff snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x26bf149f sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2712fba8 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x2718ffef imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0x2726a1c5 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x272d130d rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x272ea3c0 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x2768351d devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x27750a60 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x2776a344 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x27813b78 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x27857894 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x278cb42b crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x278da641 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x27992dae strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x279e0134 clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x27af74f2 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x27b5e5ea kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x27c83bd4 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x27c91285 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x27ebb4b2 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x27ebd0f5 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28132297 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2813e223 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x28199ea0 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x281d8c2d clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x28235148 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28362be4 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x283a424c sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x2847fdfd dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x28573aa6 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2869b46e dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287aca41 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x287baff6 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288b0f14 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x28912410 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x28924f46 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x289c1fb9 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28aaaa09 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b4779f crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x28be7b70 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x28c2120e ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x28d52a0e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x28fa2ac1 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x28ff6cbc ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x292463cf dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x29365202 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x293762f2 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x294658d4 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x294db8ad of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x296601f6 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x296c8661 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x297270d7 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x29800953 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x2987a0e7 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x29890480 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x298fe745 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x299037cd nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0x29a124b5 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x29b66bf3 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x29bb4443 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x29c69cb6 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x29d5b116 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x29dadd13 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x29db1dd6 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a03fa1c ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a119df0 snd_compress_deregister -EXPORT_SYMBOL_GPL vmlinux 0x2a1be9d7 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x2a1fafe9 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x2a32d140 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x2a35ac2f dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2a38f9d3 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x2a3b7075 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2a4e6814 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x2a544dba udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x2a5a7189 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x2a5d2d71 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a5eabab ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a606f08 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x2a643216 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a82ceba lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x2a8dabf9 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x2aa16343 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x2ab84dcf regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2abe0ab7 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x2accb806 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x2ad4c7ce task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x2aecaa4c usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2aed6cec blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x2af0cd4a __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2af174a8 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x2affc501 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x2b173c80 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x2b20612e regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x2b28bf8b irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2b35dd21 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b366745 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x2b3d434e mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b532f28 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x2b6c2ab0 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x2b87eede of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2baed389 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x2bc6dc38 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x2bcea145 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x2bd3c02a device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x2be8f520 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x2bee7789 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2c055bd3 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c22e12a serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c38ef86 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x2c39db04 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2c5cea12 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x2c64334e skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6c5780 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9aefa2 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x2c9cefa6 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x2cbb8721 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x2cbf30b7 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x2cd87bd5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x2cdc3956 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x2ce7e910 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf48f55 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x2cf8c039 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2d00e52b nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x2d07e060 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d288b5b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d43e4cb ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2d5b4111 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x2d66295d regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x2d6d8a53 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2d79b11b debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d7b8db8 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x2d87aabd devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db5acb8 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dca2974 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2ddecdeb spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2e11efc1 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e30509c percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2e31a51f nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0x2e4b2e02 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x2e659023 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x2e66dc31 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x2e71a96e gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x2e8b74b1 snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x2e8d3529 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x2e983b7c sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x2e9d6ff2 device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x2ebb2294 regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ebb7e8a bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecc5724 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x2ecf35d9 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x2ee13c05 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x2ef63434 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f107932 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x2f1a771e crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x2f3e9e00 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2f3edea9 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f409a2d securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f47b22d fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x2f498518 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x2f4cdf30 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x2f5abf62 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x2f5c1223 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2f5cf527 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f6653de ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f826d04 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x2f895416 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2f89f67a list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x2fada522 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x2fc0cf59 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x2fc4d5cc sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2fc7504b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fd4d0d1 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2fd8b843 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x2fdc2c2c l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2fdc4828 trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0x2ffefef8 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x30348e9d software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x30354dde scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x3042ebe7 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x304d56f5 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x30571820 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x3057975b pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x305d522a lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x30677628 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x30681697 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x3069ce2d pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x306c52e9 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x30765148 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x308d4e1b __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x309210fa security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30b19706 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x30b3b9d2 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x30c08640 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x30c10433 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x30cb7b27 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x30d9ba14 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x30f26417 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x3114d44d locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x31200eec i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31339796 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x3134d479 snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x31534529 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x31546617 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x316df3a6 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x31781a74 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x31927192 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a64387 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x31b18b93 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x31c51947 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d534ba spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x31dbbd62 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x31dcd61b crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x31e7ebf6 pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x31ea5c7f clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x31f5273a dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x31fb531c usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x32274085 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x322ddb81 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x3231c21d thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x323982e6 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x324df8f5 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x3255863b tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x325bc217 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x32671d1d pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x32990ea1 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x329ecea0 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x32a1864c update_time -EXPORT_SYMBOL_GPL vmlinux 0x32a569bc led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32af05b9 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x32b4d242 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x32bc2760 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32caed6d fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x32d5e125 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x32d6c792 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x32f29a89 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x33052b45 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x330c7a6e sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x3314c9a6 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x3326978c arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x3330e3bb add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x334cc795 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x334e1ddb usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x335735a3 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335ed42f serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x33619ca0 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x33656fbc spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x336919cd i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL vmlinux 0x33693284 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x336b33ab phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3372721f usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0x337dbc9c class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x33aeba42 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x33c3bc5f register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x33c650b6 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x33c71d3a rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x33cfd035 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x33d8798b spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x33e1b6c9 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x33eb664b __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x3421bdd6 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x342b162f __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x3432e2bf snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x3438dd10 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34451820 usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0x344d3c48 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3454d35d sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x3458ef58 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x34789889 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x34908579 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x34aa7c0b user_update -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b54681 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x34b94718 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x34d1343e led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x34d5c602 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x34d6c60a cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34da5ecb sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x350c72f1 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x35166d51 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x352739e5 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x35293ec3 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353db86e i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x35434993 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x355cc6b8 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x356bd5a2 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x357aec49 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35df33a0 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35f05440 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x35f4dcf2 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x3602d939 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x360e39ab cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x36100bb9 nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362de961 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x362fda1b regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3630f9f5 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x36369b9d rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x36434624 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x364a9bf8 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x364befd1 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x36572a2e devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x366178e8 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x366ad320 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x366b42b7 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x367e925a subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x368a6e2e arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x368f6d36 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36aa6831 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x36af1f16 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x3718d441 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x371a460f xhci_mtk_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x372d44d1 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x374c16a7 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x374de74f splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x376eb6a4 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x3770b370 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x379785d3 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x37a3bd83 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x37a8b118 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x37b9fb8a kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x37c537e1 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x37c8fb06 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x37f8118c fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x38172118 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38246f01 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x38251861 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x38342188 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38545c95 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3869a31d snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL vmlinux 0x38895a39 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3899de98 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x38af03e7 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x38b3c71d sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x38cba3b8 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x38cc89e5 snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x38d29859 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x38d64028 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x38d9ecd3 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38efd596 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x38fb613d blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x38fbba54 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x39054726 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x39112baa irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x39174654 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x391ad942 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x3931f70b dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x393632d1 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x394c485e rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x394e7290 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x397875ec crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x3986645f sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x39926c7f tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x39940a20 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x39bb4c9e ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x39c1b5fc snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x39d175b3 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39d84661 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39db3895 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x39dd42ae usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x39e03b02 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f44c22 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a0c80a3 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x3a2bf5c4 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x3a4b34c5 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6dc43f pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x3a738970 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x3a7771bd devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a8d0307 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa182d1 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0x3aa1dfc1 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x3aa71294 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x3aad379c xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x3aaf6672 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x3acd9ba0 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ae0266c request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x3ae79d61 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x3af56bd0 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x3b04133d tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x3b0bac0f usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x3b0c766f usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x3b2c9084 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x3b3464a2 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x3b3a8dde power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x3b3aae1c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x3b3cee93 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4de178 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x3b6e99f9 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0x3b7922a1 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x3b9d6880 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x3ba26281 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3ba27c0a pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x3bb23aac tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be5392e rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x3bf02f1b ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf807c8 usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0x3c08747d ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x3c0a978a blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c14e980 flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c20f3d5 of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x3c2256d7 nanddev_erase -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2dc424 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x3c36a2c5 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x3c49bca2 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3c4c7eea blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3c5a2294 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x3c651f33 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x3c69b69e spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x3c6dbeeb usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c8eedcf fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x3c9b5fbb ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x3cb27341 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d173a04 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x3d1c4ac5 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3d2d32cf dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d550581 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x3d5d343d platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dce1afa blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x3dd0c7f2 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3dd2d102 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x3dd96e4b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x3de35530 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df69de9 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3dff0e79 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x3e0fd327 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x3e1527da tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x3e204209 cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3e3034be ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x3e30d979 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e3e65e1 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x3e53d824 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x3e56a2aa devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3e5f5622 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x3e60d82d query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x3e6207a2 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7186fa devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x3e91c09c gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x3ea12a28 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x3eae3684 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3eafadd3 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x3eb0ab56 udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x3ed6ba17 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef95e3b __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f0c778d serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x3f23f534 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0x3f290434 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x3f377e4e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3f5021d0 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x3f54f6cf usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x3f634f87 xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x3f7a7d8c da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f97222e pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x3f97f0db clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fc47155 bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x3fc787d3 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x3fdefadb pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3fe4e5be device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3ffd778d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40069947 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x40152cac sdhci_cqe_irq -EXPORT_SYMBOL_GPL vmlinux 0x40198ef8 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x402cd8c0 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x404e7cdf of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x4068209c regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x407011ac debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x40937403 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x409897b8 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40b2ad6c pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x40b96ac0 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x40bbddf7 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x40e82f11 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f13e0c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x410b6f47 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x410d4a20 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x41184758 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x411e8641 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x412c812c ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x4143a592 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x41491337 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414ecd79 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x4159e5cc __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x416a7a72 usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x41705b4a evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x417b9d42 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x417ee375 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41865679 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x4189c7a4 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x418fb64e pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x419fc2f7 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x41afe516 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x41dfe215 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x41e19f6c class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f07e4d sdhci_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x41f9011d devres_find -EXPORT_SYMBOL_GPL vmlinux 0x4203f37c thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42142514 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x421847c4 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x42203c85 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x4236f9e7 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426d6cd9 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42887525 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x42960fa8 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x4296dffd of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x429a73a7 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x42aadcce clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x42ba2fd7 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x42baa24a dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x42c26697 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x42c49592 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x42d608c3 tty_release_struct -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 0x42fc27b3 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x4302a433 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x43187721 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x431e8d7e housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x432f04bd of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x433ea1d7 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x4344e411 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x436d9c6d blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438fdc57 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43b5d0be scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x43e8fa91 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x43f03ac9 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43fcb221 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x4406d54a ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x4411aed2 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x44192756 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x441f57ff free_bch -EXPORT_SYMBOL_GPL vmlinux 0x44229841 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x44339406 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x44342302 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x4448caa9 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x445180dc clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x44531e80 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x446f11f6 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x448028c1 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44a08087 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x44a413a4 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x44ba1042 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c3b01a virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x44c4cb2c serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x44c9d38b inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x44d6ed10 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x44e4f1fb add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x44f1118c transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44f24c47 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x45065147 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450a7f04 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x45191a17 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x451e6f4d bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x4539c62c iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x4546588f iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4562f8e4 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45980cb1 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x45a4db2d sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x45ca512c snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x45e89838 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x45f1bc79 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460439ea dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x46167d26 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x46186c78 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4618cdb3 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x462556f3 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x4629401c unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x4633d81f spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x465a4ba6 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x466f3e03 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x4674ff8d md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4679ed08 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x4680e664 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468b980b crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x46bfce94 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46d89d2e snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL vmlinux 0x46e87af4 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x46eb9a5a pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f4b40d debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x46f5bfd4 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x46f8c2cb uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x47135e6e wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x471ac357 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4733d761 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x47391c69 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x474954ea devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4762f8b5 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4777b70b sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x4798a561 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a5cb2c led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c6ab6a __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x47c7ccf1 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x47d33387 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x47dc0b32 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eab6eb gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x47fc2a01 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x480d35c4 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x48124eda rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x481c61aa firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x484548f4 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x4848b7a9 nand_release -EXPORT_SYMBOL_GPL vmlinux 0x484ec468 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x4863cad0 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x489c9bc8 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x48a372d8 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a8eb2b devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x48b3de51 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x48bddda8 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0x48c1b9c3 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x49042737 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x490d60aa iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x490f99cd thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x49156043 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x492042a2 nand_reset -EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4935e168 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x494b3343 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x496a4fa5 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499a77a6 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x49a47baa ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x49bada6a clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x49be6c65 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x49c0d4a8 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x49c1a6ae shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x49df46e2 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x49e90d0f pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f780dc sdhci_enable_clk -EXPORT_SYMBOL_GPL vmlinux 0x4a09e004 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4a2e9889 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x4a36f725 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4a53ba71 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x4a6e919d sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x4a73f399 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x4a7c0c37 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x4a9fcb33 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab07f7f usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x4ac5874d vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x4ad3b652 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4b16b865 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b270a46 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4b3dd2c3 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x4b4cd7e2 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5febea pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x4b6b0936 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x4b7077de shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x4b88f092 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0x4b98e9ce iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4b9f42dd nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x4ba67671 blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0x4baba39f ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x4bc2f7a0 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x4be56e88 device_move -EXPORT_SYMBOL_GPL vmlinux 0x4be73da5 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x4c1738a1 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x4c1a0f84 nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0x4c21149c snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0x4c2d09f7 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4c369631 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c4ef658 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4c5e803b blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x4c7ced86 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x4c7d1d1e usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x4c86b5df dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x4ca1adf7 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4caa33eb crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4cb1cf44 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x4cc3bbc4 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4ccb4755 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x4ccf671f init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x4ce2d393 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x4ce4c012 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x4ceb14c1 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x4cf17d9a hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x4cf5dada spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x4cfb804a __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d009857 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x4d135da5 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x4d3687d9 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x4d38bd78 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d3d6864 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4d47e734 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d58d349 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4d60e758 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x4d680880 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x4d8373fe ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4d97e8c0 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x4d9880e2 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x4da2f4bb get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x4dac469d perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbfe740 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x4dc09192 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x4dc10c82 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0x4dc3490a bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4dc6653d usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x4dd0f27a pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4dd62ed0 sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de0ffbc gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4deba38e input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4df391d4 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4dfb1a16 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e278760 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x4e43a5aa serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x4e4682c8 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x4e6c670d led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x4e71a604 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x4e903b60 snd_soc_find_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4ea74591 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb4feef ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ebf91c9 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x4ee17fb7 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x4eeee831 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcc7b3 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x4efd067e blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x4f14a7a7 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x4f225615 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x4f35eb0b __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x4f451bd5 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x4f543ff9 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x4f546853 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x4f66b972 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7b4479 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4f8119a8 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x4f813766 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x4f81b817 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x4f906031 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x4f94f387 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x4f964259 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9d83d9 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4fccf820 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe3f5e8 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x4fe6935f mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x4ff11796 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x4ffb5dce sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5012d208 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x501733ce sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0x50198bb6 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x5023a888 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x502e90e1 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x503be4c6 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x5051b08f devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x50528ce0 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x50553a41 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x505ac223 sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0x505d4099 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x506e16a9 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5078ae70 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -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 0x509976b9 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x509e19cb crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x509e95a8 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50bc9c1a irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x50c2677b nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x50c80e0f __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cd3af4 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x50cddf09 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x50d6c3c9 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x50dac3e7 snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51004c3e spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x5101da27 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x51070b68 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x5113abfa pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x51262c7d irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x512fafe2 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x513518eb of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x5137a293 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0x51475a3c regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x5180b2c2 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x519375de skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x519e6dda strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x51af8e01 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x51c195b2 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x51ce956e __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x51e9f8aa md_run -EXPORT_SYMBOL_GPL vmlinux 0x51f483c1 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x51f5ff6f devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5208b26c __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x520fd2e8 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x521bf39a vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5225314f sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x522d03a6 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x52322fa0 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523d81ae arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x52475a86 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x524b1fb1 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x5267cea3 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x526c543b pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x5271dbf4 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0x52753e93 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x52770dd1 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x527f0be3 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x52813347 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x528e9aec hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x52c76a47 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x52ce324a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52ed192f bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x52f4e946 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x530d8fec pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x531828fc blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5318e4f7 usb_gadget_connect -EXPORT_SYMBOL_GPL vmlinux 0x5324d9cd regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x53251a03 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x53388bee pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x533caf14 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x5345a91c phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x534a7986 nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x534cb559 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x53668677 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536b1dca nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x5371138a sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x53738e17 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x5386f14c platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x539072de screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x5393239b sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x53933396 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x539713b5 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x53c8cafd devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x53cd6224 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541cd4de use_mm -EXPORT_SYMBOL_GPL vmlinux 0x5426c603 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x542f2930 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x543cd60c dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x543f1cec __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x5468484d clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x546aa186 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x548cf36f power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549a105d efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54b5c9bf fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x54be0b08 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x54c04bc0 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x55331435 __irq_domain_alloc_fwnode -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 0x554b7fa8 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x5553ffb4 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x557279bb validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5585eb35 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x559d651c unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x55c43cbc software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55ccab38 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x55ea6627 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f721aa usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x55fb58a2 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x56014be9 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56107c58 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561c12e5 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x5620e134 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56268713 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x562be32e init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564177cf fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x56468d9b bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x5652eab2 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x565bf3e2 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x566ad403 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x567a5efa pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x567afb0d serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x567d5c17 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x56887520 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x569310c4 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x56a18cb1 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fb31ec devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x571c54bc md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x571f07bd irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5730e8ef mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x5735fc5f regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x57374e19 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x576b39b1 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x577e664c serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x578bd3a4 sdhci_start_tuning -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579b9f11 sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x57ab0a35 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x57baf432 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57dae70c pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x57e148b2 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x57e77a24 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x57ebf620 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x57f04e9f cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x57f412f9 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x580b2ca6 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x580fc179 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x581973ba ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x5828c9d5 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584d4a78 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x58613c50 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x58b8b8f8 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x58dcf0cf call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58ef0ad1 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x58f305ad skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x5901d778 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x59034ba0 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x59078e09 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x5912149c crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5919c6c3 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x593ea795 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x596e53cf mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x5974b22b usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x5996d502 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x59973c82 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x59a00932 mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0x59a1a8fd cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x59ab6027 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x59b74281 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x59b75ce9 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x59b84960 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x59b97e16 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x59df6273 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x5a0a27be ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5a2f7375 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x5a35d5a0 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a3ac5ec scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x5a3bf87e syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5a3c3370 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x5a42e3e7 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a76e56b sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a9ce9a6 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x5aa8ab0a badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ac24451 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5ae483db ref_module -EXPORT_SYMBOL_GPL vmlinux 0x5af56cc4 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x5af6c361 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x5b11344c pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x5b1c5bca usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x5b2049c9 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2a75e6 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x5b337512 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5b4537af mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x5b66915e spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x5b6cef19 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x5b79f346 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x5b83ad35 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x5b849ae6 mtk_smi_larb_put -EXPORT_SYMBOL_GPL vmlinux 0x5b86aeb4 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x5b8aba31 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x5b8d8483 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5b8e3d2a of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x5b919152 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x5b981647 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x5bcabba8 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x5bcbc05a handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd7eb99 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be79cf5 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x5bee465a mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x5c0c2dee crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x5c1433db bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x5c1691ef skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x5c1989cb md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c3a7929 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x5c3ba373 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c4f4730 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c63d20e rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x5c64fe34 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c8d4e15 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c8e9388 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5c9382fc rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x5c93beba cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x5cab1671 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cd6ba66 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x5ce7d5c8 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d098a18 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x5d0eb682 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x5d148ab8 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x5d210287 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x5d41a800 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d640dca sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x5d708f99 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x5d9318d6 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5daab38b ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x5dcb6875 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x5dd67edb regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5ddfcfd8 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5dec0980 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5df4c822 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x5dff49cf trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5e130f59 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x5e1a6a85 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x5e2db569 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x5e3b0551 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x5e3b65c5 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5e492186 nand_select_target -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5f84a9 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x5e66d83f unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5e760431 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7b2dd2 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x5e8e4943 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x5ea9f85a power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x5ebc441e dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5eca93b4 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x5ed2167b blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x5ed9df13 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x5ee40aee pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x5ef05783 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5f00b33e snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5f092a47 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x5f0ef824 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x5f129391 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f27e756 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5f3034ec do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x5f3ea42c mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL vmlinux 0x5f527472 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f64c4fc debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x5f67f16f regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f69fd78 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f749a42 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x5f7faf01 iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x5f875d0f posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f88e8cf perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x5f8eeac0 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL vmlinux 0x5f9206ae mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5f97ff02 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x5f9e1a1a __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5fae435e devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5fc2c660 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fcb3cc9 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x5feabbc3 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x5ff65cf3 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x602216a3 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6029cad7 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x603d0051 nand_erase_op -EXPORT_SYMBOL_GPL vmlinux 0x604a7b91 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60570f89 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x60571dc4 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x6071ba60 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x608a439a badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x608c84fd regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60953265 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a7029b iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x60cca049 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x60d13e8c of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x60fcf967 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x610fce39 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6111cfc6 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x611bc2d8 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x61370750 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x614150ff __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x61429ff5 __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615397fe inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x615876e9 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x615e9e34 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618600ec usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x618c04d3 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x619c609d dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x61a41b32 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x61a7a39e sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x61abfc6e devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x61be7dc4 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x61bfb8f2 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x61d89a94 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x61e511c6 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fae8eb debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x621dac6f __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x6223317e da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622dca17 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x62341358 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625fdf9d pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x6267ba32 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x62729f6b subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x62732455 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bdd564 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x62cc6885 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62e04db2 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x62edc9af fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x62ef490e lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x635261f2 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x63605c99 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x6360f821 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6367927f sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x63693272 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x636e08bd fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x6378cd5f security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x638fa829 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x6390dd9e blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x639acf3b pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x63a0910f crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x63aaac4d crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x63af2392 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c91a7f syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x63e1228a hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x63e76891 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x63f21b8d stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x63f6bd0e ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x63fc7490 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x63fdcde6 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6401f5f2 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0x640bbfd5 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6431f9f7 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x6437212b ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64610749 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64870d11 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x648eb664 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x64940a88 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x649da1da __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x649ef37c pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64a2f7a3 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x64a8f894 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x64bca3cb __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d93a65 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x64deaab3 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x64fe917a stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x650c6acd fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x651e3999 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x652f3001 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x653d3ef1 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x654115e2 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x655d9922 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x6595a6ad ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x65a37b65 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x65a3c7ff fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x65ac7f0d phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ce2a8c invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x65d35e26 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x65d5212b mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x65d92a50 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x65e38fc7 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x65eee9f2 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x65efa838 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x65fab4d4 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661d30b3 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x662885da __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x662f1281 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6640333d sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x66440c52 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x66444a73 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6665edf3 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x66825460 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684223c netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6687ebad udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x668ab1c9 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c44649 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d91948 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x66e615a8 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x66e6f42a snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x66ea2d75 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x66eb1136 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x66efaa64 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x66f5fe89 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x670e7028 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x6719225b pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x6722d7f2 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x673d419b pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x67409db9 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x676b9193 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0x67752290 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x677544a0 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x677b43f7 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6786ff75 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67963e87 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x679a56e0 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x679ed813 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x67a72087 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x67be8bf5 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x67c378c9 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e17127 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x67ecfcbc security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x67f8031d phy_create -EXPORT_SYMBOL_GPL vmlinux 0x67fac4fc gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x67fea26c efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x680e11a8 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x680e54a8 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x684a29a8 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x686a13a5 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x686e8094 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x6875c387 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x687abf07 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x687c24e2 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used -EXPORT_SYMBOL_GPL vmlinux 0x688920da tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x6894835c __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a947a5 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x68e02b4d devm_of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x68e5d718 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x68f37e9f __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x68f46288 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x68fe27fe of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x690cc5db devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x691b7c4f blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x691c85b6 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x691d6c20 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694e6000 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x69511e5b udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6957a9f2 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69860e92 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x699d7bad devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x69a5fc4f pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x69aaf8f0 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x69aec040 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x69c0794c tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x69c3363e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x69ca275d snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x69dee6a2 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e9b8d2 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x69f41b01 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x69fdf36e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a104287 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a20b721 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x6a251854 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x6a3b6fc1 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4b1276 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6a4cb9ca rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a541051 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6a58a476 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a62a247 pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0x6a67b99b dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x6a6958d9 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a7c0cae cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6a87b248 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x6a8d429d rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6a98d289 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x6aa3658f rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aabd1b1 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6adf12e9 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x6adf79e3 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6ae023fa crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x6ae641b6 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x6aee0d24 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x6af4665d do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6afab70c snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6b018359 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x6b01beed reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x6b1923e0 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x6b2eb746 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b33d166 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b482248 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x6b4bf4df devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x6b5a965a devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x6b72e663 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b739fb7 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x6b756e39 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6bae646e usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x6bb5c7ff dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6bcf97c5 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x6bcfcc73 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6be1b908 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x6be56395 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x6bed8b90 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6bf08b81 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x6bff824b tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6c04d180 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x6c1c5d5f balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c4b54a1 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c60e486 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x6c677246 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c6cd5d8 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x6c7bb885 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x6c8b6f54 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x6c91cf71 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x6c921ab5 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ccf4133 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x6ccfb2dc snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cdc86d5 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x6ce3b139 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x6cefe23b of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x6cf29e20 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x6cf31233 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x6d0407ec pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0b8c5e percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x6d0c9c41 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x6d0ecc67 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d30f861 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x6d4888bc cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x6d48ce37 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x6d4ecc3b fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x6d513fa3 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6d8d2ba0 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x6d9294dd of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x6d9b80ca pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6db41c45 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused -EXPORT_SYMBOL_GPL vmlinux 0x6dc61b13 md_start -EXPORT_SYMBOL_GPL vmlinux 0x6dd7d84a crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x6ddc5519 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x6ddd9062 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x6deaa725 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x6dfabed1 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x6e0a8ae5 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x6e0c43ac subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6e234d40 user_read -EXPORT_SYMBOL_GPL vmlinux 0x6e2d4556 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6e37b3b8 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4985aa devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4f7afc phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6e70ca12 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0x6e78214e snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea05158 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6eb12aab free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x6eb6a627 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec18c62 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x6ec4b267 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef0a758 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efb3e97 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x6f0963c5 snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2a9abc ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6f2b5ecc usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x6f52a6bf pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x6f698c41 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb0f258 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6fb45e4d ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x6fbae380 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x6fca3a00 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x6fcb9e1b devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6fd95667 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x6fdf0444 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x700043d6 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x7002f672 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70182ec7 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x701d975e pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x705c8d65 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x705dfa68 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707829c3 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x7090f608 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x709348b6 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x70a5cd72 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x70b26e4f crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x70b575e6 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x70b8ad98 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70c8d2c7 sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70cffac2 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x70d7e930 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x70e0f62b inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x70f0839f __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x70f76d9b sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x70fcb28f fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x710a24b2 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7120760b driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x712b8360 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7130d491 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x71443729 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x71481d63 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x714f9a00 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x7159e8f8 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7163183d __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x717cbe2f sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x718089e3 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x7189458f pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x718f12e7 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x7192436c crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x7192906c tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x71958235 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71b19394 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x71ce6685 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x71e27739 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x720851c8 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x72368366 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x7238d09a crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x723c67a7 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x72554363 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x725b8db9 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72891298 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x728fa1be devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x72a18119 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x72a24554 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x72a6a893 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x72adbf96 pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x72aee1ad sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72cab205 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x72cc012f regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x72d6d83b extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x72de20cd iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x72e2c9fc snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0x72ea62aa cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0x72effa50 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x72fc636e spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x73132c96 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x73209865 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x733197ba thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x733edf5e __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x735493a5 wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x736df7d7 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x73722156 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x73734286 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x7386e92f gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x73918baa ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x7393bb0f rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x739aebd5 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73bbdc7f regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x73bee232 __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x73c60864 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x73cdaf2f sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x73ce9fc4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73ddaac4 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x73f7c298 snd_compress_new -EXPORT_SYMBOL_GPL vmlinux 0x7407ff75 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x741d03d8 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x744910e5 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x745933e8 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0x745e6588 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x7462bb7a iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x7463d43b mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x7465430e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x7467800a crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7468c59c dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x747496b4 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x747c9d22 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7482e9f3 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x749dd0d9 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x749e08ae sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c644b9 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x74dbb74e vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x74dd4927 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x74e8d2e7 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x74e9dbf3 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x74f47f99 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753dd4e4 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x75442b53 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x75532b70 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x756a8e8e serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x756ba901 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x7570929b regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x757b88f5 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759395e4 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x75bef72c skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d073fb fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e2b042 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0x75e477e6 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fc50ee kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x760678aa edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x76428d69 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x76450b4a ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x767eea2c gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768b75e6 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x769f5325 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x76a47440 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x76a8a2c0 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x76af906e kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x76b70d9f clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x76bfdb7f crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x76c12099 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x76c49ba5 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x76c657d2 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f4463d tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x76fddc17 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x77038661 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x771769c2 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x771838b8 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x773101ac crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77598263 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x775eeb1c sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x777e7080 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x777f7ef3 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77cee8ee pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x77df85d9 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x77e0fe28 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x77e8508e split_page -EXPORT_SYMBOL_GPL vmlinux 0x77f24e7b snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0x77f81fb5 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7823f5dc sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x7833beb3 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7834f03e regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x783e6e10 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x783f594a tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x783fd034 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786d1c2c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x787ee2a0 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x7883c2ab pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x7886252c dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x78879c3b flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x788dfb11 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x78925413 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x789dfd92 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x78e6fa9f trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x78fd49c9 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x7913318e add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x79219cc7 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x7921b9b5 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x79263adb snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x79358f80 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo -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 0x796816c9 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x797b8b74 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x797d5c88 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x7982625c fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x79acb58a security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x79b57c6e rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x79c1f224 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x79db31a8 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e01313 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x79e15df3 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x79e5805c serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x79e7c6bd led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x79eb5fd2 imx_pcm_fiq_init -EXPORT_SYMBOL_GPL vmlinux 0x79fff0a2 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x7a0686d8 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x7a12870f mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x7a23e529 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a28a8d5 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x7a2b407a ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x7a37fa54 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x7a3ba9b7 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x7a3bb31e nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0x7a571ed4 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7a622868 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a64b6ac fwnode_get_next_available_child_node -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 0x7a935021 nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x7aac1022 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x7aaecff6 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x7aaf80a5 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x7ab777db page_endio -EXPORT_SYMBOL_GPL vmlinux 0x7ac0f933 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac5590e spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ad5dc74 ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0x7af32d99 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7af9e2e2 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x7aff584a virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x7b07aed3 virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b55f64e transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b778432 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x7b7b321d fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x7b878998 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x7b944c5f srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bcc2484 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x7bccc4ac tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7bd666ea efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x7c035817 udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x7c2a8683 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x7c2adfb2 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x7c2c77ba wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x7c2d7ef6 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x7c303b85 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL vmlinux 0x7c33cd6f dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7c403969 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x7c5fcf96 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x7c7a6117 pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x7c89123e devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x7c8ee057 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7cb23912 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x7cb3305c regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7ccb52a4 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cdda013 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf14d35 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x7cf558d9 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x7d1498a0 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x7d33dd4c pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x7d35595b netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d393707 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x7d4026f2 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d41db87 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7d420103 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d71f254 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x7d8ff6fc crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7d9abfc4 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7d9dbcf2 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x7da146f8 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x7da595a0 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7da7ccd4 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x7db2bd3d blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7dc58bcc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7df7bf8f blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0x7df7d962 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x7dfa0a75 spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x7dff0845 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7e13a12b snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x7e30e83c usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x7e3eac5d gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7e3f4e96 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x7e45fbe3 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e5e9b15 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e68bdaa irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7e78f420 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x7e79b13a sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x7e7be968 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x7e7ff333 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x7e86dd90 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x7e87d9f5 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x7e8ec175 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x7e92b6aa pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x7eb2b9ae get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x7eb85356 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x7ec65710 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7ed6476a probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eeb985c phy_init -EXPORT_SYMBOL_GPL vmlinux 0x7f066197 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x7f06ba2f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7f0ab238 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x7f0c00a0 musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x7f2a01a5 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f307a7e ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x7f37b241 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x7f58b510 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x7f591bb5 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7f5930c3 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7f65f861 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7f6f9f29 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f809593 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x7f85fcb4 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7f94e41f check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x7fa6885c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x7fa720a6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x7fba44c5 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7fbc0676 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x7fcce341 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x7fd13e4b securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7fdec8ff __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x7fee9dab alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7ffc5a46 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x80187a52 clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8029c511 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x802e7258 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0x803d6c35 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x804234dc dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x804895b6 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x806f8f6e ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x808848e4 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x808bd267 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809f8564 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x80bd1111 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c92c36 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d7a3ad __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x80d90154 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x80eb4775 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x80ef82f6 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x810cc310 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8115c754 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81425714 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x8149c045 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8167d555 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x816870f8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x81723395 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x817ac3b9 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x817e49ff irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x818a6b24 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x819c34ce __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x81a16a6c pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x81a217d1 setfl -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b27b09 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x81b440b3 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x81b65336 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x81ce7900 blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x81d4a9e2 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x81e13694 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0x81eb1f92 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x81f2b867 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x81f58321 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x81f85f29 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x820977f3 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0x82101430 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x8212d926 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x8229ddf8 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x82353c67 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x82426a0f __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x82450807 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x82456b7c sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8246604b fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x82475edf __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x825bc29d platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x825e7daa of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x8268c7d0 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x827f7546 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x8290c902 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x8293121a disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x829dad2d alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x82a8bebb pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x82af9cbb da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x82c5b7d7 mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e00107 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x82f7018e mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x83007f20 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x830cece5 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x83149e29 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8316106d usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x831a42c5 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x831e121f sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833a7c41 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x834f8e86 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x834fd7e5 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x836e2a6a ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x83773900 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x8393f959 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x83ab30cb skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x83bbb304 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x83d80f8c cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x83e21d83 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x83f20416 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x83f98630 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x83feeb9e gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842a7f64 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x842b5dee i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x842e9814 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x843d63b9 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x84434966 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x84495471 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x844bd1c9 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x844c9bab platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x845ee68d __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84650795 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x846dd1e7 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x8475e2ad shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8477b352 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x84899932 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84bcf0fd of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x84d6a056 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x84d9e6ca devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84e185e7 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x84e20c05 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x84edf0b6 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850b3d7a __sdhci_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850d62d6 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x85143bb8 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x8521d0f1 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8570f468 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8586e294 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x858a4ba6 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x858b5fef __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x8592babc device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x859a7a65 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85ab5917 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x85aca8ec user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x85acb812 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x85b3f3cf inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x85b72543 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cc0470 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x85cc70f4 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x85e56bcd dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x85e62b0c usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x861b3bf4 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8630c298 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x86547a7f sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x8664c6e9 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x8665230b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x866baa1c devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0x866f88e6 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867fd26d each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x86806218 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869380d2 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x869cce9a pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x86b85279 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x86bdb90e cpts_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x86bfb54b __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d70b3f tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x86e2499c fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x86f2ea1b blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x86f5d452 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f9f015 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x8706d879 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x87111f0d __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x8734c575 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x873798b4 xhci_mtk_add_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0x874543a4 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8747e682 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x87506247 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8772d4fe extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87750a0e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x877d3ac3 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x878b64a9 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x87a4b2d1 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x87ab9558 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x87ebc7a5 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x87fb252a rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x880832d0 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8824082d skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x882b4012 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x883ca9d7 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x88400949 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x884130bf usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8848d760 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x8859429b devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x885e35c7 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x88651042 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x88732444 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x887d0446 usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x887d6469 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b25adb __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x88b837e9 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x88c73cc9 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x88c7ebdc mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x88ce7a61 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x88cfbc06 cpts_create -EXPORT_SYMBOL_GPL vmlinux 0x88d3a6ab extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x88db7d68 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x88db90b9 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x88e1b1b0 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x88fca8e2 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x891ef020 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8920fb9a unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89318a0e nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89408887 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894f1400 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x896a5a65 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89736cdb vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x89771a8b mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x897a8503 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x8983e8bf omap_iommu_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x898d566b pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x89a3466b ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x89b99e91 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bfdd14 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89eaa014 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x89f29bf3 component_add -EXPORT_SYMBOL_GPL vmlinux 0x89f43342 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x8a06e166 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x8a1bfe27 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a1c6df0 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a3fec75 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x8a49d42b usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a7b4d87 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x8aa02161 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8aab82ba netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ab23ef1 snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x8ab41ec1 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x8ab8a458 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ab94c73 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abcd11d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x8ac64afa clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x8ae862bb tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x8af567ee __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8afa3852 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b27ef9e dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x8b4d78a1 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b5745b8 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b6d5030 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x8b708999 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x8b754454 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x8b7f2d8c irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b95788b qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x8ba64127 cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0x8bb43218 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x8bb70af6 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x8bd45699 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x8bd48108 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x8bd4b613 xhci_mtk_sch_exit -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0616a0 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x8c2921e2 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8c36e79e tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c5ca94e sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x8c604f39 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x8c71df23 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7a0ac2 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x8c7bd877 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8c817afc gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0x8c8499de devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x8c86374f init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8d9e02 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8ca3f8c6 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x8caeeeaa rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8cc19fbf usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x8cddfbf3 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8cf98194 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x8cfecd49 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d53c8db fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x8d715b66 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8d7bc776 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x8d7d4b68 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x8d8602dd vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d8c3bad usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x8daaf33f dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dd0db48 usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x8de3c411 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x8e00d234 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x8e07c798 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8e14e391 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8e287d28 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x8e41963a tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x8e49e103 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8e6edde5 snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x8e995a63 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x8ea0393d noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x8ea82fe5 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8eb2284b clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x8ed9e559 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8eddb5fe class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8ee0395f sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x8ee2b8bb snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8efb0d94 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8f01fea2 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x8f038016 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f1b0d9f ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f1fd6e7 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x8f2733b7 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x8f2af0e4 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x8f3202a4 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x8f5890b6 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x8f73f61d of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8fd13937 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x8fdd6b24 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fdf7f22 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x8ff190e7 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x8ff410d7 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x8ffe1e1b pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x8fffa69c rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x900fba80 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x90112801 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x9011650e gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x901756ba wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x901c6c99 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9042e4ac securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9055f573 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x9056049c class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x905d5680 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x90658e27 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9073086a usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x909b6ded __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x90a58093 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x90b390c3 nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL vmlinux 0x90bb5d94 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x90ea28d5 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x90ec0b50 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x90f17808 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x9103e339 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x910f040c xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x91135c1b tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x912ce017 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x9132e63b pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x914121cc power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x914e3012 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x915d4265 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9178f6ab tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x917a7887 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x91911c4a ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x9192ca2f tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x91938636 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x919b9641 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x919d85b2 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0x919e295c of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e0e73d hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x92040d08 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x921c869d css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x922753f0 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x922a7efd crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x922f514b pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x9231396c pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x92393e75 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x92416608 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92587b7f ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x925e36c2 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x92600f8e sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x9263c84c usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x9263d06e handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x9278f9c1 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x9282f433 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9285ceb2 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x9286847e ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92b680fd skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x92c5e7fc gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x92cd40fc devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d72357 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x92d865c0 imx_pcm_dma_init -EXPORT_SYMBOL_GPL vmlinux 0x92da5967 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f5c889 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x92fcbe56 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x93095655 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x93340a59 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x93396ea0 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x933ad0d5 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x9350d45e usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x9353bf70 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x935be7b3 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x938e8e18 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x93bcccab mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x93c5c6ef pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x93c8eb54 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x93d5dc0c device_register -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93e459c8 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93fb510b list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x93feffda sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9400fd3f tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9428c90f __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436cc8b edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0x9439643f input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9443f855 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x944bec46 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x945d802d device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x946173f3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x9469a6f3 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947f54ae bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x949d4026 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x949e003a md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x94a2b0f5 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94abcdbb pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x94be1962 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x94c22a75 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x94c481ed crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x94e14285 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x94f4b325 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950eab90 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951d9510 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952cabff devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x953a4e1d device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x953ccc78 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f48d5 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x9545984e of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x955adef3 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95729e4d devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x957710da regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x959f90db fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x95ad7da9 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c82d95 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0x95c94c78 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x95cf7db3 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x95d4433a exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x95da1863 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x95e3dae9 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f3e7d6 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x95fbe163 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x96124b1d devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96295b64 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x9629b3e6 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x963b4a86 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x96526c31 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96698b5c dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x96852ce6 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x96a28ef9 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x96a7adbf snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x96bad0d8 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x96c23920 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x96c6bc54 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96ca9706 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x96d76798 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x96e3c19a fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x96f57429 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x96f5c330 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971d61f0 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x971d6f9f spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x972495b7 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x972cfb76 nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9732d3a1 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x97424c6a xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0x97426378 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x9743a6e9 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x97478437 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x9747f0f1 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975baedf __module_address -EXPORT_SYMBOL_GPL vmlinux 0x97659959 usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0x97770670 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x97a8b340 snd_soc_new_compress -EXPORT_SYMBOL_GPL vmlinux 0x97b71dc9 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x97dd1a26 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e16ff4 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97ec1d91 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x97f325ad devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x97f8a9d0 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x980bee63 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x980c3522 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x98203bc5 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x9821e7a7 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9851b354 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985bc5a0 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x985de5b2 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988a080d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98b6d1aa watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x98c4bf69 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x98d9db55 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x98dc4c81 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x98f9261d cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98ffdd85 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x990ec233 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x991d917e ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9929aa8a pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x992c4a7b powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x9955c2d4 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x995b6fbe spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x9970bd39 nand_deselect_target -EXPORT_SYMBOL_GPL vmlinux 0x9975f71b transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99a9af14 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x99cba4b7 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x99cc6897 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x99cec9bd devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f682d9 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x99fc1a31 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x99fcc27b phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x9a048866 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a2eb1cb inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9a4ec9b3 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x9a4f5397 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x9a5f88f2 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9a602480 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x9a6f292d l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9a7aa84c blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x9a7d9f31 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x9a8225bd pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x9a827bf1 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9a8d15bc snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x9ae91322 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x9ae9edd1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeb54a8 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x9afeb970 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x9b0246df sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0x9b173f0b led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x9b183203 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b2fa8aa public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x9b499d92 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x9b4ae273 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5d866f serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x9b6227a2 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x9b6de972 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x9b74a8a7 snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9bf446 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x9bc5f23a spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x9bd8f13b __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x9bdc09d7 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9be83bde serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1188c __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x9bfc0bde fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x9c07becf tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x9c1556e3 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x9c1b9695 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x9c2a8b95 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9c3c80d4 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x9c45e569 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x9c5fa129 cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x9c628995 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x9c675173 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x9c74bfb3 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x9c789c63 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c84560b fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x9c9579f2 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x9c9eeab0 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x9ca5a116 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x9cab67db gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x9cb53167 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9cb9a97f pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc40816 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cca4c6f of_css -EXPORT_SYMBOL_GPL vmlinux 0x9ccb5d56 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x9ccc1b3f spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x9cef4466 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1bb6dc gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9d241753 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9d30c004 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x9d651459 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9d77d1b3 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d9dc6aa blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x9da9c2c7 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x9dba64d7 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x9dcb075e usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0x9dcd1fd5 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9de0303d dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x9de2bf19 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x9de3ae69 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x9df31b68 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x9df4340a devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e0a8ee2 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e28e22c exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e52c774 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9e5f0a1d skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x9e6702b1 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x9e6ee8b7 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x9e79bab4 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9e7d0640 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x9e944470 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9e963c09 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9eba5338 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ebfacc6 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x9ec897b7 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9ee8d0fb devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f1560dd rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x9f1acc80 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9f1d1659 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f20b4ce scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9f354129 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x9f448341 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x9f44b29a mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace -EXPORT_SYMBOL_GPL vmlinux 0x9f59994b __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f6de7c9 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x9f6e21fe tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9f7e850f user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9f8628af blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x9f90ec81 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x9fcd57f5 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd6fe33 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9fe5a844 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff5116c wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa002f52b efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa0200e95 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xa035ce5e spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xa0397fb1 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0516fe0 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa0591324 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xa05b1253 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xa06ac53d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xa08ea9be usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0xa09cd338 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa0a49c79 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa0a88f67 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xa0ad04d2 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa0b2ba6f regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xa0ba7bbe bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xa0d596ab bus_register -EXPORT_SYMBOL_GPL vmlinux 0xa0da297f snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa0dff82d devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa0e02a33 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa0e3fd40 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xa0f0e9e1 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xa0f2114d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa0fdbec3 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa116120a stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa12f4422 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xa152baec blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa16f8b4e iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa17f58ba iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xa183d80f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xa1b0c956 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xa1b3f4bb nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa200fdb6 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa213adbd deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xa216145c of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa2365b42 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xa23933cc of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xa23a21a7 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xa23a7281 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xa23e47c8 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xa248852d rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa25670a3 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa25ca9c6 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa26064d5 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26ed819 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xa277beb5 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa297faab fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xa29d3a62 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xa29f8d32 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xa2a65761 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xa2b40bff crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa2b950e2 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa2c698da regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xa2ce4d88 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2ea44f8 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0xa2f402cb __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa30e35ca gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xa34cb940 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xa35021d0 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa3639ea6 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0xa3673200 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xa36cda8a usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xa36ef765 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL vmlinux 0xa3748b92 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389632d usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3930fbe crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a4acd7 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ba793d cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa3c36677 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa3ca9507 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xa3cbf376 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xa3d5ae9b tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xa3d5ce8b blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xa3df8e79 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f5ea48 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa428b754 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa438549e clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xa441ae75 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xa448dd99 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44e789b clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xa44fbefa __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa458ca63 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa45b0d52 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xa461cd15 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa470fa1f usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa47efe8d phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4baddac software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0xa4bc6c97 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa4dafd4a posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xa4e2a4c5 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xa4ed1c7f usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa52c1541 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa52d68c9 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa5417003 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xa5431079 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xa5660f2d verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xa57628c0 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0xa5781fca dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xa5783436 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0xa57f5001 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xa5840976 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa590e665 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5ab9d10 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa5af64f7 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xa5b4b48a rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f24861 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa5fcab52 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xa6044b7b pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa60e3189 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa639b42f iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xa65d6e4a blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xa685e979 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xa68fcf6b tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xa69047a5 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xa692a36d gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa69ea373 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6a1fd1c regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xa6ae9861 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6cb6e6b spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e3b24c clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xa6ea7185 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa6fb9c35 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa713a634 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa716f5f7 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa7207fea bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xa7217869 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xa727c971 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xa7283875 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xa72f5137 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa73b8dd9 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xa760975a trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa762f20e snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa7892ef6 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xa79027eb spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xa799195e sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa7bc8b23 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7bffac3 sdhci_set_ios -EXPORT_SYMBOL_GPL vmlinux 0xa7c74ba6 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xa7d1cbd7 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0xa7d691d5 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xa7d8f2c8 sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0xa7f5c940 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa7ff045b irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xa800d96a mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0xa8322bb9 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa83a08fc devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa8486d8e tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xa84a4974 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8631ecc register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa86c396d cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa892f241 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa894ad5e ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa8953448 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa8a71ab9 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8c54f61 mmc_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xa8cfa6ae fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xa8d0f0ff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa8f6e45b regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa91ad91a usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa9288004 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0xa94e9137 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xa9537564 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa956c721 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xa9590702 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xa97ea4f1 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0xa986c0d9 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xa989d463 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xa9911bca sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xa9950d88 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa995e844 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa99f846b mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xa9a7d52b __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xa9bd4471 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e1cc93 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xa9fdb4aa crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xaa063f9d scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa35ea90 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xaa3fdd34 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa464d04 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xaa687ef5 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xaa8a97ae ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xaa99cd4f dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xaa9b8140 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac32e23 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaacc4171 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaad11b11 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xaae02a9a scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaaf90282 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xaafabc44 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xab003724 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xab041861 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xab081c5d snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xab341cfc snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xab3b9652 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xab488d6d cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab618358 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7508bb pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab88bf1b pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba1a1c0 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xaba25e95 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xabb0a0c1 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xabb3f78e ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xabc51ac0 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xabd6e47b mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xabdcd9f5 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xabdf4942 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xabe6010c bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xabfb5790 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xac0873ee bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xac0e8158 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xac124fd9 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xac16821c thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xac252934 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xac2fef46 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xac3257a2 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xac3f9c68 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xac4d17c3 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0xac5469a2 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xac6aae9d usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xac74966b mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xacb02ab9 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xacb0fccc pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc09d0e rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xacd09879 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xace1f210 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xace81985 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xad015f95 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xad20b808 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xad29bd7f nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xad2a651a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xad505973 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad645174 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad7142ef crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xad74116e pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad7ffd82 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xad92ba9f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xad988c0d mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL vmlinux 0xad9de163 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadac7b6e usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xadb5ebea inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xadbc2c16 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xaddaa9d8 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xade1d587 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xadf6be38 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xadff9c73 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae066fd3 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae07f58f crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xae0ba9ed get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae163835 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xae2b9247 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae423de5 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xae54964c __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xae56367e crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xae6383da gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae73a123 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xae745d47 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9b19d7 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xaeae4385 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xaec267b8 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaee0b42e pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaefcbe65 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xaf05e926 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xaf120b9e dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xaf2ce2c4 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xaf32e001 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4ea4b3 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xaf5c2edb devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xaf5e1b27 snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0xaf60f2b0 cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0xaf623103 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0xaf6ffe27 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xaf7c11b4 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe26f3f l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xaff79f78 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xb008d16e dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb00e4774 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xb0223261 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb02e3657 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xb03ea3be kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb03ef9f0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb05689a8 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb09cf175 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xb09f3cce __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0be3d01 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xb0c34957 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xb0c6a54d debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb0c8ed6e dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0xb0c9b47b blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xb0eedb2f ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xb0eeec81 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb0ef91a1 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xb0f565fa sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xb105805a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb10b0117 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1293a59 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1495204 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xb14aa55d fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb1793834 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb18110e0 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1bb0350 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d4216b crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e0df60 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0xb1ec0373 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xb1f7416b devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb1fa8a59 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb205ca61 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0xb206df87 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xb20737da crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb225750b mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xb22808f7 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb2846dba perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xb286d1de driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xb2916af2 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xb29eb828 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xb2a1be8e nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL vmlinux 0xb2bb25bd tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb2c0595a ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb3001f42 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30eb40f sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0xb322807b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb3264af3 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xb32680c5 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xb337d8c8 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xb34dc186 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL vmlinux 0xb34fbf8b gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xb3529859 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb3589a66 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb37e43e0 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xb38620da eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xb397f771 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3a336c9 snd_compress_register -EXPORT_SYMBOL_GPL vmlinux 0xb3a3b81a dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xb3b06f12 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb3b6add6 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb3c6070c pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xb3d473da virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xb3e04465 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xb3ff7ae3 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb40b2d3d tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb42533a6 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xb43aa086 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4421418 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45ccacf pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xb460f390 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb48da2fd blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xb490ef1d usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xb49da8ec skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xb49de221 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb4a30788 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xb4aac7ba of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4ca527d rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xb4d3dd60 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xb4de9f62 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb4df2e85 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eada99 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f21c0c device_attach -EXPORT_SYMBOL_GPL vmlinux 0xb5000327 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xb5043bc5 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xb509d281 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xb50b4c23 thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0xb517950a musb_writel -EXPORT_SYMBOL_GPL vmlinux 0xb51e8e22 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52db360 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb556eaf7 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xb55a2313 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb55f66f0 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xb55f9a4d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xb589332b tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xb598bba7 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xb5a69b5c mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0xb5c04404 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xb5cac54c event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xb5cc3e62 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xb5cd83d3 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5f341b9 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb6027de6 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xb6211f50 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6600263 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xb6713ec5 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb6717a5d devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xb6781b84 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb6a9a6a6 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xb6c314d1 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xb6c7b0ad dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xb6cd3ab9 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6fd25be devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xb707de3d perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xb70ea06e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xb71349a7 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7458313 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xb74e9844 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xb758c365 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xb758ed64 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xb7679376 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb78d3a51 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xb7b81fa2 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xb7b85123 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xb7bd634d ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xb7c059ba serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c6dec4 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xb7d522da cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xb7e14027 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb7e54fed fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xb80408f1 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xb80c6e27 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0xb80f06d4 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb818af41 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xb8196f80 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xb81ebc65 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb82d6dc9 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb83bcde2 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb8531692 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xb871dd0d pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb87cc39e thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xb8859cfa rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8957db0 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xb8ab730d pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xb8b2812f shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xb8b6940b usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0xb8c4b9f5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb8ccd7b3 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8f80467 nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb91b4dd5 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0xb91fdbdf virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xb93168eb class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb936fc1c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xb938675d device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xb93baae0 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xb93cc120 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xb9429afb of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xb944b77a cpts_release -EXPORT_SYMBOL_GPL vmlinux 0xb945207f ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb945dbeb skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xb94823cc irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xb94892d4 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0xb94dc1b4 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xb95fab8b phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xb960d965 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xb9613265 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xb9680bd0 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xb96a6616 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xb986b862 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb9acb360 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0xb9b4f703 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba3c6a sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d532db mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9f631b5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba29216d phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xba2a3933 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba4effda snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xba5a4a1c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0xba9c1aed validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac10640 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xbac4558b input_class -EXPORT_SYMBOL_GPL vmlinux 0xbacc4605 dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbacd9910 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xbacf823c pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb00fafe fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xbb036ecd device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb3d5447 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0xbb4a38a9 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb53ce73 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6dc726 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xbb6f2f8e usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xbb7266b8 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xbb7e5899 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbb860534 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xbb902505 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xbb95e161 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbb9c78c9 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xbbc0523c phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xbbcf28b9 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xbbd436fb usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xbbd84499 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xbbddc24d __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbbdf3c70 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xbbe1cfa8 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xbbe26a43 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xbbf3b86f ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xbc25a1ba ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbc463bb4 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbc4a6a16 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xbc4f4cde locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xbc5af377 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc70d43d ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbc7297a0 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xbc734af1 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xbc87239d wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xbc8ca9ce devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xbc940247 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xbc9750b4 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd6cd3e dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce39ab7 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd2a75d4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xbd2e097d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xbd2e4d30 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xbd2eccd0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xbd329a3a edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd614637 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xbd6a482a fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xbd82d3b6 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0xbd850522 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xbd87938d dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xbd98c457 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xbd9cbe75 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xbdba14ba inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbdcf8dc6 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xbde5bd76 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xbe04640c fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xbe0d823a gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe276514 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe72ff98 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xbe73f23d find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xbe7e1cd6 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbe7fba95 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xbe82430c nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xbe84c226 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbe92b2de blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9af246 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeac98f4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xbeb6a661 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xbebc968b powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xbedd0262 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbee245e8 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbee44aef bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbefb53aa register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0d43c6 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbf386311 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xbf439456 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0xbf5ab541 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xbf5acdf9 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xbf627320 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xbf62db18 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xbf6f45a9 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xbf75ba83 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0xbf7f9ce7 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbf9ef85e devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbfb712cd dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd78ef9 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xbfd9ca39 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xbfe5435e of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe74eeb snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xbffce09b rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xc00123a4 net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0136464 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xc030bdc9 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0xc03170be regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xc0420b23 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xc0518234 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xc0562f87 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc0641c94 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xc0686de5 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc0694597 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc073190e spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc09b9bcb dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0aa525d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0xc0b0e0b2 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xc0ba3604 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc0bf20a2 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0xc0cf3a73 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e62eca irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0ec05d7 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11fc6d7 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xc121f5ff ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xc130ca4b uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xc139be8d crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc141b715 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xc150625c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xc164f416 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1a34b60 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xc1b2c5f9 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xc1b55fc1 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xc1bda133 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xc1fccc5e srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc2097906 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc20b5384 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xc214d0ca snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc215d1b2 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc22145bc mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xc228ab8e md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22d26ca pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0xc23316ca raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc23fb449 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xc268f8bd clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc287208d sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2afb891 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xc2d1f3de of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2dca8db __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xc2e037be trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xc2f9d70b sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc2fad241 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc2ffb4a2 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xc31c5c86 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc31ca0bb fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xc31edc08 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc32e11c7 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xc32e655b devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xc32fdbf9 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3447476 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0xc35c2340 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc38aa8c7 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xc3992de8 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc39d1028 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xc39d3734 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xc3a057a5 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL vmlinux 0xc3b0be40 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc3b46045 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc3c3027c acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3d0bee7 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc3dd4dc7 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ebfd75 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3f4269f xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xc405d1e5 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xc419b8f7 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xc41b0724 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xc4210f4d regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42f4fe3 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc43381e6 sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xc43abe29 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xc443eec2 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45c5d11 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xc45e1131 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xc46524f5 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xc46531bc sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xc4692b19 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xc470d9a7 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47a5492 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc487899a posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xc4893106 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc48b04c7 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48c2c64 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc490123b devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0xc498bcf0 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xc49d1702 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xc4cabcb9 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4cca6ef irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xc4ccea1a put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc4cceeef crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f17d9b __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xc4fbc60a serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xc5044cdb crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc5221eea irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xc52a5cfc mmput -EXPORT_SYMBOL_GPL vmlinux 0xc532027a usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57d82c6 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0xc581fa16 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xc59840e7 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc5b2e854 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xc5b3523a iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xc5bea18f ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc5c236a6 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0xc5d5dcba gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5d6fce6 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5f3ff4a crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc60f0fd2 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xc60f2f89 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61a6865 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc62cf56b mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc64080d2 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc6431df9 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc64f8d0c ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc672aac0 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xc6737786 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc67a4442 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xc68e9b76 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc6943d22 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a34fbc device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b1f7f4 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xc6c3ed50 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xc6c494b0 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xc6c6efd8 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xc6cb18a4 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc6d2be3c simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xc6e379a8 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0xc6ee5b13 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc73c6161 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xc744a6b8 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc744b9a0 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xc7456a02 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc749a10a crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xc75e7e1f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xc771f25d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a20aa4 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xc7a4e50c ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xc7ab0ebf regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xc7ba29ee irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xc7c5912f mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xc7cf6a3b serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7ee2754 __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8025c8f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xc812cac8 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xc814c621 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc838b2c9 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xc83a21d5 blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0xc83a53ee cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8483fbd debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xc848f1db register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xc84acb7b snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xc84c7195 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc8506b1f regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc851af0b firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xc8558930 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xc8591c24 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc86cfb21 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xc871cbef tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc8776a82 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc88a9f9d call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc891136a __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xc8a08499 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc8aabfb2 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b0c50b device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xc8b25999 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xc8b2f3c5 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xc8bf4b58 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc8c1a4d0 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xc8c99860 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc8ce436f pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8f0dd55 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc8f6877c bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xc9113554 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9200511 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc92ed59e tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xc938f083 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9552ece strp_init -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95dbba0 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xc98054f1 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9a40057 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xc9ba4b8f irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xc9c1f42f unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xc9c388e2 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xc9d393da sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xc9d6b9ca regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xc9e5dbdd sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xc9e9f410 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca09e19b dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca48b933 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xca64e938 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xca734885 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca85c0ab __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xca9a9af8 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xcaa66741 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacb5d0f tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xcad06f68 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xcad2cc76 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xcadbb406 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xcade6d41 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xcb11e07e arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xcb13ba1d cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1f80a8 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2d4f66 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0xcb327d7a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xcb3d7c8d edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb5f81a6 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcb643ff3 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb8da765 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0xcb964b89 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcbc0ccb4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xcbc45e73 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xcbccec11 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcbd71d60 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0xcbe366d4 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeabfb9 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xcbef7446 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xcbfc00ce cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xcc142e98 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xcc14982b kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xcc14e674 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xcc1c09aa gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xcc20ac52 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc2f940f loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xcc2ff8c3 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xcc35c568 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xcc362fdf ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xcc37773b of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc80ac79 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xcc979e12 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xcc99a43d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xccb7c33a aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL vmlinux 0xccc6a068 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xccc9195a fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xcccd93e9 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce1cd57 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xccf089ee crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfa9dd0 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xccfaae2c __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xcd01ac01 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xcd085471 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xcd1f433d inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd252e41 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xcd2b9236 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xcd2bc6a2 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xcd2fcf92 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xcd3f06d4 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcd427801 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xcd5f2a0c led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xcd6955e1 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd76ea63 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcd7e0973 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcd82e5e9 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xcd8fe1bf pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9267d8 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xcd93632c amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda36f3f pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xcda6de0d snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdba5b63 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xcdbd4f18 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde8cfe4 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcde9ef5f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xcdf08277 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xce10b4c4 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xce1f100c cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xce220c48 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xce2e6332 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce414ad7 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0xce4f17ab component_del -EXPORT_SYMBOL_GPL vmlinux 0xce562fd1 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce82d186 put_device -EXPORT_SYMBOL_GPL vmlinux 0xcea2640f snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xcecf7c42 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xcededccc crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xcee0f60c freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee230af tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcf09f0e3 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xcf1cbf92 xhci_mtk_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xcf280c21 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf33ae47 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xcf36d28a iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5ae0da of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xcf5c8f38 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xcf64341d iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xcf6c4358 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xcf7c8f53 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xcf7f185d get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xcf906a98 nand_change_read_column_op -EXPORT_SYMBOL_GPL vmlinux 0xcf99cac3 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xcf9a3756 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xcf9cddb1 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xcfa280fd hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xcfad7acf rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfcc44b1 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcfcd5da3 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xcfd69329 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfdc28c0 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xcfe05f20 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd011f6d3 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xd029e09d cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0404c9d sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xd04499da genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07dfacf tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd08e61cf tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xd08f7f63 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xd0966418 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xd0a5a576 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd0b6868a ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c06408 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xd0c6bc5a regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xd0ca58db dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0xd0cf8d8b devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0deff83 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd0e2c805 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd11e01c8 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd1245576 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd12adfc1 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xd1540792 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xd178cef3 sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0xd1b157c0 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xd1b20710 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d3022c crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xd1e21b1f nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0xd1f2ee53 nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20641ad sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd20a84cd efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xd20ba917 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2188c57 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21cb4fc alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xd21e19c0 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd22b3233 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd23e278b devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd253176f cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd25ca477 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xd25f99b6 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xd265d89d list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xd265d8df alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xd26935e6 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28c1a1c ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd28ec266 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xd294e544 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xd2958caf ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bc9dfb i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd2d098a5 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd31876b2 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33ef6b0 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xd3434db0 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd3499f72 xhci_mtk_sch_init -EXPORT_SYMBOL_GPL vmlinux 0xd3637000 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd37cc292 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xd385f0b6 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a41f34 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xd3a5d177 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b42506 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xd3b9cb52 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd3fc13f2 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd3fc36cf ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xd401c9f7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd43f5535 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd452630a thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4674c3a clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd47183b1 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c6efa9 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xd4cd8f22 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xd4f7d860 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd4fcca4d ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xd5178be1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xd5327da0 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xd544a37b arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xd54527d2 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54812db vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xd554f5ef devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xd55698e1 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd557a803 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd572f770 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xd58dbb0d skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xd594c9c2 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xd5a5026c ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5bf9690 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xd5cc6356 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xd5cce7cb snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0xd5d45b50 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xd5dd7c46 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xd5dd9fae genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xd5e2423f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xd5ea7cf6 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xd5fed098 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xd61024f1 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd61d789f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd62e96a5 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xd6406092 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd65bfcd7 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xd660cea8 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xd66a0e91 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xd66c4369 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xd6711e1a snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68f18e8 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd6bc38b9 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xd6c1de0c fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xd6cfb9c1 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xd6e8db80 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xd6fb00fe ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7099a92 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xd71656ff rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd764fef1 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd7758c8a dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xd790e181 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xd7938d4d mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0xd79d997e wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7a14a1e __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd7b36fcf gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7c0992d sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xd7e4c37b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd7fadbce tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0xd7feee64 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xd816fe0d dm_put -EXPORT_SYMBOL_GPL vmlinux 0xd81bbe58 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd835b1d4 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd845470d cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd867e5d2 skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xd86ca95e clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd8723f94 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8810e4a crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xd897df39 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd89d1a13 fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xd8c65c94 usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xd8c99dbb ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0xd8d1435b usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd8d33002 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xd8db1395 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xd8e4511e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd8f5031b sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xd8f7a2b0 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0xd8f8b498 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xd904f769 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xd912be55 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xd913785c cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0xd919ed79 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd92c6f1f nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0xd92f3f85 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd947f10c led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xd96879a5 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd99d48e2 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd9a428f7 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xd9b60d1c iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xd9cc28bb addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xd9e5c605 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xd9ec4e77 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd9fc4662 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda078c31 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xda0d278d __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xda174e39 mtk_smi_larb_get -EXPORT_SYMBOL_GPL vmlinux 0xda1795c5 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xda2eff52 skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xda410add freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xda45b2ba crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xda4d57d3 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xda7b6449 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xda938d6f __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdaee2b48 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xdaf1e714 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb02a30e __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xdb0d43df tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xdb107871 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xdb19ed6a serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xdb26cbbd ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0xdb2983ea ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xdb2dedb1 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xdb51adcf ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xdb58a95d usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xdb72b228 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xdb77aa74 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9de97c strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xdbae5406 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xdbb25399 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xdbcee014 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xdbd80a9d of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xdbe01eab platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xdbe10f34 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xdbe7d481 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0xdbe91e45 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdbecd54b regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xdbee8f52 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdbefde23 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xdbf74387 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc087fc8 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xdc0af050 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xdc13efa1 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xdc2587c5 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdc47173d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6d11f8 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc98b407 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca11b73 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0xdca64c57 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0xdcad232f power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xdcae232e set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcb3e63b device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xdcbda155 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdcd77db3 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0xdcecacb9 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xdcfd5683 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd1579c9 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0xdd191cd7 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4cae06 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xdd4f387f ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xdd53f56d irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd54a7bf switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xdd5abd7e fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd65ea42 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xdd674800 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xdd6bb7d9 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xdd70d919 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xdd762e76 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd7a9b87 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdd8f6cce snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xdd99c82b pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0xdda7f2f5 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc018b1 cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0xddc79dc8 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xddcd1ec0 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdde7184d ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xddfe7a4f of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xde0d3f36 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xde2674cc get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xde428189 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xde618e6c fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xde699c3c debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde716d97 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xde8313a1 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xde8cf960 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xde90364c iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0xde97a571 nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0xde9ee7a2 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xde9f8a09 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xdea33718 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xdea9dbd2 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xdeb28d73 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdeb409d5 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xdeb6a7a1 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xdeb795fa sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xdeb9de00 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xdec7d4e9 __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xded4de24 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xdee0ea3c snd_soc_component_read32 -EXPORT_SYMBOL_GPL vmlinux 0xdef1ec6a phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0xdef621e4 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xdf0a0a9d edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xdf0db659 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf19b56d devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdf1a6c34 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf438132 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xdf4ba645 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xdf4dcbc4 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xdf516576 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xdf65a125 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xdf6a72da usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xdf782322 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf7fa33b __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xdf8bfa91 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd3ff77 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdfd87d65 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xdff7a050 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xdff93a4a pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe00cb5a4 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xe0210a93 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0xe0211e1d crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xe0239296 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xe02a1c23 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe032e273 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xe03d08c6 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe05e2293 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06f0ceb fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xe0846396 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe08a7f77 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xe08c8c7f snd_soc_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0xe0924849 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xe0a090fd component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0ab8753 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xe0b0c06a device_del -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b36df7 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xe0c0ec23 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe0c7f49f crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe0dbbadb crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xe102ee82 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0xe1045f40 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xe1069b60 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xe10f6b09 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe136e360 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xe140636b nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe1502545 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xe1640b03 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xe1699c76 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe16d86e4 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xe16e67d7 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe16f8dfd devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe171994b ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c2641 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe18bb577 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xe18e26a6 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL vmlinux 0xe18e838c xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe19243c2 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xe19395e4 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe1a296d3 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xe1bcafaf cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c6003e dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xe1cfa261 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xe1d7d22f ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xe1de86c7 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xe1e5dc32 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0xe1e811b0 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe1f511b7 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xe1f7bbf5 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xe200f172 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xe207502d pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xe22b81fd bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xe22d14ed key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe237d982 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xe23e476d sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xe2410fd0 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe24799d4 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xe24eb32d __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xe25b3d3f xhci_mtk_drop_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0xe2682875 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xe26d7555 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe279efbb rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xe27dda27 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe293175e ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xe29d1373 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xe2a804b5 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xe2ab3f3a snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2d8f694 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0xe2e13477 xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0xe2e28f2e usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe2fa20eb snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xe301fb2e ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xe3041c31 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30b9d9a rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xe31a2bd4 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe338eee8 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xe3561778 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xe35e82f4 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe3673aaf snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xe370bacf tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xe376363d sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3843b23 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xe38c357e ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xe390d426 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xe3925734 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe39c3fbf usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3bcfb6e nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe3c23836 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xe3c41971 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xe3ca7ce2 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xe3cafc1f nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0xe3cc0e1f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe3d1f564 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xe3d3d3de irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xe3d71988 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xe3e1cc00 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xe3e32ab2 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe3e7a7be dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe3edc860 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xe3ee90aa kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe3ef5202 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3f06c30 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4063c2f __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4110154 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xe41bc7fb usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43a2e0c devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe4591cb1 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xe4602a70 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe4805ddb snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xe48aaf10 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xe48d6931 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe4906de0 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe492dd1c sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0xe494c32d clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xe4954950 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4adb12b dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe4b2599b wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe4b37edb mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xe4b478e6 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xe4b4cead regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c7579b blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4cb5d7c dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xe4d24f7b usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4d5a3d1 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe4dc8b26 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f03866 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe4f2765e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xe4fdf637 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xe50cb08d pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xe527983e regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe53f05b9 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xe53f1388 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xe54babc2 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5522da1 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xe56853c9 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xe577d32f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xe578e848 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe5851aed ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59ee23f synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe5af6cb9 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xe5c17a9e md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xe5c6d827 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5d7409c alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xe5df8062 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xe5f8f00a hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xe60046d8 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xe60a00c4 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xe60b001e tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xe60e4a32 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63cef69 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xe6437cc2 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe64ceb7a nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xe64e0cf2 nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0xe676f304 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe67bf872 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xe67cd65a ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xe68400c8 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xe68d0ebb shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe69e8685 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe6aaf5c2 musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe6add01a iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xe6b4db82 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xe6b9612c crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe6ccc171 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xe6d03275 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xe6d66677 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xe6d81d31 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xe6db14e8 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xe6de4db8 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xe6e00878 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e9f7e6 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xe709405e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe71b0b2c extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xe726a24c virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xe73032ee xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe75dfdcd regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe775b60a sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xe7785bab snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783dcf1 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7976be6 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xe79dcd96 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7ae34ad iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xe7bbec25 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe7bde744 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7d78f98 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xe7daba4c netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xe7dca2a3 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xe7e4b2cf of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe7ecffe3 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7fe24ac tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80b8a43 usb_gadget_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xe8100455 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe82318f2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe82cdafb regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe858ace7 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe866bb7e skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xe883f3c9 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xe88952ab tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xe8a7953f cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe8a9a291 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8be4ec3 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xe8f17ae7 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xe8f5561e ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xe91d8d56 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9423691 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9615f60 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0xe96d7bbd gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe984737f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xe98cca30 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xe994af02 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe99e6fa3 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xe99e879c cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe9a05708 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9b28182 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xe9b8e3b0 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xe9cafd43 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe9db1532 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xe9f36bb2 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea140179 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea228133 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xea347fc8 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xea3ecd51 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xea449837 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xea461ce4 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xea47cdbf led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xea4ed438 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5466ad platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xea6c1e58 cpts_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea6cc8dd spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xea6d6e9f genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xea6e49cf iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xea865370 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xea91f563 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xea97303b of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xea9801b1 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xea9a5c4a iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xea9c9b2d devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeaa9165a devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeac7d493 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xeacdda9e usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeadce5b0 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeafba57b regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb04383c simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xeb05a8cc i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xeb0860e6 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xeb157fee led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb1a8cb3 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb21c372 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xeb25dee2 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb5e0de4 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xeb6d9035 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb8c0749 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xeb9561ad serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xebafb711 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xebb00345 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0xebb6cf72 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xebb9bbc6 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebc85b53 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe0eb84 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xebe16bd6 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xebe2ea3b get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xebe5131e regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xebe841b5 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xec04d72b fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec12d94f iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xec358ffb probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0xec3b0295 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xec51c41d anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xec6334f6 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec6fde8a sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec808a58 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xec8466a8 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xec872826 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xec93f6e6 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xecae5d1a dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xecc1bc28 sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0xecea2b49 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xed1f221c regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xed25f458 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xed2ddaad wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xed32589d fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xed69504b tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xed80092a iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed84731d devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed8bbe99 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xed8f5f7f snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xed9562ab clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xedc792cd regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xedc84d75 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xedd12592 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xedd43854 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xedda044c usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xede1a416 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xee073bbb mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xee0c0b21 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xee1fed45 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xee22e774 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee267a1b da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xee2b6867 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xee2c5ec7 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4f59e1 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xee661f73 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xee67887d xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xee68cca4 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee71a490 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xee813a31 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xee9237ed ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xeeb14024 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xeeb81b51 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xeec9d8b0 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0xeecfcee8 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeeea4323 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xef04ca76 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xef132ea6 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xef1ac420 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xef213b33 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef34edee fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xef357d82 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef565574 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xef60a335 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xef697328 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef85e731 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xef92ffb9 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xef9b5d3d vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefb1ad7b phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xefbf1952 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefecbc4b led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xeff96f4a led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xeffdc322 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xefffc20a snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0xf002ebe3 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xf010189f cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf016b96b crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf0198035 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf01ece22 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xf021db2b platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xf02ac203 dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0xf044d706 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf0470cef __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xf05e65e3 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf060f94f of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0xf08d2c7a genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf09cefba inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xf0a36678 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xf0ade98d dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xf0b177ea device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf0b31d89 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xf0c40e35 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xf0cdbdc2 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0xf0d5bdd1 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xf0e295b3 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf0e4466f __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xf0e8e292 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xf107bd2c fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf129f5d6 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xf12d45c4 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf1376561 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xf13be3ec scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xf14adb51 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xf1548cb7 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf15b3005 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf16387f2 omap_iommu_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xf1701e8e devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf1717833 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18803bf bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xf19205ed rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c697ca ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1c9aea2 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xf1d80d3f dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xf1ddb672 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xf1dfab56 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xf1ea72f5 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xf1eaa83f crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf1fda0b3 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xf201128c ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xf206d63d crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0xf2117709 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0xf2186826 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xf219a0b2 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xf21c5c4e nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf221932b sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xf2391090 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xf248236b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xf24fdf1a spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xf25aab30 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xf2656c45 nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xf26762ed device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xf2697532 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xf2747dc0 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xf278d5b9 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0xf29bb887 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xf2b21db2 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf2bea5b3 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xf2ce6511 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf2d6b0ff sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xf2e5620c __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf2ef2321 user_describe -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf310091d blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3140141 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32dceae fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33128d5 nand_read_oob_op -EXPORT_SYMBOL_GPL vmlinux 0xf33824b7 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf348e44b firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xf37fa499 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf384dc1f usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xf39211b8 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xf3a910df bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3c17b8a relay_open -EXPORT_SYMBOL_GPL vmlinux 0xf3e71447 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xf3f15754 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xf3f71621 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xf3f9e384 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf41ca8d6 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xf43e60bc dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xf4605c62 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xf4849065 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf48f5ed3 cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0xf492200b rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xf49bface __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4affc5e devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf4bd467f vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xf4c5d4fa sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf4d49742 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4e608fb debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5022aa5 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xf51c08a1 sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf53678a2 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xf54b3733 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54d75c8 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf57bcf51 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a852fd snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0xf5a8d9d3 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xf5b01eca irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf5ccccfb subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5d5b6da get_device -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f9481b crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xf5ff368b dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xf6148df8 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf6177665 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf619e7fd iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf6323644 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf6501b54 rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf655d35a sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xf657a8fe mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xf6636874 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66fa683 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf67a4828 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xf69648fc wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xf6989c94 power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xf69fc9f6 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf6afda8b xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xf6b878a6 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d0208b irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xf6e03b99 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xf6e06c29 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf70554fe tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xf72d987d fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf776eb8c trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xf7784617 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xf78a01d8 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf79811da __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0xf7a46f07 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xf7a853b7 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf7b1ff6f phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bd7232 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xf7c954cc gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf7cdbc46 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf7ddb214 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xf7df935d regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf7e746e4 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xf7edc2d5 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xf817a97f rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xf81a0a91 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf820e1e4 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf82864fb pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf85066cc usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xf8577614 cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0xf8681326 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xf86a14f7 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf86f0cd1 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8766b0a regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf8827129 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xf895ba4a usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf8c22602 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0xf8c687ab ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8d7d626 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf8e75b64 iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf9100f39 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf915dde2 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0xf916c996 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xf9196fcc powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xf92860c4 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf942136b nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xf94a8e3f snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf95753fd devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xf97a2158 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf985e576 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9b6762a mtd_read -EXPORT_SYMBOL_GPL vmlinux 0xf9c4ee87 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9f540d3 sdhci_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f23ec max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xfa3fc3a2 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xfa4e10b9 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa51dc2f regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xfa51f174 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfa538ca8 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0xfa5d2b6a clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa65f064 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6dfed9 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xfa6e6753 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0xfa76e582 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xfa9a95cc bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xfaada503 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfabad729 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb149944 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xfb1fa5fa register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4550f8 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xfb4594bb nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb52b57d mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xfb56f38a wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xfb6b6ec6 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfb6ecc68 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfbb2e134 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcd84fa sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xfbe9825e device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfbf0493e tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xfbfb512c wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfbfdef62 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0772f5 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xfc0d1f35 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfc0f6acc devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xfc0f9587 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc249dc4 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfc460b08 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfc4ad016 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xfc633308 nanddev_markbad -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc901c10 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xfc91c10b rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xfcb4342d pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xfcc2c214 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xfccdabfa usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xfcceba04 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xfce1032a wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xfce79724 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xfd0316f6 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xfd040770 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfd0555cd bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfd09f6e2 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfd14b5b6 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xfd2b4f83 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xfd3dd6aa usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xfd4888fa rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xfd843ffb access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xfda5a08b devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfda94724 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xfdac578d tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xfdaec600 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xfdaffbe5 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc6a681 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xfdcbdf5b kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfdd2a7a2 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfdd65b1a __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xfde111c4 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfde79f76 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfe27d848 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL vmlinux 0xfe29b8e1 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe31fcd9 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xfe33ce0c modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfe367dc9 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xfe43efdd inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe485447 cpts_register -EXPORT_SYMBOL_GPL vmlinux 0xfe48eecb __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfe4fe31c virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xfe51bab9 musb_root_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xfe545df7 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xfe54af6e xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xfe575bb2 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe634d4f disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xfe918b4d adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfec3342b serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xfec95f66 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfedf3759 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xfee52002 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xfee62077 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfef67ace btree_init -EXPORT_SYMBOL_GPL vmlinux 0xfefde5ba stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff142a65 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xff15a095 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xff1ef746 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff303f8f gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xff3c3b7c dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5dc2ef device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xff809e65 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xff8b840f power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xff8d8543 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xff9c7b39 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc69074 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xffca9fe7 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xffe6e588 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfff87ca3 proc_create_net_data -USB_STORAGE EXPORT_SYMBOL_GPL 0x052b0b1c usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0b03ed3d usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0d143284 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x106257f2 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x13c84d08 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x23ae180a usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x252acc08 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x38bb720f usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x39797a32 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x41ccbd60 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b5ee1b5 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4df13fba usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4f9899e3 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5537449b usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5b29bf11 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5d8e6703 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6296b11f usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x66712544 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6b2232eb usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7ffd05a4 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x926c427a usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa09e8c3e usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa3de212d usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe398c2a9 usb_stor_host_template_init drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic-lpae +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic-lpae @@ -1,23005 +0,0 @@ -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x63854379 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xfdb6c142 crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x0303ba28 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x04752999 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x31ad7ca0 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x43e7297d crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x4a078ab7 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x6644ee85 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/sha3_generic 0x38014f23 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x5864b9fc crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xc1faa282 crypto_sha3_init -EXPORT_SYMBOL crypto/sm3_generic 0x1bbcd451 crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xc3a61148 crypto_sm3_update -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x3f1e8a9e suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x0cfe6762 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xfb1c3c67 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 0x14c2a17f paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x2d326159 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x31066016 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x559413f5 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x610476ab paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x75a4af36 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x9f4b246e pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc4d25c8e pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xc5a4e033 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0xc971aa1b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xeaa9d423 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xf73335d3 pi_release -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x51e06718 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xba8965f3 rsi_bt_ops -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x85dc1e83 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x86cbb7d1 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb2c9b7a7 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfd61a231 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xac8e37c5 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc755d694 kcs_bmc_alloc -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x18fea965 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa9196891 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbb756db2 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xce815f9c st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc82acb80 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc968d519 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe4a935d5 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x24958534 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7800f921 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfe034609 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0829f171 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ad628b7 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b151a7e fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x12601053 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3089e0e2 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3932d9a8 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dcd50ff fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4aa65c01 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4deda0d3 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x54850819 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5bf8f2f0 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5d813d0c fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e1575d3 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65189cae fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b6d6e7f fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7be60e5b fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7dd3360a fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x818e45a2 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8236538d fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9012e2b3 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9829d4dd fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9dcc3a40 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa5c4510 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc52214d7 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xccdd4caa fw_core_remove_address_handler -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 0xf7a7c2a1 fw_card_initialize -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0081ab9b drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01cb9180 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x028d720c drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02bffee1 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e80937 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0342a6cc drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x062c345b drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f08e53 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e9c610 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0819dea1 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ff6875 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x094173c9 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e27aa8 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4d6ba1 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a54ab5a drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5dcb33 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a85eabb drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb00053 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bcfe24e drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c996f05 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea89fba drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb8ea58 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1043958b drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f83c6e drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cb748c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12de6811 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b60caf drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13eb6c6a drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15bdf06a drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1693677d drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x179d6600 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18410c82 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184f8ffb drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18da5335 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e03764 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194c267a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194c6f4d drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x195ed7b5 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3d5ce6 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6e76ed drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bce7d2a drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1d1ff1 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ddb9b89 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8cd5b0 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20808e31 drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20970204 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d47adb drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2149a614 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x218792d8 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d39f63 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224b426f drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x225bbe1a drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23714211 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b480bb drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cd6c08 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x253a1323 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25501b7d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x260bacc3 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c01d6f drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d23c3f drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e1665f drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28437717 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ddfdf3 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x293389ed drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b07500a drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc83473 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c315b67 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3be509 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c76502c drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2208eb drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e265fb1 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e2f4e82 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3d841a drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f52ec76 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31799aad drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x332df1df drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36392bbc drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3738b65b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37acc824 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x391a88ca drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x394cf57f drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a762c58 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6dfcef drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c451bb3 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c62073c drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c772d0e drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccc0091 drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d970b26 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e2cef37 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e757262 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f4c9032 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x401030c3 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x402ecccb drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c3b03b drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c9d723 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fc0c7e drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42834620 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42a37216 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f14200 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43436c45 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4357fea8 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x438a6342 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x450ed082 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x463718be drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a55b9d drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4753a572 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d7e3f8 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a11fce5 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a34b73e drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd82384 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5618ea drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca52ff2 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d18fc93 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9b8a61 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da50a30 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e25bed9 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edd9780 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef1648c drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f382be6 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fdebc2c drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x504d9878 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x514f441e drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51605bf7 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5162805c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5235bbf8 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5345d780 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53462002 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5405b860 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a70ec9 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x566db806 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5690e2c9 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b4e9df drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f526e8 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590e02d5 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590fc209 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a40c4d8 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5adb4456 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0acc3b drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b521588 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6b05f3 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d622922 drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e600ba9 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef25c06 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f495983 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff7c823 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x603e73ad drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x625247ad drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c58c7a drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67eb48ef drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68880225 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d0babc drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae676b5 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c186bac drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd2384a drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d410691 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcbe381 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6def3154 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e36a51e drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec26b46 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec2d0c3 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71043429 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71cc30f8 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c44c00 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f7b93b drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x755a945e drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77aef36d drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b9e259 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x787130f5 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ef7c12 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5f1d00 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b7762a2 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8b9684 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf50c22 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8007b0f3 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x803d0881 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ec76de drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f6f1c4 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8274fde0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82aaaccc drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b7f758 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837f4b02 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b67d82 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8434e0b5 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85353f6f drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853c15dc drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x862ce8c8 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a9529a drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86edcd97 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x883736df drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ea4ecc drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b6c5b5 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f495a9 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a20afd0 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a344c8e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b4e1683 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c154251 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c43495b drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c8589a6 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8a9197 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8bcdc9 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dacf4eb drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3391b3 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f441755 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9044c69f drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90dda13d drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e5a1da drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f66b7c drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9165f7cd drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x917ffc1e drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9202bf8b drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9212688f __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932332f3 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93271cf4 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93951f8c drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x943d313a drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cf63d3 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x952f2e35 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9649bf27 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976cd139 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x977b7993 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b324a89 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b729533 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd25467 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef67ec8 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f023df1 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff48149 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa014c1d9 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa154f552 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa174f38f drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa464099f drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4733e8f drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4adb1d1 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b474cd drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa612c74e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6406aca drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa778ad8d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7934e60 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ec4014 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9368b1f drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa99382b6 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa60c9bb drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa97f5da drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaaf4e42 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb1e22 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca79f57 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc41765 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xade352a6 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae97e447 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1abfbc drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafdb8028 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb08d0840 drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1beb40f drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c50d5f drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb355b59b drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb420d6e2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4898a35 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb576f21c drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb60ccef3 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb635d768 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d0bc32 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb782970d drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b9b0f2 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96080c3 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba795135 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc59fac2 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbced9d8b drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe91a986 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf361264 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf498f95 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf56c1b7 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18e66b4 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d9bf0b drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e1fada drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2bd8d66 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c9dd29 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dcd383 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5d3f48f drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6263af2 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6486f83 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc670245e drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7009aba drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc780f53e drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c42bcf drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc90cdbdd drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc95f98fa drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0245f4 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb91f3ed drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4c4e31 drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd9e7877 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce20a595 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcec2d4bf drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07f400e drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ef9f3a drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd137b1bc of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1851e12 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd262a528 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd285ba06 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd330e2fe drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd376c4aa drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f0a3dd drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4139314 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62009ef drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd780b709 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd809a993 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd964dada drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0abec1 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8631c1 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba8ebef drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc0778f drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc80203 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde300ec drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde80bc1d drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12e8679 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c85ead drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe252170a drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe424ed28 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d164b5 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51323bc drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f09cf0 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe806838b drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94e8ecb drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94edd17 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1198d3 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb447540 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb84016d drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8d953a drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec864da9 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec873c1e drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf7be04 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1151bb drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef41bb93 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef49d262 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf059371d drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b210ce drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28cda14 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4247ae1 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4256ab7 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56268a4 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b637fb drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67a5b75 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d24831 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf79af792 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7cbed30 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8613ffc drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf862ece4 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87dd0f6 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c19217 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf916ae2c drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5c0ea drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c0fb1e drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1185dc drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa95b3e7 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf55e8e drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc50f9e2 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcdd52c3 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd76c11b drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9880f4 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc96770 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01ffe2c3 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x024db9a4 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04e5238e drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a55994 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07dd32f1 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0858ace3 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f50eff drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093249d1 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x094f552d drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a39a7f7 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be8b149 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d426476 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fbebf43 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12cc7fd0 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1375b823 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e2c142 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e4f39b drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1714dbe6 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c1892b drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5c65ea drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b62c8b3 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c50231d drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c6ae3b5 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dcbbcf8 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fec4cda drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x203e2125 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b0b72f drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f2f00c drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2344a250 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24749447 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x256d138c drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2728958b drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27ee958a drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b5f722 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bef5d58 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc62f5c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e13325e drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f400ed drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325224aa __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36110d2c drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36347def drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c08bbcd drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed4eda1 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f118689 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f84be6e drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fa02030 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x447f0d52 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44eba446 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469460cf drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x496f4863 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a847265 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a8d70d6 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c4677d7 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4caa92b7 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d2d5170 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4de24b8c drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f4ed756 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5047bcce drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5107c9e1 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x518739ae drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53202991 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x549ecb82 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59db02fb drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59e7028b drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ab8b042 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ac75b09 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ef80b95 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f89d7c3 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x607ae98a drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x647aff52 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6616348d drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6871f10d drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6934a8f9 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69418d28 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c774783 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d61b899 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d6b3b87 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e36c566 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e530ba0 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6efa1fdc drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f55464a drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x725372f1 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x727a08ff drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ecc611 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77c7758a drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77f43e54 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x784153f7 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79055ce7 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79bba1f4 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b198223 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bef14c7 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3b640a drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7db1ed25 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ebef0a8 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80cd7eec drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80e561ed drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80e9fa07 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83620322 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8501a344 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x858ea11f drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d0bbae drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x864150c6 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a5eab5 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8887e077 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8abbc7d3 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c125435 drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c6e38ca drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d14566e drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eed79a5 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f27ac98 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f640475 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fbeed6e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93698ff2 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94ab6da4 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958e2eca drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d721aa drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d7acc5 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e26a47 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cd72e65 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4ea71e drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb14814 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed0c646 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa09a169c __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa09f6ffc drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d00ec9 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4774ada drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6723f0b drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa925b077 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9989e56 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaabba4ab drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab50035e drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac46470f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8ddb8f drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xade61973 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaff03e81 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb100ab27 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2001f73 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb248d9c3 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2cdb3d0 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f5e5ea drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb97777e9 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb980151a drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba5e19d4 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcc1fccb drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcf0f3dc drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe33049c drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeebda45 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf740697 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc11fc3a9 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc235f777 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3aa2f2b drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3aa5bd1 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5bfc48e drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9dc08ca drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4e2774 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb24c16e drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb31ee49 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd92c27 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1ce954 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0afb296 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2964863 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d9ab8e drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f46b99 drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd70cc606 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd74294f6 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd83f08b2 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e624ab drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda4303da drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbe3b16f drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf23c96 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc626ad2 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd18e04 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1eff67d drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21aefcb drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2bed7a5 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31d3af5 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39a5a9e drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4bc443d drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe52d5a83 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe663b128 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6860ead drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9cc2553 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee2570ac drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef6114d3 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefde424e drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf01f577e drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02d2caf drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf10d9e22 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c507d2 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf762cdb3 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7f2940b drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8bcff67 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9cc45dd drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1dc3ee drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff535ae8 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03d9a41b mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0ff9bf52 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x120dc03d mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1d11d5de mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f9e9e52 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2021911b mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21861c34 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26715a82 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2b3e519b mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3b66eb19 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47557dc6 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a7880dd mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x677eccbf mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7a922716 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9a7623ba mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd17d229e mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd4d1700b mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9412b90 mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09559cfe drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0cef5a36 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1fabee62 drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x232685ba drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a8d3242 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2cb3db74 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a6024f1 drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3d0898f1 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4b01860b drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f2cb104 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72aadc28 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9a9c66b8 drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8ad4720 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbea0701c drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc1c490eb drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xce140d4d drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcec09397 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd74d79da drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd4b9155 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf28a2eb8 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x42f2e45f rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e532440 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f555d16 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2468a64a drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4fce6c71 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x512b1371 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53995c7a drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55af884a drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5978f600 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f7b6e71 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6037ef7a drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f83482c drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x81d0d3a2 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x91d51480 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9798fec3 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa876b7f3 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab946768 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd79d34aa drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0df2a88 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb0b5e54 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0170822e ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0975b53f ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1820855b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1983351e ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25518f47 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2752ca6c ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f539bdb ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30c6aba5 ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34319b00 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3755ea0d ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39ce1e8c ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a99d6b0 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x412ae419 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4271f5d7 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46c42712 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8a6a37 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4de6c890 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50e7f138 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51d483bd ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a71617e ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60dd0403 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60dde171 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6121866d ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62858627 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d5bed5f ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6edd19d8 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d6d6095 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8394f41b ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87740e69 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c2c61e5 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9066ad33 ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9427829f ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97ee2476 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a7d05e7 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bb6a44c ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d12aa0c ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e365866 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9ae0b75 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac6f0a24 ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad37888e ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafba2cca ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe9a3522 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf45d45b ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0e03119 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc36e3555 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc482a286 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5125117 ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4d0ee6d ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc9d31ad ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddcc5569 ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeff3713b ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1e49afb ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf21d1844 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf38a2d9f ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf446b7a1 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf513d32d ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf60578cd ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9cde8eb ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc7e8daa ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd00e75a ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdffa381 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe9eae3a ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffcfe4c8 ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/hid/hid 0x44fcaf0c hid_bus_type -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x6bf50f40 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb0364a9f i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbc6f0e0a i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcdaa7f62 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x557814d8 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6548744d i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe77a2c91 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x659f2832 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa4745c48 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe35c5959 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d6d4724 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e2cdb1d mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x77f733e8 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x78b40aee mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x840380f4 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9e899445 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa557a46e mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb89ea9b9 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbbbad918 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2c72f6f mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc8e8ae8e mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe6251418 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe929abee mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeb99c927 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf4e74b87 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf91a63ac mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x21fd6036 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbeef3c2f st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc7e785f9 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7a93a01a iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xf814fab9 iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x339aa76c devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8125d84b iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9932fafd devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc6cfea73 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x21e8e983 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1d67cc4b hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2396f0a7 hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x296b1e8a hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x58e3ca79 hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x662ee61f hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7d20be60 hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbc1a1dab hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc90ac2ba hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xef8877e5 hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xff895b8e hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x0869edef hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5b63eb62 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xde269621 hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xea2547ab hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x31736e8d ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x56885381 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x61220b4b ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x64bd60fb ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x686eb070 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7fc72d6b ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbc7fa05b ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xda387a73 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdc4e88fe ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x05b556b5 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x108d98cb ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x481bb2d8 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5852809f ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x85b05db0 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x169e5482 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9affd9b2 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xee0bec44 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x085ad3e5 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15537f51 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1b206004 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23086f1d st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x28154c4c st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ba7c942 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x38cce277 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x391fc29e st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4633e2ee st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4e6b34fb st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa51f2fb3 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa9edfacd st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb891c440 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd7356f8 st_sensors_of_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca21068e st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcdd52cc2 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd3a439ed st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe8bae19f st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x5ae5aefd st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x4de2dd53 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x475b863f mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x663c4862 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x89527576 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x065e60c2 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8c41019a st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8f132dd0 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xadfaad1c hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xedac51d0 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0dc6678c adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbd183ad7 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xb759c25d bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x21dad18c st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x421ad13a st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x095b2951 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x0d0dc02b iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x1a20d035 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x21077b9b iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x32e67666 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x3dd07508 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4b2803c1 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x68971012 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x8c5f9538 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x8e7fffef iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x91ce3df1 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xaf5094c6 iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xafdd764c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xb4b53f19 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xb6b750ce iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xb9c7a9f7 iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0xbef3dd97 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xd08a8aad iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe2da0e73 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xe961d1f0 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xec0d624b iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xf19c0dbd iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf58fb0ab __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xc7c08a6f iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x287d9794 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2dbbd8e7 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x51b5231f iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9e189d84 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x106ed947 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x52046fa5 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x545b8cc8 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xafcc5e59 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa825f3eb iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf060a24d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x5f82c3b8 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x790ca276 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xbf1c035c bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xcb61ad49 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xeff1586d bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfda0fa07 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1bd81108 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1f7ef64e hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7db424ff hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xbebe0813 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1db5ca3b st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x80c7eb61 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd261e58b st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0557a223 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x189d21d4 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x947f55fb bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb02272c2 bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xefd17f41 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc3872098 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe8599b24 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x27994a78 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x890c8175 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xfc612f12 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14b0d0eb ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ceccc10 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a39bd03 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64b12a7d ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ea973a4 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x71bc5879 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x83e1ba84 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e6e2861 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4020e31 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb447df18 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb84e334b ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbd48361 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc72d141 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc6ebf188 cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3334a7b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd39d1005 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd980499c ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf45e8533 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02eed096 ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04288f57 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05231deb rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0660f7ba rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d13276 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07352359 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x088dc94e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09792ae8 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a563f32 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b92d499 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c804099 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d5416b9 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e01286c ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e3d27ab ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f3e051e ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x107cdfb2 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a9fba9 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12842d29 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13645638 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13bf1371 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15548dfd ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d671ff ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15e1aaaa ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18a3e2de ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18abd8a2 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b208f6f ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c2521a3 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d75910f ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d9a69ab rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eca41bc ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210ffc21 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23bb307d rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23e8f0bb rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2412849d ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265c834d ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c57e56 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28516078 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29912f1d ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a9524ec rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b7517d2 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cfcd49a rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d972aa4 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e54af71 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fbc7542 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x335d054f ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x372ec399 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b29f13b rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c08b61c ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40bc1e2a rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4109fd11 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42123f7e rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42a59602 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d6915e ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4411e27e ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x444293c1 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4598770f rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4623ebf5 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467aa782 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47df50a1 __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47fead39 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d5574d rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4985df6f rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ce7e33 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a0a58b1 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b488e3d ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c64918f ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fe00a26 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525e82ce rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ac06e3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5518f4d5 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b06b68 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x594bd2b1 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c2eef03 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d1208e8 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e03061 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e6796f rdma_rw_ctx_post -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 0x64a35df8 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6698c997 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d4f445 ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68baffd1 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6afa9486 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b500b66 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b74dac4 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce32741 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e6a7f9c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71d1a338 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x745160c1 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7693a2b4 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x779dc6b4 ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78fdc73f ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b9dc8da ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc8e705 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e58a4bf ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x801767c4 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83780c51 ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b64c2a ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8527a752 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f7be82 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8772fa9c ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87def649 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0d4929 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ba4b59b ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca07b68 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e5868a0 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd0fb8b rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x901805b1 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x904dd6dc ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92fc92d3 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938638ba rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94039854 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x952d96a4 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956d16ac ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x960ecb5b ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98577347 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f09f1bb ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f35ae8 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e81aa0 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3710422 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3855051 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa437cbba rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa47d63f3 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e8bb78 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab38ecd9 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabfe50f5 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0186164 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb226dc33 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d58098 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb55d4754 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5df6ce8 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb664a7db ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb89b60be __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c16864 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaaeab1a _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc10fc86 rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc7a3e65 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcdceca7 ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd01de93 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd0ad14b ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe48dc9d rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbebd9c40 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0cbd47a __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc21a9706 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32c875c ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3f9bc60 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6992b0e ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc778225a ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca84b3c4 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb16b7b8 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc69717f ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc6e2a30 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd9f121a rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce46bb34 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce595ade ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0484d00 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd068f31d ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3fa4ca8 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4e1c774 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd70f737b ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f81823 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda21ff61 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3b0236 ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda7c73aa rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd5d0652 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde64a90 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf7e8565 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe02de232 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27582ce rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8036c69 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe82fbd28 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab671ea rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb4d47ed rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6f4401 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb9d9a9c rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedeba82b ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee664958 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefa0289b ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1111ba1 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1857906 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1e4ef96 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf29824f3 ib_process_cq_direct -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 0xf9703ad4 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa3b2cbd rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab69986 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfae712d9 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe72f219 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38afc28a ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a55d644 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d31ca89 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x404e11fa ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x52eccb8b ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c7cb6fa ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61e90039 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f64c4b1 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x733f8a2c ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79a44664 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b28a5ee ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x943799a9 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ce68353 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cea6e46 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0282ffe uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa07a238c flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb26001bd _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9d57f43 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf911ca4 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3bf947b ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe60bade2 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefbd1ffc uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9e611fb uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb05b843 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb86168c ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbbd3c62 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x373beb45 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b3a51e2 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7641f78e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94270667 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc855f509 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe0cfdcb4 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe17e1b1e iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe8992c13 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x018072ac __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x274fae84 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33e94a09 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b843487 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c4fd06d rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c6d0e1a __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4294c3a3 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a22214c rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5705a9ef rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5fd4270a rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64a89a27 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64db828d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71af1118 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x807785ab rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8cc6ef3d rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90563d14 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x942585e1 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1f4a218 rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa59b56be rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa733833b rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9f36bd5 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd42d5af rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8c3d8f4 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcce44292 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3082580 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd929793c rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb46d9dd rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1e93820 rdma_resolve_addr -EXPORT_SYMBOL drivers/input/gameport/gameport 0x32d71a79 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6f260ae0 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x72df891e __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x929f7ecc gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc2afc254 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcad2d507 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcd33ca34 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe392e8b2 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xeebe0ec4 gameport_unregister_port -EXPORT_SYMBOL drivers/input/input-polldev 0x4b9aab66 input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xa21736c9 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xb5c90881 input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xc83e04f2 devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xcfe69761 input_register_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x113e518e iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x807a1596 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9b730b18 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x3c461b79 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5b81837c ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x70fe84d7 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x7b579172 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x138d7861 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 0x64d452f4 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b70bf4b sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5a38af3c sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa3352bc3 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb438785e sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xcebb4247 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3155a62b ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5c425a6a ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1c965df7 capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x222f3241 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x38bf1463 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5b45f11b capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x73fe295e capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a540e01 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x997bb6a6 capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb2c9f074 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc51a683e capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe361e6fa capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -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 0x42314caf mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x432ded75 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x444c281f mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5bc536c3 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7f12200f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe1d046e5 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x01a65f6a get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x13911bc9 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x16ed4f84 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19982920 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19e55fa7 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 0x26d18b38 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x274d5056 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2cb5318f mISDN_freedchannel -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 0x36942679 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3df8f6f1 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x529d6702 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52a2bc23 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54566b57 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x59005735 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ff2a05c recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x607c610f mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78d8aefc mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99b7ee54 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0d7610b bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1e29d12 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf462959 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0989ea6 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe94b4aa1 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xba96e400 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xdf942246 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x0361ddc9 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7927a790 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xfec80dfb omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/bcache/bcache 0x0d8904a0 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0x34c333b4 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x611da4ca bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7782e88f __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e23be52 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x8efff430 bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9ac7c147 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xadb6b25e closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf788fbb bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc140a4f7 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2e8205f bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc4022eb3 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6a36e24 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2381a89 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd47b1f8e closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9e35cf8 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3e5dad3 bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfa93de35 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/dm-log 0x36940649 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x4b0bb5a7 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8fd10e08 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xe3f66b5b dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x64eb9544 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x68fe0937 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6d082ce2 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x85d8ed34 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x884cea59 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xabe25d21 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x179ff4f9 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x1c7a8194 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x614d1206 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x71e8b97f flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7512567b flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x770edddb flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x857d324a flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x893b013d flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8be81647 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x923a486d flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x964208f2 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9a0145a6 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xedefa20b flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xef0f6701 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfcc386e5 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0008bf5c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x208ce02c cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2ee9406a cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xad8926b2 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x395131bc cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x552228a4 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7f405200 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf751846d vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x23d5056a vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x47cc0f2e vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8e223b86 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8fbcbc55 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb5342f61 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc77755d6 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xebbc0dde vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x006d6880 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b760411 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0fcf1889 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f73a7c0 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21381c3b dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c33d296 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3612b07e dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3dcdf1dc dvb_register_frontend -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 0x4be5c646 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x502598b8 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50342c59 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x586171e4 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x615a2c88 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63b23421 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x683d6f58 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b0c2e04 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7806e4ae dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b334d3c dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98f63dfe dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d93c8df dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4e7df4e dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9fbcf43 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xacbb5f95 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb21d0966 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5578c99 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6cb37ce dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdafc31c5 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec1c65f8 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedda2b2f dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf217974e dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x6ab5985f ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb53c0aff atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1fea0f97 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2020f6fb au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20822997 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33b3a75f au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x392d6167 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6abff244 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7a9229ff au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xabd0fecb au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd39bc79b au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x4f5ed932 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4fd45d9e bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xc7577e80 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x83c78b5a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x5b6e48d4 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0f6c5fd3 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2c8972e1 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x6e7da6a1 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x18bc373e cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcea1ead9 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe9e691e4 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x89fc75a1 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xade43714 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf9090f93 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xaed9a805 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x163116f5 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x39c8822e dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7f039bf8 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8f027f8c dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9842a49a dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0067b142 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c25db25 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x34803da9 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x45611194 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x598f1b3b dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x808a8e3c dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x809898e0 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x80fd87b0 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xac29d66b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4b7e555 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe687870 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb9c50f2 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3418749 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xefbeb451 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfbaec28f dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x64a3c1fe dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x12a80148 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x70a14486 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x946ee0c1 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa6828988 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc95ee364 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd11239b2 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x287d0dc4 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4e1ffd09 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8528ad47 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9d891669 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x4f4a527c dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa95791de dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x114bbed7 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x255f9e87 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x343e1c5d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x39580208 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3d99b3db dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4adf3878 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a50b348 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7f9e7023 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8d420590 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc72376e0 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xccc5f21f dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcce4dd5d dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdb71dc4b dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x17d37b36 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x78d54e35 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc343a96c dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcdc342cb dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdca1a0c8 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5e099174 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x8d818e21 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x97c37cd5 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa8333e41 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x289d1a23 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5af0f874 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa0ff8246 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf13edc1c dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4aa1be1c ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1a86599e helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x3cd63942 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xcda59a93 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc5786d9b isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8a4d5a71 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x4517d912 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x242ccd50 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfd4dfd44 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x824ac9ba l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x1211fc2e lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3840c09d lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x95e8dcbe lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x35c6421a lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xb7d3d17b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xf822d4a4 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9d5d21fc lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x0b3e0044 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6d0df213 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xaac9f5d3 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xfbcb14db lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x364291fc m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd33ad730 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x01575353 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x59a5939f mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x1f9aed73 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x86102f38 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa64d3334 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x5f3e7fd8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf3c57ef2 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe0db30fa or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x7499da51 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x8669a404 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8cadd32e s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7fd4ebde s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd34f19f6 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x24fc89b7 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x64e8e169 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5b9c3441 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xf337a66e sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xe9d2f403 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4620ab0d stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb0de2aa0 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x9cff9cad stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x860993be stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe1c66861 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfbcdc9eb stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x04fec7db stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3a99ec0a stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe2191d99 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x6f383b95 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2333e9c9 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xd67f3097 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8847def4 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x3f7120ec tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2b25e703 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6c91fa04 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x02e7b246 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2693baa9 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x6270acf1 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xd241232c tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x69a6928d tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x93a0bc15 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x26877732 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2411a60f ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8c1ffb61 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xede8b59e ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x548171ea ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xa31c1f5e zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xcba0d830 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x675f17f2 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xaa4cc8bc zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xdf846377 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x04b13306 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3e97a987 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8881cc89 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x89d58c83 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8cb1c3fd flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdb7f45b1 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfbc2f24b flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x33678f8e bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96632017 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x967745d3 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc7cede9c bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8065e81c bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa193f508 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xea6c23dd bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x04fdf1d7 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x294ba858 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x407a9ca1 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41ed7c58 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6a2bbb12 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x929ce7b5 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xab898eeb write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9be3ee5 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xea7996b4 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x7ce2e19c dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0d844335 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4ad430ab cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x54c03728 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa44a4e77 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd2598cbd cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x59a5ad6d 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 0x04c7e32f cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3192254e cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x35db112f cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x42ea3205 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6bdd365e cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x791a675b cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd87350e2 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa13857fb vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd6428ce6 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x46744d93 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcd3c1410 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcf255e4a cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xee010827 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4707112b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x503e12de cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x52b2ca60 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x67ea62a4 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa1ed62d9 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa3a5f137 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc15c39b7 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0aa56c75 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1206fbbc cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2569a2cb cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x280f5f30 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x337647f4 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34e8dbf0 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3acf70a1 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b12202c cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b55dbb9 cx88_risc_databuffer -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 0x6629aca9 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x679f2b1a cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f520b5f cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7337390f cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e907f9c cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac358d68 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe6bf1a9 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc63a2a51 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc63e0bed cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd09988da cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfaa9f8f9 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c44d7d4 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x135efc45 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35a213dc ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d009d07 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65d968d8 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a4a61f5 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x87a8db25 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9d504ead ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa8f6827 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc0060e30 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcfb6f0e8 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd2b8811b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd56b9cfa ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdf97b8fb ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe9823c12 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8760a91 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfe1e8479 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0c8a3a03 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5a4727d2 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6807a255 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x703c3ac3 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7cae80b3 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x85d2358b saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x96beec17 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaceb6ddd saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4f73333 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc4ffb02c saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6e9fe4c saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xeb6a96d5 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x372c7cb5 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x2d6d4aad csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x6691f7fc csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xaf0d8a13 csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xe1ab976b csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x5611f6f9 sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x60a6a997 sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x8bfcd9bb sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x8caa1dda sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xf83a71f7 sc_config_scaler -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x09c17804 vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0d0de625 vpdma_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x14f3af38 vpdma_get_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ee5d41c vpdma_add_in_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x24b25729 vpdma_list_cleanup -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2670b577 vpdma_hwlist_release -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 0x40d3c471 vpdma_hwlist_get_priv -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 0x59819dca vpdma_map_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5bbb0df1 vpdma_submit_descs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5cc7c037 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 0x64bde461 vpdma_clear_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x948a9184 vpdma_set_frame_start_event -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9c24b248 vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9de56bd8 vpdma_add_abort_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9ece601a vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xbed3f88e vpdma_get_list_mask -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd52d0266 vpdma_hwlist_alloc -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd84e12bc vpdma_set_bg_color -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd94be616 vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe019e937 vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe39d707b vpdma_list_busy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe75d5e68 vpdma_set_max_size -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0d1ece83 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2f12ad79 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4c733df9 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x834c8502 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x83fdf67a snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa170b425 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd08eb856 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x24306018 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xc86b82ee ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x0e37c4b8 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7c43faf8 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7231dc91 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8b4cca93 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xce869291 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7d340a0e max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x59e75f00 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x5894fdc9 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x159a1afd mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf01210d4 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x2111b88e mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xba4f33fd qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd9a32481 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xc1ada037 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x002c253c xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd66b4705 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9367321e cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf56d749d cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e9423bc dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4b2f9891 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x54e626d3 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5dbceb23 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8a2e6068 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa7d1020a dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaa47d392 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcd833440 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe2d0017f dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x59b1e74b dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x64680c54 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x686d6242 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb5096554 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb513083a dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcbd39de6 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd7d18505 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x95fc5c15 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 0x0d70fd83 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x481568fe dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5df39a5b dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x925dd8ec dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x94ad91e8 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa142650c dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa987b0d6 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf30e1c0 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe8499fd9 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x19103b65 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x97d3ccb7 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x52c07043 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc43f088d em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4483d833 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5cf943c3 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc05b966e go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc7f50808 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcc201337 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xce6f8445 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdda5c796 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xea6fcd6c go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xed171f2a go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x06ba49d0 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x11dc078e gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1dbd2bac gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x231599fe gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2dc317f2 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5c9fc99a gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x655fa52b gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x85dad7e2 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x29a685b7 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4eee62ca tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5616525d tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x91c4b99c ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xba03b856 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x01517a2e 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 0xbccf858f v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc1e20f09 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x000174ab v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x052d083f v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x073d78f9 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07c88644 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d4cdc6c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e3064ec v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14d503d2 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1af4b94b v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1dacba52 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x207777b1 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24abcf78 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2688f711 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3015537e v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30b61e01 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3454b66e v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34f26da4 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3574e87f v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3948339d __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ea6e3b9 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4473fd46 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x499f2e74 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x546555f9 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54ccd4e8 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x562af2ca v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58e59764 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x619fd78d v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x655d3cfb v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f4eac58 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76f47a01 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a894019 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ad0a4b9 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c34d8c4 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83bba29c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x895b2bad v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a2972d0 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a444e86 v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f0c20c6 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91ab2414 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x931cf681 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x948d09df v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f6f52a3 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3995a83 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3d97f81 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac85a1cf __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf379c18 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf739f45 __v4l2_ctrl_s_ctrl_string -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 0xc5ae337b __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc88e4973 v4l2_ctrl_new_std -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 0xd26f3356 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4e8ef78 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd54b4ab4 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd567bcc5 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdee599f6 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf1c8162 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2a6aaf0 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe389d11d __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8a7a878 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba27d3d v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf04c4b28 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1346bb6 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf30e2a20 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf478646c v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4ca44d0 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf73ef1c3 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/memstick/core/memstick 0x112956ae memstick_unregister_driver -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 0x5a164333 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x709e8d37 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x919cc576 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9bfd42ab memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa98fed3e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xabd7e80c memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbbce645b memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe5c41f46 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe668c806 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebdeaa69 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf9829619 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05f86e6d mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a81dbc2 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31c1e328 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d3d9017 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49042982 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f68e0e1 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50f47379 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60392a9b mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62b975c2 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66e2bb40 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69dd0497 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x703d2dbe mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75b60c8d mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c26dc5b mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ed7999a mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cf3daee mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94c20f93 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb54118bd mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb63fefd4 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb64e2526 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0537b41 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4dccba4 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc53d3b0f mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca6563c0 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdabe2b2a mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf6c1f46 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe80d777e mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3f16e84 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf64028b1 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10c280ed mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1417d7db mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2837626b mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28ba9b54 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x292b92b2 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b89743c mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36136681 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41006fa6 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42af08f9 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43ca9568 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x444218fa mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4eb88f66 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59395287 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fe277a9 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63c7b9ea mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c7033b2 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8159d873 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84cdce92 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x953c992c mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b78815d mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9e17d96 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xafb7280b mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaff23b79 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb85da17c mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd04e6831 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf51c423 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea9bd199 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/mfd/axp20x 0x633df415 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x9c1115db axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xac9fe679 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x09b9332d dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb1b631a1 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe81881b5 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x1ec296c9 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc708a050 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14a50554 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x464fed9f mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x60b031fb mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7be9a4d2 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80441e49 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x86fb3210 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x880b91cc mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9dbb4d31 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb56219e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd5dbe2b3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf753158d mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994 0x1e58b442 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x2ab92629 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x768a02c8 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x87e19f9d wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x968a8eab wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xb5db2404 wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x1853047d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x55a7ec0d ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xfa435565 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x6b721dae c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x7e9e0a47 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0402af29 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x0aff93be tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c5f95a6 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x11a49eff tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x34ab4b18 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4c13d1bd tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x594f4f89 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8d487b7e tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x9f5c6f9c tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe27db2ef tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe7ad1bfe tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xfa8a0979 tifm_eject -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x11e34963 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x492e4dc4 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbeb8ef0a cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd53a0533 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe7aada0a cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x20cc7aae dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xad378e54 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xafd19ae4 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc712e574 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1f60146b mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x67dd38d3 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x24017cfa cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2b32cccc cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x38a0a629 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9ccffe42 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb601f3da cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc093707e cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdb16100b cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xfd676763 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x00a2d2dc lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7f46258d onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8493c5e0 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x21634a76 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x75cda813 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x45273e92 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x03b48d9a arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0afdbf57 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33afc654 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4a29f883 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4dca03c1 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x51e100d9 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ef3acb7 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5efa70ce arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9a66bb9 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe21029df arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x00891189 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd6e81ca9 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdc1062dc com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x027814a2 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x052f6247 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06a43343 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0fcac841 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x15eb0a0d b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16516f9e b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16d21b3f b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1fff8305 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x220ab98a b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26b56776 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29e01551 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b933911 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43fb4436 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4477b5ce b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a7f8dee b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63a1637d b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6688a511 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f2fe6a3 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7babf697 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cac9dad b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8047be9b b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x81131dfc b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x86040399 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x881ec44e b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8898b15a b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f7ed383 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98dbc3c3 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b458aea b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb20a5f06 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb4d23a6e b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf941340 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3692957 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc56d0358 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd5b03a7 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf05e4084 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf89cb63d b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbf0071d b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcfc568c b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x115f4250 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3e246d44 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x43137627 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x46cdda2d b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb5560978 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfdbd7c89 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x27aff696 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf91aff27 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4491cf61 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x4f1d7ce2 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3eaeebde ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4f59691e ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa94bb1df ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2429f913 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb0c6f3de vsc73xx_probe -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0b8299de ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0ba4c915 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17d7affc ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7ba8db99 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9613eb11 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa65ec1bf ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcbb163b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd8ce771d ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf67f920 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf03c108d ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfa618f6a cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x080b487d t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1cc65369 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ea49d63 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27bb5174 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fff8a0b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58870fdb t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ae05c3b cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x792378a7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8939bde6 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9195e518 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaa951630 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb22a6e82 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd8a1e165 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb7c5c7c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe40403a8 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfec94517 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03b84e28 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x067ef6bb cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06fdc32a cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d0435fb cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x129bf80f cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13e2f9cc cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2365fbd7 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2690576f cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b19d569 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fe1e800 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33061687 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bf721c4 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ecf29db cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x460c3f75 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47bccdbb cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49a1ab7d cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50539714 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5107728f t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5601afff cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x702cd6cc cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76fb2451 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b1468d3 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0f8a138 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa292b1cd cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab3be0c3 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadfdde72 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae372d20 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5971db4 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba96e00a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4040e03 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5834a9a cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7666a96 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc986ab3 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd7d46bf cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdbec644 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8471733 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebba4df0 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed07795a cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef64a119 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf608ce99 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7d231cb cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa24dbea cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc19eca0 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfea75071 cxgb4_map_skb -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 0x2b009ab3 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3c25c0fd cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7172ac3b cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb1877748 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbe3df685 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdebd341c cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe00bc23f cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2782cc66 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6db29b59 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9c377880 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa1e3bb8d vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaec84257 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xff24c826 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1519a9c7 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 0x7b48f54b be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x117c3e3d hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x25cec85c hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x43621299 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xac76b32d hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf63ed630 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3f8c428a hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0c352627 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x12255649 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1e6dd6fa hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcc6830ac hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd1650cd3 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe46074b7 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf638846a hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xa7a7b012 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xb344c856 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4f8fcaba iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf76804e3 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04412440 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0487ba75 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a10bf6 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178b73eb mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x221f9ce6 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282b09bf mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29fcc7b4 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e201e7c mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4016fb3d set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b25151 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4283cd67 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ffe8af mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49e49e40 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8dd347 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b9af7c mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e628ec mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x624569c3 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63169565 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69cda76b mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e1e9f21 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1be4d2 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75527415 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bb006d6 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8246aee3 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b09496 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90852ac5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97286a3b mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa452c674 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac309e45 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacdebd93 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb71929a3 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a21d77 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd302d5a mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc78ecbfe mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7ba4e2 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd6216e0 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1bafc1b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe66c9e61 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e54975 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1539948 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69dd17c mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf930c17c mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa09e554 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3153dd mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x007c99e9 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a79e09 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044bcbc5 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05684bcd mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060d5284 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0799f726 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08459cc8 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08e654e1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09301c6f mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c02bd0e mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2fc676 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0edb6455 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104ffb8d mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138729b4 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13dfdad8 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17845d2a mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192fb5f5 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a23b82 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d676945 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ec92cb8 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x203c2303 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x232cb818 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27586372 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2807856e mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e4dd65 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31a3d198 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32800f85 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37b297c4 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39153c11 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ac7b2c6 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fe6ceb2 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4545128a mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466bdea5 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x482ce464 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49b72fe5 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a9ed2d4 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad7e9d4 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f00de44 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52039b35 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x520c8fbb mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fa7d83 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595a5397 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5e45ef mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dffe171 mlx5_put_uars_page -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 0x67a87151 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e6a9fa mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa812b3 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb041a4 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bbb8a64 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2bac78 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5ca3bc mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x730769f9 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73193ce9 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73625fb6 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74482ec6 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eddcfff mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8224738f mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8508e0c8 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c97fa6 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85d5a364 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x873b709b mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87f26c36 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88038f17 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88c59211 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c04d0b6 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c52b448 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c5e273f mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e75c1ad mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90018bd2 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90511a99 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9074f3be mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x923c8db7 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9572aa1a mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d47eb2 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96bab5fa mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a25d32c mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b489afb mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c61284b mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c9bc27c mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb1e73b mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa23ce897 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c31e1a mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6488b8f mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74988ac mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75d2f6b mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba52ede mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae4e1ebd mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae7267d8 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb02d388c mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15ba9ec mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb308a0e7 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34a9498 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6171b4b mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6ca1c63 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb77f4074 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb80021d mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0836f87 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc202327f mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3afe666 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc51dd24b mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc54775b1 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5aac02b mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcda661a6 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce5c7dd0 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcea4d123 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd206334e mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd43aeeab mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd78d0d33 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdabd21e6 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb8ffe94 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc845f87 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8243674 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe84e7e80 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefbe6b14 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf05c1240 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eeca40 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3585151 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbdc50d4 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe5a433d mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff05e262 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x05b03c4d mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x0a7985a4 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0cbc4a45 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister -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 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x300241c2 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3ed8fbef mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55baa7e9 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 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 0x60a3f4c5 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 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6e643a8f mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -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 0x84f0c8b4 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x895ec5a5 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a207a48 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d15d9f3 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b792882 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa0a1529a mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xab182c9c mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1f3a001 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdbf4df3 mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6cbc675b mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7529100e mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4072d53b mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd60a5d23 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x029da61b ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0c0b8269 ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2709d6de ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2efb1794 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x31bb6645 __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x56cecfd1 ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x80b8537c ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa84317ef ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb46522ca ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb700803c __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbd0ca197 __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe548b89a ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe888adbb ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x60219a75 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x83fc391f 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 0xc0f2fd03 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1ab981dd hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3b95b873 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3fd65001 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd1e94ae6 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf4735e9c 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 0x7db84a25 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/mii 0x340f6c9a mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x4045c494 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x4586f828 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x4a684b8e mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x4ae85b69 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x4d44f7a8 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x9d3b94e3 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xaab52a22 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xb2535617 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xbd44ae5e mii_ethtool_gset -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd076a7c7 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x06eea1c4 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xac0b5957 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/ppp/pppox 0x64414c81 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8cd98849 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xffa25641 register_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x35664745 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x072d3860 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x3c31945b team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x4fd54b54 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x68b43ade team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x8194ea81 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x95de3b1f team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xc9df1ed6 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xddd76134 team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x34d86e34 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x8f01c83d usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xfe9ddbe1 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x399da795 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4bba995f alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5e0748a9 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6f88fafe hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7a6b1c72 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x87f6fea1 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa4109984 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb28a4a74 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdd550125 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4e8c4a4 hdlc_close -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xa308add8 i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2c0b0a9b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x36f4fce2 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3bed9173 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x74b8bd3d ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bab3447 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f47528f ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x903e7e33 ath_key_delete -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 0xc42872b9 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd7acc6fa dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe50f91ae ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf54fe07e ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf8b15878 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0159d714 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07644719 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x089b9585 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dc9bac5 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10c0668c __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11e29d74 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18c7e970 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2302bce3 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e36bf75 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3331ff5a __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3af90972 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b56e657 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42c2be1f ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bbdc545 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x564abbf1 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58128540 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f6fec2d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x619b0184 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x668b8c17 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x689cef34 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75b42042 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x799eaa7e ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b8fa3e9 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7bf196d2 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86c9f0e7 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87dd57c6 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b120874 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x908de6a1 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x931d0ff9 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b7ffe0d ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ca98c6a ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d1043b2 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ebc2406 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa687fba ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7890118 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9441b30 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc63ad3a ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbed656e5 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6c93bd1 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4dac5e1 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4da4d70 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8a04f9d ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9da7414 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd9112c ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee56b2e0 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2338ef3 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf486a845 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe4f2f8e ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x09e25a1e ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0bc49be2 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1106aaee ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17826295 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33ba9fa9 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5515e683 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x551a882b ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x569da518 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c60b88f ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x79d846eb ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xecbe4a8f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0710ab44 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07890881 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d03fbd1 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0dc5827c ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10e72ffd ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2827b894 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x392ca55d ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39d1cb30 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4405b721 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44de34b1 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x544f60f5 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61f53bb8 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7de48462 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99b362d2 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b08787a ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f95392d ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4471f1b ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb640b81 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde3c22db ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeaea0456 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf683598f ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf969febc ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffc7614f ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ddaa1d ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02f7e39c ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x052d7109 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08280e81 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x085dbe15 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0989d851 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b723b47 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11f82887 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x131e0d14 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13a9d3da ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x156f482e ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15e593d4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16db1126 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18e401b3 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19b9e837 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e174222 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21d85311 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27665676 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x293e42c7 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ab20fc8 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c1bc3c3 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1c6bfc ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31d915a7 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e4efbe ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375f289b ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3900acff ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b452e63 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e62b1ba ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40ae94e9 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40dd6e0f ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4166acbb ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42a8b527 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x471f81db ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4793ce9e ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d86cb8 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b24fe88 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cb1b16e ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4db90c2d ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5264c80f ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529e32bd ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x549d500e ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f6b41a ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5770ed3f ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5889fe42 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b29684f ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f30ec94 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6036d6f4 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62061fee ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64424c02 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x647bba16 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6518f4c0 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65cd1db4 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66dd248a ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d43d2c2 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eda5550 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74549d97 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d2f4f5 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b3008e4 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e0c8a3c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e472e94 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82d3d546 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ca28665 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e07389c ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8edc5f5b ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa6c966 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ff63b5b ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x905429b7 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9112bc85 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92e04c1e ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x950ff5ce ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0ebbcec ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0f027db ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa417e828 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4a50372 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa691bc7a ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa76b76ad ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7d581f5 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa84b9a3e ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab70ad52 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad0165ba ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf0e8f3f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3628881 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba30df5d ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbba2d8be ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc18c6927 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2ef0833 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc47769e4 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc95f6ce3 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb6e5fb6 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbba2f4a ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccf4f742 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceb0f250 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5659731 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd698657d ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd835e77d ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb988b38 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde07fe17 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde25efa4 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf542d76 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3e6b845 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40536aa ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea3eb9c9 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef0c692d ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf760ffa1 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa649e6c ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfab5492d ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe3df2fb ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0304a3a7 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x080a075e stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3b7a5a9e atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2afb905b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3298632e brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x38d58890 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x66dfa7f7 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x697a1a5e brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x73ca55aa brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8c68662b brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8cd1a6f7 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x94d34b0f 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 0xcebfbc8a brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe3f4d5be brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xed867fa7 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfab2f65b brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x094b4af5 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1f511ced libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x263aa0c5 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x282ac84d libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29622d04 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x46aa89d0 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x500b2c4f libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b045098 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b4ea482 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x689097c1 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7533ee5f libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8d313ea0 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x95adae43 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb274a924 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb611b776 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbb08a6f5 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcbc39f5a libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd5a4af2e libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe1218d6e libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7d81c13 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03ecd95b il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04d1425f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x088e58c0 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a3619eb il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e612add il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0faf4a55 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10040d31 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1031755f il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12b56793 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17467fa0 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x228455b8 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24f7fea5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25140aaf il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25c67872 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29614db4 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a56e4ca il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e93c44b il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f47a66f il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30072602 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31a1bf8d il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32237db4 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35c965b0 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37fcdde8 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fb391d9 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x431e5ac4 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x471f9a7e il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x499ad2ee il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4faf8b00 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51b5432b il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5258d507 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52f78a78 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x551278c0 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55be34d9 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5750afaf il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5825a247 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5860bfbf il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68a5c99d il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7178d072 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71f830e5 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72aff6af il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72d73c79 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x745c9de8 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74a02514 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x765dbabb il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77497850 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78857ac3 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ac007dd il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bf35edc il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bfd00e3 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ee88434 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f68fc2c il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85153f93 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8627dbea il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x892ea141 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89e027d7 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d4c8085 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8eba06b1 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ecf40a1 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fc55138 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90f6282a il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92204211 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93d286cd il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96560bcc il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bffd385 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cf30f90 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d2354bd _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9dd0b1c2 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0b3cc0d il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3e0ded4 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4f0ffab il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad8a0cd4 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb05f8a2c il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8dc70d5 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb9f9c86 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcda2f20 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd30b860 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1152c20 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc601a8ad il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7fab22c il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaaa5eb2 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd036e492 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd212d13a il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3cb6016 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41fc7a4 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9b7b2d0 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc6f7afd il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd71e8a9 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4cde107 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe717e6d3 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe71d0de4 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe969f2f7 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec57c53d il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecfd5aea il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed0e3fa8 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf08c3f66 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf448c29f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe0bcb80 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe217684 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04f78d9f prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0aa02253 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x34083e11 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ac5bec1 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x51b147cb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x56f645f0 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x57252e76 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5936fa3d hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6435b83f hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6863d496 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a6717a6 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7117d6f2 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x746bdd67 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x755c482a hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75c786d8 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7b98472b hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x837b912a hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x978765b8 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa5271dec hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac2ef854 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xba918bad hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd7f30b4b hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xec1cb9e3 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xee26f120 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8744008 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x027a53d6 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06faab98 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x125e9303 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x137a419f orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x15f8a861 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1977ab86 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4a96052e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6da81896 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x74ed81f3 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x761b8d13 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa198a434 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb064c1ef orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc518b435 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc81b440a orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe38d5e8c orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb4c9831 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xe3e8f0f2 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf8075c20 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x101b2cb5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x146aa1cb rtl92c_phy_sw_chnl_callback -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 0x26eb7fb1 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x388db944 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ef5b32b rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b16926 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b2865f5 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c44ad25 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ef7ef9c rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50e8eb14 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5309b51e _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54331cb9 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5831611a rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x585e9de6 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d23b909 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x683e538c rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d04ffea rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d981dd2 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f4fac3f _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x763f472a rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7740ba55 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80fe5db9 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ad185bc rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90e2beeb _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99eb8fa8 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ade0fe9 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf3b9bc6 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb49e6f4c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe96f7c8 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2cd0ac8 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcab2cdbe _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0008127 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1fc5e14 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe68dfd0a rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe75e6618 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeab3b1a0 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec17d01d _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xede45327 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf06a253b rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8c9af02 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff08248e rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x12fd8f43 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x42e196ad rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x58e48cf4 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc610a818 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x32ba4e0d rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6da56427 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8a6f1d6c rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf8089c1a rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05b62d05 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07e948db rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0872be6f rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1acf138c efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2db3f027 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30642235 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3361e19e rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53a4c724 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6465365c efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a5bb11a efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x716b2b40 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a6306ce rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d53a444 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f937fa8 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95faa6bf rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2a1234c rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa914c3a3 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8f3c175 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4be13a8 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7f5098b efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce2190da rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd55a8765 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5ea692d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde4b7b99 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2e6eaf7 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3f29eae rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe46efbcb rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7a55b5b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf19051cc rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf414d757 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfaf3f91b rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd17ee53 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x01814416 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x24dcd1f2 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3984d6a4 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x493d02f7 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4af7d6c5 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4f29d141 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6c09ccf3 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x72e7614d rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7b630e5d rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x843bfb20 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x908374ef rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9258dba7 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x94a16563 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa4d94ae0 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xbf95bd74 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd87984b4 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe67b1eaa rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xa1260415 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1e7ea835 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2296d156 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9d726611 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa7aec285 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0e6133b2 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xad3bc0b9 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbe9c8e09 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x7b73f0ee microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xce3b0bb9 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x041c58a6 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2f700241 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x394e258e nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xe2277b85 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3884a5b6 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x98f83ebe pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x87ea5b6f s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8fe490bb s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9041cc03 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x00fbd33f ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x28fe4f94 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5ee4f86f st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x84328ac0 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2eda0e6 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc80dca17 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd515474b ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd6383425 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdaa33a4c st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9f9d457 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b3cb088 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34bace98 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3934c671 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x41b28c8f st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58c22abf st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d6de0aa st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d72b906 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72b2f25b st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c2ee657 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8478b85 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1b4f7a2 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xba848bf6 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc4e05f4c st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda135dff st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe17f3775 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec0fb403 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfe67d869 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfec67409 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x0d7f0875 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1143f551 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x287150ef ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x33e0f608 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x3b80f1e5 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x42add732 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x470bf8b5 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x47967c27 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x5d9c5146 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x688dffd4 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x91b3c353 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x9e2b4004 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x9e82a752 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xa45ab2a4 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xa6bb8367 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xb0dd029a ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xb28c687a ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xcf830d23 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd4a26ef7 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xe77e2685 ntb_link_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc74838ca nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd464800c nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x002312e8 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x05391661 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x0a59282b parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x2c1c1700 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x3c4c9bd1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x3e653ee5 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x3fb12e41 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x40972a7c parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x49943c13 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5e25159d __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x67ba2874 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x6b83823b parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x7414dac3 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x78efe8d8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x83f3ae62 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x894793d5 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x8d3e3fc9 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x9b8a7fbf parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x9c28f289 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xa6d25115 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xb374b3b4 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb86d44bd parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xbc193fcd parport_read -EXPORT_SYMBOL drivers/parport/parport 0xc07e4130 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xc44f355a parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xdde18fd0 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xe1feb290 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xee32891a parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xf9171bf0 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfcea845c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xfddc7f86 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xffd1b9ab parport_announce_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x47baac88 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xcf9788b7 parport_pc_probe_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5506784c cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7a388efe cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe5edc628 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf30e9960 cros_ec_suspend -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xd11e0440 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x130a9df1 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2491269c rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63e616f1 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x795b08d8 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa4aedc57 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa992f071 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac83b221 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaf8c801d rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xba34b638 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcfc7bd0e __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc9e5a63 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe241e482 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb48a7ad rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd9e1fab rpmsg_create_ept -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x6ea49831 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x17e6b512 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x267c57b1 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x977f56cc scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd5f795bf scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a50159f fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1013bcc6 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f591f55 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24f510ec fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a134f36 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6cf472f3 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7dceec13 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba8fef94 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc12f79d9 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc97de13 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe88ab15f fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0111ed63 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03e62599 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0814d2b2 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10010aba fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16e044d6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18ea61e1 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d3757ae fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x239b7791 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31f6b869 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3209cae8 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x321d0a28 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3eb16e41 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4024a1ec fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ab712e0 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51555db1 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51cb4257 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51fa3f38 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53f16661 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5991eb5c fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x667adde5 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f79a3f fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fb71789 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7136170a fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x736ab827 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74075c96 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x763255e9 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b7a14c2 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f8edc04 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88442783 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fb6ee75 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x916c3876 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91fdb32f fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99ac370c fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a3465d4 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a996002 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ed30075 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa54b5afa fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaca1e5c5 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadf260b7 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2de2de0 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4244bcf fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7a1daa6 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd7cd049 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc39558e2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9cdb7b6 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd5bb654 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda41b502 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0fa3789 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f29cad fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2756a11 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2bca5a5 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe88a5889 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebf87591 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec347621 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed03715d fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf002e958 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf32ca705 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfad7c8ae fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1a10743d sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x22f76085 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7588e9e4 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xcaee62d7 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x33dd1a4d qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e5c0fda qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x52902efc qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9a8110eb qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9dba88cc qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbdbff46e qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xca5e9af8 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf3a5786 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd9529672 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdda81435 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7e00ff4 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf872b26a qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x0637f770 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x2df7bb7d raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x42e8bc4c raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0586d67c fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c37f441 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d2dd405 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x403e20c5 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x577a071f fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f6a608a scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93cb6805 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9acd8aca fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa26adc53 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa510db35 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac94fcd8 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb76a35b3 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce556d1b fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8dd139b fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdb6bd0f7 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc2a14ab fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x033a6cd5 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20bdad7e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ee92ceb sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x371e2321 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x378df55f sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40a8298d sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40df3aca sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53f38c2e sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74015916 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x797db9fd sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x843cb02b sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8844db01 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b4fdbeb sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c468b0b sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa328bdcc sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4256abe sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xabb7e012 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb38bd87c sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8d8e67c sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6a5db79 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc81bdba9 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce04b4a7 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce6ba3a6 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9442510 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd96490a1 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe24ddb3d sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec1278ba sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef9e0292 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3c93f35 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3068cbd3 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4f23b537 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x681c30d3 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbef914cb spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xea2c25a4 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x74b84a1b srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x89358a5b srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa88b5368 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3c22713 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xed333b23 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa1d6f5e3 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd367c2d9 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1a2b5b51 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2c44bb37 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4184cdb7 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4efb7a00 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xacfd146a ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xaf11a2f5 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xba4b3613 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd9058f4c ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe893ebc7 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x1dfcf0af ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5d7a5fac ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0b3b86b7 cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f51b3ef cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f825cdc cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3a99874e cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x59ab9e73 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8cd5a570 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x94887ba0 cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd8b8fbcc cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdde7bff5 cmdq_pkt_flush -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf2a3b532 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0f2bff78 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1ebfd362 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4482166c geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4f7c2bdf geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x62053837 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7312dde4 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x77af3a27 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8ab483bc geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x974499b1 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbe4e05b4 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc109fabe geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda52b295 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x126bd1db qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f73679d qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x489ee47e qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87f3bfce qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x954cf61a qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9f488f58 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbac98b86 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc272fb9f qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd758f78b qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe305dcae qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x326e857b qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x202a9526 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2509cc51 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x312980a5 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4285affe sdw_delete_bus_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 0x65b8a566 sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x790a6f99 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x960968bb sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xafcc5ab4 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe993e25 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9c04e4f sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcb9be1c4 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcd8cd677 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcde3175b sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/ssb/ssb 0x04992a5f __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x0bec54bc ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x17b87ecb ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x18cf8ccc ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1dda50f4 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x220163a1 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x4f874189 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x5c87ed74 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x649e4d94 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x6e664dc9 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x7a8cf748 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x824ab652 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x87e21a36 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x909b8b7e ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x93ffd362 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xaa9114c8 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdedf30df ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe68c988a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xf2ebd2e7 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xf4bb054f ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x066c4956 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0770f9fb fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c60fd18 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23fe2536 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41eebc54 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54db24c5 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x620cf124 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62ec585c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x744d3549 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x766c3dd3 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83178303 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8577ac3f fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97e913d1 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f979cc5 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa62e15ac fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa641b79f fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa78f7a8c fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad878e35 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9afb8a9 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc068ba76 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc324e246 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9340fb1 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7910f55 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde3f7d79 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9cacb3c fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x009be98c adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x7d67655e ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x132e6fe5 b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x1ff6d773 b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x3d52ec7e avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x75b7796b b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x886d8ac7 b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8a8ca0ae avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8cc369a8 b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8eed6a5b b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9e836247 b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa3ba7747 b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb6dc7260 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc4732017 b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc7bfcd06 b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe359440a b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfde7dec4 b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x0ab7fb43 b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x0ebd3d6f b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1db641c4 t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x4c4de4dc b1dma_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x9dc43d66 b1dma_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc68daf91 b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xcc325844 b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd907ad59 b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xf47c8e67 b1dma_release_appl -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a5bf5ff rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c9d970e rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x340cbc21 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38f5dfb9 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bc324ae rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cad6785 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x405285fd rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42a4aecd rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44195bc1 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4522063f dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ee7dd3b rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x570eb31e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b5a3868 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6241630b rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63a38161 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63f7f7a2 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64c8f61a rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e655d6e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7162ebc9 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75db8171 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x767a5fcb rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x783c1a1a free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b32aa4e rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83bd8953 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86550605 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87a983d2 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89924d40 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b9fbaaf rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e4d2061 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x908e23b6 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9103666f rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91b435fd dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9238245a rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x927af7c1 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x930e9180 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93cc1c34 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9764cbf7 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d23ce34 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb024a731 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2a59fd3 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc12bcda7 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2ad5ec2 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc62b33d0 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc770bb6 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb97d4d9 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe15f50ea alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeaa347b5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb1e7343 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb9b298f rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x039b3942 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05fe01be is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11faa3f6 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x154c9849 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x218501e0 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x219246c6 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2914af3a ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x292f3bc9 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33d3c64a HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3825fc9e rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bfb2282 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dcdf75c ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ea2f22a ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43d4626b ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4708483e ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x493e15a8 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a42db29 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ae4b463 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b66d698 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ea183b0 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51007b20 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x585fb1b8 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e6ee281 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6332a2d8 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63e27fba ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bcb2d84 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x713666f1 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78c951aa ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e8e99fa dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fe33f63 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b61a910 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9eff7362 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3117e90 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa482272b ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa60833a3 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabb7cec5 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacb163e9 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaefe41fe ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb31592ee dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb842cf30 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbeaffc14 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0994de1 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7723c72 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf83e460 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1ee1f79 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd57fd2b ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe30129d2 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe35bf27d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3631079 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe43a375b ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6d5138c ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea850325 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf04a40f5 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02bbd5c1 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e86a968 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x105f0154 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1417bc39 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x141fb579 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x158a73f3 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f821ea6 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22876032 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26fa2e7a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b34b0d3 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f636671 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30d0d785 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c77f290 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x472b4353 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47d84659 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51b593de iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5892f3b4 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59f76f6b iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bc000af iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x610cd45b iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x634741df iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a207849 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ae9352c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c036e61 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73fe29f2 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7db8b3e1 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82e5eb92 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8abd9ba0 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9508d39a iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96195889 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa596558f iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa8625ef iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafe2853c iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbca44614 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd8216c8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbef5c581 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc385fa61 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc81c2000 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbde7380 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd03e00bd iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd510a157 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda813ddd iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde9466ca iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5667cae iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x01d803f1 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x047ee7b6 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b287fd9 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1427409f transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e128cad core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x20ce025f target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x27ff9c81 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x290eaf3e target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fdf11db transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x300691b0 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x338ae971 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x34a65db0 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bfe7f67 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e8626c2 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x40512b30 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x42d8400a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x42dc06b9 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x46ed09b8 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4746d506 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4767b697 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x496b3c09 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49dfccb0 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d57102b transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f3f3a6a sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x53cb4df0 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x559d3c45 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x591738d1 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6027e820 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x62a315ad passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x68c27250 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x68e947c8 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b37fbc8 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e75f554 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x82591ad1 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8295074d target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x83ee8746 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x871dff04 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x88cf16ec core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8d41db transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c504054 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c78968e transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fc56efa target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x90bcbb60 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9505ae2c sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x989cab37 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b0aed52 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d98af51 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9dbf504c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1ed445d core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2d8e765 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb64665ce spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xc46c820a target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xca590798 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xca75fced target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0948990 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4939069 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd708e9dc spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xd72820aa transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ebef0c __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb521ce1 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb946f34 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc6fe499 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5aaf1df target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8a136f4 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xeba18018 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xeecbb3ce transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf346355c transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3aff492 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf44c799d sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6d4b018 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf84c1517 target_submit_tmr -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8686b594 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x416cbfbe usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x251fbc5f sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x095ec977 usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0986d627 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2cf22060 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x342d0be6 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6da36ce6 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x77e163a6 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8c82a2e4 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa169c485 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb7425c88 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9908846 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd15e483a usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd881e2d3 usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfaf5cfbd usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8f5045ea usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf0019d81 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0d2134ca mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3d41aa54 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5c7fe4d7 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x696d45bc mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9aa65f6d mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9c46fb64 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa1c6235c mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xab218da0 mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb486cb0f mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcbb2de29 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe0e01828 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfe6a665e mdev_unregister_device -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 0x144eb6c9 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x6b531a3f vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x736c1d0b vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xcd119812 vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x29f71a28 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x7bb7a02c vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_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 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa75ff962 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc7f2440e vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4b7bd6d7 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7907a93f lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa88f76f2 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd9d772b1 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 0x34c2b181 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4adc9383 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x53157606 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x65f5c218 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xce12c2d7 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd01dad7d 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 0xdde5d7be svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xd9baf0f0 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf1164b72 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x778b4e74 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 0x9ba70f78 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xd439803e mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x26370727 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x27511940 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeeed752d matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1cc2996e matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1e812b7b matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6d1e2b55 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf5b7b566 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x33ab69bd matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x67244207 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7172b4b1 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7501577c matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8ff4e2c8 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb63e8c98 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9ec42f43 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa11aeb84 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0d59fbe8 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x704cb340 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa4f8adbe matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbe45dba6 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf601bd1b matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xc6cf3fe7 mb862xxfb_init_accel -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 0x061d85c2 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x09670212 omapdss_default_get_resolution -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1db0dc60 omap_dss_get_overlay -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x20e1d232 dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x23276521 omap_dss_find_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x267332b8 dss_mgr_disconnect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2c4d872c omapdss_register_display -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 0x36710801 dss_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3c615712 omap_dss_find_output_by_port_node -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x424b4686 omapdss_find_mgr_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x505fc130 omapdss_default_get_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x644ec8dd omap_dss_get_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6493b8d2 omapdss_output_set_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6a7db1c7 omap_dss_get_overlay_manager -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6bd0f8cd dss_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x78cba521 omapdss_unregister_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x80687ac0 omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x84831250 dss_mgr_connect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8bb409e2 omap_dss_get_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8cc03386 omap_dss_find_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa05c2d52 omapdss_find_output_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbb6f6447 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbfe6da07 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc5d37873 dss_mgr_register_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcb6eaad8 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd5839cc7 dss_mgr_disable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd81d5e36 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe47733a3 omap_dss_get_next_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe60ec861 dss_mgr_start_update -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf37fbdb3 dss_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa95d18f dispc_ovl_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x043716f4 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xbe4b77c5 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x020bb5a4 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0d346f82 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x353285bb w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc4564561 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xc5f19a5f w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xeaa54064 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x44306d2b bd70528_wdt_lock -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x541b04eb bd70528_wdt_set -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xf24f316e bd70528_wdt_unlock -EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x074982a8 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x079164f8 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x1482b6d8 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x150ef69f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1787fd04 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x23a0d8f4 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x2456a8cd __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x2fa0fbc5 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x31129f2d __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x31b234e6 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x330a41c1 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x339fe939 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x3dd086f0 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x46a5f2b3 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x4c895c7d __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x4d1d31c5 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x4d7bc4e7 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x54909fc0 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x57a3dda7 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x8a7772a3 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8c9436e0 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9dca2156 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xa2fc48e7 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb3e36ce6 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xb569f152 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xc42c41d6 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc45939d6 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc7d9c07e __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xc9beb497 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd9004921 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xd9492d12 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd954af55 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xe1e77864 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xe701ff78 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xebfd9aa9 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf20bf706 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf7d560db fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xf8440df2 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xfbc0ebc1 __fscache_acquire_cookie -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2a98cc5a qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6fbfac2b qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x821e4493 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xad0fd774 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb9ac929d qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd739a326 qtree_get_next_id -EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be -EXPORT_SYMBOL lib/crc8 0x5a742e56 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/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x69c71b84 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x96f9f2b7 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream -EXPORT_SYMBOL net/6lowpan/6lowpan 0x02535bb1 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1e2c80b0 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x511a9d87 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc68b43cc lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xdec1f51a lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf14a6c4f lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x09e85939 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x8fccb9ab unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x19b64245 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xe02667b2 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x019eaf37 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x08c0f37c p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x19459f50 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x23907555 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x280e7832 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2cc757e9 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x30ba261c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x32e5b39d p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x33deb225 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x34ececd6 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x3f624f25 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x49fd3386 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x4bb394aa p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x4e06ed19 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x4f90db89 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x570cfccb p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x57310e16 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x58bf4739 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x59124737 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x5b0c4b0e p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x5e733651 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x65dddc48 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6699b552 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x77bdb4a0 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x80be4c2c p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x83d7e55d p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x84feea28 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x95b89050 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x9b38fe2b p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xa119e958 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xa53adc1f p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xacc37e45 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xad74933b v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xaf13aacd p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xb59a5b4f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xb9b4f14a p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc0432dfe p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xc4dec944 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xd10a9204 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd5ab044e p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe65f1487 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/appletalk/appletalk 0x15c73bf4 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x1b5598e7 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x1d8f9995 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x82f1a58e atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x436ff364 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x673f7b0a vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x6d0b3abb atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x77142bb0 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x7c17f9da atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x88627f61 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa1b6b6f9 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xc970b04b atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xd19be394 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xd631ea9e atm_charge -EXPORT_SYMBOL net/atm/atm 0xd9f50c20 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xe93cd190 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xe9533ba8 atm_dev_deregister -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 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x91555401 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x9b0aa9ca ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x9fe842ad ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xaa85c060 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xba64b753 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc1dc7cee ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xfbef000b ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xfcf1e1ee ax25_send_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0341a865 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x103e1dce hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x123b81a7 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x183d563f bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x190a51c5 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f038075 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x216eebab l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28699aff __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c71db7c hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3040f8c0 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x314f01bb hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aa4f43e hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3db7827d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b52080e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54efe596 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55d02384 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x56d1ff7d hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d19214d hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dcec064 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61386068 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67014ffa bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67621980 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e50a113 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8377e82a hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91ff6987 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x923ba455 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95a67140 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf2f30be hci_alloc_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb076902d bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb54a5047 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5a42690 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb97d6700 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0547d2b bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc11cbdd9 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1ce9148 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc75c3351 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc85df5ff __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1d4acb0 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdac810a9 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3578845 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6b27f55 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xedfabc58 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf362278d __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf52f86ca l2cap_register_user -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0b52da50 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2fdea9e6 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x504745a4 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb5cdc2bf ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/caif/caif 0x121d7bd1 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x80082d12 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x948a3b3d caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x9a4c3cf4 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xee0f2769 get_cfcnfg -EXPORT_SYMBOL net/can/can 0x09814cc3 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x26c6c201 can_proto_register -EXPORT_SYMBOL net/can/can 0x3e04d4bf can_proto_unregister -EXPORT_SYMBOL net/can/can 0x458dd896 can_rx_register -EXPORT_SYMBOL net/can/can 0xb0bece0e can_sock_destruct -EXPORT_SYMBOL net/can/can 0xf4e444c9 can_send -EXPORT_SYMBOL net/ceph/libceph 0x013fde71 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0176b22a ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x0197d266 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x06115868 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x066debcd ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x07cad085 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x08b3ca8f ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x09934163 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x09ffc184 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0c1a9f2f ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x0c9c468c ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x0d52220f osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x0d6167c3 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0dcba8e5 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x1b983705 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1eedd974 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x23b8bc26 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x245c2101 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x264f0264 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x287125c5 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x293f2b1d ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x2deca779 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x306cdcbe __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x3342bb43 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x34edc2b6 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39073798 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x39b5e8f1 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3fc8ffcd ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x407097e0 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x420a368b ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x43b80968 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x48b4c4d4 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x4eb2f445 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x4ec71176 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x52fa18f5 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x53bc3657 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x53f48531 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x55ae24ee ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5a41c8e3 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5ed23875 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x652f4c6e ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6af4ad96 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x6b8d00c8 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x6f5c5f84 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6fabba32 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6fe22206 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x70ab94df ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x72937ff5 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x72de82f8 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x7374c511 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x739c0cbe ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x758fe120 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x7eba362c ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x7f099dc5 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x817785e6 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x8514e284 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x864008b4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x870e544c osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x897441dc osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x8ab63ebb ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8c3717d3 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x92366c18 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x96ccfc9d osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9f90e821 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x9fdc8280 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa08b5b7c ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xa0fd4e68 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xa1f444ec ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xa2750c72 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xa53c1a09 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa69de202 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0xa9f0b135 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadd03cc3 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf913ae4 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb0a30d55 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6f78054 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb725181f ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8214209 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xb97e2447 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc263b795 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xc91ad62f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc96b3cf osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xccfb75d6 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xcd4fffed ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xd250b13c ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd75a2815 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd83d50a8 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xdb70c544 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xdf284779 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe062bd07 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xe22a8f14 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xe247cbe4 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xe4d8d9a1 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe716f101 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xeab9fd7c ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xec7bf1bc ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xefe53b50 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xf05ab113 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xf15de1a5 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xf31aca48 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xf958851e ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xfb1d9a3c ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xfe914fb8 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xff83272f ceph_osdc_sync -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x442e9250 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe2261aab dccp_req_err -EXPORT_SYMBOL net/dsa/dsa_core 0x2f57b8e0 dsa_port_vid_add -EXPORT_SYMBOL net/dsa/dsa_core 0x33fb92fa dsa_port_vid_del -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2d8672ef wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6bf3effe wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x88aa82d9 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa57c524d wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd1b631a1 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe10d93f1 wpan_phy_register -EXPORT_SYMBOL net/ipv4/fou 0x14faad64 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x461c1f9a __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xc0730a42 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x628bc39e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x824bd19c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb7e9efa4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xec13ec1b ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1325551a arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3f19fe16 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x857b2688 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb9d8018b arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x78b873e4 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x794e2aa9 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x80691380 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xec964679 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xf0dd88af xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xd10687a6 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c1ad9b5 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3ec83cf8 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x51344e38 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6f3b92fd ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbec9ec88 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd49b591b ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd6d78923 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe2ae3101 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf46701a0 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0ea6715f ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5603f4fa ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe78ae6d1 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x3a9e0ac0 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xbfceedcd xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1092c9bd xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x75b87c46 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc9a8a0fc l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_core 0xec05e0ce l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x57904b0c l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x0b021948 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x0c35d64f lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x0e2f750b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x2f216380 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x6943a9e0 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x97a543b8 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xe3e14530 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe9f5a0f7 lapb_register -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4306f7b7 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x56833088 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x643ef603 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x7f0dec9a llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x9c8c92bc llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x9cc12024 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa6d73562 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x060c94ec ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x073f77f1 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x07feb5e2 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x0da9d359 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x1525e8a6 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1b56ad59 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x20ced7ba ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x22356e4c ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2268ccec ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x2270a1ce ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x22f15526 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x236ca25c ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x258552b1 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x28ca98e8 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x29e8ec2e ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2d965db2 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x312cd03d ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x321f9e2f ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x354fcb3a ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x390bc4e1 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3b020016 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x3d21d7d5 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3e6fe3e5 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3f42de7b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x40045ddb ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4901c273 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x49253428 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4d4d1588 ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x4eb5018b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4f45d568 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x50cef325 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x54dedb9a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x56eb2ddd ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x57df1052 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x57e7283b ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x5d0b3cf7 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x5ecfd9d6 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x67c58af2 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x686c91f6 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6ba63f57 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6ce58206 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x6e68c3bb ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x6f91d5b8 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x7201af1e __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7460b5e3 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x75173b3e ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x75a2079f ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x764c56aa ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x791b25e7 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x7b6045e3 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x7d8c99d8 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x84cabe13 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x86b691d1 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x89778e77 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x8b94bb3d ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x8fdf222d ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x910ce883 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9cdb49fd ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x9f22f280 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa3dc7f8c ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xa49fc905 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa64e09b4 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xa9076f66 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xaa1c8637 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xaaf9440e ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xae0e32a8 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xb872718f ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xb9650df2 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb9a121bc ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xbb70488e ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0xbc7b7f2b ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbe115100 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc29baa07 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc4141278 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xc6c85365 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc70fac6c ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xc8cf9e83 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcb87e701 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xcd123815 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xcdc23cb4 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xd0b0ed24 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd86b24d4 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xde152f16 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xe2bd347f ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe5594e1e ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xebf48974 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xed6a0fd8 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xf6d22348 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf8f2b446 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfdc3c3a8 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xfe1d1ee9 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xffb39fdf ieee80211_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x0a65d919 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x0f77deb6 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1091541a ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x3c5e11ef ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x6702d4f4 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa4de1de7 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb235f1f8 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xd27b734d ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0f03bfbc register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16804ab4 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31b080ca register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x38b1ce2b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3b169c58 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53a18e6f ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b9ed53f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x99103542 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d34c3cb unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1d93435 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8a5744d ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0952ebf ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc330ea6d ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe924ac2f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef8ced6c ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6299ef34 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9e1d59fb nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0865544b nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x70c1aeb9 nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x7230f22c __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x9eaa873b nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xb175d4b3 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1f7e577d xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4dff9a88 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x62d53064 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6d366115 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7b1a7024 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x86b1c100 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc31e1ab7 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc571975c xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd1cd97c0 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x000ad721 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x0c458a14 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x1bdb72a1 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1c83b510 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x32582878 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x56a4da71 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x5baa54e5 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x5ddb408f nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x61310186 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6bc6b7ee nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6dd8d7d8 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x79a58e79 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x86045e16 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x89fb6296 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa4405f1b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xa53477a6 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xc1c43f99 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc643bd54 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xc87fb2ba nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xd1386204 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xd3955ec0 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/nci/nci 0x08ac35ff nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x165cf9f6 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x1d8a91fe nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x2b0f3f74 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x2fd2ecb1 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x37d0859f nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4753a93a nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x487aaed0 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x53bf984e nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x59f6ce9b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x63c68de3 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x63d9c7b0 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x695ca009 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x69629062 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x9f959082 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xace040d8 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xaf338aef nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbaf7845f nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xbb3866ba nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xbd090cae nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xc7d024bc nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xcfc674fa nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xe378c920 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xec6bf17c nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xf06f8b71 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf07d9199 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf2884ff3 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xf3461580 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf8474dc1 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nfc 0x11b9c657 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x1c18a2fc nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x1d5f778e nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x241bd21f nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x28360029 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x3262b616 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4949a8ef nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x5a6066a1 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x5bda7a7d nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x71ed0b88 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x7259524a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x75339303 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x874ac6ab nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x878d53b9 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x8bbf5f10 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x8caf0df6 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x93a85d4a nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x9a0038c5 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xb8f0fb00 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xc1c85c49 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xe18b0487 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xe34155ec nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xfd6f1db7 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xff7505d4 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xffa7b2ce nfc_class -EXPORT_SYMBOL net/nfc/nfc_digital 0x290f90f3 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x80aa5391 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb3574fb9 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xe5076c93 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x0a6cf83c phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x1d7a2e39 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x742be40d pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xa37c1bc1 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xb6380d01 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xc31821b5 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xe9514037 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xeac25941 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0289b37f rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1aed04f0 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x261c98c5 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2afc78e5 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4bdcaf37 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x54805c9f key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x59ba2ad9 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x660c0cb5 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ae313a1 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6e49eeca rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x891d9102 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x954e3741 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x966048ee rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x97e19f74 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa94c19c3 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1ea14af rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe4f83eb9 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0x24b854b0 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0edb321e gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x775f46e8 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9521918c gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3b24299d xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x95665f4d xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd455a5b svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x164b9c99 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x6460a42d tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x9daa2e08 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xc0406ca7 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x4c4c88dc tls_register_device -EXPORT_SYMBOL net/tls/tls 0xe3cb39ee tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xeceb3edc tls_get_record -EXPORT_SYMBOL net/wimax/wimax 0xaff18706 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0xfada71b3 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x049077a6 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x056704f9 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0c9cca04 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x0d1e05a7 cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x0dda9066 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x0e5794b7 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0fdd90a4 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x114e26ad ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x11d3593b cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1616eeec cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x1660da51 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x181dc1d6 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19095330 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x1a87e23c cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e69909d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x201f2649 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2371e49b wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x23a1c2dc cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x25b38718 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x27ea51b3 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x2c36d1ac cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x302bc1b7 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x346d2032 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x3a8f2379 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x3cecd4c0 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x40be6c9b cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x4715a9dc ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x49a06cfe cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x4cba5117 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x4cf6bda1 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x5453f4ee cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x571d9760 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x585c90ca wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x5ca8581b cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x6047ed63 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x65edf342 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x66c38644 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6cf4b731 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x718e57b6 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x73a7b9c4 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x755acbcf cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7697dbc9 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7be31dcf cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x7e6efab2 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x81bca923 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x88b614ba cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x897091e7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8af116c2 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x909ccdd9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x9bcd49e1 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x9d548130 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9e3df8d5 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xa1c69807 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xa33b4f2e regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xa42373f5 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xa62818e7 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xa863c986 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xa90c2cad cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xac7a26e5 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xafdbf70e cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xb1069b1c cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb474964e wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xb60cb046 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb787f0c1 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xbe12d994 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbf1e612e cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc00185a9 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0xc0c313e4 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc3a9d094 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xc676ad01 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xc9826cdb ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xca57f522 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcbceed86 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc2d7754 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xd315dff9 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5def895 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xd7f6f362 cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xd829fe44 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xd862950f cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xd86c0fe0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc4943f2 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xe3986807 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xec99f48c cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xedc39429 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xeef9f756 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xefc72d38 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xf0099ca6 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf171846d cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xf3c735c9 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5ddecc3 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xf9dba546 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xfaf6b7ee cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xfb59d98c cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xfb6e19b2 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/lib80211 0x0018732a lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x32259085 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x44adc906 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x755edb78 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xb2c10437 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xf0f32a95 lib80211_crypt_info_free -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa0201d70 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 0x4d2400f1 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4f9a87a8 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x51972490 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x954799a4 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x9601149c snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x08f01ea4 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x06a194cb snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1117003a snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x165328de snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2fe3f677 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x32534c4f snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3366d325 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a32d67c snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x642d9f6c snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x781651ad snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4318a1d snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaac317bc snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaae51df2 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xacab90ac snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb371a826 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbb2e466 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc48c71a snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcb76e283 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3bee45d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd67957d5 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xee96c158 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x669163e0 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 0x97c44d76 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 0x1dfdda09 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x26e1899b snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c7cb55d snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x78c7d25e snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8a9d7757 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x93301e94 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xad9cfb07 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc690c0b1 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf8c212dd snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x08d3b775 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 0x355b82ad snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3858f0f3 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4aedd6fa snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x86e31fd3 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8b76354e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x99e7b1c9 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc4dc0635 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdd3f702d snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02114f9e amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06205417 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1431b053 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d1c510b iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d2c7b1a avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2717d056 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2de2afdb fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34bfec11 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cf4d7fd fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41567650 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61a9ec5c amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65f33f17 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e93e0e3 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ff75769 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74745303 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7bb5f97b amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e596fb6 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8862b098 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8bec6a25 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91b9dfc5 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa44a1b9c cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac6bf104 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae545e71 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb365ccbe fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8e9ad34 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd0dc60f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbddfc58b fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcaf6fb1f avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd1d1f85 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd17e6ca9 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa3678ab fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe014d2d avc_general_get_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x79fab210 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbe99e42b snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x02d800f6 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x26db7e32 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x552397e3 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x593281c0 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc85ee8f2 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcba72a25 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe1165735 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe58e7d6b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x36de73cf snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x37bc121a snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x77247196 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa5557e5c snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1c3452a4 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5610dd9a snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6a9fb7cb snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8cd32157 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc76a0ae1 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf01dd43a snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf4324678 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf703bffb snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x23398664 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8e8888be snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xab8e84ed snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbb77357b snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc22ad29b snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc4f7875a snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a1eea73 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11f5e771 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1425d68a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1fdc0101 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6adeccfe snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x94411f41 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9afc4a92 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xabccc230 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8634250 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb6c41bb snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd718bc26 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1d6b42a snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb69d033 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4ab8aa6 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf50a5cd8 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcce301b snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcd51748 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0df1cfd3 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1eecc69d snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8323b854 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x944ed892 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9ef4179e snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd3bef1cd snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd4c4397f snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe08e5212 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xedb2f5de snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x089afe7f snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x48a193c0 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcae6b9ec snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1abc8aac oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22e305b6 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2623cb66 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x262c104d oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2db3e821 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x47fa7416 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49730bdd oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b8af07d oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a514520 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c0dacd7 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6dd2d0aa oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b964040 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x900464f9 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9fd5e073 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4d66979 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8b464af oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xadc4f63e oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbe2fd24c oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcb0e6e2c oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda0885da oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe8fb2e2e oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5487f948 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x865253ea snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9930ab98 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd4549fdd snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfd343806 snd_trident_start_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x68942572 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc1478dfa pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x002b0d94 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xed20b23b tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3211c251 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5339a499 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9b5dfd34 aic32x4_remove -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x506c3ca8 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b485418 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16aff693 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x263bdeca sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x266a2215 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x270c3979 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2dee9221 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f8c8907 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3589b879 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x359dc1bc snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x383c7baf sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3905c416 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43bc1ea6 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49ca5b5a snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x521f4fde snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53a2c839 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5bb4b7f1 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c9e9206 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71012719 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x742b8706 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76d1f90e snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88748709 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b994149 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e46d404 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa30d38b1 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8a87821 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac76dfb9 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaefde8a8 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3dfbca7 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb5e50520 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8cc2c04 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc0621b3 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5f986f7 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7b49ba7 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcce31ee7 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4b3e0e6 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5431118 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc2ea430 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd49daf3 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe565552b snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec9ad02f snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xedc9324e snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xedfa1997 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeffd4bbe snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9881959 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb4419e5 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfda80d56 snd_sof_load_topology -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0e8ac849 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1587ebee snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x29d9302f snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ee23ff1 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd5a9f4cb snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf656b351 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x44db6e41 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x801ce873 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x97b7ac12 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9f632a2c snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbc531e15 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xbe2c305c __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc0f9c9ea snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd7295068 snd_util_memhdr_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x92f68941 __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 0x0008edf7 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x00382ed0 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x003f9764 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x005174ca __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x0054a25a register_md_personality -EXPORT_SYMBOL vmlinux 0x005d5e68 simple_setattr -EXPORT_SYMBOL vmlinux 0x0088cacd __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x00a5d24d hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0x00a70176 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x00d6dd95 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e92f25 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x00f9177e input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010f01c9 pid_task -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x012894d2 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x013dc231 nvm_unregister -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x015f38b5 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0179b6d0 param_get_ushort -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0198c911 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x019f2271 noop_llseek -EXPORT_SYMBOL vmlinux 0x019f9908 request_key_tag -EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode -EXPORT_SYMBOL vmlinux 0x01ad783f blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0x01b37e83 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c72108 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x01ca02a6 param_ops_uint -EXPORT_SYMBOL vmlinux 0x01d74d1b dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in -EXPORT_SYMBOL vmlinux 0x01eb509f filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x01f43676 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x0225d276 input_register_handler -EXPORT_SYMBOL vmlinux 0x0243f9dd bio_list_copy_data -EXPORT_SYMBOL vmlinux 0x02447ac1 follow_down -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x02623517 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027e442b get_tree_keyed -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x028ecf33 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x029a2871 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x029f9d96 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02b91717 vlan_for_each -EXPORT_SYMBOL vmlinux 0x02da4d77 is_subdir -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02e88428 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02eb34cd nobh_write_end -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x03021009 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x0315c08a t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x0319a099 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x032e2f01 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0336c2b4 of_get_min_tck -EXPORT_SYMBOL vmlinux 0x03400fdf i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x03596fe7 _dev_info -EXPORT_SYMBOL vmlinux 0x035cc0e9 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0x035f16b6 register_netdev -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03675245 of_iomap -EXPORT_SYMBOL vmlinux 0x036e0bde pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x037405cb blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x0398cb23 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x03b96d5f register_framebuffer -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03f6349f of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x03f7992f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x03f9b1c8 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x03fb0cdf md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0405a0de fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x040edec8 bdi_register_va -EXPORT_SYMBOL vmlinux 0x04355900 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x04a7d9d1 arp_tbl -EXPORT_SYMBOL vmlinux 0x04bc60b9 can_nice -EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04d15acd __neigh_event_send -EXPORT_SYMBOL vmlinux 0x04d61941 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ffa8eb msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053eba54 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x058aee31 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x05a83d67 skb_queue_head -EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05ca18a2 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x05db3069 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x060ac031 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x060f3cd3 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x06142d3e pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061e2321 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0x06291e52 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063711e8 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x0637fb43 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x064bd815 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x064d93eb processor -EXPORT_SYMBOL vmlinux 0x066e317b md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x06795045 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x067b9c9e security_d_instantiate -EXPORT_SYMBOL vmlinux 0x067cc5de security_path_mkdir -EXPORT_SYMBOL vmlinux 0x067ea780 mutex_unlock -EXPORT_SYMBOL vmlinux 0x068f300a phy_write_mmd -EXPORT_SYMBOL vmlinux 0x06b5c16d vfs_setpos -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06cc002c mr_table_alloc -EXPORT_SYMBOL vmlinux 0x06f50fd6 nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0747335f blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x0774f948 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x0783d60d unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b5a910 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x07b9a67a md_write_start -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cdb883 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07e56d36 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x0803724f file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x0804301a snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080d14eb param_ops_ulong -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x08174c1c jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08314632 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0831fae5 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x0838ccd6 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08474692 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x08515a29 __nla_reserve -EXPORT_SYMBOL vmlinux 0x085fc420 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x08703986 generic_writepages -EXPORT_SYMBOL vmlinux 0x08775a5c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x08798e7a iget_failed -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08883515 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x088e1454 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x08a6fe63 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x08b8d237 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x08be05e4 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x08d3882a __napi_schedule -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x09036c45 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x0918301d of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x09213d15 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x092d21dc snd_timer_open -EXPORT_SYMBOL vmlinux 0x0941a18f param_get_ulong -EXPORT_SYMBOL vmlinux 0x096a743d send_sig_info -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x098a7192 skb_tx_error -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09ad85a1 sort_r -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d67260 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x09db35d7 abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x09e2b5c5 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x09eb36dc jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x0a1387b9 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x0a1a2a52 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x0a1b6cca vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x0a1dd4c1 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a370152 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x0a3a8974 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x0a401577 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell -EXPORT_SYMBOL vmlinux 0x0a666bc1 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x0a6caeef __frontswap_store -EXPORT_SYMBOL vmlinux 0x0a710ed4 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x0a971514 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa92814 key_validate -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aaf6ec1 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x0ac08c47 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad25d13 get_gendisk -EXPORT_SYMBOL vmlinux 0x0ad911c4 datagram_poll -EXPORT_SYMBOL vmlinux 0x0ada1af4 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x0ae21d6e jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update -EXPORT_SYMBOL vmlinux 0x0af0e561 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x0b00c82c rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x0b017cd8 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1c4000 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x0b275293 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x0b29fce9 snd_timer_new -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b3c9db8 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x0b3e8142 vme_dma_request -EXPORT_SYMBOL vmlinux 0x0b40d7cf _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b496a2a nf_setsockopt -EXPORT_SYMBOL vmlinux 0x0b598560 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b85b550 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x0b85e007 kernel_accept -EXPORT_SYMBOL vmlinux 0x0b93968d mdiobus_free -EXPORT_SYMBOL vmlinux 0x0b9c4017 seq_path -EXPORT_SYMBOL vmlinux 0x0bafa34d __lock_buffer -EXPORT_SYMBOL vmlinux 0x0bb2d7fb xfrm_register_type -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcb17c5 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x0be29f80 km_new_mapping -EXPORT_SYMBOL vmlinux 0x0bf44dde d_obtain_alias -EXPORT_SYMBOL vmlinux 0x0bfed60d ppp_unit_number -EXPORT_SYMBOL vmlinux 0x0c14286e call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x0c149de1 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x0c19572e inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x0c1eedf2 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x0c24f0c5 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x0c25166c pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c4b25bb mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x0c5b97f3 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c84b6a0 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x0c875086 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc3e985 devm_free_irq -EXPORT_SYMBOL vmlinux 0x0cc4555a remap_pfn_range -EXPORT_SYMBOL vmlinux 0x0cd5aa63 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x0cdb34ca inet_del_offload -EXPORT_SYMBOL vmlinux 0x0cde108b vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0cfcb877 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d4a6ae7 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d72ca4c dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x0d7937f8 lookup_bdev -EXPORT_SYMBOL vmlinux 0x0d7f61c2 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x0d7f995f scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x0d8e493c unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x0da74b84 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x0db740e2 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc2e1de ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x0dc7f5cd xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0x0de81af0 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x0df11985 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x0e0d4ee5 fb_get_mode -EXPORT_SYMBOL vmlinux 0x0e0df174 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x0e0ff26d genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0x0e13197e snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e305347 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x0e662448 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x0e9145b0 inode_init_once -EXPORT_SYMBOL vmlinux 0x0ea7f47a pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x0eb0acb1 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0eec2688 snd_device_register -EXPORT_SYMBOL vmlinux 0x0efd7d55 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x0f0167a7 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f41bfe4 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x0f48255d phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x0f4acece account_page_redirty -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9743b8 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x0f9fc54a __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb657e9 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x0fd39c9c bmap -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fdeebd1 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x0fe052c7 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x0fea7caa scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x0ff0a5ec migrate_page_states -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ff67b18 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x1011c4b9 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x101b3a98 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x1032244f dev_mc_init -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1036b5b5 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x104076e4 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x1053f3e1 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1085d5ee down_read_killable -EXPORT_SYMBOL vmlinux 0x10a8e5e2 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x10bb7868 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10f31e36 rproc_alloc -EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x11088d43 ata_print_version -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x1166fe27 get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x116a53b9 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x116bb7b9 scsi_device_put -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11712038 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x11830ccd param_get_uint -EXPORT_SYMBOL vmlinux 0x1185a16d pci_free_irq -EXPORT_SYMBOL vmlinux 0x118d8e5b cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0x11918306 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x119da9dd __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x11a301ed kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x11c2ef06 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e6d066 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x11e74462 ilookup -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7b692 peernet2id -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11fd42d8 console_start -EXPORT_SYMBOL vmlinux 0x11fd580a thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1211c1b5 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x122118b7 netdev_emerg -EXPORT_SYMBOL vmlinux 0x1231777c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x12494ad3 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x1271bbc0 __do_once_done -EXPORT_SYMBOL vmlinux 0x1280a8ce i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x1286e704 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x12874155 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12ab3ca1 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x12c12587 iunique -EXPORT_SYMBOL vmlinux 0x12c1a555 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x12c33a53 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d14ba1 write_inode_now -EXPORT_SYMBOL vmlinux 0x12d796d3 fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x12dacbb0 neigh_xmit -EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13042e5a pci_set_power_state -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13230e65 mdiobus_read -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132812d6 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x134aada1 vga_tryget -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1354d8bb phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x1358ea86 generic_fillattr -EXPORT_SYMBOL vmlinux 0x13670970 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x139fb578 sock_from_file -EXPORT_SYMBOL vmlinux 0x13bbc057 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x13bcdbd0 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e571a3 blkdev_put -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1406075c security_sk_clone -EXPORT_SYMBOL vmlinux 0x1424b7d0 nand_bch_correct_data -EXPORT_SYMBOL vmlinux 0x14499afc jbd2_journal_revoke -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 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x14bdca2b dst_alloc -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x14fc6ef2 pci_get_device -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x1505d059 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x150b3aa1 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x1510cb02 dev_add_offload -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152a6048 param_get_string -EXPORT_SYMBOL vmlinux 0x15386218 devm_ioremap -EXPORT_SYMBOL vmlinux 0x154075b7 snd_card_free -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154e9af2 d_exact_alias -EXPORT_SYMBOL vmlinux 0x1556efcb mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x156d7f51 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x157cc22e neigh_for_each -EXPORT_SYMBOL vmlinux 0x15a3e061 bioset_exit -EXPORT_SYMBOL vmlinux 0x15a5730f d_alloc_name -EXPORT_SYMBOL vmlinux 0x15a7d751 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x15aaa8c3 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x15ad99c4 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bc18cd skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15d187df vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15daaf72 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x15e2a363 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x161eb049 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x163b4ab3 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x165d24de mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x1686c4ad netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x16af1f2a pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x16b1c673 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x16cd24a9 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e4af70 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x16f0d54a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x171b7c56 __ps2_command -EXPORT_SYMBOL vmlinux 0x173529b7 cdrom_open -EXPORT_SYMBOL vmlinux 0x1738c19e _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x1742bfae qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1758af5d mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x1773d15b neigh_parms_release -EXPORT_SYMBOL vmlinux 0x17820094 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x17a247d4 nf_log_unset -EXPORT_SYMBOL vmlinux 0x17affcf0 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x17c8a991 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x17d4385f block_write_end -EXPORT_SYMBOL vmlinux 0x17e085b3 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x1810352e netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x1815772e dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x18164cbd skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x18326fb2 freeze_super -EXPORT_SYMBOL vmlinux 0x1844f638 simple_getattr -EXPORT_SYMBOL vmlinux 0x187c16b8 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x1883aff4 cdev_device_del -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x189cbff2 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x189ed4f9 snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0x18a831ac submit_bio -EXPORT_SYMBOL vmlinux 0x18b0cd3e km_query -EXPORT_SYMBOL vmlinux 0x18bdbaea nobh_writepage -EXPORT_SYMBOL vmlinux 0x18c84160 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x18c8a50b unregister_filesystem -EXPORT_SYMBOL vmlinux 0x18cfd502 set_device_ro -EXPORT_SYMBOL vmlinux 0x18dd1941 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x18e10ab3 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18fd0998 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x1922849d migrate_page_copy -EXPORT_SYMBOL vmlinux 0x193622d0 __put_page -EXPORT_SYMBOL vmlinux 0x193fb487 _dev_alert -EXPORT_SYMBOL vmlinux 0x194f52f1 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x195d4ac9 memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0x1969f9d0 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x196b9dc4 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x197e800f devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a28d57 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x19ae52c1 dqget -EXPORT_SYMBOL vmlinux 0x19af835a _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x19afb01c redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x19b533fb phy_device_create -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19be9441 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x19f1bae6 inet_shutdown -EXPORT_SYMBOL vmlinux 0x1a11fa03 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x1a217266 pci_map_rom -EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a23a658 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x1a48da34 of_get_pci_address -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a972243 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa5fb65 get_super -EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1ac8fd69 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ade9da7 vm_map_pages -EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1af04593 flush_kernel_dcache_page -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0b824a __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x1b21f5b2 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b292dee dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x1b2a9490 generic_make_request -EXPORT_SYMBOL vmlinux 0x1b341541 sock_no_connect -EXPORT_SYMBOL vmlinux 0x1b357950 pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x1b3c45c1 netif_device_attach -EXPORT_SYMBOL vmlinux 0x1b4eb65a device_add_disk -EXPORT_SYMBOL vmlinux 0x1b5f8066 inet_protos -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1bb6d0cf xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x1bc1fa41 neigh_destroy -EXPORT_SYMBOL vmlinux 0x1bd18caf dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x1bd32ec3 input_set_capability -EXPORT_SYMBOL vmlinux 0x1bde5bd0 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x1c197f05 kern_path -EXPORT_SYMBOL vmlinux 0x1c2b70ba pps_event -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6cfdbb __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x1caf4c2b wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cd4276c phy_device_free -EXPORT_SYMBOL vmlinux 0x1cdcd320 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x1ce136a6 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x1ce67d79 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x1cf4f9da udp_seq_stop -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d2b8d42 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap -EXPORT_SYMBOL vmlinux 0x1d3b0481 md_write_inc -EXPORT_SYMBOL vmlinux 0x1d4131b3 seq_dentry -EXPORT_SYMBOL vmlinux 0x1d4db95b mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x1d5e4d7b seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x1d7668db tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x1d8df125 dm_get_device -EXPORT_SYMBOL vmlinux 0x1da1d7d7 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x1dbaecc1 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1dead49a xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e1d24ed pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e22c8df pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x1e2efe37 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x1e3eb2c3 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x1e448ed9 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x1e51fcd7 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8094d9 key_put -EXPORT_SYMBOL vmlinux 0x1e873980 i2c_transfer -EXPORT_SYMBOL vmlinux 0x1e95eebf cdev_alloc -EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea65e19 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x1ea7397c t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1f3057a4 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x1f471478 blk_rq_init -EXPORT_SYMBOL vmlinux 0x1f5873da user_revoke -EXPORT_SYMBOL vmlinux 0x1f58b867 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x1f5fc578 _dev_crit -EXPORT_SYMBOL vmlinux 0x1f63f0e1 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x1f6ec9d9 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x1f745a89 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x1f98af6e skb_ext_add -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd108af bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fea67b7 vlan_filter_drop_vids -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 0x2008d634 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x200975bc inet_offloads -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200e9555 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x2036c2c3 snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x20635b2a tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20841275 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x20846110 down_killable -EXPORT_SYMBOL vmlinux 0x2091ac54 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x20a1361f icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x20a1388c snd_jack_new -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab14f1 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d75fb2 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x20d80cdf scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x20e1eaa6 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x20ee07d5 md_flush_request -EXPORT_SYMBOL vmlinux 0x20ee8dc6 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x210827d1 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x212133db xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0x213bc59f __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213f79ad _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0x214b5ea1 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x2154e7be mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x2172d2a5 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21978167 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x21a2e0bc phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x21b532c0 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x21bb2889 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c0eecd __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x21cdfbb6 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x21d3fcdf elv_rb_find -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21ee49bc blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x22094a10 mmc_request_done -EXPORT_SYMBOL vmlinux 0x220feec0 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x2213fda2 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x2215c414 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x222cb720 udp_seq_start -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2253ff4a uart_get_divisor -EXPORT_SYMBOL vmlinux 0x225bb6ac mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x22769936 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x229499b1 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c8139a vme_irq_handler -EXPORT_SYMBOL vmlinux 0x230ff265 dquot_operations -EXPORT_SYMBOL vmlinux 0x231c29e5 mmc_get_card -EXPORT_SYMBOL vmlinux 0x232c84cf file_path -EXPORT_SYMBOL vmlinux 0x234af2d9 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x2363cae4 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239b8369 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x23a4d898 I_BDEV -EXPORT_SYMBOL vmlinux 0x23b8d16b mmc_remove_host -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bbdeed _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x23c5aafa soft_cursor -EXPORT_SYMBOL vmlinux 0x23d47392 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f9c5ce xps_needed -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2402fcfe tcp_close -EXPORT_SYMBOL vmlinux 0x240df8b5 register_qdisc -EXPORT_SYMBOL vmlinux 0x241c1688 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x241e0826 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2443214f netif_napi_del -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x24a38acd pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x24a5c7b0 vme_register_driver -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24b97378 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e3421a is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x24ede4d6 put_cmsg -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x252dde3a dump_truncate -EXPORT_SYMBOL vmlinux 0x252ee03f __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x254dd913 mmc_command_done -EXPORT_SYMBOL vmlinux 0x25558694 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257281d7 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x2575729e iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25b1b6cd pci_release_regions -EXPORT_SYMBOL vmlinux 0x25c42110 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x25cb6a4d i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x25e07df7 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x25e1f8da generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f22104 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x25f97d74 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260cc830 dev_open -EXPORT_SYMBOL vmlinux 0x260e5957 key_task_permission -EXPORT_SYMBOL vmlinux 0x2626d27c pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x26291704 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x263601e8 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc -EXPORT_SYMBOL vmlinux 0x263ed280 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x264c786d snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x2658a160 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x266263bd snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0x266dd248 bdput -EXPORT_SYMBOL vmlinux 0x266f61d4 deactivate_super -EXPORT_SYMBOL vmlinux 0x2678d97d tcp_sendpage -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0x269405d6 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x269b1f7d ps2_handle_response -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c3e217 register_cdrom -EXPORT_SYMBOL vmlinux 0x26c5fcc9 dev_mc_add -EXPORT_SYMBOL vmlinux 0x26ef76e4 build_skb_around -EXPORT_SYMBOL vmlinux 0x270c9bad tty_port_hangup -EXPORT_SYMBOL vmlinux 0x2720a8a9 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x272d866a passthru_features_check -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2742b8c3 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x278417cc seq_pad -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27927f04 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x27a31e38 dev_change_flags -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bebab7 dma_resv_init -EXPORT_SYMBOL vmlinux 0x27c68705 node_states -EXPORT_SYMBOL vmlinux 0x27c8c747 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d034b7 save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0x27d14f34 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x27dcd25a __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x27e058ad pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x27e0f75b udp_gro_receive -EXPORT_SYMBOL vmlinux 0x27e87c54 input_set_keycode -EXPORT_SYMBOL vmlinux 0x28038200 get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0x281185bb free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28217b65 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x28313021 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x28387848 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x283d7fa6 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x283f15d0 fsync_bdev -EXPORT_SYMBOL vmlinux 0x287288f5 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x28795974 block_read_full_page -EXPORT_SYMBOL vmlinux 0x287e34a7 free_task -EXPORT_SYMBOL vmlinux 0x287ffdc8 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x289140fd mdio_device_free -EXPORT_SYMBOL vmlinux 0x28b851cc scsi_remove_device -EXPORT_SYMBOL vmlinux 0x28bee91b param_ops_long -EXPORT_SYMBOL vmlinux 0x28c2548d of_dev_put -EXPORT_SYMBOL vmlinux 0x28e0206c mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x28e15839 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x28e80c37 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x28f94b1c security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x2963c6fa pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x296b8e41 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x2974e5b4 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x29850955 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2987183d tcf_em_register -EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29ad2c65 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x29b5c1ff shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x29e95968 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x29eaa921 eth_header_cache -EXPORT_SYMBOL vmlinux 0x2a0e4a42 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x2a2c8dda rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a32c775 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a5428cd dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x2a7f3190 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x2a8ee0a1 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2ab944a0 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x2ac4dedd neigh_update -EXPORT_SYMBOL vmlinux 0x2ac785b4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x2acfa402 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x2ae97a92 icmp6_send -EXPORT_SYMBOL vmlinux 0x2afc6121 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x2aff2efd __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x2b02f6b9 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x2b0bea11 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x2b27518e module_put -EXPORT_SYMBOL vmlinux 0x2b3f8f9e mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2b434de4 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x2b5ab97d _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x2b6706bd __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b7af7ed skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x2b85c7b6 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x2b873816 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9c7db3 prepare_creds -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba6bbc0 vme_irq_request -EXPORT_SYMBOL vmlinux 0x2bb2ca96 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x2bb33077 vscnprintf -EXPORT_SYMBOL vmlinux 0x2bc8fb97 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2bd638dd is_nd_btt -EXPORT_SYMBOL vmlinux 0x2bdc1634 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x2bdfa782 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x2be9b848 touch_atime -EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2c1e15c9 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2c114c twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x2c3463b0 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x2c39c062 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x2c3b543d pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x2c3bf6d1 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x2c3d1007 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x2c3db664 bio_advance -EXPORT_SYMBOL vmlinux 0x2c5f3845 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x2c60ad77 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c72bc75 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x2c737632 pci_find_capability -EXPORT_SYMBOL vmlinux 0x2c7568c9 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c82c115 get_user_pages -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8e6eaa amba_device_unregister -EXPORT_SYMBOL vmlinux 0x2c928454 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x2c9d3756 vsnprintf -EXPORT_SYMBOL vmlinux 0x2cb76af0 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x2cf33203 pci_disable_device -EXPORT_SYMBOL vmlinux 0x2cfdbc02 xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d0c2ce4 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x2d13f38f dev_uc_add -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d243ffe single_open_size -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d40140f generic_ro_fops -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d7393ae truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x2d8d6619 kill_pid -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d99bfcf __mdiobus_write -EXPORT_SYMBOL vmlinux 0x2da81bff _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x2dab7015 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2dbda7ef xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x2dd02c43 submit_bh -EXPORT_SYMBOL vmlinux 0x2dd07ff9 netdev_alert -EXPORT_SYMBOL vmlinux 0x2de6f277 current_in_userns -EXPORT_SYMBOL vmlinux 0x2dec67cd _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x2df1565c vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x2e0c4e59 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x2e12d328 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e20d0d4 input_setup_polling -EXPORT_SYMBOL vmlinux 0x2e29d7cf blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e45c9cd snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x2e46eaca fb_show_logo -EXPORT_SYMBOL vmlinux 0x2e482a2c sock_create -EXPORT_SYMBOL vmlinux 0x2e63552a mdio_driver_register -EXPORT_SYMBOL vmlinux 0x2e6b60a1 backlight_force_update -EXPORT_SYMBOL vmlinux 0x2e6c3dda empty_aops -EXPORT_SYMBOL vmlinux 0x2e81e62f ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2ea47619 pci_request_regions -EXPORT_SYMBOL vmlinux 0x2eb3a4fe phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed3f2b7 vme_lm_request -EXPORT_SYMBOL vmlinux 0x2edb8dbf __ip_options_compile -EXPORT_SYMBOL vmlinux 0x2f006ac3 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f09b8e0 input_event -EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f252af8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f6ea6d2 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x2f7064d4 inet_gro_complete -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7fa25d security_path_mknod -EXPORT_SYMBOL vmlinux 0x2f882f0f simple_transaction_release -EXPORT_SYMBOL vmlinux 0x2f89731c key_revoke -EXPORT_SYMBOL vmlinux 0x2f97d372 revert_creds -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe31cf2 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x2fe4672f pci_select_bars -EXPORT_SYMBOL vmlinux 0x2fffedca ipv4_specific -EXPORT_SYMBOL vmlinux 0x3009ec65 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x30151376 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x3021253b __mdiobus_read -EXPORT_SYMBOL vmlinux 0x30275bfb __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x302ba918 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x304d3126 wake_up_process -EXPORT_SYMBOL vmlinux 0x306cfa50 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x307362d1 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x30764f2e kernel_listen -EXPORT_SYMBOL vmlinux 0x308c6765 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x3094b35b pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ad509a __quota_error -EXPORT_SYMBOL vmlinux 0x30b5c6c2 ip_options_compile -EXPORT_SYMBOL vmlinux 0x30c71be4 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x30cd066c free_netdev -EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310917fe sort -EXPORT_SYMBOL vmlinux 0x3110eaba tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31339056 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x315dd66f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x3176eee1 locks_free_lock -EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x318dffc4 sk_dst_check -EXPORT_SYMBOL vmlinux 0x319ae327 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31a6d45c pps_register_source -EXPORT_SYMBOL vmlinux 0x31b28967 __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x31b68b92 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x31b83020 pci_iounmap -EXPORT_SYMBOL vmlinux 0x31d244c1 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x31deb9eb flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx -EXPORT_SYMBOL vmlinux 0x31f66caa blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x31fc63fd __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x31fd22cd inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x321315db fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x321abce1 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x3246c6a7 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x3269c20c configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x3278ec67 inode_init_always -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x329b03cb unload_nls -EXPORT_SYMBOL vmlinux 0x32ca4976 scmd_printk -EXPORT_SYMBOL vmlinux 0x32cb569b simple_statfs -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e605d0 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x32f03bda of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x32f2d688 seq_vprintf -EXPORT_SYMBOL vmlinux 0x331cb925 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x3330e7ea inode_insert5 -EXPORT_SYMBOL vmlinux 0x33582df4 blk_get_request -EXPORT_SYMBOL vmlinux 0x335dfb57 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x336bd672 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x336c2592 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x336e1dc5 clear_nlink -EXPORT_SYMBOL vmlinux 0x3396100f skb_store_bits -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33e00e6d key_move -EXPORT_SYMBOL vmlinux 0x33ef4358 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340d5137 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x340defa9 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x3413b5db register_sound_dsp -EXPORT_SYMBOL vmlinux 0x3413f60d posix_test_lock -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x34293d21 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x34351af6 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x3441642e kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x34631b4c dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x3464a8a8 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x3474afa6 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x347ce093 input_register_device -EXPORT_SYMBOL vmlinux 0x34825ffd set_nlink -EXPORT_SYMBOL vmlinux 0x3485e3b8 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x348fc7ab __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34aa9a5a sync_blockdev -EXPORT_SYMBOL vmlinux 0x34b64ff5 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x34bdf2b7 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x34d7d219 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x34e5f94a xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f5fe3d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x350b81eb sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3541703f skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x3547aa70 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35696cb2 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x35a77cf9 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35be4d6e __d_lookup_done -EXPORT_SYMBOL vmlinux 0x35c81448 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x35d7ec93 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x35ee703c arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x35f1a5a7 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3608689b read_cache_page -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x361b09c9 do_map_probe -EXPORT_SYMBOL vmlinux 0x361d80c9 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x361f2d56 wireless_send_event -EXPORT_SYMBOL vmlinux 0x36586673 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3661aaa7 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x366f0321 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x369a2bcb __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x369cc3bb devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x36adc811 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x36bed577 sock_release -EXPORT_SYMBOL vmlinux 0x36c2b48d cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x36ce9530 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36e93182 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x36f621dd truncate_setsize -EXPORT_SYMBOL vmlinux 0x372a7950 netdev_warn -EXPORT_SYMBOL vmlinux 0x37364719 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x37424537 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x374b928f snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37575ac7 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x379216cc neigh_connected_output -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c960e0 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37ef0a4a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x38018d3b genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x38023c72 dev_addr_del -EXPORT_SYMBOL vmlinux 0x380c2820 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381c2b33 sock_register -EXPORT_SYMBOL vmlinux 0x3823ed77 bio_uninit -EXPORT_SYMBOL vmlinux 0x382556c8 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x3830bb09 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x3835ea9a generic_fadvise -EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x386913b2 netdev_info -EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x387ad0ed mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3888a573 bio_copy_data -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3894e908 clk_add_alias -EXPORT_SYMBOL vmlinux 0x38979185 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x391764d8 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x391f35b2 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x391f937d tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x392d152f pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3950edef reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39770967 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x398830d9 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a12ca7 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x39ac4bdc pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39c52e59 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x39e6dc0a inode_add_bytes -EXPORT_SYMBOL vmlinux 0x39e8d961 dma_set_mask -EXPORT_SYMBOL vmlinux 0x3a09792c pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a7187ea d_tmpfile -EXPORT_SYMBOL vmlinux 0x3a74df28 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x3a805eea skb_append -EXPORT_SYMBOL vmlinux 0x3a80f5b0 devm_clk_put -EXPORT_SYMBOL vmlinux 0x3a8c58b8 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x3a90f00e neigh_event_ns -EXPORT_SYMBOL vmlinux 0x3aa79a93 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab98e3e mr_dump -EXPORT_SYMBOL vmlinux 0x3ac6e527 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x3acbbbff configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3adfc3fa skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x3aef9672 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x3af00baf scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x3b049538 dev_uc_init -EXPORT_SYMBOL vmlinux 0x3b1c4e01 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b45c217 dev_load -EXPORT_SYMBOL vmlinux 0x3b534696 dquot_drop -EXPORT_SYMBOL vmlinux 0x3b58b64f vfs_fsync -EXPORT_SYMBOL vmlinux 0x3b5fb3c9 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x3b63f02d dev_get_valid_name -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b697738 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x3b7c4850 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x3b8acff1 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x3b917bbf complete_and_exit -EXPORT_SYMBOL vmlinux 0x3ba8927b super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x3bbe8a28 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcbb2f2 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x3bdc6e51 pci_bus_type -EXPORT_SYMBOL vmlinux 0x3be36e20 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bff8996 pci_find_bus -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1af347 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x3c271547 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x3c358e58 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x3c3f541d __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c522df2 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c6c0340 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x3c759dd5 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3cb177dd of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x3cb210df proto_register -EXPORT_SYMBOL vmlinux 0x3cb8fa34 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x3cc9da2b __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x3cca0743 _dev_emerg -EXPORT_SYMBOL vmlinux 0x3ce3ef44 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce61313 noop_fsync -EXPORT_SYMBOL vmlinux 0x3d25bdf4 snd_timer_continue -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d3ce5b5 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x3d41cd62 input_grab_device -EXPORT_SYMBOL vmlinux 0x3d52fb7f unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d86abac param_set_ushort -EXPORT_SYMBOL vmlinux 0x3d8e3337 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x3d904a98 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x3da6fab9 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x3db43b4d fs_parse -EXPORT_SYMBOL vmlinux 0x3dbb9c0f __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x3dc65805 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcc6b7c cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up -EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3de667b1 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0c9562 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3e25242c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e40a5ba complete_request_key -EXPORT_SYMBOL vmlinux 0x3e416c3e fs_lookup_param -EXPORT_SYMBOL vmlinux 0x3e455f6e xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x3e4df0a9 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x3e51158e fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x3e65740c devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x3e65b398 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3e757669 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x3e767b40 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x3e7d79e3 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e95d9e6 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x3e9b8681 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x3e9f41ca security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x3ea1a2ff ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x3eacc9ca con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x3ec490a3 fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0x3ec9bcff devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark -EXPORT_SYMBOL vmlinux 0x3ed4312e netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x3ee5746b snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x3efc20a2 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f047539 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x3f155de4 block_commit_write -EXPORT_SYMBOL vmlinux 0x3f1f6b14 xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0x3f2dfbc8 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x3f355ec3 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x3f38036a inet_gso_segment -EXPORT_SYMBOL vmlinux 0x3f410cfe xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4d93bf __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x3f592097 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x3f62550a rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init -EXPORT_SYMBOL vmlinux 0x3f690f26 kobject_init -EXPORT_SYMBOL vmlinux 0x3f6e4177 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x3f74f3b5 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x3f856024 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x3f88c8ae refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f925b08 mntput -EXPORT_SYMBOL vmlinux 0x3facf5f7 bio_init -EXPORT_SYMBOL vmlinux 0x3fbc7d0d devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fd7bb17 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x3fdbd24d of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x4001ecc4 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x4005fbc0 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x4023c1b7 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x40356a00 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x4048e9a2 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x404d5b12 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a05c10 prepare_to_swait_exclusive -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 0x40d180c4 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d7a5d7 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x40da3f10 netlink_set_err -EXPORT_SYMBOL vmlinux 0x40e06bfd igrab -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f5b341 km_policy_expired -EXPORT_SYMBOL vmlinux 0x40f777b8 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x40f89009 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x4119310a __sk_dst_check -EXPORT_SYMBOL vmlinux 0x413d5181 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x41427d82 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x4153d5e6 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x4155a73a tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x4168b9a4 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4169d3a0 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x41759a17 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x41790ade rproc_elf_load_segments -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 0x4192d353 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x41a9d2a1 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41d2e4a2 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x41d356d8 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x41f8dd17 snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4225c097 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x422bd630 phy_loopback -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -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 0x4262ebd4 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x4287609b scsi_add_device -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429cd145 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x42ab11b1 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x42ae8aa7 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x42ce75f1 mpage_writepages -EXPORT_SYMBOL vmlinux 0x42e57c21 param_get_byte -EXPORT_SYMBOL vmlinux 0x42ec4754 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430355d5 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x43138d00 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x43193ffe snd_card_file_add -EXPORT_SYMBOL vmlinux 0x43257080 tty_kref_put -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433a42af input_unregister_device -EXPORT_SYMBOL vmlinux 0x433a703c rproc_add -EXPORT_SYMBOL vmlinux 0x433f300c locks_init_lock -EXPORT_SYMBOL vmlinux 0x4347cadc blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x4349ce66 set_binfmt -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43642b10 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x4375d571 nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x43790b74 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43826109 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4386d8a7 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x438bcade d_instantiate_new -EXPORT_SYMBOL vmlinux 0x438fa237 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x43961403 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x43bd0107 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x43cd4e74 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x43d53786 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x43edf620 inet_listen -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x43fc7360 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x4414b91c nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x44192f9d mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x4428c7a5 fput -EXPORT_SYMBOL vmlinux 0x442a3a30 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443e3829 tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0x44421750 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4447d5a4 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x4449c723 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x444a3a5f of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed -EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x4481070f of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x448b6112 _dev_warn -EXPORT_SYMBOL vmlinux 0x44993ee6 seq_lseek -EXPORT_SYMBOL vmlinux 0x44998b28 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x449ed10b secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x44b2893d padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x44be4be0 follow_down_one -EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f01469 init_task -EXPORT_SYMBOL vmlinux 0x44fffd05 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45045655 tty_check_change -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x45139230 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4546deb8 km_state_notify -EXPORT_SYMBOL vmlinux 0x4547a97b sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x4549b196 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x454b8be8 free_buffer_head -EXPORT_SYMBOL vmlinux 0x455f1f64 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45a4a53f forget_cached_acl -EXPORT_SYMBOL vmlinux 0x45abb978 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x45b35f71 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c1e049 tty_devnum -EXPORT_SYMBOL vmlinux 0x4600c785 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x460103ad cdev_device_add -EXPORT_SYMBOL vmlinux 0x460231ee tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x460606c2 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x460b6fd5 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x462635ab ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x4627aa57 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462ef7ae __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x46390712 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x464bf13d phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x464e27cd pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b3509a pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x46bfe1b0 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x46c70388 d_drop -EXPORT_SYMBOL vmlinux 0x46ccbb45 find_get_entry -EXPORT_SYMBOL vmlinux 0x46d0999c file_remove_privs -EXPORT_SYMBOL vmlinux 0x46d1cf4b nla_put -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46e3789c nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x46ffe61a serio_open -EXPORT_SYMBOL vmlinux 0x47047545 cdev_del -EXPORT_SYMBOL vmlinux 0x470898cb pcie_get_mps -EXPORT_SYMBOL vmlinux 0x47103c8a snd_timer_notify -EXPORT_SYMBOL vmlinux 0x47130f2b poll_initwait -EXPORT_SYMBOL vmlinux 0x47362606 pci_enable_device -EXPORT_SYMBOL vmlinux 0x474820b4 del_gendisk -EXPORT_SYMBOL vmlinux 0x47488f99 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x47559281 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy -EXPORT_SYMBOL vmlinux 0x476018af tcf_idr_search -EXPORT_SYMBOL vmlinux 0x4765e5cb pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x476877c4 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4777f59c page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x477db3a5 inode_init_owner -EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0x479045c2 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47a261a2 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x47ae0d71 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x47b41455 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x47b43a1d kthread_blkcg -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47d77e42 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f45b54 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x480a1c61 nand_get_set_features_notsupp -EXPORT_SYMBOL vmlinux 0x4819d6c2 block_truncate_page -EXPORT_SYMBOL vmlinux 0x48297279 proc_create_data -EXPORT_SYMBOL vmlinux 0x4842dcf4 dev_add_pack -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 0x4885d6df sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x48945504 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x48a04f2f dst_release -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bb80db hex2bin -EXPORT_SYMBOL vmlinux 0x48cb057c register_sysctl_table -EXPORT_SYMBOL vmlinux 0x48d0af3d nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x48e49c9f d_find_alias -EXPORT_SYMBOL vmlinux 0x48ec5558 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x4901b68b __kfree_skb -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49371680 generic_setlease -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x493c3bac d_instantiate -EXPORT_SYMBOL vmlinux 0x4943afb9 cred_fscmp -EXPORT_SYMBOL vmlinux 0x49606929 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x4962c02a ping_prot -EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x499a0ef9 misc_deregister -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49ab8917 import_single_range -EXPORT_SYMBOL vmlinux 0x49bfb0ba __d_drop -EXPORT_SYMBOL vmlinux 0x49c4d59d nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x49ca16b3 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x49d3457a cpumask_any_but -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x4a290b49 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a3f1736 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x4a405a63 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x4a49f9b3 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa6fea2 proc_remove -EXPORT_SYMBOL vmlinux 0x4abd7661 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0x4ad13e58 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x4adb20d7 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x4ade8b2e kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x4ae8a285 qdisc_put -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b0672a3 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x4b0cd369 init_special_inode -EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x4b261e91 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x4b2a90c4 skb_dequeue -EXPORT_SYMBOL vmlinux 0x4b473ec6 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x4b4d2f0b proc_set_size -EXPORT_SYMBOL vmlinux 0x4b59049a __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b914512 ll_rw_block -EXPORT_SYMBOL vmlinux 0x4b935194 vm_node_stat -EXPORT_SYMBOL vmlinux 0x4b9d946e seq_write -EXPORT_SYMBOL vmlinux 0x4baebe51 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bb16ff3 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x4bb876d2 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x4bbe897c reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x4bc6c265 tty_port_init -EXPORT_SYMBOL vmlinux 0x4bdc379e sk_free -EXPORT_SYMBOL vmlinux 0x4be1c8c0 _dev_err -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf802db dm_kobject_release -EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c0b3a51 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c1d3d62 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x4c1e3726 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x4c237104 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x4c25f9f7 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x4c265a60 __sock_create -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c2cd3ea kobject_del -EXPORT_SYMBOL vmlinux 0x4c2ea9f3 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3cf7a3 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4b2687 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x4c4d1e57 nvm_end_io -EXPORT_SYMBOL vmlinux 0x4c4f65e7 elevator_alloc -EXPORT_SYMBOL vmlinux 0x4c77cc9e bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x4c9361d5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x4cb15d22 sk_net_capable -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cdd3611 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x4ce309f8 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x4cf0efc9 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x4cf303c6 put_disk -EXPORT_SYMBOL vmlinux 0x4cf6a08b thaw_super -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d0d176d __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4d0f8a6f pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x4d13ab78 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x4d23f0c8 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x4d3b49df user_path_create -EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x4d49c582 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x4d4dc6e6 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d521bc4 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4d633c89 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x4d634803 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d7bec9b tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4d7d13fc ilookup5 -EXPORT_SYMBOL vmlinux 0x4d90311a mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4da8e011 audit_log -EXPORT_SYMBOL vmlinux 0x4db0a49f mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x4dbc1dd2 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x4dc8b3f0 genphy_update_link -EXPORT_SYMBOL vmlinux 0x4de22510 inet_release -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e03b44b should_remove_suid -EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e0e6b8a unlock_buffer -EXPORT_SYMBOL vmlinux 0x4e1d1b63 iget_locked -EXPORT_SYMBOL vmlinux 0x4e2696a6 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3b3c53 __close_fd -EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch -EXPORT_SYMBOL vmlinux 0x4e51c128 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x4e66e316 inet_bind -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4ed9cd35 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4f13b3ef inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f22d6f9 completion_done -EXPORT_SYMBOL vmlinux 0x4f4b8c35 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x4f4fec84 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x4f5a04d2 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x4f5d7132 inet_getname -EXPORT_SYMBOL vmlinux 0x4f6b38d6 eth_header_parse -EXPORT_SYMBOL vmlinux 0x4f6c9ed5 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f821bfa ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f915a39 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x4f92d1df pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x4f9630ed mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x4f9ae470 unlock_page -EXPORT_SYMBOL vmlinux 0x4f9c1754 find_lock_entry -EXPORT_SYMBOL vmlinux 0x4f9dfc63 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x4fa417ce dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x4fb2152d xfrm_state_free -EXPORT_SYMBOL vmlinux 0x4fc8080c sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x4fd4bfcf nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x4fed8936 configfs_register_group -EXPORT_SYMBOL vmlinux 0x4ff7938d d_prune_aliases -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5016fbdd udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x502a464d phy_disconnect -EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x503c08f9 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x504db949 snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0x5054fffb freeze_bdev -EXPORT_SYMBOL vmlinux 0x5059f7a8 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507cfca6 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x5084f0ca d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x50961acd genphy_resume -EXPORT_SYMBOL vmlinux 0x50a14517 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x50a188e1 kmap_atomic -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b34431 pci_release_resource -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c66760 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50dd1d25 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0x50f31342 snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x510fb6f0 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x5114ec8d zap_page_range -EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu -EXPORT_SYMBOL vmlinux 0x511b2206 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x5121841e ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x512fd624 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x5145cf6f km_state_expired -EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0x51594016 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516cbfb5 skb_unlink -EXPORT_SYMBOL vmlinux 0x51725c66 simple_rename -EXPORT_SYMBOL vmlinux 0x518c19b6 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x51970708 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x519e9970 mpage_readpages -EXPORT_SYMBOL vmlinux 0x51a05a1f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x51b2d96f n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x51e4c8d5 path_has_submounts -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51ec1b9f sock_efree -EXPORT_SYMBOL vmlinux 0x51f77b4f try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x520696a4 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x5206c867 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x5214f9b8 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x521b900e get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x52231789 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x522ed9da sock_rfree -EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x52760108 proc_symlink -EXPORT_SYMBOL vmlinux 0x52825c6e __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x528e6e99 ip_defrag -EXPORT_SYMBOL vmlinux 0x52aacc39 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x52b3435f dmam_pool_create -EXPORT_SYMBOL vmlinux 0x52b3bbb2 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x52d7085f ata_port_printk -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52ec6437 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x52ecdc02 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x53011e14 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x533028a7 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x53403bda rt6_lookup -EXPORT_SYMBOL vmlinux 0x53444620 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x5345804e grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x534838b6 phy_write_paged -EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x53614f76 proc_create -EXPORT_SYMBOL vmlinux 0x536f9877 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x53942bc5 set_groups -EXPORT_SYMBOL vmlinux 0x53972cb0 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x539c137a input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x53f09c91 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x53f22132 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x53fde5cc sget -EXPORT_SYMBOL vmlinux 0x540824fc devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x541ffcf0 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x5432796c max8998_write_reg -EXPORT_SYMBOL vmlinux 0x5433cea3 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54417ce0 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x546046ca locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x546eadb7 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x5481a13e pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x548d10f5 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x549a71d3 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x549e7021 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x54a20499 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b36838 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x54bfcd3e skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x54d66385 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f7b8cb __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ab24f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x550eefab ps2_begin_command -EXPORT_SYMBOL vmlinux 0x55108efc dump_emit -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5536537a dev_uc_sync -EXPORT_SYMBOL vmlinux 0x553a960a inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554faeef __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x55743e0e inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559a6bcb configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x55bcc3dd dquot_commit -EXPORT_SYMBOL vmlinux 0x55c7f44b mdio_device_create -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55f5822e find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x55fa5542 from_kgid -EXPORT_SYMBOL vmlinux 0x55fed770 prepare_binprm -EXPORT_SYMBOL vmlinux 0x5617d36b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x5620dc5e generic_permission -EXPORT_SYMBOL vmlinux 0x5628e3e2 put_fs_context -EXPORT_SYMBOL vmlinux 0x562cc332 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x5646b939 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x564b881e phy_stop -EXPORT_SYMBOL vmlinux 0x565840e1 input_open_device -EXPORT_SYMBOL vmlinux 0x5667a277 down_timeout -EXPORT_SYMBOL vmlinux 0x566d777c get_unmapped_area -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56823719 padata_start -EXPORT_SYMBOL vmlinux 0x56836a50 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x568c729d snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x568db206 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x569c10aa skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x569f9e69 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x56ab0859 skb_checksum -EXPORT_SYMBOL vmlinux 0x56b70201 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56db7d6a netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x56f05a8f lease_modify -EXPORT_SYMBOL vmlinux 0x56fdb07c tty_set_operations -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57537427 udp_ioctl -EXPORT_SYMBOL vmlinux 0x57552b1a genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5762bec7 phy_find_first -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x57b07c0d xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x57b4db91 dcache_readdir -EXPORT_SYMBOL vmlinux 0x57b8ab0c dump_page -EXPORT_SYMBOL vmlinux 0x57ce6936 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x57d778ae gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x57e2306c twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x57e5b438 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x57f1b453 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x57f2f339 skb_dump -EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x580096a7 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x58143dfb jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x581cde4e up -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5822f7cb pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x5826ac33 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x582f5d0a from_kuid -EXPORT_SYMBOL vmlinux 0x5838636d pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x58388e5e keyring_search -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x58580486 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x585e866a snd_register_device -EXPORT_SYMBOL vmlinux 0x58799eec __scsi_execute -EXPORT_SYMBOL vmlinux 0x587de731 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x589e3c64 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x589e79d4 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x58a22e43 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x58a9e0a8 pskb_extract -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b39e8f mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bf96e1 tcp_filter -EXPORT_SYMBOL vmlinux 0x58ca0b34 serio_reconnect -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e634b5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x58f0ed98 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x59008b67 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5908c522 d_alloc -EXPORT_SYMBOL vmlinux 0x5914292b __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x59263bcb amba_release_regions -EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x593d0df6 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x5945a0e3 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x594eb495 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x5984580c serio_rescan -EXPORT_SYMBOL vmlinux 0x5999ddc7 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x59aa11a8 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59b98c0f neigh_table_init -EXPORT_SYMBOL vmlinux 0x59bc0e50 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x59c94a49 mem_map -EXPORT_SYMBOL vmlinux 0x59c985cb nlmsg_notify -EXPORT_SYMBOL vmlinux 0x59cfb628 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59e95319 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x59fc61ed vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5a05a8db generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a12468f show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5ed57d dump_skip -EXPORT_SYMBOL vmlinux 0x5a6ba895 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x5a870ec9 touch_buffer -EXPORT_SYMBOL vmlinux 0x5aa08d6a PDE_DATA -EXPORT_SYMBOL vmlinux 0x5ab12fc3 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x5ab944d7 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x5abb2fe1 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x5abc60e8 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x5ad05a0e forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x5ae606a1 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x5aebeee3 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b1bfc9c snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b37e754 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x5b3ccca7 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b6ecdeb jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x5b762e3e __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x5b802467 pci_get_class -EXPORT_SYMBOL vmlinux 0x5b82dc9c dcb_setapp -EXPORT_SYMBOL vmlinux 0x5b8b7e13 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x5b962447 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x5badbb78 string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5baedfac nf_log_register -EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bca45a3 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x5bd6754b set_page_dirty -EXPORT_SYMBOL vmlinux 0x5bdc3912 dma_pool_create -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bed1f6b blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x5bfa4d2f security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x5c069252 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x5c10dc65 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x5c14cb58 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x5c1644e3 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x5c26d6a5 blk_register_region -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c5020e8 simple_empty -EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5c7d6ffd napi_gro_receive -EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 -EXPORT_SYMBOL vmlinux 0x5c848a1b nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5ca1708a of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x5ca30c40 dst_destroy -EXPORT_SYMBOL vmlinux 0x5ca55efc dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x5cb0be52 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cccbf3d __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x5cce921b __bread_gfp -EXPORT_SYMBOL vmlinux 0x5cd42ab0 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x5cd841b4 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x5cda99ef dev_addr_init -EXPORT_SYMBOL vmlinux 0x5ce9a942 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfd3d45 register_console -EXPORT_SYMBOL vmlinux 0x5d1442b1 ns_capable_setid -EXPORT_SYMBOL vmlinux 0x5d19d44c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x5d249d9d hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5d2d88e0 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired -EXPORT_SYMBOL vmlinux 0x5d3dc4f0 inc_nlink -EXPORT_SYMBOL vmlinux 0x5d4988b3 set_disk_ro -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d6c3b9f blk_execute_rq -EXPORT_SYMBOL vmlinux 0x5d810f97 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d9104ac kset_register -EXPORT_SYMBOL vmlinux 0x5d9d66df put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x5d9ee19d ip6_frag_next -EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dda432a dm_unregister_target -EXPORT_SYMBOL vmlinux 0x5de3e38a dev_driver_string -EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize -EXPORT_SYMBOL vmlinux 0x5e0a28e2 phy_attached_print -EXPORT_SYMBOL vmlinux 0x5e1aac44 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x5e358418 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x5e369685 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e4d94df mmc_can_erase -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e841e1e ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9eb13b read_dev_sector -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb76fef sock_init_data -EXPORT_SYMBOL vmlinux 0x5ebcaf1c vfs_rename -EXPORT_SYMBOL vmlinux 0x5ec0cc31 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5ed31443 search_binary_handler -EXPORT_SYMBOL vmlinux 0x5ed7c997 cdev_add -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee76e32 sk_wait_data -EXPORT_SYMBOL vmlinux 0x5f041c6b mmc_release_host -EXPORT_SYMBOL vmlinux 0x5f074ab0 param_ops_short -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1083ad devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x5f1ffa7e snd_timer_pause -EXPORT_SYMBOL vmlinux 0x5f307a88 abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x5f362a8c of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x5f383fe7 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x5f4cfac6 nvm_register -EXPORT_SYMBOL vmlinux 0x5f5c8cf9 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x5f6ac019 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f6fe7b4 security_sock_graft -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f7aa55c rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x5f849a69 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5f88c6f0 fb_class -EXPORT_SYMBOL vmlinux 0x5f92ac2d netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x5faa3a98 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x5fac7c99 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0x5faf4aea __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fcbbcc5 seq_escape -EXPORT_SYMBOL vmlinux 0x5fdc5538 bio_chain -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ff8c319 textsearch_find_continuous -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 0x60206121 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6022c8ae scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x60285ba1 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60458983 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x605514f0 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605d7e96 dev_set_alias -EXPORT_SYMBOL vmlinux 0x6061c953 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x60678f7a devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x607ca4f0 release_pages -EXPORT_SYMBOL vmlinux 0x60894c1a dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x6090dae4 ip_route_input_noref -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 0x60bffe6d div64_u64 -EXPORT_SYMBOL vmlinux 0x60cbb90c blk_put_request -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60dfa13c scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x60f3edce config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x61110da7 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x611667de security_task_getsecid -EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612b59a2 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x613d7cfd bio_devname -EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6160eb53 tty_name -EXPORT_SYMBOL vmlinux 0x616e755d mtd_concat_create -EXPORT_SYMBOL vmlinux 0x61861f48 tcf_classify -EXPORT_SYMBOL vmlinux 0x61970d72 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b997c0 mr_table_dump -EXPORT_SYMBOL vmlinux 0x61c4e837 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61c8e98e phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x61de13f6 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61fa0b4c dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x62012379 phy_connect -EXPORT_SYMBOL vmlinux 0x6202d3de snd_card_new -EXPORT_SYMBOL vmlinux 0x621076dc netif_carrier_on -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627d4340 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62914eea gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x62ae2a8e md_reload_sb -EXPORT_SYMBOL vmlinux 0x62afe0a6 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62ea58cf read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x6308726d xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x630f2cb8 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63273027 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x632d4b11 send_sig -EXPORT_SYMBOL vmlinux 0x633341c4 __bforget -EXPORT_SYMBOL vmlinux 0x63371fd6 rproc_boot -EXPORT_SYMBOL vmlinux 0x63374659 ip_frag_next -EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x636f01dd kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x636f44b1 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x637eb13d netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x638ecb60 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x63967628 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x639a0db4 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d1fe60 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x63d991c5 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ede00f cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x63f0476e page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x63f2c3ff twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x63febd10 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x6405bfdb register_filesystem -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x640d979d mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6413d122 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x641464d9 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x642c631b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x642dd96e dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x6433c51d __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x644f4ea4 inet_sendpage -EXPORT_SYMBOL vmlinux 0x6462756a tty_lock -EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x64864883 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x648c1ffa wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6496c853 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649fa3ad mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x64a2efd8 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64f0df5f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x64f9ad34 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x65033bbf mmc_of_parse -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65168ad7 fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0x651a0323 simple_get_link -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652b403e component_match_add_release -EXPORT_SYMBOL vmlinux 0x652bb5c6 PageMovable -EXPORT_SYMBOL vmlinux 0x652c92d8 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x65353368 has_capability -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65457fe0 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x65526710 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x656915f9 dev_close -EXPORT_SYMBOL vmlinux 0x65713ec0 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x6573f7a1 inet_accept -EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x657994f5 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x658afafb dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65acbf01 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x65c2be11 __close_fd_get_file -EXPORT_SYMBOL vmlinux 0x65cd31e9 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dfbf64 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x65fac7f6 netpoll_setup -EXPORT_SYMBOL vmlinux 0x661b528a inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x662e8e07 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x663a1e7d xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x663dd915 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x6640dfa2 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x664250e1 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x664a3a1b blkdev_fsync -EXPORT_SYMBOL vmlinux 0x6656dc78 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x665e471d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x6664e677 dev_get_flags -EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667ba02e scsi_host_put -EXPORT_SYMBOL vmlinux 0x668a4084 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x668e5608 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x669c6873 inode_permission -EXPORT_SYMBOL vmlinux 0x669e5800 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x66acb476 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x66b6d6a1 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x66d2100c mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x66d577ef eth_change_mtu -EXPORT_SYMBOL vmlinux 0x66d6402e of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x66d88ccd nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x66f977b9 file_modified -EXPORT_SYMBOL vmlinux 0x66fa8e57 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x670882c6 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x670a3c93 start_tty -EXPORT_SYMBOL vmlinux 0x6716b54b netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x672e3168 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674c5ad1 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x674cb0ac put_ipc_ns -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x67805fd9 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x6782d34a rename_lock -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x679bd1dc reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c10871 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x67e1feb6 kill_litter_super -EXPORT_SYMBOL vmlinux 0x67e3d9a3 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x67e8b3df sync_filesystem -EXPORT_SYMBOL vmlinux 0x6808c968 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x680cdf52 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x6821651b xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x683c3f1d mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x68473556 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x6870802d blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x687168a9 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688258cb dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x68915f59 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x689a87a1 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x689e104d iput -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a16cc6 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68a5494e uart_update_timeout -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68b09cc8 put_user_pages -EXPORT_SYMBOL vmlinux 0x68c20cf6 dcb_getapp -EXPORT_SYMBOL vmlinux 0x68e5b051 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x68eb8e87 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x68edaa32 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x68f46499 d_make_root -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x6912ed9f skb_split -EXPORT_SYMBOL vmlinux 0x6916afcb of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x6952d875 set_create_files_as -EXPORT_SYMBOL vmlinux 0x6958bbd4 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6966d338 seq_release_private -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x699ee5eb request_firmware -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69ae807f bio_reset -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69c056ba __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x69cd068a devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f84a28 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a05550f nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x6a06fe13 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x6a0f6ad0 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x6a1200d2 param_set_bint -EXPORT_SYMBOL vmlinux 0x6a20877d md_handle_request -EXPORT_SYMBOL vmlinux 0x6a223637 brioctl_set -EXPORT_SYMBOL vmlinux 0x6a3b730f netif_rx_ni -EXPORT_SYMBOL vmlinux 0x6a50fe04 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a673791 ioremap_cached -EXPORT_SYMBOL vmlinux 0x6a7874e8 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x6a7d2d33 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x6a91ce5d key_invalidate -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa2f73f inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x6ab01b4f register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x6ac12df9 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x6acf5eaf serio_interrupt -EXPORT_SYMBOL vmlinux 0x6ad5bbe0 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x6ad81d02 dquot_get_state -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aea89a4 dquot_file_open -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af433cb dquot_destroy -EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b0cf73e tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b322fbd __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b58d742 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x6b5a4986 devm_memremap -EXPORT_SYMBOL vmlinux 0x6b5a5917 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x6b5a5e8b mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b644033 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x6b6683cb inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x6b75d0b6 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x6b81f83e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b97fdf4 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd3924e single_release -EXPORT_SYMBOL vmlinux 0x6be95136 rproc_put -EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x6c1035db inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x6c1811b0 page_symlink -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c5a313f rproc_report_crash -EXPORT_SYMBOL vmlinux 0x6c60e081 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6b9ed4 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x6c7e1a15 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x6c7f2c3a pcim_pin_device -EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbf535a tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6cd10dcc __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6cdc7287 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x6ce9bae9 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x6cef3621 d_delete -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d0668cf __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d306c20 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4ac635 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x6d59dc11 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6d920d28 snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x6dcf2e68 bdgrab -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd2d39d unregister_console -EXPORT_SYMBOL vmlinux 0x6dd68fa4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x6de4ee4b tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e1d98b7 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x6e24ac3a dup_iter -EXPORT_SYMBOL vmlinux 0x6e2aaf6b iptun_encaps -EXPORT_SYMBOL vmlinux 0x6e324a0d snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x6e4d0eb9 migrate_page -EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e780bf6 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea20284 kunmap -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb29dda of_match_device -EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6edfe4e0 mmc_start_request -EXPORT_SYMBOL vmlinux 0x6ef75119 kernel_write -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efe1a6d inet_ioctl -EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f1235cb skb_put -EXPORT_SYMBOL vmlinux 0x6f36826a sock_create_kern -EXPORT_SYMBOL vmlinux 0x6f3f3c17 dquot_release -EXPORT_SYMBOL vmlinux 0x6f4de3b4 dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0x6f589379 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x6f594cb7 simple_write_end -EXPORT_SYMBOL vmlinux 0x6f59b81b dev_uc_flush -EXPORT_SYMBOL vmlinux 0x6f6943a2 dquot_resume -EXPORT_SYMBOL vmlinux 0x6f715d9f inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f7b476b put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x6f9af8cf nand_bch_calculate_ecc -EXPORT_SYMBOL vmlinux 0x6fa6b154 inet_select_addr -EXPORT_SYMBOL vmlinux 0x6fb21a47 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcc758e simple_release_fs -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdb3283 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6fe5cdc6 register_sound_special -EXPORT_SYMBOL vmlinux 0x6fe8bada blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x6fec0b42 __inet_hash -EXPORT_SYMBOL vmlinux 0x6ffee4c7 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7004eb32 scsi_print_command -EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702cdec8 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x7061d3eb textsearch_destroy -EXPORT_SYMBOL vmlinux 0x706f3ddc address_space_init_once -EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x70955ed6 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x70b39dc3 dev_mc_del -EXPORT_SYMBOL vmlinux 0x70d44fff scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x70f7b7cf dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x70fba755 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x710535d1 generic_read_dir -EXPORT_SYMBOL vmlinux 0x71117425 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x71218652 dquot_disable -EXPORT_SYMBOL vmlinux 0x7124bf56 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ea5f3 snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x7167dc7f seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x716eeac8 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717998b8 revalidate_disk -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c8560a nf_log_unregister -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x7227ad12 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x72397137 bio_add_page -EXPORT_SYMBOL vmlinux 0x723a4f14 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x72478f53 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x7249a773 inet_put_port -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7250a2c3 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x726cb158 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x727782b5 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x728ab3d4 netif_rx -EXPORT_SYMBOL vmlinux 0x72905fad ip_frag_init -EXPORT_SYMBOL vmlinux 0x7296bd99 udp_poll -EXPORT_SYMBOL vmlinux 0x72a538c0 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x72a84a1d genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x72b384e2 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c8996b nf_hook_slow -EXPORT_SYMBOL vmlinux 0x72e60f9b input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7301eeeb page_symlink_inode_operations -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 0x7325da97 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x734457c2 __nla_put -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x735f33b0 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x736814a9 fb_set_var -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x739c03a7 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x73be640f devm_of_iomap -EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e2d585 kmap_high -EXPORT_SYMBOL vmlinux 0x74032bf2 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x740c1d74 __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x740ca72b mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741d2d27 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x743e4ec9 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x743ea43c generic_file_llseek -EXPORT_SYMBOL vmlinux 0x744133d7 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x74416e19 inet_gro_receive -EXPORT_SYMBOL vmlinux 0x745a311a __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x7468ec8f __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x74786266 inet_frag_find -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x749cb28f pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x74a57958 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x74ae2728 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cc65ed may_umount_tree -EXPORT_SYMBOL vmlinux 0x74ce4aa0 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ea03d4 dm_register_target -EXPORT_SYMBOL vmlinux 0x74fa9cc6 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75354248 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x754f348a complete_all -EXPORT_SYMBOL vmlinux 0x7591defa jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x759ea897 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x75b03f50 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x75b8e486 param_ops_bool -EXPORT_SYMBOL vmlinux 0x75b956cf flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c43f40 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x75ce7ad6 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x762c1743 page_address -EXPORT_SYMBOL vmlinux 0x7635e6dc __udp_disconnect -EXPORT_SYMBOL vmlinux 0x76387491 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x763da3ae inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x76402e0e security_path_unlink -EXPORT_SYMBOL vmlinux 0x76424f5e msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x7645e05c input_allocate_device -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764ad72f netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x7668a829 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767ea8a4 pci_choose_state -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a7234f param_set_uint -EXPORT_SYMBOL vmlinux 0x76a81967 dev_activate -EXPORT_SYMBOL vmlinux 0x76ac7d91 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x76ad9183 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x76c5ae66 snd_jack_report -EXPORT_SYMBOL vmlinux 0x76ccd130 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x76cd3d68 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76de88e3 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x76e02f8d new_inode -EXPORT_SYMBOL vmlinux 0x76e5d763 snd_seq_root -EXPORT_SYMBOL vmlinux 0x76ef97e2 __destroy_inode -EXPORT_SYMBOL vmlinux 0x76febe6b generic_file_open -EXPORT_SYMBOL vmlinux 0x76ff9df8 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x771a171c skb_trim -EXPORT_SYMBOL vmlinux 0x772456f2 cdev_init -EXPORT_SYMBOL vmlinux 0x772552db page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0x772fc1ad flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x7738e256 __module_get -EXPORT_SYMBOL vmlinux 0x775633e3 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x778e33d2 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779415a6 vme_irq_free -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c00a33 dquot_acquire -EXPORT_SYMBOL vmlinux 0x77c21797 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x77cf3ece arp_xmit -EXPORT_SYMBOL vmlinux 0x77dd209b netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x77de3a0f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x77e6a700 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77eb876f snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x77f6c690 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x782e41ab iov_iter_init -EXPORT_SYMBOL vmlinux 0x7834e259 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x7836b23a dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x78664800 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78944750 __sb_end_write -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a04652 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b66899 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x78cae6fc mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x78cb2cf2 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e8aead scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x78f9c541 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x78fa884b map_destroy -EXPORT_SYMBOL vmlinux 0x790072b8 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x791768c8 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x791862eb genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x791a0325 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x791aa26d devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x7934fc7c simple_open -EXPORT_SYMBOL vmlinux 0x793b7f83 tty_port_open -EXPORT_SYMBOL vmlinux 0x793d4d75 tty_port_put -EXPORT_SYMBOL vmlinux 0x793e116c vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x79650913 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x79724e7c devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x7983779e setattr_prepare -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79af1aea sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x79d593ea t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x79f577e1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1c160d add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x7a1e4c9d sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x7a232371 f_setown -EXPORT_SYMBOL vmlinux 0x7a333644 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7a3f50b6 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a51bc31 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x7a531036 snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0x7a5bd327 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7a6f912e pagecache_get_page -EXPORT_SYMBOL vmlinux 0x7a7241d5 ip6_xmit -EXPORT_SYMBOL vmlinux 0x7a7b6681 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x7a8d63c6 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7aceea0a reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae018f6 device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0x7af4a9fb of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b2248c7 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2f65ef scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b481586 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x7b551b78 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b5e4c7f security_path_rename -EXPORT_SYMBOL vmlinux 0x7b606845 mpage_readpage -EXPORT_SYMBOL vmlinux 0x7b659285 dev_uc_del -EXPORT_SYMBOL vmlinux 0x7b6fa7fc snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x7b748c63 file_open_root -EXPORT_SYMBOL vmlinux 0x7b76f69a netdev_crit -EXPORT_SYMBOL vmlinux 0x7bb18018 __frontswap_test -EXPORT_SYMBOL vmlinux 0x7bc6d9fa fasync_helper -EXPORT_SYMBOL vmlinux 0x7bd41757 nd_device_register -EXPORT_SYMBOL vmlinux 0x7bd465e3 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4688da genl_unregister_family -EXPORT_SYMBOL vmlinux 0x7c630477 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7c9062e4 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9e1a14 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x7ca85275 netlink_capable -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7cc5577a rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x7cd082e6 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x7cd4b914 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x7cde5d3e tcp_shutdown -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce30b68 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfbce43 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d1b2269 dquot_alloc -EXPORT_SYMBOL vmlinux 0x7d1b3b0b devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x7d474d41 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4baf98 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x7d83af75 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x7d89d2af tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x7d9f6d0b __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc407f9 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7dc713a5 get_super_thawed -EXPORT_SYMBOL vmlinux 0x7dcbb425 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x7dd7c979 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x7de2e775 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7de8725e kdb_current_task -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e32e7c7 irq_stat -EXPORT_SYMBOL vmlinux 0x7e3a3944 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x7e3aa358 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7e57a916 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x7e864c30 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x7eb883f1 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x7ef5e7a9 give_up_console -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f0c13e9 udp_set_csum -EXPORT_SYMBOL vmlinux 0x7f10f2de of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f37492f inet6_getname -EXPORT_SYMBOL vmlinux 0x7f3d6255 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x7f5a5830 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f7047e8 noop_qdisc -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fa73484 proc_set_user -EXPORT_SYMBOL vmlinux 0x7fd11030 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x7fd633fb try_to_release_page -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec9d05 seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x7ff03db9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x803033d0 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages -EXPORT_SYMBOL vmlinux 0x8058fc2b serio_close -EXPORT_SYMBOL vmlinux 0x805a1deb of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x805b839f wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x806c0445 nf_log_trace -EXPORT_SYMBOL vmlinux 0x806e01fe of_root -EXPORT_SYMBOL vmlinux 0x8074da84 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x8080744a set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x8091a6bc ether_setup -EXPORT_SYMBOL vmlinux 0x809c63ba tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x80a19ba6 vfs_get_super -EXPORT_SYMBOL vmlinux 0x80a1b773 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x80b25284 is_bad_inode -EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cab96c nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80f345a7 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x80f7978e tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x81076827 register_sound_mixer -EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8121dabf to_ndd -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x8179728b netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x817e8bde input_free_device -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x819164db xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x819d8f7c rtc_add_groups -EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0x81bf6c93 init_pseudo -EXPORT_SYMBOL vmlinux 0x81cab245 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e69685 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f00fec kern_path_create -EXPORT_SYMBOL vmlinux 0x81f4d6ab backlight_device_register -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x821532c3 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x82193a97 __krealloc -EXPORT_SYMBOL vmlinux 0x821b00b2 sync_file_create -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822edd6c mdiobus_scan -EXPORT_SYMBOL vmlinux 0x823a573f blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x8265b302 kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82b44b19 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x82b47f19 page_mapped -EXPORT_SYMBOL vmlinux 0x82cedbfd __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x82f99cba i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x830356ae alloc_fcdev -EXPORT_SYMBOL vmlinux 0x83084ba4 mmc_free_host -EXPORT_SYMBOL vmlinux 0x830a3f51 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x831051fc snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x8329a803 commit_creds -EXPORT_SYMBOL vmlinux 0x832c74b1 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x832dd7c6 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x8336088b mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x834739fb phy_modify_paged -EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x836a588d phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x8370e846 tcf_block_put -EXPORT_SYMBOL vmlinux 0x8377fc0d down_write_killable -EXPORT_SYMBOL vmlinux 0x837e0323 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0x83891131 register_shrinker -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83b63d6a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83e85adb flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x83ea0cc1 elm_config -EXPORT_SYMBOL vmlinux 0x83f29021 get_fs_type -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8411167f of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x841b3ead zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0x841c4c57 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x843933be blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x844fd80f dev_get_stats -EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x845a3dc5 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x8464e802 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x846e07a3 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x847de599 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x8487cd9a udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84bbfa36 config_group_init -EXPORT_SYMBOL vmlinux 0x84c096ea skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x84c0ab7f unregister_nls -EXPORT_SYMBOL vmlinux 0x84c5fef4 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x84c6f0d0 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x84cf1dee sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x84ea6acc scsi_init_io -EXPORT_SYMBOL vmlinux 0x851149d2 input_flush_device -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x851bcf81 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x85233c0a nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0x852dd0e2 uart_register_driver -EXPORT_SYMBOL vmlinux 0x853828d1 bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x85503089 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x8565f3b3 snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8568f6a6 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x857509d5 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x858aac60 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x858fa78a tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8593db80 pci_clear_master -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85bfb7ce __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x85c1296e ptp_clock_register -EXPORT_SYMBOL vmlinux 0x85c2168c kill_block_super -EXPORT_SYMBOL vmlinux 0x85c56d99 netdev_printk -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e39405 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fb27f7 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x860420ed load_nls_default -EXPORT_SYMBOL vmlinux 0x860937e1 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x86345481 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0x8639a028 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865e641e xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x865eb69d setattr_copy -EXPORT_SYMBOL vmlinux 0x8665debf invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x866f0a71 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8679be82 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x867aa6eb set_bh_page -EXPORT_SYMBOL vmlinux 0x867cb786 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8696aead input_close_device -EXPORT_SYMBOL vmlinux 0x86a5de34 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x86ad2888 skb_find_text -EXPORT_SYMBOL vmlinux 0x86adec1f i2c_use_client -EXPORT_SYMBOL vmlinux 0x86bfee36 param_set_charp -EXPORT_SYMBOL vmlinux 0x86cb6bc9 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x86ce0e00 snd_device_free -EXPORT_SYMBOL vmlinux 0x86d72081 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x86e80574 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870d0efb twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x870e8f6c console_stop -EXPORT_SYMBOL vmlinux 0x87228e5e filemap_flush -EXPORT_SYMBOL vmlinux 0x87313b68 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0x87383b93 dquot_transfer -EXPORT_SYMBOL vmlinux 0x873f6a92 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x874bc102 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x877d388a pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x87849b9e jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x87ade643 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87cdbb40 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x87d298de snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x87f100b9 current_time -EXPORT_SYMBOL vmlinux 0x87f1ba9c pci_request_irq -EXPORT_SYMBOL vmlinux 0x880a956e fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x88222eda xfrm_lookup -EXPORT_SYMBOL vmlinux 0x8847f0bb kfree_skb_list -EXPORT_SYMBOL vmlinux 0x885ef562 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x8861490d mmc_add_host -EXPORT_SYMBOL vmlinux 0x8869bc6f devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8890ffdc dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x88a56117 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x88b0ccbc end_page_writeback -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b469f4 omap_set_dma_callback -EXPORT_SYMBOL vmlinux 0x88c0b3db xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x88c11fbc ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x88d25d54 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x88d3b9bd devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f5dc57 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x8903341f __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0x89184b3d del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x89200d4d add_to_pipe -EXPORT_SYMBOL vmlinux 0x892db761 setup_new_exec -EXPORT_SYMBOL vmlinux 0x8930323e ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x893e789b __lookup_constant -EXPORT_SYMBOL vmlinux 0x89401d0a udp_seq_next -EXPORT_SYMBOL vmlinux 0x898c554f drop_nlink -EXPORT_SYMBOL vmlinux 0x89a4a932 locks_delete_block -EXPORT_SYMBOL vmlinux 0x89b0c069 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89d38cd9 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x89e00aba vfs_get_link -EXPORT_SYMBOL vmlinux 0x8a191a1b cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a32ad42 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x8a3784dc __xa_alloc -EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a524b04 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x8a6dbe82 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7d562a i2c_clients_command -EXPORT_SYMBOL vmlinux 0x8a7d92d2 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x8a7f86ee md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x8a94097a netdev_notice -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa10e2d mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8ab4f1c1 __break_lease -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ad7a8d1 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b127a35 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x8b15c281 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x8b2167ed phy_init_hw -EXPORT_SYMBOL vmlinux 0x8b387517 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x8b465233 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b64774f vfs_symlink -EXPORT_SYMBOL vmlinux 0x8b75695f snd_pcm_new -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8c6366 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9ad4a2 logfc -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba913d3 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8bf06581 genphy_loopback -EXPORT_SYMBOL vmlinux 0x8bf78c99 km_report -EXPORT_SYMBOL vmlinux 0x8bfe9767 input_inject_event -EXPORT_SYMBOL vmlinux 0x8c1ff425 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x8c25e631 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x8c28fada vfs_link -EXPORT_SYMBOL vmlinux 0x8c415ee5 nla_reserve -EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c5e300e dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x8c5e97cc phy_attach -EXPORT_SYMBOL vmlinux 0x8c6235d5 tcf_block_get -EXPORT_SYMBOL vmlinux 0x8c7be2bf snd_ctl_add -EXPORT_SYMBOL vmlinux 0x8c92c8e9 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x8c9e7fb8 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x8cb6080a dev_addr_add -EXPORT_SYMBOL vmlinux 0x8cd408c5 __invalidate_device -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce1c038 omap_enable_dma_irq -EXPORT_SYMBOL vmlinux 0x8ce5d64a blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x8cf85f01 tcp_prot -EXPORT_SYMBOL vmlinux 0x8cf9b3b3 __phy_resume -EXPORT_SYMBOL vmlinux 0x8d0636d6 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x8d1a7691 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x8d1fca62 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x8d207cc8 netlink_unicast -EXPORT_SYMBOL vmlinux 0x8d2dcc6e kmap -EXPORT_SYMBOL vmlinux 0x8d3373ff dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x8d3d418f napi_gro_flush -EXPORT_SYMBOL vmlinux 0x8d48485b tcp_disconnect -EXPORT_SYMBOL vmlinux 0x8d4fc244 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5a31ae jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x8d62d420 tty_do_resize -EXPORT_SYMBOL vmlinux 0x8d6d047a dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x8d70e5cc phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x8d728be0 kunmap_high -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8da4db0d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x8da8bd03 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x8db76b9e jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x8dcdd97b __alloc_skb -EXPORT_SYMBOL vmlinux 0x8dd99bcf get_tz_trend -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8ddfba68 generic_update_time -EXPORT_SYMBOL vmlinux 0x8de1ca70 fget_raw -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfa0f6a nla_append -EXPORT_SYMBOL vmlinux 0x8dfe3a82 inet6_release -EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e0d4827 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x8e116a88 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x8e180fb6 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8e2e90b2 snd_pcm_limit_hw_rates -EXPORT_SYMBOL vmlinux 0x8e3e6fa6 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x8e522877 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x8e587ee2 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x8e644670 kern_unmount -EXPORT_SYMBOL vmlinux 0x8e64bd76 bioset_init -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e90eb3a __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x8e9b209d __skb_checksum -EXPORT_SYMBOL vmlinux 0x8e9ba548 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x8eb4eb61 file_update_time -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed06fc6 sg_miter_start -EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8ee96b64 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x8ee9b837 rtnl_notify -EXPORT_SYMBOL vmlinux 0x8ef7be33 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x8ef85941 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0e8bf1 rtc_add_group -EXPORT_SYMBOL vmlinux 0x8f3625fe _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x8f38ca66 mount_subtree -EXPORT_SYMBOL vmlinux 0x8f3f8229 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x8f4b9b20 flush_old_exec -EXPORT_SYMBOL vmlinux 0x8f52e844 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f8e1121 bdevname -EXPORT_SYMBOL vmlinux 0x8f907a7a register_sysctl -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fc0fad2 clear_inode -EXPORT_SYMBOL vmlinux 0x8fd06817 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd3b8d3 install_exec_creds -EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8fe5713f dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x8fe816ac blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x8fece1bb netdev_features_change -EXPORT_SYMBOL vmlinux 0x8ff6da72 pci_dev_put -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90136b04 textsearch_register -EXPORT_SYMBOL vmlinux 0x90247671 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902e8962 __put_cred -EXPORT_SYMBOL vmlinux 0x9043e6d1 write_cache_pages -EXPORT_SYMBOL vmlinux 0x904a3416 override_creds -EXPORT_SYMBOL vmlinux 0x9054e908 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x9057c1d2 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x9060b31c pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x90a769c9 simple_link -EXPORT_SYMBOL vmlinux 0x90ae00a0 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x90bcb2ab vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0x90bf9f2d phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x90d62d8d copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x90decca1 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x9107a7ab xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0x91330f2e tcp_connect -EXPORT_SYMBOL vmlinux 0x91490659 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x914a045d __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x914b1d4a rio_query_mport -EXPORT_SYMBOL vmlinux 0x91580b2c sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x917e38b6 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91919f4e skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x91982a77 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c3020b __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x91c79a61 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x91dce711 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x91f44fac nd_device_notify -EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922368f9 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x9229330f qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923ea194 __xa_insert -EXPORT_SYMBOL vmlinux 0x9241f27e xattr_full_name -EXPORT_SYMBOL vmlinux 0x926cf9d4 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x929a221e dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92da8dc7 of_phy_attach -EXPORT_SYMBOL vmlinux 0x92dc5ceb sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x92dc7ba4 fs_bio_set -EXPORT_SYMBOL vmlinux 0x92eb5f85 finalize_exec -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930ba9bf dma_cache_sync -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9332c6d3 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x9332f2c3 of_get_property -EXPORT_SYMBOL vmlinux 0x9336a075 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x934685e8 ns_capable -EXPORT_SYMBOL vmlinux 0x937333cc tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e6044 d_move -EXPORT_SYMBOL vmlinux 0x9391ff89 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x93960db3 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x93a5cf1c pmem_sector_size -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c1bdda dquot_initialize -EXPORT_SYMBOL vmlinux 0x93da2a74 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x93dbc97d scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x93e53f19 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x94093f46 bd_set_size -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x941dd8a1 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x9425caca _raw_write_lock -EXPORT_SYMBOL vmlinux 0x94365306 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944b8d21 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x945e8244 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x946562e1 snd_device_new -EXPORT_SYMBOL vmlinux 0x946689e9 __put_user_ns -EXPORT_SYMBOL vmlinux 0x947b6502 kmap_to_page -EXPORT_SYMBOL vmlinux 0x947dc92d dev_printk -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b08106 config_group_find_item -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c89c6a elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x94dcbddb netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x94e7927f generic_file_mmap -EXPORT_SYMBOL vmlinux 0x94f738f3 snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0x950333d2 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955cc2a8 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x9570636e snd_component_add -EXPORT_SYMBOL vmlinux 0x9575b846 tcp_child_process -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x95c17f0f scsi_scan_target -EXPORT_SYMBOL vmlinux 0x95c3abfb __getblk_gfp -EXPORT_SYMBOL vmlinux 0x95d3d918 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x95d7020a kernel_bind -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add -EXPORT_SYMBOL vmlinux 0x95ff483c input_unregister_handler -EXPORT_SYMBOL vmlinux 0x9625f209 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x962f8a79 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9635d340 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x963fab09 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user -EXPORT_SYMBOL vmlinux 0x964aa637 fc_mount -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x96654e8b xfrm_input -EXPORT_SYMBOL vmlinux 0x96681583 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x966c0321 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x966d9a2a phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x9676d008 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x96a2f1b2 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x96a33e34 keyring_clear -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e51306 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x96ef1353 netlink_ack -EXPORT_SYMBOL vmlinux 0x96f65f65 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x96faa0fd mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x9716059f __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x975f5eaf generic_write_end -EXPORT_SYMBOL vmlinux 0x9768a48c qcom_scm_get_version -EXPORT_SYMBOL vmlinux 0x977a168f xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x979e27cd bio_clone_fast -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97ba83cb xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97f845a0 d_lookup -EXPORT_SYMBOL vmlinux 0x981ec8b2 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x98253d9d kset_unregister -EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x985e4b5f crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x9860ed98 of_device_is_available -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x98811d6a pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x9881e34b scsi_register_driver -EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x988ceee4 __register_chrdev -EXPORT_SYMBOL vmlinux 0x98921251 ps2_drain -EXPORT_SYMBOL vmlinux 0x98943a37 may_umount -EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d1a287 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x98d7caff inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x98d9fb80 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x98de323f napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ef54ac inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x98f665fc inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x99203d67 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x9926dbf5 __frontswap_load -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x993e2228 do_SAK -EXPORT_SYMBOL vmlinux 0x99482bd4 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x9949e556 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x9950e887 module_layout -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9959e5cb mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x996c9194 pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x99876ce5 __devm_release_region -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a81e9b inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c5a604 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99e4e777 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x99fdb2df touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a2f494b __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x9a40f84e snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x9a45bec1 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a58bb44 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x9a74ea8a jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x9a7ae9f3 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x9a7b8cfa bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x9a8181b1 kernel_read -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9a8abda7 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9acb8066 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x9acd0eed netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x9ad2a468 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x9ae582ce fb_set_cmap -EXPORT_SYMBOL vmlinux 0x9af749d0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x9aff23b0 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 -EXPORT_SYMBOL vmlinux 0x9b21f8bc pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b27076f of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x9b276b06 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x9b3012f4 __page_symlink -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b37eda5 of_clk_get -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b538644 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b863903 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x9ba2001d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x9bb12c0b xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x9bbb4555 bdev_read_only -EXPORT_SYMBOL vmlinux 0x9bc06964 default_llseek -EXPORT_SYMBOL vmlinux 0x9bdceae7 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9be2161c of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x9be33d69 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x9bff34e7 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x9c2e236c kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x9c2f6e29 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x9c50cfa1 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x9c71c279 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9c7d9bf2 pci_match_id -EXPORT_SYMBOL vmlinux 0x9c935e1a xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x9c9498db security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x9c97e5d5 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cae8465 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x9cbe654f sock_no_accept -EXPORT_SYMBOL vmlinux 0x9cc42353 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9ccd6aae dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd326b3 netif_device_detach -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce19be4 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x9cf65290 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x9cfe6911 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1e23f3 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d7b545b vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x9d7cf7f8 phy_device_register -EXPORT_SYMBOL vmlinux 0x9d8224f2 arp_send -EXPORT_SYMBOL vmlinux 0x9dafea8a get_phy_device -EXPORT_SYMBOL vmlinux 0x9db79f58 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dd1e303 path_put -EXPORT_SYMBOL vmlinux 0x9dd5536d i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x9ddb8bcd irq_to_desc -EXPORT_SYMBOL vmlinux 0x9e07ceb0 vga_put -EXPORT_SYMBOL vmlinux 0x9e09c8fe prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x9e0bf045 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e206bab scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9e38f0e4 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x9e44204f param_set_byte -EXPORT_SYMBOL vmlinux 0x9e4f385f try_module_get -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e603dc8 single_open -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e66592e fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e7843a7 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x9e88258a sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x9e8fe96b xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x9e9f5994 __page_pool_put_page -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed39a54 down_trylock -EXPORT_SYMBOL vmlinux 0x9ed5f5e4 flush_signals -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edb453f udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x9f3bc630 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f53685c vfs_mknod -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5ed579 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x9f5ff5f0 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x9f693436 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x9f70c4b3 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x9f7836ca pci_save_state -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9facfc62 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9faf84a8 devm_memunmap -EXPORT_SYMBOL vmlinux 0x9fb0e30f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe50230 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x9ff1e10a get_vm_area -EXPORT_SYMBOL vmlinux 0x9ff67c39 ihold -EXPORT_SYMBOL vmlinux 0x9ff99ab8 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0000a3d netdev_err -EXPORT_SYMBOL vmlinux 0xa009e668 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xa00fcb12 tso_start -EXPORT_SYMBOL vmlinux 0xa0233b65 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xa027a2ad unlock_rename -EXPORT_SYMBOL vmlinux 0xa03668af blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa041157b mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xa077a2d8 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xa07ab996 param_set_short -EXPORT_SYMBOL vmlinux 0xa0801ae2 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xa0835483 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa090e624 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09e9c52 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c3d7b4 file_ns_capable -EXPORT_SYMBOL vmlinux 0xa0c87c9f netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xa0d9a11f dev_deactivate -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 0xa0f493d9 efi -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa101cd83 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1136a35 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xa1145281 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xa118d57b blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa130384c __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xa13a40e5 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa1427489 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa16e0eb5 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa194e873 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xa19e8f52 dentry_open -EXPORT_SYMBOL vmlinux 0xa1a7c65e udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xa1acfbba blk_get_queue -EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1c00f98 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1cf05c7 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1d67ece md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1e1e474 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xa1e49720 check_disk_change -EXPORT_SYMBOL vmlinux 0xa1e4e741 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xa1e7ca83 stream_open -EXPORT_SYMBOL vmlinux 0xa1f5a4c3 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xa2001610 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa22a29db posix_lock_file -EXPORT_SYMBOL vmlinux 0xa232fda8 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xa236083b misc_register -EXPORT_SYMBOL vmlinux 0xa2364981 md_error -EXPORT_SYMBOL vmlinux 0xa24491bf ida_free -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa25c7e01 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28f7212 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xa29c3ab9 dput -EXPORT_SYMBOL vmlinux 0xa2a2181d udp6_csum_init -EXPORT_SYMBOL vmlinux 0xa2ac10e7 page_pool_create -EXPORT_SYMBOL vmlinux 0xa2b0b1d9 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xa2c3a739 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xa2c9126b skb_seq_read -EXPORT_SYMBOL vmlinux 0xa2db11ec backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xa2db445f __dquot_transfer -EXPORT_SYMBOL vmlinux 0xa2e39d74 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xa30a980e mmc_detect_change -EXPORT_SYMBOL vmlinux 0xa31ceacb vme_bus_num -EXPORT_SYMBOL vmlinux 0xa31fd08e ppp_input -EXPORT_SYMBOL vmlinux 0xa32981d1 config_item_set_name -EXPORT_SYMBOL vmlinux 0xa3467337 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xa3493fd2 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa352496c request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xa3537dd9 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xa36bb048 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xa36ee414 __skb_pad -EXPORT_SYMBOL vmlinux 0xa3a47506 put_disk_and_module -EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a9b58e seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent -EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3ce9258 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xa3dbb5ad kernel_getpeername -EXPORT_SYMBOL vmlinux 0xa3dd3052 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xa3e7b195 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xa3ed0b9f input_reset_device -EXPORT_SYMBOL vmlinux 0xa3fed1f4 param_set_bool -EXPORT_SYMBOL vmlinux 0xa415dba6 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xa41b72ae vfs_mkobj -EXPORT_SYMBOL vmlinux 0xa429a801 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL vmlinux 0xa43fd713 fb_pan_display -EXPORT_SYMBOL vmlinux 0xa4421516 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa46d1d3e __pagevec_release -EXPORT_SYMBOL vmlinux 0xa4751180 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xa480d411 uart_match_port -EXPORT_SYMBOL vmlinux 0xa484f651 kill_fasync -EXPORT_SYMBOL vmlinux 0xa489067f nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params -EXPORT_SYMBOL vmlinux 0xa4909049 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xa497fb92 bio_put -EXPORT_SYMBOL vmlinux 0xa4a3d280 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xa4a5c5d8 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4c36cc5 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xa4c3c383 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xa4c5c4c5 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xa516ea64 __tcf_idr_release -EXPORT_SYMBOL vmlinux 0xa51edf0a con_is_visible -EXPORT_SYMBOL vmlinux 0xa51f74e1 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xa5319d6f configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55e3c1e napi_complete_done -EXPORT_SYMBOL vmlinux 0xa565ec7f tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa57f5555 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xa59052f0 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa591894d param_array_ops -EXPORT_SYMBOL vmlinux 0xa599cda4 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xa5b405c1 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xa5c82091 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xa5ebb9a6 inet_frags_init -EXPORT_SYMBOL vmlinux 0xa605a36d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xa60d5f97 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xa61173a7 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xa618fb94 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa621444b tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa6240b3f __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xa62a2620 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xa63998eb truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xa6427b80 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xa64295de cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xa659d13f vlan_vid_add -EXPORT_SYMBOL vmlinux 0xa6671660 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xa66764f4 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xa672b3d6 kobject_get -EXPORT_SYMBOL vmlinux 0xa6774649 bd_start_claiming -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 -EXPORT_SYMBOL vmlinux 0xa6914677 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xa69412b5 iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa6997cf5 vprintk_emit -EXPORT_SYMBOL vmlinux 0xa69a19f7 skb_pull -EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6aefb0e cad_pid -EXPORT_SYMBOL vmlinux 0xa6b9335f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xa6c8b8df dev_remove_offload -EXPORT_SYMBOL vmlinux 0xa6d4d76e amba_driver_register -EXPORT_SYMBOL vmlinux 0xa6d6150e ___pskb_trim -EXPORT_SYMBOL vmlinux 0xa6dd4c85 pcim_iomap -EXPORT_SYMBOL vmlinux 0xa6ecdad6 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xa6f2a15e dma_find_channel -EXPORT_SYMBOL vmlinux 0xa6f9452f snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xa71a4788 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0xa72b367b notify_change -EXPORT_SYMBOL vmlinux 0xa73ddcfd param_get_long -EXPORT_SYMBOL vmlinux 0xa73de906 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa73f2732 param_set_int -EXPORT_SYMBOL vmlinux 0xa740585b __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75a320f rproc_del -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77da5bf mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xa79b82ec napi_consume_skb -EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7d4470c tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xa7d7804f phy_print_status -EXPORT_SYMBOL vmlinux 0xa7e2605c of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7e56ce1 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xa7e81d57 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa8087b93 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa80b385b mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xa8102974 eth_type_trans -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa83b0096 irq_set_chip -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8605fb9 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xa86b4179 scsi_print_sense -EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b96125 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa8bbd7e0 blk_put_queue -EXPORT_SYMBOL vmlinux 0xa8c19e5e elv_rb_add -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xa90321f9 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xa905ba41 abx500_register_ops -EXPORT_SYMBOL vmlinux 0xa9154987 devm_iounmap -EXPORT_SYMBOL vmlinux 0xa917dd8b kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa9186ffc set_cached_acl -EXPORT_SYMBOL vmlinux 0xa91910f1 get_disk_and_module -EXPORT_SYMBOL vmlinux 0xa91a0f1c vm_map_ram -EXPORT_SYMBOL vmlinux 0xa91a2918 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xa923e727 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xa925718a netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xa92a79d6 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xa93121ea of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xa94821e9 bio_free_pages -EXPORT_SYMBOL vmlinux 0xa948cef9 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96953a2 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xa970084d phy_attached_info -EXPORT_SYMBOL vmlinux 0xa97d6a80 filp_close -EXPORT_SYMBOL vmlinux 0xa9883ebd vfs_unlink -EXPORT_SYMBOL vmlinux 0xa99506cf dquot_enable -EXPORT_SYMBOL vmlinux 0xa99e9b7b pci_dev_driver -EXPORT_SYMBOL vmlinux 0xa9dca78d tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa9e3034a blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xa9f905fa block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xaa16f32c blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xaa1caa21 fb_blank -EXPORT_SYMBOL vmlinux 0xaa21dc5a dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xaa394113 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xaa3c3abb neigh_seq_next -EXPORT_SYMBOL vmlinux 0xaa465fdd kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xaa5e0902 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa69f501 nf_log_set -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7f66f5 d_add -EXPORT_SYMBOL vmlinux 0xaa8073ef sock_wfree -EXPORT_SYMBOL vmlinux 0xaa91f1fa i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xaa9998aa inet_addr_type -EXPORT_SYMBOL vmlinux 0xaaa411f5 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xaaa85658 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xaacdea0f tcp_req_err -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 0xaada8c86 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xaaee2fdd qdisc_reset -EXPORT_SYMBOL vmlinux 0xaaf74642 kfree_skb -EXPORT_SYMBOL vmlinux 0xaafd9237 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab02e9a9 nd_btt_version -EXPORT_SYMBOL vmlinux 0xab0723b6 __netif_schedule -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab416bed filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xab4c5b15 config_item_put -EXPORT_SYMBOL vmlinux 0xab5bf6bd config_item_get -EXPORT_SYMBOL vmlinux 0xab5e2b58 tcp_poll -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab691676 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xab694444 bsearch -EXPORT_SYMBOL vmlinux 0xab6fe6f4 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab80ab58 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xab9d0ecb kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xabc1c296 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc -EXPORT_SYMBOL vmlinux 0xabd47305 _dev_notice -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac35f270 omap_rtc_power_off_program -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac43f44d nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac71dbe0 proto_unregister -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb07f75 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xacb31ecf _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xacb5ed04 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xacc335dd vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xacc4ad2d md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xacce0017 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xacd7570c alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xace1fe77 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xacefb551 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfb547b __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad07137f call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xad3f2efe vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xad4632d1 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xad6d1641 path_nosuid -EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad76e090 snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad94f08e msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xad9b155f neigh_direct_output -EXPORT_SYMBOL vmlinux 0xadab66c9 snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc5355e blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xadcb0ec5 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0xaddf57e1 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0xade5288a tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xadeea7c6 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae0156c0 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xae235def unregister_binfmt -EXPORT_SYMBOL vmlinux 0xae25b33c devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xae25c141 vm_event_states -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae6f5f24 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xae813ea7 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xae857c07 nand_read_page_raw -EXPORT_SYMBOL vmlinux 0xaea4a1ce kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xaeae3a7f bdi_register_owner -EXPORT_SYMBOL vmlinux 0xaeafcb73 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xaebab1ec udplite_prot -EXPORT_SYMBOL vmlinux 0xaec5a4db mntget -EXPORT_SYMBOL vmlinux 0xaed945f9 key_alloc -EXPORT_SYMBOL vmlinux 0xaedbe9f0 do_splice_direct -EXPORT_SYMBOL vmlinux 0xaee2e636 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaeea54e1 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xaeeb89cd dst_init -EXPORT_SYMBOL vmlinux 0xaef5fe37 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xaf063487 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf20125a devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xaf2a8205 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf567cc6 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xaf5872c5 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xaf630a4b nf_ct_attach -EXPORT_SYMBOL vmlinux 0xaf68244e sk_ns_capable -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf75b75b fqdir_exit -EXPORT_SYMBOL vmlinux 0xaf80fce4 i2c_release_client -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf902d29 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafc6f9f2 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xafd2c5cd kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xafeff739 elv_rb_del -EXPORT_SYMBOL vmlinux 0xaffb982a pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb00ca132 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb037575f twl6040_power -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0699854 hmm_range_register -EXPORT_SYMBOL vmlinux 0xb0891b60 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xb0cd75e1 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1385f08 iterate_dir -EXPORT_SYMBOL vmlinux 0xb1402c86 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xb1455a7e sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb167167e ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb16a0088 arp_create -EXPORT_SYMBOL vmlinux 0xb17da6e8 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xb196051c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1bcd737 sock_no_bind -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb2053222 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xb20b50e3 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0xb20ff427 vme_master_request -EXPORT_SYMBOL vmlinux 0xb2275334 follow_pfn -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb22eadb4 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xb2479261 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb25c6644 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xb26c42a4 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0xb27b7217 seq_printf -EXPORT_SYMBOL vmlinux 0xb27fbfec jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb28afbd9 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xb2926af1 __f_setown -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2ca0266 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xb2d0053e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xb2d1fd19 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2de56f3 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xb2e3317d netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2f52b77 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xb2f813e0 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xb30171fc vfs_create -EXPORT_SYMBOL vmlinux 0xb304a83b jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xb3065771 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb33a37d8 inet_add_offload -EXPORT_SYMBOL vmlinux 0xb33f6709 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xb3667805 dqstats -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3bfd672 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3ee4234 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xb3f1dfbf __scm_send -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb44fa497 netif_skb_features -EXPORT_SYMBOL vmlinux 0xb451609b generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb481db46 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xb4859fe6 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xb48c3361 bdget -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb49a6536 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xb49bf27b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xb49ec1f6 snd_power_wait -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4a548a1 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xb4d5c293 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb4eab884 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5017252 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xb5127141 of_translate_address -EXPORT_SYMBOL vmlinux 0xb517e0bb rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xb51e7f17 nf_log_packet -EXPORT_SYMBOL vmlinux 0xb548c72a sock_alloc_file -EXPORT_SYMBOL vmlinux 0xb54efc5c configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xb55136a3 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xb561ac5b wait_for_completion -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58dd25c rfkill_alloc -EXPORT_SYMBOL vmlinux 0xb5936b33 fqdir_init -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5c1f08a set_security_override -EXPORT_SYMBOL vmlinux 0xb5c4496e bdi_register -EXPORT_SYMBOL vmlinux 0xb5c61c26 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xb5eab64a fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xb616b15b jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xb6264188 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb628b3ad kthread_stop -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb62f451c _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0xb6329ce9 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL vmlinux 0xb6747244 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69768e1 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6c989ef nand_correct_data -EXPORT_SYMBOL vmlinux 0xb6d25733 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb6d6bd6e blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xb6dcb044 ata_dev_printk -EXPORT_SYMBOL vmlinux 0xb6fd9039 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xb7069c05 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xb718116a md_check_recovery -EXPORT_SYMBOL vmlinux 0xb7191b1b tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb73f362b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xb75d23cd mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xb777bdf0 seq_open_private -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb7965d0c security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xb796cab6 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xb79d4e10 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xb7b126e2 param_set_copystring -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xb7e83a2e kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xb80c1aab write_one_page -EXPORT_SYMBOL vmlinux 0xb821dbea bdget_disk -EXPORT_SYMBOL vmlinux 0xb82a9e11 vm_mmap -EXPORT_SYMBOL vmlinux 0xb82b5f00 input_set_timestamp -EXPORT_SYMBOL vmlinux 0xb833bf56 elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0xb8343708 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xb84bf025 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xb8529d5e finish_swait -EXPORT_SYMBOL vmlinux 0xb85d17c1 make_kgid -EXPORT_SYMBOL vmlinux 0xb85dccd9 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0xb87026a0 put_tty_driver -EXPORT_SYMBOL vmlinux 0xb895853a tcp_peek_len -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a23813 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xb8a647a3 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xb8ac9ac9 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xb8ae534a bdi_put -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xb8cb9b80 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xb8fbc9a8 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xb8ffa9a6 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb916c2f8 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xb92379b3 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xb93d2982 get_task_exe_file -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9560183 fget -EXPORT_SYMBOL vmlinux 0xb95cb629 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb96bf7dd stop_tty -EXPORT_SYMBOL vmlinux 0xb96c58ec dma_supported -EXPORT_SYMBOL vmlinux 0xb9717851 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xb973f5ba inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xb978389f generic_perform_write -EXPORT_SYMBOL vmlinux 0xb9997b47 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xb9a21d8e gen_new_estimator -EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma -EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b460df pci_enable_wake -EXPORT_SYMBOL vmlinux 0xb9ba1479 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xb9c1a81a tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xb9c43935 amba_find_device -EXPORT_SYMBOL vmlinux 0xb9c9bbae nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xb9e5c155 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9eba5af inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xb9fa7e92 of_get_next_child -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba0932ec inet6_bind -EXPORT_SYMBOL vmlinux 0xba207257 inet6_offloads -EXPORT_SYMBOL vmlinux 0xba365ca4 amba_request_regions -EXPORT_SYMBOL vmlinux 0xba3b95f2 ata_link_printk -EXPORT_SYMBOL vmlinux 0xba4766bc d_set_d_op -EXPORT_SYMBOL vmlinux 0xba49707b rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5890b3 framebuffer_release -EXPORT_SYMBOL vmlinux 0xba5d444b netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xba889d3a fb_find_mode -EXPORT_SYMBOL vmlinux 0xbaa7c8c5 krealloc -EXPORT_SYMBOL vmlinux 0xbaae6ce4 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xbaaedb70 redraw_screen -EXPORT_SYMBOL vmlinux 0xbaaf997e blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xbac936d3 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0xbacfcf17 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xbaddef54 to_nd_btt -EXPORT_SYMBOL vmlinux 0xbae12e82 __serio_register_port -EXPORT_SYMBOL vmlinux 0xbaf434c2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xbaf4a9c2 nf_reinject -EXPORT_SYMBOL vmlinux 0xbb000d39 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0da7e8 phy_suspend -EXPORT_SYMBOL vmlinux 0xbb0dfb51 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xbb0fbd02 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xbb10d026 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xbb14a2d3 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3f3d8a reuseport_alloc -EXPORT_SYMBOL vmlinux 0xbb5734ed sg_miter_next -EXPORT_SYMBOL vmlinux 0xbb624af8 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbbae6fe6 netdev_state_change -EXPORT_SYMBOL vmlinux 0xbbc63a4a vc_cons -EXPORT_SYMBOL vmlinux 0xbbc9582a mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xbbcff9a4 check_zeroed_user -EXPORT_SYMBOL vmlinux 0xbbdf3f7e __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xbbf83e05 snd_timer_close -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc1c2834 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xbc227ed7 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xbc333418 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc5b3872 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xbc760631 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xbc782ce5 phy_driver_register -EXPORT_SYMBOL vmlinux 0xbc8284ad pci_scan_bus -EXPORT_SYMBOL vmlinux 0xbc869be7 genlmsg_put -EXPORT_SYMBOL vmlinux 0xbc8d6505 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xbc943425 param_get_int -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb154ed ps2_end_command -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc55624 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0xbd0f3257 read_code -EXPORT_SYMBOL vmlinux 0xbd0fc865 sk_stream_error -EXPORT_SYMBOL vmlinux 0xbd2673fe netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xbd27970b nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0xbd3d9482 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xbd3eadb9 open_exec -EXPORT_SYMBOL vmlinux 0xbd58e864 input_get_keycode -EXPORT_SYMBOL vmlinux 0xbd6ba688 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd8555f8 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xbd9c0ed2 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xbd9c5699 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xbd9eafd2 load_nls -EXPORT_SYMBOL vmlinux 0xbde06a7f blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xbe015367 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work -EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe218ff8 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xbe2ea55f get_task_cred -EXPORT_SYMBOL vmlinux 0xbe3e3032 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe58206e vm_zone_stat -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6e2719 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xbe71e0fd rproc_free -EXPORT_SYMBOL vmlinux 0xbe7350bc posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xbe88df5e vfs_getattr -EXPORT_SYMBOL vmlinux 0xbea8f766 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xbeb33571 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xbeb5ee92 make_kprojid -EXPORT_SYMBOL vmlinux 0xbec76268 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefe9dd4 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xbf00fb7c vme_bus_type -EXPORT_SYMBOL vmlinux 0xbf19d8c6 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xbf1bad4a sock_alloc -EXPORT_SYMBOL vmlinux 0xbf26bfdc xfrm_state_add -EXPORT_SYMBOL vmlinux 0xbf2a16bd udp_sendmsg -EXPORT_SYMBOL vmlinux 0xbf2a33f6 pci_request_region -EXPORT_SYMBOL vmlinux 0xbf3bb755 cpu_user -EXPORT_SYMBOL vmlinux 0xbf4428df rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xbf4c12d3 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -EXPORT_SYMBOL vmlinux 0xbf56125c of_n_size_cells -EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xbf7f0ac3 clk_get -EXPORT_SYMBOL vmlinux 0xbf8a5dca tty_vhangup -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa159f7 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xbfb7ba7d pci_disable_msix -EXPORT_SYMBOL vmlinux 0xbfd91452 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xbfdcdabd param_get_short -EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfe31a1c dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbffbdeeb alloc_fddidev -EXPORT_SYMBOL vmlinux 0xc0032b39 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xc0119ec6 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xc013d451 vif_device_init -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc03dec6f fd_install -EXPORT_SYMBOL vmlinux 0xc0586f72 dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc083e4f1 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xc08c30ed tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode -EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0ca4f9c i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc0d12dbf pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0eadc9b softnet_data -EXPORT_SYMBOL vmlinux 0xc0ed4344 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc104368b wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xc106a3f5 padata_do_serial -EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xc14c3f94 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1539071 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen -EXPORT_SYMBOL vmlinux 0xc1627406 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17a7a78 of_device_unregister -EXPORT_SYMBOL vmlinux 0xc17b1b1d param_ops_byte -EXPORT_SYMBOL vmlinux 0xc18d0249 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xc18d642e kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xc18e4fd8 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xc1a2e642 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xc1a92f7a sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xc1b2c33f fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e3e2f6 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0xc21b08b2 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xc231575c unix_get_socket -EXPORT_SYMBOL vmlinux 0xc2432fc7 sock_no_listen -EXPORT_SYMBOL vmlinux 0xc25024de simple_write_begin -EXPORT_SYMBOL vmlinux 0xc25babfc padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0xc26523d0 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc271c3be mutex_lock -EXPORT_SYMBOL vmlinux 0xc28f2d6b dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xc2b04c5c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return -EXPORT_SYMBOL vmlinux 0xc2b39b16 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0xc2d47ded __lock_page -EXPORT_SYMBOL vmlinux 0xc2d61593 inode_set_flags -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ec8c86 secpath_set -EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc2fb1647 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xc3027557 snd_card_register -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc30dac1f generic_write_checks -EXPORT_SYMBOL vmlinux 0xc30e4351 sock_wake_async -EXPORT_SYMBOL vmlinux 0xc3224ad5 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc322896b iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xc327c8a8 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc335e972 vm_insert_page -EXPORT_SYMBOL vmlinux 0xc338234b md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xc33bb671 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xc33e3ed6 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc353e4c9 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xc357c5dd devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc37b751d of_device_register -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3cbb2eb inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc3cc3d42 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xc3d4be9d udp_gro_complete -EXPORT_SYMBOL vmlinux 0xc3db4259 filp_open -EXPORT_SYMBOL vmlinux 0xc3e53474 update_region -EXPORT_SYMBOL vmlinux 0xc408245d input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4235e82 bh_submit_read -EXPORT_SYMBOL vmlinux 0xc42d4e4c pci_pme_capable -EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init -EXPORT_SYMBOL vmlinux 0xc465a3d9 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xc4711732 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47f28cf scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xc4a09846 find_vma -EXPORT_SYMBOL vmlinux 0xc4ae06c9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xc4ba1ecb security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xc4cb48fc uart_add_one_port -EXPORT_SYMBOL vmlinux 0xc4d51d0c __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xc4ddc55f __icmp_send -EXPORT_SYMBOL vmlinux 0xc4f02062 blkdev_get -EXPORT_SYMBOL vmlinux 0xc4f52019 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xc4f9a84e sk_stop_timer -EXPORT_SYMBOL vmlinux 0xc4f9d720 block_write_full_page -EXPORT_SYMBOL vmlinux 0xc4fd4481 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xc506e2a2 eth_header -EXPORT_SYMBOL vmlinux 0xc527269d tty_unthrottle -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc53b14ab simple_readpage -EXPORT_SYMBOL vmlinux 0xc53e791d scsi_register_interface -EXPORT_SYMBOL vmlinux 0xc53ea770 param_get_invbool -EXPORT_SYMBOL vmlinux 0xc5493c14 simple_fill_super -EXPORT_SYMBOL vmlinux 0xc5671459 of_find_property -EXPORT_SYMBOL vmlinux 0xc56adf9d tty_port_close -EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc58703bf nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xc596f577 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL vmlinux 0xc5d5972b flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xc5e007ab tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc5e5ce0e phy_init_eee -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5e7f9b0 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0xc5f33c9f sg_miter_stop -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc6036980 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6110265 thaw_bdev -EXPORT_SYMBOL vmlinux 0xc6187c39 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6837ac2 mmput_async -EXPORT_SYMBOL vmlinux 0xc6968d68 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xc6993e49 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xc69f6096 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc69fc9e7 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xc6a3457d elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xc6a48280 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xc6a9252c d_add_ci -EXPORT_SYMBOL vmlinux 0xc6c5041e snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d3604b vmap -EXPORT_SYMBOL vmlinux 0xc6d726b6 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xc6efb6b3 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xc6efec55 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc70dab22 poll_freewait -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc736b521 pci_release_region -EXPORT_SYMBOL vmlinux 0xc756e0b0 param_set_long -EXPORT_SYMBOL vmlinux 0xc757955c seq_release -EXPORT_SYMBOL vmlinux 0xc762e3d2 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc785e020 seq_puts -EXPORT_SYMBOL vmlinux 0xc78a446a pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc78bcd47 kobject_add -EXPORT_SYMBOL vmlinux 0xc78ef325 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xc79b018b kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc79d7e81 sock_i_ino -EXPORT_SYMBOL vmlinux 0xc7a3cfbc vfs_create_mount -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7bd2993 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xc7bdcce5 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cb72cf tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape -EXPORT_SYMBOL vmlinux 0xc84888e3 hmm_range_unregister -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84f2f4f param_get_charp -EXPORT_SYMBOL vmlinux 0xc865ca09 sock_i_uid -EXPORT_SYMBOL vmlinux 0xc8688025 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc890b694 __sb_start_write -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ae8ab9 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8c9aa1b pci_restore_state -EXPORT_SYMBOL vmlinux 0xc8e1b6bb set_user_nice -EXPORT_SYMBOL vmlinux 0xc8e1f093 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xc8ffaa26 make_bad_inode -EXPORT_SYMBOL vmlinux 0xc9244592 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xc9333ee7 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xc93c22bd ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xc945f11b jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc94dfbb7 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9843f50 csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0xc99b5820 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9abee61 __register_binfmt -EXPORT_SYMBOL vmlinux 0xc9b2e2da __vmalloc -EXPORT_SYMBOL vmlinux 0xc9b49df3 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0xc9c7d5c2 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xc9cf0cf9 get_tree_single -EXPORT_SYMBOL vmlinux 0xc9d0d00f __breadahead -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xc9efc8f6 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xc9f36977 __neigh_create -EXPORT_SYMBOL vmlinux 0xca0d7263 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xca1717e1 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xca1830e2 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2d3fb5 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xca346034 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca764892 request_key_rcu -EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xca92fd59 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9764a7 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xca9aeab5 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xcabcef7e mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xcac663f5 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xcae72055 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xcaef8286 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb2bf00f padata_free_shell -EXPORT_SYMBOL vmlinux 0xcb2cf8b1 inc_node_state -EXPORT_SYMBOL vmlinux 0xcb3337b7 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb528aa1 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbbd9301 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe1379c xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0xcbe3017f sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcbf54b7c mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2601fb neigh_lookup -EXPORT_SYMBOL vmlinux 0xcc2f48d3 da903x_query_status -EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc549b79 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xcc5979e1 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5dc1f8 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xcc87ff21 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xcca6b8be blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xccb5aa1a zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xccbdabde qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccde7eb7 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfcde03 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd17674b vme_slave_request -EXPORT_SYMBOL vmlinux 0xcd272e32 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2c00c0 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd3a1bca simple_lookup -EXPORT_SYMBOL vmlinux 0xcd47a2f3 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd69c1d4 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xcd6c256a __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xcd7dbbe8 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xcd807afa pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xcdb87c50 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xcdc0b753 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcad8a5 tty_unlock -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2cef7b snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xce3b57ed ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce615a14 import_iovec -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb465cf read_cache_pages -EXPORT_SYMBOL vmlinux 0xceb72c3a pci_irq_get_node -EXPORT_SYMBOL vmlinux 0xcec8a86a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xced5e6ba pci_iomap -EXPORT_SYMBOL vmlinux 0xced9d287 fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xcede275c memremap -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf060804 dns_query -EXPORT_SYMBOL vmlinux 0xcf1c2d3e __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf2ebc70 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xcf3fac84 cpumask_next -EXPORT_SYMBOL vmlinux 0xcf57a5f1 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xcf5bf098 serio_bus -EXPORT_SYMBOL vmlinux 0xcf7bc2cd devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xcf7ca680 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xd004881b vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xd00c02ba clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xd01b8a7c jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xd02325eb scsi_host_get -EXPORT_SYMBOL vmlinux 0xd02b8a5b skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd047e203 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xd04b957e d_set_fallthru -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xd0608301 kobject_put -EXPORT_SYMBOL vmlinux 0xd060b726 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd065c544 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xd068d14f vga_get -EXPORT_SYMBOL vmlinux 0xd07f2c06 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0ab11a7 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xd0afbeb6 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xd0b792cc input_unregister_handle -EXPORT_SYMBOL vmlinux 0xd0c5c950 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xd0d49b44 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xd0e5f9bb empty_zero_page -EXPORT_SYMBOL vmlinux 0xd0f09095 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0xd110cef7 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xd127485f of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd153f190 ps2_command -EXPORT_SYMBOL vmlinux 0xd16ba870 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xd1772442 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd17e11f3 simple_map_init -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18fe104 finish_no_open -EXPORT_SYMBOL vmlinux 0xd1b0355b dqput -EXPORT_SYMBOL vmlinux 0xd1c3a833 sk_capable -EXPORT_SYMBOL vmlinux 0xd1cad4ce d_splice_alias -EXPORT_SYMBOL vmlinux 0xd1d3bcbd ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de96fe filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd1ec561e netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xd1f7b12a dm_table_get_md -EXPORT_SYMBOL vmlinux 0xd1fc9ba5 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20f42aa mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd20fc966 lookup_one_len -EXPORT_SYMBOL vmlinux 0xd212d765 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xd214e2db flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xd21501fd pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xd226e005 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xd228ceac __check_sticky -EXPORT_SYMBOL vmlinux 0xd22f10d0 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0xd24132e4 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27602c9 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xd279a1d9 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27c447f register_key_type -EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel -EXPORT_SYMBOL vmlinux 0xd28878f5 dm_put_device -EXPORT_SYMBOL vmlinux 0xd288841c omap_get_dma_dst_pos -EXPORT_SYMBOL vmlinux 0xd28e70fb tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xd2a6a24c arm_dma_ops -EXPORT_SYMBOL vmlinux 0xd2bec931 vfs_whiteout -EXPORT_SYMBOL vmlinux 0xd2c10341 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0xd2c33331 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0xd2fc67e1 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xd3099e9c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd30a4934 param_ops_bint -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd3305123 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xd341d05f dma_resv_fini -EXPORT_SYMBOL vmlinux 0xd348f386 done_path_create -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd385b43f jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xd3917c8b udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xd3963eeb security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3a777fb snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0xd3b89661 key_type_keyring -EXPORT_SYMBOL vmlinux 0xd3c33fca fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xd3d26ece xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xd3d873a5 sock_no_getname -EXPORT_SYMBOL vmlinux 0xd3dfeceb dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xd3e1c0c6 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xd3e3a2fb __nlmsg_put -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f4a169 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xd3f70014 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xd3ff71fd dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd4002d04 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xd403e807 genphy_suspend -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40e0892 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xd41d807a __block_write_begin -EXPORT_SYMBOL vmlinux 0xd420726a __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd422579d snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0xd42b0434 make_kuid -EXPORT_SYMBOL vmlinux 0xd4397b6b vga_client_register -EXPORT_SYMBOL vmlinux 0xd44e4783 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xd453d319 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xd45b0c34 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xd46188b6 md_update_sb -EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4864d5b jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4a14914 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xd4a1c7ae __scm_destroy -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4b5ca9e sock_edemux -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4da1628 ps2_init -EXPORT_SYMBOL vmlinux 0xd4dab204 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xd4f4e478 abort_creds -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd505b321 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xd5253c8e do_clone_file_range -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd55aed6e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xd59806fc inc_node_page_state -EXPORT_SYMBOL vmlinux 0xd59889bc i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xd59c3969 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xd5b19171 dev_trans_start -EXPORT_SYMBOL vmlinux 0xd5b21b86 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c0309a vfs_readlink -EXPORT_SYMBOL vmlinux 0xd5c185b6 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xd5caeb48 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0xd5d4439b ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd603a498 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd612b715 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xd626ff30 set_blocksize -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6a35b48 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6add81d dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6d251e9 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd6dbc36d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xd6dd337a phy_start -EXPORT_SYMBOL vmlinux 0xd6de8583 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f23f94 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xd6fc56b4 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd6fdfeba mount_bdev -EXPORT_SYMBOL vmlinux 0xd702c8eb seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd712598c pipe_unlock -EXPORT_SYMBOL vmlinux 0xd722085d flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xd7291226 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd740aa53 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xd743492f fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xd7795075 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xd78f219c vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd7c0bbe4 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xd7c76768 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e0c0ad vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xd7e26b2a tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7fa5132 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xd8368475 phy_device_remove -EXPORT_SYMBOL vmlinux 0xd83dc5e6 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd860755b __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xd862fa1c param_ops_charp -EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd89af337 param_get_ullong -EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0xd8a6e52d seq_putc -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8aa5f81 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0xd8ac32c0 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xd8b154c2 nonseekable_open -EXPORT_SYMBOL vmlinux 0xd8c23eb5 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xd8c4f66b snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xd8e5f1f8 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0xd8e883a2 vfs_statfs -EXPORT_SYMBOL vmlinux 0xd8f4158a pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xd8ff9bff devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd904a5cb finish_open -EXPORT_SYMBOL vmlinux 0xd90b9418 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd90ffdcf dump_align -EXPORT_SYMBOL vmlinux 0xd91b8c08 bio_split -EXPORT_SYMBOL vmlinux 0xd9414815 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xd942a58c release_firmware -EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd9587f6d inode_nohighmem -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98e1590 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xd99c669c pci_get_slot -EXPORT_SYMBOL vmlinux 0xd9a2bbb0 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xd9a458e6 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xd9b06636 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e32a95 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xd9e9a40f xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xd9eb408d dma_dummy_ops -EXPORT_SYMBOL vmlinux 0xda07d194 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xda13e9d0 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xda2b43ce jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda524d9a skb_copy_header -EXPORT_SYMBOL vmlinux 0xda5d1a5c locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xda644332 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda94d9cf skb_clone -EXPORT_SYMBOL vmlinux 0xdaa62490 set_anon_super -EXPORT_SYMBOL vmlinux 0xdab263a2 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xdabc8510 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdadcbefc sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xdae9c810 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xdae9feca of_find_backlight -EXPORT_SYMBOL vmlinux 0xdb03a2ab on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xdb09fd5a always_delete_dentry -EXPORT_SYMBOL vmlinux 0xdb1058ef scsi_target_resume -EXPORT_SYMBOL vmlinux 0xdb1c26f6 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xdb2d02d4 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params -EXPORT_SYMBOL vmlinux 0xdb58a476 mpage_writepage -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6a6dc2 cdrom_release -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb76bd7d mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xdb7e8286 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb9ca3c5 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xdbaae4ad cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xdbb7be69 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xdbcf4a8f unix_attach_fds -EXPORT_SYMBOL vmlinux 0xdbd65d33 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xdbd70b67 nand_create_bbt -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1ba35e blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xdc280a0b md_register_thread -EXPORT_SYMBOL vmlinux 0xdc369a7f sound_class -EXPORT_SYMBOL vmlinux 0xdc37a891 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc530131 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xdc638ce6 of_match_node -EXPORT_SYMBOL vmlinux 0xdc71f43c flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xdc7667d3 kthread_bind -EXPORT_SYMBOL vmlinux 0xdc77d170 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xdc86b120 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xdc9b706a of_phy_connect -EXPORT_SYMBOL vmlinux 0xdcb4d202 key_link -EXPORT_SYMBOL vmlinux 0xdcb55e2e simple_rmdir -EXPORT_SYMBOL vmlinux 0xdcb8e656 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xdcbd7a81 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xdcd10f78 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xdcf31ccd netdev_update_features -EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd1230a1 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xdd142af1 md_write_end -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd23423d xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2dcca4 padata_stop -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd4ffa9b mutex_trylock -EXPORT_SYMBOL vmlinux 0xdd502d0b vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd84bffc clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xdd939537 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xddac68b7 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xddb241d3 param_ops_int -EXPORT_SYMBOL vmlinux 0xddba77df skb_copy -EXPORT_SYMBOL vmlinux 0xddbdd7e8 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xddca162d set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xddd8000f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xdddd258f security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xddfa834b vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xde0be7c6 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xde0ca4b0 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xde1ae38f netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xde36dcb7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xde42b0cb drop_super -EXPORT_SYMBOL vmlinux 0xde48f8fc mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde5685fe scsi_device_get -EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdea70785 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user -EXPORT_SYMBOL vmlinux 0xdec11203 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xdec34bef scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xdeccc42e sget_fc -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded290fb try_wait_for_completion -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee3316f phy_detach -EXPORT_SYMBOL vmlinux 0xdee93575 d_genocide -EXPORT_SYMBOL vmlinux 0xdeecf2e4 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf17b9ec nand_bch_init -EXPORT_SYMBOL vmlinux 0xdf251d1f jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xdf28a644 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf34fe63 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3eb7fe mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf7be0fa netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xdf828615 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa79fdb skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xdfb1d095 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xdfc3739d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xdfd00d53 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xdfd363bd from_kprojid -EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfda8517 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe01b69f0 tcp_check_req -EXPORT_SYMBOL vmlinux 0xe01f87e3 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xe021e6f9 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xe028a6ca atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xe028ebee mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xe02e020c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xe0343523 unregister_netdev -EXPORT_SYMBOL vmlinux 0xe044cce2 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe046b7c6 param_set_ullong -EXPORT_SYMBOL vmlinux 0xe04815f6 kill_pgrp -EXPORT_SYMBOL vmlinux 0xe04d8f00 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe052e368 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xe05b833e tty_port_close_end -EXPORT_SYMBOL vmlinux 0xe05ee877 tty_throttle -EXPORT_SYMBOL vmlinux 0xe0623614 edac_mc_find -EXPORT_SYMBOL vmlinux 0xe0751c1c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xe076f2fd input_release_device -EXPORT_SYMBOL vmlinux 0xe08527d4 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe093341a __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe096720b padata_free -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d967fc nand_write_oob_std -EXPORT_SYMBOL vmlinux 0xe0d9dfda of_parse_phandle -EXPORT_SYMBOL vmlinux 0xe0eb2c18 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xe10fe14a tty_register_driver -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12b5847 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe1389902 seq_read -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13e066e tso_count_descs -EXPORT_SYMBOL vmlinux 0xe152db72 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe154b5bc key_unlink -EXPORT_SYMBOL vmlinux 0xe160ff2d netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xe16c32e6 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0xe16eebd7 hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0xe185e75d unregister_qdisc -EXPORT_SYMBOL vmlinux 0xe1973cdc __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1a848aa vlan_vid_del -EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1b739c0 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1ffac6c netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xe2087342 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xe20c2d94 seq_file_path -EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe2372588 simple_unlink -EXPORT_SYMBOL vmlinux 0xe237db8b fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xe239de1d d_rehash -EXPORT_SYMBOL vmlinux 0xe25429bd would_dump -EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe2682a8c blk_sync_queue -EXPORT_SYMBOL vmlinux 0xe28e4207 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xe29a0b51 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xe2ac51be unregister_key_type -EXPORT_SYMBOL vmlinux 0xe2b02dcf iget5_locked -EXPORT_SYMBOL vmlinux 0xe2c540c0 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe302113e pci_set_mwi -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe346f67a __mutex_init -EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe34861ce netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe377ec50 sk_common_release -EXPORT_SYMBOL vmlinux 0xe385ecc9 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xe39211b5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xe3990bfb max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xe3a2ea68 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3adfb80 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe3afc491 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xe3bd0d9e register_gifconf -EXPORT_SYMBOL vmlinux 0xe3beb8d0 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xe3d45709 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3de4dea pcie_set_mps -EXPORT_SYMBOL vmlinux 0xe3e13b00 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0xe3e2661a mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f0184c of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xe3febeab __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe41e04c9 of_node_put -EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe42a5b7f path_is_under -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe432fc93 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xe438831d flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xe4390cfd module_refcount -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe446264e skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xe44b39fc rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xe45a517b __SetPageMovable -EXPORT_SYMBOL vmlinux 0xe4743f38 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xe47995fa km_policy_notify -EXPORT_SYMBOL vmlinux 0xe4959113 mount_nodev -EXPORT_SYMBOL vmlinux 0xe4a0bad6 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xe4bc3e86 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe4bf9e57 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xe4c4d2c3 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4cdb97b writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xe4d1d683 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe4db2787 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xe4fbe200 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xe5229793 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe533ae0b kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe54be71d crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xe55e64e7 mmc_put_card -EXPORT_SYMBOL vmlinux 0xe563ca01 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe56cebc0 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xe5744e30 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xe577efd6 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe5895b94 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59a4108 dst_dev_put -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d87eb8 __free_pages -EXPORT_SYMBOL vmlinux 0xe5db4b10 __find_get_block -EXPORT_SYMBOL vmlinux 0xe60562c5 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe640a37d tcp_mmap -EXPORT_SYMBOL vmlinux 0xe6429099 input_match_device_id -EXPORT_SYMBOL vmlinux 0xe64c8303 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xe657f615 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6b96f2f sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xe6c12171 complete -EXPORT_SYMBOL vmlinux 0xe6d4681e nd_integrity_init -EXPORT_SYMBOL vmlinux 0xe6e478c8 vme_slot_num -EXPORT_SYMBOL vmlinux 0xe6f87c76 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe6fb4d33 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xe6fe1e15 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xe706419b mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe718a538 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe71e8032 path_get -EXPORT_SYMBOL vmlinux 0xe72880e4 __brelse -EXPORT_SYMBOL vmlinux 0xe7308737 d_path -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7382558 sk_alloc -EXPORT_SYMBOL vmlinux 0xe739b18e dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xe758a7fd mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xe7647ab3 phy_validate_pause -EXPORT_SYMBOL vmlinux 0xe7654ae3 __devm_request_region -EXPORT_SYMBOL vmlinux 0xe76ea267 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xe7a30e11 init_net -EXPORT_SYMBOL vmlinux 0xe7a7c5aa param_ops_string -EXPORT_SYMBOL vmlinux 0xe7b95087 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xe7c8efad pci_dev_get -EXPORT_SYMBOL vmlinux 0xe7d067da ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d5dab3 of_dev_get -EXPORT_SYMBOL vmlinux 0xe7e3cc7f phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xe7f6b866 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xe800c143 md_integrity_register -EXPORT_SYMBOL vmlinux 0xe8213a14 flush_dcache_page -EXPORT_SYMBOL vmlinux 0xe8294626 tso_build_data -EXPORT_SYMBOL vmlinux 0xe835bc9e __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xe83a756f tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xe844d3c6 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xe847ca80 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xe8495237 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xe8508178 napi_get_frags -EXPORT_SYMBOL vmlinux 0xe8589dba backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xe868cce3 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xe869a017 sync_inode -EXPORT_SYMBOL vmlinux 0xe8896166 invalidate_partition -EXPORT_SYMBOL vmlinux 0xe8b9df48 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xe8cab164 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8ea327a tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xe8ed95dd mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe9337535 param_set_ulong -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe955a75e __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xe959b226 registered_fb -EXPORT_SYMBOL vmlinux 0xe9640042 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xe9651cd0 keyring_alloc -EXPORT_SYMBOL vmlinux 0xe96dada3 __seq_open_private -EXPORT_SYMBOL vmlinux 0xe977572e mount_single -EXPORT_SYMBOL vmlinux 0xe97a7ee0 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0xe98cbbbe __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0xe9a08b25 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0xe9cb2544 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xe9dfee40 task_work_add -EXPORT_SYMBOL vmlinux 0xe9e0d4f7 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f988d1 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xea110309 tcf_register_action -EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev -EXPORT_SYMBOL vmlinux 0xea1f6418 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea44599a phy_aneg_done -EXPORT_SYMBOL vmlinux 0xea511bb3 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xea5a1ac6 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xea5d5c40 d_invalidate -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea95100a netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xeac2b372 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0xead5fcc4 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xeaddbbe3 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb0b9bf9 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode -EXPORT_SYMBOL vmlinux 0xeb1c3b93 __register_nls -EXPORT_SYMBOL vmlinux 0xeb264ebd lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xeb29a85f pci_find_resource -EXPORT_SYMBOL vmlinux 0xeb2e4cc9 dm_put_table_device -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb4028a6 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xeb462dad uart_resume_port -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb651301 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xeb898099 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xeb8ed3e3 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xebcb630f genl_notify -EXPORT_SYMBOL vmlinux 0xebe64341 pci_set_master -EXPORT_SYMBOL vmlinux 0xebf3eab1 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec01b21d proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xec14239d rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xec1a0f02 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xec1d68bb kill_bdev -EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec3c38d2 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5a569c get_thermal_instance -EXPORT_SYMBOL vmlinux 0xec802f75 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0xec8eca07 pci_irq_vector -EXPORT_SYMBOL vmlinux 0xec8f2ba7 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xecba2621 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xecbe57da ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xecbf926b __skb_ext_del -EXPORT_SYMBOL vmlinux 0xecc80ce7 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xecd33874 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xeceb464e snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xecec877d update_devfreq -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed04eaf8 netdev_change_features -EXPORT_SYMBOL vmlinux 0xed16c53d nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0xed42c1ca nf_getsockopt -EXPORT_SYMBOL vmlinux 0xed45b84c scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xed511d56 udp_prot -EXPORT_SYMBOL vmlinux 0xed5303ed page_get_link -EXPORT_SYMBOL vmlinux 0xed5911e9 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xed6070b9 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xed617881 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed6de4a6 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0xed7880e8 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xed854c4d cpu_tlb -EXPORT_SYMBOL vmlinux 0xed8e0c2d dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd4a4c0 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xede0d3e2 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xede7cd6b __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xedeb59d9 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xee01080f udp_disconnect -EXPORT_SYMBOL vmlinux 0xee0fc55c pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xee28e673 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee311d9a blk_queue_split -EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee4f4177 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee84bb40 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xee9abe6d dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xeeae141b phy_resume -EXPORT_SYMBOL vmlinux 0xeeb06102 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xeec01a06 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xeec3474a filemap_map_pages -EXPORT_SYMBOL vmlinux 0xeecba0b4 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xef057b5e napi_disable -EXPORT_SYMBOL vmlinux 0xef39d758 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef6c1d00 kernel_connect -EXPORT_SYMBOL vmlinux 0xef7d8be0 consume_skb -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xefb7bccf _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xefb873d3 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xefcd4c16 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status -EXPORT_SYMBOL vmlinux 0xefee0902 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xeff7e8e5 ppp_input_error -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn -EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf03a01db mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xf0533c06 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xf055c353 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xf061798e bio_endio -EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf07c00c1 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xf0857cde snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0ae4970 iterate_fd -EXPORT_SYMBOL vmlinux 0xf0c01ac6 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xf0d59f4e generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf0d68d09 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xf0da99e7 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf0f40740 filemap_fault -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf102732a crc16 -EXPORT_SYMBOL vmlinux 0xf103b0a1 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xf1060884 snd_timer_stop -EXPORT_SYMBOL vmlinux 0xf10660c2 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xf11c5fe1 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xf13f2d19 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xf1618762 vc_resize -EXPORT_SYMBOL vmlinux 0xf194c20c gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1c4421c of_node_get -EXPORT_SYMBOL vmlinux 0xf1cea7af inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e0a0a6 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1fb6f3d eth_get_headlen -EXPORT_SYMBOL vmlinux 0xf2058f56 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xf21088cb of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xf21d1d5e lock_rename -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf228cfa5 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xf235f13a security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23851b4 __kernel_write -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf253d1ce gro_cells_init -EXPORT_SYMBOL vmlinux 0xf263c910 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf29de2a3 register_sound_special_device -EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d270fd security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf302245c genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf316debc ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xf322f08c get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xf32cc737 seq_open -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf352b050 register_netdevice -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35da25d dm_io -EXPORT_SYMBOL vmlinux 0xf35f30f5 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xf37fa622 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xf386cc27 security_sb_remount -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after -EXPORT_SYMBOL vmlinux 0xf3af2a74 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b51e46 tty_hangup -EXPORT_SYMBOL vmlinux 0xf3d0bbe7 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xf3d9cf70 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf3df5052 generic_listxattr -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e91247 set_wb_congested -EXPORT_SYMBOL vmlinux 0xf3fa8665 discard_new_inode -EXPORT_SYMBOL vmlinux 0xf4062316 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xf41c5aff genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xf41e767a xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xf427f8cf sock_create_lite -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf455fb44 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf46d709d __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47bc2c5 devfreq_interval_update -EXPORT_SYMBOL vmlinux 0xf48408b4 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf49055f8 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4b5ed00 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xf4b90287 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4eb1ffc tty_write_room -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5324244 param_get_bool -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54b5198 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf54b853d xfrm_init_state -EXPORT_SYMBOL vmlinux 0xf54cc37f set_posix_acl -EXPORT_SYMBOL vmlinux 0xf55e2d3a genl_register_family -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5723829 register_quota_format -EXPORT_SYMBOL vmlinux 0xf596fb42 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0xf5a7dc51 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5c0d8dd configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xf5d76905 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5e83545 page_readlink -EXPORT_SYMBOL vmlinux 0xf6416968 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64f84d6 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66c8a9a i2c_register_driver -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6856c3a dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xf69df003 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xf6a7b1de netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xf6aaa655 page_mapping -EXPORT_SYMBOL vmlinux 0xf6c205a7 devm_release_resource -EXPORT_SYMBOL vmlinux 0xf6c66df2 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xf6e5e99d __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ee40b8 scsi_print_result -EXPORT_SYMBOL vmlinux 0xf6fc29f2 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fff3f2 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf727d25d contig_page_data -EXPORT_SYMBOL vmlinux 0xf730d027 pipe_lock -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73cc99f block_write_begin -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77f89c6 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf781d039 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xf7a5a0ce follow_up -EXPORT_SYMBOL vmlinux 0xf7bd118d inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xf7beda4f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xf7c2a372 netif_napi_add -EXPORT_SYMBOL vmlinux 0xf7d1bcb3 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xf7dafaf2 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xf7dc6a52 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xf7e910a0 proc_mkdir -EXPORT_SYMBOL vmlinux 0xf7eb7558 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xf7ed9b27 tty_register_device -EXPORT_SYMBOL vmlinux 0xf7ff85fe dcache_dir_close -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8251ba3 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xf82650bc inet6_protos -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf84811ae mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xf859286a cont_write_begin -EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf8829440 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8af2ae4 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8c77f43 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xf8e20a9b refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xf8e360a4 amba_device_register -EXPORT_SYMBOL vmlinux 0xf8e69301 netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf9214053 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xf934b2b8 devm_clk_get -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf943a171 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97bd780 build_skb -EXPORT_SYMBOL vmlinux 0xf97cad04 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xf9882748 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xf98f06fb ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xf98f6b0b security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xf9a36b47 down_interruptible -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c56722 audit_log_start -EXPORT_SYMBOL vmlinux 0xf9ccac0e of_get_parent -EXPORT_SYMBOL vmlinux 0xf9de9c70 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xf9e3af03 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xf9ed0e80 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xfa06afd0 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xfa0bda1d tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xfa0e9082 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xfa2ad206 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa4ec08f phy_read_paged -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6e8562 no_llseek -EXPORT_SYMBOL vmlinux 0xfa81b40d __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa9bf848 snd_info_register -EXPORT_SYMBOL vmlinux 0xfaadc4d3 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xfaafbb10 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xfab62ff6 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xfab6bbe6 kill_anon_super -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac8d500 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xfae23fee fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xfaf01085 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xfb038e6d skb_push -EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb24a3d9 dget_parent -EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb4f592c invalidate_bdev -EXPORT_SYMBOL vmlinux 0xfb50265c inet_add_protocol -EXPORT_SYMBOL vmlinux 0xfb5f8b60 mdiobus_write -EXPORT_SYMBOL vmlinux 0xfb69029c mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6d91ff inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xfb73cd1a rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb861d27 get_acl -EXPORT_SYMBOL vmlinux 0xfb88ea44 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xfb90f94b snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xfb94eaf3 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xfba74b57 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbaf0ba4 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xfbb0e475 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xfbb9075f mmc_erase -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd1cf6f mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xfbd223aa snd_timer_start -EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfbdfe774 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xfbee679c ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xfc0173bc elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xfc1ebb0e of_get_address -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfc4da664 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5a8a16 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xfc68f2a8 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfc75d680 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xfc89f3c2 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xfc95e16d dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xfc9703b7 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xfca546cf nla_put_64bit -EXPORT_SYMBOL vmlinux 0xfca71244 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xfcac1bd6 release_sock -EXPORT_SYMBOL vmlinux 0xfcbde8b2 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xfcc279e7 dev_set_group -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd023120 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xfd291cf7 snd_unregister_device -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd3ad309 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xfd41ddf8 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0xfd473290 vfs_llseek -EXPORT_SYMBOL vmlinux 0xfd5a6f96 mdio_device_register -EXPORT_SYMBOL vmlinux 0xfd5cf411 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xfd671b21 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd7c8f2c fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xfd826459 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xfd9ec4b8 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xfd9fd8c6 hmm_mirror_register -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdaac215 con_is_bound -EXPORT_SYMBOL vmlinux 0xfdaaf585 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdce8455 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xfdcfa36b rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page -EXPORT_SYMBOL vmlinux 0xfe26883b xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xfe2e65d8 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe48b481 input_register_handle -EXPORT_SYMBOL vmlinux 0xfe5961c5 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe604214 kobject_set_name -EXPORT_SYMBOL vmlinux 0xfe631302 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xfe6a2c8a _snd_ctl_add_slave -EXPORT_SYMBOL vmlinux 0xfe72b4d3 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xfe77f8fb md_done_sync -EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedfef03 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xfeeeb78a scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefa79a6 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff06fcf7 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0xff11e04e skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xff122729 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff38f27c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff61537e snd_pcm_stop -EXPORT_SYMBOL vmlinux 0xff618d96 dst_discard_out -EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 -EXPORT_SYMBOL vmlinux 0xff67df44 d_obtain_root -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff8be20d generic_block_fiemap -EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff91cf10 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xffad3590 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbf4e9f ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xffc0d3c0 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xffd3b483 param_set_invbool -EXPORT_SYMBOL vmlinux 0xffee662b tcp_release_cb -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x2c1564f9 sha1_finup_arm -EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc39485d2 sha1_update_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x04029b4d af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x0672159d af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x113e7c12 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x1f5ba98b af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x268066ab af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x445dd01a af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x45abf6e6 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x525f6b85 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5bda7a31 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x9172958b af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xb5738775 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xb9dd0bf0 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xbe04eb58 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xe4bffc6d af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe68ce790 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xe9442523 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xeb00e4fa af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xf1b8e6df af_alg_release -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xc98b0bb1 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xbea9418b async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x33d770bc async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x63cc5188 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x084f600c async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe9568835 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3497d016 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x564edf0b __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6014e0e1 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa231d1f2 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x01e63141 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdbb92e71 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4f4b13dc blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x71de83f0 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xf5a6893e 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/chacha_generic 0x261cc039 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x7d54d80a crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd14f569e crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xdd9a706f crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x0eeb0be1 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x0fd89c25 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x1f10b212 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x89de46a6 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x8edbc187 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa0b28c79 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa247bd4a cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa8c16619 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc36ced89 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xd304ea6b cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xd3e381b0 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe3e682c6 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xee1ca2cd cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x03579e28 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0b0be770 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1a776641 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x22899146 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2abadd87 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x46271dd2 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x490ff145 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x62779ff0 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7732787d crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8b13b572 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x949b0f91 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa5bfbec crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xda36b0b1 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdf2472e4 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x425ddd30 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x76ec8ef5 simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x776d64a9 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe6fcc8ad simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x80642089 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x85c1cabe crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe84504a0 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4846ac5b serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x6a584e4d crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x81f65cbf crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xefabf3a0 crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x474a3f3e twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb42a7aa3 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x8ebf803e sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x6ecdb843 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9981e8b3 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf8410dfa __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1de8a0f6 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x4839becd __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3f2a3a63 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8adaa5bd __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x92080dee __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb258e253 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x068132a0 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x731c17cb __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x026a0e7a bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fb66001 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21074bec bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x307eb7cd bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4083a6d5 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48c9e536 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54893364 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58cda83e bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x66b18290 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a8ec5cf bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d6f253a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x794b09a7 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x817ea19f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x852e52ff bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97abfbed bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ec22d13 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcf5a3c9 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc39695b3 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2e983ec bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd33337f5 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdaf2612a bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdda94311 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5c7552b bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc517cde bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4d0268b1 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x92cd47c1 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x99f516ba btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbb6bbb7c btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe3e42b19 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeeaa7216 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x03b4063e btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1603fa04 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e038793 btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x586e52f1 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x791da7bf btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7f323f4c btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89a20b7c btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x96677f66 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x96b0927d btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabe464ce btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce1f7c03 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xced00d83 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd0b93a65 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd98e2c60 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe44cebed btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe45a15cf btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1cd2194 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1218bcce btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4babadff btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x56a7cc8c btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77af8fb3 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7cbd4730 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x927f7667 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9df35084 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa5ac1fb2 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcc4859f7 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe8ae0231 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xea65f2ff btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x074ee9dd qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x083ad33d qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0e0d280c qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3a309b63 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x467ae284 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1f407767 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x214e2051 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa2fbf644 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb3cd5831 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc4da23d8 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x10772485 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x20e7a99b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x45cd5465 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6216b279 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x18db4f15 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4a5657d7 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x75231cae moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xce232a23 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe9038186 moxtet_bus_type -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e13d6f qcom_cc_register_rcg_dfs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2df91853 clk_fabia_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x49b7ae89 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x512af5e1 krait_mux_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63cb5043 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x65000798 qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ca8a88d clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x733cefdf devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x749eda9f clk_alpha_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb73a2cd3 krait_div2_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbd881b11 qcom_cc_register_sleep_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe35bf3bd qcom_cc_probe_by_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf9ddab05 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0aad4a4f devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1485a795 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x2157c3f5 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3a43acee counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x457e7d4d counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x578f1fe5 counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x636a7b6c counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x64f17509 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x85a06be1 counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8ef147fb counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x9b3e5a36 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc2974207 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xcbdf2b6b counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xdbdd8c47 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xff5bc780 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x22556014 bL_cpufreq_unregister -EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xe64fd435 bL_cpufreq_register -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd9009a51 omap_crypto_align_sg -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x1c2055f6 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x33e0aca4 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc1b80075 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0173d9d9 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0929434c idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5bfec4ce dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc90e64ca dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcaea5141 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcef8be18 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfe0b36d3 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x03570e64 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1540f618 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x17c54342 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x25cc6c13 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2fc82bdf fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4502f4d5 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5fd98e62 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x67c9fa3f fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6c7ee4a6 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x79d473fd fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb27844ad fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd23fdebc fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd53f2600 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd744dda9 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdc866d73 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2179937 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x61d0d597 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc1d27ec1 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x56478e6e get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x0b2fdad6 alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x4cbf3557 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03afc318 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0726487f dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x074dd8e8 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0c417e1d dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x15a65dab dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b3ecfde dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f7847fc dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x525f745b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ccfb108 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e5ce50a dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7059870f __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x835e89c2 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x84b548aa dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9da49072 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xade3b758 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb6ab440e dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc2f62582 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdc33db33 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe197a865 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x047dd178 devm_fpga_bridge_create -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 0x0da4e3cc fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2af51557 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5245e086 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x67b230aa fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x74dec17b fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x99fde91f fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa7a5764b fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbf277605 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdbf73925 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdd44a46b fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe9f7a3ef fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x13a78765 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x21fb7e4a fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x27b4e4cf devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x48cac988 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x494c1545 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fd358d7 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x75ee5952 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7aaf315a fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7e99fcfd fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x901d4965 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5d1a1aa fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xda13de9d fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf4567009 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0bc258f8 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x65df4605 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6b897bce devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x70db93e3 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7ce6cec8 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x90c33f80 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9d556815 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x21c60d91 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8440bd78 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9ad5a146 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa157f6f7 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb6641dc0 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb770e490 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc0ce9c5f fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc8c6c494 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc947d796 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf9673dab fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x0b3d7176 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x00594bd2 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd1678fec sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1fea25e6 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x24f7e125 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x93978227 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9acf49c4 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe11f52c1 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x07c3137b gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1252c66d gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x35851acd gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3ba2c41f gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7b99cefb gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x16d6ff71 aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xd9e58f92 aspeed_gpio_copro_release_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa293c28e __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc4261f0c __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x03c7c6e0 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x29c23326 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x34daecde analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5160fdcc analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x70de7869 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x94c956c7 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe2917a75 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xef5ffbed analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xadf8c6d2 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdd9736d3 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 0x4c301614 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xff6b6a98 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a8cde40 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x239d7057 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26bf21fa drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2be138a1 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f097bee drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42692a03 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b7bc698 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x622448b9 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67c912bc drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x780158f6 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79ad2eec drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x867efc5b drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87305ff8 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99a21b1e drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9fa5655c drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa03cda88 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa69d2bf9 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa82640c5 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa34b305 drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaaafa616 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xac51e40e drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf887dc6 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7d17959 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd884cbd4 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde327c41 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeec96ea0 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2225973 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb2192fb drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc5872c1 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2659980d drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3852453c drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x727493be drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x992c467b drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc0626696 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe36d664d drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfb3258f2 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x15736934 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x4eec1b48 imx_drm_encoder_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8e98725f ipu_plane_disable_deferred -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xb7db5e65 ipu_planes_assign_pre -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xce5b0371 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xbbfcbd61 mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7dc45e99 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x8e214909 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb0b03a90 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x323c528e pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x2da9e072 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf3b2bbfb rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xfbdfe35c rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x0898a0d4 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2b4ec855 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x64d23a37 ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x81512dba ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xcc0ab49a ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x012f5411 ipu_idmac_enable_channel -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 0x051e3913 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0bde9cdc ipu_image_convert -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0c5fa19f ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17313673 ipu_prg_channel_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17563a2b ipu_module_enable -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 0x1995c81c ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b9b5228 ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e90f417 ipu_dmfc_get -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 0x20e09f6f ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x211bd1a7 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25a03956 ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25d71b21 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x275ec75c ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x28532af4 ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x28b515c4 ipu_dc_disable -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 0x2f98f48b ipu_srm_dp_update -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 0x33a1c2d6 ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x369e7ff1 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3800fb94 ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42db6de0 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4618bb26 ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4821f57b ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -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 0x4b3458c5 ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5266ab10 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5671b965 ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x599c6fd5 ipu_fsu_link -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 0x5e9c7f58 ipu_cpmem_set_image -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 0x62e61890 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x63593ec7 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x63f622c8 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66e729d2 ipu_mbus_code_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b762a2f ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6bbdb190 ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6ed0b3c7 ipu_prg_present -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6fb88540 ipu_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x72c56440 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x781bb26c ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x868402ae ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8c6c6ecf ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ece82bd ipu_pixelformat_is_planar -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8f79c568 ipu_prg_channel_configure -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9100a8ce ipu_prg_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x990c24c2 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f690437 ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa2fd4770 ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6daa1cb ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xab78a32d ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xafa880e8 ipu_idmac_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb084df83 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb146abe9 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb6212a73 ipu_prg_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba1c19e4 ipu_image_convert_prepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc8f9d20 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc22b2f66 ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc48591e1 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc712bc2d ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc75a241c ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc9c8957e ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce10db35 ipu_stride_to_bytes -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd183b9de ipu_prg_format_supported -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd2987cd1 ipu_prg_channel_configure_pending -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd3f9d416 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd4bdf8be ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6c46cc2 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8df18ef ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe1cbd078 ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe26e653e ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe2de6b61 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe521ab7a ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xedd396a6 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1c66463 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf397f25f ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf494c1e1 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfcb7b726 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01284c5d gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0938f277 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b8ec164 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10a40c1d gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14f96eb5 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24d779d4 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29f7da7f __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2fec4828 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31a92e81 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32a68daf gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x363473ee gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38b89571 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4fbc5691 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50517685 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5164b1f8 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5491950f gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b607028 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x682e74a5 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x697c98e6 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x704f88e5 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75c9730a __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77889f1f gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78e64b1f gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a3c008a gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f3169f9 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b0c6307 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8cd18bbc gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fdaee20 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabb005bb gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaee42973 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0cd4215 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdacabfe7 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdce5726a gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xded0378d gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2ed77c2 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2fe70f1 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe628ac57 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec901ae1 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef1e0dfa greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf17cb8cc gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1f4e6b4 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb52ccf1 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcd391a8 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/hid/hid 0x037bb4ae hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x08908d0d hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x109e3c19 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x187c035a hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21c52d64 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x223f4359 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2490bd0d hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x277195b3 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bb53356 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x399c5ac4 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x53dc2b7e hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5817911e hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ae81794 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5af4304b hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x66e087ed hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d428d28 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x730be44f hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7907bf6e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fc4c117 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91a1bad0 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x96503864 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x96b3f286 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99451af7 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b0f1d50 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5bea189 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa62fa731 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa89c9795 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac3acb96 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf769bb5 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb34ea01f hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5b3a97e hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6ebdb9d hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc731110b hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca008741 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd03ebdc7 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1ba8ed7 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4a425f9 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde748f27 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee2feb60 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6010454 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9ab0ba1 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba39972 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xffcec8bf hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xffd665cb hid_ignore -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 0xe2ef0953 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x14cfb061 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x39b28bea roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x60de369a roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x71cf8783 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x781d60b6 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfcc3d55f roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d828132 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x13d75032 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x167bd511 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2c0e8174 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x384c31c6 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3f4a18c4 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8916c591 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb27080a9 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfdc9288c hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x449b5a78 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x38148b41 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb5272cdc hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xcd2ed18b usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x04059677 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1650dee7 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c565f3b hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x365124d0 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ce3f75d hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6770727f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x68fb664a hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x74b5334f hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7be5f3da hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a9ced8e hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf4f0c4a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd1ba3ac0 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd213aefc hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda335cc9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb89ef20 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe28b5f54 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe563143f hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6486cd5 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x05451c2e adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x70ea2b3f adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf5757319 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x17e2eb49 pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1c04cf07 pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x39bf7b1a pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3aafb9d8 pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x52574652 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x54c0c198 pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x58f339ee pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x685ed25c pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71d6186a pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7d35fde5 pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x97f57384 pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9ff854dd pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4cb9876 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbe9866e5 pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe976b8aa pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf802c32b pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfacca77f pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfd0ec323 pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfd4d22c8 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1b4054e2 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1ec552c7 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3adb2b62 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4928912b intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x614086eb intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbec33004 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc3ab2fc0 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd69e216b intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf8e5947c intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4acd959b intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa3a317fb intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe4af7c14 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0fdb0ff2 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x21c5d439 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4db9e1a0 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x56387089 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5d9d9c8e stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x92589326 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb14216f9 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc630cfe8 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xda2ef5ad stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x07e52fab i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8ff2e9de i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xafc62747 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe35702d5 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfac6ab98 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07c4431e i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11e2b7b7 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13c3e8df i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1450291d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2d6c1939 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x37063331 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d79ab5c i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f9a9aeb i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54927658 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5a12ac57 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5f95dfa1 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6748614c i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76be1638 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87d9eae0 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x89f6e970 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8f000a1e i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x902fa172 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa77b9115 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd032b510 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd14fb753 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3f079b0 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd50d93b8 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd526341a i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd96ac0fd i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2879c87 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd9ae6bb9 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xf998b6e8 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x107ba84a bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x72382648 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9ac56009 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd91b7b90 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x0c569751 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x24759086 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xd5ca31fb mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x14d54ab3 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xcd52a6ab ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2d3c348c ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x341efd18 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x46b99876 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4ba5253b ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x668b8035 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x77e64640 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x857cc515 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa7edd248 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc9d5998b ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdfc1dfb9 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1b83497f 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 0x2e3c8148 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 0xe47207c8 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x6035fe03 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 0xb63756b2 devm_iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbad9f6b6 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x3aaa7974 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x4f5e431f devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x2b20c38f bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x04fa9be0 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1165c0f9 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2430b4a1 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x33f76fe3 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x45ec8560 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x53c480a1 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 0xb5784bed cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe8cde21c cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf82f7bc9 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x2d7dabea ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xca7a8f1e ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x16691b94 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa1e4c01f ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2d71b908 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x4c7adaf6 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd4505fe7 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3afa47d5 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x76a32bc2 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc1ff19a9 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0fad0b76 adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x166e29c5 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x46b846a8 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x893e275f adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbc1609cb adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbf163adf adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc6575df0 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc762c9f1 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe8d26c53 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeebb3b5f adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf70c1e5a adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfdb94bf3 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x4b36fbbf bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x77511baa inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x811b2288 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa92c7f11 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0149672b iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d3a4884 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1469a591 iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x188f5e50 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1937f943 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a0cc03d iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c37e330 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e35a680 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3265a74b devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x360a979b devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a097dfc __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3abb412a iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b6b28bc __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44cf945f iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a692612 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57a3e26d iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61f1495c devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6473f9cc iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x686896b3 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6af33954 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f7430c0 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76d1827b iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab73ad6 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b37ea1a iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bdc76db iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f18bced iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81039ba7 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x814aba46 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8357c551 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89154e59 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ccc046d iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cdb692e iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d0ae811 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91086499 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91df1dbc iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95d64b74 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa2814689 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbaa4b8f5 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc22e01e3 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb2e0cd2 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd12c001e devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4c2b0f4 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8bb097b iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9dc1a25 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea924c9 devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb234390 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfbd7cef9 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfcec4cc8 devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe875f22 devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe95f05c devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x8ae34204 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xd20e7823 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1e5625f3 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x41da8598 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7f7c6d8b zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc15e347b zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc44ec86b zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xcd421e1d zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xe584a4e4 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x60b6dc6e matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3ae2ebd6 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x000095e8 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x180aca8e __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x19719aa2 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x279a46dd rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2af0b909 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x429c697e rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6d0c63aa rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6d76754e rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6e082971 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x878b78f6 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x93175c34 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9fa132d2 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe74ac625 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1053c31f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x866fa4bc cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbd7483d6 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5ddf588c cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf746b2ed cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4aebd7e6 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe60873f6 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1631b8c6 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x20c27f8d tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x330663d9 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6e7ca6eb tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x01312ede wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23499981 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61f19629 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c4f8b73 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa916b423 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad5b96b7 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaedd1c8a wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe3e5db1 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc24463f8 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcb35d736 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1065fda wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdb1245d7 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x154edcac of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2ebbcb5f icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x5ec42bae icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x83d745af icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x93527cca icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xaa015065 icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xba7c6fbf icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe41134be of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xea2c7474 icc_node_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xf9bb4fd6 icc_provider_del -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 0x2c8bfb1b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5f0adc86 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fe8f66a ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7a7659c4 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7ace3c38 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8d08747c ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd2c4e9a2 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe9056804 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe92e4576 ipack_put_device -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x61d0a123 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9fb79586 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4852c58 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc21d77d8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xca7c205f led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe0d5081e led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x04e78b26 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0607f226 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2ec35775 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x49014aa6 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x651f18bf lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6596c881 lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8a1be789 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb938d03a lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc4b87d9 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdea19ecf lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe4a51541 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07d01260 chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x38a33446 mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x476432e3 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4937f082 mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4e1bef12 mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x574255f2 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6861e7b3 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x87a956e2 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9426f3a3 mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc3f3026e mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xced710c2 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdef40a45 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe65585c7 mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xef32067a mcb_request_mem -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x11926c1e dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16832fd4 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2d10d5e0 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3654ebf7 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3723d4a4 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x59842538 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x685c4e56 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7678f784 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x82c13a32 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x94eb9bc7 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa03a2bff dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4ad916c dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3a85c35 dm_cell_quiesce_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 0xc4602646 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd51d1378 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdbe2f3cd dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc6cd956 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 0x4dda714e dm_bufio_client_create -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-cache 0x024555fd dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xac28e982 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-multipath 0x246c92e0 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5656baa9 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 0x3e1dc3b1 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4021be0b dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x51d19334 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6faf0b2a dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9e536666 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 0xb8622646 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 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -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 0x2adee13f dm_btree_cursor_next -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 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -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 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55f98e63 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7083b63 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8dbd4e1 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6367ed7 dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe311fae8 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e53ad69 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d0f588e saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1e14659a saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x316ed19f saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x69536209 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x70dc6782 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7baaffb1 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8cab4b6 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb39dad0a saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb76fb09c saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x232973c7 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f238197 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9e7b7bb8 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbcee56c0 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd09bbd50 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe60afa2d saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xef4e8397 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x009d533a smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x076eb9de sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f83ab90 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4515e36c smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5791ea7c sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63717e4b smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a6e17ab smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b1c31be sms_board_setup -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 0x9a2496cd smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa49f64ec smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa775c33b smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbcbb5c8 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc59c788d sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca65fde1 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcf2f87d0 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdec81fee smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0768c12 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0aa6af5e __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b6bf78d vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b77c167 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16f67eef __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d145bcc vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x274ef2cf vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a795aab vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c3f81ce vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5fa106c9 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x68bfc5b0 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x72299727 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7bf34593 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7eeeee2e __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f5b57e4 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x880e86c1 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8afaa712 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9170e4ee vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x964ea723 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3ccca44 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa802ecfe vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbd93326f vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe892849 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf2e5e74 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce5a00d4 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8192224 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe3ef4969 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe54d0546 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7a6adc1 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf314fccf vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x4084d245 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf9781402 vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xff4d629d vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x2e36d479 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x6c71833a vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d8c847c vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x105e3ea2 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15d2138b vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b72a0e7 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c3bc7f3 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ea210f5 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ccbac10 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x419c99dc vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45b3c7d6 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f011a5d vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5771ac2b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5bc4a541 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5dba59d2 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x67ce31e4 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70cc3e82 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7230a5a3 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e92ef3c vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x81f6d267 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85ede49b vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x884dfc1f vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x903b4352 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa84bf42f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1f4fecf vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6a15444 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0885661 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd52702ba vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8bce8bc vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf12a35f7 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2d84efd vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3866f41 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf960d761 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x502a8571 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4fc2785d dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9d6b56b1 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd56eef94 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa4929454 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x34a00455 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x4e0b9d89 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x9459f03a mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xab64cc50 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xf6804d10 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xd167c3ec tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd928559c aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x6704a577 smiapp_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x03f17473 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0815c61d __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08578bb8 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08e72edd media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0af41dad media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ea1896d media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d9b0972 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e9560ad media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x235ecfb5 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24f6a87f media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x274f0b84 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29da6dc7 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c1ca340 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30f2f114 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32b5ffa6 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37ac4c42 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ce8ce44 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62d563ea media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66e843ba media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67bf4710 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7255c5a2 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77f9b4a0 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x793cbf74 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9df794cc __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa92ae5d0 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaca1c904 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaca6c148 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2839d45 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb61bfd1a media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8bebcf0 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc678fe4 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfa45262 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcca26be1 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9622a21 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe390f3a6 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3d61b77 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4093721 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7bb16c6 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8c6b186 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed632d51 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2b93acd media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4f80e7b media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf6e0d21b media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf91e010a media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdfc2b9d media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe1ce881 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x76540035 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02561232 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04b249c4 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15a49534 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15f3930f mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16cafb51 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x307b1b52 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c6504d2 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d4a04f1 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6fb55a93 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8665a8cd mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9051f61b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c454b23 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9e594290 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3ed2090 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa4179548 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc0d3838c mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcaf8ae50 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeca26300 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfc236151 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03ecbab2 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x05540ef2 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x270bfe6c saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x333e5a08 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6afc3634 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6b2eaedd saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8137b512 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86782d18 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x900d9f29 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x95153342 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bda4c36 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xabed5646 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb021eec2 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb2727996 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf657e01 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5e0f5be saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2cc43e9 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf92c4b8a saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe9acdf8 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x06d7a6dd ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4e709e26 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6822f790 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x95665df0 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbfa51f0e ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe5acfe76 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf7e561c7 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4b3edea9 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb8b14a9a mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xcae1b261 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xee2164be mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf16779d6 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x06e02ead vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x196664f1 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x20e62d54 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x32a1f497 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9446d50d vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9d71e008 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc08efb43 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf99d8223 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xf38fc193 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x6bbec9f6 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x7e7f8cf0 vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x9c29c2db vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xb2d20f1e vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xba3c6d9c vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xc5addf6b vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x216dec0d vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6d53c751 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x79b2d251 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7f3f89eb vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x8c405210 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa5cbf54b vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa8366f3b vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x201dd055 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4fe5a1bf xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7a0fde7f xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa68eade1 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 0xcb2ac034 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe6cdcbe7 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xef7cb6cf xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x80647555 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x76971267 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8fb73c7f radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x095837e3 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x951bc986 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x96eef824 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa19e2d0e si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf2b4b8a8 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x02c6a231 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x040417b1 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08a54673 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1458bd70 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1aaa6953 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f58a276 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a00b85d ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5313d5db ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c0e9d44 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x62541547 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7628020c devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cc5f565 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0c19168 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0fc1e9b ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb257a346 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba09216c rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc5f4fcec ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7e336c4 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xde264e5a rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe18d31f3 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8e3ec63 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9c16f628 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x5705a48a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6b64c903 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x30c52be3 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe79b1b82 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x0e4bdccc tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3e46008b tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9eef6c8e tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xe4a00c08 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x62a6c67c tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7915a8fc tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6b6792ba tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7f2dc0a7 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xc44160c8 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09180d57 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e77dd85 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x449e602e cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48faf075 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x58ad1d29 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c8ac6b2 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x83b96000 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x962095ec cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9cbca72b cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa519a5b3 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa941eee0 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xabdae987 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1426570 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4ecceca cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1b1d803 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4a52cec is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4ff35e0 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf877c5a3 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfa816877 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb61dc2a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x86892135 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xa877952c mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x21fb0d21 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2cb810ba em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x373fae5b em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a7b3ae5 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5659f1cf em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x623a9710 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6bb7f283 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x768f1176 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x77a42b27 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fd35cea em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x964e9dfe em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2c1e431 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa3f148d0 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb175493d em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6b0b1e0 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcfd00f84 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd49bd014 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6ab419a em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5b5a8728 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaaf8fb4c tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd52fb916 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe4cb129c tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x240a2229 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc4fb2fcb v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xcd8debe2 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3887dcb7 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4003bf1b v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5c17d145 v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5eeac10e v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x61231726 v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6cf7fc72 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x987dee4a v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa358d338 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xeb0ced9a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfc515973 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f48dfa9 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f4e5151 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x150d078d v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19956898 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2053f7e7 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f636a77 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x396929e6 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ab0beeb v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42e9d736 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x482737d6 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c2aeabf v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d6572c3 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57e058d6 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58eee385 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a598778 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d4164c2 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x645c132e v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67467801 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6efddbd0 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 0x825a5b1b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85cd8be1 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b04476a v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d7708c0 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa2e80db v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab464658 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae2dc1ea v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb53b24e8 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 0xc86b5a6d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf412baf v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe71574ae v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf209a0f7 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3cf09ab v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8ae2d70 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd637747 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe397478 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0dae5e74 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1bb66633 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21540a7e __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a6af8c7 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ba924c2 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fb3dcb3 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53bb01a9 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58028d93 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x598bdc3b videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x630b48d4 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x690ea4ae videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78616eaa videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9024260b videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9250f008 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa948c6db videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac824f66 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba020895 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbdba9c57 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc36ece3e videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc82b7ad2 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6f6120c videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf02bbf20 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf598c779 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbf13af3 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1d94f241 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x30d99c9e videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5483dc8d videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xeb8a40a6 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3eef2ce0 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xca8e9da4 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf733e1d4 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x059e22c0 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05f3eada v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b6ba0da v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dd260f8 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b29b22b v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22a27dea v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2822d78e v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31ddd9f3 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x366479fd v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ea37b64 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x481a1e8e v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c9d7df5 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d00c1e4 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d9736c v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67267f5d v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68cc69c7 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b582495 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6dbb42be v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6dc5d4fc v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x713ac828 v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77408518 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79ad3109 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a7a072d v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ec53ba5 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f799310 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a32b1f8 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b4f5f98 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa03925b6 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa34b17a4 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4a15846 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab52e891 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad6a2068 v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3db48f5 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd1c5846 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc44c5f22 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb1caf28 v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd451d5e v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd27a2c97 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2d08e5e v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7a78dca v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb6088bc v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbf7ce7a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc5c403a v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe03280a1 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4b7b816 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1ef1dd9 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf39b6a85 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf49ff9df v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf94331b6 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9a4913d v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa54feb4 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe492dff __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfeae881e v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x27ed2092 pl353_smc_set_ecc_mode -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x2eec2ab2 pl353_smc_ecc_is_busy -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x31112d75 pl353_smc_get_nand_int_status_raw -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x80ef3725 pl353_smc_set_ecc_pg_size -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x84eeb67e pl353_smc_set_buswidth -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc00d163f pl353_smc_set_cycles -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc37aa3c1 pl353_smc_clr_nand_int -EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xe2603369 pl353_smc_get_ecc_val -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2a8a00cb pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4eb12821 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xac156c83 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2acc17d2 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x437026fa da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4a5a3c41 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5ed8e2af da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76e4bd47 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa00474f2 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb2f290c6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x235d3b8e kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2f274383 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x32cb6459 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x69a446c6 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x85290edf kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbfba44ec kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3581f79 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe8939375 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0f080c48 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7561b909 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd58fb8d2 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1b463a1c lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2ddb32d4 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x466e0cda lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x67614ca9 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x76517663 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x86c25672 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x98e3eab9 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x82752ce1 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc32d0b60 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf943ec56 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d261df4 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d2bc1b4 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x374103e5 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x551dab04 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1300f8 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1edcb8 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x839f7fba cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e7746fc cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e7a9abc cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x96a2314c cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x96afed0c cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa4d0aa34 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa4dd7674 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac609db6 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac73c9ec cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9f65d01 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9fb8141 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd425bf0 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd4f87b0 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd5972c40 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd59af000 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe04b7c1b madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0fc8479 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe6283893 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7e5b738 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7e86b78 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfac3400d cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xface9c4d cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x131fbaad mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x18b389b9 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3dfbff7e mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4a0637f1 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5809c299 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb5bb89a1 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x15f6a4c4 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1faa69e7 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e0a4aff pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30b8fa4b pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x44fb8d5a pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x51913bd8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x64988d8e pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e02f924 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c125df0 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x925f6e47 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb5b6bc63 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1725141d pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x440eadd9 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4f407a21 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x691a6e47 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x92eded8e pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb41824f6 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa80ae19 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x5e94eb1e devm_rave_sp_register_event_notifier -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08c9cf02 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0aad7f64 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1287451d devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ad9f6e5 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e1afd17 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d079a60 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d7db366 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40908180 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d3364b6 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fcccf44 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5fef4752 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60364cad si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6eee5c21 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81a1236e si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a9c244a si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96cecd39 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9968671e si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab0e289f si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb646714d si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb806d7b7 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbc4c04e si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd74399e si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1809131 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5979038 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc98ea1ee si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb89f0e6 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd08d47ec si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd40f023a si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6fa2d57 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc8df774 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3102265 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe67f3732 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf33e431e si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4b546a7 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x1d09aa7b ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xbe99020e ssbi_write -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x94fce03b stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbba419c1 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x76a63d60 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9c345bff am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa586cda0 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa6dd3afa am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x264f3b04 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbdf8497b tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf0fa2242 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x542bf8e6 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x290f9e54 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2ece6aaf alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4ba07192 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x51c6e313 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6e21ffd5 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa365dbec alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb44905f6 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d553624 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1404681b rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1643c518 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x220cfeef rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x336207d5 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3dcfa085 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4002f09a rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x41c99483 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x481406c2 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53614b9c rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6a863899 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e91debd rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8dac9c49 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa76fd0cf rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xac82c3fd rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb631235f rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb81ec94a rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbbd7f749 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbf92076f rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc820aee8 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe3295437 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe58e34aa rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf7a6d600 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfd8b9cd3 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x066633f7 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0e7cb074 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x48ff39a1 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x77476c26 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x99fae911 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa041c003 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbd671403 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbeb653aa rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd2327cb9 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd4f3e983 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe639a648 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf45906b0 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb1aee0b rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x438f4845 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x772980bb cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa861d6a4 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd4eb0a2b 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 0x2f8d8a56 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x527426fc enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x87b03f8a enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa591a3f9 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa7325bd0 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc38ffeb7 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe39b39b9 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xefe8e1af enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1e307fd9 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5758691a lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c4f5d6d lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc61c7ab3 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd2cbb61e lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeb23e51c lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf49903a7 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xff6a913b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5b5fa797 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x70275b75 st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x819cd521 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xaa17d59a dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xaaf0a2fc dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x0a84de22 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x22379e01 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x26fd091a 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 0x74420608 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7ce62ce3 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x96d6cfa5 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9ad3d721 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa01de0d2 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbaf6c208 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc6c336bf tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xeec186d5 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x088b1483 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x37a2316b cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcabc14fd cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2836a39f cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5664e84f cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdbcf6c19 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb9f1c518 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x73fd21ef cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdc50b041 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf16c1d25 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x8d8e572c hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xefbfc56e hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5f5a0e03 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xcec9421a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x798d1a65 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x882e4c19 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xcb332b6e brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xd8bfe96e denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xb0b26475 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x22610611 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8c965751 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x05fe658f ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x123ff1e8 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2dea70c8 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 0x4a807553 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4fe75bea ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5519700f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5999e884 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5ac631e5 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ad0f74e ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x833143bc ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x83cbb780 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x849fa0d1 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9e482e8b ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc1444e74 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x059e2c17 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x65dc7a3d mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7055549b devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7832a695 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x88e49fee mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9a79ca4a mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb0a0061c devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbb9d5446 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd235def6 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd26bee45 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdde61543 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe4b95726 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xefced1db mux_control_select -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5fb16b13 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa0cf3eed devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x486e7fd1 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x53291a90 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9ae4b377 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa144d2b6 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe5d8c2a0 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfd874dfa c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3ce50fa9 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbf55ecce unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd50b35cf alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xde9b65e6 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06ce114e can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cef6e4b safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0f4e8f5d alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19a84f94 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x260fc37e can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x320d98d5 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x335cefe9 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67392418 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x68eefc68 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x702be9e7 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x727686e7 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x767cbacf alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7dce96c6 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88f698db alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9270df35 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4b61929 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0d8978e can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbbb7ceb6 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc63c414 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5fc09ff can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd50a09e5 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe161499e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe1f1509c can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe616be9e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6c3cc8d can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe9bba4b8 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed4a4da2 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1332a97b m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x79c0acc3 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8422ee3e m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x94758590 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9a43dfc8 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9f70c037 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeab94246 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf8a0eb74 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2bdf2a63 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x69f9e78e free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa0c0136e unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb37fde7c register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x26feca91 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x089c64bc ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2ad2f183 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2f3fb57c ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x366dea02 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x41b1f58b ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x46f677d6 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5fdd6330 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x60a3c2bb ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x71f80853 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x852309e5 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8dbdcec5 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd01e36ed ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd0dfca17 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe4d8ef66 ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf1ffe820 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf5e7c2ba ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf8a9fe3a ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0d2c4a5a rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x11114f22 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2db566e9 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3af04247 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3e2e97fe rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x44f0c3ed rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4d3961ea rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5b29f5a5 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5f3a1d9b rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6173e590 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6948bba9 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x92d51804 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9b1e3a11 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd8679891 rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb5732fa rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe3f3970e rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x951fa6bf arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x95f36240 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018bff64 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0228b4d0 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x036765a4 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x048b218c mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d4afa8 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08555ee4 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08c94a24 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ca85720 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117c599a mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1827c10f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c5318bc mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1de193df mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f3e728e mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25b75b1e mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26b85df7 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29612ce6 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29b978a3 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3ad846 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a9dcf51 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1413d5 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dd60570 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fa6a2e4 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303e8b3e mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ff4474 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34c3126e mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f57e04 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x352e32f9 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x352e3d8b mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36637e74 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379ae391 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a837eb5 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be3e75a mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c8276f1 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c927786 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e9b43b3 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fad1f4c mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40946d4e mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413c8a73 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x439561f1 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446a93b8 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4571bb97 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a9962cf mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4efd92e4 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5051741a mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e44a44 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56413db8 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5677b0cf mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56b9a091 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5909269d mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b2a9823 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea8cb42 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60f002bf mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x617a3f4f mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61f51b8b mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x633fed67 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64816e3e mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65161658 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a1d6764 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b048b09 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc1b752 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1b2d14 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70018716 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71c6bef4 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72913300 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734ab800 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7452bdcd mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7479b3c9 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80757472 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81813ab0 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x821dc646 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c90210 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b17b37b mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c90085e mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e16da32 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e613db4 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f13e2fe mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x908d7685 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x920cec18 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98be79e6 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b92531c mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c6ee86d mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9defe5ce mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1113c46 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa276f986 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3f37957 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa1cd322 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab466747 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacac19b4 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafd28ac2 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33555e7 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb536aa31 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb69250c3 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb69c0ffe mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb754980f mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a55039 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb95d8abb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc194d63 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe67b755 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc577a8b4 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc72d349a mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87d4498 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0cf5230 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a425d6 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3766d39 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd49ee309 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ff3ff7 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5ab591a mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6cf53fb mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd807c3ef mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd919eaa1 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb36c75 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde7f733f mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde97eed9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdec220b0 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe089f1df mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe620f6ba mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe689ac18 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6a880d6 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe778f879 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f797ed mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef77aea8 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32b0466 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9a2f78f mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf6fcfb mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcfae5a9 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeb481bb mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x024c3c40 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039612ff mlx5_core_res_put -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 0x108d2725 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f012fe mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x133ed49c mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16521708 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17beb696 mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17f59a12 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184ce3ce mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b40faee mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f5af365 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x260691b0 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e75f13 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5a1c78 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eec0834 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x315adf50 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x390adf4a mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39732849 mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e1c4733 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e211f4a mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e2b07e3 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e979739 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a5960d mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ba50eeb mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51b728e4 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5498e2ff mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c0bbfb mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55e5d23e mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571374dc mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5868541b mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d558bba mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x602499bd mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60d23b1a mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63b7139d mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6639e73f mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d9ca5d mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fabca5 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x688fe0e7 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b5e4642 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8bad1f mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7692eee9 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79596da8 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef7afad mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb6349a mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x816b0a42 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82fb99c4 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x885e90ed mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b21607b mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96330f0c mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96ce3cd4 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9791217f mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1160d6 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9caa5c90 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa08ff808 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1be3900 mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3404b8e mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6de24a5 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa9271d0 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadb60606 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae506970 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaee113df mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8840e0d mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f423c5 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8fcc6b9 mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2197651 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc31d0a80 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3e151f4 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f6217d mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b219c5 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9892c8d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f1842a mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc25b4fb mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd0f7f14 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd58891c mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1b107b4 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6d29d23 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe393ac6e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7072e83 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7d26362 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe95382e1 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb6d665d mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee9d4f87 mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a82c2b mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2323ef4 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5c49667 mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf820d9a2 mlx5_eswitch_mode -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 0xea3fb80a devm_regmap_init_encx24j600 -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 0x30809c63 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x58d2446b 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 0xc235a750 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xce163ea0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x148d9ede stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x42635815 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x49baf3e7 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9966da95 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcf056723 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2cec4d8e w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8d392f91 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa13539d5 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb7acc31f w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x720326dd geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6d99ad7d ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xae80dca9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaf6e8770 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdeaa1bff ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xefd7fcba ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x487f144e macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x617369a2 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6a0a162e macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x79485796 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xc2442e70 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe6e374a6 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0fab4e32 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x213fe69b bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x214b1fc6 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36396a46 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49c90dbc bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50fb4e7b bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x596cc7d2 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63a15c5d bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7baefe44 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87fde44a bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a39b0c0 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cac6a50 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98f8f31e bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d855bc1 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccbbd09c bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xceee3f77 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda9e6322 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xded4bf74 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xe544e0bc mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x8d61c565 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0ef695b4 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x72e02b81 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9d4d735e phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb810772b phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x1b0c4feb tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x4d40a0c1 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x76850bc1 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x78834399 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x78ef827f tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xba8ea6bc tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xd229cc4d tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xedc0f6f5 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xf2e129af tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x348f053f usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x698a493d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xacab1849 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb6eeb3bb usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd90e7bd8 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1621e32e cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3186a778 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x57347480 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x91327017 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb323070b cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb332c118 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb35861ef cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7b6b36f cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xeb771ad4 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x008c8bb8 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2af3b6c5 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5bf9b1e4 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x81b4ffde generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8423426d rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc0c2b740 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00f9b60e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1573b6ce usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17ca9a48 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19137db3 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1cd73bce usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22a237ac usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x281cecf7 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28b49c9e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bff84ca usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2fce0186 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b98ec91 usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d9e6d9e usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a77516b usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6da35464 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dc5747d usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b332f8d usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9126d008 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8e1678a usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0822faf usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1d0f8c8 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8ab1aaa usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbcc99043 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcce870fe usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd81d12e usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4257567 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd58063ed usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0070e8c usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe08c33cb usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3d2ff89 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeade348a usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf714ecf9 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf849acac usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfea514f1 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x34c0060c vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x80efb01c vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb8453a93 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xec58474a vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0087c855 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07c73714 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0dc8dccd i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x24d4f747 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x26870c19 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x28883cc8 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3ce0b154 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4f131039 i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x62fa1fc4 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7dccc233 i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x804fc37c i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x89a41974 i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8db7c9ad i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb21d6f9f i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc67ca6ad i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcbb36658 i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1f82baa9 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58e9f229 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e240cfa _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85b11344 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc3ad6f il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf14d8022 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x017916be iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0189c36f iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0383b5c9 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03e6cdbf iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0b0b3533 iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f6342c2 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11413b1a iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x134befcb iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a49bb38 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20dc651b iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29e839fa iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e60c030 iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36d31903 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d3f05cb __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e073687 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4208b15a iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4288915f iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44b6743e iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5174ce10 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x571ebd69 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x590f04ef iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b82c6e2 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6dce9cc2 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f9be266 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x774ab5ab __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x801808f0 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80fe6181 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x823f1142 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x837a6504 iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84c7965b iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a18afdf iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b44b08a iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c3db0c7 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8fc4b115 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x905c1dc4 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x928bff86 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x931ca954 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b6ca4f1 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa12224bd iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa716c5ba iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa7bd783 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb2ce1e33 _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb8aa0dc iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdf9b984 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe114519 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2c151c8 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc05c596 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf096b88 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdfcacbd0 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3d6678e iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7b0a105 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7dd7445 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee4e0d32 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf098d212 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8d7b37f iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x27dcaf9d p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2b4dc343 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3eeb149a p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x67a9b098 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x68e6145b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x915e7868 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9494fd50 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa41ed26a p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbe1d33d6 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0bbd6d04 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x13cad629 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x143a99ec lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x29fb1b09 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3e9e5de3 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50ce9817 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x61125949 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x628ccee7 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x65f597e1 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8df69d68 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x98be34f9 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa042125b lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xafa5958b lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe7bd4e2b lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4603ccf lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff566375 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x04b05e1c __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x931713bf lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9ec3eddb lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaf347b0b lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc492a4e0 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcad8898b lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf98c8ea0 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfd1a1422 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e3e6a5e mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x36faf10a mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43b62b21 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48578a4f mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b553ce2 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6563442c mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x73abed3a mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80b404f5 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x84820d41 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8ed1ed44 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x96a529bb mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa3405ca5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac096b3f mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xadc37cbf mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb84f4bc1 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc4553a4 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc0d44edd mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc40ac1d1 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce8c3448 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xddc9e724 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe2e04441 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5e737dd mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf4a495a6 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8712fe7 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x002badf5 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04505b51 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06a5f8d6 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c79808f mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ea7969a mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x207d0084 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x219cfd7e mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x260e58ee mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x263f7237 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x272cb92d mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2892744d mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2de21e05 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x361a2379 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36552e7f mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36b50e8c mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37e4a92b mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b130989 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b2f01e4 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b8a782f mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe29b81 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43fb6345 mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55779d11 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ea4d812 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62803f4b mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62aa20af mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62b9488c mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74a26229 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ab09e6e mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b62421e mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x938523b2 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98350b35 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bf38b5c mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa24465bc mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4b97636 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5df736f mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb02697d8 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbaa879de mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf73b472 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc413dd20 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6933cc8 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc77921f8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8bec85b mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbd0d47b mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3687056 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8fd5174 mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb415c45 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2175775 mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4b9ca3d mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9c73ecd mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecdde681 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed120c98 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf34a17e5 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3ab09b0 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x10f7c14d mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4baa501f mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x60035ae3 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9af6eacc mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9c0e7760 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb42258ed mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc78cb874 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd6ee5546 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4b520b0e mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x57b1920c mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x64777e9a mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6b5949cc mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x98fe8cd6 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xacce4014 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd278ddd8 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03030ef1 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07420acd mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cd4d350 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f67e2f6 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19a5c9b5 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19bd03e0 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1eaca457 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x218d01cb mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24a58e1c mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25ad529e mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2702eed8 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28392cbf mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cf3b9a6 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ff92e97 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3280fa68 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x391070f6 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3af105e1 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d354360 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e77611f mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3eccee58 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x418c1802 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46abe1a5 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4af95c65 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e78e725 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5841e15e mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d08d96e mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ffee77a mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60e1edf8 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63368dae mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x657ff732 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6659656c mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x672905e0 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x793a5bb4 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c0f7fb6 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d417af8 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d89a045 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b850e24 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa310f8da mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8e974c7 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac0fa48e mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3debe49 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb667be74 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb97f7af3 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9f05e9a mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe067261 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbec89f25 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf50d971 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc523f9e8 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd4bf56a mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6390902 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9d0b8b7 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda74291a mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe47ecf1f mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5868d9b mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea1160e5 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0f30599 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6310716 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf65a14c9 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf777fb13 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf93edb0e mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa8c5d7b mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb05f6cf mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe7d0649 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x74b7e721 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x930e8fbc mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa101a3cc mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xab6a1661 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe13089b5 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe5047ddf mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf8a1b17d mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x015ae01e mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0bf218e1 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0fe75f94 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x20a71619 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x259759ac mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x341d2bf6 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3e4397a3 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60068166 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b5f1bff mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6bee779a mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6ec391a9 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x758ab858 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x82bd2ef1 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9e44a143 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9fe1f725 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe86ff959 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeaf40321 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbb13ae6 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc4431e6 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0a9ce562 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0b43add1 qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9689cd67 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x97d5a9e7 qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa5734a86 qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa5b85881 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb52c7881 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbf0626be qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd0444f0f qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08dd522f rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d64e969 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e59fe92 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1281b80a rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x158b3baa rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b123b3a rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c2ba14d rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2cb469e1 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e2e48c3 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x407e5b66 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46b4be16 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5490d2a2 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ae46978 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c8c480c rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d07bf85 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d25f16b rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5fcfe354 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60e99de8 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6dc5a4cf rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x70132367 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x70a41ff1 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x70c646f1 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7412f55d rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74af7bff rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c6c969b rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a63387e rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x947a08b3 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a80ddee rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b991151 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3c99671 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa61e5d0f rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3f5fc87 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb65acdbb rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd1d8750 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd25c7ff1 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda1e3a5e rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc3fb278 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe55fde8d rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe732b5a7 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf42bd3e0 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9062f41 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfafb50ec rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff341a5a rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffd0a2af rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x025d118a rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0826216d rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f980ee3 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2e6cd849 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f8f3897 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d08e634 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x47b3b1e0 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4eeea668 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67029a40 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e74eb75 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92fabab0 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8aa1118 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc84ae338 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb93ece3 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xeab5b01c rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd9e9781 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00717169 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0345b305 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04c41e5f rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x059e5c95 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ae456e6 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b1cd756 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1dcc5ccb rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x241faf5c rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x255c5dc4 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c16ea06 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ed6bb66 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32323d8c rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c7883c8 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44604ffc rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4550c354 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x481262db rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50940200 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x579e7148 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5acbc73d rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6444bfbe rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7199a4cb rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b7016e3 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90dc2cdb rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9438d148 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x97fbd35a rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98308808 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d94f89c rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e71da28 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1b85f34 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7a78e63 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab6be7d0 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xabfa9a84 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7ee486e rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9667ed1 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd7d83d6 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbfa66e56 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc103bafc rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc27f6044 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc802e128 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf89ee37 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfa1b3c0 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1880d4d rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe810d934 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeca5240f rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf30bb38d rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfec286d0 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0e96e572 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1e53c098 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x660bf159 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x74ad70b5 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbe88096a rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x236a4291 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xca7b2e4e rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd291bdb8 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd4487b3c rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x11294be1 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x33ecf277 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x39d0ddee rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3b6382e3 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3d5627c2 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x586c8363 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6353b78e rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7b993b06 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa5effab4 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9b00c37 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcd3cc6ed rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd8c07f56 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe8826558 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeac1705b rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8d86c94 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfef82935 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x158160bf dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x328918ce dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf628aaea dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffbea317 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14284628 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1546081a rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f0d0e8d rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21e0c9a0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2aad5adc rtl8723_phy_rf_serial_read -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 0x43cc097b rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4885e787 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ebd2aaa rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x600dbb59 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x686e7600 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x790ecfc9 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7992a4b3 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9612a818 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x989f769a rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fe50558 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa8603eae rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadbbdcfe rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaea55a41 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb116e93c rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf9560e9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf974a97 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9b05904 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5694729 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6a06427 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0136fd7 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c5dedc7 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f3544c8 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x106e84c2 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15bdd700 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d32e040 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b7be14 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6085d312 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67d7d54c rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c856826 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e6536b7 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74f36b75 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84a4fdb8 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x858867ee 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 0xa158379d rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa30bf378 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6b3f91b rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca10d9cc rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf6c62ad rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd09f068b rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1502bd2 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe301727c rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9ac5863 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf47ffe23 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc24539b rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfcb74f49 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 0x11693d3e rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5cfc5570 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x84d6aa8d rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa2cb2b56 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc74de553 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5ca5fdef cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x66de9bbf cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7e21bf35 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe12dc823 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2048d92a wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x32df490d wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe90d7da4 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03e11049 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08835320 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a455910 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11cab27b wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19a145ee wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b798cb6 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fdf439e 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 0x26de8014 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ab4669f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30f11e9a wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31840039 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c956079 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e06316c wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e55e7b8 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45d4edf0 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56751f73 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d9adbb4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x683ee432 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a5f7191 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b2ecbc9 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x788d474e wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80f09263 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8405b484 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9714b628 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x994b9296 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d4cacf0 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9efd9a85 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa54b32b5 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa65b2cd3 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa689fb2e wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa6da2fd wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac595892 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd31a37c7 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3b95fc3 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9e6dd86 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdeaf8f7a wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe780fbbe wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8cd9286 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea6dd2bd wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec032f7a wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf067eafc wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf571310b wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfde721ee wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb8a3f8ce nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdf608ee5 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe9358524 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf676cecf nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4a70d3c3 pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5fa6ec76 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x73860994 pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8b4e6a90 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4f9791ba st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5fae763f st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x68fc1616 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x71f021df st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x76f0aadb st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc50f7d5a st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc8dafd25 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcbe5f631 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7a3f7c16 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7d30e43e st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc9471ce3 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x04b3cf23 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x80d02a25 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x864d1add ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2b627e01 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xcbdc6c2f async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0042b592 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00455015 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05093dc0 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x058110c9 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bd85013 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x123eac38 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19876274 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a1cc66c nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20944603 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35655ee7 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a8f71c0 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c14c54c nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41a95ec5 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51358baf __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53f85a51 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x614e49ab nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x697e8623 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ea99305 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a937249 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e96c8c6 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85fb7051 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e0bbd99 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f6b65ec nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x903ae672 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fc37a57 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab8aa1ae nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabc5b155 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb047b6ba nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb15b96a4 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2357a1d nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4cf30e1 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc98f4d97 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd555c90e nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6809a6f nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8b3109e nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde8cb289 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8b47ab4 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb9c0c94 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff6f6324 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01085a2c nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x164099aa nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4690e8f1 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5fb6be4c nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x78e7b42e nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x80eaad1b nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x999b6ecf nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbe55ce87 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf608d49 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd6345438 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xda683e18 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe12cc801 __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfba75130 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x11c9bcfb nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x06e35e67 nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0e69a811 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x189c99f0 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2e8623fe nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x62cc975f nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6d820c41 nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd5c1a6b2 nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe515f16a nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe8f7d132 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfba8ebe9 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff154fbf nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -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 0xcbfa8cde nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x05c6e982 switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x112dda6e ufs_qcom_phy_generic_probe -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x2486075d ufs_qcom_phy_power_on -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x47b9f223 ufs_qcom_phy_power_off -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x68d61fe3 get_ufs_qcom_phy -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xaa974723 ufs_qcom_phy_save_controller_version -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xc3e17ae2 ufs_qcom_phy_init_vregulators -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xd5e549f5 ufs_qcom_phy_calibrate -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xe613f557 ufs_qcom_phy_set_tx_lane_enable -EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xf9f17e14 ufs_qcom_phy_init_clks -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x03efb6dc omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7ed0c0ed omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xcc1c920c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x2d9d4984 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5507e7ef devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8e383794 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc1efc526 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0be0146a bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x1140c3c3 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xcc93faab bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x52905c43 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc385dda4 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf3d39285 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0f3a4a14 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8b6c10a0 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa9787c57 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbaf67945 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf5246d5f mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0b30c29a wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3478f633 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53b5ef98 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xabd928d0 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcb57a1ff wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf822a11a wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x5fc4af87 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0a870d0d qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x298e302a qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4d59f8da qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5eedc558 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x95b8215a qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb3b5b373 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf63a5641 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x20c862fc qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x551af31a qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9845aaad qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9d817e57 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd8847722 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x09268181 qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xe9cd9d9a qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x51e0fad5 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02629140 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x040d7dfe cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05136ddb cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11bbcef8 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23e21c22 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x249f067f cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fe7d84a cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35d07474 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39d803f5 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ba8d394 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x438ec22c cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4932bb67 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bd9a5fa cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f6d901d cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x510cba8f cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55cae0be cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ae78bae cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c8cbccb cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x628c8aa2 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66377951 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x719aa9f5 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71b83f05 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c808d8c cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x865520d5 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86c166f3 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8eafb26a cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97015b89 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a875f54 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d4d206d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d5899d1 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa053cf52 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa11b21ef cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3300321 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb87751d4 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd65660c cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc44444d6 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc65b4a0a cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc1399ec cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd218f9b1 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7f5d123 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8ee98f8 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe918dbcc cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebeeb7c0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef5b25d0 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0336df55 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ddc2a2c fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a53a91a fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ea210b8 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54eefce7 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5bfa277d fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5da128da fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ba45c00 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e89a9e5 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80543312 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae76e982 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb04e17df fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb951afb fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcc29f335 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2ed4d66 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd261f3b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x28e7cf0c fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xc25ebf26 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d6030cb iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d48f3f4 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb74164bb iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbc2c80a3 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcc453416 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe9ffcf68 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfb8612bf iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x559c2254 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0029dc12 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0091f5c0 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05a2b3ae iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13171af2 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x197da4f3 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b21b85e iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ac09694 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40f89251 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45b2702b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x527e417f iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52ecd046 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d65af0f iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7087b3ee iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x773abe35 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e61a2ce iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8149f052 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8328c66a iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85bb7d37 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89b18ec4 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x935d4625 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9530ee96 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98e9753b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c019e17 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d3b3159 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac9f8ca2 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb33e44d6 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4f78eff iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb689cc28 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb91a9038 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7f6b723 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca87e80a iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd15c7df7 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3eb3b05 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xded67b7c iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe11f6858 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3cd48ff iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5ae953a iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7041759 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9e4f5a1 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeec3f766 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf00e81c7 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf65fc872 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22236c78 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2352b388 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3358110b iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x469882bd iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48525cd7 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4c4182f1 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ed136f8 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fd88543 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72986f8b iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c240ca1 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86682986 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c9510b6 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9484bde1 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97e27a51 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc57ad935 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb76ab69 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa8f92b9 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16413968 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a03d70d sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a552c71 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2feceb4b sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3dd7f878 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4295cca3 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4830d54c sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x491e462a sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68307e2f sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e1b73c3 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78780250 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80fe0b8a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83bb9d2e sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x894124f1 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c5ab8c0 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x910cf5e6 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2c304ce sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4928bca sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc692cf32 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd27c556f sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd583556b dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe42a5a73 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecd3b145 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf86f6d08 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03ae794e iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e039160 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1014dbec iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18de5382 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x191ccaad __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23c55b60 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2898bdac iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31d76195 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c172a3d iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d4d4b07 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d791a1e iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ad815fa iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f247db8 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fdb369e iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d9d2b2c __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6520fec2 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69150dcf iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6acfc4cf iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c1724f4 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77291676 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77db40d8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b694a5c iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd7d6be __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x853df7c3 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85a2bcc2 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x871c4086 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bffecef iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c164e8a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa53fcb23 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8d0b885 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4537827 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f40dcd iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb4885b9 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2b10325 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd10f0acb iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd11085c1 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd65ade59 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9727413 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd501cae iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea72642d iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec0fd5ba iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec4b2359 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf490006c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf944fdec iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1fc779c8 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3d836aec sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcacc866a sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe4700c33 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x24495ae8 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 0x06d855e1 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x130030bd srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x35562177 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3a4cb51b srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7af48bf9 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80c1c451 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0ff98ae6 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1bab2f95 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x344b14be ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3c418641 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x50a2539f ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6bdbbe6b ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa526dc09 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb046f623 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdfc12ce6 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x18c5bbe5 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4ba298b2 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x632d63b8 ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x76ea6b12 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7d6ea70a ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7db4154c ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe132e8ea ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x542d4d3d siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa5d0bffe siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xba81a2ef __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc8f96a2c siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xde128dc3 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf3a795c7 siox_device_synced -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x02967919 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x04cea45b slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a22eca8 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e0d56a5 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16e647cb slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f357928 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x26de7f5c slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x28917fe0 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x347fd4ae __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58a1c394 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x68335b22 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x69feca84 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x825d5e09 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e5e9bb7 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f493331 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa053cb53 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xabae3d14 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb5596770 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc7a779ba slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5a4a5ab slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd66e6da2 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde5ec3dc of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe10e06e0 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf8931f57 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf976dae9 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd775e4d slim_ctrl_clk_pause -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 0xa2fd0fa0 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x164faffa aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x33789849 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7f85f0a2 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xa7f39d4b apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x03e8daa9 qcom_llcc_probe -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x06285798 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x09afc16e llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x14f99b76 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x2027e82d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x30a58046 qcom_llcc_remove -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x62ff6e92 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xdffee709 llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x5633428c qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6c964f3a qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xb4cd73a7 qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xdf05ff75 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6ede5004 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x78bd69e0 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9cc1a599 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x21229b5f spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2fb10839 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x75699c53 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9f6148dc spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xab0f2fa8 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf4063c1e spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0ba4615a dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb7de9e2e dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbac22218 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbbe248a6 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbf029ae6 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6debfbc2 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc40333f3 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc5065f2f spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11c9b59f spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x25b553aa spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x28e119f7 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3af193ef spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b4cf1db spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7130d011 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75cb5874 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8aca9a8e spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8bbe7a53 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8d57041f spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95bef4e7 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x997343b7 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf1cd370 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb893ca78 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe086e12 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde103eef spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe36fbd2e spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeaeccc51 spmi_register_read -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x18c7cb30 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0755d193 comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x12388fcd comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2801caf7 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2b17b595 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2cbb8c15 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30e11c34 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34aff68e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3597e611 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x362c816b comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x474d4110 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bc6c254 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5152701e comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x59bcc4fd comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5b76979b comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f97217b comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60624a79 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x66c85a04 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x70954235 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7dd75fd2 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x884dafb5 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dbab417 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa76a66ad comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xadd6033d comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1c409bd comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb4517e64 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb62e88fc comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbd197710 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0745791 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0c3570a comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc2028e88 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc77b865a comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe15a052e comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe277f5c7 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe2d852af comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe3f81ffc comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec31423e comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0438e36d comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x23191355 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6280df84 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x82fbad64 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa187e8d0 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb02297d8 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc49ef09a comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc51acfa8 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x026dfbf3 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x04b8ce6a comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2656b029 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7dd7ee39 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x96755ebe comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xaf840560 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xaec19029 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x58d83d76 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x9d7e160a amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x175f6b9a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x07f26af2 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x15c0eb7f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x314a8286 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3dcca711 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c1faa79 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4ffbb25a comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5f968fb9 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x683dcb03 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x837e8a03 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x84bd0eee comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8979ea4a comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9bd3e92b comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa551a57c comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x589003d5 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa959b07b subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd7e5cbe2 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x7044e546 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0adf4f3d mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b05994c mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x10fee699 mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1315da22 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1c86ddcb mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x244af7fd mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43bc0cb1 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x49224135 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x524afd44 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x62cc3e31 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64c017d7 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9a70a63 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xad3af129 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdacbd76c mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe6862f4d mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xee0f5123 mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x196d25e1 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xae603b42 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0ea68410 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1df75f78 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3ab12600 ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4f3362e3 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5a281f73 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x604aebba ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x73207171 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x76f3e424 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x85f6eff5 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x926ab2e6 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9f557ed3 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa44a0919 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd6ed0e74 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdd2d992c ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe4d27b2d ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe6285eb2 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x58fd9cca ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5dfc5cf6 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa4d5e766 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xbb48322b ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc3a45e69 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf80269bc ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x38c35597 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4fb499eb comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5514a6da comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x73059fa6 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9cc2b564 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa18fdce2 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfdef6ff7 comedi_close -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1efbb53b anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x26ebfc8b anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2b9828a6 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x531a141a anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5aa7c69c anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x61a03885 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7770c194 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x90f6c24f anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa8dbb3c7 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb40127c8 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf7e0a4d5 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfc253f79 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfdc239b6 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x011956e3 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc6ad90c0 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcde8bbdc fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xdc0b2a3e fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x18b8573e gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x31938bda gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3f076064 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6346e515 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x646b899a gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6a381577 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb5dfa985 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb5e8fa6f gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xce164844 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xce211bae gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe62ab20b gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe8096678 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xecc30156 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1f0984c7 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2931bd01 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x31a76f98 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3fbf8877 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x597e1c64 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8395e2c8 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x97b5f586 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9cdca2c3 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7fda484 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xabea1617 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5e27a6b gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcbff48de gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfe539e25 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x34096190 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xcdba63a8 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb17d648e gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xc242f537 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x8614ca5d gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xdfb7108a gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x839c3943 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0470f63e gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x155ace21 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3cf7309f gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x410c3135 gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x432082d7 gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x6460313f gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7bcab4e1 gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8f4e9498 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xaab539dc gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xba63fb42 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc532aca4 gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc82c7c8e gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xcce76fec gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd0f808dc gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe990b7d4 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf4f4effb gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf76774c2 gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x177b884e amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x20b150b5 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x20e63172 amvdec_add_ts_reorder -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x23775513 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3c096b4f amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x56a58896 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5799f31a amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5c5d3423 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6b07e2ae amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7dcdcb42 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb29460fa amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb82e7c77 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbbd0569f amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc8bc0864 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xca20f76e amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe5db3b62 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x17a978dc channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x20435358 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2f0e3ff4 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x37cf955f most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4f94c24c most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6a08cab1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6c91eec4 most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x840f79ff most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x9c72a07a most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xa88447de most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xbf75e209 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc076f838 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd1022e73 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xef7862b9 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0bcfa0a2 synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1c71ab71 spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e7e21d7 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x362501ad spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x47258d02 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x49b09417 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6af90e50 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6dd8452f spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8181ceec speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa617f4f8 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa845033a spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaa50db44 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xab111213 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb86033e7 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xba75f1b6 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbef8abb0 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc3d1af10 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd7d4a416 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf871912b spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x392502d7 i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x64a09ab4 i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x92bd1e30 i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x5a753d43 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x764b786f umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x7d310a3b __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xac0080ce umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb31bc02f umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xce16b13a umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xd54c19ab umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xdd2d4d7c umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0227a3f7 uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0466cef5 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x04fb548c uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x05d26c95 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0952e767 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0a493ec9 uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x18603344 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1c570907 uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2105d0de uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x24da5931 uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2585901a uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2a819a5f uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3690eae7 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3798978a uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3e2327f8 uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x44d998f4 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x55243ea3 uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x58f1dd15 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x593db3f9 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5e4bc088 __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5fcb8fc8 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x64a7055f uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6813579b uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6bf067d7 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7e7fbef5 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8503d565 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9a545257 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa14d6fd5 uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xaaeed178 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb1a93f60 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb6a0b7ea uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbc65f1a5 uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc30f8e51 uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc33e7cd8 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc573d3ef uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd2148058 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd6008e13 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdefdfba9 uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xece1974c uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf017bc49 uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf07286e8 uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x33c6d9b5 whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0aa4b64b wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5be9204c wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5ec010d9 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x93fbf0c5 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc0ba55b0 chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd33336c9 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd6b5e9e7 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x1fb4f75d wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x40e6089e wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x698ab2b7 __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc7a0f3f1 rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xd3cd3fbe wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xdf85238d wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf73bc32a rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x48d75826 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5c4db6e7 wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7369a437 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7e033a43 __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7f1c26d7 wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8a673398 wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x94496baa wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x95565b11 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa034c798 wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xd07b9686 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe168678a wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xeb1f1211 wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xefd3edd4 wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf7fa5bf8 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/tee/tee 0x108d6206 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x39c9b574 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x40157a39 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x407e805a tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x40ad8a87 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x414aab93 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x43ac17e8 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4f9fcce2 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x52e7eb02 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x58c832f9 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x610a29d9 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x67d5bfda tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x74837fd5 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x768c491e tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x76a2e7b2 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7b5d7408 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7df87763 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa2d00f5a tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb11154a1 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb78a7c6f tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb962eed1 tee_shm_priv_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd646ce0d tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe14e2cbf tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfbd28700 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfe51b327 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x3e97d48e uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xaa911006 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe59fe4cf uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x089e7a19 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8f3601e5 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x878805a7 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x99727fbb hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbe44d128 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4c5ee658 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6d6c106e imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc62279d1 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xca4ccbc3 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xed402f6a imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x034b9aaa ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1c7a4097 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x318fe2af ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x71ee02cb ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x86fe959f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf70a7b2a ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2096ff74 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e71cac9 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x553421f5 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8a0ef77a u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaecfec92 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdc359ba7 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x08d23f59 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x315e9027 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5cdf6faa gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x951f8911 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1ef8e3b gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa801f069 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xafa42459 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb20df958 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb9ddf66c gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd20b2ff gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3c75cd6 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcac441c9 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe19f4224 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe75ef9d0 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfc019983 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x44649537 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 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 0xbe9964ce gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd3edc0ef gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3df5db03 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4d17a1d0 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd26d6dcd ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x01b69874 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x082351fd fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09d3e169 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ad9a3e0 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x15582853 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b06d50c fsg_store_removable -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 0x2aabc136 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3451afca 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 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x653622ec fsg_show_removable -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 0x7bdad49f 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 0x93a1cc24 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 0x98acd53d fsg_store_cdrom -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 0xb7efa7fe fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbc10eb8a fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3322d83 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3e64007 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf6367e83 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x178b585b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21ad88ba rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x28454b60 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a503268 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5787aca4 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6d5b737c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7834e913 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9339aca4 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x958b57b9 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9a3ef7fd rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa75d602c rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa8478c23 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc266b787 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd16797ab rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd3fe9f55 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x020ab274 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x192f5fad usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2199fbdf usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21a63223 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27bf600a usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28eb38cf usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ee802a3 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31e21752 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37dbf4aa usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49d44174 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51a79601 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x602b6e29 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x620e4415 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x709a1b00 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79270b17 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a9afdf8 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b26326d usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8be0afa9 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f12c86e usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x990ab7c1 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1118682 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac7fd6df usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb36ffc4c usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce5d77bb usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd461e9a5 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4a57726 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc54bcf9 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf5d5ffd usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7a5ab91 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfabce90c usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd54cd3a usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdef8b36 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x006ea090 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0a32bee2 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1aa2cf69 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x37e3fc9c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x448ee2bc 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 0x6160130f udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x962e441f udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa360d5e4 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdd8ef429 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xce6d7f83 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfbc86ba2 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2cf6b27b usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x340bd3a8 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a102107 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x633881d4 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc663b799 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcaff714b usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xda014d3e usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe345c58e usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe439a21b usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x5733e353 am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x75ee5ca5 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xca3ff808 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a527b3d usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2546705b usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b90c6b9 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c43ef71 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x587c8f9c usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5a0c099a usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x677ebc4c usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a32e061 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7cce9fd2 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x851a3594 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x958da476 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa3d523eb usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0115d43 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc19289d0 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcda223b4 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe81a5ddf usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed668abe usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xefad245e usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf26300eb usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5b77c02 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf863c253 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x85e30dff dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xbac9bff3 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xe3f1e04d tcpci_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 0xd1f0b34f tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d31d4fa typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a9d51be __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24ea960e typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x25f0272f typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28418fb3 typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2efbe2fc typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35aff6a0 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36265f8d typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41cf7581 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51846d7f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63c4b5e5 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63d1913d typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6966c4fd typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71ac683e typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7cd1194d typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d949bde typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8dc282ba typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e6526b9 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa148917e typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xacced4f0 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae19d138 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb415b906 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb6f2ed4 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd9860b9 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0b3e3e3 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1f180b1 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd50492e5 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd90996ce typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb5efdc6 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7f14039 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfab97556 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe087510 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x28863a2f ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4f49d1ed ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x52641eac ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d77830a ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x74bf9330 ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0b7dbaab usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1eb5cbf7 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23956729 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ec272ea dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x42d707eb usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x54a97ccf usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x579e2e14 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6e8ab4d0 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7540897f usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8bd62960 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9bd11655 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaa970908 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2e17a4f 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 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x7789e8f6 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x284171e2 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb61a0751 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xda437ff7 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf893eabc vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x03a85a57 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d73565b vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7e79bc26 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d25d3ef vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d15e400 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcabbad39 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xce2b8d54 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe11c49e2 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe495a758 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x38024e96 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xa62022fc vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x088307a7 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x091ed7b9 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e8e7536 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x140c45aa vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20590794 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25087501 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28e91f50 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29b5090c vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35af1763 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3dbe7dea vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4443e5ec vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x526f0cd7 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56689ab3 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c058217 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5dcc4b56 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e8b09bc vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65ab5f99 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x677173fe vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76e9718d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a258ba0 vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84ee83c2 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8adf4c76 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9118ae08 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9789c772 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa483a592 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1777752 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbec45877 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc06491b6 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc29c2254 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9c33c6e vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca786829 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5933c26 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec87d20a vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef3411e9 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf412f0bb vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5cb7660 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfac6d8dc vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb427a7d vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0dfaab83 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1e74af30 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x23acf9fb ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30289294 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8558f781 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9fe37fa4 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xea9fb1a7 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xed67e21b fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5c79e68d fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe1d14f4c fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6a2f7b39 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x89dd8234 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc0ef3133 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd0796190 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3e09ac30 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xec980382 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0decd38b w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x13fa1c12 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2f2c3145 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4968571a w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4cac3a27 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x65389bfd w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x970ab244 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x983fc239 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb1267fc6 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd0ee5c40 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf0b458ba w1_touch_bit -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9807ea66 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa09c7cba dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf276e597 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22898938 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5adbd99d nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x61b3da35 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6ef1edb2 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9f406eee lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3249d2b lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5b106cd nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x001e924c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x011a4cdd get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x060e08ce nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06714609 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08782699 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce3e2ef nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f61de72 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a23dfe nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x141694a1 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x146a0d5e nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x163bd3f5 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1894bc7a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e10007 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2b8126 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2f8629 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c6a5622 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x218511e0 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2217d5f6 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x223f52cc nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226271f9 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2400fac2 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25cb29ea nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad1a128 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b7d9393 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bcace70 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf59f83 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed660e8 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x316e7a4e nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32aa3977 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3324a573 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33992cb7 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34aeb455 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39f2a2b8 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bce6b3c nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ece569a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3edc88c0 unregister_nfs_version -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 0x41cb9398 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43bb422f nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47846ce8 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47cc538a nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e778cc nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x499e8dd1 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a2fa6d7 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf985ff nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5101cd90 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x553dbdf2 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x566826cc nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x568cd5d2 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569d46e9 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56cda357 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5758b9ca nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592447eb nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x596810ab nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c56f1c8 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dc40f85 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f33074b nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612bf341 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61824b29 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6469506e nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66692083 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67ceb2b1 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68658049 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68823a74 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68cdd656 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aff0594 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c2f80b8 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70f22b16 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72d9578a nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x761c7419 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76408928 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a840dc nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c47ac5a nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebf4ace __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822ecd22 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824198ff nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88789278 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88940736 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a0b4a64 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a10661c nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b3f2080 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c06f16e nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f07753a nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90bcca44 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90dd6e46 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990a8005 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99be26f3 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bf10c19 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9def5ffb nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa43d33ad nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4451fa6 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae63d35a nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb02f8a9d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1e093e5 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3779e15 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4c9e263 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f1555b nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c090d4 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9358c1e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe5e2371 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc04b9154 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc24cbebb nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc42c47e5 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8fc4d3f nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc29cbd1 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce8a58dd nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfe4e3b4 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0789905 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4129480 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd416f845 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5cde977 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd830501f nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9b6c21b nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda5fe791 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdac2f5c0 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdead9feb nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4a71746 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d52c4a nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6caa03d nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8367d3b nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe94fc669 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe950f39a nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1de4e6 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebb60fcf nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed80035a nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6acde97 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7b4d836 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96c1fcf nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb3d73d8 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfba261ee nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe10a87b nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfefabb6c nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x479f5e18 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x041319ea pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05f881aa nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a0ddbe0 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f4d6db4 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0faa27ac pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x113a50b2 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15e643ad pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18093c04 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b60b2ba pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e23996a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x200e435f pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2519b1e8 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x255a6bb4 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x292f37b8 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32493d29 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36751a61 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d1b7ef2 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e73f10c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ec101a6 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x403b1503 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x480672b1 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4906b972 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49fb5e71 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cd64c18 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f3a37b9 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f777819 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5205f7ed __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a96e2ab nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df5975d pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e16b52a __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f087877 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70058f04 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7499e616 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d846128 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7de4051d pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80784e78 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81562840 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ee598b nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87a645b3 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e1ada2f nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x900e1bfa nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b1d279b nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cc909ba pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0a4e876 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1892c5c nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6b655fa nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe63a35 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1e0c74a nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb36d755a pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85de48c __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad50d90 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151e45f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca011e72 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb5c5804 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccbb250c pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd02f97ef nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd25353c7 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8b19cf5 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1eca9bd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe344a7eb nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee50c64a nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef9fa1d2 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1722cb9 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2d7c45f pnfs_layout_mark_request_commit -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 0xfb107e7c pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbf1768d nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x18485480 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7342f113 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xee2dcb2d locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6329f9fb nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb55af518 nfsacl_decode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x161cd0a4 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x593cd111 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa334d3f3 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb19ad871 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb4e1ce65 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xda4e2b8e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xea771798 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1d659eda dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3ac1d437 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5ea0ac07 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7c4c4d1e dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9dd196f0 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb9c83a66 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x422d68d4 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc61a9a76 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd7740808 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfaa3c7f9 ocfs2_plock -EXPORT_SYMBOL_GPL kernel/torture 0x091fe35e torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x09806068 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x15d0b190 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x49183466 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc6670516 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x74cd26f9 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfc9c02b9 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x612d4870 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8c30f6f1 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xa0e1119f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xe8ee6210 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xfb378333 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xfb80932f garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x1c7a0a1f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1ca76b5d mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x6beec340 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x71401e0a mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xc121337c mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xedd9592f mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x93cab6ac stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xb9400d77 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x6e1b0d06 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xe92da130 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 0xac46d99c 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 0x19e970d2 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4cf02aa1 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6f481f00 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7d4a0e9b l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8b929566 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb6d5f0e4 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb7667238 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbb65b3da bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x80942e4d hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0eb518d1 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x26ed5dfa br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x302f9611 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b60dc90 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4393988c br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6693e8f7 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x68483a52 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6c5bfdde br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x78f68398 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7bce7d61 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x891b4f0f br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x986e7197 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1e43973 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaedc50e3 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd794420c br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd097adb br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd6cf95c br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf342e834 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0xce316bb5 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xef1b7077 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xfdc42b19 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13768d21 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1707cac7 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bda4cc3 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f8cd6a7 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x34a6f50f inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f0e827f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41a33e5d dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41e7cb10 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5889e9f1 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ab5a4f7 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b9859eb dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x67422884 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68438a72 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78421d68 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x790bd661 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aa6a98d dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84a855a5 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a8b2fb9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x91482e6d dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ae0d30e dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cd91ae3 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0746a06 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa43e19f0 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa47a27b dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xab5db93a dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3cabe0e dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8ea5091 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc31cc6cf dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7151ecd dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb62a14e dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0017431 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0784aa7 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7592b9f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0af5feb2 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x431346ec dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x923a7f13 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb10e0f59 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdf4dbcee dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf08b0009 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x189f3545 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22c018e4 dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dbc81d3 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37932f57 dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x59d60622 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c607e24 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60ca2563 call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6726720f dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67e6020f dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d9970fe dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79e6fcb1 dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c0ce4e5 dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa18711ac dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbde0e406 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbdfc4ec4 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbfa0b3e1 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc03014d4 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc86f7ff6 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd20a595 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfed21b0e dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xff61ea04 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x7fdd3d48 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xa923099e dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xb7b06b33 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xc1a50f8a dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x64481d6c ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa3a2ec69 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd896ccfa ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf289366e ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x02b79c46 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0x43e2bbf6 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 0x753f845b esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd5e48006 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xee985664 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0afb12aa gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xd94e69a7 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15a2021a inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d9e2a49 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x633aa4cd inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x68afc832 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x856f2e7d inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbbfaa4ae inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbfa1b780 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe4d3b53e inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed0febf5 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6ac0f399 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x058afea1 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08fabcec __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x216364c9 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34effebe ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ba3fe73 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x66e2b80f ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e91978a ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9af45589 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbbdbd00a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbf7b038d ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4704514 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf3b0258 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd314d066 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf13c7514 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf3db119d ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe2653ef ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xdf63e93e arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4cd77f87 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xcbabaa25 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x827e7bd8 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1833e784 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3df05961 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6edbe748 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8bf5924c nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb95a7b09 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe5815e62 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4629461e nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x68e345e3 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd5e4f60d nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb2e888f0 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xcdd4cbee nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x104917ca tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbeabafb1 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf9126f79 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa0b5b49 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfc4f6414 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x06204d25 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1fc45d0e udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x75fe694a udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x79860ef2 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9e1b201f udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc75a21c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc6dcb715 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee1714ca udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8c3d5129 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe976b162 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf586bcec esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5e9b96b4 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x95496da5 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa73aa1c3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x212655d3 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xeee0f20a udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x312198a4 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa81ae54e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf77fc7bf nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7c6bef73 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x31dfd7c0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5e88a947 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x937cb9c2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe13f5a28 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf4a55f2b nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x62e6ff0b nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x36a62ed7 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4ae04f47 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc6be8dfd nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x1c5f615f nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8cb8594c nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0585426c l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x159e37e8 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x167d52e6 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fc69bb2 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32207515 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3bb6d137 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4483f1f5 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46a27a06 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5680864e l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6d2ef7f2 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74bb5fb2 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x838c531a __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca79d8c8 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd25f609 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd36a113d l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd469b6b6 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb6effb9 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfccff40e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05830b71 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cc9ec05 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x10f3880a ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ab845cc ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4583fcd0 ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71ec9807 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f4f0d0e ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a9fbf64 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c0f4a03 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8cdfb595 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90ba4709 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x92935b27 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95f80b31 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb217f566 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd070f68e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7c54b72 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8cad05ef mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x96095f0b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa93493e9 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb695f7a2 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xca878abd mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07f126a4 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d11faf1 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b45952f ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38b5471a ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a95933d ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4be20638 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5d922b9e ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70ce88ce ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73d9c11b ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8318fe9b ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8af38cf1 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ce6ff24 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7ebef96 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb01e9e13 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcbe851bc ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xccf86b68 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfd4e864 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8bebad4 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6e12f154 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x95a44120 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9730ae7e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa6fc80c0 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3b0e5321 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x45b7fefc nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x979a6f5c nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa940e16a nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb611888d nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0001145b __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00b7b589 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01d86520 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c134d25 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cb1d200 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cfb6411 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d0b615b nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f4edca9 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1437fa74 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2002e4da nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25cc83f4 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x341fa6d3 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35dc44d4 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39cadf9f nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b80f36a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c9da570 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ceb366e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d4e1f9f nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d9b43bc nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e7e77a7 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5e43ea nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4590e15a nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a744540 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dd2f161 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f06405e nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x526b3587 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ed2d8c nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c1310d0 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fb842af nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x648b9df4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66d5165e nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bd91511 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cd901e5 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e0d3087 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71f7e056 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741fa24e nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e838ee8 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84ad55a0 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85c3c7a5 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88076206 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88e61ab3 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b6af94c nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x902ec6b3 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95a8c31c nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d2a2ea nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b69c0b0 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1e25c20 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4a5cc1b nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa650a30d nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4b3cffb nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8775d21 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfad2722 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3721ae1 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc41b3602 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6aefd0d nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca971687 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0cf33be nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd40e380c __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd45ac7ee nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6920159 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8b0ffa2 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd96adfec nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf5a03a nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbf8b8cd nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd8d6f91 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde0a20ae nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe04355c1 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2574d76 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe46cda29 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5cc6007 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8c9785e nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebf65e5c nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee391d84 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2e1ba33 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf44c4729 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf467c62b nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5304725 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6294a77 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9e67a76 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd81277f nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdcafc04 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6b93a50d nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6676ebae nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc768e1c5 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0ea2dfa2 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x25651ab2 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f58af52 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x546451d7 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5d60f3ba set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65757ae2 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6c386940 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xab14df98 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9a2db64 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdcd0fd9b set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8590094c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9a001a87 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9a5439cf nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd65d6cce nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf0272d41 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0134daab ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x605e6fef ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x68a06641 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x738128fa ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa5e7adb6 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd3ced6e6 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb9d7399 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc0cfe18b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xeff6e831 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2d9499dd nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc8c9768a nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfccd2ef6 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2732bc75 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2a8794fe flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33423b50 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x441665cf nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4488f712 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5520d414 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66aa0257 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x74f2b397 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7abdadc6 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbed0cfdc nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd096f526 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xecb9798f flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x17b725e6 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x21b9fc3a nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x92989ef8 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbb779e7a nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xeef48586 nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xff812009 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05122c0a nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0e6c9feb nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10ac0e33 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1a8f7f24 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3022d7fa nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3034d209 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3db3334e nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ad54a1e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x530c8618 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x65e02661 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6fdb9d5b nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb06b06cb nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc130702c nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2c7feca nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe0250af3 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe815531f nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x092d5cc2 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78b72124 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x916c39e5 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x968747a1 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x97875519 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa0a747e9 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc22b9c65 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc4c0f099 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe25b3978 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xea86d303 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfcc6ba2f ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x030deebe nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07ce147e nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x091cc40d nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0bf6e69d nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f40fdb3 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ff4e1b7 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b3c09d3 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c1a1531 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ddd21af nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dee68e4 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2855127f nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c2ee0f8 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30f96c9c nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31e37a6f nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37a983b7 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e95dad7 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x563b0652 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x588c466c nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x639ed2b4 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x672676c7 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6873dffb nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70b3911f nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x758bab5d nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77c15342 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79000e43 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c058c24 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8866dd78 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89d6e5b8 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ad823b6 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x943b7457 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99aef9a6 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9baa9be2 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9a0af52 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf1bc232 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc78e2d8e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcca18ccc nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd418e798 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed7714b2 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x31bfbe1a nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3a84e78b nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa5a579b8 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbd844360 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd3a16195 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdcf3c06e nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x69916418 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x976258d8 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc4b89ad6 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x51144772 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x69c28b91 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3dee4247 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x670de0fd nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6bcaa71e nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9fbab52d nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1783fdfc nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x932de7e1 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc6e87539 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34fd3234 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x353c3863 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x533aee49 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 0x85b95e5b xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87cbcb2c xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x883f1dcf xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95878707 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97ab90c8 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f39e700 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2b5ee81 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbada1270 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1bf1854 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1f745d4 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8e1f9f2 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2d325a0 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0d5f5336 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x37f792f8 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x12d12334 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9233d97d nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf128edc6 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x127ec710 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1508f227 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x57a9053f nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x013314ce nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0x54a379a9 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x38683a52 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6e373a5b __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x72bff10b ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x800b25d7 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb6ae205e ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbca7f0dd ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x22e84bc4 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x93404313 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xbe038cc3 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xc272c207 psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7f1c4a4a qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9014ad54 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xbb35b9be qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x03c3124f rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x05ba4fdb rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0ce11fed rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x157ca057 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x16184a2c rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x1d88c5aa rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x23f5420c rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x26f98cd3 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x27e8c03c rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x49e8c346 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x525b445a rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x68066f00 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x70d4a3c9 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x71a52b78 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x769f66f3 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x7a472030 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x83c63bf3 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x872afb96 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x97a30862 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x98e92eba rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xa12f736c rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xb296d1a2 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xb63dbe66 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xb86300f9 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd6b177c3 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xe6a1b941 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xe765bbc2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf7827354 rds_inc_init -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x62c024f0 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x9ee50e24 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x22fd301c sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x31ecb9bb sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x4f35fb68 sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0x906553c3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x0467813a smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x37beee71 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x3b199e76 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x3f38a683 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x650a9099 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x6ce4d022 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x7bf55da8 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x7c693522 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x8c007b77 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xa6875460 smcd_handle_irq -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1c141c9b gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x35824bb2 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 0x971fee0e svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xffa39a12 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064baaa3 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a194100 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b2b7bf4 unix_domain_find -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 0x0cea65af rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de5cec9 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5dd045 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fb653c4 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe04338 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e80963 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ea9d9e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a7ba53 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11de557f svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13354593 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134b25ed svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138d8144 svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13fa93d7 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146ce476 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164f4504 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x196df806 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0d0af4 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd0f81c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb2397a cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec42750 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f390b06 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5e1f24 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2078a011 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21eb933c xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226485bc rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2578ef38 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258f4fe4 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271805d9 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2737c080 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f4324d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b8cab6 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4a39d8 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d906d4d xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d98f61a xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f64632d _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3074a89d rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e6f9be rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x311b4834 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3162965f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e6edac svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32fdee62 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350016d1 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35efd75b rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3879c8d5 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3974a35d xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c952472 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d330913 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e5348c1 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb2e1f9 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff22682 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x401eb4e5 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408f199f xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40da5856 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43291cca svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b12996 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44581774 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a36877 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ebff2a xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ff48d2 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48db3cf3 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4fcd52 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac0747b xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb662c0 xprt_unregister_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 0x4ed42852 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f862285 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x506ea75d cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x529cb97a xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c558c8 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55287fe2 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55bca390 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562fcbe7 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5681f6d2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ef4aa4 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575ca357 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ce79eb rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59215f55 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59eaf3c3 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a41582a svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5c1e09 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d98dd51 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c95450 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a11abd xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646f3596 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6491a709 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64eec7c8 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65099e6e rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661c5369 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66323d66 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d733dd rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6753be54 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e4b3be rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67fa6e7d svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6813bed6 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aebc89c rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf3f485 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c6e21f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d65832 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b18386 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b211e0 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a1fe19d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b46907c rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d07a6e2 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd75a8f svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc474b5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x806f3b45 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ee9147 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8341ac90 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852bd511 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8572fbf5 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87d158a4 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88525819 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a7818a rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8974f499 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898f04d4 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cab6c55 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ecf6543 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f17bd29 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f68c9a7 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f808e8a rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9093f4f7 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917ef6a0 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918a480a put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958870ee rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9596f905 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9704a725 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9767184c rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abc3808 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b004e4b rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d6421dd rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d9c677e rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da2184d cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9de4418f rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9faec81a xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb30b03 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0267305 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa193dd1f xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e40eeb rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4278f4d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa471450a xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e3aca2 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa593eed6 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f022c2 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7df087b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8ca2053 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8eeb2de rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa20cccc svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab29498c xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5ec538 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8636d6 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad1dce25 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf68eb22 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb31140a5 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54c5ebd rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f45074 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82fcc14 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0b9b5e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc71535f rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd1d169f xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd82383f read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe4338d2 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc285d4dd svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc379e1a1 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5754fcc rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6121353 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7abd446 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9770134 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e441d4 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e68c61 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2d5d66 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0c43f3 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb27ed9 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdbece4e svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdc0085a rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e6b5f2 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0f4425d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd16ff6a3 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39e5e70 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d76815 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd46cf9aa rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48e321d svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd659faeb rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88c584c xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc5f8ba3 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc9b56e6 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1e6f82 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee8ae1a rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf3d2257 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff1c784 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c1fd11 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe37c6a15 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe380d06e svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fe3c66 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c30d49 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5037e3a rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52eb94f rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53dbe63 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5699117 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe577f50d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6c82842 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e39ac1 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7892eb2 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7bf61a5 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe80b49df xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe82473e2 xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5097c2 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba54234 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec121ae0 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec323f2b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee124308 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3beadf rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefad7ec2 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf373c0bd rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ce69a4 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf73bebe6 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa4ca79a xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcbc2405 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde26751 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfed4f749 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff3ae708 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/tls/tls 0xe57f0ecc tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xea195a34 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0149644c virtio_transport_notify_recv_post_dequeue -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 0x081f3a58 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x092d93f9 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a3e3202 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d2188b1 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12d35a24 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19a622b9 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1af7aaf9 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1deb05b0 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2587aaac virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d51d1b5 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3bf84fe4 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ff22027 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47576b78 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e0eda65 virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60bd1946 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74665eb6 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ae0cef2 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b06adf3 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cf4983f virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92b4e42f virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa120d94a virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa138f272 virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa38e91b4 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3d80b32 virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5c6084c 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 0xca925b06 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb40eac4 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccd15eb6 virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce5d515d virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd17b984b virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe994b3df virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecb256a1 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf74c483e virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa0e78a9 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa4cd671 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01c9bb39 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x029c2afc vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20b38cdf vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2946ab50 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34921055 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45da0449 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f6365ee vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73b4d87c vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f006db6 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83cc173a vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x867f91cb vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8784e090 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x886b2865 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa08ef490 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8c7e8e4 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddf3bc9c vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeebe17b6 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf766e12e vsock_insert_connected -EXPORT_SYMBOL_GPL net/wimax/wimax 0x0bde0bba wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x17ca5f02 wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x28e88d71 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x3755c715 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0x62eb9f97 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0x77d18438 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x8cd0c140 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xb51a0c02 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd7663e7 wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc77470b5 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc8a99e45 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf237169d wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wimax/wimax 0xf38e2026 wimax_msg_len -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24934abb cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e3e292c cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50898c4b cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5460bfc4 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x630cd7e9 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7acada6e cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7b23573d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x819e384c cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82f2849f cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x95abdcf8 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d1a99fe cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa950d2f5 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac6909eb cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc2659503 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd5753cfc cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdc8718a0 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 0x493a1b4b ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x646fb956 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x721702b4 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb7fe3059 ipcomp_input -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x0baeb7f0 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb79fd7cb snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04958bca amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x11daf736 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2a9719c4 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2b5c0abf amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x515f22b6 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78a57761 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb3f9a53f amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x052ffb11 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09ca3474 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1113f3e0 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c245d3 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x159e8d60 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d71e355 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d9c2da4 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x203e4dff snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23718869 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24403dec snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x244e12c9 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26781545 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2768878f snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cbd8853 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3088034c snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30e11ef8 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35763a22 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35b6b796 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3790ef33 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x389734e3 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3948e917 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41558b59 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43f56783 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46399521 snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4754b78a snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a488166 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dd1328b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e95a123 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f9bfc12 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50c4f0d9 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54790c6e snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x579da298 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bed5de9 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e5fd160 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e934de5 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f414682 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60efaf33 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a350823 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8d0183 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x701eb05c snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70968b72 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70f6d2e5 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x741539ee snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a52474b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c27cf3a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d6757fe snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e9c9993 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80de070f snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8408d79e snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8929f57a snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92977611 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92e9aed9 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94e66ed3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97155299 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 0x9cd61691 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f2893bc snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f713107 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa22a9230 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa636ac86 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf4dbcc5 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0b28395 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0e4ae71 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb21a8576 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb25db12f snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3561b77 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb39b69a5 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb59ba8c5 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb758f19a snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8b2cd56 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba178dc2 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbeb6c922 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc00441eb snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc50c8b74 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7d26c14 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0bcde43 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a8b121 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2b54af0 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddf78797 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdee846e2 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfddcf50 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8a682d1 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff6c92ed snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe693628e snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x233d1697 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4ca37f1c snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d16186a snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x570ea39e snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa7249200 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbba7c385 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x003a645d snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0552e3fc snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05704021 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05e38e47 snd_hda_get_num_devices -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 0x092feb99 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d15f885 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eecc522 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10a2f035 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1167dec5 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x116d0869 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1215de93 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1236fe49 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13778620 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13d668cc snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15a6320c snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15befd53 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1959e5bc snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20eff3e1 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x213044c3 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x225fd1ba snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x233352e7 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24cbbfd5 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2558905e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2581cfca snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a9b9347 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f225ada snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30d4b411 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3186a026 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x329fc801 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x351b4e06 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35f5425a azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36e1ba1d azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38f2266c snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3988d3da query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e53c989 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fa89af8 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4376fb91 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45073f81 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x497236a4 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b3b77f7 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c058f46 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6a552e snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc37ebc snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x515467c1 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51e1cfba snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534973f7 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57325b2f azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59484963 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x596ba315 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ab2bdc0 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b4ac7c5 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c1291f4 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f7a1d9b snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64b9269c snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x692b28a3 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d198783 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e9702d3 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71563f20 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73cc779f is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73fad1a1 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7800b05d snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c6df893 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7eed1090 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81532200 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83cdbc52 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aa986e8 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ce6abe0 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d8edf19 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97066e93 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x984efbbe snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e9dde12 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fb24953 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1e5c3c1 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae03fc77 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ed2943 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1ff1e6a snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb30e935b hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3e42c0a snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7ee66bf snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba16e25e snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb6ced2b snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbd33f9f snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc3ba21e snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc3bcfb6 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef0d4d8 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc076b982 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc198b034 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1f7c2ee snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3b503a6 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5cea85f snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5f479ef snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6508766 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7925ca9 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc869303f snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8f43f48 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca9686bf snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca98f910 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb9caedd snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccdd61e8 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6a1be7 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9aeac1 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcebae0ea snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd00d89e9 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e1be7c snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd287685f snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2e08ee3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd595befc snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8e1d877 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb5b671a snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc76c3fc snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd5ae8e8 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde68c3b9 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2040ce4 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe293bad3 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec37c9b1 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec646b14 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef6f665 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3bf07ee snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf77a6a1b snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfba75e5d snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe24a6c0 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0243e95f snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ab9baf7 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e5398a6 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fc0d5ac snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14990638 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28618d79 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30cbe6c7 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34bc6a26 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3661530c snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x42cf4599 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x474b6495 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51b09fce snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c2c59fa snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5db3c9c3 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72ccdb43 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 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6dbf35e snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa986fbdf snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe4bf28f snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd50b828a snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe289b5a2 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe31168f5 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4577b81 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-adau1761 0x1ce045db adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xde31e36e adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x409ce6e8 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x70fe0bb8 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8438bf0b adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8f5938bb adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x94e1dddb adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa1287fbc adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa1aab184 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa3c68366 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd43a5b5e adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xda35c561 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07eaf740 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0dde8906 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1394db3d arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x163517b9 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x17adc678 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x210da4c4 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x26327f8c arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28f3d74c arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2e622658 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2ff69cd5 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x34d4b55a arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3bb412d3 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4a685c12 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x527db269 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69629ca7 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6c4bf487 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x72b2563f arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x79ced355 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e64d680 arizona_in_dmic_osr -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 0x85a02dbd arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8da455af arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9512534f arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x97da8ce7 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa604947b arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa669337a arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa7c37dca arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xae7418f8 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb240954f arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb2690e37 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbcafb36e arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc18da474 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3f9d992 arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5e2a340 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc76aaed9 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcd2b74e3 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3be6ff7 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd68ed652 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdd78d2ae arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xde2879cf arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xde380b24 arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe1baac76 arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe843d51f arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe94bc96a arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xefa26757 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf3732773 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf40ab9dd arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfdf9c6bb arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x854ebd04 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa1bee366 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4ab75d88 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x506c8636 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc06b7d7d cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xea373105 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf0ab8084 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1555baf8 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1ebb1b22 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd05fbfc9 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3bf695ff da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa3e09485 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb0c53b46 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x04c37880 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf053f3d3 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0xe4f6a18f hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x938db947 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xea50ba58 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x2d2ec17e nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3a3c0a27 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9dd8eb95 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd5b5df80 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x3d8ca60f pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4481ce8c pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5b26fbb7 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x826da108 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x13751b6d pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2829d57f pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7e6570a0 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa6385d27 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0ef56e5e pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2a865e37 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x40218bc6 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x860af39d pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3b78e58c rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x8c8de77f rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xcc7687df rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x17ac2a21 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x27a87125 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8d635b5f sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8ecb9f61 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe722dc3d sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa8da5481 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x64981d26 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x99c8fb55 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb86fe1e0 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd47a30b0 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb7410422 ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00cdb1ea wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x091f52dc wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bff2dac wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x329ac0db wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3b5cc53a wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c7a7b57 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x455d3077 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c70c60d wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63d81a12 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6981bfdc wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x70474c67 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7169bf6c wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ae088ab wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7e3261a5 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x850dbdaf wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x87963449 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x95cdce79 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac301f9e wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc936d831 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc9794dcd wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcfd2ffb9 wm_adsp_fw_enum -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 0xfdb642a7 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfdbb0d08 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0f164e17 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1230d1a6 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2becb24d wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x404612fa wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x46dedcf9 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa6cfcdf3 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xab85017f wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xda3a59e2 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x258c9134 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x28843061 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc7dd9c3c wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfa0a9337 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x73e30312 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xaedf4b56 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x84c14a93 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xccd4c10c wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x8b952897 fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xdeb760c4 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 0x1d2f970d asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1e56915a asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f64f9fe asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2a974ffd asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c57d41e asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3cd264ca asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c0602f0 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63585337 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fa082a6 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c783d01 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93ba0203 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab413dc4 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaea06c9e asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0701da7 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdca4c50d asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee8790f2 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf01183b8 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf152fc02 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0f0b5c97 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x141f3fb5 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2757654e mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3859b522 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3931b46d mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x48d7dbef mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4d552add mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x53d92822 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x79e807c4 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9c06994e mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9f576575 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa6b7ecbe mtk_afe_pcm_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xabb9e677 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb0c00b54 mtk_afe_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2938cf0 mtk_afe_dai_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7acf85c mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8b12ec9 mtk_afe_dai_resume -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2bbd77a3 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x39cc4707 g12a_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x53cde572 axg_fifo_pcm_ops -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5bd6c3cc axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2db27767 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x679cd72f axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9734c838 axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9e650319 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb711a93e axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xc819f576 axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xeaf1cae4 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x84e83df0 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x09706e2f q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x5e8c9e77 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xd8248c7c q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe5f4efb1 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x151ae9d4 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x27159996 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb4f98cb3 q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x012c1c58 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1454bea3 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2b4b600a asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd64aea24 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x03957e9d asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x0875c876 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x14e9ba13 idma_reg_addr_init -EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xb66dccfa samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x12f68428 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x93853c7d snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe2ce120c snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf2d5e68d snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x2327c8e1 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x04719100 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xa47420f4 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x0de3bb10 uniphier_aio_dai_resume -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x3f15668b uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4d69b415 uniphier_aio_dai_suspend -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x56bcd3b1 uniphier_aio_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x6bb3f903 uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x78829bb8 uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x870ae036 uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc20fe8b4 uniphier_aio_i2s_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc7029f6a uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3371373e line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5aad5708 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d5fb477 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6f42ee69 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x732aa7a8 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74f4550d line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa0be6356 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb071bc78 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb1222a90 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbd9bf259 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0f2d34f line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc31baa3a line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd38aabe3 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf8601c8a line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe191e39 line6_init_midi -EXPORT_SYMBOL_GPL vmlinux 0x000e6f3f sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x00182109 led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x002715c1 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x0028a56b invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x002cf682 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x0037942a sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x0047caf4 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x004daff4 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00551e57 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x00574dfb perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0068dc7c mmc_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x0079e212 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x008603b6 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x008ae53f relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x00923ab9 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x00a3726a balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x00d29e5f debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x00e64ab6 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x00fd693c mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x0110a1c5 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0119139b dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x012d97cc cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x01304c84 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x0132a29c __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x013f0b94 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0147f5ee blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x014c7d7d efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x015cdf0f regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x01627b08 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x016c27fd pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x017fae67 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x018314dd __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01946949 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x01a104ae usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x01abd44a kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x01c278cf register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01cd9574 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x01d747f5 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x01df7424 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e311e2 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x01e8afc5 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x01e9665a __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x01f08fd0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x01f7e6e9 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x02002376 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x0205670f snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x020c1e90 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x021e72f1 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0229690c get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x02334c99 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x024de7b9 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x025812bd nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x025b81d2 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0283eef3 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x0285676f page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x028cfffc kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x028ffc25 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x02aba997 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x02c1d293 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x02c1d42e uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02eb62fb ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x02edada4 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0x02f148c6 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x030bd5e5 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x030df92d sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031d6b64 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03263919 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x03275659 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0328d14f rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0340d320 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03465ee1 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x03656507 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x036c5cbf devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a663d9 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x03a7d56e ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x03aa1ba2 cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x03b9ac8a devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x03bccdc1 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x03c341ed fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x03cc52c5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x03cd053e devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x03eaf36b dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x03eb2cad snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040ad20a sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x04260880 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x04383084 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x0452dea1 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x0458a8d4 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0466be75 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x046be173 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0474c1d8 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x047bc27c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x047de797 nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04a09aab irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x04aa0f22 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c88c56 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x04d73cd0 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04f8aca1 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x04fdfbcd __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x050164d6 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x050387af nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x050ab8ed dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x050e2126 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x05161e00 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05309361 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x053b09f7 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05787017 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x0592371f edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x05975ea7 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x05a3f32f subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x05b2633f devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x05d8cca1 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x05f40619 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x06004914 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0612850a xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x0612c6a4 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x0613f663 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0628c279 dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x063580a6 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x0643c8b0 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064eaff9 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x0662f5d2 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x06876c2a pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0687df4c nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x069075b1 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x06b61289 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x06c54b9a usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x06c70473 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x06d0ce08 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06ebe794 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x06ec11b8 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x06eebd76 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x06fcaace sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x071486a3 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x071f44e9 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x073464e1 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0742e7fc blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x074cb645 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x0774d589 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x077e8d42 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x078f054d pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x079920d3 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x07a52029 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b808eb fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07d8da3b dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x07e75624 clk_hw_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x07e81af8 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x07eb4633 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x07f366af attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07fa0a54 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0807f31a devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x080a3593 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x083ca005 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x08669bfb devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08a93b70 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x08ac3afe usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x08aeed7f sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x08b8ba22 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08e69f08 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x08e94300 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x090a4ed8 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x091c0157 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092330c1 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0x0926361f tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x09274600 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x0956b414 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0975b3a4 find_module -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bdd4d7 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09eda6fa pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09fd3b31 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x0a025dd8 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x0a0c3d48 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x0a1e0b0e ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x0a22631c clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x0a3b911c lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x0a4ededb regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0a4f0850 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x0a5f820b find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a809445 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x0a8aa03e devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0abc3d93 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0ad61478 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0adef44c regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x0aef336e snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x0af93be7 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b097af3 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x0b0cc804 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x0b11d7a3 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x0b1b917b edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b336b5a iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x0b33e905 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x0b3c1897 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x0b3cee49 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0b4bf727 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b4e6744 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0b5ceff2 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x0b649361 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x0b6d8ff3 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x0b743acd snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x0b80ae59 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x0b816221 snd_soc_component_read32 -EXPORT_SYMBOL_GPL vmlinux 0x0b81c19e spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x0b96d32e exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0baa617f ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x0bae4450 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb8a182 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0bb94364 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0bc8330a pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0bd1c8d5 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x0be0ea22 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x0be4d56d pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0x0be7f802 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0bf387c6 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x0c00638e nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x0c0ac9d7 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c1ad0c8 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0c1bbd72 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c434220 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x0c62f02a ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0c640b1c da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c65e678 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x0c6cb677 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x0c7e7cd5 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cbae062 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x0cbafc18 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x0cc794c5 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x0cdb6a37 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x0cdeda5c snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0x0cffd21e pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x0d06c664 cpts_release -EXPORT_SYMBOL_GPL vmlinux 0x0d0f6da9 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x0d164942 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d3dc53d tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0d3e5371 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x0d435aae syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d47b712 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d5459b0 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x0d594a28 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d6bc129 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x0d81be03 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x0db3ea1b kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x0dbc546d fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0dc215b8 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dd81d6f serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de754e0 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0df2c40a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0x0e0e826d nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x0e335032 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0x0e37ebe2 usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x0e688bac ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x0e7106cd nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x0e721035 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x0e840556 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0e98343d mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x0ea36621 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x0ec73bdf irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0ecadf22 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0ed756d3 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x0eec4556 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x0efdf8ab nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x0f162854 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0f1cdfe9 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0f2cb731 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f31a305 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0f3c775e regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x0f49a457 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x0f5098ac ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x0f51a596 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x0f58b3eb blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x0f677806 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f828271 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0f87269b i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0x0fa09b52 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x0fc14e68 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x0fca9d98 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0fcafa88 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x0fcf129f class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fd00530 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0fd88451 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0fdb68da scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x0fe069dd devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0feabb4a security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x0ff7e908 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x0ff7f01d devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x0ffaa944 usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0x10021898 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x104845e5 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x104fe369 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x10526440 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x1071ca58 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x10887c60 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x109badad list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x109ff827 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x10a71190 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x10ac415d blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x10bbd7fa do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x10d0498a cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0x10d8ab6c gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10eec2cc gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x10fc93a2 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x1116e96a rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x113fad07 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1142ba66 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x11640995 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x1173aad3 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x11987ac0 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x119b1ce1 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x119c08fd regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x119ecd3d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a45f46 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x11a56e92 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x11a6932b vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x11bf5d4f sdhci_adma_write_desc -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11cb8308 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x11dd70f4 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x11e48ff2 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x11e8907a blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122daf70 dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x124381ef gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x12572282 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127a14db thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x12837325 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x1285c3fa tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12a71306 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x12ae3b53 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x12c21550 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x12ca741b usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x12d39b10 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0x12d7309c mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x130622ad kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x1306e06f sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x13140134 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13253a77 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13415f94 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x1343c97c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x13538c54 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x135be5cf device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x137e2312 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x139fe957 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x13b33a61 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x13be0be3 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x13c041fb mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13e47062 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1413e4de cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x14187405 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x141ca70f init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1427304d rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x142da1aa dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL vmlinux 0x14378b58 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x14595b52 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1479fac6 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x1487ec46 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x14903866 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1494c794 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x1497b29d i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x14981e58 net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x14991423 omap_iommu_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14b30f0b regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x14c9e3c3 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14e13e08 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x14e4f65e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x14fd4b65 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x150ff5d3 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15452421 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1561a4fd __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x157f3979 sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0x15825dbc fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x158de5c8 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x158e6fee software_node_register -EXPORT_SYMBOL_GPL vmlinux 0x15933fc0 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x159ade23 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x159eb9f8 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x15a33e7c __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x15a5e515 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x15a7cc64 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x15ad9550 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15b1bc64 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x15c816cb crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x15d31363 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x15d6a761 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x15e3d33e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x15e81237 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x15eccbae devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15fe5dea lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x161affde of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x1622ac30 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x1655bbff tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x16674ec5 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x169ab92a gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x16b18b41 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x16b7131a usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x16c06b66 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x16cd38ff rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16deb565 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x16e2bd9d ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1715aabe serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x17173f09 device_add -EXPORT_SYMBOL_GPL vmlinux 0x1719ac4c serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x172a4749 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1764e84e blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x1766b567 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x177504a0 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x177a0633 arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17828a5d hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x1785aa10 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x1789b1c3 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x17a60a86 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x17bbd683 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x17c15fed mtk_smi_larb_put -EXPORT_SYMBOL_GPL vmlinux 0x17f3d780 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x180f8ac8 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x18103e7b usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1834dc44 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x18471ffc snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x184989c0 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x1864bc74 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186c5ccb percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x18824e82 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x188e305d snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0x189aa566 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x18b49818 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x18b558b2 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x18bc54e7 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x18c9d7fc shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x18d12803 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x18ddfa86 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18f0ec42 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x18f17d54 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x18f648c9 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x18f83b78 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x191fa652 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x192ef120 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x193c817a pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x194f6625 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x1983d1c9 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1988b4b6 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x198bad56 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x198d8724 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x198e7617 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a6e605 of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x19b21b26 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19cec343 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x19e60e67 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ea600f regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f4923f evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x1a098756 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a13e5a3 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a356c3d wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1a3b0e82 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x1a3e53be dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x1a424c8f get_device -EXPORT_SYMBOL_GPL vmlinux 0x1a4d7b5f xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a6a55b9 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a8fa1f3 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x1a998d71 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x1aa9835b devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x1ab2d65e update_time -EXPORT_SYMBOL_GPL vmlinux 0x1ab84604 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x1abdfeac regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1aec72db crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x1af09c31 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af52d05 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b3336a7 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x1b35e6c7 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b3723ba snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x1b4b5845 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b51aaf0 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x1b5c8cc5 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x1b69b91d wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b80b14c fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x1b83210e gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bb0096b cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x1bc00c47 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc8ef45 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf0187c arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0x1c072a15 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1c13b50f regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1c17c540 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x1c1b8156 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x1c244e15 thermal_zone_set_trips -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 0x1c670650 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x1c7061e5 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c8e017b fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c8f751e dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x1c904599 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1c9e3134 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0x1ca2acee kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc1c243 xhci_mtk_add_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0x1cccc0e7 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x1cd9d279 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x1ce8aacd unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d3bfa12 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x1d40b4e8 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x1d41a28f fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x1d47b537 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x1d4861db of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x1d4a55a0 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1d6706ad crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x1d688652 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7a806a sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x1d82e424 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1d9e72c4 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x1da39eff led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x1da66422 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x1dbcf806 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x1dc69220 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x1dd9d0fc gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x1ded6f20 devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0x1df670d2 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x1df9270e snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e13652b tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x1e147dc5 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x1e1b05a7 snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0x1e2d3676 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e655d8e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1e6c9e3f pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e848d19 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0x1e8a5fa0 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e96628c of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x1eaa59c0 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x1eab8b43 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x1eac1cd8 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x1eaf5dcb devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x1eb0f6b0 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecace83 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x1ed0a138 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x1ed17c50 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1eee3a2e snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x1f0a6b21 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0ccc59 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x1f3de9ba input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x1f42287c tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f59ba02 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1f6d3c2b cpts_register -EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1f7b15d0 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x1f7bdeae __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x1f843e14 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1f9fe4d3 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa68426 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x1faad7bf get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x1fb297ed ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x1fb7756f crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x1fbd47aa ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x1fd51513 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x1fd5b74e ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fe4f70a pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fea38f6 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x1fec93e9 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x20267bf0 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x2034cef0 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0x2035abc6 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x20610aa1 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x206426e8 sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208a422e xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x20b71392 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x20c06889 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x20c8b4e1 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x20db18f6 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x20e40aee driver_register -EXPORT_SYMBOL_GPL vmlinux 0x20ea5a0a usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x20f3f02a crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2112cf19 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x212a6ce6 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x212c497f __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x2135f4fe usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x2138f9a8 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x21485404 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info -EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x2166ecf5 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x216a4479 blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x217226a9 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x21775cb1 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x218b83de i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x21922cfe user_read -EXPORT_SYMBOL_GPL vmlinux 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x21a9fc8a screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x21aa6334 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b09646 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x21b1f020 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x21c1b2cb nand_release -EXPORT_SYMBOL_GPL vmlinux 0x21c1bb31 snd_compress_register -EXPORT_SYMBOL_GPL vmlinux 0x21ccd84b kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x21cd191a register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21db57e2 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x21deb796 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x21e31db9 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x21f5122d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x21f8e48e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x21fe7ed3 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x2208f782 omap_iommu_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x22222c1b pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x2225f074 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0x22369fd2 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x22377b74 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x22381504 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x22521e47 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x22625725 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x2263566c device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x22648c02 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x227244aa rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x228e8076 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22ae039d scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22ae1aa1 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x22c74ddc preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x22f28cc6 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2302535a md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x23080010 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x231f1b6c inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x2320c8e8 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23452bf1 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x23668268 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x2370ac84 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x237cc127 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x237d0027 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x2381db74 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x23837487 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238778b9 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x23920952 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x239406a4 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239bf673 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x23aa38a3 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x23bbd171 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x23c0d891 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x23de78b7 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x23e4da97 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x23e570ef platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x24026037 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x242d6616 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x24366052 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x244d10cb usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x244f78f8 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x24616a36 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x2470a825 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x2477bf11 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x247ba765 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x247e8854 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x247f0e02 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x2488abea regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24a71bd6 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x24b218b1 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x24c6b9b0 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x24c6f6b4 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x24ce5df0 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x24d429c8 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x24d52eae qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x24deb86d bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x24e9b315 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fdb424 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x2501c510 put_device -EXPORT_SYMBOL_GPL vmlinux 0x250a857d dm_put -EXPORT_SYMBOL_GPL vmlinux 0x251cc7ec device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x25200e34 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x252ac113 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x2547519a gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x2548fe0b spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x2550e2f4 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2556502a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x2571135d inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x257c5a34 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2582bc89 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25b60507 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x25cf33b2 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x25d0dad0 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x25e45d01 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x25e57ce2 iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x25e77ab3 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x25e8c90c ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x25ed3348 snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL vmlinux 0x25ed75fb pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x25fc6fa8 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x2602855f scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x2606e4f6 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2607f825 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2617d5e4 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2623c482 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2624ef4c skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x262b996c unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x26332512 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x2638adb0 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x263f58df devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x264ae42e ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x266561a0 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0x267a3437 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2682a282 of_css -EXPORT_SYMBOL_GPL vmlinux 0x269b2f7d snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x269ea794 sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x26a63785 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b54d44 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x26bcf766 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c59046 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ee0107 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x26f2ca1e dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x26fc50d2 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2736b474 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x273d2173 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x274547fa pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27798c70 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x279987fb devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x27a3d4a6 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x27af0126 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x27b134d5 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x27b8de28 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x27c99f1b iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x27ef68f4 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fc9873 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x280ee1a1 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x2818037a snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28392b79 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x284f0240 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x2853adcb debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288c8913 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x288dcdf5 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x28a7a323 __netpoll_free -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 0x28bd1db2 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x28c218ad nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0x28cb7cef usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0x28cc6c0b usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x28df655b debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x28e590f1 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x28e88ba3 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x28ef0ded pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2910a65b sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x291ec00d pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x292ef22c regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2930a2b9 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x2935ece3 nand_read_oob_op -EXPORT_SYMBOL_GPL vmlinux 0x2939e980 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x29417005 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x294c39e0 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x2956a9a7 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295f4af8 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x295f6213 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x2960fb4d dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x296cfee1 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x2971b31b tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x2978efa4 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x297a64e8 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x299bf9c0 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x29c7352d tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x29dbf582 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x29e5ac60 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f25df8 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x2a0170f5 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a270d4d lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x2a5787b0 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x2a65816c crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2a9d0277 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2aaf894b ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2acb6d03 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2b03b8d8 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2b1da599 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x2b37a0e9 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4d63f0 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x2b4dc831 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x2b50aac2 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x2b545aa7 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x2b59b92d __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x2b761099 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x2b8f9f69 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bb9f05b vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x2bc2b946 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2bd3f639 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2be00705 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x2c08c8cd serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x2c115234 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c38afd1 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x2c40fbe0 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x2c519d2e gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6a2cc6 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c71c5c5 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x2c75b7df devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9aa1a1 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x2cad1cbc tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x2cb52902 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf1f088 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x2cf5f34d ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x2d05a118 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x2d14daf0 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x2d1aa9fc cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d20cbbf regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x2d2d953c tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d3f293c usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x2d41c28b da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d458ff5 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2d488e4c devm_of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x2d64ea8c pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x2d6fe214 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x2d80e36b mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2d853806 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2de3007c wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2e00a3db crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2574b6 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e30509c percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2e3c7f98 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x2e3cad0d sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x2e3d1911 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0x2e4515d8 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x2e706274 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2e84a0b0 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x2e888731 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2e8b8f07 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2e955ef6 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec57bcd __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2ec617fe rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x2ecac4f8 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2ed01fbe usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x2ed17a45 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2ed18633 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x2edac063 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x2ef63108 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x2efe4ccd snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2f069d2a pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f0d28df gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f37134e devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f43fece ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x2f5aeb8a device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x2f5c1223 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f6f695e dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x2f6fe395 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2f83c238 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x2f873764 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x2f895416 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x2f89f67a list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x2f8a606a ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x2fc7504b hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x2fc8a464 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x2fed5af5 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x2ff21fea bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x30144854 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x304318be transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x3052e484 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x306c3873 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x3076730d rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x30812e35 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x30839a8e snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL vmlinux 0x309c258d mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30eb224b nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x31126f9a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x31133228 mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31599bdd ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x316c47b1 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x31727153 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x31759ee9 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x317e78c7 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x3190deee efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3198f2bd bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x319e52cc l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31fad84c tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x321ca4b5 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322a0564 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x325bd9ce ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x325de4d6 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x32639510 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b7caeb iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x32b8b16c devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c22d06 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32fb44ff regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x330163e5 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x330362ab gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x330519b1 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x330a28de dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x331164a3 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x3342dd82 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x33442b53 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x334482f3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x334a5fcf inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335edf6c pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x336b0ba3 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3374251f devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x337727e5 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x337c2225 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x337f0e67 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x33937377 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x33b68067 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x33b8104f blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x33b98950 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x33bed4c3 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x33e2da57 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x33ed16d6 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x33edc509 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x34094cc6 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x34126403 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3413aa79 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x34186c14 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x3424b256 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x3428d88a dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34459d51 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x34546d13 arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x3459e865 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x346505d3 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x346826bb udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x346f7dc1 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x347c4f35 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x34908579 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x34a91b95 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x34aaa05c led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b06f32 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x34b65df1 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x34bfc421 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x34d44f19 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x34d4b3f6 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x34d75de6 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x34d79a67 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x34e43618 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x34ed753b crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x34fc6268 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x34fdbd1e ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x34fec7e0 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x350c762a clk_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0x351097f6 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3517e0cb __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x3523e38f power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x352f0439 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x35424229 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x354fed2a dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x35563fba aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x35632a91 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x3578ae28 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a2d5aa device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x35aa7bfb lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x35b4800f tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x35c6ad81 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x35db749e spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x35dc8845 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x35dcf553 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x35f42ed0 udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x35fe2c5d regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x36004a00 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3601678b devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3610e506 sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x36234581 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362de961 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3630477f of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x3643b876 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x36515cb6 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x36635742 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x366924fe devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x367a553f crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x3689ae9b xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x368c5d67 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a020ed l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x36c1ad81 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x36e0a0d4 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x36f40503 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x371d63bd irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x3726571f iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x375db9e1 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x376851a8 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x3789a98f ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x3795c1fd usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x379813ff debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x379d10bc tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x37a07947 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x37a98252 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x37aafe5d fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x37b4778f cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x37c36c49 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x37dab5b0 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x37ea31ea cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x37fc9989 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x381ac47c rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x381b9c77 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x3834c631 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383e18df usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x3855382b snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x386573f6 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x386800f9 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x3870d0fb nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3870efa7 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x3883b2ec crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL vmlinux 0x3887e5c2 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x388f8b1c virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x389f3654 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x38adefe8 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x38cb3d49 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x38ce38b7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x38d3654a gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x38d64028 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x38da5f2d crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x38dd399e blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ea04ca __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x38f3063c irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x38fbb2f0 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x3900dcb3 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x39174654 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x391b8c69 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x39387a1e sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x393d8d7c ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x394c2082 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x395d380d devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x396cd189 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39817488 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x3989bb8d pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x398ddc7d mtk_smi_larb_get -EXPORT_SYMBOL_GPL vmlinux 0x398dfa9e blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x398f8ff1 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x399da3a4 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a0858d rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x39a5a006 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x39ade0f0 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x39b60d8f skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x39bf562a phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39e36b11 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39f01f78 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a017197 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x3a0ebe2c devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x3a1c3bf6 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x3a290a78 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x3a39c7f3 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x3a41caa2 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x3a4b844b __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a68afbd find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x3a6aceed xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x3a6dc43f pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x3a75a29d edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x3a7c7b1b devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x3a96ac96 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x3a99197e gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aab04f8 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3ab12365 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x3ab59eef security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3ab999da rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad8d989 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x3afa2e36 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3affa0d1 nand_reset -EXPORT_SYMBOL_GPL vmlinux 0x3b1fca34 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x3b2310de __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x3b25aefb spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b62230b bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x3b6648b0 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x3b729f26 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x3b7b5af2 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x3b8caa6c tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x3b8f56e1 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x3ba26281 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x3ba27c0a pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x3baa5c49 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be3cc8f pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3bf02f1b ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfe48de n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c003bbb pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3c112726 snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2bfb65 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x3c4ea18c of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x3c57c375 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c651f33 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x3c680e89 sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c8afa57 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3c8f935b __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x3c99b8db ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x3ca4d2eb ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x3cb556bc devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd34366 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x3cd4e8e3 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x3cde2c5e inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x3cdf4551 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d26a1aa ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x3d2ff808 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d38b52f ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d4235e9 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x3d4396fe pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d567497 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x3d5a9013 nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0x3d5c6848 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x3d5e153c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x3d772922 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3d77d3f0 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x3d8518fc __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3d8de1fd regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3d930ce8 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3d995491 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x3da81418 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dcc201a pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de7d891 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df8369a wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x3dfc76cc i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3e161b53 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x3e1bcf40 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1f3b29 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e23fafd usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e38009e device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x3e3d60f3 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3e4e29d5 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x3e5f5622 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x3e5f8abf scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8bb60e mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x3e8dec8f of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x3e94928e security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x3eb56669 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x3ee1e62a ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f0ce4b3 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3f23c729 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x3f241bf6 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x3f3f662b crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3f4ba0ca dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x3f5542d3 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f577ad8 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3f606e38 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x3f6cec7c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fb79766 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x3fdebe79 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400c2209 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x4025adc7 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x40294b58 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40520f98 fib_table_lookup -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 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40da6c5a tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x40db98e2 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x40e1103a tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x40efcea7 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f1d083 snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x40f51fb0 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x40f79de7 usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fb14a3 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4103057c skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x41080f89 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4111d8b5 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x41128e28 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0x411760d5 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x411bc284 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x412c7061 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x41303482 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x41369a26 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x413795aa vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x414c4119 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x41517e1a blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x4152ab73 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4158778b crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x415b41dd sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x415c8743 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x41736f29 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4187db9c remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418b8269 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x419f4013 nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x41a2176b usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x41b8c450 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41baef60 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x41cec186 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fa27f0 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x41fe89f2 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x420b5344 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421d0aca mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x423c861b sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x423cd8fe rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x424a2a71 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x42588ff2 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x4258b925 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x425c9a7d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4278eb64 sdhci_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4288487d mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x42887525 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x429d6fac udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x429f969b debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x42aadcce clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x42bb604c tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x42be41c8 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x42c82629 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x42ec2141 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fa3455 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x431e8d7e housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x432201f8 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x43254aab virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x434dafa6 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x43713995 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x437227af snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x437f32a2 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x439d41c5 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x43a234a5 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x43a9d71c of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x43ad419b led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x43b195e9 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x43bb6ef3 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x43c11218 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x43e9acc8 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x441152e3 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x4411aed2 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x441c2507 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x441f57ff free_bch -EXPORT_SYMBOL_GPL vmlinux 0x44278154 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x44282ca2 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x44339406 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44531e80 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x446092a3 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x4464570e crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x4471c1f3 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x448124f0 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448e4afd blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44985362 bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x449fe4e2 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x44a0b8b6 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x44aa0100 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x44ba1042 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d16136 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x44ebb0f2 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x4501a4a1 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450b058b snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x450d10cb kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x451ccc35 usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x452dd23d serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4562f8e4 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x456d5081 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457aa9dd regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4593de6b snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x4595806c governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x4595b6da crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x45b39815 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x45bd80b1 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x45c070d3 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x45cb4afd blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0x45d3f920 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x45f1bc79 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4604aebf devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL_GPL vmlinux 0x4619e14b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x462af22c snd_soc_new_compress -EXPORT_SYMBOL_GPL vmlinux 0x463581f5 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x4641b2fc iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0x4646beca crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x466949a6 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x46876588 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468b075e wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x469c8a19 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x46b64948 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46f37dfa of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46fe724c kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0x470b652e bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x47131a3b switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476b771c inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4776ab6b skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a4c1be fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x47a5aed5 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c641dd snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x47d64a09 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47dff48d crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x47e51939 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x480c314c sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x4817613b kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x483b0271 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x484548f4 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x4849d433 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x484c258b ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x4854b3f3 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x485f12a2 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x48636d02 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x48660f22 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0x48746687 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x487710de usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48b10ffe bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x48c01790 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x48c1bc2c desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x48d2712c snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x48dc6db3 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x48fdb626 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x48ff7b85 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x49196a05 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x491df7eb fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x492e284d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x492e67ef tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x49303660 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4933cb7e i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x4940126a ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x496a7862 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x4976c2d7 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x49833e93 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x49883d01 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x49895d86 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x4989b585 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x498cdb18 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x498d035c switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b8b1d6 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x49bada6a clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x49ce0835 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x49dfa9c2 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x49e90d0f pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49fd055d mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x4a09e004 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4a0bf996 dapm_pinctrl_event -EXPORT_SYMBOL_GPL vmlinux 0x4a2315f5 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0x4a321080 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4a338328 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4a47b668 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x4a4d60fe phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x4a4fa085 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x4a50f1bb regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x4a6491ae nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x4a7e6875 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4a80ea44 snd_soc_find_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x4a8729f1 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x4a8b34dd mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x4a9134be snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0x4a996fba kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0x4aa2b905 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab98cb8 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x4ac004c2 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4ad09463 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x4ad29527 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x4b045b38 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x4b0b57d7 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b0f5e4d sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b187e4a of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x4b2221a0 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x4b28c346 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x4b30354b mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL vmlinux 0x4b3d3bba ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x4b4694a8 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x4b517931 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b6b0936 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x4b73c556 cpts_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4bb4c67d crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x4bbb0d0c ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x4bc301d4 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4bc574a1 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x4bc60fc1 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4bc95fe0 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x4bdbcea7 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x4bdd3032 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x4be73da5 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x4bf8f7cc gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x4c05683a mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x4c209ad5 flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x4c2d0c70 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c5193c1 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x4c579218 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x4c87d2f2 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x4c920c4a blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4c976db9 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x4cae889d edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x4caeca28 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x4cafb9ce thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4cb08057 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x4cb1cf44 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x4cba847a crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x4cbc3b2c rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x4cbe69ca validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x4cc143b3 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x4cd9b716 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x4cdc83ac ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x4ce9d5e5 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4cf17d9a hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x4cf1cad9 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x4cf291bd dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x4cfb85d4 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x4cfc9043 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d09a302 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d139c6b gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x4d184168 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0x4d1c87f9 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x4d21d4c0 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x4d220e10 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4d2fb8e9 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x4d345fd1 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x4d35897b fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4d3687d9 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4d390aaa da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x4d418347 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d55327d attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x4d56d5d5 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x4d63aa12 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x4d8d3c2c snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x4da5f875 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x4da883ce cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dc4241e devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4dd6320d usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de9977a gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x4df1bfb7 clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x4df391d4 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x4dfa8656 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e229322 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x4e23413f omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e41b376 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x4e526f6d crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x4e5df78a snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4e7062d8 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x4e918267 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4ea63109 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ee78fb7 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x4eea5139 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f165c9f usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x4f1cf45f spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4f28f520 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x4f2fc190 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x4f313807 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x4f543ff9 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x4f546853 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f81b817 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x4f8c9ca0 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4f8ffda6 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x4f93ce57 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x4f9833c6 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fc50dff devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x4fd64544 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x4fd8d5b3 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4feb24b9 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x4ff2f150 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL vmlinux 0x5005a68c bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x500e57cc usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x504de2a1 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x504e1b13 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x505865e1 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x505a879a xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x505c56f1 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x505e8fc7 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x5079dcd8 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x507bc3aa dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x508046b9 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5098333e usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x50a7206d dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x50ad0297 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x50b58077 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50d1f3e5 musb_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x50e64d50 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fb3900 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x511cd311 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x511d7aac fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x512f7525 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x5131829e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL vmlinux 0x51438afa devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x51445c2d devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x51636dc4 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x5193690c regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x519ebcd1 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x51d486a8 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x51d59eb4 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x51f06080 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x5201363a __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x5206f681 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5210ec98 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x52132298 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x521dc9ec of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x521eb141 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x5224df07 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522bd3b4 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x524c814c ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x5259bafc ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5267c43b led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x526fa3e2 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL vmlinux 0x527b98bd of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x529baf9c sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x529ef0ac del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x529ef185 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x52b4224d devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x52bf9915 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x52c2bbdf snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x52ccb77a perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e68b95 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x52f0e6ca unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x52f3d642 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x52fc339a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x531326a4 devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x531affda devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x531e1227 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x5324b09d regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x532dde54 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x533b51fd ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x535d7160 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537d8a8a fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x537e5295 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x5387e02f snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x5389fffe skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x538b7c69 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x539e2169 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x53a65d29 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x53d474a4 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x53d81797 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x53dd30f7 xhci_mtk_drop_ep_quirk -EXPORT_SYMBOL_GPL vmlinux 0x53ee15d2 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x5408feeb pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x540f0653 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54232276 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x54240af4 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x543650fa snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0x54372398 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x543741e4 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x5443d085 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5447c3e6 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x54686272 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x5470e66e to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x548fe544 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x5491f0fd xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549b0a5e regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x549b98b5 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54c5cf9a iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x54c71d64 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x54dff038 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x550943b4 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x5509bfd4 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0x5513611b ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x551fac79 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x55234736 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x552bb7f2 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x552d46e8 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x552f861c snd_soc_dapm_put_enum_double -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 0x5553c44a gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x555bb161 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x556986f9 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55840edb rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x558df939 iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x5591473d usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x559507aa irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55aaa668 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x55b974ca platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x55c43cbc software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d47e53 deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x55dfa386 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5604bbe5 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x5615e0a0 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x5616f381 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56177796 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x561956d5 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562be32e init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56389a67 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564e4120 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x5653892e free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x5663ede6 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x56a62619 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56b624fa regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56c83eb7 nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0x56c98b44 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x57004b53 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x57038494 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x5708a075 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5711cd2d pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x5716cc97 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x572021be regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x57275c16 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x5740dfed trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x5749232b dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x574b4308 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x575762ac __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5761436f snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5764d460 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x57710102 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x57741408 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x57760922 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x5778961c i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579200ec sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x57a9ae0c dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x57bf6c25 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x57c2cac0 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57c451cb check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x57d60c88 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x57dec62c crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x57e36b50 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x57e37b9f usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x57f160e7 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57f80800 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x57fc2d74 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x58042871 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x581bdf60 xhci_mtk_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x582319eb pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583ae0ce xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x5843cf5d device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x58534b2c virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x5875b5cf extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x588405a2 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x588bff1f usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x58908aea dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x5895ff39 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x589fd727 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x58a43f61 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x58ae4038 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x58bc649b crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x58cd51aa __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x58cf186c extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f5520e devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x58fc3917 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x590dad71 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x59179ae9 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x591f0573 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x5923d440 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5933e46b virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x59362eac tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x593d739b ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x594d1903 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x5972afe0 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x597ca102 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x59a9b867 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x59b75ce9 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x59cd59b9 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x59df6273 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59e80ea3 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x59f9d9c2 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a0b7d2e mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5a161fda noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x5a363aa8 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a76e56b sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a97b6a3 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x5aa12c27 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x5ab02433 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abb9175 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x5ac24451 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x5af60cae pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x5afb3998 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x5afb43b9 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5b11ddc3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x5b15f3b3 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x5b1d71ca pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2686fb regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x5b621179 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5b6821f4 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b8ff21c dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x5bb5d52a snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbee609 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5c021395 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x5c0f11a0 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x5c10ffd4 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5c1295f4 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x5c15add2 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c44b0ee pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x5c50055b spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x5c5887c8 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5be4d8 md_run -EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x5c6c9222 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c832435 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info -EXPORT_SYMBOL_GPL vmlinux 0x5cad1d22 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb4866b irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x5cbf61bd platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x5cc7877c fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x5cd42e6b genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x5cda7263 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x5cee541d kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5cef6897 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x5cf7e093 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x5cfac030 mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x5cfd13e3 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d04ab87 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x5d0b1359 device_create -EXPORT_SYMBOL_GPL vmlinux 0x5d168f5f usb_gadget_connect -EXPORT_SYMBOL_GPL vmlinux 0x5d3cecdb ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x5d6ac6f2 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5d708f99 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x5d7563ed devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x5d7ddb0e trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x5d882ebf subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x5d8c493a pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x5d8ea9d5 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dae7bd9 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x5db1f1a8 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x5db5d332 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x5dd288e9 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5de79c69 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x5def1572 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5df4c625 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e09d118 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5e1b48f7 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0x5e1f7af2 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x5e29e2fd usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0x5e35d013 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e62adb1 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5e77e134 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e8d4771 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x5e94a67f ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x5eae0acd device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x5eb776b7 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5eba0a2a devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5ebffb28 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ed1daa4 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x5f157be1 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x5f16e5fe bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f38547e perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x5f3a8362 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x5f420d9a ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x5f4a8438 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5f4b4208 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5f577029 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x5f61d694 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x5f632d78 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x5f67a8bd devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f71010e of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x5f7e3f11 tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x5f88c47f sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x5f939ebc irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5f9e1a1a __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5fad27da nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x5fb59c0a bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x5fb67052 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fc23f2c wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x5fc2c660 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fc6fed0 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x5fcea4b9 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x5fdd89fa flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x5fe4fe5e powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x5ff42c63 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x5fffb090 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x60090ef0 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600bff7c phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x600f8257 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6023eb40 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x6025562c led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x60298f08 __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x60305f96 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x6040574a pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x6055522f regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x60628ee0 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607e62f3 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6092cfcb kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6097be07 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x609874b5 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x60994d1e pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60afdd58 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x60b0361d nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x60c2a662 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x60c9c018 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x60cf2851 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x60d39663 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x60d40e8d clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x60e22395 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x60e9f86c device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x60f55896 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x60f894a3 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0x6105ec75 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x6117234f find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612d273b nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0x6135ad35 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x614150ff __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x614c486b cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x615cdcf6 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6176f666 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618a6879 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x618bdcab fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x61a6e27a arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x61b040b2 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x61b21cfe crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x61c99685 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x61d8bf8d regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x61e1bde9 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fde452 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x6213b1cc vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6230c415 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x623a78f8 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x623dc04c __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x623fe6cc regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x624f3b21 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x6253bdb8 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625e4d1f snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x6265fa12 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x626d2c04 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x628ffa92 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x62956e15 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6297d228 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x62a51c1c crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c44aa6 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x62c9d4f5 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6316f6eb iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x632c8c9a snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x63407dd6 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x635fc6d3 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x6366f02f thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x63822864 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x638c947a class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6395d2f4 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x639a045e device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x639acf3b pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x639caa02 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x63a15444 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c5948a dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x63e14d80 usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x63edd1d2 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0x6428f782 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x643ff178 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64617f63 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x646d24db mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x647eb1df hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6485a537 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x64889d88 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x648b3de4 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x648c5ef7 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6492700b snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x649fd344 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x64a6b935 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x64b9e35f kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x64c4d708 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d7ae69 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x64d98cb5 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x64e36e76 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x651f45b2 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x652771a6 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x652e753b dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x653ae3b0 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x65443946 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x65538311 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x65598f57 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x656d1a4f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x65784e19 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x657ea1f0 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x657ee480 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x6585b7a2 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x659805d7 sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0x65a4b9d2 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x65b775ae spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x65bd11b1 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x65c62332 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x65c95786 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661eed5e fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x66334d95 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x66336d8d clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6635826c ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66370684 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x66490f89 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x664e46b9 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x6657bfab fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x6659c47c sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666dce8d pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x66718a8c regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x6680991f inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6696eaf2 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x669a0cbb mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x66ac2932 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x66b5154d pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x66b9072d regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c22895 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x66c8ff71 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x66ccdc6e devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x66cf3477 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66df8656 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66e31e05 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x66e45f72 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x66edbda3 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x66f5fe89 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x66fd1d6f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x670378b6 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x672e7b67 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x673466d8 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x673f401a user_describe -EXPORT_SYMBOL_GPL vmlinux 0x6748aa73 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x6760bba7 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6762f865 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x676b9193 firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0x67746b56 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x677798cf devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679e59a3 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0x67a6f7b2 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x67cbad78 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e9db68 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x67f79bc9 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6821c622 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6821d927 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x6847f6df shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x684be12a virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x6853b73d gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x68615f82 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6865ffe1 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x6879e66b regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x6879e9c8 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x687a94ee usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x6894835c __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689c45e6 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x68a60e31 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x68d08085 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x68e0b27c ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x68e2acc4 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x68e6afa5 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x68ebeba5 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x68ec6db7 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x68f37e9f __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x68f67595 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x690526f3 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x69062ffc irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x69125d44 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x691c1eff usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x691c85b6 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69347234 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x693d7496 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x69452150 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x6956e5ef netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697f851d skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x698e9d84 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x699b2ad1 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x69a576ab clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x69ac0ffb dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x69ce4dc4 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x69d547b4 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x69e27ee4 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69f05e03 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x69f8f641 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a08f0c3 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x6a0a1996 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a200c25 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6a24227a ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x6a2971e1 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x6a321de3 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x6a4604e1 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a49c58b fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x6a4eda77 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a4fa217 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x6a54933f serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a60eb10 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x6a6c1137 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x6a6c3f14 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6a7127ae wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x6a771b64 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6a7c0cae cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6a8967bd gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x6a8b4194 xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0x6a96a1b2 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x6a9d597d mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aa80673 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6adc286f snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x6ae641b6 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x6afced97 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x6afe6617 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x6b063659 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6b11729d usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x6b182826 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6b1884cf __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6b1923e0 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x6b19d39f fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x6b1d37de devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x6b22157b clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x6b27e6f3 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x6b31c4b7 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b4e459e ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6b5b9fef sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x6b72e663 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8f68fa sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x6b9797a4 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x6babf0fa spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x6bb1d5ed snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x6bc0712d regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6bcadef0 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdf55fd gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x6be2189e devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6bfad17f usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL vmlinux 0x6c269971 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x6c2e8d83 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6c30187d __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c4513b1 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x6c4516d9 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c4a7e66 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4f2612 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x6c5a99c4 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x6c61cd91 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x6c649c1f virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x6c75ff1c hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6c7622be of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x6c7999f8 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6c8ca77f __module_address -EXPORT_SYMBOL_GPL vmlinux 0x6c950fc4 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c97c8b9 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca51247 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x6ca712dd dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x6ca82c86 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x6cca6604 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cf31d9d nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0b8c5e percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x6d0f2f1b of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x6d10798a dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x6d1c9c0c __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d59da47 musb_root_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d76155b gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x6d770f1c extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8075b1 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x6d8904cf component_add -EXPORT_SYMBOL_GPL vmlinux 0x6d8de76d bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x6d8f55c8 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6dba1e57 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbc0e60 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6dbe2c1c crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x6dcd7494 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x6dce00e9 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x6ddc5519 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x6de25be0 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x6dfabed1 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x6e08dfcd aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x6e0ed920 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6e16dbce platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x6e2d4556 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6e3d30c5 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e430a2d devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e88394a usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ea12f1c ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x6eb6c58e power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef4fc5d sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef90b80 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x6f03a533 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f17aa10 nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0x6f17bc38 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6f1b7514 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x6f24729e stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x6f256a96 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x6f274552 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x6f584de0 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x6f595383 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x6f5e6e3b bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f618f88 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x6f6413c8 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f708000 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x6f7770fc fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x6f91fbd6 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb0715f usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register -EXPORT_SYMBOL_GPL vmlinux 0x6fc5a15a serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x6fc619f8 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x6fcfee7d iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6fe3d417 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x6fe8f4e8 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x6ff12dc5 mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x6ff487e0 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7023fcd1 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x7026a0e8 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x703b0ad2 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x7055a0cc gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x705f0b29 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7069ea75 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x709a24cf devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x70a0b460 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x70aeffce kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x70b575e6 list_lru_walk_node -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 0x70ecaae7 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x70ee2849 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x70f5f5b4 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x710ae21f fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710feb57 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x7132a536 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x7138ab8f tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x713a44d4 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x71402dbe thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x714f48e3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x715bddf3 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7172d933 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x718fda1f balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x71903d35 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x71951ce4 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x7195b82a sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x71966d99 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71bb873f devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x71dadb04 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x7207dc3d yield_to -EXPORT_SYMBOL_GPL vmlinux 0x721e8299 nand_erase_op -EXPORT_SYMBOL_GPL vmlinux 0x72229f32 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x72239c8e qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x722ebcb7 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x7247e6bc gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7266da5c crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727a0eda of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x72905fa5 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x7290e4e5 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x7299c4f2 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x72a03fab nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x72aabae0 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x72aee1ad sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72b81ed1 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x72ce7420 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x72cfc944 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x72d68aa8 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x72dc6e33 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x72edc366 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x72f1b37d irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x7317feef hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x731a3335 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x73282983 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x733560a4 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x7348f0b4 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0x7377db24 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x738c309a ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x739230ff relay_close -EXPORT_SYMBOL_GPL vmlinux 0x73a01569 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73cae090 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73f44a05 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x740989d7 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x740fe5ef snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x741a75db genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x742c205a blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x742c36ba fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x742eb0ce __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x744acda1 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x745a19ed proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x748119ab crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x74a09fe1 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x74a71f63 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x74b537b9 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baa9a7 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bf9bcb kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0x74c66eb7 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x74cd7740 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x74cedf99 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x74df3840 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x74e0585e trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x74f086ec bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x74f0e44b wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x74f5b0b9 __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x74ffd85d usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x75086c3d encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x751318f5 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x751a5ed4 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7537f849 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x75414b63 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x7554161a rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x75631041 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x756a875f crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x75791999 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x758e8fca devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7595fa0d extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x759f1ded blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x75a8dad2 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0x75a8ee42 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75cb03b7 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d9ae40 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75f66425 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x761cde23 blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x762f1d4b regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7638f945 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x76408bcd devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x7658b191 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7671e335 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x767b91e8 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768fb76c do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x76b7b8f5 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x76b86ef3 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x76bd3edc pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76d34c7e ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x76d47638 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x76d58cb0 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f7b4ed ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x76fac784 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x76fbae33 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0x76fda76d pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x76ffe2bb sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x771838b8 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x77319743 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x77473393 cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0x774aaf65 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775bc353 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x775eeb1c sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x777662d9 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x7783618a ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x778e95dd alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x779080ce snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779ec46d xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77dec369 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x781645ea crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x7818a801 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7823f5dc sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x782a1528 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x783dae75 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x7847dfb9 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x784f439c iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x78574819 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b8752 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x785ec150 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x786d1c2c list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x786ec27a edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x788e6f52 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x788ec9b1 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x789089a7 arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x7891313d snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x78a354c7 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x78a93c4d snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x78b7f324 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x78cea7df irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x78d99ddd ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x78e4640f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x78e7cf4c crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x78f18b30 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x790f167a pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x7940325c pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79459457 setup_irq -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 0x79565520 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x7961f536 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x7992cde5 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x799849ad sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x79a2133b devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x79a47616 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x79b0d95a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79c7db33 udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x79d939b4 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e53de9 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x79fbf7f7 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x7a0912c5 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x7a1504ac iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x7a1b9dcc nand_status_op -EXPORT_SYMBOL_GPL vmlinux 0x7a1f7b61 sdhci_set_ios -EXPORT_SYMBOL_GPL vmlinux 0x7a24231c inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x7a34a451 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0x7a35f0ce nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7a371ec5 clk_hw_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0x7a4dfe92 sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0x7a57f397 device_del -EXPORT_SYMBOL_GPL vmlinux 0x7a5d362f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7a6b3da5 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x7a7078c3 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7a33fd of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x7a7fea40 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a832612 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x7a93900b devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x7abed866 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7adfa85a virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x7aee1626 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7afec72b virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7b075ba7 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x7b169b36 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1e7533 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x7b22beb4 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x7b382778 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7b4c5a86 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b637657 gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0x7b70e2d3 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x7b7ecbf8 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x7b80da93 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x7b8bcdc1 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x7b944c5f srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9bc358 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x7b9f9a57 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bb353b0 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x7bdb741b sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x7bf7e09e sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x7c076263 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x7c0b8ff7 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c1f99c3 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x7c2f6265 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x7c403969 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x7c44d414 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x7c633669 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x7c6601ae __put_net -EXPORT_SYMBOL_GPL vmlinux 0x7c7ff201 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x7c8310fd scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7c853b92 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x7c8f729a nd_region_provider_data -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 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ce58e34 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d1ee3a1 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x7d30e23b ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x7d3bd703 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x7d445937 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7d48a75c tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7d59cc29 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5be46d regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7d613bbe __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7d631417 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x7d67c130 mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0x7d7bb71c __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7d98f289 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7da595a0 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7da7ccd4 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x7dbc47c7 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x7dd378db __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x7dd609ff crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddd77b2 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x7dec41a3 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7e0ad0f2 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x7e10616d ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0x7e12ff05 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x7e25f94c devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x7e48d93c ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x7e49f551 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x7e512483 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x7e57ec74 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e79b13a sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x7e7da550 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7e7fd930 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x7ea391c8 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL vmlinux 0x7ea99f63 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x7eadddfe rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x7eb3912d tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x7ec0370d edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x7ec0b85f cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x7ec4b65f kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x7eccfbcd crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x7ed6476a probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x7ee73415 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7efdee89 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7f00f5e0 sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x7f05a149 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7f12cb2f snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x7f339c56 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x7f37a173 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f3b9536 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7f3f8f66 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x7f516fc7 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x7f615af0 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f81610b dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7fa720a6 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x7fad7cff dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7fb5e3eb __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7fb8c476 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x7fd27bdf skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x7fd9b595 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x7fe4f492 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x7fee9dab alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8014ff55 nand_deselect_target -EXPORT_SYMBOL_GPL vmlinux 0x80187a52 clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x8018a3c9 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x801f2d61 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0x803bda28 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x803c6d43 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x803f8e66 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80593771 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x806c987d gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x808406b1 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x8084f596 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809645ad pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x80b55117 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x80b9dbe0 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x80c56d29 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c8fc25 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x80c92c36 clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x80ca17fb trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dae4d0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x80ef74b0 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x80f1b994 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x810470f1 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x810b6b93 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811ecfc8 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x8138d099 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x813c1289 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x81465c55 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8163b693 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x81650f0b get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816fb7f8 snd_compress_new -EXPORT_SYMBOL_GPL vmlinux 0x81735ce3 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x81755ed0 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x818b690d tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x819f0011 mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x81aaafdf sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b440b3 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x81d77bfb pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x81e59c83 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0x81f2b867 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x820fc81b ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x821a07e9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x822c9bab uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x823bc231 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x823e1d21 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x824658e6 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x82489189 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x825cbed0 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x826a0f12 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x827fc4ac pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x82a433be sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x82a8e0f5 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x82bc272d ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x82c9beaa devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x82cef9f1 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d09ecd mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d7deff pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x82e637f3 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8306af7c __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x830bb21f locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x8312ce86 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8321e0a1 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833a7c41 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x833de4aa crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8360b113 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x8362b406 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x8367816b ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x838fa9d9 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x8395bb09 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x83b5b75b hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x83b65bac perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x83c6c946 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x83c71462 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x83dc7cd7 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x83ed0dae trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0x83f404d4 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x83f9f418 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8406e50e snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x842598b8 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84272fd2 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x844f36f5 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84553402 blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings -EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84732b62 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x847595f0 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x8481cbdb crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x8488213a usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b0a429 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x84b3d9b8 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x84b603f2 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x84c35502 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x84cdd57f kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x84cfc949 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x84d35a1d da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x84d5631c devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x84f18c1d usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x84f20f45 spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0x84fd4610 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x8522480d rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x8532c125 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x85353ef4 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x8549191b sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x854bc749 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85679d27 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x85700f46 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8570f468 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x85735f73 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x858beb5a iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x85920e94 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x8595dd63 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x859a5ab8 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x85a4887a fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85a4ca2f kill_device -EXPORT_SYMBOL_GPL vmlinux 0x85aca8ec user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x85acb812 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x85b3f3cf inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x85bf67bc devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85c67c57 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x85eae188 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x85f76581 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x85fa0600 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x861bddb2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x861c3d32 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8645de86 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x8646a0c3 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x8646d327 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x865388bd __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86640dbc ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x8665230b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x866e9e40 iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x86806218 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x868219e5 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8689c68a fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x869c37c7 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86dfcb96 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x86ea2968 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f9f015 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x870b3c08 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x87182583 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x87371aec dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x873d4a50 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x87427313 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x8753b37f kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x875593f5 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x877d3ac3 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x877ebb02 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x878cb467 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x87a94a08 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x87c2e098 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0x87c77c00 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x87cec02e device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x87d0ef63 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x87fc9df7 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x880daa15 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x88199637 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x88236e88 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8824cd58 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x883ca9d7 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x883e5391 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x885a8a53 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x8863a135 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x887097c6 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889026bc regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x88a0289e pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88afd79b inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x88caa663 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x88ee5b26 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x88fac063 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88fd59ed perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x890ae32b of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x890d10dd tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x89127f17 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8937c7bb rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8943bd68 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89510dce __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x895ab0a8 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x89755f77 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x898aa33b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x899332bb xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x8998bfa5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x89a1dc17 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89aa21c4 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x89ad1813 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x89b5cbbd usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89c2390a xhci_mtk_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x89c2e0c3 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x89cb6de6 nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x89d97b25 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x89ed556e devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x89f9a481 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x8a00b3a4 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a0e0ab4 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x8a195b9e security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x8a1a20ee snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x8a28be8b snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a588bac skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x8a5f1e43 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x8a608b20 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a67421c iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a7b4d87 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x8a7fb3d5 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x8a8ad5ad regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8a8cc02e crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x8aa02161 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8aa92592 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac84ebd dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x8adff449 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x8afc1282 snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL vmlinux 0x8b11659e device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x8b123455 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b14ec97 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x8b19296c cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0x8b226bd9 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8b387b22 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x8b42d2a5 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x8b4a032b snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b52ad85 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8b569d69 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x8b61e50f metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b7c8acd sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x8b7e5a6d dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x8b837c9f sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x8b8a0246 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b93a2f0 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b9b2f87 of_map_rid -EXPORT_SYMBOL_GPL vmlinux 0x8ba03d9b devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8ba49f6e bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x8bba3173 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x8bbdd43e xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x8bbef3c6 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x8bc92ebf pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x8bd40607 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0c7e4b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x8c102bef relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x8c22fa36 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x8c2580a7 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x8c2921e2 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8c2aa031 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL vmlinux 0x8c334c27 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c76ca12 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x8c7bd877 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8ca43d crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x8c94538f sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x8caa7b85 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8cacba39 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x8caeeeaa rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8cbfd79e fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x8cca2d8a dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8ce0504a of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x8cfa21da skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x8cfb0fc7 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x8d16565a sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3f6846 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x8d59a728 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x8d6f4aa8 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x8d71cda6 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8d784afb devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x8d7bc776 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x8d7d4b68 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x8d7d4bbe pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8d81cd21 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x8d835536 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d933907 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8da77c5e pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7af6 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dcd1169 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0x8dcfc8a1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x8dd1bd23 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x8de45ccb bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x8dfa83bd driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8dfc243e bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x8dff0246 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x8e01619a irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x8e023f35 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x8e070096 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x8e10ec8f ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x8e26c408 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x8e3e0734 md_start -EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4cc7bc raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8e5ebdb9 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8e600d6c max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8e65b87a tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x8e78b336 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x8e7eff3a debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x8e833ceb kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x8e85f069 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x8e8785d7 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x8e8a2b8d blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x8e92bc9f mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8eacf0c4 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8efd1512 __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f1c833b is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x8f1cf952 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x8f21ff65 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x8f23a3be kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x8f2735e2 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x8f2a0726 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x8f2d6155 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x8f32842c shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x8f4502d9 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7ce3c0 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x8f8b0c5f pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x8f8c2856 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x8f8fe3ab md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8f9a7b01 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8fa6a257 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x8fcf997f crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8fe774ca simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x8ff070fe genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x90150927 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x901c6c99 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x90252c55 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x902e057a arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x90319a53 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x9034cd63 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x9038ed9a bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903c0e05 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x904eb7c0 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x905001b6 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x907cfeba gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x90be74ef led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x90beed58 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x90c9bfe6 i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL vmlinux 0x90cf8c27 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x90dd7a52 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x90e99fc6 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x90ec0b50 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x90f59cb7 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x90f87513 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x90fd3070 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x9126bc61 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x9133c6f7 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x9140347b pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x9147993c device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x91789778 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x9186375b fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x91938636 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91a6f6c1 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x91bb765c nanddev_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d70185 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x91d950d1 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x91e9a3df mmput -EXPORT_SYMBOL_GPL vmlinux 0x920a6108 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x920e3e1f nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x9230086d regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x923af982 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924f8e02 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x92513afe usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0x925749d0 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9260fef4 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x92682ffe pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x9282f433 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9285ceb2 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x929147a6 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92b6bf3f usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x92bab8dd powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x92bef43d i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d72357 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92ee1138 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x92fa4192 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x930a234a dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x93198aef dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x931a6aeb dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x93208fab sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x9329a61e blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x934e520b driver_find -EXPORT_SYMBOL_GPL vmlinux 0x9362649c phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x937b009b fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x937b1fe7 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x93848114 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x9384d9a9 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x93a5f73f sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x93a92e7a amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x93b14d9c direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0x93bcccab mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93e21c75 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x93ede9c7 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93fb510b list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x940288f6 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x940578b1 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x94083253 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9417e9bd bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94322792 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x943b1cac pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x945a9e28 cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0x945e2e6c dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94728ba3 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x94816c92 usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x948c7a64 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x94a09444 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x94a248bd mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94b82299 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x94d0591a kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x94e95b17 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x94f70997 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x94fe33f1 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95317a5a vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x953d7b09 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953e6e4e genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x954372f1 nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x954519c1 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x9551f4e6 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955e95cb lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9572818b usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x958596c8 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a2df11 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x95ad2215 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c5c251 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x95caa42a cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x95dc5941 __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x95de533c vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x95e0f16d dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x95ea2645 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x95eb0bb0 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f067c4 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x960f693b account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x96111980 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x9618600c dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x9649b777 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x96553f7b handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965811b9 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x966f7d78 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x967329f9 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x9681f672 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x96a0ede7 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x96a5d8c8 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x96c536b2 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96d07d35 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x96e47895 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x96eacba2 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x96f17c73 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x9704f662 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9712133e seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971574fa pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x971d61f0 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x974040b4 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97571564 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9765a955 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x97770670 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x978e403c sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x97a74bf9 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x97b23390 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x97b71dc9 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x97bf23ba serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x97bf8e5b devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x97c781cc mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL vmlinux 0x97d76211 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e284e2 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97e83853 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x97f19c03 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x97f4d6c7 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x98007b4a find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x980b7635 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x980e2b91 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98390459 cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98611ca2 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x98792182 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9879d660 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9888c4b5 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x98b79ba0 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x98cca9ee pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x98de69c4 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9917d77d devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9935d016 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x994e8343 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x995ba617 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL vmlinux 0x99791079 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99943cdd serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x9995a40e rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x999d4b5c dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x999e28dc regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x99c9dcfa wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x99d84eca fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x99da672c fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x99e17ef0 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x99e1e756 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x99ea9cab of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99ff4079 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x9a022f64 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x9a048866 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a15478a pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9a16ca00 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x9a1c080c ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x9a1db91d irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x9a2e4c8a pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x9a3b302d snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x9a4750d2 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9a4bb692 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9a4c258e cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x9a4fe5e1 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9a574686 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x9a5f88f2 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9a653a06 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x9a688503 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x9a6b0ca2 get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x9a78aceb sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x9a86160a skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x9aacddd3 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x9abef772 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad330db sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x9ae63ef9 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aefc1dc sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x9b1a4826 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x9b28bfc7 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x9b476239 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9b498826 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x9b499d92 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b5500d2 cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b6b6ae3 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x9b722089 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x9b7ca0f8 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x9b867a0e alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9bb10e7e xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x9bbf611b stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x9bd00d0e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9bd238ce spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x9bd38073 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x9bddab3d pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x9be8ff9f device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bedf6aa fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x9bf276cc nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0x9bf3f98e simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x9bfb8127 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x9c044dbd pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x9c1f6cbf dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x9c3038e9 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9c42ea4c shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x9c5e0dee __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9c69c1d5 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x9c6bf00d tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x9c79be8e blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x9c7a7fad serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8ce728 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x9ca562f6 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x9ca5e1b8 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ca93017 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x9cb1362d rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x9cb87fb4 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ccd32d1 __sdhci_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9ccd4675 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ce8e735 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x9ce9ba63 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d19c34b rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9d1f1e92 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x9d403956 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x9d50e533 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9d802654 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x9d9bd509 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x9d9f892d iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x9d9fd25a ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x9da57919 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x9dafb530 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x9dba64d7 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x9dedd458 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x9deddf6a sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9df461a7 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9e085862 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x9e19e1ab pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x9e34b509 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x9e42fc49 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e62776f led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x9e6e13a3 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9e730573 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x9e7d0640 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x9e84e86b edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x9e879636 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x9e954257 pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x9e9fd537 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x9ea4be67 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9ea7a1bb gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x9eb69919 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x9ed507fa hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee112b0 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9eedaba8 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x9ef51ab7 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x9efaf7ee power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9f0303f1 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x9f08a16b ping_err -EXPORT_SYMBOL_GPL vmlinux 0x9f0ab7a8 xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x9f138960 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f3edf22 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x9f4d7bf2 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9f600675 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x9f615481 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x9f64aaf2 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x9f7965c0 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x9f898fa0 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f8b7235 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9fbf3021 vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0x9fc13fa5 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x9fc9e572 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffcaa90 xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa00de44c securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa00ee5f8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa027bf25 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xa02a633d platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xa0406b66 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xa04dc844 mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa04fdc9a snd_soc_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0xa0508cca ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0838efa ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xa0872abe usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa09d3938 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xa0a0410d gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xa0e62d4b usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xa0e78278 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xa0f7cb44 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa0f9c5ae usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa101fbda fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xa1109479 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xa11bd821 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa12d144a __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xa16a1780 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0xa1886e2c usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa19562d1 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xa1a7bafc wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa1b21dac bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xa1b4fd52 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xa1b84759 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1d1f0bd platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa1d65f52 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa1f921c8 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1fde38a spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xa202da84 nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0xa20afa62 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21884d6 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xa224f388 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa22d90c8 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xa230d5a7 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xa2351675 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xa2572767 cpts_create -EXPORT_SYMBOL_GPL vmlinux 0xa2617eb1 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xa2624608 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27ecec2 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xa283b2cc sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa29d2cf7 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa2a10b8b sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xa2a54bcb snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa2ab18c8 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xa2c12c5f pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa2c7dd02 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xa2ce4d88 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xa2e1923d ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e89008 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xa2eaa0ec tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xa2eb4641 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa3003958 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xa31c4e78 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xa32ff350 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xa3303a87 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xa33518ce spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xa34459d6 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xa3650624 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa36abd86 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xa36ea15e usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa37bd0b8 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xa37e684f cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa3823f54 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa391e5df iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xa394e122 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xa3aabc16 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xa3b3bab4 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b99d75 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3c108d0 snd_soc_dapm_init -EXPORT_SYMBOL_GPL vmlinux 0xa3c156f9 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0xa3cab19f tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa403d081 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xa407dc72 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0xa40eb687 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41dc2f5 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa422b7da ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa422c390 cpts_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa43be0db fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa443e0a7 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4496ce6 snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44fbefa __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa455209a snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xa455564b page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d8d5d sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xa45ef94c wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa472e458 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48ff79b con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xa4ab9e02 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xa4addce8 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xa4baddac software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa4def3d0 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xa4f3cf67 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa5084aa5 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xa50a1127 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa5274a25 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53c7304 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa53e43f8 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa54776b3 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xa5526652 nanddev_markbad -EXPORT_SYMBOL_GPL vmlinux 0xa5578346 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa56d33a9 mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0xa5928eb4 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xa59e1bc3 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xa59ebed1 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0xa5a8ff33 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa5a981fd wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa5b4af17 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa5b4b48a rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xa5c38cb1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa5c70529 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5d9fcb3 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0xa5da4eca tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60c9529 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa6187a7b irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list -EXPORT_SYMBOL_GPL vmlinux 0xa629ea86 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa62b3a05 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xa635873a debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa63e18a5 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xa643459d blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0xa64a2436 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa655e23c device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa65c22fb fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa65fb664 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xa66a3e18 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xa6700fc4 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa671e903 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xa6721171 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa693571a tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xa697f264 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xa69d93f6 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xa6a8080a component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6bed29e devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0xa6c3f114 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa6da1ad7 usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xa6df4342 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e5be2f dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa6fdae82 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70a2e36 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xa70d4ac7 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa7196994 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa7261888 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xa73c3658 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xa73d1f1a nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa7591e06 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa7a209f2 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa7b28ebf nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa7b2a4ae efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xa7c47214 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0xa7d1cbd7 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0xa7db703f fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xa8064d82 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xa80d7471 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xa819d63a devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xa82214f1 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xa827dd1f sdhci_cqe_irq -EXPORT_SYMBOL_GPL vmlinux 0xa83b3be0 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85534f9 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xa86c396d cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa87d5946 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xa88715da do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xa887f0bf tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xa8906611 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xa891ffb0 device_register -EXPORT_SYMBOL_GPL vmlinux 0xa8953448 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa8959854 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa89cabae sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xa8a2ed42 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8e51d6d blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xa8e9594c mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xa8ec46d0 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xa8ef2ca3 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa8fb4e3c pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xa8fe0d64 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa9108316 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xa9112784 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa917d5e4 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xa929849f pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94a400e page_endio -EXPORT_SYMBOL_GPL vmlinux 0xa94b7b80 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL vmlinux 0xa95bf063 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa963f23a hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xa97638e0 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa991e99b spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xa992e7b7 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xa9991847 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a88ef1 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xa9aad694 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xa9ccfde1 clk_hw_register_gpio_mux -EXPORT_SYMBOL_GPL vmlinux 0xa9d88e35 nanddev_erase -EXPORT_SYMBOL_GPL vmlinux 0xa9de9dae ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ff23d8 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xaa11c7ab gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa28a36c ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xaa29965a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa3bb422 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa46b0d3 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xaa4f2296 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xaa70c3b6 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xaa798332 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xaa895c35 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xaa8b9f8e virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xaa8e826d inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xaaa320bc snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabf7ff5 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xaac4b40a arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0xaaca767c uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xaad3de21 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xaad519e5 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaae95ba6 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaf0db4b usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xaaf15800 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaaf3fcc3 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xab03b725 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xab0ac271 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xab226926 nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0xab2c37be regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab56a000 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xab5f6b69 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab6e9ab0 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xab71c2e2 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xab82206d extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab91eb79 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xab9aaf8c pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba01a10 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xabadad60 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xabb5e5fd rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xabbb9a7e __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xabbda895 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xabd51d9b spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xabdb31dc cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0xac1ab0f9 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xac1eb999 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xac3b1a34 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xac427f43 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xac43eec6 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xac4f5143 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xac50fdd1 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xac5b3e86 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xac6f8517 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xac7df7bd crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xac7e0178 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xaca6d469 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xacaee7f8 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xacb29d84 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xaccacbe0 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xacce0b1e virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xacce5567 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xaceec06f perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xacef2970 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xad17fac5 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xad22ae3c pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xad2a5d4c usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xad2f1afd skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xad3d3680 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xad43b2f8 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad65ae73 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad6fb7bf unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xad868833 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xad913b89 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xad92d28e blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xad97973c dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbb729a sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xadc149b0 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadc5f31f bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xadd4b6b2 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0xadd90ae6 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0xadd9b073 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xadda04ab fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xae196588 device_move -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae34f87c iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3ee541 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae4de5fe cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae581070 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xae5bbf60 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xae5d1e61 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae77fda8 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xae78f9a3 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xae7bdd6c fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae82aa81 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xae98b307 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaea2f13b iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xaea595b4 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xaeacaf5a pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xaead50fa ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xaeaf02a9 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xaeb9c5ef nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xaebfe6ec nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xaec6ab92 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xaecbbbd7 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xaed10c01 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaed6c4de mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf1078ca aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xaf12fbf1 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xaf180939 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xaf1aab4b iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xaf2a7a82 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf5e3e66 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xaf637d4c posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xaf6bf437 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf6c3acb regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xaf71aae5 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xaf94e3b1 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xafb975ab mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafbfc0d0 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xafc00c48 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xafc27be9 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xafd4ff4c kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xafdac935 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafde0247 ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xaff33635 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xaff52cd1 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb02e8720 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xb0346460 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb03d8573 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb03ef9f0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xb03f6ec0 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0xb03fcc38 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xb0486e03 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb05923be mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0xb06810ac of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0xb06f4168 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0720561 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb0746cd8 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb083734a to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xb0984dd6 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xb0a8f522 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xb0b7f334 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b9640a dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb0df8fdc i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xb0f7b76a dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xb0f8bc91 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xb10905fb platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10fb1b7 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12b6954 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xb12c18ed evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xb13b33aa sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb144e379 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xb146b4ea posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb149c9d6 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16afd6a _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0xb171cc68 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init -EXPORT_SYMBOL_GPL vmlinux 0xb175e40b dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xb18110e0 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1a60408 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb1bce226 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bf175b sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0xb1ea7fb1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb1fc6510 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xb2079062 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb21e1cc4 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2316d55 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xb23c33d8 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xb23ffc93 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb247a704 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0xb24d9600 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xb25a1a35 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2621bc3 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27dab17 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb2aba341 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xb2d53cd3 devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2db9bcd raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xb2dcbe4b amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e9c400 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb2fc8d27 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xb2fd12c0 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb304178d ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30965cf inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xb31df651 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb31e4706 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xb328b069 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xb331f32c __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0xb349e979 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb35ee4ca fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xb366f31a devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xb3679644 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xb37d163f pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0xb38e1008 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xb3908f3d usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xb391737d da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb3928a6a fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xb3961b76 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb39ebffb sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb3ac56ea tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb3ad80f8 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xb3aea4b5 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3c62aef ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xb3da5bcc gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xb3e9413c rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xb3ebe460 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xb40a566f pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb414aa8b dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb4166d81 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xb418bfe1 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xb436b602 snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4532716 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xb46a94dc usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xb47c352a sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xb49136c4 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xb49543ee nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xb49de221 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb4a27fda class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb4a6fd2c devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xb4b097fe ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4e1fb45 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0xb4e4dd2c register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f2b5ef ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xb4fc9a14 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5051162 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xb509d2c7 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xb517950a musb_writel -EXPORT_SYMBOL_GPL vmlinux 0xb51ac694 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5213ef9 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xb535f8a1 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xb53cc548 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xb5553304 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xb5689003 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb56bf705 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xb57d7f97 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xb57f8c47 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xb592402f xhci_mtk_sch_init -EXPORT_SYMBOL_GPL vmlinux 0xb5a33a1b gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xb5c020cd rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xb5d4a1e1 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5e03746 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xb5fd89af dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62f536a da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xb62fd4e1 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb63de6b6 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xb6616912 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xb66252c9 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb675f8a2 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb69349d5 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb6962bf3 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb69d1be8 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xb6b707b1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xb6c3da19 cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0xb6dd42e6 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb70ea06e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xb70fc4bc gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xb71a7927 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb732d461 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xb73523ce phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xb73e701e security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xb766e5ff udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xb76ae912 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb772d0a8 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xb789fa45 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xb79b4d59 clk_hw_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xb7a132c9 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0xb7a804eb usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xb7b1f6c1 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xb7b81fa2 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c6a24c spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb7d57314 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb7f92e67 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xb7f9fad5 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb805d374 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xb812191c handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xb814ab2f iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb8194901 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xb81ca14f genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xb81df843 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb82aa12a kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xb82b9a9b pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb83473a0 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb83d3caf of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb83d49cf power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xb83f74f8 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xb84ecf18 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb8589b4a regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb86875df fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xb8701d97 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb87f2208 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89c5021 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xb8a9b029 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e3586d wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xb9058854 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xb90ae432 cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xb9103be6 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb920c016 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb925d5f7 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xb930b5d6 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0xb941c1a3 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb96a6616 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xb97d5ff6 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xb98742ae irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb9abe852 snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0xb9b8988c get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bd2ad2 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d73533 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb9d7ab9d nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xb9de165f platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9df30c7 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xb9e3a849 flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xba0c07ba kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0xba264fab clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3be192 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xba49e718 snd_compress_deregister -EXPORT_SYMBOL_GPL vmlinux 0xba4e73b1 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xba507c4b sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xba8b45c4 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xba93840d irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xbaa396a7 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbaaa284c usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0xbaad2796 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xbaaefccf sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xbab33cf9 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabf86b5 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xbacb4c7e platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xbaceb3b1 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xbadb7924 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xbaf55db2 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaffc118 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1ac66e sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb59338e modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xbb603ff9 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbb6789f9 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xbb69748e rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb8f4bda __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbb902505 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xbb9a101d create_signature -EXPORT_SYMBOL_GPL vmlinux 0xbb9c6145 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbbae6f7f nand_select_target -EXPORT_SYMBOL_GPL vmlinux 0xbbbb5529 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xbbdcfe87 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xbbddc24d __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbbdf0f7e fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xbbe49cb4 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xbc0298c5 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc116d44 arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xbc1bcea7 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbc298974 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xbc45afcd param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xbc692a92 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7102b1 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbc7e3729 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xbc949451 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xbc9913a8 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcbb133f powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc73c70 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcddc827 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xbce73507 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbce91a05 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf2b066 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xbcf74db9 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xbd141a98 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xbd1c0a8a sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbd1f3827 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xbd25b198 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd712d13 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xbda01e1a pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0xbda4209c __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xbda59a43 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xbdad6889 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xbdb832af usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xbde43038 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbde6c61b sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0xbe16fb03 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe195360 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe279f69 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xbe346bfc clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xbe348ef3 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe5a8681 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xbe5bb755 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6d876d sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xbe9152cf kvm_get_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0xbe919a46 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xbe9654cb regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9af246 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbea41ea1 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeadf200 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xbeb3b828 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xbebba2de bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xbec01ce6 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbed65413 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0xbee540eb snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xbef5dd35 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbefb53aa register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf06c09e __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xbf1c4fd5 kvm_clear_dirty_log_protect -EXPORT_SYMBOL_GPL vmlinux 0xbf381254 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xbf469142 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xbf5a4c06 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xbf64ae3b regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xbf672af8 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xbf7074f9 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xbf753f7d pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xbf7abf1a reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf90d227 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xbf93b0d4 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc94703 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xbfca0a2b devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xbfdba20b do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xbfdba5bb strp_done -EXPORT_SYMBOL_GPL vmlinux 0xbfe4dae8 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbffce09b rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc008eea6 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0xc0141cc1 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc01cebcb phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xc02fbf19 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xc0363b8e l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc0420b23 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xc0434ab7 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xc05d69e8 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xc0618fb1 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xc06684ed param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xc0694a91 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc07a0267 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc09f022e phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xc0a0ca6b nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xc0a24a47 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0cd072a tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0dfad34 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f1223f usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xc103c9d6 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc1090714 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xc10c1cfd devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11029b8 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xc11a4a96 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1225927 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xc13d2807 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc144245b nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xc1446f40 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xc16a9865 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1806ce5 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xc1908649 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc19be981 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xc1a2e9be crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc1b12ae5 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xc1c94fec blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xc1cccb66 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xc1e9794a wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xc1eded5a gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xc1ef827f strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xc1f26dfd reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xc1fccc5e srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc20d0fc8 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xc21624ac dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2364719 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xc238615e tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xc2502cfb phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xc2532290 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc261a025 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc288319b power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2998262 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b79b53 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xc2c5deff gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xc2ce896a ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xc2d38ee9 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xc2d4e442 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc30fce09 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xc31bcb21 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xc325476e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc33f8bdb devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34d04aa set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xc35f7370 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL_GPL vmlinux 0xc386d113 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0xc38a42f6 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xc3ac4f80 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3da3e98 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc3e639dc devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xc3e84870 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f72e45 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc40702a3 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0xc4089c60 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xc41263c7 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43381e6 sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xc44f4543 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4730742 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e0425 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xc494dfa0 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc49854c2 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xc4a6ba68 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc4c69835 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xc4d3c3d8 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xc4e0f73f __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xc4ed855e sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f4ee9e vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xc4f7400a usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xc5042b38 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xc50651ce __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc50a9c05 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc50f3638 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xc50ff1d6 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc51bcc24 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc51f3a49 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xc5208b10 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xc52166e7 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc5305888 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL vmlinux 0xc5312c2a __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xc53b77b3 __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xc54978ec device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xc54d737f sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xc5542b89 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xc55505f7 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc55bf7b6 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc562313b pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xc56617ec crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xc568d879 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56e604d tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc581e028 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc59a6af3 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b9bd1f inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xc5cc2fee blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xc5d24fd2 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xc5d82012 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc5da4ed4 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xc5e51ba6 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xc5e95008 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5f53818 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc5fee324 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61a6865 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc6276aed usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc62885a7 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xc6288fb7 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc62bee83 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xc62db5b3 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xc62f56f3 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc6457020 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc64f720c metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc65022b1 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc669a22a dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc681e1d0 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xc69a32e1 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6aa32cc xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xc6c3ed50 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xc6cd9900 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xc6e35212 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head -EXPORT_SYMBOL_GPL vmlinux 0xc6f34cc3 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xc707b46e ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72c253e posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xc73293cb kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xc7340995 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xc7421e28 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xc74c782c crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xc74ffc76 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc75b43b2 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc7664dfb pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xc76e2e02 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xc771f25d alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xc777e6d9 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc77b7d93 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xc781d733 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xc787a330 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xc78e578b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xc796e833 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xc79ecfe0 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xc7a0e583 __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7ba1922 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xc7bf5c5a sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xc7c04ca0 mtd_is_partition -EXPORT_SYMBOL_GPL vmlinux 0xc7d2fa91 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xc7d7878f elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xc7e1c891 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7f7e4a7 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8089cd0 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xc81653f1 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xc8166043 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83bf035 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc841918c mtd_point -EXPORT_SYMBOL_GPL vmlinux 0xc848f1db register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xc857b7f4 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8696746 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc8830eed uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xc88a9f9d call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc891136a __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xc892a5d1 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xc89d6720 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8c11d3f usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc8c4ae81 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xc8c5d9fb bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xc8cac3f2 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xc8cf5a4b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e89e99 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xc8ea074a usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc8fcf520 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xc90f3b52 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xc90f9145 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc9286895 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0xc93a1ee1 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9431f38 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xc945f4fa power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95b7f1e dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0xc97cd63d irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98453f2 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xc9860b02 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xc98d48f6 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xc9991b53 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xc9a8b9e7 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xc9b242bf inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc9c1f42f unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xc9c6ac27 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xc9d393da sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ee15eb devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xc9fdaf3c rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xc9fdccb3 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xca03d603 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xca0d1cda snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xca14c366 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xca191a2c spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xca1c034d dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xca340881 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xca4037d8 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca4f8564 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xca5310e9 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xca538f31 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xca546985 nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xca659051 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xca799a2d serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca93bf2f bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xcaa0a28d usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xcaac1a53 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xcab6539d dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcace93f0 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xcacede67 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xcad2cc76 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xcade6d41 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xcae020c7 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xcae282d5 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xcaf763ed pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xcb06c1dc cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xcb0f4675 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xcb11fa2f cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1e0a29 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb37750b ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xcb3fd58f serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcbc0ccb4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xcbc90845 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xcbd06e3e rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xcbd4d3ec blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xcbd80bc2 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xcbd90ddf nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc05e105 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xcc0d7ec9 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xcc1da150 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xcc20ac52 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc5ca2d1 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xcc6d8ed0 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc891a59 clk_register_fixed_rate_with_accuracy -EXPORT_SYMBOL_GPL vmlinux 0xcc930eda usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xccb62f6d gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xccbcb8bd __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xccbd7398 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL vmlinux 0xccc0696c irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xccc5f931 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd8eb92 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xcce1cd57 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xcce5689b mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfd269b usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xcd01ac01 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xcd0f3284 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd4c7393 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd8b7120 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xcd8d9c8c mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd99067d crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda1c9b9 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xcda7bc09 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc8e786 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcc5f84 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xcdd38c8d rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xcde889d4 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xcdf16edb ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xcdf1a49a ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xcdf8167a devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcdfd643c regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xcdfebdd9 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xce0268ec mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xce1422b0 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xce30fbdb devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0xce4ab324 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xce562fd1 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xce5cd574 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xce5f5a56 nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce61ee5f phy_create -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce783d14 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xce7ce4c9 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xce7d53bb phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xce901307 nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xcec3af4c snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xcec83b3d pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xcee0f60c freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee230af tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcee9d9de raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcf0d367b usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xcf0dc84e da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2a632c wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xcf378302 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xcf3c1c20 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcf3e8f9a iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xcf3f0058 virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xcf4b8ce8 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf6bc667 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xcf85d519 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xcf8f0f0f ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcf999303 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb6d361 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xcfbb405c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc580db devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xcfd820d5 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xcff042f4 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xcffb09f1 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xcffb499d input_class -EXPORT_SYMBOL_GPL vmlinux 0xcffc26ea blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xd00f7d5d pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xd014a34b fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xd0156ac5 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xd0291335 xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xd0304c2a tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd0368d3e page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0445fe5 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd044be53 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xd05bda54 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0xd062818f pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06dece7 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xd07b7ca1 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xd07d2689 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xd09927d1 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xd0a959a9 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0ace2ef sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xd0bb18a2 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c24550 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0d135c4 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0eb2709 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0xd0eeb80e dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xd0f0ae1c __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xd0f12f3c driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xd0f7c955 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0xd0fdfaf5 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xd114173d soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd126843f addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xd1277772 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd12d85e3 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xd1341cfd kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xd154df78 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xd162a130 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xd175b488 blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0xd17b4809 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xd198a27c kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd1a61bd2 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd1ad7b8d regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd1ae1676 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xd1be6609 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xd1be90b1 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cc1085 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xd1d37873 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xd1d71720 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xd1e8b986 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2019b44 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21cb4fc alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xd22a47f4 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0xd2318b11 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xd23fd4aa rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xd244e70b generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xd2510a51 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xd2548f9c rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xd2682a91 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0xd26a5e43 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd276ebf9 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd2878361 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd2954b3d devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd295d140 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xd29a5445 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xd2a3a81f ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2e894ce gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xd2f22783 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xd2f984cc bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xd3084414 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xd30a678f phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd30bbc21 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0xd3296373 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd32c5203 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd32de992 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xd33753a6 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33f7f9d get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd3434923 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd36aaeb1 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xd36e6f38 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0xd3765144 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xd39cee40 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a3e610 pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0xd3a45cf7 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3c72543 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0xd3e429dd __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd3e4c158 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd3f7828f blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd40134f6 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40cc1c5 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xd4126701 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xd434ae21 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44ecc21 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xd45555b5 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd47af49c serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xd488f201 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xd4952fb0 component_del -EXPORT_SYMBOL_GPL vmlinux 0xd4b65c75 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c814b5 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xd4cc2590 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xd4d94951 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xd4df599e mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0xd4e8f68e cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd4f67eb5 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4f75b3a sdhci_start_tuning -EXPORT_SYMBOL_GPL vmlinux 0xd4fcd466 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd5058cff of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xd5154182 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd516cb97 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xd517ad47 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xd526d011 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xd542054c ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xd5453120 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54c5209 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0xd54f8712 sdhci_enable_clk -EXPORT_SYMBOL_GPL vmlinux 0xd556d064 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5890e50 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xd59315c1 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd5a0362b subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd5a8cb54 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5acca02 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5ce9180 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xd5d12235 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xd5d1c274 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xd5dd9dc7 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0xd5e2423f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xd5eba4d2 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xd5f41c55 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xd601dfd1 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xd6238682 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xd6356e23 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xd648da6f relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd65b77bc ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xd65c42d9 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd674b2c1 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xd67df5e9 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xd68bfa3e proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xd69d45bc scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xd6bc998c balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd6cc2205 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xd6d428b2 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xd6f55b51 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xd70a38e0 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd71bcd30 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd71cd8bb nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0xd71cddba ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xd7249f8b l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd737d8e9 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd75c56ac ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7647683 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76cdf11 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7800b13 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL vmlinux 0xd783d8c1 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd79047fe pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd7b0e226 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7c3e39b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd7c87a7d cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd7df7f38 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd7e78a40 clk_register_gpio_gate -EXPORT_SYMBOL_GPL vmlinux 0xd816c424 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd81bbe58 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd82f6201 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd859add6 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xd8723f94 clk_hw_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8917782 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd8938b78 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xd89f95d5 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xd8b53bb6 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xd8c305d5 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xd8ce05b6 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd8e5130f tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd9010a1f evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xd905c75a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xd90c8f72 iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0xd92d9d49 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xd941aedb devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd955a775 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xd957ded6 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd972eaf9 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9779a4f iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xd988583f snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xd9a30bf8 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xd9b40ba7 pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xd9bcaf1c simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd9c5f757 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0xd9d94a32 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xd9dbba1d usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0xd9dc20d9 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd9f48e35 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xd9fd9d6f spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda0227da task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xda168497 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xda261aee fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xda410add freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xda494a26 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xda501d42 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xda8278e5 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xda83c587 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xda938d6f __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xda985361 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xdaa23b82 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xdaa434b1 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xdab317b7 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xdab4fce6 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac57645 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xdad767e6 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xdadb057f wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xdae40d9f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xdaee8800 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb013873 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xdb25b5d6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xdb2a17d5 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb31675a da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdb33c41b devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xdb34bb31 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xdb3bbf25 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xdb4acc93 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xdb6e16a0 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xdb77404b ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb87dbe6 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb91806d gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb97d879 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xdba52dc5 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdbacaf58 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xdbb83f80 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xdbb9844a virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xdbe8742a snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0xdbf11230 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xdbf594c2 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc04f45c pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc0abf4c edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdc18a4f6 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xdc2a6feb usb_gadget_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xdc317c88 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdc56c1b5 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xdc58d5ef spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xdc5ab0bc sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xdc63a780 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc76fb71 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9bd8dc usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca68ac1 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcbcc14f io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdcc0c54e serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xdcd1088a regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xdcd2497e da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xdce6128a unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdce9034a gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xdcf0be2d device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd40d573 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdd55075a pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xdd5bc662 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xdd5d51de snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6494a7 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xdd672ee8 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc764b8 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xddd781d2 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xddef07c6 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xddf1bf15 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xddfec241 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xde076c61 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xde14f8b4 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xde2974b5 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xde631b65 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xde68b4f1 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7cc722 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xde85882c md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xde91e9af phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xde9441b9 setfl -EXPORT_SYMBOL_GPL vmlinux 0xdea0de50 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xdea9ea51 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdeebb388 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xdf0aee5c ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf126230 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf18cd36 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2bddb3 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xdf33b9c4 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xdf33fa06 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf365a54 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdf45ff39 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xdf48c024 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf5b7ff0 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xdf6d266f devres_find -EXPORT_SYMBOL_GPL vmlinux 0xdf7fa33b __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xdf84545f edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfa2a57e __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xdfb35c61 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xdfb87f70 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xdfbb60d2 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xdfbf166b fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfde1fcf wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xdfee2f3e alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xdff6a8ce xhci_mtk_sch_exit -EXPORT_SYMBOL_GPL vmlinux 0xdff97733 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0xe001002b ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe022767e bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe0255aeb devres_get -EXPORT_SYMBOL_GPL vmlinux 0xe02df848 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe03b65b6 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xe0482167 snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xe04a7d85 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xe04cfb48 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xe0511a92 nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0xe05685b6 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xe0597e0b devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe05f7d7f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xe0616913 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xe063566a task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xe06595a0 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0792df1 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0a3be6e query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0bc1da0 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xe0bdb501 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xe0bec511 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe0c6ecb9 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe0f1392c spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xe0f3ca33 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe0ff4047 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xe100dc0a gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe12d0131 pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0xe136333f pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xe13fefe5 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xe1502545 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xe160fb28 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c893e tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xe186b1ab dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xe1a2ba78 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xe1a9b7ae disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c630ba tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xe1cecd25 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xe1cfa261 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xe1ea37b5 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xe215186b vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xe22d14ed key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23d417f tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe2403b4a serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe2426b5b power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xe24660f3 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xe2507e23 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe25b23a8 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xe25f10db ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xe26916b4 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xe26a7150 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe26bbd3e gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xe26f2f56 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe287b77a efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xe2883048 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xe2963920 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xe2a6d21f iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xe2ac0928 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b96acd skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xe2bd51e0 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xe2d15744 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xe2d9e9df smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xe2e75fc9 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe2e9d871 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe313098c anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xe320be4e crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe328120d fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xe331abf7 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe356e928 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe35e287d of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xe36e5fb1 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xe39ca87b sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3bda13e ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3de6144 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xe3ebf484 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3ed1173 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xe3f32fca vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xe40062d5 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe416042d usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43fef1a usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xe4623625 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe465df34 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xe4727d3a __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xe47c01b5 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xe47d8122 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xe4954950 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4dc8b26 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe510ae7b debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe51451bc __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xe5226178 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe545c79d pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xe553eec9 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xe5632851 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xe5714b18 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58f10d0 sdhci_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xe59c6dc9 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe59ee23f synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe5a15a81 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe5a81b8a crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xe5c28e76 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xe5c42bf8 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cdcc4d cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0xe5d7409c alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xe5d95fb0 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xe5e8c005 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5f9192f edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe6070ba7 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xe60745bc tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xe622bc44 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xe626b669 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe643e368 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xe6503295 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe6a9889c __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xe6aaff7f of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xe6c4da58 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe6d81d31 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xe6d8eb45 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e7b475 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xe6e8dfde sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xe7191a62 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe74ac0fd gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe75b4540 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe75f27c1 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xe7663800 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76bbd2a of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe775b60a sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe787574d security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0xe78d127e snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0xe799cac7 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xe7a256b2 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe7aa65dc kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe7b766fd irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe7d06757 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81c7b9f regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe82318f2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xe82e25cf snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe839e9f3 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xe83fc085 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xe8413812 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe84b29c8 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe84d2048 sdhci_pltfm_resume -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 0xe885c60f phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xe89a659a edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe8a0f065 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8cf01c3 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0xe8dd6e84 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xe8e255dc event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xe8e3741a sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe8f2c2e4 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xe8f3ffcf of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xe8f8696f rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe8f86dda __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe8fc57f6 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xe9075776 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xe936bdd1 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe93b5c91 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9559ec0 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9575949 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xe9675efc led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xe971f231 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe975f3be iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xe979264a bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xe9824bd6 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe987047b dw_pcie_msi_init -EXPORT_SYMBOL_GPL vmlinux 0xe998e111 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9ab9071 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9b206e1 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xe9bcd71c register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xe9caf230 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0xe9cdfb4b pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe9de9906 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe9ecb77f to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe9faef6a fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea63cb57 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xea750e10 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xea794b9d sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xea7b47e3 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xea903c52 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xea9ab13f kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xeaa59c3c md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xeaa5e92b fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xeab5c3d1 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xead4128b input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeadfea4a elv_register -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeafffef2 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xeb09ebf2 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb0c8f04 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xeb0fada3 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xeb10b369 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xeb122862 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xeb14d9cd of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xeb3667d3 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xeb3b916e __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb471fa2 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xeb641189 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xeb6d0c12 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb77534f ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xeb8a1fba genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xeb8fc6e6 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba00f1f tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0xebb69f08 nand_change_read_column_op -EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xebc3405c fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe7c6bc gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xebfb2d15 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xebfd7553 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xebff3838 __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec007814 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xec016203 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xec0cf224 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec0f8749 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xec205b45 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xec22160e tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xec2fc025 snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0xec358ffb probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec6b8fbe dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xec70577e ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xec70d59f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec807a78 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xec8466a8 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xec85d4cb devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec9fff65 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xecaed6eb ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xecbc1e8e __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xecbf31ac user_update -EXPORT_SYMBOL_GPL vmlinux 0xecc7c540 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xecd31062 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xed1a39c0 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xed28e3ed preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xed4bbee4 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xed531a1b fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xed5aacb6 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xed6284bc dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xed7a95ef vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed7fc792 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed8186a9 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0xed81ba2b __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xed826d98 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xed858b9c rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xed862263 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed8bbe99 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xed8e1704 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xed926cfb pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xed9562ab clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xed98c64c dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xeda2159e musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0xedacba49 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xedb3a742 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedb8107d tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xedbf7572 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xedc84b53 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xedc88cfa pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0xedca6ffe dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xedcef5db spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xede087d8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xedf139f7 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xedf4b347 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xee0d0368 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee18f866 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee39ce54 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0xee3f03a5 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0xee42b3bf pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xee52a4b3 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xee608971 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xee688f20 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee96d4d8 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xeea47ad5 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xeec41db2 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xeec9ec06 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xeed35ab4 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeef31c3a mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL vmlinux 0xef16f3e0 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xef213b33 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xef28cbd9 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef30fbaf raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4685e3 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xef534696 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef82c72c ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef8daeda led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefdb6ed1 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xefe9aa5d ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefebac93 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xeff52b55 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xf00939bf crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xf01230ee usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf0153c72 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xf02bda36 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf049d95f alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xf05b00ab pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xf07e7ba8 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xf0867b09 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xf0979a46 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0xf09c402a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf0a1fbc4 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf0beadf1 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xf0c7f202 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf0ded4f0 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xf0e012bf mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0xf0e0667d devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf0f6ce6f usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xf0f837a0 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xf0fc36ba iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf1061317 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xf1179cb9 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf11a2e59 nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xf13112c0 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf139e43d usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xf14538b8 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf14a7782 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf155f59c sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xf164daa7 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf183cd17 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18d5990 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf1907f99 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xf191bcca usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf1a0b40c lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1c1e744 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xf1cf7a49 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf1d09f3f i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xf1d39d66 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf1d45ecf cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xf1e8cf44 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf1e8fc77 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xf1f06cf2 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xf1f35357 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf1fb5a02 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xf2083a3e pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22dda47 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf2331913 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf239e9fd __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xf24e66f4 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf26cb185 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xf2bd5ba3 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf2d6b0ff sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xf2e5665d wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf2f574bb blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xf2f5a6aa crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xf301c2d4 edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0xf30635bd dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xf30a2ca3 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf3282fd4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xf328dad8 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf337d2d3 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xf33a4d90 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xf342f191 pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0xf34b189b __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38ea13e bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xf39020ca phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xf39e780d devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b9c4d7 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xf3c35315 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xf3cb455f nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xf3d578ce kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xf3ddc1a1 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf3e567aa __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xf40198b4 omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0xf401bd4a snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0xf40c1a93 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf410a293 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf4146421 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf42554ad blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xf43c4f61 musb_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xf451f27e devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xf453bb83 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xf45c014c xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0xf461ba28 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xf46b9d41 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xf477166a spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf499aefa usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b2a973 regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf4c9e4f4 skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4f8baff spi_async -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf503efa1 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf50f265d get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xf518a851 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xf525f6f2 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xf52d6fba stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf533229c vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xf53476b1 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xf534f2bf device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf53a43f0 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xf543bb0a nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54d7d35 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558a2af ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf5651854 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xf57d9330 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5abd18c dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xf5bc3b9b snd_compr_stop_error -EXPORT_SYMBOL_GPL vmlinux 0xf5c3a138 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5db4e6a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xf5e5393d irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf5ebcc0a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xf5f2a1b7 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fdb5c2 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xf601f17f inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf6026704 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xf61a7b62 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf6235be4 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0xf627deee device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf63db2c5 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf64894b0 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf64db66f adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xf64ecc32 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf65d164f tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0xf65fbb59 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66c3e62 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xf671e89b sdhci_send_command -EXPORT_SYMBOL_GPL vmlinux 0xf6771c75 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xf67f2858 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf687e7db ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xf6c314fb snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d60e00 mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0xf6db0ec9 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xf6e2b986 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf6e3ecd7 fib4_rule_default -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 0xf6f6c55d __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf6fcac05 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xf70752bd of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf70f0950 nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xf71739d2 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0xf71b31fe snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf73d454b pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf751ff7b flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf793a43d fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xf7a5683c dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bd78bb iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xf7c9ac37 cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0xf7d15648 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf7dc41fc __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xf7df0e7f of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xf7ed0d8c devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xf7f3f8d0 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xf7f725bf xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xf7fc36bd spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf820886e skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xf82bd6cf rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8339c8a gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xf83898ea ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf8401253 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xf8605767 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xf861b819 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xf876e7e7 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf887b2c6 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf88cbb76 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xf89653b1 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf8a34272 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xf8b23a9c iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xf8c708b7 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8ce76de of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xf8e82d8c of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf9145815 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xf91af048 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xf91b0546 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xf924a1ea cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xf92ad0de bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93f3a34 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xf94a93e3 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0xf94dcdbe usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9661275 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf96a5478 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xf9723adc fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xf9749523 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf978b724 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xf980a141 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xf98b975f snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a6fca5 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xf9ac7574 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9f8d9d6 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa0b2d6d split_page -EXPORT_SYMBOL_GPL vmlinux 0xfa0defbe snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa243790 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xfa36fa79 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfa40c6c1 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xfa499dd8 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xfa5be1ff ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6e6753 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xfa990751 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfabc5d9a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadc2c29 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2562ba mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4550f8 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xfb4b85de device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb6a6d42 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb823cdf pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xfb8a3420 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xfb8bded0 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0xfb8cae2a usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfba11bca sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xfba16f06 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbdc374a lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbdf281b bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xfbdff860 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfbf7a3c1 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xfbf925af regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfbfb512c wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0b863e pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xfc0fc96d of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1c4782 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfc20741a power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xfc28a0fd pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xfc30111c pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xfc335d18 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfc4873c3 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xfc4ad7a3 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc4c9455 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfc546b9c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xfc5db8e5 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xfc64964a virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfc6b5628 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc739529 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xfca9979a dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0xfcaeec36 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xfcb6f2be sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xfcc0d83a tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xfcc3952d device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xfccf4c02 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xfcd20ba4 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xfce81c2b bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xfd040770 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfd0ea95e otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xfd15a6d5 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xfd26057f snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0xfd4473dc snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0xfd51b2bf sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0xfd55658d mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xfd71afd5 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd7670d1 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd777f2e component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xfd8a72d4 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xfda8a73a sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0xfdac9224 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xfdb14bee devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfde4c1c0 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xfdeef06a snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfdf7f0d5 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xfdf8b696 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xfe019261 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xfe054370 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfe29b8e1 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe2d62c2 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe48eecb __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfe723002 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xfe88a5f1 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfe89a55b __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xfe939e6d __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9e0fe2 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfeaea3c4 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed1724a gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xfed288a9 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xfeda7269 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xfee22f52 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xfef6185b sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xfef67ace btree_init -EXPORT_SYMBOL_GPL vmlinux 0xfefd9017 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xff042a37 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0fb9d4 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2b9405 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xff2d931a noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xff3101bd cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0xff3d0184 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff69baae devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xff88ebf3 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xff911208 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xff9467bd bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xffa42e52 nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb9fc89 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xffbe4e55 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL vmlinux 0xffc3767d edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xffca32bf snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0xffd0f8f6 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xffda3935 gpiod_get_array_value -USB_STORAGE EXPORT_SYMBOL_GPL 0x0555640b usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x110c2893 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x150d086e 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 0x1d036a3a usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x207d7a57 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x24626725 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4092a5cd usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x469af6fc usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5a858253 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7032bd15 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7142f5eb usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7645d32e usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9725d15c usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9ae28765 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9b14f8e1 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9f21d70e usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa3073cfb usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb3e402f4 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb4f86d4e usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb6084a64 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcbd87f95 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xda728fae usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeba192c6 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xffd1f3d7 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.modules @@ -1,5820 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_dw -8250_exar -8250_men_mcb -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a53-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abp060mg -acard-ahci -acecad -acenic -acp_audio_dma -act8865-regulator -act8945a -act8945a-regulator -act8945a_charger -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs450 -aegis128 -aes-arm -aes-arm-bs -aes-arm-ce -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_dm816 -ahci_mtk -ahci_mvebu -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -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 -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc_pci -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anubis -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -apr -aptina-pll -aqc111 -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_mhu -arm_scpi -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 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-lpc-ctrl -aspeed-lpc-snoop -aspeed-p2a-ctrl -aspeed-pwm-tacho -aspeed-smc -aspeed-vhub -aspeed-video -aspeed_adc -aspeed_gfx -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -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 -atlas-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -ax88796b -axg-audio -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -axp288_fuel_gauge -b1 -b1dma -b1pci -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 -bam_dma -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm47xxsflash -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bd70528-charger -bd70528-regulator -bd70528_wdt -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bochs-drm -bonding -bpa10x -bpck -bpck6 -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -bsd_comp -bt-bmc -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence-quadspi -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sdm845 -camellia_generic -can -can-bcm -can-dev -can-gw -can-j1939 -can-raw -cap11xx -capi -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 -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-pltfrm -cdns3 -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8318 -chnl_net -chtls -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-exynos-audss -clk-hi3519 -clk-hi655x -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-phase -clk-pwm -clk-qcom -clk-rk808 -clk-rpm -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-twl6040 -clk-versaclock5 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cnic -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppi41 -cqhci -cramfs -crc-itu-t -crc32-arm-ce -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-arm-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-cec -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_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_vbc -cros_usbpd-charger -cros_usbpd_logger -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da9030_battery -da9034-ts -da903x -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 -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 -de2104x -decnet -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sdm845 -dl2k -dlci -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-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dm1105 -dm9000 -dm9601 -dmard06 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -dove_thermal -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dpot-dac -dps310 -drbd -drm -drm_kms_helper -drm_mipi_dbi -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 -dumb-vga-dac -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi-imx -dw_mipi_dsi-stm -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc3 -dwc3-exynos -dwc3-haps -dwc3-meson-g12a -dwc3-of-simple -dwc3-omap -dwc3-qcom -dwmac-dwc-qos-eth -dwmac-generic -dwmac-ipq806x -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ecc -ecdh_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-npcm7xx -ehci-omap -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -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 -exynos-gsc -exynos-lpass -exynos-rng -exynos-trng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -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_sh1106 -fb_ssd1289 -fb_ssd1305 -fb_ssd1306 -fb_ssd1325 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-ast-cf -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-dcu-drm -fsl-edma -fsl-edma-common -fsl-mph-dr-of -fsl-qdma -fsl_linflexuart -fsl_lpuart -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftm-quaddec -ftmac100 -ftsteutates -ftwdt010_wdt -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gb-audio-apbridgea -gb-audio-gb -gb-audio-manager -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-ipq806x -gcc-ipq8074 -gcc-mdm9615 -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcc-msm8994 -gcc-msm8996 -gcc-msm8998 -gcc-qcs404 -gcc-sdm660 -gcc-sdm845 -gcc-sm8150 -gdmtty -gdmulte -gdth -gemini -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gf2k -gfs2 -ghash-arm-ce -gigaset -gl518sm -gl520sm -gl620a -glink_ssr -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd-fch -gpio-arizona -gpio-aspeed -gpio-bd70528 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-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-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-tqmx86 -gpio-ucb1400 -gpio-uniphier -gpio-vibra -gpio-viperboard -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpu-sched -gpucc-sdm845 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd44780 -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421v530-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisi-rng -hisi-sfc -hisi504_nand -hisi_femac -hisi_powerkey -hisi_thermal -hix5hd2_gmac -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp100 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx711 -hx8357 -hx8357d -hyperbus-core -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-aspeed -i2c-axxia -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3c -i3c-master-cdns -i40e -i40iw -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-core -icc-smd-rpm -ice -ice40-spi -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -impa7 -ims-pcu -imx-ipu-v3 -imx-ldb -imx-tve -imx214 -imx258 -imx274 -imx319 -imx355 -imx6ul_tsc -imxdrm -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int51x1 -intel-xway -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipvtap -ipw -ipw2100 -ipw2200 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb3 -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_npcm7xx -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kheaders -kl5kusb105 -kmx61 -kobil_sct -komeda -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -kpss-xcc -krait-cc -ks0108 -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -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-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pm8058 -leds-pwm -leds-regulator -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -lego_ev3_battery -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -lima -lineage-pem -linear -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -lkkbd -llc -llc2 -llcc-sdm845 -llcc-slice -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 -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 -lpasscc-sdm845 -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-encoder -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_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-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max8649 -max8660 -max8688 -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 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mcde_drm -mceusb -mchp23k256 -mcp16502 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdev -mdio -mdio-aspeed -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-meson-g12a -mdio-mux-mmioreg -mdio-mux-multiplexer -mdt_loader -me4000 -me_daq -mediatek-cpufreq -mediatek-drm -mediatek-drm-hdmi -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-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mi0283qt -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microtek -mii -milbeaut_usio -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8996 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_sound -most_usb -most_video -motorola-cpcap -moxa -moxtet -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi001 -msi2500 -msm -msm-vibrator -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-crypto -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-quadspi -mtk-rng -mtk-sd -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_am335x -musb_dsps -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv643xx_eth -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_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 -npcm750-pwm-fan -npcm_adc -nps_enet -ns558 -ns83820 -nsh -nsp32 -ntb -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-uniphier-efuse -nvmem_meson_mx_efuse -nvmem_qfprom -nvmem_rockchip_efuse -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocelot_board -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -omap -omap-aes-driver -omap-crypto -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap2430 -omap2fb -omap4-keypad -omap_hdq -omap_hwspinlock -omap_wdt -omapdss -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -owl-dma -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -panel -panel-arm-versatile -panel-feiyang-fy07024di26a30d -panel-ilitek-ili9322 -panel-ilitek-ili9881c -panel-innolux-p079zca -panel-jdi-lt070me05000 -panel-kingdisplay-kd097d04 -panel-lg-lb035q02 -panel-lg-lg4573 -panel-lvds -panel-nec-nl8048hl11 -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-rocktech-jh057n00900 -panel-ronbo-rb070d30 -panel-samsung-ld9040 -panel-samsung-s6d16d0 -panel-samsung-s6e3ha2 -panel-samsung-s6e63j0x03 -panel-samsung-s6e63m0 -panel-samsung-s6e8aa0 -panel-seiko-43wvf1g -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-sharp-ls043t1le01 -panel-simple -panel-sitronix-st7701 -panel-sitronix-st7789v -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -panel-tpo-tpg110 -panel-truly-nt35597 -panfrost -parade-ps8622 -parallel-display -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 -pbias-regulator -pblk -pc300too -pc87360 -pc87427 -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-pf-stub -pci-stub -pci200syn -pcie-rockchip-host -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -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-dp -phy-cadence-sierra -phy-cpcap-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-mapphone-mdm6600 -phy-meson-g12a-usb2 -phy-meson-g12a-usb3-pcie -phy-meson-gxl-usb2 -phy-meson-gxl-usb3 -phy-meson8b-usb2 -phy-mtk-tphy -phy-mtk-ufs -phy-mtk-xsphy -phy-mvebu-a3700-comphy -phy-mvebu-a3700-utmi -phy-mvebu-cp110-comphy -phy-ocelot-serdes -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-pcie2 -phy-qcom-qmp -phy-qcom-qusb2 -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-rcar-gen2 -phy-rcar-gen3-pcie -phy-rcar-gen3-usb2 -phy-rcar-gen3-usb3 -phy-rockchip-dp -phy-rockchip-emmc -phy-rockchip-inno-hdmi -phy-rockchip-inno-usb2 -phy-rockchip-pcie -phy-rockchip-typec -phy-rockchip-usb -phy-tahvo -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -phy-uniphier-pcie -phy-uniphier-usb2 -phy-uniphier-usb3hs -phy-uniphier-usb3ss -phylink -physmap -pi3usb30532 -pi433 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-ipq4019 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-mdm9615 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8994 -pinctrl-msm8996 -pinctrl-msm8998 -pinctrl-msm8x74 -pinctrl-qcs404 -pinctrl-rk805 -pinctrl-sc7180 -pinctrl-sdm660 -pinctrl-sdm845 -pinctrl-sm8150 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -pl353-smc -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -psmouse -psnap -psxpad-spi -pt -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-cros-ec -pwm-fan -pwm-fsl-ftm -pwm-hibvt -pwm-ir-tx -pwm-lp3943 -pwm-mediatek -pwm-meson -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q6adm -q6afe -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-coincell -qcom-cpufreq-hw -qcom-emac -qcom-geni-se -qcom-pm8xxx -qcom-pm8xxx-xoadc -qcom-pon -qcom-rng -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink_native -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcrypto -qcserial -qed -qede -qedf -qedi -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -qnoc-qcs404 -qnx4 -qnx6 -qoriq-cpufreq -qoriq_thermal -qrtr -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-gyroadc -rcar-vin -rcar_can -rcar_canfd -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rcuperf -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-ceu -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -renesas_wdt -repaper -reset-hi3660 -reset-meson-audio-arb -reset-qcom-pdc -reset-scmi -reset-ti-syscon -reset-uniphier -reset-uniphier-glue -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmobile-reset -rmtfs_mem -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-io-domain -rockchip-rga -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rocket -rohm-bd70528 -rohm-bd718x7 -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson -rtc-meson-vrtc -rtc-msm6242 -rtc-mt6397 -rtc-mt7622 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-sh -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -rza_wdt -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s5p-cec -s5p-g2d -s5p-jpeg -s5p-mfc -s5p-sss -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -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 -sbs-battery -sbs-charger -sbs-manager -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -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 -sclk-div -scmi-cpufreq -scmi-hwmon -scmi_pm_domain -scpi-cpufreq -scpi-hwmon -scpi_pm_domain -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci-cadence -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-omap -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -ser_gigaset -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh-sci -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sh_veu -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha3_generic -sha512-arm -shark2 -sharpslpart -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slim-qcom-ngd-ctrl -slimbus -slip -slram -sm3_generic -sm4_generic -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc911x -smc91x -smc_diag -smd-rpm -smem -smiapp -smiapp-pll -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-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-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-arizona -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-i2s -snd-soc-idma -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-kirkwood -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -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-g12a-tohdmitx -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mtk-common -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-odroid -snd-soc-omap-mcbsp -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5645 -snd-soc-rt5663 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sdm845 -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-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-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-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-ti-edma -snd-soc-ti-sdma -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-tm2-wm5110 -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-uniphier-aio-cpu -snd-soc-uniphier-aio-ld11 -snd-soc-uniphier-aio-pxs2 -snd-soc-uniphier-evea -snd-soc-wcd9335 -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm5110 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-of -snd-sof-pci -snd-sonicvibes -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -sni_ave -snic -snps_udc_core -snps_udc_plat -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundwire-bus -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-armada-3700 -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-geni-qcom -spi-gpio -spi-lm70llp -spi-loopback-test -spi-meson-spicc -spi-meson-spifc -spi-mt65xx -spi-mxic -spi-nor -spi-npcm-fiu -spi-npcm-pspi -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-sifive -spi-slave-mt27xx -spi-slave-system-control -spi-slave-time -spi-ti-qspi -spi-tle62x0 -spi-uniphier -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spmi -spmi-pmic-arb -sps30 -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssbi -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm-drm -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svgalib -switchtec -sx8 -sx8654 -sx9500 -sy8106a-regulator -sy8824x -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -synclinkmp -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -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 -tc358764 -tc358767 -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_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 -tea -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tef6862 -tehuti -teranetics -test-kprobes -test_blackhole_dev -test_bpf -test_power -tg3 -tgr192 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-cal -ti-csc -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sc -ti-sn65dsi86 -ti-soc-thermal -ti-tfp410 -ti-tlc4541 -ti-vpdma -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_edac -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tusb6010 -tvaudio -tve200_drm -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-hisi -ufs-mediatek -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uniphier-mdmac -uniphier-regulator -uniphier-sd -uniphier_thermal -uniphier_wdt -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vcan -vcnl4000 -vcnl4035 -vctrl-regulator -veml6070 -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vexpress-spc-cpufreq -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_mdev -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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-sdm845 -videodev -vim2m -vimc -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wcnss_ctrl -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wimax -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgmac -xhci-histb -xhci-mtk -xhci-plat-hcd -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_emac -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xlnx_vcu -xor -xor-neon -xpad -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 -yealink -yellowfin -yurex -z3fold -zaurus -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zx-tdm reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic-lpae.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic.modules @@ -1,5949 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_dw -8250_exar -8250_men_mcb -8250_omap -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a53-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -abp060mg -acard-ahci -acecad -acenic -acp_audio_dma -act8865-regulator -act8945a -act8945a-regulator -act8945a_charger -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs450 -aegis128 -aes-arm -aes-arm-bs -aes-arm-ce -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_dm816 -ahci_mtk -ahci_mvebu -ahci_qoriq -ahci_tegra -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -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 -am35x -am53c974 -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc_pci -amd8111e -amdgpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anubis -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -apr -aptina-pll -aqc111 -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_big_little -arm_mhu -arm_scpi -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 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-lpc-ctrl -aspeed-lpc-snoop -aspeed-p2a-ctrl -aspeed-pwm-tacho -aspeed-smc -aspeed-vhub -aspeed-video -aspeed_adc -aspeed_gfx -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -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 -atlas-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -ax88796b -axg-audio -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -axp288_fuel_gauge -b1 -b1dma -b1pci -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 -bam_dma -bas_gigaset -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm47xxsflash -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7xxx -bcm87xx -bcma -bcmsysport -bd6107 -bd70528-charger -bd70528-regulator -bd70528_wdt -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bochs-drm -bonding -bpa10x -bpck -bpck6 -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -bsd_comp -bt-bmc -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -caam -caam_jr -caamalg_desc -caamhash_desc -cachefiles -cadence-quadspi -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sdm845 -camellia_generic -can -can-bcm -can-dev -can-gw -can-j1939 -can-raw -cap11xx -capi -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 -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-pltfrm -cdns3 -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8318 -chnl_net -chtls -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-exynos-audss -clk-hi3519 -clk-hi655x -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-phase -clk-pwm -clk-qcom -clk-rk808 -clk-rpm -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-twl6040 -clk-versaclock5 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -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_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppi41 -cramfs -crc-itu-t -crc32-arm-ce -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-arm-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-cec -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_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_vbc -cros_usbpd-charger -cros_usbpd_logger -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da8xx-fb -da9030_battery -da9034-ts -da903x -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 -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 -de2104x -decnet -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sdm845 -dl2k -dlci -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-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dm1105 -dm9000 -dm9601 -dmard06 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dn_rtmsg -dnet -dove_thermal -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dpot-dac -dps310 -drbd -drm -drm_kms_helper -drm_mipi_dbi -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 -dumb-vga-dac -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi-imx -dw_mipi_dsi-stm -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc3 -dwc3-exynos -dwc3-haps -dwc3-meson-g12a -dwc3-of-simple -dwc3-omap -dwc3-qcom -dwmac-dwc-qos-eth -dwmac-generic -dwmac-ipq806x -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ecc -ecdh_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-mxc -ehci-npcm7xx -ehci-omap -ehci-tegra -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -error -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -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 -exynos-gsc -exynos-lpass -exynos-rng -exynos-trng -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -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_sh1106 -fb_ssd1289 -fb_ssd1305 -fb_ssd1306 -fb_ssd1325 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-ast-cf -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-dcu-drm -fsl-edma -fsl-edma-common -fsl-mph-dr-of -fsl-qdma -fsl_imx8_ddr_perf -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_usb2_udc -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftm-quaddec -ftmac100 -ftsteutates -ftwdt010_wdt -fujitsu_ts -fusb300_udc -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gb-audio-apbridgea -gb-audio-gb -gb-audio-manager -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-ipq806x -gcc-ipq8074 -gcc-mdm9615 -gcc-msm8660 -gcc-msm8916 -gcc-msm8960 -gcc-msm8974 -gcc-msm8994 -gcc-msm8996 -gcc-msm8998 -gcc-qcs404 -gcc-sdm660 -gcc-sdm845 -gcc-sm8150 -gdmtty -gdmulte -gdth -gemini -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -gf2k -gfs2 -ghash-arm-ce -gianfar_driver -gigaset -gl518sm -gl520sm -gl620a -glink_ssr -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd-fch -gpio-arizona -gpio-aspeed -gpio-bd70528 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-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-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-tqmx86 -gpio-ts4800 -gpio-ts4900 -gpio-ucb1400 -gpio-uniphier -gpio-vibra -gpio-viperboard -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-sdm845 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd44780 -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421v530-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hifn_795x -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisi-rng -hisi-sfc -hisi504_nand -hisi_femac -hisi_powerkey -hisi_thermal -hix5hd2_gmac -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 -hp100 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwa-hc -hwa-rc -hwmon-vid -hx711 -hx8357 -hx8357d -hyperbus-core -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-aspeed -i2c-cbus-gpio -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hix5hd2 -i2c-i801 -i2c-imx-lpi2c -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tegra -i2c-tegra-bpmp -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-xiic -i3c -i3c-master-cdns -i40e -i40iw -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-core -icc-smd-rpm -ice -ice40-spi -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -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-cpufreq-dt -imx-dma -imx-ipu-v3 -imx-ldb -imx-mailbox -imx-media-common -imx-pxp -imx-rngc -imx-sdma -imx-tve -imx-vdoa -imx21-hcd -imx214 -imx258 -imx274 -imx2_wdt -imx319 -imx355 -imx6-media -imx6-media-csi -imx6-mipi-csi2 -imx6q-cpufreq -imx6ul_tsc -imx7-media-csi -imx7-mipi-csis -imx7d_adc -imx7ulp_wdt -imx_keypad -imx_rproc -imx_sc_wdt -imx_thermal -imxdrm -imxfb -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int51x1 -intel-xway -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -iova -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_wlc -ip_vs_wrr -ip_vti -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -ips -ipt_CLUSTERIP -ipt_ECN -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipvtap -ipw -ipw2100 -ipw2200 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -irq-ts4800 -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb3 -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_npcm7xx -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khazad -kheaders -kl5kusb105 -kmx61 -kobil_sct -komeda -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -kpss-xcc -krait-cc -ks0108 -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -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-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pm8058 -leds-pwm -leds-regulator -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -lego_ev3_battery -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -lima -lineage-pem -linear -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -lkkbd -llc -llc2 -llcc-sdm845 -llcc-slice -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 -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 -lpasscc-sdm845 -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-encoder -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_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-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max8649 -max8660 -max8688 -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 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mcde_drm -mceusb -mchp23k256 -mcp16502 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -mdc800 -mdev -mdio -mdio-aspeed -mdio-bcm-unimac -mdio-bitbang -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-meson-g12a -mdio-mux-mmioreg -mdio-mux-multiplexer -mdt_loader -me4000 -me_daq -mediatek-cpufreq -mediatek-drm -mediatek-drm-hdmi -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-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mi0283qt -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microtek -mii -milbeaut_usio -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8996 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_sound -most_usb -most_video -motorola-cpcap -moxa -moxtet -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi001 -msi2500 -msm -msm-vibrator -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd_dataflash -mtdoops -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-crypto -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-quadspi -mtk-rng -mtk-sd -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_am335x -musb_dsps -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv643xx_eth -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxc_nand -mxc_w1 -mxcmmc -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nbpfaxi -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_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 -npcm750-pwm-fan -npcm_adc -nps_enet -ns558 -ns83820 -nsh -nsp32 -ntb -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-imx-iim -nvmem-imx-ocotp -nvmem-imx-ocotp-scu -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-uniphier-efuse -nvmem_meson_mx_efuse -nvmem_qfprom -nvmem_rockchip_efuse -nvmem_snvs_lpgpr -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocelot_board -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of-fpga-region -of_mmc_spi -of_xilinx_wdt -ofb -ohci-platform -omap -omap-aes-driver -omap-crypto -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap-vout -omap2 -omap2430 -omap2fb -omap3-isp -omap3-rom-rng -omap4-iss -omap4-keypad -omap_hdq -omap_hwspinlock -omap_remoteproc -omap_ssi -omap_wdt -omapdss -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -oprofile -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -owl-dma -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -panel -panel-arm-versatile -panel-feiyang-fy07024di26a30d -panel-ilitek-ili9322 -panel-ilitek-ili9881c -panel-innolux-p079zca -panel-jdi-lt070me05000 -panel-kingdisplay-kd097d04 -panel-lg-lb035q02 -panel-lg-lg4573 -panel-lvds -panel-nec-nl8048hl11 -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-rocktech-jh057n00900 -panel-ronbo-rb070d30 -panel-samsung-ld9040 -panel-samsung-s6d16d0 -panel-samsung-s6e3ha2 -panel-samsung-s6e63j0x03 -panel-samsung-s6e63m0 -panel-samsung-s6e8aa0 -panel-seiko-43wvf1g -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-sharp-ls043t1le01 -panel-simple -panel-sitronix-st7701 -panel-sitronix-st7789v -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -panel-tpo-tpg110 -panel-truly-nt35597 -panfrost -parade-ps8622 -parallel-display -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_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 -pblk -pc300too -pc87360 -pc87427 -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-pf-stub -pci-stub -pci200syn -pcie-rockchip-host -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -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-dp -phy-cadence-sierra -phy-cpcap-usb -phy-dm816x-usb -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -phy-mapphone-mdm6600 -phy-meson-g12a-usb2 -phy-meson-g12a-usb3-pcie -phy-meson-gxl-usb2 -phy-meson-gxl-usb3 -phy-meson8b-usb2 -phy-mtk-tphy -phy-mtk-ufs -phy-mtk-xsphy -phy-mvebu-a3700-comphy -phy-mvebu-a3700-utmi -phy-mvebu-cp110-comphy -phy-ocelot-serdes -phy-omap-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-apq8064-sata -phy-qcom-ipq806x-sata -phy-qcom-pcie2 -phy-qcom-qmp -phy-qcom-qusb2 -phy-qcom-ufs -phy-qcom-ufs-qmp-14nm -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-rcar-gen2 -phy-rcar-gen3-pcie -phy-rcar-gen3-usb2 -phy-rcar-gen3-usb3 -phy-rockchip-dp -phy-rockchip-emmc -phy-rockchip-inno-hdmi -phy-rockchip-inno-usb2 -phy-rockchip-pcie -phy-rockchip-typec -phy-rockchip-usb -phy-tahvo -phy-tegra-usb -phy-tegra-xusb -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -phy-uniphier-pcie -phy-uniphier-usb2 -phy-uniphier-usb3hs -phy-uniphier-usb3ss -phylink -physmap -pi3usb30532 -pi433 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-ipq4019 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-mdm9615 -pinctrl-msm8660 -pinctrl-msm8916 -pinctrl-msm8960 -pinctrl-msm8994 -pinctrl-msm8996 -pinctrl-msm8998 -pinctrl-msm8x74 -pinctrl-qcs404 -pinctrl-rk805 -pinctrl-sc7180 -pinctrl-sdm660 -pinctrl-sdm845 -pinctrl-sm8150 -pinctrl-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -pl353-smc -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8941-wled -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -psmouse -psnap -psxpad-spi -pt -ptp-qoriq -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-beeper -pwm-berlin -pwm-cros-ec -pwm-fan -pwm-fsl-ftm -pwm-hibvt -pwm-imx-tpm -pwm-imx1 -pwm-imx27 -pwm-ir-tx -pwm-lp3943 -pwm-mediatek -pwm-meson -pwm-mtk-disp -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tegra -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q6adm -q6afe -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-coincell -qcom-cpufreq-hw -qcom-emac -qcom-geni-se -qcom-pm8xxx -qcom-pm8xxx-xoadc -qcom-pon -qcom-rng -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink_native -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcrypto -qcserial -qed -qede -qedf -qedi -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -qnoc-qcs404 -qnx4 -qnx6 -qoriq-cpufreq -qoriq_thermal -qrtr -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-gyroadc -rcar-vin -rcar_can -rcar_canfd -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rcuperf -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -regmap-ac97 -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-ceu -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -renesas_wdt -repaper -reset-hi3660 -reset-meson-audio-arb -reset-qcom-pdc -reset-scmi -reset-ti-syscon -reset-uniphier -reset-uniphier-glue -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmobile-reset -rmtfs_mem -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-io-domain -rockchip-rga -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rocket -rohm-bd70528 -rohm-bd718x7 -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-hid-sensor-time -rtc-hym8563 -rtc-imx-sc -rtc-imxdi -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson -rtc-meson-vrtc -rtc-msm6242 -rtc-mt6397 -rtc-mt7622 -rtc-mxc -rtc-mxc_v2 -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-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-sh -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -rza_wdt -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s5p-cec -s5p-g2d -s5p-jpeg -s5p-mfc -s5p-sss -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sahara -salsa20_generic -samsung -samsung-keypad -samsung-sxgbe -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 -sbs-battery -sbs-charger -sbs-manager -sc16is7xx -sc92031 -sca3000 -sch5627 -sch5636 -sch56xx-common -sch_atm -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -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 -sclk-div -scmi-cpufreq -scmi-hwmon -scmi_pm_domain -scpi-cpufreq -scpi-hwmon -scpi_pm_domain -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci-cadence -sdhci-dove -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-omap -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-tegra -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -ser_gigaset -serial-tegra -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh-sci -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sh_veu -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha3_generic -sha512-arm -shark2 -sharpslpart -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -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 -sm3_generic -sm4_generic -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc911x -smc91x -smc_diag -smd-rpm -smem -smiapp -smiapp-pll -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-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-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-arizona -snd-soc-armada-370-db -snd-soc-arndale-rt5631 -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-eukrea-tlv320 -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-utils -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-i2s -snd-soc-idma -snd-soc-imx-audmix -snd-soc-imx-es8328 -snd-soc-imx-mc13783 -snd-soc-imx-spdif -snd-soc-imx-ssi -snd-soc-inno-rk3036 -snd-soc-kirkwood -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-mc13783 -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-g12a-tohdmitx -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mtk-common -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-odroid -snd-soc-omap-abe-twl6040 -snd-soc-omap-dmic -snd-soc-omap-mcbsp -snd-soc-omap-mcpdm -snd-soc-omap-twl4030 -snd-soc-omap3pandora -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5663 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sdm845 -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-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-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-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tegra-alc5632 -snd-soc-tegra-max98090 -snd-soc-tegra-pcm -snd-soc-tegra-rt5640 -snd-soc-tegra-rt5677 -snd-soc-tegra-sgtl5000 -snd-soc-tegra-trimslice -snd-soc-tegra-utils -snd-soc-tegra-wm8753 -snd-soc-tegra-wm8903 -snd-soc-tegra-wm9712 -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-ti-edma -snd-soc-ti-sdma -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-tm2-wm5110 -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-twl4030 -snd-soc-twl6040 -snd-soc-uda1334 -snd-soc-uniphier-aio-cpu -snd-soc-uniphier-aio-ld11 -snd-soc-uniphier-aio-pxs2 -snd-soc-uniphier-evea -snd-soc-wcd9335 -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm5110 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-of -snd-sof-pci -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -sni_ave -snic -snps_udc_core -snps_udc_plat -snvs_pwrkey -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundwire-bus -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-armada-3700 -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-fsl-dspi -spi-fsl-lpspi -spi-fsl-qspi -spi-geni-qcom -spi-gpio -spi-imx -spi-lm70llp -spi-loopback-test -spi-meson-spicc -spi-meson-spifc -spi-mt65xx -spi-mxic -spi-nor -spi-npcm-fiu -spi-npcm-pspi -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-sifive -spi-slave-mt27xx -spi-slave-system-control -spi-slave-time -spi-tegra114 -spi-tegra20-sflash -spi-tegra20-slink -spi-ti-qspi -spi-tle62x0 -spi-uniphier -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spmi -spmi-pmic-arb -sps30 -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssbi -ssd1307fb -ssfdc -ssi_protocol -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm-drm -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svgalib -switchtec -sx8 -sx8654 -sx9500 -sy8106a-regulator -sy8824x -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -synclinkmp -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -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 -tc358764 -tc358767 -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_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 -tea -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-tcu -tegra-vde -tegra186-cpufreq -tegra20-devfreq -tegra30-devfreq -tegra_cec -tegra_nand -tegra_wdt -tehuti -teranetics -test-kprobes -test_blackhole_dev -test_bpf -test_power -tg3 -tgr192 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-cal -ti-csc -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-emif-sram -ti-lmu -ti-sc -ti-sn65dsi86 -ti-soc-thermal -ti-tfp410 -ti-tlc4541 -ti-vpdma -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_davinci_emac -ti_edac -ti_hecc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts4800-ts -ts4800_wdt -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tusb6010 -tvaudio -tve200_drm -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-hisi -ufs-mediatek -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uniphier-mdmac -uniphier-regulator -uniphier-sd -uniphier_thermal -uniphier_wdt -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vcan -vcnl4000 -vcnl4035 -vctrl-regulator -veml6070 -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vexpress-spc-cpufreq -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_mdev -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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-sdm845 -videodev -vim2m -vimc -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmxnet3 -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wcnss_ctrl -wd719x -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wimax -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgmac -xhci-histb -xhci-mtk -xhci-plat-hcd -xhci-tegra -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_emac -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xlnx_vcu -xor -xor-neon -xpad -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 -yealink -yellowfin -yurex -z3fold -zaurus -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zx-tdm reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/armhf/generic.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/armhf/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/fwinfo +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/fwinfo @@ -1,1597 +0,0 @@ -firmware: 3826.arm -firmware: 3com/typhoon.bin -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: BT3CPCC.bin -firmware: RTL8192E/boot.img -firmware: RTL8192E/data.img -firmware: RTL8192E/main.img -firmware: RTL8192U/boot.img -firmware: RTL8192U/data.img -firmware: RTL8192U/main.img -firmware: acenic/tg1.bin -firmware: acenic/tg2.bin -firmware: adaptec/starfire_rx.bin -firmware: adaptec/starfire_tx.bin -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: aic94xx-seq.fw -firmware: amdgpu/banks_k_2_smc.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/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/hainan_ce.bin -firmware: amdgpu/hainan_k_smc.bin -firmware: amdgpu/hainan_mc.bin -firmware: amdgpu/hainan_me.bin -firmware: amdgpu/hainan_pfp.bin -firmware: amdgpu/hainan_rlc.bin -firmware: amdgpu/hainan_smc.bin -firmware: amdgpu/hawaii_ce.bin -firmware: amdgpu/hawaii_k_smc.bin -firmware: amdgpu/hawaii_mc.bin -firmware: amdgpu/hawaii_me.bin -firmware: amdgpu/hawaii_mec.bin -firmware: amdgpu/hawaii_pfp.bin -firmware: amdgpu/hawaii_rlc.bin -firmware: amdgpu/hawaii_sdma.bin -firmware: amdgpu/hawaii_sdma1.bin -firmware: amdgpu/hawaii_smc.bin -firmware: amdgpu/hawaii_uvd.bin -firmware: amdgpu/hawaii_vce.bin -firmware: amdgpu/kabini_ce.bin -firmware: amdgpu/kabini_me.bin -firmware: amdgpu/kabini_mec.bin -firmware: amdgpu/kabini_pfp.bin -firmware: amdgpu/kabini_rlc.bin -firmware: amdgpu/kabini_sdma.bin -firmware: amdgpu/kabini_sdma1.bin -firmware: amdgpu/kabini_uvd.bin -firmware: amdgpu/kabini_vce.bin -firmware: amdgpu/kaveri_ce.bin -firmware: amdgpu/kaveri_me.bin -firmware: amdgpu/kaveri_mec.bin -firmware: amdgpu/kaveri_mec2.bin -firmware: amdgpu/kaveri_pfp.bin -firmware: amdgpu/kaveri_rlc.bin -firmware: amdgpu/kaveri_sdma.bin -firmware: amdgpu/kaveri_sdma1.bin -firmware: amdgpu/kaveri_uvd.bin -firmware: amdgpu/kaveri_vce.bin -firmware: amdgpu/mullins_ce.bin -firmware: amdgpu/mullins_me.bin -firmware: amdgpu/mullins_mec.bin -firmware: amdgpu/mullins_pfp.bin -firmware: amdgpu/mullins_rlc.bin -firmware: amdgpu/mullins_sdma.bin -firmware: amdgpu/mullins_sdma1.bin -firmware: amdgpu/mullins_uvd.bin -firmware: amdgpu/mullins_vce.bin -firmware: amdgpu/navi10_asd.bin -firmware: amdgpu/navi10_ce.bin -firmware: amdgpu/navi10_gpu_info.bin -firmware: amdgpu/navi10_me.bin -firmware: amdgpu/navi10_mec.bin -firmware: amdgpu/navi10_mec2.bin -firmware: amdgpu/navi10_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_vcn.bin -firmware: amdgpu/navi14_asd.bin -firmware: amdgpu/navi14_ce.bin -firmware: amdgpu/navi14_ce_wks.bin -firmware: amdgpu/navi14_gpu_info.bin -firmware: amdgpu/navi14_me.bin -firmware: amdgpu/navi14_me_wks.bin -firmware: amdgpu/navi14_mec.bin -firmware: amdgpu/navi14_mec2.bin -firmware: amdgpu/navi14_mec2_wks.bin -firmware: amdgpu/navi14_mec_wks.bin -firmware: amdgpu/navi14_pfp.bin -firmware: amdgpu/navi14_pfp_wks.bin -firmware: amdgpu/navi14_rlc.bin -firmware: amdgpu/navi14_sdma.bin -firmware: amdgpu/navi14_sdma1.bin -firmware: amdgpu/navi14_smc.bin -firmware: amdgpu/navi14_sos.bin -firmware: amdgpu/navi14_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/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_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/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_ce.bin -firmware: amdgpu/polaris12_ce_2.bin -firmware: amdgpu/polaris12_k_mc.bin -firmware: amdgpu/polaris12_k_smc.bin -firmware: amdgpu/polaris12_mc.bin -firmware: amdgpu/polaris12_me.bin -firmware: amdgpu/polaris12_me_2.bin -firmware: amdgpu/polaris12_mec.bin -firmware: amdgpu/polaris12_mec2.bin -firmware: amdgpu/polaris12_mec2_2.bin -firmware: amdgpu/polaris12_mec_2.bin -firmware: amdgpu/polaris12_pfp.bin -firmware: amdgpu/polaris12_pfp_2.bin -firmware: amdgpu/polaris12_rlc.bin -firmware: amdgpu/polaris12_sdma.bin -firmware: amdgpu/polaris12_sdma1.bin -firmware: amdgpu/polaris12_smc.bin -firmware: amdgpu/polaris12_uvd.bin -firmware: amdgpu/polaris12_vce.bin -firmware: amdgpu/raven2_asd.bin -firmware: amdgpu/raven2_ce.bin -firmware: amdgpu/raven2_gpu_info.bin -firmware: amdgpu/raven2_me.bin -firmware: amdgpu/raven2_mec.bin -firmware: amdgpu/raven2_mec2.bin -firmware: amdgpu/raven2_pfp.bin -firmware: amdgpu/raven2_rlc.bin -firmware: amdgpu/raven2_sdma.bin -firmware: amdgpu/raven2_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_vcn.bin -firmware: amdgpu/renoir_asd.bin -firmware: amdgpu/renoir_ce.bin -firmware: amdgpu/renoir_gpu_info.bin -firmware: amdgpu/renoir_me.bin -firmware: amdgpu/renoir_mec.bin -firmware: amdgpu/renoir_mec2.bin -firmware: amdgpu/renoir_pfp.bin -firmware: amdgpu/renoir_rlc.bin -firmware: amdgpu/renoir_sdma.bin -firmware: amdgpu/renoir_vcn.bin -firmware: amdgpu/si58_mc.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/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/vega10_acg_smc.bin -firmware: amdgpu/vega10_asd.bin -firmware: amdgpu/vega10_ce.bin -firmware: amdgpu/vega10_gpu_info.bin -firmware: amdgpu/vega10_me.bin -firmware: amdgpu/vega10_mec.bin -firmware: amdgpu/vega10_mec2.bin -firmware: amdgpu/vega10_pfp.bin -firmware: amdgpu/vega10_rlc.bin -firmware: amdgpu/vega10_sdma.bin -firmware: amdgpu/vega10_sdma1.bin -firmware: amdgpu/vega10_smc.bin -firmware: amdgpu/vega10_sos.bin -firmware: amdgpu/vega10_uvd.bin -firmware: amdgpu/vega10_vce.bin -firmware: amdgpu/vega12_asd.bin -firmware: amdgpu/vega12_ce.bin -firmware: amdgpu/vega12_gpu_info.bin -firmware: amdgpu/vega12_me.bin -firmware: amdgpu/vega12_mec.bin -firmware: amdgpu/vega12_mec2.bin -firmware: amdgpu/vega12_pfp.bin -firmware: amdgpu/vega12_rlc.bin -firmware: amdgpu/vega12_sdma.bin -firmware: amdgpu/vega12_sdma1.bin -firmware: amdgpu/vega12_smc.bin -firmware: amdgpu/vega12_sos.bin -firmware: amdgpu/vega12_uvd.bin -firmware: amdgpu/vega12_vce.bin -firmware: amdgpu/vega20_asd.bin -firmware: amdgpu/vega20_ce.bin -firmware: amdgpu/vega20_me.bin -firmware: amdgpu/vega20_mec.bin -firmware: amdgpu/vega20_mec2.bin -firmware: amdgpu/vega20_pfp.bin -firmware: amdgpu/vega20_rlc.bin -firmware: amdgpu/vega20_sdma.bin -firmware: amdgpu/vega20_sdma1.bin -firmware: amdgpu/vega20_smc.bin -firmware: amdgpu/vega20_sos.bin -firmware: amdgpu/vega20_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: 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: 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_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atmsar11.fw -firmware: atsc_denver.inp -firmware: av7110/bootcode.bin -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_lp.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode24_lcn.fw -firmware: b43/ucode25_lcn.fw -firmware: b43/ucode25_mimo.fw -firmware: b43/ucode26_mimo.fw -firmware: b43/ucode29_mimo.fw -firmware: b43/ucode30_mimo.fw -firmware: b43/ucode33_lcn40.fw -firmware: b43/ucode40.fw -firmware: b43/ucode42.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.13.11.0.fw -firmware: bnx2x/bnx2x-e1h-7.13.11.0.fw -firmware: bnx2x/bnx2x-e2-7.13.11.0.fw -firmware: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac43012-sdio.bin -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/brcmfmac43430a0-sdio.bin -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43456-sdio.bin -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350c2-pcie.bin -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4356-pcie.bin -firmware: brcm/brcmfmac4356-sdio.bin -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac43570-pcie.bin -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4359-pcie.bin -firmware: brcm/brcmfmac43602-pcie.bin -firmware: brcm/brcmfmac4365b-pcie.bin -firmware: brcm/brcmfmac4365c-pcie.bin -firmware: brcm/brcmfmac4366b-pcie.bin -firmware: brcm/brcmfmac4366c-pcie.bin -firmware: brcm/brcmfmac4371-pcie.bin -firmware: brcm/brcmfmac4373-sdio.bin -firmware: brcm/brcmfmac4373.bin -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: carl9170-1.fw -firmware: cavium/cnn55xx_se.fw -firmware: cbfw-3.2.5.1.bin -firmware: cis/3CCFEM556.cis -firmware: cis/3CXEM556.cis -firmware: cis/COMpad2.cis -firmware: cis/COMpad4.cis -firmware: cis/DP83903.cis -firmware: cis/LA-PCM.cis -firmware: cis/MT5634ZLX.cis -firmware: cis/NE2K.cis -firmware: cis/PCMLM28.cis -firmware: cis/PE-200.cis -firmware: cis/PE520.cis -firmware: cis/RS-COM-2P.cis -firmware: cis/SW_555_SER.cis -firmware: cis/SW_7xx_SER.cis -firmware: cis/SW_8xx_SER.cis -firmware: cis/tamarack.cis -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: comedi/jr3pci.idm -firmware: cp204unx.cod -firmware: cpia2/stv0672_vp4.bin -firmware: cs46xx/cwc4630 -firmware: cs46xx/cwcasync -firmware: cs46xx/cwcbinhack -firmware: cs46xx/cwcdma -firmware: cs46xx/cwcsnoop -firmware: ct2fw-3.2.5.1.bin -firmware: ctefx-desktop.bin -firmware: ctefx-r3di.bin -firmware: ctefx.bin -firmware: ctfw-3.2.5.1.bin -firmware: cxgb3/ael2005_opt_edc.bin -firmware: cxgb3/ael2005_twx_edc.bin -firmware: cxgb3/ael2020_twx_edc.bin -firmware: cxgb3/t3b_psram-1.1.0.bin -firmware: cxgb3/t3c_psram-1.1.0.bin -firmware: cxgb3/t3fw-7.12.0.bin -firmware: cxgb4/t4fw.bin -firmware: cxgb4/t5fw.bin -firmware: cxgb4/t6fw.bin -firmware: cyzfirm.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-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-demod-si2168-d60-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-cx24117.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: dvb-tuner-si2141-a10-01.fw -firmware: dvb-tuner-si2157-a30-01.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: ea/3g_asic.fw -firmware: ea/darla20_dsp.fw -firmware: ea/darla24_dsp.fw -firmware: ea/echo3g_dsp.fw -firmware: ea/gina20_dsp.fw -firmware: ea/gina24_301_asic.fw -firmware: ea/gina24_301_dsp.fw -firmware: ea/gina24_361_asic.fw -firmware: ea/gina24_361_dsp.fw -firmware: ea/indigo_dj_dsp.fw -firmware: ea/indigo_djx_dsp.fw -firmware: ea/indigo_dsp.fw -firmware: ea/indigo_io_dsp.fw -firmware: ea/indigo_iox_dsp.fw -firmware: ea/layla20_asic.fw -firmware: ea/layla20_dsp.fw -firmware: ea/layla24_1_asic.fw -firmware: ea/layla24_2A_asic.fw -firmware: ea/layla24_2S_asic.fw -firmware: ea/layla24_dsp.fw -firmware: ea/loader_dsp.fw -firmware: ea/mia_dsp.fw -firmware: ea/mona_2_asic.fw -firmware: ea/mona_301_1_asic_48.fw -firmware: ea/mona_301_1_asic_96.fw -firmware: ea/mona_301_dsp.fw -firmware: ea/mona_361_1_asic_48.fw -firmware: ea/mona_361_1_asic_96.fw -firmware: ea/mona_361_dsp.fw -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: emu/audio_dock.fw -firmware: emu/emu0404.fw -firmware: emu/emu1010_notebook.fw -firmware: emu/emu1010b.fw -firmware: emu/hana.fw -firmware: emu/micro_dock.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: ess/maestro3_assp_kernel.fw -firmware: ess/maestro3_assp_minisrc.fw -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: hfi1_dc8051.fw -firmware: hfi1_fabric.fw -firmware: hfi1_pcie.fw -firmware: hfi1_sbus.fw -firmware: i1480-phy-0.0.bin -firmware: i1480-pre-phy-0.0.bin -firmware: i1480-usb-0.0.bin -firmware: i2400m-fw-usb-1.5.sbcf -firmware: i6050-fw-usb-1.5.sbcf -firmware: i915/bxt_dmc_ver1_07.bin -firmware: i915/bxt_guc_33.0.0.bin -firmware: i915/bxt_huc_ver01_8_2893.bin -firmware: i915/cnl_dmc_ver1_07.bin -firmware: i915/glk_dmc_ver1_04.bin -firmware: i915/glk_guc_33.0.0.bin -firmware: i915/glk_huc_ver03_01_2893.bin -firmware: i915/icl_dmc_ver1_07.bin -firmware: i915/icl_guc_33.0.0.bin -firmware: i915/icl_huc_ver8_4_3238.bin -firmware: i915/kbl_dmc_ver1_04.bin -firmware: i915/kbl_guc_33.0.0.bin -firmware: i915/kbl_huc_ver02_00_1810.bin -firmware: i915/skl_dmc_ver1_27.bin -firmware: i915/skl_guc_33.0.0.bin -firmware: i915/skl_huc_ver01_07_1398.bin -firmware: i915/tgl_dmc_ver2_04.bin -firmware: icom_asc.bin -firmware: icom_call_setup.bin -firmware: icom_res_dce.bin -firmware: imx/sdma/sdma-imx6q.bin -firmware: imx/sdma/sdma-imx7d.bin -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: intel/ibt-12-16.ddc -firmware: intel/ibt-12-16.sfi -firmware: intel/ice/ddp/ice.pkg -firmware: ipw2100-1.3-i.fw -firmware: ipw2100-1.3-p.fw -firmware: ipw2100-1.3.fw -firmware: ipw2200-bss.fw -firmware: ipw2200-ibss.fw -firmware: ipw2200-sniffer.fw -firmware: isci/isci_firmware.bin -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isdn/ISAR.BIN -firmware: isi4608.bin -firmware: isi4616.bin -firmware: isi608.bin -firmware: isi608em.bin -firmware: isi616em.bin -firmware: isight.fw -firmware: isl3886pci -firmware: isl3886usb -firmware: isl3887usb -firmware: iwlwifi-100-5.ucode -firmware: iwlwifi-1000-5.ucode -firmware: iwlwifi-105-6.ucode -firmware: iwlwifi-135-6.ucode -firmware: iwlwifi-2000-6.ucode -firmware: iwlwifi-2030-6.ucode -firmware: iwlwifi-3160-17.ucode -firmware: iwlwifi-3168-29.ucode -firmware: iwlwifi-3945-2.ucode -firmware: iwlwifi-4965-2.ucode -firmware: iwlwifi-5000-5.ucode -firmware: iwlwifi-5150-2.ucode -firmware: iwlwifi-6000-6.ucode -firmware: iwlwifi-6000g2a-6.ucode -firmware: iwlwifi-6000g2b-6.ucode -firmware: iwlwifi-6050-5.ucode -firmware: iwlwifi-7260-17.ucode -firmware: iwlwifi-7265-17.ucode -firmware: iwlwifi-7265D-29.ucode -firmware: iwlwifi-8000C-36.ucode -firmware: iwlwifi-8265-36.ucode -firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode -firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode -firmware: iwlwifi-Qu-a0-hr-a0-50.ucode -firmware: iwlwifi-Qu-a0-jf-b0-50.ucode -firmware: iwlwifi-Qu-b0-jf-b0-50.ucode -firmware: iwlwifi-Qu-c0-hr-b0-50.ucode -firmware: iwlwifi-QuQnj-a0-hr-a0-50.ucode -firmware: iwlwifi-QuQnj-b0-hr-b0-50.ucode -firmware: iwlwifi-QuQnj-b0-jf-b0-50.ucode -firmware: iwlwifi-QuQnj-f0-hr-a0-50.ucode -firmware: iwlwifi-QuZ-a0-hr-b0-50.ucode -firmware: iwlwifi-QuZ-a0-jf-b0-50.ucode -firmware: iwlwifi-cc-a0-50.ucode -firmware: iwlwifi-so-a0-gf-a0-50.ucode -firmware: iwlwifi-so-a0-hr-b0-50.ucode -firmware: iwlwifi-so-a0-jf-b0-50.ucode -firmware: iwlwifi-ty-a0-gf-a0-50.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/mt7610e.bin -firmware: mediatek/mt7610u.bin -firmware: mediatek/mt7615_cr4.bin -firmware: mediatek/mt7615_n9.bin -firmware: mediatek/mt7615_rom_patch.bin -firmware: mediatek/mt7622pr2h.bin -firmware: mediatek/mt7650e.bin -firmware: mediatek/mt7663pr2h.bin -firmware: mediatek/mt7668pr2h.bin -firmware: mellanox/mlxsw_spectrum-13.2000.1886.mfa2 -firmware: mixart/miXart8.elf -firmware: mixart/miXart8.xlx -firmware: mixart/miXart8AES.xlx -firmware: moxa/moxa-1110.fw -firmware: moxa/moxa-1130.fw -firmware: moxa/moxa-1131.fw -firmware: moxa/moxa-1150.fw -firmware: moxa/moxa-1151.fw -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8987_uapsta.bin -firmware: mrvl/sdsd8977_combo_v2.bin -firmware: mrvl/sdsd8997_combo_v4.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usbusb8997_combo_v4.bin -firmware: mt7601u.bin -firmware: mt7603_e1.bin -firmware: mt7603_e2.bin -firmware: mt7628_e1.bin -firmware: mt7628_e2.bin -firmware: mt7662.bin -firmware: mt7662_rom_patch.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: multiface_firmware.bin -firmware: multiface_firmware_rev11.bin -firmware: mwl8k/fmimage_8363.fw -firmware: mwl8k/fmimage_8366.fw -firmware: mwl8k/fmimage_8366_ap-3.fw -firmware: mwl8k/fmimage_8687.fw -firmware: mwl8k/helper_8363.fw -firmware: mwl8k/helper_8366.fw -firmware: mwl8k/helper_8687.fw -firmware: myri10ge_eth_z8e.dat -firmware: myri10ge_ethp_z8e.dat -firmware: myri10ge_rss_eth_z8e.dat -firmware: myri10ge_rss_ethp_z8e.dat -firmware: netronome/nic_AMDA0058-0011_2x40.nffw -firmware: netronome/nic_AMDA0058-0012_2x40.nffw -firmware: netronome/nic_AMDA0081-0001_1x40.nffw -firmware: netronome/nic_AMDA0081-0001_4x10.nffw -firmware: netronome/nic_AMDA0096-0001_2x10.nffw -firmware: netronome/nic_AMDA0097-0001_2x40.nffw -firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw -firmware: netronome/nic_AMDA0097-0001_8x10.nffw -firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw -firmware: netronome/nic_AMDA0099-0001_2x10.nffw -firmware: netronome/nic_AMDA0099-0001_2x25.nffw -firmware: ni6534a.bin -firmware: niscrb01.bin -firmware: niscrb02.bin -firmware: nvidia/gk20a/fecs_data.bin -firmware: nvidia/gk20a/fecs_inst.bin -firmware: nvidia/gk20a/gpccs_data.bin -firmware: nvidia/gk20a/gpccs_inst.bin -firmware: nvidia/gk20a/sw_bundle_init.bin -firmware: nvidia/gk20a/sw_ctx.bin -firmware: nvidia/gk20a/sw_method_init.bin -firmware: nvidia/gk20a/sw_nonctx.bin -firmware: nvidia/gm200/acr/bl.bin -firmware: nvidia/gm200/acr/ucode_load.bin -firmware: nvidia/gm200/acr/ucode_unload.bin -firmware: nvidia/gm200/gr/fecs_bl.bin -firmware: nvidia/gm200/gr/fecs_data.bin -firmware: nvidia/gm200/gr/fecs_inst.bin -firmware: nvidia/gm200/gr/fecs_sig.bin -firmware: nvidia/gm200/gr/gpccs_bl.bin -firmware: nvidia/gm200/gr/gpccs_data.bin -firmware: nvidia/gm200/gr/gpccs_inst.bin -firmware: nvidia/gm200/gr/gpccs_sig.bin -firmware: nvidia/gm200/gr/sw_bundle_init.bin -firmware: nvidia/gm200/gr/sw_ctx.bin -firmware: nvidia/gm200/gr/sw_method_init.bin -firmware: nvidia/gm200/gr/sw_nonctx.bin -firmware: nvidia/gm204/acr/bl.bin -firmware: nvidia/gm204/acr/ucode_load.bin -firmware: nvidia/gm204/acr/ucode_unload.bin -firmware: nvidia/gm204/gr/fecs_bl.bin -firmware: nvidia/gm204/gr/fecs_data.bin -firmware: nvidia/gm204/gr/fecs_inst.bin -firmware: nvidia/gm204/gr/fecs_sig.bin -firmware: nvidia/gm204/gr/gpccs_bl.bin -firmware: nvidia/gm204/gr/gpccs_data.bin -firmware: nvidia/gm204/gr/gpccs_inst.bin -firmware: nvidia/gm204/gr/gpccs_sig.bin -firmware: nvidia/gm204/gr/sw_bundle_init.bin -firmware: nvidia/gm204/gr/sw_ctx.bin -firmware: nvidia/gm204/gr/sw_method_init.bin -firmware: nvidia/gm204/gr/sw_nonctx.bin -firmware: nvidia/gm206/acr/bl.bin -firmware: nvidia/gm206/acr/ucode_load.bin -firmware: nvidia/gm206/acr/ucode_unload.bin -firmware: nvidia/gm206/gr/fecs_bl.bin -firmware: nvidia/gm206/gr/fecs_data.bin -firmware: nvidia/gm206/gr/fecs_inst.bin -firmware: nvidia/gm206/gr/fecs_sig.bin -firmware: nvidia/gm206/gr/gpccs_bl.bin -firmware: nvidia/gm206/gr/gpccs_data.bin -firmware: nvidia/gm206/gr/gpccs_inst.bin -firmware: nvidia/gm206/gr/gpccs_sig.bin -firmware: nvidia/gm206/gr/sw_bundle_init.bin -firmware: nvidia/gm206/gr/sw_ctx.bin -firmware: nvidia/gm206/gr/sw_method_init.bin -firmware: nvidia/gm206/gr/sw_nonctx.bin -firmware: nvidia/gp100/acr/bl.bin -firmware: nvidia/gp100/acr/ucode_load.bin -firmware: nvidia/gp100/acr/ucode_unload.bin -firmware: nvidia/gp100/gr/fecs_bl.bin -firmware: nvidia/gp100/gr/fecs_data.bin -firmware: nvidia/gp100/gr/fecs_inst.bin -firmware: nvidia/gp100/gr/fecs_sig.bin -firmware: nvidia/gp100/gr/gpccs_bl.bin -firmware: nvidia/gp100/gr/gpccs_data.bin -firmware: nvidia/gp100/gr/gpccs_inst.bin -firmware: nvidia/gp100/gr/gpccs_sig.bin -firmware: nvidia/gp100/gr/sw_bundle_init.bin -firmware: nvidia/gp100/gr/sw_ctx.bin -firmware: nvidia/gp100/gr/sw_method_init.bin -firmware: nvidia/gp100/gr/sw_nonctx.bin -firmware: nvidia/gp102/acr/bl.bin -firmware: nvidia/gp102/acr/ucode_load.bin -firmware: nvidia/gp102/acr/ucode_unload.bin -firmware: nvidia/gp102/acr/unload_bl.bin -firmware: nvidia/gp102/gr/fecs_bl.bin -firmware: nvidia/gp102/gr/fecs_data.bin -firmware: nvidia/gp102/gr/fecs_inst.bin -firmware: nvidia/gp102/gr/fecs_sig.bin -firmware: nvidia/gp102/gr/gpccs_bl.bin -firmware: nvidia/gp102/gr/gpccs_data.bin -firmware: nvidia/gp102/gr/gpccs_inst.bin -firmware: nvidia/gp102/gr/gpccs_sig.bin -firmware: nvidia/gp102/gr/sw_bundle_init.bin -firmware: nvidia/gp102/gr/sw_ctx.bin -firmware: nvidia/gp102/gr/sw_method_init.bin -firmware: nvidia/gp102/gr/sw_nonctx.bin -firmware: nvidia/gp102/nvdec/scrubber.bin -firmware: nvidia/gp102/sec2/desc-1.bin -firmware: nvidia/gp102/sec2/desc.bin -firmware: nvidia/gp102/sec2/image-1.bin -firmware: nvidia/gp102/sec2/image.bin -firmware: nvidia/gp102/sec2/sig-1.bin -firmware: nvidia/gp102/sec2/sig.bin -firmware: nvidia/gp104/acr/bl.bin -firmware: nvidia/gp104/acr/ucode_load.bin -firmware: nvidia/gp104/acr/ucode_unload.bin -firmware: nvidia/gp104/acr/unload_bl.bin -firmware: nvidia/gp104/gr/fecs_bl.bin -firmware: nvidia/gp104/gr/fecs_data.bin -firmware: nvidia/gp104/gr/fecs_inst.bin -firmware: nvidia/gp104/gr/fecs_sig.bin -firmware: nvidia/gp104/gr/gpccs_bl.bin -firmware: nvidia/gp104/gr/gpccs_data.bin -firmware: nvidia/gp104/gr/gpccs_inst.bin -firmware: nvidia/gp104/gr/gpccs_sig.bin -firmware: nvidia/gp104/gr/sw_bundle_init.bin -firmware: nvidia/gp104/gr/sw_ctx.bin -firmware: nvidia/gp104/gr/sw_method_init.bin -firmware: nvidia/gp104/gr/sw_nonctx.bin -firmware: nvidia/gp104/nvdec/scrubber.bin -firmware: nvidia/gp104/sec2/desc-1.bin -firmware: nvidia/gp104/sec2/desc.bin -firmware: nvidia/gp104/sec2/image-1.bin -firmware: nvidia/gp104/sec2/image.bin -firmware: nvidia/gp104/sec2/sig-1.bin -firmware: nvidia/gp104/sec2/sig.bin -firmware: nvidia/gp106/acr/bl.bin -firmware: nvidia/gp106/acr/ucode_load.bin -firmware: nvidia/gp106/acr/ucode_unload.bin -firmware: nvidia/gp106/acr/unload_bl.bin -firmware: nvidia/gp106/gr/fecs_bl.bin -firmware: nvidia/gp106/gr/fecs_data.bin -firmware: nvidia/gp106/gr/fecs_inst.bin -firmware: nvidia/gp106/gr/fecs_sig.bin -firmware: nvidia/gp106/gr/gpccs_bl.bin -firmware: nvidia/gp106/gr/gpccs_data.bin -firmware: nvidia/gp106/gr/gpccs_inst.bin -firmware: nvidia/gp106/gr/gpccs_sig.bin -firmware: nvidia/gp106/gr/sw_bundle_init.bin -firmware: nvidia/gp106/gr/sw_ctx.bin -firmware: nvidia/gp106/gr/sw_method_init.bin -firmware: nvidia/gp106/gr/sw_nonctx.bin -firmware: nvidia/gp106/nvdec/scrubber.bin -firmware: nvidia/gp106/sec2/desc-1.bin -firmware: nvidia/gp106/sec2/desc.bin -firmware: nvidia/gp106/sec2/image-1.bin -firmware: nvidia/gp106/sec2/image.bin -firmware: nvidia/gp106/sec2/sig-1.bin -firmware: nvidia/gp106/sec2/sig.bin -firmware: nvidia/gp107/acr/bl.bin -firmware: nvidia/gp107/acr/ucode_load.bin -firmware: nvidia/gp107/acr/ucode_unload.bin -firmware: nvidia/gp107/acr/unload_bl.bin -firmware: nvidia/gp107/gr/fecs_bl.bin -firmware: nvidia/gp107/gr/fecs_data.bin -firmware: nvidia/gp107/gr/fecs_inst.bin -firmware: nvidia/gp107/gr/fecs_sig.bin -firmware: nvidia/gp107/gr/gpccs_bl.bin -firmware: nvidia/gp107/gr/gpccs_data.bin -firmware: nvidia/gp107/gr/gpccs_inst.bin -firmware: nvidia/gp107/gr/gpccs_sig.bin -firmware: nvidia/gp107/gr/sw_bundle_init.bin -firmware: nvidia/gp107/gr/sw_ctx.bin -firmware: nvidia/gp107/gr/sw_method_init.bin -firmware: nvidia/gp107/gr/sw_nonctx.bin -firmware: nvidia/gp107/nvdec/scrubber.bin -firmware: nvidia/gp107/sec2/desc-1.bin -firmware: nvidia/gp107/sec2/desc.bin -firmware: nvidia/gp107/sec2/image-1.bin -firmware: nvidia/gp107/sec2/image.bin -firmware: nvidia/gp107/sec2/sig-1.bin -firmware: nvidia/gp107/sec2/sig.bin -firmware: nvidia/gp108/acr/bl.bin -firmware: nvidia/gp108/acr/ucode_load.bin -firmware: nvidia/gp108/acr/ucode_unload.bin -firmware: nvidia/gp108/acr/unload_bl.bin -firmware: nvidia/gp108/gr/fecs_bl.bin -firmware: nvidia/gp108/gr/fecs_data.bin -firmware: nvidia/gp108/gr/fecs_inst.bin -firmware: nvidia/gp108/gr/fecs_sig.bin -firmware: nvidia/gp108/gr/gpccs_bl.bin -firmware: nvidia/gp108/gr/gpccs_data.bin -firmware: nvidia/gp108/gr/gpccs_inst.bin -firmware: nvidia/gp108/gr/gpccs_sig.bin -firmware: nvidia/gp108/gr/sw_bundle_init.bin -firmware: nvidia/gp108/gr/sw_ctx.bin -firmware: nvidia/gp108/gr/sw_method_init.bin -firmware: nvidia/gp108/gr/sw_nonctx.bin -firmware: nvidia/gp108/nvdec/scrubber.bin -firmware: nvidia/gp108/sec2/desc.bin -firmware: nvidia/gp108/sec2/image.bin -firmware: nvidia/gp108/sec2/sig.bin -firmware: nvidia/gv100/acr/bl.bin -firmware: nvidia/gv100/acr/ucode_load.bin -firmware: nvidia/gv100/acr/ucode_unload.bin -firmware: nvidia/gv100/acr/unload_bl.bin -firmware: nvidia/gv100/gr/fecs_bl.bin -firmware: nvidia/gv100/gr/fecs_data.bin -firmware: nvidia/gv100/gr/fecs_inst.bin -firmware: nvidia/gv100/gr/fecs_sig.bin -firmware: nvidia/gv100/gr/gpccs_bl.bin -firmware: nvidia/gv100/gr/gpccs_data.bin -firmware: nvidia/gv100/gr/gpccs_inst.bin -firmware: nvidia/gv100/gr/gpccs_sig.bin -firmware: nvidia/gv100/gr/sw_bundle_init.bin -firmware: nvidia/gv100/gr/sw_ctx.bin -firmware: nvidia/gv100/gr/sw_method_init.bin -firmware: nvidia/gv100/gr/sw_nonctx.bin -firmware: nvidia/gv100/nvdec/scrubber.bin -firmware: nvidia/gv100/sec2/desc.bin -firmware: nvidia/gv100/sec2/image.bin -firmware: nvidia/gv100/sec2/sig.bin -firmware: nvidia/tegra124/vic03_ucode.bin -firmware: nvidia/tegra124/xusb.bin -firmware: nvidia/tegra186/xusb.bin -firmware: nvidia/tegra210/xusb.bin -firmware: orinoco_ezusb_fw -firmware: ositech/Xilinx7OD.bin -firmware: pca200e.bin -firmware: pca200e_ecd.bin2 -firmware: pcxhr/dspb1222e.b56 -firmware: pcxhr/dspb1222hr.b56 -firmware: pcxhr/dspb882e.b56 -firmware: pcxhr/dspb882hr.b56 -firmware: pcxhr/dspb924.b56 -firmware: pcxhr/dspd1222.d56 -firmware: pcxhr/dspd222.d56 -firmware: pcxhr/dspd882.d56 -firmware: pcxhr/dspe882.e56 -firmware: pcxhr/dspe924.e56 -firmware: pcxhr/xlxc1222e.dat -firmware: pcxhr/xlxc1222hr.dat -firmware: pcxhr/xlxc222.dat -firmware: pcxhr/xlxc882e.dat -firmware: pcxhr/xlxc882hr.dat -firmware: pcxhr/xlxc924.dat -firmware: pcxhr/xlxint.dat -firmware: phanfw.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: qat_895xcc.bin -firmware: qat_895xcc_mmp.bin -firmware: qat_c3xxx.bin -firmware: qat_c3xxx_mmp.bin -firmware: qat_c62x.bin -firmware: qat_c62x_mmp.bin -firmware: qcom/a300_pfp.fw -firmware: qcom/a300_pm4.fw -firmware: qcom/a330_pfp.fw -firmware: qcom/a330_pm4.fw -firmware: qcom/a420_pfp.fw -firmware: qcom/a420_pm4.fw -firmware: qcom/a530_pfp.fw -firmware: qcom/a530_pm4.fw -firmware: qcom/a530_zap.b00 -firmware: qcom/a530_zap.b01 -firmware: qcom/a530_zap.b02 -firmware: qcom/a530_zap.mdt -firmware: qcom/a530v3_gpmu.fw2 -firmware: qcom/a630_gmu.bin -firmware: qcom/a630_sqe.fw -firmware: qcom/a630_zap.mbn -firmware: qed/qed_init_values_zipped-8.37.7.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: riptide.hex -firmware: rp2.fw -firmware: rpm_firmware.bin -firmware: rs9113_wlan_qspi.rps -firmware: rt2561.bin -firmware: rt2561s.bin -firmware: rt2661.bin -firmware: rt2860.bin -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtl_bt/rtl8723a_fw.bin -firmware: rtl_bt/rtl8723b_config.bin -firmware: rtl_bt/rtl8723b_fw.bin -firmware: rtl_bt/rtl8723bs_config.bin -firmware: rtl_bt/rtl8723bs_fw.bin -firmware: rtl_bt/rtl8723ds_config.bin -firmware: rtl_bt/rtl8723ds_fw.bin -firmware: rtl_bt/rtl8761a_config.bin -firmware: rtl_bt/rtl8761a_fw.bin -firmware: rtl_bt/rtl8821a_config.bin -firmware: rtl_bt/rtl8821a_fw.bin -firmware: rtl_bt/rtl8822b_config.bin -firmware: rtl_bt/rtl8822b_fw.bin -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8125a-3.fw -firmware: rtl_nic/rtl8168d-1.fw -firmware: rtl_nic/rtl8168d-2.fw -firmware: rtl_nic/rtl8168e-1.fw -firmware: rtl_nic/rtl8168e-2.fw -firmware: rtl_nic/rtl8168e-3.fw -firmware: rtl_nic/rtl8168f-1.fw -firmware: rtl_nic/rtl8168f-2.fw -firmware: rtl_nic/rtl8168fp-3.fw -firmware: rtl_nic/rtl8168g-2.fw -firmware: rtl_nic/rtl8168g-3.fw -firmware: rtl_nic/rtl8168h-1.fw -firmware: rtl_nic/rtl8168h-2.fw -firmware: rtl_nic/rtl8402-1.fw -firmware: rtl_nic/rtl8411-1.fw -firmware: rtl_nic/rtl8411-2.fw -firmware: rtlwifi/rtl8188efw.bin -firmware: rtlwifi/rtl8188eufw.bin -firmware: rtlwifi/rtl8192cfw.bin -firmware: rtlwifi/rtl8192cfwU.bin -firmware: rtlwifi/rtl8192cfwU_B.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8192defw.bin -firmware: rtlwifi/rtl8192eefw.bin -firmware: rtlwifi/rtl8192eu_nic.bin -firmware: rtlwifi/rtl8192sefw.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: rtlwifi/rtl8723befw.bin -firmware: rtlwifi/rtl8723befw_36.bin -firmware: rtlwifi/rtl8723bu_bt.bin -firmware: rtlwifi/rtl8723bu_nic.bin -firmware: rtlwifi/rtl8723efw.bin -firmware: rtlwifi/rtl8821aefw.bin -firmware: rtlwifi/rtl8821aefw_29.bin -firmware: rtw88/rtw8723d_fw.bin -firmware: rtw88/rtw8822b_fw.bin -firmware: rtw88/rtw8822c_fw.bin -firmware: rtw88/rtw8822c_wow_fw.bin -firmware: s5k4ecgx.bin -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: softing-4.6/bcard.bin -firmware: softing-4.6/bcard2.bin -firmware: softing-4.6/cancard.bin -firmware: softing-4.6/cancrd2.bin -firmware: softing-4.6/cansja.bin -firmware: softing-4.6/ldcard.bin -firmware: softing-4.6/ldcard2.bin -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: sun/cassini.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: tehuti/bdx.bin -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: tigon/tg3.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: ttusb-budget/dspbootcode.bin -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23418-apu.fw -firmware: v4l-cx23418-cpu.fw -firmware: v4l-cx23418-dig.fw -firmware: v4l-cx2341x-dec.fw -firmware: v4l-cx2341x-enc.fw -firmware: v4l-cx2341x-init.mpg -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vpdma-1b8.bin -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wil6210.brd -firmware: wil6210.fw -firmware: wil6210_sparrow_plus.fw -firmware: wil6436.brd -firmware: wil6436.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: yamaha/ds1_ctrl.fw -firmware: yamaha/ds1_dsp.fw -firmware: yamaha/ds1e_ctrl.fw -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/ppc64el/generic +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/ppc64el/generic @@ -1,22441 +0,0 @@ -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/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x3d510c78 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x454419a2 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x55427166 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xb70de3aa crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xbe8f679b crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xbf05aa55 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x145643c9 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x5de4debc crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x6fd791a2 crypto_sha3_update -EXPORT_SYMBOL crypto/sm3_generic 0x022cad2e crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xade2612a crypto_sm3_update -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xcd484605 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6ec54946 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xa76a695d 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 0x2b34f92e pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x3a2dfc31 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x578ccaef pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x89b6091d pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x9ebeab01 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xb00d34c9 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xb1641efb pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xc37eaaea pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xcd23c150 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xd2d76f18 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xe0925682 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0xf9d26c66 paride_register -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x42366eaf btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x566971b0 rsi_bt_ops -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 0x116c6277 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x21e2a7e6 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x98bc4e15 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 0xe7f17a77 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x00fc5d03 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x26f938c1 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f38aabc st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9d980c5b st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x62f56d8e xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc6764cda xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd627cff3 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9a49ca73 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xac560e05 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb56582b0 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x039eec81 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x051f9bbb fw_iso_context_flush_completions -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 0x2be370b5 fw_core_add_address_handler -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 0x49f071c8 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a43acb1 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e406abf fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5097c21f fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x62ed26a3 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x676f62d8 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d76399b fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d95abbe fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d40b3ab fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa42050 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b5d54dc fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97ad0815 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9af923c0 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xad9ad528 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc376f077 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc5f4a82c fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc5ad97b fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcef068a8 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdadb9c66 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe145b16b fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe24daf27 fw_iso_context_queue_flush -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 0xee699a41 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1197b23 fw_core_handle_response -EXPORT_SYMBOL drivers/gpu/drm/drm 0x003f523d drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c3df88 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017d2282 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0418d142 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ecfbf5 drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f0bd9f drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b515fe drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e3df4e drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06139879 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x061efe8b drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f1de80 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x072bb80b drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x077e057b drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08145564 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08670ad6 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0874a4ad drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c975d9 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x095f246a drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a269448 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3569d5 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a373960 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0e7314 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da73e29 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddb2ae8 drm_agp_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddd0995 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e00b73f drm_agp_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e1e61d5 drm_dev_enter -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 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11517db0 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c7d4a2 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11e52a0c drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124cc76b drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1273046d drm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145edc41 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14663df7 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15168936 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b672f3 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16640b83 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16786252 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x169d404a drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a40c18 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x181a6bca drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ad0730 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1922fae8 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3ac37b drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1abb94bc drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1adea6b6 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b781c36 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be7655c drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfee279 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0a1db4 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0edbf0 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3f7db0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4e5faa drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd8aa55 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x200b1c72 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2032799e drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2032ece5 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21210ca2 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2147c36e drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21dff5ca drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x227761df drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22dd8ce8 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x249fd0bf drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ac51ae drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2646eb6d drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d56bd2 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f1e76f drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c0ec25 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d7fa97 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a901e84 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3bb7b6 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1bafb4 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ccac360 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1e1495 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee0b901 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f99daf5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3011db30 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31224b4c drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31eb84d7 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3228fdd3 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a6bce2 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ee5616 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x368392ac drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3752a88b drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x379250e7 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38560e49 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a1d5caf drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a4bc313 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a799061 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ace5071 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b39b517 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd79c01 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb1eb5c drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d33b572 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfb4c0d drm_gem_shmem_create_with_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e447649 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x409b8194 drm_agp_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41285e78 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413082ed drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c91b48 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370d5f2 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x445d402c drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44bce284 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e2d361 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x468ea9ab drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475b9b47 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x486ae4ef drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b4669a drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a30595d drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a52bc85 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acca12f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae1fa5f drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d18e9c5 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d942743 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da9e8ed drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbadfcd drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f08df84 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51391aa5 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5160475d drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5165de98 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad4cd drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5246d2bc drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526ffe5f drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52cfa3b6 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x543f54ff drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x546e8c88 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x550050b5 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x552dabc7 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x568e7acb drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x570975c6 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x572305e6 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x575de405 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x576a0156 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fb6251 drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589af587 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2d0a37 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a986099 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aaf00ad drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b794827 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b8d9b57 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d799df6 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e218ae5 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee7d77e drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe56db0 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ffd9e1c drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60700e55 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60fcf02b drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6170eac9 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61aa8137 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61bba202 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d223a2 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x628444d0 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x628d30bc drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6290a22b drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ea8442 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6597f64c drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d359da drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65de90b1 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a468c95 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be92e39 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c22f899 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3b4d3e drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d95495e drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4ac64a drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec52c28 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef7d729 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f77ec44 drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f78e92b drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6febdf0a drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x701e939b drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72cace25 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d2fcf drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x731740eb drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73dd56b5 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74389074 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x749091cf drm_agp_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7513639a drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d32fd4 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c45b51 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a487bde drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af42016 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b683577 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6b974e drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be4c4ea drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3c4c05 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea31694 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea47627 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7feeaa16 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81182b72 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x825b6acf drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a67694 drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c02b09 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x832fb887 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ea701c drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8784937b drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x879786d1 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8813c5de drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8880dedc drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x889b2474 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8918a85e drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8936caa2 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89fb2584 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0623c6 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b198976 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8beb9fc5 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d1be1bd drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f22427e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc25bd6 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc7066d drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x905df8d5 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a3311d drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91543480 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b9c5d5 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92000b9f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f4a9e4 drm_cma_gem_create_object_default_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932fc514 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937787c1 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93944a3e drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9472a1d3 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9547cc10 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ac4d0e drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x968936af drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972880eb drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98e97948 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x993237b4 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99442a09 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997e79aa drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99abdf8f drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac9e023 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6c59fb drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf8212d drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1fae47 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d135733 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e060492 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f8e5290 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fab8c25 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fce1888 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10151b5 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10e89d6 drm_agp_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22a04f3 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b98618 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42686f1 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55865cd drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b4c455 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7aaed71 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82719f2 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab159135 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab90ee0f drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac374867 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7dff32 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd023d1 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacdb5e41 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc0c538 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf03de98 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1455ef drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9c4d40 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff5df40 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb021c33f drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb051fc2c drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb064979c drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ec9b58 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ce6f36 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2455c7c drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e85583 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31cb29b drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb358d683 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387c752 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3ca1c72 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb50a5e87 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb574f5b1 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61c7943 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67c5311 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d9074a drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ddd624 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81fb317 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8487e7f drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9825546 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbabf5596 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb62b7f3 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc622419 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc69e933 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc92ac7c drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbccc6416 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd781409 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda0b4c1 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe19a94a drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee05a2b drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0034ce7 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ff97bd drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc11c2361 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc12c2269 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc283a345 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc287b4a3 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b0f3d5 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a67261 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc468ca8c drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4df8bf1 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59e48f8 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64e5526 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc905e3fb drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99d0e2e drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0d363f drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb18f075 drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc1a5ff drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe911b3 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde33892 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea5d5e3 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee5f0da drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3ab88c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbc2a22 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd059a425 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17b5ba8 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1cfed51 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd308e2a5 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4fd9b3c drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b1462c drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e3c39a drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5fa7b23 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d6ae77 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7623ff9 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77343ca drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8fe3327 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd961f818 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d6679a drm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb40ffb0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb46258c drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc0636d1 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcaaaa6f drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0a2c9c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd2df9b8 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3f45e5 devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd2041a drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde76edd8 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3399bb drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfcaf9eb drm_agp_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfef55be drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17bbc43 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18788ce drm_agp_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe21e3fa5 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d470ee drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4472174 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d162a5 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e51eba drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe849065d drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8eb1b62 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea356509 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8f2e16 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf1c285 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1b7017 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee036452 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1180b7 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef7a7579 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf179acaa drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22f4954 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf253feb5 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf256bd7d drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e04776 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf307ded4 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3900e89 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f2ef44 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf441d226 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf447447c drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a6fceb drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf508923b drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b36210 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6def831 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80ee9dc drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf975f93d drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f1d3eb drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1fffa4 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa256204 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7f2212 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb94aefc drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5bfb9b drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00aa579a drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x050ae307 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0638e4cf drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06544245 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074c8cfb drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0918cd14 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b24c71f drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b558a2d drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bfa1dd0 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0faa47b6 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10f8ba96 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11d96021 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125ab444 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x152f8246 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16163c79 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17102b3b drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b2ecc2 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c3bdcc9 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e68e081 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f88bc68 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21adcd63 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21fc759c drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ad295d drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x249ab59c drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25d2d5de drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c608a9 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28ab542c drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x290a215c drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299da86a drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a1c4cf8 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7e0dd3 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ae8f0a6 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6f9f3f drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f3cdc0b drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x310bf6b4 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31cfd7fa drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33928912 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x340ad044 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34114691 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x361e9438 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3be085b5 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c25d45d drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c56f2ef drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7101e3 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3df541b1 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed89dc0 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f72fcbd drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41023a77 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d1edb3 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42fc0b98 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x446c15b0 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46139d22 drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x467b81cc drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c817b3 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x473f3f6a drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48829d6c drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4906b82b drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4926e61a drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b93469f drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50471fed drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x511724ce drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5136f6ae drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d638ce drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52751b94 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x591a90e9 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d9527f drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ade9285 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2062c1 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d72f4ad drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e680faf drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb949be drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6d3370 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x611c6bfa drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62804a4e drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62b22b0b drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63015fe5 drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x649ade05 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699fcb66 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aa2f678 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bad37f7 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c2ef8da drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c71c86b drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dfd25e5 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e284763 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70750f6e drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719ea8a1 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71fa3766 drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x754e6be7 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766a5508 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77c26c7e drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7880c2bf drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78d8222b drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79565960 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7975451c drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a2aaff1 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b91d19c drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bb9dbcb drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be74e99 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0c5a3e drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80ab1e02 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x811ce593 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82a2ab8e drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8590b29c drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86cd8df4 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x877a66b2 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8786482b drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87ee8da5 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88d63b45 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8952993b drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ae2f2a3 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b470fbb drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c05fd13 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eb66516 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f903bd2 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9187c02b drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9219130f __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a78ea8 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92c75827 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93300717 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9385d4a6 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x947fac5c drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d83a5b drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99085b9b drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bbe8c83 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bd7b11f drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d61c599 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f28d54b drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa03b5050 drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1563218 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2115a24 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b2efce drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b487e0 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4545857 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa512d836 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa710c42c drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa87550f5 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a14dad drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaac5de8d drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacab682b drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae8ea5e2 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf194a86 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0252865 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a12c6a drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6025841 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6617d7a devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb77d2e08 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fee4a6 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8bdf48d drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc252be5 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbce44f93 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfcd549a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc08aed7e drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc238492f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d4ce2a drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4d2e1bd __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc55dbcbd drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc638e5ea drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b025c6 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85c0952 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89456b9 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc97ce857 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ac9e98 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca06623e drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca2d9ef0 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf14e3d drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14e9bb2 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1977ecd drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1b8d35b drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd201beea drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5a4fe47 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe586e5ae drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6012faf drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b99537 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91b1d21 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e82628 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xead08b69 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb45c8c6 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb91cf23 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec334aee drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed1732fb drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5cb4eeb drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d176ef drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ac2a89 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b79d0a drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9e70463 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab08218 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfab64cc0 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf8dbec drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb4c0a06 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb52e172 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd0d91f drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0fd389 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd61f3da drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe99814d drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6d9991 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x162238db mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2581a0fa mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x35c987e1 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4579e613 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47c105f1 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x87098329 mipi_dbi_release -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b8df8a2 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb3235f03 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb7073646 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcbcbf03e mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcecdd065 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd26249e3 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd37b71dc mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd92f3741 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xde73fbf5 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe20ecc2b mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec97f568 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfd0236ee mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1c1066fd drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1d9a0419 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1fcac1e7 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3c735709 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x488ed073 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5877d309 drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5abb2e35 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6b1b2489 drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7b17dfe3 drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x850cacc0 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x892704f5 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8b398c4e drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x928be866 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9641a887 drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x997f7adf drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8422dfb drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc5902a5a drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca3e5ba8 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcbdd5bdc drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfb85ccba drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02562460 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06197cae drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2f54cc74 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36f27e12 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x542cee0a drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x66ae6217 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6ad0c4bf drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x70967f03 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x73d9d3c0 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d516021 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5c08b93 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa880d65a drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xac3f8fba drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1fddfb0 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2139a5a to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc3dde1a4 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcdef6bc5 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe403e85a drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec001eb0 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x038c0b4d ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0aa306ca ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ec94769 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a6f5ee4 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b6911f5 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e821f63 ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x207f1bcf ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x241a997e ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2752e83b ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d341c0c ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33706d95 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34256852 ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x344bc0d1 ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3502d8b3 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ac03278 ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48b0079b ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ea11b2c ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54236807 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54922ff4 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x551744e9 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59a123f1 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c69abbd ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ce0a8f7 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65af56c0 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x669a501b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68b6c8e8 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ddada12 ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e07c5a7 ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x751f51aa ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79b44c41 ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b253d01 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ce5798b ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cf628e0 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7db444ad ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80e1cc32 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x831f5291 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87c401cb ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b357e1c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d738b9c ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f74fc62 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90b9b4ef ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x948a1e03 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96ab338b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6da8db5 ttm_agp_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7ea611e ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7f324f4 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xadb5fb1a ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2574d73 ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc6270cd ttm_agp_tt_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd35f4e4 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbde80ef1 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5a09f62 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc684f106 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc3a98c6 ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd25ff800 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd565cd3b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0388420 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe59fbc8c ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe624eee1 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8944d87 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef1694eb ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf009dbeb ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbe2beef ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc419464 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd4bcc3a ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff2faabb ttm_dma_tt_init -EXPORT_SYMBOL drivers/hid/hid 0x7d6824e6 hid_bus_type -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc284ad8a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd97be81f i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf11ae1ea i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3c702dd0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd332f68b i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5e184939 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x469b4e75 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x802dc101 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xac507292 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x042427d9 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1e1f9df8 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x234ff0d7 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fc90feb mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x79a51b48 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x82a74281 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x893749a9 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8f6f2f84 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5cb17cb mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae643f46 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc73dfda mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc58f1bf7 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd3d88390 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe1026217 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8453d14 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef2114d0 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x17d64497 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x631437ce st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb4e8a77e st_accel_get_settings -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x410c3919 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x4ce1738d iio_triggered_buffer_setup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x00717146 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x625edb5d devm_iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x65788468 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6935b1f2 devm_iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x60fa8cc8 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3998de0f hid_sensor_parse_common_attributes -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5d1d8dc3 hid_sensor_read_poll_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x79d0bdae hid_sensor_set_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8761d88f hid_sensor_get_report_latency -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x921a97e5 hid_sensor_convert_timestamp -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb098532b hid_sensor_write_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb5d118e3 hid_sensor_batch_mode_supported -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc287fa3f hid_sensor_read_raw_hyst_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcf1338b2 hid_sensor_read_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf33a19c5 hid_sensor_write_samp_freq_value -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x12a87705 hid_sensor_pm_ops -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x8b746b7b hid_sensor_setup_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x9a65ed5b hid_sensor_remove_trigger -EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe94d01e0 hid_sensor_power_state -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x05ab4409 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1876f6c4 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1de8ef46 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x306407c3 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8661578c ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9a7d9c6e ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa5160949 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbd7fa5e0 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdeeac95f ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0132aded ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x26e146f4 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x48f77bda ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xae47b871 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xdc9f236c ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x180ae088 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa1a7e321 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdb6959c2 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x01435630 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x031b8725 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1614a25b st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3fb6b575 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x48ca6a9b st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x53b6581d st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x673aca91 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6a738c77 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x77d0a555 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7edf6652 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9908d390 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9f705496 st_sensors_of_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xccb11639 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4d7a17c st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xec82191b st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xed2d9066 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0ccbc76 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf972ac81 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf525d886 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x7772cd3f st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x448575d0 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x6837f60c mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xcc252aef mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x17eaa517 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x26cccb52 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfa9eaf91 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x62e0258c hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8f7051af hts221_probe -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x60b24556 adis_enable_irq -EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd6f5e772 adis_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x49be3ce1 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x58e47f0d st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xb1f23f14 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x028c21fd iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x1756d19b iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x35d9c2be __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x3af73678 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x484f84ad iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x4866c7d0 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x5425f63f iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x555f6061 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x61af3e9a iio_triggered_buffer_predisable -EXPORT_SYMBOL drivers/iio/industrialio 0x6f32ff1c iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x6fbbd258 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x75ac8328 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x7df1ac07 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xb43a87cf iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xcef713b2 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xd337e1d3 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xd5dbd9ba iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdde2a3da __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe1b18b3f iio_triggered_buffer_postenable -EXPORT_SYMBOL drivers/iio/industrialio 0xe268b9c4 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xe32fd558 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xeb260b1a iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xfb389032 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x63eb87af iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7ecfa70a iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd5dfa317 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd994feca iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xeb88d967 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x01fe5933 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x753b03d6 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa9f6d382 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf59c016e iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7b2081ff iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa0aaf624 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x63b5d20a st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xba302a8b st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5d4a8977 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x60f054f8 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x68bc7490 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xae7a1338 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x44fce15a hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x46488d00 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x624eac67 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x81171e3d hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb73800f3 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xdf1888ad st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xdfe295a3 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x26ea3913 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3870ff68 bmp280_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x960a900f bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xad3acdc2 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xcc6ce471 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xacaf24f3 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xb3495468 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x930efdb0 st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa09b0266 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xb28c8d30 st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06f83921 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x27d1e68e ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3837dd05 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x39e127bb ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42987d67 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a50dc31 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x513c0eca cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51eeade8 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a1de4b7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x663fe7e6 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a67ff90 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x910a4a4b ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99fbf69b ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ff2d56d ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd94edb82 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe57ff93a ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed28ec7b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfaa77883 ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x021b29d5 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0350b601 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c2dffd ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0514ddba ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05ad971f ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x075c4884 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0916e2f3 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c2d1097 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d852036 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0da3698d ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dcc7b53 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f29be5a rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f4ce40c rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x142817d2 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17665102 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189ea938 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18d2c2a7 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a316c28 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a97b6f6 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dffd1a2 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e506043 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20104228 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x214b5796 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x253db3a1 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27253404 ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2759b992 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28c0d606 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a26b470 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ab85af7 ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba644ef ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c582f04 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x302e4173 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304dda73 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3087d604 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a1e0be rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31be8683 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x332327ce ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e2bd58 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x355a9b95 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356934d1 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3837dc69 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x397b6b3a ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a0e1770 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ba71a10 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd29997 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c9d3d0f ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dcd5fe7 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e82f82c ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ffd81ee ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4006da5a ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x409da507 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419fa872 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42000810 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42aa23ce rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x440c81e6 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x460d0a45 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47360da9 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x473f40ca rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x480b599f rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9c07fd rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dd5df6e rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e81e117 __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f17c8db ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa91b6a ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x527b3fe9 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b9ece1 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f45138 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5581ba55 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55e65778 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5642423d rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a2fb15 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56fc6dc2 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x588827f7 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d16f11f rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e074940 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1a0692 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5c05cb rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fa7ff62 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fe0014c ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6031a076 ib_get_cached_lmc -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 0x6259f107 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x639f5343 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64e739d0 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6622caaa ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6716915c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69d59d1a rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69f0ed28 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a19c9cd ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b982987 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d436c1a ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dac86c5 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f1c8684 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3f9593 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x702b14b7 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x714271af ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x727df86b ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73cf6894 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x744331d2 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79f1c537 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fbeecad rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd6a0f9 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81039c54 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81897b89 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x825dd55e ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82eb16b1 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87116f13 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87de5a07 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88125c15 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8924c168 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89bbbbf2 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a59090f rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a5e9c11 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c42d935 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d91256a ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f82ba44 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x903e7720 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x906c55ba rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91445339 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9435e2b0 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94dbf42e ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c17074 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98878dc7 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x995b1d64 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99fccbc6 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aa2e0e6 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d054c27 rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9d94f7 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e1c2146 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ff21fc2 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa12bfdd4 ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa180a6c6 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa390156a rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8180752 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa830c508 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9437783 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa0b3743 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa20ac58 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa37f7e5 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6b15cd rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02e054a ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0976b43 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0bd498d ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2011729 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb33750c6 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5dfe5bc rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb68e962f ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72e440b ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb76d1d22 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81b08a4 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb830abba ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb872df5b rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d861af ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc2ecd65 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf9972ea ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4903187 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6798364 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87bc941 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf46cc43 __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf63142d rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfd597b7 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd326eff3 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ed12a6 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57d2913 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9de8e16 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd33b0e8 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe09ec6a2 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe210e63f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe664c42e ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7d6b0a3 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebb6b168 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec416e2c ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed6fdfc5 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed9ee8aa ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee3ee48b ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefcf2cc3 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0cbd02c rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf562c652 ib_alloc_fmr -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 0xf7957f6e ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf803dbe9 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf84d971f ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9ac316b ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb9cc614 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc06a9f5 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc5788a ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf0d22f ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01264a85 ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11a2f303 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1962ddbb flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d2205c6 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20cc18a3 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21587167 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2316b677 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a6411c9 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36e2faa1 _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x391536d3 uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c6b49c2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d00e9d8 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f2ad0f6 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ca18203 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8010717a flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b1c0ce4 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x950c09b2 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa36daa81 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb65fd251 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc12f8e24 ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2d737f8 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce8651de uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd524e040 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef00e297 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7de6cc9 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd6d3dac uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x00ce56dc iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x02878a46 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22e12fc1 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4ba4a38a iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x89e9273a iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x910887ec iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb2e1b2c6 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9dc2aa1 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x037163eb rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05608b1a rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e2a572a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11582f1b rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22b51f7a rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x265b7825 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3619f19c rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43539a6e rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49054f74 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b72186c __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dd9be9f rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51aa93c2 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x610b18bd rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7509fac4 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89ef3567 __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e5c1230 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9089f450 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fd80aa4 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa88cc628 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb960d652 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1eb6884 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca61b0ae rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce74af51 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd24ff835 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeac29ccc rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9cfab91 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc4cb25d rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc821ca1 rdma_iw_cm_id -EXPORT_SYMBOL drivers/input/gameport/gameport 0x20a9f222 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x366fba49 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x49134078 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x742900be __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x78a4877a gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc2d6ad8f gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7481844 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9065acf gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd3c55318 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/input-polldev 0x4e7c67ce input_register_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x64f4181d input_free_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0x827d40fa devm_input_allocate_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xa0e70d0d input_unregister_polled_device -EXPORT_SYMBOL drivers/input/input-polldev 0xf2f9c450 input_allocate_polled_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x182dee77 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xcdde382e iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe43e0b72 iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x02f72d85 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0c1a143f ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xae280db2 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2afc429 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa2ab73af cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x542e7e70 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6266ff30 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6eb1ff33 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8f990847 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xc524ddd0 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xca32ff06 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc680330a ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf61f847e ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x02b7f552 capi_ctr_resume_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1a9276ed capi20_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50f4ae39 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa115ab5 capi20_register -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaaeb8b2e capi_ctr_suspend_output -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbfec6668 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcede57b2 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcf8b85cf capi20_put_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe56b3630 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfe5857e7 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 0x43ab69d3 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5b39b074 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9ccd72a9 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc311db09 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3befd0d7 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe8de5947 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07946845 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x24055346 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38857068 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e97b9d9 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x443fcabd mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50048ade bchannel_senddata -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 0x59b167cb recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x608efaaa recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68910a02 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e01e075 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78c80a81 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b50ff0a mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c5ebc45 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ea8ca3d recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc09f24ab recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc40e127c mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0bcde65 create_l1 -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 0xe3ed7169 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee6f23f8 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf43ef9e2 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6f1f213 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfab5fe2f mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb23edb0 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x90faafc2 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xcc69b4dc ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3c5d035b bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0x6e16e906 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xd3b45a8d bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/dm-log 0x1e931c8c dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x29792886 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x50a0ddca dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xaf01151d dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0b2ffaed dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1bbdbea5 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3aa87a27 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5fda471f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7bf2d4e1 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xcf45cc14 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0xbef3bbb2 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xdccf7091 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21f37630 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x29712d3e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x35272573 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3bd5b5d6 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d44970b flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5f0400e6 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7117107d flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9a79148b flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb78ad869 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb880d30c flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc9ad9db6 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf296db0f flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf57bcd9b flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/cx2341x 0x08e628f8 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x43947b39 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0xae63a2de cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd82f014d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x0a70738f cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x97e8a7a5 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xad63fc42 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xb45eb1dd vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2df687b5 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x44422e03 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ab7317f vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6bd759a8 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa27a92b0 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe49e4bde vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe877b5b9 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 0x08a3ccc8 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24c9bb4d dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3275fea5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x349d7775 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 0x3e60325a dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f2201f7 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40e89b87 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47d36a6e dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c5c26b4 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e8e2fc3 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c10ff0a dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e2cf6e8 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x731632f6 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d4d3447 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89c63a91 dvb_free_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98ee025f dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3d8628f dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb313211f dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3974226 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb70d5580 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc4ec4f3 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc21822a8 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7c4c292 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc8531cd2 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd86b9040 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd88bb997 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0668b7b dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe18f46f2 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec25f0b6 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdd17b57 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x99d4cfd5 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x5652a2ee atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x67f5280d au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x75d6eb47 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8a92d4b8 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb1cc7014 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce9f596b au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcecf689e au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdb0493b6 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe1ed56d0 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe7e23a72 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd69c00c5 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x63ffd592 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x9aaac0f8 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x58dffead cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4df74fc0 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x94c34490 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcc9183c9 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x045dfae6 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x2a6d6b62 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd6239dfa cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd8b16ca0 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfd78ea39 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0bb87d5e cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8f4de0b4 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x4ce3470b cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5ae80985 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6cea0db0 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb1f1f146 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc258e2b0 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xef94fa0c dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x01e4fd0a dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c6b0d53 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8fd7dcca dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9544ca11 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96e6ae35 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9848cf52 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x99bbc883 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e971fb6 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa6b02bee dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf6dcc53 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb794d8b dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdace45b7 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe06268e2 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe499e939 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe9575510 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x63a5c3ff dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0afeee00 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x629a9954 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x84440e67 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa23258d4 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdddcdac8 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf6a0ece2 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x83585ca0 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9a92dc3c dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9f1fc0ac dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc303a0a9 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x00de3d9f dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x93145c68 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0638d9fe dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1bb91226 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x28801409 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4d39ce77 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x59568b1a dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x76823293 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x98ac7d04 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b20330a dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa11ea73 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb7e8b41d dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbc8a6144 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbcdd9efc dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcfca0e83 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x331ff7d7 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4270a752 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8c3317a1 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xba5f1701 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc165d6ee dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xfffd5303 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xda03ebe9 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x169e3b37 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x82f7c179 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x80a1623d dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x02c4326b dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa90a1603 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xfc798c7b dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x77db0708 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1f2679e0 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc5e029e4 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x23d79e48 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x36df87a3 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x564d12ad isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xd65fd2ea isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x39077c25 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x9e52cb5b ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x52376614 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb504d13f lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xbf2ae478 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5240e232 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x95418cc5 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x321d9383 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x9f0559dd lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x3b591612 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x2ef33998 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x69eb4664 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xad4d3d88 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5ed30153 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x58221ea0 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xafe78d94 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9c1f875c m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x00fc606a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x58500932 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6d434322 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd881bb5b mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2a313eff nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x50fd8e62 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3e6e9399 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa3030b35 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1ebf419e s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe7cc5b76 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x39f96eb8 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe218e4b2 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xb7500fd9 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xba1ab473 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe9132497 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xa909b524 sp8870_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x047735ae sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x8a8077c6 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x55b3e20f stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x454fe370 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xbf14566a stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x3f64c041 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x6ea30297 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x08f5a6ec stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa9159e15 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd704a5b4 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe8e1c653 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x07a16483 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x55659e00 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x29f79d22 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x87a8e4e2 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2036921b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf9463fcd tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9c73e594 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb428b185 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x55000f37 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xef643723 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x183e00eb tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xb8eedf68 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfe3980e2 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x776870b2 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x3f56155b tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x233c2b97 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb8032489 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x1650d16f zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x96e10e8e zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x98ffcd65 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x405286b3 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x1e09318a zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x30486194 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x51f75548 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x542356c2 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6d945767 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x919defe5 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9f7a1521 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xad41033a flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x491597b1 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8ce2781c bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb6207435 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc928712d bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x72e33d20 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb8d72fd1 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdd83fd21 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2c0109da dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b7fcb8c read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3feae48e dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4ef3a14b write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x873c2e81 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8b675662 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa834ead9 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xba1617b9 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc0c5e353 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xfb455f33 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x14ec2fff cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5a91a0c3 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x737391fa cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb2d0d5b7 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf4f6b319 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 0xd0fdb6b0 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 0x0b6b225e cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6e12f74e cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7d4ff283 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x80bb1197 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x850db7fb cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb619d92e cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc03b68cf cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1cd6b784 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3dc15832 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0f856b1c cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x21b99c91 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2d186fce cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf659da1c cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2fdd8117 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3037ef9d cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5e72d662 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x66303032 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x703c7552 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x883e2d12 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x91c3aef8 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a020c34 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c13d8f8 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c12c6e2 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61726eae cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b62153d cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6fe91372 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7472fbaf cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78ec2403 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 0xa4288c1e cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb32035ad cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb326a353 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb448c3ff cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb895db9d cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc353fdd2 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb292add cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda544ef6 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc1e01a5 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf823bcd cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee01bcc2 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf13149aa cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x171d81e6 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28e1027c ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ba12912 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x755dfecf ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x76149ca4 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x80de7586 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81e6cbdb ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x90cf431b ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x93a63a8c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa6bdeb0e ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3d1ea0d ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb69f63fa ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcafb3aca ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd55b0611 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf1e8335e ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5d2cb06 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa14a7a2 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 0x1672c17c saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x30f44495 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x596e0765 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5cfa23a4 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x638c051b saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x67a9baac saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81e007d9 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x86127cf7 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2865899 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbbc83fa6 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0076f5d saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf9fccf86 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x5eae87e6 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1f3e0e42 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e4fd27d snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x64b61468 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb86ff8ee snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc45911b3 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf71cefa0 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xfb074dde snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0x5e2697dd ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xe007a8c8 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x926ba780 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6413b7b9 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0c873fa1 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x63b43245 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa77aa5f6 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x2c74c573 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xebc746b6 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdd9e68e3 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8a33e78e mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc8636d33 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb07554f4 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbb11dc79 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5625555b tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x0cf82eb3 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xefc372c2 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x66adf19d xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6478bda2 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa3c91a0c cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1cfcf25a dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1f37cd2c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32b45920 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x60f21ed3 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b214cb2 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x82da4ea1 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x988e6c74 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbb98edef dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf911e620 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2f6aa3e3 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x61512b14 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94dbd431 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa06fbd5 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdf4db112 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf2d45112 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf319dc90 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x668fcd33 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x29baea95 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f69a9e7 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f253f1d dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4839b95d dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e25b6d5 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x59f91b52 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x77d5c685 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x96c21a87 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa50fd120 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x83985dbb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa181ea98 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x3427182b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9de20ada em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x421b262b go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7f925b5a go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4732a5a go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbb9e0911 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc26221d3 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe0e7c7a6 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe1b18128 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4bd743c go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4acf90f go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0150ecb0 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x183ab8ef gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1b5b3ce6 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1edfe86c gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2214b754 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xca58941b gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xca738fe4 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe02446c9 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7bd39364 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x81b669c8 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcdd17a8b tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x51cf9174 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7a0890be ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0ad74260 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6b392757 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x81c461d1 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ab00eeb video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f1ab879 v4l2_async_subdev_notifier_register -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 0x1b5c0864 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1be272b2 v4l2_clk_disable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d737821 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1efd49b3 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fea6297 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x201d8ce5 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21954b86 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x225bf073 v4l2_clk_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27492052 v4l2_clk_get_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37e1e803 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39553389 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ff2e449 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41268f5b v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x420ec8e0 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4408932b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4501b3d4 v4l2_clk_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bd9fb83 v4l2_clk_get -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cbae635 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d564783 v4l2_clk_unregister_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x506afebd v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5249ec24 v4l2_clk_enable -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x540693f6 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54e45b2d v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b64d4b6 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ba4b876 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c470583 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61342be4 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x615b5af8 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x641d84c5 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6433184d v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75d9ab2e v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79964c29 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e31714e v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fd49975 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80a1f015 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x820e15d6 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c9dcff0 __v4l2_clk_register_fixed -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x964f31bb v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3e98fd4 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9fc8111 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3f23d86 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb671b933 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba948aac v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbe20298 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe9a9d00 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc090dd51 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc392063d v4l2_clk_set_rate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc965fe22 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca436a6c video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0b73328 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd17a6972 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd661b4a1 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde98d3d8 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2cb6568 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe795abd4 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7f61239 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8415ddf __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3171ae0 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf65ed69c v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf79629d8 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf797d65a v4l2_clk_put -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe066e2f video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfef67148 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/memstick/core/memstick 0x04a5fc19 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x19e6ba8d memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b2c45ac memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x228f0af3 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x409dc1b8 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x48ee1d4b memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x723403d2 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b061429 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa9c1b27b memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd9d5b82 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc55615b memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe13720a0 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x01b568ca mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02547247 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a40681c mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e848e1e mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1036b948 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25b7d3cb mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2786cfbe mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2811fc28 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2893ec02 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3534bf21 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47b04dcd mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x491dd199 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e046936 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e9d503d mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x65f79658 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x65fa68c4 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ff6ffc6 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c054fe3 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98bbac5f mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c849f72 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9dc368ba mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb70597d1 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbec00721 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc429bbf9 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6c27e8d mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1fc39fd mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6233a46 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda1d4bb0 mpt_register -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 0xf9ce4331 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b96b174 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c64e2f5 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11e26c66 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x159981b6 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e03a39f mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31b34799 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33af6257 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3955ecbd mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e3233e3 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x61aac55b mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e34287d mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7938d6d3 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x906e8eb5 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91c4e0e0 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9394dba6 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9513444c mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98cf1ff2 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa794211c mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9af7888 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8c57d6e mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb24df1e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbfbb5ab mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbde2ae31 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xceb26d5f mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1890316 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe32c022f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdde35e9 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/mfd/axp20x 0x0446bc6f axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xda9b5512 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xfc8a6f51 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x0b32f906 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x8a8e03db dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xeeb0af4d dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4a9ec765 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd01acdcf pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x02cc9742 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x067e71b2 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x22d47879 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5b000518 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x621af5f1 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73593ef9 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8bab55d9 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb7960656 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe00fbc08 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee52a5b8 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfa1b5f5e mc13xxx_irq_mask -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 0x3f408ed2 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x4c11fc25 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x70b171c6 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x8193b2b5 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x92183766 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xa0228cff wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9e169389 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe5327f3e ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x34691a69 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x7eb10435 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xe2151480 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0cae2cbf tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x16d40f9f tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x1dbf58e3 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x27c0a055 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x4a16e70b tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x58a7d88e tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x821727a5 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x96c7907a tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa021c4e8 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xa52fc154 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xb8228114 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xbda9a4e7 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x137201b5 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1f04619f cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x715836aa cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbdb6b978 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xea523ab3 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x642af18f mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7862b251 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0658ca70 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x30b530ef cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x31f67a34 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x92425da7 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xae15fe74 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb9229f19 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfff326b8 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7528be0c register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb817a2d0 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5abfe85 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xee40b1ca do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x0415143c mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xea8231fc lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x33da38be simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xc433d4ce mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xf797698e mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6cbf6f8f onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb24fc656 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x53ff38d9 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x84282b3b denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x049b14db nand_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x061cb28a nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x45e9f1e2 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4df9d17a nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79af3d57 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x990d827c nand_bch_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb5adf7fd nand_bch_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdde37d64 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xea478312 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xff6a113b nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x0c3fc61e nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc -EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xe303af42 nand_calculate_ecc -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d230261 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x961526a6 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa2f0d152 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xafbda0ff arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb130133f arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb82db02e arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7df7b3a arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf0e0e4c arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf437262c arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd454c75 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x28827c48 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x49a60787 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8a606110 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x064c5183 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ee4dc96 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f4cedf1 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f8b2991 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13bb3447 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1480dc37 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f2dfe22 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x377278ae b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3af7de93 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f2ecc07 b53_vlan_prepare -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46804a84 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b08481d b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60d31a2b b53_br_egress_floods -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64f9f2a6 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7221fbd5 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78d64d04 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80ab2628 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x81eec912 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82af9a0c b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84522758 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87e9479b b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x933d6b3d b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9370e6b5 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9e36aa0 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb025b746 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb508a195 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5690245 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb738c318 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb884fad7 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcaccff52 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd12147b1 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5b11a93 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7af75c5 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9700539 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb9d7df9 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcaf27b2 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0be1a85 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeafe2420 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0070f480 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x22fb8e22 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2fea138c b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9d8d4fbe b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa490f7f1 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbcc940d3 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x937d02a4 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb7a430e0 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xe8a36dd9 ksz8795_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xc99db876 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x101f9236 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x29a1a95a ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9693f7a5 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x73ee727f vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9c3616ce vsc73xx_probe -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c500592 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x33fe4344 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x417d428e __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5400efd3 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a22ef42 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x70febd40 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x83e0a032 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb3290ed7 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdd80e20a ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf0f84c44 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x55f1ae4d cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0b64ea65 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3caae3e3 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 0x038cb678 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x072cfe09 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46dac04a t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x488b62b0 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4891a692 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4dcc545c cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6bcb6d53 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6cd125b2 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x76a8b156 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x82376ef8 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb0c5e5ce cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4a202f1 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8f35437 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd31465b7 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf133a1a8 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf734566c cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0164688b cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x035c4881 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x088da9d6 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b266448 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11146b75 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b54f2b3 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1cb79334 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f7801ef cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fd308aa t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28499bb5 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f22da32 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x420cc147 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43f77d7b cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x480474ff cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x484a4849 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c61bf6a cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x513839f0 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x646ba65c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x661c9f47 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68df033e cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x791d5da6 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fcd226d cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88f97269 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8af7722d cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f44a250 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93782949 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94c9c8ad cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9913c86a cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1c60d82 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa25455d cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaceb26a3 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xacf265de cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb770a379 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc07ba110 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9bade9a cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce30b77e cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9783ed1 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xddc45564 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe04efd63 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe473f208 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebd2f65f cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2b57c6b cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf927ec49 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9c4c9a7 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x07a50dd2 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x257e5728 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x34b193e6 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7314d336 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa1282b09 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa7c44fdf cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xccb250aa cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05971628 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7ea2e9f8 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaea1c3d3 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc3a5e92f vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe4a3acea vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf7a31e32 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7b70855a be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x82467362 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x725dbd96 i40e_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xc4d051f5 i40e_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x44d3bace iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe8f645f6 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00626f84 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x033970fb mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f2a3320 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f431bb9 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16476347 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17dc922d mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c918604 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fc58364 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b92033 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24eef38e mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29bf1f85 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3213abf3 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3437a818 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35246348 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3afaebb9 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51462a3e mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5146bdea mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x596cc9c2 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x614d9abf mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x658fd9c0 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6756876a get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71192246 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7826c429 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80f56ec8 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89db8cb4 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d6478cf mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9139877f set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93ebab19 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99bc8df7 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa2497b mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c420651 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee2f9b6 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa02519db mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c5efcc mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9e051a0 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaaaaf50 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1a8285e mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc86941da mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94d27f1 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd90d8ef5 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfbf93d3 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefb7818a mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0356d3b mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61fa153 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04651871 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0595947e mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c70451 mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06031be4 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e9f62c mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f41f3e __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd263ed __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1435b710 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1999da3b mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a070915 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dc319f5 mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x216d35a6 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2291385c __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d59f8a mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2426301c mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27c12a15 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27eab37c mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a0d673d mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a37a845 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4356f7 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a2a4e4 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a80905 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33edb352 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3439d0dd mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36cb1444 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3990808a mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af2f128 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c0b1afe mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40da6f30 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40fccc1a mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435d87b1 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44faf354 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x459f7030 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46811970 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49cb9ccb mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc3b778 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50ccc295 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e294a7 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x545c2bae mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54bfe273 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56769f34 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58c203f2 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e25250c mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5bbea8 mlx5_cmd_init_async_ctx -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 0x61bbfd13 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681b5eac __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685578d7 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69025479 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a17ef0a mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a96a462 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e3e6803 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75d1d11d mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76e06d1c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782196ca mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d0d73b1 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8402d336 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84de88dd mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8546cfe4 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x855cdd09 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87fca338 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88894d7f mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a34441d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2cbb4b mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4d7000 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91622db0 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f1a98c mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x941821d7 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95343547 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96ad462d mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975222bd mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f9bb93 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c0428be mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce90b15 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e0a8fd __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa41d3e50 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa67e00ea mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6865e47 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa87da3c0 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8aae2a9 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae1ebeb mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac988db0 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed884fc mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1f0941c mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb44c1d19 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e4cb16 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7c4e127 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb800685b __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fb3ccf mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6a8098 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3c8219 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe86331e mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc020c63d mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc10fe96f __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f5ea45 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e77337 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb8d807c mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf4eff6 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce611b8c mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfd9029d mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4687624 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd62bd99a mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9e47b7e mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7c871e mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18e110e mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3466743 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d92eff mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea9af8d6 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebad89d0 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeedbb196 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef95bc24 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0cf7ec2 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf110c385 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32a53e6 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf362b7ea mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf68bedfa mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7277769 mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b39b68 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfae21bb9 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd17a7df mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa0e90c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x32760a29 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0119e64e mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x05c9adda mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16727262 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister -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 0x2dadfdec mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b856e65 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f380d4b mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5e108c99 mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72b6f3a3 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7cbb1ca5 mlxsw_env_get_module_eeprom -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 0x851cfb5c mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b9972a6 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa96160c2 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb4d2f71a mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb90f240c mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a80aeb mlxsw_core_port_eth_set -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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf52051ee mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x54e33ef0 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xc2f14c22 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x17f13551 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6577c2c2 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x08173fe6 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0863baf9 ocelot_port_readl -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2fb02237 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x32fc8554 ocelot_io_platform_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5c66f04f __ocelot_read_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x74b253bc ocelot_probe_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x7feba427 __ocelot_rmw_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9f02b7ca ocelot_regfields_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9fed769f __ocelot_write_ix -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa0b296de ocelot_chip_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa885a9c5 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xada8b4b3 ocelot_port_writel -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe169616b ocelot_get_hwtimestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3025cc6a 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 0x906c0a7c 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 0xdb6e6f76 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xea19d032 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x23b7758a qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x899e08ec qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x043647cc hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x27eda9f2 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3c18b81c hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6161138c hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x99e0c5f2 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 0x7db84a25 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/mii 0x1d756426 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x33afbda6 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x379e2580 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x52901a4a mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x6229a5aa mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x6fe62e7c mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x9bf21437 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xd9d16b9e mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xf406fc84 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xf60057df generic_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x17495549 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x019428bf free_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5a262955 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x4759aa8e cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x9c89d6a2 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency -EXPORT_SYMBOL drivers/net/ppp/pppox 0x106f412d pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x69e4327b register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdb687d1c pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xefdb88d3 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/sungem_phy 0x1d7e62b9 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x006bb467 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x1a3fb05d team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x377b41cf team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x3841aae9 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x397739c9 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x55fc188e team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd0608aa4 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xd2ec867b team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0xbea8a9fa usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xdfbdc586 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xe1d087e6 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x17943634 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cfc552b hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ed6b828 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5bfd8853 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x606b81f9 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa123c226 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb310bb8c hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb60e4c2 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf72cbf68 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa376b35 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x5c73bc5a i2400m_unknown_barker -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x08f1f983 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x209a7206 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c8c2da8 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900a9942 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ef2e1c8 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac5bde2d ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xafa6c149 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4aadef3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbc0e18c6 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb37d971 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3b4adf5 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfa1a0c22 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x014bce0a ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x021d704e ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02cdb31b ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04a6bb72 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e94713c ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14397552 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1513dcb7 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d83d71d ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2603ac83 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x384e084f ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41e62e2d ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45eb3414 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4675b650 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d2c6134 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53ed8ab4 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54f3f215 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dba8f08 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x679adeb0 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b5eb966 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c538c7c ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x716cd036 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71d4774d ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a35b84d ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ed32599 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8141c8fe ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8528b444 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x895da525 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89a18b68 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89c4e0eb ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b9d3a13 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d516f70 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x902d02f6 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x945b5d68 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1633a3b ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8ce5d9a ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb30704bf ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd25c528 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe35c6f3 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc310347a ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd8ece53 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf93add2 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf99aa6a ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3b85196 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5dedf00 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8e2e722 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea965c50 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf025212b ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9bc27a3 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x12701ef2 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 0x2f99561d ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x43a1a433 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ad5c4e0 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x576cbe32 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8623b754 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 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbc8058f1 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xde9cdba3 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0d1c8ba ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf3f06d52 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4b0e16f ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0add0dd2 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ff965f3 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15344a14 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x378bc206 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a68d394 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57789beb ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5813f40b ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59c22aef ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6153756a ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x717c3156 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77c20fa9 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e55fd58 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80c78715 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7a6791e ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa62f309 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9d8f0f3 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbdb2a8e4 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0586ba6 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb3f6abc ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd44e2812 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe33c2de4 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe959e472 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd6a9c20 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00f378be ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0835ae11 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0943073f ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ad6cc5a ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c6b8e9f ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d82ce8b ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dea2dbe ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1005e71d ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x152eeb81 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x166d6a16 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x210d04b6 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a13635 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28c7de84 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a8be299 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c5865f7 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31bbf42f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32292705 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34d238ef ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37784975 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x383767ca ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e6a0d8a ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4096e34f ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x413e0c42 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4293a185 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42f9d2fd ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x449199a1 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x481f9170 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4888dd99 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49b14eba ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c5d1d92 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d4102ab ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d7b86ef ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ddd326c ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ec6b720 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5303a7ee ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575b1540 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576cbada ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x593c98d4 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e10e2ac ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60c52075 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x676a67d1 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x677bfd2f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x697b7b4e ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6abc438e ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bc974c6 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d423cb9 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7248f160 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75e6dbb4 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76889520 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7beaac21 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80a0ead8 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85ed265d ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88fc7808 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x890c8e8c ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8aa92a00 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c10948a ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d73b191 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9158b9a0 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92443300 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933fccdb ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ed1d23 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x980c7917 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98fba8c0 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x997f1486 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99886ca4 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b038839 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ceb993d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e054231 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2f54c1e ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2fe573a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8c30a85 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9c0366f ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab27a8eb ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabb2f331 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb135a684 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2cbdf21 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5ba2561 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb62f2c1b ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb691735d ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc172262 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbebcf0a7 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc275a55f ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5362f14 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcadd0728 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb1c27ea ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbfe2a25 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0fc20f0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd473c391 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7cd0528 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd87f5271 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfd49cd7 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0cd0b45 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0f52a9f ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3bc3808 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5f77b97 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe950d51b ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef2a7a66 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0c27f64 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1662c1a ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7686715 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7c20f1c ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf828f392 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8ee570a ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbfa1fcb ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe2dc821 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfed14e53 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff69530b ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb9d6a46a atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc27ab7b3 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xee597c48 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0564bb10 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1fb0c1d2 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x390bc782 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3d2f55d5 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x43058193 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ec97641 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x53f56ea4 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x64031bcb 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 0xb5fa8b1f brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbedcd950 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7b17106 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd4a5bb9e 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 0xecd5ee68 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x930ef675 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd410ea09 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xec2f6556 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x099accf2 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1baff78c alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c3018ca libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x37567538 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x465fbca1 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5435e3c4 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x55b690a8 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56e8637d libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x58bff8c9 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b5f5332 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5ff0c5fe libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b939a95 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x934bfc42 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5d98b33 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa618bf2 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb18f255c libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9b9bbe9 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc5f8ee5 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc552834b libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe3e80468 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x003ad92b il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f6cd6c il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0388d001 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x095645f7 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b3cac1a il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c2b6af8 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dcb991a il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f57d101 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12960d6e il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1838df91 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x186939cb il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19d14b22 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19f55310 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a12d1b1 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b1c08ae il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f02d614 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a347075 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d087cd0 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3038c3ca il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3332e01d il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33a03e1e il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x345d3bc1 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bbb961f il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eba3a20 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40d72af8 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4229b97b il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x442dd5da il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44b2184d il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47614258 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47a25fa9 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54e34cc9 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5706aa0c il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x585b97c2 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5db919dc il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6145f1ea il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a7e3293 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bef436c il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cded2c1 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fa27be9 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7317f444 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7394637b il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73ed8412 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x741c7e47 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77c1d412 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7932ec9b il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79e9b5b5 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fb56ba1 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83fcc8e6 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85448319 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85d9af6b il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bb4a268 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c0c7e2a il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c5fba92 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c6e54bd il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d1cd3bb il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91b7a600 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91c4eb2c il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x953b7e0d il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9650a968 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97c43e77 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98b72f91 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99e7958b il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ffc86fd il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2273608 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa905d8d8 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9dbeb13 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabf8683e _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1707485 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb57bfc7e il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb77b01da il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbce967bb il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6a103f9 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8d9dfd8 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbefa399 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfe0050c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1946930 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2d715bd il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5033e54 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6ec797e il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda57ed23 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb3a3058 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf7d5da2 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0d67c76 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe20eef39 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe272166b il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe36f7933 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe38d3f6d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe424ca59 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe537edf2 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb896c45 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0a30f2f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1879e69 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf22fe79e il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf56f0eb0 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7cb81a3 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd3790f3 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdb140fc il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffef1205 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73d6904e __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe45aec74 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe76e8c18 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0109c8d1 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0119ef73 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b21fc59 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x22b8aab7 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x249985e9 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2a139d42 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2da2402b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4127cfa1 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x457da31e hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48c7e5c1 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e1f3da6 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ed7fd3c hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x53874755 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5708ad86 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6528ed50 hostap_master_start_xmit -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 0x88cd680b hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8fe0b199 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9443551c hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa798aaed hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xadcfe92a hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8828043 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbc61b543 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2a188b7 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4ab7dc1 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe604ee55 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0b339629 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22a52a93 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x40356c8a __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4267019d orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4b31398f orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x53118832 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69850ad1 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7578cc6d __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x796fdc5f orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f82278c orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x983921c2 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb4c54105 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbfec8544 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcccf5887 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1fde604 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe8dc0aff hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x0f3085ed mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x43d715c6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01faf59f rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x043972af rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x064eb8a6 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0667af20 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06d98da7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14804eea rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1762f433 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fe0ba73 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20257b90 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23340abf rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x347cbb08 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3be133d6 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3df30fe4 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40f042ac rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x430f4015 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a5cb76e rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a694c7f _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x518a44c9 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c2a0e78 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x684d5d32 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69018a9b _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x694b399a rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x706f5b0d rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7316dbc5 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7afd7e71 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83cf7284 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83d489be rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x874f72d5 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fbf988f _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1a3fd66 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacd5fac1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc77244ea rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6f000a2 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd89edae8 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda14159b rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe48ae97c _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe68376ae _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7630ba7 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebd5dc43 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf72cc417 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc5290ce rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8056736b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaeedea83 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd5cf0046 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd9bb314a rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5d048c1b rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x734bb1a6 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd67f4af1 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf70a3109 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c0da4ce rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f012d51 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11cefd95 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1abd8b32 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x261242fa rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x363325dd rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b17476a efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f2d0a2e rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x407290d6 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47bd1850 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48ec8662 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d8f1e61 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50d5c63f rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59b91aa5 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61f034bf rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66dc0cfa rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ac0223e rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f579bc2 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f98bda8 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x783895ea rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ea19503 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8216ef52 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8bcc760c rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa81af197 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba24b294 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd6cdaac rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc75f9280 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5bbb332 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8e0ae94 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebb2f916 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec541112 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb082146 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0910d811 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0b2bf6c6 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0f108a13 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x27e3b95d rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x39196bb3 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x52bbec5a rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x625f0cb8 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x73af46d8 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7c23d0e8 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7dcc5f69 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x8657151f rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x920e3457 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x962c25db rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xa902acad __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xb14b2fe7 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc6632e5d rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd4abfb46 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x62e64137 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x163c3fb7 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3c4735cf wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8a4bd4e9 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb62c92c1 wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0e0b3be7 fdp_nci_recv_frame -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x967fdbea fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb6d899ca fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xae678f96 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xf256b98c microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x12c89a67 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x643a39f4 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9416e240 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x1d51311f pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1258be2d pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x94878127 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0e5c991a s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9d4f14e9 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf7167759 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x005cb56d ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x048d182f st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x51335258 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5399b426 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6752811d ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9b4379a3 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa12d5fea ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xadf46628 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9e491bd st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd65a00a1 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a9e7783 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34f4ceb1 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a56f9d3 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x61a04b52 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7354a074 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x854f87d1 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94f71747 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98ed2ff1 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a44d579 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa0e85775 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb8585de4 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1dfca25 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2ce4054 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2691423 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb8e9020 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf0cb1bb8 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa456dd6 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa86194f st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/ntb/ntb 0x0464b56c ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x04982c58 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x23c67a6c ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x2627afc0 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x2abadf43 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x53edb98a ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6365de41 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x664c3ed8 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x860ee43f ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x9b68a044 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x9bb10b68 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xab762ee3 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xad26dd66 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xb9d06519 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xce3de8da ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe83fa29b ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xea4f26e0 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xecfba69f ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xfa23a500 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xfc797280 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x05322434 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1b2acbd1 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x00e7c58c parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x07cafcb7 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x07e54363 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x1264709f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1b2b31f4 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x2618359d parport_release -EXPORT_SYMBOL drivers/parport/parport 0x26a1c1f0 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x28df6d25 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x45a4818f parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x46ad57fe parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5433d2b2 parport_register_device -EXPORT_SYMBOL drivers/parport/parport 0x5e37db37 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x610c705e parport_write -EXPORT_SYMBOL drivers/parport/parport 0x6678ebf7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x70b65ab8 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x712733b3 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x79231651 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7f3531c0 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x85596fe7 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x8f2683f3 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x8fbb4854 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x9bf357ef parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x9fe6ca53 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xa48fe51a parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xb4807c5f parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb7c6a16d parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xd11c9ff1 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xd181d404 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xd324af5f parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xd81d82b6 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xde915166 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xe461e53d parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport_pc 0xce34d9ed parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xea733540 parport_pc_unregister_port -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x061f6d7c rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0d96c9a7 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0e0499eb unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19a18f47 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f9beaa9 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x399d111a rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d1df782 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x53865417 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63edf54d rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x820bf667 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8df7d8f5 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4674253 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce680fa1 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xffc8aa38 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0d944c90 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc50be640 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd0617f4c scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe64db22c scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xeb45ff19 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a034700 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e444fc4 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f9b2a54 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x32424b17 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x762d517e fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fdb0850 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c93c822 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf49f30e fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf188c95 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe5d4c1a9 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5dd8dcb fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x012f9466 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0606a407 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x079af3d2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08c41513 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0eaceef3 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11accfb2 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1865b0d0 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f5ff309 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24756e11 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3271600c fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x379ed280 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x381d416b fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b0cfe84 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41089ab6 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43c850f7 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46359f7b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4637d5fc fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4658adba fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46a6ccf6 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ab89290 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f5911b2 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53efcae0 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56f5e03f fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5803d807 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58b3e086 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a2e2c50 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x615cc7ed fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x625a7df6 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775fb871 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d0b231b _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ff01eb8 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83a77e60 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86b68440 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8828167d fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c46cd47 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cb62c8e fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90357aac fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91cbf084 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ab82e1b fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b114622 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d0283e8 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa019142e fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9375390 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafd29a42 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb46010a7 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e82215 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca6dc61e fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7e70067 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd62675c fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe38ea911 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7d274bf fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef59b82a fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1c6bf8e fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4b25f0d libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb0b831d fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb6a1517 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe4416cc fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffc13929 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0e14abd3 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2b174608 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdec48acb sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x169386c9 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 0x16b1f5d0 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37e237c8 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3894bd52 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4a0bc38a qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x58861614 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f2de65f qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa37e3af0 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe927e1f qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe25b8bb0 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeb16be75 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf763a17a qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb551f08 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x58e2411b raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x82e60757 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xc30221ae raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x072f3286 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24a80835 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d9c1568 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x493be8b6 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7f9c9c1c fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8253a49f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88e41cc1 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x97f6905b fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa35d98e5 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa88cb5cd fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb668d61b fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9804900 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd604b9e2 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdaf0f436 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcc0f5e1 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf4e44859 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0242ea6e sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09044f31 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x209dc847 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ef98d4c sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32f4bc58 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3410f2de sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38a3c21d scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c0fd2e8 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c29445c sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x436de8cf sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59ddbcbc sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d4a6149 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6087412f sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x639aca25 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x640e12eb scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75dcfc30 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88daa102 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0066ed3 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6ee094f sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6efeabf sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6c13595 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8af5437 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba1208fd scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0867538 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd38d151f sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2ba5cf2 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe40d31db sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe55ec674 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbf91fea sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb1c36b68 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc1cbb350 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe25c5a10 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xefdfc7e4 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf09e424e spi_attach_transport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x868dee12 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x8e92fac1 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3dc664c0 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ea5b2e4 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7176ffb0 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x84eede1d ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9936ec1d ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb98b2593 ufshcd_runtime_idle -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbf2830f8 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf02576ce ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfa2a2df0 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe185ba18 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xec3cb361 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b459555 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x25d3ea67 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2613b7d6 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x319df28b sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37230f55 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4aa61873 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54af2e25 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa51a2cea sdw_add_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7d83828 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc5558a6b sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe109eb70 sdw_delete_bus_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe71cd579 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf9a1b82a sdw_slave_read_prop -EXPORT_SYMBOL drivers/ssb/ssb 0x079f5090 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x1528664e ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x1ee9466d ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x34ed9413 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x3bd2dcab ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x41a42dec ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x4d0f0cc3 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x4f74b550 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x67fe2dba ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x6a569bed __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x77533a55 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x7e7446c7 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x7e77e065 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x81f1e8ce ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x9ac21aab ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa92dbc43 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xab5e4703 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xba7d727a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xebf0ebbc ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xf57e49cf ssb_set_devtypedata -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b8f970d fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d0390b9 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0eaf0ddb fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d7aaad8 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e8caa5c fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d116643 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d6587e8 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fcd1a78 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x411a432e fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46584364 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e6b5665 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x52fe1d88 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62d3736c fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e76d827 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f7ae460 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73da3dfa fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8220f5bf fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83212456 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x969a4c8b fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbe3acca7 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca530f59 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcec06f77 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd02ffac0 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4b6c2e4 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3250632 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa527bb90 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xedd4b3c6 ade7854_probe -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x08814f16 avmcard_dma_alloc -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2d335682 b1_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x342bfeb5 b1_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x6cda24db b1_alloc_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x76b96dbe b1_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x79daa8ae avmcard_dma_free -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7e9283ac b1_send_message -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7fd7bead b1_getrevision -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8717d97c b1_parse_version -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x892feffa b1_load_config -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8a0232a3 b1_load_t4file -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8d5290d0 b1_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x99bc6781 b1_free_card -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xbaea0d04 b1_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc168f72d b1_loaded -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x0a81390f b1dma_reset -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1aa3c509 b1dma_reset_ctr -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x4f9f95e4 b1pciv4_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5fec35ef t1pci_detect -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x6142e8f8 b1dma_release_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x78cd838d b1dma_proc_show -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xbac2b028 b1dma_register_appl -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc37d485c b1dma_load_firmware -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt -EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xfcfc7ae0 b1dma_send_message -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02ab6fd4 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09ac7294 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cc48c58 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x176cab99 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ae16f1b rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23da494b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2614b3ba RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e82e05f rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35148519 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38b511ab rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cb844c3 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f2385ab rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44930929 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58f8c9dd rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5982bf2b rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6575c7b7 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cada6d rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c6c246b rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e0923d5 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f50281b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x733c35ea rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76a08c99 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8278f564 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x831b95a3 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84fe5ee8 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e7fd1de alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x964082ca rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x972db68f rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a724626 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9de94a19 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa09d8469 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa15b00ba rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa59b4795 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7ec7ec9 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9995234 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac88bd61 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb43ddd35 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb98d524c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd29d895 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc178e916 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc53c7133 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca2987e1 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcda200cb rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1fb6267 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd941c3a5 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbbf04ff rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe50bb453 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4705290 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfaacccc7 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fccc582 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1481f751 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c3bddd9 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c4f36bd ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24621aa9 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27bdb04a ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29bace34 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d04347e ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39549974 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3caeb76b ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x432678c5 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43a6c78e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a65e534 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x542aacb7 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b528131 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61648035 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6973e238 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a298e08 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73326a3c ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a49ffc6 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8217ed6f SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8421b635 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8517c535 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8652209d ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b5e41ba ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e84a077 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9234c179 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92d9b2ea ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x935c9b3e rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x945250ef ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94cee0d3 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96e0dd6e ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fce4196 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcb5360e ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe91a8a6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc830e74e ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcac0fcac ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd1959eb ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd9cfc3d ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd04d0959 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda17e877 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1747da6 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe429cda8 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8d5aa3e ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb6700b9 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec08b5b0 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeee6a652 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef82921b ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef89aaaf ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf05ffad4 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf927733c ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc2ab01b ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfde88b27 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x050f3360 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09532a02 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14bfdc99 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15d72f10 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29da778d iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b05b898 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e1b55f3 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a87a203 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b6b5a8e iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a1023c6 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x507ab5ee iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x584bf6d2 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68997623 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b15af73 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x814a3772 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x830d3b33 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x899bde5e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ad75938 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fb9d6fa iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x935ef8d2 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x941bf7d7 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96ed2860 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa219ffb3 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa87cde04 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaadbe653 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad4abfee iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb38580eb iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8273ef7 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbad3a3bf iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbaeb6cd8 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe1453c0 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc17efabc iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc52e98e1 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc792c8e8 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca6fe1a5 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7e885d9 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda866fd5 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a7548c iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe92170c5 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf75d06ec iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfadad213 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd83f6dc iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfdd58b5d iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff3bad36 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x007d1213 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x03c48efc transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x05bc5629 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x084b6153 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b021dda transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bfcffc4 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cf83307 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x11082103 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x18aade69 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c29f2a5 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x24c0d25a core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x24eb12af target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2866b824 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f78b7fa target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x324df337 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x32d95f2a transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3adbe0c2 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x43c3a259 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a0d2d20 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x50edd0e1 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5410aac7 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x5505b096 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x56233de3 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x58d840e3 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x5966a01a target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x64d90b2b target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x683254e6 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x693b0d0d target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x697d9067 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x699e6fbb transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6aea804f core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c212612 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x6dc3cdf1 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6dfeb526 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fc289e9 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x820a7260 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x83b111a5 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x86b5d9d4 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e9f605c core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9477a0d8 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9876757c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b4c16f5 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa795c072 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xab209af8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xacd2ff1e transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xafc6ae72 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1464753 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xb29802da target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xb59dc855 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb709d97b core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc705c7a7 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xda862533 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xda8afba3 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xdab3ebde transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdad81fc0 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbaaf4c2 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf42ccde target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdff083ed target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0xe04cb684 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1c408ec core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xe375de8e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xe56ed254 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xeda281ba sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xef0a4d8d target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xf11f042c target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xf14de73a spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf287aceb passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5d2f919 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ffe911 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa70113d core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xfaac501a sbc_attrib_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x10c36ff4 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x3c8a89d9 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb6d73118 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x20492e52 usb_wwan_set_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21441a5a usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x35445d3f usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x45c92a51 usb_wwan_get_serial_info -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4a73ab4e usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c3094df usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x609e8eee usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x64ec9745 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x68ce551a usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x771c4ac8 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a428445 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbbdd60e0 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca755075 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa7a69bfc usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xca72427e usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0fc59364 mdev_uuid -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3379aaf4 mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3f1d9b28 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4b329eb7 mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5cee4bbc mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7387ecf4 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xaac61474 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb7ba4ef2 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb9851d7e mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc84daa91 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe2f658b6 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf666e7c4 mdev_unregister_driver -EXPORT_SYMBOL drivers/vhost/vhost 0x268652fb vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x62159657 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x2c190abb lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x4a8a5a7e devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x60e64102 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x65b58f21 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x06748a46 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x10e49ee7 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x26d6708f svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3087e1ad svga_settile -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 0x87ba63a2 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb8a19b31 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcc7368a9 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2986e383 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xfa66b1ab sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf12d3e5c 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 0x5469cbb4 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2208a438 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x786783e7 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9c1684f3 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6ad3068b matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x80fc7b79 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa09a7205 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe3d092a5 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9ead7755 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0f9167d3 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x08cd4e30 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2be074d2 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6fc73a7c matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa6c69d42 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x84b03b59 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xcea04024 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3a54423e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x445c242c matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x590fefd1 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe6c0a485 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf00a622e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5f89fabc mb862xxfb_init_accel -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/w1/slaves/w1_ds2780 0x80d2321c w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd51173db w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x08791102 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8434defe w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x0034b597 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x6fbaa6ee w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x71d3b034 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xa80372d0 w1_remove_master_device -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x674fdc4b bd70528_wdt_set -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x6ea21465 bd70528_wdt_lock -EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xef13e0c5 bd70528_wdt_unlock -EXPORT_SYMBOL fs/fscache/fscache 0x0230cd6f fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x07de6719 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x116e649c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1482f18f fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x163939f4 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x18df33eb __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x19c462d7 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1a94f163 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x1c4fce46 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x276b1ca8 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x2b98329c fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x346926d5 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x3fba2a98 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x3fec71bc fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x497fd530 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x560fa212 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6b4e9721 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x71fc7333 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x747d8547 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x849704c5 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x85d769eb __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x8ed58c8e __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x95a4b22d __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x99d0b746 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa664232a fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa76827ef __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xb39dcf09 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xb4410407 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb6670bd0 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb8aa9330 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbb1e8ee9 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xc22ddd1a fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc39fe977 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xc47418fe __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd0feb667 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xe2622faf __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xe2663795 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xf55b185a __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xf840a110 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xf94185fb fscache_object_retrying_stale -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x2c6d903b qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x62925c34 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x64ce1e1e qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6c0544f2 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x7e191d23 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xab2cfa89 qtree_get_next_id -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be -EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x09358fd4 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x30cadbfd lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2ae7dfe6 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x89abc2df lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9886fe23 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa40a5d68 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc00d3feb lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd064613e lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x99a48db2 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xbadbb07e register_8022_client -EXPORT_SYMBOL net/802/psnap 0x795f6db2 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xae734308 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x01201576 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x07e51b42 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0934fb42 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x0ac69d7b p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x0b321489 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x0cd94e11 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1861c0a3 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x196602a9 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x1a0a0aaa p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x2255342e p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x278f8741 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x31fbb419 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x396a33b5 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x4316d594 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x451993a9 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x45b6a827 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x469503f1 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x46f6ce06 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x49720525 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x4d3620b4 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x4e6784f1 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x5a1150b5 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x75493c13 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x7580d2c7 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x7d5a0070 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x8281aca2 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x87c4c980 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8885f690 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x9336d7c9 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x986618fb p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xa1e6b841 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xb935d9cc p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbdde1ad3 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xbe7453fd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc428cf66 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xc75d1858 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdec759dc p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xe1da0152 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xe33ea490 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf156ef06 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xf8ee6eff p9_client_fsync -EXPORT_SYMBOL net/appletalk/appletalk 0x0f61977b alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x49acc375 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x763937ea atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xe4124cae atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x1ab63a75 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x1c529fd1 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x1eba8a33 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x329b5051 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x59fa4820 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x673ede93 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x97fd7f41 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xaa591170 atm_charge -EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf3472d89 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf519ee64 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xfb7e5120 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xfe48cd55 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xfe875bcd deregister_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x0284cf8c ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x063bc6a7 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x0aa09bb7 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 0x5309b445 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x66ad7eb2 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8d146ab8 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa62d2c13 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xad725712 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x046e6c86 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x063cc612 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cfe13dd hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d8f2808 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f09e736 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x23039ac2 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27fcd000 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ac53fb2 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e46cbe0 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f7ae24a hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x303f1240 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x331d602f hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x34b3c01b hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35ed08bc hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x389ae100 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b224de9 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c444026 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df9da87 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ca55215 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x504fe4a4 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e86aab8 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7502dec0 bt_sock_wait_ready -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 0x898d3295 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x92c74ca1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99bb6bcf __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa04bb673 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1e6462a l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xae624900 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4bdf5aa bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7cbcffe bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8053fb8 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcba6d17 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc21c3a06 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9ace148 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc41828b hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd099f8af bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7c9a52a l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda6bf50c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdced45e0 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf48f558 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf8ea2ff __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3adae9a bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef86a9a1 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd968ed7 hci_alloc_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x32361364 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x585679b7 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x882882f1 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb384adcb ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/caif/caif 0x0e57ccec caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 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 0x64dcb425 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xba360585 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xf33ca20a caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xff10623d get_cfcnfg -EXPORT_SYMBOL net/can/can 0x2b0a5e29 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x2e5fecb5 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x6b5919c0 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xcc42acf3 can_rx_register -EXPORT_SYMBOL net/can/can 0xd1f2833c can_proto_register -EXPORT_SYMBOL net/can/can 0xfff3726d can_send -EXPORT_SYMBOL net/ceph/libceph 0x01aef7d5 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x02b92a4b ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x02ec7e21 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x03d434e1 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x07012dc1 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x076b68a9 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x0794c35f ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x0e0a2fce ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x0e85c7f9 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x11059281 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x19f9813f osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x1b32a72a ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1cea0bb8 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2492528b ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x253078f9 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x259f1806 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x28866fe2 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2b1ddf31 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x2eb33413 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x31b8d932 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x35e96eb5 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x38b4c426 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3921e293 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d891eb4 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x3e4b8c7d ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x40fc2fa4 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47606c10 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x4793bd47 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x492ed6a9 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x49650bf1 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x4e0a43bb ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x4e5b9363 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x4f8584c3 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x516319a8 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x51668851 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x580ae51b osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x588c3c75 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x58ceb2b7 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d43e0cd ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x634add6e ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x67263084 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6cf0e587 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x6e6d5d5d ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x6f5b736a ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x71bca795 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x71ef498f ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x73ed8dd5 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x74263cc3 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x77166a10 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x7a24fdd9 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x7dca16a1 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x7fe768af osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x81e48fa4 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x82dd1d1e ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x836f9e8b osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x84f69e83 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87beaf3b ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x88eda305 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x8955b02a ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x8dfb713d ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x922f4be9 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x9310960b ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d4d36d5 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 0xa066cfb1 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xa1239de5 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xa20f8d56 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xa471b6db ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xa51870b6 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa7ca84de ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xacc8d945 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xad54740c osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadaf0496 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xaf5a5b57 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb1e2e268 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xb2b07f20 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xb39e0942 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8314388 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xb95383cf ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xbc58bde8 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xbc67a451 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf6f2ed1 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcd2957c2 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xcd52cbff osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xce0cf110 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xcf5f55d1 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xcfb9f5f8 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xd1191888 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xd239ae43 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xd286cbda ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd4ab5ab8 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xd4bd9ae2 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd831a64a ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xd968b665 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xdc629b8f ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdedff72f ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0c78ae5 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xe471b0fd osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xe57bbd82 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe9ec2ed3 ceph_pg_to_acting_primary -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 0xf34263c8 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xf450d02f ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xf45cbd2a ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xf95ee298 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xfc967ee3 ceph_msg_put -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x27070dee dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5474c4f6 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dsa/dsa_core 0xa3d4057b dsa_port_vid_del -EXPORT_SYMBOL net/dsa/dsa_core 0xadd74fb4 dsa_port_vid_add -EXPORT_SYMBOL net/ieee802154/ieee802154 0x255235f4 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4b9274b7 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x66128aaa wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x93ba9b7e wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbb61435f wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0ee21df wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8f0d1ca5 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xfe397e7f __fou_build_header -EXPORT_SYMBOL net/ipv4/gre 0xe05f23ae gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x51436c94 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7295847a ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa61dcc1a ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdea7d807 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x741572b3 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcf700e3f arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdb8df14e arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdcf45a2a arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc1c3de59 ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xebdb8352 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfa5cd243 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x2e93eb69 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x84d4fb98 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x03345a77 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x04e83069 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e8d671c ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x360cf066 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x44df8c67 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x613f4126 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7ad8a1f4 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9399f1a3 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xee6ac062 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff9eb69d ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x02d55685 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4a229f5b ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x60c811a2 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x76a80a00 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x9742acb7 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6c6d5c17 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc65fd44b xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/l2tp/l2tp_core 0xc69ca42a l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_core 0xd9625f36 l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_ip 0xdece35dc l2tp_ioctl -EXPORT_SYMBOL net/lapb/lapb 0x05b4c1da lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x18f622b6 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x37226d11 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x3af6e350 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xa0a3fdf1 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xab1d8a12 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xb91b6d8f lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xbc7755b8 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x15e0c1d1 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x33ad2df4 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5c0f9383 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x93140646 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xabab07ba llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xb923ad34 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xc6016eda llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x00192fad ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x08007a8a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x088ccb00 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x096b1fe5 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x0a5eab6a ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x0b4c4b4c ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0dab10e3 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x0f57f00e ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x118ef18d ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x11a7320a ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x144e6fdd ieee80211_csa_set_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x1576f4fe ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x19ee6fc8 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1dbf9940 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x23cca8e6 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x265769da ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x269186f8 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x284bfc49 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x294dd579 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x2a5b657c ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2a746c89 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2b9e2b5d ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x2ddcf1f3 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x31838d32 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x32766bc2 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x33ed1171 ieee80211_csa_update_counter -EXPORT_SYMBOL net/mac80211/mac80211 0x3ae4dd00 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x3e5baa46 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x4557d0c0 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x4a2b226f ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x4cd7a199 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4faf5dcc ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x50a566b9 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x59327975 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x59c1d3e9 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x5a6a7a26 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x6018d077 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x672741d7 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6b35a263 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x70f00a33 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x72085f06 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7a7a2f3a ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7ae74f58 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x7b7f52d4 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x7bf57a57 ieee80211_csa_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x7f7015a3 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x856af5b7 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x8678843b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x877ba123 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x889bb2b8 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x898de068 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x8af82bc1 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x9778a966 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x98a67a0c ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a56f81c ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa11e9cf2 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xa1cfb330 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa287c3c0 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa2d98428 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xa3deea32 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xa409bf56 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa47f90bc ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa5474d06 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa9902ebc ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xaab647bd ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xab3efcb1 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xabf2f1e0 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xac4eb862 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb02edc47 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xb4244a29 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xb4623d31 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb8d5dd7a ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xbf2adbd3 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xbfa46d45 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xc59ae00e ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xc5fa05af ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xcc2c1f75 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xcdf2deda ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xd5bf4a41 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd88b1203 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd94e6e18 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xdc385d64 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdd7e1f9f ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xe6b456d4 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xec73f2fc ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xed6e2504 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xefad403a ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xefcda9ee ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xf3444a43 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xf4be643f ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xfa2d87cd ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xfceae9d9 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac802154/mac802154 0x36e5f434 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5ec8dcb0 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x7b23d1f7 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x8f9918d0 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc2b6f38f ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc6209a08 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd3caffd8 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf9de2a40 ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1222e1c0 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14f4a7e7 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x281749f7 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31898fe0 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x38f8728f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3949cdc7 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6cbbf049 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cc1fdf0 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ed4459e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9347face ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98b77d95 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9e9491d ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd10cff20 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe9f932d7 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec5f3c0d unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8fcf7e54 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbf8b7eae nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x072799f0 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x1122d7ed nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x1dbe805a nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nf_nat 0x44d759cf nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xc1703d29 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x3750dfba 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 0x522bf8c8 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x7a96d78b xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8481b80f xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x89566e3c xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x9e60fcb7 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb1ca663a xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -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 0xee862763 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xf25b7343 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x06609a1f nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x09e44948 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x103d01c6 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x2476a27f nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x269ae1c1 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x44d81820 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4b3a1b4e nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5af24310 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x62d1f8e1 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x75c082be nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x76a84d20 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x86a50960 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8e061870 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x8e872366 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xa7dc380e nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xa848d21f nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xb123717c nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb4ed68b2 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xcbd5e8b6 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe22f776c nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfe5de40c nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x00bbfb86 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x0134d641 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x0390b17b nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x074f25cb nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x09ad355e nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0f6d4bbc nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x18661afa nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1d5d50e1 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x2701f43e nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x327288d8 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x472a1864 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x4bb7b0a3 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x53b4aa1b nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x5be8e030 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x638a3abe nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x638fac7d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x678bd228 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9318fefd nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x95c6af29 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x9fc25e5b nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa93955d3 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe79653a nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd36f9df0 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xd5129ea3 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xd78266b5 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xe2e10a58 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xe7958210 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xf0b9baa6 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf5b73ace nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nfc 0x2544071a nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x2a1537b1 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x2ae3ce0e nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x37d7ca81 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x3933c7b7 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x395beedf nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x3d809853 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x49e90fdf nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5a732b52 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x62e35fab nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x80b123fc nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x88c8b9c0 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x905755c3 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x96d14d80 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xa3c63dbd nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa75428c5 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xb6754d15 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xc27437ff nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xc7c920fb nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xd23696fc nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xd6457229 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xdfe0c587 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xed5eeb97 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xf8f98678 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xfda61aec nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc_digital 0x5cdd41f7 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x77b37392 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x88b306ba nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8f9a2adc nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x2d50ce4c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x490a84d7 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x58d7ff58 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x642f9848 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x853f90df pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xb334476e pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xe2f3237e phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xf81436e1 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x11e92e44 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19019ff8 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5014f395 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5bafd2c0 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c90fbd6 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ca98661 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x774c6bee rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x77bc8174 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a4314e9 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8c352b8e rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x979b2063 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd2309f1 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbe2cc3a0 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc11f0eef rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc7cd3e88 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcb6ad186 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf35a66a8 rxrpc_kernel_send_data -EXPORT_SYMBOL net/sctp/sctp 0x6e5cf31b sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x155cc153 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbd4a084c gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe9693bda gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x420df2c9 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x72fd78c0 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc4cf260e svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x041a44bd tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xc66b2204 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xd2cb4f36 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xf9c6105a tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x0c427ef7 tls_get_record -EXPORT_SYMBOL net/tls/tls 0xb4f70710 tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xbb3694d5 tls_register_device -EXPORT_SYMBOL net/wimax/wimax 0xcdd44568 wimax_rfkill -EXPORT_SYMBOL net/wimax/wimax 0xef8bfb89 wimax_reset -EXPORT_SYMBOL net/wireless/cfg80211 0x00943b49 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0342e185 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x06303291 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x086a6755 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x0a6e5346 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x14428f24 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1852f30a ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x189b6e8c cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x1b648314 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1c3a1fed wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x1c4ea665 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e98519e cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x205949fc ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x21f4a32f cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x23207dd8 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x23b36108 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x2890eed6 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x2cfefe98 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x328609b2 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x344b0042 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x34ba325e cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x34d6b272 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0x4035ba93 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x4168bff4 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x41d930e4 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x42b85e3d cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x46198d7a cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x4794994a wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x48ddf136 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4b72caed cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x4fb6e1a3 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x50395f98 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x554957fe __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x55b71e14 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x58ad1234 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5c41916c cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x5ce5bebd cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5dcbb211 ieee80211_get_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x61051acd cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x622dd3d4 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x70a9bd46 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x719a2b98 wiphy_rfkill_set_hw_state -EXPORT_SYMBOL net/wireless/cfg80211 0x74871e92 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7d1b5e1c cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x81463d27 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x83232e34 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x843e4daf cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x87f7113b cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x8c177254 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x8dbc7bc1 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x8fcff677 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x90a16476 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x93a206e9 cfg80211_sched_scan_stopped_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0x9618d80f __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x964806b1 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency -EXPORT_SYMBOL net/wireless/cfg80211 0x9aec12ec cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9b89e509 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x9be53040 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xa07e4993 cfg80211_rx_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa2250698 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xa25beab0 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa6b1ef7a cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xa8fb148b cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0xad62a5ce cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xaee05f23 regulatory_set_wiphy_regd_sync_rtnl -EXPORT_SYMBOL net/wireless/cfg80211 0xb05fead1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xb1f68a3a cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb218946a cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbc448ddd cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xbecfbd86 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xc5b05ba8 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc67f72f3 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xc96109e9 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xcac4be60 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xcaecc444 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd6ee05e cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xce441457 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xce5b1b85 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xcfc74c3c cfg80211_report_obss_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd0c73a75 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd7748826 wiphy_rfkill_stop_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xddbf0d1d cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xdee2d54b cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xeab8cb0b cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xee506531 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xefed12a6 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xf1f4e10e cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf29ae71c cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf313dfc6 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf69d1448 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xfc388529 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xff45cdec regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xffc07fe2 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/lib80211 0x2e8db8c9 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3557acb6 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x8996b33e lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xa1c0c85c lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc06239d7 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xebaa5a40 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0xa05a5c3c ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x426ec11b 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 0x3f6a6c12 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x54438121 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 0x77d030bf snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa2cc600f snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 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 0xea0b8bba snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x093c8f86 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x099d6296 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x167eaddf snd_card_new -EXPORT_SYMBOL sound/core/snd 0x1827f55d snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x18c7bb50 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x18ef648a snd_card_free -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 0x209e4c7d snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x252a34cc snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x2ccd97ce snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x2f2c046b snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x2ffde626 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x313fae2a snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3567b64b snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x3754a5f4 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3df6c7d8 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x452d5ce1 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x466dc71c snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x52fcaaa0 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x546cb6f5 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x602aff2b snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x67f5a1fd snd_ctl_remove_id -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 0x73d7e467 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x763c01d9 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x76cbe6c8 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x789a3c30 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x7b7b0396 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0x864c2f07 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 0x927255de snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x932f6e06 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x97eceaed snd_device_new -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9faaae79 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xa1c52a6c snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xa26b1ca4 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xa5605764 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xadc25278 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xaf905b42 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xb0948c99 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xb17c3c6d snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5acd8fe snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xc421457b _snd_ctl_add_slave -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xd8e4d312 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe63e3c68 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xeb5a5f87 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xf5018002 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xf79e59e6 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xfa8203d9 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xff5b06e2 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-hwdep 0x8f209bb0 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x01ca419a snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x145cde1f snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x18c3fc6f snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1ee914e3 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x205bdc4e snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x29c156f3 snd_pcm_create_iec958_consumer -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 0x415c8432 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x41e1a0cc snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x45648b12 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x481eaee4 snd_pcm_new_internal -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 0x509057e9 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x585f0ad8 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x63e005be __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66da55b5 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x6dee0ca7 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x73e73eae snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7baa6038 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x7e468651 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x7f5d50aa snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9db6cd37 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaba5139d snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xacd9c3ea snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xaf521318 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xb530c50a snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xb8602708 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb9605721 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb961c2ea snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbc6b1f6f snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xbd8b7c17 snd_pcm_limit_hw_rates -EXPORT_SYMBOL sound/core/snd-pcm 0xc4771b69 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xca103bae snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xd1ee425e snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xdea0da73 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xdf625964 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe0a958f9 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xe35210fa snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe6a59dbd snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xefc163e1 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xf459200f snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xf5bbb17b snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf64727aa snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf827ed59 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xfd609187 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x09c91d3d __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x23f04e8c snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x52706c74 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x565a514b snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x56aec708 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d5cac4e snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d1bd4e7 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x75826d59 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d94cc6e snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x81dab985 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x86928ef5 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa80a27e0 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0c8619e snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9495245 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc13b5b6b snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc561b869 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcead17aa snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8f30572 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf653a1ea snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdc01c9f snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x63507f84 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0302b71a snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x04b241e7 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x094efebe snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x4b6b09a0 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x717e7645 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x85ecd858 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xa02f801c snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xb0e1883d snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xb1cc7f63 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xdfb3cae8 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xf2be0f87 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xf67ab7aa snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xf6bc4bae snd_timer_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x98f231ba 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 0x25d93ee8 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2e74e7ef snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3d08de23 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x87552e55 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x95853ca7 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa8452eda snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb84f3306 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe04ca0ec snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe728279c snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b05e540 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 0x413c45c8 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x676842ee snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6a896287 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ef36523 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x97a8c7cb snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb9db48ca snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe9a44693 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf30f1544 snd_vx_free_firmware -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0104216b iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x030fe4f7 snd_fw_schedule_registration -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19bf05eb fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a3d72fe cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28edeba4 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dd3a793 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32a97ab8 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36a5d55e amdtp_stream_pcm_ack -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x395db6be snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f952c73 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ffdab22 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52ff8283 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53b9dda4 amdtp_stream_pcm_pointer -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b23753e cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b9ad52b amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d32b3d8 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x618e70c5 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f054960 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1691b61 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4ceb1b3 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3f02248 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb735fab6 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9337ef5 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc4752d1 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcaeff379 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcec9f159 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd875dbb3 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda240fa1 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe21471a9 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea7af13d amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee5959c1 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0dfe342 fcp_avc_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x721d8afa snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x86805001 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x009c63ea snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x076cf438 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x081c509b snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50437142 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x67ed0650 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7286c020 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8f11560d snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcbb23b95 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x01388711 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x880639ff snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb67eb3f1 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd43c0618 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x38196b30 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe8ccef7a snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-i2c 0x135c63e4 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x175167ab snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3bf73623 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6c9c8f86 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x72b8cdd5 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb7d87042 snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1f569d66 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2363fb00 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4c2ba5c5 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x51452f99 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6cb6d7a0 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x92930a3f snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc9ab98d7 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfcde8f5f snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xff00cb40 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xffd69164 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06e834dc snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f37dc68 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45a162ed snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x637f20af snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a85b5f4 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78e60de1 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa002559f snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa88ee707 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xab24729c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbbe12192 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe475e84 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc722c636 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7c5976e snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd82baf8f snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf59f31b snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe3b683c4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf28fb5a2 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4b44e061 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x505ed455 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5c1809d4 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c492e94 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x151dfe40 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x189ca7ca oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d87a3ee oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f148b9c oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c9472e4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7a6698f4 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9849b6cf oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ddabd56 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb50f6fe8 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf07495b oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6c018c8 oxygen_pci_remove -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd72b2ff oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcf824a19 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd165ab2d oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde81bebf oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0c5c5e4 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3cd337c oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7605cea oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe79fda6c oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee6b6d82 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x226e1130 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x64ebd45e pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4b2bd994 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x8705ce78 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/snd-soc-core 0x0f2f485a snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02966e8a snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ad007c2 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11f9f4d2 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13073be6 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x144bbb25 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17cf45f8 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cbdc115 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1dc27eba snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1efb06d6 snd_sof_init_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28c03eba snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3600d9b9 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38cddd29 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x559a4729 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x586886b7 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5938485d snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6dc535f8 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fd5e3a1 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74ba606e snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75256f5c sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7aedb564 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d4b0d70 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x873b716d snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c7c3503 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8d437a88 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97848271 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0136d6f snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaaf064c2 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab3a1297 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac78dd7d sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf8b04cd snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaff6d62c snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1a0363e sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6f8ddf6 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb88c5ebb snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2165258 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc223d3a4 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc42f63b2 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc67879f1 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xceba3524 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf3cec0c snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd80fa3a7 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe374c47f snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4bb3cda snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec33a3c7 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf66b7391 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa29f78b snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soundcore 0x1b371b9a register_sound_special -EXPORT_SYMBOL sound/soundcore 0x540eaf20 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8564ba0b register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xbad29fd6 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xef498e58 sound_class -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 0xab4c36e8 __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 0x001837ac flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x001d84ab page_frag_alloc -EXPORT_SYMBOL vmlinux 0x001f5a29 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect -EXPORT_SYMBOL vmlinux 0x00401cb7 mutex_unlock -EXPORT_SYMBOL vmlinux 0x0044aeeb pci_pme_active -EXPORT_SYMBOL vmlinux 0x004ca196 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x004e0834 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x00541953 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x00766f6a __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x007bec92 vfs_getattr -EXPORT_SYMBOL vmlinux 0x0084ccf2 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x00b208ea vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0x00b3b646 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x00c91f68 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x00ceb012 of_root -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00db70d1 dev_load -EXPORT_SYMBOL vmlinux 0x00e0d5e6 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x00f91cbe sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x00f9b154 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01681cf2 kill_fasync -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017ac085 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x0181b22b __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark -EXPORT_SYMBOL vmlinux 0x019a0932 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x01b8d30a rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x01bca35e file_ns_capable -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d73847 iterate_dir -EXPORT_SYMBOL vmlinux 0x01d820b3 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x01f6c4cb sock_recvmsg -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check -EXPORT_SYMBOL vmlinux 0x0215ef58 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x021b1ef4 __ps2_command -EXPORT_SYMBOL vmlinux 0x021fd968 nobh_writepage -EXPORT_SYMBOL vmlinux 0x0222c8aa ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x0222f4d7 param_ops_string -EXPORT_SYMBOL vmlinux 0x02250590 ip_frag_next -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x025ad02e cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x0272563d i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x0273ce64 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0285134d secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02aa2ba0 xfrm_input -EXPORT_SYMBOL vmlinux 0x02ab4b17 make_bad_inode -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02cf0a05 put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x02ded3f1 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02ec9612 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x02f7a596 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x031efde7 cdrom_release -EXPORT_SYMBOL vmlinux 0x03219a49 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034561dc mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x03465ce3 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x036160ed forget_cached_acl -EXPORT_SYMBOL vmlinux 0x03624445 pcim_iomap -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0382f77d tcp_prot -EXPORT_SYMBOL vmlinux 0x0391e4d1 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0396b19c generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x03975b45 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039d2385 genl_register_family -EXPORT_SYMBOL vmlinux 0x03a2ef8c xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x03c4ea33 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x03cf1ec7 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x03d278b0 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x03eade84 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x03ebdc9f sk_capable -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0402fdf6 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x041fea46 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x0423d639 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x042da10f __inet_hash -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04504cfb bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x045ebb53 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0484c967 dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0497b726 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x04a6c11f agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x04cb5208 bh_submit_read -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x04fb54cb blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x04fc4817 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x050135c4 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x05153f7a ppp_register_channel -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x051e335e agp_free_memory -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0524c6af bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x052de80b i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x0533ed75 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05519d30 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x05607106 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x05658b5b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0565d4b9 inet_sendpage -EXPORT_SYMBOL vmlinux 0x056a31ba skb_clone_sk -EXPORT_SYMBOL vmlinux 0x058fdbe8 km_policy_notify -EXPORT_SYMBOL vmlinux 0x059497a6 pps_event -EXPORT_SYMBOL vmlinux 0x05abdf3a phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05bf51d1 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x05cad799 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x05dfa7cd blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x05e41b0c dput -EXPORT_SYMBOL vmlinux 0x0605b1e8 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0x060738ff xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x0608a3b2 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062a4ae1 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x063088d7 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06359689 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x064ad3ca tcp_child_process -EXPORT_SYMBOL vmlinux 0x064c3391 xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0x0650e12e sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x0652a62a sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x069c8cc6 wireless_send_event -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress -EXPORT_SYMBOL vmlinux 0x06e630a8 pci_release_resource -EXPORT_SYMBOL vmlinux 0x06e776ca __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x06fdd17e put_fs_context -EXPORT_SYMBOL vmlinux 0x071f3a2c param_ops_ushort -EXPORT_SYMBOL vmlinux 0x072c2d72 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073afaf6 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x074e9213 down_killable -EXPORT_SYMBOL vmlinux 0x075b25c9 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x0761fb53 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x076479e7 __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x07654d87 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x07780413 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x078d5a8c dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x078e721d mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x079550bb d_add_ci -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a8cb6a xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x07bd15ac __debugger_sstep -EXPORT_SYMBOL vmlinux 0x07c046c6 __sb_end_write -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e54dd5 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07fc1e96 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080c6ba2 serio_close -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x0822e0c6 get_gendisk -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x0824dc5f touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x082732d0 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083c50f3 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084e2c1a md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x0853619d vme_init_bridge -EXPORT_SYMBOL vmlinux 0x08824f20 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08bda4be bdevname -EXPORT_SYMBOL vmlinux 0x08ea681f xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0x08f9c13f padata_do_parallel -EXPORT_SYMBOL vmlinux 0x094f6624 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x095934e8 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x095cb0d0 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc -EXPORT_SYMBOL vmlinux 0x0974a0d6 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x0984ca3f mdiobus_free -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a1a05c devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09cdaa49 bio_add_page -EXPORT_SYMBOL vmlinux 0x09cecaeb of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09fad4a4 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x0a20ec54 inet_listen -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a4417eb srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0x0a471030 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a50e371 of_get_property -EXPORT_SYMBOL vmlinux 0x0a6e5c90 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x0a725013 sock_register -EXPORT_SYMBOL vmlinux 0x0a73bd80 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a79bdc9 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x0a7acea9 pps_register_source -EXPORT_SYMBOL vmlinux 0x0a8b9ea4 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x0a956b97 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab867ea of_get_parent -EXPORT_SYMBOL vmlinux 0x0ac6722e vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0adaaf01 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x0ae9674f flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x0afe7de2 param_get_string -EXPORT_SYMBOL vmlinux 0x0b10f825 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x0b140d2c netif_device_attach -EXPORT_SYMBOL vmlinux 0x0b172626 vme_lm_request -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b264c2a __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b329ca1 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x0b37ed23 iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0x0b467fa0 tty_unlock -EXPORT_SYMBOL vmlinux 0x0b4dd2e4 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x0b647ced dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b847b09 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x0ba91a1d mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr -EXPORT_SYMBOL vmlinux 0x0c0ea6f2 sock_no_bind -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c1fbb00 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x0c1ffb24 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x0c259939 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2764f5 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x0c2c0467 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x0c5c6dff bdi_alloc_node -EXPORT_SYMBOL vmlinux 0x0c6ad6cb set_disk_ro -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c9f89bb serio_bus -EXPORT_SYMBOL vmlinux 0x0cb0601a node_states -EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc63527 pci_dev_get -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d1fac96 ps2_init -EXPORT_SYMBOL vmlinux 0x0d3c7f9f __pagevec_release -EXPORT_SYMBOL vmlinux 0x0d49b93f __debugger_ipi -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61507b dev_change_flags -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d8bf31c netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x0d9fb3d6 irq_set_chip -EXPORT_SYMBOL vmlinux 0x0dbe206a sget -EXPORT_SYMBOL vmlinux 0x0dc269a2 giveup_fpu -EXPORT_SYMBOL vmlinux 0x0dca2e20 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x0dd06fc7 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x0dd11bda kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x0dee86d2 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x0e12e441 get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1b3010 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x0e25dfe8 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x0e2c2a3a mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x0e2c43eb mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x0e33e1d9 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0e42ac5c d_drop -EXPORT_SYMBOL vmlinux 0x0e45db07 key_task_permission -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e8821d0 param_set_ushort -EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x0e92a731 dns_query -EXPORT_SYMBOL vmlinux 0x0ea7f27b cdev_device_add -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ef2ae50 proc_create -EXPORT_SYMBOL vmlinux 0x0efa446c devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x0f08efb9 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f2334d9 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x0f23b937 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x0f2beaea update_region -EXPORT_SYMBOL vmlinux 0x0f2de662 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x0f4d667e fb_get_mode -EXPORT_SYMBOL vmlinux 0x0f524480 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x0f5ad093 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x0f6406c7 rtnl_notify -EXPORT_SYMBOL vmlinux 0x0f7a4f32 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f883a7d param_ops_short -EXPORT_SYMBOL vmlinux 0x0f8981ef configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x0f9cfbd4 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc15d62 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fee45a0 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x101398c1 request_key_tag -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106e4153 register_netdevice -EXPORT_SYMBOL vmlinux 0x1077cd8b input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108545c8 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x10bba4c8 srp_timed_out -EXPORT_SYMBOL vmlinux 0x10c09cfe rtnl_create_link -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c67c2a key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e01f13 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size -EXPORT_SYMBOL vmlinux 0x10e63bac blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x10f411bf abx500_startup_irq_enabled -EXPORT_SYMBOL vmlinux 0x11039f9a set_wb_congested -EXPORT_SYMBOL vmlinux 0x110428de set_nlink -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11098202 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x110a9050 input_register_device -EXPORT_SYMBOL vmlinux 0x1111c377 console_stop -EXPORT_SYMBOL vmlinux 0x1126cb6a ps2_drain -EXPORT_SYMBOL vmlinux 0x113981e0 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x113e8ff6 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x11498a9d of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot -EXPORT_SYMBOL vmlinux 0x1168996f xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11735d74 sync_filesystem -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x119d5ada set_security_override -EXPORT_SYMBOL vmlinux 0x11a849d4 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x11b5267b sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x11ccbf0b of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x11cdbc8f scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x11db9699 d_set_d_op -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11ed99c3 elevator_alloc -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x1205b5d6 tty_port_put -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x12220903 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x122725f8 neigh_table_init -EXPORT_SYMBOL vmlinux 0x122a638b qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1241bbf6 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x12441a32 elv_rb_find -EXPORT_SYMBOL vmlinux 0x12510ea9 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x125b74e8 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x12698095 radix__flush_tlb_range -EXPORT_SYMBOL vmlinux 0x128150c6 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x1297dd48 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x129919f8 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12a94142 igrab -EXPORT_SYMBOL vmlinux 0x12ac460a mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x12b39e48 nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0x12c5cd44 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x12c90783 scsi_init_io -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 0x12f881fa input_inject_event -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13253116 dev_uc_init -EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x13458540 padata_start -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1351d54b input_flush_device -EXPORT_SYMBOL vmlinux 0x13675e55 sock_alloc -EXPORT_SYMBOL vmlinux 0x13734a72 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x1382d2f9 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a3fba4 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x13a93aa7 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x13afa669 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x13b76dea inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x13bc6698 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13f184b4 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x13f50ac3 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x13f63743 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x142f9599 truncate_setsize -EXPORT_SYMBOL vmlinux 0x143f383e dump_emit -EXPORT_SYMBOL vmlinux 0x144031cd netif_carrier_off -EXPORT_SYMBOL vmlinux 0x14410964 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x14447821 param_set_bint -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 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x149cd278 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x14b2cc2f ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x14b392c8 dump_skip -EXPORT_SYMBOL vmlinux 0x14b6598c mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x14bc902e jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x14cb1525 get_agp_version -EXPORT_SYMBOL vmlinux 0x14d105c8 vme_slot_num -EXPORT_SYMBOL vmlinux 0x14de5ed1 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x15130e4c xfrm_register_type -EXPORT_SYMBOL vmlinux 0x1513496d dev_printk_emit -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155a6cb6 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x155ab9d1 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x15677cc8 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x1569a000 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x15794846 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x158f6cb5 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x15a603b2 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x15b1db10 page_pool_create -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c2707a compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x15e4017f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x15eb79b6 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x161d449e skb_append -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162c8c02 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x162ca590 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x16333480 pci_select_bars -EXPORT_SYMBOL vmlinux 0x165f760f mount_single -EXPORT_SYMBOL vmlinux 0x16643c48 iget_locked -EXPORT_SYMBOL vmlinux 0x1669a50d pcibus_to_node -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168039b9 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x168a311c inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a82c68 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x16b020d6 end_page_writeback -EXPORT_SYMBOL vmlinux 0x16c140fe tcp_have_smc -EXPORT_SYMBOL vmlinux 0x16c56334 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f1e49b default_llseek -EXPORT_SYMBOL vmlinux 0x16fa40c7 get_disk_and_module -EXPORT_SYMBOL vmlinux 0x16fca7fb cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x17038344 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x17093538 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x173d501f input_get_timestamp -EXPORT_SYMBOL vmlinux 0x173f64ad _copy_from_iter -EXPORT_SYMBOL vmlinux 0x174a96fe i2c_register_driver -EXPORT_SYMBOL vmlinux 0x17536375 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x178c7cd6 keyring_clear -EXPORT_SYMBOL vmlinux 0x178df263 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x17979ddd bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x17c09b89 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x17ca4a75 complete_and_exit -EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1809ee36 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x180ee18f inet_stream_ops -EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem -EXPORT_SYMBOL vmlinux 0x183e6a14 generic_setlease -EXPORT_SYMBOL vmlinux 0x1858b9e2 kernel_connect -EXPORT_SYMBOL vmlinux 0x185a116c __xa_insert -EXPORT_SYMBOL vmlinux 0x185b0b76 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x185cfaa8 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f84c8 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x18949ac0 mntput -EXPORT_SYMBOL vmlinux 0x18d16562 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x18d796b1 unlock_rename -EXPORT_SYMBOL vmlinux 0x18daddab of_iomap -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1923cfac twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x1933b122 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x194732ff kern_unmount -EXPORT_SYMBOL vmlinux 0x194afc25 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x1964124f pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x196db058 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x19777d58 blk_get_queue -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x19896e4c ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x198eaa49 bdi_register -EXPORT_SYMBOL vmlinux 0x198f35fc twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x199b77ab netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x199bdc3a register_framebuffer -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b16b34 up_read -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bda5e9 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x19c06f7e of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x19ce00b1 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark -EXPORT_SYMBOL vmlinux 0x19e16a1b skb_copy_expand -EXPORT_SYMBOL vmlinux 0x19ff4e3a genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a2aa7a9 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1a4a8cd0 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x1a50278d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x1a6423d5 md_handle_request -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a81f1a9 __frontswap_store -EXPORT_SYMBOL vmlinux 0x1a949779 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable -EXPORT_SYMBOL vmlinux 0x1ab4d0a8 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad3e3cb thaw_super -EXPORT_SYMBOL vmlinux 0x1ad85bec skb_ext_add -EXPORT_SYMBOL vmlinux 0x1aefd140 arch_free_page -EXPORT_SYMBOL vmlinux 0x1af0420a phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock -EXPORT_SYMBOL vmlinux 0x1b2028bf vfs_llseek -EXPORT_SYMBOL vmlinux 0x1b51899f ip6_frag_init -EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6bc95e tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x1b6c32e3 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b94b055 da903x_query_status -EXPORT_SYMBOL vmlinux 0x1ba117b6 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init -EXPORT_SYMBOL vmlinux 0x1baf14a1 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1bb82211 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf84dc7 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at -EXPORT_SYMBOL vmlinux 0x1c02f52d xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x1c0ab878 scsi_print_result -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c3400b5 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c4027c4 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x1c4bfecc pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x1c7546dc nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x1c7698cb register_sysctl -EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x1c918d4f generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1ca8fce9 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x1cb09f84 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cb74caf security_path_mkdir -EXPORT_SYMBOL vmlinux 0x1ccaee20 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x1ce62f6b eth_change_mtu -EXPORT_SYMBOL vmlinux 0x1cecbc57 xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0x1cff34c4 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0e428e dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x1d27bb9a do_clone_file_range -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d337dbf __module_get -EXPORT_SYMBOL vmlinux 0x1d3ae16b install_exec_creds -EXPORT_SYMBOL vmlinux 0x1d64ce95 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x1dc485c9 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd7e855 mmc_can_sanitize -EXPORT_SYMBOL vmlinux 0x1ddbc8ac inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x1df7f73d udp_gro_receive -EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e18aade __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e3f4bd9 abx500_get_register_interruptible -EXPORT_SYMBOL vmlinux 0x1e4d1e12 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x1e4d5a6a jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1e64bf87 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e81fab7 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue -EXPORT_SYMBOL vmlinux 0x1e8c6810 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x1e96fe42 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1e9f315b blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x1ea18f23 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eaddaeb fbcon_set_tileops -EXPORT_SYMBOL vmlinux 0x1eafaca9 block_write_full_page -EXPORT_SYMBOL vmlinux 0x1ed7b158 iov_iter_init -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1f08e33a scsi_host_busy -EXPORT_SYMBOL vmlinux 0x1f172426 netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0x1f2072b0 from_kuid -EXPORT_SYMBOL vmlinux 0x1f218ce9 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x1f21c343 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x1f2a643a tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x1f52f553 __put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x1f5e360c cdrom_open -EXPORT_SYMBOL vmlinux 0x1f7c844c input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x1f7d2b6e dev_mc_init -EXPORT_SYMBOL vmlinux 0x1f8a97dd iov_iter_advance -EXPORT_SYMBOL vmlinux 0x1f918186 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x1f9f5838 netlink_ack -EXPORT_SYMBOL vmlinux 0x1fa7095c deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1feee096 mutex_lock -EXPORT_SYMBOL vmlinux 0x1ff7c28f tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201310f3 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x20282c61 uart_resume_port -EXPORT_SYMBOL vmlinux 0x202a325f security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204d9cc0 phy_driver_register -EXPORT_SYMBOL vmlinux 0x205b596a __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x2069bd4e dev_mc_del -EXPORT_SYMBOL vmlinux 0x2071c3d5 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20904978 register_md_personality -EXPORT_SYMBOL vmlinux 0x209c06cc devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a98ae2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x20b0b190 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x20b2f97f dquot_disable -EXPORT_SYMBOL vmlinux 0x20d3c785 netif_skb_features -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20f349b5 ppp_input -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x210ef884 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x2126f175 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x2132e921 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21494ec2 __destroy_inode -EXPORT_SYMBOL vmlinux 0x21537694 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x2155dba6 ether_setup -EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init -EXPORT_SYMBOL vmlinux 0x216dd560 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x217b8775 skb_put -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -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 0x21fe01fb ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x220096bf pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x2210182f giveup_altivec -EXPORT_SYMBOL vmlinux 0x22112bb8 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x221aedec inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x2222964f dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x22249361 sget_fc -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224e2919 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x2262644b ip_setsockopt -EXPORT_SYMBOL vmlinux 0x226ee3c1 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x227863c2 seq_printf -EXPORT_SYMBOL vmlinux 0x227a0f33 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x228b9222 dma_find_channel -EXPORT_SYMBOL vmlinux 0x2291290d padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x22b0bce3 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b38ff1 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x22b5f458 page_symlink -EXPORT_SYMBOL vmlinux 0x22c248b1 fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0x22c406e1 km_state_expired -EXPORT_SYMBOL vmlinux 0x22d68d63 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x22e8e193 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x22f3b1f2 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x22fcc640 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x22ff6380 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x2305da07 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x232b7209 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x232ce1e4 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL vmlinux 0x2339eb9a udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x233d9bc3 devm_request_resource -EXPORT_SYMBOL vmlinux 0x233eb663 simple_write_begin -EXPORT_SYMBOL vmlinux 0x2340ab7a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x234a99e1 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x235131bd max8998_write_reg -EXPORT_SYMBOL vmlinux 0x2359dcf2 pci_restore_state -EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x2362d617 pci_disable_device -EXPORT_SYMBOL vmlinux 0x2365e045 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x2370d4d0 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x2381c3ff i2c_transfer -EXPORT_SYMBOL vmlinux 0x238544d5 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x2389c6ea skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23a0c40f jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x23a5785d nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create -EXPORT_SYMBOL vmlinux 0x23b7591f agp_generic_enable -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bb43a4 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x23c0cee5 inc_node_state -EXPORT_SYMBOL vmlinux 0x23c0cf43 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x23d2d64e nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x23d31485 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x23d76139 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24036e4b netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x24044f7c softnet_data -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2429fe08 md_update_sb -EXPORT_SYMBOL vmlinux 0x24372671 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244a6627 lookup_bdev -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x2475700c compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x247ffc91 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2486d7a7 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x248a6c75 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x24a8cf22 simple_lookup -EXPORT_SYMBOL vmlinux 0x24ae2027 nf_log_packet -EXPORT_SYMBOL vmlinux 0x24b1e7e8 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x24c8dfb1 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dd7680 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x24ddcd2d submit_bio -EXPORT_SYMBOL vmlinux 0x24e3da2b tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x24f7746b fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x25023d9b pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x250f5363 pci_iounmap -EXPORT_SYMBOL vmlinux 0x2519befd kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x2522bd7d zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register -EXPORT_SYMBOL vmlinux 0x2527afa5 tcf_block_get -EXPORT_SYMBOL vmlinux 0x252beed4 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL vmlinux 0x254c9287 ioremap -EXPORT_SYMBOL vmlinux 0x25704396 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257e07e0 dup_iter -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x2588886d load_nls -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x259e70e7 netif_napi_add -EXPORT_SYMBOL vmlinux 0x25b06b2e mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x25bf641c udplite_prot -EXPORT_SYMBOL vmlinux 0x25de104b end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f2e4cd devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260fe728 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x2614e82f remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x261ab332 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x264ab781 abx500_get_chip_id -EXPORT_SYMBOL vmlinux 0x264c3967 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x265ae744 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x26810ac1 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26a7a23e radix__flush_pmd_tlb_range -EXPORT_SYMBOL vmlinux 0x26ac0ca4 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x26b1aa56 seq_lseek -EXPORT_SYMBOL vmlinux 0x26bce87d seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x26c1930b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x26cd1fa1 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26ee7c53 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x26f61540 locks_delete_block -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270033e7 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x27152f07 try_module_get -EXPORT_SYMBOL vmlinux 0x27248a2a flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273dbd04 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275a7cd4 dev_open -EXPORT_SYMBOL vmlinux 0x275e9ae8 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x275fa46e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x276e70c3 mmc_detect_card_removed -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 0x27868ba8 sync_inode -EXPORT_SYMBOL vmlinux 0x2792edb8 phy_write_paged -EXPORT_SYMBOL vmlinux 0x27bab858 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bd892a send_sig_info -EXPORT_SYMBOL vmlinux 0x27cca0ab fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x28012d97 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28211548 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x2830a9f7 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x285ed3d3 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2888da12 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x28a5b669 d_splice_alias -EXPORT_SYMBOL vmlinux 0x28ad1adb ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x28d0e0b1 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x291a522d dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x29247522 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x2924eb9b kmem_cache_create -EXPORT_SYMBOL vmlinux 0x2931f4d5 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x294d2a82 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x295bbe1d udp_disconnect -EXPORT_SYMBOL vmlinux 0x2966c2bb jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x296c8f77 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x29813f21 tcf_block_put -EXPORT_SYMBOL vmlinux 0x29bc39e8 simple_unlink -EXPORT_SYMBOL vmlinux 0x29be9a18 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x29c844be bio_uninit -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29fe8915 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x2a09b4f8 netlink_set_err -EXPORT_SYMBOL vmlinux 0x2a1525b8 generic_read_dir -EXPORT_SYMBOL vmlinux 0x2a224b98 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3ff418 seq_release -EXPORT_SYMBOL vmlinux 0x2a75c8a7 generic_fillattr -EXPORT_SYMBOL vmlinux 0x2a793426 __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x2a819bca iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x2a8255c2 udp_poll -EXPORT_SYMBOL vmlinux 0x2a88fc5f tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x2a976150 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa1afe3 of_node_put -EXPORT_SYMBOL vmlinux 0x2aa1cc3b sock_setsockopt -EXPORT_SYMBOL vmlinux 0x2aba0b30 dquot_commit -EXPORT_SYMBOL vmlinux 0x2abe06bf dev_trans_start -EXPORT_SYMBOL vmlinux 0x2ad5a36a compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x2ae85e8f pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x2af931e6 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x2b340390 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x2b3531a7 consume_skb -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b80f3a1 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x2b917b3e pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba72006 put_tty_driver -EXPORT_SYMBOL vmlinux 0x2bb62c67 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x2bbd305d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x2bc21471 framebuffer_release -EXPORT_SYMBOL vmlinux 0x2bc930cc crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x2bfe8264 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x2c106bf8 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c30e041 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x2c3506cd skb_checksum -EXPORT_SYMBOL vmlinux 0x2c41f315 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x2c5662a3 dev_uc_add -EXPORT_SYMBOL vmlinux 0x2c5f098e filemap_check_errors -EXPORT_SYMBOL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL vmlinux 0x2c6fd90a rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x2c7ad038 param_get_ulong -EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout -EXPORT_SYMBOL vmlinux 0x2c7e2072 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8bb5dc mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x2cac7636 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x2cadf80f __put_user_ns -EXPORT_SYMBOL vmlinux 0x2cc12f8e ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x2cc875fd xmon -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cce3dc9 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x2cd45b80 read_cache_page -EXPORT_SYMBOL vmlinux 0x2cd87ea7 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x2cf25a7e ip_frag_init -EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x2cf990ff lease_get_mtime -EXPORT_SYMBOL vmlinux 0x2d125d3e remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d165996 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d23ea66 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x2d2e8f1e mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d30a04f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d470800 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d621c3a pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2d70c4a4 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da5ef46 of_phy_attach -EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2db2787b fput -EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x2dc05745 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id -EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x2dce5205 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x2dd380ec phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x2df8927a simple_readpage -EXPORT_SYMBOL vmlinux 0x2dfcf37c cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x2dfe0c2a netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x2e1809e9 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x2e1bbf0f dev_addr_flush -EXPORT_SYMBOL vmlinux 0x2e1e54a0 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x2e1f06ee jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2f210f tcf_idr_create -EXPORT_SYMBOL vmlinux 0x2e465edd tty_devnum -EXPORT_SYMBOL vmlinux 0x2e73d877 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x2e965450 edac_mc_find -EXPORT_SYMBOL vmlinux 0x2eb3fecd configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x2ebfa4fc blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2ec2403c xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin -EXPORT_SYMBOL vmlinux 0x2ee3b89b netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee4e4f0 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x2ef5d18a io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x2eff7786 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0e2bc0 pci_clear_master -EXPORT_SYMBOL vmlinux 0x2f1c119f devm_release_resource -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f314eb4 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x2f37f3ca devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x2f52260a migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f5b25d4 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x2f5ea1db xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x2f62d8a8 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x2f75115d mdio_bus_type -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7bfbab blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x2f955472 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fc3bcad d_find_alias -EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase -EXPORT_SYMBOL vmlinux 0x2fd43b34 vif_device_init -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x3010fa86 sg_miter_start -EXPORT_SYMBOL vmlinux 0x303216df tcp_disconnect -EXPORT_SYMBOL vmlinux 0x304098b6 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x3077fdf0 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x30880cf6 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x308b25a8 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x308e4f23 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x308fdec5 compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a11a6c seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x30a3a745 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b10a0e crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30d355e1 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x30e7b3a4 _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x30f1230f d_alloc_name -EXPORT_SYMBOL vmlinux 0x30fbb11a seq_write -EXPORT_SYMBOL vmlinux 0x30fc1e24 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x3101cbf5 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3128a6c0 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x31535ac8 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x3164b383 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x316df9e8 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x318ea334 dma_pool_create -EXPORT_SYMBOL vmlinux 0x31967869 __block_write_full_page -EXPORT_SYMBOL vmlinux 0x31a825f1 simple_empty -EXPORT_SYMBOL vmlinux 0x31b36926 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x31bedb9d inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x32150cee vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x322ca32a __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x322ff741 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x324afd8d mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x3251d8bd xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x3263b182 d_alloc -EXPORT_SYMBOL vmlinux 0x3279e754 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327fd400 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3288800b agp_bridge -EXPORT_SYMBOL vmlinux 0x3288d676 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x32aefc4a __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x32b3f7c5 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x32c96481 arp_xmit -EXPORT_SYMBOL vmlinux 0x32ce1e23 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d52ca9 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x32e0d62f netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x32efa63c pipe_unlock -EXPORT_SYMBOL vmlinux 0x32ff5d5f pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x3305b8c4 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x330ab7cf netdev_emerg -EXPORT_SYMBOL vmlinux 0x331df034 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x3359817d blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x33603c0f __vio_register_driver -EXPORT_SYMBOL vmlinux 0x336d0143 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337434b4 __break_lease -EXPORT_SYMBOL vmlinux 0x33a142fa xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x33b24509 seq_dentry -EXPORT_SYMBOL vmlinux 0x33b3fe43 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33e32b6b input_unregister_handle -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34037628 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x3411a661 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x342c0f39 inet_release -EXPORT_SYMBOL vmlinux 0x3443c28f call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control -EXPORT_SYMBOL vmlinux 0x345fd22c serio_interrupt -EXPORT_SYMBOL vmlinux 0x3469740a tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x347f47e2 bio_endio -EXPORT_SYMBOL vmlinux 0x348d7eb9 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x349a9f6f blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a7b5f0 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x34aa5460 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x34abae36 ip6_xmit -EXPORT_SYMBOL vmlinux 0x34b0ebd2 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x34cef08e __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351815b2 account_page_redirty -EXPORT_SYMBOL vmlinux 0x35240030 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x35256586 kernel_write -EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0x352bb201 xa_store -EXPORT_SYMBOL vmlinux 0x3539b0fc tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35425fbc kobject_add -EXPORT_SYMBOL vmlinux 0x3542768c write_one_page -EXPORT_SYMBOL vmlinux 0x354e4aaa mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x3553d3b7 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x3563904a agp_copy_info -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3571a946 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x3581075b mmput_async -EXPORT_SYMBOL vmlinux 0x35a65849 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b057d7 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35d0f02e dev_mc_flush -EXPORT_SYMBOL vmlinux 0x35e249d0 mmc_release_host -EXPORT_SYMBOL vmlinux 0x360cd40d get_tree_keyed -EXPORT_SYMBOL vmlinux 0x3625f463 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user -EXPORT_SYMBOL vmlinux 0x3633aa54 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365b45b0 __f_setown -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36823044 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x368a3bee super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x368e3ed8 skb_push -EXPORT_SYMBOL vmlinux 0x36938f81 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x369949e5 sock_create_kern -EXPORT_SYMBOL vmlinux 0x36a6842a md_reload_sb -EXPORT_SYMBOL vmlinux 0x36ab4475 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x36b07f05 twl6040_power -EXPORT_SYMBOL vmlinux 0x36bc043b bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x36cb116b netdev_notice -EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x373d0cc9 phy_resume -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374573e3 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x374ef610 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375ba5f3 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x375e1d94 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x378ba0d1 pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x378bc0aa pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x37994502 bdget_disk -EXPORT_SYMBOL vmlinux 0x37ae60f3 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37ce8c87 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x37d36b3d simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x37d7a9e4 d_obtain_root -EXPORT_SYMBOL vmlinux 0x37e2f7ee put_disk_and_module -EXPORT_SYMBOL vmlinux 0x37e701ae dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x37f63817 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0x37f7c7e2 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x37fc0752 __check_sticky -EXPORT_SYMBOL vmlinux 0x381a202e __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381f1b6f devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3841da80 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x3846a78e ps2_handle_response -EXPORT_SYMBOL vmlinux 0x3856f2a5 redraw_screen -EXPORT_SYMBOL vmlinux 0x38640755 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x386f6268 file_remove_privs -EXPORT_SYMBOL vmlinux 0x387145e1 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x387fa9ec iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x38803c2e twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x3880cc5f blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38a36fd1 blk_put_request -EXPORT_SYMBOL vmlinux 0x38a5282b tcp_shutdown -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b419d0 fqdir_init -EXPORT_SYMBOL vmlinux 0x38bc2368 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x38bfe7ea input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x38cadcfb fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x38fe11a6 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x3905cb4e mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x391a08b3 page_mapping -EXPORT_SYMBOL vmlinux 0x391be0cd fifo_set_limit -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x397100c9 sk_net_capable -EXPORT_SYMBOL vmlinux 0x397b9658 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x3998ffbb max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399b32c3 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x399ec2fc padata_free_shell -EXPORT_SYMBOL vmlinux 0x39ade06f bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x39b1ca25 elv_rb_add -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c7f5ba vfs_mknod -EXPORT_SYMBOL vmlinux 0x39f567b5 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x39fa4c9f input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x3a00cd0e pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x3a093534 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a15e768 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3a176760 dev_addr_add -EXPORT_SYMBOL vmlinux 0x3a2102ed pci_get_device -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a37041c locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a55a38e qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x3a680a63 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x3a6a6f30 inet_getname -EXPORT_SYMBOL vmlinux 0x3a792b26 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3a882619 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x3ab4f884 seq_file_path -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac121c2 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x3add50cb flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x3af50fd4 seq_vprintf -EXPORT_SYMBOL vmlinux 0x3af91b49 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x3afdaddd iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x3b002d8a mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x3b15d392 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x3b1f6285 serio_rescan -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3cd8c1 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x3b4161bb input_free_device -EXPORT_SYMBOL vmlinux 0x3b46303a blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x3b5bcf23 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x3b609069 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x3b62fe99 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3bc783ed mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x3bcdc652 nvm_register -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bef0875 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x3befffdd max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3c100d58 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3c117f27 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3a2157 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0x3c531abb phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x3c5612a9 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x3c5ce9fc vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0x3c7e541d pci_disable_msix -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c82bc04 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x3c8cf5c8 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x3cade94b of_find_backlight -EXPORT_SYMBOL vmlinux 0x3cb37157 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0x3cc4cb8a wait_for_completion -EXPORT_SYMBOL vmlinux 0x3cc7ddf7 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x3cd9bbc9 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d120b85 vga_client_register -EXPORT_SYMBOL vmlinux 0x3d329215 machine_id -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d775ff8 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3d95f5ff inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x3da8a308 nd_btt_version -EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db1516e write_cache_pages -EXPORT_SYMBOL vmlinux 0x3db2b530 pci_map_rom -EXPORT_SYMBOL vmlinux 0x3dc5cd81 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd156e4 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x3ddc606c netlink_capable -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e014919 agp_enable -EXPORT_SYMBOL vmlinux 0x3e1d5517 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e7367ce __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3ea12423 inet_ioctl -EXPORT_SYMBOL vmlinux 0x3ea21d70 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x3ec9624f blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x3edabd9a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x3ee99a40 make_kprojid -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3eff05f4 skb_split -EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep -EXPORT_SYMBOL vmlinux 0x3f0768da key_invalidate -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1070cc device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x3f36036c jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f464e6a sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3f47dd9a phy_connect_direct -EXPORT_SYMBOL vmlinux 0x3f5a2f68 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x3f6b1c07 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x3f71d6d6 can_nice -EXPORT_SYMBOL vmlinux 0x3f7d378c down_write_killable -EXPORT_SYMBOL vmlinux 0x3f7eaa30 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f895ff4 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc3682a flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x3fc6fa79 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x3fcb04dd nf_reinject -EXPORT_SYMBOL vmlinux 0x3fcede7e kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdd38c1 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff057c0 rproc_boot -EXPORT_SYMBOL vmlinux 0x3ff65c7b rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x40012b6e security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x4029201f security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x40631ca6 scsi_device_get -EXPORT_SYMBOL vmlinux 0x40866935 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a0b55b config_group_find_item -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b81ead pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x40b98760 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x40ba89ff tcp_ioctl -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cee57c blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x410c59bf dev_addr_del -EXPORT_SYMBOL vmlinux 0x410cbfc3 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x4125d051 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x412a30c6 of_device_alloc -EXPORT_SYMBOL vmlinux 0x412bf67c set_device_ro -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41532c44 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x41628ef4 invalidate_partition -EXPORT_SYMBOL vmlinux 0x416f8f52 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x417f55ec simple_link -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x418651b7 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4189b702 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x419cc1b6 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x41b90ae2 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x41ce0415 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x41db55e1 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x41de4f5b __mdiobus_write -EXPORT_SYMBOL vmlinux 0x41e0773c set_page_dirty -EXPORT_SYMBOL vmlinux 0x4201c4de inet_gso_segment -EXPORT_SYMBOL vmlinux 0x4204775d d_set_fallthru -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4220be36 open_exec -EXPORT_SYMBOL vmlinux 0x4225ef47 d_lookup -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42479d9e prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4251263c generic_file_mmap -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x42801233 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x428b15d2 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x4291c8cb md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x429d7f6e blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x42a3667c blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x42af2fc8 zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0x42be1925 fb_pan_display -EXPORT_SYMBOL vmlinux 0x42d8aafa netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x42e11f4b udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x42ecd1cd md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x42ee5537 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f59f72 update_devfreq -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430c44b3 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x430d4a12 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0x431d8392 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x4326642c netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x432c521f _dev_info -EXPORT_SYMBOL vmlinux 0x4335a268 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436c74ad dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x4377a435 scsi_add_device -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43810f4a genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0x43826d05 get_fs_type -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43cc93e1 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x43dce271 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x43eb1f58 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x4426f966 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4431579e address_space_init_once -EXPORT_SYMBOL vmlinux 0x4433ab58 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x443ee9f3 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444c6ccf dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x445a5505 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x446abf46 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x4470537d blkdev_put -EXPORT_SYMBOL vmlinux 0x448032e5 param_set_byte -EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x449f7cd1 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x44aaa991 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x44b0857f phy_device_remove -EXPORT_SYMBOL vmlinux 0x44b11045 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x44b1c405 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x44c4e648 free_buffer_head -EXPORT_SYMBOL vmlinux 0x44d4b50b __register_nls -EXPORT_SYMBOL vmlinux 0x44da3cf8 ll_rw_block -EXPORT_SYMBOL vmlinux 0x44da4925 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ea1626 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size -EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x45169c7d rproc_free -EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452d742c fb_set_suspend -EXPORT_SYMBOL vmlinux 0x4533952a __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x453420f6 seq_release_private -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4543531b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x4544a4c1 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456397fc unregister_qdisc -EXPORT_SYMBOL vmlinux 0x4567c26c register_netdev -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458eb90b devfreq_interval_update -EXPORT_SYMBOL vmlinux 0x4592b702 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x459b57d6 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x45a2a143 get_vm_area -EXPORT_SYMBOL vmlinux 0x45a2b33f tcp_mmap -EXPORT_SYMBOL vmlinux 0x45aa60c5 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x45b09bfc make_kuid -EXPORT_SYMBOL vmlinux 0x45b5602a generic_write_end -EXPORT_SYMBOL vmlinux 0x45ef46a4 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x45f5ddf1 __netif_schedule -EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x4607b25a dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock -EXPORT_SYMBOL vmlinux 0x461a931c gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461e4e88 __kernel_write -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x464e27cc build_skb_around -EXPORT_SYMBOL vmlinux 0x4654a297 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x465b95e1 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x465f9e0d forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466f82ca page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x467f1ab0 udp_ioctl -EXPORT_SYMBOL vmlinux 0x468b1f88 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46afb244 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x46b5166f nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c637d0 arp_send -EXPORT_SYMBOL vmlinux 0x46cc1379 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x46d3ebc2 cdev_alloc -EXPORT_SYMBOL vmlinux 0x46d80278 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x46dc8049 sock_create_lite -EXPORT_SYMBOL vmlinux 0x46e5166c skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x46e81e5f tcp_connect -EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after -EXPORT_SYMBOL vmlinux 0x4702c23e udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x470bb6b2 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x471b6040 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x472cd19b __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x474b93dd get_tree_single -EXPORT_SYMBOL vmlinux 0x474ff846 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x4754e3c8 dma_set_mask -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477304b3 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x47758b3f fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0x4786efb4 sock_no_listen -EXPORT_SYMBOL vmlinux 0x478e2646 phy_stop -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47b3619c mmc_start_request -EXPORT_SYMBOL vmlinux 0x47bb3c52 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x47c48af3 store_fp_state -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47d63647 may_umount -EXPORT_SYMBOL vmlinux 0x4811e491 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482b6210 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x4837f2a5 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484e1efc mmc_erase -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x484f9a2f agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x486127ea xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase -EXPORT_SYMBOL vmlinux 0x487413cc __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x4892afdc __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x4898fafb fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0x489b3d55 compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48af0842 input_register_handle -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c240c7 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x48c81bcb xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x48c9d8cf ata_port_printk -EXPORT_SYMBOL vmlinux 0x48e8ca37 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x48fe138d vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x49005566 dst_init -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4930d1e6 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x4958f0c3 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x497d2870 md_done_sync -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x498f1c44 vc_resize -EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a2db9e sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x49a37c64 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x49a456d0 param_get_ullong -EXPORT_SYMBOL vmlinux 0x49c1ceef ilookup5 -EXPORT_SYMBOL vmlinux 0x49c9ce94 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x49debba8 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x49f70ce7 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4a1254f5 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x4a182ca6 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x4a2682af __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x4a287ce6 agp_create_memory -EXPORT_SYMBOL vmlinux 0x4a408ce6 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a47c3c7 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc -EXPORT_SYMBOL vmlinux 0x4a59d505 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ac76281 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x4acc0d84 __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af01916 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x4af2fe5d inc_node_page_state -EXPORT_SYMBOL vmlinux 0x4afdaaf1 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x4afe051f bioset_exit -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b3906aa blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x4b3eb626 kfree_skb -EXPORT_SYMBOL vmlinux 0x4b3ed0d9 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x4b512a83 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x4b54c449 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6194ea fs_parse -EXPORT_SYMBOL vmlinux 0x4b7aea6d param_ops_byte -EXPORT_SYMBOL vmlinux 0x4b8fa073 from_kgid -EXPORT_SYMBOL vmlinux 0x4b959427 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x4b9b4968 dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x4ba5b049 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0x4ba6b756 cdev_init -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bbe7694 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x4bc13593 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x4bc6579f dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x4bcef704 skb_queue_head -EXPORT_SYMBOL vmlinux 0x4bd5c20e pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x4beb409c security_inode_init_security -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4c068c82 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x4c13e89a input_release_device -EXPORT_SYMBOL vmlinux 0x4c2c1ebd km_state_notify -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3b35ad ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x4c3c0964 bio_free_pages -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c49d5d3 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x4c4f7531 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x4c5a4002 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x4c608572 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x4c7a7c77 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x4c9ca944 cpumask_next -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc3bbbb wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map -EXPORT_SYMBOL vmlinux 0x4cd131a0 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x4ce47622 simple_fill_super -EXPORT_SYMBOL vmlinux 0x4ce4be2c xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x4cee0d92 skb_find_text -EXPORT_SYMBOL vmlinux 0x4d0ec6c3 mmc_get_card -EXPORT_SYMBOL vmlinux 0x4d3a8495 dst_alloc -EXPORT_SYMBOL vmlinux 0x4d4f445b import_iovec -EXPORT_SYMBOL vmlinux 0x4d538355 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x4d5d3a67 current_time -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d76efad kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x4d817cbb __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x4d8a6580 scmd_printk -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db46e65 mac_find_mode -EXPORT_SYMBOL vmlinux 0x4db5f4eb mark_page_accessed -EXPORT_SYMBOL vmlinux 0x4de63853 ping_prot -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e2d3480 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x4e308eea generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3a4251 _dev_warn -EXPORT_SYMBOL vmlinux 0x4e459ad7 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7caced neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x4e89dac9 del_gendisk -EXPORT_SYMBOL vmlinux 0x4e8b025b __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x4e91b86e of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x4e9f2a51 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4eaff7d7 find_lock_entry -EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecc0fd4 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x4eddfd4c scsi_register_interface -EXPORT_SYMBOL vmlinux 0x4ee20aec start_tty -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1cf4d8 bdev_read_only -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f37b97d blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x4f3ec892 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x4f577385 __lock_buffer -EXPORT_SYMBOL vmlinux 0x4f590808 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x4f5fde69 file_open_root -EXPORT_SYMBOL vmlinux 0x4f825e4c tcf_action_exec -EXPORT_SYMBOL vmlinux 0x4f9926d0 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x4fac3833 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x4fbe1a20 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x4fc69b2d sk_stream_error -EXPORT_SYMBOL vmlinux 0x4fcbf133 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x4fcd7ea9 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x4fdcefa2 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe002f7 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x4ff9eb98 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x500329d1 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x50062bab request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5037332a __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x50453915 migrate_page_states -EXPORT_SYMBOL vmlinux 0x504b8e2e md_flush_request -EXPORT_SYMBOL vmlinux 0x505d0bae vfs_symlink -EXPORT_SYMBOL vmlinux 0x5066e383 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x506db7ad hmm_mirror_unregister -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5078e746 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size -EXPORT_SYMBOL vmlinux 0x50816d3d xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0x508688af generic_update_time -EXPORT_SYMBOL vmlinux 0x508a4321 dm_put_device -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch -EXPORT_SYMBOL vmlinux 0x50b0a5ba of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50bbc440 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50d07ce7 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x50df0638 register_console -EXPORT_SYMBOL vmlinux 0x50e60960 vio_get_attribute -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5114317a dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x51332567 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x51435316 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x51455612 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x518efbb7 setup_new_exec -EXPORT_SYMBOL vmlinux 0x519ac605 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x51a8a3cd dev_uc_del -EXPORT_SYMBOL vmlinux 0x51e061fd path_put -EXPORT_SYMBOL vmlinux 0x51f66fea phy_print_status -EXPORT_SYMBOL vmlinux 0x52114212 param_get_ushort -EXPORT_SYMBOL vmlinux 0x522692f1 key_move -EXPORT_SYMBOL vmlinux 0x524688bd inet_protos -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5277cef3 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x52801e48 i2c_release_client -EXPORT_SYMBOL vmlinux 0x5295f649 paca_ptrs -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52ad453e inet_offloads -EXPORT_SYMBOL vmlinux 0x52aea3ea xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x52c410b3 cdev_device_del -EXPORT_SYMBOL vmlinux 0x52d2f7db km_new_mapping -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53128872 bio_reset -EXPORT_SYMBOL vmlinux 0x537f4b2c get_acl -EXPORT_SYMBOL vmlinux 0x53ba6ebd __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x53c1435c stream_open -EXPORT_SYMBOL vmlinux 0x53c27801 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x53c5bc78 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x53c7815c sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x53cfa3de security_d_instantiate -EXPORT_SYMBOL vmlinux 0x53e5ea10 no_llseek -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5405d76c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x54280f58 dump_truncate -EXPORT_SYMBOL vmlinux 0x542d24c5 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5447efb7 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x5454a6fe finish_no_open -EXPORT_SYMBOL vmlinux 0x547171dc vlan_for_each -EXPORT_SYMBOL vmlinux 0x54826ec6 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x548d2f56 fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x549271da pci_enable_device -EXPORT_SYMBOL vmlinux 0x54a0ed34 init_on_alloc -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54bd7d8f __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x54c3c241 mr_dump -EXPORT_SYMBOL vmlinux 0x54ca3ce9 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x54d0c718 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x54d32436 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0x54d6d9e1 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x54d6ec2d phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x54d95b2b pneigh_lookup -EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e74040 make_kgid -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5507e90e pci_find_capability -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552de02b csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554ea18d _dev_notice -EXPORT_SYMBOL vmlinux 0x55564638 key_revoke -EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x557054c2 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x557ffb58 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558dfe7e dma_free_attrs -EXPORT_SYMBOL vmlinux 0x55bc9814 migrate_page -EXPORT_SYMBOL vmlinux 0x55c9fcc7 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x55cf15a4 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x55db4b4c end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x55dfcaa9 padata_stop -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x55e86f59 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x55fb59fd pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x560a05f6 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x56162e3f twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563b0056 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x563e6dff sort_r -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5657dc0b xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x5668f16a neigh_update -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x56bbdf88 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e70a3c serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x56faa0ff dma_resv_fini -EXPORT_SYMBOL vmlinux 0x56ffd3f4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x57051bf9 dquot_release -EXPORT_SYMBOL vmlinux 0x570a8a02 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x57178dde input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x571a28d2 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x5729d719 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x57492803 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5754a545 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5758f810 vfs_fsync -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578cd26d pci_get_class -EXPORT_SYMBOL vmlinux 0x578e369f jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x5795d9bd agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x579a10bd input_match_device_id -EXPORT_SYMBOL vmlinux 0x57a0b370 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x57b5cd17 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x57b84d3a blk_queue_split -EXPORT_SYMBOL vmlinux 0x57e6bee5 fs_bio_set -EXPORT_SYMBOL vmlinux 0x58163093 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x582f46ac generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep -EXPORT_SYMBOL vmlinux 0x587525e8 kern_path_create -EXPORT_SYMBOL vmlinux 0x58762389 set_groups -EXPORT_SYMBOL vmlinux 0x587d28c3 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x587fe98f netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x58826426 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x588b6d7a dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x588c056b dev_get_by_name -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b41ff4 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b632f3 dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bf2ac0 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x58bfa148 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x58ce4996 inode_init_owner -EXPORT_SYMBOL vmlinux 0x58d4206e compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x58da0df6 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x58e0479f reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x58e05600 simple_rmdir -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f235a4 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x58f59a4a __register_binfmt -EXPORT_SYMBOL vmlinux 0x58f74da3 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x59009654 generic_write_checks -EXPORT_SYMBOL vmlinux 0x59031d64 key_unlink -EXPORT_SYMBOL vmlinux 0x590bb844 param_ops_bint -EXPORT_SYMBOL vmlinux 0x59296ea0 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595001f8 of_match_device -EXPORT_SYMBOL vmlinux 0x5956de30 nf_log_set -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x5962fa3a blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x599a950e unix_detach_fds -EXPORT_SYMBOL vmlinux 0x599c4098 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a00b8a vga_put -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b3f0ce mutex_trylock -EXPORT_SYMBOL vmlinux 0x59b46b0e input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b764fc neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x59be9b6e __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x59c3e703 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x59d8e6ff fd_install -EXPORT_SYMBOL vmlinux 0x59e84df0 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x59f1d658 genphy_read_status -EXPORT_SYMBOL vmlinux 0x59f823a3 kill_anon_super -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a088923 up_write -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0c86af rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x5a292125 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x5a2ce4dc seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x5a370fdf mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x5a42b2f0 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4561bc netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x5a46594d md_bitmap_free -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5481bb mmc_retune_release -EXPORT_SYMBOL vmlinux 0x5a5de586 mach_pseries -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a91bcd8 kset_unregister -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9ee4cd __devm_release_region -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aaf82b6 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x5abdf2ca pci_iomap -EXPORT_SYMBOL vmlinux 0x5ad75976 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x5ae2e797 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x5ae53ed3 netif_rx -EXPORT_SYMBOL vmlinux 0x5af8d18f key_payload_reserve -EXPORT_SYMBOL vmlinux 0x5b113cde mntget -EXPORT_SYMBOL vmlinux 0x5b3444bb agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3e3b0d netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b684793 registered_fb -EXPORT_SYMBOL vmlinux 0x5b733c74 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x5b76e7ff vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x5b793645 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x5b7def9b devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5b987cfe devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x5b998252 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x5b9ed394 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5baa59c8 read_code -EXPORT_SYMBOL vmlinux 0x5baa9bf2 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x5bb5931b phy_suspend -EXPORT_SYMBOL vmlinux 0x5bc121b6 abx500_register_ops -EXPORT_SYMBOL vmlinux 0x5be44393 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfd44be fb_validate_mode -EXPORT_SYMBOL vmlinux 0x5c13fcf1 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x5c16b7ea xfrm_state_update -EXPORT_SYMBOL vmlinux 0x5c185691 padata_do_serial -EXPORT_SYMBOL vmlinux 0x5c1c390c abx500_mask_and_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x5c254326 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c69287f neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x5c6bbfa2 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x5c8027bd crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x5c95bd22 eth_header -EXPORT_SYMBOL vmlinux 0x5ca278b4 sock_wfree -EXPORT_SYMBOL vmlinux 0x5cb2bc8a vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x5ccaf6c7 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x5cf1b5da clear_nlink -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d094da7 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x5d1c8c10 request_key_rcu -EXPORT_SYMBOL vmlinux 0x5d34e9e7 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4bc35a jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x5d70e642 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d8d5709 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x5d977c20 dev_mc_add -EXPORT_SYMBOL vmlinux 0x5db104ea ihold -EXPORT_SYMBOL vmlinux 0x5db4af32 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5dbc7f7f of_phy_connect -EXPORT_SYMBOL vmlinux 0x5dc134d3 set_anon_super -EXPORT_SYMBOL vmlinux 0x5dc860df udp_pre_connect -EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e0b1808 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x5e1b162f xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x5e20735f inet_sendmsg -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e44d0ad tty_port_close_start -EXPORT_SYMBOL vmlinux 0x5e70e969 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e878a14 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5e90fe50 mdio_device_register -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9679e6 elv_rb_del -EXPORT_SYMBOL vmlinux 0x5e9a4580 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x5eb03f2d generic_permission -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebd79fc blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ed9d0c2 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee95c93 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x5ef15887 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0f5f60 security_path_unlink -EXPORT_SYMBOL vmlinux 0x5f23e04c mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x5f2414c8 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x5f24dd1a wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x5f28b8e0 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x5f4d2fde nf_log_trace -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base -EXPORT_SYMBOL vmlinux 0x5f8bff8e logfc -EXPORT_SYMBOL vmlinux 0x5f8c77f5 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5f8ca0a5 udp_prot -EXPORT_SYMBOL vmlinux 0x5fb43117 d_rehash -EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd61ef5 simple_write_end -EXPORT_SYMBOL vmlinux 0x5fd97063 validate_sp -EXPORT_SYMBOL vmlinux 0x5fead93f seq_open -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x601e3876 touch_buffer -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60227c88 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x6028bcfd rt_dst_clone -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60390989 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x6057553c sock_no_connect -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6068fc58 __neigh_create -EXPORT_SYMBOL vmlinux 0x60770e83 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x607865a7 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60b8db01 msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x60ccb490 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60f58852 node_data -EXPORT_SYMBOL vmlinux 0x60f716a0 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x61008e94 bdget -EXPORT_SYMBOL vmlinux 0x610af899 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x61110920 param_get_byte -EXPORT_SYMBOL vmlinux 0x61127e48 stop_tty -EXPORT_SYMBOL vmlinux 0x6115d677 eth_type_trans -EXPORT_SYMBOL vmlinux 0x611e172e compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x611e61a0 generic_listxattr -EXPORT_SYMBOL vmlinux 0x6120d8fb config_item_get -EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61350d36 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x6145e52d vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x61698e71 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x617628b7 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619ffd0a generic_file_open -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c2aa44 _dev_crit -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ef04df devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x61f1694e mark_info_dirty -EXPORT_SYMBOL vmlinux 0x620001a6 devm_free_irq -EXPORT_SYMBOL vmlinux 0x620258ee pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623cb532 posix_test_lock -EXPORT_SYMBOL vmlinux 0x624c2351 vmemmap -EXPORT_SYMBOL vmlinux 0x62620b8e tcp_sendpage -EXPORT_SYMBOL vmlinux 0x626e4e6f fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a05cdb xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x62a1ebaa tcp_seq_next -EXPORT_SYMBOL vmlinux 0x62bb9bb8 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62f9e4ed n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x6306eb40 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x6326bec8 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x63376488 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x63484997 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x634b6603 phy_read_paged -EXPORT_SYMBOL vmlinux 0x63648288 pci_set_master -EXPORT_SYMBOL vmlinux 0x63715457 pci_get_slot -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c89685 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x63d0fd20 km_report -EXPORT_SYMBOL vmlinux 0x63e2a3cd cdrom_check_events -EXPORT_SYMBOL vmlinux 0x63e9780f tty_port_init -EXPORT_SYMBOL vmlinux 0x63ead437 genphy_loopback -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x6446dd99 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x645176e5 discard_new_inode -EXPORT_SYMBOL vmlinux 0x645523da netdev_alert -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract -EXPORT_SYMBOL vmlinux 0x64874ee9 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a22ecd mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64ca2a67 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x64d23467 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x64defd4b fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x64ec70b7 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x6509ce40 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6514aa55 netdev_state_change -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651ce46f mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6550e881 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames -EXPORT_SYMBOL vmlinux 0x656be6a1 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x656fe3fe xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x657b5dff proto_unregister -EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x658900df i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x6589d850 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x65c40ef0 blk_register_region -EXPORT_SYMBOL vmlinux 0x65c45183 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dca817 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e19590 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x65e82c53 soft_cursor -EXPORT_SYMBOL vmlinux 0x660e9bc8 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x661d01f5 tty_hangup -EXPORT_SYMBOL vmlinux 0x6625f096 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66854db9 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x668d4c1e inet_put_port -EXPORT_SYMBOL vmlinux 0x6699adc3 sk_alloc -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b778c6 dev_get_flags -EXPORT_SYMBOL vmlinux 0x66b92279 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x66cb36e1 set_bh_page -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6772e257 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x677631b6 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678d93da agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x67abbafa sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67f3d52d prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x67f468e7 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x6809e37d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x6827e88e sock_from_file -EXPORT_SYMBOL vmlinux 0x682be198 sock_edemux -EXPORT_SYMBOL vmlinux 0x683b9b53 mmc_request_done -EXPORT_SYMBOL vmlinux 0x683ea30f max8925_set_bits -EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace -EXPORT_SYMBOL vmlinux 0x685cc03f netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x68616c1c dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x6864be53 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x68663255 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x686818bb down_read -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6894e1d3 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68cde225 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x68ce1f3a __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x68e2eec0 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x69011bab block_read_full_page -EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size -EXPORT_SYMBOL vmlinux 0x692b0bb6 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x69382883 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x69691017 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x699efd0f nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x69a6e28e tty_register_driver -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69b65735 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x69b6c15d tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x69d8a649 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e1f320 get_tz_trend -EXPORT_SYMBOL vmlinux 0x69f232cc dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x69fdffb0 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a20c893 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x6a2181c6 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x6a2af1b0 security_path_mknod -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60c1ee generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x6a992164 vme_irq_free -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aaf4ebd blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6adebd40 pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x6adfaed2 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af4e94e sk_dst_check -EXPORT_SYMBOL vmlinux 0x6af69b88 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x6afcca81 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x6b02513a dev_uc_flush -EXPORT_SYMBOL vmlinux 0x6b097b4d send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x6b2624d5 bio_chain -EXPORT_SYMBOL vmlinux 0x6b27ed5a blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b325e1b mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x6b3edf8b dma_async_device_register -EXPORT_SYMBOL vmlinux 0x6b524b56 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x6b556151 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b5ddaab pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x6b70e5c8 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x6b80ca8a flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b923107 set_posix_acl -EXPORT_SYMBOL vmlinux 0x6b9c01a5 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x6bbed95b dcb_setapp -EXPORT_SYMBOL vmlinux 0x6bbfc157 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd9b535 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x6beb501d pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6bf07bba try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x6bf3b28f of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x6bfc4d2a iov_iter_npages -EXPORT_SYMBOL vmlinux 0x6c123756 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c33aa57 agp_backend_release -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7c279e neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x6c8ad3d4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6caefcf2 put_disk -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6ce3859c __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d1393ed seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x6d1a2bfd reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x6d1f2c64 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d317001 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x6d47d1b0 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x6d48805c i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x6d4dd21f netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x6d4f2b3c srp_rport_get -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d67f99b nd_device_register -EXPORT_SYMBOL vmlinux 0x6d79f6fd of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0x6d8e2e05 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x6da75859 complete_request_key -EXPORT_SYMBOL vmlinux 0x6db3fd3a tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6ddb0036 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x6de391b7 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x6de5edb2 __seq_open_private -EXPORT_SYMBOL vmlinux 0x6deeae01 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e0bb64e pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6e0df406 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x6e13ef90 ab3100_event_unregister -EXPORT_SYMBOL vmlinux 0x6e152bd7 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6e251a70 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x6e2ab133 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x6e2aeee0 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x6e35a6f8 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x6e3b9a99 md_integrity_register -EXPORT_SYMBOL vmlinux 0x6e40596c generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x6e45f2e4 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x6e52a459 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e6c6ef2 dev_get_stats -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e79a0a7 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x6e7d04e8 of_device_is_available -EXPORT_SYMBOL vmlinux 0x6e8a2e5b kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr -EXPORT_SYMBOL vmlinux 0x6e9d9388 nvm_submit_io -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb8d695 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x6ebdf8cf dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x6ec23ced kill_litter_super -EXPORT_SYMBOL vmlinux 0x6ec5a179 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6ef88ab7 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit -EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f1b1ec4 sock_rfree -EXPORT_SYMBOL vmlinux 0x6f1d3673 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x6f38a8f8 device_add_disk -EXPORT_SYMBOL vmlinux 0x6f41424e of_get_mac_address -EXPORT_SYMBOL vmlinux 0x6f61631e alloc_fddidev -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f7c9ad8 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x6f8121fb skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x6f912925 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x6f9bc3b7 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fc3f5ad input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x6fc818a9 vm_insert_page -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6fe294f2 __register_chrdev -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x701280fd jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x701cbfb1 proc_symlink -EXPORT_SYMBOL vmlinux 0x703afd17 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x7041d850 dst_discard_out -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7057c608 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x705af857 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x705ff07e mdiobus_read -EXPORT_SYMBOL vmlinux 0x7062b864 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x707c2761 lease_modify -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x709a788a fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x70a919db sg_miter_next -EXPORT_SYMBOL vmlinux 0x70bcabba tty_lock -EXPORT_SYMBOL vmlinux 0x70c1c40f filemap_map_pages -EXPORT_SYMBOL vmlinux 0x70c32802 dm_io -EXPORT_SYMBOL vmlinux 0x70f267d9 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x70f6984e blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x70f81bd8 param_get_int -EXPORT_SYMBOL vmlinux 0x70fc1811 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x70fc203e __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7107c610 generic_fadvise -EXPORT_SYMBOL vmlinux 0x71164403 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7116a9bd fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x7126edcb blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712b956a gro_cells_receive -EXPORT_SYMBOL vmlinux 0x7130fb3e udp_seq_next -EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x71412c5c tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x714bfe52 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x715deea1 is_nd_dax -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71899354 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b39968 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x71b6869b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x71d36eb4 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x71e7133e dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x71ef0ea2 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x71f39a5f iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x72105b11 cdev_del -EXPORT_SYMBOL vmlinux 0x72172e81 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x721c9ed3 register_filesystem -EXPORT_SYMBOL vmlinux 0x7229a086 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x724412dd napi_gro_receive -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush -EXPORT_SYMBOL vmlinux 0x7266c432 dst_release -EXPORT_SYMBOL vmlinux 0x72692974 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x7270bf75 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d1e494 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0x72d7ce45 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72fa60c6 mmc_add_host -EXPORT_SYMBOL vmlinux 0x730a698e param_set_charp -EXPORT_SYMBOL vmlinux 0x731001f4 __sb_start_write -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x731ca2af generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x7336d60b phy_find_first -EXPORT_SYMBOL vmlinux 0x734fd2fc skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x736278c6 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x737240df scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73919e61 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x7391a8f1 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x7397cc10 hmm_range_unregister -EXPORT_SYMBOL vmlinux 0x739991a7 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x739cf354 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x73afefa7 component_match_add_release -EXPORT_SYMBOL vmlinux 0x73b0be91 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x73c94863 of_get_next_child -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74119dc4 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x74308150 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x7437d823 eth_header_cache -EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x7458ba0c fb_blank -EXPORT_SYMBOL vmlinux 0x746711f5 file_modified -EXPORT_SYMBOL vmlinux 0x746cf478 input_event -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x749abd3b nobh_write_begin -EXPORT_SYMBOL vmlinux 0x74a1afe3 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x74b3a514 proc_remove -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cc3724 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x74ce122f dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x74cf4590 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x74e0e851 tcf_em_register -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74eea244 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x74fc6e90 __close_fd -EXPORT_SYMBOL vmlinux 0x7500a0b2 netdev_change_features -EXPORT_SYMBOL vmlinux 0x7505c775 __ioremap_at -EXPORT_SYMBOL vmlinux 0x7528aec0 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x75294819 try_to_release_page -EXPORT_SYMBOL vmlinux 0x752a9ab6 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x752d451f __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x755d863b ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x757d81e9 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start -EXPORT_SYMBOL vmlinux 0x75b4568c mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c55779 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e489e4 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x75f24ce9 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x75f38c3c iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x761284a1 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7627b790 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x762a8f01 pci_bus_type -EXPORT_SYMBOL vmlinux 0x7631051a dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x763651b3 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765c3547 cad_pid -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766c9405 abx500_set_register_interruptible -EXPORT_SYMBOL vmlinux 0x76703404 phy_device_create -EXPORT_SYMBOL vmlinux 0x7688900b ptp_clock_event -EXPORT_SYMBOL vmlinux 0x768ff221 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x769e89a5 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b5cb6b input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x76bc2b31 filemap_fault -EXPORT_SYMBOL vmlinux 0x76c2248d vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76eb1e13 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write -EXPORT_SYMBOL vmlinux 0x77273c86 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773df2b1 flush_old_exec -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x774a697b xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x777f7459 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77bf24f4 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x77e33e83 inet_accept -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f181bb netlink_net_capable -EXPORT_SYMBOL vmlinux 0x7802519d bio_copy_data -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x782cc572 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785be962 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x785d4e87 d_path -EXPORT_SYMBOL vmlinux 0x7861e0a7 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78851d2f _outsb -EXPORT_SYMBOL vmlinux 0x78969b71 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789f2ad0 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a97c5e nvm_end_io -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78c292c2 kset_register -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x79047430 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x79056e42 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x790abf12 skb_dequeue -EXPORT_SYMBOL vmlinux 0x790c0a0d set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x792dcb38 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x7953c883 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x7967f84a pci_release_region -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x797bf691 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x797c11b0 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x797f1862 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x799a7995 __serio_register_port -EXPORT_SYMBOL vmlinux 0x79a31a4e uart_register_driver -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79c24f64 generic_make_request -EXPORT_SYMBOL vmlinux 0x79df274f radix__flush_tlb_page -EXPORT_SYMBOL vmlinux 0x79df7ae7 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x79e697e6 module_refcount -EXPORT_SYMBOL vmlinux 0x7a02f1ad __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a17b9c5 fc_mount -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1d985e inetdev_by_index -EXPORT_SYMBOL vmlinux 0x7a3bd7ec lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a5bb002 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7a7732ff input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a9feddd mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab296dd tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7aba73bc __neigh_event_send -EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7adc3484 release_sock -EXPORT_SYMBOL vmlinux 0x7ae42b13 init_pseudo -EXPORT_SYMBOL vmlinux 0x7ae9cd7d __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x7af354c1 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b2a2404 abx500_remove_ops -EXPORT_SYMBOL vmlinux 0x7b2b38d9 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x7b2c7226 uaccess_flush_key -EXPORT_SYMBOL vmlinux 0x7b30179f submit_bio_wait -EXPORT_SYMBOL vmlinux 0x7b62306b mpage_writepage -EXPORT_SYMBOL vmlinux 0x7b6b4257 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x7b9dde9f request_firmware -EXPORT_SYMBOL vmlinux 0x7ba0c022 module_put -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x7bdb61d1 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x7bdb76ed alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x7be47e22 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x7bf6285f con_is_bound -EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x7c019ed0 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x7c0a7199 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x7c0aff13 drop_nlink -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c202584 scsi_host_get -EXPORT_SYMBOL vmlinux 0x7c396dde alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c59952e param_set_invbool -EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x7c730b98 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x7c7ee48d inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x7c9746c8 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cb2e0d7 dquot_transfer -EXPORT_SYMBOL vmlinux 0x7cc4e34d search_binary_handler -EXPORT_SYMBOL vmlinux 0x7cc681d2 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7ccdf191 seq_path -EXPORT_SYMBOL vmlinux 0x7cd46330 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce6c77d fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0x7cf17421 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d034b53 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x7d0c1ee7 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d3595eb alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x7d391d64 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x7d43749c netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d57734d udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x7d5a22a5 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d716598 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x7d7edb73 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7d8b78a8 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x7d8cb198 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x7d987fa0 radix__local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x7d9cb8a6 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x7da25ad2 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x7da7504e netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc1faea __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dda8162 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df18d22 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base -EXPORT_SYMBOL vmlinux 0x7e04381e vfs_unlink -EXPORT_SYMBOL vmlinux 0x7e0adca9 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x7e12878d input_unregister_handler -EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e33d39c seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x7e362e8d page_get_link -EXPORT_SYMBOL vmlinux 0x7e60d798 dev_set_group -EXPORT_SYMBOL vmlinux 0x7e69ff24 security_sk_clone -EXPORT_SYMBOL vmlinux 0x7e75a4af vfs_readlink -EXPORT_SYMBOL vmlinux 0x7ea674e2 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x7ebac429 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x7ed44fde netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x7ef44e7c dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x7efbe295 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x7efe0b1f jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f0cb557 fb_set_var -EXPORT_SYMBOL vmlinux 0x7f13d3d9 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f282cc3 key_type_keyring -EXPORT_SYMBOL vmlinux 0x7f2eb5ec path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x7f33345f tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x7f3951f9 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5bc789 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x7f6f2b20 free_netdev -EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8bc60f balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x7f8f6cbd dcache_dir_open -EXPORT_SYMBOL vmlinux 0x7f910281 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x7f9ab696 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7fba1feb pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x7fbe581d ata_dev_printk -EXPORT_SYMBOL vmlinux 0x7fbf9e30 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x7fc1fb03 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x7fc6501c phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x7fe21070 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec23cc inode_permission -EXPORT_SYMBOL vmlinux 0x7ffbe30f input_open_device -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x801d7329 pci_find_resource -EXPORT_SYMBOL vmlinux 0x801fb671 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x802e391d seq_open_private -EXPORT_SYMBOL vmlinux 0x8031174a __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x80339c91 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x80384aab iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x804f2cc1 dquot_initialize -EXPORT_SYMBOL vmlinux 0x805f509f sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x8072abd7 PDE_DATA -EXPORT_SYMBOL vmlinux 0x80812c1b inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x808786c3 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x808acd6d sock_wake_async -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809c4be1 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x80b9976a input_set_capability -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d7da27 phy_attached_info -EXPORT_SYMBOL vmlinux 0x80e3e773 config_item_set_name -EXPORT_SYMBOL vmlinux 0x80ee5bb4 release_pages -EXPORT_SYMBOL vmlinux 0x80f94e14 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x810afec4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811d0690 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x811e3c6d page_mapped -EXPORT_SYMBOL vmlinux 0x811f53de skb_tx_error -EXPORT_SYMBOL vmlinux 0x811f6d7d xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x8126e932 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8127eea3 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0x812d43e2 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x81399bfb __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x8146cb1a scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x81488dab agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x814b9e29 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81563aa3 vme_register_driver -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x816daa8d seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x817b3d1e __brelse -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8196fbc3 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81a452d4 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81c8b265 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x82030639 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x8204233c pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end -EXPORT_SYMBOL vmlinux 0x8233c57a devm_iounmap -EXPORT_SYMBOL vmlinux 0x8261826a of_match_node -EXPORT_SYMBOL vmlinux 0x82669a82 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x826e809b jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x827c3e5a kernel_listen -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82bc466e pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82c8f136 unlock_page -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82fbdfa0 bioset_init -EXPORT_SYMBOL vmlinux 0x830449e4 inet_shutdown -EXPORT_SYMBOL vmlinux 0x8309cfae nvdimm_revalidate_disk -EXPORT_SYMBOL vmlinux 0x832a3228 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x833832fc kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x83467a93 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x834b81e5 padata_free -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835beaab hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x8361f62a kernel_read -EXPORT_SYMBOL vmlinux 0x837b0014 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x837e44c5 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838d91e7 finish_swait -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x83afad08 seq_read -EXPORT_SYMBOL vmlinux 0x83b8c364 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x83bcd16e pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83d92f2c of_get_address -EXPORT_SYMBOL vmlinux 0x83db89fa pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x83e32a41 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x83e3be54 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x83e3ff04 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x83e7e8c0 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x83f6c9d7 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x83f9521c cpumask_any_but -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84039186 find_vma -EXPORT_SYMBOL vmlinux 0x840fe9e8 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x8410d76e __free_pages -EXPORT_SYMBOL vmlinux 0x84156834 __next_node_in -EXPORT_SYMBOL vmlinux 0x8436ae94 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x843a9781 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x84403664 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x844173ff iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x845cc1f3 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x847c6dbc phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x84a7516a tty_check_change -EXPORT_SYMBOL vmlinux 0x84b1e55f nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x84b21bf7 generic_perform_write -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c231f7 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x84d645b7 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x84ef0884 dev_printk -EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x84fd96ce read_cache_pages -EXPORT_SYMBOL vmlinux 0x850c36c8 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x851478d9 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range -EXPORT_SYMBOL vmlinux 0x85309f37 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x8534c9d5 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x853b4c8f mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x853e3b25 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x854fcaf4 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x855cb1b0 sync_blockdev -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856b9a75 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x857f48d5 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x85850634 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x8586e3a3 ab3100_event_register -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85940430 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x859d16d2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bae1bd qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c92288 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e10240 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x85e3d716 __find_get_block -EXPORT_SYMBOL vmlinux 0x85eece64 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress -EXPORT_SYMBOL vmlinux 0x861539ba from_kgid_munged -EXPORT_SYMBOL vmlinux 0x86201be0 register_shrinker -EXPORT_SYMBOL vmlinux 0x862feae2 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x8635ed56 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865314fd remove_arg_zero -EXPORT_SYMBOL vmlinux 0x865ea7b3 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x866ff530 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x867195b6 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x867d0fa1 kill_pgrp -EXPORT_SYMBOL vmlinux 0x86801624 peernet2id -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a235ce devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x86a577cd dqput -EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec -EXPORT_SYMBOL vmlinux 0x86b18094 complete -EXPORT_SYMBOL vmlinux 0x86b25850 down_read_killable -EXPORT_SYMBOL vmlinux 0x86d6787a pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant -EXPORT_SYMBOL vmlinux 0x87055c59 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x8710ef46 unload_nls -EXPORT_SYMBOL vmlinux 0x87195d21 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x87510042 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x8758cdbc cdev_add -EXPORT_SYMBOL vmlinux 0x875f4cd2 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x8765a0d2 phy_ethtool_sset -EXPORT_SYMBOL vmlinux 0x8766f41b pci_match_id -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x8785c9f4 inode_init_once -EXPORT_SYMBOL vmlinux 0x87b12c26 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c09757 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x87e3f3ba watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x87fd6159 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x88123157 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x88213b2f __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x88311ce8 ps2_command -EXPORT_SYMBOL vmlinux 0x88574b97 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x8857d706 md_register_thread -EXPORT_SYMBOL vmlinux 0x88654a07 mdio_device_create -EXPORT_SYMBOL vmlinux 0x88655a76 kobject_set_name -EXPORT_SYMBOL vmlinux 0x887f3288 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x8894a730 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x889694f9 of_device_register -EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x88a2a17b get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0x88a683e4 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88bf96b9 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88de8b9c __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ed8ad1 param_ops_charp -EXPORT_SYMBOL vmlinux 0x88ef98cd rproc_shutdown -EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x8908480f scsi_dma_map -EXPORT_SYMBOL vmlinux 0x89159c30 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x893bf4ff do_SAK -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x895deba7 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x896e0e08 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x896f42f1 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass -EXPORT_SYMBOL vmlinux 0x89911673 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x89a5f4cb __do_once_done -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89c28bf3 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x89ce5e88 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x89d17280 __invalidate_device -EXPORT_SYMBOL vmlinux 0x89d6cbe0 __put_cred -EXPORT_SYMBOL vmlinux 0x89df6a49 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x89e10a00 radix__flush_all_mm -EXPORT_SYMBOL vmlinux 0x89feaf92 __irq_regs -EXPORT_SYMBOL vmlinux 0x89ff5623 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -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 0x8a594fca jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x8a5f4fc7 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x8a79897f kill_bdev -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8e3377 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa14b69 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x8aab3294 qdisc_reset -EXPORT_SYMBOL vmlinux 0x8ab68ab9 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x8af855a9 dump_align -EXPORT_SYMBOL vmlinux 0x8aff90a4 neigh_lookup -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b168d23 freeze_bdev -EXPORT_SYMBOL vmlinux 0x8b3a4978 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x8b50596c fget -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6539cd mmc_of_parse -EXPORT_SYMBOL vmlinux 0x8b6f99cb bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x8b746238 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8b75c8 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x8b972d92 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba453fa tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x8bafdaa1 simple_open -EXPORT_SYMBOL vmlinux 0x8bcbf3d6 param_ops_uint -EXPORT_SYMBOL vmlinux 0x8bded847 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x8bebb6b7 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x8bf0b4d4 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x8bf668f6 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8c062279 dquot_resume -EXPORT_SYMBOL vmlinux 0x8c1e8176 phy_attached_print -EXPORT_SYMBOL vmlinux 0x8c2baebb seq_escape -EXPORT_SYMBOL vmlinux 0x8c44f126 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x8c491eee vme_bus_num -EXPORT_SYMBOL vmlinux 0x8c702db0 done_path_create -EXPORT_SYMBOL vmlinux 0x8c8ca4a0 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x8c8e5243 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cdffcac mmc_can_discard -EXPORT_SYMBOL vmlinux 0x8cef86fa __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x8d0aef6d __mutex_init -EXPORT_SYMBOL vmlinux 0x8d154c59 mount_subtree -EXPORT_SYMBOL vmlinux 0x8d17d9bf ata_link_printk -EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x8d2a91a8 sock_create -EXPORT_SYMBOL vmlinux 0x8d33f547 dev_set_alias -EXPORT_SYMBOL vmlinux 0x8d4e61b6 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6a39a2 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8da88dd9 agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8ddf5993 pnv_pci_get_npu_dev -EXPORT_SYMBOL vmlinux 0x8df1bf74 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8df69f8c touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dffdb1b __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e51ade6 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x8e761669 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x8e7f0178 should_remove_suid -EXPORT_SYMBOL vmlinux 0x8e8b6ae6 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x8e97cbda irq_stat -EXPORT_SYMBOL vmlinux 0x8e9abab0 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x8eb275ee iterate_fd -EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8ed4b24c eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x8edc23ae security_sb_remount -EXPORT_SYMBOL vmlinux 0x8eeb42c6 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x8eed686f input_setup_polling -EXPORT_SYMBOL vmlinux 0x8eef639b filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x8ef825a6 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x8efcbd80 deactivate_super -EXPORT_SYMBOL vmlinux 0x8eff3e9a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f17219c dma_cache_sync -EXPORT_SYMBOL vmlinux 0x8f2f908e pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0x8f3466b7 block_write_begin -EXPORT_SYMBOL vmlinux 0x8f6021d9 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x8f72226c __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x8f74b5a9 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x8f967d4c dquot_destroy -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa7b741 of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x8fb0ed75 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x8fb1eeae of_dev_get -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8fbe9bc7 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x8fccb901 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x8ff32c88 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x9020877d tty_register_device -EXPORT_SYMBOL vmlinux 0x90223eed inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902eb5b7 sk_wait_data -EXPORT_SYMBOL vmlinux 0x903479d7 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x90405708 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x9042725a __scm_send -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x907631c4 dev_driver_string -EXPORT_SYMBOL vmlinux 0x90763a64 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x9078d064 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x9086da10 tcp_close -EXPORT_SYMBOL vmlinux 0x908d37cd bdi_register_va -EXPORT_SYMBOL vmlinux 0x908dc5d1 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x909140c9 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x90b3c7f4 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x90c54a42 abx500_get_register_page_interruptible -EXPORT_SYMBOL vmlinux 0x90ca66a1 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x90ce5b88 misc_register -EXPORT_SYMBOL vmlinux 0x90e08c8c datagram_poll -EXPORT_SYMBOL vmlinux 0x91050123 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x91069b64 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x910e925d sock_sendmsg -EXPORT_SYMBOL vmlinux 0x910f2ad0 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x9115269b jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x9122c185 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x913bf292 seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x914cdcc2 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168757d __alloc_skb -EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x9171c8ef d_add -EXPORT_SYMBOL vmlinux 0x9180c0d7 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x918504f8 I_BDEV -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b055a7 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x91b673e0 nf_log_unset -EXPORT_SYMBOL vmlinux 0x91ca157c scsi_scan_target -EXPORT_SYMBOL vmlinux 0x91d57536 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x91efb09a genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x91f75eec param_get_invbool -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x92516452 dm_get_device -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926b7952 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x928505e9 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929e9a02 d_make_root -EXPORT_SYMBOL vmlinux 0x92b983ff nonseekable_open -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92e1d1e0 thaw_bdev -EXPORT_SYMBOL vmlinux 0x92e92c70 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x92eac353 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ef2928 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fc3f32 tcp_poll -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x933dc479 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x934e72e9 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x935d20cd d_invalidate -EXPORT_SYMBOL vmlinux 0x936b9cf3 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x93748575 param_set_short -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938640a2 kdb_current_task -EXPORT_SYMBOL vmlinux 0x9396a2bb padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d60050 mmc_flush_cache -EXPORT_SYMBOL vmlinux 0x93d7923e pcie_get_mps -EXPORT_SYMBOL vmlinux 0x93db0ae4 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x93edc2bb tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x93f3888e zap_page_range -EXPORT_SYMBOL vmlinux 0x940474fc blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x940b6a7a locks_init_lock -EXPORT_SYMBOL vmlinux 0x94110dd9 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x94285ea4 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x94474e3b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9462205e drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9474fbdf xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x947d4fcd param_get_bool -EXPORT_SYMBOL vmlinux 0x9492f851 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949fce6f dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x94be63db user_path_create -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94f8ff64 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x94f93911 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x950ae8bf pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x95320af4 phy_start -EXPORT_SYMBOL vmlinux 0x95323a08 md_check_recovery -EXPORT_SYMBOL vmlinux 0x953568ba dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x954050c9 setattr_prepare -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9560e8dc release_firmware -EXPORT_SYMBOL vmlinux 0x956d7cbe vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x959065f5 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x95a8d0f9 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x95e01fda pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x95f081e4 xattr_full_name -EXPORT_SYMBOL vmlinux 0x961c9074 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x963cc1c1 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x964e9fff dm_put_table_device -EXPORT_SYMBOL vmlinux 0x96509556 __lock_page -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x96a60152 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96db7341 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x96e9351f brioctl_set -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x971528e2 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars -EXPORT_SYMBOL vmlinux 0x9725e0fa mod_node_page_state -EXPORT_SYMBOL vmlinux 0x972b5487 proc_set_user -EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size -EXPORT_SYMBOL vmlinux 0x97444de3 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97695d89 kobject_put -EXPORT_SYMBOL vmlinux 0x9774d410 vfs_statfs -EXPORT_SYMBOL vmlinux 0x97779842 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97aab541 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b1a29a of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cf3de5 filemap_flush -EXPORT_SYMBOL vmlinux 0x97d56176 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x97fda34d __icmp_send -EXPORT_SYMBOL vmlinux 0x980b9352 load_nls_default -EXPORT_SYMBOL vmlinux 0x980f2ae5 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x9822ef64 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x9826b9e1 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98331258 input_register_handler -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x984e0291 __put_page -EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set -EXPORT_SYMBOL vmlinux 0x989d6a8c tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x98a49587 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x98aad632 keyring_search -EXPORT_SYMBOL vmlinux 0x98c03d9f kern_path -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d74f94 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x98db0ee1 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x990a0206 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x990b0af5 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99429b09 hmm_mirror_register -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995db2bd cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x995f3058 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x99715813 seq_pad -EXPORT_SYMBOL vmlinux 0x99845a3b pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x9985e0ae find_inode_nowait -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999ec3a7 inet_del_offload -EXPORT_SYMBOL vmlinux 0x999f040b mmc_can_trim -EXPORT_SYMBOL vmlinux 0x99a770bb eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x99a94642 block_commit_write -EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x99b16996 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dbe807 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x99e370e4 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x99f03f8b netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x9a025eca rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x9a064c83 vme_dma_request -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5ab261 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8fbd76 inode_insert5 -EXPORT_SYMBOL vmlinux 0x9a941da6 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x9a990491 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x9a9a3a99 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac1c24b phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9ae5a78e inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x9afa2f93 security_sock_graft -EXPORT_SYMBOL vmlinux 0x9b03dc4c of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x9b0e5cbd devm_of_iomap -EXPORT_SYMBOL vmlinux 0x9b185f38 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x9b1f500f sock_no_mmap -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b34e138 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b4ff73d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9bb3fac1 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x9bc3a1b6 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x9bc8a832 __debugger_break_match -EXPORT_SYMBOL vmlinux 0x9be02204 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x9c0383eb dget_parent -EXPORT_SYMBOL vmlinux 0x9c0beaad mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x9c10cdbd jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x9c252adf dentry_open -EXPORT_SYMBOL vmlinux 0x9c26a208 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x9c32a6a7 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x9c3913de serio_open -EXPORT_SYMBOL vmlinux 0x9c3d2909 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x9c4427fb __dquot_transfer -EXPORT_SYMBOL vmlinux 0x9c5ad65c new_inode -EXPORT_SYMBOL vmlinux 0x9c64ecfa scsi_block_requests -EXPORT_SYMBOL vmlinux 0x9c6858d0 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x9c8d2d26 prepare_creds -EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit -EXPORT_SYMBOL vmlinux 0x9caa724b phy_detach -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cafefa0 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce20bca from_kuid_munged -EXPORT_SYMBOL vmlinux 0x9ce3bd0d pci_choose_state -EXPORT_SYMBOL vmlinux 0x9cf030cf clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x9cf90675 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x9d0247f9 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs -EXPORT_SYMBOL vmlinux 0x9d250e61 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x9d254427 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9d2e7d1a radix__local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x9d3e1e52 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x9d422368 _dev_emerg -EXPORT_SYMBOL vmlinux 0x9d45deba sk_ns_capable -EXPORT_SYMBOL vmlinux 0x9d4aba45 tso_start -EXPORT_SYMBOL vmlinux 0x9d65cf21 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x9d8abc78 param_set_copystring -EXPORT_SYMBOL vmlinux 0x9d96107d path_nosuid -EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops -EXPORT_SYMBOL vmlinux 0x9d9a4a5b pci_scan_slot -EXPORT_SYMBOL vmlinux 0x9d9afbf0 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x9dbdae62 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state -EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e10bcfd dquot_get_state -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2fa77e tty_name -EXPORT_SYMBOL vmlinux 0x9e39d397 timer_interrupt -EXPORT_SYMBOL vmlinux 0x9e4661ec ns_capable_setid -EXPORT_SYMBOL vmlinux 0x9e47a9b4 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5f3eca cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ec7af77 napi_get_frags -EXPORT_SYMBOL vmlinux 0x9ecf6d27 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x9ed70078 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee58078 bmap -EXPORT_SYMBOL vmlinux 0x9f1338cc nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x9f2568a2 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x9f3a4b51 napi_complete_done -EXPORT_SYMBOL vmlinux 0x9f3dcf07 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4d5fc5 ppc_md -EXPORT_SYMBOL vmlinux 0x9f4f9c3e __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f755949 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x9f75ce3b register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x9f83431f zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x9f865c10 PageMovable -EXPORT_SYMBOL vmlinux 0x9f8cf6f0 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x9f8ec75c filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa2ede7 d_genocide -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fab2c80 is_subdir -EXPORT_SYMBOL vmlinux 0x9fb157f7 _dev_err -EXPORT_SYMBOL vmlinux 0x9fb18e61 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fc9eb3f mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x9fca77c6 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9fff165b flush_icache_user_range -EXPORT_SYMBOL vmlinux 0xa0065564 memcpy_page_flushcache -EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0478d56 noop_llseek -EXPORT_SYMBOL vmlinux 0xa049dace uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa057d0bc super_setup_bdi -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa068a160 pci_save_state -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -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 0xa0b630bf md_write_start -EXPORT_SYMBOL vmlinux 0xa0ce002e freeze_super -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e01d1d agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f5745d xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11b0682 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xa11b5e18 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xa11cb821 fb_show_logo -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa1499298 to_ndd -EXPORT_SYMBOL vmlinux 0xa1735525 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xa173a1b5 __page_pool_put_page -EXPORT_SYMBOL vmlinux 0xa192ad3e dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xa19b774b fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xa1aad6e8 param_get_long -EXPORT_SYMBOL vmlinux 0xa1ab4bf9 rproc_add -EXPORT_SYMBOL vmlinux 0xa1af5078 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xa1b7a2d3 kill_pid -EXPORT_SYMBOL vmlinux 0xa1bb266f nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xa1c2a338 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1caecd3 vm_map_ram -EXPORT_SYMBOL vmlinux 0xa1de3cfe empty_aops -EXPORT_SYMBOL vmlinux 0xa1de4b0d ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create -EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init -EXPORT_SYMBOL vmlinux 0xa1fcbe0a filp_open -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20ca496 dquot_enable -EXPORT_SYMBOL vmlinux 0xa2133e1a dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xa22745c1 keyring_alloc -EXPORT_SYMBOL vmlinux 0xa230264b mmc_remove_host -EXPORT_SYMBOL vmlinux 0xa240b504 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xa241b948 of_find_property -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa25d0166 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa268dd12 __scm_destroy -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2a33b11 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xa2b640b8 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2bf186b param_ops_long -EXPORT_SYMBOL vmlinux 0xa2d5da4b devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa30ead0f __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa31d4905 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xa32eeaa2 seq_puts -EXPORT_SYMBOL vmlinux 0xa3343853 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xa34ad29e insert_inode_locked -EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa3565333 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xa364ca86 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xa36c53eb __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xa3712234 blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xa37da25a prepare_binprm -EXPORT_SYMBOL vmlinux 0xa3874d3b kthread_bind -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa39dd672 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa3a85416 inet_frags_init -EXPORT_SYMBOL vmlinux 0xa3ab325a dcache_readdir -EXPORT_SYMBOL vmlinux 0xa3bced1d rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xa3fc494c skb_trim -EXPORT_SYMBOL vmlinux 0xa3fc91b8 inet6_getname -EXPORT_SYMBOL vmlinux 0xa40150fa pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xa4321c20 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xa439259f of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xa4512c36 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xa45856a8 _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0xa45bb2a1 kthread_create_worker -EXPORT_SYMBOL vmlinux 0xa45cc230 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xa45e83ff scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa4789dd5 netdev_update_features -EXPORT_SYMBOL vmlinux 0xa4809ffb tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa4ac0588 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cdb5d4 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4db0562 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xa4ec920a i2c_del_driver -EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0xa50ba545 inet_gro_complete -EXPORT_SYMBOL vmlinux 0xa51375a8 give_up_console -EXPORT_SYMBOL vmlinux 0xa51d9206 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xa522a7b1 fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0xa52937f4 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xa54425c4 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xa5491a23 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5629732 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xa5654022 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xa5689c33 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xa58268b5 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa5891628 write_inode_now -EXPORT_SYMBOL vmlinux 0xa5908863 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xa5912dbb unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5ae9e7d copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xa5b9ad9d current_in_userns -EXPORT_SYMBOL vmlinux 0xa5be5faa nd_integrity_init -EXPORT_SYMBOL vmlinux 0xa5c19e5c put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xa5ce7dca pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xa5d76f12 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xa5eff2a0 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xa5f24c61 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0xa60ee740 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa6155492 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa620b44c blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xa63bba7d of_create_pci_dev -EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa664a866 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa6932f35 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa6a94f6a iptun_encaps -EXPORT_SYMBOL vmlinux 0xa6aa2da0 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xa6c0d042 __tcf_idr_release -EXPORT_SYMBOL vmlinux 0xa6d1d109 srp_rport_put -EXPORT_SYMBOL vmlinux 0xa6e0403e __block_write_begin -EXPORT_SYMBOL vmlinux 0xa6eba714 proc_create_data -EXPORT_SYMBOL vmlinux 0xa6f5fb8f skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xa710b63a dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xa73ac523 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xa73c1b94 d_move -EXPORT_SYMBOL vmlinux 0xa73c881c pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa7411a1c blkdev_reread_part -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75b1530 nobh_write_end -EXPORT_SYMBOL vmlinux 0xa75b3706 pseries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77f2c16 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xa78248dd nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0xa78262cd init_net -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa79694ae __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift -EXPORT_SYMBOL vmlinux 0xa7df6850 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f277bb tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xa7f32f59 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xa7f59717 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa7fd685b __devm_request_region -EXPORT_SYMBOL vmlinux 0xa814661e irq_to_desc -EXPORT_SYMBOL vmlinux 0xa81dc39b nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL vmlinux 0xa84064b8 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84b4144 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa877ce28 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xa8865e63 locks_free_lock -EXPORT_SYMBOL vmlinux 0xa888b826 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa88ab1c9 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xa8a5e2be srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0xa8a7d50d devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xa8acd9e9 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xa8c2ea99 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xa8d87593 netdev_warn -EXPORT_SYMBOL vmlinux 0xa8e26fd4 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xa8f33ec7 param_get_uint -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f81ccd fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9227be6 nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0xa929674b hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa9338cc2 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xa937aa5f kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xa93f582c pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xa951e1b4 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xa957e024 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9680ab3 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xa96d6dd5 bio_split -EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9b53db5 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free -EXPORT_SYMBOL vmlinux 0xaa06f540 dcb_getapp -EXPORT_SYMBOL vmlinux 0xaa173779 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xaa1a8733 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xaa1b8c48 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xaa2be823 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xaa31558b xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xaa31ae76 tso_build_data -EXPORT_SYMBOL vmlinux 0xaa3da6e7 noop_fsync -EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa51f83a pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7f1fa5 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xaa8d448c icmp6_send -EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xaac9af02 blk_rq_init -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 0xaadda07c inet_bind -EXPORT_SYMBOL vmlinux 0xaaef4058 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xaaf8bb14 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab12e79a pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xab1e868c put_user_pages -EXPORT_SYMBOL vmlinux 0xab33c5a6 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab41d42d xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xab45da55 misc_deregister -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6700d5 set_create_files_as -EXPORT_SYMBOL vmlinux 0xab6a2e11 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab79478c ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xab7a0533 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xabb99a92 phy_init_hw -EXPORT_SYMBOL vmlinux 0xabea4d1a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf84c5f blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac642064 __napi_schedule -EXPORT_SYMBOL vmlinux 0xac71d686 register_cdrom -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac8df1ac of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xac8f5ca7 hmm_range_dma_unmap -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xac983b70 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xaca33e32 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb5a228 commit_creds -EXPORT_SYMBOL vmlinux 0xacb6fbe6 follow_pfn -EXPORT_SYMBOL vmlinux 0xacb99308 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xacbea6b5 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xaccd531a ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfe480c genl_notify -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0da416 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xad13a924 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xad150e8b security_inode_copy_up -EXPORT_SYMBOL vmlinux 0xad1e5656 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xad1ee80e phy_init_eee -EXPORT_SYMBOL vmlinux 0xad2c474e inode_get_bytes -EXPORT_SYMBOL vmlinux 0xad2e0d63 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xad34bc48 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xad39e2d6 proto_register -EXPORT_SYMBOL vmlinux 0xad3caf94 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xad3f4fe3 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0xad4e032a backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad536cb1 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xad64c930 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xad696098 dma_resv_init -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad95045b mmc_put_card -EXPORT_SYMBOL vmlinux 0xad9839e7 iput -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xadb57646 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xadb59341 __bread_gfp -EXPORT_SYMBOL vmlinux 0xadba0f12 fb_class -EXPORT_SYMBOL vmlinux 0xadba17d2 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xadba7a57 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadc1de33 to_nd_btt -EXPORT_SYMBOL vmlinux 0xadc60ded netdev_info -EXPORT_SYMBOL vmlinux 0xadc95300 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xaded289b pci_read_config_word -EXPORT_SYMBOL vmlinux 0xadfac680 i8042_install_filter -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae1c0c21 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xae25c141 vm_event_states -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3fac46 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xae3fe070 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size -EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xae5d3e04 find_get_entry -EXPORT_SYMBOL vmlinux 0xae67531d tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xae68d573 passthru_features_check -EXPORT_SYMBOL vmlinux 0xae7c0944 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xae92e0e2 uart_match_port -EXPORT_SYMBOL vmlinux 0xae9c6075 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xaeb81ba0 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xaeef93ee sock_no_getname -EXPORT_SYMBOL vmlinux 0xaef7a15c vfs_get_tree -EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xaf0b96e0 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xaf0cfe44 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xaf1e00cb seq_putc -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf82c175 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xafa02a6b vga_tryget -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafa94870 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xafbe7df0 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xafc45d9b watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xafd02e2f security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xaff7f6c1 __debugger_bpt -EXPORT_SYMBOL vmlinux 0xaffc8115 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01f0363 sk_common_release -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06e9439 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb07766ae mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb08318b6 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xb0965ad4 sock_efree -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ba01c0 follow_down_one -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0dd468f set_cached_acl -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0efcb02 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb121b0d3 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb16ab739 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xb16c9889 serio_reconnect -EXPORT_SYMBOL vmlinux 0xb16ff78f end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xb17056c3 md_error -EXPORT_SYMBOL vmlinux 0xb186d365 __skb_pad -EXPORT_SYMBOL vmlinux 0xb196122b con_is_visible -EXPORT_SYMBOL vmlinux 0xb19ad976 backlight_device_register -EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0xb1a391f4 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc -EXPORT_SYMBOL vmlinux 0xb1ebc32d skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xb1ee9ea8 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xb2083f37 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xb2259c79 pipe_lock -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb230e415 dev_add_pack -EXPORT_SYMBOL vmlinux 0xb2376381 setattr_copy -EXPORT_SYMBOL vmlinux 0xb240c7f8 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xb255478b dquot_acquire -EXPORT_SYMBOL vmlinux 0xb271e1bd sock_i_ino -EXPORT_SYMBOL vmlinux 0xb289ecab of_parse_phandle -EXPORT_SYMBOL vmlinux 0xb2945a1d ppp_dev_name -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb29b3394 dma_supported -EXPORT_SYMBOL vmlinux 0xb29eb9ad is_nd_pfn -EXPORT_SYMBOL vmlinux 0xb2a10c95 profile_pc -EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear -EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2b88541 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xb2bb4b03 configfs_register_group -EXPORT_SYMBOL vmlinux 0xb2dca12d sock_i_uid -EXPORT_SYMBOL vmlinux 0xb2df0e0c devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f89218 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb306a64c pci_claim_resource -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb315aa13 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3224d2b dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xb322b113 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xb323c367 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb326ef14 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xb3354d48 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xb33c2082 submit_bh -EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats -EXPORT_SYMBOL vmlinux 0xb35ad49e devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36e30a8 vme_irq_request -EXPORT_SYMBOL vmlinux 0xb3871160 genphy_suspend -EXPORT_SYMBOL vmlinux 0xb38d8604 udp_set_csum -EXPORT_SYMBOL vmlinux 0xb3a943ed scsi_remove_device -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb41ae647 wake_up_process -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user -EXPORT_SYMBOL vmlinux 0xb4651416 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xb483745e blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4a3e235 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xb4a90ba1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb4b0720f add_to_pipe -EXPORT_SYMBOL vmlinux 0xb4c7ea44 simple_statfs -EXPORT_SYMBOL vmlinux 0xb4dc1f87 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5168e01 skb_clone -EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb55b7559 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb573d320 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0xb577e522 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb5794d19 nmi_panic -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a620e6 lock_rename -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5bcd36c netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xb5c8dbad rtas -EXPORT_SYMBOL vmlinux 0xb5d263ed unregister_netdev -EXPORT_SYMBOL vmlinux 0xb5de80c6 vfs_create -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5e7575b dev_disable_lro -EXPORT_SYMBOL vmlinux 0xb5e82b4b agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xb5ed0719 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xb5f04736 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xb5f2a0f9 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xb608fe16 of_node_to_nid -EXPORT_SYMBOL vmlinux 0xb60a7641 blkdev_get -EXPORT_SYMBOL vmlinux 0xb6104bef pagecache_get_page -EXPORT_SYMBOL vmlinux 0xb6139d4d km_query -EXPORT_SYMBOL vmlinux 0xb614d8a1 kill_block_super -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb6319f25 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb638d7f6 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xb64f015b vfs_create_mount -EXPORT_SYMBOL vmlinux 0xb65bca38 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69bfde9 proc_mkdir -EXPORT_SYMBOL vmlinux 0xb69f441b param_get_charp -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6b18d07 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xb6b3fe0e tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xb6d4e1b1 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xb6e18921 mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xb6e4b263 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb6ea353d simple_nosetlease -EXPORT_SYMBOL vmlinux 0xb6f3360b bio_init -EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section -EXPORT_SYMBOL vmlinux 0xb740af91 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xb747cf97 rproc_alloc -EXPORT_SYMBOL vmlinux 0xb755fca5 clear_wb_congested -EXPORT_SYMBOL vmlinux 0xb75e9ea5 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xb75f94e3 init_special_inode -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7a45e10 md_write_inc -EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cedda4 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb7d6dfd9 vme_bus_type -EXPORT_SYMBOL vmlinux 0xb7d8d97a security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xb7da5779 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xb7f86263 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0xb8034b9c inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb81b0266 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xb82a6ed8 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xb830204b inet_gro_receive -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83971f5 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xb8831cd9 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xb889c4ae sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8aaa5cd tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xb8adad4f xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xb8ae06fe path_is_under -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b6cef4 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb8b936b1 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8d23946 textsearch_register -EXPORT_SYMBOL vmlinux 0xb8e5a4f6 notify_change -EXPORT_SYMBOL vmlinux 0xb8f379c6 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xb8fc3b37 ppp_input_error -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb90bdaf0 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9175b64 pnv_pci_get_gpu_dev -EXPORT_SYMBOL vmlinux 0xb9313cd5 console_start -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb954cf70 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xb98addc8 param_ops_int -EXPORT_SYMBOL vmlinux 0xb9dfd20e capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xb9e4346b inet6_offloads -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ee149b set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xb9fe9b86 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xba0b8804 simple_rename -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba11219e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xba2e264c tcf_register_action -EXPORT_SYMBOL vmlinux 0xba3fc23a genl_unregister_family -EXPORT_SYMBOL vmlinux 0xba48b84e skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba54c4a2 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xba5d25bb task_work_add -EXPORT_SYMBOL vmlinux 0xba62cc64 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xba691c85 _insb -EXPORT_SYMBOL vmlinux 0xba7936d8 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xba7df037 get_phy_device -EXPORT_SYMBOL vmlinux 0xba8a8454 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xba8d82f6 dquot_operations -EXPORT_SYMBOL vmlinux 0xba91646c filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xba9d9d4f invalidate_bdev -EXPORT_SYMBOL vmlinux 0xba9fb26f clear_user_page -EXPORT_SYMBOL vmlinux 0xbaa1e93e freezing_slow_path -EXPORT_SYMBOL vmlinux 0xbaa36822 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xbaa46a8b finish_open -EXPORT_SYMBOL vmlinux 0xbaa683a8 single_release -EXPORT_SYMBOL vmlinux 0xbaade0dc mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xbac67218 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xbad02bad skb_queue_tail -EXPORT_SYMBOL vmlinux 0xbaf22abe security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb05fab8 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xbb0aa113 __close_fd_get_file -EXPORT_SYMBOL vmlinux 0xbb192f3a qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xbb24ac7a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2cff58 pci_request_irq -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb39101a get_task_exe_file -EXPORT_SYMBOL vmlinux 0xbb3a4114 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5390c2 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xbb5a3b11 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xbbbf2143 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xbbc0d4fe __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xbbc844dd __frontswap_load -EXPORT_SYMBOL vmlinux 0xbbd4ffec jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf5f5de debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xbc18a2ce skb_store_bits -EXPORT_SYMBOL vmlinux 0xbc28667b pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc34493d nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc611282 __bforget -EXPORT_SYMBOL vmlinux 0xbc658cc0 kobject_init -EXPORT_SYMBOL vmlinux 0xbc6ddb9e blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xbc815fdb mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xbc8be3e0 xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0xbc8cd69f phy_read_mmd -EXPORT_SYMBOL vmlinux 0xbc8da9ec inode_nohighmem -EXPORT_SYMBOL vmlinux 0xbc926d60 d_delete -EXPORT_SYMBOL vmlinux 0xbc9294c3 mmc_command_done -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user -EXPORT_SYMBOL vmlinux 0xbcc328f0 tty_write_room -EXPORT_SYMBOL vmlinux 0xbcdacdd8 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcff17d3 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xbd0779af sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xbd1c3ec7 tty_port_open -EXPORT_SYMBOL vmlinux 0xbd1e5e42 simple_get_link -EXPORT_SYMBOL vmlinux 0xbd27a0c4 of_translate_address -EXPORT_SYMBOL vmlinux 0xbd415a5e ps2_end_command -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6b448e genphy_resume -EXPORT_SYMBOL vmlinux 0xbd9c08eb single_open -EXPORT_SYMBOL vmlinux 0xbdeb775a dev_close -EXPORT_SYMBOL vmlinux 0xbdec469b path_get -EXPORT_SYMBOL vmlinux 0xbdf40c76 get_super -EXPORT_SYMBOL vmlinux 0xbe42b63f filp_close -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe4ed5d3 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe6fd4bc udp_seq_ops -EXPORT_SYMBOL vmlinux 0xbe714434 inode_set_flags -EXPORT_SYMBOL vmlinux 0xbe7d2ac1 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xbe82ce5b lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xbe90107d rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xbe93e263 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xbec13a72 __page_symlink -EXPORT_SYMBOL vmlinux 0xbec85935 param_set_uint -EXPORT_SYMBOL vmlinux 0xbeccea1f tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xbece8fec ptp_find_pin -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf009fbe security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xbf0b0df5 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xbf133103 set_user_nice -EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xbf2a2b4b ip_check_defrag -EXPORT_SYMBOL vmlinux 0xbf308a0e netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xbf3b7913 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xbf48a167 inet6_bind -EXPORT_SYMBOL vmlinux 0xbf49bc33 rtc_add_group -EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns -EXPORT_SYMBOL vmlinux 0xbf6f3d45 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa19418 vio_find_node -EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xbfbb04e7 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcd55e4 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xbfd6902c jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xbfedf900 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff20f31 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc0094be8 blk_get_request -EXPORT_SYMBOL vmlinux 0xc01b181c kernel_bind -EXPORT_SYMBOL vmlinux 0xc020c6a7 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xc02256e8 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc035ebba jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xc03886b9 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xc05e74ed __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc082af1b phy_device_register -EXPORT_SYMBOL vmlinux 0xc08bc602 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xc0942683 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0add4fd dev_activate -EXPORT_SYMBOL vmlinux 0xc0b2132a touch_atime -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c46506 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue -EXPORT_SYMBOL vmlinux 0xc0e48b75 md_write_end -EXPORT_SYMBOL vmlinux 0xc0e8761e __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xc0f9733e tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xc0fe987a devm_memremap -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xc12624f7 netif_device_detach -EXPORT_SYMBOL vmlinux 0xc12646ba input_allocate_device -EXPORT_SYMBOL vmlinux 0xc1328cee start_thread -EXPORT_SYMBOL vmlinux 0xc1419ca8 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xc147fa1d bd_set_size -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc151727f tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xc15d45b9 pci_request_region -EXPORT_SYMBOL vmlinux 0xc162458b pci_request_regions -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1a72992 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e9ba5e xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0xc203d606 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xc222adaf vio_unregister_device -EXPORT_SYMBOL vmlinux 0xc225a637 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2638e68 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27dec18 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xc27f728a netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0xc2817697 lookup_one_len -EXPORT_SYMBOL vmlinux 0xc297533a mpage_readpages -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a947d2 phy_device_free -EXPORT_SYMBOL vmlinux 0xc2a9ed3c ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xc2b4ed4d __kfree_skb -EXPORT_SYMBOL vmlinux 0xc2b56a09 kobject_del -EXPORT_SYMBOL vmlinux 0xc2bc897a pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xc2c286ee cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xc2d1552c sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2fd7ab2 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xc301d2ba simple_setattr -EXPORT_SYMBOL vmlinux 0xc30408f9 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xc3040be3 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xc30e1aae rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32ce949 dqget -EXPORT_SYMBOL vmlinux 0xc34a13ee netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc353db30 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38069d4 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3a36ae1 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xc3bf519d audit_log_start -EXPORT_SYMBOL vmlinux 0xc3c117a2 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xc3c205f8 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xc3c576f9 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xc3dec0ca mount_nodev -EXPORT_SYMBOL vmlinux 0xc3f3526e d_exact_alias -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4302588 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0xc453ea53 set_blocksize -EXPORT_SYMBOL vmlinux 0xc4547443 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xc461a37a __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0xc4656d60 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xc469ee71 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xc48866ea blackhole_netdev -EXPORT_SYMBOL vmlinux 0xc4a451a5 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xc4a4dff8 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b1f6e8 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xc4b9bfe3 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xc4c33e5f user_revoke -EXPORT_SYMBOL vmlinux 0xc4c46742 rproc_put -EXPORT_SYMBOL vmlinux 0xc4ed5695 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xc4f551c4 skb_pull -EXPORT_SYMBOL vmlinux 0xc4f96895 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xc51ce379 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc5264dbc pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xc53ea3d1 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xc540240f vme_slave_request -EXPORT_SYMBOL vmlinux 0xc5519d18 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 -EXPORT_SYMBOL vmlinux 0xc563068e refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xc578ba1f netlink_unicast -EXPORT_SYMBOL vmlinux 0xc58202cb security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xc583afe8 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc586c3b5 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59f2f95 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xc5a1c223 kthread_stop -EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table -EXPORT_SYMBOL vmlinux 0xc5a7b464 alloc_pages_current -EXPORT_SYMBOL vmlinux 0xc5a910d3 do_splice_direct -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c6f639 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5dd6393 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ec905e rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xc5ed20f6 revert_creds -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5f925af scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc609fe43 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61314b3 poll_freewait -EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy -EXPORT_SYMBOL vmlinux 0xc61be2a9 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xc6395da0 dquot_alloc -EXPORT_SYMBOL vmlinux 0xc6396b00 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xc64e92e6 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xc657e2f4 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xc65856dc netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a670d phy_validate_pause -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc6700839 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xc68c976d dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc6965bec setup_arg_pages -EXPORT_SYMBOL vmlinux 0xc69bcbe9 mach_powernv -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cb5765 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xc6e745c7 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6fccf18 bio_devname -EXPORT_SYMBOL vmlinux 0xc70ed3ea pci_get_subsys -EXPORT_SYMBOL vmlinux 0xc70fa376 key_link -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc725b9ce tcp_filter -EXPORT_SYMBOL vmlinux 0xc76d2363 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xc76d4d09 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc76f8225 compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xc7729c5c mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79113ea param_set_ulong -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7aa635e page_pool_destroy -EXPORT_SYMBOL vmlinux 0xc7ac319d unregister_shrinker -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d347a2 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy -EXPORT_SYMBOL vmlinux 0xc7f6f71d blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xc7f9e5ca scsi_host_put -EXPORT_SYMBOL vmlinux 0xc810aab7 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc8204c47 register_gifconf -EXPORT_SYMBOL vmlinux 0xc820f07c iunique -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84c4801 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc85f3e7c bdgrab -EXPORT_SYMBOL vmlinux 0xc861ab12 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc86c0adf follow_down -EXPORT_SYMBOL vmlinux 0xc870e906 flush_all_to_thread -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8887698 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xc888ea14 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89c98d7 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b09b4d cred_fscmp -EXPORT_SYMBOL vmlinux 0xc8b8c988 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xc8c3cfc8 block_write_end -EXPORT_SYMBOL vmlinux 0xc8ce25a7 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xc8d498c0 config_group_init -EXPORT_SYMBOL vmlinux 0xc8e07db5 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xc8e2bd0b devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xc8e45344 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xc8ed44d5 dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0xc90d17d0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xc926fd66 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xc9388ac6 scsi_device_put -EXPORT_SYMBOL vmlinux 0xc95ccd04 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xc962f5ac ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc965a62d tty_do_resize -EXPORT_SYMBOL vmlinux 0xc96ca6c6 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc99ba213 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift -EXPORT_SYMBOL vmlinux 0xc9dca7dd inet_select_addr -EXPORT_SYMBOL vmlinux 0xc9de38bb unix_destruct_scm -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xca043fb9 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2473e1 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xca2548ee neigh_event_ns -EXPORT_SYMBOL vmlinux 0xca2a31b9 kobject_get -EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca3c3740 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xca3c87bd __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4a3c4b neigh_table_clear -EXPORT_SYMBOL vmlinux 0xca5d264f file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xca5d8653 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca7fc44e dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa8702e posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcac48d3f remap_pfn_range -EXPORT_SYMBOL vmlinux 0xcae4cc5b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xcaed8822 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf4c7c5 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb1350e3 pci_find_bus -EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit -EXPORT_SYMBOL vmlinux 0xcb429900 get_user_pages -EXPORT_SYMBOL vmlinux 0xcb5181e5 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xcb7ccb29 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xcb9afb38 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcbb4d052 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xcbb6984c scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc10ccf pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbf35d4a mpage_readpage -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc063453 vfs_link -EXPORT_SYMBOL vmlinux 0xcc10ac9c dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xcc1c6dc8 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc46cfd2 of_device_unregister -EXPORT_SYMBOL vmlinux 0xcc475ecd iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc67e1f2 neigh_destroy -EXPORT_SYMBOL vmlinux 0xcc7bb1e6 bio_advance -EXPORT_SYMBOL vmlinux 0xcc900d4c input_get_keycode -EXPORT_SYMBOL vmlinux 0xccacbb05 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free -EXPORT_SYMBOL vmlinux 0xccc188f1 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd65510 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf52ee1 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xccf58607 vfs_get_link -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd353945 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xcd3fd930 nvm_unregister -EXPORT_SYMBOL vmlinux 0xcd4a2baf tcp_req_err -EXPORT_SYMBOL vmlinux 0xcd583ebd of_dev_put -EXPORT_SYMBOL vmlinux 0xcd690bcc revalidate_disk -EXPORT_SYMBOL vmlinux 0xcd6d446d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xcd6ed12c blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xcd75a1ea truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xcd8278aa vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0xcd83c9f5 phy_connect -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd8ad180 mmc_free_host -EXPORT_SYMBOL vmlinux 0xcd902662 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xcda8b23d __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xcdbb6a1c pci_irq_vector -EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdfeb997 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xce04bbbc eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0xce2644d6 poll_initwait -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce284f6d tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xce2ff424 inet_addr_type -EXPORT_SYMBOL vmlinux 0xce3b31b7 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xce3eb319 secpath_set -EXPORT_SYMBOL vmlinux 0xce42c5e0 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xce477981 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce54c938 complete_all -EXPORT_SYMBOL vmlinux 0xce5514bf dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5aed23 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xce61f984 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xce72d40d inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next -EXPORT_SYMBOL vmlinux 0xce9a3fff msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0xce9ed8d0 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec62cd3 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 -EXPORT_SYMBOL vmlinux 0xceca08ae reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xcee49e80 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xcee7db32 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef50067 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf3dd4e9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xcf5065fb mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xcf50fd1e arp_create -EXPORT_SYMBOL vmlinux 0xcf6fa3ea of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xcf6fd2b4 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xcf89a941 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfaa33cb i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xcfc570e8 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xcfe17e9a twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xd00d37e8 vfs_setpos -EXPORT_SYMBOL vmlinux 0xd013d5d9 finalize_exec -EXPORT_SYMBOL vmlinux 0xd028cf02 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xd0393956 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xd03f8d26 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd07dc3bd tcp_conn_request -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0aa80c0 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd0f5b271 mdio_device_free -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd107d272 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xd11d4b0e to_nd_dax -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd1383bef page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0xd13ae7b3 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xd14f096c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xd150135f scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xd17892e8 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xd17e423a jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18fe5f6 completion_done -EXPORT_SYMBOL vmlinux 0xd1af3062 audit_log -EXPORT_SYMBOL vmlinux 0xd1b10e0c __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xd1b2aa88 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xd1c80eb1 input_set_keycode -EXPORT_SYMBOL vmlinux 0xd1ca20a7 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xd1d04ad9 vm_map_pages -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1d89394 pci_dev_put -EXPORT_SYMBOL vmlinux 0xd1dbeaa2 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd20fc64e fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xd21978ab ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd21d10ca pci_free_irq -EXPORT_SYMBOL vmlinux 0xd23d5952 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xd24818b2 qdisc_put -EXPORT_SYMBOL vmlinux 0xd255afda __skb_checksum -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25e0371 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf -EXPORT_SYMBOL vmlinux 0xd263ac97 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xd270e536 dquot_file_open -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29cbebe path_has_submounts -EXPORT_SYMBOL vmlinux 0xd2a52a27 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xd2a59054 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xd2a7a5d9 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xd2b6f891 get_task_cred -EXPORT_SYMBOL vmlinux 0xd2bc4c56 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xd2d55276 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2fe26a1 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xd30bae35 unregister_key_type -EXPORT_SYMBOL vmlinux 0xd30d65cc generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd326f080 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd339f2b2 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xd33c32bd mutex_is_locked -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35cc535 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd383b77e arp_tbl -EXPORT_SYMBOL vmlinux 0xd39206d4 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xd3a1a316 udp_seq_start -EXPORT_SYMBOL vmlinux 0xd3bbe51c __xa_alloc -EXPORT_SYMBOL vmlinux 0xd3cae57d truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd3de33ed rps_needed -EXPORT_SYMBOL vmlinux 0xd3e1dba1 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xd3e4b481 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3ed205f blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xd3fb68af vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41566c2 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xd4288424 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xd42aeae1 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd44f40c0 param_get_short -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd48d3893 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xd48d7ca5 pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4a335af kmem_cache_free -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d642cf pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find -EXPORT_SYMBOL vmlinux 0xd4def7da vc_cons -EXPORT_SYMBOL vmlinux 0xd4eafef1 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xd4f93d81 mr_table_dump -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4faeb26 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xd50a436b skb_seq_read -EXPORT_SYMBOL vmlinux 0xd51af655 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xd5229c6d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd539cabc dst_dev_put -EXPORT_SYMBOL vmlinux 0xd53ea0f4 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xd548dc6a inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd5613755 file_update_time -EXPORT_SYMBOL vmlinux 0xd59381a3 __phy_resume -EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xd5b29dc8 tty_throttle -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map -EXPORT_SYMBOL vmlinux 0xd5c45fbb nf_log_register -EXPORT_SYMBOL vmlinux 0xd5d0edc6 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xd5d772ba ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xd5f05fcc key_validate -EXPORT_SYMBOL vmlinux 0xd5fb3f1f vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd6127036 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xd623a5c4 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd65793a6 dump_page -EXPORT_SYMBOL vmlinux 0xd65ad1af dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xd661c79a has_capability -EXPORT_SYMBOL vmlinux 0xd66a5871 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xd67d2118 register_qdisc -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd68f9fdd pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6ce39d4 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f829ce free_task -EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7003f0f vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70df35a __serio_register_driver -EXPORT_SYMBOL vmlinux 0xd7232ddc single_open_size -EXPORT_SYMBOL vmlinux 0xd72867c7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd747cd3f fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xd75bf014 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xd75dc5f6 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd7c0a0ce tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xd7c360c2 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0xd7c6f611 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xd7cd3267 ip_options_compile -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7df011c radix__flush_tlb_mm -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e7bc86 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xd8090649 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xd80dbbe8 backlight_force_update -EXPORT_SYMBOL vmlinux 0xd80fb312 __scsi_execute -EXPORT_SYMBOL vmlinux 0xd8176e5f scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xd81914c4 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd8398ed8 pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd85849f7 fqdir_exit -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd863ec63 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xd874ce0b get_cached_acl -EXPORT_SYMBOL vmlinux 0xd87b5c32 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xd88c1c1b lock_page_memcg -EXPORT_SYMBOL vmlinux 0xd894f594 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a79294 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8e0925d build_skb -EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xd92e0176 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd9529de0 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xd9531727 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd96058ed pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xd96298a6 set_binfmt -EXPORT_SYMBOL vmlinux 0xd9774474 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xd982c886 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98fbfc4 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd9a446f2 decrementer_clockevent -EXPORT_SYMBOL vmlinux 0xd9a4e851 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xd9b5eb2b __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xd9b92391 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9cf5d48 param_set_int -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9ee3ffb dev_remove_offload -EXPORT_SYMBOL vmlinux 0xda01eb8f mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xda07662e pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xda0e69e1 bdi_put -EXPORT_SYMBOL vmlinux 0xda3bcae0 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda9248fc fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xda98575c tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xdac1ba23 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell -EXPORT_SYMBOL vmlinux 0xdb15328d pci_reenable_device -EXPORT_SYMBOL vmlinux 0xdb199a5f would_dump -EXPORT_SYMBOL vmlinux 0xdb23d73a pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xdb31f364 compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0xdb4c36a4 cont_write_begin -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb89d5da __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xdbaad875 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xdbad9571 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xdbbeaf19 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xdbcd4022 netdev_features_change -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbeed73f blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc204bfb proc_set_size -EXPORT_SYMBOL vmlinux 0xdc32a0bf kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xdc32f9c9 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc497377 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4c0a78 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xdc4f8892 phy_loopback -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5a238c inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xdc7603db netpoll_setup -EXPORT_SYMBOL vmlinux 0xdc908b30 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdcb5de5a wireless_spy_update -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdd1179f3 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xdd16b14e inet_register_protosw -EXPORT_SYMBOL vmlinux 0xdd245094 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xdd293cba scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd46ab58 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xdd4ce2eb security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xdd62a6b6 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8ff793 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer -EXPORT_SYMBOL vmlinux 0xdd91aef8 skb_copy -EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc4215d mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xddd13952 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xdddd1123 vfs_rename -EXPORT_SYMBOL vmlinux 0xddea5e40 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xde048870 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xde084679 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xde219c2d security_path_rename -EXPORT_SYMBOL vmlinux 0xde2a915f phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xde400da7 fsync_bdev -EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde6cd926 devm_ioremap -EXPORT_SYMBOL vmlinux 0xde7923db mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdec2d813 padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xdec34ed5 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf006efa of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xdf09de27 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xdf0c4fc7 key_alloc -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf35ccd0 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf590135 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xdf5e9596 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xdf5fc7eb __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xdf91ee34 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9a7841 input_unregister_device -EXPORT_SYMBOL vmlinux 0xdf9bba01 flush_signals -EXPORT_SYMBOL vmlinux 0xdfad7c4b napi_disable -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdd3188 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xdfddcfc3 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00bf4b2 __sock_create -EXPORT_SYMBOL vmlinux 0xe0123884 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xe014b8b2 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xe03c1dec max8925_reg_read -EXPORT_SYMBOL vmlinux 0xe054c571 send_sig -EXPORT_SYMBOL vmlinux 0xe0572364 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xe072db5c t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xe07d9e42 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe09f1a48 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xe0aad70d simple_transaction_set -EXPORT_SYMBOL vmlinux 0xe0ab3249 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b3bd35 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0xe0c78369 may_umount_tree -EXPORT_SYMBOL vmlinux 0xe0ebe2af inc_nlink -EXPORT_SYMBOL vmlinux 0xe0fc0baa eeh_dev_release -EXPORT_SYMBOL vmlinux 0xe10d2377 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xe117a4ae inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xe13f4a5d alloc_pages_vma -EXPORT_SYMBOL vmlinux 0xe141ba83 radix__flush_tlb_pwc -EXPORT_SYMBOL vmlinux 0xe14331c9 mdiobus_write -EXPORT_SYMBOL vmlinux 0xe147d479 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xe15df549 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe1681a0d netdev_printk -EXPORT_SYMBOL vmlinux 0xe16d10bd dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xe18207b3 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xe18be81d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xe19fd09f sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xe1a4d8aa __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1b59ae9 __debugger -EXPORT_SYMBOL vmlinux 0xe1bbd4da dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1df00cd wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1f187fd flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xe2053c5d abort_creds -EXPORT_SYMBOL vmlinux 0xe21466af __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22434b8 netif_napi_del -EXPORT_SYMBOL vmlinux 0xe22629ca devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xe22b4a7e module_layout -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe2317a98 __frontswap_test -EXPORT_SYMBOL vmlinux 0xe2426fb8 __d_drop -EXPORT_SYMBOL vmlinux 0xe249021a of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xe249e34f ps2_begin_command -EXPORT_SYMBOL vmlinux 0xe256343c blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xe288def2 unregister_nls -EXPORT_SYMBOL vmlinux 0xe2927c13 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xe292a856 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe29c00ce _dev_alert -EXPORT_SYMBOL vmlinux 0xe2b3f806 phy_aneg_done -EXPORT_SYMBOL vmlinux 0xe2b736e4 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xe2b943ce alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe30bfb2f iget_failed -EXPORT_SYMBOL vmlinux 0xe319ffc4 of_node_get -EXPORT_SYMBOL vmlinux 0xe322aa7f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xe324dfe3 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe331b1fe filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe331b695 iget5_locked -EXPORT_SYMBOL vmlinux 0xe34a6667 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xe3639dcd mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xe36a0670 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xe39ab5f1 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xe39ffbf3 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xe3a0ca9e cfb_copyarea -EXPORT_SYMBOL vmlinux 0xe3a2ec9f devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe3a53f4c sort -EXPORT_SYMBOL vmlinux 0xe3c463b4 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xe3d3c07c input_reset_device -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3db9209 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xe3e966bc jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xe3f57131 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xe3f9c56b agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xe3fa1088 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4089f7b config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xe418ba44 cpufreq_global_kobject -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe42f9f61 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe4416af9 bio_put -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe46635fe dm_register_target -EXPORT_SYMBOL vmlinux 0xe46b0eb6 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xe46d1625 dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 -EXPORT_SYMBOL vmlinux 0xe489203f udp_sendmsg -EXPORT_SYMBOL vmlinux 0xe48c0e80 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe4ae3faa sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe4f2a761 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe5065c68 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xe50c882d twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe53a34f8 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe594ac9d pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xe5972ea9 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe5a30ac6 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe5ac75ee find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free -EXPORT_SYMBOL vmlinux 0xe5c3cc4f pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cda961 scsi_print_command -EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xe5da42a2 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xe5de8695 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xe5ef2c6b dma_virt_ops -EXPORT_SYMBOL vmlinux 0xe5f2d6a0 f_setown -EXPORT_SYMBOL vmlinux 0xe60744dc get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe6086e30 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xe60b47bd fasync_helper -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61f5b95 giveup_all -EXPORT_SYMBOL vmlinux 0xe62c9cb4 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xe633d509 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xe63abf02 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xe63e25df dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xe640a22f sk_reset_timer -EXPORT_SYMBOL vmlinux 0xe64329f4 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xe64a350f fb_find_mode -EXPORT_SYMBOL vmlinux 0xe672a487 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xe67ba630 tty_kref_put -EXPORT_SYMBOL vmlinux 0xe6861ca9 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe68d1489 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe69942db mount_bdev -EXPORT_SYMBOL vmlinux 0xe6a583ea pci_fixup_device -EXPORT_SYMBOL vmlinux 0xe6b6c9fa vga_get -EXPORT_SYMBOL vmlinux 0xe6d8cd3d gro_cells_init -EXPORT_SYMBOL vmlinux 0xe6d90511 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xe6da6999 generic_writepages -EXPORT_SYMBOL vmlinux 0xe6e010a1 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xe6e52b39 dma_dummy_ops -EXPORT_SYMBOL vmlinux 0xe6e52f84 phy_attach -EXPORT_SYMBOL vmlinux 0xe6e8f458 tcf_classify -EXPORT_SYMBOL vmlinux 0xe70771d5 d_tmpfile -EXPORT_SYMBOL vmlinux 0xe7084205 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xe71c5058 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0xe72a5b67 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73a6904 page_readlink -EXPORT_SYMBOL vmlinux 0xe746b53b dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xe74c3f7c radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xe76fbbd5 simple_release_fs -EXPORT_SYMBOL vmlinux 0xe7751a2d __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe793d246 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xe796a52c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xe7caf7f0 neigh_for_each -EXPORT_SYMBOL vmlinux 0xe7cbbe60 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7fb2943 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xe7fc71ac generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0xe8036943 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe80850d9 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xe813f1b7 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xe8180114 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xe819ec4f con_copy_unimap -EXPORT_SYMBOL vmlinux 0xe82604e4 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe83359a5 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xe854098a ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xe8635205 tty_port_close -EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xe87be240 skb_unlink -EXPORT_SYMBOL vmlinux 0xe8847d3b vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xe888ca7c config_item_put -EXPORT_SYMBOL vmlinux 0xe8b13236 abx500_event_registers_startup_state_get -EXPORT_SYMBOL vmlinux 0xe8d0cec7 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xe8f97fbe vm_mmap -EXPORT_SYMBOL vmlinux 0xe9051ac0 tty_vhangup -EXPORT_SYMBOL vmlinux 0xe907b439 simple_getattr -EXPORT_SYMBOL vmlinux 0xe9082476 bdput -EXPORT_SYMBOL vmlinux 0xe9138f25 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe926db4f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xe942196f param_set_long -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe975606a inet6_release -EXPORT_SYMBOL vmlinux 0xe9883b56 vmap -EXPORT_SYMBOL vmlinux 0xe98b9e3a uart_add_one_port -EXPORT_SYMBOL vmlinux 0xe9907163 pskb_extract -EXPORT_SYMBOL vmlinux 0xe9b1fc37 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xe9bc2e56 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xe9d65d15 netdev_crit -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fb2cc3 inet_add_offload -EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xea0eee84 i2c_use_client -EXPORT_SYMBOL vmlinux 0xea1b98d0 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xea1e9bde crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xea318228 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xeaad24bf scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xeae88236 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb278f4f flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xeb343c9c ata_print_version -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb707842 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count -EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift -EXPORT_SYMBOL vmlinux 0xeb9a8d58 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xeba376f4 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xebb5fee6 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xebc4f9cd __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xebd29ae0 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xebf7d875 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xec003410 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xec10b37a kfree_skb_list -EXPORT_SYMBOL vmlinux 0xec177045 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xec2f2237 from_kprojid -EXPORT_SYMBOL vmlinux 0xec313077 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xec39f9cf key_put -EXPORT_SYMBOL vmlinux 0xec4cdbdc ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xec4e19e2 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xec634d7d km_policy_expired -EXPORT_SYMBOL vmlinux 0xec954d19 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start -EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecd1ad91 vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xed116211 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xed3b55b7 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xed420fba __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xed44e148 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xed47ba4f mfd_add_devices -EXPORT_SYMBOL vmlinux 0xed5f61d2 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xed5f849f ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xed5faee6 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed6ff3e8 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xed89983d get_tree_bdev -EXPORT_SYMBOL vmlinux 0xed94b3e8 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xed9522fa inode_needs_sync -EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock -EXPORT_SYMBOL vmlinux 0xedb761e9 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc66029 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xedecf70f inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xedf40ed0 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xedf86732 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xee02f958 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xee096d9b mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xee0fee97 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xee173130 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee478112 rio_query_mport -EXPORT_SYMBOL vmlinux 0xee514e1f pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee8aad23 netdev_err -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9b6e0e vfs_whiteout -EXPORT_SYMBOL vmlinux 0xeea02a28 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xeeb2ef1c inet6_del_offload -EXPORT_SYMBOL vmlinux 0xeeb3d116 hmm_range_dma_map -EXPORT_SYMBOL vmlinux 0xeeb732f1 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xeec02a27 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xeed280ea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size -EXPORT_SYMBOL vmlinux 0xeed898b6 ilookup -EXPORT_SYMBOL vmlinux 0xeed9c3ef proc_create_single_data -EXPORT_SYMBOL vmlinux 0xeef8eb39 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xeefe41aa dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xeeffa34b xps_needed -EXPORT_SYMBOL vmlinux 0xef20ecae drop_super -EXPORT_SYMBOL vmlinux 0xef27a551 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xef4116b8 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xef4a9fcd __quota_error -EXPORT_SYMBOL vmlinux 0xef511e33 follow_up -EXPORT_SYMBOL vmlinux 0xef6590c4 read_dev_sector -EXPORT_SYMBOL vmlinux 0xef910409 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefafff4c scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xefbf3857 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xefd61277 rproc_del -EXPORT_SYMBOL vmlinux 0xefdf8427 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xefebd141 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xefec559a pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf0102983 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xf0141392 eth_header_parse -EXPORT_SYMBOL vmlinux 0xf020bb0c unix_get_socket -EXPORT_SYMBOL vmlinux 0xf024dd06 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf02eb938 phy_disconnect -EXPORT_SYMBOL vmlinux 0xf031704a put_cmsg -EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock -EXPORT_SYMBOL vmlinux 0xf034b6e9 dma_direct_map_page -EXPORT_SYMBOL vmlinux 0xf0459a27 security_task_getsecid -EXPORT_SYMBOL vmlinux 0xf046f336 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xf04b8ead blk_put_queue -EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a04b52 d_instantiate -EXPORT_SYMBOL vmlinux 0xf0d10781 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xf0d33e82 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xf0eab2f9 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember -EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 -EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible -EXPORT_SYMBOL vmlinux 0xf11e0ef9 __vmalloc -EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked -EXPORT_SYMBOL vmlinux 0xf147fdbb dquot_drop -EXPORT_SYMBOL vmlinux 0xf15a7d03 skb_copy_header -EXPORT_SYMBOL vmlinux 0xf173b731 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xf174949b scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a3e062 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xf1a41223 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xf1a7d6af ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xf1b6d5d9 init_task -EXPORT_SYMBOL vmlinux 0xf1bf136d mpage_writepages -EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1de48d3 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e1c09c vio_register_device_node -EXPORT_SYMBOL vmlinux 0xf1e63929 devmap_managed_key -EXPORT_SYMBOL vmlinux 0xf1e8de9a kernel_getsockname -EXPORT_SYMBOL vmlinux 0xf1e91b72 clear_inode -EXPORT_SYMBOL vmlinux 0xf1e96cf3 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2062ac4 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xf21e21a2 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf226badd icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xf227e7da __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xf22cff57 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xf230cf1c sync_file_create -EXPORT_SYMBOL vmlinux 0xf2333b3d __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xf23b955c neigh_xmit -EXPORT_SYMBOL vmlinux 0xf23c860a register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf241becf nd_device_notify -EXPORT_SYMBOL vmlinux 0xf249c0bf input_grab_device -EXPORT_SYMBOL vmlinux 0xf260f825 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xf272b6ee blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xf2805b20 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xf2829ad2 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf29d757a ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2aadf67 sock_release -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cecf3c dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xf2cff5e0 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xf2e0c418 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f23c8d pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0xf2ff5bfa gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xf3091713 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf3147fdb of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xf32a0196 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xf339b1e3 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xf345c5ef xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3599d26 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf36a606b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xf375854f vfs_get_super -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b9c477 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0xf3bdce14 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xf3c11407 block_truncate_page -EXPORT_SYMBOL vmlinux 0xf3cdcf72 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xf3d90c67 hmm_range_register -EXPORT_SYMBOL vmlinux 0xf3dce803 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf40c2ba2 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring -EXPORT_SYMBOL vmlinux 0xf4418baa elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep -EXPORT_SYMBOL vmlinux 0xf4467fe0 pid_task -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf469d265 is_bad_inode -EXPORT_SYMBOL vmlinux 0xf46f0f44 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d86ae9 powerpc_debugfs_root -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4fa2649 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf51ef980 param_array_ops -EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave -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 0xf54e753b netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a59897 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5a7fc11 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf5b5981c generic_block_bmap -EXPORT_SYMBOL vmlinux 0xf5c4b444 memcpy_flushcache -EXPORT_SYMBOL vmlinux 0xf5d3db5a __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xf5d4ffea neigh_seq_start -EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister -EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xf615e59e vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0xf6174cb5 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xf62d8d4d ip_defrag -EXPORT_SYMBOL vmlinux 0xf633c17b xfrm_state_free -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf644f418 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xf664db45 register_key_type -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf695756e tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xf69b92ff tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xf6a97b90 get_super_thawed -EXPORT_SYMBOL vmlinux 0xf6bd3bd1 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7022df9 dev_addr_init -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75a6487 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xf75ac290 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xf7638209 inet6_protos -EXPORT_SYMBOL vmlinux 0xf76f3d85 device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77b1263 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xf7863720 is_nd_btt -EXPORT_SYMBOL vmlinux 0xf78ba3ab ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf7965727 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xf7b097b9 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xf7b0a144 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0xf7b496b4 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xf7b6d2ef devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf7ecbb32 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xf7f68e15 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xf7ff203b devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf816f2cf tso_build_hdr -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83741b8 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf8405901 of_get_pci_address -EXPORT_SYMBOL vmlinux 0xf8432d8c mdio_device_reset -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf87e1da4 sk_free -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c0108d tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xf8ca7701 dev_deactivate -EXPORT_SYMBOL vmlinux 0xf8cd1f1e tty_set_operations -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d73805 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns -EXPORT_SYMBOL vmlinux 0xf8e44abc md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf909846e of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf91b3439 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xf92bd8c2 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf953c8c2 vme_master_request -EXPORT_SYMBOL vmlinux 0xf96ec242 rfs_needed -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9735ba9 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xf9987069 import_single_range -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a755f2 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf9b83ba6 check_disk_change -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c2043a bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xf9c5d67e nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xf9c61431 of_read_drc_info_cell -EXPORT_SYMBOL vmlinux 0xf9ef56e3 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xfa058e28 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xfa10aa39 tso_count_descs -EXPORT_SYMBOL vmlinux 0xfa31e581 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa49de27 tcp_check_req -EXPORT_SYMBOL vmlinux 0xfa596a28 devm_memunmap -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa85526f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa9125e4 pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xfaa454ea dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xfaaf0fbb __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xfab09574 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xfab67519 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0xfab8e880 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae291e8 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfae8d40f of_platform_device_create -EXPORT_SYMBOL vmlinux 0xfaf5c8e4 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xfb00010c file_path -EXPORT_SYMBOL vmlinux 0xfb166ed0 param_set_bool -EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xfb2fa026 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb4c9462 inode_init_always -EXPORT_SYMBOL vmlinux 0xfb579238 bd_start_claiming -EXPORT_SYMBOL vmlinux 0xfb64d3e0 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb8013d6 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xfb812183 sock_init_data -EXPORT_SYMBOL vmlinux 0xfb833cd0 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xfb888eaf no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xfb8d873a init_on_free -EXPORT_SYMBOL vmlinux 0xfb9048f0 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xfb998d34 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xfba3464e input_close_device -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 0xfbbd3bb7 posix_lock_file -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbfb2ae4 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xfc24f4ed ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4b97e3 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xfc6ca926 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xfc75ea43 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xfcb0d208 __breadahead -EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0xfcc7babd rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd8e514 register_quota_format -EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd175d14 param_set_ullong -EXPORT_SYMBOL vmlinux 0xfd202cb5 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xfd228a95 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xfd35d886 ipv4_specific -EXPORT_SYMBOL vmlinux 0xfd374c8c dev_add_offload -EXPORT_SYMBOL vmlinux 0xfd3831bd mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xfd3de6ec tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xfd5a3463 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd7efe17 ns_capable -EXPORT_SYMBOL vmlinux 0xfd855121 vga_con -EXPORT_SYMBOL vmlinux 0xfd9132da dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xfd919002 dev_get_valid_name -EXPORT_SYMBOL vmlinux 0xfd919046 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be -EXPORT_SYMBOL vmlinux 0xfdcbc15c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcdd183 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up -EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf648d7 noop_qdisc -EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial -EXPORT_SYMBOL vmlinux 0xfdff71c1 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe03d45b md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe25fdb0 dst_destroy -EXPORT_SYMBOL vmlinux 0xfe2a4380 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xfe35ebad simple_transaction_release -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe780981 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xfe806921 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfea9ba36 unregister_console -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb9e5c4 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xfec78640 kernel_accept -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee3097f udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xfee70eea tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef651b6 pci_release_regions -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff09fd52 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff33393f inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xff4158de tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xff541812 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xff5af670 override_creds -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff723240 inet_frag_find -EXPORT_SYMBOL vmlinux 0xff8bd3b0 cur_cpu_spec -EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0xff9048fc agp_find_bridge -EXPORT_SYMBOL vmlinux 0xffa6c0c8 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xffb915f6 param_ops_bool -EXPORT_SYMBOL vmlinux 0xffc709ec udp6_csum_init -EXPORT_SYMBOL vmlinux 0xffd16938 skb_dump -EXPORT_SYMBOL vmlinux 0xffdf1210 fget_raw -EXPORT_SYMBOL vmlinux 0xffe690fd udp_table -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0009f021 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06e541c8 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07f51344 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x098228a6 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d35d4cc gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0de2a456 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x171ccd75 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d140bcc kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x216ea71f kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x223cd5cc kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x25bc745d kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x266e94ca kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26df1b77 mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2a503301 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x301b4ac4 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x316e27fc __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x326ef176 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x34d82d5c kvm_put_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x36a9c302 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38b48982 kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3923bfd3 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3c1d4f34 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e6a5dc4 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3eafac0a kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x43d708a7 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x48b00c8e kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4fc7aa23 kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50163cce kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5327d12f kvmppc_xics_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x548f920d gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x643fe043 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68f9883c gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d425c19 kvm_clear_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d89d2ed kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e0d531c kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e3bef37 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6f6773a2 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7103b4d0 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72d65af1 kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x78759239 vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x796f7f46 kvmppc_h_stuff_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa1a467 kvmppc_h_logical_ci_load -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 0x81b36403 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x833be237 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x889717cf kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x894a1c4d kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8eab3b60 kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8f5a05b6 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90262569 kvm_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90644775 kvm_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x93df505b kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x95038641 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9566c44c kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x964882f2 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97dd29fd gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9a8aec09 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9aa29582 kvm_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9bb25793 kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9beb47c7 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e1495d8 kvmppc_core_queue_inst_storage -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9fef56c9 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa430d8a3 kvmppc_xive_push_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaa4535b4 kvm_map_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab8541d8 kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xabbfe989 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad00a648 kvmppc_unfixup_split_real -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad65830d __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2d34e91 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb5e872d3 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf8dc828 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc3803d8d kvm_vcpu_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc5c271c4 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7ad073c kvmppc_h_put_tce_indirect -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca9a8ae0 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc4fc899 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd92a615 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcf9a2bcc kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd4a92099 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd55a046c kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6f5e9eb gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd33039c kvmppc_core_queue_data_storage -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd44d2c9 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe19a0acd kvmppc_xive_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6e15af7 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeb2133b4 kvmppc_xive_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xee238247 kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeea9fbe2 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf0d5ea26 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf0db07f4 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf2f9c3a2 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf30cacf6 kvmppc_core_queue_machine_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf581f68a __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf6832f6c kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8022885 kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfd34446e kvmppc_xics_rm_complete -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe7486c4 kvmppc_xics_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff2f9f84 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0x0c920d39 kvmhv_copy_to_guest_radix -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0x7590b949 kvmhv_copy_from_guest_radix -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0xf8aeb0ea __kvmhv_copy_tofrom_guest_radix -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xb9fd4c84 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x21226acf af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x34a647d4 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x3fb5c2fc af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x6efbcdb7 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x75d92f8d af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x77a4861c af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x83608a32 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x888bfdf4 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x899b7c74 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x959e587b af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x96d1cbc7 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa1c59ce3 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xb026c509 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xb4f226cb af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbd23a257 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xc34bd994 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd4adbb29 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xeeda833e af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x17e35725 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x609c39a3 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x21124e4e async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf53f7bbc async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x64c079d8 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf9feb7d6 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x49071dfc async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4df383b8 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa806560f async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd5ad53cf async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1fb02443 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8980f4a4 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7714a772 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x8783c397 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xffd675d1 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/chacha_generic 0x53db61bf crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x770ede7e crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x81099e9e crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x95ea3866 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x05c25723 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x0b0a7f78 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x290768ad cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x3cf1217c cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x8765532a cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xa9c4d43a cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb0e005d3 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb31a9731 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xb498bdce cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xb88fe2a6 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xcd0d11da cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xdcf11a8d cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xee72a0c0 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x06bbdaea crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0af0cb9e crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ed5ff31 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x121ff2ee crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x23a47958 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x38d0d3db crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ec2d7e5 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5b2eee71 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6411c560 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7916bda1 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa690cdc4 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaccb9140 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc7967997 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe2a27996 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0ece0897 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa8cb91e9 crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcdfdd335 crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4efb1da5 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x5f2ec5c8 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x68b29d58 crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x84068d7f crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0x685c55bd twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b1b240e ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0dd424e1 ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0e516096 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14568531 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14f28948 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25f25ec9 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38bc0ac3 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3b4c079b ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c747046 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4db554ae ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5acd7e0e ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6114009e ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6561edbd ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x783f2e32 ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8de67423 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x98631775 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9e92d812 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaecbc45b ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7bf1c96 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcc49d7d9 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9844d48 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe4d469a9 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xedb46c7a ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0dd5ed4 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x393bcd49 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4636c7e4 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x46514620 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4a4db98e ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6bef4b41 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f353327 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x92ed1dee ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb25ef2eb ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9fa0f71 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbbb162c1 ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbf34914b ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcd55751d ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1ad0074 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe5b6491e ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf57b2c54 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf777f4bb ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4f6e4e50 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x36c87025 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page -EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xe5737f42 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9633f8fa __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xb0679570 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xabd08dae __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf284b124 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6151a457 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb8853f1b __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe6d646f3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xecd1422f __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1ddbf8ac __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd12371e0 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09d8a44f bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e60f996 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x32d12e36 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c705a34 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3cf091f4 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e6c9cdc bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49c8f467 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ce79b04 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e0c8b0b bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fc2bd64 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6326c191 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67c80240 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7af053bd bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xadb5646a bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb724ce86 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbae5984c bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca3e8123 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6762e09 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd932eb71 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd418bc1 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeeb93ea8 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef19c20e bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef9374ae __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8aecad1 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0c005cac btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x23327172 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27c04a72 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3c29375e btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x80e75e91 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa3f02ac2 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c525fed btintel_secure_send -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24dae252 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24ef203e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2619a6cc btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2f418194 btintel_hw_error -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f4578ad btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x583e8155 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d1d8d94 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7607e04f btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7f898937 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8cf383a4 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9cbb058d btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa15cf126 btintel_set_diag_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc6a7204c btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcdf1f442 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd85e004d btintel_set_event_mask -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdeb734c3 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x190d0a20 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x238188f8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x55ace77e btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x58d16792 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x67616a23 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c5c355d btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79276978 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x941135d0 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa3f498a2 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb06d5805 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc31d2db2 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5e9aa96e qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x646cf726 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x66b7453d qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x78db622d qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe9b833db qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x15ef1323 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x518866bf btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x786d4692 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8964d9ac btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x93f70a86 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4e0e8b24 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x91397b8f hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc4ea6954 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe7967e3c hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2b1bf2d5 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x39b23d8d moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x3c1b3022 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x8232e720 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc9a64837 moxtet_bus_type -EXPORT_SYMBOL_GPL drivers/counter/counter 0x00d5eafb devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x010ef957 counter_device_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get -EXPORT_SYMBOL_GPL drivers/counter/counter 0x2dd5021b counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x34052110 counter_count_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0x403cad21 counter_count_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5272d40d counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5713af4c counter_signal_enum_available_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0x696b58c5 counter_signal_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0x900fbb2d devm_counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x9058352a counter_count_enum_write -EXPORT_SYMBOL_GPL drivers/counter/counter 0xa33a14f0 counter_device_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xca02d511 counter_signal_enum_read -EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str -EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set -EXPORT_SYMBOL_GPL drivers/counter/counter 0xfba07d3b counter_device_enum_write -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x3fd1bf83 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x58f38b6c nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9c14d858 nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xe04c2ea9 nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x37067522 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xb03554c5 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4d923b91 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xf0fba0fe dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x14dc0b66 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x357a53a0 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4fa955e3 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6321b5a9 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa7488bf2 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb5270ce2 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf98851f5 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x00068e33 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x01345409 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x030d052c fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4dc9b11c fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x57b5ae69 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x787c52d4 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x82b5a932 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x86002ba9 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8a64d968 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc26c98b3 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xce88b4e8 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd0f3e4e4 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd71dbe68 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xef64216d fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf8159783 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfa8c4faa fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6af8164e hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8ccd2225 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x442cc6aa vchan_tx_desc_free -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5299ccaa vchan_find_desc -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x678b7552 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x6a346cf5 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8dc117a1 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x4803c1ed alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd7e0cc08 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0050b5c2 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1dffc377 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2132237c __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x224bee22 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3fbb4518 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4dcb4247 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f9dcab2 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5f9c52c1 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x738a7150 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7c6c6abf dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ba0b6cb dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x971eda05 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc254470e dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc3fca7ad dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc44b41dc dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4b00ae3 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdabe7ff8 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef870e2d dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfef89c08 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2cf2d0e5 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b1bc6e9 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x535f47fd of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x57f3a488 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6132fc10 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6352ad75 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7453417d fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x82cca3bc fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8a05ad5f fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb2c8cfe5 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc1db102b devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd7b0f7d0 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x163e768a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2f1e4c60 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d09afaa fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x45ab4e54 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x60840179 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x859a47a2 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc6fdaceb fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xca2c43a9 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xccc493b9 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdc46cd6c fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdebd2365 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf86494d1 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfa3b44d0 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2751b05a devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x29078d91 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x36d8a9e3 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3f54206f fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x83ba115b fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xae4c67ce fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdf16ff0b fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2d6db427 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 0x77ab07c4 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa149e8b5 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa45643d9 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaca621f8 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba8699f9 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 0xe84920b0 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xeb6d3917 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xecefd171 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf3e2bef1 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x8348a11c fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6c45499a sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xb4c00f90 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x98809011 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9913c9aa gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xaeb553ac gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb83eb6c1 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfaab6e49 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0ac783c1 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x33026ec0 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x39fded4a gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4b441b93 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf5a13994 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x23958d17 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xaa180baf __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x224f295c dw_hdmi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x77c5d308 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 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x11dddfab drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16a9c52d drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1bca557d drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b67e115 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e00eb5b drm_gem_shmem_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3476e809 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x398312cf drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4396eae0 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47cce2e8 drm_gem_cma_prime_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50b4fa3e drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53e20593 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x551cc413 drm_gem_cma_prime_vunmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69b9541c of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6fc0bfcd drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7094a512 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79fd50c9 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b0339df drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9ed95f46 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa6070c0b drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa92c4703 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb11d953e drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb93110c1 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca47fb72 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcbc7c0f0 drm_gem_cma_prime_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd631db4 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd3e9f298 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1274bd4 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf3019bc6 drm_gem_cma_prime_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf79580d5 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x114358f9 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x123c1934 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6bb2d9f2 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x97883095 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x98242e56 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcada599b drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdb82a636 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x7a161e78 ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x96172ebe ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd4b49e65 ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05f5bb53 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f13fb07 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f6a9e25 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15fa2f04 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x177dc74b gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x186222b4 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19d8e97f gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d52c402 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26f38c99 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27dc7dbb gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2cacb875 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3639ef29 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ab97b14 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e0746ea gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4247b7ad gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4466ea39 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44d69660 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x469e8a3a gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e09da2d gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ca53315 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5da94b92 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5dbda05c gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bf4ca10 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f9b94f4 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84a88675 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8531da1d __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91d541d9 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x994bfd6e gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x99b20f22 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0768345 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0fbbffe gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2b41cad gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa53fdd98 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xad145b9b gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc736102 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe408dc4 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcfc6f277 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd28d6db4 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4816f31 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1c35a58 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe71117a1 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeecf5073 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef747404 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/hid/hid 0x019871cc hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x03376d27 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x070c8575 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09072641 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x090d084e __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ceaff31 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1282dde1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1634a80c hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19b588b6 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e2661bf hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d0bb7a2 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cc6701f hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x40d46f85 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x41a361be hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4309d570 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x448888d7 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x493e11f2 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f717b19 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x501738a7 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e1d3f6e hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f5cb726 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61c417e3 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6820bb4e hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75f86d90 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ea7d399 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8351402c hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b99cd82 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x94e13047 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x953ed962 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x973d4397 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9894b944 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2eae2f2 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb58022c0 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb87aecd7 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd489ba9f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd61c633b hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd857ce77 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdba75dae hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf98a71c hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0de8fee hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2cd4c7a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3bef31a hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeae3146f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xec7ce11b 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 0x92b0a9f2 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x26e297bd roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x47c49443 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8535df90 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc6e9dd36 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc949238c roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf90da6f5 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0128cc1a sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0c311d8e sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7152bf22 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x724955d0 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8bc354fa sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x92c7485b sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x97c33460 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3a31d0a sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe61bc19a sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9cb5e005 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x4c32aef7 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x97a53e92 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfaea5d37 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3132ec37 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5bfc3023 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c7221d9 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66d96d7c hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d28fd76 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8897e285 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f8c0583 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94c0b830 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x975c6808 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c5372ef hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d2ad118 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa464efd3 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc931aeae hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd393009 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd1903048 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe0ddeb82 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe28d1c02 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xecc97627 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0b0a84e2 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x35f1b755 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfbb31307 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0636ea54 pmbus_set_page -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x08cb7b46 pmbus_update_fan -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0bc8581a pmbus_do_remove -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d7b2030 pmbus_write_byte -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x12385a6e pmbus_read_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x28a920c2 pmbus_clear_cache -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3b2b2e68 pmbus_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4801a52c pmbus_get_driver_info -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4942f980 pmbus_regulator_ops -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x55de15a1 pmbus_check_byte_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e854b4d pmbus_check_word_register -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9063cfd9 pmbus_get_fan_rate_device -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x92f4955a pmbus_write_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9f920d68 pmbus_clear_faults -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa14a4fee pmbus_do_probe -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc58384eb pmbus_read_word_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd04e2d0a pmbus_get_fan_rate_cached -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xee02be29 pmbus_update_byte_data -EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfe3cc7b3 pmbus_write_word_data -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x02ba0c8f intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x35a29754 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x558b24c4 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x64129d39 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x716c8773 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa27b8bb7 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb3d77528 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf58097a intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd366b550 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x317c59c3 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x32905079 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd1342d16 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x07dccb54 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x153f211d stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x27c5fd16 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3093a152 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5e06083c to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x64e919c6 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa4808504 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbac5620d stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcd0f2329 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1c5057ca i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x849efaa7 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbda6f132 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbe625a81 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc40635d2 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x05961c17 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1853484a i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27b5bec4 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bd065ca i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bdb3e1b i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e21f517 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e3ce5f4 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x42349fb1 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b9d20ae i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7cf4a786 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8143f854 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87463060 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8e779234 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x953d9840 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9d49534a i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa13ec1ff i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa33e8bb9 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9f10360 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc487e302 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xccf76271 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdc8882d3 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe95f88f5 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec8f4ca6 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf247ff9f i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8192547 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x25cbb761 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xb5b99e0b adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x00b58913 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x015da355 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3fcc06fd bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5b325686 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xd894dbe2 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xe40b6895 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xe5e8571e mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x051d3da8 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x7af89ff2 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0bb7ab27 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2a43efea ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4063f3d8 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x543ae079 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5da506b7 ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8913a6b6 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa7885ff0 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc30d8704 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd992a283 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfb189067 ad_sd_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x46c2c2a4 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x780fa06d 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 0x7c2e6c2a 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-hw-consumer 0x2f058897 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 0x54262dcc 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 0xf6a22101 devm_iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x8862c782 devm_iio_triggered_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xb80dcb07 devm_iio_triggered_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xc0a14fcc bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xe9ce543b ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xea558e0a ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x29b979ca ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xed174c9b ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x52dea7a8 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x95ad54d9 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa92b9050 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x542f9b88 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xbc07bffe fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xce502bd0 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x08d9082d adis_initial_startup -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0befb8e0 adis_init -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x29af6026 adis_update_scan_mode -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4f35441e adis_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x61983ec3 adis_remove_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x701f3e96 adis_reset -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x735df3af adis_check_status -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x749f41be adis_probe_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7eabbd2a adis_cleanup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83f33c32 adis_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb5c635f1 adis_write_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9f893b7 adis_read_reg -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x3bd391df bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x3183b36c inv_mpu6050_set_power_itg -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x58ccaca7 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xc676a174 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06f85f43 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dfb107e iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x124411e9 devm_iio_trigger_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18e99405 iio_buffer_set_attrs -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18fd91ec iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a0b0ed6 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e07c9ae iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x215791ea iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x21818599 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2267deec devm_iio_device_match -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23eeb282 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29717a47 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cca9efb devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e060f5e iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f44d875 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x398f25e4 devm_iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3dfa7059 devm_iio_device_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4af9c39e iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a08eb3a iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x666e2634 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x751130c2 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77ae2a97 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77e18187 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77f5f8be iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78f37d4d iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79668a90 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8579a90d iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c7bd97a iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cd4d5e8 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9563ee05 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a09f043 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0827eaf iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0e4c1f8 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa10e3026 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac2bd2b7 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaea407bc iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb292bd30 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6baee1e iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb902cc90 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6bd6e7b devm_iio_trigger_free -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb4367b2 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb71e775 devm_iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1af3420 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdebe797a iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe134a0e9 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe830d11e iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8f92536 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2337250 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf41507ce devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf84e7839 devm_iio_device_free -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x56492457 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xe1b39c7c mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0d00a1b0 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1ca0028b zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4b2a35e0 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5112126e zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x94ca3d25 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd2548ae7 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5a32df75 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x1cbc7eca matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xf6149582 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x10c08fd1 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1cf3691d rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x477f47a9 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x50c73df8 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5126cf5e rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x65f51ddc rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x692d9f64 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6dcff3f5 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8f0b7a51 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc0d7b460 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc76a0274 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe01ee2e2 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe472144a rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0a2f3644 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9da94be5 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcc908bf6 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8f236163 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9a957ad9 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x171e7273 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf5b53a90 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x292d9168 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa0713b83 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbf1877d1 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe9525d22 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x20c2c1e4 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4eae881f wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61118e85 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x65bf7e99 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x79dbd0e4 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x82048881 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8685737e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c057090 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9fba95db wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdedd6fa5 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed4b7434 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5e3d321 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2938de1f of_icc_xlate_onecell -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x3ec92251 icc_link_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x613cb3f2 icc_node_create -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7242722a icc_provider_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x856f8de3 of_icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x9403fae6 icc_link_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe9624bd9 icc_provider_del -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe99938fc icc_node_add -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xf99fab3f icc_get -EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xfaa989e3 icc_node_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x092b59c9 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x32ae3d69 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x502245fd ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5effaa82 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8b494fd4 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x97eb29da ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9951cd45 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc61a94ee ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xee7cda06 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier -EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x05647160 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2733e0cf led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8f08d769 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8f5342b4 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcd8ef884 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfeef3ad9 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0270bcf9 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1c52691c lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e3464b6 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x630d3dcf lp55xx_unregister_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x70186775 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7f87dd85 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x80c7afad lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x89cfd0d1 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa9d09572 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc841f98a lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf2d933e4 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2ccdf6de wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x3f280e61 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x66c4ad4f wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x82e906f9 wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xafaca5f6 wf_get_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdbe66868 wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdcd57b95 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf1ef369e wf_put_sensor -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x22068d90 mcb_release_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x227eda40 mcb_alloc_bus -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x586952fd mcb_alloc_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x677982e7 mcb_free_dev -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8f1a343c mcb_get_resource -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb5582e94 mcb_bus_get -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb5dc4eea mcb_get_irq -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc603c6ba chameleon_parse_cells -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcdd132cc mcb_bus_put -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd9725e03 __mcb_register_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xedc53989 mcb_unregister_driver -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf2ab2789 mcb_request_mem -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaf0a17d mcb_device_register -EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfe76703d mcb_bus_add_devices -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10439a81 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a02ba6 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24ee2a7c __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2515e866 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2869bc82 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40430b3f __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0eec50 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52cb1bd3 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a47b147 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61f8a4a2 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x666af686 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x77db9ce2 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c4e77b __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83195c57 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d0e2577 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90d77239 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8b623 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97890220 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a530fe1 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa49f3127 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb19c0de4 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7599baf __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8cb3ae4 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc3af40d5 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca6ae723 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xceafa6da __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf2b1b68 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd89fb73f __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed607240 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefba8a85 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf307604e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0b5cdbbf dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c044f6d dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x351110bc dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3f55f3bc dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753293ff dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa231695c dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa668a1b4 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb28636f1 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb8ca0a9c dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc9ae5014 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcca55bd3 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd513227 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf62f3f4a dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf717921e dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf8f5b2ad dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc47a33d dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfe294e36 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 0x5043d4ab dm_bufio_client_create -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-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x47d7e0b3 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 0xb3cee7f4 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x89032fe9 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xeac40dbc 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 0x0e8c0e59 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2cdb1264 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 0x4e1c7214 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 0x8822dcfa 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 0xaad3027c 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 0xc46d23d3 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x30c37cc0 dm_bm_write_lock_zero -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -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 0x5cf0d0bb dm_tm_create_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -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 0x95a52abd dm_bm_is_read_only -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd202f6c7 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3ac2d342 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4bddaa9e saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x699fb991 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7dabbf3c saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8b9f9b69 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbb2c4548 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc08b316f saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc3ec45c0 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeac93adb saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xefd7cf9b saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0f47b6c3 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x13e3fdfa saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8bb52f92 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8deea539 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc41a66bd saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc6f3c59c saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff779cfd saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x051b5c93 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0ed7b7ed sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2307d324 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d07bc64 sms_board_power -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 0x685fa8d3 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c1c6912 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x726848ff sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7321752b smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x855733c0 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3b52ac8 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac94e131 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb28acf6d smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb54fe69f sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb60066ce sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbad45319 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd5abdb45 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf882ba61 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x02309166 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1db2e340 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x31af8080 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f7c972d vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4674f066 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4db6cfaa vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52530d41 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x53529969 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a60464e vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63b47422 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x677a7275 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x72ddb883 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x78a518bf vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x840e39c7 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9310651c vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9c9bda60 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d1bffc6 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9e73c448 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa24a3d88 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xacc57866 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb742bbd8 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6249b3e __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe54e480a vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7202341 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe8fc71ca vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0c756e7 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf3ab0add vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4c9ab4b vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf8de87f6 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x08d7114e vb2_dma_contig_clear_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xb5a9cdd5 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc0f32f41 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xdf9708a7 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x6506f0a3 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x014c2126 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x07d4469c vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15b5846f vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e0249fd vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e4dc4ea vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23a8a225 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30025aa5 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x30bec290 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34705e9d vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46020e9b vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46ff41af vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x48a4eecd vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b3d67a2 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57916900 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58a0dad3 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x634a6e61 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x651ea0a8 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x69885efb vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c740662 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7848a7ec vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa06a958a vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb967c79f vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9ceb767 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5d0626f vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb35ee1a vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfbb2629 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1989f66 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd90b7e83 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe2ec400f vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf638cc82 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb71f270 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x31b0db7e vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6ae90994 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcc5339d1 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xfec406a3 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0cc8af46 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8eea41d1 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x2c1747dd gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x171be35b mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x26795c8e stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x32c74ab9 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x399c990c tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x114c27fc aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0052a5aa media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02fd1392 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x083c47d1 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c444646 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17a89643 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x330f3ae6 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x355c7ad9 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37e5e55e media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b817de2 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c334821 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x432358a8 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4efa3448 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55ab6def media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f8bfbb1 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x695f89f9 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69dcfd19 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x715c121b media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74f99d3b media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77a1f6cb __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79061dc5 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79f619c1 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x841e80d5 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f0ab739 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fb9a20e media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x909c849f media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x957c3763 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x964de6aa media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c76a06f media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d311856 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d4347a0 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ffbabd0 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6b757f1 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9b4f09d media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf2f3245 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf886f24 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfb0fd76 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc991f91e media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc8cb48f media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe028ebab media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe309f4ee media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3e0e296 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe50fa293 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe789e137 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7cc0dfc media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf12423e1 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf6859963 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd0f29628 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x09cd4017 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13233734 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21959b63 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22dddb75 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33f37e23 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x40df64cb mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x430e87c7 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x456e2691 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6373b164 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6508fbfa mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84e47245 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x881de7fb mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8a0616f2 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2d0aa23 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadbbe2a4 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7306463 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9405f56 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdda5af49 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef5dc8a3 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1121c3d1 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25a849f8 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x628e20f4 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x64bfc797 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x664ae577 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6a908406 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84fb112a saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9353a278 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x978e1471 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98047634 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9adcdf33 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3b066b2 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa762cdaf saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4d627b8 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd056de1a saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6ad9a8c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec0da139 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6907cd9 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6daec9b saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x14ba7a86 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f35f0c5 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x536f14ea ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5885fc32 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7ed32e64 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x824ceaa4 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x911ac6c1 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x18440249 vimc_pads_init -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1b59f9f3 vimc_link_validate -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x90dcac57 vimc_ent_sd_unregister -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xc5bc3edb vimc_streamer_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf06c50d2 vimc_pipeline_s_stream -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xfa2f47cc vimc_ent_sd_register -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x26b7cdc9 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x272a1b84 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x44262c36 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x956e2a40 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 0xdbf872d7 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf786ba2c xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa77852c xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x1c5da109 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 0x1846b794 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc1f604b4 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x136e5360 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4219fd32 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8b8df900 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb2771626 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb7e89ca8 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0db898cf rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b354f3c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3adee276 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x52dfd2c0 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x570c7104 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x58e62e76 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bc76401 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x704854e8 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75e9ff2a ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b4a7fba rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7eddcb48 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8667f23f rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91cacd94 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c19e749 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb89bcb33 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbaab8a79 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc93f02fe rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca84cfd4 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5f0f28a rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf42ded37 ir_lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9ca70b1 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x76ee0953 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x1e9a4093 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x63d9738a mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x5e3e4c25 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x39ff9db4 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x360de08f tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x03fad2d1 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x579dc1c4 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x44a7b294 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xaf16666d tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf5bb7eb0 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x66eb3938 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x74e072ee tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x51f2e104 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c2b55f9 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c4145e9 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19848463 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d96f1b2 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x234a5f45 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2959cf65 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2c223042 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2fe07c92 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x39ebcfcb cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a14958a cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d60fada cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x726eb39e cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x843242f4 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c5c12c0 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9db282c2 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xade448c3 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1921575 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe5c53bc4 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9be4760 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb599745 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x66af60bb mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x44cd306a mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07c87f52 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15dd68f8 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x313c086d em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x365375e6 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x460922e0 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52594b1d em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x565cdf4e em28xx_stop_urbs -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 0x889b62f0 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b13afb9 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e8e858b em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8e299d2 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xacb6499f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe8d0cbc em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbfd798eb em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc28d82a2 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf45d581 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff15db8c em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff62bcb0 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x355799bc tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x56fbc1d0 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc70eb684 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd4e4c6f4 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x27ad7019 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x31414e41 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc6174770 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x30cc0e05 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3ac5884f v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4d1a4a4e v4l2_async_notifier_parse_fwnode_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x65a46fbb v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x69d40c10 v4l2_async_register_subdev_sensor_common -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7d6ef38c v4l2_async_register_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x87011f13 v4l2_async_notifier_parse_fwnode_endpoints_by_port -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x87a40e7d v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd865f315 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe8f9553b v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x054e6d96 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07acfc9f v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10b3da6e v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x193161be v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a13cfd6 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b46b586 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dad689a v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21ef1337 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x450eb2f4 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b806e72 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54c132bc v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59ca46eb v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5db07e35 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6093ecf2 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60d01ae8 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63fa7960 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 0x802d0677 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c89d4a5 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x992104db v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9edce63f v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3ecb353 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaeadea5e v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf0068a2 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3d8f0d2 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd49efe3 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc12a934c v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca5b8027 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3f71cfd v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb0b8060 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0e94b14 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe579e890 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed6315b8 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8f67bff v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9410c97 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa50366e v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b5eca05 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40c49131 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50b3e2f4 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a040a36 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5db9da7a videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x62cb1a17 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6540be9d videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f7918b0 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7de1d011 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8395e5cb videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x850bb6fd videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89338f5f videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90fef8ae videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa83e2a21 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb4dfef6b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5774548 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb70a07db videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb93440d videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc11358cb videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcb3a579f videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe332aa20 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe46634e5 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf553a871 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa22c0c8 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x188feea2 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3930d1dc 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 0xe5d0ed02 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xece3dab2 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9aa25aaf videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf7f82f32 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf8a77460 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13a2ca15 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x191954e2 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bc9f963 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c57fdda v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d35ab0a v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f713721 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20fd74d2 v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x264917fe __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x272d7df2 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2bf905fc v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2da2e4d0 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39507b08 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x483626aa v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48c8c590 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ddea25a v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c24ef75 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c2f2b34 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61f1b476 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x632f18de v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x635dd035 v4l2_subdev_alloc_pad_config -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6438160d v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69141458 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x773158d0 v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e85f09f v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86420e5f v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86eda600 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x880d689c v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8aa33098 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x900c1644 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x999ba22c __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ca12e54 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0864115 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa90dd299 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacbe358b v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7c11354 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe4f3afe v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc111335f v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4ff01f8 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc3e7a98 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcce257ff v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf3e6adb v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfbebae6 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8c7869a v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbb5d11e v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdebbbe80 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdeefda1d v4l2_pipeline_pm_use -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe39ec246 v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe444968b v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe599474a v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeab263ac v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee23a17f v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6a4ee3d v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb65e22f v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc465320 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcb6c53c v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd59fe20 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd83b08f v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdc795bc v4l2_async_notifier_add_devname_subdev -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1355e6e1 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9fc6a9e4 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd5ae87df pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0ed5da47 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x29781fa7 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x55efc999 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb993210c da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc75f0472 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe8b23bdd da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf247ac2e da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f203b60 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1fdf7ceb kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2cc42bfb kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4f9beac3 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6b722f43 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x71a57dc1 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76aed505 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb20a8c7d kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8c378a80 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xac9467d5 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xefd8dfd6 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1259640e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2fdd5a0d lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x54b70bd5 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x571717d4 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8dd1d0cc lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa63b7adc lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc41b2684 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x02245af5 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb2f4c7fb lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb6cd3ede lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0be7d8c0 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0bea0480 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1332af70 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x133f7330 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17aff899 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1eb7c5c2 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x21403408 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x214de848 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x345e52aa cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c66c33d cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c6b1f7d cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x48d2c5cc cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x48df198c cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5007b27c cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x500a6e3c cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x62752904 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6278f544 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f53de31 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f5e0271 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9f553da4 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8b683c8 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8bb5f88 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbfeb870f cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe3052cdb cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe3ad329e madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb839ec4 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb8e4284 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xecd6ed48 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x05ebc4da mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0e4297a3 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4ef8dc83 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x575edd67 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5cf729eb mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x884ed171 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1cd768aa pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2b77d34e pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x496e0a17 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7462aedc pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x76dcd73d pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x782e5fed pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7cd59b83 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80190417 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa537bafb pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc0cfd3d5 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe8ba5f36 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0e490adc pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6f7e79fc pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0c36021e pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6a5be8ca pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7b6375fe pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb963fdba pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdc8f3eec pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x69f01154 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 0x0c265d1b si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12df0206 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x189165c0 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d739b47 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23fc56ab si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x321d4a75 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4716397b si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54d89534 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a81283d devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6851c7c4 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d6e6ca8 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6de851b6 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e9409c5 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7211c596 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7533ac72 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76fd30ff si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7709ba26 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ce5c654 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f3194bb si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88b4874d si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e49c5e6 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9067da04 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x913aa779 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92e23f3e si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93942c87 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa11596ef si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8a1cb04 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcbe1d748 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcea9ed09 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf331b24 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1a1b604 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6ea4c47 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdab70298 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0528b1d si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45c6c576 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9303ac8c sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa0a134bb sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb67f8a1c sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcfe0f46f sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9feebfcd stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd986e10e stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x445174de am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5e36537a am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc9602dcd am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf4c99818 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x62a8f68a tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaf39b301 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xca1c8638 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x075f6b82 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x01d4867d alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x047c3a4f alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x255fb212 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2c51153a alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x39061dde alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7616c7fe alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe289dd89 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x02bf8e87 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1244f1bd rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24c6662e rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x262bde94 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2bb38d79 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d4b86b8 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2dcc00dd rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x536a6430 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82fb01cd rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d67d378 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99c68b91 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa18d4cf6 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1cbe7c6 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb3dfe6b1 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb870de55 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc381314e rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc690cac2 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1b341fb rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1c8ee4c rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2cfe43a rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd52bd6e5 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe75beeee rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed695b3a rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeed2cac2 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x10318bac rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x132b04d0 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x34afedfb rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3acbd49f rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5a96ba15 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5ec460fb rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x649c7bbe rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6cf7d7cd rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbb28391b rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcb5e5eeb rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xed1c7086 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xee529ed8 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfc0e1e3d rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x27e0de03 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x50b39a7e cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9b63158d cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd83f1452 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x02234c66 cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x02f8c58f cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x046c80ee cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1219f628 cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x17280465 cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1a94da29 cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4b2883ea cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4c666053 cxllib_get_PE_attributes -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4e5b2e18 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5141f165 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5e1f7761 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5ed68c12 cxllib_slot_is_supported -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x606e198e cxl_context_events_pending -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x63ad77dc cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6af72556 cxllib_get_xsl_config -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x743c2ca0 cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x779f606b cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7a737f6e cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7dcf3bd2 cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8317baa0 cxl_set_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x85a4d658 cxl_set_driver_ops -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8ab2e1c9 cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8cdc42cd cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9344ca95 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x95b64a86 cxl_get_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9f80981d cxllib_handle_fault -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9f9f6870 cxllib_set_device_dma -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa0d89882 cxllib_switch_phb_mode -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa7156f59 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xba2e2090 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbfb975fb cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xceba8584 cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd02970c4 cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe1e60e6a cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xecb07645 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf093e829 cxl_get_context -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 0x01f68ab4 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1724426e enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x32d3e823 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7465a99f enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7afa322e enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x932fbbfb enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa240643a enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb977b85c enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x12f9b97b lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x18a8030f lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2b75b86d lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x76804473 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8b607e0d lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa2121e3a lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xef2937f1 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfb75dea0 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x0055ff63 ocxl_afu_set_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x00c2c179 ocxl_afu_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x02e03834 ocxl_config_set_TL -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x0d7aed64 ocxl_config_get_actag_info -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x11ffd4e5 ocxl_irq_set_handler -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1ade922b ocxl_link_setup -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1db2ee96 ocxl_config_set_afu_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x243997b9 ocxl_function_open -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x24b7e546 ocxl_afu_put -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2a031997 ocxl_afu_irq_get_addr -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x35a6b084 ocxl_global_mmio_set64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3da2b938 ocxl_global_mmio_set32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x46f52cac ocxl_config_terminate_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x47cf3f0a ocxl_global_mmio_clear64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4fcb36b6 ocxl_global_mmio_clear32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6d5458a9 ocxl_context_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7a176ba3 ocxl_function_fetch_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7bb1e6dd ocxl_afu_get -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x848abf91 ocxl_config_read_function -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x875c5d00 ocxl_afu_get_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9036fcc0 ocxl_context_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xadcc5db3 ocxl_context_detach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb384363b ocxl_afu_irq_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb8098b6a ocxl_afu_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc59e061d ocxl_context_attach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd05afa2c ocxl_global_mmio_write64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd1a2cd18 ocxl_function_close -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd1aa18f6 ocxl_config_read_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd465985a ocxl_config_set_afu_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd710ede2 ocxl_link_release -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd85ef390 ocxl_global_mmio_write32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd9bcdf61 ocxl_global_mmio_read64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe7f68231 ocxl_function_afu_list -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe8108e75 ocxl_global_mmio_read32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe99fc919 ocxl_link_add_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xebdc395f ocxl_link_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xecff3a2e ocxl_config_set_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf9d3435b ocxl_config_set_afu_state -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfcb13328 ocxl_function_config -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x835dd421 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8e3e3f4f st_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03f99827 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14bdecc3 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a260b95 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c2f3dbb sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c573eb5 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fd19c3c sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25adb7da sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2aeded5b sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b3a003c sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x34f13c6b sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39adb217 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d31bd9d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3dd8a0e9 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41b56f26 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b825a05 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62f09753 sdhci_send_command -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67c79de2 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67dd25bf sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75347877 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7594dec1 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7746beff sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b0196d8 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80d29179 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9aad0778 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d386496 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d93cb16 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e683370 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f334b0d sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa2a64451 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb8bd306 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc08723c9 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1741a33 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd32f2078 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6781a42 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe76eb70e sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf19e9cf4 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1f37e0d __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2849852 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd5262bb sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x070555be sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x52c9e086 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x57e50843 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x77644f9d sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x815de590 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x817cc626 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc9a7d3a4 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd1ba48e9 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf9383073 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x024d4646 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3d6463ae cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc07a4638 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x22f0f15a cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5ca2ba8a cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd1093edc cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb33797dd cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x82dd41fa cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x870be066 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbfe58807 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x1d049d2a hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf8d6d6b1 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06490fe6 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08b5f531 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d007df7 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10a556cf mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17836d36 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b46cdd4 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1eaa6611 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2bbe2941 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c26ec17 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ea333c9 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a9ea8f8 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b1a57a4 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b88166a mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45fb17eb kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48c2f611 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cab0785 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a31e1fb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62bb5f2c mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x639ddf69 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6486c120 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x661bffe3 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x711d6e32 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79a41901 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c3bce25 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85805f03 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x892b027a mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90ba8dc7 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x953d7f0b mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9870cd06 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x989d4d67 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x992dff0a mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7accf55 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0681963 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb121bb43 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb76c0d50 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7dc4796 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbfe463a7 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0e6cfcb __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5527e2d mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc98a2e3f mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbba6687 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0499796 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd388b49d mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd4baadf mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde2333a8 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe15549ac mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe27d481d mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3ac73a3 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe51a454d mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe82b4ca0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9e2025a mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xefbc4c59 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf30e43b7 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf904a04f mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1b3d9d98 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3729c585 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x824d748e mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf9356ccc deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xff75ef78 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0ff0c140 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17edd9c1 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2f83ecd9 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3467da5c nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x35fff9dc nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4c6efdeb nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7c70a136 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7d24607f nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8a183de5 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8c2615be nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7463dc4 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe5c35dc9 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xea2864f4 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5e2cec06 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe0ddec0a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x18a42e12 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x04353f39 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0ac1a85b nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x17f53a29 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x17f8604e nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x19a33105 nand_ooblayout_lp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x204ccc1c nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x24cb8241 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2ac3f701 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x328d2019 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a088d71 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x487ffcd2 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x506a4faf nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5660632b nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5cea459d nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x867a8f11 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8835dd22 nand_ooblayout_sp_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x96b0f3d6 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x98c5ee99 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa596f0d9 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xac4bfb3a nand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbc90c3a2 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc38283ce nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc3bd4222 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcaaee911 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa8f8ef8 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd7db282 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xb2aa6f62 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x54d0e282 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x704a7ce0 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08640e8e ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x11753cd4 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x368937d1 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39c45712 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b05455c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x541f2c1e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x591f3273 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x74e0fb22 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a2df811 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd0ac5c3a ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe833951e ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf4097c03 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf64cab56 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xffaa1fe6 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x06ebe96d mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1fead67c devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x250a9077 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2cb6cbe7 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x433d4829 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x552d199d mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5e8f5d09 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab822277 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf7acb9c devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdef654c2 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe747ebf0 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe74bfdc0 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe84bd521 mux_control_get -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x27db724b devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdadd9e45 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1417dd94 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6e4da493 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x927b2f16 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa19701d4 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcfde0b3b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd18f6282 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x265ccbf9 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4436627d register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x701b3a18 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdbed4064 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x048158f8 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0568d03e register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a7dc884 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0c6eefc2 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x252d9671 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ae8ebb2 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x343e7a21 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b0755d7 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x496b5d81 can_rx_offload_reset -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x547cea91 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x578de1f7 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5826ae4e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b1bcbc9 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67a1849c can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b82e76c can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78488f69 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7c03b01e can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x816771e9 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9695f875 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3c26489 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6abd093 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb704079 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde40bd54 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe242b17c open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe286dccb free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4555a09 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed4e1161 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1e99a10d m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x217a5c7f m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x25e13e5d m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8b221e05 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xad4eaae6 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc36fce3a m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd15f1cc7 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd9a3d433 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x210263ce register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5c3811c7 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6f6214e9 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf8c6975a alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x0e6d880a lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x03574114 ksz_port_mdb_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x271facd0 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x636aac33 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6782faf2 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x757e50a1 ksz_disable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7bb0a1e5 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8d089e55 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xafb7af54 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xafee341c ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6c79497 ksz_port_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xba8047f2 ksz_adjust_link -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcd58c331 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd4cd02b1 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdb281aa4 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe420df97 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe6e62497 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeea93389 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1410f519 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x25ea428d realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x34fa947f rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5164d71d rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6d742957 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x81d9a1c4 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8386bb49 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94092833 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x96661225 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa9f18cc3 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc3cfc5fa rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcf29f902 rtl8366_vlan_prepare -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb2e8f77 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe316ddfc rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe4b0374d rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xef1018b2 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0407139c mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0894b070 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c5e1f8a mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d274c19 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ec4aad5 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f0dcb2d mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165bbceb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x177f27c8 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x193f0696 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19445f71 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a9b0492 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2aadca mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c87fc97 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cdf7771 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da1fa95 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed0f316 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f41d313 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a86639 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e5d99b mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2273b6ad mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22a31739 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23bf0f9a mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2690b988 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27349aeb mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x291fa7d7 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d00ef12 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d9399a mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35981c65 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370ef986 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b65dc4 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39535102 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ba5018c mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be18d02 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ac65cb mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b5b045 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488071d6 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48faaa14 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a2a6fe5 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b3f00e4 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bda52c2 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eeccd08 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f6e1006 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e6e4a9 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56291c3e mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587ebb36 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5961ea2d mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ba2831d mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c5d037e mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cad0ecd __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d89e045 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e1a44d9 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efa9a93 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6425a7b0 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654c07ca mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cbcc824 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7381ee mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbe91e2 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f2f1242 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f877c58 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x714deb50 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7878f4ab mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af7f86d mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3f3020 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dbf4083 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dd67eb7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2126a9 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80e20939 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82608094 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d6f27e mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a5e75cd mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a664e7c mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c98ef8e mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d46e20 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x984cf539 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bac3ec0 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f3690f9 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fe3ce6e mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0041946 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa282c9c0 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3cc131d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4266bbe mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5429464 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c3b287 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa865f1a9 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c2b507 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8ecaf13 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac347254 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae2cabab mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf9cac25 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb17d5a33 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35ab1f3 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4af4fa9 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72cffe1 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb802eb3e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc51736d mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb9ba75 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd086876 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc38fde mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea26b50 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf6af4c5 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfbdefc6 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ec075b mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15553a0 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc213a4ef mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc83ffda1 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc91834fc mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc99979fb mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca5a8af mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d89e98 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6608587 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd696fec6 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd75be9e4 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddb65302 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde4e287b mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13e5caa mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe17aa098 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe30ff582 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe44c5291 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe786867a mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe886849d mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebfdc541 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3eb29b mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfb27cd mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede5bea9 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85db543 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe0420c mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0336e29d mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04e3c18b mlx5_query_port_vl_hw_cap -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 0x09214cfc mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0941223d mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0951f98c mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09c5a17a mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e648397 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea117de mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a5f2e6f mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2468975f mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26ee1acb mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d0ca2cc mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30229a88 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b5db0f mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331eecfd mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360197bf mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389bf7ca mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4b115a mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40473d2d mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x408b53b4 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4137bd41 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426cead3 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b876f2 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43be8060 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47093506 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3eec02 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506e097d mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x524fd525 mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fd20353 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63cf75be mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x677ef641 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a7ba3a4 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bdedbf2 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7023ae60 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82ab0617 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d56486 mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x837ec7ae mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8630b1b1 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89165242 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8efa1eaf mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a1e0b3 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93cb0df4 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9845203a mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a1e6ef5 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b3f2749 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9da02e59 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eeac604 mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa034fbf4 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa148b1e2 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa27abe6b mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6c848bc mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8bf236a mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9921ded mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadeb5d74 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb91c1628 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb19d1b7 mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc8e6432 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb4f2e2 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1d72896 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c07476 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e22efd mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64f0769 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72b3497 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8834335 mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb132342 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbcd9bae mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcec3ae6a mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd26a6bba mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3239a77 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a5bd03 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e882f3 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97d08c3 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe100ca2f mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36f1b04 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe39b25be mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe454e355 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4fc193c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77c783a mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe87566a1 mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe915f151 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c5116c mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4751a99 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f0760b mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bbae64 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd286ea6 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf4b9dc mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xad761fa1 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/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 0x0a1f1ae0 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x48df58ad stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x73a0bf20 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92b2d1ba 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 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0168c84f stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x027b3d8e stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x28062b25 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa2983478 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc276dd2d stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x714c4c0e w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa1c511f9 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdd859d5a w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe08c16c2 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0x65bcacd1 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x105c751e ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x33e2ba28 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5d3c2470 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x95149cfb ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb7b29a28 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5ab362ce macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6c745093 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbae9b25e macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd7889765 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbcc42fd6 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd36de59a net_failover_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0edbd774 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x188c184d bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27898a8c bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x318ce5cd bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x447df896 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x519230c3 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5745f045 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63a5dc2e bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x696cc620 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78eeb1a5 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e499e97 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a95ffdd bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac33d2fb bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb198bb0b bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd522a60 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2500728 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd750f61c bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0555865 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x747ed29d mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x410811c1 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit -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 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43d851a2 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x561d8ec1 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9bcfeb00 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe3cbc9f5 phylink_fixed_state_cb -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x233edf4b tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x389ac60c tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x6c7c50d8 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x719b7d82 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x9eb6fe31 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa98d1112 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xb18012ba tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xf4b0fc74 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xf8362347 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x63e0967a usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb512c0b6 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd95b956 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd143e0cd usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf1006d13 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x00e5ecc1 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3af67674 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x47a8f899 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x83ff6c45 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x87c56e3a cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a1fc0de cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9a9112e7 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b49eb98 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb018df3f cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x131e6449 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x43683272 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8e1dc1df rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb5bc7b60 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb8bf39be rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xffb972d9 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x044ad273 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cd2fb7a usbnet_set_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10f6087e usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a337eff usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a38d425 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2904cd82 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b2a5037 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ed35dab usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54b88639 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c5ffe89 usbnet_get_link_ksettings -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x691aa591 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f7846eb usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77e1471e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a26ff32 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8194240c usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x858a937f usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8864ee58 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8966c8da usbnet_get_stats64 -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b2f33be usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9664c9fd usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9bd50192 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1d90397 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8109949 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7cbf88e usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbccab34b usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1205e74 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc554945f usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc71af67c usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca5c4313 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd62594fc usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xecb3e657 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff423ce6 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff771f1a usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x051e1017 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x204708ec vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6fbee01e vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x94f13de6 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e8221e3 i2400m_release -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40c76d2b i2400m_netdev_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4805c690 i2400m_pre_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5cfccde7 i2400m_rx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8a598a3f i2400m_cmd_enter_powersave -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x960ad611 i2400m_post_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x986235b8 i2400m_tx -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9a7a8a89 i2400m_tx_msg_sent -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa92c1712 i2400m_dev_bootstrap -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xab6b0df9 i2400m_tx_msg_get -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb4cf0fdc i2400m_dev_reset_handle -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb52c0cf9 i2400m_error_recovery -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc6dd8d1d i2400m_reset -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcec99cfb i2400m_is_boot_barker -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd342d06b i2400m_setup -EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2774166 i2400m_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc0aec293 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05866e06 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34674f67 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63e166b1 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8531023 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcb146fe il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d3cd0d0 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13181898 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14196fe6 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19b4ab2d iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19c77320 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1cc888df iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229d8b26 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x287abc02 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b15d7ca iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32a801de iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35307150 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e79e9ba iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x436024a6 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e4b20bd iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x552ad0af iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a86adbc iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d996483 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e38a72b iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4a86d9 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724e8822 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7307e077 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76580d52 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f5248fc iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87406655 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x880e4120 iwl_write_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a400df2 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b562aac iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c2bcc38 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8efe8127 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f1e6df1 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96053ea0 _iwl_fw_dbg_ini_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b6f20e0 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f7f54cd __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa939766f iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa9210b3 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0f4d867 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb10d7113 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb352ebc4 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3c90410 iwl_fw_error_print_fseq_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb50736c0 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5de3348 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8ebef53 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb267c03 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb72a81c iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd01ebc8 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbede25e5 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0c34c85 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3df09fa iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc671e97f iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc71cd957 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcabaa812 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0e1c46 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd557dc0c iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe598af0e iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb4ea6bc iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef73a36c iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf317fa03 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4997f0b iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbbbca8c iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc83fca7 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38273b09 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x463e26e0 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x48afe255 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5aecadd6 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c08cbda p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x867dd1af p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xae8c907c p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbd94dfe0 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdb474df3 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x00e65b07 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x194f577e __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x221c3d21 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x28049ece lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3854d52d lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4efdac80 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x539d881d lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6c6727c5 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6e07152a lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7df55ba0 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa67ef598 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe49b5bc lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdbb865cc lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4e2903e lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf89adf76 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfa4e2b1e lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0c033816 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1feef5cc lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x48d4e083 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4cabf330 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9ef2c4fc lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaf7022b6 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe882ab7c lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfe367212 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x095d992d mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0db8eefd mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5174f4e2 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58245ec3 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x59a3c650 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5ee02283 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61175a75 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x641e5181 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65601320 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x663a2e68 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d0f8492 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7bfd025d mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x87f9c40b mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8b368afb _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9150b52e mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92077037 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92396d90 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e46e2b3 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e7307ee mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1f735e8 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb7c976a9 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc7c148c2 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc82d028c mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcaa11cfc mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0319a0d1 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x041b3139 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x077adfbb mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09a64e26 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09e67972 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d5ea9b4 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x117dd218 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x133b24e2 mt76_txq_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d4e9497 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e8a80cb mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3055ecee mt76_register_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35d5bb6e mt76_txq_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39ffc6a4 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a2132b8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x426246a0 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bfc4924 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4dd0d601 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f0cf3a3 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x555a4c1f mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x566dc3e8 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b76e3e6 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b84700f mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63f38b1c mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68062621 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68ffbc50 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ae5755e mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7152f5c6 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7656a63c mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b535fbf mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81ebdcbf mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8646593f mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8690e28b mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b5875a8 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b047a3a mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f4c407f __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa405bdbe mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7941da5 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac5c7bda mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb0ceb15 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9578fc0 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc99b2c45 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca0e5323 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbfffcf5 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6924709 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe19ada56 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3f083d0 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe503558e mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea91880a mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xedd24656 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefaa60f6 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf098e9b9 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3c0911f mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9641156 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0a8176f3 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d1c9975 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x72b77533 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x83803eb4 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x84d7be7a mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa9430c6e mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdb1050f8 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe32456fa mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x10157a6d mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x276f31a1 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7a8553ea mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7cc2ff1c mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc28e11db mt76x0_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcb6b1b1b mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xef28f69a mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00dce6b8 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00f544be mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02344334 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10abef17 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x158d8358 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x186f9ccc mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e84e9fc mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26591b19 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26d62938 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x277acf0a mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bb1d945 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2eb8f794 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3643d862 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x368ef273 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x373fe3ab mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e90a34b mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40350d0b mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47bfe609 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50981692 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa1302d mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c79f6bd mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e7d672b mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f2a5941 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70a50157 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72b0cebc mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7de11684 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81519b06 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x859c68da mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b13b16f mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d043453 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d12c284 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97e855cb mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x986cbe3b mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98e94093 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa39e5a33 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa918fdcf mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9a9ac87 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa6cb6a7 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaac719e5 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac6a99ba mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadea8662 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb39730c3 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb66a8f68 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb152bd0 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb64429f mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2fa814b mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc32c61a3 mt76x02_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfae63e5 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6d3b680 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb3fa1f9 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd8f4c36 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe12dcf04 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe160d299 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe35ac998 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea8f30e1 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeaf5f572 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec4de37b mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0302e81 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf43697f1 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf559cad2 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdd18733 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe4f024a mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff9adbda mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x29c2452f mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8f801648 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9cf37345 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9eb695e7 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbc4611d3 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe7683cc4 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf5e441b3 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0c10c419 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x205ac21e mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x410ca0d2 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5d76d714 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63b5f5d4 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6563a282 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x68114eb0 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x68ebc97c mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c71609d mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x70b9a690 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x72a6f558 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7454d5bb mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x79c4b04b mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7f71c7d7 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8115c0d1 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b4d568e mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa17b5406 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe97f9e3d mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf377fb63 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x13f72cad qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3cdc7161 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x48195268 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x582a737f qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7555dc76 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7c8b73ef qtnf_update_tx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc76e46d1 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcea95753 qtnf_packet_send_hi_pri -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf9af2126 qtnf_update_rx_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0af582e8 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d35c59b rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e3933d5 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ca89e3c rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1da9d371 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x216e866c rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a906a23 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2af35f2b rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e5d4129 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3172c5b4 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3286523f rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38704c3c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fc61666 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54012d63 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5bbc2b4a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d1a913c rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f734115 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x608ac31f rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61e49fd8 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6fcb235a rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x737f2629 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cc3ba7d rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80972069 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81ebafef rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83786169 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a4e7302 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b743c8a rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b9dfe13 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa019696b rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa763d5bc rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5f1897e rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6a178fc rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbb559874 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbef7f67 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe207d92 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d42395 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce4c1a57 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd26d44ca rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda271104 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef9e9f61 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf00326d8 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd7b3740 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdeb422d rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfeea772e rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x002ac972 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0218716e rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08efe887 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x133be13e rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f4568ef rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4d0c9561 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6c0b31a1 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7eb5bec3 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x82fd6a2f rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5cd36a3 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc31fae95 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd341949b rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd4a11df9 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd923397e rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xefc95a21 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf9cc50ac rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03f1f918 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a1c094e rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0abf47e4 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13015c53 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19c4e9d0 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a233694 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a86fae7 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c191509 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23f55700 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x244658d2 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2dd424ea rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39b4dab6 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ab5139c rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x474dbccf rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48088a67 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c1a2c94 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ec71710 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4eef93a0 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5aea62e2 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d3e63cb rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72edee62 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bc1be09 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89927b1e rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b9aa851 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94b8c2dc rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d52628d rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dfe0565 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa60b827e rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa55555c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac8efe3c rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf2f0e98 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb49784a4 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba9cecc0 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb798bb3 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca300af2 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf083660 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd400093e rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd797d328 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfe66cde rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe07d5eca rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe4889aad rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5edb6c3 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xece66b92 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed4a8770 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef8409f2 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfba52d5e rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x250d1c93 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2d79bc66 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6b7f9680 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdc0e3ee0 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xeb9d9e32 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x35a80c84 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x590954b1 rt2x00pci_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa53217d0 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc9cd04f3 rt2x00pci_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0442faeb rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x123f42e0 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x16e08fff rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f5528f7 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b3368f1 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ba4500b rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x55555c0f rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c374893 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6b4f7535 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x73c33b05 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7502adc1 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0bfe903 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0fe5c9b rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe12ae864 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe95d7bdf rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeba6fb8b rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e7029c4 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31524713 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ebe3314 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e5471b5 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x015f0c3e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06bb5a77 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06cdf618 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x164ee4ed rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25305add rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27c22e0b 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 0x478fba25 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4beb126e rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x664486e1 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e796574 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7700d800 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c32629f rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80059fca rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa47c95ed rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb19d3294 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2d5f808 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc33eb653 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9ddfe47 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcde4e8c8 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8c76de4 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0392cc6 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5152032 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf840b8d9 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf9deb6e0 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfda9e8a6 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09b33fd9 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x211762ab rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23ba2052 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c39072c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41250550 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ff1d5ed rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7159805d read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7554f4fd rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77afa6c8 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d3e0faf rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8472b92e rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8510561d rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a9e46ac rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ba79044 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5190cc0 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac028844 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd4b4a28 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdcd118c rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc02bdbfd rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc25c5d4a rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd896a132 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe69dad08 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf24c8333 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5a85ea4 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfac19dd2 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 0x5b84eefa rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6cdb5cc0 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc5949252 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcaf3b5d8 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfbac5c62 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2be53f4d cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x47b19591 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcb3784bf cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcfabc6d5 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7aa613af wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x942e9b75 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe3e1ed5f wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02ecc551 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0405a357 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0903a885 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1055c502 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11e75184 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x129ebb74 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13313534 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15917b27 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x193ac828 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b501f94 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a59067a wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3633b3b5 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b0ab36a wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47327261 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49f61e18 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d93ddaf wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fb7f218 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50a41c9b wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56649032 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x593e3a73 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b09a115 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b81646c wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63258ac8 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64483e9d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x652feafb wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x870942e8 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93d8700f wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x944b1d48 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9dcf66e3 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa404d593 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5313572 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1ec2435 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc34793a3 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6a9b717 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9fc0bb1 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd184a704 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2482734 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6349280 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd92032bd wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1efc583 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeca20c03 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf79835b2 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb651ff4 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3096bcb6 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3d99fae8 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x46c66094 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xac9980b3 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1436f39f pn533_register_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x24aff7cc pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5c49fc1e pn533_unregister_device -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8a9f3b01 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31e006e6 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x73c32591 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7a437e8a st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7ec5e563 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbb0a508c st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc30173e3 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe292629f st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb63d971 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9d6574ad st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdac1dcde st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf7fb6dd0 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1276e779 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 0x52f2b285 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xaab7989b 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 0x07e93b54 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0a35503f virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x144219e7 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2197cc7a nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x248f14e5 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c8570f3 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36493020 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39139333 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39cc4b3f nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c45236a nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fd7c50f nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x404fea14 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4190c90d nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49a64a4b nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4bf36b3b __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50bf14b0 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c75465c nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7daa9df2 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89403d0e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8eeb46d8 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fc61716 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab07e455 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0e685d0 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb744bd18 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9f3cb31 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb12713f nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3a6fbd0 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcae9e1f8 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd22d0db4 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd242f2f6 nvme_remove_namespaces -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 0xd6d04672 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdfa4cbb2 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe42ee6da nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe45cdae2 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe474c281 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4fcfe40 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe725f5e6 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebada722 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedfa7c5b nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee1c5394 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeed8d966 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0c74e884 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x109fe969 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x32fbc446 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5f2ffb00 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a7cdc4e nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f156b17 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a44b98b nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xabb77e6f nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc33d31a __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbff42fe8 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe894ef4c nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xecb53fbe nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 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 0x9a5f48eb nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0153388b nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x208886ec nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3fa00c51 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4199e1ef nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x51c176df nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89d8db89 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa2109089 nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc13447c8 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd40d461e nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd7032be9 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff255663 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x78e0d2c6 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x149b1d5c pnv_php_set_slot_power_state -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x3fed242c pnv_php_find_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x2f16e196 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xbb6c2bdc rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xdf5af495 rpaphp_check_drc_props -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe646aa21 switchtec_class -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1c285774 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x2a98b2ac reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8be8706a devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x96a8d2df reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa7dfd13c bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd425ab3f bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe86be002 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1e1ba23b pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x94c73808 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xfe794019 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0520c84b mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x05e54f3a mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2ebdd0b4 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x64d8ed1d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x99719576 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0e0cf102 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x15be1cf7 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1d0ca3a8 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3acba340 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7a51d781 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9460eb59 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xf5f2f8cc wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xb2cc426e qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05253828 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x066c6890 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11a8e87a cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b033143 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e01a410 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e09f4a8 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21dd5eb5 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x301ae883 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x323b380f cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39dcac68 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c40f873 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ded3009 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x523db069 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x537fb022 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5505cd35 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5731df84 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a856b6b cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a86ec84 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d78f416 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f5c96e6 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6547abe7 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x656d568a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6586c731 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ec78626 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72b4434f cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7673c24b cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e767361 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x884dc696 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9616f356 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d42f20f cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d662e3e cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaaf9bc97 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad900b57 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3fb5bfc cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcaf9db02 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcef7815f cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdafa64ba cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddef398b cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0184049 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5ca0c46 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea571b61 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf16a4a00 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4919826 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4a454a6 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0865b7c7 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0d70b57a fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c1f7678 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x341fc034 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f9341fb fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83bf83fb fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84fa23f5 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8db3d589 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0393dd0 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa3e27db7 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbbd4baf7 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbd79f1f4 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbd882d1c __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc995ecde fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe7705fb4 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf227c395 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xa0e23345 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe024d706 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x23f5ee98 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x275b9d11 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4f6c1204 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x783fd1c8 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x98cb6f1e iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaffc0106 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe7abc69e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x22bbc44b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00ba256b iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09635781 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ffc53d2 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10b526f8 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11eaff85 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14fe57bb iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c3c2b36 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28d33bfc iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b5ba15c iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c3ef54c iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cb7c7bb iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ff6be58 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c91e888 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fa19f02 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52e2cb06 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c46598f __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ec7872f iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x649aa47d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7acb6ca7 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bdf794a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ce43474 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fb96603 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8350973e iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8921c1f9 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a23dceb iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bd7519b iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c943120 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f81e9b4 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3761b6c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb077faa9 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb40277fd iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7a22a5c iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6d30d22 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd106330 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf3a2a8f iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe27ae31e iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe571d4e2 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed9cc8f9 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf26fc14c iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf342e4e2 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5e3f82a iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff82fbbf iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ca27b42 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ec6cc26 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ec21e86 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f96ee35 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4cb8a9ff iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55cc91fe iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63dc17ee iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c1787cd iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8cc4c186 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x971f4ba5 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa2885033 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad18268a iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb67164cd iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc2064f7e iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe602ff87 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf2f072bf iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe1a213e iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07b54357 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12257ae9 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x130b45dc sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16fefbc5 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e5f5fa0 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ce82f59 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50339517 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5651c654 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x601ced6a sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76caa83d sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d25ff5d sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92ee6dae dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93c64db7 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96bfa851 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96d0aa09 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x972eacda sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f02336d sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1dd9df1 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa83d9145 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd03bb35 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc457febb sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5eb3dc7 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd232be54 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa664107 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0010b049 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08cc61e4 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1054b4e7 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x162eaf07 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x185c7755 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21435464 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x231a23c1 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31b2ae1b iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36d839a5 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a627340 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b5024ba iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b4a067e iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5272777d iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x568ec9dd iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e194094 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60eca098 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65f45f0f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cd9c1cd iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f115bf1 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fc08280 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82388d2f iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84cd03c0 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x870cb8d2 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88d490aa iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ce44708 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d1f51e2 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90079ce3 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d1c277e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa17f9a6a iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2b5c9e1 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa55278f4 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9e44524 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5e74e77 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc0c5d07 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2a45e84 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc47509ea iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1050398 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4383a5d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd54b93b7 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef304277 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefb056a1 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4b90ad5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd14d81b iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdd9ab1f __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0ba5c764 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x93535aff sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa961cdf8 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc0a77348 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x262d0617 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0a0bc67b ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f68207b ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3581ef14 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3ca5833d ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x424214a0 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaabde1e4 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb67cfc2b ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xebda2911 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf62a8c96 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1f466964 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3d7d199f ufshcd_pltfrm_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5489eabc ufshcd_pltfrm_runtime_idle -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x986567d1 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb4c78130 ufshcd_pltfrm_runtime_resume -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbd7e1670 ufshcd_pltfrm_runtime_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfb9e1291 ufshcd_pltfrm_suspend -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x259edabb siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x407a52b6 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x602f7d9d siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x964f6b0e siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xec248ba1 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfbf7716c __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0603e8b9 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e7d5435 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b03ea7d slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x26b0bce1 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2959df32 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31227f67 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3c4d7d20 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4079cf30 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x41545234 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b823af7 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74dbff48 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e6308b2 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x84625e13 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x905f8909 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9aba6639 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f66fc52 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb1b728a5 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc03a1227 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc725d5a1 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2395eb1 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd311115c slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc50d401 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf0ece4b1 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3c03238 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3c2ca46 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa49007e slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4ea7cb60 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x579cb045 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xde65ec15 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0c7f3090 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3a158e79 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x45a71177 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5c63c0ae spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb33384c2 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf688633 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1835cfe3 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1aae4659 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x46bf5229 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7658e37b dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc965648c dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x373638ca spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x41e11271 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8a7260a8 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e36b34b spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13aeeb1b spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x142ec66f spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1cdf82d9 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ef4391d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b1889aa spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e24d9d4 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69b87b82 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7bb02a15 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7cd77faa spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82e43b0e spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9576f40a spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0facaa1 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4b774e5 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1fd93e5 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd60009f7 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeb8395d0 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf84eab5c spmi_register_read -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd28c57fd ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04c7dd1f comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x07c8eb47 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0eaa555d comedi_timeout -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1f39ca03 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x23803b84 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29aeee72 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c9f5fe2 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40fc55fb comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43a73b45 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f5bf392 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x54eb5511 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x58907f6e comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d8e6519 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x633f06b7 comedi_event -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x87b2dbb6 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x89acfd72 comedi_request_region -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e4fcf08 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xab637321 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbd39c01 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc23362e comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc353469b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4357e71 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc57e7b02 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc67d5627 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb1bf6f7 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb73ebf2 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd03a5b8 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce49987f comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd508f0b7 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd844e0f9 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc3823a6 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe3df4274 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xecc9a236 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xecfbe33f comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee56d2a7 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfaba86d3 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x16fd8640 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x215b29bd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28fd2753 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x562b9d8c comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x69c197d1 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9aef9434 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa0e77d92 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc6f24e74 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x027658f9 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x0dd38a83 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x20466eae comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x43cb4d12 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9344bbe5 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc1369410 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x6a7d8839 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x70b935c1 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xc4d63706 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x50526b82 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x062c5c99 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x11e53b49 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1227de63 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1a295647 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x22297776 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x48519ed8 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5e8c6e1f comedi_8254_load -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa31564c9 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xad4b1e5c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb0fc6c7c comedi_8254_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbd203d03 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbf27891e comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdc3afe1b comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4743b267 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5b852563 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaa66efdb subdev_8255_init -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x1d8aef19 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x490b44d3 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xd844736e comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x419a04a4 das08_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3ee77d80 mite_free_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x40d7cf94 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x421726de mite_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4e1b1cd7 mite_done -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a4aa595 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x68c141e1 mite_buf_change -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6ef22b7e mite_sync_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7e923789 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x81b741c9 mite_release_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83f9f17a mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x918809fd mite_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9cccb40c mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbdd6610c mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcee3add2 mite_request_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc1bf113 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc823169 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x669443d8 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xaa8b7510 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5bf07dcc labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6b9db984 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x862d5646 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x9c2760dd labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xe60e6683 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x07fbd6f8 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0a730087 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0de456f7 ni_tio_read -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x15c743fc ni_tio_arm -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x270beee8 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x281f66cc ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x407cd423 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6270dd73 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7150934b ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb1b6f0b0 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc5a4ce1f ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd913eb17 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe32f2f00 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe7a02cd1 ni_tio_write -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xecb20d11 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf512ab34 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9fdce08c ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa62718a9 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb74a7bea ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd8165a1a ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe2612957 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe4d4a48f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1b109e61 comedi_open -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b3b009c comedi_close -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3f55a3d2 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x52ccc09d comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x91a8e11d comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa10ce4d7 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc6ab732e comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x20ce7b1a anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x223ec3bc devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x245eaf95 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5779fb10 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5c4fd0c6 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5d32690c anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x63963ec8 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x79bfc627 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7d758328 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9724601d anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb48cb6f5 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb9d3bfd5 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd9e27589 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x40796565 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x54169d1c fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc053ded8 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xfb449425 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0c89945d gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1debaab2 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2271320f gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x269d6858 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x27fcea9e gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5a6cba58 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7078465d gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7119c49b gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x843ba8fc gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xacf68942 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd89c12ae gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe0274e4d gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe0673480 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x05699c37 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0a4c6fab gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ebd12fd gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x287fb1e1 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x44fa578f gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x475f04c8 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x72b5647c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x771825bf gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x776d46be gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x87aa6193 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5a218f9 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde4877a6 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa1e6f08 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xa57d7b6e 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 0xe6df32f1 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x186c54ca gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x85591418 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x32cc514e gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7a470a3f gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xfc6bcdd1 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0a308282 gigaset_freedriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0c3f63d9 gigaset_handle_modem_response -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1abfe2bc gigaset_add_event -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x31df9d13 gigaset_fill_inbuf -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x5045f6ee gigaset_freecs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x6f11fce2 gigaset_m10x_input -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x72ad1baf gigaset_skb_sent -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x88fb637e gigaset_skb_rcvd -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8f8420a6 gigaset_shutdown -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9860c9bd gigaset_m10x_send_skb -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9d612a58 gigaset_initdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa40a5bf7 gigaset_isdn_rcv_err -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa99e12cc gigaset_blockdriver -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc6ac2640 gigaset_initcs -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf1d50683 gigaset_start -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfad08031 gigaset_stop -EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xffc45fda gigaset_if_receive -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0baed5bc most_register_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x15579b25 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2bad7ba3 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x382c71b6 most_get_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x530f2f05 most_put_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x546fde5d most_register_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x55331fe8 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x704a9914 most_deregister_component -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x824476e8 most_start_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x8d2cdb89 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x90b84669 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe0b9ef3a channel_has_mbo -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xec9ac8c0 most_stop_channel -EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xfcadbc54 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1dfcf1b0 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x245a45ec spk_synth_flush -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x39a24d17 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x40284e1a spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71015b05 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x72c75322 spk_serial_io_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7c930a74 spk_var_show -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7d824e45 spk_serial_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8a5edf9b spk_serial_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x917ace22 synth_remove -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa9c33485 synth_add -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb270e844 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xba0088e0 speakup_event -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbb4abbe9 spk_var_store -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbe18d8a5 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc03f03b5 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xdce524ff synth_current -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe4ed4ed7 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x5b60bad0 i1480_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xa7f8e35a i1480_rceb_check -EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xcdba600f i1480_fw_upload -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x18ecb052 umc_controller_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x1ff21cf9 umc_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x29a75279 umc_match_pci_id -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x4f51bf99 __umc_driver_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x5593c96d umc_device_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x7e8fb833 umc_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x84fd32e8 umc_bus_type -EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb12ac36f umc_device_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0960c2c3 uwb_rc_dev_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1872e5b6 uwb_rc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2f65afab uwb_rc_get_by_grandpa -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x303e5d15 uwb_radio_start -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x30c6cc8b uwb_radio_stop -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3234258e uwb_rsv_accept -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x365c80f7 uwb_rsv_terminate -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4a0da0c8 uwb_rsv_create -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x55ac48d3 uwb_pal_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5f0a9cf7 uwb_rc_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6bd36902 uwb_rc_neh_error -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x722301cc uwb_pal_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x753d8a53 uwb_rsv_get_usable_mas -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x788f4ad6 uwb_rc_cmd_async -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x790c15c1 __uwb_rc_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x81bf84f0 uwb_rc_alloc -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8270073b uwb_dev_try_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x905d7fb4 uwb_rc_post_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x993a3c21 uwb_rc_pre_reset -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x99845d77 uwb_est_find_size -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa747ee4e uwb_rc_mac_addr_get -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xaa5b3ed1 uwb_rc_init -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb44e059d uwb_pal_unregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb6da219f uwb_dev_for_each -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbb88258a uwb_rc_neh_grok -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbbca3ecc uwb_rc_get_by_dev -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc3dc39c8 uwb_rc_cmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xce907c4f uwb_rc_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xce9ccbef uwb_notifs_deregister -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd6c4435f uwb_rc_put -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd8dc887b uwb_rc_ie_rm -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdbb024e6 uwb_rsv_establish -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdd6ffc66 uwb_rsv_destroy -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe90ef24a uwb_rc_vcmd -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xed843b65 uwb_notifs_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9fb4dbc uwb_rsv_modify -EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfb06687a uwb_rc_ie_add -EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x300a4c18 whci_wait_for -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0696bca3 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4014c123 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4247e70a chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5cf13fb2 chip_wakeup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xbcd2acf3 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd4385263 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xef374521 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x0f7d35fc wa_dti_start -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x17430280 wa_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x1fc4ed45 __wa_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x73d70e9c rpipe_clear_feature_stalled -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x803994ea wa_urb_enqueue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad8b745e rpipe_ep_disable -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xd06e60ab wa_urb_dequeue -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x0ae01385 wusbhc_reset_all -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1276f07c wusbhc_handle_dn -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1d3b670b __wusb_dev_get_by_usb_dev -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x45e1096f wusbhc_mmcie_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x50a85e2c wusbhc_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5cae0a04 wusbhc_chid_set -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6eef047e wusbhc_b_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x75fa74e7 wusbhc_mmcie_rm -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8af92a15 wusbhc_rh_status_data -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa1b3c0e3 wusbhc_rh_start_port_reset -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xaa142762 wusbhc_giveback_urb -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xb96d21cd wusbhc_b_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe730cb5e wusbhc_create -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xea2582f4 wusbhc_rh_control -EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd -EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2f73fb48 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x56ba9477 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8fd5b476 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x25c91438 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5a55aa8f usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4684b812 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5d588a87 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe8090323 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x01cfd4d4 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1018cea6 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7224b85a imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa0d4a8b8 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xaf40fc78 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2093a9f9 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x344271c2 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6c2366be ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc9fe0e8d __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd6bdd0bd ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdf2b45f9 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0b2eefe4 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x21157ecb g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4055e98c g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6b215fa0 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6b8bf1ca u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb797f771 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x10e9843c gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x215f6336 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32c3d093 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e5892ac gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f403955 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4bbf3ec5 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f07c25e gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e33c155 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 0x9dba3285 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1dd4bc0 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb7bdb0df gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc6b8b125 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcfc14594 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf51b19e6 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe54b544 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 0x57133707 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x64d93efa gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x84a9f64f gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbe9964ce gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8662f428 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa496e576 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xafa360be ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x025527af fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0b9f1aee 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 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3605588c fsg_store_file -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 0x39d69d8d fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x39e1a97d fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e83f686 fsg_lun_open -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 0x472e783b fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x71f92d76 fsg_common_remove_lun -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 0x9400b0aa fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa39f5339 fsg_show_ro -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 0xa8017f82 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xc0e0000f fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc1a60d37 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2f4d25b fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd6d59aad fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdf72e6e4 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe2111707 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x00006edf rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b677d23 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23f938b0 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ccc7966 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e339e3e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x42131b07 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5686cff3 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a74d2be rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x82cdb028 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x87d4f4e4 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb19024ad rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb797728d rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbdeb8d68 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd4388188 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf59cb22 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c213cb8 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e407fa9 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x160cfd13 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b84424c usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bd92682 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30adc1a5 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x354fed74 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36a514bd usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3de11890 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4640df74 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75177f5e usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77ab4d6f usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d3f6a63 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x804ad395 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87597f6e usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8863bc3b unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x999477fd usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b8311aa usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4de7c7b usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa95eced9 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2f4f934 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc49ec757 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd180909 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd16994bb usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3b91641 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5f2d257 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8147491 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe862e655 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe95bdff9 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf608e08d usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc045e33 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0f431226 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x23706f85 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x55e194a7 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6c49a5cc udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8dd9af76 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x94e3e381 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc76ab290 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc90023b9 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdaefa6c6 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x072564bc usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ef9e6f4 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x15c23fd7 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a4d90c5 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2bcbd039 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34a1ee74 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3be65f11 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4499b9f6 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5aa3af41 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5de87406 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x609a5f49 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90ba670f usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1623a30 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb21a612f usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb478b161 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc553fc3 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbddd0069 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9d8dc9e usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbc02501 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xddea9839 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0e26dbc usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3463d2d usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7816abd usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf08a7049 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff78e493 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1c8caa63 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa0a48cd5 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18c2f77f usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6065b060 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7abf4d5c usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7afb4e9b usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x85ca220c usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9b5dbf15 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbf404986 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc2d6f1fe usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd698ba85 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x06ea941c musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x33797eb1 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xaac571be musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd6891ec2 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x572b6fd2 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9878712f usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa739f0e8 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb1c30123 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcba0fa38 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbcd53d3b isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x739f7092 usb_role_switch_register -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x7cf72b40 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x846e1c8b usb_role_switch_get -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x06bfce6d usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00381e2d usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x02e54a8a usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a476165 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ce9cce9 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x224d00e1 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2bafdba5 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d779e89 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x32a25d49 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37e68926 usb_serial_handle_break -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a0cbf3a usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47ee599d usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8164045b usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8185fb4b usb_serial_handle_sysrq_char -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88714e27 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8927bb60 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf065092 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf39fd16 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc88c3550 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdbd109ee usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeb2f617e usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfaf2b906 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x89714c0d dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x94fa6d97 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x37179d3d tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_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 0x7d973afe 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/typec 0x01a23774 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b3ec141 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10e5ba0c typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x25e949ba typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x283c86b4 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a6fe62c typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a9a9e8a typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36e9688c typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38ef0009 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5bf7d07b typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f247297 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x64ecfdbf typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b8576d5 typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7213684a typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x777d5444 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7afa2754 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x871c89f9 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88715f81 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8feb9c8b typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93c81267 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99a65186 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f05862d typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4827c91 typec_altmode_unregister_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa72a103f typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaf430bc8 typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7d4e13b typec_altmode_register_notifier -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbabafb0a typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc57f4a82 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb5efad9 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda7a34aa typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe072e571 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9f18113 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x513666f4 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb0294de9 ucsi_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb57ca7b0 ucsi_register_ppm -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd84c6a74 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe8ec5ad8 ucsi_unregister_ppm -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x016f5525 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a484d91 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3a7d24f5 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4333a747 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x446acd4d usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x48c1e9b8 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5d09c5e9 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x64aae9ef usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x922d17bb usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa836fea1 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xba8c9b3c usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcb80fac9 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdea34485 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xf61c3d8b mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14005e57 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e2a1bb9 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e88ef29 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x282b538e vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a4d0ea2 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3afc7a5c vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d2a847a vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b2d6db0 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d816d85 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5aa9b050 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62a83a4b vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d1797e3 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78c0337d vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79ea497a vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a93e5d3 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c8e2800 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e05c48e vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x849f0d35 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87f5602e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89b31c25 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91fd3034 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x937fbf56 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94253381 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9dbbacd4 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa08fadfa vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaad87585 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb34f8ef0 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb836e808 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbae47c21 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1541108 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc49a6e5f vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccb4b903 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6f688cf vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb65d4cb vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdeebd2b6 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4f8a779 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf710757c vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8916d3a vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0a071dc3 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0d1a81a0 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1cc0cf25 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2a1d687d ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x75757359 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa8d7cd3b ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbd7052a ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x983d95b6 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6f51b5ab fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x927bd8bc fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x093d7ded sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe7d75892 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x06cd839f w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x38575c97 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x41f8031f w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x453208ec w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5521a5de w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5b2ae504 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8ca3715c w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8cb720bf w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9dc3d27d w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xddd6624c w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe4e691f2 w1_reset_resume_command -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5f7bc233 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6b951df6 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc56676ea dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1cf376a8 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x623bf613 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8fd7633f nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaff1247a lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcc37e10c nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd60ee7ad nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee445abf nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x017f173c nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03a0d8c7 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04441f0a nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x069457fe nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x070da619 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x079c4244 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b4e74d9 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ce92d14 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0df4d324 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x115ce003 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b3d4cd nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18444e89 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7cf787 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb33557 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21a89ed7 alloc_nfs_open_context -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 0x28306410 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29255169 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ae25d88 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3401bce8 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396c94cf nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d84349 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410a4f74 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4152fca4 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x426ec439 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d8c51c nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46510f1a nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ef3fe7 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471b3abd nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471b5f16 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4846fa52 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4adb77b8 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bbc5e77 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d277391 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d9ad962 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4daf8658 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55915b55 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59001979 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59ac1a05 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be0ee55 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf12058 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d8c28ba nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f1786d5 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f65aec6 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x617336fc nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d57d97 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6660a329 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66e895c2 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68086b34 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a08dd7c nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b2146bc nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c32ebfe nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e449b84 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f62afab nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f947c44 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7023943e nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70f45849 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73c3c0bf nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775b2e79 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77efa148 nfs_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x784c25a9 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b4051ee nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc1f2d3 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dca011b nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e7888ae nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e4533c nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84514673 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x856d2517 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x856d617a nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85a27dc0 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x862ae4cc nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86a59fb0 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86de618a nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x871adfbc nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8757e897 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87953977 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883a4e05 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a67836b put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b067fa6 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c1e0954 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d222ef7 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8deec7bb nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f619563 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x900a7ae3 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91858376 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91918fa0 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91bd28a2 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfb9b42 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5a228b nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd788f3 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3a12d2 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa108cdc6 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa11e3ad9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2d8f6a2 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5bc8af3 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa60fdfa5 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6304c7d nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa896c67f nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99f0f93 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad95dd6b nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaddfa803 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaffc849a nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb136b457 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb47488bc nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4cbbd62 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb773a7b0 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb81607d9 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe8f0762 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ea4f11 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc53833de nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc697e2bb nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc89c2f54 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9aea1bd nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb70c734 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7a5927 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0ee46b8 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3b6b16e nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd441f8c4 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd50b6ef1 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd59bdf8e nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc213501 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0a32edb nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe110241b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1bcbd07 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe37d910d nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7256dc4 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae04c12 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb0ff027 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbb42db nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27b7593 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d221ba nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf641342d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96381e6 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc925a7 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x0bc78b81 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x003812de pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03cc12d8 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aa9ddad nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x121133e9 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x179886d7 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21dbc498 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x224910c1 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x277c85c0 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28ded09a pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a5aa5fd pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32a00f36 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d3b224 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33022e23 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x351005ff pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35bccac0 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x362fa0bb nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39886ed9 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39a02542 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39fb5260 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ab6f84d nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b39bda7 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40919a4a nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49efbce5 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x551453cc pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62fa0b4a pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fd46208 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72097430 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73928666 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e8a4130 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f1b7c5a __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e7db51 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x843074ca __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bdb650d nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ccb37ce pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ded13ad nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90f0eec1 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x918b62aa pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9db690b2 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f396c0f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa18a6892 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa34c40a0 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa552dd00 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9610ddc nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa98c7081 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf6ae9b5 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21fe697 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3a197ce nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb93ac3e2 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba212245 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc169a499 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc61672b5 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc86a1f52 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc968cfc3 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdc864e4 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcebf3c0c pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcee66332 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf4bd8f0 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2905afa nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd29d8301 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9da6a6c pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc53db81 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde2503cd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0471e9a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5e309ad pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe759a8ad pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0d7da54 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1e016ea nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf908e406 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff14d60d nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0af7f509 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x90e37d1f locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf76efe52 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8262f66e nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe6897f69 nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x096f5d8f o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1031983e o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x60fff786 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70d51174 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 0xb105fab2 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 0xd021b651 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdca99a45 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2c5dcde1 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4692c065 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6dc93227 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7b6f241 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbefa9dbc 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 0xf835a005 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x302f3762 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x50c9a444 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x66a750a4 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0xfb37de58 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5309a00a _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0xa0992932 torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0xbb677383 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch -EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch -EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch -EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9c6ccb5c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe00a6b06 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 -EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5eff26f7 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7232aa2e lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x299252e8 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x37a6eb83 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x61a38015 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x797db5f9 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x932f6de1 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xa55d9621 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x01bc04d8 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0383bdb3 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x175836df mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3aed8cec mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x4b98ba3f mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xd0a0c4dd mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0xc6e5ec0a stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xf4367d8f stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x07c88607 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xbd8dea6d 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 0x6d6a7a30 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 0x11fd514c l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x28de574d l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x31707551 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34e988eb l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3ead61ce l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc8e4f80f l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcd9a4e35 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xec4014ea bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x5ea897dc hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x26bf6bd0 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x349b01fb br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x38028358 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a17cd7a br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5c1f3583 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e9d7ed5 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5eba0ce5 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x635c8d32 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x740a9025 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7783019d br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e028a27 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x90828837 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b07a4bb br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc248696d br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd97ab4f4 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdad91544 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf333b80f br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd946af1 br_forward -EXPORT_SYMBOL_GPL net/core/failover 0x9f7aa023 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xac080ebe failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xdc2e31e9 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x068c3b5e dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d3171d4 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4bd978 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fe1e275 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x154336dc dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x173e3e00 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b482a95 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f0417b1 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x234d3318 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2773d4f2 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3032788e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e61c1d0 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42b629b2 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x50c2bbd5 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5af1cef1 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d03012c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66ebad30 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ca97018 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e742ae2 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e9f343e dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80057428 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x839c7939 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x94ba9522 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x960339f4 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c8d037d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7b65a85 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb74a7b72 compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf11f20b dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc33228b8 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc4a4943 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9c61c14 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee2b91e3 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf25802f0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5cec11b compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaebc709 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18fbdb3d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x20d0c344 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3969d132 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b0aa65c dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7ddbe4ca dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf6db1896 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31ae065f dsa_defer_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3e241810 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41e01054 dsa_port_phylink_mac_an_restart -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x43b8c5ce dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ff30d32 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x748ccdf3 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76c19c3b dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ee5a8a8 dsa_port_phylink_mac_link_up -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x807f4991 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86c2be56 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ca0f2cb dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x922a746e dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f7aa30b dsa_port_phylink_mac_link_state -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7d8b0e0 dsa_port_phylink_validate -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdca9690a dsa_port_phylink_mac_config -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdfcd734f dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe69fb054 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe98110d5 dsa_switch_alloc -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe9cff416 dsa_port_phylink_mac_link_down -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5814a59 call_dsa_notifiers -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfae33223 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x165a977f dsa_port_setup_8021q_tagging -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x86743892 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xccec0f5b dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xfbc3680e dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x65a613f1 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x850ab880 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8f8cef24 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa6410acb ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ife/ife 0x29aae680 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 0xc4184771 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x27847d0b esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd6db1d5f esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe82ce9b7 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa2ddb894 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe3b5787d gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x177762a4 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4e677a4d inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c3fe681 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x674298ee inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x86a114fa inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x88885193 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa915b1b6 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb58d7cc7 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfbcc8dcd inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe4c93634 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0b3e7be6 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x135db667 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x152c343b ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17cdd1e3 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30bfe2cd ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3bbaa9ab ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d7dd590 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50c8a50e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x621a8b9b ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63840a32 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64212541 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7757feb9 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ec76853 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa1254769 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xada7893d ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc24686f4 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xaf1c0642 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xff39b2e7 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1d74088d nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x96ac563b nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0e5de1e0 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5be190c6 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87f2d093 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe0dc56b1 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4576327 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x8477c75b nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x213c0af2 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x268714f3 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xffca42e4 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbb881bc3 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xc037ac49 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0eb2f2cf tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c402dde tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x485f5f8b tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa5a25774 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcf21206d tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x18890e64 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x31ed03c3 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5fd88703 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86acb36a udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9db6422f udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb779801d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf1e9def3 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf3a72dc3 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7b084f67 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x86bbb587 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x97796f0c esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x50c85a62 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x612e30bd ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcfb04b01 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa1a1f717 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xaa2ddf3c udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7c17ca6a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x98c4f027 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa5e951fe nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xaab51d34 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0cb81ecb nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1383a4fa nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2139a002 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8fbe4b91 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa6d130ef nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x03106632 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4bfb4885 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8a00cff9 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xeb6e3da4 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x40eba7a9 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x97e303d5 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08b0f713 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26140cef l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e84f2cd l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3367fbe6 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d09996b l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51366b18 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5abee217 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b64b953 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83cb125b __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89c3b136 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2b3b419 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa32e8b77 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xada54a05 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc7b97a89 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc410838 l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7059656 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xebe1ffee l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2ea0fb6b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x046aa079 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x133b9dbb ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bfddb25 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x210aee44 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40322df6 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x464a15fc ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5b3c0ef2 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c3b2569 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5f28b6e7 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x64b7c56a ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8377387d ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85930789 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91437401 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x982bcbe3 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6e65c3f ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9717b1f ieee80211_iterate_active_interfaces_rtnl -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0826efd3 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8f93d3d2 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa4342e52 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbbfafe57 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbcf992d1 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0661dbc7 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0afcd935 ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x10fe5836 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x139ef4ed ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x237bfe86 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25596d34 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2bc35bf3 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x380d47be ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b37f1b9 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f29d7d4 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4992271b ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62c8fdc9 ip_set_elem_len -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 0x84da75fa ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95dbb6b3 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x965f2286 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb667743e ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc11c7e4d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb64ff1d ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x27df8607 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x86c60275 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa12b65c7 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf302fb80 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x29219ee0 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x496b227b nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x850a8987 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9df970ef nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfb916c29 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0418e6c4 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x055d331e nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05996ac2 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c909b7 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x093514a0 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b71e82c nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d1e5327 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ea8d688 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1364b6f3 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1643bedf nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x190e0312 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c7d4b53 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27b78273 nf_ct_get_tuplepr -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 0x2f9f95a5 nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34635c5b nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34cb4045 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3744426f nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d52696c nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f244a7d nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49201a72 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b061fe7 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ebaf25e nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555df7a7 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55d6b4d3 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55ed9225 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x589f891b nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d030183 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f77db0f __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65686e82 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x672552b1 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cbd698d nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x703630f3 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7307a985 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x758f3565 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x778a1458 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79310ab0 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e626b5f nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x852d2536 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8537ddfc nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x897f2933 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8da107c9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e2bc6bc nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93d0e8e5 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96833097 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98f9a09c nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cf11326 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e12c6ff nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e85db6d nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7b3a74b nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7caaec2 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacc507b9 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5a04835 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb82104b8 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb99245cf nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9e016fc nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba77545b __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbef7a997 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf946b2b nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0298a76 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc29b7fa2 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5aa77f0 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc621258a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca48564d nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbbd447c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc0df527 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd181273f nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd31768cf nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5c77334 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6d867f6 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd778bb00 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdec1771b nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfe6fe42 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfe9286a nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7bdaeef nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebc36c6d nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecce860f nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed05b0aa nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf45e49d7 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8121e61 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa77f706 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfca66dcb nf_ct_helper_init -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 0x8b16759c nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7d3881ad nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x02fc7493 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c598b5e set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0eab5cb3 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1bc41c52 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x24b4ac1b nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3104f693 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a74dc5b nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x967c296b nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x967ee488 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb1d258d9 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd05eed1e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x956d0fec nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0984ae66 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5350bc5f nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7aaf7936 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeeb2eacc nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x055b9006 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x073b6467 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09eeb987 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x125f37e4 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x28d8a990 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4364f03e ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca87e7c3 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe8ca683b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xae12f44c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2c375fbb nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x444646ef nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe1e32a96 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2cee28dc flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x348f57be flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3523ca69 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7220973b nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x891157a3 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x93744ce2 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaeff61c1 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd91da383 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9405e3c nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xddc2fe30 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xea077cdc nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef6afefc nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x00625b6d nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x385eed91 nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7b7819e1 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7e768a31 nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa6233836 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa693b744 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c81696f nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2901164b nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x296f39d0 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2daf12bd 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 0x3f257f4f nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3fcb8af1 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a58d7fd nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a271bf3 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8cbd6971 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9043eb0 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4a7ab67 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb938ecb7 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0842203 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc71927eb nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe71637fb nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf204a302 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08a6284a ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x33c58fe1 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x41b5c886 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6adca2a7 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8422ef43 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8d1f4987 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 0xd8c12cc0 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe2369aef nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe287ace4 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe84b8ae0 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe8fabceb nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0005d6b2 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01534cdf nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cb97776 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e50e07b nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1150fdfa nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14d3a010 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17c58069 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a0777a1 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1de39517 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38695b75 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42ea1980 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45b83d3a nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46fecd32 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4de464d7 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e4dbb2e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51a284a3 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x589b1580 nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b78183c __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b874675 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6204139c nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6402b389 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x689ff40d nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f37ac05 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72acd663 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x847399cc nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x867d2cff nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92b015f7 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95c3242b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95d7a2ee nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9faf40de nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac1cf557 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb810ea61 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9721a1b nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd11f0630 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd296927b nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe503ae3a nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6dddf27 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf40ae53d nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf427dff6 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x13a411c0 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x847c3936 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x95ef7e70 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd4370215 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdc0758cb nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfcdf6682 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0b3379fd nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x72a4c570 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7692a263 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 0x45f9bf06 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb43bed72 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x275d8ded nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x29bd880c nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xda7a29a5 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe21feaa1 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3cd4cc05 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdf66dcb3 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xff3cbf2d nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x125a7872 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a4c1f1a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x210da005 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x453427e5 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x470af30e xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b94097a xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x555ee53b xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58490c01 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78b4fa91 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7cd2723d xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x84849456 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9776f123 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc60ad64b xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7430eb9 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3b69862 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb43dfb5 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3bf02d3 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe7266f63 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb2344d8 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9b403a7 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff3566c8 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff4ab124 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x79ff20b3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe9309ca6 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x353d9c65 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa14e8f1f nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd0847a81 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x05228405 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa2c3a406 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcfd0b413 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x97f0e075 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xb4af7d54 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x182ab62a ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x341ff641 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90baa590 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x91ad24d8 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc3c677b7 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef8fac35 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x6d4d8231 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xbeec3a5c psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xd8f905fa psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xe70d35b3 psample_sample_packet -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1132f3b9 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x15010ebd rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x2836124d rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x44448b72 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x45be5aa6 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x4a1c4874 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4ae3ddf4 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4de0c938 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x50c83aa0 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x518a79a2 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5ae5f26a rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5bcc1633 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x6215fa93 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x63a2a184 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x709ff4fa rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x7484a905 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7547c944 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x81f40590 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x83d1f0a0 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8dad1501 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x94381627 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x97f9ed7e rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xa75af7ee rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb6130c8b rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xc055b9f1 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd988542b rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xdb23aa18 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xf4e8f77f rds_send_xmit -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0acacef4 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x48845baf sctp_for_each_transport -EXPORT_SYMBOL_GPL net/sctp/sctp 0x63f1231b sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x653f3ab0 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x02e21bf1 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x220c1737 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x4084addb smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x535ffd85 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x5615e07c smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x580f38d3 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x95803963 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xc26365ff smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xc4cd249f smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xc631bd68 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0319ae35 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 0x7b102e60 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x84d346fa gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x875b0c21 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0143e01e rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x014b4283 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01997650 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f3cb5f rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02739d49 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029dd1b4 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032b4adf svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03918cf7 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b38856 csum_partial_copy_to_xdr -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 0x06fdc243 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e49ff5 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x085b8e50 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf3bff1 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cde2811 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e7acc36 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134728f6 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14873812 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x149490f5 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a7f0d3 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165a73ff rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x172a302e rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18455bba sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1875fde4 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e7cedb xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a617c54 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ddd2563 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de789e6 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2ddfed xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20047827 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x206a922d rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21358870 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23be0e37 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24382e4d xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289014f1 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab41a7e rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2acf3500 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bd6be5a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1e8482 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e59ada9 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32cb1576 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x333f50c6 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334264a9 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3559e6df xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a92b9d xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x362a87d3 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37551b49 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a0a01c svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399806b8 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d080f8 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ad97587 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c78403c xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ceb40a7 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb96224 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f90af9f xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3faca226 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x411762de xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41389b85 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4415aeaf xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443bdd46 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x457fd374 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464156dd rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46cc7f3f xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4829bbe6 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49eff29a sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0c94c2 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b249a2c rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b594687 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e4614ca xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f124e05 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb25208 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x509de108 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ad1ce8 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5138241f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52d4e8ea xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5376d63a xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53cb1965 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b730bd rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c3ee27 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56280402 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56cc58c3 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ef2484 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58953ca2 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59a0a71c svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae4824d svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1c1272 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b261b51 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c102e79 svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cadb057 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5daac57c xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9fd6c9 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61303db6 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x645cad69 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b2b5f7 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660ee02f xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6611ba69 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a51498 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66bbc91c auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6710c54d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689e19e4 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3b65b5 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba417e4 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c4adc65 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec641bb cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706f2651 svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70949c19 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f6e6c3 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7187a9ff svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72bd2da6 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x738ea971 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a47fe8 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f2c343 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744c4375 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74eddef4 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e2f6c3 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7805c74b rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x791b4d77 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79358067 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x798299df rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f3cde5 svc_rpcb_setup -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 0x7bc61aff xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7efcde73 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f83b77f svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ffa7c94 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8162c91c xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840a20ea xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8434451f xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x843a5e48 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849800e3 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d63afb rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86486d4f svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88596bd9 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887c589d rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88fefce9 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bcf46a rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b7f6874 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db1649c svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b1f59d svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91625dfc svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9207d228 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9223c661 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9373c575 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9399f0bd xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964d9479 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c86a68 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9744c380 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b0880a svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99536c32 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2e8c21 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a3cd05a rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ae09df7 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c075fc9 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf85066 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e264a61 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eea2b9f auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa196131d xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a7d08e svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2cd13e6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa509c094 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5124552 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c5f3b1 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6811e18 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7003258 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa807ab62 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9bda01f rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1d1424 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee82de4 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13688a1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20eb68f read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3daee34 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4753d2b rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4abac3e cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b74db6 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb622c428 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdac5f2e unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8d1617 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3513c93 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3b12b2d svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc676f177 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc711e5d3 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77e77da sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b50136 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81b4c96 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc967f989 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca69c715 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd8935ac svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce8e1016 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32c1dfe xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd584abf9 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6bb40b0 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaa520cd rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc348c37 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb21839 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde16ba4d svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec41e46 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf1b09ee rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf506f7f rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09a01fe rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1248f92 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe254d809 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2b65a01 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe38560d4 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e1c9c9 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c28db0 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8dc0a22 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97da2dc svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe990686f rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d8ea61 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb2b7a9d rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe7714d rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec305039 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec936fee svc_destroy -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 0xef89ff33 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefbceb74 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0878e1a xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41c1f43 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cc7f21 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf601c3ba rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88e2cc1 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89bbb01 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb96e77 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd099ea xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffed48e5 svc_addsock -EXPORT_SYMBOL_GPL net/tls/tls 0xc844f71d tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xca1b4b80 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x024988ae 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 0x09e905c8 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10f5da02 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c5ff8b8 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20dff2a0 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x233b36a1 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x250d7bb9 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28c5f50f virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x327cb005 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b355d58 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f200780 virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f5ef414 virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f8f4b35 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45937a7a virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b9abe0e virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c1fdaba virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4cd36ae2 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54162d15 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x558d37eb virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x57f90f7f virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e225f85 virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69f87509 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b07e91c virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b34c0be virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8bc04c9c virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c383959 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8fcd9403 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c7202d6 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4cd095a 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 0xbaf2e485 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbccad561 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd161bd89 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd46eb6b1 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdbe46fda virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4b1492a virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe86239c3 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08adf88e vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x17d97eb3 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1d516b03 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x511cf48f vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6b5334db vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f46f61c vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70172cb2 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71f1ef54 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75cf7520 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x78926f39 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b62802e vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6d8b3a7 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae8469ee vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xafe14e4f vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb27f9a23 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb803d613 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd99ec3b vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xefe95226 vsock_remove_pending -EXPORT_SYMBOL_GPL net/wimax/wimax 0x01ca2821 wimax_state_change -EXPORT_SYMBOL_GPL net/wimax/wimax 0x224c2f28 wimax_state_get -EXPORT_SYMBOL_GPL net/wimax/wimax 0x26e87422 wimax_msg_data -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2710afc7 wimax_report_rfkill_hw -EXPORT_SYMBOL_GPL net/wimax/wimax 0x2deeb22f wimax_msg_alloc -EXPORT_SYMBOL_GPL net/wimax/wimax 0x33446bf9 wimax_msg -EXPORT_SYMBOL_GPL net/wimax/wimax 0x4d8964f5 wimax_msg_send -EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b31f248 wimax_msg_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0x737a88b7 wimax_dev_rm -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa2e18a8a wimax_msg_data_len -EXPORT_SYMBOL_GPL net/wimax/wimax 0xa7a38745 wimax_dev_add -EXPORT_SYMBOL_GPL net/wimax/wimax 0xc14340d2 wimax_dev_init -EXPORT_SYMBOL_GPL net/wimax/wimax 0xe9adc4f3 wimax_report_rfkill_sw -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1bd649e0 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x25c7640c cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d11f94c cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3eac3999 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x468b4bf1 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x47abfb77 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4dbe62f7 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x500581ee cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a49e01f cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x90433530 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa328be68 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae95367d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd3806c02 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd42beca6 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe10e4bd3 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd285794 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0d06e98c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa03d995b ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa8f6ddbb ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd0401f9c ipcomp_init_state -EXPORT_SYMBOL_GPL sound/ac97_bus 0x471267e1 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 0x2a43dba1 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x2a84d733 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x42e278a8 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x47ea57de snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x5623fa3a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x69ec2695 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x992cacb0 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xb0bdc6f0 snd_ctl_apply_vmaster_slaves -EXPORT_SYMBOL_GPL sound/core/snd 0xb41bc530 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xd9d9cb72 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xf6b4f5b5 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x045b50be snd_pcm_stream_unlock -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 0x56812f2f snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x64bac9e9 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68fa9de5 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x91b6a1b6 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa060a8f4 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc11a7573 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd603859f snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf2aeba36 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfecfcf57 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3453ae9f snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x41efd2c2 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4338dcff snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4ddcebde snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56399e07 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa55a73af snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa89d7dd6 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb6c0f383 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd327adb0 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdff389f6 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf05a2f0a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb28103bd __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe782df7c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x02511ede amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4685bc77 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6f38ca9b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93655c2d amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x943d15e1 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xae6a4ca5 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xec549702 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x025851a5 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x033765f2 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05986b4d snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bc8a55e snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c06d924 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c4b94a9 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1bfb41 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1414d274 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1550fb5f snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x160bc5ba snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19dad897 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e9e68c8 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20959d71 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21662b80 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2190e95e snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21ba8d6b snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22d91956 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25ea4010 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27e504e7 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f92e4ff snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3462cecf snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b5bdac1 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b918449 snd_hdac_bus_exec_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c2af21c snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4422f530 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46ffb62d snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4710610d snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47e4bcf6 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d4d2e83 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f5ca21b snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a302200 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ccc4bf4 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea684a8 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x668aec4f snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dc9917c snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73b7bbc3 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x757e4c71 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7608aafc snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a3c6fed snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7afdf0ec snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bc491f1 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fad4ea6 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80588b1d _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82ab0707 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x844bc642 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x874ee2c9 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8940c660 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fa95e71 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9248cd36 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9292cbb2 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9528ab31 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4ff0f15 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9ebfe3b snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaefa019 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac68e55e snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad95a19a snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae9796d4 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb27dab1e snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba3d9104 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc91f87b snd_hdac_bus_queue_event -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe47a5f6 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0bc0f63 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2a8f4f5 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4d91cc5 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4d9ad85 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7200f8e snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9b807e0 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9788ab8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddf6d347 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf2b8a27 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0f243dd snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe124959c snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1a8383d snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2ed39ec snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe368cad1 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb778831 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec8772c4 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2a04f49 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6ec3fc7 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7d882c0 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb978b6a snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffaceaaa snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x6d1b9c84 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x369ce09d snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59c98567 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb21a9813 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd5c46fa3 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe6764440 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xff1d47c9 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00805c3b snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03f2bc4a snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0466b5ef snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x051ee4b9 snd_hda_codec_set_pincfg -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 0x0c7fd793 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cf3e08c snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff7e268 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ee3155 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12af54b4 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12ca3e57 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17d1b44d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19bbfd92 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e5ddac snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a253691 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aaf7799 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c315e28 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fb4f103 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f0ca5a snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245127e5 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24593336 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x279aba3a snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28abed63 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x307d23ad snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309ff2fa snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31ac5922 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x324bd419 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x326c4e5f snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34b9a2c8 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34cf0c88 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34d6bfc4 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34dd8e00 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3588ba60 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x384235ea snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40d7cd58 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41c8a2ee query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442a1ef6 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46d0b720 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47d13fb6 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49bb1179 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a878490 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b2bce86 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x517e1610 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x518d39b7 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5414cfbc snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5460578e snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5783a2a4 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59876327 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ad07916 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d39673b snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ea2c984 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5efc50fe snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f430393 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61db6e1b azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61ed634e azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65c25734 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69965c31 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6de9eb05 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec1accb snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7034402f snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74b94592 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78460c61 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x789235c4 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x793facd6 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7d69ab snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da2fde3 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed04bfc snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x843f5aab azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84ea95a4 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86071b2f snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cb937f8 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fc3bf34 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fc7f5f1 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9050eb5a snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91423d43 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92347274 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9474e83d snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98665233 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa016b234 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3f4a1c5 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7d98052 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa83078a9 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa87a5a12 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa97df0cf snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaae1d810 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf8b0a78 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b1142c snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0d40e4c azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb12da77a snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb53e74c7 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb624e9a9 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8434ba6 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbad1d26f azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe114c86 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe17cd67 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc050ed81 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc37c4dce snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4d6e2d7 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8003d9d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc869b678 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8c0701f __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9e455dc snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb06d98f snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbe11f9c snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcddd0e2e snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0856396 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1e83073 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd236891d snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6c4cf30 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd864f1b5 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda4ed6c8 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd81d281 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe365f0c7 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe82421b8 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa2f883 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf037fc6c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1dcea30 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5e5aa96 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf71dbb13 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7da524e snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf803869c snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe1210d3 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x004b78eb snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16a2fca2 snd_hda_gen_add_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2057f4d5 snd_hda_gen_reboot_notify -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x256f7c01 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x343804ec snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37f3abc0 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3c401e83 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3cdc489c snd_hda_gen_fixup_micmute_led -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x420c185e snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x493e83a4 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f20750b snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52d2c007 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x534cc532 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55af5792 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ae3a49a snd_hda_gen_parse_auto_config -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 0xa4c49293 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa57f0289 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa394b23 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb73f135e snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd083463c snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2d4b3c6 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcd0df96 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4872876a adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xbb6c6971 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x09fcb2e2 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0e0cf4b4 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x35ed6b35 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5bee4b4a adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x620e7efc adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8ca000c7 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8cf1d8e5 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc3bc3ea7 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdd1e09c2 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf82e4e43 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x37eb79a8 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 0x9ff22398 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7c517f91 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x841dd8d9 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8a91493f cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9384f5ea cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9e7bec11 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x155a7672 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6a0d6e87 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-cs42xx8 0xee7fb248 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0bc40e8f da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb0e535c0 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfe221da4 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x41c22584 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x72b4b827 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x11da438c hdmi_codec_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x824020de nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2f676422 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x38bd93e8 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x806edb69 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4d7782e9 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x87de7741 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x11dccff5 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xd1f8ba8e pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x135cf139 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x14446543 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8bedc1e5 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb1d9869c pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x16447358 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x473aeaca pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x607c6a75 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe2aaa7c1 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc -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-rt5645 0x10681ec2 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x32398e94 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x167e1b11 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x545cb2d7 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x99e8c9d8 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9dea4cc4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe824a581 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x8a5c52c7 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x731633cc devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x023d30ae ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4480a158 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xfb57151a ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x13153e65 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x13bb013e wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xaa637b95 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdbc8446b wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x6d99f1c2 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x653f8c17 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x73f8740a fsl_asrc_get_dma_channel -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7942d7ce 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 0x13550078 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x220bc3fb asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3287f1a6 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x335b9a27 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c62fc68 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6ac9ea79 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7414f7f6 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x77730a78 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x96d445c3 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9b169701 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa2b85d87 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa8cbeb4e asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc03ee528 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc132074a asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda5966c8 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf18a5b4f asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7269cf9 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7ed27ac asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0191294e dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02e33ded snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0340951e snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e0c72e snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a04ed9f snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a33a6ef snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ab87eee snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1109ff88 snd_soc_of_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x130c7d46 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f840c1 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x171fbc67 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17928d1f snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4bffc8 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d2dd4ad snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d722f92 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eac669f snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b4b798 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22393a56 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27079795 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272977fa snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28543840 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28630cf8 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b8d54be soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c0694fd null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce9e7bc snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ed838eb snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x301ff6b6 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x323493f2 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36ac0d3e snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d9f549 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x379a81dd snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37cc9966 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d64cdf snd_soc_find_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39f1f7db snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ac19f02 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3788f1 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f7c0a55 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x407a5ca4 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42a6e162 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x458029f4 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45cd103f dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4789df36 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47a88b92 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47e918c0 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49f15514 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f8adf9d snd_soc_tplg_widget_remove_all -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51970cbd snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x521c8ebd devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x523b75a2 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52c2424c devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52d6237c snd_soc_dpcm_be_get_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x538fd9ae snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53c65c68 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55880e7d snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56738fed snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571226fc snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5716e81c snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a8c7307 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7a7b57 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d0c6d80 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d92831e snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f526fea snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608d4419 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62170e4d snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631fa9c7 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x654fa49e snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6569e67b snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68cca127 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bc10e99 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d597d82 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d5a9b80 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5223b8 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7261fed2 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73f06d92 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x743a4951 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74637b2c snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7472831a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7710fd2e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78b93224 snd_soc_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b323fc1 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f65386c snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f6bf2bc snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe920ce snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80362ffc snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x809efb12 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83012f01 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83bf99d6 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x844c19dd snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84e0d280 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ae67a9 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87082344 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb7fd49 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb03f5e snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9222f4da snd_soc_get_dai_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93763f0d snd_soc_disconnect_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9402fcfa snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x942c9aa8 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96cc92b1 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98125047 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9903d30c snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aede770 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b504f26 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d111ef3 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e7a98a1 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ed4347f snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa03e5da4 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0b0e789 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3ca4cc2 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3e53522 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa463c975 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4b0bf1a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6b858db snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6fad48d snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa755bc7c snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9df7895 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad232a45 snd_soc_component_read32 -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae245656 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd6b1c4 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0af9438 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbae70856 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbc0535e snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe8a0b5a snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1aea226 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc29ffd3f snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2c6840a snd_soc_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3413e06 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34659f6 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc429b820 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc43f9bde snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc450c9a6 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b66379 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc73eee7b snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd158525 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xced3c2a3 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcef8c368 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4307cc snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfe591a6 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1088878 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd16f53b2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1d359f8 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd28d2df4 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a4a726 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6872ca9 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8241799 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b10472 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf87c40 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcadbef9 snd_soc_tplg_widget_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde26b0bd snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde5abe8a snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf21cb36 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0b32d65 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2457bec snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe449365d snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe51c0651 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe61c6ea2 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe80bbfd7 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe94e0f16 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea32da80 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead5dc9f snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaffa61d snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec9482f1 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecce6768 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed3bea00 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf19b02fd snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6173911 snd_soc_dpcm_be_set_state -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffc255a4 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2ee5bd60 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x571cb2e8 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8c83af6e snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcafdc698 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x113665ba line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ea2b267 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x262657f7 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2bc34294 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x570e0ff9 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6ff0069b line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x722fc120 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7b13e8f8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9af22850 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa7d6d738 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8822500 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc7b0cad9 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdc388898 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe0ca42d5 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2fb6a50 line6_read_data -EXPORT_SYMBOL_GPL vmlinux 0x00095ca7 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x001c66d2 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x002b214a dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x00446a98 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00589ea9 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x00632018 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0093cb85 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x00952cf8 kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0x00a0f2a9 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x00a25b7c pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x00c714a6 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x00cd0ac3 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x00cf6cd1 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x00dfec13 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x00ef4b90 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x01289b2f regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x012a15ce skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x013a5cfc platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x016df784 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x017732b8 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod -EXPORT_SYMBOL_GPL vmlinux 0x01844280 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x0184f4b0 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018e195b bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x01cdeda2 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x01ce8ebc pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x01d99042 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x023379ee ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02655bc8 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x02705bc7 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0287b62e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x028ecec6 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0x029d7639 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x02b45785 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x02c51d41 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x02d4d4d4 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x02d502b9 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x02d788b8 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x02d7ebca of_get_dma_window -EXPORT_SYMBOL_GPL vmlinux 0x02e6469a component_add -EXPORT_SYMBOL_GPL vmlinux 0x02ef05e5 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x030bacad rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031370c6 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x03165183 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03242a08 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0339f912 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x034396c9 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0348c4f0 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x03532e57 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x03559aa3 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x03578557 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x035b3d33 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x036645c9 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x037d855f gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0383af54 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x038a74a5 pci_reset_pri -EXPORT_SYMBOL_GPL vmlinux 0x038b9907 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03abdcab shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c45971 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x03d01bee component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x03f5f8d3 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x03f75249 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0409fae1 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x041e8b10 xas_find -EXPORT_SYMBOL_GPL vmlinux 0x041ec506 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x04204d88 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x044e69ea bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x04659b14 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0467c0f4 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x046d18d7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x04744ae4 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049ca444 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x049de6e2 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x04a1d6f3 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x04b8c2b1 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x04bcd60c pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x04c1da17 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04cab2a2 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x04cdf8a7 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x04d154d1 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x04d3becc inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e54c49 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x04e70064 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x04f22c97 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x04f54f31 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x04f855cf show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x05005f7c pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x051b684b platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053105db crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x05319e86 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x0536ee11 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x053b2bfe pnv_ocxl_set_tl_conf -EXPORT_SYMBOL_GPL vmlinux 0x05494ab8 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056a89a0 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x0570634a ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0584ac1f crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x058548da __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x058a4e69 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x058e1571 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x05a5911f cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0x05bbb3d0 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x05e45d15 component_del -EXPORT_SYMBOL_GPL vmlinux 0x05ee7ab3 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x05f423b1 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x060c4223 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x060dc9eb dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x0618b448 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x061ae973 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x063aaf4b md_stop -EXPORT_SYMBOL_GPL vmlinux 0x0649bb8e cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064ec88b __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x066c3b7e put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x06814e22 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x06877b66 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x06901656 device_register -EXPORT_SYMBOL_GPL vmlinux 0x069d5034 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x069f4f07 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06a281f6 find_module -EXPORT_SYMBOL_GPL vmlinux 0x06a3d92e __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x06a674b0 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x06a7ec37 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x070c57eb __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x071a7e72 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07434f58 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x07575fc3 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x075d5564 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x07641b96 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0x07668dc9 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x076de290 static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x07714b6b list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x077a8e7d fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x0786ce1e crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x079715e5 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x07ad4bfa nvdimm_name -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 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07dc2718 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x07e4942d vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x07e583d2 i2c_new_dummy -EXPORT_SYMBOL_GPL vmlinux 0x07f1add6 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x07fbf3d7 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x07feace6 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x080ade77 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x080dddb8 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0815f968 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x08195748 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x081e7801 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0825249c bus_register -EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time -EXPORT_SYMBOL_GPL vmlinux 0x084573dd cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x084b4826 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x0850c81a tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x087118c9 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x087bd533 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x088de550 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x08903e1d inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x08912d74 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x08971896 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x08a58bb2 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x08b89bba devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08bc78e5 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x08c7105b rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08e3b4b8 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x090caf61 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0929555a crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x092c0e86 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x093a113f dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x093e7a7a get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x09535d39 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x09697f3c fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x09718bfd devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x097541a5 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x098b7ee3 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b54e6e tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x09cde107 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x09d2e7b8 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x09d53af4 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x09f25aa9 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0a08b04e pci_restore_pasid_state -EXPORT_SYMBOL_GPL vmlinux 0x0a210077 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x0a26f9f2 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x0a45b58c usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x0a47cb30 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a57cdfa __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0a5a1013 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x0a5eec6b devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a82a6ef path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x0a8dbdf8 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x0a8f3638 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0a9d7e29 pci_enable_pri -EXPORT_SYMBOL_GPL vmlinux 0x0aa38a99 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x0abb7776 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0b00cf49 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b09e040 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1fae58 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b45b268 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0b5c1b34 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x0b64e680 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x0b667dce i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x0b77f1ec crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b91b40f copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x0b9382e6 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x0b971009 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x0bb0e00d xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x0bb78ba0 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x0bbe1e23 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x0bc1859c ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x0bd0ed30 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x0bd5b017 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x0be74755 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0bea420c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x0bfa15fe page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x0c0b7f1b vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c0e6c43 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x0c1f0a1b __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c39d375 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0c3f95b1 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset -EXPORT_SYMBOL_GPL vmlinux 0x0c7d398a lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x0c85eb2b perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x0c885a8f i2c_dw_read_comp_param -EXPORT_SYMBOL_GPL vmlinux 0x0c943e61 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x0ca71896 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cd1d200 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x0cd5bdf0 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x0d15ab3a cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x0d18ee18 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d26aefd blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x0d3a1e75 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4a0f9f crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x0d591cff PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x0d9670a1 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x0daa735c nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x0db52d48 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x0db5999a acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x0dba8084 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod -EXPORT_SYMBOL_GPL vmlinux 0x0dc76176 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0dd72dea __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x0dfceefa sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x0e081379 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0e10998e ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0e1b7232 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x0e227202 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x0e2b0e9d eeh_pe_set_option -EXPORT_SYMBOL_GPL vmlinux 0x0e4cfa51 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0e73d679 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0x0e746614 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x0e7577f9 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x0e85d558 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x0eaf6393 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0edc5bbf crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0ee0fb98 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr -EXPORT_SYMBOL_GPL vmlinux 0x0f00dfb5 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0f3f48d5 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x0f7ed9ba regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0f8d95bf regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x0f8da66c devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x0f9e2418 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x0fa1e01a uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x0fab60f8 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x0fbf98ae of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x0fcf0fa6 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0ffdc8b4 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x10067b68 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1023aa55 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1028ec43 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x102e9d62 __xive_vm_h_ipi -EXPORT_SYMBOL_GPL vmlinux 0x10403a5a rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x1048c5a7 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x104b39f8 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1052b162 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x1054d594 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1062cfed netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x107350d0 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1078f29d paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x107b5874 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10a376e7 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x10b51f3b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x10c3217e param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x10d9ab29 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x10e77a5a __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10ef7b91 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x10f79964 srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x1107d1c7 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x110ab689 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift -EXPORT_SYMBOL_GPL vmlinux 0x1114bb75 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x1117e5e5 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x11269f62 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x1126eb6e irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x11565c81 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x115d5fff blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x1161a5df perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block -EXPORT_SYMBOL_GPL vmlinux 0x116ffacd __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x118aeea4 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x118e6dbb power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1195d140 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a6c77e of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x11b41193 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x11c21657 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11cbca47 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x11df1fce inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x11e5d47f of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x11eedcdc __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x120920e7 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12382849 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x123ab832 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x12499287 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x12591c60 blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12692a08 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12861444 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x12915fd4 user_read -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12c207f2 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x12cd7b4a mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12ed0c2f gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x130a4040 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x130faf50 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x131218a8 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131dc953 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13418f5a crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x13512b02 flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x13539266 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x13580143 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x135a86a3 mm_iommu_is_devmem -EXPORT_SYMBOL_GPL vmlinux 0x1361478f fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1375bc68 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x13819e37 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x13895d16 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0x13b9d9a6 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x13c86659 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x13ca899a perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13caa58c edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x13ce262b subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x13e17554 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13fde345 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1405fb66 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142d01d7 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x143d4c1a uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x14457fb9 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x144fafaa serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x14513e2c is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x14615e7a sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x146462d6 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x146a3989 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x14856544 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x148d5317 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x14bc3187 pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x14d0c907 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x14dd306f ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x14e0a594 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x14e20ce1 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x14ebd4ab pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x1507329c ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x150fa881 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x15106b04 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x151483a0 pci_add_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0x15336e34 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15441842 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x154503e4 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x15487673 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1552c709 hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x15552db8 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x155a7262 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x155f0724 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x15690223 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x1569b5ad blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x15734911 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x1598dbd1 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x15bc4e04 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x15c20bea devm_mdiobus_free -EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x15c2d37d iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x161b42de syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue -EXPORT_SYMBOL_GPL vmlinux 0x1656c000 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x16679e59 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16876a92 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x16ac5f42 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16bccb81 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x16c90d22 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfc911 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x16ea6e3a inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x16ece9af tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x16f14d8c phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x16fea399 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x170188dc scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17264558 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1732dddb crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x17337bdd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x174c37b0 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17541705 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x17594e61 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1772a469 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x17731c8e regulator_lock -EXPORT_SYMBOL_GPL vmlinux 0x17782eaa devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178f66bd rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17b10214 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id -EXPORT_SYMBOL_GPL vmlinux 0x17c8589b platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17dcfa7d __xive_vm_h_cppr -EXPORT_SYMBOL_GPL vmlinux 0x17eee87a xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x180f83a1 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x1811a69b elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x183753fa switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x18575448 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x18660163 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x186c1bca adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x187d3c02 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x187e18f5 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x188410a0 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x1886d919 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x188a1133 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18a0b934 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x18a11e56 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x18ae44fb platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x18b30657 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18f79448 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x18fa0adf pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0x19062d8c thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x1914f28e rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x192526cc find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x1929bb7d tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x193a4722 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x194e182f tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x1951b5ab raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x195720d1 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x195daef1 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x197be879 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x198a9e2e dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x198b6717 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x199cf6ba unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a64259 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x19b351ce __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19e43594 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19f0e370 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x19f6dd83 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x1a085bd0 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a15c19c device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x1a188862 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x1a1a55f9 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1a4931a6 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x1a5405ff iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a5b5a1b hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x1a5c5cc1 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1a5c8d08 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x1a6ad111 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a7c8152 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1a9cf069 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x1aa2e7d8 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x1aba6e49 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1acc01af devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1add6a1d freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1ae66eea mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x1aed791d gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x1aed98a8 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b020fdd ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x1b04c0ab fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x1b06090e sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x1b082410 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state -EXPORT_SYMBOL_GPL vmlinux 0x1b329b25 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b784245 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x1b7cc3bd netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1be55ea4 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c45532a extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5940a8 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c6103bf __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x1c6c23de tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1c73bcf7 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1c757977 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c896876 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store -EXPORT_SYMBOL_GPL vmlinux 0x1c8f4548 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1c980b22 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x1ca366a2 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x1ca593c6 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x1cb2427a sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cdd4e13 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x1ce9931f badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x1cf31b6b netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cfec6fa regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x1d135cf4 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x1d14d7db pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d46112c __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1d4d1e63 ata_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d91ac89 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x1d930c0d sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x1d96c536 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x1d9721f3 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x1da06a9a thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1db533dd power_supply_set_input_current_limit_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x1db8ed05 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x1db9a794 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x1de28fd1 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1de334b7 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x1def3662 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg -EXPORT_SYMBOL_GPL vmlinux 0x1dfeea57 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1e2775b8 __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x1e2b2908 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x1e3adb01 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x1e3e66f5 pnv_pci_get_slot_id -EXPORT_SYMBOL_GPL vmlinux 0x1e432c3b pnv_ocxl_spa_setup -EXPORT_SYMBOL_GPL vmlinux 0x1e44c66f i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x1e44e7b6 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e79741d ping_err -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e9e31c9 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1eca9f5e ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x1ed0399e of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp -EXPORT_SYMBOL_GPL vmlinux 0x1ee1bd9f gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x1ee21b43 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x1ee3dd8a device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1eed7506 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x1ef6ec10 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x1f064c17 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f1975ec __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x1f20f32d virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x1f25a86f serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x1f406cc9 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x1f4075b7 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f46c400 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f79e0ec pci_restore_pri_state -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8c08c9 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1faca45f tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x1fc02a1e of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x20051450 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x2008407c usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x2017f2d9 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x201d303f cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202e49cf of_dma_get_range -EXPORT_SYMBOL_GPL vmlinux 0x203230f4 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x20399c0e __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x20637050 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x207715d6 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x208059d9 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20a7d5bd input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x20aaa830 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x20d138cd crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x20d7b56e rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x20dcfbae serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x20e277c9 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x20e96966 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x21036d88 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0x210b1c8e crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x21107ae1 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x211f1c25 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x212eaac8 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x2156afd8 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x216b352d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x218a7fca task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x219275d4 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x21932d65 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21ad00d1 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x21bb3d87 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x21bde6e7 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x21ca5b2b blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d589ff cec_notifier_get_conn -EXPORT_SYMBOL_GPL vmlinux 0x21d78b12 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x21d7f8b0 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x21d9d4a1 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x21e370eb serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x21e7710c fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x21e93321 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x21ec0b0a da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2205d8a6 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x2207dfbb rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x22110f95 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x22166f62 mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x22313bab __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x223e8fbe dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x2274fdb5 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x228939f1 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x229b0eb9 devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x22b6e60b irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x22b9f922 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x22c082dc usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x22d016cd device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x22d8e956 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x23040294 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2309cac3 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x23166e05 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x2318d389 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x231c202e lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x23246bb1 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x2331ff71 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x233be008 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2344a64d of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x235b06d0 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x2376f2f5 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2388d5cc led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x23943ec2 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x2398da55 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x239a6467 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x23b8ab67 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x23b9d4da __tracepoint_vfio_pci_npu2_mmap -EXPORT_SYMBOL_GPL vmlinux 0x23bb75a0 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x23bfbe44 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x23cb88d8 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status -EXPORT_SYMBOL_GPL vmlinux 0x23e0c320 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x23ed09d5 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x23f2f248 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x2402f1d8 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x24426409 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2450fa63 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24700f6a add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x247954d3 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24856ef7 vas_tx_win_open -EXPORT_SYMBOL_GPL vmlinux 0x24a2455f dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x24b2436f tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry -EXPORT_SYMBOL_GPL vmlinux 0x24c294cf irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x24c4c31a governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x24c60fd3 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x24d206aa kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x24e6205d pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24fae957 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x2506c9a3 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x250af3f3 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x2524c079 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x253abbad l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr -EXPORT_SYMBOL_GPL vmlinux 0x255f7d65 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x25667ce7 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x256c2946 eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0x256eb536 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x25823cdc kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259af3e8 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x259af7a4 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25a7d183 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x25c14ac1 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x25dc0985 kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0x25e6ce0d sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x25f8b6d0 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x25feb242 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2604a09a srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x260aa0d6 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x261755f8 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x2623549d usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x26459724 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2674f931 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x267bdfd8 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2687f48f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b4a7cf set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cbac86 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ef6484 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x26f3f89a spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x270e4b4e dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x271b77a0 cxl_afu_get -EXPORT_SYMBOL_GPL vmlinux 0x27277fd7 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27376751 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2739ffd4 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x273a292a fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x273c8b5f dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27607e01 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x27657645 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x276919fc spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x279003ee freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x279bc5fb crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x27a0c0b0 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x27d329db regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x27dfb26f devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x27e4cbac extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x27e5f357 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x27ec40b7 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f71d87 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280dd8ca crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x2811f7a6 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x281d0458 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x28291383 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282e5919 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x28592cd0 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286a3dd3 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x286c3771 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2873e266 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x28780e8e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x287980c8 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x287ee943 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x288524ff uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x288c1d27 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x288dba31 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x289b3f0b bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x289d27c9 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x28aa12e9 pcie_bus_configure_settings -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 0x28b6be33 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x28bbeba7 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x28c182fc spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28cd339f virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x290b17ba pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x2924903d regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state -EXPORT_SYMBOL_GPL vmlinux 0x2946a115 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0x2964e55e fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x296b303b usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x296de113 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x2986e853 iommu_tce_kill -EXPORT_SYMBOL_GPL vmlinux 0x298db1e3 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2991ceb1 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x299b74b3 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x29a6192d phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x29a90606 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page -EXPORT_SYMBOL_GPL vmlinux 0x29b467f3 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x29d69ff6 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x29d968b4 dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x29d9d429 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f901fd spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2a041b8a ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL vmlinux 0x2a1c9b10 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x2a2388e2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0x2a44448b crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x2a4ba2da __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x2a521403 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x2a53f7b9 init_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x2a63dc29 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6ca94a pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x2a6e1330 eeh_pe_state_mark -EXPORT_SYMBOL_GPL vmlinux 0x2a7dab07 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2a80b526 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x2a8e8c77 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x2a94b1c6 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x2a98ee8d check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x2ab15958 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2ab80a8d sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x2abc639a eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x2acb86ea usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x2ad4e5e0 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x2b048a57 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id -EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b238371 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b24963c tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b31cf9e sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x2b353582 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b481f5d i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x2b69dc82 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x2b874924 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x2b8c78f2 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x2b931041 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x2baa3f9c blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2bb6067c crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid -EXPORT_SYMBOL_GPL vmlinux 0x2bbb1601 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x2bd89f75 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2bfbd2d3 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2cfa7e mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c43aeab dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6ef223 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x2c6fb4c0 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c86d7cd __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c94c406 devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2c95d8ce __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca172b8 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2cb285d6 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x2cbee563 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x2cd267de skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send -EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2cda1003 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x2ce09f34 kvmppc_check_need_tlb_flush -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf90d6e rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x2d073cfc dm_put -EXPORT_SYMBOL_GPL vmlinux 0x2d0f738d handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1bb648 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x2d1eb832 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2d2269d9 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2d29e9a0 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d622c1d fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x2d69578f vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x2d78e3a5 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2d7efc66 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x2d8634ed usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x2d8c371c gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x2d9df220 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2da3e863 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x2da613ef driver_register -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2dd02d76 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x2dd5ddad bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2ddd2935 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2df326b2 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x2e0a585b tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x2e122141 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e28ec3a usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x2e2b36e5 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e33f938 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2e3eb545 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x2e4f2e40 pnv_ocxl_map_xsl_regs -EXPORT_SYMBOL_GPL vmlinux 0x2e51d703 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x2e76237b spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open -EXPORT_SYMBOL_GPL vmlinux 0x2e8d905e serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x2eba3590 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebc159b mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec7db9f tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x2eeef870 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x2eef5666 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x2f03c5ad trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x2f0431d3 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x2f09d753 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f102052 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2f1255de ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f31faa7 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x2f36e8af vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f50e8cb __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2f58ea40 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f886522 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x2f91095a disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x2f914ede find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x2f92104b nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x2f9f8369 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0x2fa229e4 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2fa394c1 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2fac1253 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x2fafd54f pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x2fb61674 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x2feb1304 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3010faa6 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x301a563d bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x3024bf6d netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x303bc8f2 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x303d68de wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x303fee87 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x3058d97c sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x306f5576 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x307555aa map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x30759649 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x3099bbdd device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x30a937ba debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x30c1a0e9 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x30c1dad1 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x30e3851a ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x30f6d125 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x3105b407 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312b2aa1 sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x312dc4ec strp_init -EXPORT_SYMBOL_GPL vmlinux 0x31511906 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x31604c08 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x318b1a12 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x319f403d regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31ad1739 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d4045a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x31deaced bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x31e07a26 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x31ec931f dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x322302df wm5110_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32362c50 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x323e8ed5 generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x324d302c ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x324ff2a8 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x325021ef crypto_shash_finup -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 0x328e285e mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32adb7c9 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c59ab6 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x32ce96a5 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x32d1dab7 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x331a490a ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x33396e93 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x3347f535 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x3348ba1f stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x334ff832 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x3350cc8b ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33744569 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x33877c77 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x338a12fc iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x33b03c06 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x33b446c7 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x33ea1c52 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f1b691 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x33f93596 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x33fa8f3e iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x33ff6e22 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x341c1610 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x34406a40 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34526426 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x3492ab1f dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x34a4b71b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x34a795a0 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x34b80e08 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x34bc0565 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x35010a92 pci_prg_resp_pasid_required -EXPORT_SYMBOL_GPL vmlinux 0x351615b8 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x352ff729 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x356abeb5 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x35741a80 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x35778b5f ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x35836ae6 device_move -EXPORT_SYMBOL_GPL vmlinux 0x35875888 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35903583 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x35a0f297 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x35aa8b74 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x35ae8986 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x35b323c8 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x35c80d36 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x35ca091d crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x35eb7c11 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x35ee6444 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x35f31c54 arch_set_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x35f39ccc xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x35f93b65 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36152904 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace -EXPORT_SYMBOL_GPL vmlinux 0x3620aa93 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362a987c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x362e897f inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x365a517f xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x3662748a to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x368c4a97 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x368d364a regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a15782 cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x36a44362 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x36a7f456 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x36b8f47f led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x36d8a479 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x36ea382e ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x36fef02d ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x3711e774 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x3729b74d regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x3730b02f skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x375bee7b device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x375e9bd4 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x376ba44d nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x3771ad59 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x37741fe0 pwmchip_add_with_polarity -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37951f85 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x37972701 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x37a4483f wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x37b297c6 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x37b77739 save_stack_trace_regs -EXPORT_SYMBOL_GPL vmlinux 0x37bf5bdf pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x37c0dd39 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x37d5eaf0 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x37dc61e5 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x37e3935b scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x37ea16c2 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x37efbf8a ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x37f249cf gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x37f66dd6 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x382ec4dc sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384340bd fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x3843cfd5 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x3853759b irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x3860c560 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3868699b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x389dcbed ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x38a85a10 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x38ae6465 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x38b402a9 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x38ba1ffa cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x38c7e0c4 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x38ca8efd key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x38d0b8e6 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x38d2eeea nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x38df316d of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x38df34e1 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x390a432c platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x3917388d __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x391e31a5 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x394c5199 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x394d0d29 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x39723ea1 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x397cf4df synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x3993fa67 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x39994d2b rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x39996697 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x39a5fe41 arizona_of_get_type -EXPORT_SYMBOL_GPL vmlinux 0x39b4dc93 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x39b98107 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x39bab45c device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x39c36bd3 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x39da2992 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39e72337 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x39ebbac0 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x3a05a723 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x3a263793 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x3a3e70e7 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x3a43c669 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a52f8a6 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a547c2a fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x3a68b441 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x3a8141cf xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9c4418 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3aa848d2 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3aaba95e software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3abd5b2d dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3b04d297 ata_eh_qc_retry -EXPORT_SYMBOL_GPL vmlinux 0x3b0cc6d0 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x3b16e2ce gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b3e0a84 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x3b431f4a pnv_npu2_unmap_lpar_dev -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b5d2143 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3b605bd5 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x3b641189 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x3b8e2bd0 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3b94290a iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x3b94a65a sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bac1942 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x3bb5d045 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3bba0e06 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x3bd76a3d thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf6ed26 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3c16eed5 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1d12a3 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x3c22bc87 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c473460 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x3c4aaf9e fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x3c508eaa netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x3c710e54 radix_kvm_prefetch_workaround -EXPORT_SYMBOL_GPL vmlinux 0x3c7fcd51 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c8fd3c8 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x3c9633f2 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x3c97d8a7 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x3ca70304 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x3cb0a83d memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x3cb75fc3 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x3cbde496 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3cc72554 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3cfa419c wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x3cff134a pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3d16a3ff cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x3d299dfb static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3d2ae1b9 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x3d2b2267 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3d34c957 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5223ce pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x3d56a564 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d6773a1 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3d6a44a0 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x3d81a82b regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3da80c6c screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x3dac677e fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x3dae184d to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x3dc45e70 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3ddc233a register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x3de13771 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x3de50620 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dfddf32 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x3e424d18 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x3e4648da kvmppc_clear_ref_hpte -EXPORT_SYMBOL_GPL vmlinux 0x3e487020 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x3e4e9191 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8f5a76 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x3e9e8afa dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3ec9c6dd perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x3ecaa4af mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte -EXPORT_SYMBOL_GPL vmlinux 0x3edd7b8b usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x3ee8b03a dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f5704e0 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3f6c8b04 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x3f74fcc1 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8e0b43 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x3f9bd036 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x3fa0e8d3 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x3faaf127 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x3fad1f36 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0x3fada851 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3fc7176d perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x3fca5e36 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3fdd3e0d device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40132211 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x401a8b10 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x40246f00 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x403f6e39 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4052e12c usb_wakeup_enabled_descendants -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 0x40823c3d eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x40988c9e hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40ae0422 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x40b57ca5 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x40ca08cd xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x40d19c21 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x40ded47d regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x413b18d4 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state -EXPORT_SYMBOL_GPL vmlinux 0x4151fe51 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x417ba517 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4186c872 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x41adaa6f irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41b8bbb0 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x41ba91e3 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x41be3d3c ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x41bed526 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x41c51dad usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x41e47d4c irq_gc_ack_set_bit -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 0x420d5c8a fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x420fb1c1 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x422de4b9 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x4233d63a spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x42342b20 of_map_rid -EXPORT_SYMBOL_GPL vmlinux 0x42422ea2 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x42536cc4 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x4255cb80 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4277eba4 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428e751c usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x4297b161 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x42991627 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x42a1b334 devm_pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x42a2ec2c edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x42aa8cc2 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x42d27c8a ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x42d4aa05 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x42db923e regulator_unlock -EXPORT_SYMBOL_GPL vmlinux 0x42ddcea6 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x42ed7627 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x4302a779 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x430c101b __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x431d6d55 devm_regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x431eab59 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x4325775f scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x4334990b led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x433ecff2 flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x435a4635 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x435d2ea6 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x4364531a ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x43663da4 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x436f9367 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43884a37 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x43a67a5d phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c11f64 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x43dfebd5 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x43e0109c blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x43eb902d ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x43f16990 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x44064df6 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x44091401 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x442806f2 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x442c0b51 __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x442dce97 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x444b9b04 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x4467cbed securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448ba330 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4499a29a __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x44a76046 __rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c74097 kvmppc_host_rm_ops_hv -EXPORT_SYMBOL_GPL vmlinux 0x44ca307e fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x44d05d31 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x45212f86 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x452bbe51 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4546aeb7 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x454d7c5b ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457642d9 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x45ac4dca serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x45d4109d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x45d8b3b7 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x45d98647 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x45f6d1a4 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x45fd9503 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4608cf6c led_trigger_show -EXPORT_SYMBOL_GPL vmlinux 0x461354bc power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x46146f44 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x46181cf8 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x461e1534 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x461e5aa1 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x464cbccd __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x4660474e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x46606752 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x466d1839 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468eb179 kvmppc_update_dirty_map -EXPORT_SYMBOL_GPL vmlinux 0x4693caa9 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x46960058 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x46b13cf0 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x46c63c68 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x46cbf216 i2c_new_probed_device -EXPORT_SYMBOL_GPL vmlinux 0x46ddee75 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x46e1c92c free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x46e23b60 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init -EXPORT_SYMBOL_GPL vmlinux 0x46e5e9eb screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x46f0ca98 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x46f42378 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f83326 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x46fd827c md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x47015555 blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0x47031f8f tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x470e14ab dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4713b935 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x471556ee cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472d950d handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x47307c83 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4731c172 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x473a87bd __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x475a7362 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47716173 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x477941e4 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4789bb21 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x478ac9c3 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0x478da264 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x479af372 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bd5e8b pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x47d1b39a scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x47ea3433 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47f3957f skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x47f8ae9a blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x47f9991d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x481b903f tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x48473b16 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x484ceeab xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x485024ca power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48755f37 static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4898aa69 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48aec7b4 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x48b216dd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x48dabea7 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x48dcce45 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x48f196d3 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x48fac379 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x4906e5aa ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x4922852d rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x49383052 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x494b9cf8 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x494c6895 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x4952955d nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x495b17e9 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x496b4d30 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x496b6185 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x496d07eb ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x4972c3fa fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x497e8259 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x49836631 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x4989dc81 split_page -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49a107eb bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x49aa3d85 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x49af0952 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x49b00742 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x49d60366 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x49e7337e driver_find -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a05c188 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4a13544e pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4a13cefd unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4a1dfbcf iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4a2ebde9 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x4a30970a bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a4df444 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x4a958a78 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable -EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4ab6778a gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x4acdea8f devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x4adf4526 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0x4ae63ef2 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4aea06e8 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x4af45f2a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x4b0837b0 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b272d0e pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b6e6d76 i2c_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4b7c9806 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b8d4a89 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x4ba09de7 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x4ba9598b gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4bb50bc2 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x4bbfd820 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x4bce2fe8 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x4bd27ac5 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd7c7e5 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x4be56b16 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add -EXPORT_SYMBOL_GPL vmlinux 0x4bf0ce0a irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x4bf5a08f blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x4c00617d usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x4c053f5d pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x4c059743 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x4c0c2730 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c0ebc77 thermal_generate_netlink_event -EXPORT_SYMBOL_GPL vmlinux 0x4c133957 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x4c141b89 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x4c147a5d relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x4c28f917 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x4c2fc6df sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x4c46f3f4 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x4c492093 cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c4f464b to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x4c63d24a ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4c8d1dfa pci_hp_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4cb0b01b pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4cb4715a pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x4cb67d78 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4cb7af46 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4cb8b15d dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x4cc6c051 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x4cf860b1 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0f3187 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x4d223e0f thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4d286afd sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x4d3a6b33 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4d4a691d unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d97c7ac cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x4da46293 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4daee77a pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x4dbece59 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch -EXPORT_SYMBOL_GPL vmlinux 0x4dcaebf9 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4dd1b489 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddef133 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4dfedae3 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e39294a device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x4e3e844e strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x4e42cb53 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x4e7a0ae6 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x4e842249 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x4e888db7 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status -EXPORT_SYMBOL_GPL vmlinux 0x4e9dad0c fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x4ea32ca7 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ec1485e devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4eca165f pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x4ecb0b63 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x4ee3b694 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x4ee97e5d cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f00e1f5 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x4f17ecf2 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x4f1dd2cc wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x4f1fc238 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f72b216 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x4f744642 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x4f928321 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x4fa00d11 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x4fabfd16 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x4fad8104 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x4fadefe8 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x4fb256a9 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4fba1c8b spi_async -EXPORT_SYMBOL_GPL vmlinux 0x4fba7419 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x4fbe19ef vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe627ea fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x4fea6fa8 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x4fec9b6f gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0x4fee8635 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x500db2e4 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5011ac22 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5013f2d7 eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x504bd370 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x507dc05f pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x50812e55 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x5090ff39 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a31174 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x50a58bcf inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x50b7a423 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x50e6e7a9 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eabe13 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x50ee2646 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51014030 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x51291579 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x513d62c2 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x513f3dd6 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5143c5c1 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x515c8534 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x516e45ac gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x5182c2e0 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x51891226 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x5189edae driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x51977641 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x51a3cc21 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x52033483 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x52275cab ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x5229a5f3 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523815f3 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5238921e of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x524acacd usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x52585864 rio_get_asm -EXPORT_SYMBOL_GPL vmlinux 0x5265fa54 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x528a4e45 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x52943526 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x529860b0 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x52a9e85d devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x52b7c76a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x52bbfb4b __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x52c3bf2f gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52da139e devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x52e659a3 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x52ec1f6d pnv_ocxl_get_actag -EXPORT_SYMBOL_GPL vmlinux 0x530a0b74 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x531a3a80 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x53291f6d iommu_tce_table_put -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5335eff6 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53461adc perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x5349d04a wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x5362a778 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536be5b2 iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x5379ccc4 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x537b8f1e devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x537d4f43 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x53884839 kvmhv_load_host_pmu -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5399b55b crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x53a10b84 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x53b843ef blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x53cac1df __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x53cc2ac3 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x53ccc20c ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53d57545 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x53d64046 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable -EXPORT_SYMBOL_GPL vmlinux 0x54095e48 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54234518 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x5429fffc virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x54531254 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x5454f1d5 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x54598099 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x547f7ae1 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x5480ca6c blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x5480f8e1 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x5486a334 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x5494a780 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549bb976 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x549ca417 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x54f70b08 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x54faafa2 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x55051614 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x5507c6cd d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x55132d0c __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x55153f08 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x551d3fd2 pcibios_map_io_space -EXPORT_SYMBOL_GPL vmlinux 0x5520e1bc devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x552abcd4 spi_finalize_current_transfer -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 0x554a13bd of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x556598d8 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x557373e0 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5578a5fb verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x559457dc dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c79143 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x5611adbe regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x561329ab cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56185c5b led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5620596f __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5622355b of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56288d0f dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x562d2609 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5632d682 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x563b17d5 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x564a06b0 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5664c43d pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x566ad17a regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x5672bccc sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x567b26ec kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x567c5f1a irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5687f710 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56ec5eac netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56f3c8c1 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x56fa9ec7 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x570f3aaa __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x5712465f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x571d714b rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x57631a76 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5775c714 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x577a312e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57936c3b perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x57945575 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x579a9c48 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi -EXPORT_SYMBOL_GPL vmlinux 0x57adc347 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x57b3c3d7 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x57b89350 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags -EXPORT_SYMBOL_GPL vmlinux 0x57c59868 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x57c867b5 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x57d92bb7 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x57e22c57 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x57f08fd3 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x5814c69d tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0x5817d58a iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x581c95aa net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x58287b9e mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq -EXPORT_SYMBOL_GPL vmlinux 0x58500f52 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x586f3e4c __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x588f49bc subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x58b5244d hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x58b6b161 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x58c2a489 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x58db929b usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58dfeb68 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x58e3764d register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x58f54c7c simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x58f7b8cc ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0x5912993f disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x591f756a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x5920e485 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x593179e3 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x59426f82 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x5942b4ff dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x59628aae clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x596d993b fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x59707379 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x5972a475 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x597c3b7c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598c8de6 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x5990d389 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x5995a9cb irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x59acefce acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x59b08c55 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b31f70 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x59be22bc kvmhv_save_guest_pmu -EXPORT_SYMBOL_GPL vmlinux 0x59c0413b rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x59d81fac ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x59da7ed3 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x59e35629 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x5a3095c2 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x5a3389ee blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x5a46dde2 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4ef9f3 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x5a58945d pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x5a5c93fb trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x5a6111d0 save_stack_trace_tsk -EXPORT_SYMBOL_GPL vmlinux 0x5a65cd08 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5afca00d vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x5b0189b7 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x5b0c7b52 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b0df99a pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x5b1d9e20 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b227da8 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b5abaa1 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x5b5fa328 trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0x5b61d6aa ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x5b6a609d da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6f7e8f spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x5b71d7f1 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x5b839ed2 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x5b889c6e pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x5bb81452 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x5bba2e90 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc22449 wm5110_patch -EXPORT_SYMBOL_GPL vmlinux 0x5bc60f40 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x5bcab103 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bead33c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5bfcaa86 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x5bfdd5a0 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5c1d5154 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5c28295c security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c38c3a6 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x5c52482a remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c6a412d iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x5c73760f fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5c943140 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x5c944614 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x5c95bab1 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x5ca407cc crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x5cbb49ce dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x5cd00753 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0x5cdb1dbd crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5cf7d3ba security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d18a580 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x5d201fff register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x5d2fa42c devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x5d31f398 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x5d31fd49 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d3953d1 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x5d4da6b9 md_start -EXPORT_SYMBOL_GPL vmlinux 0x5d699541 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x5d6dbea7 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5d845ca1 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x5d8f852c cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x5d93fadd kvmppc_h_get_tce -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da91fc4 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5db4389f cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5dbd470d bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x5dcfe389 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x5ddd98cc raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x5deb4e70 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x5deed52d eeh_add_sysfs_files -EXPORT_SYMBOL_GPL vmlinux 0x5df67da8 cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets -EXPORT_SYMBOL_GPL vmlinux 0x5e06985d wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e15ce34 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x5e20e5cc of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x5e305385 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x5e33f5ae usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5e6604ca early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x5e6dd726 cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5e7ddca7 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x5e9d6e9d fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x5ea3e63b pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x5ea8517f invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x5ebfc0ed blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5ed0cff6 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable -EXPORT_SYMBOL_GPL vmlinux 0x5eff5bf1 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f32ccb7 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x5f3cfc27 eeh_add_device_tree_early -EXPORT_SYMBOL_GPL vmlinux 0x5f54d418 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f92f37b of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5f9a8299 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x5fc01a38 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x5fc9af85 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x5fcffa77 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5ff1ed3f devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token -EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0x60103b09 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x60174880 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x601e9529 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x6023c22d pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x602f0661 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x60300967 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60642c14 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x606bf0c6 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x6070b92d dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60933a10 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x60950e7f cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x609a568f subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60c39f7c crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x60cbbfd9 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0x60cd0d0a cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x60e6c9db __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x60faaf6c fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x61001be6 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x610ec495 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x610fdb01 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x611f75db input_ff_destroy -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 0x6177bcb4 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x617bac9c sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6186d18c tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x61943184 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x6196a66a fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x61a503d3 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x61b0b08d __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x61b87c81 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x61cb5ea6 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x61dad940 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x61df333c lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x61e7d58a of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x61ece64f crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x61efbd67 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x620897c0 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x620f9e36 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623702f6 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x6237e8fa hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x6246483c ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x6249af8a led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x625b2e9a regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x62673c0f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x626de972 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0x62a07c45 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x62ab70bb skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x62b99220 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c379ea __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x62cba1a9 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x62cda94f __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x62db6ec1 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x62e5258f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6312c726 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6312e250 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63310722 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x633475c7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6342f502 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x635b0674 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x63946fa1 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x63981766 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x63be9c8d usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x63c281f3 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x63c4373c regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x63e7395b __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x63f699c4 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x63fda0ad stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x64054c0e __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x640bccf2 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x640c6019 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x640fa180 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x641608b2 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x641ab227 mm_iommu_preregistered -EXPORT_SYMBOL_GPL vmlinux 0x6423b688 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x642914f3 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x642a0d37 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x644660a4 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x644b9fa2 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x644bc585 nd_mapping_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6455ffba ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x64773170 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x64833987 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x648d8825 thermal_notify_framework -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x649a6c64 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x64a01563 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x64a70098 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x64a705d0 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x64a803c4 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x64ca8d22 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x64d253b2 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x64d7846b freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x64db726f proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x64f18eac pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x65071457 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x6508c01c phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x65573370 pnv_ocxl_get_pasid_count -EXPORT_SYMBOL_GPL vmlinux 0x655fc881 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x657792cb usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x658b0427 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x658b9465 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x658cc742 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x659406e7 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x659b752c iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x659f1600 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65b18a21 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x65ba8194 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e728cb edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x65e8d375 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x65eb10cc pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x65ebe275 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x65f131b6 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x65f70b7b rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x65f79b7a disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6604da71 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x660a0a33 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x66153457 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66184229 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x66270539 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663e846e __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x66403b1c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x66496378 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x664d0363 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x6657bc93 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x665a39a8 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x666539c7 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x6668a8e4 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x666af0c1 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x6671c996 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x6675f41c udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6691ede1 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x6693bc90 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6698dc77 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66cf65d7 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x66d248ae fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e5e611 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x66e68c5e gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x66f056f2 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x66f8d30a kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6700e062 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x67265d2f ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x673643ab rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x673af5ff tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6786d207 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x678b9d5d wm8997_patch -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67abb225 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x67acddb5 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67fb8cf5 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x68100fc9 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x68497149 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x685349fa __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x68557738 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6870d011 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue -EXPORT_SYMBOL_GPL vmlinux 0x68921234 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a5082f pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x68c135d6 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x68c1621b inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x68c8be30 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x69115134 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x694c615f da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x694ffac8 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x695e34b5 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697a199b inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x69b82af0 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x69d4bf3a pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x69dbc6c1 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x69dc34a2 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69f8314c crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0eb139 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x6a11ca16 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a2de785 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x6a3b1809 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6a3b86c8 regulator_set_drvdata -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 0x6a5e2bde __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a989903 nvdimm_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x6aa422b3 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6aaa02eb probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x6ace0746 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x6ad1e7c6 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x6ad727d8 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6aeb4470 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x6afb8db3 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x6afff8e6 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x6b10ce10 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6b11d9c3 eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0x6b17e8d0 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x6b3924cd irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b43da29 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x6b79bb11 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x6b79c041 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x6b7f24af request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8a0066 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x6b966ac6 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba8c043 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x6bba18e6 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x6bcbfe71 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6be7967c usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x6bfb4566 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6c0654d2 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x6c0e5458 arizona_clk32k_enable -EXPORT_SYMBOL_GPL vmlinux 0x6c150a21 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x6c1e0438 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x6c2c3824 devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c51de77 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x6c57a878 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6c752a19 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x6c7c242b tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6c86a151 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x6c87d3f8 cec_register_cec_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c8a7f97 iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6c8bf558 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6c91fb4f usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x6c9fa07f sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb0b041 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6cb59b51 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x6cb7fcf3 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x6cba38ee reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x6cc7924b sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x6cde0f41 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6cf88fab crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x6cf9613e irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x6cfea9fa dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0e76a2 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x6d1e09b9 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d34f2a2 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d4eab17 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x6d5a3ba6 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d5abbbe regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6d63e9af clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6da085c0 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6db0c0ec ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x6db0d717 dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6db4af54 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dd398fd regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6dd6a4b6 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x6de77778 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x6de7db5c bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x6e0159d8 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x6e11ab31 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6e34699f css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x6e3e3c57 ata_eh_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x6e3f664b cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e43b84a pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e6d2088 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7d59fc devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e902de7 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x6ea0c0e5 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x6ea8de5e tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x6eac52a4 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x6eafd441 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x6ebc39ae put_pid -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6eda41eb tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6ee59816 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef77eb9 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source -EXPORT_SYMBOL_GPL vmlinux 0x6f10de70 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1a2c5b devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x6f1c30ab ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x6f1f0c0a devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x6f36c2e3 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x6f6faee9 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f790ddb mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0x6f859404 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f85b695 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6f8f3b60 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fabb080 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x6fb5ad06 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x6fb66613 __xive_vm_h_eoi -EXPORT_SYMBOL_GPL vmlinux 0x6fc65450 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x6fcd7f78 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6fd49528 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x6fe07d0d yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6fe3e0dc nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0x6febb259 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70490e43 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x704aa415 pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x705cf28a pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x705f6924 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x70648785 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7082ebc9 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x709254dd __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x70a0fcf9 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x70a40087 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x70a5d92e nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x70adc04a __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x70af9dc7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x70b16913 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x70b245cd devm_spi_mem_dirmap_destroy -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 0x710a3e78 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x710baeab pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711bc393 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7120360d usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x71343d7e of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x717620f0 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x71786b50 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x718e957d ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x71e5c829 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x71f2744c register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x72236598 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x722470e5 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7224f305 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x7230ba5f sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x72372445 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x7256c460 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x726b9b6d led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7290c1b9 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x729565e4 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x729c1125 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x72a11bb9 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x72c02f93 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x72ce7af3 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d567ac regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x72e30895 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x72f23bc8 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x72fa7255 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x7305539a pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x730cb08b sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x731879d3 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x73192fdf xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x73241fca fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x732d450a wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x73534794 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x735a3c7d dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x735fb1dd of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x736d9f0d hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7373795f skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x7378ca41 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x738ba084 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x73900e40 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x73904fcb pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x73950fd8 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73ca5ef3 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x73d0593a ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x73d75272 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x73e9853f dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x73ebf474 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x73fd9c2b thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x74120faf pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0x741ccba7 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x741ecdd0 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x741f307f hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x74206667 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x744cbca3 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x7452e9bf platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7462aac3 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x7463e412 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x747723e0 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x748b5d65 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x74a2114b aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x74a62c43 sfp_register_upstream -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b69094 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74c91167 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x74d3d8a7 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x74d5e5df transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x74f8431f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7533b170 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x7536c919 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x753f0eb0 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x754da848 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x7561c096 vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0x75793211 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75aa8f56 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x75b7c9e5 device_del -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d74128 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75ebbe1e fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x75fdeeab regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7614921e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x761f5f9f fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x7626aeb5 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x7632ac92 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x763da587 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x7644e1d8 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x767a3a4c mm_iommu_new -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76ae81ce genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x76b62950 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x76cce950 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x76d676ee scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76f45961 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x7720de4b sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a5de9 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x773b0867 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x7749d953 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x7749e1c5 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x7762d17a blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x779b4618 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x779c4ba0 cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b2790a usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x77bd20f5 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x77c6b562 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77f3c6dd of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x77fe547d led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x77ff8434 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x780e5847 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x781664f5 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x7816a3e2 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x78192ee2 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7822de14 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x782a7d89 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x78323bd7 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x78594340 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786ba273 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787cdcb0 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x78844a93 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x78854749 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x78899ac9 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x7891c587 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x78a6bacb spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x78acceea get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x78ba28e9 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x78dcc89c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x78e04b46 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation -EXPORT_SYMBOL_GPL vmlinux 0x78e6ea2c hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79095e52 pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x790b2cb3 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x793d54fa fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794a9ba4 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x797d2636 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x79894fa8 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x798a692d mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x79966bd6 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x79a363d8 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x79c20032 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x79cfbc20 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e6922d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x79f48e04 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a040259 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x7a164745 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x7a27edaf skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x7a3e7239 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x7a4ffd94 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7a5513ea get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x7a68af2e nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8566a2 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x7a90dd3c crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7aa8171e serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x7ab64b1d user_update -EXPORT_SYMBOL_GPL vmlinux 0x7abc0919 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ae2d43d inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x7ae3d94e fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x7aeb31d7 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x7b1592f7 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x7b3bcb27 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x7b51e8ea dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5f4276 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x7b6647c9 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available -EXPORT_SYMBOL_GPL vmlinux 0x7b7c6791 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x7b7d1eff device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x7b8019c9 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9c3899 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x7ba091f1 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x7bb6b449 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x7bbfe2a3 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x7bc2cba8 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x7bc6e8f9 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x7bcaa737 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x7bd15709 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x7be0d0d0 net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x7bec7f53 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x7bef56d9 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x7bf8d9a8 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x7bfdb34b pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7c10df55 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x7c13aa3b __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c4d233b pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x7c52e146 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x7c57421b x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x7c6f4b14 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x7c98b301 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x7ca9fbbb security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x7caa767e devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x7caec8bd pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x7cba3ce6 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x7cbf7afb strp_done -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7ccf695f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ce15037 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cefc027 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d4160d5 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x7d41ece9 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d71ce62 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x7d79c40a driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d7e059e serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x7d82085a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x7da68b9a raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x7dab8495 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x7de6329e proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x7de6ac1a debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x7dff2a0c kvmhv_load_guest_pmu -EXPORT_SYMBOL_GPL vmlinux 0x7e075070 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7e0b5fc6 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x7e12a83d gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa -EXPORT_SYMBOL_GPL vmlinux 0x7e247c1b mmc_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x7e2c8a4e crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7e424e49 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x7e508524 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e66fcc0 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x7e68eb6e cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x7e6c08dd __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7e7c319a pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e8a592c skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x7e8afe7e devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7ed0720c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x7ee72d41 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eeb724f of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x7ef91bc8 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7efc1376 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x7f0084b8 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x7f012b24 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x7f02cf52 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x7f0c7918 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x7f17577e __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x7f1ceef1 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x7f34bd8c crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x7f408853 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f47e9c9 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x7f542bc1 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x7f5f73c7 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0x7f733c4f serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7d836c preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7f912d33 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x7f9518a8 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x7fa3ce48 iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x7fa50ad8 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x7fb05477 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x7fb4b58e of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7fc7ef67 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x7fcbadb3 sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x7fd042b3 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7fd482c9 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x7fd5783d __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x7ff17033 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x7ff6710c crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x800183fb of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x80021d02 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x800c3b78 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x800ccc23 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x801006a0 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x802d3f90 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x802ef36f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8034b67a of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805be45f pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x8071234b lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x807bf02f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x80808408 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80aa6621 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x80af680b vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d0b5bf mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d84b13 devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x80d8b117 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x80db59ef ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x80e796ae ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x80fc7e59 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x80fe3565 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x81106cb2 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8129c8dc phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x814c3c68 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x819c48d3 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x81a0c09c pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x81a8a97c bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x81aa6b37 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x81ad5eef led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x81afb10b blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x81b33c07 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x81bcfb2a pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x81c9c325 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x81cd05d2 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x81f9fa64 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x8200095a stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x822c7fd2 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x824c51a4 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x825b512c ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x826e398a nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x827bed9e regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x828ee734 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x8294032f virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x82afd451 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x82d5ac3f gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82f1be33 mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x82f373e1 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x83234ac3 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x8327b85f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x832998e0 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833c53a0 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x836c5f7b pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x83854ecc regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83a9ea1a devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x83ae65c1 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x83bfc549 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x83c38883 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x83cfb5ba extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x83fbcfa8 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83ff67d5 mmu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841a687c pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842ba9a3 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x843280b0 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8458ae4f gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x845d1f39 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84701011 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x847885b1 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b67909 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84dca17e regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850c03a4 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x8530d21b scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x853b9110 __kvmhv_vcpu_entry_p9 -EXPORT_SYMBOL_GPL vmlinux 0x85417110 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855c6ddf tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x856412ce pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8579ca80 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x8579f750 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x85963cc2 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85ae444c dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85b4f55e xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x85b5bef6 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x85b87807 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x85d50f30 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x86042ec6 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x8608b0fd crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x860d979d regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x861c46f3 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86350395 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x8651f5d6 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86683704 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x866a1ba0 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868ccbb5 pci_remove_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0x869c30e3 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x86b5aebe virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x86b89994 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86e3c21d blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0x86f2b2b8 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x86f341c8 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f6e6cc thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fa48fb sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x86fa60b6 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x870d2915 pnv_ocxl_alloc_xive_irq -EXPORT_SYMBOL_GPL vmlinux 0x870e081f phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x870f3c10 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x872332d0 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x872cc674 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x874fa147 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x87517b2f tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x8774c322 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x87863817 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8793c3ea vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0x8796b94e cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87c270af wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x87c617a2 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x87c77793 devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x88063d42 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8809bee3 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x8820fd91 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x88279e75 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x884db8cc devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x88501789 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x8857e920 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x885b37aa md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x885fc0a1 devm_regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x8862cc32 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x8878158f dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x8879df1f skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x888afe91 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x888b8c3f iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x88937076 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x889c4c02 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88c0c4f8 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x88e89800 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x88ee52ff da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x88f6ef4d skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x88fbd295 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x8912c3b4 memcpy_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x891a2795 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89286cdb rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8929f4b5 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x892cee62 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8940e3c3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8951820c tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x895321af devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x896f3c4c regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x898f7bed sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x89a997e4 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x89ae252f gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b6410b tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x89bba98d devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c3ed29 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x89d11357 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x89d85134 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x89def3b8 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x89e0b98d genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x89fc820c housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x8a02cca4 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8a2aa4e0 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0x8a341cbc usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x8a3eb720 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x8a41d486 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x8a4e382f devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5bb1a1 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8a5d8533 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a65b6fa devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8a77985a fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x8a7d39da pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x8a9ba29b ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8a9c8efe hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8ab4c0b6 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd27e2 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8aca7bf3 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8acf62df extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ad154b3 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x8af846f3 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x8b35f084 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8b4096d4 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x8b4d3446 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x8b53809e screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x8b600c89 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b7e363f dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x8b944681 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8b9dcd10 srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x8ba7827b l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8baf1b78 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x8bee35a1 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x8bf86490 udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x8bfeff1e __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c2ad721 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x8c2e20f7 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x8c303e24 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x8c463f4f sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x8c4897ae wm5102_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8c517e6b devm_nsio_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c77229f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8cb67554 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d30b96a usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8d4ecfb5 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8d6a30d7 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x8d6b3292 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x8d72761e sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d85603d iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x8d894f7f ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x8da0d723 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x8dba16d4 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dc333d5 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8dc36f45 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8dd2e14a pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x8dda1710 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ddcb73e sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x8dde29dd freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8ddf440c of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x8de677c0 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8dff7f19 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x8e04bc9f regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x8e0a3f16 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x8e239c52 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x8e3e2b3a nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0x8e67e36f wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8e7b7deb of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x8e7ff8a7 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x8e81aa8b mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x8e952b63 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x8eab5420 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x8eaf0d7f ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x8eb2049c wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x8eb9de2c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8ec8988c pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8ec8dce0 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x8ed8724d usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x8ee4be5e housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef2b277 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0e14e8 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8f117ce4 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f1b6c37 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x8f3b185d tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x8f4358ec securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x8f571474 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x8f6a49d9 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f6e8fd7 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f79dcc9 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x8f853b98 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x8f8be8a9 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x8f94f5ab regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8f98d5e1 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x8facd186 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release -EXPORT_SYMBOL_GPL vmlinux 0x8fb1c721 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8fb3bb2d inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x8fbd2f90 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fc57726 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x8fca93b9 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x8fe348be balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x8fe437fd max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x8fe838b2 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x9016648c devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x902b7e82 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x902bf135 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903fbf23 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x904773db dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x904c0a65 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90838f1f mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x9094dc2e pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x90d577af iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x90fd8215 kvmppc_add_revmap_chain -EXPORT_SYMBOL_GPL vmlinux 0x90ffe2b3 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91087ae1 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9124e63b device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x912a0bf8 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream -EXPORT_SYMBOL_GPL vmlinux 0x9143d322 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x91479588 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x914ccbc0 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x91577cbe fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9158e04d machine_check_print_event_info -EXPORT_SYMBOL_GPL vmlinux 0x916bc735 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x9171c9c2 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x91966db5 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91bceaa1 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cb51d2 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x91cba816 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x91dc1fa7 dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0x91e0cdef blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x91f1a7cc iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0x92020681 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x9205ae6b rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921ec77b vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x92238bcb xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x92357dd8 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x923d9dba pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925f5b86 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x926041fd edac_device_handle_ce -EXPORT_SYMBOL_GPL vmlinux 0x92634d05 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x928d25be crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x929e5eca gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x92b56b47 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x92c521d0 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x92c925fb xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e16921 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write -EXPORT_SYMBOL_GPL vmlinux 0x92f105f5 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x92f357b6 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x9321d09c __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x932c4fa8 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x9339c0d7 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest -EXPORT_SYMBOL_GPL vmlinux 0x935ecd14 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x93617371 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x9378d2aa ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x9379f8de register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93a1128d sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x93a67f28 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x93af51c1 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x93bcfcf8 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x93bde6fa __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93e6b22b pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x93eba351 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x93ed6777 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f11112 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x93f4f449 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x93f6eefc cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x94100fc4 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9418a8da vfio_del_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x942056b1 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x944870d3 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x94652b38 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9481f021 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x948add52 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x949ddace pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94abdfd1 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x94b190da get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x94bd3a75 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x94c18113 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x94c9f47d platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x94d7a1f3 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x94e083f8 iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x94e16ea1 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x94ebbf11 led_trigger_store -EXPORT_SYMBOL_GPL vmlinux 0x94ebe173 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f28dbd ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x94f2d676 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9508102d nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9533dd3c nvdimm_bus_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x9535062a nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954710a6 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x954891f2 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x954d0f6d alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x954feab9 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955c96fa virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x957f95db usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959143e2 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x959dcbe7 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a7555e get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x95aa53fb relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bc9cbd dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x95ca6706 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x95dee7ea sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x95e44df0 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x95e99740 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x95efa1db pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x95f00517 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x95f8479f __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x9614baea usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x96425fbc xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9658f460 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x966796d8 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x9668f775 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x969b5f6b nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x96a057ba cpu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x96a81a97 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x96ad7b46 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x96ae43c9 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x96c3161a __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96c47c0a ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift -EXPORT_SYMBOL_GPL vmlinux 0x96d8f17e kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x96dc188c __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x96df31db regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x96ea092e ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x96ebc051 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x96f00048 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x972c3b83 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x97395556 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x973a9305 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x97410696 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x974f6c30 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97638786 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x97650af8 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x9771d80c usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x977525a7 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x979898dd _copy_to_iter_mcsafe -EXPORT_SYMBOL_GPL vmlinux 0x97cd2281 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x97d2851d class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x97da7f59 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x97dc2fa4 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97f19a1d dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x97ff968e pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x9814747c pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x9820d322 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983693ec netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x983f49f1 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x983f8e2e btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x98402768 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x98421b9a usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x984592e3 __tracepoint_block_split -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 0x9858c0e7 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x986fb4c4 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x98709689 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987d703d posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98829c67 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x98861a56 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x988afac0 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x98a45936 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x98a66294 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x98b77dc5 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x98d1dbdf nd_device_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x98d913c4 input_class -EXPORT_SYMBOL_GPL vmlinux 0x98e69aca watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x98f2a487 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x98f7c864 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x99087afc crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x99109fab of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x99133060 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x9930ec8c device_create -EXPORT_SYMBOL_GPL vmlinux 0x99351819 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x993a6d32 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x9952eecd dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x99702d95 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99829ec2 eeh_add_device_tree_late -EXPORT_SYMBOL_GPL vmlinux 0x99845981 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99cb7e60 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x99d1f60f dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x99d54a96 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x99d5fcf6 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x99de5a34 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x99e0c686 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x99e9b423 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x99ecdd32 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0e18e6 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a183875 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9a852123 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x9a85aa86 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9a96eb3f tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x9a99d0c3 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9aaebeb8 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9abd3d23 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acaa93a ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x9acf5b32 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b0d2915 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9b0d74bb iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x9b0de090 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x9b1782cf sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x9b3399be usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b507423 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5e951c cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9b6cfa8d pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x9b6eca54 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x9b8706cd __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b91d914 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba3a6e4 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x9ba6689d ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x9ba8216d dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9bab0fea regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x9bb18bbe serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x9bc86df3 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os -EXPORT_SYMBOL_GPL vmlinux 0x9be05588 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x9be73bb4 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x9be97912 pci_hp_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf2ebee vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x9c1a2d0c trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x9c240ee9 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x9c28ab5b pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x9c340258 iommu_tce_xchg_no_kill -EXPORT_SYMBOL_GPL vmlinux 0x9c371fa3 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9c48a80d cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0x9c5e7c18 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9c6938be pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9c6caa67 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x9c6cd5ab of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9c6d2f81 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c6dbc53 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c9d8643 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x9ca398b7 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9ca97e32 iommu_del_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc39efb gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cdf3580 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9cdfb35e __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x9ce44e23 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d21fd6d ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9d2275e9 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d25067e dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x9d282733 devm_regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d529a99 tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9d5aa0e4 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x9d6f5c77 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x9d7c7003 tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9d7f36c0 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x9d979fe0 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9da46fbe xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x9da72b18 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get -EXPORT_SYMBOL_GPL vmlinux 0x9db587bb nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x9dc53397 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x9dcc5691 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0x9dd4b3b9 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x9dd758f9 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x9de3b7fb wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x9de4f0cd __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x9de62a16 memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x9de682e1 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x9deef82d __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x9e044fe9 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5ddc66 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x9e608901 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x9e8c5811 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9e8e148a dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x9e93d3dc __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x9e965e6a tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x9eb057f8 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x9eb28946 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9eb3805c ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x9ec09f6c nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest -EXPORT_SYMBOL_GPL vmlinux 0x9ed391ab pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed6559e fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x9edf95d1 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f0850d0 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x9f1d43c4 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x9f1d79bd of_css -EXPORT_SYMBOL_GPL vmlinux 0x9f474c2e fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f59e590 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x9f649157 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9f6f5c26 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x9f8c3e84 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x9fab681f crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9fb870a2 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2f72b nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9fe2f5ee virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9fe7337b dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff5b79a sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01c41d3 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa024900d dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa0790f8e device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa07ce27d ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa09ea4f5 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xa09fe64e spi_set_cs_timing -EXPORT_SYMBOL_GPL vmlinux 0xa0aa01c9 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa0c6045d usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0f59162 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa0fb9fd1 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xa100601b scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xa1367f9b thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xa13a2936 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xa142f929 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xa1436cb2 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xa154fd13 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa15fc380 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1629471 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xa17650c9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa17eee03 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xa187cfcf sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xa1883e02 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xa1a4560b nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xa1bfacdc device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xa1ccbe29 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1dbf2a0 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xa1ddb079 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa1e35c34 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xa1e4b3aa devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1f9744c mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xa2099ca1 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20e06b5 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa20f002e __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xa21101f9 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa2382b76 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xa2492ca9 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xa25ce6e8 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa263ef87 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xa267de1f devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26da794 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xa27ad5dd pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa2807efb sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info -EXPORT_SYMBOL_GPL vmlinux 0xa2adf0e7 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xa2aee1e9 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xa2c3833d usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xa2d3d902 fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0xa2d7642d pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL vmlinux 0xa31b3dea __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa3224af3 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xa341abc6 cs47l24_patch -EXPORT_SYMBOL_GPL vmlinux 0xa355d9bd regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa361306b dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xa368c32d skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa3716912 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa37a74c1 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xa385ac5f pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa393ea4b ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa395f664 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3b02617 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3e19f6a devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41317da pcibios_claim_one_bus -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa41d2e91 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa42f79a4 __tracepoint_vfio_pci_nvgpu_mmap -EXPORT_SYMBOL_GPL vmlinux 0xa42fcf8f pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa454e645 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xa45b8221 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa46bd2cd __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa4787578 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xa47ccc99 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a1e921 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa4a9c2a9 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4bf747d gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xa4ceca4d serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xa4d22181 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xa4ddee83 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xa513bc92 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xa5238cfe pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xa546f368 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa5516b76 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xa55e508e dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xa5662e22 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xa57246e3 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xa575bdf6 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa5903197 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xa59982f5 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xa5a03b79 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xa5a9f1aa sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5d3e181 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5d7cb02 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60839bf __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xa60cc2b2 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xa6254194 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xa6344ed8 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xa6586b7a genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xa68bc1b5 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xa68f18e6 iommu_take_ownership -EXPORT_SYMBOL_GPL vmlinux 0xa69d43f6 edac_device_handle_ue -EXPORT_SYMBOL_GPL vmlinux 0xa6a08056 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b0a9c7 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b53ecc __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xa6cad363 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xa6cf5680 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f1a43e __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa6f9c49d crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa72e3c1f pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xa734cc71 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xa744bdd6 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xa76193ba rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xa76ac6cf sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa7786d3a skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xa7788009 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa78d0e0d crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa79546fb of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa7bddd5b sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xa7c09ec5 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xa7c55c68 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa7cfb9ea security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xa7d4a4e8 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa7d80eb6 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xa7df56d1 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa7e7ee7a dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xa7f2ea72 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xa80536e5 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xa813c838 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xa813d74e blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa818c229 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa81ff529 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa82b0a21 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa82def27 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa832dcf1 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa84d81ce device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa858a23c __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xa86b78da virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xa86f677e tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xa87186ec fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xa8747ea1 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa877f267 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xa88a779f of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xa8984823 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xa89f4c0b fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8ab0356 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xa8abb129 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors -EXPORT_SYMBOL_GPL vmlinux 0xa8c0f939 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xa8c1dbbf devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xa8da2959 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xa91c6400 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9373e93 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xa93e7a16 skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xa966c50a ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xa97c747b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xa983279c nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xa98502c9 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0xa9943048 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree -EXPORT_SYMBOL_GPL vmlinux 0xa9a7df97 kvmppc_find_table -EXPORT_SYMBOL_GPL vmlinux 0xa9aa1f4b iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xa9bdd5c1 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e598c5 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa0ca794 kvm_free_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2862b9 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xaa2e8db1 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xaa34c168 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xaa4b09a4 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xaa560c47 rio_get_device -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6ef33b pm_genpd_syscore_poweron -EXPORT_SYMBOL_GPL vmlinux 0xaa9e1490 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaacea3b2 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaaf8f582 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xaafacf42 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xaafc2128 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xab05ea71 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xab06be6f inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xab18e72d flush_fp_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xab1cf7fb sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xab30c61d da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xab3d0480 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab7848e9 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xab830de0 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xab929629 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xab976327 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabca677a fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xabd37a41 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xabf0a1e1 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0xabfd977d devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xabfe51df cm_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xac03c4ef clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac134928 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xac1b0300 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xac235934 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xac2a0df3 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xac319968 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xac321e32 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xac52b11f list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0xac79d84d sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xac80da38 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xac9eb300 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xacb1cb7c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xacb76211 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xacb9634b regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features -EXPORT_SYMBOL_GPL vmlinux 0xad0ef963 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xad1a9aa9 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xad42c3c5 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xad463b07 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xad52b694 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xad5e3f0b crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xad62d06b usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xad644e04 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadb61998 thermal_zone_set_trips -EXPORT_SYMBOL_GPL vmlinux 0xadbe2aff xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0xadc03e3d devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae0007f0 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae0d57b4 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae2f572a tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3e7e1f housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable -EXPORT_SYMBOL_GPL vmlinux 0xae47fff7 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xae571474 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xae5dc36c pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr -EXPORT_SYMBOL_GPL vmlinux 0xae944057 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xaeab28ae nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page -EXPORT_SYMBOL_GPL vmlinux 0xaeca8f9b cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xaee13f2f init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaef0a65d ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr -EXPORT_SYMBOL_GPL vmlinux 0xaf2ea1e6 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf41a9c9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaf562652 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xaf5e914f nd_region_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xaf6f5f6e iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xaf6ffb74 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xaf724681 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xaf7294aa of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xaf757e91 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf864e1f pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xafa5515c crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xafb4eb63 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafc495c6 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xafc80635 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xafcbbf5b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xaffd0889 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xaffe8c9b tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xb003d0c2 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xb007cafc fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb0144bbb devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb02ca8a5 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xb03a54e0 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb0916318 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xb098d6d3 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b9f80e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xb0bd14de sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xb0cda7e3 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d85c5a param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xb0ea2fc8 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb0ebed93 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0xb0fabb58 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1296bf9 kvm_alloc_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb14ba86e tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb15affd4 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb17beaf4 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1a221a8 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xb1a2b239 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0xb1a71f89 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xb1b0b562 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d3fe19 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d9f10b sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1dea147 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e30720 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xb1fcf502 ata_base_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2140c16 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb21b7091 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24687c5 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xb2551545 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2712601 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29b9ed4 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xb2a1c8bf static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb2a5778f pci_traverse_device_nodes -EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock -EXPORT_SYMBOL_GPL vmlinux 0xb2b7d069 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xb2bfc425 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xb2c163f2 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb2d07f5a skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xb2dc434c shared_processor -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e7c026 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xb2ed7cd4 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb2faa88d dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb35d0771 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb3615459 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xb3690fba splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xb36a24bf nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xb37094ed wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb3740354 crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xb3759d81 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb38b60b3 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xb39259d9 pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3b8a376 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb3cae0e7 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb3dec7be fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xb3e2f189 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb3e7f72f bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb4096aeb of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xb42c7ea6 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44ee4aa pnv_ocxl_free_xive_irq -EXPORT_SYMBOL_GPL vmlinux 0xb45b7b0e da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xb4617468 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xb485e65f device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns -EXPORT_SYMBOL_GPL vmlinux 0xb4889541 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb4aece2c phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xb4b2328d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c7c0d4 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xb4cb95fd inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xb4d06a76 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb4dd6e29 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f932ba of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb52f96cf usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xb5421b83 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xb5552557 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb55f421f ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xb560f1ce pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xb5614144 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xb571f61d phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb5802c83 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xb582d29e blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5b12532 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb5be6001 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xb5c74ac9 get_hwpoison_page -EXPORT_SYMBOL_GPL vmlinux 0xb5d9336e scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xb5df07c1 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb5e7e2d1 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb5ed58a3 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb60abd37 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb61daafa device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release -EXPORT_SYMBOL_GPL vmlinux 0xb64f9964 net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb651b72d devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6699dd3 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb698a154 pnv_npu2_map_lpar_dev -EXPORT_SYMBOL_GPL vmlinux 0xb6adb388 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xb6b95f86 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xb6e91b4d usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0xb71616a5 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xb7338786 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb741084d iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xb7412e2d trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xb74942f5 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xb74f82b2 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb7573322 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb78a23db rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xb78a4312 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb7933e86 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xb7a217fa ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xb7b42cb3 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7ca5fd7 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache -EXPORT_SYMBOL_GPL vmlinux 0xb7d19207 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb7d3f4d2 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0xb7d4fba4 devm_of_pci_get_host_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xb7e17991 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xb7f3662f dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xb7f6d280 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xb81f89df __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb822fcde inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8319fc2 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb8440d5f devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xb8769ba1 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xb8770a32 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb897e8d8 arizona_dev_init -EXPORT_SYMBOL_GPL vmlinux 0xb89c1cd2 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8ad1149 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8ad3346 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xb8bb302e bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xb8c17ca3 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb8c827d5 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb8c9647c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d4c3c4 cec_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb8f36549 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xb8f51a3b sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xb904508a bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xb9102b81 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb91a0a83 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xb923fa45 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb93655c4 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xb93ef280 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xb954ea7a sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support -EXPORT_SYMBOL_GPL vmlinux 0xb9a34a8a device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9ae82fe pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bec5e2 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cded5e of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d74994 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xba014f77 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xba04d36f perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xba062f7b dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba1b5eb8 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba55a103 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xba5b7fec shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xba719c71 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xba74ade9 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xba8114cd unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xba8f0cd3 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xbaac1302 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xbab72a31 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xbab854c7 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf4c095 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1f333c devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xbb206362 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xbb234230 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xbb2a0450 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xbb2cc8d7 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbb3596f4 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xbb4ee83e pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xbb4fc142 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0xbb51d8c3 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xbb54aaaa each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0xbb5ef235 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb720928 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xbb7d24a2 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xbb7e7873 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xbbb45dc8 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xbbb74d91 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xbbb97953 arizona_dev_exit -EXPORT_SYMBOL_GPL vmlinux 0xbbc138a7 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xbbca8c58 mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbbd2c82f lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xbc090735 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xbc3421eb usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xbc42db93 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xbc4727f5 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xbc51ef41 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc87b0ec get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xbc954220 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xbcaab364 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcaf91d5 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xbcafdac7 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xbcb68490 update_time -EXPORT_SYMBOL_GPL vmlinux 0xbcb6e43c regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd21520 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xbcd2c35d replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce01b73 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xbce157eb sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xbceaede4 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xbcef0389 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf4db1f dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xbd1bc709 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xbd1eb413 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xbd2a5e94 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xbd2d1351 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd582087 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbda3342f usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xbda6425d xive_native_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0xbdbc5474 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xbdcd8d62 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xbde59ddb devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xbe0c4b0c sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xbe34ecb3 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xbe36f754 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xbe3806c8 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xbe3c2d97 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xbe40d33f pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xbe4173cc unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe57d713 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xbe65ad89 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe834efc tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xbe901922 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xbe913bb0 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9f33cd power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xbeb36e67 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xbed85003 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xbef55363 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xbef91ed4 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf39b782 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbf436b09 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbf57b414 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xbf63ee27 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xbf7e3e0d regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbf944b5a usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xbfa003ba nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xbfb6a491 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xbfb6f4af usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbca9fa __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xbfc51ebb list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xbfd1f6d4 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xbfd4f9a4 iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0xbfd8591f fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xbfdb76df da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff2bb71 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xbffb6b96 mm_iommu_newdev -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc0087c9d extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xc01cac78 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc03ef141 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xc04320d4 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xc04a1cd0 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xc055b218 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xc057b149 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc0714986 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xc084373f of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc09f8f21 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc0a027c9 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d91410 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xc0dba667 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e1c41b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0faefa9 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc118be2f devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xc1227c31 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xc1380fb9 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xc142829b debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc14f2ee5 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc154ed65 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xc158bca5 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xc1651b4c regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17b4e67 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc18a64ed of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xc19cd28b genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc1aa10ee usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xc1b5b1a8 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc1cd0147 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xc1d2f264 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc20c6e01 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xc210cfa7 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc2242b34 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc2298bbd pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc233a45e crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xc2489a55 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xc263be5f mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xc276d246 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2942b7d phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc29cf4df create_signature -EXPORT_SYMBOL_GPL vmlinux 0xc2a4f10c __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2aa338c perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xc2ba7362 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xc2e87feb regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xc2fc8424 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xc313ff03 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xc314c563 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc335c4a0 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc33db101 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3463724 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xc355f12a bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xc35c8e91 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xc36da2fe i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc38840c9 udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xc397256f genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xc3ae500f nf_route -EXPORT_SYMBOL_GPL vmlinux 0xc3af9d49 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xc3b7884b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3dad5dc cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ee6ee0 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0xc3fd84dc unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc40b481e direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc423c3ac cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4327f90 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc44d33a0 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc44eae24 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc460137e is_xive_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4611dbf __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xc46a9bf6 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xc46dc7ad page_endio -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b4d66 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48ced8b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49536ed blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xc49a27a3 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc49e587a of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xc4a610d6 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4b00a8d devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xc4cd8e79 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc5062bc0 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xc5205c36 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xc521d8d3 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xc5231fc1 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xc546a0e3 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xc553cf62 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc58eb8de of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xc5996c8c pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5c57dca devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc5cfc8f9 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xc5db4632 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xc5e0c44b wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xc5e3d65f cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc5fa6acd strp_process -EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc618bbdb add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xc6216403 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xc6431ae4 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xc6449a7c nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xc64b76ce ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc6566d13 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xc659ca4c nd_numa_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xc65d14ec __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc65f8e59 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69f21dc power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6acddbd irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xc6c96b1a switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xc6cc2210 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xc6d1b87c usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xc6e764de devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc6eaa0ec hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xc6f5bc48 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xc703126e of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xc7069239 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc728c6ad pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xc7428807 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc7441071 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xc753c1f6 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xc7556fd2 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xc7591c2f crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc767d3b1 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7697754 __xive_vm_h_xirr -EXPORT_SYMBOL_GPL vmlinux 0xc76a85cd dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xc7742209 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xc775c8b2 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xc78d22b3 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xc7955a2c io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7d452ba of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc7d53d60 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7ffa56a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xc81d1ab9 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc84e928f __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8628451 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xc889eee3 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc8a45ce1 pci_find_bus_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b65c1b call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xc8b73a09 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xc8b88d9b __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xc8c5ba15 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xc8d0c635 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xc8d9f2bc __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ded994 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc904873a find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc908d362 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc90d1513 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc91c3ebb irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc9252641 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xc927d80a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95a98b2 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96da672 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xc975b595 __phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xc97b37e4 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xc9808609 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc984575d devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc9928d2a static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0xc9a8093d rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc9afa051 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xc9b74f83 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xc9b9a388 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc9c607f0 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state -EXPORT_SYMBOL_GPL vmlinux 0xc9c7ac3e device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xc9c9583a inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xc9d27201 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xc9d4192e vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xc9d617b4 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fcee6e fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xca09e302 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xca29b856 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xca31169a devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xca346c3d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xca71c402 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca86d555 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xca86f0ff pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xca86f8b3 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xca89efd1 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca91ad7c peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xcaabe094 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xcab8985e regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacca9d9 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcad08eff pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcadde063 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xcae6ec2c cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0xcaf048fe nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xcaf5c3cc badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xcb05cccb __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb192056 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xcb27a64b perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2c9646 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xcb418b85 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xcb4663d7 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0xcb4a1608 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xcb4c126f spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xcb537125 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcb5ae94e alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xcb7bc787 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xcb8934c8 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xcb93dd34 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xcb95ce85 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xcbad89ae devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcbc3a1f9 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf5b26a pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0xcbf5c714 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc201218 sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0xcc23ee9d dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0xcc2a920a fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc320c32 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xcc3f448c ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xcc538e9c virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xcc6012e0 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcc605f30 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xcc8bd89f is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc930558 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc989952 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xccb22f33 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xccb2d461 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xccbc2bab skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xccc18e5e ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xccc5ace0 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xcccb35a7 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf9f033 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xcd02253f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcd039ada cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xcd1604af component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xcd17c2a9 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xcd1e660d pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd303404 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xcd3ba5c6 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xcd42e2af blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xcd4da961 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xcd4fc76c iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xcd5ec4b0 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd707ea7 arizona_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xcd7f6019 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xcd811e08 kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0xcd8c96fb firmware_config_table -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 0xcdabfd88 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcdb5fc97 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc03834 vfio_add_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima -EXPORT_SYMBOL_GPL vmlinux 0xcdd7edb6 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xcdf151df spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xcdfd854a devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xce020105 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xce0fd5ad xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xce14a6f5 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xce1f7f73 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xce2b101a gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xce2d01c0 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xce4772aa dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7145d1 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce74ab51 pm_genpd_syscore_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xce83315a vas_win_close -EXPORT_SYMBOL_GPL vmlinux 0xce97a1b2 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xcea15058 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xcea9dce9 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xcebe01b3 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xcec71123 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xced37621 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xced887bf regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceefb67a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xcf138715 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xcf1b5c69 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf297d62 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcf2e9e15 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf5ee11b __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xcf7056e2 wm5102_spi_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcf96b5ed fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfb90d35 ata_eh_thaw_port -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfdddbc8 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xcfee0c6e tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xcfef1cf2 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xcff96f97 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xcffeb43b crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xd006a447 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xd0101b43 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xd015aea1 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xd026a150 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xd03698f2 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xd0370697 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0855fb8 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xd094648d transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0b4f165 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd0bea361 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ce2e3e ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e1aa7f blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xd0f628c8 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd0fae503 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xd102cd14 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd11581ae phy_put -EXPORT_SYMBOL_GPL vmlinux 0xd11be763 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xd11eb4e6 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xd173cefb iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xd18007fb fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xd1881425 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd18aac63 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xd193476b power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd197245b crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd1a50a89 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd1ac3fe1 skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0xd1c5ef1f virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cc1085 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1ffb4db crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd208a46b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd20a279e pnv_ocxl_get_tl_cap -EXPORT_SYMBOL_GPL vmlinux 0xd20b8c35 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21eab05 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xd22f7106 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xd230abbc iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xd2561dd2 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2881984 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xd2acee32 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2ddcbdf hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd2ec46b0 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xd314f5d0 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd3270e19 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xd336bdb5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xd3569096 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3747826 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xd37c0210 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a0861a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd3a5e9f8 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b22dbd vas_init_rx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0xd3b4b5fe nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xd3e22ecd of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd3f89396 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4319629 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xd447a11c blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd463dddb of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode -EXPORT_SYMBOL_GPL vmlinux 0xd4708722 srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0xd48e1122 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xd48f8a2e wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xd4925964 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xd49356f2 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xd4a4e41a nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4a582a4 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c8ed8e sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xd4ef8e75 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd50d81e9 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5143020 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xd52248e3 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5655bd0 arizona_clk32k_disable -EXPORT_SYMBOL_GPL vmlinux 0xd5680897 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd5916d4f relay_close -EXPORT_SYMBOL_GPL vmlinux 0xd5a3b6a8 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xd5ae817c xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xd5b698c3 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xd5b786fb ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5c00e5b apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd5da018d sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xd5e9c29e fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xd5f46b18 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xd5f9d633 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd62eed6b hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xd638cb6d xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xd63f4953 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xd647479c find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6988851 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xd6996b42 cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token -EXPORT_SYMBOL_GPL vmlinux 0xd6aa59eb init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd6c9da5c page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xd6e6f469 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xd6f6d805 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xd6fb0f8a crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd709e2f1 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xd70bd916 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xd70f647b blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xd7108c4e dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xd7187e61 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd71b67f1 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xd7400f01 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xd742e46d serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xd74f3b6e crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75b3bff inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7838f18 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd7a3c76f pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xd7b2948d iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xd7bede0e sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xd7c25c67 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xd7c27abe irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xd7c5a816 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7ceb3ce get_device -EXPORT_SYMBOL_GPL vmlinux 0xd7f2471d list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xd7f2e5a9 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7f3f396 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd7fbc009 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xd80c0a5b ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd82c347a blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0xd82c7d19 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd8316e1e pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xd841aa7b gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xd849144a security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84e8a44 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd89d6b7b mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8b00f4f of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xd8b854a9 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xd8ba5c1e dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xd8c2d881 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xd8cb30b1 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xd8d8e67e rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xd8ed4e1d phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd8f489d0 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd903dffd device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0xd907fc21 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xd90d180f edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd90fc967 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd911045c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94ddd39 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xd95491d1 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96cf883 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xd974f96e pnv_pci_set_tunnel_bar -EXPORT_SYMBOL_GPL vmlinux 0xd996ce70 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xd99ca0e2 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xd9b6a937 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd9c299d4 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xd9ea0ee6 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd9ea177b pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda17e74c fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xda27fb9c virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xda341d2c gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xda447f96 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xda44fc7c tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xda4564e4 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xda4a6fa1 eeh_pe_mark_isolated -EXPORT_SYMBOL_GPL vmlinux 0xda552c55 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xda55b199 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xda595214 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xda5f1d6a device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xda8df5f9 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xda8fdff3 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xdaa465db flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0xdaa85b39 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab5b44a fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xdabd6c3a pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xdad963a6 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xdae5e1d4 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb04b567 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xdb0f8783 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load -EXPORT_SYMBOL_GPL vmlinux 0xdb386cff virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xdb5593f6 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xdb57b814 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xdb5aaddd bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xdb5f19c8 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xdb756604 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xdb7a2afc platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdb8349ca arizona_set_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0xdb85e1cf cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8b7658 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xdb8e253b inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xdb9b4402 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xdba7b2eb iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xdba8c42c scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbb53f7a da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xdbbaf9c5 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xdbd51024 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0xdbe33998 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xdc129153 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xdc34a927 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xdc36994d shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xdc43b9c3 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc477fc8 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xdc58c34b usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xdc621112 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc67469b dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xdc713f32 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc839d49 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c0996 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca8ea9c mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xdcb1e639 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xdcce15ac class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdcd4d6d3 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xdceeac9b pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xdcfe70c1 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0xdd03a9e7 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd175f53 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xdd1a4bcd fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6697c3 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0xdd6afb03 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd7336a7 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdd96008c pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xdda83252 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xddb9230e xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc8efb2 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xddd22f72 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xdddb1117 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xddea92f8 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xddf68c9e __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xddfa5824 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xde0970b2 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xde0e1c57 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xde148c64 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xde4c7cc9 skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xde4faea3 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xde51a1c0 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde714780 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xde75ed73 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0xde828016 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xde8884ad devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0xde8ea54b pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdebe6054 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xdebf172a blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdec3a216 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdecc4ac8 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xded19228 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xded21b04 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xdefbd473 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1d6b99 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xdf1e493b security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf2bfd2b cxl_afu_put -EXPORT_SYMBOL_GPL vmlinux 0xdf33b949 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xdf392591 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xdf417544 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xdf4c941b sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xdf4e3ab5 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0xdf55a691 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xdf5e3522 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xdf69606e vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xdf6fabb4 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xdf71893b handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xdf7ba549 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xdf898544 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfb93314 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xdfc3e413 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xdfc7de5e debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd2fc8a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xdfe38658 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xdff77569 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe009500e devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xe011e189 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xe01e6625 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe0463394 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xe0505c00 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe05e03b9 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06ae60a public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08d7076 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0a44079 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe0a47995 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xe0e82232 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe0f6df31 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe0f97f7b gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xe0fa6762 __xive_vm_h_ipoll -EXPORT_SYMBOL_GPL vmlinux 0xe10413da fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xe10e1f02 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xe1184f7b bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xe11aaa05 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xe1309837 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe130c850 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe1334330 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xe1382aa5 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xe13fbdee devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe14b07e8 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xe157ed8f idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe15db206 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe16178ce ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xe174e9a4 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe18bc1b2 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xe18c1126 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe197efda blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xe1b58cde inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c08ec9 vas_init_tx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0xe21f77dd cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xe22c6e41 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe238dd67 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xe23cfc7d spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xe246ceea of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xe2480497 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0xe2771b1d flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xe2789aa0 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe283daf3 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0xe29ccb9a i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xe29d43b6 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe2a01098 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe2a64d77 serial8250_em485_init -EXPORT_SYMBOL_GPL vmlinux 0xe2a74c2f crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d3b334 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xe2d4ba2d sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xe2ebb614 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xe2f3f1fd pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xe302329a regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe30c32c3 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xe32999fb user_describe -EXPORT_SYMBOL_GPL vmlinux 0xe33a277c is_pnv_opal_msi -EXPORT_SYMBOL_GPL vmlinux 0xe33c9ec9 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe36257c1 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xe363c7ba scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xe37d214e devm_nsio_enable -EXPORT_SYMBOL_GPL vmlinux 0xe396b5f0 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xe39823df arizona_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39d67dc perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xe3a65168 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xe3c21adb devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xe3cd6fd2 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe3d62fbf __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xe3d88476 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3dafdcf bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xe3e4468b cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xe3f79af8 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe3fee517 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xe402a05e devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe444b5e3 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xe44fac6d rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe48364db __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xe48b282a addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4994713 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe49bff56 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xe4b3bed1 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4bcec85 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe4c02ede serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c34208 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4edeb61 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xe505afb0 arizona_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5231fd8 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe5246e21 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe5295b42 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe53c2286 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xe546a8ba dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xe54bf39d gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe54c5d14 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xe560390e handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe563c0c2 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xe56d76f6 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59fafa5 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xe5abeb99 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xe5bfae56 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xe5c04dce __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xe5cd27b0 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe5dbefa5 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5fb7536 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xe5fe3a95 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60ceac9 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe6104749 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe6169a66 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe6191242 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe6193c50 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe61e59bf mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6305581 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0xe63d71bb cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xe6421da4 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe65996e7 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xe6709ebe dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xe67115db regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe67f9277 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6a8028b cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xe6adae4c regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe6b6097f devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xe6b8ee77 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe6dab1d1 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6eb5c1d vas_rx_win_open -EXPORT_SYMBOL_GPL vmlinux 0xe6edcf32 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe6f6fc63 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xe6f754c0 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xe70153af crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xe712a64f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe7146a9b spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xe71555e5 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xe722238d usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe737a3cf __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe74c359b tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe790a964 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a473fd of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xe7bb0a0d tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe7c48eee cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7da4be3 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xe7e771bb phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f836b7 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe81500d2 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe83f1c40 pnv_ocxl_get_xsl_irq -EXPORT_SYMBOL_GPL vmlinux 0xe844b28a __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe8469512 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85e7ded regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe860c767 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe89bfece crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8d19fe4 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xe8d60605 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xe8e36320 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xe8ee725a __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xe9005571 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xe90421ac thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9502d5d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction -EXPORT_SYMBOL_GPL vmlinux 0xe957bf9f alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe9801af1 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xe9874adc srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0xe99b2042 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe99cb162 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9e5cccf regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xe9ec5c55 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xe9fbb997 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea017114 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xea02f560 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xea080377 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xea0e458a fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1499e0 pm_runtime_get_if_in_use -EXPORT_SYMBOL_GPL vmlinux 0xea1f89a7 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xea27600c debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xea3bcb44 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xea474ba5 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xea4eb776 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xea51be3c bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xea5edc70 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xea64ad06 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xea729061 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xea77135b ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xea77e8ee vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xea86b844 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0xea8b3e0a gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xea8f5a02 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xeaa36ad0 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xeaabde97 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xeaacc883 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xeab13aec vas_paste_crb -EXPORT_SYMBOL_GPL vmlinux 0xeab9c345 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xeabc19a3 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xeabec7e1 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xeac2074d dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xead8ecfe rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xeadb4811 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae66a28 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xeaf9e3ee __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xeafce72e kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xeb02ad84 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb1c45ce nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xeb30b67e reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0xeb32313c ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq -EXPORT_SYMBOL_GPL vmlinux 0xeb3f02d9 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xeb64803d gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xeb68a8e0 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xeb6ac345 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xeb6bbaf0 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xeb7cd6f2 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xeb8457e3 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xeb922e27 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xeb9a882c dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xebb44964 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xebbd1719 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebda36c6 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xebe0dcde eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0xebe82c1d ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xebf2031e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xebf65f34 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xebfd6623 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xec134ce7 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xec22345b fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xec304904 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set -EXPORT_SYMBOL_GPL vmlinux 0xec3f2280 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec5e148c is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xec63d699 __tracepoint_vfio_pci_nvgpu_mmap_fault -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xeccc7df4 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xecd1575f regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xece4513e skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xecf27342 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xed10b557 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xed188980 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xed3d4fdf ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xed585245 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed963d2c kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xed9a2de1 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xeda01441 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xedaa97eb disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xedac8240 ata_scsi_simulate -EXPORT_SYMBOL_GPL vmlinux 0xedac8e09 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xedad8732 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xedadc10d unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xedb446c8 of_dma_configure -EXPORT_SYMBOL_GPL vmlinux 0xedb60159 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xedb62a53 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xedbc7b48 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xeddbd00f serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xee00d77c bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xee12f9af devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xee166e21 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xee1816c6 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4510d8 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xee49d776 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xee573f2b alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6c2804 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xee707402 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xee8f0891 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xeea51684 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xeebb51dc regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xeec12755 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xeec32fcc devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee2bae8 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xeef2137b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xef01e987 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xef042de7 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xef282529 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xef2c9c86 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4db81c usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xef5a5b8e setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xef62a9a8 set_thread_tidr -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0xef6f804a devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xef79a837 md_run -EXPORT_SYMBOL_GPL vmlinux 0xef8323e4 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xef8e1343 blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xef901b13 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xef9a725c usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xef9b8021 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefae08ef __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xefb517f1 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xefb96cd0 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xefccef8b cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xefd19845 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xefd3e4df usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xefe700cc sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0xefe8628e blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xefe8cc3a cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefee6835 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xeff1a8e3 cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0xeff75e28 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xf0042d35 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf0086db8 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf00eb192 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xf03384e4 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xf03b4c4f usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf064a9f1 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xf06c4404 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xf07a3fef pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xf086dacc static_key_count -EXPORT_SYMBOL_GPL vmlinux 0xf09a1e10 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf09ba2f1 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xf0ae1b9a __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xf0c276a7 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf0cb492e crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xf0cdf52b get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf0df3ca7 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf0ecb354 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xf10684c0 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf112de8d register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xf12e8397 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf12f0804 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xf1304327 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf156d46d palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xf15f9c56 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf1609b26 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xf171b98d of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0xf177ca99 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1996129 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xf19b1b0d sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xf1a44553 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1d53821 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xf1dbd7dd iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf1f32fcb iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xf1f40e15 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xf1f9ec7a ata_do_eh -EXPORT_SYMBOL_GPL vmlinux 0xf2096f3c pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xf20b2576 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2343b31 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf2386db2 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xf2529b98 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xf263f941 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf278885a rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf28c382b devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xf2b8aabb genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xf2c6c92a edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2cc88f3 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xf2cd9538 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xf2da3c87 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xf2df4c58 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xf2e7280b irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xf2efb8af serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state -EXPORT_SYMBOL_GPL vmlinux 0xf2f24f19 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2f3514b con_debug_enter -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 0xf319c605 vas_copy_crb -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33f3ecd adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xf342aaf0 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf35ff694 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf366e8a2 __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf3767f4f pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xf377b252 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3837b3c udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0xf385dddf vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xf3a26e53 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3c85eb9 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xf3e85695 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xf417d808 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xf41ad60b virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xf4327a73 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xf43e8f33 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xf470ec06 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf48f18a3 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xf4adeba7 device_add -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4e30057 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xf4e94f01 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xf4f61f1f mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf50acffe platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xf50f0598 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xf527fa66 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5378ad5 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0xf53c1a81 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf5444f59 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf562ee4d gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xf563b2ea dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf563e7f2 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf56442c9 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xf57dfd7a inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xf5914ec9 copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0xf5a5f5b2 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5ae118b dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xf5b5aea0 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf5bac8d5 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xf5bd25a7 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xf5bf72aa usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf600c9c2 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xf61e43dc init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf62bea53 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xf630712b proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xf6343bf9 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xf635fdf6 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf64d16f0 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xf650a7d6 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf65679ad crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf68acc36 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf6909fca virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xf69e3a10 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a774a2 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xf6a806dd inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xf6b67ed5 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf6bc5dd5 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xf6c25781 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d3cdb7 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xf6d772b3 i2c_dw_probe -EXPORT_SYMBOL_GPL vmlinux 0xf6d851bb eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xf6dc0c98 usb_hcd_poll_rh_status -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 0xf70467c4 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf718c519 noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf71a6b01 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xf7227a2d of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xf72df6b3 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf7494218 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74a432a ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf774ad5b rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf78a515a bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xf79ae314 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xf79e78e5 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xf7aecf9c crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7d8adcc nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xf7e9885e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf8015d6d debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xf81334e6 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xf81a1973 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8411c70 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf8462e80 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf84b293d crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf87db8ce ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf8812717 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xf894dc3d tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xf897c91f rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xf89b99f4 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xf89e8ab2 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xf8c7d91b phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xf8c99364 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xf8cc1098 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf8d20475 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf8d3249d usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xf8d6970b fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xf8e430e5 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xf8ee59cd ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fbfe37 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xf903f180 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xf9143a57 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xf9189a81 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93488ee md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf935f8e6 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf958b277 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xf9606279 setfl -EXPORT_SYMBOL_GPL vmlinux 0xf9614b33 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xf96ec422 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0xf98cedce serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xf9940324 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9ab4f30 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf9b565f1 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf9c024e8 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9dbca30 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf9e903ad __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf9f12463 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xf9f25523 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfa043965 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa07bce0 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xfa0e9138 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa24af2e strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xfa46f491 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6b88e7 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa935d4e iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xfa93ce0f rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa98df22 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xfaa061a1 pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xfaa9372f regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xfab23778 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0xfad090c5 sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaec8906 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xfaecc421 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xfaeff120 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xfaf0c059 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xfaf271da blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfafa8f1c regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfafaa5bb ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xfafc660c devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xfb04c76f spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfb1939a2 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb24c835 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb448256 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xfb5c903a exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfb64df53 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xfb6be8af iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb735b85 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfb8cab05 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xfba4f34d fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xfbb963fa pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc446a2 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xfbc7e42e crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xfbe05a90 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xfbe4e5d2 xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0xfbfc2fab tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc102d08 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xfc10a8e3 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1a561d security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0xfc491042 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xfc4975f1 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfc5f78de put_device -EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc7bde5d dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xfca8b051 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfccde6eb gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfcd449cd securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xfcf014a4 ata_host_get -EXPORT_SYMBOL_GPL vmlinux 0xfd324b18 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xfd333335 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xfd5e6319 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfda5ad13 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xfda604e6 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xfdb4eea1 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc41c16 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfdd53dbf ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xfddcad88 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xfde85336 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfdf7d279 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xfe0b56f1 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xfe15b072 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xfe204059 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xfe3d5fd5 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4d2fc3 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xfe615968 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe7ee42d dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe7f1669 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xfe8285f5 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfe85c664 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xfe877fd5 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xfe8daa9b crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9af6c2 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xfe9c38ae spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xfe9d62cb usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xfea87695 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xfec9c283 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xfecfc5e4 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfeecf5be zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xfefe7a39 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xff0315d5 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0c0f4f devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xff1e6ca1 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xff4223e4 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xff42517a dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0xff46b53c debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xff513ba7 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xff585955 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff5bed06 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xff8153a3 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xff8ad9fc bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xff8b40bc serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xff99006b security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xffa843c9 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xffaca704 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb53243 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xffbf4148 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xffe4e4ce trace_define_field -USB_STORAGE EXPORT_SYMBOL_GPL 0x087daaee usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x124b65f0 usb_stor_control_msg 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 0x2a0e1c39 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x349d83b8 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x394bb1ef usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4bea2275 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4f7ffba0 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x55ad1314 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5e06e67d usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7040f50e usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x866fad32 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8966d393 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x910f2d57 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x99b530e1 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa1288575 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa6c86b7b usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xae274683 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc65be03c usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd555495f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdd378361 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe154f400 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe99be777 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeb86863c usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf5929985 usb_stor_CB_reset drivers/usb/storage/usb-storage reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/ppc64el/generic.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/ppc64el/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/ppc64el/generic.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/ppc64el/generic.modules @@ -1,5192 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_dw -8250_exar -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -ab3100 -ab3100-otp -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_ipt -act_mirred -act_mpls -act_nat -act_pedit -act_police -act_sample -act_simple -act_skbedit -act_skbmod -act_tunnel_key -act_vlan -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -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 -ad5791 -ad5820 -ad5933 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs450 -aegis128 -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airspy -ak7375 -ak881x -ak8974 -ak8975 -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 -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -anatop-regulator -ansi_cprng -anubis -anybuss_core -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -appledisplay -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquantia -ar1021_i2c -ar5523 -ar7part -arc-rawmode -arc-rimi -arc4 -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -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 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -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 -atlas-ph-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 -aufs -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -axp288_fuel_gauge -b1 -b1dma -b1pci -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bas_gigaset -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm7xxx -bcm87xx -bcma -bcma-hcd -bcmsysport -bd6107 -bd70528-charger -bd70528-regulator -bd70528_wdt -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bdc -be2iscsi -be2net -befs -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma180 -bma220_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 -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs-drm -bonding -bpa10x -bpck -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq25890_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -bsd_comp -bsr -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrfs -btrsi -btrtl -btsdio -bttv -btusb -btwilink -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c4 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -cachefiles -cadence_wdt -cafe_nand -caif -caif_hsi -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-j1939 -can-raw -cap11xx -capi -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 -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccree -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-pltfrm -cdns3 -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -cfspi_slave -ch -ch341 -ch7006 -ch9200 -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8318 -chipreg -chnl_net -chtls -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -ci_hdrc_zevio -cicada -cifs -cirrus -cirrusfb -clip -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -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_isadma -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -cortina -counter -cp210x -cpc925_edac -cpcap-adc -cpcap-battery -cpcap-pwrbutton -cpcap-regulator -cpia2 -cqhci -cramfs -crc-itu-t -crc-vpmsum_test -crc32_generic -crc32c-vpmsum -crc4 -crc64 -crc7 -crc8 -crct10dif-vpmsum -cryptd -crypto_engine -crypto_safexcel -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -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 -cxlflash -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cyclades -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da9030_battery -da9034-ts -da903x -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 -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -de2104x -de4x5 -decnet -defxx -denali -denali_pci -des_generic -device_dax -dfl -dfl-afu -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dl2k -dlci -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-integrity -dm-log -dm-log-userspace -dm-log-writes -dm-mirror -dm-multipath -dm-persistent-data -dm-queue-length -dm-raid -dm-region-hash -dm-round-robin -dm-service-time -dm-snapshot -dm-switch -dm-thin-pool -dm-unstripe -dm-verity -dm-writecache -dm-zero -dm-zoned -dm1105 -dm9601 -dmard06 -dmard09 -dmard10 -dmfe -dmm32at -dmx3191d -dn_rtmsg -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83tc811 -dpot-dac -dps310 -drbd -drm -drm_kms_helper -drm_mipi_dbi -drm_panel_orientation_quirks -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 -dumb-vga-dac -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw9714 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwmac-dwc-qos-eth -dwmac-generic -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 -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-platform -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -ethoc -evbug -exc3000 -exfat -extcon-adc-jack -extcon-arizona -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 -ezusb -f2fs -f75375s -f81232 -f81534 -f81601 -failover -fakelb -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_sh1106 -fb_ssd1289 -fb_ssd1305 -fb_ssd1306 -fb_ssd1325 -fb_ssd1331 -fb_ssd1351 -fb_st7735r -fb_st7789v -fb_sys_fops -fb_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -floppy -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-edma -fsl-edma-common -fsl-mph-dr-of -fsl_linflexuart -fsl_lpuart -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_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-gb -gb-audio-manager -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 -gdth -gemini -gen_probe -generic -generic-adc-battery -generic_bl -genet -geneve -genwqe_card -gf2k -gfs2 -gigaset -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goodix -gp2ap002a00f -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-altera -gpio-amd-fch -gpio-arizona -gpio-bd70528 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-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-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-regulator -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpu-sched -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc_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 -gtco -gtp -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hd44780 -hdc100x -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi311x -hi6210-i2s -hi6421-pmic-core -hi6421-regulator -hi6421v530-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-gaff -hid-gembird -hid-generic -hid-gfrm -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-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -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-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp100 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwa-hc -hwa-rc -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hyperbus-core -hysdn -i1480-dfu-usb -i1480-est -i2400m -i2400m-usb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-fsi -i2c-gpio -i2c-hid -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nvidia-gpu -i2c-ocores -i2c-parport -i2c-parport-light -i2c-pca-platform -i2c-piix4 -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-xiic -i3c -i3c-master-cdns -i40e -i40iw -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 -icc-core -ice -ice40-spi -icom -icp -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -ims-pcu -imx214 -imx258 -imx274 -imx319 -imx355 -imx6ul_tsc -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -input-polldev -inspur-ipsps -int51x1 -intel-xway -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ionic -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_tunnel -ip6_vti -ip6t_NPT -ip6t_REJECT -ip6t_SYNPROXY -ip6t_ah -ip6t_eui64 -ip6t_frag -ip6t_hbh -ip6t_ipv6header -ip6t_mh -ip6t_rpfilter -ip6t_rt -ip6t_srh -ip6table_filter -ip6table_mangle -ip6table_nat -ip6table_raw -ip6table_security -ip_gre -ip_set -ip_set_bitmap_ip -ip_set_bitmap_ipmac -ip_set_bitmap_port -ip_set_hash_ip -ip_set_hash_ipmac -ip_set_hash_ipmark -ip_set_hash_ipport -ip_set_hash_ipportip -ip_set_hash_ipportnet -ip_set_hash_mac -ip_set_hash_net -ip_set_hash_netiface -ip_set_hash_netnet -ip_set_hash_netport -ip_set_hash_netportnet -ip_set_list_set -ip_tables -ip_tunnel -ip_vs -ip_vs_dh -ip_vs_fo -ip_vs_ftp -ip_vs_lblc -ip_vs_lblcr -ip_vs_lc -ip_vs_mh -ip_vs_nq -ip_vs_ovf -ip_vs_pe_sip -ip_vs_rr -ip_vs_sed -ip_vs_sh -ip_vs_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 -iqs5xx -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 -ir38064 -irps5401 -irq-madera -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isicom -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it913x -itd1000 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb3 -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 -khazad -kheaders -kl5kusb105 -kmem -kmx61 -kobil_sct -kpc2000 -kpc2000_i2c -kpc2000_spi -kpc_dma -ks0108 -ks0127 -ks7010 -ks8842 -ks8851 -ks8851_mll -ksz8795 -ksz8795_spi -ksz884x -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcd -ldusb -lec -led-class-flash -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -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-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -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-usbport -lego_ev3_battery -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libarc4 -libceph -libcomposite -libcrc32c -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libsas -lightning -lineage-pem -linear -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -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 -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2497 -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2978 -ltc2990 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-encoder -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_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 -machxo2-spi -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max1586 -max16064 -max16065 -max1619 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31785 -max31790 -max31856 -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max8649 -max8660 -max8688 -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 -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 -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mcp16502 -mcp251x -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -md-cluster -md4 -md5-ppc -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-octeon -mdio-thunder -me4000 -me_daq -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 -mi0283qt -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microtek -mii -minix -mip6 -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx90614 -mlx90632 -mlxfw -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -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_sound -most_usb -most_video -motorola-cpcap -moxa -moxtet -mpc624 -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_common -msdos -msi001 -msi2500 -msm-vibrator -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6323-regulator -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-usb -mt7601u -mt7603e -mt7615e -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-quadspi -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxser -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -n_tracerouter -n_tracesink -nand -nand_ecc -nandcore -nandsim -national -natsemi -nau7802 -navman -nb8800 -nbd -nci -nci_spi -nci_uart -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -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_log -nfnetlink_osf -nfnetlink_queue -nfp -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_socket -nft_synproxy -nft_tproxy -nft_tunnel -nft_xfrm -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_isadma -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_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_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -null_blk -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nx-compress -nx-compress-powernv -nx-compress-pseries -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -objagg -ocelot_board -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -ocxl -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -ofpart -ohci-platform -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -oprofile -opt3001 -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov9640 -ov9650 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -panel -panel-arm-versatile -panel-feiyang-fy07024di26a30d -panel-ilitek-ili9322 -panel-ilitek-ili9881c -panel-innolux-p079zca -panel-jdi-lt070me05000 -panel-kingdisplay-kd097d04 -panel-lg-lb035q02 -panel-lg-lg4573 -panel-lvds -panel-nec-nl8048hl11 -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-rocktech-jh057n00900 -panel-ronbo-rb070d30 -panel-samsung-ld9040 -panel-samsung-s6d16d0 -panel-samsung-s6e3ha2 -panel-samsung-s6e63j0x03 -panel-samsung-s6e63m0 -panel-samsung-s6e8aa0 -panel-seiko-43wvf1g -panel-sharp-lq101r1sx01 -panel-sharp-ls037v7dw01 -panel-sharp-ls043t1le01 -panel-simple -panel-sitronix-st7701 -panel-sitronix-st7789v -panel-sony-acx565akm -panel-tpo-td028ttec1 -panel-tpo-td043mtea1 -panel-tpo-tpg110 -panel-truly-nt35597 -papr_scm -parade-ps8622 -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 -pblk -pc300too -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-pf-stub -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcspkr -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-cadence-dp -phy-cadence-sierra -phy-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gpio-vbus-usb -phy-isp1301 -phy-mapphone-mdm6600 -phy-ocelot-serdes -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pinctrl-axp209 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-rk805 -pinctrl-stmfx -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm80xx -pm8941-wled -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -pnv-php -poly1305_generic -port100 -powermate -powernv-op-panel -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -pseries-rng -pseries_energy -psmouse -psnap -psxpad-spi -pt -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvrusb2 -pwc -pwm-beeper -pwm-fan -pwm-fsl-ftm -pwm-ir-tx -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa27x_udc -pxe1610 -pxrc -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-emac -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom_glink_native -qcom_glink_rpm -qcom_spmi-regulator -qcserial -qed -qede -qedf -qedi -qedr -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_wwan -qnx4 -qnx6 -qoriq_thermal -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qxl -r592 -r6040 -r8152 -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 -raw_diag -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-behold -rc-behold-columbus -rc-budget-ci-old -rc-cinergy -rc-cinergy-1400 -rc-core -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-kworld-315u -rc-kworld-pc150u -rc-kworld-plus-tv-analog -rc-leadtek-y04g0051 -rc-lme2510 -rc-loopback -rc-manli -rc-medion-x10 -rc-medion-x10-digitainer -rc-medion-x10-or2x -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-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-tango -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-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-dvd -rc-zx-irdec -rc5t583-regulator -rcar_dw_hdmi -rcuperf -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-slimbus -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk805-pwrkey -rk808 -rk808-regulator -rm3100-core -rm3100-i2c -rm3100-spi -rmd128 -rmd160 -rmd256 -rmd320 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rn5t618 -rn5t618-regulator -rn5t618_wdt -rndis_host -rndis_wlan -rockchip -rocker -rocket -rohm-bd70528 -rohm-bd718x7 -rohm_bu21023 -roles -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpmsg_char -rpmsg_core -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt5033 -rt5033-regulator -rt5033_battery -rt61pci -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-ab3100 -rtc-abx80x -rtc-am1805 -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-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-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-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-snvs -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88 -rtwpci -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -salsa20_generic -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 -sbs-battery -sbs-charger -sbs-manager -sc16is7xx -sc92031 -sca3000 -scanlog -sch_atm -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -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-of-aspeed -sdhci-of-at91 -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-omap -sdhci-pci -sdhci-pltfm -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -seed -sensorhub -ser_gigaset -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sh_veu -sha1-powerpc -sha3_generic -shark2 -shiftfs -sht15 -sht21 -sht3x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -siox-bus-gpio -siox-core -sir_ir -sirf-audio-codec -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skd -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm3_generic -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smipcie -smm665 -smsc -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -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-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-core -snd-soc-cpcap -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7219 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-lochnagar-sc -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rl6231 -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5645 -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-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -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-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic3x -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd9335 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zx-aud96p22 -snd-sof -snd-sof-of -snd-sof-pci -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 -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-midpci -spi-dw-mmio -spi-gpio -spi-lm70llp -spi-loopback-test -spi-mxic -spi-nor -spi-nxp-fspi -spi-oc-tiny -spi-pxa2xx-platform -spi-sc18is602 -spi-sifive -spi-slave-system-control -spi-slave-time -spi-tle62x0 -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spl -spmi -sps30 -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svgalib -switchtec -sx8 -sx8654 -sx9500 -sy8106a-regulator -sy8824x -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink -synclink_gt -synclinkmp -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t1pci -t5403 -tag_8021q -tag_brcm -tag_dsa -tag_edsa -tag_gswip -tag_ksz -tag_lan9303 -tag_mtk -tag_qca -tag_sja1105 -tag_trailer -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 -tc358764 -tc358767 -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_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 -tea -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 -tgr192 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp401 -tmp421 -torture -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_spi -tpm_vtpm_proxy -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsl2550 -tsl2563 -tsl2583 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uartlite -uas -ubi -ubifs -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -umc -umem -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_gigaset -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 -usbvision -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -uwb -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vcan -vcnl4000 -vcnl4035 -vctrl-regulator -veml6070 -ves1820 -ves1x93 -veth -vf610_adc -vf610_dac -vfio_mdev -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_net -vhost_scsi -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 -vimc-capture -vimc-debayer -vimc-scaler -vimc-sensor -viperboard -viperboard_adc -virt-dma -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtiofs -virtual -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmx-crypto -vp27smpx -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsockmon -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_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 -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -whc-rc -whci -whci-hcd -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wimax -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 -wusb-cbaf -wusb-wa -wusbcore -x25 -x25_asy -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xhci-plat-hcd -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_gmii2rgmii -xilinx_ps2 -xilinx_sdfec -xilinx_uartps -xillybus_core -xillybus_of -xillybus_pcie -xlnx_vcu -xor -xpad -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 -yealink -yellowfin -yurex -z3fold -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr364xx -zram -zstd -zstd_compress -zunicode reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/ppc64el/generic.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/ppc64el/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/s390x/generic +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/s390x/generic @@ -1,12685 +0,0 @@ -EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 -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 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp -EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub -EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x1681759c crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x25d29b56 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x7dba0343 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x9570bdad crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xce9cb7e9 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xe3a5c2c3 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/sha3_generic 0x112e7622 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x28459331 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xb2002870 crypto_sha3_final -EXPORT_SYMBOL crypto/sm3_generic 0x69c31dcc crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xcca00d8a crypto_sm3_finup -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 0x002b786e drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01159bf0 drm_calc_vbltimestamp_from_scanoutpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x015a5b0e drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0209ed5b drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02be0225 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d1165c drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0529928d drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cb8e17 drm_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0712e21d drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f88521 drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a1f2c3f drm_mode_create_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aefa68d drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c452240 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ce4c3b1 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2d9c84 drm_bridge_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d2da64d drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5fe432 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e06afca drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e567e73 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed7b24f drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x105ec1b3 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1131fd41 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115f7db4 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11893fc6 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x131ca4a8 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x134599ff drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x139f8a8d drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14357dc5 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a1fbad drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c76f38 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d9e948 drm_irq_install -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16206e4d drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17bf435e drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17dbbad9 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18130e45 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x181ade01 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b4c002 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191a22e3 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19fed9a7 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bdef9dd drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf68661 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c30d123 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x204877c8 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21041141 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x218c6b05 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a1678d drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x263d9145 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2679a735 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c3f45d drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e3adef drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2920742f drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2953ab8d __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29646055 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2989a1c6 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7d49d2 drm_legacy_pci_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab7f2e0 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b414d44 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc217fb drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e18a6b1 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ecd47e7 drm_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3033825b drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31909418 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a60f69 drm_dev_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a165cd drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a2b011 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3651cf79 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x368319cf drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a2e9b2 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a40e8c drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ec55de drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37388f1b drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x382d880d drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x388edc39 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x392a5637 drm_legacy_ioremap_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393bc62f drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x397f3ea7 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a67fb83 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4b8ee9 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd7388b drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ddd27bc drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e180c1a drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eeedb12 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41dca3ed drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ea3161 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43fb179c drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c80683 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44daa1df drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e819fb drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4578c8c4 drm_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45862fb7 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4651072f drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d8b32c drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46daf018 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f985aa drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48342177 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4851d477 drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49cb2929 drm_connector_init_panel_orientation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a0552e1 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6b6eef drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa3a520 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbe42ed drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4a384b drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e260807 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eed2c6d drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5100631a drm_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51072abf drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x515e47c0 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51615914 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5252af65 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52eb981d drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x531abac7 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5415da99 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x594804be drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a40ac58 drm_client_modeset_commit_force -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b54ea17 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bdae949 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bdbbdca drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce68589 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7ab7e2 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7af5a0 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4c5557 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6da697 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eec37a8 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f095169 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6086859f drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d14505 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ea9007 drm_gem_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x617cdab7 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62506c71 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f5826b drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6369fcc0 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f24b7f drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64be6a66 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ed96d0 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66551bc7 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0x668c1499 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67117bc5 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x675a17f8 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6912328f drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d06497 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6af0b6af drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1a7cbe drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7be315 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7f1b90 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b99d843 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7091681c drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b26cac drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7148917c drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x723b89b9 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7247a996 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7433fa85 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7436eea4 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x755079e6 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7727b661 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x786d596b drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d80a2d drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e2d381 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x793e49d1 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x798f9776 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c24c7e drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79e16933 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0903da drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2ffa2b drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7d3c6b drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e14f431 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e87fc29 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f626fd0 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80454473 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8071489a drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e24386 drm_legacy_pci_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a0dc7c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83edd6b5 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851b00fa drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x862275e6 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a90c46 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x873a6ecb drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a6cfe3 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbdab41 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce24ff1 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e70e53e drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x905f22f3 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9213f5c3 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92db7813 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92de640e drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9314a572 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x931e667b drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a783e4 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b29312 drm_legacy_ioremapfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93c4cf11 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96723eab drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e54bf7 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976947bd drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0ab703 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adcaa76 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd8da9b drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bdb4565 drm_irq_uninstall -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c52f0cf drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea8fa60 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebbad65 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa017203f drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa038b8a3 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0fc8dfe drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa105572b drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1099a4f drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cce7cd drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30590bc drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e33916 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4867dbf drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50a6a1f drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56ced5e drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa576340a drm_gem_dumb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5dc18a3 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fba733 drm_panel_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa62784e1 drm_bridge_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e330f8 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7cd0f45 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8573e2a drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ad5d01 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c08831 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c99ea8 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9cc2e6f drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa312205 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae7025c drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab39d1f3 drm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac499277 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac566893 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac64ec98 drm_pci_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2d9758 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf660fea drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe51fea drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04518c6 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb10877f1 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1723f48 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a9e137 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c8895a drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44205d5 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb57a6741 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5962483 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d109b7 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb611c179 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb715ba7e drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ef7fb3 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb868e569 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb997293a drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cbf04c drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4dfc21 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4aec1d drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb6c6786 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc5f3bf3 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2bb10c drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd631faa drm_get_pci_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdce4ec5 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe6b1e00 drm_gem_object_put_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeea6281 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe9c941 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc08cad04 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e2678f drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc202338a drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc285e8a4 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a8a3e9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2e35996 drm_atomic_bridge_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324efb9 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bea702 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4adab69 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b99de4 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d90b2f drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55f6e03 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc782bd23 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d7b8b1 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9cf1455 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaff8109 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb240928 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2bf96d drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc37cd88 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc754002 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3538ba drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce90ea42 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd5d7ac drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdf513e drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09d7d7f drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0aef490 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd109aa00 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24e462e drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3293854 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd392d88f devm_drm_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39b8ee4 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a3da9f drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b9f467 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42d480c drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd566a172 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6fc193f drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd786b06d drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a1ca5d drm_pci_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7aa9e09 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e10364 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda1a31d9 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac5d232 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3bbfb1 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd310ad3 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdead2040 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9f6832 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfaa6508 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb5c29a drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb80013 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe01213fd drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0564999 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2015fa3 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2110610 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe272edde drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2881bca drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe314e1a2 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe325fe69 drm_bridge_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe430fe5b drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46f7fd4 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54b199f drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6550559 drm_prime_sg_to_page_addr_arrays -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70cbf0e drm_legacy_ioremap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73859eb drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93783a2 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97e8f9c drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea86749e drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab85d91 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb077dab drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb322ec6 drm_atomic_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb32e3bd drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8a9717 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf4d1ab drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed95269c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9a9adf drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract -EXPORT_SYMBOL drivers/gpu/drm/drm 0xede5e276 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee5eda33 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07bf376 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0825942 drm_bridge_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14acd38 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1af0024 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf21ff354 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37bdf8f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d169a8 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ecad99 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f30d03 drm_panel_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4149278 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43f1e0f drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf537b2db drm_atomic_bridge_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fb313a drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e31d90 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf753142a drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ad8181 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d9f157 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0de52d drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe20ebb0 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe8a485c drm_atomic_bridge_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff370575 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff576e10 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x020ce9a4 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0410f6c9 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0429e614 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f9589b drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c845f1 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08de4a7c drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09b33b6f drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a851947 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e27166e drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f82521e drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x111d2627 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1122a6d8 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11873b6a drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11df0321 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11e4ea94 drm_dp_mst_port_has_audio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x168e28fd __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1979b534 drm_atomic_helper_legacy_gamma_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c9fc6ac drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbd1b72 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eee47c8 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2322fc0d __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23e21a2f drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x253b80f0 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b0b7b64 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bde7946 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2beb480a drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c98bb91 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d42b973 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f8d36c9 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30deceb6 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31347d5d drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329972a4 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39cfe2a0 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bacf9a1 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c5b539a drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c934702 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d89f052 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e6ee5f7 drm_dp_link_power_down -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f8f95ba drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41050d7a drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f3eb79 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4646e1eb drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46ab06a4 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x479e283a drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48342440 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a63d4f1 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4becad0c drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cbb89e4 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e930858 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eea6b3b drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50925ed2 drm_fb_helper_defio_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5138408a drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52075eed drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x526f268e drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53b30224 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e2dec7 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57f44929 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57fff7c1 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x589e78bc drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58fa557e drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59b52ea9 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae3a322 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5af7a3e5 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b7dd999 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b908e6c drm_fb_helper_fbdev_teardown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8e4736 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e5c9cb8 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fad7dc5 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cee33c drm_dp_link_configure -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d46ee4 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63da512d drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x645a17c1 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65e04e21 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6680d6d6 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a48833d drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ad13d46 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b81c2cd drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c28ab2a drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d278f8e drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e98860e drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71081936 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7751f37a drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x782ef428 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7920c002 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79e89237 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b910f49 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bb99625 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7da8b36d drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f572fdb drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8060bce5 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8109b2a0 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81887ba2 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84c6df19 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87df0303 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884f795f drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x887d5a30 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88819580 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b156e3c drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c4fd95b drm_fb_helper_generic_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfdf5be drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da41efc drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee24fe8 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90fdaebc drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913d7742 drm_dp_link_probe -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x918af3f5 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91df4187 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92e5e544 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954073c9 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9599f017 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97c62d49 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98407b73 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b9fc01 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf6a484 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d2007e4 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f3f6f1d drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fe67dc5 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0adf7a5 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f5c65b drm_dp_get_edid_quirks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b439ac drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa529ca6b drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77958e4 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa3dbd36 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa556548 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf980d0 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab28ada8 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab3d4dbd drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac2d8635 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb7cc45 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafc28e5c drm_fb_helper_fbdev_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34da395 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5530155 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6667920 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8931cf9 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8b320d4 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb989ab3f drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9aa8d44 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba1df9ba drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcc3628f drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf3f1fc9 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b7d173 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2c12184 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4dae864 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6db58d3 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc924ad3f devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0607b0 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd77d12 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0b181a drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd56875c drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce68c2e0 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0282ae6 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd087c579 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd114e5dc drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd12c4c56 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd415d7ea drm_fb_helper_unlink_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd52b0e30 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd55cea07 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d2f122 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd65addc3 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86361a5 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd984848c drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdafcbc88 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc86c5a9 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd767717 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0f0b430 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe168d973 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e14620 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe46fb49f drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe639ed0a drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7009fc7 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74e539e __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fc1456 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9acd90d drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa2079f drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeab30cd9 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef0fba56 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17245f3 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2348e1f drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf245313d __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d82fa6 drm_dp_link_power_up -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf65170f7 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6c214eb drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79f19bc drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d17691 drm_gem_fb_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa86e0e2 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9ff4d5 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd4df7e drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbe8c893 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc106d7c drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc4d1436 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9bbbbb drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9c411c drm_fb_helper_modinit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeea9fef drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x00f11a4e drm_gem_vram_mm_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x020bd0fb drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x07ef95f4 drm_gem_vram_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x250e6781 drm_gem_vram_bo_driver_evict_flags -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2e90d924 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ca2c3b6 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4eb7a76b drm_gem_vram_kunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60cdb5a8 drm_gem_vram_bo_driver_verify_access -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60d800e3 drm_vram_mm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7072b1ca drm_gem_vram_kmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x71fc5602 drm_vram_mm_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9810e352 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa9907dd7 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb50b2bbb drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbccc0f72 drm_vram_helper_alloc_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc815f514 drm_vram_helper_release_mm -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca150371 drm_gem_vram_driver_dumb_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd51f792d drm_vram_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe4b76415 drm_vram_mm_file_operations_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf59eeb50 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x073b5f0d ttm_populate_and_map_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07bdadd9 ttm_bo_del_sub_from_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08a3cd9d ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15ca6eb8 ttm_bo_synccpu_write_grab -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x196dd130 ttm_bo_device_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20b49565 ttm_tt_set_placement_caching -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22869d1f ttm_kmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a39deef ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3315b32a ttm_tt_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e5674dc ttm_bo_move_ttm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x495c0d14 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x495c8cd4 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d84b9d2 ttm_check_under_lowerlimit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50d0d11b ttm_bo_pipeline_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x582ef7e6 ttm_fbdev_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58ff6520 ttm_bo_manager_func -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b1e2489 ttm_pool_unpopulate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5eecf164 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60f4813e ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x661e7ef8 ttm_bo_dma_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66ffbf43 ttm_bo_synccpu_write_release -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a267880 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x700a467b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x728df1d6 ttm_get_kernel_zone_memory_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x774233ce ttm_bo_mmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d3dd99a ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7de1705f ttm_bo_init_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810be9e9 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8420a0c5 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87c401cb ttm_kunmap_atomic_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8839d01d ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x883a1950 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e6d53ca ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ea29532 ttm_mem_io_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8eceea5a ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x930a6187 ttm_bo_evict_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96ab338b ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a7603dc ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b3be32b ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e1d5118 ttm_mem_io_lock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa41e0551 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa513f13a ttm_pool_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5c89a0a ttm_mem_io_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa81cf789 ttm_bo_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac0e50d1 ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae4259d0 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb04187af ttm_mem_io_unlock -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59f4b82 ttm_bo_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6fcaa18 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9219052 ttm_bo_clean_mm -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd419532 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca306919 ttm_bo_add_to_lru -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbe26a64 ttm_bo_mem_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd50ea93 ttm_page_alloc_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdc485fc ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1eb66ae ttm_dma_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd26ef59a ttm_dma_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd42db68b ttm_bo_acc_size -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd667f753 ttm_bo_swapout_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1f69b5a ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9be374c ttm_bo_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee1eed4e ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1828b3f ttm_unmap_and_unpopulate_pages -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8c04208 ttm_bo_put -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x34848f05 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3e059a5b i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7beea7dc i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x020816a8 i2c_transfer_buffer_flags -EXPORT_SYMBOL drivers/i2c/i2c-core 0x02eb5d70 i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x08770447 i2c_verify_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x088f3f9b i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x19bbafaf i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1b79c780 i2c_use_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x1da1ccf0 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x210f2949 i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x310ffa73 i2c_release_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x40b80d67 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x42328909 __i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4478aa47 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4fc659d7 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x52d91c33 i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x54b054b2 i2c_verify_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x6d6563fc i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x6f15d1f6 i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x704c7ba5 __i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x769992b7 i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0x799a4cb7 i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7fd52d37 i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8707d01a i2c_get_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9ca95eda i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc9219407 i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe262ca75 i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe8fd2993 i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf93d11e0 i2c_add_adapter -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0789faa0 ib_send_cm_apr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x179b313f ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2139a0af ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3236811d ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x494ffb76 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cf21987 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6de878b6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7542489c ib_send_cm_lap -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7654490c ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76b4aa7e ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x78d90509 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a8b4583 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x84cdc49c ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8cf8d3e9 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e107b56 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f88346b ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9d56e27 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbd95b0e cm_class -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0301915c ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0318d6f2 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05194a5e ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07cdfe80 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08035f3d ib_create_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08154f94 ib_sa_sendonly_fullmem_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b8c343 ib_fmr_pool_map_phys -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e870ce3 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x170512c9 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198fdd4f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19ba1468 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a681a17 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a9dfb87 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c5348a7 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1da39a4b ib_register_mad_snoop -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dcc776a ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f73ca59 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21ca37be rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24406eb8 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24de4e80 ib_modify_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25492974 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26359eee rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c0e853 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27cf1d8a rdma_restrack_set_task -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ec8a26 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2889a508 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a1fd501 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c6eaf50 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ceae1ef rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ffe6f9c rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3023b999 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31dd971e ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x335a579a ib_port_unregister_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3363d5de rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33719153 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38f6cd1d rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3914f53b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39912cc0 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a030c24 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd359ea ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc50bb5 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fcbca06 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e89d7b rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41cac6ee __ib_alloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42156fe2 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42862df8 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42cdb532 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4346599e ib_get_vf_stats -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 0x47319c6c rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d47663 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48250eff __ib_alloc_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x496053a3 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c4553da rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c47e0cd ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c86d15e ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d50e447 ib_create_wq -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 0x4ecdcd02 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f854097 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fb51ff4 ib_redirect_mad_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5117d482 rdma_restrack_kadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b5cda5 ib_dealloc_xrcd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53bc4ac5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5450ee4e ib_process_mad_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58e66477 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x594b0fcc rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a978bd3 ib_sa_service_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cfaa2b4 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de882e7 rdma_restrack_uadd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e43da16 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e62e5f4 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e986859 ib_drain_qp -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 0x63188177 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6421952a rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6448a32b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6599459a rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x661a5131 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x661beacd ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67459234 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67553914 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684c70c5 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6886d38e __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b2a22b ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x690f982d rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69805bc3 ib_create_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b48450b roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e5fb661 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed19ed3 ib_destroy_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f6b479b rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7074aa69 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708bbad7 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7125b9f3 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74732178 ib_dealloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7584ce5f ib_alloc_fmr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77bf3735 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77de5176 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780e76dc ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ac5b61 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a4f67f9 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9f999f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd5d7f7 ib_free_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c0a314a rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f6202c7 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81ac5e3b ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f2bf15 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82fed59d ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83412b58 ib_alloc_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866d376e ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89083fdf rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89ac6bb4 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89d9955a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b594859 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dcb170c rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc1aa31 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92705463 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x932cf658 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x977f662b ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991e5617 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x992b6f75 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a80754e ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d37d993 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d738d3b ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc0c135 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df14fbb ib_port_register_module_stat -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0cf30ec ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1388756 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa29c2309 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2f6167b ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4f58fb8 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5fe4f4c ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa73b8003 ib_create_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa872fa ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6f6a8d ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd2c7e4 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae900818 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaed352d6 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf152880 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb000d631 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b8cb56 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3effbec rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60ea115 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba6966d5 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba808ed5 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcecb860 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec62227 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfb3b66c ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3176f1f ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49cd049 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4c9a901 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55666a1 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5f2953e __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb7ea430 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd5c699f ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf92714 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd04c5e56 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd099d33a ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd194168c rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4c7c32d ib_cancel_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd586e738 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd828e8b3 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8c4c715 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd935f386 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6cbacc ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1b332eb ib_fmr_pool_unmap -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe444c1a1 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe456ef5b ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ceb556 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea39c202 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea77ac66 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec89c5e1 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2e1830 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee8d337a ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea34390 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb1b53d rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef37bd1b ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf24ead96 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf292c409 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf44265d8 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf63dc7f0 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf76897d8 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8351edc rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf920e4b3 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa413ffa ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfacf0498 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc80b8a1 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe9b38b8 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff78d41c ib_destroy_rwq_ind_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffd4e645 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0691c5d4 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13c2b95b ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x31ce0747 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3870a4b9 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e8573f5 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x531c17e4 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x625aa473 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x686509e7 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ce1e8ab uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fe956c1 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83ee6a47 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b87e98d uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa075cdea ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa21b0d3e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadebef8b uverbs_close_fd -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe030c7d ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc91c4b6a ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9da38d7 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcbc1f7ee ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcdfaa4d2 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd89fc612 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2ca8f3d _uverbs_get_const -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee094c1f ib_umem_page_count -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf073bd2d ib_umem_odp_map_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf55f4c50 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9168229 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x258b534f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x27d8309c iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d81d7be iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x753dd947 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82d2dd1c iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x97a640b2 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa5f97737 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaec2897b iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07cb560c rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09bcccd5 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2006fa0b rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27d163e3 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28626e66 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fd6e38c rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x336de889 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3683127c __rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x431218f4 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b052ecb rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c2f131e rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4df0b9c1 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64331f3a rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6900a914 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79683b53 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85dcc735 rdma_is_consumer_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86aa2cb7 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x917ba4c5 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94fc8c7d rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a98cad2 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa043606d rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa710e104 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad8881f2 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb176aaea rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb53336b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc41a931 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc85182a3 __rdma_create_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcd4a905 rdma_destroy_qp -EXPORT_SYMBOL drivers/md/bcache/bcache 0x298f22f9 bch_bset_sort_state_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x30cc56bf bch_bset_init_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync -EXPORT_SYMBOL drivers/md/bcache/bcache 0x32691456 bch_bkey_try_merge -EXPORT_SYMBOL drivers/md/bcache/bcache 0x34f8e022 bch_btree_keys_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait -EXPORT_SYMBOL drivers/md/bcache/bcache 0x47eb1d6e bch_bset_fix_invalidated_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub -EXPORT_SYMBOL drivers/md/bcache/bcache 0x5d27d8fa bch_bset_build_written_tree -EXPORT_SYMBOL drivers/md/bcache/bcache 0x605f12f5 bch_btree_sort_partial -EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put -EXPORT_SYMBOL drivers/md/bcache/bcache 0x771ebf74 bch_btree_sort_lazy -EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next -EXPORT_SYMBOL drivers/md/bcache/bcache 0x9c79f12f __bch_bset_search -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb61edea2 bch_btree_insert_key -EXPORT_SYMBOL drivers/md/bcache/bcache 0xb9cef37c bch_btree_iter_init -EXPORT_SYMBOL drivers/md/bcache/bcache 0xced5fd02 bch_btree_keys_free -EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up -EXPORT_SYMBOL drivers/md/bcache/bcache 0xf5bdf528 bch_btree_keys_alloc -EXPORT_SYMBOL drivers/md/bcache/bcache 0xfb8b580e bch_bset_insert -EXPORT_SYMBOL drivers/md/dm-log 0x338f7f5a dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x905fa15b dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xab784261 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xba52d7b9 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0ca8bae2 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7d91edbe dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9175a247 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa219371a dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc936f75f dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf27f7b53 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x4e6ae3ad r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x6c52cf9b raid5_set_cache_size -EXPORT_SYMBOL drivers/mfd/mfd-core 0x1932f028 devm_mfd_add_devices -EXPORT_SYMBOL drivers/mfd/mfd-core 0x2bf41d9d mfd_cell_disable -EXPORT_SYMBOL drivers/mfd/mfd-core 0x48ccfbc6 mfd_add_devices -EXPORT_SYMBOL drivers/mfd/mfd-core 0x88e9b070 mfd_cell_enable -EXPORT_SYMBOL drivers/mfd/mfd-core 0xef20214a mfd_remove_devices -EXPORT_SYMBOL drivers/mfd/mfd-core 0xfdf33486 mfd_clone_cell -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ef531a mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1358e5fa mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cd712c8 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf32bec mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d49ccd3 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dd00a39 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2845ffe0 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x294730ba mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29878def mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b582f1 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32911027 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34e7cd32 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ee33230 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48cfc278 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50fef15f mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x519e11c1 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55610bdf mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fef98d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9d78f8 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fcfa35e mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79115ef4 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2ddf59 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82717773 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82cf40e6 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b85b6f mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e4d6bd2 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9112fa8f mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91cafd35 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dcca55 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e8da7c mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97afd202 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29ba66d mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4f86a08 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa710e2ed mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6179ff0 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0fafa2 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2428a2 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3650ea2 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd43580c7 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe082b05a mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe15d7826 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe43d3a5e mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3d4643 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa1adf8c mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0247d035 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d1f4002 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e434251 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4bd62e mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14a1e6a0 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14a32e3d mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1556cf14 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e12879 mlx5_cmd_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1741f2cb mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8c9fb0 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2386912a mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27040aa5 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x290ca3d1 mlx5_core_create_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a776212 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9ac326 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b8361e0 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30951d3c mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37231c13 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39506734 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39f7ec4f mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a1c6b66 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414c6f55 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b05caa mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x455245b0 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46cbe507 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4925e274 mlx5_core_destroy_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4987d2ae mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a1ff092 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bd7d3da mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d134190 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8a6c75 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55361326 mlx5_unregister_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e6fb58 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b712010 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b763ed1 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bbcf62a mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6a34ef mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e04a95b mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f308ac0 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f55794b mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60142218 mlx5_eq_update_ci -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 0x624df193 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63adac8e mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66573e56 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d25e3b mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69eb2013 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a1c0955 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70d0e580 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76d4f6b5 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ebbc05 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79fb9ad1 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a1ed2c5 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba45589 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c034060 mlx5_cmd_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c1f7920 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7daeb6b0 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x805a2d7c mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8060c130 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8382d9ed mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86cd91fd mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88e4828e mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8996860e mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8baec5e6 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bc37787 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912687f3 mlx5_core_create_mkey_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91fad988 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2220f92 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4ce6bbc mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56d6d38 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafde5022 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb087ead1 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb16becf8 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2920e6f mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a16bce mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3292a9f mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3abdd96 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4079a5f mlx5_core_destroy_rq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb40aeb96 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7a40889 mlx5_register_interface -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93370c4 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9e06aa9 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba76424f mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaef01d2 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb016b57 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb452e9a mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe7d5156 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaed6bfe mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbde2442 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc3e369c mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcddf8d21 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd057cead mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd119e670 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd31e10de mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ff33f5 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd641c132 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f995ab mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd0e3fbf mlx5_core_create_tir_out -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe125855f mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe66e4f42 mlx5_query_port_ib_proto_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe69a391a mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe921cb3e mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec456fa2 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf015c06a mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13ce1a7 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1af8057 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3553311 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ed8a83 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4d696fc mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc06694e mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfccb00b1 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdfa2001 mlx5_core_create_sq_tracked -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x82e2ac65 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter -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 0x0bfc1956 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0dd8caa3 mlxsw_reg_trans_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x115cd4b7 mlxsw_core_rx_listener_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 0x17c2965c mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x207b19b5 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23e67698 mlxsw_core_trap_unregister -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 0x2decde87 mlxsw_core_fw_flash_start -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x405e5b33 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 0x47fd6eee mlxsw_core_fw_flash_end -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e2424ee mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x54f44f87 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5dcf588b mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5e776a13 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x60452661 mlxsw_core_trap_action_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61766d36 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x632314f1 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68c4d9fe mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9258d856 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 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 0xa3d0d2b6 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf39bae0 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4270a2e 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 0xd959782d mlxsw_core_rx_listener_unregister -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 0xde435fd4 mlxsw_core_skb_transmit -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 0xdeff4950 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7dbf85e9 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8e6f149f mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x90c82267 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x015d838b __mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x0253c8bb __phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x048b5d34 __phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0x05163575 genphy_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x05d08afb mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0x06929400 phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x0acfedf9 phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x0e8379e7 phy_validate_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x1257a554 mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x13e297bb genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0x153f4cfa phy_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x1721974f mdiobus_get_phy -EXPORT_SYMBOL drivers/net/phy/libphy 0x17a3da63 mdio_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x1b51be71 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x1e8067b3 phy_ethtool_get_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0x20e905e6 genphy_soft_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x242a1d55 mdio_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x26c44766 phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0x28a645df genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0x28dc4a83 mdio_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x2b34a22e phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x2eb55593 mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x33a90249 mdiobus_unregister_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x37093d7e mdiobus_register_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x390d0bb8 phy_remove_link_mode -EXPORT_SYMBOL drivers/net/phy/libphy 0x3afd5b7c phy_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x3cdd890a genphy_read_abilities -EXPORT_SYMBOL drivers/net/phy/libphy 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x409c2bfc phy_ethtool_ksettings_set -EXPORT_SYMBOL drivers/net/phy/libphy 0x4122f54b phy_register_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0x41f3403a mdiobus_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x4315a916 phy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0x45266fc1 phy_start -EXPORT_SYMBOL drivers/net/phy/libphy 0x45764971 phy_write_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0x479d4b77 phy_ethtool_set_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x49db2726 phy_drivers_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x4ba7f5a6 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x4c76f05f phy_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x4cb0d2de phy_attach_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0x4e2b83c2 phy_request_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x52ab3a11 __phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x57c24805 phy_set_max_speed -EXPORT_SYMBOL drivers/net/phy/libphy 0x58c1a357 phy_support_sym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x59b1fc8c mdiobus_scan -EXPORT_SYMBOL drivers/net/phy/libphy 0x5c5b0054 phy_drivers_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x5c6e8674 __genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x66943652 phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x69528b7e genphy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0x69c4f1b2 phy_register_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x6d953d2d phy_free_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0x776b401c __mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x7ce3ff1c phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x80000cad mdiobus_read_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x809b433d phy_init_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x814a2af0 phy_queue_state_machine -EXPORT_SYMBOL drivers/net/phy/libphy 0x8499df4a phy_ethtool_sset -EXPORT_SYMBOL drivers/net/phy/libphy 0x8519d113 genphy_read_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0x85a0c21c phy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x891eb00d phy_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x8da0a38f genphy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0x920a3d0b phy_modify_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0x9451ee47 mdio_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x95c27945 phy_ethtool_nway_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x96b535dc phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0xa941209f phy_support_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xaa3744b4 phy_advertise_supported -EXPORT_SYMBOL drivers/net/phy/libphy 0xaad720c4 __mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0xab680dbc phy_ethtool_ksettings_get -EXPORT_SYMBOL drivers/net/phy/libphy 0xabff8e3d mdio_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0xacd840fe phy_set_sym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xadd32114 phy_get_eee_err -EXPORT_SYMBOL drivers/net/phy/libphy 0xb0bfb4d4 phy_attached_print -EXPORT_SYMBOL drivers/net/phy/libphy 0xb20ac668 mdio_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xb27d52f0 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0xb7d9b68d genphy_write_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0xb83340ee phy_ethtool_set_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0xbb9081c4 phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0xbd108fae mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0xbd91e337 mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0xbf516d94 get_phy_device -EXPORT_SYMBOL drivers/net/phy/libphy 0xc0af0060 phy_set_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xc10126f5 phy_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0xc43c222e phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xc444a078 genphy_setup_forced -EXPORT_SYMBOL drivers/net/phy/libphy 0xc44e990b phy_register_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0xc4ac8870 genphy_read_lpa -EXPORT_SYMBOL drivers/net/phy/libphy 0xc5f6d4e4 genphy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0xc70c91cc phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xce11146b phy_attached_info -EXPORT_SYMBOL drivers/net/phy/libphy 0xd0c5bf44 phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xd4f03064 phy_reset_after_clk_enable -EXPORT_SYMBOL drivers/net/phy/libphy 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0xdd7f209a phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0xe1cfaf96 phy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0xe42c9f9b phy_init_hw -EXPORT_SYMBOL drivers/net/phy/libphy 0xe5512c05 phy_mac_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0xec05f60f phy_ethtool_get_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0xef83bd98 phy_find_first -EXPORT_SYMBOL drivers/net/phy/libphy 0xefffff73 phy_connect -EXPORT_SYMBOL drivers/net/phy/libphy 0xf68976ab mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/phy/libphy 0xf7956680 phy_modify_paged_changed -EXPORT_SYMBOL drivers/net/phy/libphy 0xf8c03573 genphy_config_eee_advert -EXPORT_SYMBOL drivers/net/phy/libphy 0xfea9ddbd mdio_device_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0xfeb80626 phy_read_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0xffcf1679 mdiobus_is_registered_device -EXPORT_SYMBOL drivers/net/team/team 0x210c2d4e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x6483bbca team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x6831a6bd team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x9b1ebafa team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xc3b02701 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xc57c8954 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xd6bef8ef team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xee22a035 team_options_register -EXPORT_SYMBOL drivers/pps/pps_core 0x4063ea66 pps_event -EXPORT_SYMBOL drivers/pps/pps_core 0x5c827e55 pps_register_source -EXPORT_SYMBOL drivers/pps/pps_core 0x6cf98ddc pps_unregister_source -EXPORT_SYMBOL drivers/pps/pps_core 0xf7035c62 pps_lookup_dev -EXPORT_SYMBOL drivers/ptp/ptp 0x065bb2d2 ptp_schedule_worker -EXPORT_SYMBOL drivers/ptp/ptp 0x52cdd5da ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x5e44e2d9 ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0x7888fa07 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xa8306b78 scaled_ppm_to_ppb -EXPORT_SYMBOL drivers/ptp/ptp 0xc8b1e58d ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0xe08f891d ptp_clock_event -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x07478ae8 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x110796b9 dasd_block_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x18e0c566 dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1fecb34b dasd_schedule_device_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2ba8a20c dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2d65d248 dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2ea21da5 dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3ba74d64 dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x416d8aa2 dasd_set_feature -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4222bd29 dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x586aad31 dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x68d9cf61 dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6babeb89 dasd_fmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6d1e522f dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x724de53f dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x77202c41 dasd_smalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x79e0eb72 dasd_schedule_requeue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8028598e dasd_block_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x80f343cf dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8b6b5c31 dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x901e9213 dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9183bd08 dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9b24fd0d dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9f1364a2 dasd_add_request_head -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa3a35ee0 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa8ba0b5e dasd_set_target_state -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa8c12b9e dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4714192 dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc3442b7f dasd_ffree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd24d9e97 dasd_term_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdbbdca6b dasd_sleep_on -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xef45a4d4 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf59b2f33 dasd_sfree_request -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 0x02b3df72 tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0x06466515 tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0x0bf424d8 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0x0c03bce0 tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x13a06bec tape_generic_pm_suspend -EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x27d33e9d tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0x2cd04c5f tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0x38d80c17 tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0x3bc959ab tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0x598c8127 tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0x5c70c192 tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0x5cbe4203 tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x5dd69b55 tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0x5e35bf51 tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x6ea658c7 tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0x71281ae2 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape 0x788e7daf tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0x807818da tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0x816dadcc tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0x8247e80c tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0x82a8359d tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x8dfff85a tape_std_mtreset -EXPORT_SYMBOL drivers/s390/char/tape 0x95cb12ec tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0xa2cac4dc tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0xaaac9f48 tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xac24babd tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0xae006b07 tape_alloc_request -EXPORT_SYMBOL drivers/s390/char/tape 0xba3fe98e tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xbbabb685 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xc03931b8 tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0xc1f7438a tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0xc4c88e0d tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0xcd9e3087 tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xd6de116d tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0xd7e45ca6 tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0xd8c77737 tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0xdcc5f85e tape_free_request -EXPORT_SYMBOL drivers/s390/char/tape 0xde71bcca tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0xe045d64a tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xe2271b5a tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0xe482c842 tape_generic_online -EXPORT_SYMBOL drivers/s390/char/tape 0xf616c8f6 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0xf71b6755 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0xfc4a2f70 tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x7bde3ebb tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0xb603c8e9 tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0x2d243188 register_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xd5f130d0 unregister_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0a66f54a ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x530676b9 ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x7b428a8b dev_is_ccwgroup -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xadd4b9ca ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xb706d228 ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xc4286aff ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe38c0a7e ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xea035fa1 ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/qdio 0x2df32be2 qdio_get_next_buffers -EXPORT_SYMBOL drivers/s390/cio/qdio 0x3cbeac3e qdio_stop_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0xfdce3281 qdio_start_irq -EXPORT_SYMBOL drivers/s390/crypto/pkey 0xa2396123 pkey_keyblob2pkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x03289742 zcrypt_card_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x06584729 zcrypt_card_free -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x170d6b33 cca_sec2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2aa40311 zcrypt_queue_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2be1f6aa ep11_key2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x38ee85ce cca_check_secaescipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x47c5a451 cca_findcard2 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4a2cde7f zcrypt_queue_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4bb8a363 __tracepoint_s390_zcrypt_rep -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52a39222 __tracepoint_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5eaa99ae zcrypt_send_cprb -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x606c7b6c cca_check_secaeskeytoken -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x694bc488 zcrypt_msgtype -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x6bddd9a1 zcrypt_queue_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x747ae016 zcrypt_queue_free -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x767bbe3a zcrypt_queue_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x84ffd23a zcrypt_card_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x888bb8b6 zcrypt_card_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xb282926b cca_get_info -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 0xc5cedbd0 zcrypt_card_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xd937e359 zcrypt_queue_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf5443a16 ep11_check_aeskeyblob -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfff2d79d zcrypt_card_get -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 0x28d3cbe9 fsm_settimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x30ab97c9 fsm_modtimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x39209ed5 kfree_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x4947f4b3 fsm_deltimer -EXPORT_SYMBOL drivers/s390/net/fsm 0x5bbdc3d4 init_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x75223679 fsm_getstate_str -EXPORT_SYMBOL drivers/s390/net/fsm 0xe8ae8e7a fsm_addtimer -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x752415e2 qeth_osn_register -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x892fe7fd qeth_osn_deregister -EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xe8c8e48d qeth_osn_assist -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19b8facc fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f88ffff fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2fb840e9 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5cd12a68 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5eac7e0a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6692b3c1 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d446259 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8453d31a fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x883c816c fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcc89f9da fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeabd1369 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x079af3d2 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b8fe36b fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10257cff fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11accfb2 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17f62c62 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1971c2b6 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c97cff3 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fd0416d _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2853ffab fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c95d519 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38c5f821 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39c51c02 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dd9b43d fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x430ea2e4 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x469a916d fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f5911b2 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x512c3fe6 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56abc77d fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57accadc fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x599af955 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x621b0f22 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b10fd18 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b6c6512 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x775fb871 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79890fef fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cc05f8b fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f7d73fb fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82f040ef fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x847a96bd fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84cd2173 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bb2de36 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95837fe1 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95afcf3d fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cff88c9 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1952e73 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa87a66e6 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa911556e fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9375390 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf7a65ac fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb01eaa8e fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5099fb8 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7e82215 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80021d3 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc1bddee fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdcb64f7 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3e3e7cc fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc53a27ab fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb5cff94 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfb10549 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2eed7d6 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd95ca13f fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaed23f7 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb315f85 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1b3c206 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8aafe52 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb292eeb fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4b934a5 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9525f2d fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdbdef03 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x14136bb6 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x56e0098d sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc128455d sas_resume_ha -EXPORT_SYMBOL drivers/scsi/raid_class 0x81c531da raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x9552e38d raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0xdf0f484d raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26d94cc5 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2988660f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3548b3ac fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x36f0a981 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3960d42b fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5add3d81 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5cdc7d74 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5eb0f40f fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67cedcae fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d19948a fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa815a2ab fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb08eb79a fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbcd1230d fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf132954 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd6f75d07 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde350b26 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02b7d84f sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05a5c288 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x072ccc9d sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0773d5e7 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31a43dbc sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3755becc sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4496e557 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x488e1742 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x541e67ff sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5480e206 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x557e8da7 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6415b35b sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b3957a9 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8442b81f sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8664cedf sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86dd2904 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8bd9ce0e sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4609957 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa78cdbc2 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9c5c30a sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa138363 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae86ea33 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc17e23ab sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc272474c sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc89edaa1 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca59b332 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf0703b0 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1569b67 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb46eee2 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x430284b4 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4b5daad6 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa22d887d spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa7ff09f5 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xef3ff6ee spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x18fd9501 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9e8365af srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa5b3f380 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa71897dd srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd6bdcb8c srp_timed_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06ff1117 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x123bbb70 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e0cdb5c iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24d07261 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25ee3a0b iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2bce5525 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30459476 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30aa648c iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30e7e209 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x333b71a5 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3731f243 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f61d609 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x473efe03 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4db6b08a iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50dc21b1 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50e6c2ad iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5819d16a iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c9ac3c7 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67f72441 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6931c183 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69af4b3f iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6be118af iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e845c47 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ef9babe iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x749632fd iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c1ca728 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d4dbede iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f582703 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99b8bb72 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a8a01b1 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d2e337b iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f269c89 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa26d0ce6 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9a0c32f iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad43353f iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc013fc7e iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc745a40e iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc407920 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7f5e342 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb473695 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9e38293 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf013e68e iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9783a48 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffd2d1a7 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x01cfead2 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x048aa283 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09bfea3c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f49345b target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x109033e2 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x111f66c8 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x12d735e5 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x181cfb49 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x19ac99a3 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b7b0592 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e8b2419 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x209e8e4f target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x246a5dc7 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a383065 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c86d170 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x32a39bbb spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x341a009a sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x399cc5f5 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a56494d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4296fd62 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d522b35 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f958e51 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x52aebc0c transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x5728cdb8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a1dd6e0 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x612222a5 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x634b0660 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x65776f5f core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x660f9d67 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x6725d32b target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x677ef989 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ba0311f target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c17996e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fd339a8 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x7513ae16 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x76050ed0 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x81e9f5f7 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b753701 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b7d6a50 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fa24555 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x950da29a target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x96260eab target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d62b9e8 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xa29cef0f sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f24e93 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa389e759 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4416028 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4aa7d1c transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb018a42e transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1b7a6b4 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4c7091e target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5450ae7 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7bd5450 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb95806f0 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xba719b9d transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbba9ccee transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0d4f934 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6dd9140 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb88f4a5 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6f9df9f target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8085d31 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9ee504a transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb31272a target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd0e141c transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xde2fa6ca core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0cb8206 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5339d14 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xebc51365 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6a675ce target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xfeb4d83d transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xfef66578 transport_register_session -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0ae56af0 uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3d422407 uart_update_timeout -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3ff86860 uart_match_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x42d01965 uart_write_wakeup -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x4fecab13 uart_get_baud_rate -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x938e45c1 uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa692e33a uart_remove_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xdc5aec4f uart_resume_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xdfd9b492 uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xf207fe61 uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xfb095234 uart_suspend_port -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0b97bbb1 mdev_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x11d4715b mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1c897ed7 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2cc506d0 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x445e6e82 mdev_set_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x59af8e63 mdev_from_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8bddb39d mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8cacb01e mdev_set_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x921fad7c mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa2113ba9 mdev_get_drvdata -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc94de7d4 mdev_get_iommu_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf40f6526 mdev_uuid -EXPORT_SYMBOL drivers/vfio/vfio 0x081e13a0 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x2d4df7bd vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x93b5bf06 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0xf9a68cc1 vfio_register_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0x062fc4ab vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xb36ce2d0 vhost_chr_write_iter -EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x9c18d313 cfb_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0x18b724d1 cfb_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0x1bc915dd cfb_imageblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xa32b01e0 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2784f622 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x1c35670d sys_imageblit -EXPORT_SYMBOL fs/fscache/fscache 0x025ec956 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x0af8e25f fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x1222983b __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x16dcbdb7 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x1af1038d __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x1b0c6854 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x1b2aff8b __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x25337bde __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x2a87a886 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x2c6d191b fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x2f962757 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4211db45 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x43253c15 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x43a7b915 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4c2420f3 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x4fced9ee __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x5333fa17 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5345b896 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x6386a4f2 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x6871978f fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x69f0b4ee __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x6a47264c __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6adbbc15 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7ce6994e fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x8d86487e fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x90b98425 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x94b02630 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xb2caf573 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb5be162e fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbf9a5072 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xcc05e51b fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xce40c179 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xd14c6d23 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xd39b73f0 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xd5348360 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xdc2dd70c __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xec7fefcc __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xf5b6b3dc __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xff1fdaf0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xffe1e02b fscache_withdraw_cache -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x1527b737 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x2977a84d qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x3527e620 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8aca5213 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb0728871 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb28990b2 qtree_release_dquot -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xc440541c crc7_be -EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crc8 0xfa0da958 crc8 -EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del -EXPORT_SYMBOL lib/lru_cache 0x1a722bc3 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set -EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get -EXPORT_SYMBOL lib/lru_cache 0x7f9511c7 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create -EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put -EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find -EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used -EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default -EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize -EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast -EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict -EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x0f3dcf29 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7f7bbb7e LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xe06ae6d6 LZ4_compress_HC_continue -EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq -EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw -EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy -EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv -EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv -EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get -EXPORT_SYMBOL lib/objagg 0x38e157a7 objagg_create -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get -EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get -EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put -EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get -EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init -EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add -EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove -EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create -EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini -EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy -EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL lib/zstd/zstd_compress 0x00441ef6 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x040c92d1 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x065b14f3 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0b9a9379 ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x17823f99 ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1ffb27f1 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2411b496 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x273a39e7 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35adbdc6 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x48bfae8e ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x50d289a3 ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x515ab572 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x57b1012f ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66a8b7ab ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x785d10c3 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x84e61bae ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x8f2f596d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x97b3b7ca ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa88b0af5 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc2d4374c ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc83660bd ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd1ad98e7 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd967de6d ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdc157266 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdfb596f8 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe02d4179 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe14f9e35 ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0xebe6a8a6 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xf2068346 ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xff471430 ZSTD_compressBegin_advanced -EXPORT_SYMBOL net/802/p8022 0x269e3b42 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x5a6c7391 register_8022_client -EXPORT_SYMBOL net/802/psnap 0xf1413b7b register_snap_client -EXPORT_SYMBOL net/802/psnap 0xffee5b5a unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x06e61867 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x11f816a8 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x23bfcb20 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x2d55125f p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x305ff954 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x31d5eab0 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x359d1e6b p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x390f1985 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e46953d p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x3f5cf0f0 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x3f9c48f8 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x41b39c82 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x490ebf77 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x4a6791ff p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x4c0f04be p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x50ccb2f9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x5831b3a0 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x61819eea p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x62e15b59 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6334a625 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x6f8a2c29 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x71a01a89 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x79b0ec65 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7e21e501 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8113d9ce v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x867b35b6 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x86971257 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x88137dc5 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x885fa064 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x89da769e p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x9931b9d8 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xa9c3628e p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xad7b5834 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xb5f1e093 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xbd48077e p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xbd68c60c p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xbf405b77 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3ed9831 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xdace621d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xe3cd99dc v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe60598b1 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xedd4e8b7 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xfbabebe3 p9_client_readlink -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x74a490f0 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9328109e ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9be8d597 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf8dac86f ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/ceph/libceph 0x01fda342 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x027196e3 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x062f15bf ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x0664d2e2 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x0851e741 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x0bc2fda9 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x0e427cae ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x1f55158e ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21480890 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x226db616 ceph_monc_blacklist_add -EXPORT_SYMBOL net/ceph/libceph 0x24b4e8de ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x25ba5a0d ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x2b2a76a7 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x2c4bbc5a ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2c8eb147 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x305f068d ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x308eb22f ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x3527b7ec ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x37ee78d1 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a24327a osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3c3614d0 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3f9be79b osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x40c335f8 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x478ac287 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x49440227 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x4b2970d1 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4f23b39f ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x4fad4323 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5170872b ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x52eb7099 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x55dce9f0 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x579a29f0 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59946d18 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5be07e0c ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x5fd707dd ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x61f868f5 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x630ddd9e ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x6310bbe5 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x660684ab ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x664e27d3 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x6a27e092 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c68efee ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x6e48c4b1 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x6e930833 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x708da7e9 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x71790abf ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x72b4a8c7 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x780673f4 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x7ceb49dd ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x7d97bf12 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x7da3e24b ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x7e73aa84 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x7f318c18 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x80b39277 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x81dfa65c ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x83fa9a01 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x89f6f0d5 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8a05acbb ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8a4a8245 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x8ec436d6 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy -EXPORT_SYMBOL net/ceph/libceph 0x99dcc6aa ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x9a882f97 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x9b50b9a3 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xa56ff208 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xa6665545 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa9bec4f8 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xa9c98ad5 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5e91345 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb67a8593 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb766a7d3 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0xb79da942 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xb7ac2ef4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xb9abbba4 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xbb28f7e9 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd453e8c ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf01708d osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0xc3a3ddf1 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xc4c2154d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xc4c26d8b ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xc7af2ba3 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc906d740 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xc9b5f23f ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xce54a0f1 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xd118567b osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd16d6cd1 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd18fe9f3 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0xd33f3e4b ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy -EXPORT_SYMBOL net/ceph/libceph 0xd803665b ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd98c30d1 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xdabe78e5 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xdcfcb7ac ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xdf60e430 ceph_osdc_new_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 0xe26fa278 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe3376bab ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0xe6de76f4 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xeb8e5506 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xecaada6d osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xeccae611 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef63c540 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf05e1ee1 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xf16ebb66 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xf7eabef7 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xfab27e9e ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xfb27354c ceph_pg_pool_flags -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0805c126 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x31dc366a dccp_req_err -EXPORT_SYMBOL net/ipv4/fou 0x0f17c6c0 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xc1fcba59 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xe87c3c55 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x31f7d5c1 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x382704da ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa84c3aaa ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe4ea675c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0ecdde13 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x190c0bfb arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x347bb86d arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x465046e9 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x41ad219e ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x565b9a7b ipt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x79c37ded ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x30440a84 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb431c61b xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe3c4ae91 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0e816b91 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x198a1890 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7b1e9b6a ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x83096f9e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x948bc1a1 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x94c3e9cf ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x953bb476 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9918b8e7 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xae21618a ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x13ca54ae ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x54bbe4c0 ip6t_unregister_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa223b7f7 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x26b581a5 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xd484f9c8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4f6d45b7 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd8be6b8c xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/l2tp/l2tp_core 0x4ed353c8 l2tp_tunnel_free -EXPORT_SYMBOL net/l2tp/l2tp_core 0x4f2ffca4 l2tp_recv_common -EXPORT_SYMBOL net/l2tp/l2tp_ip 0x4b73f248 l2tp_ioctl -EXPORT_SYMBOL net/llc/llc 0x11483c1f llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x189e23e4 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x670734a6 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x77b05e5e llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x9e71e2dd llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xb313ddca llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xec5b50ba llc_sap_open -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0f9a321e ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x45b03dba register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x46f80633 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4795bb85 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d75cc8d ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f6614c4 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55d03026 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x56d4a639 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6655efbb ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f299ac9 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaaf3f85b ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb41b11af ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc4626507 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca66c68c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf7eb2659 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7d10a198 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb5936220 nf_ct_ext_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x5b53383c nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x720a8fc4 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xc4d65b8d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd9cbd99c nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xdd8151be nf_xfrm_me_harder -EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x23978309 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x2bf216d7 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x34f016dc xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x37887c6c 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 0x6337d912 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7643c614 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x8cf2d345 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x9aed55c5 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa2993ff2 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info -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 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1be969fd rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x414fe868 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4427319d key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x46cd8b48 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x827286c3 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x92d805a1 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ee4aece rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa23f7ad9 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb7e3fe79 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc7e088da rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc8f86935 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xce9dda28 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe85581e1 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xea2506ba rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf0fe7344 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf893867f rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb1f5b55 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0xa958bee3 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x39a09c00 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c85af42 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb6558ce5 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x81493318 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe9038657 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf60a6ffd xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x033abeed tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x2e0e1177 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x54f23ae4 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x581813bd tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x0c85437f tls_get_record -EXPORT_SYMBOL net/tls/tls 0x968bd3d1 tls_unregister_device -EXPORT_SYMBOL net/tls/tls 0xeee0519a tls_register_device -EXPORT_SYMBOL vmlinux 0x0003def7 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x00042fd3 compat_nf_setsockopt -EXPORT_SYMBOL vmlinux 0x000693b1 vfs_create -EXPORT_SYMBOL vmlinux 0x001c43a6 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x001f9a18 pci_request_irq -EXPORT_SYMBOL vmlinux 0x00273c8d xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x0076fb20 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x008321d5 sk_free -EXPORT_SYMBOL vmlinux 0x00aef0ee md_write_start -EXPORT_SYMBOL vmlinux 0x00dc9758 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x00eb1c3a radix_tree_delete -EXPORT_SYMBOL vmlinux 0x00f31992 param_get_string -EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0137ab26 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0147f5f9 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01627cc8 cdev_alloc -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x01addcd8 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c06b75 tcp_mmap -EXPORT_SYMBOL vmlinux 0x01cb0561 get_tree_single -EXPORT_SYMBOL vmlinux 0x01d07a7f scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x01d178f4 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x01d263f2 __f_setown -EXPORT_SYMBOL vmlinux 0x01e1ec00 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x01e53dfa qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x01efa760 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0228b02f raw3270_request_add_data -EXPORT_SYMBOL vmlinux 0x02346616 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x023bfaec genl_family_attrbuf -EXPORT_SYMBOL vmlinux 0x0243218c dqput -EXPORT_SYMBOL vmlinux 0x0246167c sock_no_listen -EXPORT_SYMBOL vmlinux 0x02493906 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x024d26dd crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups -EXPORT_SYMBOL vmlinux 0x0257a9ae down_read_trylock -EXPORT_SYMBOL vmlinux 0x026ed639 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02852422 kobject_add -EXPORT_SYMBOL vmlinux 0x0286c20a bit_waitqueue -EXPORT_SYMBOL vmlinux 0x02970893 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x0297cf95 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02ccfe5e sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string -EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run -EXPORT_SYMBOL vmlinux 0x0313d590 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x031a65fd flush_old_exec -EXPORT_SYMBOL vmlinux 0x032ad42a param_set_copystring -EXPORT_SYMBOL vmlinux 0x032ed699 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033a14a2 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036a2ac2 pci_get_slot -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037cf02f vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x03821858 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x03875635 kbd_keycode -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039e984b __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x03a21749 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x03bd6555 d_rehash -EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x03d3dd61 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x03d3e257 sk_dst_check -EXPORT_SYMBOL vmlinux 0x03dc3c98 cdev_init -EXPORT_SYMBOL vmlinux 0x03f8f53f con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0407fab0 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x0447cfc3 bd_start_claiming -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0451d000 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0456ae21 __tracepoint_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0x045fde98 __cgroup_bpf_run_filter_sysctl -EXPORT_SYMBOL vmlinux 0x047df0b1 netlink_unicast -EXPORT_SYMBOL vmlinux 0x04c77452 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol -EXPORT_SYMBOL vmlinux 0x04f2e3cd hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x04f9af0c crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x0509d50c blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x05221acd pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0542c194 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x055581a4 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x056365d2 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x056f5cef radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x056fe23e task_work_add -EXPORT_SYMBOL vmlinux 0x05808044 inet_release -EXPORT_SYMBOL vmlinux 0x05896635 deactivate_super -EXPORT_SYMBOL vmlinux 0x05acccf7 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x05bcdddd fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x05c57df7 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0639814d eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x063c9ec9 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x066150c8 filemap_fault -EXPORT_SYMBOL vmlinux 0x066925bc dev_remove_pack -EXPORT_SYMBOL vmlinux 0x067d73b4 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x06b8e736 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x06d80443 cdev_add -EXPORT_SYMBOL vmlinux 0x06e1feee blk_put_queue -EXPORT_SYMBOL vmlinux 0x06fdd7cc __xa_store -EXPORT_SYMBOL vmlinux 0x070b5679 open_exec -EXPORT_SYMBOL vmlinux 0x070f6443 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x070fd765 netdev_err -EXPORT_SYMBOL vmlinux 0x07179f08 map_kernel_range_noflush -EXPORT_SYMBOL vmlinux 0x0721206f pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x07239119 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x0727c231 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x07366201 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x07376991 mutex_lock -EXPORT_SYMBOL vmlinux 0x074c3ac1 xsk_umem_consume_tx_done -EXPORT_SYMBOL vmlinux 0x0757db0e locks_init_lock -EXPORT_SYMBOL vmlinux 0x07634a24 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x0777f7fb netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x0799eccc generic_make_request -EXPORT_SYMBOL vmlinux 0x07a7049e inet6_add_offload -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b5d426 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x07bf453a tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x07bfde3f skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d059cc inet6_ioctl -EXPORT_SYMBOL vmlinux 0x07dd502a s390_arch_random_generate -EXPORT_SYMBOL vmlinux 0x07f4c692 blk_queue_split -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f709d6 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x08127345 simple_readpage -EXPORT_SYMBOL vmlinux 0x081c0bbb inode_set_bytes -EXPORT_SYMBOL vmlinux 0x081d0b69 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x08216ca9 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x0882531b clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0882efd0 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x088941b9 debug_register -EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x0890fefb udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x0893d993 kernel_accept -EXPORT_SYMBOL vmlinux 0x08cd7a1e page_pool_unmap_page -EXPORT_SYMBOL vmlinux 0x08d37e10 inet_ioctl -EXPORT_SYMBOL vmlinux 0x0900e9ea __register_chrdev -EXPORT_SYMBOL vmlinux 0x09049220 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x09326924 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0x094f0a8f blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x09501aaf sock_setsockopt -EXPORT_SYMBOL vmlinux 0x096a8314 padata_do_serial -EXPORT_SYMBOL vmlinux 0x096ceab5 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097de7bd scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x0983b219 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098e25e9 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x098ea2ba fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x09bf6fbe ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09f2044c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x09f32cdb ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x0a1b1097 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class -EXPORT_SYMBOL vmlinux 0x0a355a49 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x0a3b7036 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0a5f188a disk_stack_limits -EXPORT_SYMBOL vmlinux 0x0a673507 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x0a6d276a cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a9008f6 fqdir_init -EXPORT_SYMBOL vmlinux 0x0a94a860 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x0a9843c3 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aac3e33 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0ab3090e debug_raw_view -EXPORT_SYMBOL vmlinux 0x0ab991cd __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x0abc1ddd nf_log_unregister -EXPORT_SYMBOL vmlinux 0x0aceb2a2 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize -EXPORT_SYMBOL vmlinux 0x0b0e1995 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x0b13ad22 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x0b152a9c kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x0b3b7327 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x0b62ca32 netlink_capable -EXPORT_SYMBOL vmlinux 0x0b6facb1 pci_enable_device -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8d11cf swake_up_one -EXPORT_SYMBOL vmlinux 0x0b8e6e13 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0b934d73 bdput -EXPORT_SYMBOL vmlinux 0x0b985040 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0c112f45 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x0c16b7e8 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support -EXPORT_SYMBOL vmlinux 0x0c1b10d0 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c26ae3e genl_register_family -EXPORT_SYMBOL vmlinux 0x0c28d618 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x0c293096 register_cdrom -EXPORT_SYMBOL vmlinux 0x0c46da66 vm_event_states -EXPORT_SYMBOL vmlinux 0x0c518f2c invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp -EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask -EXPORT_SYMBOL vmlinux 0x0c999172 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x0cad7026 alloc_pages_current -EXPORT_SYMBOL vmlinux 0x0cb264a1 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd765e6 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0cdf2c8d blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0d05e9ae xa_extract -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d210d6e __devm_request_region -EXPORT_SYMBOL vmlinux 0x0d3e0e16 __xa_insert -EXPORT_SYMBOL vmlinux 0x0d3e95a8 padata_unregister_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6ba22a dev_get_by_index -EXPORT_SYMBOL vmlinux 0x0da5ee24 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x0db1072a dst_destroy -EXPORT_SYMBOL vmlinux 0x0db46747 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x0db6b9c8 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x0dfdc4a5 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1ecfb7 unregister_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x0e230c69 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x0e3b9a97 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x0e9debd3 pci_request_region -EXPORT_SYMBOL vmlinux 0x0ea42307 dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x0ead1d65 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x0eb1dcc7 simple_link -EXPORT_SYMBOL vmlinux 0x0ed17e07 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x0ed830d7 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x0edb9045 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x0ef18347 inet_protos -EXPORT_SYMBOL vmlinux 0x0efeecc7 pci_release_resource -EXPORT_SYMBOL vmlinux 0x0f056502 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f2871e3 iput -EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x0f6426fd tcp_seq_start -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8ee51e ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbd63a4 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x0fc4d144 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fdea074 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x0fee5081 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x0fefc92f inode_insert5 -EXPORT_SYMBOL vmlinux 0x0ffa1f0e pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103928d0 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x10497616 memweight -EXPORT_SYMBOL vmlinux 0x104e47d4 idr_replace -EXPORT_SYMBOL vmlinux 0x105163b1 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x1056ecdf ptep_xchg_lazy -EXPORT_SYMBOL vmlinux 0x105be031 security_sock_graft -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107ffeae netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x1084b788 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x108facda netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x1091c813 kthread_bind -EXPORT_SYMBOL vmlinux 0x10a25eb6 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x10aa0388 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x10b66413 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x10bcfbd6 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x10c0ce4f dget_parent -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e67619 iget_failed -EXPORT_SYMBOL vmlinux 0x10f9de61 netif_device_attach -EXPORT_SYMBOL vmlinux 0x10fc8ed1 dma_cache_sync -EXPORT_SYMBOL vmlinux 0x11024277 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11182a33 cred_fscmp -EXPORT_SYMBOL vmlinux 0x1143c6f3 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1173fd27 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x119aae1c ns_capable_setid -EXPORT_SYMBOL vmlinux 0x11a4b764 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x11a6ae8d xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x11b3f35a dma_resv_fini -EXPORT_SYMBOL vmlinux 0x11d863b7 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail -EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin -EXPORT_SYMBOL vmlinux 0x11f983a4 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x11fb83cb on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120c139f gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x123b10f2 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x1245fe9c padata_stop -EXPORT_SYMBOL vmlinux 0x124dfd02 sock_i_ino -EXPORT_SYMBOL vmlinux 0x1251a12e console_mode -EXPORT_SYMBOL vmlinux 0x125b36e0 down_write_killable -EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock -EXPORT_SYMBOL vmlinux 0x126ee83d udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x129e5d32 __netif_schedule -EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range -EXPORT_SYMBOL vmlinux 0x12b6a210 set_user_nice -EXPORT_SYMBOL vmlinux 0x12bc3ede nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x12c07207 sk_stream_error -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cc5e5d xa_find -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fa14a8 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion -EXPORT_SYMBOL vmlinux 0x1310e320 kill_pid -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x132691d2 ccw_device_halt -EXPORT_SYMBOL vmlinux 0x134be49f netif_skb_features -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x136608b2 __tracepoint_s390_cio_csch -EXPORT_SYMBOL vmlinux 0x13a3106f scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x13a59288 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x13b8f678 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13ffa4fe dcb_getapp -EXPORT_SYMBOL vmlinux 0x141c4ea8 sg_miter_start -EXPORT_SYMBOL vmlinux 0x1455ce3e blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1473cad5 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x1496a149 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x14986c21 dm_put_table_device -EXPORT_SYMBOL vmlinux 0x149d482e get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x14a71534 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14d58a61 security_sk_clone -EXPORT_SYMBOL vmlinux 0x14e859e9 security_sb_remount -EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo -EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154b05cc netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x1590d258 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x15b1d65c netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15d4d411 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x1612114a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x16169c95 dev_notice_hash -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x1638b4ae gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x163a3cd2 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x1648350d neigh_parms_release -EXPORT_SYMBOL vmlinux 0x1666a3be del_gendisk -EXPORT_SYMBOL vmlinux 0x166c95c2 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x166efe82 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x1679e296 textsearch_register -EXPORT_SYMBOL vmlinux 0x169cea96 invalidate_partition -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x17012d7d iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x1713e98b tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x17510662 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x1758d7e0 key_link -EXPORT_SYMBOL vmlinux 0x1781bc4e scsi_print_sense -EXPORT_SYMBOL vmlinux 0x178a899e tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x179ebcb0 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x17d8c672 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x17e976ef block_truncate_page -EXPORT_SYMBOL vmlinux 0x17f60752 d_genocide -EXPORT_SYMBOL vmlinux 0x1809e859 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x181679a9 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x181be5ce bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x18229eaf dquot_quota_on -EXPORT_SYMBOL vmlinux 0x1841188e unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1855ed62 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x187ac7a9 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x1884e370 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1897823a dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x1897e8be mempool_create -EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x189d05e7 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate -EXPORT_SYMBOL vmlinux 0x18beb789 dquot_get_state -EXPORT_SYMBOL vmlinux 0x18cd097b d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x18dcee5d dm_register_target -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x190369b0 iucv_bus -EXPORT_SYMBOL vmlinux 0x190ad815 __tracepoint_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0x190ceab7 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x190f94c9 ap_cancel_message -EXPORT_SYMBOL vmlinux 0x1912204c pci_disable_device -EXPORT_SYMBOL vmlinux 0x1945dfee cdrom_open -EXPORT_SYMBOL vmlinux 0x195e3c5d devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x198419aa config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199af4dd qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a4a8eb sync_blockdev -EXPORT_SYMBOL vmlinux 0x19a83917 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x19adf470 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x19b070e8 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x19b0b1dd scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca6ab5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x19cd07c8 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x19d17a89 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x19dacd6a neigh_for_each -EXPORT_SYMBOL vmlinux 0x19ebd23a km_state_notify -EXPORT_SYMBOL vmlinux 0x1a28add2 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x1a51e01c sk_net_capable -EXPORT_SYMBOL vmlinux 0x1a623c77 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x1a76264b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1ab437b4 mr_table_dump -EXPORT_SYMBOL vmlinux 0x1abdede7 current_in_userns -EXPORT_SYMBOL vmlinux 0x1ac34c9c dquot_scan_active -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1f04b7 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x1b20d109 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b98d432 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1ba13495 __cpu_to_node -EXPORT_SYMBOL vmlinux 0x1bb492e7 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1be3aef0 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x1bf301c3 __wake_up -EXPORT_SYMBOL vmlinux 0x1c0d9771 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x1c1c3666 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x1c253c26 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat -EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check -EXPORT_SYMBOL vmlinux 0x1c8409a3 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf -EXPORT_SYMBOL vmlinux 0x1cdb9478 mpage_readpage -EXPORT_SYMBOL vmlinux 0x1cfa96a5 path_is_under -EXPORT_SYMBOL vmlinux 0x1d285720 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d2ecb8a __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x1d318294 generic_fillattr -EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce -EXPORT_SYMBOL vmlinux 0x1d443938 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x1d4b0de8 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1d529e55 vfs_fsync -EXPORT_SYMBOL vmlinux 0x1d73b151 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x1d8696f3 file_path -EXPORT_SYMBOL vmlinux 0x1d8c5154 d_alloc_name -EXPORT_SYMBOL vmlinux 0x1da75f63 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1dbbd8db wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd66d73 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x1dda29e9 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2027bd proc_symlink -EXPORT_SYMBOL vmlinux 0x1e218da0 blk_get_queue -EXPORT_SYMBOL vmlinux 0x1e25ab80 irq_to_desc -EXPORT_SYMBOL vmlinux 0x1e274fcd t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x1e298bc9 find_vma -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e705e20 downgrade_write -EXPORT_SYMBOL vmlinux 0x1e763232 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x1e89ae35 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eab47ed __quota_error -EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1eb3d0dd dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x1eb53e99 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x1ed1344a thaw_bdev -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ede54f2 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x1ee79c32 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x1ee8d6d4 refcount_inc_checked -EXPORT_SYMBOL vmlinux 0x1efb3012 __scsi_execute -EXPORT_SYMBOL vmlinux 0x1f23462c pci_release_region -EXPORT_SYMBOL vmlinux 0x1f468f92 ihold -EXPORT_SYMBOL vmlinux 0x1f560f67 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x1f57822e krealloc -EXPORT_SYMBOL vmlinux 0x1f6d1fb3 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x1f8a1a32 lockref_put_return -EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb -EXPORT_SYMBOL vmlinux 0x1fb641fc tso_start -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate -EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 -EXPORT_SYMBOL vmlinux 0x1fdb5a9a configfs_register_group -EXPORT_SYMBOL vmlinux 0x1fdbce68 poll_initwait -EXPORT_SYMBOL vmlinux 0x1fdc1152 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x1fe56124 vfs_readlink -EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x1fec9643 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2001c6bb devm_memunmap -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200b5e7b pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x2030a465 may_umount -EXPORT_SYMBOL vmlinux 0x2035347a fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x2041a7e8 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool -EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2066cc2d rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x20687cd7 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq -EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload -EXPORT_SYMBOL vmlinux 0x20a47558 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ad26cb vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x20f7cf77 simple_rmdir -EXPORT_SYMBOL vmlinux 0x21008797 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x210c3418 install_exec_creds -EXPORT_SYMBOL vmlinux 0x212d0c34 vfs_ioc_setflags_prepare -EXPORT_SYMBOL vmlinux 0x216ee668 netdev_state_change -EXPORT_SYMBOL vmlinux 0x2181e10a locks_free_lock -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21911641 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x21a8c188 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x21aafd23 get_gendisk -EXPORT_SYMBOL vmlinux 0x21b85aa3 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x21bb5554 on_each_cpu_cond_mask -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 0x21e396b9 kobject_set_name -EXPORT_SYMBOL vmlinux 0x2202a6ca udp_ioctl -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223eb569 init_special_inode -EXPORT_SYMBOL vmlinux 0x2241d71f proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x224d74c0 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x225edc98 __kfree_skb -EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint -EXPORT_SYMBOL vmlinux 0x22849445 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x229181d5 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x22a5c317 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c8ea68 nvm_alloc_dev -EXPORT_SYMBOL vmlinux 0x22cac269 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x22cb276f __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init -EXPORT_SYMBOL vmlinux 0x22f5c0ce dm_unregister_target -EXPORT_SYMBOL vmlinux 0x22f817d1 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x231a76a0 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x2325c1e4 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x23328bff flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x2333e379 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x233d4270 sock_create_lite -EXPORT_SYMBOL vmlinux 0x23561326 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x236e51a5 tcp_poll -EXPORT_SYMBOL vmlinux 0x2389566c crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x238a94ac ccw_device_start -EXPORT_SYMBOL vmlinux 0x23a17289 can_nice -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bc4517 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x23bce481 __kernel_write -EXPORT_SYMBOL vmlinux 0x23c187d5 component_match_add_release -EXPORT_SYMBOL vmlinux 0x23cfdbc0 proc_mkdir -EXPORT_SYMBOL vmlinux 0x23e77137 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x23f9151f inet_shutdown -EXPORT_SYMBOL vmlinux 0x23fd1ec9 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2400a9ab sync_filesystem -EXPORT_SYMBOL vmlinux 0x241f21f7 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register -EXPORT_SYMBOL vmlinux 0x24430dac ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x2448b534 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24631dc2 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size -EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x2480d0be raw3270_start_locked -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24eda112 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x24ffbcb5 tty_kref_put -EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x2543ea43 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x256ec479 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string -EXPORT_SYMBOL vmlinux 0x257a4d50 notify_change -EXPORT_SYMBOL vmlinux 0x257c908a raw3270_add_view -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25925b6c pci_get_subsys -EXPORT_SYMBOL vmlinux 0x25983768 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x25cbeed4 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x25d18f83 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x25db18c2 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x25e056fa ip_frag_init -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260e2ab8 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x2610f398 bioset_init -EXPORT_SYMBOL vmlinux 0x26156813 dm_io -EXPORT_SYMBOL vmlinux 0x262be829 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x2630669c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x2635f633 md_check_recovery -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263dc17d dma_resv_init -EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 -EXPORT_SYMBOL vmlinux 0x2659de3b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x26669394 bio_init -EXPORT_SYMBOL vmlinux 0x26719fb9 unregister_netdev -EXPORT_SYMBOL vmlinux 0x2674d7e5 pci_restore_state -EXPORT_SYMBOL vmlinux 0x267cf03a dev_uc_sync -EXPORT_SYMBOL vmlinux 0x267ded5d kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x26883aa3 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e89bae jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x270b8073 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x2720333e register_framebuffer -EXPORT_SYMBOL vmlinux 0x27222410 ptep_xchg_direct -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27418353 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command -EXPORT_SYMBOL vmlinux 0x27739143 sock_create_kern -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x2778e322 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x27809741 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278b41e5 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x279d1acf fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x27b55630 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27eee82b truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x27fd3a0b scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2828b224 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x2836f409 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28832bad neigh_ifdown -EXPORT_SYMBOL vmlinux 0x288382ef _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x289005df dquot_commit -EXPORT_SYMBOL vmlinux 0x28952636 qdisc_watchdog_schedule_ns -EXPORT_SYMBOL vmlinux 0x28d8af25 prepare_binprm -EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x29199c47 dquot_resume -EXPORT_SYMBOL vmlinux 0x2921020e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x2923a16c xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x293cf0e6 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu -EXPORT_SYMBOL vmlinux 0x29503362 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed -EXPORT_SYMBOL vmlinux 0x2972c8e5 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x298a935b csum_and_copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x29ed7257 input_match_device_id -EXPORT_SYMBOL vmlinux 0x29edba03 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x29edf0b1 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x29f00cc5 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x29f5a1c1 stream_open -EXPORT_SYMBOL vmlinux 0x2a035cfc skb_checksum -EXPORT_SYMBOL vmlinux 0x2a22452a sock_rfree -EXPORT_SYMBOL vmlinux 0x2a224f84 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x2a243242 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len -EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init -EXPORT_SYMBOL vmlinux 0x2a55dc2c dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x2a6f0d6f neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x2a6fbe5f pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end -EXPORT_SYMBOL vmlinux 0x2a851db5 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x2a928b80 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x2ab429ea __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x2ac209b8 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2af5062b sock_kmalloc -EXPORT_SYMBOL vmlinux 0x2b017bbb load_nls_default -EXPORT_SYMBOL vmlinux 0x2b0f479e pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x2b13c1db __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x2b256de5 vm_insert_page -EXPORT_SYMBOL vmlinux 0x2b4d1138 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2b66d069 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b74349e pci_scan_slot -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bbafd43 fd_install -EXPORT_SYMBOL vmlinux 0x2bbe3433 sock_no_connect -EXPORT_SYMBOL vmlinux 0x2bc3b1ef mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x2bcc8d35 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x2bfe77b2 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x2c0d5ceb gen_new_estimator -EXPORT_SYMBOL vmlinux 0x2c0f1582 lockref_get -EXPORT_SYMBOL vmlinux 0x2c0f2fb3 mempool_alloc -EXPORT_SYMBOL vmlinux 0x2c115e22 should_remove_suid -EXPORT_SYMBOL vmlinux 0x2c1cf773 __init_rwsem -EXPORT_SYMBOL vmlinux 0x2c252b48 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user -EXPORT_SYMBOL vmlinux 0x2c31e4a5 follow_up -EXPORT_SYMBOL vmlinux 0x2c37d9e1 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x2c501cc7 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x2c5078e7 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c82ed6f dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x2ca2ac86 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x2cbdef7d radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x2cc3a2f4 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x2ccb8be8 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd4b252 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x2cf99a42 console_stop -EXPORT_SYMBOL vmlinux 0x2cfdfcf1 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x2d0c95b4 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x2d0d1389 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d210764 __icmp_send -EXPORT_SYMBOL vmlinux 0x2d23037a icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x2d2a6bec iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x2d2f061b end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d7d5028 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2dd897a8 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x2de16e51 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x2de89896 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x2dff0f37 udp_prot -EXPORT_SYMBOL vmlinux 0x2e1649eb ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x2e18f93c proto_register -EXPORT_SYMBOL vmlinux 0x2e1a6c1b pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x2e1c153b md_reload_sb -EXPORT_SYMBOL vmlinux 0x2e2bef4a tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x2e3f3093 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x2e41cf9a raw_copy_in_user -EXPORT_SYMBOL vmlinux 0x2e57a7a5 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x2e5dbf9e devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x2e5e1e58 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x2e5f5325 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x2e625d95 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x2e8acc37 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x2ea6ef39 input_setup_polling -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed8676b unregister_quota_format -EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f2a7874 vfs_setpos -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x2f56bf7e read_dev_sector -EXPORT_SYMBOL vmlinux 0x2f6c4f91 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f95d992 param_set_bint -EXPORT_SYMBOL vmlinux 0x2f98243e kmem_cache_create -EXPORT_SYMBOL vmlinux 0x2f9a7396 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2faea03d blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness -EXPORT_SYMBOL vmlinux 0x2fd7e2e7 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower -EXPORT_SYMBOL vmlinux 0x30104ff4 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x3026e6ad inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x30271367 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x30573f00 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x3087dc1e finish_open -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c69047 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x30cdef88 bioset_exit -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f1217c dfltcc_deflate -EXPORT_SYMBOL vmlinux 0x30f5b827 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3130b66f d_set_d_op -EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present -EXPORT_SYMBOL vmlinux 0x3148070e tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x31555b24 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x315918b4 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x315cd64d padata_start -EXPORT_SYMBOL vmlinux 0x3162cd32 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x3167e20e __sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x318b71fc skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x31be3f0f pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x31c64b22 qdisc_reset -EXPORT_SYMBOL vmlinux 0x31d630a6 bio_free_pages -EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update -EXPORT_SYMBOL vmlinux 0x31eb2c96 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x31ec8135 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x31ff62c0 bdget_disk -EXPORT_SYMBOL vmlinux 0x320858e9 config_item_put -EXPORT_SYMBOL vmlinux 0x32316b39 config_group_init -EXPORT_SYMBOL vmlinux 0x3245b1c5 scsi_host_get -EXPORT_SYMBOL vmlinux 0x325a2a81 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x3271eb07 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3287b795 ccw_device_dma_zalloc -EXPORT_SYMBOL vmlinux 0x328b73fb tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x32ae0796 do_wait_intr -EXPORT_SYMBOL vmlinux 0x32bed581 dev_uc_del -EXPORT_SYMBOL vmlinux 0x32c4d665 device_add_disk_no_queue_reg -EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x330c34d8 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x3314d6d1 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x332741fb security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x3338f921 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x334207d6 sget_fc -EXPORT_SYMBOL vmlinux 0x334f7f5a from_kgid -EXPORT_SYMBOL vmlinux 0x3364a207 __put_user_ns -EXPORT_SYMBOL vmlinux 0x3378a2f4 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay -EXPORT_SYMBOL vmlinux 0x338d01b5 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x33a11450 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x33dffdcf register_filesystem -EXPORT_SYMBOL vmlinux 0x33e639ce idr_for_each -EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 -EXPORT_SYMBOL vmlinux 0x342c8fa5 set_anon_super -EXPORT_SYMBOL vmlinux 0x3439b95b ap_queue_init_reply -EXPORT_SYMBOL vmlinux 0x3445ad3e dm_put_device -EXPORT_SYMBOL vmlinux 0x345f28b2 locks_delete_block -EXPORT_SYMBOL vmlinux 0x3463c4f6 discard_new_inode -EXPORT_SYMBOL vmlinux 0x346f3138 compat_tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x348562d8 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x348c9646 param_ops_bool -EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34ae00ef scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x34c469ed netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x34d6d29a file_update_time -EXPORT_SYMBOL vmlinux 0x34dc7f00 ap_queue_resume -EXPORT_SYMBOL vmlinux 0x34e4b3fe blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f497a7 ida_free -EXPORT_SYMBOL vmlinux 0x34f85ca8 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x3511e730 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351adb30 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x3523c89c call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x3537cbbc __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x3539795b vfs_mkobj -EXPORT_SYMBOL vmlinux 0x35416299 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x355d278a follow_pfn -EXPORT_SYMBOL vmlinux 0x3568e5c6 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x357cb863 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x35973d40 d_path -EXPORT_SYMBOL vmlinux 0x359d82c3 padata_register_cpumask_notifier -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b1710d kill_bdev -EXPORT_SYMBOL vmlinux 0x35d87171 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x35f398b3 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x35fdd08e xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x3626d987 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x365a7c43 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3673d30a lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x36c304ad ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x36d29e65 dev_crit_hash -EXPORT_SYMBOL vmlinux 0x36db9710 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x36edf622 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x36f62db8 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x36fb3a3a xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x36ff9eeb _dev_info -EXPORT_SYMBOL vmlinux 0x3719fba1 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x372ffef8 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375c1e75 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x376f77de __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x37775c67 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x37a74638 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x3804d29c _copy_from_iter_full -EXPORT_SYMBOL vmlinux 0x3814480c ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x3817a7ac dquot_free_inode -EXPORT_SYMBOL vmlinux 0x381899d4 generic_write_checks -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x38622089 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x3877b88f dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ac8fd2 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x38aee356 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x38beffb1 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x38c95c2d pci_enable_msi -EXPORT_SYMBOL vmlinux 0x38d03868 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x38dfd498 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x38e0ea83 register_gifconf -EXPORT_SYMBOL vmlinux 0x38fb57a5 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x39073b68 tso_build_data -EXPORT_SYMBOL vmlinux 0x3923e860 _dev_alert -EXPORT_SYMBOL vmlinux 0x3926aad6 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x39355e6a generic_file_open -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x395495b2 compat_mc_setsockopt -EXPORT_SYMBOL vmlinux 0x39776e38 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x3978b602 kobject_init -EXPORT_SYMBOL vmlinux 0x39879b78 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x3987abc6 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x3988b26c iterate_dir -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399f473e vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b715a3 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x39be79cc tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x39c6fa47 unlock_page -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a21c42b netdev_change_features -EXPORT_SYMBOL vmlinux 0x3a27ae0d xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x3a2a4445 generic_write_end -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a7b9adb netdev_update_features -EXPORT_SYMBOL vmlinux 0x3a7c04fd compat_ip_getsockopt -EXPORT_SYMBOL vmlinux 0x3a7c8638 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x3a9f13bc __cgroup_bpf_run_filter_setsockopt -EXPORT_SYMBOL vmlinux 0x3aad1338 simple_open -EXPORT_SYMBOL vmlinux 0x3aae4f8e ccw_device_start_key -EXPORT_SYMBOL vmlinux 0x3ab2e053 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abb382c inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x3ac8938b enable_sacf_uaccess -EXPORT_SYMBOL vmlinux 0x3ae83ec4 register_qdisc -EXPORT_SYMBOL vmlinux 0x3b02d6b3 nf_log_register -EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3b208e02 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x3b2abec5 neigh_xmit -EXPORT_SYMBOL vmlinux 0x3b50442a md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le -EXPORT_SYMBOL vmlinux 0x3bb90d84 init_pseudo -EXPORT_SYMBOL vmlinux 0x3bc09750 mpage_writepages -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c2f326b unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull -EXPORT_SYMBOL vmlinux 0x3c86881c skb_clone_sk -EXPORT_SYMBOL vmlinux 0x3c8ddd92 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x3cbb28c2 pci_iomap -EXPORT_SYMBOL vmlinux 0x3ccbc218 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x3ccfccf0 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cec3f98 nvm_unregister_tgt_type -EXPORT_SYMBOL vmlinux 0x3d0597b7 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d1bc109 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x3d1c9a35 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x3d22810b jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x3d2510e2 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x3d3dc9b7 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x3d50954d seq_printf -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d584ecb tty_port_init -EXPORT_SYMBOL vmlinux 0x3d61cf39 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x3d650684 tty_devnum -EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3d8e54d2 key_revoke -EXPORT_SYMBOL vmlinux 0x3d93e25c current_time -EXPORT_SYMBOL vmlinux 0x3da805d1 debug_hex_ascii_view -EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd1da07 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x3dd35edb ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x3def2ee1 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e16e26a tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc -EXPORT_SYMBOL vmlinux 0x3e59ae3f has_capability -EXPORT_SYMBOL vmlinux 0x3e8b9989 sk_wait_data -EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x3e9351ec nvm_submit_io -EXPORT_SYMBOL vmlinux 0x3ea7fdf4 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x3ead9334 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x3eb46957 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x3eb47f8f param_array_ops -EXPORT_SYMBOL vmlinux 0x3eb72bc2 neigh_destroy -EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3ed423db __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x3ed8cad7 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x3f20b294 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f755f2d neigh_event_ns -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8edfc5 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x3fa71509 tty_hangup -EXPORT_SYMBOL vmlinux 0x3fa913da strspn -EXPORT_SYMBOL vmlinux 0x3fadb213 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay -EXPORT_SYMBOL vmlinux 0x3fcfc3a4 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdf1b70 mr_dump -EXPORT_SYMBOL vmlinux 0x3fe6fe93 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x40034104 neigh_lookup -EXPORT_SYMBOL vmlinux 0x4024c1c3 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 -EXPORT_SYMBOL vmlinux 0x40318ed7 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x407ba96d sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x408bb42f inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aaa976 ap_flush_queue -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e0965d pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x40f96b57 sg_miter_next -EXPORT_SYMBOL vmlinux 0x40fe13b1 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x40fe7066 param_ops_uint -EXPORT_SYMBOL vmlinux 0x41025825 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest -EXPORT_SYMBOL vmlinux 0x414dbff6 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x415c4c01 skb_queue_head -EXPORT_SYMBOL vmlinux 0x41794962 submit_bio -EXPORT_SYMBOL vmlinux 0x41804f72 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4195e4fd inc_nlink -EXPORT_SYMBOL vmlinux 0x4198ca95 __do_once_done -EXPORT_SYMBOL vmlinux 0x419a0662 pci_bus_type -EXPORT_SYMBOL vmlinux 0x41c04fb7 sock_efree -EXPORT_SYMBOL vmlinux 0x41cf9a77 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x41d54480 param_set_byte -EXPORT_SYMBOL vmlinux 0x41ff20e6 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x420ee87d security_path_mkdir -EXPORT_SYMBOL vmlinux 0x420f6589 pci_irq_get_node -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4228e422 pipe_unlock -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x425c6954 debug_event_common -EXPORT_SYMBOL vmlinux 0x42ab5355 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x42b9a037 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x42d3b237 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x42d3c553 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x42d5df17 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x42e32bce d_add_ci -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4314c865 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x431e6927 __next_node_in -EXPORT_SYMBOL vmlinux 0x4338b472 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x43470cde param_ops_charp -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435439b5 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x43589f29 pudp_xchg_direct -EXPORT_SYMBOL vmlinux 0x436f3dd1 param_set_long -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438d1b3f input_allocate_device -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43b86177 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq -EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed -EXPORT_SYMBOL vmlinux 0x43deb755 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key -EXPORT_SYMBOL vmlinux 0x43fa1605 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x440f1c56 fsync_bdev -EXPORT_SYMBOL vmlinux 0x44277977 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x44430634 inet_sendpage -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444d36c7 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x44592ebb jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x446b9c8e block_read_full_page -EXPORT_SYMBOL vmlinux 0x44768ae2 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x44844a62 skb_trim -EXPORT_SYMBOL vmlinux 0x44b30fb5 csch -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44e9ec3f keyring_clear -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4506a4d0 input_register_handle -EXPORT_SYMBOL vmlinux 0x45142791 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x4517ec7c scsi_register_interface -EXPORT_SYMBOL vmlinux 0x4528c40e netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x452988a7 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454cb033 set_create_files_as -EXPORT_SYMBOL vmlinux 0x454ddf74 tty_set_operations -EXPORT_SYMBOL vmlinux 0x454fb519 ioremap -EXPORT_SYMBOL vmlinux 0x455a6567 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x4565583a tty_vhangup -EXPORT_SYMBOL vmlinux 0x45722b56 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x45759e94 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4587746b dev_change_carrier -EXPORT_SYMBOL vmlinux 0x45931e06 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x45a0bb59 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x45ab927c inet_addr_type -EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END -EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 -EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46473858 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46765640 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x468ab5bb __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x4699f2d6 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x46bf7239 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send -EXPORT_SYMBOL vmlinux 0x46ced90e __skb_pad -EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift -EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data -EXPORT_SYMBOL vmlinux 0x46f61b0a block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x471c2211 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy -EXPORT_SYMBOL vmlinux 0x474b061a xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x475b2540 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477e323f hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x478f3c1a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x47bb0226 dquot_release -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c9718a vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x47d69bde super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x47de2615 simple_lookup -EXPORT_SYMBOL vmlinux 0x47e1c7d1 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x47ec745d pci_set_vpd_size -EXPORT_SYMBOL vmlinux 0x47f53172 migrate_page_move_mapping -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 0x486e2af9 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x487770ca xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x488dfb7e kthread_stop -EXPORT_SYMBOL vmlinux 0x4897d74f posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x48980e0a qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x489a6449 __tracepoint_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48ada7be set_fs -EXPORT_SYMBOL vmlinux 0x48b7a9eb netpoll_setup -EXPORT_SYMBOL vmlinux 0x48c9e305 touch_buffer -EXPORT_SYMBOL vmlinux 0x48cd7048 ccw_device_get_id -EXPORT_SYMBOL vmlinux 0x48d48a3d bdgrab -EXPORT_SYMBOL vmlinux 0x48dab28c inet_put_port -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4929b7dd ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x493bfb2b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x4946c404 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x49475aaf security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x496abfac vfs_unlink -EXPORT_SYMBOL vmlinux 0x49714242 kfree_skb -EXPORT_SYMBOL vmlinux 0x4989e4bd dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x49ae434b fc_mount -EXPORT_SYMBOL vmlinux 0x49cc33af config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x49d39524 peernet2id -EXPORT_SYMBOL vmlinux 0x49dbc53b security_path_unlink -EXPORT_SYMBOL vmlinux 0x49f90a87 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x49f994bf user_path_create -EXPORT_SYMBOL vmlinux 0x4a0fd90b __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x4a621e94 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x4a655a0f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x4a69da52 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x4a713cf2 revert_creds -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a97ba94 netdev_alert -EXPORT_SYMBOL vmlinux 0x4ab57d0c ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x4aea7c9b pcim_enable_device -EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize -EXPORT_SYMBOL vmlinux 0x4b1bfcfb inode_needs_sync -EXPORT_SYMBOL vmlinux 0x4b351c45 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x4b3a95fc blk_rq_init -EXPORT_SYMBOL vmlinux 0x4b5071c2 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b9f7960 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final -EXPORT_SYMBOL vmlinux 0x4bd06722 __breadahead -EXPORT_SYMBOL vmlinux 0x4bede670 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x4c0309e5 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x4c1c0ed8 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x4c209901 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c53492c inet_getname -EXPORT_SYMBOL vmlinux 0x4c795cc8 pmdp_xchg_lazy -EXPORT_SYMBOL vmlinux 0x4c8b2230 dev_set_group -EXPORT_SYMBOL vmlinux 0x4c968c8d xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x4c9c92d3 nf_log_set -EXPORT_SYMBOL vmlinux 0x4cb28c0c cond_set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x4cc5f16f blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x4ccb0f64 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x4cd8afcf key_alloc -EXPORT_SYMBOL vmlinux 0x4cdc0913 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x4cf4d86c ccw_device_tm_start -EXPORT_SYMBOL vmlinux 0x4cffd3cc dump_align -EXPORT_SYMBOL vmlinux 0x4d004c45 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x4d10f2c8 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x4d415945 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x4d433462 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d6a4ead input_unregister_device -EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block -EXPORT_SYMBOL vmlinux 0x4d773c64 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x4d7c810f get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x4d8c5b3c qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9fac3c sk_reset_timer -EXPORT_SYMBOL vmlinux 0x4dce89e0 fs_parse -EXPORT_SYMBOL vmlinux 0x4dd84347 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4ddd18b3 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x4ddfdcb1 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x4dea1053 memchr -EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e0b2e50 sget -EXPORT_SYMBOL vmlinux 0x4e1011bc inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3d7163 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer -EXPORT_SYMBOL vmlinux 0x4e657759 vfs_mknod -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6a466d nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e6f91d3 vfs_getattr -EXPORT_SYMBOL vmlinux 0x4e717649 init_net -EXPORT_SYMBOL vmlinux 0x4e72e5da forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x4e78a6e3 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x4e7ae13b dev_mc_del -EXPORT_SYMBOL vmlinux 0x4e80719b __alloc_skb -EXPORT_SYMBOL vmlinux 0x4e8fea5e __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x4e9b851a gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x4e9ddaa0 setup_new_exec -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec9d931 seq_file_path -EXPORT_SYMBOL vmlinux 0x4ed7b3b5 hex2bin -EXPORT_SYMBOL vmlinux 0x4edf9d62 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4ee07267 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x4ee6b680 __tracepoint_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x4eec9dab arch_spin_lock_wait -EXPORT_SYMBOL vmlinux 0x4f07fa92 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f29f59b vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f30e04e dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x4f3704ac __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x4f420a2d _dev_notice -EXPORT_SYMBOL vmlinux 0x4f61c76f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x4f6c064b __cgroup_bpf_run_filter_getsockopt -EXPORT_SYMBOL vmlinux 0x4f9e10d0 _dev_info_hash -EXPORT_SYMBOL vmlinux 0x4faec757 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x4fb27803 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4fcfeba5 setattr_prepare -EXPORT_SYMBOL vmlinux 0x4fe29905 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x4fefbb3b netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x4ff20f89 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x4ffe1bf7 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x502c7027 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x5035cbcf xa_get_mark -EXPORT_SYMBOL vmlinux 0x5036642d ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x5037a574 secpath_set -EXPORT_SYMBOL vmlinux 0x503dfa15 param_get_ulong -EXPORT_SYMBOL vmlinux 0x5061ecaf airq_iv_free -EXPORT_SYMBOL vmlinux 0x506846a7 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507139f6 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup -EXPORT_SYMBOL vmlinux 0x507d6239 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x509ffd4d pci_read_vpd -EXPORT_SYMBOL vmlinux 0x50a3badf ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b81542 node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x50cd0368 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x50d60ad4 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x50df5d86 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x50e0a893 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x50eff909 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x50faef48 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x51070e2d seq_path -EXPORT_SYMBOL vmlinux 0x51076812 send_sig -EXPORT_SYMBOL vmlinux 0x51237b71 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x51299b94 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x5143ce65 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x514aae88 inet6_getname -EXPORT_SYMBOL vmlinux 0x514c9071 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516f6e4c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x517c44ce skb_tx_error -EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 -EXPORT_SYMBOL vmlinux 0x51b86b0b input_flush_device -EXPORT_SYMBOL vmlinux 0x51bafb02 simple_write_end -EXPORT_SYMBOL vmlinux 0x51e0b70e blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x51f72389 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x51ff6568 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x520a0db6 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x52299ffa __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x522fba1d raw3270_reset -EXPORT_SYMBOL vmlinux 0x524d6c7a netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x527b7f3b __close_fd_get_file -EXPORT_SYMBOL vmlinux 0x527bf542 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert -EXPORT_SYMBOL vmlinux 0x52880fec bio_endio -EXPORT_SYMBOL vmlinux 0x528e4077 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x529701d9 dst_discard_out -EXPORT_SYMBOL vmlinux 0x52c59ae0 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52efa20b proc_create_data -EXPORT_SYMBOL vmlinux 0x52f14c15 tty_register_device -EXPORT_SYMBOL vmlinux 0x52f16a81 bio_chain -EXPORT_SYMBOL vmlinux 0x52f47cea grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x530080d4 set_groups -EXPORT_SYMBOL vmlinux 0x530edf21 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x531ba382 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x531f9ea4 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x53554ae0 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x5372d5da dev_remove_offload -EXPORT_SYMBOL vmlinux 0x53a6d431 blk_integrity_merge_rq -EXPORT_SYMBOL vmlinux 0x53a8b0c9 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x53da6298 fb_show_logo -EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x5413fa5a filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x54258a17 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x54266a44 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x542ea8d6 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x543ed66c open_with_fake_path -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5445feab __irq_regs -EXPORT_SYMBOL vmlinux 0x544b3816 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x5458641d scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x54a54036 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul -EXPORT_SYMBOL vmlinux 0x54b4496a tcp_check_req -EXPORT_SYMBOL vmlinux 0x54bcf641 param_set_short -EXPORT_SYMBOL vmlinux 0x54cc9e4e __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x54d07253 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ece182 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x551169e4 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5520425d __tcf_idr_release -EXPORT_SYMBOL vmlinux 0x552a776e unload_nls -EXPORT_SYMBOL vmlinux 0x55327c94 cdev_device_add -EXPORT_SYMBOL vmlinux 0x55353f12 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x55474413 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x554a384a __siphash_aligned -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55543f60 security_path_mknod -EXPORT_SYMBOL vmlinux 0x55620bec bh_submit_read -EXPORT_SYMBOL vmlinux 0x5565e630 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x55678b4b bsearch -EXPORT_SYMBOL vmlinux 0x556b4d2f seq_dentry -EXPORT_SYMBOL vmlinux 0x5570dc0e ap_driver_register -EXPORT_SYMBOL vmlinux 0x557ab645 fget -EXPORT_SYMBOL vmlinux 0x55847144 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x5589ac19 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559833cc __put_page -EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55c0ba05 _copy_from_iter_full_nocache -EXPORT_SYMBOL vmlinux 0x55c1e09e locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x55ce1621 read_cache_page -EXPORT_SYMBOL vmlinux 0x55dfa85c sock_no_getname -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer -EXPORT_SYMBOL vmlinux 0x55edc887 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x55f4c8ee ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -EXPORT_SYMBOL vmlinux 0x5610d8c0 dquot_operations -EXPORT_SYMBOL vmlinux 0x5624dff1 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564216fe pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x566c9a49 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x567bfe85 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56834b1c __devm_release_region -EXPORT_SYMBOL vmlinux 0x56a5844a __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0x56a78f8b dqget -EXPORT_SYMBOL vmlinux 0x56afc4de ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x56b4f918 uv_info -EXPORT_SYMBOL vmlinux 0x56c48a5b super_setup_bdi -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca422a raw3270_start -EXPORT_SYMBOL vmlinux 0x56d78870 chsc -EXPORT_SYMBOL vmlinux 0x56e304f1 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x56ed7311 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x572f6b2c vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x57355610 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x574ac86b input_reset_device -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57543cd1 simple_fill_super -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576defa6 skb_ext_add -EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr -EXPORT_SYMBOL vmlinux 0x578caba9 scsi_print_result -EXPORT_SYMBOL vmlinux 0x57c077ac pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x57e25c15 pci_iounmap -EXPORT_SYMBOL vmlinux 0x581f7d63 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block -EXPORT_SYMBOL vmlinux 0x589c0699 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590c9b69 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x5912a720 __seq_open_private -EXPORT_SYMBOL vmlinux 0x5927543b security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x59588850 vsscanf -EXPORT_SYMBOL vmlinux 0x595e21b3 nvm_submit_io_sync -EXPORT_SYMBOL vmlinux 0x5964693d compat_mc_getsockopt -EXPORT_SYMBOL vmlinux 0x599c7359 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x59a5a497 ccw_device_is_pathgroup -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59cdeaa3 _dev_err -EXPORT_SYMBOL vmlinux 0x59f84f4d sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x5a03617e get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer -EXPORT_SYMBOL vmlinux 0x5a4b7d58 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4e0599 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x5a62ba29 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x5a6df006 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x5a73a351 filp_close -EXPORT_SYMBOL vmlinux 0x5a8c0085 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x5a9cc1b5 mntput -EXPORT_SYMBOL vmlinux 0x5ac16792 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x5ad94e37 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x5b077a1b vfs_get_link -EXPORT_SYMBOL vmlinux 0x5b249b78 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x5b28ad56 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x5b33c22e iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b5d5317 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x5b5d7acd make_kgid -EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type -EXPORT_SYMBOL vmlinux 0x5b6dd054 udp_seq_start -EXPORT_SYMBOL vmlinux 0x5b8f3fe2 is_bad_inode -EXPORT_SYMBOL vmlinux 0x5ba35e4a dma_direct_unmap_page -EXPORT_SYMBOL vmlinux 0x5bb76929 make_bad_inode -EXPORT_SYMBOL vmlinux 0x5bbeb0cb scsi_print_command -EXPORT_SYMBOL vmlinux 0x5bcaa3a8 memory_read_from_io_buffer -EXPORT_SYMBOL vmlinux 0x5be4d0be __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfd8050 kill_litter_super -EXPORT_SYMBOL vmlinux 0x5c0438fb pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x5c1d71bf tcf_action_exec -EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x5c39b03d kernel_listen -EXPORT_SYMBOL vmlinux 0x5c3aa51c sock_alloc -EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x5c4f2ccd del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x5c6afe56 try_module_get -EXPORT_SYMBOL vmlinux 0x5c882361 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x5c8e6bd3 inet_del_offload -EXPORT_SYMBOL vmlinux 0x5c923848 s390_epoch_delta_notifier -EXPORT_SYMBOL vmlinux 0x5caf98e9 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x5cafafe9 migrate_page -EXPORT_SYMBOL vmlinux 0x5cb2fdf5 udp_set_csum -EXPORT_SYMBOL vmlinux 0x5cc1b2ca key_unlink -EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5cd55bd5 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x5ce4166f tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfe7a11 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x5d0aa450 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x5d171d4c read_cache_pages -EXPORT_SYMBOL vmlinux 0x5d2b1868 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x5d36899a jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x5d3d047d dfltcc_can_deflate -EXPORT_SYMBOL vmlinux 0x5d468417 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d678173 xsk_umem_complete_tx -EXPORT_SYMBOL vmlinux 0x5d6b178f simple_write_begin -EXPORT_SYMBOL vmlinux 0x5d7b691e dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad -EXPORT_SYMBOL vmlinux 0x5d830297 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x5d953711 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x5da712af __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x5daa9cd7 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x5dad5c4a devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x5dc9b188 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x5dd3cedf gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x5dd66549 __neigh_create -EXPORT_SYMBOL vmlinux 0x5de20d4d d_prune_aliases -EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5df7b983 kset_register -EXPORT_SYMBOL vmlinux 0x5e0208f8 input_get_keycode -EXPORT_SYMBOL vmlinux 0x5e0c5597 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x5e174d3e vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x5e20d0e0 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x5e66518f __lookup_constant -EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc -EXPORT_SYMBOL vmlinux 0x5e766794 tcf_block_put -EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5e8d204e dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea23831 netpoll_send_skb_on_dev -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ebd7a79 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x5ec83e07 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x5eca719d dump_emit -EXPORT_SYMBOL vmlinux 0x5ecd1530 idr_destroy -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed66830 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edc1e7b fscrypt_enqueue_decrypt_bio -EXPORT_SYMBOL vmlinux 0x5ee3f4fa misc_deregister -EXPORT_SYMBOL vmlinux 0x5ee6c22a kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x5eeb1c6d iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x5ef6bab4 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f293c8f unix_attach_fds -EXPORT_SYMBOL vmlinux 0x5f40e828 page_symlink -EXPORT_SYMBOL vmlinux 0x5f529267 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x5f6db194 blk_mq_init_sq_queue -EXPORT_SYMBOL vmlinux 0x5f76b45f kern_path -EXPORT_SYMBOL vmlinux 0x5f7e6975 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5fa02b22 param_get_int -EXPORT_SYMBOL vmlinux 0x5fb1c8d7 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr -EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0x5fdc4646 icmp6_send -EXPORT_SYMBOL vmlinux 0x5fe451b1 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x5fe8d41e gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x5fea572d sock_create -EXPORT_SYMBOL vmlinux 0x5ffc3a91 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x5fff3fa3 do_splice_direct -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 0x60227314 km_state_expired -EXPORT_SYMBOL vmlinux 0x602427c4 file_modified -EXPORT_SYMBOL vmlinux 0x602eb79e configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60378c83 pskb_extract -EXPORT_SYMBOL vmlinux 0x60462db0 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x604a2190 d_drop -EXPORT_SYMBOL vmlinux 0x604ad423 empty_aops -EXPORT_SYMBOL vmlinux 0x604c5d90 dev_get_valid_name -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6058af81 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x605ad4ab __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x605aee23 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x6078e429 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x608d249b proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a4cb69 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq -EXPORT_SYMBOL vmlinux 0x60baf4c6 md_register_thread -EXPORT_SYMBOL vmlinux 0x60cb2624 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x60dd244e pci_clear_master -EXPORT_SYMBOL vmlinux 0x60fabfaa tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x6101ed65 nmi_panic -EXPORT_SYMBOL vmlinux 0x611531c6 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x6120b6b4 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612cd453 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x6152aabe kobject_get -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x619acd96 eth_header_cache -EXPORT_SYMBOL vmlinux 0x61a2cc7a tcp_make_synack -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c86d50 inode_set_flags -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620273a3 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x6205891f neigh_seq_start -EXPORT_SYMBOL vmlinux 0x621f4e94 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x624d16f5 pmdp_xchg_direct -EXPORT_SYMBOL vmlinux 0x625cb93e scsi_dma_map -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627f576f __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c8dce9 set_binfmt -EXPORT_SYMBOL vmlinux 0x62cf04df jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x62d5ba6c devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x62db3671 register_service_level -EXPORT_SYMBOL vmlinux 0x62ecfddb devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x63208869 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x634bf7e4 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x635410b6 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x635e9511 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x63632651 irq_set_chip -EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -EXPORT_SYMBOL vmlinux 0x638d6b1d simple_statfs -EXPORT_SYMBOL vmlinux 0x6395b10a xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ab7ded netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x63ba45cd ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63d2f939 dquot_initialize -EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63feaa86 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b0076d tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x64b639a3 __tracepoint_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0x64bf733d __skb_ext_del -EXPORT_SYMBOL vmlinux 0x64c739ad md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x64c94223 vmap -EXPORT_SYMBOL vmlinux 0x64e71cad t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x64ff9043 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x65172de4 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652fd7c5 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x653d4409 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6543531a abort_creds -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65ccaa4e blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x65d4daff arp_xmit -EXPORT_SYMBOL vmlinux 0x65d97889 __break_lease -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65eb06f9 unlink_framebuffer -EXPORT_SYMBOL vmlinux 0x65fc4d8c tcp_close -EXPORT_SYMBOL vmlinux 0x65fcede1 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x66103955 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x661c9b27 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x6642d348 complete -EXPORT_SYMBOL vmlinux 0x6659957e netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x66616a6f register_sysctl -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x666b55ee input_inject_event -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66abec10 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x66b98575 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x66bcf59e kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x66f9985a __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x6721e5a4 down_killable -EXPORT_SYMBOL vmlinux 0x6732c606 dev_printk_hash -EXPORT_SYMBOL vmlinux 0x67376ec6 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x6740aefb compat_tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6764da8a raw3270_request_set_data -EXPORT_SYMBOL vmlinux 0x67694ec0 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x676a7d52 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x6777e52d set_blocksize -EXPORT_SYMBOL vmlinux 0x677a3f0c debug_dflt_header_fn -EXPORT_SYMBOL vmlinux 0x677ffb86 ccw_driver_register -EXPORT_SYMBOL vmlinux 0x678a6285 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x678fcb2f load_nls -EXPORT_SYMBOL vmlinux 0x6792f9a4 tcp_connect -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c046a7 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x67ffc84e qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x682f9479 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x68336bf2 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x6841eee1 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6853671d bio_copy_data -EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort -EXPORT_SYMBOL vmlinux 0x686d944f vfs_link -EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x688ffb64 inet_frags_init -EXPORT_SYMBOL vmlinux 0x6893b4d6 ida_alloc_range -EXPORT_SYMBOL vmlinux 0x689d1615 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font -EXPORT_SYMBOL vmlinux 0x68acb216 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x68b0d020 cad_pid -EXPORT_SYMBOL vmlinux 0x68b9ccb0 kill_fasync -EXPORT_SYMBOL vmlinux 0x68bb15a3 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x68f8ece8 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x6904a9a6 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x69097457 crc32_be -EXPORT_SYMBOL vmlinux 0x69227401 dfltcc_reset -EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 -EXPORT_SYMBOL vmlinux 0x6950df6a icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6972ee8d skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x6976daec down_write -EXPORT_SYMBOL vmlinux 0x69852c29 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x698a9bdb param_ops_long -EXPORT_SYMBOL vmlinux 0x698dc3fb security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x69a426b6 seq_read -EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint -EXPORT_SYMBOL vmlinux 0x69c2be93 genlmsg_put -EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x69d5da8b gro_cells_init -EXPORT_SYMBOL vmlinux 0x69d85c34 gen_pool_create -EXPORT_SYMBOL vmlinux 0x69e0a5c4 vfs_rename -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0e53f3 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x6a1a58f8 iov_iter_init -EXPORT_SYMBOL vmlinux 0x6a1b5a12 release_pages -EXPORT_SYMBOL vmlinux 0x6a2507bc sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x6a38ea8e from_kuid -EXPORT_SYMBOL vmlinux 0x6a4fa422 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6aa014 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x6a6b4192 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa724e6 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x6ac41d96 may_umount_tree -EXPORT_SYMBOL vmlinux 0x6acd5737 vm_mmap -EXPORT_SYMBOL vmlinux 0x6ada0102 d_lookup -EXPORT_SYMBOL vmlinux 0x6b1081de dev_alert_hash -EXPORT_SYMBOL vmlinux 0x6b278fa0 dst_dev_put -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b30b380 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x6b494944 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x6b632780 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le -EXPORT_SYMBOL vmlinux 0x6baca297 __tracepoint_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x6bbab3a0 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd4d2f4 _dev_crit -EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c29ba7a fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x6c29d593 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x6c32ca48 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x6c5bf805 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x6c60994e remove_wait_queue -EXPORT_SYMBOL vmlinux 0x6c618031 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c61e2c4 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x6c69dd98 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6c7ca794 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc710ff gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x6cdcbc8d fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6cf812a2 device_add_disk -EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat -EXPORT_SYMBOL vmlinux 0x6d206999 km_policy_notify -EXPORT_SYMBOL vmlinux 0x6d250f8c mntget -EXPORT_SYMBOL vmlinux 0x6d282397 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d37610e kthread_blkcg -EXPORT_SYMBOL vmlinux 0x6d3be6f1 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x6d423af1 filp_open -EXPORT_SYMBOL vmlinux 0x6d4f1765 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x6d55566c iptun_encaps -EXPORT_SYMBOL vmlinux 0x6d8f8079 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x6d99d37d devm_request_resource -EXPORT_SYMBOL vmlinux 0x6dab0254 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x6dab85cb bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dec2524 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df976bb ccw_device_start_timeout -EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x6e066ed9 get_vm_area -EXPORT_SYMBOL vmlinux 0x6e0bac07 free_netdev -EXPORT_SYMBOL vmlinux 0x6e3794a3 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e782a0e __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea5de0d bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x6ea69a63 pci_select_bars -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb6fee8 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x6ebd0e14 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x6ed6090a netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x6ed79c06 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0x6ee9210c md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6efd994a jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x6f18b0e3 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x6f2536b0 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x6f32f658 block_commit_write -EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0x6f5516e0 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x6f5dc974 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f64f8e6 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x6f689943 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x6f75b019 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbd1e27 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x6fc2745c radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x6fd0a8bc pci_iomap_wc_range -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6fe9f05f security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x6fecb4e1 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x6ff56169 scmd_printk -EXPORT_SYMBOL vmlinux 0x6ffb0abe __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7011f80d bmap -EXPORT_SYMBOL vmlinux 0x702f4acf udp_table -EXPORT_SYMBOL vmlinux 0x70436751 kill_anon_super -EXPORT_SYMBOL vmlinux 0x7048d5dc scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x7088880f commit_creds -EXPORT_SYMBOL vmlinux 0x708c158d __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x708d53ce __nla_put -EXPORT_SYMBOL vmlinux 0x70aa0484 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x70d5ed93 ida_destroy -EXPORT_SYMBOL vmlinux 0x70e033f0 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x70e70ed9 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x70f2c3ba xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x70f84121 arp_tbl -EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x712135d6 proc_dostring -EXPORT_SYMBOL vmlinux 0x7126bc6b debug_sprintf_view -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7132b198 compat_sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x71389936 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load -EXPORT_SYMBOL vmlinux 0x7146bdb8 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x71600189 dump_truncate -EXPORT_SYMBOL vmlinux 0x7168fa90 netlink_set_err -EXPORT_SYMBOL vmlinux 0x716a8628 send_sig_info -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717da3b9 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x718567db find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x71882d2f bd_set_size -EXPORT_SYMBOL vmlinux 0x719a55ba jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x719cef07 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bcf9d9 kset_unregister -EXPORT_SYMBOL vmlinux 0x71d53c23 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x71df609c mempool_destroy -EXPORT_SYMBOL vmlinux 0x71e10a7c iov_iter_npages -EXPORT_SYMBOL vmlinux 0x71f29056 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x71f4eab3 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x721f7bd4 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x7242e96d strnchr -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update -EXPORT_SYMBOL vmlinux 0x7283490b vc_cons -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72d3c3c4 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x72e449ea __xa_set_mark -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f02478 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x73011763 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x730aa233 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv -EXPORT_SYMBOL vmlinux 0x730fdad7 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x7334f643 import_single_range -EXPORT_SYMBOL vmlinux 0x733bc573 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x7347d00a __module_get -EXPORT_SYMBOL vmlinux 0x734a9882 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x7367ace3 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x7372328f file_open_root -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73869f30 __tracepoint_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x738f8d01 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x73950775 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x73a263f9 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x73afdb25 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73c2300e vlan_vid_del -EXPORT_SYMBOL vmlinux 0x73cdd90c fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x73de3684 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x7404327e dquot_enable -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7428ad40 kernel_read -EXPORT_SYMBOL vmlinux 0x7429d145 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x742bba8d jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x7469a291 generic_read_dir -EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init -EXPORT_SYMBOL vmlinux 0x7475eb48 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x7481b148 refcount_add_checked -EXPORT_SYMBOL vmlinux 0x748b08dd skb_put -EXPORT_SYMBOL vmlinux 0x74947207 skb_copy -EXPORT_SYMBOL vmlinux 0x74984d83 done_path_create -EXPORT_SYMBOL vmlinux 0x74a4a335 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x74bcf59d dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c4a4b5 neigh_table_init -EXPORT_SYMBOL vmlinux 0x74d6718b security_binder_transaction -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f876b5 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x7504b7c4 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x7510596d try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x754e21a2 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7559490c dev_change_flags -EXPORT_SYMBOL vmlinux 0x755c2d36 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x756d8f23 put_disk -EXPORT_SYMBOL vmlinux 0x7574a352 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x757770f0 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x758912a6 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 -EXPORT_SYMBOL vmlinux 0x759a9f2d refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user -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 0x75fcdd6f panic_notifier_list -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760a3eca ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x761b46ae inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764b08bc skb_dequeue -EXPORT_SYMBOL vmlinux 0x765c7cb3 sclp -EXPORT_SYMBOL vmlinux 0x76656cfc consume_skb -EXPORT_SYMBOL vmlinux 0x766634ec dquot_commit_info -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7671e001 xa_store_range -EXPORT_SYMBOL vmlinux 0x768cf64b param_set_bool -EXPORT_SYMBOL vmlinux 0x768e999b iget5_locked -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a75a6f pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x76a7af8d rt_dst_clone -EXPORT_SYMBOL vmlinux 0x76b25b38 dev_err_hash -EXPORT_SYMBOL vmlinux 0x76c46d07 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x76c77bbf inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint -EXPORT_SYMBOL vmlinux 0x76e29821 get_user_pages -EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan -EXPORT_SYMBOL vmlinux 0x7730349a keyring_search -EXPORT_SYMBOL vmlinux 0x77347cf8 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x7766d9ea tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x7775049e dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x777c08be netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x777ee0ac alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x77857435 pci_dev_put -EXPORT_SYMBOL vmlinux 0x778b3f21 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x7790158a jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d019fb __mutex_init -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f71324 single_open_size -EXPORT_SYMBOL vmlinux 0x77fc9d40 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78095019 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x7817c595 raw3270_request_alloc -EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x78237a3e scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif -EXPORT_SYMBOL vmlinux 0x7830d7eb security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x783d522b dcache_readdir -EXPORT_SYMBOL vmlinux 0x78474389 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x7864dec2 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x7873b654 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78937024 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a0e487 udplite_table -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a19338 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x78b8c670 pid_task -EXPORT_SYMBOL vmlinux 0x78b9992c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x78c2186a dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x78d055de sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x78d1b515 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x78d8aa01 build_skb_around -EXPORT_SYMBOL vmlinux 0x78deaa88 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e223a9 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x78ed7423 mempool_create_node -EXPORT_SYMBOL vmlinux 0x792d7f0f down -EXPORT_SYMBOL vmlinux 0x793dccee simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x79422825 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x795309c1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x7953fcae bio_uninit -EXPORT_SYMBOL vmlinux 0x79591a1a nf_log_trace -EXPORT_SYMBOL vmlinux 0x798f8379 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes -EXPORT_SYMBOL vmlinux 0x79e09bd1 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x79fb1ecd md_done_sync -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0c73ea pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x7a16dbdd cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a4497db kzfree -EXPORT_SYMBOL vmlinux 0x7a50b6c7 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x7a5d9a71 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7a76f4a6 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x7a7cb731 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register -EXPORT_SYMBOL vmlinux 0x7a8e4e0a dma_set_mask -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab71503 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ab92db4 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7ac4b8a5 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad6116f sock_recvmsg -EXPORT_SYMBOL vmlinux 0x7ad93c33 tcp_filter -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae300a1 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 -EXPORT_SYMBOL vmlinux 0x7b02b7cb simple_unlink -EXPORT_SYMBOL vmlinux 0x7b0e30de xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x7b3b75ea pci_set_master -EXPORT_SYMBOL vmlinux 0x7b4d5181 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat -EXPORT_SYMBOL vmlinux 0x7b5ace4c gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x7b72b847 debug_set_level -EXPORT_SYMBOL vmlinux 0x7b7842ab register_shrinker -EXPORT_SYMBOL vmlinux 0x7b98190b string_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0x7ba9e24c seg6_hmac_net_init -EXPORT_SYMBOL vmlinux 0x7bbabc84 __hsiphash_aligned -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbd18a1 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x7bc44f4c km_report -EXPORT_SYMBOL vmlinux 0x7bd53b06 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain -EXPORT_SYMBOL vmlinux 0x7bed8996 dma_direct_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x7bf0a424 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7bfd1cb4 __bforget -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c240e8f dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x7c28d6e0 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x7c2a615a pci_dev_driver -EXPORT_SYMBOL vmlinux 0x7c31ab23 seq_puts -EXPORT_SYMBOL vmlinux 0x7c3585d8 md_update_sb -EXPORT_SYMBOL vmlinux 0x7c3cd2ba tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x7c44a9d7 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c7b37d8 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7c892034 nf_reinject -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9d2cf2 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc403f5 __register_nls -EXPORT_SYMBOL vmlinux 0x7cc95492 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x7cd05cf7 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0b5788 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d221d31 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x7d2680a4 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x7d3a6071 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d831ea7 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x7da33eea locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x7da53c93 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dca8f79 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x7ddea5b0 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df975f0 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x7e2e03c5 fbcon_set_bitops -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e72de89 dquot_disable -EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt -EXPORT_SYMBOL vmlinux 0x7e8d3a9a blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7eb1138b alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x7edcb12f finish_no_open -EXPORT_SYMBOL vmlinux 0x7ee008c6 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x7ee546dd tcp_ioctl -EXPORT_SYMBOL vmlinux 0x7eefd42f pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x7ef784f2 rename_lock -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f095bb8 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f4c7e9a inode_init_always -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f543a10 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f781c96 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8410c8 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x7f961678 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x7fc6a605 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x7fda8cf2 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0x80098f99 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x800e11c8 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x802273e5 dm_get_device -EXPORT_SYMBOL vmlinux 0x802b2b68 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8032cced sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x804f69dd param_ops_byte -EXPORT_SYMBOL vmlinux 0x8052a1d4 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x805536b7 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x805b8364 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x80679524 param_get_uint -EXPORT_SYMBOL vmlinux 0x8069dac1 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x8085a65a get_super_thawed -EXPORT_SYMBOL vmlinux 0x80b13ec0 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x80be8067 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x80c6ac25 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x80e4e7e5 skb_append -EXPORT_SYMBOL vmlinux 0x80f499d9 devm_ioremap -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x811fd7e6 pci_map_rom -EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81764cb1 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user -EXPORT_SYMBOL vmlinux 0x81a35978 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x81baefb5 bdi_put -EXPORT_SYMBOL vmlinux 0x81bb1c1a __ip_select_ident -EXPORT_SYMBOL vmlinux 0x81ca9287 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x81cd287d md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f11b19 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill -EXPORT_SYMBOL vmlinux 0x8208a14e scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x82145ddf __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x8217143c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x823abf26 set_disk_ro -EXPORT_SYMBOL vmlinux 0x82546666 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x826800ea __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x8272af1d compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82a73295 prepare_creds -EXPORT_SYMBOL vmlinux 0x82afcd5c d_make_root -EXPORT_SYMBOL vmlinux 0x82b8880d tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cdb1f0 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x82d07161 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x82dd0868 lookup_bdev -EXPORT_SYMBOL vmlinux 0x8302ebc3 truncate_setsize -EXPORT_SYMBOL vmlinux 0x8328a646 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x8347f2d5 eth_header -EXPORT_SYMBOL vmlinux 0x834acddc dev_mc_init -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839e2ef7 nla_put -EXPORT_SYMBOL vmlinux 0x83bff107 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x83c02da7 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x83c2bd8a xdp_get_umem_from_qid -EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x83c8fcb5 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x83d670c6 noop_llseek -EXPORT_SYMBOL vmlinux 0x83da87fc dev_trans_start -EXPORT_SYMBOL vmlinux 0x83e1438d raw3270_request_reset -EXPORT_SYMBOL vmlinux 0x83e4e783 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x841f978d seq_release -EXPORT_SYMBOL vmlinux 0x843c1a20 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x843efed0 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x84451719 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x84652966 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x84774159 skb_clone -EXPORT_SYMBOL vmlinux 0x847bf357 ap_perms_mutex -EXPORT_SYMBOL vmlinux 0x848d22b6 finish_wait -EXPORT_SYMBOL vmlinux 0x84a069c9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x84a1d3ff rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x84c66a4d __tracepoint_s390_diagnose -EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 -EXPORT_SYMBOL vmlinux 0x84efece8 nf_log_packet -EXPORT_SYMBOL vmlinux 0x84f4a499 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x84f8f9f0 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x850b172d __block_write_begin -EXPORT_SYMBOL vmlinux 0x850d121f __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x850ef5bb alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x8512cec8 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x8512d3ad sock_init_data -EXPORT_SYMBOL vmlinux 0x8516c14a flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x8532d28c kern_path_create -EXPORT_SYMBOL vmlinux 0x853a7783 proc_create -EXPORT_SYMBOL vmlinux 0x854791ba ccw_device_dma_free -EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856e6cb6 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x859194a5 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x8595746c inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x85a3026f __wake_up_bit -EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x85ddc509 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efb73e fasync_helper -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86002a78 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x86237388 arch_read_lock_wait -EXPORT_SYMBOL vmlinux 0x8623db37 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8646051f dev_close -EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x865afaa1 simple_empty -EXPORT_SYMBOL vmlinux 0x865d2dea dev_add_offload -EXPORT_SYMBOL vmlinux 0x86838a09 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a74b79 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x86a7d7f8 skb_find_text -EXPORT_SYMBOL vmlinux 0x86b25ff7 raw3270_request_set_idal -EXPORT_SYMBOL vmlinux 0x86c2b350 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x86c52c68 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x86cdf6ee dev_printk -EXPORT_SYMBOL vmlinux 0x86d8c906 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x86e252c4 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x86f4aa54 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x86f74839 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fbce61 mutex_trylock -EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor -EXPORT_SYMBOL vmlinux 0x8713b9be xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x871a3897 debug_exception_common -EXPORT_SYMBOL vmlinux 0x87283114 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8777f796 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x87a018df generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87bba64e softnet_data -EXPORT_SYMBOL vmlinux 0x87bdaa3b account_page_redirty -EXPORT_SYMBOL vmlinux 0x87d8cb07 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x87e7f33c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x87fc33e1 dev_uc_add -EXPORT_SYMBOL vmlinux 0x87fe6107 iunique -EXPORT_SYMBOL vmlinux 0x880d50cf security_d_instantiate -EXPORT_SYMBOL vmlinux 0x880f33a3 sync_inode -EXPORT_SYMBOL vmlinux 0x8830c925 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x885b7ee1 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x886b1e51 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x887b4a5f vfs_llseek -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8885ae56 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x888e9a0d vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x889814a7 ap_driver_unregister -EXPORT_SYMBOL vmlinux 0x889e4f00 lookup_one_len -EXPORT_SYMBOL vmlinux 0x88a35bb8 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x88c3e692 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88eda5a7 inet_add_offload -EXPORT_SYMBOL vmlinux 0x891b60e8 ap_queue_init_state -EXPORT_SYMBOL vmlinux 0x8929097c sock_edemux -EXPORT_SYMBOL vmlinux 0x894331c8 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0x896e2b74 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final -EXPORT_SYMBOL vmlinux 0x89b59c9d flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x89b62b02 read_code -EXPORT_SYMBOL vmlinux 0x89c36406 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x89dae67c no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x89e99c5a qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x89ec46ca tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x89ffe3b3 __close_fd -EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x8a1d9a16 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x8a200f68 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x8a22f3e7 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x8a6a0f54 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x8a71353b make_kuid -EXPORT_SYMBOL vmlinux 0x8a72bb18 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8e3dfe mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x8a92e950 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa5136a fb_validate_mode -EXPORT_SYMBOL vmlinux 0x8aa923bc linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x8ab6ae5e netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ad04a6c sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8ae4fe60 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x8af85409 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x8afd4fde pci_get_device -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b12ab66 dma_direct_unmap_sg -EXPORT_SYMBOL vmlinux 0x8b1377f3 scsi_init_io -EXPORT_SYMBOL vmlinux 0x8b2563b0 napi_get_frags -EXPORT_SYMBOL vmlinux 0x8b4045aa find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x8b4cc908 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9253e1 generic_listxattr -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba48380 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8badf57f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x8bd952f9 flush_signals -EXPORT_SYMBOL vmlinux 0x8bdb7a0e wait_for_completion -EXPORT_SYMBOL vmlinux 0x8bf2029b key_reject_and_link -EXPORT_SYMBOL vmlinux 0x8c518eac find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8c5a396f buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x8c5fb6e2 mempool_init_node -EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8c750acd inet_frag_find -EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init -EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply -EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x8ce9c0fa udplite_prot -EXPORT_SYMBOL vmlinux 0x8cfdfc2c raw_copy_to_user -EXPORT_SYMBOL vmlinux 0x8d0319f6 param_get_invbool -EXPORT_SYMBOL vmlinux 0x8d123870 pci_match_id -EXPORT_SYMBOL vmlinux 0x8d31c033 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8e7a9c nlmsg_notify -EXPORT_SYMBOL vmlinux 0x8d9f2d9f prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de1adc0 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8df12c24 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e166d7c single_release -EXPORT_SYMBOL vmlinux 0x8e281574 nla_reserve -EXPORT_SYMBOL vmlinux 0x8e5b56c2 fget_raw -EXPORT_SYMBOL vmlinux 0x8e97eed4 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x8e9eab61 check_zeroed_user -EXPORT_SYMBOL vmlinux 0x8ea0475b ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x8eb97f9c xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x8ec7f250 dma_fence_free -EXPORT_SYMBOL vmlinux 0x8ecc0451 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x8ef01453 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x8effa5dc kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x8f08855a scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x8f360142 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x8f3d4a38 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x8f463a8a dev_load -EXPORT_SYMBOL vmlinux 0x8f52c002 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0x8f61a8a0 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x8f64c5c2 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x8f6afea8 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x8f8319a0 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x8f8ad967 ccw_device_set_offline -EXPORT_SYMBOL vmlinux 0x8f96fdf4 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fb6632c register_key_type -EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx -EXPORT_SYMBOL vmlinux 0x8ff1bb2e block_invalidatepage -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x907e9544 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x90a785e7 d_exact_alias -EXPORT_SYMBOL vmlinux 0x90b15d4d inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x90d3e52b __skb_checksum -EXPORT_SYMBOL vmlinux 0x90e86b28 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x910b8dec revalidate_disk -EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x91144ba0 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs -EXPORT_SYMBOL vmlinux 0x912f9e59 dst_init -EXPORT_SYMBOL vmlinux 0x913932f8 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x919bfc23 skb_split -EXPORT_SYMBOL vmlinux 0x919c43c7 mutex_unlock -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ac3d90 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x91ae9a03 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x91c00dea raw3270_del_view -EXPORT_SYMBOL vmlinux 0x91c3dda1 devm_free_irq -EXPORT_SYMBOL vmlinux 0x91cdea2a sock_sendmsg -EXPORT_SYMBOL vmlinux 0x91d1fe13 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x91dae89c page_pool_create -EXPORT_SYMBOL vmlinux 0x9200bbf6 build_skb -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923e3bf4 param_ops_bint -EXPORT_SYMBOL vmlinux 0x92434387 set_pgste_bits -EXPORT_SYMBOL vmlinux 0x92464c68 set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x924a79fd __nla_reserve -EXPORT_SYMBOL vmlinux 0x924f4592 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x92534f9d ap_queue_suspend -EXPORT_SYMBOL vmlinux 0x925643c0 param_ops_string -EXPORT_SYMBOL vmlinux 0x92771b98 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x92bf8f05 free_buffer_head -EXPORT_SYMBOL vmlinux 0x92c3e2d5 bio_advance -EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x92e9c013 fb_pan_display -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ef55fd generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x92fa78f1 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x92fd76b6 freeze_super -EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit -EXPORT_SYMBOL vmlinux 0x9328e229 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x932c2539 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x9332283b seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x934945a8 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x934d678b devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x93560036 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x93760105 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9379a233 freeze_bdev -EXPORT_SYMBOL vmlinux 0x937b401b flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x938f56e3 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93abd487 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bd1c77 ccw_device_get_ciw -EXPORT_SYMBOL vmlinux 0x93bfb7bd down_write_trylock -EXPORT_SYMBOL vmlinux 0x93d9a61f skb_unlink -EXPORT_SYMBOL vmlinux 0x93e2b8d8 set_cached_acl -EXPORT_SYMBOL vmlinux 0x9413d995 inode_init_once -EXPORT_SYMBOL vmlinux 0x94248b6c xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject -EXPORT_SYMBOL vmlinux 0x943b3fd8 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x9441b495 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x9463f596 tcp_child_process -EXPORT_SYMBOL vmlinux 0x946b707c md_unregister_thread -EXPORT_SYMBOL vmlinux 0x947aee5c vif_device_init -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94eba295 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x94f31333 dump_fpu -EXPORT_SYMBOL vmlinux 0x9500d3a4 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept -EXPORT_SYMBOL vmlinux 0x952d2049 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x953adc3b dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x953c3cee sock_from_file -EXPORT_SYMBOL vmlinux 0x9542faf7 sclp_unregister -EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init -EXPORT_SYMBOL vmlinux 0x954bf945 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x956eed6d skb_free_datagram -EXPORT_SYMBOL vmlinux 0x957b1fb6 refcount_inc_not_zero_checked -EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x958bc286 sock_i_uid -EXPORT_SYMBOL vmlinux 0x95a06eb1 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x95c08265 unlock_rename -EXPORT_SYMBOL vmlinux 0x95cd0aec compat_ip_setsockopt -EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x95d04889 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x95d10341 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x95e6e475 security_path_rename -EXPORT_SYMBOL vmlinux 0x962e5790 import_iovec -EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x9643f3a6 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock -EXPORT_SYMBOL vmlinux 0x966f1300 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x96749f20 down_read_killable -EXPORT_SYMBOL vmlinux 0x96985c68 lease_modify -EXPORT_SYMBOL vmlinux 0x9698e8c3 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x96a36604 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x96be8235 ccw_device_resume -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d92b72 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x96e0e6fd bdi_register -EXPORT_SYMBOL vmlinux 0x96e13080 config_item_get -EXPORT_SYMBOL vmlinux 0x96ea881f pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x96f5b8c3 mmput_async -EXPORT_SYMBOL vmlinux 0x96f98029 pci_request_regions -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fd85b4 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x970500ca skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x970d8f4c put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x97159a1d key_invalidate -EXPORT_SYMBOL vmlinux 0x97159ed8 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x97346901 tty_lock -EXPORT_SYMBOL vmlinux 0x97386f4e tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin -EXPORT_SYMBOL vmlinux 0x9756b5bc get_fs_type -EXPORT_SYMBOL vmlinux 0x976b8d3b param_ops_ushort -EXPORT_SYMBOL vmlinux 0x976d797a pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x97741c07 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bd6ca3 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c76e76 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x97cc6573 xsk_umem_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x97cf7d08 xsk_umem_discard_addr -EXPORT_SYMBOL vmlinux 0x97e9a49a blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x97ed2431 cdev_del -EXPORT_SYMBOL vmlinux 0x97f312c7 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x97f6695a sockfd_lookup -EXPORT_SYMBOL vmlinux 0x97f6fc6b tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x98071b85 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x98216424 config_group_find_item -EXPORT_SYMBOL vmlinux 0x98287208 input_event -EXPORT_SYMBOL vmlinux 0x982f63a8 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x983d2e19 input_free_device -EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse -EXPORT_SYMBOL vmlinux 0x985b40d9 release_sock -EXPORT_SYMBOL vmlinux 0x9875e527 skb_push -EXPORT_SYMBOL vmlinux 0x9878fcdd find_lock_entry -EXPORT_SYMBOL vmlinux 0x98b0de43 inet_gro_receive -EXPORT_SYMBOL vmlinux 0x98b88405 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf -EXPORT_SYMBOL vmlinux 0x98df1208 __inet_hash -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e9ec30 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x992d3969 request_firmware -EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996cf0fc __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x996ee668 audit_log_start -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e5b097 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x9a049524 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x9a05c0e3 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x9a09d7fc param_get_short -EXPORT_SYMBOL vmlinux 0x9a0a0c04 __krealloc -EXPORT_SYMBOL vmlinux 0x9a14893f __ip_options_compile -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x9a4d89bb neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x9a4f989d __frontswap_load -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5bce02 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x9a86a4af jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x9a8a0633 elv_rb_find -EXPORT_SYMBOL vmlinux 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9a9dc24d udp_gro_receive -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab6c6bb skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x9acda777 get_task_cred -EXPORT_SYMBOL vmlinux 0x9ace8ac1 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x9ad77df3 tcf_register_action -EXPORT_SYMBOL vmlinux 0x9b1c2047 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3cf1ee eth_change_mtu -EXPORT_SYMBOL vmlinux 0x9b465c5b neigh_update -EXPORT_SYMBOL vmlinux 0x9b51c5a8 refcount_sub_and_test_checked -EXPORT_SYMBOL vmlinux 0x9b5c9cd5 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x9b6da6be dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9b6fa504 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x9b786044 register_netdevice -EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9b8f58dd kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x9b95cc25 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x9bb2204b __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x9bc62df2 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x9bcbf24c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x9bd90b4d audit_log -EXPORT_SYMBOL vmlinux 0x9bdfb0ea crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x9bea59af udp_pre_connect -EXPORT_SYMBOL vmlinux 0x9c01627e generic_update_time -EXPORT_SYMBOL vmlinux 0x9c0450aa bio_devname -EXPORT_SYMBOL vmlinux 0x9c0821ea vsnprintf -EXPORT_SYMBOL vmlinux 0x9c1f6950 _dev_emerg -EXPORT_SYMBOL vmlinux 0x9c27d0a4 inet_offloads -EXPORT_SYMBOL vmlinux 0x9c4299f6 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x9c590739 ccw_device_set_options_mask -EXPORT_SYMBOL vmlinux 0x9c8fabad raw3270_request_free -EXPORT_SYMBOL vmlinux 0x9ca903c8 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x9ca95a0e sort -EXPORT_SYMBOL vmlinux 0x9cb10b3a filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x9cbdc731 tty_register_driver -EXPORT_SYMBOL vmlinux 0x9cbf6066 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x9cceac23 __lock_buffer -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d4318c2 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev -EXPORT_SYMBOL vmlinux 0x9d5e9642 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x9d6d0fe6 input_set_capability -EXPORT_SYMBOL vmlinux 0x9d70c868 write_inode_now -EXPORT_SYMBOL vmlinux 0x9d7c3dc0 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x9d7cacb0 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x9d84ff97 update_region -EXPORT_SYMBOL vmlinux 0x9d8f8328 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x9daf0146 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission -EXPORT_SYMBOL vmlinux 0x9dc5f67e arp_send -EXPORT_SYMBOL vmlinux 0x9df81db4 ___ratelimit -EXPORT_SYMBOL vmlinux 0x9e070587 sock_register -EXPORT_SYMBOL vmlinux 0x9e0af4bb inet6_release -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e14b0d1 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x9e17ee6a kmalloc_caches -EXPORT_SYMBOL vmlinux 0x9e2abf2a input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x9e3566a6 ns_capable -EXPORT_SYMBOL vmlinux 0x9e3f7be1 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x9e3ff2d5 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x9e400ada tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x9e4b5c91 ip_options_compile -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e51218d kern_unmount -EXPORT_SYMBOL vmlinux 0x9e53e8f7 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x9e58cf90 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e71016f jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x9e878830 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x9e9e0bcc __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eaa8ff0 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x9eb2b36f __dquot_transfer -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecb04d1 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x9ed4417f blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x9ed8133a nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x9ed86bc3 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9eddaf88 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x9ee1328e ipv4_specific -EXPORT_SYMBOL vmlinux 0x9ee427ae blk_put_request -EXPORT_SYMBOL vmlinux 0x9ef11c8b security_inode_init_security -EXPORT_SYMBOL vmlinux 0x9ef8405d blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x9efa42f5 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x9f1d3df7 generic_fadvise -EXPORT_SYMBOL vmlinux 0x9f282535 vfs_statfs -EXPORT_SYMBOL vmlinux 0x9f32ab6e tty_do_resize -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax -EXPORT_SYMBOL vmlinux 0x9f5f38d1 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x9f5f3944 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x9f64e86e sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x9f6590da dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x9f8e96e3 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa4a0fd pipe_lock -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa964bf dma_supported -EXPORT_SYMBOL vmlinux 0x9fadbc1a devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid -EXPORT_SYMBOL vmlinux 0x9fce02aa __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe00628 security_task_getsecid -EXPORT_SYMBOL vmlinux 0x9fe329d4 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa000b4a1 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xa036b011 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xa03cfcea padata_alloc_possible -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister -EXPORT_SYMBOL vmlinux 0xa05cb010 devm_iounmap -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa09394cb pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09940cc tcp_disconnect -EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many -EXPORT_SYMBOL vmlinux 0xa0a40e14 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e1fb8e nvm_dev_dma_alloc -EXPORT_SYMBOL vmlinux 0xa0e60438 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0f24a11 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xa0f6ec6e proc_remove -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa105201b nvm_unregister -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order -EXPORT_SYMBOL vmlinux 0xa10b68b2 ip6_xmit -EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xa126c93f __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xa131ceb8 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa13c9739 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xa185c662 km_new_mapping -EXPORT_SYMBOL vmlinux 0xa19a52bf compat_ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xa1a7cae7 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xa1a9d488 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xa1b23969 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xa1bc5842 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched -EXPORT_SYMBOL vmlinux 0xa1ca7bb0 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa1d50bf7 unregister_nls -EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1e88c64 init_task -EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa1f4e674 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xa1fe0104 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa22ffcac seq_escape -EXPORT_SYMBOL vmlinux 0xa23bbedd kobject_del -EXPORT_SYMBOL vmlinux 0xa2407e0b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xa246558d tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xa24eae4c sock_no_bind -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2545a9a xattr_full_name -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa260f4f1 param_set_ullong -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26665e7 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2fbf307 tso_count_descs -EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa300f109 d_find_alias -EXPORT_SYMBOL vmlinux 0xa3125ee6 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xa31ac0e8 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xa31cc068 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xa33868c6 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xa3395e86 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy -EXPORT_SYMBOL vmlinux 0xa3445ac3 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xa347e922 tty_throttle -EXPORT_SYMBOL vmlinux 0xa34ffbab simple_rename -EXPORT_SYMBOL vmlinux 0xa364e8ee get_disk_and_module -EXPORT_SYMBOL vmlinux 0xa39dbb4e set_nlink -EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove -EXPORT_SYMBOL vmlinux 0xa3d275df igrab -EXPORT_SYMBOL vmlinux 0xa3de608d dev_deactivate -EXPORT_SYMBOL vmlinux 0xa3ef09cd inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa3f071cb mpage_readpages -EXPORT_SYMBOL vmlinux 0xa3f58f55 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xa4076986 ether_setup -EXPORT_SYMBOL vmlinux 0xa416c8e9 arch_write_lock_wait -EXPORT_SYMBOL vmlinux 0xa42af456 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0xa4347714 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xa43a3bf9 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command -EXPORT_SYMBOL vmlinux 0xa4781f2d unix_get_socket -EXPORT_SYMBOL vmlinux 0xa491ee17 key_type_keyring -EXPORT_SYMBOL vmlinux 0xa4999b86 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xa4a30d9c touch_atime -EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le -EXPORT_SYMBOL vmlinux 0xa4b2f6b6 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa4da96d5 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy -EXPORT_SYMBOL vmlinux 0xa4e475ca console_start -EXPORT_SYMBOL vmlinux 0xa4e5e49e free_task -EXPORT_SYMBOL vmlinux 0xa4e907d6 input_grab_device -EXPORT_SYMBOL vmlinux 0xa5027f16 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xa503b6d9 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xa50483fe __ksize -EXPORT_SYMBOL vmlinux 0xa5076c19 block_write_end -EXPORT_SYMBOL vmlinux 0xa523b01b blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xa524495c get_pgste -EXPORT_SYMBOL vmlinux 0xa52a30bf security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xa52ae5a8 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa57a4872 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xa59158b0 xa_load -EXPORT_SYMBOL vmlinux 0xa596d837 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xa59a1df1 generic_perform_write -EXPORT_SYMBOL vmlinux 0xa5a64e4f get_super_exclusive_thawed -EXPORT_SYMBOL vmlinux 0xa5b087b4 cdev_device_del -EXPORT_SYMBOL vmlinux 0xa5b91ca5 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xa5e790d7 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xa5ecfe34 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xa5f508ec napi_gro_flush -EXPORT_SYMBOL vmlinux 0xa5fd68e5 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa621ceb8 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0xa62b4955 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xa6304397 fscrypt_get_encryption_info -EXPORT_SYMBOL vmlinux 0xa65d991e seq_write -EXPORT_SYMBOL vmlinux 0xa65e4ea7 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp -EXPORT_SYMBOL vmlinux 0xa68f1d73 dma_virt_ops -EXPORT_SYMBOL vmlinux 0xa69bdaeb neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa69e279c __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa6a36ef7 padata_free_shell -EXPORT_SYMBOL vmlinux 0xa6cb951f md_error -EXPORT_SYMBOL vmlinux 0xa6ce76c1 inode_init_owner -EXPORT_SYMBOL vmlinux 0xa6d582a2 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xa6dd843d __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xa6fa4253 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xa6fb365f blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xa70297fd ip_getsockopt -EXPORT_SYMBOL vmlinux 0xa7037347 PageMovable -EXPORT_SYMBOL vmlinux 0xa70910f5 utf8len -EXPORT_SYMBOL vmlinux 0xa70ea6d7 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa724a3f9 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7812952 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xa7ac6f68 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xa7cdbdf2 down_read -EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f2dfdd __d_drop -EXPORT_SYMBOL vmlinux 0xa8102256 xfrm_input -EXPORT_SYMBOL vmlinux 0xa811fb91 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xa820767c skb_copy_bits -EXPORT_SYMBOL vmlinux 0xa8223179 refcount_dec_checked -EXPORT_SYMBOL vmlinux 0xa831a184 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xa8396e77 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa85d2b5c inet_stream_ops -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa896a369 ap_queue_message -EXPORT_SYMBOL vmlinux 0xa8a0c260 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xa8a41cc4 udp_seq_next -EXPORT_SYMBOL vmlinux 0xa8ab25cf end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa8ac153a page_mapped -EXPORT_SYMBOL vmlinux 0xa8b22fdf pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa8b2e307 nvm_end_io -EXPORT_SYMBOL vmlinux 0xa8d67043 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa8f2bf59 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa956ec88 finalize_exec -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa97198d7 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xa975fb27 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xa98a4892 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xa9a128c7 scsi_host_put -EXPORT_SYMBOL vmlinux 0xa9a78523 bdevname -EXPORT_SYMBOL vmlinux 0xa9b1dc6c down_timeout -EXPORT_SYMBOL vmlinux 0xa9be054d xfrm_register_type -EXPORT_SYMBOL vmlinux 0xa9c751e8 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xa9d48a5d cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xa9d88f38 key_validate -EXPORT_SYMBOL vmlinux 0xa9f0c4a4 inet6_offloads -EXPORT_SYMBOL vmlinux 0xa9f352fc kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xa9fd451e keyring_alloc -EXPORT_SYMBOL vmlinux 0xaa1aef15 tty_check_change -EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update -EXPORT_SYMBOL vmlinux 0xaa1f1133 param_get_ullong -EXPORT_SYMBOL vmlinux 0xaa252fc9 PDE_DATA -EXPORT_SYMBOL vmlinux 0xaa35bf13 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xaa432b0c netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xaa566576 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xaa5de4a2 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xaa63f3c6 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xaa670bfd pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xaaa16da9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xaaa547a0 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaaf5cde3 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab067939 set_security_override -EXPORT_SYMBOL vmlinux 0xab349b03 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3bb343 dq_data_lock -EXPORT_SYMBOL vmlinux 0xab408f79 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xab43bd1b pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xab53a5fa xa_find_after -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab752812 config_item_set_name -EXPORT_SYMBOL vmlinux 0xab77b102 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab93c86f down_read_interruptible -EXPORT_SYMBOL vmlinux 0xab9b53c7 __check_sticky -EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed -EXPORT_SYMBOL vmlinux 0xabc9dbfb dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xabeb5066 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf491ff bdi_register_va -EXPORT_SYMBOL vmlinux 0xabf6b72e pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xabfca225 d_move -EXPORT_SYMBOL vmlinux 0xabfee993 scsi_add_device -EXPORT_SYMBOL vmlinux 0xac028f50 zpci_report_error -EXPORT_SYMBOL vmlinux 0xac08d1f4 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac33a390 ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0xac393d28 override_creds -EXPORT_SYMBOL vmlinux 0xac4354e0 bio_reset -EXPORT_SYMBOL vmlinux 0xac4f2067 netdev_features_change -EXPORT_SYMBOL vmlinux 0xac56b6d3 __tracepoint_s390_cio_msch -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac614540 single_open -EXPORT_SYMBOL vmlinux 0xac7932d7 sk_alloc -EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0xac9262f8 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf -EXPORT_SYMBOL vmlinux 0xac96fe26 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xac9ca432 set_bh_page -EXPORT_SYMBOL vmlinux 0xaca9b4c4 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb020ce node_states -EXPORT_SYMBOL vmlinux 0xacb591ba configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xacbe2a11 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xacc02672 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacea803f pci_iomap_wc -EXPORT_SYMBOL vmlinux 0xacea8d09 new_inode -EXPORT_SYMBOL vmlinux 0xacf40eb1 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad049f79 eth_type_trans -EXPORT_SYMBOL vmlinux 0xad23c9dd insert_inode_locked -EXPORT_SYMBOL vmlinux 0xad358359 vfs_symlink -EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad51b7b5 inet_accept -EXPORT_SYMBOL vmlinux 0xad5b72bd __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xad670bdc put_disk_and_module -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7a7fab inet_gso_segment -EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event -EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xada7fa27 inet_bind -EXPORT_SYMBOL vmlinux 0xadaa5540 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xadcec940 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd3e606 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xadd47f5d unregister_md_personality -EXPORT_SYMBOL vmlinux 0xadd75012 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xadd75e54 dma_pool_create -EXPORT_SYMBOL vmlinux 0xadd7be8c nvm_dev_dma_free -EXPORT_SYMBOL vmlinux 0xade3b5ae pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xade690ce module_layout -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae012000 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xae16934f ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xae1af97b netdev_update_lockdep_key -EXPORT_SYMBOL vmlinux 0xae20f798 drop_nlink -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae319efc radix_tree_insert -EXPORT_SYMBOL vmlinux 0xae39b1c2 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xae429757 pci_save_state -EXPORT_SYMBOL vmlinux 0xae552148 dst_alloc -EXPORT_SYMBOL vmlinux 0xae7dea87 tcf_block_get -EXPORT_SYMBOL vmlinux 0xaec0a8e9 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xaec13e20 end_page_writeback -EXPORT_SYMBOL vmlinux 0xaec555ea ccw_device_tm_intrg -EXPORT_SYMBOL vmlinux 0xaec61dfd pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaed1a476 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xaedc4618 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xaede6df2 get_super -EXPORT_SYMBOL vmlinux 0xaf0accaf dma_direct_map_resource -EXPORT_SYMBOL vmlinux 0xaf155b28 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init -EXPORT_SYMBOL vmlinux 0xaf83a0d6 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xaf9ebdf6 block_write_full_page -EXPORT_SYMBOL vmlinux 0xafa375ab flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0xafa9a61d logfc -EXPORT_SYMBOL vmlinux 0xafbef850 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xafd3ca2d airq_iv_create -EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xafe8efce genl_notify -EXPORT_SYMBOL vmlinux 0xafebbd9d nobh_write_end -EXPORT_SYMBOL vmlinux 0xafec09c0 disable_sacf_uaccess -EXPORT_SYMBOL vmlinux 0xaff429b8 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xaff46c35 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xaff5dca4 find_get_entry -EXPORT_SYMBOL vmlinux 0xb016493d arch_spin_relax -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01c1062 set_device_ro -EXPORT_SYMBOL vmlinux 0xb02cced7 input_set_keycode -EXPORT_SYMBOL vmlinux 0xb03baa38 iov_iter_for_each_range -EXPORT_SYMBOL vmlinux 0xb03e6293 dma_direct_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0670bf4 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xb06b273d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xb06b8e1c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xb09f0b46 class3270 -EXPORT_SYMBOL vmlinux 0xb0a5e059 proc_dointvec -EXPORT_SYMBOL vmlinux 0xb0ad8cb9 ccw_device_clear -EXPORT_SYMBOL vmlinux 0xb0b0a375 complete_request_key -EXPORT_SYMBOL vmlinux 0xb0c61b93 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xb0cc6636 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xb0cf6680 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb0f12d3f dput -EXPORT_SYMBOL vmlinux 0xb10876ca mount_single -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb1133bdb security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xb1203bb8 ap_perms -EXPORT_SYMBOL vmlinux 0xb128ea21 cpumask_any_but -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13ca328 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xb14564cb vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0xb169eca4 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb16f7e48 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xb1704e96 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xb184a1c9 redraw_screen -EXPORT_SYMBOL vmlinux 0xb19a6587 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xb1b89cf6 netif_device_detach -EXPORT_SYMBOL vmlinux 0xb1b8f0bc gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xb1bbe95a elv_rb_add -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c68e60 tcf_classify -EXPORT_SYMBOL vmlinux 0xb1c9091d inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xb1d05101 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e40350 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xb1e9e930 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xb213760f input_register_device -EXPORT_SYMBOL vmlinux 0xb22c6339 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb244439e kernel_connect -EXPORT_SYMBOL vmlinux 0xb24bead4 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb250fdb1 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xb255ec77 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xb256c34c dev_printk_emit -EXPORT_SYMBOL vmlinux 0xb293c18f gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb2940978 get_acl -EXPORT_SYMBOL vmlinux 0xb299eb29 refcount_add_not_zero_checked -EXPORT_SYMBOL vmlinux 0xb2a4858f __destroy_inode -EXPORT_SYMBOL vmlinux 0xb2ad7f51 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xb2ae5ea7 nla_append -EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt -EXPORT_SYMBOL vmlinux 0xb2af72c0 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2be0f53 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xb2cdd966 swake_up_locked -EXPORT_SYMBOL vmlinux 0xb2fafd17 mempool_resize -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb336d92c netdev_info -EXPORT_SYMBOL vmlinux 0xb345b33e simple_dir_operations -EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37acdfa mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xb3925c26 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xb39cf6ed dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xb3a5e46d wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xb3b88765 __bread_gfp -EXPORT_SYMBOL vmlinux 0xb3ba43bc pci_set_mwi -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d47b9a scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xb3f12338 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb408061b complete_and_exit -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb46ae3c2 sie64a -EXPORT_SYMBOL vmlinux 0xb48a2288 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49e6935 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xb4a975c2 f_setown -EXPORT_SYMBOL vmlinux 0xb4d5c399 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xb4e5c620 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xb4e70c42 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xb520c210 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xb5571753 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xb55d1c15 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xb56ec43a gro_cells_receive -EXPORT_SYMBOL vmlinux 0xb570378b tty_schedule_flip -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57d9852 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xb58a970e request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5950c21 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xb595d4e0 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xb59a49c8 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xb59ae7b2 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xb5a16cd7 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6d2d5 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5bde997 pci_free_irq -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ede912 fscrypt_inherit_context -EXPORT_SYMBOL vmlinux 0xb61fc607 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xb62030cd netif_carrier_off -EXPORT_SYMBOL vmlinux 0xb62b74af refcount_dec_and_test_checked -EXPORT_SYMBOL vmlinux 0xb62dc769 register_quota_format -EXPORT_SYMBOL vmlinux 0xb6301268 search_binary_handler -EXPORT_SYMBOL vmlinux 0xb633283f wake_up_process -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit -EXPORT_SYMBOL vmlinux 0xb6ab5fe0 inet_select_addr -EXPORT_SYMBOL vmlinux 0xb6b20c55 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xb6bcdaa5 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xb6d57d22 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 -EXPORT_SYMBOL vmlinux 0xb70c0cf9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xb740096d sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xb766ea5a fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7b507ea utf8nlen -EXPORT_SYMBOL vmlinux 0xb7bed15d dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb7c17fe9 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c -EXPORT_SYMBOL vmlinux 0xb80e974a dma_direct_map_page -EXPORT_SYMBOL vmlinux 0xb825b83d nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xb8270608 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb86c9632 __sb_start_write -EXPORT_SYMBOL vmlinux 0xb8717019 start_tty -EXPORT_SYMBOL vmlinux 0xb883909f input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8ea0542 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xb8fc0f38 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb915b577 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init -EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb93fcdb8 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb95e54f3 page_mapping -EXPORT_SYMBOL vmlinux 0xb972068a module_refcount -EXPORT_SYMBOL vmlinux 0xb978f6e8 __brelse -EXPORT_SYMBOL vmlinux 0xb97cbf90 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xb9812f68 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xb981989e param_get_long -EXPORT_SYMBOL vmlinux 0xb9df5c0d ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f7f261 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xba2bd0a4 simple_get_link -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba573882 kbd_ascebc -EXPORT_SYMBOL vmlinux 0xba8ecd2b __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xba97a7ae sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xbaa0bd6b do_clone_file_range -EXPORT_SYMBOL vmlinux 0xbaa5b812 __var_waitqueue -EXPORT_SYMBOL vmlinux 0xbab138be pci_choose_state -EXPORT_SYMBOL vmlinux 0xbabff8ec __ip_dev_find -EXPORT_SYMBOL vmlinux 0xbac75605 dst_release -EXPORT_SYMBOL vmlinux 0xbae13fbf unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xbae22bba __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xbae43c68 key_move -EXPORT_SYMBOL vmlinux 0xbaee1f7d blk_integrity_register -EXPORT_SYMBOL vmlinux 0xbaf507c1 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0xbafb6c2c km_query -EXPORT_SYMBOL vmlinux 0xbb002f24 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb37638b registered_fb -EXPORT_SYMBOL vmlinux 0xbb4166d7 sync_file_create -EXPORT_SYMBOL vmlinux 0xbb4d5259 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xbb710545 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xbb8ddbf9 pci_find_capability -EXPORT_SYMBOL vmlinux 0xbb95e033 brioctl_set -EXPORT_SYMBOL vmlinux 0xbb967101 ip_defrag -EXPORT_SYMBOL vmlinux 0xbb98838f dev_driver_string -EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbba35b42 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xbba5949a fs_bio_set -EXPORT_SYMBOL vmlinux 0xbbbbd27f jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xbbca7ecb t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xbc20c6be generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0xbc3bdc7f flow_get_u32_src -EXPORT_SYMBOL vmlinux 0xbc3d58fa netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xbc672396 fbcon_rotate_cw -EXPORT_SYMBOL vmlinux 0xbc732e1c pcim_iomap -EXPORT_SYMBOL vmlinux 0xbc7bede7 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xbc92d93a d_splice_alias -EXPORT_SYMBOL vmlinux 0xbc9493d6 blkdev_put -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcad81f1 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xbcb012c0 thaw_super -EXPORT_SYMBOL vmlinux 0xbcb042b0 compat_sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xbcbaa0cc con_is_visible -EXPORT_SYMBOL vmlinux 0xbcbafd0d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 -EXPORT_SYMBOL vmlinux 0xbcc558e6 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xbcd619f3 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xbcd7d664 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0xbcd801bc netif_rx -EXPORT_SYMBOL vmlinux 0xbcfa0a3f _copy_from_iter -EXPORT_SYMBOL vmlinux 0xbcfcd530 udp_poll -EXPORT_SYMBOL vmlinux 0xbd07b17a tty_port_close -EXPORT_SYMBOL vmlinux 0xbd0a49ad dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xbd28bf8d scsi_device_put -EXPORT_SYMBOL vmlinux 0xbd346893 filemap_flush -EXPORT_SYMBOL vmlinux 0xbd454bd5 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xbd63f1e9 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xbd935f38 mempool_init -EXPORT_SYMBOL vmlinux 0xbd9a6acc proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xbdb1cdee blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xbdc4464e netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xbdd07ffe tty_port_open -EXPORT_SYMBOL vmlinux 0xbdd36d29 bio_list_copy_data -EXPORT_SYMBOL vmlinux 0xbdf077c5 clear_nlink -EXPORT_SYMBOL vmlinux 0xbdf9a66f security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xbdfd5eb3 bdev_read_only -EXPORT_SYMBOL vmlinux 0xbe0f8071 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xbe112b43 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xbe1cf5f8 xsk_umem_consume_tx -EXPORT_SYMBOL vmlinux 0xbe464906 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd -EXPORT_SYMBOL vmlinux 0xbe605c3d udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xbe658394 fb_class -EXPORT_SYMBOL vmlinux 0xbe9024d7 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xbeb570f4 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xbebd10af device_get_mac_address -EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc -EXPORT_SYMBOL vmlinux 0xbeefacea pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xbef3bd9a down_trylock -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbf015ca9 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xbf1d2d75 poll_freewait -EXPORT_SYMBOL vmlinux 0xbf29a22a pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xbf2d33b2 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xbf4c07be end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xbf6917f2 d_tmpfile -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9f028e proc_create_single_data -EXPORT_SYMBOL vmlinux 0xbfa7792c pci_resize_resource -EXPORT_SYMBOL vmlinux 0xbfc486d9 padata_remove_cpu -EXPORT_SYMBOL vmlinux 0xbfcc988a jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xbfd1b4a3 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xbfd319b0 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xbfd72bde param_set_ulong -EXPORT_SYMBOL vmlinux 0xbfe038af try_to_release_page -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff755c2 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xbffe7219 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user -EXPORT_SYMBOL vmlinux 0xc01eb4f9 tty_unlock -EXPORT_SYMBOL vmlinux 0xc0235bda bdev_stack_limits -EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc028dcd3 tty_port_put -EXPORT_SYMBOL vmlinux 0xc034b555 raw3270_start_irq -EXPORT_SYMBOL vmlinux 0xc06f0724 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0xc0741fa6 dev_uc_init -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0xc09ca6b2 release_firmware -EXPORT_SYMBOL vmlinux 0xc09e9e10 debug_unregister_view -EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0e25fc1 __page_symlink -EXPORT_SYMBOL vmlinux 0xc0e2fe81 pci_release_regions -EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw -EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc -EXPORT_SYMBOL vmlinux 0xc122f7ee input_open_device -EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0xc13c33c2 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1543919 md_integrity_register -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc168e3bb iucv_if -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc188b979 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xc1a64320 __tracepoint_s390_cio_tsch -EXPORT_SYMBOL vmlinux 0xc1a9e700 proc_set_user -EXPORT_SYMBOL vmlinux 0xc1aed65d rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xc1b09a2d debug_register_mode -EXPORT_SYMBOL vmlinux 0xc1be1c71 xsk_umem_peek_addr -EXPORT_SYMBOL vmlinux 0xc1c0f650 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1f88e54 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes -EXPORT_SYMBOL vmlinux 0xc221217d page_get_link -EXPORT_SYMBOL vmlinux 0xc2290a32 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xc22d8a50 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc2336209 unix_gc_lock -EXPORT_SYMBOL vmlinux 0xc24e3492 ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0xc25247ca sock_no_accept -EXPORT_SYMBOL vmlinux 0xc2571e16 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xc2610dc4 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xc2ace8d7 ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0xc2bad202 posix_lock_file -EXPORT_SYMBOL vmlinux 0xc2bfab29 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xc2c355c0 kill_pgrp -EXPORT_SYMBOL vmlinux 0xc2e14a53 __lock_page -EXPORT_SYMBOL vmlinux 0xc2e1c381 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc -EXPORT_SYMBOL vmlinux 0xc30eaf8a xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc336a985 dqstats -EXPORT_SYMBOL vmlinux 0xc337888d scsi_block_requests -EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xc3663006 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xc37892f5 iucv_root -EXPORT_SYMBOL vmlinux 0xc3838322 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters -EXPORT_SYMBOL vmlinux 0xc38b1508 simple_setattr -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3ccf996 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xc3d23a9a cdrom_media_changed -EXPORT_SYMBOL vmlinux 0xc3d9dbd2 inet6_bind -EXPORT_SYMBOL vmlinux 0xc3dc2185 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xc3f57196 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xc4131cfe vc_resize -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc422bc72 param_ops_short -EXPORT_SYMBOL vmlinux 0xc4239e79 unregister_service_level -EXPORT_SYMBOL vmlinux 0xc438d624 d_delete -EXPORT_SYMBOL vmlinux 0xc4400dd2 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xc446f360 register_console -EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xc45b3671 skb_dump -EXPORT_SYMBOL vmlinux 0xc45c52e2 proto_unregister -EXPORT_SYMBOL vmlinux 0xc46b9eae bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc470c1c6 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4c35bf0 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xc4ea6de4 __page_pool_put_page -EXPORT_SYMBOL vmlinux 0xc4ff53c6 param_set_ushort -EXPORT_SYMBOL vmlinux 0xc5048d9f would_dump -EXPORT_SYMBOL vmlinux 0xc520f1ba dev_warn_hash -EXPORT_SYMBOL vmlinux 0xc53739ad padata_do_parallel -EXPORT_SYMBOL vmlinux 0xc541fbfd blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xc54396c7 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xc5521d50 sclp_register -EXPORT_SYMBOL vmlinux 0xc5565332 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xc5609ac3 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xc566965d key_task_permission -EXPORT_SYMBOL vmlinux 0xc569e1e3 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0xc5749248 dev_set_alias -EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 -EXPORT_SYMBOL vmlinux 0xc57c91cd gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xc5850110 printk -EXPORT_SYMBOL vmlinux 0xc59568db con_is_bound -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc599ad77 dma_fence_init -EXPORT_SYMBOL vmlinux 0xc5ab0784 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d5ee51 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc5e564f8 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5e9e675 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5f80143 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xc600dbd7 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xc600f1cf dmam_pool_create -EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6160e76 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xc622ea97 stsi -EXPORT_SYMBOL vmlinux 0xc62a2a6d sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xc62af524 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6421532 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xc656da24 fb_blank -EXPORT_SYMBOL vmlinux 0xc659f8e9 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc661cf65 set_page_dirty -EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xc66e8e4a pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xc6873bb7 write_cache_pages -EXPORT_SYMBOL vmlinux 0xc6ae4bc6 mempool_exit -EXPORT_SYMBOL vmlinux 0xc6b443e8 up -EXPORT_SYMBOL vmlinux 0xc6b8511c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xc6b8d3e3 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc71381f4 devm_release_resource -EXPORT_SYMBOL vmlinux 0xc7281eaf ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xc735d366 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xc75c455e get_task_exe_file -EXPORT_SYMBOL vmlinux 0xc75f3b29 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc -EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7bb3233 path_put -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cbb4b5 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7dc6d0d ip_frag_next -EXPORT_SYMBOL vmlinux 0xc7e348cc msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xc81cd611 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88a8918 down_interruptible -EXPORT_SYMBOL vmlinux 0xc8986c9f d_add -EXPORT_SYMBOL vmlinux 0xc89e067b udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b064f4 bdget -EXPORT_SYMBOL vmlinux 0xc8bdb78b netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xc8cbd716 rtnl_notify -EXPORT_SYMBOL vmlinux 0xc8e05d6e bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xc8ed7c96 dquot_destroy -EXPORT_SYMBOL vmlinux 0xc8ed992e simple_release_fs -EXPORT_SYMBOL vmlinux 0xc906ee6b jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xc91e3c07 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96b173e register_md_personality -EXPORT_SYMBOL vmlinux 0xc96b97ea blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc971558f nobh_writepage -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc991b1ec inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc9a0c6f7 drop_super -EXPORT_SYMBOL vmlinux 0xc9a8db1b put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xc9bc64c8 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xc9c9ee2d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9f836f5 sort_r -EXPORT_SYMBOL vmlinux 0xca1974dd blk_register_region -EXPORT_SYMBOL vmlinux 0xca1c4e00 _dev_warn -EXPORT_SYMBOL vmlinux 0xca1c6c95 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2210ef dev_addr_del -EXPORT_SYMBOL vmlinux 0xca315c0c scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca44686e sk_capable -EXPORT_SYMBOL vmlinux 0xca5c8207 clear_inode -EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xca73a79e md_write_inc -EXPORT_SYMBOL vmlinux 0xca77a2d9 elevator_alloc -EXPORT_SYMBOL vmlinux 0xca7df264 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xca83ded8 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xca850a17 sock_wfree -EXPORT_SYMBOL vmlinux 0xca85cfc2 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa09230 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xcaeaddeb dev_base_lock -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb00ae9c blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0xcb0c99aa scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xcb2ba480 __pagevec_release -EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0xcb37b71b mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb44e3d2 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xcb4597d5 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xcb56d1b6 xa_store -EXPORT_SYMBOL vmlinux 0xcb6b4ebe tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xcb703e21 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xcb7a1258 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xcb7dae63 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xcb85a9b8 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xcb9c7706 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort -EXPORT_SYMBOL vmlinux 0xcba78ea9 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xcbb463c0 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0xcbce6cba dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd6d9c3 __scm_send -EXPORT_SYMBOL vmlinux 0xcbfd5778 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xcbfdb61c __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xcc10778c page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xcc18d211 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xcc206372 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xcc26cedd mount_subtree -EXPORT_SYMBOL vmlinux 0xcc2f6414 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc33f90c neigh_resolve_output -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 0xcc5e8f6e capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xcc8b1c10 dev_add_pack -EXPORT_SYMBOL vmlinux 0xcca846df dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor -EXPORT_SYMBOL vmlinux 0xccc4001d gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccda9be4 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xcced28f8 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xccf9e54a dst_release_immediate -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd0454df debug_unregister -EXPORT_SYMBOL vmlinux 0xcd135ad0 bio_split -EXPORT_SYMBOL vmlinux 0xcd1df2c9 compat_ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xcd2338a6 napi_disable -EXPORT_SYMBOL vmlinux 0xcd249910 bd_finish_claiming -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd310b23 netif_napi_add -EXPORT_SYMBOL vmlinux 0xcd5df980 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xcd96856f zero_fill_bio_iter -EXPORT_SYMBOL vmlinux 0xcd9fdc25 km_policy_expired -EXPORT_SYMBOL vmlinux 0xcdb4e7f7 __sb_end_write -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdce2c44 bio_add_page -EXPORT_SYMBOL vmlinux 0xcdd12126 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdee7fce scsi_host_busy -EXPORT_SYMBOL vmlinux 0xce1e816a dentry_open -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce28fc99 unregister_console -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce605aa0 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xce617ab6 get_mem_cgroup_from_page -EXPORT_SYMBOL vmlinux 0xce65f6b6 posix_test_lock -EXPORT_SYMBOL vmlinux 0xce70dcad dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xce78ea78 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk -EXPORT_SYMBOL vmlinux 0xce7d0761 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xce8afa9d simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section -EXPORT_SYMBOL vmlinux 0xce8e665b xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xcea0299c iov_iter_zero -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec6fd5d ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xcee80042 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xcee894e0 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0xcef94231 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0xcf121cd0 d_instantiate -EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0xcf2d4467 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xcf437a33 vm_map_ram -EXPORT_SYMBOL vmlinux 0xcf53245c padata_free -EXPORT_SYMBOL vmlinux 0xcf6e3299 skb_pull -EXPORT_SYMBOL vmlinux 0xcf8bf0ce dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xcf903d0d netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xcf9dd63e seq_putc -EXPORT_SYMBOL vmlinux 0xcfb20994 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xd00d5a54 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xd011e177 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xd02120d3 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0661fb3 vscnprintf -EXPORT_SYMBOL vmlinux 0xd06a3fbc __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xd06e4839 arch_spin_trylock_retry -EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init -EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces -EXPORT_SYMBOL vmlinux 0xd0c4fce8 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xd0d6032c generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xd0dd9f9c tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xd0e4047f dev_open -EXPORT_SYMBOL vmlinux 0xd0ef5eae tcf_em_register -EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put -EXPORT_SYMBOL vmlinux 0xd112df3c dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xd12ab773 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xd1470ff7 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xd1665445 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18c6436 netdev_printk -EXPORT_SYMBOL vmlinux 0xd1af0448 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e751a6 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xd221d7b5 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xd23ab492 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xd2496864 ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0xd250bab4 node_data -EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd29da975 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd2a14b35 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xd2ab3ecc skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xd2adba45 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xd2af8a58 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xd2b24174 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xd2b9f274 module_put -EXPORT_SYMBOL vmlinux 0xd2ca0b5a fbcon_set_rotate -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dc4fdd d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xd2f30af7 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xd2fc3f23 bio_put -EXPORT_SYMBOL vmlinux 0xd30a931f tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3561352 swake_up_all -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35dd7f3 vprintk_emit -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd377b56a pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user -EXPORT_SYMBOL vmlinux 0xd3c4caea inet6_del_offload -EXPORT_SYMBOL vmlinux 0xd3da44e9 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd3ddaf30 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xd3e1fcc6 iterate_fd -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd406d346 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xd40f6f36 __jhash_string -EXPORT_SYMBOL vmlinux 0xd41f5402 cpumask_next -EXPORT_SYMBOL vmlinux 0xd440e84b __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xd45b0eb6 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xd4694ddd pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xd4751654 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xd48d4899 file_remove_privs -EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb -EXPORT_SYMBOL vmlinux 0xd490b1c6 unlock_buffer -EXPORT_SYMBOL vmlinux 0xd494dd88 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c8c54e dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0xd4d61975 netif_napi_del -EXPORT_SYMBOL vmlinux 0xd4e9d05d register_sysctl_table -EXPORT_SYMBOL vmlinux 0xd4f77700 scsi_device_get -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd504cb38 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xd50855ba pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xd5117941 passthru_features_check -EXPORT_SYMBOL vmlinux 0xd51d6ba7 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xd524df67 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5270870 d_alloc -EXPORT_SYMBOL vmlinux 0xd5504f7a dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xd5602b98 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xd58e85f9 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xd5957ef4 seq_open_private -EXPORT_SYMBOL vmlinux 0xd5987f68 param_get_bool -EXPORT_SYMBOL vmlinux 0xd5a88ee5 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5beccec xsk_umem_has_addrs -EXPORT_SYMBOL vmlinux 0xd5c9844f dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xd5d91634 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index -EXPORT_SYMBOL vmlinux 0xd5ffa8a6 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60aa048 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xd64bd2d6 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit -EXPORT_SYMBOL vmlinux 0xd6680f8b dev_activate -EXPORT_SYMBOL vmlinux 0xd66ba2ac gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xd672ab77 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xd677b563 debug_register_view -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68a01b8 xa_erase -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xd69ce85b scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xd6b7c17b qdisc_put -EXPORT_SYMBOL vmlinux 0xd6cd39f1 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd727f525 dump_page -EXPORT_SYMBOL vmlinux 0xd7382066 __find_get_block -EXPORT_SYMBOL vmlinux 0xd7497166 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xd76d2d7b eth_header_parse -EXPORT_SYMBOL vmlinux 0xd789aed8 pci_get_class -EXPORT_SYMBOL vmlinux 0xd7a4350b file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd7a5980f address_space_init_once -EXPORT_SYMBOL vmlinux 0xd7b14c4f show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xd7bce274 pci_find_resource -EXPORT_SYMBOL vmlinux 0xd7d230a1 netdev_notice -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d56449 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7f7f393 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xd8000988 param_set_uint -EXPORT_SYMBOL vmlinux 0xd8010fa7 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xd81621cf raw3270_deactivate_view -EXPORT_SYMBOL vmlinux 0xd81cc5e9 no_llseek -EXPORT_SYMBOL vmlinux 0xd827fff3 memremap -EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xd8518408 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xd85f4bcf pgste_perform_essa -EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame -EXPORT_SYMBOL vmlinux 0xd8949416 block_write_begin -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8cc9035 stop_tty -EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd -EXPORT_SYMBOL vmlinux 0xd926e599 __xa_erase -EXPORT_SYMBOL vmlinux 0xd92ca63c jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xd933e9fa posix_acl_valid -EXPORT_SYMBOL vmlinux 0xd9345238 from_kprojid -EXPORT_SYMBOL vmlinux 0xd93fa444 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xd942cb51 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xd946a7b0 reset_guest_reference_bit -EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd99906d8 fput -EXPORT_SYMBOL vmlinux 0xd99e7ad3 param_set_int -EXPORT_SYMBOL vmlinux 0xd9ae583b complete_all -EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno -EXPORT_SYMBOL vmlinux 0xd9bd51b7 udp_disconnect -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9fb3cec get_tree_nodev -EXPORT_SYMBOL vmlinux 0xda0cc432 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xda241b83 input_close_device -EXPORT_SYMBOL vmlinux 0xda2beac9 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xda3bfb38 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda5bd308 blkdev_fsync -EXPORT_SYMBOL vmlinux 0xda636ad7 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda72ff75 dma_direct_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xda80bb2a kernel_bind -EXPORT_SYMBOL vmlinux 0xda872864 security_locked_down -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdaa836bb sg_miter_stop -EXPORT_SYMBOL vmlinux 0xdab7d3a9 dquot_drop -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac97957 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdb17324c put_cmsg -EXPORT_SYMBOL vmlinux 0xdb1bd87c rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xdb216408 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xdb254b03 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xdb390d48 fqdir_exit -EXPORT_SYMBOL vmlinux 0xdb4c7df7 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xdb6ac60e vfs_ioc_fssetxattr_check -EXPORT_SYMBOL vmlinux 0xdb731b90 user_revoke -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8534a5 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xdbb72fd0 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc095dae put_user_pages -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2421fb truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc8f6b66 migrate_page_states -EXPORT_SYMBOL vmlinux 0xdc9cda74 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xdcc35f8f zap_page_range -EXPORT_SYMBOL vmlinux 0xdcc59e27 dcache_dir_open -EXPORT_SYMBOL vmlinux 0xdce92a5b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xdcfc4482 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xdcfc83b1 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xdd006fb3 param_set_invbool -EXPORT_SYMBOL vmlinux 0xdd0919c8 kbd_free -EXPORT_SYMBOL vmlinux 0xdd19b1bf kernel_sendpage -EXPORT_SYMBOL vmlinux 0xdd1cdbcb add_wait_queue -EXPORT_SYMBOL vmlinux 0xdd26b46c dns_query -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xdd41cb49 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xdd4bffbf gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table -EXPORT_SYMBOL vmlinux 0xdd7a02f5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd850928 param_set_charp -EXPORT_SYMBOL vmlinux 0xdd99bf19 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xddb43fbf napi_consume_skb -EXPORT_SYMBOL vmlinux 0xddb7bf19 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xddce0415 dev_addr_init -EXPORT_SYMBOL vmlinux 0xddcea80e file_ns_capable -EXPORT_SYMBOL vmlinux 0xddd0d190 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xddd2c4dc vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xddd3b6fe __put_cred -EXPORT_SYMBOL vmlinux 0xddd78aad netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xdde456ca do_SAK -EXPORT_SYMBOL vmlinux 0xddf11f9b pagevec_lookup_range_nr_tag -EXPORT_SYMBOL vmlinux 0xddfaf84e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xde0a6bea fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xde0bdcff memset -EXPORT_SYMBOL vmlinux 0xde10f536 proc_douintvec -EXPORT_SYMBOL vmlinux 0xde46bcf1 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde5de2ab mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc -EXPORT_SYMBOL vmlinux 0xde94b379 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xdea85c08 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xdebecb58 dma_direct_map_sg -EXPORT_SYMBOL vmlinux 0xded11fba __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf1ebda6 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xdf219f42 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xdf2a2fb0 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf399fb8 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xdf39d38c __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xdf461495 dcb_setapp -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf585849 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xdf73d179 netdev_warn -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf93deda scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xdf96fe52 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xdf98871d airq_iv_release -EXPORT_SYMBOL vmlinux 0xdfa4bc99 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe013d2ac netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xe0241c04 raw3270_activate_view -EXPORT_SYMBOL vmlinux 0xe042bc71 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xe0546d5b pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xe06b6d1a skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xe076361e dump_skip -EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool -EXPORT_SYMBOL vmlinux 0xe08a3136 param_get_ushort -EXPORT_SYMBOL vmlinux 0xe08b0d0a blk_execute_rq -EXPORT_SYMBOL vmlinux 0xe08b8923 fb_get_mode -EXPORT_SYMBOL vmlinux 0xe095ca42 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xe09ec6f3 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b4f0ae __scsi_add_device -EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0c5fbe7 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xe0c82f47 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xe0f1e66e pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe0f8a9fe md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xe100a819 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xe11b909a reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xe11f78df pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12540cd vm_map_pages -EXPORT_SYMBOL vmlinux 0xe12c7923 ccw_device_set_online -EXPORT_SYMBOL vmlinux 0xe12f3908 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure -EXPORT_SYMBOL vmlinux 0xe148806d jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xe149fbff fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xe16740be path_has_submounts -EXPORT_SYMBOL vmlinux 0xe1777651 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xe187f983 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xe18e56cb __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe1919ce9 completion_done -EXPORT_SYMBOL vmlinux 0xe198dbb4 generic_setlease -EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0xe1ce3217 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e2a360 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xe1e5e374 dup_iter -EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xe1ec6505 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xe20843db submit_bh -EXPORT_SYMBOL vmlinux 0xe209991c inet_frags_fini -EXPORT_SYMBOL vmlinux 0xe21012ce __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xe230ff1e put_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xe2379dc2 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xe240a9e2 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xe242f0e9 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xe257ef0b kill_block_super -EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0xe27a5609 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xe27c1e83 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw -EXPORT_SYMBOL vmlinux 0xe29133b5 cdrom_release -EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0xe2b6dc25 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init -EXPORT_SYMBOL vmlinux 0xe30521d1 put_fs_context -EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe334a72e scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xe33e1908 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup -EXPORT_SYMBOL vmlinux 0xe37b8238 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xe398060b follow_down -EXPORT_SYMBOL vmlinux 0xe3d6084a __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xe3d70645 raw3270_request_set_cmd -EXPORT_SYMBOL vmlinux 0xe3e484f3 fbcon_rotate_ccw -EXPORT_SYMBOL vmlinux 0xe3e89eb7 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe417de60 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xe425a17a remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name -EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0xe444c674 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xe4641d28 mpage_writepage -EXPORT_SYMBOL vmlinux 0xe47c8734 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xe4859837 write_one_page -EXPORT_SYMBOL vmlinux 0xe48bc912 __debug_sprintf_exception -EXPORT_SYMBOL vmlinux 0xe48f5057 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xe4a250b6 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xe4b88033 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe4bd416e flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xe4c2d522 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on -EXPORT_SYMBOL vmlinux 0xe4fa4309 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xe4fabb3f path_nosuid -EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste -EXPORT_SYMBOL vmlinux 0xe50ae128 xa_set_mark -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp -EXPORT_SYMBOL vmlinux 0xe55397a2 sock_wake_async -EXPORT_SYMBOL vmlinux 0xe559b181 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xe559f2f0 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname -EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch -EXPORT_SYMBOL vmlinux 0xe57ad183 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xe57c32c2 kbd_ioctl -EXPORT_SYMBOL vmlinux 0xe57f1710 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe582477c kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xe583c517 airq_iv_scan -EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5aa4660 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ccea24 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xe5d29563 arp_create -EXPORT_SYMBOL vmlinux 0xe5d51449 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xe5f2c9a4 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xe5f8ae01 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xe606da7d md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61b1288 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe61b7f5f register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0xe6255293 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xe633aefd seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe638f244 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xe63e5a0c blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0xe653db9c lock_rename -EXPORT_SYMBOL vmlinux 0xe65d424b blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xe6a64975 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xe6a87bfe md_flush_request -EXPORT_SYMBOL vmlinux 0xe6bbdd12 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xe6e00d58 d_obtain_root -EXPORT_SYMBOL vmlinux 0xe6f132d0 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe700f316 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xe70e79c3 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xe70f75b2 vfs_get_super -EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe71e5fd0 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7552090 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xe7916c22 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xe79486c4 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe798236d jiffies -EXPORT_SYMBOL vmlinux 0xe7b4a1db pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xe7bef2b3 datagram_poll -EXPORT_SYMBOL vmlinux 0xe7d0acd6 sock_release -EXPORT_SYMBOL vmlinux 0xe7d29cb7 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xe7d2b270 skb_store_bits -EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f606a7 dquot_acquire -EXPORT_SYMBOL vmlinux 0xe801a8be __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe802a33a flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xe80fdb17 key_put -EXPORT_SYMBOL vmlinux 0xe8112eb1 napi_complete_done -EXPORT_SYMBOL vmlinux 0xe81db0cc blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xe8242446 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe8265a15 kernel_write -EXPORT_SYMBOL vmlinux 0xe82a031c param_get_byte -EXPORT_SYMBOL vmlinux 0xe8308f51 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xe83ec6d9 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xe85e16de cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xe863bc56 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xe871a0f1 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xe8980667 noop_qdisc -EXPORT_SYMBOL vmlinux 0xe8a70f88 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul -EXPORT_SYMBOL vmlinux 0xe8bcd7ba proc_set_size -EXPORT_SYMBOL vmlinux 0xe8c30b8d unregister_shrinker -EXPORT_SYMBOL vmlinux 0xe8cc9084 inet_listen -EXPORT_SYMBOL vmlinux 0xe8d0b5da input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xe8de8a80 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xe8fb47f8 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xe903cf90 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe9141ccb generic_writepages -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9237e3b fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xe9407628 ccw_device_set_options -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95d469c netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe980cdb9 netdev_crit -EXPORT_SYMBOL vmlinux 0xe989ad1c wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xe99291fe tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xe998963e tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xe9ba16b1 generic_permission -EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize -EXPORT_SYMBOL vmlinux 0xe9db79d2 rt6_lookup -EXPORT_SYMBOL vmlinux 0xe9f51c20 input_register_handler -EXPORT_SYMBOL vmlinux 0xea048cfe ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xea31a6ce soft_cursor -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3d7b91 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xea5bcbc3 nf_log_unset -EXPORT_SYMBOL vmlinux 0xea6988fe blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xea707a8e nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xea754079 compat_nf_getsockopt -EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0xea8454c6 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea8b91d8 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xead4febe __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump -EXPORT_SYMBOL vmlinux 0xead61428 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xeafd421d misc_register -EXPORT_SYMBOL vmlinux 0xeb12cf08 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xeb1464c2 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xeb1754f9 devm_memremap -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb5e1a2d jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xeb6155ca __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xeb7952b3 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xeb82716d nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xeb8b6dd8 seq_lseek -EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xebad0ece set_posix_acl -EXPORT_SYMBOL vmlinux 0xebb473cf vfs_create_mount -EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp -EXPORT_SYMBOL vmlinux 0xebbf4be7 I_BDEV -EXPORT_SYMBOL vmlinux 0xebbff387 d_invalidate -EXPORT_SYMBOL vmlinux 0xebc5f88a dev_get_flags -EXPORT_SYMBOL vmlinux 0xebcb2554 raw3270_wait_queue -EXPORT_SYMBOL vmlinux 0xebe854ca inet_del_protocol -EXPORT_SYMBOL vmlinux 0xebf11e4f tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xebfb7207 ap_parse_mask_str -EXPORT_SYMBOL vmlinux 0xebffafac is_subdir -EXPORT_SYMBOL vmlinux 0xec06c5e9 ilookup5 -EXPORT_SYMBOL vmlinux 0xec0a379e nonseekable_open -EXPORT_SYMBOL vmlinux 0xec122c83 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed -EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xec2dbfc2 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xec300ec8 inet6_protos -EXPORT_SYMBOL vmlinux 0xec30aa6f scsi_ioctl -EXPORT_SYMBOL vmlinux 0xec338472 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xec3487ec filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xec5fd083 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xec6113f1 up_read -EXPORT_SYMBOL vmlinux 0xec61c614 xa_destroy -EXPORT_SYMBOL vmlinux 0xec64bd13 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xec7df23f md_handle_request -EXPORT_SYMBOL vmlinux 0xec921e9c blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef14f6 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xed0329e6 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xed1e1437 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xed5f7e10 __register_binfmt -EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx -EXPORT_SYMBOL vmlinux 0xed89bd3c blk_queue_make_request -EXPORT_SYMBOL vmlinux 0xed95ca25 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xeda1b3d1 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0xeda620e7 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xeda77070 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xedad1679 register_netdev -EXPORT_SYMBOL vmlinux 0xedbae178 param_ops_int -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc1b4fe request_key_rcu -EXPORT_SYMBOL vmlinux 0xedd23254 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xede94561 unregister_key_type -EXPORT_SYMBOL vmlinux 0xedf841c5 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge -EXPORT_SYMBOL vmlinux 0xee0c5d95 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xee201daf jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee30e03c __neigh_event_send -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee66f316 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xee6a9c5a dquot_transfer -EXPORT_SYMBOL vmlinux 0xee86ce21 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeedf7367 fb_deferred_io_mmap -EXPORT_SYMBOL vmlinux 0xef2eadc2 __free_pages -EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xefaec34c tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xefd37870 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xefe7b1aa remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init -EXPORT_SYMBOL vmlinux 0xf00afcf0 fb_set_var -EXPORT_SYMBOL vmlinux 0xf02eeaf5 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xf02f0340 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xf03427f8 up_write -EXPORT_SYMBOL vmlinux 0xf04fd859 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect -EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier -EXPORT_SYMBOL vmlinux 0xf072cd49 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0xf080ea3a tcf_idr_search -EXPORT_SYMBOL vmlinux 0xf0856c8c pci_dev_get -EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0bbc812 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xf0cc1f05 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xf0cea227 dev_get_stats -EXPORT_SYMBOL vmlinux 0xf0e84986 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xf0f2d4c7 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xf0fb4aec input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data -EXPORT_SYMBOL vmlinux 0xf10153db dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit -EXPORT_SYMBOL vmlinux 0xf11ab983 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xf11e0ef9 __vmalloc -EXPORT_SYMBOL vmlinux 0xf1245a2d tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xf127b3f0 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xf13240e0 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xf13f8989 udp6_set_csum -EXPORT_SYMBOL vmlinux 0xf153bf87 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xf15f3b41 idr_get_next -EXPORT_SYMBOL vmlinux 0xf1681f2a pci_pme_active -EXPORT_SYMBOL vmlinux 0xf168404f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xf16f8bb8 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xf17dab00 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf1855796 follow_down_one -EXPORT_SYMBOL vmlinux 0xf18f5979 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19c89cc md_write_end -EXPORT_SYMBOL vmlinux 0xf19e7338 unregister_external_irq -EXPORT_SYMBOL vmlinux 0xf1acd754 simple_getattr -EXPORT_SYMBOL vmlinux 0xf1baff35 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f73879 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xf20af3d9 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xf2277e9b set_wb_congested -EXPORT_SYMBOL vmlinux 0xf237615d cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xf23c1ce5 check_disk_change -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2403b4e blk_integrity_merge_bio -EXPORT_SYMBOL vmlinux 0xf25ead09 blkdev_get -EXPORT_SYMBOL vmlinux 0xf26dbbb7 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xf26feeb8 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xf2778cec netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf2847f48 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf2b62724 ccw_driver_unregister -EXPORT_SYMBOL vmlinux 0xf2c8edff seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ed2903 dev_emerg_hash -EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform -EXPORT_SYMBOL vmlinux 0xf32df296 bdi_alloc_node -EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user -EXPORT_SYMBOL vmlinux 0xf33a81fb make_kprojid -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3509719 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3744492 request_key_tag -EXPORT_SYMBOL vmlinux 0xf384eb95 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf38a04df __frontswap_store -EXPORT_SYMBOL vmlinux 0xf38d43d3 skb_seq_read -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3a68262 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xf3af3fba tty_write_room -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send -EXPORT_SYMBOL vmlinux 0xf3b8b269 ping_prot -EXPORT_SYMBOL vmlinux 0xf3bb86a1 inode_permission -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f8642e mount_nodev -EXPORT_SYMBOL vmlinux 0xf41d17b9 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xf4285d0b mutex_trylock_recursive -EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0xf457eaf0 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47e8904 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xf49e7faf kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xf4b43991 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d92c4a ip6_frag_next -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e21d28 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xf4eb52c2 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xf4fcd810 pci_find_bus -EXPORT_SYMBOL vmlinux 0xf51482a6 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xf529d0b5 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf542f290 raw_copy_from_user -EXPORT_SYMBOL vmlinux 0xf55085ae tcp_prot -EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate -EXPORT_SYMBOL vmlinux 0xf5521b53 netlink_ack -EXPORT_SYMBOL vmlinux 0xf5620bdc finish_swait -EXPORT_SYMBOL vmlinux 0xf5641f56 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xf57d2962 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xf59d0270 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xf5a54b0b raw3270_find_view -EXPORT_SYMBOL vmlinux 0xf5cad35e dma_dummy_ops -EXPORT_SYMBOL vmlinux 0xf5cd7e20 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xf5dd4cae skb_copy_header -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f07369 seq_escape_mem_ascii -EXPORT_SYMBOL vmlinux 0xf5f2c541 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5fdb501 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xf602dfc0 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xf602fe11 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xf608d13f starget_for_each_device -EXPORT_SYMBOL vmlinux 0xf61910a5 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6490ec3 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6718e8b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xf67a53e5 seq_release_private -EXPORT_SYMBOL vmlinux 0xf67ad693 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf683e9be tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xf68edaa0 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xf6d1c77f __invalidate_device -EXPORT_SYMBOL vmlinux 0xf6d2a8bb __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xf6dd3b42 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f5606b fb_find_mode -EXPORT_SYMBOL vmlinux 0xf6f7fad7 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf715825c fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted -EXPORT_SYMBOL vmlinux 0xf7584a9c find_font -EXPORT_SYMBOL vmlinux 0xf75e93b0 nvm_register_tgt_type -EXPORT_SYMBOL vmlinux 0xf76844ae pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf79a266a flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xf7a2c3fb pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xf7a596de ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0xf7ad52dc alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xf7ae563c vmemmap -EXPORT_SYMBOL vmlinux 0xf7b54495 tty_name -EXPORT_SYMBOL vmlinux 0xf7b92217 utf8_casefold -EXPORT_SYMBOL vmlinux 0xf7bf4048 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7e99d91 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xf7f5d8af loop_register_transfer -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf822fb68 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8371338 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf86267fa security_unix_may_send -EXPORT_SYMBOL vmlinux 0xf86cc076 inet_gro_complete -EXPORT_SYMBOL vmlinux 0xf86e6516 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xf86f9082 iget_locked -EXPORT_SYMBOL vmlinux 0xf8728430 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88c5900 __sock_create -EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START -EXPORT_SYMBOL vmlinux 0xf8b19010 input_release_device -EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xf8cadbdb con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e7e726 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf9050bd9 elv_rb_del -EXPORT_SYMBOL vmlinux 0xf90e77d7 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xf92b3bc1 add_to_pipe -EXPORT_SYMBOL vmlinux 0xf92d8796 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94196e2 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xf954e060 bdi_register_owner -EXPORT_SYMBOL vmlinux 0xf9619e66 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xf973531e __scm_destroy -EXPORT_SYMBOL vmlinux 0xf980ae19 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xf9895551 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xf98a65d1 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a9e58d pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0xf9c7d842 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xf9f50b92 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xf9ff3b5d ll_rw_block -EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfa109168 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xfa2c68ce pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xfa3862b2 give_up_console -EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update -EXPORT_SYMBOL vmlinux 0xfa3c881c __napi_schedule -EXPORT_SYMBOL vmlinux 0xfa439d49 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xfa43e861 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xfa512abe security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5af90c sk_common_release -EXPORT_SYMBOL vmlinux 0xfa5b712c page_readlink -EXPORT_SYMBOL vmlinux 0xfa699ca5 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xfa7b501c tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfaa4de54 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xfab9e7d7 kbd_alloc -EXPORT_SYMBOL vmlinux 0xfabc747b nvm_register -EXPORT_SYMBOL vmlinux 0xfac7b5ca textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xface1087 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xfacef973 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xfad5a4a8 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xfaf0e204 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xfb027d26 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfb0e4a55 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xfb126579 blk_get_request -EXPORT_SYMBOL vmlinux 0xfb247259 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xfb38075b dev_mc_add -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb410a47 default_llseek -EXPORT_SYMBOL vmlinux 0xfb4694b4 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0xfb481954 vprintk -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7862d6 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xfb7cae5b pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0xfb91e220 setattr_copy -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbbd6dda noop_fsync -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcdd3ad ccw_device_tm_start_timeout -EXPORT_SYMBOL vmlinux 0xfbd10a64 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xfbe423de flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xfbf11821 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xfc0a429b skb_copy_expand -EXPORT_SYMBOL vmlinux 0xfc0e50c0 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc509c7b mount_bdev -EXPORT_SYMBOL vmlinux 0xfc56c0d0 netdev_emerg -EXPORT_SYMBOL vmlinux 0xfc61fa5c truncate_pagecache -EXPORT_SYMBOL vmlinux 0xfca7827f param_get_charp -EXPORT_SYMBOL vmlinux 0xfcbad4b3 __frontswap_test -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd05e36e seq_vprintf -EXPORT_SYMBOL vmlinux 0xfd3a1e31 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xfd3e6f92 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xfd51a6f7 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xfd6a8572 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xfd748217 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xfd7e2025 path_get -EXPORT_SYMBOL vmlinux 0xfda6740b seq_pad -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb4de2d mempool_free -EXPORT_SYMBOL vmlinux 0xfdb61fa8 framebuffer_release -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfddf7d28 fbcon_rotate_ud -EXPORT_SYMBOL vmlinux 0xfdf45996 lowcore_ptr -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe098d1e pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xfe100dd5 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xfe193e65 __xa_alloc -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7d3e4c call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xfe916918 lock_sock_fast -EXPORT_SYMBOL vmlinux 0xfea03e84 cont_write_begin -EXPORT_SYMBOL vmlinux 0xfea1caf6 vlan_for_each -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfec09a58 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xfed8ce95 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef28181 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xfef8add4 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx -EXPORT_SYMBOL vmlinux 0xff13e5e3 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xff14883f udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer -EXPORT_SYMBOL vmlinux 0xff3da67d seq_open -EXPORT_SYMBOL vmlinux 0xff3dbe7d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xff4ebc1c put_tty_driver -EXPORT_SYMBOL vmlinux 0xff521d26 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xff5a37f5 airq_iv_alloc -EXPORT_SYMBOL vmlinux 0xff660930 kobject_put -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7f5643 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0xff88de38 dma_direct_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xffa9bfdb wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xffb7a76c ilookup -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff6613e __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xfff7a37d generic_copy_file_range -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x250733fa s390_sha_final -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xc79a6a85 s390_sha_update -EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x824cc294 pnet_id_by_dev_port -EXPORT_SYMBOL_GPL crypto/af_alg 0x07cce6ac af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x0d81d7dd af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x1576a03b af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1830e851 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x269f7849 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x47cb9d84 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5485681f af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x624aa3d1 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x67ffa3aa af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x901a782a af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xb121bbf7 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xb2cf595c af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xb79236f4 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbcc43f04 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xc378e3c9 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xdde95092 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xf434183d af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xfac01682 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xa30d25a5 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6448ba15 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x282ba57b async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc9dd1d72 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x786f26a8 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd7d5f726 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0481ca65 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x655ae7cf async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6862f264 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa8c40d33 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xae3ee79f async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb1f9164f blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x6066183e cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9afb085d cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt -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/chacha_generic 0x2f58e924 crypto_chacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x7c5e8ac3 crypto_chacha12_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x8fe800fa crypto_chacha20_setkey -EXPORT_SYMBOL_GPL crypto/chacha_generic 0x96c10039 crypto_xchacha_crypt -EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init -EXPORT_SYMBOL_GPL crypto/cryptd 0x11155bae cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x2fcdbfbb cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x543bcfdd cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x5a9c9988 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x80403dbb cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x80ae2020 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x91d09308 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x946aa79d cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x967d9c13 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x98050ab1 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xc9459b2d cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xe3c5aee4 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xf65422f2 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ff0f680 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x28dd4721 crypto_finalize_ablkcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31cb07e8 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6b358b21 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x710138de crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x742d5604 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9f581c6e crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa9687a36 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2dd48d1 crypto_transfer_ablkcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3e36e67 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbd545a97 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd29ba363 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd950a113 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf83a8fd7 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2debe94a crypto_poly1305_init -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2f87bf50 crypto_poly1305_update -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey -EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8d7a4f2b crypto_poly1305_final -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6316a1aa serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x025a4725 crypto_sm4_set_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xafce1e63 crypto_sm4_encrypt -EXPORT_SYMBOL_GPL crypto/sm4_generic 0xf2644496 crypto_sm4_decrypt -EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xbd2a560c twofish_setkey -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x38a55f4e dev_dax_probe -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x2d590e65 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xbcb5a922 alt_pr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0046774f devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x172ab1ee fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x19b3e85d fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d0a59a1 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x41bce741 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x78217eec fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x785cdbbb fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8aeed36f fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x91157444 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc1bdba78 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd56e616b fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfadc8f2b fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfe2389db fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x8f25a80d bgpio_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3a02d363 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47d6655a drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc372c2b drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd119bd1b drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd245385c drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd96389cb drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1442eaa8 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3c65d8d9 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x41f0755c drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd0d40555 drm_gem_fb_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd6b10791 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x7088772e ttm_dma_unpopulate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x85cddd1b ttm_dma_populate -EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xbb4a0b7b ttm_dma_page_alloc_debugfs -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x155a1b88 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x41c1e7e5 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5ae02975 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6922fb69 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x81275444 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x88454a6f intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8bf783c9 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa7b45f8a intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc90ab13c intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x832a07a2 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x953ee1d4 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbdb66e11 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x17dab8ef stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x305d37cf stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x51eac6b3 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8e2c6cd0 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd15fa81d stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd4991635 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe1b0474f to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe7a778fc stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf786a182 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0b94ce93 i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x124b0d73 i2c_new_dummy -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1c7d8960 i2c_bus_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x25d03ff9 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x577760a8 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5c9e62a2 i2c_recover_bus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x696d5d60 i2c_new_probed_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7542c855 i2c_adapter_depth -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x790f6e49 i2c_for_each_dev -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8070d3c7 i2c_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9ee4fec5 i2c_adapter_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb3084b7c i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc1302c2c i2c_client_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xceba034d i2c_new_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd08c910e devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd9e26ca9 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xda9e265a i2c_get_device_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xdcf4cb88 i2c_new_client_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xddb52f6b i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe4f32dbe i2c_match_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe815a0d1 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xea7e2a42 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x67393d38 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8e48c309 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa9cc4048 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdcdedfeb i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x03f33368 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x093544b3 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1e9d9c41 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b8e68b4 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62038803 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x622d634d 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 0x69fe4aac dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6c41bc1a dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x99addefd dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa5899129 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc6f88d7b dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd156e50f dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd5a0cc81 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd9974b64 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 0xdc31c1fd dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf0b834ba dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfeacefc0 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 0x412b6257 dm_bufio_client_create -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-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x43b0fda4 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x796a703b dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb4f43a7e 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 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 0x34b634d6 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf9a1a1f3 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 0x1b68505a dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x81e2d9d3 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x90a4dd62 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9b615826 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd09ac60e 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 0xdf71bbdc 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/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 0x09cc81fa dm_btree_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0ae4d696 dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next -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 0x34d45c77 dm_btree_cursor_get_value -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 0x36a34e58 dm_array_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush -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 0x6af8a872 dm_array_info_init -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves -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 0x7485935a dm_btree_lookup -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key -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 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 0x885b0024 dm_array_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8c156b3e dm_block_manager_create -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 0x97263968 dm_bitset_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end -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 0x9e98460e dm_bitset_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa8d9df84 dm_tm_create_with_sm -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 0xaab0ef04 dm_bitset_cursor_skip -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 0xb500e95b dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init -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 0xcedfc878 dm_bitset_cursor_get_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd7016b22 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3b16444 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x835dd421 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8e3e3f4f st_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0095604a mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01276730 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x034cefcd mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03df42e1 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c31135 mlx4_fmr_unmap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04fc84c6 mlx4_fmr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05891558 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x083e15b9 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c49a9f3 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d50ec0a mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fad29d9 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11c6c906 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11ed3113 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13bdc27b mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x173ebafe mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce20730 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d2eea0e mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22862060 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25ad8a38 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26356a38 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27406f1a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a0de58f mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bdc39fe mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f31f6ea mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x311634f9 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35085397 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358f069a mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac1fb6d mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3af4d684 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4030d6d6 mlx4_fmr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413adeee mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f6e7b8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x426abf17 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429e6dad mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x440f76d3 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x447e0841 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b0614a1 mlx4_map_phys_fmr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b79375f mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b91b01b mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c06ca8a mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb26ee2 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f655ae5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x504b746c mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53201b5c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x565ca5a2 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57221bbb mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d37654f mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e0ff9bb mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f2b1f8e mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74377244 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x743826fa mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ffa3b7 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b83782 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e05165d mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ed073fb mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x821a3542 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ebed61 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c7cc76 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86ba99be mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x877d4ef4 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882760de mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bdc4376 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0f4c60 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x937f7a03 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93ed6c71 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96fc06da mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978b114d mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97901fef mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9827f897 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x987073a2 mlx4_fmr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99729604 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a7e6a35 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad44cef mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0c4c51 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d94d91b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e0692cb mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e27253f mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbf202b mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fefbeaa mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa04853d9 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1b040fe mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa27486d4 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4d13bc2 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6d7ce59 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f6f5f4 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa777b924 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8649256 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa873cc3a mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad7d4066 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf776e5c mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafd4ee2f mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb18a9f8d mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5f65957 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb92192a7 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba681232 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf6e8f87 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc21a0378 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22cc8e6 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b71834 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4481297 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc717b20f mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7b28ece mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc87137c3 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb5545ca mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7e1c01 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce76d76b mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xced77eb6 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2891567 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d22172 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd44d37a4 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda73849d mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe2cacf mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf33a8b mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd67b80b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2eb926c mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe300e409 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe57b826d mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89a2606 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8c45ee3 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe98dd36b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf116e8fd mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf656364e mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6de9fa5 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb574690 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc4427da mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd23ccd mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004068af mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x028933bc mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05ba9488 mlx5_core_alloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05e2536a mlx5_query_hca_vport_pkey -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 0x07b71757 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082dcffe mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a023ffa mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b6d20c8 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f544106 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fd3e289 mlx5_core_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10face36 mlx5_core_res_put -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137dbe08 mlx5_core_set_delay_drop -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x146ca860 mlx5_core_query_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162937c1 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184280b2 mlx5_core_create_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18819414 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19fbf846 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f14a382 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2b876a mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22516c9c mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2467fddf mlx5_core_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bdb9695 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d5375f2 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32a8c45b mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x342002cf mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x372266b6 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38759e6d mlx5_nic_vport_disable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x396b2859 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x415d6f1d mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x418701f8 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42553952 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4af3452d mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b0406ce mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d04b455 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de3ed48 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59eb8191 mlx5_core_dealloc_q_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6188ec mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6414b531 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x658661ec mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f266a76 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73866896 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75324536 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7711058d mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b07befe mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e61a2a3 mlx5_query_port_link_width_oper -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f17c334 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c4cbebe mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce8256d mlx5_core_dct_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8a14a0 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f9d5d8f mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ddd64d mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x934f455a mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x942c2819 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95240e6c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ea106d mlx5_core_res_hold -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d38e390 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e1d83cb mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e30d367 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa198e028 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa81ddfda mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab5e0149 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb27afda9 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22e50da mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4a5e5b7 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc59d41a6 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7656b62 mlx5_core_create_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b2be9a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e9c9e2 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb96633f mlx5_core_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2123868 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3e926e2 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91d487d mlx5_core_destroy_dct -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd94b7fa4 mlx5_core_xrcd_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd13125 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd3bfbd1 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded088cc mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded4b6e3 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26451d4 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e38975 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedd1c4d3 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06af2a0 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16c86f7 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf344a1a9 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51d98b4 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb0fb2b mlx5_core_destroy_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3711c2 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/geneve 0xed475166 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1bd843df ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x573acd09 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x59ad1667 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb0e59fcd ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdd020c86 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x632fc3a1 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x712de889 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb942f14b macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd612e755 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x0805a591 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3ace79b8 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ef62870 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e201680 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a93f4ea bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60be671c bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7631f38d bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84ee2c3b bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b1f8e13 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c9b110f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ab5db99 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8b85646 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf8ea2ff bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb93436b8 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbee562aa bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd74542f0 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdaf274c1 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf303fceb bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe0fa071 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff68f974 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x626307fa fixed_phy_unregister -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x65db393a fixed_phy_change_carrier -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x7a8a0d33 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xbfa654c8 fixed_phy_register -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xcb93542f fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x00765a89 devm_mdiobus_free -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x042db083 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x110862a2 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18007c8a __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1ea23323 phy_modify_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1f4f80df phy_save_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2051564b phy_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x20e6c513 gen10g_config_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x23c63602 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x29818ab3 phy_driver_is_genphy -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2a0a40fa mdio_bus_init -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2c34c9e9 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2dcf8414 genphy_c45_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2ebe2b9d phy_basic_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4437de01 phy_basic_t1_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x463c30e1 phy_select_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4648b2aa phy_gbit_fibre_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x48f7cdf5 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4f47e8b5 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x591766db genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5d1ae23c __phy_modify -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5fc5cc8c phy_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x6fb66605 devm_mdiobus_alloc_size -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x713cb4ba phy_gbit_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x748c085d phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x78c591de genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x83006455 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x85a6e11d phy_restore_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8a8eb003 __phy_modify_mmd -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x915e6ae5 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x92c71df6 genphy_c45_read_link -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x97adac9a __phy_modify_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa2f812f9 phy_10gbit_fec_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa39f6999 phy_10gbit_full_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb697d2ba genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb771bd1c phy_start_machine -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb84eea4a phy_10gbit_fec_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbb61ec1b phy_modify_mmd_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc3255142 phy_10gbit_features -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xcc934554 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdc62a688 phy_modify -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdf39a228 phy_modify_mmd -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4c9de64 phy_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe8f62c96 genphy_c45_read_pma -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf49eecea genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL drivers/net/tap 0x14be2e3e tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x1720e906 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x2f1398e1 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x432959ec tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa3299f83 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbb5ccf04 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xbfea51d4 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xcbd2c449 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xfa0a92b6 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x387ca223 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7f35b7b5 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb833b160 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd38fc27c vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04a1afae nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06653d93 nvme_init_identify -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21808369 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22c88932 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35474f6a nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x471a5e33 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54d5b5ed nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5800a679 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b92af43 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6cc5d4bc nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x708c6287 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7879f7e0 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7bee59f9 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x804b67a9 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82917d5a nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x975c8e74 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99b5deb8 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99f06459 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d07ad1a nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e6ae0b0 nvme_reset_ctrl_sync -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ee157bd nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa8bd4109 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae1a56f1 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb011d0da nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb37b6169 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb3cb032 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc51a451 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc08601c6 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1cdf365 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2adeb48 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4a4c3a1 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7b14ef3 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbec9954 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc992c13 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefc4a825 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf32b980e nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf46d0eb8 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb139540 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x094216b8 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x20be5239 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x25e344fb nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x44f1090f nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4ee14758 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d45478d __nvmf_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8d42574c nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad78f9fd nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc8156e5 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc6514291 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe56fe78f nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe8721e00 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf82ffca6 nvmf_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfce2b62d nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x159966af nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1fcd49ed nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x41e2f42a nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x455dad89 nvmet_req_execute -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x463279e8 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x71940766 nvmet_req_free_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x848e3a9c nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x93539418 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa052eb8d nvmet_req_alloc_sgl -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb26b4020 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdd9ea9de nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x81d67f83 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xa8e251d1 switchtec_class -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0180e5b4 dasd_generic_space_exhaust -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x03dd509b dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x06885e56 dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x27a0492b dasd_generic_uc_handler -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3120668f dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3c8fc322 dasd_generic_free_discipline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x53028ac9 dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x68d4e342 dasd_generic_shutdown -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6b36e58e dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7a2f1fea dasd_put_device_wake -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8112fe41 dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xaadf1e2d dasd_alloc_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb1ce8b47 dasd_generic_space_avail -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc345c270 dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc66d51bb dasd_generic_handle_state_change -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcc8b11c3 dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcf92fcca dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd174b4b5 dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd6531680 dasd_generic_pm_freeze -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd974a69d dasd_generic_set_online -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdf442573 dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe6e187f1 dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeaa195bc dasd_generic_restore_device -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xed5ef2a8 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf64c5712 dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfd5dcfc6 dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/cio/ccwgroup 0x8302b3cd get_ccwgroupdev_by_busid -EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1ba2c00a qdio_shutdown -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1bdbe0f3 qdio_establish -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x39dabd0b do_QDIO -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x40809794 qdio_release_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4be4d8e3 qdio_pnso_brinfo -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4cdcfc91 qdio_get_ssqd_desc -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x561e0eac qdio_inspect_queue -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x65c1ef74 qdio_free -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x82e27f2c qdio_allocate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x86bfc120 qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa82bb4d7 qdio_alloc_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xadba96bc qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xe53f566a qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0139cfae qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x15078026 qeth_init_qdio_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x15798fd2 qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x19149dad qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1cf0e995 qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1dc0ffa3 qeth_clear_working_pool_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x24535cb6 qeth_put_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x28d862d3 qeth_device_attr_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2d8d50ef qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2f3225e3 qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x305541e9 qeth_device_blkt_group -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3c74d4a7 qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x400232c1 qeth_realloc_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x40b4c3aa qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4327a7d2 qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4a39352e qeth_generic_devtype -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x50f4ef1e qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x536d35cf qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x552f7438 qeth_core_hardsetup_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5c44e5a3 qeth_clear_ipacmd_list -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x61701d27 qeth_set_access_ctrl_online -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6354efe0 qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67c9f929 qeth_notify_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6962dde4 qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6a108744 qeth_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6ba7088c qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x76624cd5 qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d8d2d48 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7dad6e4b qeth_do_run_thread -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7db6f873 qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7eeb3f17 qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cef72c6 qeth_clear_thread_running_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8da4df0a qeth_core_get_next_skb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x91eb0a8b qeth_print_status_message -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9eb50726 qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa09bb826 qeth_stop_channel -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa615d442 qeth_get_card_by_busid -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa6c6bf87 qeth_trace_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb928521c qeth_count_elements -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xba4a673e qeth_clear_thread_start_bit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbdafa200 qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbe0363f3 qeth_prepare_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc4f2e396 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc5576962 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc9492790 qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcaa27e02 qeth_schedule_recovery -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcc55e6ee qeth_hw_trap -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd4247c5f qeth_drain_output_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe5ec75c9 qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8b4b294 qeth_qdio_clear_card -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xecaa0052 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf41bb8ca qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfc6a978d qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfe258607 qeth_do_send_packet -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xd29b2b4d qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x535ff175 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16999874 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39ccca4a fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x67eb82da fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f328908 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9397c966 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa3c4ec3a fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7e2063a fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae68586f fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcd39f7af fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0f3e564 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7baeb9f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdace789f fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0a2c68b fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea4c0df4 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3fb4775 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf6758441 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0f8973f8 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x55697230 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x729dd700 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x835e4211 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8bc1806a iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb58979df iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfbc0f64c iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x22bbc44b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0965f683 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cd823b4 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1718834e iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24cf736a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36243c2b iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x383307ea iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41b3d941 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42598936 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46f38720 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a5efdd8 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fd08fb1 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fd479df iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66ac520f iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a8d88ad iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6aec34a4 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e08d528 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fec3900 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x772f4399 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a1ca85e iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x806b6229 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80f458b9 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f7bc0bf iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ff932a0 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa333033d iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabf1bad5 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2771295 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3f102e5 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb45aa153 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5edf68a iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb943fdae iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb9ffd93 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc04e9922 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc490a9ae iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7b801af iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbf91c5e iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9d937e3 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0e79612 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeee4d7e2 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefaa52cf iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa3c9d63 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfafd4f9a iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc70b592 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15a759f6 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x23a24101 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x23c025cd iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3393bfb4 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3db48460 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56b50dca iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64d13274 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7af1a651 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e460f9b iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9eea5a67 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa977c099 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb15e5270 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb45c7568 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcfb1cb20 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4277ccf iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe8264035 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf11dc0ed iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x022e212e sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11d46b7c sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11e0fe87 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12aade43 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2de2d157 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35f1988a sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37e11586 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c9518ff sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x424ae3a0 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x491d8a7c sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5678fc12 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5bc6279d sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c70d1d2 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7246d3be sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x819e1dd0 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa135887a sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xadc3fba1 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcb2ca15 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc78547f2 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7d06e40 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5871e47 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb7e1cf9 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7ed02e1 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x012093e5 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0678a92f iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0cabb25c iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x142965ad iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x177f8ef5 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19556ac3 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a2dc4dc iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20ec5137 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32b6af62 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37d112be iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ab292f0 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4666148e iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48f222d8 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fae2461 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58c24fe1 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a4e93eb iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d0ffb6c iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65e77b4a iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6667a651 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a549235 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7aafbed6 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d83bd9a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8237332d iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83ebd169 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9324b34c iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d392381 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa137d1a2 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa266b2b9 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0c42055 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1c6aeef iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbab1e4a4 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8ead396 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd60defd1 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdec0cedd iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe16138c9 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef39ad77 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7065572 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf76105e9 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe0d4c5b iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0553e439 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1ff5d50f sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd7a538fd sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeacb2ae0 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 0xa607c91e spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2de1a6f2 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x449b933e srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x64578b25 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x74f8e7d7 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x843789a7 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9e910bdd srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x07ff8788 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2903e829 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x46ac4fbc siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6ce16707 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a3949a1 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcd0d6cb0 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x034c0550 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c840605 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x13fe525a slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1e4d3d36 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f610d59 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x599f6724 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5cf28177 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67b9bab8 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6a0283d8 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8225a3aa slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8672f967 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8776376e slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e51ccfe slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e597d27 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x91639944 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f55c989 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1d7f790 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1f6f3ca slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb1505d29 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb8936fa2 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc40a40a5 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd01f7817 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xda9ce142 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xddd7fe18 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe5c3b9e6 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf18fc9c0 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x767ab592 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xc5b7cc33 uart_get_rs485_mode -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xec7d71b7 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xfe17e7d1 uart_handle_cts_change -EXPORT_SYMBOL_GPL drivers/uio/uio 0x096a48c0 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x84548c21 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x8fd6813d uio_event_notify -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x0bebf9b5 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x018760fa vfio_add_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3ef2d5a7 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6ed133d3 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78d4dd3c vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xadff89ac vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb4b56ebd vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc12bc2c0 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc977a75b vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd03d4b96 vfio_del_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x614a84af vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd17d92ba vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x042fe933 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x043e628e vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09a6ebc3 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x141f6b97 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a8b5626 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x297b5c6a vhost_work_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2afc8e66 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x333b113b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37758ad5 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cb12b72 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4982f7e4 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b336df7 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c0b0ccb vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ff6f455 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x646b1949 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6586a10f vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x672233b4 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68f4bd89 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f3d4254 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cb7c0dc vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e6ba3d7 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91ae2f4f vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x931c3193 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9541d21e vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8968299 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae9c921b vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb07f6109 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1198d52 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6f4a34e vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8b4fc49 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd5e59bd vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd252f68a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd507487f vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe145072f vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe81d0531 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe95239c4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefa41ce7 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1205344 vhost_log_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7e52c65a fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xaef9b796 fb_sys_read -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8339f565 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf67b53bf dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf7861c6e dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0851974a nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ab7de90 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x72aa2067 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x79ec2534 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc0f8ee97 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe0e4306c nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe8ec26d1 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x031f464a nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0490c0d7 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05bedb3e nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x065e87b8 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06642045 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07688d78 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x097f341c put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd789a0 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d1ad405 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x101766f6 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10eab22e nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1552f8b1 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f28d241 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b40ea0 nfs_open -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 0x26c6490d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26cd7b39 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2863db89 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28af7524 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b24488d nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b4de137 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c4e6ebb nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb41c1c nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2faa53e7 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31fc199d nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x343f11ae nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x361ac597 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365578f3 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a46cedd nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f7f401a get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fdef2ef nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b9566d nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44378bdb nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4487fc39 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x465079ad nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46bd589c nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a03ec5d nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a838b60 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b3f0e03 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b6e451f nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e4d16f4 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50b0bd34 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5183863e nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51968cb6 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51bffe06 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x521008ba nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54d1beb6 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54d8823a nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af16dc6 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7d69e3 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ba637b4 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dc04e21 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fd37a3f nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61319bb3 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x620928bd nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b828bf nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64bebda9 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6554afdf nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66d6174f nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6975e5d3 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6981c3ea nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b22bafb nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df2bf8a nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72858e36 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x751555c2 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75a91120 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762dabc6 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x764a2246 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x770fe099 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81dfcbf2 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83dc2fd7 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8553829d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8605ee93 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x879e7337 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87d90c10 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e41eb37 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b3d010 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91423c9e nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x950b99f6 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9658bd98 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f0e264 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98958971 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99325a1d nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aea94c8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9caa2b2d nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cc717a9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20ea3a5 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa296592b nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34b7a5e nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ae8312 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a3bc99 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91b66df nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab68c4ff nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac5593f2 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb22094ba nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33230e7 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45ba81c nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb515aa2f nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5acd70f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb0f173d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd3778c nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd1222db nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbddbc4f7 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe64bcae nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf44c86f nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31c9f41 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31e0fc9 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7cdf8ae nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc97b82ff nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca080386 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcea013b2 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03e4972 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd068166a nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c8f6ed nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd711a81d nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda4af789 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca2136f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeb1b3f4 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf2a7a6a nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf55d170 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe34184bb nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3601799 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe36cb9cb nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe88d8e60 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe98b1732 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec4cf601 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeca89e6 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0050ab7 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ee4655 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5b23c47 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb232980 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf810dffd nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02d03687 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd7492f pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c1661c1 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a5a7bb pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c8d90e3 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21c61fd7 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24a2ff05 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x252c3697 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29f7bdc3 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e05f092 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f978411 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38f50512 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x463cd5f0 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c70653d pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dfe7a90 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53b8afda nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54805a92 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc81095 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65dca4ba nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e87ae72 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e991d53 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x754e8452 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x764378cd nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b7323ee pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c430e7a pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d71e75a nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ee4ead pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8726f01d pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8952563c nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93befe7e nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a294659 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bd41faf pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3798f15 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4481183 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6b363b0 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa72d3bf1 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa90eb7c7 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa90f69e7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf1d849c pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb530f660 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbea6b857 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc15524c4 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8c1dd8c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8f52a79 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd01b153 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd153e79 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3e718e5 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd63cb82b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaf508af pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb9d12b5 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd3546f5 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf3cc349 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3a922c4 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6bfeb6b pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9c86bfd nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb9a1808 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef704c4f pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf36ed86e pnfs_generic_write_commit_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 0xf9f94b23 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2d85dfe5 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4042d5b2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7507004b locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x51195f60 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6a18e6ea nfsacl_encode -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11e9baa8 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x20fe52a3 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2a3374e1 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 0x696fa2fa o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6ed85d18 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x817462f2 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfbeb06e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd3ff94bf o2nm_node_put -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/dlm/ocfs2_dlm 0x2ae2a20e dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x54c42fd4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7488799d dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x829b2780 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd19cb04d 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 0xf438dded 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 0x2d824694 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3b94f6a0 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x58ba5b48 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 0xf2b68715 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq -EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures -EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats -EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online -EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline -EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb -EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random -EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init -EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop -EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end -EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin -EXPORT_SYMBOL_GPL kernel/torture 0x75cdf2ad torture_shuffle_task_register -EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init -EXPORT_SYMBOL_GPL kernel/torture 0x92dbc207 _torture_stop_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xa419e182 _torture_create_kthread -EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin -EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init -EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init -EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait -EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end -EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 -EXPORT_SYMBOL_GPL lib/crc64 0x1b0f70f3 crc64_be -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key -EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4817b55f notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb88ae622 notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov -EXPORT_SYMBOL_GPL net/802/garp 0x1db2bbc4 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x50c24458 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x730b69d8 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x8da368d3 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x93c48e59 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xe94879c2 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4a19e66f mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x61067b3b mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xc2180222 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xc9a63591 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd18d9ae9 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xd3f382ed mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x38820954 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x616d45a3 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x16b74441 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xd6347845 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b4ea8e2 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0ec9b963 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x26e5bf08 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x728c3fde br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7f048ee0 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89324063 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9bdb3300 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3f500d5 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb44e2cfa br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb90339e5 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbeb55cb2 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc21160a7 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb7824a4 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6d160a9 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xee6c7504 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf21be964 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf624107b br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8b64164 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/core/failover 0x2fdce3e5 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x82d2170b failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xd803a255 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02b42608 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x096a9814 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b1a0069 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12d7586c dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x25c6a76a dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ae9945c dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cba9e1a dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x535c843c dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58537fe2 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5928e5a3 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a35f40d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c5c5c7a dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c7c1a0d dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6da43f7e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ea0c91d dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x72cee9a9 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74203431 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x77f73d74 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cdec9fb dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e01085c dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e6d75f9 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x806bad06 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c654fed dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92b5d82d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b46171e compat_dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa15fab52 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb78ee43e dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc175e8c6 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xceb04a68 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2ca6442 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd31a6c29 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7e3c756 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed6007e0 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf863fbfd dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf89d5f4d compat_dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaaee897 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x171d31ce dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1a36b3c4 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x51398da9 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcb60a66e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd7bd400f dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdab54d4d dccp_v4_conn_request -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 0xbf661439 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xc435b633 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x3d27b1f1 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6b9c97ad esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd63a4582 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x6889ede0 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xfc975073 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2568099b inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x272799ae inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e9b0d15 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x606f838b inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6914f059 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x85ca90f2 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x895134fe inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8d3e7a5e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb4b9ba05 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x44546486 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x175ea488 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c1d490e ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33a45512 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33eed66c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c16d359 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x412f16ab ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5359a251 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x605310ed ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82c96d15 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b4603d3 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f9a1aa2 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9629395a __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96362947 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9acdd850 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd189423 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2eecdda ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x058ee4dc arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xaaeff6a2 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1ce06a58 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x70916e1e nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3b3d7066 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5c008d85 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x78b998fe nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa3aa3c56 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe683ed95 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc22f917c nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6ed16fac nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x91ca9f3b nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xbfc53e5a nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xc585ed60 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xc9e14f14 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5ee8cb79 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x75389716 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7f9a2265 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x89c85ac8 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8c0f9d8d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1779a3df setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3670215e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x517e0471 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x54b80167 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x58cf59fa udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8d713d84 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xabcfb840 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdacfc45b udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x96ee1954 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa11741ea esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe5f4a3fe esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x611d9545 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcaba3c6f ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xee33943f ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xae6c9c13 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe140b4e6 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x52cf7fc0 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x529c4250 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x753be3ff nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe2499b44 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0c4b2bef nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x354174c3 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa8fb7462 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xae298629 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf3998c8 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x45483015 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1c537c34 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb36e02ae nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe80e1cb5 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x159bb4e1 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x537130a7 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x015a59cd l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e860cfc l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b4bf89e l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3fcc4ce4 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e7e4eb9 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d3020bd l2tp_session_free -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b398802 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76b7a463 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e8c7c7e l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaaa620ec l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3041c7e l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc475ffbd l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc9f2ef1d l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcabcff17 __l2tp_session_unhash -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda88f701 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1367b6f l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe9239f36 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8c2f8517 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1bb1902c mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73656eb6 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc9ab736a nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd737c0fb mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf71de4fd mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11b8de39 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a8655ae ip_set_get_ip_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b7447a7 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x623ff21a ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x654e470e ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6abb1c42 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73134f22 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x91379765 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e5b5ea2 ip_set_nfnl_put -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 0xa7e97abd ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2685478 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9e67983 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca7d9634 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf63bbd4 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1d90aa1 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee6bf563 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf53759f0 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfff1ccea ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1f3cbdce ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x93d1f2a6 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb657d4d6 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe44debea register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x098dacdf nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x12e04260 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x37fe873a nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3f85489c nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4af54be0 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x709bd315 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7767ca5c nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0871a421 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d2a94b4 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12093979 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15ed6b81 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1af55d09 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e380d99 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f601691 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20df8127 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26994a85 nf_ct_iterate_destroy -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 0x2adbe24b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b448734 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e542369 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f4de927 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30285646 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3361b85d nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33d5211c nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34136ce3 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35b0ba32 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3952a856 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39bff3ff nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bdd874e nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c4dcec4 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d258b75 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4156fa3f nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42e0055a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x432a7d82 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43642aa7 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x498794b3 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cde6293 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d84d658 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53cb2b93 nf_ct_expect_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5af5e6e9 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b2f50e9 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d1208f1 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e5db21d nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60d3e7c3 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677de00b nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6efbe370 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7114a078 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75022751 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76fdfaed nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x793e568f __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b683947 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dda9fdb nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e07e10f nf_ct_expect_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ec47d92 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fabd8d0 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80051077 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b5805b nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x891009ae nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ada496d nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9042e362 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92235fec nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93bcb97b nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x945404e7 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99530ad6 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9970287d __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ab02a62 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b1608b9 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa12b043b nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa23f0c37 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa26eba24 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac43ab39 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb182ed38 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2059395 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb55f952f nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb93a2d66 __nf_conntrack_confirm -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 0xc4477120 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc55b7113 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc1a4358 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd35c7c5a nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd53cac39 nf_conntrack_set_hashsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd67344e9 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6d59a99 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd84029c9 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf386330 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1b3ec5f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1eeb1da nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5676541 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee0b7a31 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf95bf3d5 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbfd2c74 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc1bba3a nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffdb51d9 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3fed97cd nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xab3a3e33 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x54f49660 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x12f1844d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x24b4c25e nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x286fa503 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66e2cabe set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c17392e nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d2ee46a set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbee3b0fc nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbfd10ed4 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd4d0b678 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe4d45378 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf779429b nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x03f36ef9 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9b78ab71 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd745be8f nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf7dcee87 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x169d57ef ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1b489767 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1e06deb3 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x85290fb2 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb7f04641 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc267ec5b ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe1013fe8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xcba1a079 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbcef8c5a nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x431a09b1 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8723a084 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8f7aab41 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x03a58dcc nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1b09db37 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27fd15c9 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4797ab5b flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6305bbd8 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72cb0e7a nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9fa60a6 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xab22808f nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd4568a1c nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdc0b08c1 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeaf357b5 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf8ef8e53 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0d6cf011 nf_log_dump_tcp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x100256dc nf_log_dump_udp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6436a515 nf_log_dump_packet_common -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x66e9555f nf_log_dump_sk_uid_gid -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6fc9fd88 nf_log_l2packet -EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9718079e nf_log_dump_vlan -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00284d48 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c933fd4 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2503ea3e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a204ecb nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46b54c8b nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x50e6a8d1 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5899f36a nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71c5bdf2 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x844a716d nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa6d37e1d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb016458d nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce0de7d7 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcec557b6 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd18aa52b nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd8331a89 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea844997 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x21065dee nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x21984fbb synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x27b81eba synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3b9cec6a ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5a65b6b6 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6fbe4c27 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x72d2ffb9 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fc4b141 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xae206437 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb36757e5 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd5438f6f nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09d98492 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x191549c0 nft_unregister_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19f7c80c nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c843450 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25af2491 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x278308f3 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a78a10f nft_validate_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2cde7204 nft_unregister_expr -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 0x47e876e6 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x552840be nft_register_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5770f633 nft_set_gc_batch_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5965d2e5 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e42bcb5 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61519dcf nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7316ddeb nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fa76511 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fcb51a9 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x913ad812 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9340020f __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b098560 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab8f917c nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xacd53d8e nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0411963 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0978d82 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb55ae45d nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcace819 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbdc4eeb1 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbdc87e90 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc244545d nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc860aa81 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd24bb6f2 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe19844bd nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6675c44 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe70557f5 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea20dc3b nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf16c95a5 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9e59bf2 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfcf0d3e9 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x12ba0f11 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x34889e05 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7cdce6e8 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9832c2ee nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa5a5a7f7 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa709bd8e nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2bce3829 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2f524f0d nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9cf96eb7 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x13c8bd19 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb9ecccd8 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x15a859eb nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2e57d3e3 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7db833f8 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8bce1a9b nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7b965e76 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x897f9ff0 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd303940b nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03c82150 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fed72b1 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2759a92b xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29222d04 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30966d46 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53c32131 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x590b949b xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x61ebc50b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62f26fad xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x65a8c9fb xt_compat_match_from_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 0x84a140e6 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x86f33e4f xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97406c27 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9fc977e7 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabdfb6e0 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb8117ad3 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb35cf21 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf604aa8 xt_find_table_lock -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 0xe5bc7430 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe77a5feb xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf855f6a5 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8db21b6d xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc52edfad xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nsh/nsh 0x33ee4b10 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x964b5a4e nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x161fdc6f ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x37fc7015 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x77fa7f1a __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa999dc0e ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab3db813 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf277bae0 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x09241b5e psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x325cfc70 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x3a229d0c psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x7bca14a7 psample_sample_packet -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x09f67223 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x0ea6c553 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1bf4f844 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x224f92e1 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x261816da rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2a6775ef rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2b5608d2 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x329c74a9 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3ce319ec rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x47f1d4a9 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x56731669 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x57b8290a 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 0x5dbe01d5 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6219da6e rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x627a3c63 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x6c11c4a1 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x71941f65 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x808aec71 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x9d3193f1 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x9d72038b rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xa246b917 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa5f29a70 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xaee132ed rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xbb6f3d06 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc33a782e rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe3d8638d rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xeadbc4e6 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf1d00504 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xf99bec84 rds_conn_create -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x32301c2c taprio_offload_get -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x592b2140 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0522d003 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x893f3575 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf340a22b sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xfea6714f sctp_for_each_transport -EXPORT_SYMBOL_GPL net/smc/smc 0x14c12b03 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x16a17a50 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x245da7bd smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x32e93562 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3d91eb29 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x6ce9ea03 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x815fbeab smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x9e60456d smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xa7da97c5 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xab0b5320 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1563418e 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 0x77a45529 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcae42e62 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf3e066d7 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0053c425 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x007eb5eb svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0182d61f xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f5892d rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0235989b rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0405848d xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04abf996 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04ac5bce svc_seq_show -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 0x07721039 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07cb2cb6 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b2e17ed auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b5a39cf svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d06c8c2 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdb0070 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c5f108 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d85d95 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11db38b2 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e73759 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b7e439 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168d96a2 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199a2c9e svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a081dab rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d43f478 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eff6169 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f0fb676 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f18cd0b rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208d0fc2 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211769c9 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21503369 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2192bd16 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222d25d1 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2637212d _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2687df7e rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26997e1d rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26a76e64 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d2746d xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f08827 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f741a7 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b99116 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a026414 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a35cfae rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c9bf7ab svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca8086e svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33ee9569 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3442db89 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3478bc83 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x369fe6fb rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bd479f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac145cd xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1f7d83 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b638ac5 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b7c254d rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce883f6 svc_return_autherr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cee4821 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef5f983 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f8a5083 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40957f4d xdr_buf_read_mic -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41496eff svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x420261d5 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ced916 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x445ef81c svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4521d45c rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452c9ee6 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46eb7adf svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474bc0bf rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4942c6a0 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5ab99a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b6b0fad xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc753aa rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcd1a1c rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f31d639 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50158540 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f6d365 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ea1f4e rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ae2ed4 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a292af rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57aad93a xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x581c64b4 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59dc1087 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bda73fa xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ced0bba svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0160cb xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e407209 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6007bd51 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d20def xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61eff235 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x621a0c7e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624929c9 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6271cd18 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f932f5 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666e321a rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a40c1d sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68426d52 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a863152 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aef4c17 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b2cd4da xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d19e893 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6da511f2 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e8c91d6 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fe328dc xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72089304 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72767358 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f49059 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74578591 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7496656b xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768b1f9a xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7701a2f0 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77fac088 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7970e041 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a572e45 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be3d00c xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c252379 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c68280d rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d38d31b rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f3eaa7f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7088b5 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fe8495d svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f1830f rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e362f0 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8257e526 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82db4cc3 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fa3de6 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83130d90 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x848239a6 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859738fa cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85be17e3 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866fd9e8 svc_encode_read_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a0029c rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88c3affb rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88d94fce put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8953e64f xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1b913d rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b648694 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c185237 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d4c6fc7 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dbcc434 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9040bf65 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a80ae7 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x912496dc xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91d05f87 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9337d84e rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94db42ae rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96bc6b26 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976e88fa svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988cbf7f xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990369a0 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abb838f xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd5d6cd rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dfd80c9 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0ba614 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f751898 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09ee47f csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f694f2 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27036bf svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43117d2 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa653018a rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99673ce rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa65d96a rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba28a37 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac71cec5 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1a09df svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc1d533 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ab177e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3bb5105 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54e6c12 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f16ad6 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb709ef19 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb711780b rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c8c238 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e39305 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba0e856 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde07f6a rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe318352 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe44d174 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecbf6c5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf46e380 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf8a547d rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2cbf57f rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc49d0996 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ccc135 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83184b3 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca227f83 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6181d9 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec858bc rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcefd4f01 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1e442e sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf276845 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0898305 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1441b0f xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1708e63 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd17d3e07 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1992690 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd317fc3a svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a9910f rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd853b1f3 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdced9925 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddaee031 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdede56a4 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf586c50 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf69eb2a xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f47ead svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5823b83 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e560ea cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6a7a769 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe796c8d5 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81d0724 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe878b423 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8fb8f69 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec723161 xprt_get -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 0xeff83b38 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0512f8e bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05ac261 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b5435c svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c5dcc0 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2148b80 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf422b5ff xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5557885 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ba5fa7 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf945154d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fc1333 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa566ad2 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbb5fcee rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd287cef rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe5f97b2 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea911cc sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff783a6a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb7edd1 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffa5d8c xdr_commit_encode -EXPORT_SYMBOL_GPL net/tls/tls 0x29561404 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x32e56dc6 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 0x060330d4 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15947a0f virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a8f3970 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1abe6cc4 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39d87f23 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x440d6b46 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5bcc2cb1 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x614634ab virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x678ecd2a virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69dbe1cd virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73451d7e virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a7d2a7e virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x924ecb00 virtio_transport_get_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93c31899 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9498b11e virtio_transport_set_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cbcbf17 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f36107f virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ff47d25 virtio_transport_get_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa519f6d1 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5f762f5 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa881cc82 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8d37635 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab02cae3 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae689bdf virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafc1e2c8 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb39ea35c virtio_transport_stream_is_active -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 0xc0354343 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc672f9fd virtio_transport_set_max_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc94a31c2 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd96dfff9 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9754271 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda6e1676 virtio_transport_set_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde377df9 virtio_transport_get_min_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe124e66a virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec6df944 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xedc128c0 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e5583bb vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x174b60d2 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20c45747 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21210525 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26f8ebb6 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27dde4f4 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36c8dabf vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50e6ae65 __vsock_create -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x548c8eea vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5699f4a1 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x572fe0b3 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x808e2f54 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x839a7baf vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x88e45f73 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8bf5c0b8 __vsock_core_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5eb8530 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad1750d2 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0b64b7b vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb64d00f4 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate -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 0x0933248c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7bcd8a67 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa495da0f ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe714b0cf ipcomp_input -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 0x00269d26 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x0038f3f2 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x003eebab fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x003ff214 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x004785b8 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0055968a nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x005ad944 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x0082b411 gmap_shadow_pgt -EXPORT_SYMBOL_GPL vmlinux 0x009afaaa fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x00cae5db scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x00d75a1e __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00e9bce7 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x00fcf5a8 gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x016dabe4 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x01776701 md_run -EXPORT_SYMBOL_GPL vmlinux 0x01916f6e tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x019a9eb1 __flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01b55afe devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x01c8a500 cio_start -EXPORT_SYMBOL_GPL vmlinux 0x01eb0da8 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x01efc978 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x01f88377 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x02094874 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x020b2e52 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x02191fde __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x027a79d9 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x029d67c5 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x02f20061 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x02ff285b fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x03365fac device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x033bf53b switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034c9915 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0358b438 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x035daf50 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x037c7527 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x037cb47a trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x0391bf99 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039573a4 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x0396937d perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x0397cf39 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x039f85c9 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d1936d pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x03fc26e9 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x03fdf45f vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040cd935 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x041e037d get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x044df961 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x04561899 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x045ce33b find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x0472eecc unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0x04797c17 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x047c79f4 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x04863fce __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x0494a5d2 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x04a5e5b6 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c280ce transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c91cdf strp_done -EXPORT_SYMBOL_GPL vmlinux 0x04d97164 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x04eaaf6d xdp_attachment_flags_ok -EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052f1453 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0530c280 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x053f1e19 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05673b87 chsc_sadc -EXPORT_SYMBOL_GPL vmlinux 0x0569cfef crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0x05a07dbd virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x05acda1f gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x05dfb095 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x06174b9c debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x0620f84f cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x0621da16 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065f06b9 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x06744978 __online_page_free -EXPORT_SYMBOL_GPL vmlinux 0x0686dc7d devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x069698c4 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x06a89a8e udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x06c44d52 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x06cd6899 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x06dd822e fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x06f9ebaa vfs_readf -EXPORT_SYMBOL_GPL vmlinux 0x0702d37e devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072eba73 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x073411fc pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x074b88f9 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0750952b blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x077db30b tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x0797d4bc tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x07dd0ce9 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x07e9de05 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x07fd0657 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08039f7c gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0814c403 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x081f3d3a key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x0825ebe7 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x0832ae77 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x083b73b7 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0844b554 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x086fbe5f __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x08798dd4 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x08971328 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec -EXPORT_SYMBOL_GPL vmlinux 0x08bd81b2 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x08c0f19e sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x08c489ce is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x08ef532a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x09052822 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09421c48 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x095260c5 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x095732b2 fuse_kill_sb_anon -EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x0970ec1b tpm_seal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x097102c6 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x097eb8d5 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x099179c5 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x099f311f blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x09b007c7 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c0cc06 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x09de4daf fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x0a5750d3 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x0a599d7d kvm_arch_crypto_set_masks -EXPORT_SYMBOL_GPL vmlinux 0x0a64c7b7 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a7eb1c5 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x0a8897d6 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x0a8e52a0 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0a9daa72 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0aa18423 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x0ade81b6 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x0af5e83d tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b2654ff pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b52a8e4 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x0b5f0a54 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0b68d791 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x0b754288 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x0b86a51d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b8a9dac cio_halt -EXPORT_SYMBOL_GPL vmlinux 0x0b9322f5 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x0ba2d6ec nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max -EXPORT_SYMBOL_GPL vmlinux 0x0bfe498b scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0c191b16 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c368f52 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x0c3eda1f debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x0c41aab6 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x0c45e54d fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x0ca6265b vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x0cc306d3 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x0ccb9906 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x0cd6c3b6 gmap_shadow -EXPORT_SYMBOL_GPL vmlinux 0x0cef3501 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x0cf4fce6 cio_commit_config -EXPORT_SYMBOL_GPL vmlinux 0x0cf51737 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x0d3b85e2 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d550d73 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x0d58edcc fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x0d6834bc bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0d8c6935 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x0d9033bc fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x0da441f5 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x0dafe108 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dec37f0 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x0dfee71e fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x0e03be80 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0e212f25 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x0e24a752 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x0e48371c dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x0e4d53bf devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e806cbf yield_to -EXPORT_SYMBOL_GPL vmlinux 0x0e87f776 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x0e8ef3eb fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x0e9c69df __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ea89208 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x0ea9662f bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0eadb2f1 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0eb082b3 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x0eb53fad scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x0ed6095b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ee3aef9 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1e69ad klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x0f2c5567 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x0f2dfae7 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x0f3b0754 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x0f3ca41c devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x0f812799 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x0f8604dd crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x0f94a217 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f9653d0 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x0f9a8af7 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x0fcc6732 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0fe7b47a vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1007a65a vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10262fe8 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free -EXPORT_SYMBOL_GPL vmlinux 0x1068b3e6 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x108a5416 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x10c84819 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x10d541e2 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x11126fc9 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x1162291b vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x1173767b strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x1186f23d scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x11945a61 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x11cab892 appldata_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x11d7355e css_sched_sch_todo -EXPORT_SYMBOL_GPL vmlinux 0x11ddd85a crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x11de367f devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x11e91382 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x11f0de98 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x1211b25f platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x123fcf06 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x12662f62 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x1266dceb iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x12789314 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x12939bfe __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x12b049ef shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x12c0e517 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x12d4695d add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0x12e5ef46 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x13007141 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x130585e9 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x13182f43 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13308ef2 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x13393e6a xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1353e839 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x13793cb4 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13924d20 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x1392dae4 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x139349e6 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1393ebdf lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x13b78aab pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x13de3eff sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f04cd4 css_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x140dc57d proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x1414a523 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x14192a9a __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1449fff6 sbitmap_any_bit_clear -EXPORT_SYMBOL_GPL vmlinux 0x144ff1b1 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1458f8bc shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x14739782 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x14a39481 __gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x14b0e2d9 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x14dcf805 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x14f3dfbe class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x14f9012a scm_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x150729df __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x15138541 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x1536e596 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154ebd48 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155ab9ae bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x1560844b debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x15808c60 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x158d80dd attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x159f47b5 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x15ae2a72 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x15f9d8e9 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x160977af dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x1632899c chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x1656deb1 device_create -EXPORT_SYMBOL_GPL vmlinux 0x166b9540 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x169b0e3e blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store -EXPORT_SYMBOL_GPL vmlinux 0x16bfb039 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16ec7dbd percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x17049749 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x1722aba2 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17976640 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online -EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x17b06d63 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x17b116bf sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x17dd991b fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x182411dd tpm_unseal_trusted -EXPORT_SYMBOL_GPL vmlinux 0x183cb35b devres_release -EXPORT_SYMBOL_GPL vmlinux 0x18582d8f noop_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x18814030 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x18bebc8e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x18eda498 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x18f33c8e encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190b8caa iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x195490f9 vtime_account_irq_enter -EXPORT_SYMBOL_GPL vmlinux 0x1958a9e9 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x195fafc8 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x1966d594 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x1972b601 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x19941441 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x19946fde idr_find -EXPORT_SYMBOL_GPL vmlinux 0x19a674f2 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x19a9d0a7 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x19dfe348 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a0add1c proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a15d127 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x1a1976c2 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1a357455 gmap_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1a3581ec devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a3e475c inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x1a3f1912 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x1a41d4f1 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x1a4a67ae gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1a4cf821 md_start -EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a8e5445 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x1a99a9c9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x1ab42b44 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x1ac458a1 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x1ac5c2c0 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1af1d000 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b0868d4 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x1b0946d8 idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x1b30decc sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x1b48f0a5 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x1b562557 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x1b5d3348 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -EXPORT_SYMBOL_GPL vmlinux 0x1b8520ac crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b982a66 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x1bae2eb9 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x1baf1069 fork_usermode_blob -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf7ecf5 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x1c38677d flow_indr_del_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x1c48c19f evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x1c4e7a62 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c704ee9 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca41e72 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x1cba4a66 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd51579 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cddf1fe md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x1ceab05c nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x1cfd3e94 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2f10e5 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1d319326 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x1d370243 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x1d372b33 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1d6e252a device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x1d6e835e crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d77f06e debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1db13c06 zpci_enable_device -EXPORT_SYMBOL_GPL vmlinux 0x1dfc1a6e debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x1e28100d inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x1e4f95e3 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1e75fdc3 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1eb11abe addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d3d6 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1eedf7f7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1efada94 device_connection_add -EXPORT_SYMBOL_GPL vmlinux 0x1f014152 flow_indr_block_call -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0f5e12 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x1f1e862f sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x1f2671e9 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1f2b86aa iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x1f3a2a38 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x1f476c60 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f56f8a1 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x1f84826d __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission -EXPORT_SYMBOL_GPL vmlinux 0x1f9f3719 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa6564e md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1fa8794c iommu_domain_window_enable -EXPORT_SYMBOL_GPL vmlinux 0x1fad05b3 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x1fba051d sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x1fce643d devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x1fd7f47a transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fea64af __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1ff9888b device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x201aa9b1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x2029b1a1 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x20339e84 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x20367b41 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x205a47d2 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x205e2b4b class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x206c4962 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208e34de mddev_congested -EXPORT_SYMBOL_GPL vmlinux 0x2092ce89 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x2095170e cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x20a4a004 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x20a84198 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x20b6fa79 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x20ba4597 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x20c306bf hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages -EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x214b724e pci_epf_linkup -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x219ae1c9 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x21a0a6c1 gmap_mprotect_notify -EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21dc3cc3 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x21eebc71 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x220901f7 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x220ed845 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221c3b8c lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x221ed9fc virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x2249381d serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x22513b2b uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x225e2c95 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x225ec590 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x226aadcd tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x22a86d31 devm_fwnode_get_index_gpiod_from_child -EXPORT_SYMBOL_GPL vmlinux 0x22b98e6e virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x22d5b4a5 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2328ae32 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x23328405 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x2332b71d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x2348a471 nvm_set_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap -EXPORT_SYMBOL_GPL vmlinux 0x236982f6 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x238285f1 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23d5c4eb devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x2405ac1c kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x2407b20b inet_csk_compat_setsockopt -EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x245f6959 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x246b4a52 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x24704d4f ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x247103fb balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x24884864 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x248ba2f9 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x248f0ea1 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x249759a9 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x24a29a5c inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x24a51f95 udp_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x24a723bb s390_reset_acc -EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait -EXPORT_SYMBOL_GPL vmlinux 0x24ddb32c bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x24e8c8eb pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x24f22048 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x24f25ad4 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x2514b358 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25d67d59 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x25f653de debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x25fdc146 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x260fd566 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x26136250 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2614e27d tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x263a0a10 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x2640b132 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x2644d0e8 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26565c58 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x26612e00 get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x2661c7f3 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2685ebf1 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x268b5367 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x269b12af gmap_shadow_valid -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26ccfbf5 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x26de1df3 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x26df22cf serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x27081994 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x27287cd2 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27545244 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x27579bd6 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x275a22c3 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x275db6fc scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x27725ad0 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x277d6387 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x27aa7124 udp4_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x27b54318 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x27b64afd rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x27c96880 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fbdfe9 ptep_test_and_clear_uc -EXPORT_SYMBOL_GPL vmlinux 0x284645d9 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ad5290 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x28adaf03 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x28c6f411 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x28cb6880 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info -EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x29450aca serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x298273aa ccw_device_get_chp_desc -EXPORT_SYMBOL_GPL vmlinux 0x298be899 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fb4eb6 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x2a076a77 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a08eec4 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x2a0f7cbd devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x2a1289a7 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x2a3dc5d7 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x2a7b6b0d fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2a9784b1 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x2aab91dd crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x2ab4c643 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x2abeef4b tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x2ac0b6a1 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x2ac20873 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2acc03c9 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2ade6d45 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x2af288d6 appldata_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x2b1b4869 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x2b1cb437 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b472374 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x2b70f3c5 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x2ba9de6f irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2bb28774 dm_get_table_device -EXPORT_SYMBOL_GPL vmlinux 0x2bc4728d crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2bd984b3 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2bf17352 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x2c2ca8f1 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c32ec62 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2cc7a1e1 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf36afd bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x2d14a34b transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d317e8f crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d597976 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x2d65973e dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2d6be28d ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d747690 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2d890477 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x2da5e23e debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2da9ab70 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x2daa2177 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x2dacfc69 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x2dbc870e msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x2df7cbeb rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2e3024cf posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2e3af941 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x2e438537 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x2e5914b2 gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0x2e5dceba iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x2e6d4efb linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x2eacd05a register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec5ffa2 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x2ee96834 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x2eee943a verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x2f20c458 gmap_shadow_page -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3aff02 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4f67c3 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x2f58667c xas_load -EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x2f90f13f device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x30017605 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x304cfba6 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x30573211 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x305fcf7f fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3077e109 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x307d3ebd iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x30a14b5a bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x30c1e335 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x30c72203 iomap_file_dirty -EXPORT_SYMBOL_GPL vmlinux 0x30d2ad31 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x30ee341a hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x30f211bf gmap_put -EXPORT_SYMBOL_GPL vmlinux 0x311a62b2 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313456c8 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x31455cec irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x3153bd75 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x317bda8b iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x319c1414 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x31fcd529 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323d99d6 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x324029d3 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x32526d1f iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x325bf14f netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x32874a41 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x329338fd sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b95541 device_register -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x32e8544a pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3306a91c gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x33184e5b dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x332259e2 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33714e2a sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x33868af7 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x338eb4d9 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x33c2c23b fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x33c72841 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x33ce5deb alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f5390b sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x340165a7 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x340518fc crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x34112454 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x34172a0c serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x341b4ee9 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x343fb9ed dma_resv_get_fences_rcu -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x346bc508 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x347ef481 sock_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x348395ff virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0x34a5e980 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x34efc502 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x350660bc alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x35168ea4 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3541576a pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x35a7edde xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x35ab2c81 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x35ae9e04 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x35b2ee69 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x35c8aeb9 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill -EXPORT_SYMBOL_GPL vmlinux 0x36092316 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x36135098 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x368562b9 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x368f7eea net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x369bec65 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a8e25a device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x36c938a2 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x36e46f12 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x36e870c1 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x36e95c54 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x36eb4ca9 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3714d3ce perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x37355afe ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x37399d5a tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x37699245 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x37a75613 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x37ad6860 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x37bb01e9 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x37d50289 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x37d91600 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory -EXPORT_SYMBOL_GPL vmlinux 0x380061d0 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x38134c50 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x383486ae fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3873e4b8 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38c14f76 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x39157a03 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x3966e9f2 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x3981f949 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x398394ff ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x399f2b77 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x39b2e02f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x39ce1055 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x39d22911 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x39d5ccb8 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e282f9 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x39e56c91 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module -EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a477a56 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a57d09d crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x3a603e8b lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x3a6421d5 of_css -EXPORT_SYMBOL_GPL vmlinux 0x3a8cdc5c __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x3a964e88 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab80ac8 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x3ac84e50 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3afa340e strp_init -EXPORT_SYMBOL_GPL vmlinux 0x3b125eb9 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3b5be760 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x3b876b73 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b99b164 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bcad479 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x3bda966d crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c1049ff fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1e41fb platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3c5a0955 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x3c5df17f cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x3c5e3897 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x3c6819d5 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x3c8cb9fe kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3cac4b54 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x3cceff7a kvm_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3ccfe2c1 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd207ba __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x3cff1021 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x3d1d4968 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x3d1e1300 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d74dbbf alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x3d8219a8 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x3d84e6d7 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x3d8abaa1 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x3d97ac72 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x3da2ca9c d_walk -EXPORT_SYMBOL_GPL vmlinux 0x3db493f1 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x3db65a3d tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x3dcfedda percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3e032e0c unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e3efaf2 ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x3e47f560 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x3e583748 kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e84174b gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x3ed260aa rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x3ee09bfc key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efa33a6 blk_mq_sched_free_hctx_data -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f039caa tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x3f22899c addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x3f28c0b8 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x3f317b76 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x3f48b498 gmap_shadow_sgt -EXPORT_SYMBOL_GPL vmlinux 0x3f55c94e rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f5b0ddd device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x3f83b99c __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8a7d69 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f992bba gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3fae58a7 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3faf6e26 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x3fb2038b aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x3fbd8eb3 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x3fc7920d aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3fe97668 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400e51b2 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x401a06d9 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40866d0a tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle -EXPORT_SYMBOL_GPL vmlinux 0x408f118e tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409e42b1 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x40a5e133 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x40bff2c5 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x40ccd377 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x40d1da74 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x40d22111 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x40f7e4f0 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x40f7fc55 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x410adf3a gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x410c1ab7 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41815fe6 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x41984d83 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x41c7448e dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f81f29 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4209610a unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x4255cfd8 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428b94cf pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x429f146f rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x42af4549 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x42b17370 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x42b55468 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x42c5c9e8 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x42f812c8 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x4301d1ca dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x430ed1ac housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x4335a58e sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x437e414d elv_register -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4385aa7b fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b0317a devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43f69e30 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x440406f4 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x442fb70b perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x443f8826 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4443cda0 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x444f3d60 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x4467d7e2 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x447a034e devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4488a294 device_del -EXPORT_SYMBOL_GPL vmlinux 0x44a01d90 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44d414c2 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x44d830ff crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x450451fb device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4519fb67 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x4535b24a device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45419371 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x45483f13 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x45697391 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45a08b30 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x45d4c1d4 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x45f23e66 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4611112c raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x46320761 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x464444aa devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46ab5cd8 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46b0c4b9 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x46eadbbd bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x4706d4c7 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x471bb99d trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x477439c5 __online_page_increment_counters -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478d0e70 ccw_device_force_console -EXPORT_SYMBOL_GPL vmlinux 0x479cd51b sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x47b80847 iomap_readpages -EXPORT_SYMBOL_GPL vmlinux 0x47e34dd3 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x47e85cee gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x47f52a7b query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x47f5c623 perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47f89840 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x4808d1b9 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x48110e21 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x4825be8e bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4881ecf8 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x48895e2a pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x48ae5f2c kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x48b574f7 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x48b63e7e __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x48bbf525 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x48bd1b8e gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x48e0bd6a inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x48f37290 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x4908350e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x49287119 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x49515218 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x496c60c2 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x49845b57 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499c80fb page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x49af7ca2 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x49c0275a ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0x4a4be66e akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4a65d001 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4a750224 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x4a7ddcdf subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4a94b0d5 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0x4abb8b45 gmap_shadow_r3t -EXPORT_SYMBOL_GPL vmlinux 0x4abdfb09 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x4ae3b745 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x4ae77fa2 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x4b1b4c2e dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x4b5d62ea gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x4b882e1a scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x4b8853b0 put_device -EXPORT_SYMBOL_GPL vmlinux 0x4b91cbe1 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x4b9ce588 __flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib -EXPORT_SYMBOL_GPL vmlinux 0x4bafb6aa class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bbd411c vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4bcb9713 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x4bdd2c53 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x4bfd2f1e input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4c5b5c6a pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x4c5c57cb kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x4c7ae83d key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x4ca5108c ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x4cf78bea __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d699e31 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x4d96f2e2 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4da52cf1 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x4daaa907 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddd00b4 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x4dde2541 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x4df5cecb skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0x4e2eca48 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x4e35e356 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e4345e2 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x4e630cb1 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x4e858e4a devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x4ea6b8bb udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb325c7 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running -EXPORT_SYMBOL_GPL vmlinux 0x4eda64e8 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4f1bd149 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x4f3daf2f scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f7696cc device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4f9182e3 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff7d67f kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x501792c8 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x503e40fa pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x503f8ad6 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x504047c4 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x507c8dba firmware_config_table -EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x509040b1 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509c4a43 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x50bc93b5 device_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510f887a xsk_reuseq_swap -EXPORT_SYMBOL_GPL vmlinux 0x513d0ec0 crypto_stats_ablkcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5151d27f rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x5158b53b devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x515d14ec __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x519add19 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x519d22f6 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x51a66284 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x51c064f0 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x51cb22ea kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x51d999df gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x5218d9f2 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x522a520a srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x52389f5b device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x525878ec fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x527b12df rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x52cb7759 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x52cc2af1 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x531504cb cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0x531ad884 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x53304418 cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0x538ad8ff fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x538b2448 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x540dc3c5 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x54180ea0 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x543492c4 kvm_vcpu_init -EXPORT_SYMBOL_GPL vmlinux 0x543555b5 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x544cd31f gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x544ff1b1 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x546f0a2f nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x547f4bb2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5495d2ec pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x54c4cff8 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x54d42bfb cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x54f14d0a devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x55092789 get_dcookie -EXPORT_SYMBOL_GPL vmlinux 0x550937c2 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x55218ad7 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x5526987e ccw_device_get_schid -EXPORT_SYMBOL_GPL vmlinux 0x552e084b tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55465f10 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x55526e84 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x555f4777 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x559271dc ccw_device_siosl -EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560d29a0 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5671471e dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x56b435ca crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x56dbf27e __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x56e3fa65 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x57082f06 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5721ef7e bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0x5737d79e fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x576ecdf3 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x577a8608 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c7f4e9 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x57d4f367 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x57e0fc7d get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x57ffa875 dma_resv_wait_timeout_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5820b788 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x585875ee is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x58673d1b device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x58692c1e shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x5871de1c inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x5898fa3b kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x58a730c0 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x58c77899 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x58f11287 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x58f68625 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x590a5775 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x59186266 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x595ed380 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x595fbd0a device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x59722e19 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x5982d151 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x5993075d request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x59b7e3d3 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x59bd12b2 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x59db55ba __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59fbe012 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x5a0d4de2 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a60b435 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5abf794f kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x5ae95cd2 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x5aeb164b __class_register -EXPORT_SYMBOL_GPL vmlinux 0x5af46882 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7b6d8a blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x5b80b3de perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x5bb63a15 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc94c3e gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf81824 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c03c033 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x5c10f4eb debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c39600f skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x5c493db5 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c661455 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x5ca6cd10 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x5cc099a6 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x5cc3f5b5 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x5d33708f __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x5d48a1e7 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x5d7254fc switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dba05eb strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x5dc8277e iommu_domain_get_attr -EXPORT_SYMBOL_GPL vmlinux 0x5e09353a ccw_device_get_util_str -EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5eb8b980 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x5ebf8f59 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x5ef496a0 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x5f004436 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x5f0c80f7 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f23addc property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f379bea init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x5f4d857e inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x5f64cf3f md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x5f673ded vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f8d2215 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x5fa176b0 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fbbecd7 gpiochip_set_nested_irqchip -EXPORT_SYMBOL_GPL vmlinux 0x5fc1bfec virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x5fcfddec rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fd73f72 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x5fdfb93d register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5fed53d0 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x5ffde6f4 device_connection_find -EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x601f5d79 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x60271fd0 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x603c4e74 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x60464727 gmap_shadow_r2t -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x60537382 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x606c735b relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6089197f security_inode_permission -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 0x60b6196b get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x60c52b7b tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x60d2a856 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x61197ce2 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x61467b1a device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x61603d8e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x616380e4 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x616f1fa4 mddev_create_wb_pool -EXPORT_SYMBOL_GPL vmlinux 0x617bdb96 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x617fe47e clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6195bae9 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x61982346 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x61cd2818 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x61e1d4a5 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x61ff9c1e sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x62038d83 blkg_print_stat_bytes_recursive -EXPORT_SYMBOL_GPL vmlinux 0x62126491 gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x621346dd pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62561c4e dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x626f4ea2 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x6276719e devres_find -EXPORT_SYMBOL_GPL vmlinux 0x627cca48 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x627dae75 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62d58118 pci_ats_page_aligned -EXPORT_SYMBOL_GPL vmlinux 0x62e7fc8c iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x62fd0204 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x62feab73 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x634ad2cf serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x635a99d2 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6377bd86 enable_cmf -EXPORT_SYMBOL_GPL vmlinux 0x6390bdc0 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x63d74701 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6406a3ae cio_enable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x641828fe component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x64741c78 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x64908814 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64c64c8b iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x64c709f3 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x6501db9d virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x6502036a gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x65077088 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x65325543 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x653e2371 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x654c7f2b udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x65839810 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x658ce67a tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x65ada03d net_dm_hw_report -EXPORT_SYMBOL_GPL vmlinux 0x65c4721f platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e1acbb virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x65f1dc8b dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x65fff99b inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66285c1f blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663fafb4 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x664a46db get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x6655f1c9 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668684c0 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x66902f51 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x669a10a5 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x66ce63cb kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x6751c9b8 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6770e09d debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x6790d690 user_update -EXPORT_SYMBOL_GPL vmlinux 0x6791f57b xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67ecce4f locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x67f6439b clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x67fb3f01 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x680a0cde shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x681d7900 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x68308f51 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68988671 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x689cc6c1 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x68a234e7 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68a52570 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x68ccae35 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x68e293ec inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval -EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0x6946dcb9 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x6950a3a9 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host -EXPORT_SYMBOL_GPL vmlinux 0x69652f14 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x698e0f30 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x698e7e26 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x69b14186 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x69b6f221 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e78334 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x6a008077 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a55c54a pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a6c0071 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a9456b6 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x6aca7237 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x6ae22d09 split_page -EXPORT_SYMBOL_GPL vmlinux 0x6b162469 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x6b1c10a8 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2c0063 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6b4f5a42 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x6bc7cb89 cio_clear -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6be4107a badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x6c0477dd device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6c2576eb vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x6c38fcc2 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c66d0bf cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x6c68fb3d udp6_lib_lookup_skb -EXPORT_SYMBOL_GPL vmlinux 0x6c9aba58 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6caec45f xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6ccb8977 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x6cd1d15c blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x6d1e9896 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x6d25ba75 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d34cf00 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x6d39c088 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x6d46c08e init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x6d6ac7e1 gmap_pmdp_csp -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8976a3 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6d8a21e2 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x6db19d81 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6de5cbb9 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x6dfb9ae4 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e18388d __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x6e1db0ef blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x6e2eea9e crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x6e62becb put_pid -EXPORT_SYMBOL_GPL vmlinux 0x6e69749f elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x6e762219 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6e766f6c file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7c1022 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x6e8c755d generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x6e96a64f access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x6eb5830f inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec2ea1b pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6ed5badf handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6eef54bf gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x6ef336f7 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efbafb0 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f3543db shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x6f4271ca blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x6f63bd87 flow_indr_block_cb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fd35462 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x6ff0b66c sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7015ca11 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x701f1ac6 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x7066c57e vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x7088e198 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x70960bda udp_destruct_sock -EXPORT_SYMBOL_GPL vmlinux 0x70a49fec fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x70b03a86 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70dafda5 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x70dda617 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x70e42aef list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x70ed0990 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711ce025 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x713e51d2 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x71531806 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x715b4c8a bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start -EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x71a69830 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x71c6f9bd __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x71e782d0 devprop_gpiochip_set_names -EXPORT_SYMBOL_GPL vmlinux 0x72086f64 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x723fe547 __fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x725074c0 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x7262d48e xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x72646fff vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x726539a0 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72798b23 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x72959f70 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x72ab6a18 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x72ec2c34 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x72f13c57 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x730258e9 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x732b902f pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x73435aca map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x735b5e7c sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x7377102a gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x737c5286 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x737efb22 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x73865362 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x73a764cc crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x740a70dd init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x7410ba82 gmap_make_secure -EXPORT_SYMBOL_GPL vmlinux 0x7410c98c tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x742947f6 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x744e0086 bsg_scsi_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x745a701a security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x746e67cf crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x7484b565 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x748b7dc4 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c2288b gmap_register_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x74ca7ac2 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e9fac2 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x74eb1024 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x74f33c23 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x750f7e48 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x751d1d72 probe_user_write -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7529821a pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x75490287 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x756d2f4d handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x757ab618 gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0x757bd47e skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x75846299 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x75a1aae7 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x75e1a569 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x75f2acb2 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75fb272a skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x761b91ec kvm_s390_gisc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76286e4a kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x76304939 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x764a5dc0 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x764ad148 cio_cancel_halt_clear -EXPORT_SYMBOL_GPL vmlinux 0x764f4c6b bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x767e7405 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x76818d02 blkg_print_stat_ios_recursive -EXPORT_SYMBOL_GPL vmlinux 0x7683babb scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x7692b14b device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x76c80017 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x76e13aa1 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76e6f281 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x76e8b151 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x773ac684 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x7752a46a crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x775c865e pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x77606f82 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x7799f625 kvm_s390_gisc_register -EXPORT_SYMBOL_GPL vmlinux 0x7799fc7e alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x779bba61 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare -EXPORT_SYMBOL_GPL vmlinux 0x77d8a091 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x77dbd424 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x782ea197 xdp_attachment_query -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78810210 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x789a92b6 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x78b3560f fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x78eda93f blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x78ee31f1 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x791a4cff securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x791f71b3 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x79360801 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x7943388c gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b2fbc crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7951c290 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x79578d39 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x797e20b7 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x79a2c85e sock_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x79a32a78 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x79bd5ea1 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x79dd1d74 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e2d806 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x79eb97a1 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x79ef3597 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x79f4eb77 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7a03525e iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x7a2c466f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x7a5b3219 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x7a7dcd9f xas_find -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a9c1580 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x7ab72bfb virtio_finalize_features -EXPORT_SYMBOL_GPL vmlinux 0x7abb589a device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x7ac7745e gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7ad34323 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0c3740 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x7b1323d2 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x7b1911c3 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7b1ed4ca kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x7b32d1fc crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5e3484 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x7b796a59 device_connection_remove -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7bb20a27 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7be13176 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x7be24f50 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x7bea96fc scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x7bfdcd81 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x7c15dc5d tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0x7c3378b3 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x7c50e403 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7c566384 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x7c617d8f fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7ca57491 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x7ca92945 __set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cdb837b bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d19279d blk_mq_request_completed -EXPORT_SYMBOL_GPL vmlinux 0x7d294ecc devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x7d48fc12 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x7d6153cb __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7d6807aa blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x7d9998f6 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7dca5ecf skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x7dcfa5c9 unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7e17fbee iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x7e46dcd5 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x7e4f3f31 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x7e57ee44 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x7e819b96 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x7eb43093 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x7eb44839 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x7eb93fb7 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x7ebd5a06 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x7ec232a3 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ef64781 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x7f0d50d1 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x7f38620d paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x7f3e1487 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x7f63b211 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f86abb3 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x7f8d52df apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7fb9c2a5 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x7fe6e74e setfl -EXPORT_SYMBOL_GPL vmlinux 0x7feac6b0 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x7fec4d6f crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x7fed4241 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x801c25dc gmap_shadow_pgt_lookup -EXPORT_SYMBOL_GPL vmlinux 0x802d8595 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805fde2b bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x8066fc33 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x8074f2a5 kallsyms_on_each_symbol -EXPORT_SYMBOL_GPL vmlinux 0x808023eb register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x80854173 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8085f9a2 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x809a1ab7 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x80ac14a3 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x80b88b4a device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80ca46ef __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x80cb9325 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x810b7f04 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x813c7e2c fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x81555ed5 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x81854dd1 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x8187bb3a bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x81b7a069 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x8210768b component_del -EXPORT_SYMBOL_GPL vmlinux 0x8237af1c freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x8264e212 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x829654bb __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x829ef8a8 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x82abb621 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x82bc43aa devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x82d6cc7d devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x831e204a blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x834477bf pci_proc_domain -EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x83671ae3 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x83684153 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x8388c418 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0x83aec819 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x83d079f5 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x83d51a3a blkdev_reset_zones -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8433ac1f fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x8440e206 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x844157aa class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84561e26 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x845d2d62 devlink_region_shapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x845f98f7 blkg_print_stat_bytes -EXPORT_SYMBOL_GPL vmlinux 0x84778070 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x84a90672 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x84af142e pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x84b31a89 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x84dbdf60 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850ddfa8 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x85108296 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x852d83d4 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x853083c0 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x855786cc unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x857b02ac pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x85bcf9a7 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x85fc5117 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x860f8dc0 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x861f3438 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86243b3e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x862cae53 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x863e2878 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86698ac8 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x866fc0e8 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x8671753d __tcp_bpf_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8695c81a fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier -EXPORT_SYMBOL_GPL vmlinux 0x86b9a1b8 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x86c7b846 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86dacd18 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x8703a18a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x8737fa19 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x87432861 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x875992e4 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8775c709 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x87ee7972 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x88063c9d fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x880d11be fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8815463f crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x88427f35 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x885e1333 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x885e88de blkg_print_stat_ios -EXPORT_SYMBOL_GPL vmlinux 0x887f177c list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8893c329 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8896b4c2 get_device -EXPORT_SYMBOL_GPL vmlinux 0x88e009ac __pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x89059eb8 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8985ad79 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x89872a7b iommu_domain_window_disable -EXPORT_SYMBOL_GPL vmlinux 0x898e2622 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x89a9a58d crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x89df613c remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x89dfb4a9 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x89ea408c pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x89f186f4 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x89fac798 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8a049b79 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x8a16d44a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a362a36 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x8a9837a3 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x8a9d9872 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x8aa9b932 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x8aae2668 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8b003cce pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x8b0394c7 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x8b1641fd xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x8b1a3002 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x8b2c16ec fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x8b4ce847 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x8b6a33d1 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x8b862cf3 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8ba9a818 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x8bbde9ae scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8bc15cb9 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x8bce1e06 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x8bd760cc noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8bf7c962 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x8bfdb928 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0f2f8d xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c23e038 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8c32fd4f perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x8c46f04c blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8c555eaf devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x8c5a112c register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x8c780000 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8c7f08e4 devlink_flash_update_end_notify -EXPORT_SYMBOL_GPL vmlinux 0x8c872738 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x8c9b4f2d fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8c9fb127 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x8ca2693d sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x8ca27b53 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x8d172107 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8d1f17f4 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d6a9102 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x8d74d68b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x8d8e446b security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x8dc424cf kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x8dd69fef ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x8de43a30 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x8dffa254 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x8e02ba6e kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x8e347f73 __generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x8e46003a pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x8e4ab8d4 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8e5d4be9 dma_buf_kmap -EXPORT_SYMBOL_GPL vmlinux 0x8e61c1f1 gmap_pmdp_idte_global -EXPORT_SYMBOL_GPL vmlinux 0x8e69d162 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x8e843a30 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ea894ab __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8eb2503c devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x8eb5e8d2 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x8ecd9ed7 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8efcebe9 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 -EXPORT_SYMBOL_GPL vmlinux 0x8f28560e put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8f42111c flow_indr_add_block_cb -EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f6e795d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x8f74b68e pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8fa64028 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x8fac6a23 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x8fadd454 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x8faea4cf tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x8fca6dab ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x8fe15e84 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x8ff06016 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x90033565 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x90261d53 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904da3a6 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90745564 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x9077c0bd skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9095f42f net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x90a1c2bc proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x90ac579f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x90b314ad blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x90b33340 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x90b50576 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x90c3bbde gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x90edefce blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x9112cd51 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x912b240e kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x91320455 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x91455f19 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x915f9ff3 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9186114b mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x9197a7f1 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x91a851cd tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x91ab097e debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x91c5f10c free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x91dea1b5 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x91e838d6 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x91eb518d klist_init -EXPORT_SYMBOL_GPL vmlinux 0x92003e50 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x92062c58 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x92124137 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924fee59 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x92722a0c crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x92739f71 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x92853614 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x92b1ecd4 blk_mq_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x92be03bb device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x92cf03b5 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92e8ec55 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x92ed3ef4 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x92f29b10 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x931929c1 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x932e0289 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x937f2d14 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x93858319 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog -EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x942b85ca rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94361a61 devlink_flash_update_begin_notify -EXPORT_SYMBOL_GPL vmlinux 0x943de05e devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94943717 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x94eb959a devm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f358cc ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953319c9 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95644f18 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x956666ab cio_tm_intrg -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959a82fa __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95da5123 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x95e556b4 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x962761f6 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x962a9929 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x964b5247 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96801be5 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x96a68def find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x96b92c1b tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x96e80483 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x973a0af4 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x977cbce4 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x97910902 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x97c50c16 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x97e94cba blk_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x97f66819 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x97f77f55 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x980ab2f9 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9836cc43 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9864e8c8 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x9866c112 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x98760262 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x98780a59 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98c94285 tty_kopen -EXPORT_SYMBOL_GPL vmlinux 0x98f988c4 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9907dea4 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x99126529 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x993300dd platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995f532a bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x99bc437f generic_xdp_tx -EXPORT_SYMBOL_GPL vmlinux 0x99e1ade8 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x99e5f999 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x99ee10bb kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a028dfa device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a24ccba fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x9a328e65 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x9a45301b blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x9a65f062 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9a82a4a4 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x9ac25cc2 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9ad34812 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9ad7d310 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x9ae2da16 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af8cbd8 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x9b1e03d1 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9b292242 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x9b58ab7b do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x9b7f669c __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x9b88395d fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9ba35dc6 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c1a7dd5 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x9c1aad5a balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x9c1f9904 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x9c4d3a5b do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x9c8766bc dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x9ca1d5d6 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x9ca280cb serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x9cb03d08 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x9cc5fff0 gpiochip_irqchip_add_key -EXPORT_SYMBOL_GPL vmlinux 0x9ce15625 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x9d06e990 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1aefba inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x9d93ba58 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x9dc6034c devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x9dd263a7 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9dd4fdf4 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x9de8d5ad metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9e07de8d io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9e0ddaf4 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9e3ca89e check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x9e414ef7 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x9e46a7b3 bio_alloc_mddev -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e599262 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9e650260 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x9e6cbe4c crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9e7d82c9 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x9e81387a preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9e8dce83 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9eb37d41 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x9ed11c31 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eebfa8c perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x9f139398 arch_make_page_accessible -EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9f409a84 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9f4e91e5 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn -EXPORT_SYMBOL_GPL vmlinux 0x9f79cab0 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x9f9011cc pcie_has_flr -EXPORT_SYMBOL_GPL vmlinux 0x9fa7ddb6 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x9fbb8367 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa009358d tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xa01c7fc5 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa02b6f40 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xa035dabd acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xa03ba309 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xa04dcd00 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05491a7 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xa0996b51 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0ed42e9 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa0f3f09f kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xa1119804 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa123ea4c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xa1276f43 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xa1651e93 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xa1864430 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa203d6a2 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2448ad5 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa266df23 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27318e4 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0xa281b9ad relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xa294fc91 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2a23ae7 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xa2a3cdf3 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa2cbb1f7 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xa2e13edb gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa3194a13 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xa319d8ea debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xa31ab72a setup_irq -EXPORT_SYMBOL_GPL vmlinux 0xa31f1b3a gmap_enable -EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3916a2a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f03ab5 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f6938c devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa436823f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa458a513 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d8b61 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xa471982d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa47cb4c1 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xa48a9213 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xa4c92983 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xa4ce468d fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xa4eda75f relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa4fa359e nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xa4fd6779 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa51d900f inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa535ffbb crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xa53eaa91 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable -EXPORT_SYMBOL_GPL vmlinux 0xa57d3420 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa5c44cd2 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xa5c8645b css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0xa5e960d5 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6034723 css_sch_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa6057246 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xa63a61e8 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xa655140e devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xa667df20 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xa672c76e lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa6a73d0e find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xa6cbe205 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0xa6d11b22 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xa6d286dd iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa73207cb crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xa7341708 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa73d3f1f user_read -EXPORT_SYMBOL_GPL vmlinux 0xa757af12 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xa7593fbc scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xa78f1b8c device_move -EXPORT_SYMBOL_GPL vmlinux 0xa79e9249 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xa7b0eeb7 mmput -EXPORT_SYMBOL_GPL vmlinux 0xa83eb0f0 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86cf20e screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xa889e90c kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xa8aae342 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xa8bd0cef module_mutex -EXPORT_SYMBOL_GPL vmlinux 0xa8c3d42d dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xa8fabfd3 probe_user_read -EXPORT_SYMBOL_GPL vmlinux 0xa90fcb05 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xa914b863 pci_ats_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9350329 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xa95ca257 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa96bbb93 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa99cad04 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b56d7d ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa0c68a3 gpiochip_set_chained_irqchip -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa938a1d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xaa9aa5cc bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab8acf7 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xaab9f8fa sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xaae48385 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xaaf3429a clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xaafca724 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xaaffca69 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xab2a9074 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xab58f120 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xab657ba9 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabac10b7 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xabb1e631 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xabbac303 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabdbca57 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xabfb1bc9 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xac1223a7 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xac14fa9f pci_debug_msg_id -EXPORT_SYMBOL_GPL vmlinux 0xac38dc43 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xac42d4e6 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xac44b469 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xac5d2edb skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xac7c50d5 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xacb1a6e8 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xacfe327c virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xad0577b5 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xad1129b5 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xad28d190 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xadae02f8 __dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xadc65047 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xadc7dc00 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xadd709d4 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae209eb0 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xae2243c4 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0xae26f913 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xae319ac8 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4a8fb3 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0xae636d37 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae85a4e2 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xae8e6a28 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xaebc19fa set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xaebc534f trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0xaebe1b56 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xaef094b8 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xaf15ee74 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xaf16ca47 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xaf35a447 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0xaf3829f2 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xaf57e221 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xaf5bbfcc skcipher_walk_atomise -EXPORT_SYMBOL_GPL vmlinux 0xaf75c39b tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf808d44 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xaf905c8c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xaf9aa2db tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xafcc8928 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0xafd711be mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xafe7e828 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb0144227 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xb021c745 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb02929e6 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0xb0339c99 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d21331 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb0d894a9 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb112508d skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb116a77b blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb11d5013 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xb1442c05 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xb14ebdd3 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xb15f1b96 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb164a4a0 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xb19d9bc7 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xb19f152e klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb1a4352e __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xb1a69a3b netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xb1af2591 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xb1cb316b ptep_notify -EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb20a5965 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xb215ff3a path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xb2174911 cio_tm_start_key -EXPORT_SYMBOL_GPL vmlinux 0xb22890c7 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xb239b4d2 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xb239defb tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb23c1d1e __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb257d883 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xb2639f4f irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2755b98 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xb2bd6ac5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2c9abb0 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xb2dcea85 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xb2f5109c tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30fb3e7 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xb35f0447 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb365c6e4 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xb37fa039 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0xb3a1157c watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb3a19023 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xb3b75222 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xb3c57eea pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xb3faf274 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb4048cd7 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb4151709 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xb439c433 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44ab713 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb44d0d84 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb44d90e8 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44fb3dd udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb48f0f14 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cd95b0 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb4db7b03 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f4d2c5 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xb4f6568a splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xb4fe566e blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xb5152aee sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xb53fd264 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb54ece2b crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xb5b21868 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb5b94dc1 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xb60e58f9 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xb616e5eb fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xb617ad92 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xb61d0290 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xb6211c05 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb638f70c chsc_pnso_brinfo -EXPORT_SYMBOL_GPL vmlinux 0xb65c4842 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xb67e3077 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xb698aa2a trace_array_create -EXPORT_SYMBOL_GPL vmlinux 0xb6b85c3b create_signature -EXPORT_SYMBOL_GPL vmlinux 0xb6d96c9e crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6e63031 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xb6ec8770 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xb6f2bc60 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xb72d6587 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xb7664055 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb778f7a8 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xb7834818 gmap_create -EXPORT_SYMBOL_GPL vmlinux 0xb7bbb8bc kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7de782d devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xb80506b4 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb808995c register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xb809b838 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb80a49a6 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xb80dc4f3 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xb80e9869 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xb821ccc0 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xb824c5a9 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xb825127d pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb85f3523 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xb87d637c kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb8826017 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb892fb12 vtime_account_system -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d1c584 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xb90f57d3 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9153905 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb9219eb5 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xb930c9ce kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xb9314eb1 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9398972 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block -EXPORT_SYMBOL_GPL vmlinux 0xb954578c devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xb97d49f4 iommu_sva_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xb97f034a ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb982f858 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xb98a055f sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xb98d6ee0 kvm_clear_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb995a3ec fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xb9c0762e validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c430e1 trace_call_bpf -EXPORT_SYMBOL_GPL vmlinux 0xb9cb8530 gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9fc4ac1 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xba2a975b iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xba3efe0b tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xba415cad pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xba4bcd2b iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xba5b624e tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xba9d3114 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xbaa4d69f fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xbac41c73 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf7cb97 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb4ad79a device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xbb4f8455 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0xbb50d2e9 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xbb563d39 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xbb637890 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb74881f get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask -EXPORT_SYMBOL_GPL vmlinux 0xbb7e1544 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0xbb84eedf ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xbbc01f0a crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbc0a6a9d invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xbc1d7f81 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xbc2c8dce blk_mq_sched_request_inserted -EXPORT_SYMBOL_GPL vmlinux 0xbc3a36d5 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbc46b3d1 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xbc5c4ad6 __gmap_zap -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6c4f29 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xbc799b41 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xbc79aaa2 css_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbc8dd2ae input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc995c53 nvm_get_chunk_meta -EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcea3709 gmap_unregister_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf277e6 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xbcfab787 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xbd13090a devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4ba9fa simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0xbd7bc037 __module_address -EXPORT_SYMBOL_GPL vmlinux 0xbd8c60a7 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xbd8d57f5 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0xbd986d3f gmap_read_table -EXPORT_SYMBOL_GPL vmlinux 0xbd9bde86 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xbda9555c dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xbdc0205c pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xbdec912e __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xbdfbcea5 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xbe071b14 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xbe154f09 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe246106 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6c03cf blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0xbe852076 vfs_writef -EXPORT_SYMBOL_GPL vmlinux 0xbe977061 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe9ccf92 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeab3204 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xbee0cc73 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xbee10689 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf133102 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xbf36996d crypto_stats_ablkcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbf3dd567 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xbf4e88f4 __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xbf5cd19d blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xbf68cc4d component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xbf6f20cc alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xbf8728f3 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xbf880837 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xbfe133b6 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe767bd wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space -EXPORT_SYMBOL_GPL vmlinux 0xc009dec2 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xc024fc1d rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xc06020f0 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc07a9a0f blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc10ee225 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1542718 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc15daee1 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0xc166cce4 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc18aa827 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xc1d868c6 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0xc1fc218d skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc210a6bf blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc236c8e2 inet_csk_compat_getsockopt -EXPORT_SYMBOL_GPL vmlinux 0xc24285c5 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xc243b619 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xc2471be7 ref_module -EXPORT_SYMBOL_GPL vmlinux 0xc285ccd6 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2aa67c7 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc2af3c21 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xc2c0d12f iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2dbc07c __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xc313acf5 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc31dfa4c vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xc329697e software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc3415cf9 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xc34165d7 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3620e2a firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc381f829 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xc38ec252 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f0247b inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xc3fa0209 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xc407f5a3 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc414ec68 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xc418ce9c sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd -EXPORT_SYMBOL_GPL vmlinux 0xc41f8d8d device_attach -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc42e4112 pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xc43ff696 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc459adc7 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xc4806383 tty_ldisc_release -EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag -EXPORT_SYMBOL_GPL vmlinux 0xc484e2b3 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4b34194 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xc4b68e40 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc4b9a58e skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc505a1da __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xc51b10c2 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc53ac722 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xc5546525 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xc55a5822 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc585d5c9 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xc5cbf040 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xc5cfe520 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc5d5498a __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc5fb0c91 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc6006eb5 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62ed20a tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xc637343a noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xc658760c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc65b3ddd pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc67fd926 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xc6c7e3e8 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc6d5b45a srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc6e388af pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6fded0c flow_indr_block_cb_register -EXPORT_SYMBOL_GPL vmlinux 0xc71292e2 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xc7191417 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7302fd8 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xc76c891e ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc76f7af1 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xc79dcf38 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7c2412f crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xc7d6545e __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc815bd39 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc84c4023 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc84e0c72 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xc87e968d xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xc87febdf posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xc882c2c6 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc8a6e09b inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8b28168 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc8bd2f4f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ee779b blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xc9134eda debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xc93461f9 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc9450cef skcipher_walk_aead -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc97b269b ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xc97cfe09 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xc97e4b8c bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9d452eb xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc9d87dbc tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xc9e17c12 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca9fe98d task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xcab70079 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xcacf18ae blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xcad92d36 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xcaea1077 s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0xcb0dd798 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xcb179894 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xcb1eabcf iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xcb49ddf5 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xcb4f0634 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0xcba444a0 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xcbbf3028 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xcbc26ad0 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xcbd4a8cd pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe76791 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc5f6a96 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xcc6a5183 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xcc869de4 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xcc8b0ab8 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xccaa3930 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xccd7bb67 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xccdc7c9d root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcce24af1 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd048f11 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xcd1080f3 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd6dc9c6 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd718125 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xcd80d0f7 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd99326e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdac1352 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xcdafa06d crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcdb28be7 bio_disassociate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdca8e3d gmap_remove -EXPORT_SYMBOL_GPL vmlinux 0xcde8a4c3 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce25e3e9 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xce45a293 virtio_config_enable -EXPORT_SYMBOL_GPL vmlinux 0xce4a7718 __percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0xce5db525 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce726ece driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xce7bc28e input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xce9fe5a4 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xceea0d64 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xcf1f7ac9 iommu_domain_set_attr -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf28f78c crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcf3d1d5b __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0xcf6c9ef2 component_add -EXPORT_SYMBOL_GPL vmlinux 0xcf9ed711 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcfbbc567 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfd72d71 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xd01c8bfb iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xd03555da lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xd0377a11 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0422042 strp_process -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd083be63 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xd0890cd7 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xd08f1b34 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd090065e pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xd0aff12f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f4d3b2 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xd0fa2c64 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xd1107dfd component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xd120647a inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xd13a230c pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd17f9c60 cio_start_key -EXPORT_SYMBOL_GPL vmlinux 0xd18e3a6e bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd1901df7 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d09a18 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xd1e5bfaf gmap_pmdp_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xd1ea887e switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd2312f6b pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xd234101b devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xd239f278 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd275d7cb gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0xd277c26f dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xd289229d unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xd2b520f7 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd2bee408 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2d76626 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xd31637cf gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd3504b49 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd35ab992 sock_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd368765d sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd394dad6 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xd3980b93 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xd3999692 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config -EXPORT_SYMBOL_GPL vmlinux 0xd3b3ff83 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xd3bce1b2 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd3cf769c kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xd3db931f relay_open -EXPORT_SYMBOL_GPL vmlinux 0xd3ed5878 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xd3efb072 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xd3f86287 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled -EXPORT_SYMBOL_GPL vmlinux 0xd3fd6cc0 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xd3fe7766 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd43c0762 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xd4882b9e xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xd489c2f1 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xd49ca77b devlink_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4b9e5a3 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c25cac pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xd4c6b774 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xd4d404ce dma_buf_kunmap -EXPORT_SYMBOL_GPL vmlinux 0xd4d4f030 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4d6b828 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xd4e94114 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xd4ee5029 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd52019e3 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0xd5211e75 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xd5569b6c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd588504f fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xd5995403 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xd59b1c7a lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xd5acec25 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0xd5ca12ea percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xd5d8afa1 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd64f9213 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd6580baa scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd65efdf5 find_module -EXPORT_SYMBOL_GPL vmlinux 0xd6713706 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6bbf640 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xd6ca74e8 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd6d5e6d4 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xd6e7b364 dm_remap_zone_report -EXPORT_SYMBOL_GPL vmlinux 0xd6fcbfe3 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xd71849a2 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd7515698 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xd753efc9 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xd76eceaa transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7b833c0 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd7cc8190 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xd7de8516 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xd7e131e9 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xd821af4e pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd86b02b2 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd899a530 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xd8aafb35 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd8acbb8e dma_resv_test_signaled_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd8c15927 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xd8d3a5cc tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd8e9426c evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd8f800c9 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9071733 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xd9077848 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xd9216037 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xd92de1a2 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0xd94bc228 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96eb9cb skb_gro_receive -EXPORT_SYMBOL_GPL vmlinux 0xd972867f inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd983ab58 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xd98f27db inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd995b2f4 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd99a0b61 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd9a090d1 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd9c8a2b6 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xd9d36fb1 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xd9e37747 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xda010bc5 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xda04cca4 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xda1e6774 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xda249362 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xda2e348b posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda52ad23 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xda54082c iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xda5cd170 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xdaad0b57 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdabe15b2 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xdadf1847 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdaeffb56 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xdb10b62b virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xdb1f83bb fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xdb2a8a17 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xdb3558b9 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xdb40a220 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xdb6bab57 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdbb125e5 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xdbb37668 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xdbcf03b6 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc022dd4 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xdc1b7df1 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xdc38a011 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xdc396de7 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xdc41a177 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xdc6340df to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xdc737abb kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca0018d device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xdcc02cbf sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xdcc0e8cd pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xdcc18916 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xdce2dfe9 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xdce968b0 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd2cf6c8 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4b7a34 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xdd5249f9 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xdd55b63f tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xdd60bd56 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xdd60f18a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xdd8abd64 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xdd9278de crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xddae454e blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0xddde8f72 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xddded768 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xddeddc21 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xddf20c47 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xde577a25 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xde622766 gmap_get -EXPORT_SYMBOL_GPL vmlinux 0xde6ae67f gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde70b610 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xde7ce399 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xde7eb08d unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xdea8b29a __bdev_dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xdef145b4 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xdeffebb4 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xdf044f01 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf0fb138 kvm_arch_crypto_clear_masks -EXPORT_SYMBOL_GPL vmlinux 0xdf11209a devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xdf14037f srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xdf1a8cc5 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xdf1bd40f skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xdf1e31fe xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf360ea1 sock_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xdf363fa0 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xdf3d8de4 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xdf5cd3ca sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0xdf6cf89b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xdf812de2 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xdfc9ddf9 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xdfdbb3f5 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xdff8ebe0 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name -EXPORT_SYMBOL_GPL vmlinux 0xe009fc75 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xe00a4ee6 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xe01e74e4 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xe0714c85 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xe07ee819 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe0967f1c pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe0f10b94 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0xe11682f6 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0xe1192cf2 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xe11f669b dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xe1542595 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe1622be7 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xe16f9eff fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe19da1c4 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xe1a67f08 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe1c36b1a devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xe1ecf89e validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xe1f04700 device_add -EXPORT_SYMBOL_GPL vmlinux 0xe1f32b83 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xe1fdcb60 kvm_vcpu_uninit -EXPORT_SYMBOL_GPL vmlinux 0xe20cf1bd ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe241e06b init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe24283fe __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xe27b1ade security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe2829f07 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0xe28ddfc9 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xe29778eb pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b47dae pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe30be023 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe33f55e7 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xe3561c3a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0xe372818d crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe3816fee unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xe38f00a8 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xe395a802 __devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xe397040d xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe3e54cbe kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0xe3ece03f dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe412b820 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe41bda67 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xe426adf6 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xe4438b7e pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xe4628453 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xe46f55f8 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe472b818 disable_cmf -EXPORT_SYMBOL_GPL vmlinux 0xe4733fd6 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xe47571bc unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4b11568 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0xe4c59b3b gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xe4cc3d96 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xe4d76ea1 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xe4d982eb virtio_config_disable -EXPORT_SYMBOL_GPL vmlinux 0xe4eea5af iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xe52aa2a5 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xe57080e8 s390_pci_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5744728 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a3df80 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xe5b5d78e sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe5d24437 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xe5e5a34f dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xe5ffc674 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe621de68 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xe65e91fd badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xe668ca78 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xe67ab327 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xe67ce70b crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xe69195ee wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xe6a1cc4c klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xe6a7983e zpci_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xe6b0ae24 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xe6c75fcf bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e4a704 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xe6e4c032 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7149e88 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xe722842e mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xe73a0902 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7985a82 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe79d7737 xdp_do_generic_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe7ac37b3 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7c98b85 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0xe80e6c2f pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xe819698e crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe81a5991 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update -EXPORT_SYMBOL_GPL vmlinux 0xe8887606 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe8b3f0d8 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe8e663e7 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8f8d248 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xe91f876e fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe940d970 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xe94d211b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe9607b8c anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xe978cdf5 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xe97b2f96 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xe982da3a pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe98ca403 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xe9aa52f0 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe9adcf2f __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe9b875f7 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe9b9f145 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe9dd4937 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xea053252 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea79121f crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xea7fcf19 update_time -EXPORT_SYMBOL_GPL vmlinux 0xea8158fd gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xeacbada0 gmap_convert_to_secure -EXPORT_SYMBOL_GPL vmlinux 0xead77419 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xeade2a4a cio_cancel -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae304e0 nf_queue_entry_release_refs -EXPORT_SYMBOL_GPL vmlinux 0xeae5d345 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xeb0850c2 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xeb24951f __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xeb5a141f device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xeb5bd386 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xeb5f46c9 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xeb6a5812 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xeb8239fb ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xeb907eeb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xeb97539c nf_route -EXPORT_SYMBOL_GPL vmlinux 0xeb995391 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xeba7851e iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xebd615dd devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xec069e85 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec20ec9d xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xec257a0a virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xec263fbc tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xec350684 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xec3eee45 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xec418120 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xec4230ba tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xec5825f5 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xec651670 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec6e4847 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xecdc9a34 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xececead3 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xecf35d53 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xed2243af ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xed258e9e crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xed3b9a2c raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0xed665982 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xed6760a7 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed85b4b8 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xedd647c4 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xeddff9be md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xee0bc177 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee47d57a hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee7d0f10 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xee8a29a3 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xee9e3f63 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xeea1594b iommu_dev_has_feature -EXPORT_SYMBOL_GPL vmlinux 0xeeacb549 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xeed20444 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xeed60792 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xeedd1469 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -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 0xef6fa246 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xef9ebde1 pci_restore_ats_state -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa457f9 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xefc80872 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xefdcfc7a sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xefeb2d99 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xefeb643a gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xeff90244 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xeffa575b devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf000abf6 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xf082f413 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xf0b0487f pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xf0b6e4f9 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xf0df0940 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xf130cda8 iomap_set_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0xf15d0e28 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18ba31a kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on -EXPORT_SYMBOL_GPL vmlinux 0xf1e21543 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xf20840f0 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2295130 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xf23714ec devres_add -EXPORT_SYMBOL_GPL vmlinux 0xf24633eb crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xf2601966 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf2873a73 gmap_fault -EXPORT_SYMBOL_GPL vmlinux 0xf2875d68 probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xf293de0b blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0xf2a80f1f kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bea1d7 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf2bebac8 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xf2c2d839 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xf2d61908 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xf2d6a691 pci_epf_match_device -EXPORT_SYMBOL_GPL vmlinux 0xf2e39d45 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf2f2e570 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xf30b394a fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32a0fbf dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf3358124 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf357d4b8 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xf37a1eee device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xf37d3608 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xf38017aa irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf3803595 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3f89232 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xf3fbe5b0 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf40265eb pci_cleanup_aer_uncorrect_error_status -EXPORT_SYMBOL_GPL vmlinux 0xf4112842 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xf4290727 ftrace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xf44a1103 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xf49ee141 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xf4a1dc7c scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4da71b3 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xf4dc34c5 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0xf4ee296b crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xf4ef47ce iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf509d675 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xf50d3fb2 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xf51c7566 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf5234f16 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54eee7e sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xf55b5199 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xf568bc71 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b060b1 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xf5bc0d0b platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xf5d431a8 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xf5d4454e gmap_sync_dirty_log_pmd -EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0xf5e559f1 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xf5ef0114 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f624e4 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xf5fbfdd4 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xf5fdaac9 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xf60adae6 direct_make_request -EXPORT_SYMBOL_GPL vmlinux 0xf62466cd debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xf6625686 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf68cb43f tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xf68fe8f2 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf69b9254 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xf69e5ff8 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xf6b7a7c3 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xf6bdbfad input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xf6c43459 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d0beae iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf6d487c6 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xf6eb8706 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf71e80bb crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf7453d5f tty_port_tty_wakeup -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 0xf759140b trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xf762be84 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xf77023bf input_class -EXPORT_SYMBOL_GPL vmlinux 0xf78b38af devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xf7aa1e17 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xf7ab80d8 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xf7ada4ab crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7e8b288 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf835d586 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0xf83fdabe ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store -EXPORT_SYMBOL_GPL vmlinux 0xf855fa79 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xf86002ed crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf87d28d8 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xf87fb886 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf883d4ae pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xf89499b2 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf8be840b hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xf8c009d3 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xf8d84633 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xf8dbf9ee gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xf8fef9f1 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xf9199770 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf93c078f __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf94569aa blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9552a05 __online_page_set_limits -EXPORT_SYMBOL_GPL vmlinux 0xf9629459 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xf9633576 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xf9680366 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf98d5cdb alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xf9a0021f __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a85e2b dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xf9e12eac task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xf9e25051 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa32bfa2 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa73936f crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec -EXPORT_SYMBOL_GPL vmlinux 0xfa9512f9 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xfa9bc071 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xfaabfdb7 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfabd0e81 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xfabdc9da crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xface200f d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xfad4b1eb gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfb00109b register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb518f45 use_mm -EXPORT_SYMBOL_GPL vmlinux 0xfb9c9468 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xfb9e69e7 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcc42a9 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xfbea9399 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xfbf9bf47 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc339959 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xfc483505 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xfc4ac7ac sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xfc59b865 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0xfc6120bd __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0xfc7be50c pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xfc8db919 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xfca77faf pci_debug_err_id -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfce3908c blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xfceeba4e freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfd0f8c19 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xfd496261 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xfd52a245 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xfd9a5919 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xfda2c836 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xfda92a14 gmap_pmdp_idte_local -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdbe2749 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xfddcf642 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xfdf42395 sock_zerocopy_put -EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfe0a8c00 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xfe25a033 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xfe2b86eb platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xfe2d0e5d devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe30718c xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xfe3b11eb tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe6258b2 cgroup_rstat_updated -EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xfe7c8f5c virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xfe8ec775 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xfe97f885 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfed00eef kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfed78f72 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfed90dad sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfeff96ad sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff13b8b7 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xff13d8c6 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xff28d772 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xff569711 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0xff6462c5 cio_resume -EXPORT_SYMBOL_GPL vmlinux 0xff6f7f3d disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xff837d9d sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xff9ae815 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc02679 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xffc2840d pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xffc6969e gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xffcdc4a9 tod_clock_base -EXPORT_SYMBOL_GPL vmlinux 0xffdf5e4d irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xfff0e1d6 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfff9ca62 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xfffaad57 fwnode_get_parent reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/s390x/generic.compiler +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/s390x/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/s390x/generic.modules +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/s390x/generic.modules @@ -1,964 +0,0 @@ -8021q -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -act_bpf -act_connmark -act_csum -act_ct -act_ctinfo -act_gact -act_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 -ansi_cprng -anubis -appldata_mem -appldata_net_sum -appldata_os -aquantia -arc4 -arp_tables -arpt_mangle -arptable_filter -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at803x -aufs -auth_rpcgss -authenc -authencesn -bcache -bcm-phy-lib -bcm7xxx -bcm87xx -bfq -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bochs-drm -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 -chsc_sch -cicada -cifs -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_rsvp -cls_rsvp6 -cls_tcindex -cls_u32 -cmac -coda -cordic -cortina -crc-itu-t -crc32-vx_s390 -crc32_generic -crc4 -crc64 -crc7 -crc8 -cryptd -crypto_engine -crypto_user -ctcm -cuse -dasd_diag_mod -dasd_eckd_mod -dasd_fba_mod -dasd_mod -davicom -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dcssblk -deflate -des_generic -des_s390 -device_dax -diag -diag288_wdt -dlm -dm-bio-prison -dm-bufio -dm-cache -dm-cache-smq -dm-clone -dm-crypt -dm-delay -dm-era -dm-flakey -dm-integrity -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 -dp83tc811 -drbd -drm -drm_kms_helper -drm_panel_orientation_quirks -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 -echainiv -ecrdsa_generic -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -eql -erofs -esp4 -esp4_offload -esp6 -esp6_offload -essiv -et1011c -failover -faulty -fb_sys_fops -fcoe -fcrypt -fixed_phy -fou -fou6 -fpga-mgr -fs3270 -fscache -fsm -garp -geneve -genwqe_card -gfs2 -ghash_s390 -gpio-bt8xx -gpio-generic -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-rdc321x -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 -khazad -kheaders -kmem -kyber-iosched -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -lcs -libarc4 -libceph -libcrc32c -libdes -libfc -libfcoe -libiscsi -libiscsi_tcp -libphy -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 -memory-notifier-error-inject -mena21_wdt -mfd-core -michael_mic -micrel -microchip -microchip_t1 -mip6 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlxfw -mlxsw_core -mlxsw_pci -mlxsw_spectrum -mlxsw_switchib -mlxsw_switchx2 -monreader -monwriter -mpls_gso -mpls_iptunnel -mpls_router -mpt3sas -mrp -mscc -msdos -national -nb8800 -nbd -net_failover -netconsole -netdevsim -netiucv -netlink_diag -nf_conncount -nf_conntrack -nf_conntrack_amanda -nf_conntrack_bridge -nf_conntrack_broadcast -nf_conntrack_ftp -nf_conntrack_h323 -nf_conntrack_irc -nf_conntrack_netbios_ns -nf_conntrack_netlink -nf_conntrack_pptp -nf_conntrack_sane -nf_conntrack_sip -nf_conntrack_snmp -nf_conntrack_tftp -nf_defrag_ipv4 -nf_defrag_ipv6 -nf_dup_ipv4 -nf_dup_ipv6 -nf_dup_netdev -nf_flow_table -nf_flow_table_inet -nf_flow_table_ipv4 -nf_flow_table_ipv6 -nf_log_arp -nf_log_bridge -nf_log_common -nf_log_ipv4 -nf_log_ipv6 -nf_log_netdev -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_tables_set -nf_tproxy_ipv4 -nf_tproxy_ipv6 -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_log -nfnetlink_osf -nfnetlink_queue -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfsd -nfsv2 -nfsv3 -nfsv4 -nft_chain_nat -nft_compat -nft_connlimit -nft_counter -nft_ct -nft_dup_ipv4 -nft_dup_ipv6 -nft_dup_netdev -nft_fib -nft_fib_inet -nft_fib_ipv4 -nft_fib_ipv6 -nft_fib_netdev -nft_flow_offload -nft_fwd_netdev -nft_hash -nft_limit -nft_log -nft_masq -nft_meta_bridge -nft_nat -nft_numgen -nft_objref -nft_osf -nft_queue -nft_quota -nft_redir -nft_reject -nft_reject_bridge -nft_reject_inet -nft_reject_ipv4 -nft_reject_ipv6 -nft_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 -null_blk -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -objagg -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ofb -openvswitch -oprofile -orangefs -overlay -p8022 -paes_s390 -parman -pblk -pcbc -pci-pf-stub -pci-stub -pcrypt -pkcs7_test_key -pkcs8_key_parser -pkey -pktgen -pnet -poly1305_generic -pps_core -pretimeout_panic -prng -psample -psnap -ptp -qdio -qeth -qeth_l2 -qeth_l3 -qsemi -quota_tree -quota_v1 -quota_v2 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -raw_diag -rbd -rcuperf -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -rmd128 -rmd160 -rmd256 -rmd320 -rockchip -rpcrdma -rpcsec_gss_krb5 -rxrpc -s390-trng -salsa20_generic -sch_cake -sch_cbq -sch_cbs -sch_choke -sch_codel -sch_drr -sch_dsmark -sch_etf -sch_fq -sch_fq_codel -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 -seed -serial_core -serpent_generic -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 -sm3_generic -sm4_generic -smc -smc_diag -smsc -smsgiucv_app -softdog -spl -st -st_drv -ste10Xp -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stp -streebog_generic -sunrpc -switchtec -syscopyarea -sysfillrect -sysimgblt -tap -tape -tape_34xx -tape_3590 -tape_class -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tcm_fc -tcm_loop -tcp_bbr -tcp_bic -tcp_cdg -tcp_dctcp -tcp_diag -tcp_highspeed -tcp_htcp -tcp_hybla -tcp_illinois -tcp_lp -tcp_nv -tcp_scalable -tcp_vegas -tcp_veno -tcp_westwood -tcp_yeah -tcrypt -tea -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -teranetics -test_blackhole_dev -test_bpf -tgr192 -tipc -tls -torture -tpm_key_parser -tpm_vtpm_proxy -trace-printk -ts_bm -ts_fsm -ts_kmp -ttm -ttynull -tunnel4 -tunnel6 -twofish_common -twofish_generic -uPD60620 -uartlite -udf -udp_diag -udp_tunnel -uio -unix_diag -veth -vfio -vfio-pci -vfio_ap -vfio_ccw -vfio_iommu_type1 -vfio_mdev -vfio_virqfd -vhost -vhost_net -vhost_scsi -vhost_vsock -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -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 -vsockmon -vx855 -vxlan -wireguard -wp512 -x_tables -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xilinx_gmii2rgmii -xlnx_vcu -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 -zlib_deflate -zlua -znvpair -zram -zstd -zstd_compress -zunicode reverted: --- linux-azure-5.4.0/debian.master/abi/5.4.0-79.88/s390x/generic.retpoline +++ linux-azure-5.4.0.orig/debian.master/abi/5.4.0-79.88/s390x/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED diff -u linux-azure-5.4.0/debian.master/changelog linux-azure-5.4.0/debian.master/changelog --- linux-azure-5.4.0/debian.master/changelog +++ linux-azure-5.4.0/debian.master/changelog @@ -1,3 +1,9091 @@ +linux (5.4.0-139.156) focal; urgency=medium + + * focal/linux: 5.4.0-139.156 -proposed tracker (LP: #2003486) + + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Stefan Bader Fri, 20 Jan 2023 15:39:15 +0100 + +linux (5.4.0-138.155) focal; urgency=medium + + * focal/linux: 5.4.0-138.155 -proposed tracker (LP: #2001845) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Focal update: v5.4.224 upstream stable release (LP: #1999273) + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - i2c: xiic: Add platform module alias + - xfs: don't fail verifier on empty attr3 leaf block + - xfs: use ordered buffers to initialize dquot buffers during quotacheck + - xfs: gut error handling in xfs_trans_unreserve_and_mod_sb() + - xfs: group quota should return EDQUOT when prj quota enabled + - xfs: don't fail unwritten extent conversion on writeback due to edquot + - xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - block, bfq: protect 'bfqd->queued' by 'bfqd->lock' + - binder: fix UAF of alloc->vma in race with munmap() + - btrfs: fix type of parameter generation in btrfs_get_dentry + - tcp/udp: Make early_demux back namespacified. + - kprobe: reverse kp->flags when arm_kprobe failed + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after CR0 write + - mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - ipc: remove memcg accounting for sops objects in do_semtimedop() + - Linux 5.4.224 + + * Focal update: v5.4.223 upstream stable release (LP: #1999179) + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: au88x0: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - fbdev: smscufx: Fix several use-after-free bugs + - mac802154: Fix LQI recording + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - kernfs: fix use-after-free in __kernfs_remove + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - xfs: finish dfops on every insert range shift iteration + - xfs: clear XFS_DQ_FREEING if we can't lock the dquot buffer to flush + - xfs: force the log after remapping a synchronous-writes file + - Xen/gntdev: don't ignore kernel unmapping error + - xen/gntdev: Prevent leaking grants + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - arc: iounmap() arg is volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: fix indefinite deferral of RTO with SACK reneging + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - nh: fix scope used to find saddr when adding non gw nh + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5: Fix possible use-after-free in async command interface + - net: enetc: survive memory pressure without crashing + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - Linux 5.4.223 + + * Focal update: v5.4.222 upstream stable release (LP: #1997994) + - once: fix section mismatch on clang builds + - Linux 5.4.222 + + * Focal update: v5.4.221 upstream stable release (LP: #1997993) + - xfs: open code insert range extent split helper + - xfs: rework insert range into an atomic operation + - xfs: rework collapse range into an atomic operation + - xfs: add a function to deal with corrupt buffers post-verifiers + - xfs: xfs_buf_corruption_error should take __this_address + - xfs: fix buffer corruption reporting when xfs_dir3_free_header_check fails + - xfs: check owner of dir3 data blocks + - xfs: check owner of dir3 blocks + - xfs: Use scnprintf() for avoiding potential buffer overflow + - xfs: remove the xfs_disk_dquot_t and xfs_dquot_t + - xfs: remove the xfs_dq_logitem_t typedef + - xfs: remove the xfs_qoff_logitem_t typedef + - xfs: Replace function declaration by actual definition + - xfs: factor out quotaoff intent AIL removal and memory free + - xfs: fix unmount hang and memory leak on shutdown during quotaoff + - xfs: preserve default grace interval during quotacheck + - xfs: Lower CIL flush limit for large logs + - xfs: Throttle commits on delayed background CIL push + - xfs: factor common AIL item deletion code + - xfs: tail updates only need to occur when LSN changes + - xfs: don't write a corrupt unmount record to force summary counter recalc + - xfs: trylock underlying buffer on dquot flush + - xfs: factor out a new xfs_log_force_inode helper + - xfs: reflink should force the log out if mounted with wsync + - xfs: move inode flush to the sync workqueue + - xfs: fix use-after-free on CIL context on shutdown + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: venus: dec: Handle the case where find_format fails + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - r8152: add PID for the Lenovo OneLink+ Dock + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - HID: magicmouse: Do not set BTN_MOUSE on double report + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: hns: fix possible memory leak in hnae_ae_register() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - ACPI: video: Force backlight native for more TongFang devices + - Makefile.debug: re-enable debug info for .S files + - hv_netvsc: Fix race between VF offering and VF association message from host + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - Linux 5.4.221 + + * Focal update: v5.4.220 upstream stable release (LP: #1996812) + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - usb: add quirks for Lenovo OneLink+ Dock + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: sdhci-sprd: Fix minimum clock limit + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - regulator: qcom_rpm: Fix circular deferral regression + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - riscv: Allow PROT_WRITE-only mmap() + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - powerpc/boot: Explicitly disable usage of SPE instructions + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - btrfs: fix race between quota enable and quota rescan ioctl + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - nilfs2: fix use-after-free bug of struct nilfs_root + - jbd2: wake up journal waiters in FIFO order, not LIFO + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: place buffer head allocation before handle start + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Fix race between reset page and reading page + - media: cedrus: Set the platform driver data earlier + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - gcov: support GCC 12.1 and newer compilers + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - selinux: use "grep -E" instead of "egrep" + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - userfaultfd: open userfaultfds with O_RDONLY + - sh: machvec: Use char[] for section boundaries + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - nfsd: Fix a memory leak in an error handling path + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - x86/microcode/AMD: Track patch allocation size explicitly + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm/mipi-dsi: Detach devices when removing the host + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - drm: fix drm_mipi_dbi build errors + - drm/bridge: megachips: Fix a null pointer dereference bug + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/omap: dss: Fix refcount leak bugs + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: inkern: only release the device node when done with it + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - clk: meson: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - drivers: serial: jsm: fix some leaks in probe + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - iommu/iova: Fix module config properly + - kbuild: remove the target in signal traps when interrupted + - crypto: cavium - prevent integer overflow loading firmware + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - Bluetooth: L2CAP: Fix user-after-free + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/amd/display: fix overflow on MIN_I64 definition + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - drm/amdgpu: fix initial connector audio value + - mmc: sdhci-msm: add compatible string check for sdm670 + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - btrfs: scrub: try to fix super block errors + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - HID: roccat: Fix use-after-free in roccat_read() + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - clk: bcm2835: Make peripheral PLLC critical + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - net: ieee802154: return -EINVAL for unknown addr type + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - ext4: continue to expand file system when the target size doesn't reach + - efi: libstub: drop pointless get_memory_map() call + - inet: fully convert sk->sk_rx_dst to RCU rules + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - Linux 5.4.220 + + * Focal update: v5.4.219 upstream stable release (LP: #1996804) + - Linux 5.4.219 + + -- Luke Nowakowski-Krijger Fri, 06 Jan 2023 08:50:27 -0800 + +linux (5.4.0-137.154) focal; urgency=medium + + * focal/linux: 5.4.0-137.154 -proposed tracker (LP: #2001969) + + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + + * CVE-2022-43945 + - NFSD: Cap rsize_bop result based on send buffer size + + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Thadeu Lima de Souza Cascardo Thu, 05 Jan 2023 13:08:58 -0300 + +linux (5.4.0-136.153) focal; urgency=medium + + * focal/linux: 5.4.0-136.153 -proposed tracker (LP: #1997835) + + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + + * [UBUNTU 20.04] KVM: PV: ext call delivered twice when receiver in PSW wait + (LP: #1995941) + - KVM: s390: pv: don't present the ecall interrupt twice + + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + + * Focal update: v5.4.218 upstream stable release (LP: #1995530) + - mm: pagewalk: Fix race between unmap and page walker + - perf tools: Fixup get_current_dir_name() compilation + - firmware: arm_scmi: Add SCMI PM driver remove routine + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - arch: um: Mark the stack non-executable to fix a binutils warning + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - random: restore O_NONBLOCK support + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - Linux 5.4.218 + + * Focal update: v5.4.217 upstream stable release (LP: #1995528) + - xfs: fix misuse of the XFS_ATTR_INCOMPLETE flag + - xfs: introduce XFS_MAX_FILEOFF + - xfs: truncate should remove all blocks, not just to the end of the page + cache + - xfs: fix s_maxbytes computation on 32-bit kernels + - xfs: fix IOCB_NOWAIT handling in xfs_file_dio_aio_read + - xfs: refactor remote attr value buffer invalidation + - xfs: fix memory corruption during remote attr value buffer invalidation + - xfs: move incore structures out of xfs_da_format.h + - xfs: streamline xfs_attr3_leaf_inactive + - xfs: fix uninitialized variable in xfs_attr3_leaf_inactive + - xfs: remove unused variable 'done' + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - docs: update mediator information in CoC docs + - Linux 5.4.217 + + * Focal update: v5.4.216 upstream stable release (LP: #1995526) + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - clk: ingenic-tcu: Properly enable registers before accessing timers + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/migrate_device.c: flush TLB while holding PTL + - mm: fix madivse_pageout mishandling on non-LRU page + - media: dvb_vb2: fix possible out of bound access + - ARM: dts: Move am33xx and am43xx mmc nodes to sdhci-omap driver + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi_sram: Make use of the helper function + devm_platform_ioremap_resource() + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - usbnet: Fix memory leak in usbnet_disconnect() + - nvme: add new line after variable declatation + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - selftests: Fix the if conditions of in test_extra_filter() + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - clk: iproc: Do not rely on node name for correct PLL setup + - Linux 5.4.216 + + * Focal update: v5.4.215 upstream stable release (LP: #1993203) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - task_stack, x86/cea: Force-inline stack helpers + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - MAINTAINERS: add Chandan as xfs maintainer for 5.4.y + - iomap: iomap that extends beyond EOF should be marked dirty + - ASoC: nau8824: Fix semaphore unbalance at error paths + - regulator: pfuze100: Fix the global-out-of-bounds access in + pfuze100_regulator_probe() + - rxrpc: Fix local destruction being repeated + - rxrpc: Fix calc of resend age + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/tegra: Align BDL entry to 4KB boundary + - net: usb: qmi_wwan: add Quectel RM520N + - afs: Return -EAGAIN, not -EREMOTEIO, when a file already locked + - MIPS: OCTEON: irq: Fix octeon_irq_force_ciu_mapping() + - mksysmap: Fix the mismatch of 'L0' symbols in System.map + - video: fbdev: pxa3xx-gcu: Fix integer overflow in pxa3xx_gcu_write + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind + - usb: dwc3: Issue core soft reset before enabling run/stop + - usb: dwc3: gadget: Prevent repeat pullup() + - usb: dwc3: gadget: Refactor pullup() + - usb: dwc3: gadget: Don't modify GEVNTCOUNT in pullup() + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: xhci-mtk: get the microframe boundary for ESIT + - usb: xhci-mtk: add only one extra CS for FS/LS INTR + - usb: xhci-mtk: use @sch_tt to check whether need do TT schedule + - usb: xhci-mtk: add a function to (un)load bandwidth info + - usb: xhci-mtk: add some schedule error number + - usb: xhci-mtk: allow multiple Start-Split in a microframe + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - tty/serial: atmel: RS485 & ISO7816: wait for TXRDY before sending data + - serial: atmel: remove redundant assignment in rs485_config + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - efi: libstub: check Shim mode using MokSBStateRT + - mm/slub: fix to return errno if kmalloc() fails + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: team: Unsync device addresses on ndo_stop + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - iavf: Fix bad page state + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - netfilter: ebtables: fix memory leak when blob is malformed + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - usb: xhci-mtk: fix issue of out-of-bounds array access + - cifs: always initialize struct msghdr smb_msg completely + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/amd/display: Limit user regamma to a valid value + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - xfs: replace -EIO with -EFSCORRUPTED for corrupt metadata + - xfs: slightly tweak an assert in xfs_fs_map_blocks + - xfs: add missing assert in xfs_fsmap_owner_from_rmap + - xfs: range check ri_cnt when recovering log items + - xfs: attach dquots and reserve quota blocks during unwritten conversion + - xfs: convert EIO to EFSCORRUPTED when log contents are invalid + - xfs: constify the buffer pointer arguments to error functions + - xfs: always log corruption errors + - xfs: fix some memory leaks in log recovery + - xfs: stabilize insert range start boundary to avoid COW writeback race + - xfs: use bitops interface for buf log item AIL flag check + - xfs: refactor agfl length computation function + - xfs: split the sunit parameter update into two parts + - xfs: don't commit sunit/swidth updates to disk if that would cause repair + failures + - xfs: fix an ABBA deadlock in xfs_rename + - xfs: fix use-after-free when aborting corrupt attr inactivation + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.4.215 + + * Focal update: v5.4.214 upstream stable release (LP: #1993196) + - drm/msm/rd: Fix FIFO-full deadlock + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - mm: Fix TLB flush for not-first PFNMAP mappings in unmap_region() + - net: dp83822: disable rx error interrupt + - soc: fsl: select FSL_GUTS driver for DPIO + - tracefs: Only clobber mode/uid/gid on remount if asked + - Linux 5.4.214 + + * Focal update: v5.4.213 upstream stable release (LP: #1992211) + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - net: dp83822: disable false carrier interrupt + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - iio: adc: mcp3911: make use of the sign bit + - ieee802154/adf7242: defer destroy_workqueue call + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - Revert "xhci: turn off port power in shutdown" + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - staging: rtl8712: fix use after free bugs + - powerpc: align syscall table for ppc32 + - vt: Clear selection before changing the font + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - binder: fix UAF of ref->proc caused by race condition + - usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - thunderbolt: Use the actual buffer in tb_async_error() + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - net: mac802154: Fix a condition in the receive path + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - btrfs: harden identification of a stale device + - usb: dwc3: fix PHY disable sequence + - usb: dwc3: disable USB core PHY management + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/radeon: add a force flush to delay work when radeon + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - kprobes: Prohibit probes in gate area + - debugfs: add debugfs_lookup_and_remove() + - nvmet: fix a use-after-free + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Optimize single thread migration + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - smb3: missing inode locks in punch hole + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - regulator: core: Clean up on enable failure + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - netfilter: br_netfilter: Drop dst references before setting. + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - i40e: Fix kernel crash during module removal + - RDMA/siw: Pass a pointer to virt_to_page() + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - RDMA/mlx5: Set local port to one when accessing counters + - nvme-tcp: fix UAF when detecting digest errors + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - sch_sfb: Also store skb len before calling child enqueue + - x86/nospec: Fix i386 RSB stuffing + - MIPS: loongson32: ls1c: Fix hang during startup + - Linux 5.4.213 + + * CVE-2022-2663 + - netfilter: nf_conntrack_irc: Fix forged IP logic + + * CVE-2022-3061 + - video: fbdev: i740fb: Error out if 'pixclock' equals zero + + -- Stefan Bader Thu, 24 Nov 2022 16:40:01 +0100 + +linux (5.4.0-135.152) focal; urgency=medium + + * focal/linux: 5.4.0-135.152 -proposed tracker (LP: #1997412) + + * containerd sporadic timeouts (LP: #1996678) + - epoll: call final ep_events_available() check under the lock + - epoll: check for events when removing a timed out thread from the wait queue + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + + * CVE-2022-3594 + - r8152: Rate limit overflow messages + + * CVE-2022-42703 + - mm/rmap.c: don't reuse anon_vma if we just want a copy + + -- Thadeu Lima de Souza Cascardo Wed, 23 Nov 2022 16:51:44 -0300 + +linux (5.4.0-132.148) focal; urgency=medium + + * CVE-2022-42719 + - mac80211: mlme: find auth challenge directly + - wifi: mac80211: don't parse mbssid in assoc response + - wifi: mac80211: fix MBSSID parsing use-after-free + + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + + * fib_nexthop_nongw.sh from ubuntu_kernel_selftests failed on B-5.4 + (LP: #1990800) + - SAUCE: selftests/net: skipping tests for older ip command releases + + * CVE-2022-29901 + - Revert "x86/speculation: Add RSB VM Exit protections" + - Revert "x86/cpu: Add a steppings field to struct x86_cpu_id" + - x86/devicetable: Move x86 specific macro out of generic code + - x86/cpu: Add consistent CPU match macros + - x86/cpu: Add a steppings field to struct x86_cpu_id + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Remove skip_r11rcx + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - x86/speculation: Change FILL_RETURN_BUFFER to work with objtool + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - KVM/VMX: Use TEST %REG,%REG instead of CMP $0,%REG in vmenter.S + - KVM/nVMX: Use __vmx_vcpu_run in nested_vmx_check_vmentry_hw + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/speculation: Disable RRSBA behavior + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts + - x86/speculation: Add RSB VM Exit protections + + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor_idle: Skip dummy wait if kernel is in guest + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + + * cgroup: all controllers mounted when using 'cgroup_no_v1=' (LP: #1988584) + - cgroup-v1: add disabled controller check in cgroup1_parse_param() + + * Focal update: v5.4.212 upstream stable release (LP: #1991156) + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - usb: cdns3: Fix issue for clear halt endpoint + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - sched/deadline: Unthrottle PI boosted threads while enqueuing + - sched/deadline: Fix stale throttling on de-/boosted tasks + - sched/deadline: Fix priority inheritance with multiple scheduling classes + - kernel/sched: Remove dl_boosted flag comment + - xfrm: fix refcount leak in __xfrm_policy_check() + - SUNRPC: RPC level errors should set task->tk_rpc_status + - rose: check NULL rose_loopback_neigh->loopback + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: check if root is readonly while setting security xattr + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - loop: Check for overflow while configuring loop + - asm-generic: sections: refactor memory_intersects + - s390: fix double free of GS and RI CBs on fork() failure + - ACPI: processor: Remove freq Qos request for all CPUs + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - md: call __md_stop_writes in md_stop + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - kbuild: Fix include path in scripts/Makefile.modpost + - Bluetooth: L2CAP: Fix build errors in some archs + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - HID: hidraw: fix memory leak in hidraw_release() + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + - btrfs: introduce btrfs_lookup_match_dir + - btrfs: do not pin logs too early during renames + - btrfs: unify lookup return value when dir entry is missing + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: clear optc underflow before turn off odm clock + - neigh: fix possible DoS due to net iface start/stop loop + - s390/hypfs: avoid error message under KVM + - drm/amd/display: Fix pixel clock programming + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - btrfs: tree-checker: check for overlapping extent items + - lib/vdso: Let do_coarse() return 0 to simplify the callsite + - lib/vdso: Mark do_hres() and do_coarse() as __always_inline + - kprobes: don't call disarm_kprobe() for disabled kprobes + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - Linux 5.4.212 + + * Focal update: v5.4.211 upstream stable release (LP: #1990190) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - igc: Remove _I_PHY_ID checking + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - mm/mremap: hold the rmap lock in write mode when moving page table entries. + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - usbnet: Fix linkwatch use-after-free on disconnect + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - iio: light: isl29028: Fix the warning in isl29028_remove() + - fuse: limit nsec + - serial: mvebu-uart: uart2 error bits clearing + - md-raid10: fix KASAN warning + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - PCI: Add defines for normal and subtractive PCI bridges + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - USB: HCD: Fix URB giveback issue in tasklet function + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - ext2: Add more validity checks for inode counts + - genirq: Don't return error on missing optional irq_request_resources() + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: Add boundary check in put_entry() + - spi: spi-rspi: Fix PIO fallback on RZ platforms + - ARM: findbit: fix overflowing offset + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - soc: fsl: guts: machine variable might be unset + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - arm64: dts: mt7622: fix BPI-R64 WPS button + - erofs: avoid consecutive detection for Highmem memory + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - dm: return early from dm_pr_call() if DM device is suspended + - ath10k: do not enforce interrupt trigger type + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm: adv7511: override i2c address of cec before accessing it + - i2c: Fix a potential use after free + - media: tw686x: Register the irq at the end of probe + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/vc4: dsi: Correct DSI divider calculations + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm: bridge: sii8620: fix possible off-by-one + - drm/msm/mdp5: Fix global state lock backoff + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - fs: check FMODE_LSEEK to control internal pipe splicing + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - selftests/bpf: fix a test for snprintf() overflow + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - i2c: cadence: Support PEC for SMBus block read + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - iavf: Fix max_rate limiting + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: xhci: tegra: Fix error check + - clk: mediatek: reset: Fix written reset bit offset + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - soundwire: bus_type: fix remove and shutdown support + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - scsi: smartpqi: Fix DMA direction for RAID requests + - usb: gadget: udc: amd5536 depends on HAS_DMA + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - USB: serial: fix tty-port initialized comments + - platform/olpc: Fix uninitialized data in debugfs write + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - null_blk: fix ida error handling in null_add_dev() + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - profiling: fix shift too large makes kernel panic + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Do not change FSM state in subchannel event + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - iommu/exynos: Handle failed IOMMU device registration properly + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - kfifo: fix kfifo_to_user() return type + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - s390/zcore: fix race when reading from hardware system area + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - x86/olpc: fix 'logical not is only applied to the left hand side' + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - btrfs: reset block group chunk force if we have to wait + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: make sure ext4_append() always allocates new block + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - intel_th: pci: Add Raptor Lake-S CPU support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Meteor Lake-P support + - dm raid: fix address sanitizer warning in raid_resume + - dm raid: fix address sanitizer warning in raid_status + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - dm writecache: set a default MAX_WRITEBACK_JOBS + - ACPI: CPPC: Do not prevent CPPC from working in the future + - timekeeping: contribute wall clock to rng on time change + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - btrfs: reject log replay if there is unsupported RO compat flag + - KVM: Add infrastructure and macro to mark VM as bugged + - 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() + - tcp: fix over estimation in sk_forced_mem_schedule() + - scsi: sg: Allow waiting for commands to complete on removed device + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - net/9p: Initialize the iounit field during fid creation + - net_sched: cls_route: disallow handle of 0 + - ALSA: info: Fix llseek return value when using callback + - rds: add missing barrier to release_refill + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - btrfs: fix lost error handling when looking up extended ref on log replay + - tracing: Have filter accept "common_cpu" to be consistent + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - can: mcp251x: Fix race condition on receive interrupt + - sunrpc: fix expiry of auth creds + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - devlink: Fix use-after-free after a failed reload + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - tools/vm/slabinfo: use alphabetic order when two values are equal + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - dpaa2-eth: trace the allocated address instead of page struct + - tee: add overflow check in register_shm_helper() + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - clk: rockchip: add sclk_mac_lbtest to rk3188_critical_clocks + - netfilter: nf_tables: really skip inactive sets when allocating name + - powerpc/pci: Fix get_phb_number() locking + - net: dsa: mv88e6060: prevent crash on an unused port + - net: moxa: pass pdev instead of ndev to DMA functions + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - ice: Ignore EEXIST when setting promisc mode + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - igb: Add lock to avoid data race + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - usb: cdns3 fix use-after-free at workaround 2 + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - gadgetfs: ep_io - wait until IRQ finishes + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - watchdog: export lockup_detector_reconfigure + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - tracing/probes: Have kprobes and uprobes use $COMM too + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - Linux 5.4.211 + + * CVE-2022-3028 + - af_key: Do not call xfrm_probe_algs in parallel + + * CVE-2022-2978 + - fs: fix UAF/GPF bug in nilfs_mdt_destroy + + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + + -- Stefan Bader Mon, 17 Oct 2022 17:19:41 +0200 + +linux (5.4.0-131.147) focal; urgency=medium + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + + * CVE-2022-41674 + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + + -- Thadeu Lima de Souza Cascardo Fri, 14 Oct 2022 13:32:31 -0300 + +linux (5.4.0-128.144) focal; urgency=medium + + * focal/linux: 5.4.0-128.144 -proposed tracker (LP: #1990152) + + * CVE-2022-3176 + - io_uring: disable polling pollfree files + + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) + - selftests/net: test nexthop without gw + + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) // icmp_redirect.sh in ubuntu_kernel_selftests failed on + Jammy 5.15.0-49.55 (LP: #1990124) + - ip: fix triggering of 'icmp redirect' + + -- Stefan Bader Tue, 20 Sep 2022 11:19:18 +0200 + +linux (5.4.0-127.143) focal; urgency=medium + + * focal/linux: 5.4.0-127.143 -proposed tracker (LP: #1989892) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.09.19) + + * [UBUNTU 20.04] mlx5 driver crashes on accessing device attributes during + recovery (LP: #1987287) + - net/mlx5: Avoid processing commands before cmdif is ready + + * Focal update: v5.4.210 upstream stable release (LP: #1989230) + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - bpf: Verifer, adjust_scalar_min_max_vals to always call update_reg_bounds() + - selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads + - bpf: Test_verifier, #70 error message updates for 32-bit right shift + - KVM: Don't null dereference ops->destroy + - selftests: KVM: Handle compiler optimizations in ucall + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.4.210 + + * Focal update: v5.4.209 upstream stable release (LP: #1989228) + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put + - ntfs: fix use-after-free in ntfs_ucsncmp() + - s390/archrandom: prevent CPACF trng invocations in interrupt context + - tcp: Fix data-races around sysctl_tcp_dsack. + - tcp: Fix a data-race around sysctl_tcp_app_win. + - tcp: Fix a data-race around sysctl_tcp_adv_win_scale. + - tcp: Fix a data-race around sysctl_tcp_frto. + - tcp: Fix a data-race around sysctl_tcp_nometrics_save. + - ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) + - ice: do not setup vlan for loopback VSI + - scsi: ufs: host: Hold reference returned by of_parse_phandle() + - tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. + - tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. + - net: ping6: Fix memleak in ipv6_renew_options(). + - ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr + - igmp: Fix data-races around sysctl_igmp_qrv. + - net: sungem_phy: Add of_node_put() for reference returned by of_get_parent() + - tcp: Fix a data-race around sysctl_tcp_min_tso_segs. + - tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. + - tcp: Fix a data-race around sysctl_tcp_autocorking. + - tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. + - Documentation: fix sctp_wmem in ip-sysctl.rst + - tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. + - i40e: Fix interface init with MSI interrupts (no MSI-X) + - sctp: fix sleep in atomic context bug in timer handlers + - virtio-net: fix the race between refill work and close + - perf symbol: Correct address for bss symbols + - sfc: disable softirqs for ptp TX + - sctp: leave the err path free in sctp_stream_init to sctp_stream_free + - ARM: crypto: comment out gcc warning that breaks clang builds + - mt7601u: add USB device ID for some versions of XiaoDu WiFi Dongle. + - scsi: core: Fix race between handling STS_RESOURCE and completion + - Linux 5.4.209 + + * Focal update: v5.4.208 upstream stable release (LP: #1988225) + - pinctrl: stm32: fix optional IRQ support to gpios + - riscv: add as-options for modules with assembly compontents + - mlxsw: spectrum_router: Fix IPv4 nexthop gateway indication + - lockdown: Fix kexec lockdown bypass with ima policy + - xen/gntdev: Ignore failure to unmap INVALID_GRANT_HANDLE + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - serial: mvebu-uart: correctly report configured baudrate value + - xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in + xfrm_bundle_lookup() + - power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe + - pinctrl: ralink: Check for null return of devm_kcalloc + - perf/core: Fix data race between perf_event_set_output() and + perf_mmap_close() + - igc: Reinstate IGC_REMOVED logic and implement it properly + - ip: Fix data-races around sysctl_ip_no_pmtu_disc. + - ip: Fix data-races around sysctl_ip_fwd_use_pmtu. + - ip: Fix data-races around sysctl_ip_nonlocal_bind. + - ip: Fix a data-race around sysctl_fwmark_reflect. + - tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept. + - tcp: Fix data-races around sysctl_tcp_mtu_probing. + - tcp: Fix data-races around sysctl_tcp_base_mss. + - tcp: Fix data-races around sysctl_tcp_min_snd_mss. + - tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor. + - tcp: Fix a data-race around sysctl_tcp_probe_threshold. + - tcp: Fix a data-race around sysctl_tcp_probe_interval. + - i2c: cadence: Change large transfer count reset logic to be unconditional + - net: stmmac: fix dma queue left shift overflow issue + - net/tls: Fix race in TLS device down flow + - igmp: Fix data-races around sysctl_igmp_llm_reports. + - igmp: Fix a data-race around sysctl_igmp_max_memberships. + - tcp: Fix data-races around sysctl_tcp_syncookies. + - tcp: Fix data-races around sysctl_tcp_reordering. + - tcp: Fix data-races around some timeout sysctl knobs. + - tcp: Fix a data-race around sysctl_tcp_notsent_lowat. + - tcp: Fix a data-race around sysctl_tcp_tw_reuse. + - tcp: Fix data-races around sysctl_max_syn_backlog. + - tcp: Fix data-races around sysctl_tcp_fastopen. + - iavf: Fix handling of dummy receive descriptors + - i40e: Fix erroneous adapter reinitialization during recovery process + - ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero + - gpio: pca953x: only use single read/write for No AI mode + - be2net: Fix buffer overflow in be_get_module_eeprom + - ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. + - udp: Fix a data-race around sysctl_udp_l3mdev_accept. + - tcp: Fix data-races around sysctl knobs related to SYN option. + - tcp: Fix a data-race around sysctl_tcp_early_retrans. + - tcp: Fix data-races around sysctl_tcp_recovery. + - tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. + - tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. + - tcp: Fix a data-race around sysctl_tcp_retrans_collapse. + - tcp: Fix a data-race around sysctl_tcp_stdurg. + - tcp: Fix a data-race around sysctl_tcp_rfc1337. + - tcp: Fix data-races around sysctl_tcp_max_reordering. + - spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA + transfers + - mm/mempolicy: fix uninit-value in mpol_rebind_policy() + - bpf: Make sure mac_header was set before using it + - dlm: fix pending remove if msg allocation fails + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - locking/refcount: Define constants for saturation and max refcount values + - locking/refcount: Ensure integer operands are treated as signed + - locking/refcount: Remove unused refcount_*_checked() variants + - locking/refcount: Move the bulk of the REFCOUNT_FULL implementation into the + header + - locking/refcount: Improve performance of generic REFCOUNT_FULL code + - locking/refcount: Move saturation warnings out of line + - locking/refcount: Consolidate REFCOUNT_{MAX,SATURATED} definitions + - locking/refcount: Consolidate implementations of refcount_t + - [Config] updateconfigs for REFCOUNT_FULL + - x86: get rid of small constant size cases in raw_copy_{to,from}_user() + - x86/uaccess: Implement macros for CMPXCHG on user addresses + - mmap locking API: initial implementation as rwsem wrappers + - x86/mce: Deduplicate exception handling + - bitfield.h: Fix "type of reg too small for mask" test + - ALSA: memalloc: Align buffer allocations in page size + - Bluetooth: Add bt_skb_sendmsg helper + - Bluetooth: Add bt_skb_sendmmsg helper + - Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg + - Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg + - Bluetooth: Fix passing NULL to PTR_ERR + - Bluetooth: SCO: Fix sco_send_frame returning skb->len + - Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks + - tty: drivers/tty/, stop using tty_schedule_flip() + - tty: the rest, stop using tty_schedule_flip() + - tty: drop tty_schedule_flip() + - tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() + - tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() + - x86: drop bogus "cc" clobber from __try_cmpxchg_user_asm() + - Linux 5.4.208 + + * Focal update: v5.4.207 upstream stable release (LP: #1988219) + - ALSA: hda - Add fixup for Dell Latitidue E5430 + - ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 + - ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop + - xen/netback: avoid entering xenvif_rx_next_skb() with an empty rx queue + - tracing/histograms: Fix memory leak problem + - net: sock: tracing: Fix sock_exceed_buf_limit not to dereference stale + pointer + - ip: fix dflt addr selection for connected nexthop + - ARM: 9213/1: Print message about disabled Spectre workarounds only once + - ARM: 9214/1: alignment: advance IT state after emulating Thumb instruction + - wifi: mac80211: fix queue selection for mesh/OCB interfaces + - cgroup: Use separate src/dst nodes when preloading css_sets for migration + - drm/panfrost: Fix shrinker list corruption by madvise IOCTL + - nilfs2: fix incorrect masking of permission flags for symlinks + - Revert "evm: Fix memleak in init_desc" + - sched/rt: Disable RT_RUNTIME_SHARE by default + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ARM: dts: imx6qdl-ts7970: Fix ngpio typo and count + - ARM: 9209/1: Spectre-BHB: avoid pr_info() every time a CPU comes out of idle + - ARM: 9210/1: Mark the FDT_FIXED sections as shareable + - drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() + - ima: Fix a potential integer overflow in ima_appraise_measurement + - ASoC: sgtl5000: Fix noise on shutdown/remove + - net: stmmac: dwc-qos: Disable split header for Tegra194 + - inetpeer: Fix data-races around sysctl. + - net: Fix data-races around sysctl_mem. + - cipso: Fix data-races around sysctl. + - icmp: Fix data-races around sysctl. + - ipv4: Fix a data-race around sysctl_fib_sync_mem. + - ARM: dts: at91: sama5d2: Fix typo in i2s1 node + - ARM: dts: sunxi: Fix SPI NOR campatible on Orange Pi Zero + - drm/i915/gt: Serialize TLB invalidates with GT resets + - icmp: Fix a data-race around sysctl_icmp_ratelimit. + - icmp: Fix a data-race around sysctl_icmp_ratemask. + - raw: Fix a data-race around sysctl_raw_l3mdev_accept. + - ipv4: Fix data-races around sysctl_ip_dynaddr. + - net: ftgmac100: Hold reference returned by of_get_child_by_name() + - sfc: fix use after free when disabling sriov + - seg6: fix skb checksum evaluation in SRH encapsulation/insertion + - seg6: fix skb checksum in SRv6 End.B6 and End.B6.Encaps behaviors + - seg6: bpf: fix skb checksum in bpf_push_seg6_encap() + - sfc: fix kernel panic when creating VF + - mm: sysctl: fix missing numa_stat when !CONFIG_HUGETLB_PAGE + - virtio_mmio: Add missing PM calls to freeze/restore + - virtio_mmio: Restore guest page size on resume + - netfilter: br_netfilter: do not skip all hooks with 0 priority + - cpufreq: pmac32-cpufreq: Fix refcount leak bug + - platform/x86: hp-wmi: Ignore Sanitization Mode event + - net: tipc: fix possible refcount leak in tipc_sk_create() + - NFC: nxp-nci: don't print header length mismatch on i2c error + - nvme: fix regression when disconnect a recovering ctrl + - net: sfp: fix memory leak in sfp_probe() + - ASoC: ops: Fix off by one in range control validation + - ASoC: wm5110: Fix DRE control + - ASoC: cs47l15: Fix event generation for low power mux control + - ASoC: madera: Fix event generation for OUT1 demux + - ASoC: madera: Fix event generation for rate controls + - irqchip: or1k-pic: Undefine mask_ack for level triggered hardware + - x86: Clear .brk area at early boot + - soc: ixp4xx/npe: Fix unused match warning + - ARM: dts: stm32: use the correct clock source for CEC on stm32mp151 + - signal handling: don't use BUG_ON() for debugging + - USB: serial: ftdi_sio: add Belimo device ids + - usb: typec: add missing uevent when partner support PD + - usb: dwc3: gadget: Fix event pending check + - tty: serial: samsung_tty: set dma burst_size to 1 + - serial: 8250: fix return error code in serial8250_request_std_resource() + - serial: stm32: Clear prev values before setting RTS delays + - serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle + - can: m_can: m_can_tx_handler(): fix use after free of skb + - Linux 5.4.207 + + * Focal update: v5.4.206 upstream stable release (LP: #1988215) + - Linux 5.4.206 + + * Focal update: v5.4.205 upstream stable release (LP: #1988214) + - esp: limit skb_page_frag_refill use to a single page + - mm/slub: add missing TID updates on slab deactivation + - can: bcm: use call_rcu() instead of costly synchronize_rcu() + - can: grcan: grcan_probe(): remove extra of_node_get() + - can: gs_usb: gs_usb_open/close(): fix memory leak + - usbnet: fix memory leak in error case + - net: rose: fix UAF bug caused by rose_t0timer_expiry + - iommu/vt-d: Fix PCI bus rescan device hot add + - fbdev: fbmem: Fix logo center image dx issue + - video: of_display_timing.h: include errno.h + - powerpc/powernv: delay rng platform device creation until later in boot + - can: kvaser_usb: replace run-time checks with struct kvaser_usb_driver_info + - can: kvaser_usb: kvaser_usb_leaf: fix CAN clock frequency regression + - can: kvaser_usb: kvaser_usb_leaf: fix bittiming limits + - xfs: remove incorrect ASSERT in xfs_rename + - ARM: meson: Fix refcount leak in meson_smp_prepare_cpus + - pinctrl: sunxi: a83t: Fix NAND function name for some pins + - pinctrl: sunxi: sunxi_pconf_set: use correct offset + - ARM: at91: pm: use proper compatible for sama5d2's rtc + - ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt + - ibmvnic: Properly dispose of all skbs during a failover. + - selftests: forwarding: fix flood_unicast_test when h2 supports + IFF_UNICAST_FLT + - selftests: forwarding: fix learning_test when h1 supports IFF_UNICAST_FLT + - selftests: forwarding: fix error message in learning_test + - i2c: cadence: Unregister the clk notifier in error path + - dmaengine: imx-sdma: Allow imx8m for imx7 FW revs + - misc: rtsx_usb: fix use of dma mapped buffer for usb bulk transfer + - misc: rtsx_usb: use separate command and response buffers + - misc: rtsx_usb: set return value in rsp_buf alloc err path + - dt-bindings: dma: allwinner,sun50i-a64-dma: Fix min/max typo + - ida: don't use BUG_ON() for debugging + - dmaengine: pl330: Fix lockdep warning about non-static key + - dmaengine: at_xdma: handle errors of at_xdmac_alloc_desc() correctly + - dmaengine: ti: Fix refcount leak in ti_dra7_xbar_route_allocate + - dmaengine: ti: Add missing put_device in ti_dra7_xbar_route_allocate + - Linux 5.4.205 + + * Focal update: v5.4.204 upstream stable release (LP: #1988212) + - ipv6: take care of disable_policy when restoring routes + - nvdimm: Fix badblocks clear off-by-one error + - powerpc/prom_init: Fix kernel config grep + - powerpc/bpf: Fix use of user_pt_regs in uapi + - dm raid: fix accesses beyond end of raid member array + - dm raid: fix KASAN warning in raid5_add_disks + - s390/archrandom: simplify back to earlier design and initialize earlier + - SUNRPC: Fix READ_PLUS crasher + - net: rose: fix UAF bugs caused by timer handler + - net: usb: ax88179_178a: Fix packet receiving + - virtio-net: fix race between ndo_open() and virtio_device_ready() + - selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test + - net: tun: unlink NAPI from device on destruction + - net: tun: stop NAPI when detaching queues + - RDMA/qedr: Fix reporting QP timeout attribute + - linux/dim: Fix divide by 0 in RDMA DIM + - usbnet: fix memory allocation in helpers + - net: ipv6: unexport __init-annotated seg6_hmac_net_init() + - caif_virtio: fix race between virtio_device_ready() and ndo_open() + - PM / devfreq: exynos-ppmu: Fix refcount leak in of_get_devfreq_events + - s390: remove unneeded 'select BUILD_BIN2C' + - netfilter: nft_dynset: restore set element counter when failing to update + - net/sched: act_api: Notify user space if any actions were flushed before + error + - net: bonding: fix possible NULL deref in rlb code + - net: bonding: fix use-after-free after 802.3ad slave unbind + - nfc: nfcmrvl: Fix irq_of_parse_and_map() return value + - NFC: nxp-nci: Don't issue a zero length i2c_master_read() + - net: tun: avoid disabling NAPI twice + - xen/gntdev: Avoid blocking in unmap_grant_pages() + - hwmon: (ibmaem) don't call platform_device_del() if platform_device_add() + fails + - net: dsa: bcm_sf2: force pause link settings + - sit: use min + - ipv6/sit: fix ipip6_tunnel_get_prl return value + - rseq/selftests,x86_64: Add rseq_offset_deref_addv() + - selftests/rseq: remove ARRAY_SIZE define from individual tests + - selftests/rseq: introduce own copy of rseq uapi header + - selftests/rseq: Remove useless assignment to cpu variable + - selftests/rseq: Remove volatile from __rseq_abi + - selftests/rseq: Introduce rseq_get_abi() helper + - selftests/rseq: Introduce thread pointer getters + - selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35 + - selftests/rseq: Fix ppc32: wrong rseq_cs 32-bit field pointer on big endian + - selftests/rseq: Fix ppc32 missing instruction selection "u" and "x" for + load/store + - selftests/rseq: Fix ppc32 offsets by using long rather than off_t + - selftests/rseq: Fix warnings about #if checks of undefined tokens + - selftests/rseq: Remove arm/mips asm goto compiler work-around + - selftests/rseq: Fix: work-around asm goto compiler bugs + - selftests/rseq: x86-64: use %fs segment selector for accessing rseq thread + area + - selftests/rseq: x86-32: use %gs segment selector for accessing rseq thread + area + - selftests/rseq: Change type of rseq_offset to ptrdiff_t + - xen/blkfront: fix leaking data in shared pages + - xen/netfront: fix leaking data in shared pages + - xen/netfront: force data bouncing when backend is untrusted + - xen/blkfront: force data bouncing when backend is untrusted + - xen/arm: Fix race in RB-tree based P2M accounting + - net: usb: qmi_wwan: add Telit 0x1060 composition + - net: usb: qmi_wwan: add Telit 0x1070 composition + - clocksource/drivers/ixp4xx: remove EXPORT_SYMBOL_GPL from + ixp4xx_timer_setup() + - Linux 5.4.204 + + -- Stefan Bader Fri, 16 Sep 2022 11:05:09 +0200 + +linux (5.4.0-126.142) focal; urgency=medium + + * focal/linux: 5.4.0-126.142 -proposed tracker (LP: #1987819) + + * [SRU] fnic driver on needs to be updated to 1.6.0.53 on Focal (LP: #1984011) + - scsi: fnic: Change shost_printk() to FNIC_FCS_DBG() + - scsi: fnic: Avoid looping in TRANS ETH on unload + - scsi: fnic: Change shost_printk() to FNIC_MAIN_DBG() + - scsi: fnic: Set scsi_set_resid() only for underflow + - scsi: fnic: Validate io_req before others + + * Focal update: v5.4.203 upstream stable release (LP: #1986999) + - drm: remove drm_fb_helper_modinit + - powerpc/ftrace: Remove ftrace init tramp once kernel init is complete + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - net: mscc: ocelot: allow unregistered IP multicast flooding + - ARM: 8989/1: use .fpu assembler directives instead of assembler arguments + - ARM: 8990/1: use VFP assembler mnemonics in register load/store macros + - ARM: 8971/1: replace the sole use of a symbol with its definition + - crypto: arm/sha256-neon - avoid ADRL pseudo instruction + - crypto: arm/sha512-neon - avoid ADRL pseudo instruction + - ARM: 8933/1: replace Sun/Solaris style flag on section directive + - ARM: 8929/1: use APSR_nzcv instead of r15 as mrc operand + - ARM: OMAP2+: drop unnecessary adrl + - ARM: 9029/1: Make iwmmxt.S support Clang's integrated assembler + - crypto: arm - use Kconfig based compiler checks for crypto opcodes + - crypto: arm/ghash-ce - define fpu before fpu registers are referenced + - Linux 5.4.203 + + * Focal update: v5.4.202 upstream stable release (LP: #1986995) + - random: schedule mix_interrupt_randomness() less often + - ALSA: hda/via: Fix missing beep setup + - ALSA: hda/conexant: Fix missing beep setup + - ALSA: hda/realtek - ALC897 headset MIC no sound + - ALSA: hda/realtek: Add quirk for Clevo PD70PNT + - net: openvswitch: fix parsing of nw_proto for IPv6 fragments + - mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing + - ata: libata: add qc->flags in ata_qc_complete_template tracepoint + - dm era: commit metadata in postsuspend after worker stops + - dm mirror log: clear log bits up to BITS_PER_LONG boundary + - random: quiet urandom warning ratelimit suppression message + - USB: serial: option: add Telit LE910Cx 0x1250 composition + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: option: add Quectel RM500K module support + - bpf: Fix request_sock leak in sk lookup helpers + - phy: aquantia: Fix AN when higher speeds than 1G are not advertised + - bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers + - net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms + - drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf + - erspan: do not assume transport header is always set + - net/tls: fix tls_sk_proto_close executed repeatedly + - udmabuf: add back sanity check + - x86/xen: Remove undefined behavior in setup_features() + - MIPS: Remove repetitive increase irq_err_count + - afs: Fix dynamic root getattr + - ice: ethtool: advertise 1000M speeds properly + - regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips + - igb: Make DMA faster when CPU is active on the PCIe link + - virtio_net: fix xdp_rxq_info bug after suspend/resume + - Revert "net/tls: fix tls_sk_proto_close executed repeatedly" + - gpio: winbond: Fix error code in winbond_gpio_get() + - s390/cpumf: Handle events cycles and instructions identical + - iio: adc: vf610: fix conversion mode sysfs node name + - xhci: turn off port power in shutdown + - usb: chipidea: udc: check request status before setting device address + - iio:chemical:ccs811: rearrange iio trigger get and register + - iio:accel:bma180: rearrange iio trigger get and register + - iio:accel:mxc4005: rearrange iio trigger get and register + - iio: accel: mma8452: ignore the return value of reset operation + - iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up() + - iio: trigger: sysfs: fix use-after-free on remove + - iio: adc: stm32: fix maximum clock rate for stm32mp15x + - iio: adc: axp288: Override TS pin bias current for some models + - xtensa: xtfpga: Fix refcount leak bug in setup + - xtensa: Fix refcount leak bug in time.c + - parisc: Enable ARCH_HAS_STRICT_MODULE_RWX + - powerpc: Enable execve syscall exit tracepoint + - powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address + - powerpc/powernv: wire up rng during setup_arch + - ARM: dts: imx6qdl: correct PU regulator ramp delay + - ARM: exynos: Fix refcount leak in exynos_map_pmu + - soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe + - ARM: Fix refcount leak in axxia_boot_secondary + - ARM: cns3xxx: Fix refcount leak in cns3xxx_init + - modpost: fix section mismatch check for exported init/exit sections + - random: update comment from copy_to_user() -> copy_to_iter() + - kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt) + - powerpc/pseries: wire up rng during setup_arch() + - Linux 5.4.202 + + * Focal update: v5.4.201 upstream stable release (LP: #1986993) + - dm: remove special-casing of bio-based immutable singleton target on NVMe + - usb: gadget: u_ether: fix regression in setting fixed MAC address + - tcp: add some entropy in __inet_hash_connect() + - tcp: use different parts of the port_offset for index and offset + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer + - Linux 5.4.201 + + * Focal update: v5.4.200 upstream stable release (LP: #1983152) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - 9p: missing chunk of "fs/9p: Don't update file type when updating file + attributes" + - bpf: Fix incorrect memory charge cost calculation in stack_map_alloc() + - nfc: st21nfca: fix incorrect sizing calculations in EVT_TRANSACTION + - crypto: blake2s - generic C library implementation and selftest + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - compat_ioctl: remove /dev/random commands + - random: don't forget compat_ioctl on urandom + - random: Don't wake crng_init_wait when crng_init == 1 + - random: Add a urandom_read_nowait() for random APIs that don't warn + - random: add GRND_INSECURE to return best-effort non-cryptographic bytes + - random: ignore GRND_RANDOM in getentropy(2) + - random: make /dev/random be almost like /dev/urandom + - random: remove the blocking pool + - random: delete code to pull data into pools + - random: remove kernel.random.read_wakeup_threshold + - random: remove unnecessary unlikely() + - random: convert to ENTROPY_BITS for better code readability + - random: Add and use pr_fmt() + - random: fix typo in add_timer_randomness() + - random: remove some dead code of poolinfo + - random: split primary/secondary crng init paths + - random: avoid warnings for !CONFIG_NUMA builds + - x86: Remove arch_has_random, arch_has_random_seed + - powerpc: Remove arch_has_random, arch_has_random_seed + - s390: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Use false with bool + - linux/random.h: Mark CONFIG_ARCH_RANDOM functions __must_check + - powerpc: Use bool in archrandom.h + - random: add arch_get_random_*long_early() + - random: avoid arch_get_random_seed_long() when collecting IRQ randomness + - random: remove dead code left over from blocking pool + - MAINTAINERS: co-maintain random.c + - crypto: blake2s - include instead of + - crypto: blake2s - adjust include guard naming + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: initialize ChaCha20 constants with correct endianness + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - Revert "random: use static branch for crng_ready()" + - crypto: drbg - always seeded with SP800-90B compliant noise source + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - always try to free Jitter RNG instance + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - random: avoid checking crng_ready() twice in random_init() + - random: mark bootloader randomness code as __init + - random: account for arch randomness in bits + - powerpc/kasan: Silence KASAN warnings in __get_wchan() + - ASoC: nau8822: Add operation for internal PLL off and on + - dma-debug: make things less spammy under memory pressure + - ASoC: cs42l52: Fix TLV scales for mixer controls + - ASoC: cs35l36: Update digital volume TLV + - ASoC: cs53l30: Correct number of volume levels on SX controls + - ASoC: cs42l52: Correct TLV for Bypass Volume + - ASoC: cs42l56: Correct typo in minimum level for SX volume controls + - ata: libata-core: fix NULL pointer deref in ata_host_alloc_pinfo() + - ASoC: wm8962: Fix suspend while playing music + - ASoC: es8328: Fix event generation for deemphasis control + - ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() + - scsi: vmw_pvscsi: Expand vcpuHint to 16 bits + - scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology + - scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd + completion + - scsi: ipr: Fix missing/incorrect resource cleanup in error case + - scsi: pmcraid: Fix missing resource cleanup in error case + - ALSA: hda/realtek - Add HW8326 support + - virtio-mmio: fix missing put_device() when vm_cmdline_parent registration + failed + - nfc: nfcmrvl: Fix memory leak in nfcmrvl_play_deferred + - ipv6: Fix signed integer overflow in l2tp_ip6_sendmsg + - net: ethernet: mtk_eth_soc: fix misuse of mem alloc interface + netdev[napi]_alloc_frag + - random: credit cpu and bootloader seeds by default + - pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE + - clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() + - i40e: Fix adding ADQ filter to TC0 + - i40e: Fix calculating the number of queue pairs + - i40e: Fix call trace in setup_tx_descriptors + - tty: goldfish: Fix free_irq() on remove + - misc: atmel-ssc: Fix IRQ check in ssc_probe + - mlxsw: spectrum_cnt: Reorder counter pools + - net: bgmac: Fix an erroneous kfree() in bgmac_remove() + - arm64: ftrace: fix branch range checks + - certs/blacklist_hashes.c: fix const confusion in certs blacklist + - faddr2line: Fix overlapping text section failures, the sequel + - irqchip/gic/realview: Fix refcount leak in realview_gic_of_init + - irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions + - irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions + - i2c: designware: Use standard optional ref clock implementation + - comedi: vmk80xx: fix expression for tx buffer size + - USB: serial: option: add support for Cinterion MV31 with new baseline + - USB: serial: io_ti: add Agilent E5805A support + - usb: dwc2: Fix memory leak in dwc2_hcd_init + - usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe + - serial: 8250: Store to lsr_save_flags after lsr read + - dm mirror log: round up region bitmap size to BITS_PER_LONG + - ext4: fix bug_on ext4_mb_use_inode_pa + - ext4: make variable "count" signed + - ext4: add reserved GDT blocks check + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + - virtio-pci: Remove wrong address verification in vp_del_vqs() + - net/sched: act_police: more accurate MTU policing + - net: openvswitch: fix leak of nested actions + - arm64: kprobes: Use BRK instead of single-step when executing instructions + out-of-line + - RISC-V: fix barrier() use in + - riscv: Less inefficient gcc tishift helpers (and export their symbols) + - powerpc/mm: Switch obsolete dssall to .long + - Linux 5.4.200 + + * Focal update: v5.4.199 upstream stable release (LP: #1983150) + - Linux 5.4.199 + + * Focal update: v5.4.198 upstream stable release (LP: #1982409) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - perf/x86/intel: Fix event constraints for ICL + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: repair super block num_devices automatically + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - ACPICA: Avoid cache flush inside virtual machines + - drm/komeda: return early if drm_universal_plane_init() fails. + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - drm/amd/pm: fix double free in si_parse_power_table() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: cec-adap.c: fix is_configuring state + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - ASoC: max98357a: remove dependency on GPIOLIB + - rxrpc: Return an error to sendmsg if call failed + - eth: tg3: silence the GCC 12 array-bounds warning + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - RDMA/hfi1: Prevent panic when SDMA is disabled + - drm: fix EDID struct for old ARM OABI format + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - bpf: Fix excessive memory allocation in stack_map_alloc() + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - drbd: fix duplicate array initializer + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - scsi: ufs: core: Exclude UECxx from SFR dump list + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - iomap: iomap_write_failed fix + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - media: ov7670: remove ov7670_power_off from ov7670_remove + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net/smc: postpone sk_refcnt increment in connect() + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - arm: mediatek: select arch timer for mt7629 + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - powerpc/8xx: export 'cpm_setbrg' for modules + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - Input: stmfts - do not leave device disabled in stmfts_input_open + - f2fs: fix dereference of stale list iterator after loop body + - iommu/mediatek: Add list_del in mtk_iommu_remove + - i2c: at91: use dma safe buffers + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - iommu/amd: Increase timeout waiting for GA log enablement + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix fallocate to use file_modified to update permissions consistently + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Track whether bfq_group is still online + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tracing: Fix potential double free in create_var_ref() + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - dlm: fix plock invalid read + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - iommu/msm: Fix an incorrect NULL check on list iterator + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: pxa: maybe fix gpio lookup tables + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - phy: qcom-qmp: fix reset-controller leak on probe errors + - Kconfig: add config option for asm goto w/ outputs + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - bfq: Avoid merging queues with different parents + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards + - staging: greybus: codecs: fix type confusion of list iterator variable + - iio: adc: ad7124: Remove shift from scan_type + - tty: goldfish: Use tty_port_destroy() to destroy port + - tty: serial: owl: Fix missing clk_disable_unprepare() in owl_uart_probe + - tty: serial: fsl_lpuart: fix potential bug when using both of_alias_get_id + and ida_simple_get + - usb: usbip: fix a refcount leak in stub_probe() + - usb: usbip: add missing device lock on tweak configuration cmd + - USB: storage: karma: fix rio_karma_init return + - usb: musb: Fix missing of_node_put() in omap2430_probe + - staging: fieldbus: Fix the error handling path in + anybuss_host_common_probe() + - pwm: lp3943: Fix duty calculation in case period was clamped + - rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value + - usb: dwc3: pci: Fix pm_runtime_get_sync() error checking + - firmware: stratix10-svc: fix a missing check on list iterator + - iio: adc: stmpe-adc: Fix wait_for_completion_timeout return value check + - iio: adc: sc27xx: fix read big scale voltage not right + - iio: adc: sc27xx: Fine tune the scale calibration values + - rpmsg: qcom_smd: Fix returning 0 if irq_of_parse_and_map() fails + - phy: qcom-qmp: fix pipe-clock imbalance on power-on failure + - serial: sifive: Report actual baud base rather than fixed 115200 + - coresight: cpu-debug: Replace mutex with mutex_trylock on panic notifier + - soc: rockchip: Fix refcount leak in rockchip_grf_init + - clocksource/drivers/riscv: Events are stopped during CPU suspend + - rtc: mt6397: check return value after calling platform_get_resource() + - serial: meson: acquire port->lock in startup() + - serial: 8250_fintek: Check SER_RS485_RTS_* only with RS485 + - serial: digicolor-usart: Don't allow CS5-6 + - serial: rda-uart: Don't allow CS5-6 + - serial: txx9: Don't allow CS5-6 + - serial: sh-sci: Don't allow CS5-6 + - serial: sifive: Sanitize CSIZE and c_iflag + - serial: st-asc: Sanitize CSIZE and correct PARENB for CS7 + - serial: stm32-usart: Correct CSIZE, bits, and parity + - firmware: dmi-sysfs: Fix memory leak in dmi_sysfs_register_handle + - bus: ti-sysc: Fix warnings for unbind for serial + - driver: base: fix UAF when driver_attach failed + - driver core: fix deadlock in __device_attach + - watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe + - ASoC: fsl_sai: Fix FSL_SAI_xDR/xFR definition + - clocksource/drivers/oxnas-rps: Fix irq_of_parse_and_map() return value + - s390/crypto: fix scatterwalk_unmap() callers in AES-GCM + - net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog + - net: ethernet: mtk_eth_soc: out of bounds read in mtk_hwlro_get_fdir_entry() + - net: dsa: mv88e6xxx: Fix refcount leak in mv88e6xxx_mdios_register + - modpost: fix removing numeric suffixes + - jffs2: fix memory leak in jffs2_do_fill_super + - ubi: ubi_create_volume: Fix use-after-free when volume creation failed + - nfp: only report pause frame configuration for physical device + - net/mlx5: Don't use already freed action pointer + - net/mlx5e: Update netdev features after changing XDP state + - net: sched: add barrier to fix packet stuck problem for lockless qdisc + - tcp: tcp_rtx_synack() can be called from process context + - afs: Fix infinite loop found by xfstest generic/676 + - tipc: check attribute length for bearer name + - perf c2c: Fix sorting in percent_rmt_hitm_cmp() + - mips: cpc: Fix refcount leak in mips_cpc_default_phys_base + - tracing: Fix sleeping function called from invalid context on RT kernel + - tracing: Avoid adding tracer option before update_tracer_options + - f2fs: remove WARN_ON in f2fs_is_valid_blkaddr + - i2c: cadence: Increase timeout per message if necessary + - m68knommu: set ZERO_PAGE() to the allocated zeroed page + - m68knommu: fix undefined reference to `_init_sp' + - dmaengine: zynqmp_dma: In struct zynqmp_dma_chan fix desc_size data type + - NFSv4: Don't hold the layoutget locks across multiple RPC calls + - video: fbdev: pxa3xx-gcu: release the resources correctly in + pxa3xx_gcu_probe/remove() + - xprtrdma: treat all calls not a bcall when bc_serv is NULL + - netfilter: nat: really support inet nat without l3 address + - ata: pata_octeon_cf: Fix refcount leak in octeon_cf_probe + - netfilter: nf_tables: memleak flow rule from commit path + - xen: unexport __init-annotated xen_xlate_map_ballooned_pages() + - af_unix: Fix a data-race in unix_dgram_peer_wake_me(). + - bpf, arm64: Clear prog->jited_len along prog->jited + - net: dsa: lantiq_gswip: Fix refcount leak in gswip_gphy_fw_list + - net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure + - SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() + - net: mdio: unexport __init-annotated mdio_bus_init() + - net: xfrm: unexport __init-annotated xfrm4_protocol_init() + - net: ipv6: unexport __init-annotated seg6_hmac_init() + - net/mlx5: Rearm the FW tracer after each tracer event + - net/mlx5: fs, fail conflicting actions + - ip_gre: test csum_start instead of transport header + - net: altera: Fix refcount leak in altera_tse_mdio_create + - drm: imx: fix compiler warning with gcc-12 + - iio: dummy: iio_simple_dummy: check the return value of kstrdup() + - iio: st_sensors: Add a local lock for protecting odr + - lkdtm/usercopy: Expand size of "out of frame" object + - tty: synclink_gt: Fix null-pointer-dereference in slgt_clean() + - tty: Fix a possible resource leak in icom_probe + - drivers: staging: rtl8192u: Fix deadlock in ieee80211_beacons_stop() + - drivers: staging: rtl8192e: Fix deadlock in rtllib_beacons_stop() + - USB: host: isp116x: check return value after calling platform_get_resource() + - drivers: tty: serial: Fix deadlock in sa1100_set_termios() + - drivers: usb: host: Fix deadlock in oxu_bus_suspend() + - USB: hcd-pci: Fully suspend across freeze/thaw cycle + - usb: dwc2: gadget: don't reset gadget's driver->bus + - misc: rtsx: set NULL intfdata when probe fails + - extcon: Modify extcon device to be created after driver data is set + - clocksource/drivers/sp804: Avoid error on multiple instances + - staging: rtl8712: fix uninit-value in usb_read8() and friends + - staging: rtl8712: fix uninit-value in r871xu_drv_init() + - serial: msm_serial: disable interrupts in __msm_console_write() + - kernfs: Separate kernfs_pr_cont_buf and rename_lock. + - watchdog: wdat_wdt: Stop watchdog when rebooting the system + - md: protect md_unregister_thread from reentrancy + - scsi: myrb: Fix up null pointer access on myrb_cleanup() + - ceph: allow ceph.dir.rctime xattr to be updatable + - drm/radeon: fix a possible null pointer dereference + - modpost: fix undefined behavior of is_arm_mapping_symbol() + - x86/cpu: Elide KCSAN for cpu_has() and friends + - nbd: call genl_unregister_family() first in nbd_cleanup() + - nbd: fix race between nbd_alloc_config() and module removal + - cifs: version operations for smb20 unneeded when legacy support disabled + - nodemask: Fix return values to be unsigned + - vringh: Fix loop descriptors check in the indirect cases + - scripts/gdb: change kernel config dumping method + - ALSA: hda/conexant - Fix loopback issue with CX20632 + - cifs: return errors during session setup during reconnects + - ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files + - mmc: block: Fix CQE recovery reset success + - nfc: st21nfca: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st21nfca: fix memory leaks in EVT_TRANSACTION handling + - ixgbe: fix bcast packets Rx on VF after promisc removal + - ixgbe: fix unexpected VLAN Rx in promisc mode on VF + - Input: bcm5974 - set missing URB_NO_TRANSFER_DMA_MAP urb flag + - powerpc/32: Fix overread/overwrite of thread_struct via ptrace + - md/raid0: Ignore RAID0 layout if the second zone has only one device + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd + - Linux 5.4.198 + + * Focal update: v5.4.197 upstream stable release (LP: #1981758) + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - staging: rtl8723bs: prevent ->Ssid overflow in rtw_wx_set_scan() + - Input: goodix - fix spurious key release events + - tcp: change source port randomizarion at connect() time + - secure_seq: use the 64 bits of the siphash for port offset calculation + - media: vim2m: Register video device after setting up internals + - media: vim2m: initialize the media device earlier + - ACPI: sysfs: Make sparse happy about address space in use + - ACPI: sysfs: Fix BERT error region memory mapping + - pinctrl: sunxi: fix f1c100s uart2 function + - net: af_key: check encryption module availability consistency + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - assoc_array: Fix BUG_ON during garbage collect + - cfg80211: set custom regdomain after wiphy registration + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exec: Force single empty string when argv is empty + - netfilter: conntrack: re-fetch conntrack after insertion + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - HID: multitouch: Add support for Google Whiskers Touchpad + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - Linux 5.4.197 + + * Focal update: v5.4.196 upstream stable release (LP: #1981111) + - x86/xen: Make the boot CPU idle task reliable + - x86/xen: Make the secondary CPU idle tasks reliable + - rtc: fix use-after-free on device removal + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - mmc: core: Specify timeouts for BKOPS and CACHE_FLUSH for eMMC + - mmc: block: Use generic_cmd6_time when modifying INAND_CMD38_ARG_EXT_CSD + - mmc: core: Default to generic_cmd6_time as timeout in __mmc_switch() + - SUNRPC: Clean up scheduling of autoclose + - SUNRPC: Prevent immediate close+reconnect + - SUNRPC: Don't call connect() more than once on a TCP socket + - ALSA: wavefront: Proper check of get_user() error + - perf: Fix sys_perf_event_open() race against self + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - net: macb: Increment rx bd head after allocating skb and buffer + - net/sched: act_pedit: sanitize shift argument before usage + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - igb: skip phy status check where unavailable + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf bench numa: Address compiler error on s390 + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - selftests: add ping test with ping_group_range tuned + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: verify hw_head_ lies within TX buffer ring + - Input: ili210x - fix reset timing + - block: return ELEVATOR_DISCARD_MERGE if possible + - net: stmmac: disable Split Header (SPH) for Intel platforms + - firmware_loader: use kernel credentials when reading firmware + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - x86/xen: fix booting 32-bit pv guest + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.4.196 + + * CVE-2022-36946 + - netfilter: nf_queue: do not allow packet truncation below transport header + offset + + * CVE-2021-33655 + - fbcon: Disallow setting font bigger than screen size + - fbcon: Prevent that screen size is smaller than font size + - fbmem: Check virtual screen sizes in fb_set_var() + + -- Stefan Bader Fri, 26 Aug 2022 11:39:48 +0200 + +linux (5.4.0-125.141) focal; urgency=medium + + * focal/linux: 5.4.0-125.141 -proposed tracker (LP: #1983947) + + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - blk-mq: blk-mq: provide forced completion method + - blk-mq: move failure injection out of blk_mq_complete_request + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + + * CVE-2021-33656 + - vt: drop old FONT ioctls + + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + + -- Stefan Bader Wed, 10 Aug 2022 10:17:28 +0200 + +linux (5.4.0-124.140) focal; urgency=medium + + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + + -- Thadeu Lima de Souza Cascardo Wed, 03 Aug 2022 22:48:34 -0300 + +linux (5.4.0-123.139) focal; urgency=medium + + * focal/linux: 5.4.0-123.139 -proposed tracker (LP: #1981284) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + + * Focal update: v5.4.195 upstream stable release (LP: #1980407) + - batman-adv: Don't skb_split skbuffs with frag_list + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - tcp: resalt the secret every 10 seconds + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - MIPS: fix build with gcc-12 + - net: phy: Fix race condition on link status change + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - ping: fix address binding wrt vrf + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - Linux 5.4.195 + + * Focal update: v5.4.194 upstream stable release (LP: #1980399) + - MIPS: Use address-of operator on section symbols + - block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit + - drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, + environment} types + - drm/i915: Cast remain to unsigned long in eb_relocate_vma + - nfp: bpf: silence bitwise vs. logical OR warning + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL + - [Config] updateconfigs for ARCH_HAS_HOLES_MEMORYMODEL + - KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() + - x86/asm: Allow to pass macros to __ASM_FORM() + - x86: xen: kvm: Gather the definition of emulate prefixes + - x86: xen: insn: Decode Xen and KVM emulate-prefix signature + - x86: kprobes: Prohibit probing on instruction which has emulate prefix + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - Bluetooth: Fix the creation of hdev->name + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - Linux 5.4.194 + + * Focal update: v5.4.193 upstream stable release (LP: #1979566) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - ACPICA: Always create namespace nodes using acpi_ns_create_node() + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for G12A tohdmi mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: grcan: use ofdev->dev when allocating DMA memory + - nfc: replace improper check device_is_registered() in netlink related + functions + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - hwmon: (adt7470) Fix warning on module removal + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - RDMA/siw: Fix a condition race issue in MPA request processing + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - smsc911x: allow using IRQ0 + - btrfs: always log symlinks in full mode + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - drm/amdkfd: Use drm_priv to pass VM from KFD to amdgpu + - NFSv4: Don't invalidate inode attributes on delegation return + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - net: ipv6: ensure we call ipv6_mc_down() at most once + - block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern + - mm: fix unexpected zeroed page mapping with zram swap + - 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: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - tcp: make sure treq->af_specific is initialized + - dm: fix mempool NULL pointer race when completing IO + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Fix reading MSI interrupt number + - mmc: rtsx: add 74 Clocks in power on flow + - Linux 5.4.193 + + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + + * CVE-2022-1734 + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + -- Stefan Bader Mon, 11 Jul 2022 16:54:06 +0200 + +linux (5.4.0-122.138) focal; urgency=medium + + * focal/linux: 5.4.0-122.138 -proposed tracker (LP: #1979489) + + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + + * Enable Asus USB-BT500 Bluetooth dongle(0b05:190e) (LP: #1976613) + - Bluetooth: btusb: Add flag to define wideband speech capability + - Bluetooth: btrtl: Add support for RTL8761B + - Bluetooth: btusb: Add 0x0b05:0x190e Realtek 8761BU (ASUS BT500) device. + + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + + * Ubuntu 5.4.0-117.132-generic 5.4.189 has BUG: kernel NULL pointer + dereference, address: 0000000000000034 (LP: #1978719) + - mm: rmap: explicitly reset vma->anon_vma in unlink_anon_vmas() + + * Focal update: upstream stable patchset v5.4.192 (LP: #1979014) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - lightnvm: disable the subsystem + - [Config] updateconfigs for NVM, NVM_PBLK + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: gadget: Return proper request status + - serial: imx: fix overrun interrupts in DMA mode + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - mtd: rawnand: fix ecc parameters for mt7622 + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - tcp: md5: incorrect tcp_header_len for incoming connections + - tcp: ensure to use the most recently sent skb when filling the rate sample + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: add validity check for message data length + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - net: bcmgenet: hide status block before TX timestamping + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - ixgbe: ensure IPsec VF<->PF compatibility + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: wm8731: Disable the regulator when probing fails + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - x86/cpu: Load microcode during restore_processor_state() + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix incorrect UA handling + - hugetlbfs: get unmapped area below TASK_UNMAPPED_BASE for hugetlbfs + - mm, hugetlb: allow for "high" userspace addresses + - Linux 5.4.192 + + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + + * Focal update: v5.4.191 upstream stable release (LP: #1976116) + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - tracing: Dump stacktrace trigger to the corresponding instance + - gfs2: assign rgrp glock before compute_bitstructs + - tcp: fix race condition when creating child sockets from syncookies + - tcp: Fix potential use-after-free due to double kfree() + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - netlink: reset network and mac headers in netlink_dump() + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - EDAC/synopsys: Read the error count from the correct register + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - staging: ion: Prevent incorrect reference counting behavour + - block/compat_ioctl: fix range check in BLKGETSIZE + - Linux 5.4.191 + + * Focal update: v5.4.190 upstream stable release (LP: #1973085) + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - sctp: Initialize daddr on peeled off socket + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - drm/amd: Add USBC connector ID + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - drm/amd/display: Fix allocate_mst_payload assert on resume + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm, page_alloc: fix build_zonerefs_node() + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - gcc-plugins: latent_entropy: use /dev/urandom + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dma-direct: avoid redundant memory sync for swiotlb + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.4.190 + + -- Stefan Bader Wed, 22 Jun 2022 15:00:52 +0200 + +linux (5.4.0-121.137) focal; urgency=medium + + * focal/linux: 5.4.0-121.137 -proposed tracker (LP: #1978666) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + + * CVE-2022-28388 + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + + * test_vxlan_under_vrf.sh in net from ubuntu_kernel_selftests failed (Check VM + connectivity through VXLAN (underlay in the default VRF) [FAIL]) + (LP: #1871015) + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + + -- Stefan Bader Wed, 15 Jun 2022 15:13:27 +0200 + +linux (5.4.0-120.136) focal; urgency=medium + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - cpu/speculation: Add prototype for cpu_show_srbds() + - x86/cpu: Add Jasper Lake to Intel family + - x86/cpu: Add Lakefield, Alder Lake and Rocket Lake models to the to Intel + CPU family + - x86/cpu: Add another Alder Lake CPU to the Intel family + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Thadeu Lima de Souza Cascardo Fri, 10 Jun 2022 10:21:07 -0300 + +linux (5.4.0-117.132) focal; urgency=medium + + * CVE-2022-1966 + - netfilter: nf_tables: add nft_set_elem_expr_alloc() + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Wed, 01 Jun 2022 20:07:42 -0300 + +linux (5.4.0-115.129) focal; urgency=medium + + * CVE-2022-21499 + - SAUCE: debug: Lock down kgdb + + -- Thadeu Lima de Souza Cascardo Sat, 21 May 2022 12:07:10 -0300 + +linux (5.4.0-114.128) focal; urgency=medium + + * focal/linux: 5.4.0-114.128 -proposed tracker (LP: #1974391) + + * 32 GT/s PCI link speeds reporting "Unknown speed" in sysfs (LP: #1970798) + - PCI: Add 32 GT/s decoding in some macros + - PCI: Add pci_speed_string() + - PCI: Use pci_speed_string() for all PCI/PCI-X/PCIe strings + - PCI: Add PCIE_LNKCAP2_SLS2SPEED() macro + + * issuing invalid ioctl to /dev/vsock may spam dmesg (LP: #1971480) + - vsock: remove ratelimit unknown ioctl message + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - drivers/perf: hisi: Permit modular builds of HiSilicon uncore drivers + - [Config] CONFIG_HISI_PMU=m + + * Focal update: v5.4.189 upstream stable release (LP: #1971497) + - swiotlb: fix info leak with DMA_FROM_DEVICE + - USB: serial: pl2303: add IBM device IDs + - USB: serial: simple: add Nokia phone driver + - netdevice: add the case if dev is NULL + - HID: logitech-dj: add new lightspeed receiver id + - xfrm: fix tunnel model fragmentation behavior + - virtio_console: break out of buf poll on remove + - ethernet: sun: Free the coherent when failing in probing + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - spi: Fix erroneous sgs value with min_t() + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - iommu/iova: Improve 32-bit free space estimate + - tpm: fix reference counting for struct tpm_chip + - block: Add a helper to validate the block size + - virtio-blk: Use blk_validate_block_size() to validate block size + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - 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() + - coresight: Fix TRCCONFIGR.QE sysfs interface + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: uniphier: Fix fixed-rate initialization + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - 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 + - pinctrl: samsung: drop pin banks references on error paths + - spi: mxic: Fix the transmit 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/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: 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: Fix fill_callchain return value + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - udp: call udp_encap_enable for v6 sockets when enabling encap + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - mailbox: tegra-hsp: Flush whole channel + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - 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 + - carl9170: fix missing bit-wise or operator for tx_params + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - 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() + - DEC: Limit PMAX memory probing to R3k systems + - media: davinci: vpif: fix unbalanced runtime PM get + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - PCI: pciehp: Clear cmd_busy bit in polling mode + - regulator: qcom_smd: fix for_each_child.cocci warnings + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - selftests/x86: Add validity check and allow field splitting + - audit: log AUDIT_TIME_* records only from rules + - crypto: ccree - don't attempt 0 len DMA mappings + - 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 + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - hwrng: atmel - disable trng on failure path + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - f2fs: fix to avoid potential deadlock + - media: bttv: fix WARNING regression on tunerless devices + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: hantro: Fix overfill bottom register field name + - media: aspeed: Correct value for h-total-pixels + - 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: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: video/hdmi: handle short reads of hdmi info frame. + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - 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: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - 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 + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - udmabuf: validate ubuf->pagecount + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - ath9k_htc: fix uninit value bugs + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - 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/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - 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 abort all task initialization + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - 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 + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - PCI: Reduce warnings on possible RW1C corruption + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - powerpc/sysdev: fix incorrect use to determine if list is empty + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - MIPS: RB532: fix return value of __setup handler + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - 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 + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - misc: alcor_pci: Fix an error handling path + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - NFS: Return valid errors from nfs2/3_decode_dirent() + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - 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 + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - clk: qcom: gcc-msm8994: Fix gpll4 width + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - 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 + - lib/test: use after free in register_test_dev_kmod() + - LSM: general protection fault in legacy_parse_param + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - 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 + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - spi: tegra20: Use of_device_get_match_data() + - ext4: don't BUG if someone dirty pages without asking ext4 first + - ntfs: add sanity check on allocation size + - 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 + - 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 + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: cx88-mpeg: clear interrupt status register before streaming video + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Fix build errors with newer binutils + - scsi: qla2xxx: Fix stuck session in gpdb + - 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: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - 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: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: rename_whiteout: correct old_dir size computing + - 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 + - XArray: Update the LRU list in xas_split() + - rtc: check if __rtc_read_time was successful + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - powerpc/kasan: Fix early region not updated correctly + - ASoC: soc-compress: Change the check for codec_dai + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - 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 + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: topology: Allow TLV control to be either read or write + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - um: Fix uml_mconsole stop/go + - openvswitch: Fixed nd target mask field in the flow dump. + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - rtc: wm8350: Handle error for wm8350_register_irq + - riscv module: remove (NOLOAD) + - ARM: 9187/1: JIVE: fix return value of __setup handler + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - ptp: replace snprintf with sysfs_emit + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - 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() + - power: supply: axp20x_battery: properly report current when discharging + - ipv6: make mc_forwarding atomic + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - power: supply: axp288-charger: Set Vhold to 4.4V + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - drm/amdkfd: make CRAT table missing message informational only + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - bnxt_en: Eliminate unintended link toggle during FW reset + - MIPS: fix fortify panic when copying asm exception handlers + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - xtensa: fix DTC warning unit_address_format + - Bluetooth: Fix use after free in hci_send_acl + - netlabel: fix out-of-bounds memory accesses + - 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 + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4: Protect the state recovery thread against direct reclaim + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - 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 + - 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 + - KVM: arm64: Check arm64_get_bp_hardening_data() didn't return NULL + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - bnxt_en: reserve space inside receive page for skb_shared_info + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ipv6: Fix stats accounting in ip6_pkt_drop + - net: openvswitch: don't send internal clone attribute to the userspace. + - rxrpc: fix a race in rxrpc_exit_net() + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - lz4: fix LZ4_decompress_safe_partial read out of bound + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - btrfs: fix qgroup reserve overflow the qgroup limit + - arm64: patch_text: Fixup last cpu should be master + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - 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" + - mmc: mmci_sdmmc: Replace sg_dma_xxx macros + - mmc: mmci: stm32: correctly check all elements of sg list + - mm: don't skip swap entry even if zap_details specified + - arm64: module: remove (NOLOAD) from linker script + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - drm/amdkfd: add missing void argument to function kgd2kfd_init + - drm/amdkfd: Fix -Wstrict-prototypes from + amdgpu_amdkfd_gfx_10_0_get_functions() + - 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 + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - Linux 5.4.189 + + * Focal update: v5.4.188 upstream stable release (LP: #1971496) + - nfsd: cleanup nfsd_file_lru_dispose() + - nfsd: Containerise filecache laundrette + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - staging: fbtft: fb_st7789v: reset display before initialization + - thermal: int340x: fix memory leak in int3400_notify() + - llc: fix netdevice reference leaks in llc_ui_bind() + - 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 + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - 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 + - rcu: Don't deboost before reporting expedited quiescent state + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.4.188 + + * Focal update: v5.4.187 upstream stable release (LP: #1971493) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - efi: fix return value of __setup handlers + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - hv_netvsc: Add check for kvmalloc_array + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - Linux 5.4.187 + + * Focal update: v5.4.186 upstream stable release (LP: #1969678) + - Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0" + - sctp: fix the processing for INIT chunk + - 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: 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 + - 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 + - kselftest/vm: fix tests build with old libc + - fixup for "arm64 entry: Add macro for reading symbol address from the + trampoline" + - Linux 5.4.186 + + * Focal update: v5.4.185 upstream stable release (LP: #1969672) + - clk: qcom: gdsc: Add support to update GDSC transition delay + - arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias + - virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero + - net: qlogic: check the return value of dma_alloc_coherent() in + qed_vf_hw_prepare() + - qed: return status of qed_iov_get_link + - drm/sun4i: mixer: Fix P010 and P210 format numbers + - ARM: dts: aspeed: Fix AST2600 quad spi group + - ethernet: Fix error handling in xemaclite_of_probe + - net: ethernet: ti: cpts: Handle error for clk_enable + - net: ethernet: lpc_eth: Handle error for clk_enable + - 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 + - NFC: port100: fix use-after-free in port100_send_complete + - selftests: pmtu.sh: Kill tcpdump processes launched by 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-sysfs: add check for netdevice being present to speed_show + - 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 + - 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 pipe buffer lifetime for direct_io + - staging: gdm724x: fix use after free in gdm_lte_rx() + - net: macb: Fix lost RX packet wakeup race in NAPI receive + - mmc: meson: Fix usage of meson_mmc_post_req() + - riscv: Fix auipc+jalr relocation range checks + - arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0 + - virtio: unexport virtio_finalize_features + - virtio: acknowledge all features before access + - ARM: fix Thumb2 regression with Spectre BHB + - ext4: add check to prevent attempting to resize an fs with sparse_super2 + - x86/cpufeatures: Mark two free bits in word 3 + - x86/cpu: Add hardware-enforced cache coherency as a CPUID feature + - x86/mm/pat: Don't flush cache if hardware enforces cache coherency across + encryption domnains + - KVM: SVM: Don't flush cache if hardware enforces cache coherency across + encryption domains + - Linux 5.4.185 + + * Focal update: v5.4.184 upstream stable release (LP: #1969242) + - arm/arm64: Provide a wrapper for SMCCC 1.1 calls + - arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit() + - ARM: report Spectre v2 status through sysfs + - ARM: early traps initialisation + - ARM: use LOADADDR() to get load address of sections + - [Config] updateconfigs for HARDEN_BRANCH_HISTORY + - ARM: Spectre-BHB workaround + - ARM: include unprivileged BPF status in Spectre V2 reporting + - ARM: fix build error when BPF_SYSCALL is disabled + - ARM: fix co-processor register typo + - ARM: Do not use NOCROSSREFS directive with ld.lld + - 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() + - Linux 5.4.184 + + * Focal update: v5.4.183 upstream stable release (LP: #1969239) + - 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 + - Input: clear BTN_RIGHT/MIDDLE on buttonpads + - cifs: fix double free race when mount fails in cifs_get_root() + - dmaengine: shdma: Fix runtime PM imbalance on error + - i2c: cadence: allow COMPILE_TEST + - i2c: qup: allow COMPILE_TEST + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990 + - usb: gadget: don't release an existing dev->buf + - usb: gadget: clear related members when goto fail + - ata: pata_hpt37x: fix PCI clock detection + - ALSA: intel_hdmi: Fix reference to PCM buffer address + - ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min + - xfrm: fix MTU regression + - netfilter: fix use-after-free in __nf_register_net_hook() + - xfrm: enforce validity of offload input flags + - netfilter: nf_queue: don't assume sk is full socket + - netfilter: nf_queue: fix possible use-after-free + - 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: dcb: flush lingering app table entries for unregistered devices + - 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 + - block: Fix fsync always failed if once failed + - xen/netfront: destroy queues before real_num_tx_queues is zeroed + - sched/topology: Make sched_init_numa() use a set for the deduplicating sort + - sched/topology: Fix sched_domain_topology_level alloc in sched_init_numa() + - ia64: ensure proper NUMA distance and possible map initialization + - mac80211: fix forwarded mesh frames AC & queue selection + - net: stmmac: fix return value of __setup handler + - iavf: Fix missing check for running netdev + - net: sxgbe: fix return value of __setup handler + - net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe() + - ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() + - efivars: Respect "block" flag in efivar_entry_set_safe() + - firmware: arm_scmi: Remove space in MODULE_ALIAS name + - ASoC: cs4265: Fix the duplicated control name + - can: gs_usb: change active_channels's type from atomic_t to u8 + - 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 + - ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions + - 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 + - soc: fsl: qe: Check of ioremap return value + - net: chelsio: cxgb3: check the return value of pci_find_capability() + - nl80211: Handle nla_memdup failures in handle_nan_filter + - 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 + - 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: qgroup: fix deadlock between rescan worker and remove qgroup + - btrfs: add missing run of delayed items after unlink during log replay + - Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6" + - net: dcb: disable softirqs in dcbnl_flush_dev() + - hamradio: fix macro redefine warning + - Linux 5.4.183 + + * Focal update: v5.4.182 upstream stable release (LP: #1969236) + - cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug + - clk: jz4725b: fix mmc0 clock gating + - 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 + - drm/amdgpu: disable MMHUB PG for Picasso + - sr9700: sanity check for packet length + - USB: zaurus: support another broken Zaurus + - x86/fpu: Correct pkru/xstate inconsistency + - tee: export teedev_open() and teedev_close_context() + - optee: use driver internal tee_context for some rpc + - lan743x: fix deadlock in lan743x_phy_link_status_change() + - ping: remove pr_err from ping_lookup + - perf data: Fix double free in perf_session__delete() + - bpf: Do not try bpf_msg_push_data with len 0 + - net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends + - 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 + - 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 + - net: ll_temac: check the return value of devm_kmalloc() + - net: Force inlining of checksum functions in net/checksum.h + - nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() + - netfilter: nf_tables: fix memory leak during stateful obj update + - net/mlx5: Fix possible deadlock on rule deletion + - net/mlx5: Fix wrong limitation of metadata match on ecpf + - spi: spi-zynq-qspi: Fix a NULL pointer dereference in + zynq_qspi_exec_mem_op() + - configfs: fix a race in configfs_{,un}register_subsystem() + - RDMA/ib_srp: Fix a deadlock + - tracing: Have traceon and traceoff trigger honor the instance + - iio: adc: men_z188_adc: Fix a resource leak in an error handling path + - iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits + - iio: Fix error handling for PM + - 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 + - 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: 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. + - 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 + - gpio: tegra186: Fix chip_data type confusion + - Revert "drm/nouveau/pmu/gm200-: avoid touching PMU outside of + DEVINIT/PREOS/ACR" + - memblock: use kfree() to release kmalloced memblock regions + - fget: clarify and improve __fget_files() implementation + - Linux 5.4.182 + + * CVE-2022-28390 + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + + -- Stefan Bader Fri, 20 May 2022 15:31:22 +0200 + +linux (5.4.0-113.127) focal; urgency=medium + + * focal/linux: 5.4.0-113.127 -proposed tracker (LP: #1973980) + + * CVE-2022-29581 + - net/sched: cls_u32: fix netns refcount changes in u32_change() + + * CVE-2022-1116 + - io_uring: fix fs->users overflow + + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + + * Unprivileged users may use PTRACE_SEIZE to set PTRACE_O_SUSPEND_SECCOMP + option (LP: #1972740) + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + + -- Stefan Bader Wed, 18 May 2022 16:07:54 +0200 + +linux (5.4.0-110.124) focal; urgency=medium + + * focal/linux: 5.4.0-110.124 -proposed tracker (LP: #1969053) + + * net/mlx5e: Fix page DMA map/unmap attributes (LP: #1967292) + - net/mlx5e: Fix page DMA map/unmap attributes + + * xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + (LP: #1966803) + - xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + + * LRMv6: add multi-architecture support (LP: #1968774) + - [Packaging] resync dkms-build{,--nvidia-N} + + * xfrm interface cannot be changed anymore (LP: #1968591) + - xfrm: fix the if_id check in changelink + + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + + * vmx_ldtr_test in ubuntu_kvm_unit_tests failed (FAIL: Expected 0 for L1 LDTR + selector (got 50)) (LP: #1956315) + - KVM: nVMX: Set LDTR to its architecturally defined value on nested VM-Exit + + * [SRU][Regression] Revert "PM: ACPI: reboot: Use S5 for reboot" which causes + Bus Fatal Error when rebooting system with BCM5720 NIC (LP: #1917471) + - Revert "PM: ACPI: reboot: Use S5 for reboot" + + * Focal update: v5.4.181 upstream stable release (LP: #1967582) + - Makefile.extrawarn: Move -Wunaligned-access to W=1 + - HID:Add support for UGTABLET WP5540 + - Revert "svm: Add warning message for AVIC IPI invalid target" + - 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 + - btrfs: send: in case of IO error log it + - platform/x86: ISST: Fix possible circular locking dependency detected + - selftests: rtc: Increase test timeout so that all tests run + - 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 + - ax25: improve the incomplete fix to avoid UAF and NPD bugs + - vfs: make freeze_super abort when sync_filesystem returns error + - quota: make dquot_quota_sync return errors from ->sync_fs + - 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 + - drm/amdgpu: fix logic inversion in check + - Revert "module, async: async_synchronize_full() on module init iff async is + used" + - ftrace: add ftrace_init_nop() + - module/ftrace: handle patchable-function-entry + - arm64: module: rework special section handling + - arm64: module/ftrace: intialize PLT at load time + - iwlwifi: fix use-after-free + - drm/radeon: Fix backlight control on iMac 12,1 + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: check for inconsistent extents between index and leaf block + - ext4: prevent partial update of the extent blocks + - taskstats: Cleanup the use of task->exit_code + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - vsock: remove vsock from connected table when connect is interrupted by a + signal + - mmc: block: fix read single on recovery logic + - iwlwifi: pcie: fix locking when "HW not ready" + - iwlwifi: pcie: gen2: fix locking when "HW not ready" + - netfilter: nft_synproxy: unregister hooks on init error path + - net: dsa: lan9303: fix reset on probe + - 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 + - bonding: fix data-races around agg_select_timer + - libsubcmd: Fix use-after-free for realloc(..., 0) + - 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() + - powerpc/lib/sstep: fix 'ptesync' build error + - mtd: rawnand: gpmi: don't leak PM reference in error path + - block/wbt: fix negative inflight counter when remove scsi device + - NFS: LOOKUP_DIRECTORY is also ok with symlinks + - NFS: Do not report writeback errors in nfs_getattr() + - mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe() + - mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status + - scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop + - EDAC: Fix calculation of returned address and next offset in + edac_align_ptr() + - net: sched: limit TC_ACT_REPEAT loops + - dmaengine: sh: rcar-dmac: Check for error num after setting mask + - copy_process(): Move fd_install() out of sighand->siglock critical section + - i2c: brcmstb: fix support for DSL and CM variants + - Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj + - 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 + - irqchip/sifive-plic: Add missing thead,c900-plic match string + - netfilter: conntrack: don't refresh sctp entries in closed state + - 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 + - kconfig: let 'shell' return enough output for deep path names + - ata: libata-core: Disable TRIM on M88V29 + - drm/rockchip: dw_hdmi: Do not leave clock enabled in error case + - tracing: Fix tp_printk option related with tp_printk_stop_on_boot + - 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 + - Linux 5.4.181 + + * Focal update: v5.4.180 upstream stable release (LP: #1966118) + - integrity: check the return value of audit_log_start() + - 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 + - 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: Clamp WRITE offsets + - NFSD: Fix offset type in I/O trace points + - 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 expose nfs_parse_server_name function + - drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer + - net: sched: Clarify error message when qdisc kind is unknown + - scsi: target: iscsi: Make sure the np under each tpg is unique + - scsi: qedf: Fix refcount issue when LOGO is received during TMF + - scsi: myrs: Fix crash in error case + - PM: hibernate: Remove register_nosave_region_late() + - usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend + - net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout() + - KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER + - riscv: fix build with binutils 2.38 + - ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group + - 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 + - net: bridge: fix stale eth hdr pointer in br_dev_xmit + - perf probe: Fix ppc64 'perf probe add events failed' case + - ARM: dts: meson: Fix the UART compatible strings + - staging: fbtft: Fix error path in fbtft_driver_module_init() + - ARM: dts: imx6qdl-udoo: Properly describe the SD card detect + - usb: f_fs: Fix use-after-free for epfile + - misc: fastrpc: avoid double fput() on failed usercopy + - ixgbevf: Require large buffers for build_skb on 82599VF + - bonding: pair enable_port with slave_arr_updates + - 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 + - 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 + - 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: 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 + - seccomp: Invalidate seccomp mode to catch death failures + - hwmon: (dell-smm) Speed up setting of fan speed + - scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled + - perf: Fix list corruption in perf_cgroup_switch() + - Linux 5.4.180 + + * Focal update: v5.4.179 upstream stable release (LP: #1965591) + - moxart: fix potential use-after-free on remove path + - Linux 5.4.179 + + * CVE-2020-27820 + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: clean up all clients on device removal + + * CVE-2022-1016 + - netfilter: nf_tables: initialize registers in nft_do_chain() + + * CVE-2022-27223 + - USB: gadget: validate endpoint index for xilinx udc + + * CVE-2022-26490 + - nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION + + * 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/speculation: Include unprivileged eBPF status in Spectre v2 mitigation + reporting + + -- Stefan Bader Thu, 14 Apr 2022 14:19:29 +0200 + +linux (5.4.0-109.123) focal; urgency=medium + + * focal/linux: 5.4.0-109.123 -proposed tracker (LP: #1968290) + + * USB devices not detected during boot on USB 3.0 hubs (LP: #1968210) + - SAUCE: Revert "Revert "xhci: Set HCD flag to defer primary roothub + registration"" + - SAUCE: Revert "Revert "usb: core: hcd: Add support for deferring roothub + registration"" + + -- Kleber Sacilotto de Souza Fri, 08 Apr 2022 10:44:46 +0200 + +linux (5.4.0-108.122) focal; urgency=medium + + * focal/linux: 5.4.0-108.122 -proposed tracker (LP: #1966740) + + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + - debian/dkms-versions -- update from kernel-versions (main/2022.03.21) + + * Low RX performance for 40G Solarflare NICs (LP: #1964512) + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + + * [UBUNTU 20.04] KVM: Enable storage key checking for intercepted instruction + (LP: #1962831) + - selftests: kvm: add _vm_ioctl + - selftests: kvm: Introduce the TEST_FAIL macro + - KVM: selftests: Add GUEST_ASSERT variants to pass values to host + - 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 + + * 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon/sec2 - Add workqueue for SEC driver. + - crypto: hisilicon/sec2 - update SEC initialization and reset + + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) + - crypto: hisilicon - Use one workqueue per qm instead of per qp + + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) // 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon - Unify hardware error init/uninit into QM + + * [UBUNTU 20.04] Fix SIGP processing on KVM/s390 (LP: #1962578) + - KVM: s390: Simplify SIGP Set Arch handling + - KVM: s390: Add a routine for setting userspace CPU state + + * Move virtual graphics drivers from linux-modules-extra to linux-modules + (LP: #1960633) + - [Packaging] Move VM DRM drivers into modules + + * Focal update: v5.4.178 upstream stable release (LP: #1964634) + - audit: improve audit queue handling when "audit=1" on cmdline + - 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: Simplify quirk entries with a macro + - 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: fix deadlock between quota disable and qgroup rescan worker + - drm/nouveau: fix off by one in BIOS boundary checking + - mm/kmemleak: avoid scanning potential huge holes + - block: bio-integrity: Advance seed correctly for larger interval sizes + - memcg: charge fs_context and legacy_fs_context + - 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 + - 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 + - net: ieee802154: hwsim: Ensure proper channel selection at probe time + - net: ieee802154: mcr20a: Fix lifs/sifs periods + - net: ieee802154: ca8210: Stop leaking skb's + - net: ieee802154: Return meaningful error codes from the netlink helpers + - 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/i915/overlay: Prevent divide by zero bugs in scaling + - ASoC: fsl: Add missing error handling in pcm030_fabric_probe + - ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes + - ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name + - ASoC: max9759: fix underflow in speaker_gain_control_put() + - pinctrl: bcm2835: Fix a few error paths + - scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe + - nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. + - selftests: futex: Use variable MAKE instead of make + - rtc: cmos: Evaluate century appropriate + - EDAC/altera: Fix deferred probing + - EDAC/xgene: Fix deferred probing + - ext4: fix error handling in ext4_restore_inline_data() + - cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning + - Linux 5.4.178 + + * Focal update: v5.4.177 upstream stable release (LP: #1964628) + - PCI: pciehp: Fix infinite loop in IRQ handler upon power fault + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - ipheth: fix EOVERFLOW in ipheth_rcvbulk_callback + - net: amd-xgbe: ensure to reset the tx_timer_active flag + - net: amd-xgbe: Fix skb data length underflow + - rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() + - cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() + - af_packet: fix data-race in packet_setsockopt / packet_setsockopt + - Linux 5.4.177 + + * Focal update: v5.4.176 upstream stable release (LP: #1962345) + - s390/hypfs: include z/VM guests with access control group set + - 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 + - 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 + - fsnotify: fix fsnotify hooks in pseudo filesystems + - drm/etnaviv: relax submit size limits + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - 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: Add support for Brainboxes UC cards. + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - net: sfp: ignore disabled SFP node + - 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 unsigned stat widths + - 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: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - 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 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - net: phy: broadcom: hook up soft_reset for BCM54616S + - phylib: fix potential use-after-free + - rxrpc: Adjust retransmission backoff + - hwmon: (lm90) Mark alert as broken for MAX6654 + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - yam: fix a memory leak in yam_siocdevprivate() + - net: hns3: handle empty unknown interrupt for VF + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - 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.4.176 + + * Focal update: v5.4.175 upstream stable release (LP: #1962330) + - rcu: Tighten rcu_advance_cbs_nowake() checks + - pinctrl: bcm2835: Drop unused define + - pinctrl: bcm2835: Refactor platform data + - pinctrl: bcm2835: Add support for all GPIOs on BCM2711 + - pinctrl: bcm2835: Match BCM7211 compatible string + - pinctrl: bcm2835: Add support for wake-up interrupts + - pinctrl: bcm2835: Change init order for gpio hogs + - ARM: dts: gpio-ranges property is now required + - mmc: sdhci-esdhc-imx: disable CMDQ support + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - Linux 5.4.175 + + -- Stefan Bader Tue, 29 Mar 2022 09:18:40 +0200 + +linux (5.4.0-107.121) focal; urgency=medium + + * focal/linux: 5.4.0-107.121 -proposed tracker (LP: #1966275) + + * CVE-2022-27666 + - esp: Fix possible buffer overflow in ESP transformation + + * CVE-2022-1055 + - net: sched: fix use-after-free in tc_new_tfilter() + + * Pick fixup from v5.4.176 upstream stable release to address cert + failure with clock jitter test in NUC7i3DNHE (LP: #1964204) + - Bluetooth: refactor malicious adv data check + + -- Stefan Bader Thu, 24 Mar 2022 16:48:48 +0100 + +linux (5.4.0-105.119) focal; urgency=medium + + * CVE-2022-0847 + - lib/iov_iter: initialize "flags" in new pipe_buffer + + * Broken network on some AWS instances with focal/impish kernels + (LP: #1961968) + - SAUCE: Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * [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 + + * Hipersocket page allocation failure on Ubuntu 20.04 based SSC environments + (LP: #1959529) + - s390/qeth: use memory reserves to back RX buffers + + * CVE-2022-0516 + - KVM: s390: Return error on SIDA memop on normal guest + + * CVE-2022-0435 + - tipc: improve size validations for received domain records + + * CVE-2022-0492 + - cgroup-v1: Require capabilities to set release_agent + + * Recalled NFSv4 files delegations overwhelm server (LP: #1957986) + - NFSv4: Fix delegation handling in update_open_stateid() + - NFSv4: nfs4_callback_getattr() should ignore revoked delegations + - NFSv4: Delegation recalls should not find revoked delegations + - NFSv4: fail nfs4_refresh_delegation_stateid() when the delegation was + revoked + - NFS: Rename nfs_inode_return_delegation_noreclaim() + - NFSv4: Don't remove the delegation from the super_list more than once + - NFSv4: Hold the delegation spinlock when updating the seqid + - NFSv4: Clear the NFS_DELEGATION_REVOKED flag in + nfs_update_inplace_delegation() + - NFSv4: Update the stateid seqid in nfs_revoke_delegation() + - NFSv4: Revoke the delegation on success in nfs4_delegreturn_done() + - NFSv4: Ignore requests to return the delegation if it was revoked + - NFSv4: Don't reclaim delegations that have been returned or revoked + - NFSv4: nfs4_return_incompatible_delegation() should check delegation + validity + - NFSv4: Fix nfs4_inode_make_writeable() + - NFS: nfs_inode_find_state_and_recover() fix stateid matching + - NFSv4: Fix races between open and delegreturn + - NFSv4: Handle NFS4ERR_OLD_STATEID in delegreturn + - NFSv4: Don't retry the GETATTR on old stateid in nfs4_delegreturn_done() + - NFSv4: nfs_inode_evict_delegation() should set NFS_DELEGATION_RETURNING + - NFS: Clear NFS_DELEGATION_RETURN_IF_CLOSED when the delegation is returned + - NFSv4: Try to return the delegation immediately when marked for return on + close + - NFSv4: Add accounting for the number of active delegations held + - NFSv4: Limit the total number of cached delegations + - NFSv4: Ensure the delegation is pinned in nfs_do_return_delegation() + - NFSv4: Ensure the delegation cred is pinned when we call delegreturn + + * Focal update: v5.4.174 upstream stable release (LP: #1960566) + - 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 + - f2fs: fix to do sanity check in is_alive() + - 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 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - 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 + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - 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 + - 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/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Reconfigure hardware on resume() + - 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 + - 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 + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - wcn36xx: Release DMA channel descriptor allocations + - media: videobuf2: Fix the size printk format + - 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: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - Bluetooth: stop proccessing malicious adv data + - tee: fix put order in teedev_close_context() + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: qce - fix uaf on qce_ahash_register_one + - 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() + - 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: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - netfilter: bridge: add support for pppoe filtering + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - ACPI: EC: Rework flushing of EC work while suspended to idle + - 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() + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - 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 + - 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 + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - 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 + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - 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 + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mmc: meson-mx-sdio: add IRQ check + - selinux: fix potential memleak in selinux_add_opt() + - bpftool: Enable line buffering for stdout + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - 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() + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - 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 + - 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 + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - net/mlx5: Set command entry semaphore up once got index free + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - tpm: add request_locality before write TPM_INT_ENABLE + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - pcmcia: fix setting of kthread task states + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - 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 + - RDMA/hns: Validate the pkey index + - 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 + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: ufs: Fix race conditions related to driver data + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - 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 + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/iova: Fix race between FQ timeout and teardown + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - RDMA/cxgb4: Set queue pair state when being queried + - of: base: Fix phandle argument length mismatch error message + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - usb: gadget: f_fs: Use stream_open() for endpoint files + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - EDAC/synopsys: Use the quirk for version instead of ddr version + - mlxsw: pci: Add shutdown method in PCI driver + - drm/bridge: megachips: Ensure both bridges are probed before registration + - 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 + - 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() + - 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 + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: m920x: don't use stack on USB reads + - iwlwifi: mvm: synchronize with FW after multicast commands + - 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 + - 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 + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - HID: quirks: Allow inverting the absolute X/Y values + - media: igorplugusb: receiver overflow should be reported + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - 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 + - cpufreq: Fix initialization of min and max frequency QoS requests + - usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - um: registers: Rename function names to avoid conflicts and build problems + - 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 + - drm/amdgpu: fixup bad vram size on gmc v8 + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - 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() + - 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: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - parisc: Avoid calling faulthandler_disabled() twice + - 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 + - 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 failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - ASoC: mediatek: mt8173: fix device_node leak + - power: bq25890: Enable continuous conversion for ADC at charging + - rpmsg: core: Clean up resources on announce_create failure. + - 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 + - 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 + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - drm/etnaviv: limit submit sizes + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - 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 + - 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: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: don't use the orphan list when migrating an inode + - 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 + - media: rcar-csi2: Optimize the selection PHTW register + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - scsi: core: Show SCMD_LAST in text form + - 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 + - bpftool: Remove inclusion of utilities.mak from Makefiles + - ipv4: avoid quadratic behavior in netns dismantle + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - f2fs: fix to reserve space for IO align feature + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: si5341: Fix clock HW provider cleanup + - net: axienet: limit minimum TX ring size + - net: axienet: fix number of TX ring slots for available check + - net: axienet: increase default TX ring size to 128 + - rtc: pxa: fix null pointer dereference + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - 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: 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 + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net_sched: restore "mpu xxx" handling + - bcmgenet: add WOL IRQ check + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - mtd: nand: bbt: Fix corner case in bad block table handling + - Revert "ia64: kprobes: Use generic kretprobe trampoline handler" + - Linux 5.4.174 + + * Focal update: v5.4.173 upstream stable release (LP: #1959701) + - kbuild: Add $(KBUILD_HOSTLDFLAGS) to 'has_libelf' test + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - perf: Protect perf_guest_cbs with RCU + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - 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 + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - mtd: fixup CFI on ixp4xx + - ARM: 9025/1: Kconfig: CPU_BIG_ENDIAN depends on !LD_IS_LLD + - Linux 5.4.173 + + * Focal update: v5.4.172 upstream stable release (LP: #1959698) + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: bfusb: fix division by zero in send path + - 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 + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) + functions + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - 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() + - 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.4.172 + + * Focal update: v5.4.171 upstream stable release (LP: #1959437) + - f2fs: quota: fix potential deadlock + - Input: touchscreen - Fix backport of + a02dcde595f7cbd240ccd64de96034ad91cffc40 + - 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 + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - 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 + - 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 + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - rndis_host: support Hytera digital radios + - phonet: refcount leak in pep_sock_accep + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - 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 + - mISDN: change function names to avoid conflicts + - Linux 5.4.171 + + * Focal update: v5.4.170 upstream stable release (LP: #1958898) + - tee: handle lookup of shm with reference count 0 + - 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(). + - 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 + - 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 + - sctp: use call_rcu to free endpoint + - net: usb: pegasus: Do not drop long Ethernet frames + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - selftests/net: udpgso_bench_tx: fix dst ip argument + - net/ncsi: check for error return from call to nla_put_u32 + - 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 + - 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 + - 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 + - net: fix use-after-free in tw_timer_handler + - perf script: Fix CPU filtering of a script's switch events + - Linux 5.4.170 + + * Focal update: v5.4.170 upstream stable release (LP: #1958898) // HID_ASUS + should depend on USB_HID in stable v4.15 backports (LP: #1959762) + - HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option + + * Focal update: v5.4.169 upstream stable release (LP: #1958557) + - net: usb: lan78xx: add Allied Telesis AT29M2-AF + - serial: 8250_fintek: Fix garbled text for console + - arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode + - spi: change clk_disable_unprepare to clk_unprepare + - IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() + - netfilter: fix regression in looped (broad|multi)cast's MAC handling + - qlcnic: potential dereference null pointer of rx_queue->page_ring + - net: accept UFOv6 packages in virtio_net_hdr_to_skb + - net: skip virtio_net_hdr_set_proto if protocol already set + - ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module + - bonding: fix ad_actor_system option setting to default + - fjes: Check for error irq + - drivers: net: smc911x: Check for error irq + - sfc: falcon: Check null pointer of rx_queue->page_ring + - Input: elantech - fix stack out of bound access in + elantech_change_report_id() + - hwmon: (lm90) Fix usage of CONFIG2 register in detect function + - hwmon: (lm90) Add max6654 support to lm90 driver + - hwmon: (lm90) Add basic support for TI TMP461 + - hwmon: (lm90) Introduce flag indicating extended temperature support + - hwmon: (lm90) Drop critical attribute support for MAX6654 + - ALSA: jack: Check the return value of kstrdup() + - ALSA: drivers: opl3: Fix incorrect use of vp->state + - ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 + - 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 + - x86/pkey: Fix undefined behaviour with PKRU_WD_BIT + - pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines + - mmc: sdhci-tegra: Fix switch to HS400ES mode + - mmc: core: Disable card detect during shutdown + - ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling + - tee: optee: Fix incorrect page free bug + - f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() + - usb: gadget: u_ether: fix race in setting MAC address in setup phase + - KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state + - mm: mempolicy: fix THP allocations escaping mempolicy restrictions + - 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 + - ax25: NPD bug when detaching AX25 device + - hamradio: defer ax25 kfree after unregister_netdev + - hamradio: improve the incomplete fix to avoid NPD + - phonet/pep: refuse to enable an unbound pipe + - Linux 5.4.169 + + * Focal update: v5.4.168 upstream stable release (LP: #1957991) + - KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE + - mac80211: mark TX-during-stop for TX in in_reconfig + - mac80211: send ADDBA requests using the tid/queue of the aggregation session + - firmware: arm_scpi: Fix string overflow in SCPI genpd driver + - virtio_ring: Fix querying of maximum DMA mapping size for virtio device + - recordmcount.pl: look for jgnop instruction as well as bcrl on s390 + - dm btree remove: fix use after free in rebalance_children() + - audit: improve robustness of the audit queue handling + - iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda + - nfsd: fix use-after-free due to delegation race + - arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas- + edge + - arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply + - arm64: dts: rockchip: fix audio-supply for Rock Pi 4 + - mac80211: track only QoS data frames for admission control + - ARM: socfpga: dts: fix qspi node compatible + - clk: Don't parent clks until the parent is fully registered + - 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: use jiffies_delta_to_msecs() + - inet_diag: fix kernel-infoleak for UDP sockets + - selftests: Fix raw socket bind tests with VRF + - selftests: Fix IPv6 address bind tests + - dmaengine: st_fdma: fix MODULE_ALIAS + - selftest/net/forwarding: declare NETIFS p9 p10 + - mac80211: agg-tx: refactor sending addba + - mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock + - mac80211: accept aggregation sessions on 6 GHz + - mac80211: fix lookup when adding AddBA extension element + - net: sched: lock action when translating it to flow_action infra + - flow_offload: return EOPNOTSUPP for the unsupported mpls action type + - rds: memory leak in __rds_conn_create() + - 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` + - 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: 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() + - USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) + - PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error + - PCI/MSI: Mask MSI-X vectors only on success + - usb: xhci: Extend support for runtime power management for AMD's Yellow + carp. + - USB: serial: cp210x: fix CP2105 GPIO registration + - USB: serial: option: add Telit FN990 compositions + - timekeeping: Really make sure wall_to_monotonic isn't positive + - libata: if T_LENGTH is zero, dma direction should be DMA_NONE + - drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE + - mac80211: validate extended element ID is present + - mwifiex: Remove unnecessary braces from HostCmd_SET_SEQ_NO_BSS_INFO + - Input: touchscreen - avoid bitwise vs logical OR warning + - ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name + - xsk: Do not sleep in poll() when need_wakeup set + - media: mxl111sf: change mutex_init() location + - fuse: annotate lock in fuse_reverse_inval_entry() + - ovl: fix warning in ovl_create_real() + - scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() + - rcu: Mark accesses to rcu_state.n_force_qs + - mac80211: fix regression in SSN handling of addba tx + - net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info + - 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.4.168 + + * Focal update: v5.4.167 upstream stable release (LP: #1957987) + - nfc: fix segfault in nfc_genl_dump_devices_done + - drm/msm/dsi: set default num_data_lanes + - net/mlx4_en: Update reported link modes for 1/10G + - 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/amd/display: Fix for the no Audio bug with Tiled Displays + - drm/amd/display: add connector type check for CRC source set + - tracing: Fix a kmemleak false positive in tracing_map + - KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req + - selinux: fix race condition when computing ocontext SIDs + - bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc + - hwmon: (dell-smm) Fix warning on /proc/i8k creation error + - memblock: free_unused_memmap: use pageblock units instead of MAX_ORDER + - memblock: align freed memory map on pageblock boundaries with SPARSEMEM + - memblock: ensure there is no overflow in memblock_overlaps_region() + - arm: extend pfn_valid to take into account freed memory map alignment + - arm: ioremap: don't abuse pfn_valid() to check if pfn is in RAM + - Linux 5.4.167 + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + -- Stefan Bader Mon, 07 Mar 2022 17:07:14 +0100 + +linux (5.4.0-104.118) focal; urgency=medium + + * CVE-2022-23960 + - SAUCE: kvm: arm: fix build on 32-bit + + -- Thadeu Lima de Souza Cascardo Wed, 02 Mar 2022 14:10:18 -0300 + +linux (5.4.0-103.117) focal; urgency=medium + + * CVE-2022-23960 + - arm64: Add part number for Arm Cortex-A77 + - arm64: Add Neoverse-N2, Cortex-A710 CPU part definition + - arm64: Add Cortex-X2 CPU part definition + - arm64: add ID_AA64ISAR2_EL1 sys register + - SAUCE: arm64: entry.S: Add ventry overflow sanity checks + - SAUCE: arm64: entry: Make the trampoline cleanup optional + - SAUCE: arm64: entry: Free up another register on kpti's tramp_exit path + - SAUCE: arm64: entry: Move the trampoline data page before the text page + - SAUCE: arm64: entry: Allow tramp_alias to access symbols after the 4K + boundary + - SAUCE: arm64: entry: Don't assume tramp_vectors is the start of the vectors + - SAUCE: arm64: entry: Move trampoline macros out of ifdef'd section + - SAUCE: arm64: entry: Make the kpti trampoline's kpti sequence optional + - SAUCE: arm64: entry: Allow the trampoline text to occupy multiple pages + - SAUCE: arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations + - SAUCE: arm64: entry: Add vectors that have the bhb mitigation sequences + - SAUCE: arm64: entry: Add macro for reading symbol addresses from the + trampoline + - SAUCE: arm64: Add percpu vectors for EL1 + - SAUCE: arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of + Spectre-v2 + - SAUCE: KVM: arm64: Add templates for BHB mitigation sequences + - SAUCE: arm64: Mitigate spectre style branch history side channels + - SAUCE: KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and + migrated + - SAUCE: arm64: Use the clearbhb instruction in mitigations + - [Config]: set CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y + + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + + * CVE-2022-0001 + - x86/speculation: Merge one test in spectre_v2_user_select_mitigation() + - x86,bugs: Unconditionally allow spectre_v2=retpoline,amd + - SAUCE: x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE + - SAUCE: x86/speculation: Add eIBRS + Retpoline options + - SAUCE: Documentation/hw-vuln: Update spectre doc + + * Disable unprivileged BPF by default (LP: #1961338) + - bpf: Add kconfig knob for disabling unpriv bpf by default + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Thadeu Lima de Souza Cascardo Wed, 02 Mar 2022 05:33:12 -0300 + +linux (5.4.0-100.113) focal; urgency=medium + + * focal/linux: 5.4.0-100.113 -proposed tracker (LP: #1959900) + + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + + * CVE-2022-0330 + - drm/i915: Flush TLBs before releasing backing store + + * Focal update: v5.4.166 upstream stable release (LP: #1957008) + - netfilter: selftest: conntrack_vrf.sh: fix file permission + - Linux 5.4.166 + - net/packet: rx_owner_map depends on pg_vec + - USB: gadget: bRequestType is a bitfield, not a enum + - HID: holtek: fix mouse probing + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + + * Focal update: v5.4.165 upstream stable release (LP: #1957007) + - serial: tegra: Change lower tolerance baud rate limit for tegra20 and + tegra30 + - ntfs: fix ntfs_test_inode and ntfs_init_locked_inode function type + - HID: quirks: Add quirk for the Microsoft Surface 3 type-cover + - HID: google: add eel USB id + - 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 + - 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() + - 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: Fix the off-by-two error in range markings + - ice: ignore dropped packets during init + - bonding: make tx_rebalance_counter an atomic + - nfp: Fix memory leak in nfp_cpp_area_cache_add() + - seg6: fix the iif in the IPv6 socket control block + - udp: using datalen to cap max gso segments + - iavf: restore MSI state on reset + - iavf: Fix reporting when setting descriptor count + - IB/hfi1: Correct guard on eager buffer deallocation + - 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: 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*() + - btrfs: clear extent buffer uptodate when we fail to write it + - btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling + - nfsd: Fix nsfd startup race (again) + - tracefs: Have new files inherit the ownership of their parent + - clk: qcom: regmap-mux: fix parent clock lookup + - drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. + - can: pch_can: pch_can_rx_normal: fix use after free + - can: m_can: Disable and ignore ELO interrupt + - x86/sme: Explicitly map new EFI memmap table as encrypted + - libata: add horkage for ASMedia 1092 + - wait: add wake_up_pollfree() + - SAUCE: binder: export __wake_up_pollfree for binder module + - 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 + - block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) + - qede: validate non LSO skb length + - ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer + - 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 + - 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() + - Revert "UBUNTU: SAUCE: selftests: fib_tests: assign address to dummy1 for + rp_filter tests" + - selftests/fib_tests: Rework fib_rp_filter_test() + - USB: gadget: detect too-big endpoint 0 requests + - USB: gadget: zero allocate endpoint 0 buffers + - usb: core: config: fix validation of wMaxPacketValue entries + - xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime + suspending + - usb: core: config: using bit mask instead of individual bits + - xhci: avoid race between disable slot command and host runtime suspend + - 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: 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 + - irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() + - irqchip/armada-370-xp: Fix support for Multi-MSI interrupts + - 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 + - bpf: Add selftests to cover packet access corner cases + - Linux 5.4.165 + + * Focal update: v5.4.164 upstream stable release (LP: #1956381) + - NFSv42: Fix pagecache invalidation after COPY/CLONE + - of: clk: Make self-contained + - arm64: dts: mcbin: support 2W SFP modules + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - gfs2: Fix length of holes reported at end-of-file + - drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY + - mac80211: do not access the IV when it was stripped + - 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 + - platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep + - s390/setup: avoid using memblock_enforce_memory_limit + - 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 + - ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile + - ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in + hns_dsaf_ge_srst_by_port() + - 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 hist: Fix memory leak of a perf_hpp_fmt + - perf report: Fix memory leaks around perf_tip() + - net/smc: Avoid warning of possible recursive locking + - vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit + - kprobes: Limit max data_size of the kretprobe instances + - rt2x00: do not mark device gone on EPROTO errors during start + - cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() + - s390/pci: move pseudo-MMIO to prevent MIO overlap + - 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 + - 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 + - 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 + - net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() + - selftests: net: Correct case name + - rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() + - 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 + - net: annotate data-races on txq->xmit_lock_owner + - ipv4: convert fib_num_tclassid_users to atomic_t + - net/rds: correct socket tunable error in rds_tcp_tune() + - net/smc: Keep smc_close_final rc during active close + - drm/msm: Do hw_init() before capturing GPU state + - ipv6: fix memory leak in fib6_rule_suppress + - KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register + - sched/uclamp: Fix rq->uclamp_max not set on first enqueue + - parisc: Fix KBUILD_IMAGE for self-extracting kernel + - parisc: Fix "make install" on newer debian releases + - 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 + - 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: 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() + - iwlwifi: mvm: retry init flow if failed + - parisc: Mark cr16 CPU clocksource unstable on all SMP machines + - net/tls: Fix authentication failure in CCM mode + - Linux 5.4.164 + + * Focal update: v5.4.163 upstream stable release (LP: #1956380) + - 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 + - net: nexthop: fix null pointer dereference when IPv6 is not enabled + - usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts + - 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 + - media: cec: copy sequence field for the reply + - HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts + - staging/fbtft: Fix backlight + - staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() + - xen: don't continue xenstore initialization in case of errors + - xen: detect uninitialized xenbus in xenbus_init + - 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: Fix ADMA for PAGE_SIZE >= 64KiB + - mdio: aspeed: Fix "Link is Down" issue + - PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() + - PCI: aardvark: Wait for endpoint to be ready before training link + - PCI: aardvark: Fix big endian support + - PCI: aardvark: Train link immediately after enabling training + - PCI: aardvark: Improve link training + - PCI: aardvark: Issue PERST via GPIO + - PCI: aardvark: Replace custom macros by standard linux/pci_regs.h macros + - PCI: aardvark: Don't touch PCIe registers if no card connected + - PCI: aardvark: Fix compilation on s390 + - PCI: aardvark: Move PCIe reset card code to advk_pcie_train_link() + - PCI: aardvark: Update comment about disabling link training + - PCI: pci-bridge-emul: Fix array overruns, improve safety + - PCI: aardvark: Configure PCIe resources from 'ranges' DT property + - PCI: aardvark: Fix PCIe Max Payload Size setting + - PCI: aardvark: Implement re-issuing config requests on CRS response + - PCI: aardvark: Simplify initialization of rootcap on virtual bridge + - PCI: aardvark: Fix link training + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - pinctrl: armada-37xx: Correct PWM pins definitions + - arm64: dts: marvell: armada-37xx: Set pcie_reset_pin to gpio function + - proc/vmcore: fix clearing user buffer by properly using clear_user() + - netfilter: ipvs: Fix reuse connection if RS weight is 0 + - ARM: dts: BCM5301X: Fix I2C controller interrupt + - ARM: dts: BCM5301X: Add interrupt properties to GPIO node + - ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer + - ASoC: topology: Add missing rwsem around snd_ctl_remove() calls + - net: ieee802154: handle iftypes as u32 + - firmware: arm_scmi: pm: Propagate return value to caller + - NFSv42: Don't fail clone() unless the OP_CLONE operation failed + - ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE + - scsi: mpt3sas: Fix kernel panic during drive powercycle test + - drm/vc4: fix error code in vc4_create_object() + - iavf: Prevent changing static ITR values if adaptive moderation is on + - ipv6: fix typos in __ip6_finish_output() + - nfp: checking parameter process for rx-usecs/tx-usecs is invalid + - net: ipv6: add fib6_nh_release_dsts stub + - net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group + - scsi: core: sysfs: Fix setting device state to SDEV_RUNNING + - net/smc: Ensure the active closing peer first closes clcsock + - nvmet-tcp: fix incomplete data digest send + - net/ncsi : Add payload to be 32-bit aligned to fix dropped packets + - PM: hibernate: use correct mode for swsusp_close() + - tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited + flows + - nvmet: use IOCB_NOWAIT only if the filesystem supports it + - igb: fix netpoll exit with traffic + - MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 + - 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: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP + - net: mscc: ocelot: correctly report the timestamping RX filters in ethtool + - f2fs: set SBI_NEED_FSCK flag when inconsistent node block found + - smb3: do not error on fsync when readonly + - vhost/vsock: fix incorrect used length reported to the guest + - tracing: Check pid filtering when creating events + - s390/mm: validate VMA in PGSTE manipulation functions + - shm: extend forced shm destroy to support objects from several IPC nses + - NFC: add NCI_UNREG flag to eliminate the race + - fuse: release pipe buf after last use + - xen: sync include/xen/interface/io/ring.h with Xen's newest version + - xen/blkfront: read response from backend only once + - xen/blkfront: don't take local copy of a request from the ring page + - xen/blkfront: don't trust the backend response data blindly + - xen/netfront: read response from backend only once + - xen/netfront: don't read data from request on the ring page + - xen/netfront: disentangle tx_skb_freelist + - xen/netfront: don't trust the backend response data blindly + - tty: hvc: replace BUG_ON() with negative return value + - Linux 5.4.163 + + * net/mlx5e: EPERM on vlan 0 programming (LP: #1957753) + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + + * CVE-2021-4083 + - fget: check that the fd still exists after getting a ref to it + + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + + -- Stefan Bader Thu, 03 Feb 2022 19:16:55 +0100 + +linux (5.4.0-99.112) focal; urgency=medium + + * focal/linux: 5.4.0-99.112 -proposed tracker (LP: #1959817) + + * linux-image-5.4.0-97.110 freezes by accessing cifs shares (LP: #1959665) + - Revert "cifs: To match file servers, make sure the server hostname matches" + - Revert "cifs: set a minimum of 120s for next dns resolution" + - Revert "cifs: use the expiry output of dns_query to schedule next + resolution" + + -- Stefan Bader Wed, 02 Feb 2022 17:21:18 +0100 + +linux (5.4.0-97.110) focal; urgency=medium + + * icmp_redirect from selftests fails on F/kvm (unary operator expected) + (LP: #1938964) + - selftests: icmp_redirect: pass xfail=0 to log_test() + + * Focal: CIFS stable updates (LP: #1954926) + - cifs: use the expiry output of dns_query to schedule next resolution + - cifs: set a minimum of 120s for next dns resolution + - cifs: To match file servers, make sure the server hostname matches + + * seccomp_bpf in seccomp from ubuntu_kernel_selftests failed to build on B-5.4 + (LP: #1896420) + - SAUCE: selftests/seccomp: fix "storage size of 'md' isn't known" build issue + - SAUCE: selftests/seccomp: Fix s390x regs not defined issue + + * system crash when removing ipmi_msghandler module (LP: #1950666) + - ipmi: Move remove_work to dedicated workqueue + - ipmi: msghandler: Make symbol 'remove_work_wq' static + + * zcrypt DD: Toleration for new IBM Z Crypto Hardware - (Backport to Ubuntu + 20.04) (LP: #1954680) + - s390/AP: support new dynamic AP bus size limit + + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - s390/setup: diag 318: refactor struct + - s390/kvm: diagnose 0x318 sync and reset + - KVM: s390: remove diag318 reset code + - KVM: s390: add debug statement for diag 318 CPNC data + + * Updates to ib_peer_memory requested by Nvidia (LP: #1947206) + - SAUCE: RDMA/core: Updated ib_peer_memory + + * Include Infiniband Peer Memory interface (LP: #1923104) + - IB: Allow calls to ib_umem_get from kernel ULPs + - SAUCE: RDMA/core: Introduce peer memory interface + + * Focal update: v5.4.162 upstream stable release (LP: #1954834) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - ARM: dts: NSP: Fix mpcore, mmc node names + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: freescale: fix arm,sp805 compatible string + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - firmware_loader: fix pre-allocated buf built-in firmware use + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - 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 + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - 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() + - powerpc/5200: dts: fix memory node unit name + - ALSA: gus: fix null pointer dereference on pointer block + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - 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 + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - tracing: Save normal string variables + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - RDMA/netlink: Add __maybe_unused to static inline in C file + - 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 + - net: bnx2x: fix variable dereferenced before check + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - 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 + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - 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 + - 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 + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - NFC: reorder the logic in nfc_{un,}register_device + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - 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 + - s390/kexec: fix return code handling + - arm64: vdso32: suppress error message for 'make mrproper' + - tun: fix bonding active backup with arp monitoring + - hexagon: export raw I/O routines for modules + - ipc: WARN if trying to remove ipc object which is absent + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - s390/kexec: fix memory leak of ipl report buffer + - udf: Fix crash after seekdir + - btrfs: fix memory ordering between normal and ordered work functions + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - drm/udl: fix control-message timeout + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - Revert "net: mvpp2: disable force link UP during port init procedure" + - perf/core: Avoid put_page() when GUP fails + - batman-adv: Consider fragmentation for needed_headroom + - batman-adv: Reserve needed_*room for fragments + - batman-adv: Don't always reallocate the fragmentation skb head + - ASoC: DAPM: Cover regression by kctl change notification fix + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Delete always true check of PF pointer + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.4.162 + + * Focal update: v5.4.161 upstream stable release (LP: #1954828) + - scsi: ufs: Fix interrupt error message for shared interrupts + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - scsi: ufs: Fix tm request when non-fatal error happens + - fortify: Explicitly disable Clang support + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Destroy sysfs before freeing entries + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() + - erofs: fix unsafe pagevec reuse of hooked pclusters + - Linux 5.4.161 + + * Focal update: v5.4.160 upstream stable release (LP: #1953387) + - 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 + - binder: use euid from cred instead of using task + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - 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: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - 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: ite-cir: IR receiver stop working after receive overflow + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - 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: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - 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 + - cavium: Return negative value when pci_alloc_irq_vectors() fails + - scsi: qla2xxx: Return -ENOMEM if kzalloc() fails + - scsi: qla2xxx: Fix unmap of already freed sgl + - cavium: Fix return values of the probe function + - sfc: Don't use netif_info before net_device setup + - hyperv/vmbus: include linux/bitops.h + - ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode + - reset: socfpga: add empty driver allowing consumers to probe + - mmc: winbond: don't build on M68K + - drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 + - bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT + - bpf: Prevent increasing bpf_jit_limit above max + - xen/netfront: stop tx queues during live migration + - nvmet-tcp: fix a memory leak when releasing a queue + - spi: spl022: fix Microwire full duplex mode + - net: multicast: calculate csum of looped-back and forwarded packets + - watchdog: Fix OMAP watchdog early handling + - drm: panel-orientation-quirks: Add quirk for GPD Win3 + - nvmet-tcp: fix header digest verification + - r8169: Add device 10ec:8162 to driver r8169 + - vmxnet3: do not stop tx queues after netif_device_detach() + - nfp: bpf: relax prog rejection for mtu check through max_pkt_offset + - net/smc: Correct spelling mistake to TCPF_SYN_RECV + - 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 + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - 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 + - wcn36xx: Fix HT40 capability for 2Ghz band + - mwifiex: Read a PCI register after writing the TX ring write pointer + - libata: fix checking of DMA state + - 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 + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - signal: Remove the bogus sigkill_pending in ptrace_stop + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - serial: core: Fix initializing and restoring termios speed + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - xen/balloon: add late_initcall_sync() for initial ballooning done + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - 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 return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - iio: dac: ad5446: Fix ad5622_write() return value + - USB: serial: keyspan: fix memleak on probe errors + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - 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() + - drm/panel-orientation-quirks: add Valve Steam Deck + - platform/x86: wmi: do not fail if disabling fails + - 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 + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - 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 + - ath10k: high latency fixes for beacon buffer + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - 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: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: imx: set a media_device bus_info string + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - 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 + - ACPICA: Avoid evaluating methods too early during system resume + - 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 + - tracefs: Have tracefs directories not set OTH permission bits by default + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - leaking_addresses: Always print a trailing newline + - memstick: r592: Fix a UAF bug when removing the driver + - 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 + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - block: remove inaccurate requeue check + - nvmet: 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 + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - 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 + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - 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() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - 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 + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - drm/v3d: fix wait for TMU write combiner flush + - virtio-gpu: fix possible memory allocation failure + - net: net_namespace: Fix undefined member in key_remove_domain() + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - crypto: caam - disable pkc for non-E SoCs + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - net: dsa: rtl8366rb: Fix off-by-one bug + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - drm/amdgpu: fix warning for overflow check + - media: em28xx: add missing em28xx_close_extension + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: dvb-usb: fix ununit-value in az6027_rc_query + - 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: 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 + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath9k: Fix potential interrupt storm on queue reset + - EDAC/amd64: Handle three rank interleaving mode + - netfilter: nft_dynset: relax superfluous check on set updates + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - 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 + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - mmc: mxs-mmc: disable regulator on error and in the remove function + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - phy: micrel: ksz8041nl: do not use power down mode + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - drm/msm: Fix potential NULL dereference in DPU SSPP + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - libbpf: Fix BTF data layout checks and allow empty BTF + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - irq: mips: avoid nested irq_enter() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - 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 + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - net: amd-xgbe: Toggle PLL settings during rate change + - net: phylink: avoid mvneta warning when setting pause parameters + - 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 + - RDMA/rxe: Fix wrong port_cap_flags + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - 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: meson-g12a: Fix the pwm regulator supply properties + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - arm: dts: omap3-gta04a4: accelerometer irq fix + - 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 + - video: fbdev: chipsfb: use memset_io() instead of memset() + - 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 + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - ARM: dts: stm32: fix SAI sub nodes register range + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - phy: qcom-qusb2: Fix a memory leak on probe + - serial: xilinx_uartps: Fix race condition causing stuck TX + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/44x/fsp2: add missing of_node_put + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - 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() + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - mtd: core: don't remove debugfs directory if device is in use + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - 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` + - 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: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - xen-pciback: Fix return in pm_ctrl_init() + - net: davinci_emac: Fix interrupt pacing disable + - net: vlan: fix a UAF in vlan_dev_real_dev() + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - 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 + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: allow configure ETS bandwidth of all TCs + - 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 + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix set_fixmap() on PA1.x CPUs + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - ovl: fix deadlock in splice write + - powerpc/lib: Add helper to check if offset is within conditional branch + range + - powerpc/bpf: Validate branch ranges + - powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 + - powerpc/security: Add a helper to query stf_barrier type + - powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC + - 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 + - video: backlight: Drop maximum brightness override for brightness zero + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/cio: make ccw_device_dma_* more robust + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - SUNRPC: Partial revert of commit 6f9f17287e78 + - ath10k: fix invalid dma_addr_t token assignment + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - Linux 5.4.160 + - soc/tegra: pmc: Fix imbalanced clock disabling in error code path + + * Focal update: v5.4.159 upstream stable release (LP: #1953071) + - 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 + - binder: don't detect sender/target during buffer cleanup + - printk/console: Allow to disable console output by using console="" or + console=null + - 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 + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.4.159 + + * Focal update: v5.4.158 upstream stable release (LP: #1953066) + - scsi: core: Put LLD module refcnt after SCSI device is released + - vrf: Revert "Reset skb conntrack connection..." + - net: ethernet: microchip: lan743x: Fix skb allocation failure + - 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" + - sfc: Fix reading non-legacy supported link modes + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Linux 5.4.158 + + * [Ubuntu 20.04] Problem leading IUCV service down (on s390x) (LP: #1913442) + - usercopy: mark dma-kmalloc caches as usercopy caches + + -- Kleber Sacilotto de Souza Thu, 13 Jan 2022 19:00:41 +0100 + +linux (5.4.0-96.109) focal; urgency=medium + + * Support builtin revoked certificates (LP: #1932029) + - [Config]: add i386 to CONFIG_SYSTEM_REVOCATION_KEYS annotation + + * CVE-2022-0185 + - SAUCE: vfs: Out-of-bounds write of heap buffer in fs_context.c + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + + -- Thadeu Lima de Souza Cascardo Wed, 12 Jan 2022 12:16:43 -0300 + +linux (5.4.0-94.106) focal; urgency=medium + + * focal/linux: 5.4.0-94.106 -proposed tracker (LP: #1956628) + + * [Regression] Focal kernel 5.4.0-92.103 fails to boot when Secure Encrypted + Virtualization(SEV) is enabled (LP: #1956575) + - x86/ioremap: Map EFI-reserved memory as encrypted for SEV + + -- Khalid Elmously Thu, 06 Jan 2022 16:56:46 -0500 + +linux (5.4.0-92.103) focal; urgency=medium + + * focal/linux: 5.4.0-92.103 -proposed tracker (LP: #1952316) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/2021.11.29) + + * CVE-2021-4002 + - tlb: mmu_gather: add tlb_flush_*_range APIs + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + + * Re-enable DEBUG_INFO_BTF where it was disabled (LP: #1945632) + - [Config] Enable CONFIG_DEBUG_INFO_BTF on all arches + + * Focal linux-azure: Vm crash on Dv5/Ev5 (LP: #1950462) + - KVM: VMX: eVMCS: make evmcs_sanitize_exec_ctrls() work again + - jump_label: Fix usage in module __init + + * Support builtin revoked certificates (LP: #1932029) + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() not complain about + cert lists that aren't present." + - integrity: Move import of MokListRT certs to a separate routine + - integrity: Load certs from the EFI MOK config table + - certs: Add ability to preload revocation certs + - integrity: Load mokx variables into the blacklist keyring + - certs: add 'x509_revocation_list' to gitignore + - SAUCE: Dump stack when X.509 certificates cannot be loaded + - [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 + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - efi: Support for MOK variable config table + - efi: mokvar-table: fix some issues in new code + - efi: mokvar: add missing include of asm/early_ioremap.h + - efi/mokvar: Reserve the table only if it is in boot services data + - 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 + + * Focal update: v5.4.157 upstream stable release (LP: #1951883) + - ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned + - ARM: 9134/1: remove duplicate memcpy() definition + - ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype + - ARM: 9141/1: only warn about XIP address when not compile testing + - ipv6: use siphash in rt6_exception_hash() + - ipv4: use siphash instead of Jenkins in fnhe_hashfun() + - usbnet: sanity check for maxpacket + - usbnet: fix error return code in usbnet_probe() + - Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" + - ata: sata_mv: Fix the error handling of mv_chip_id() + - nfc: port100: fix using -ERRNO as command type mask + - net/tls: Fix flipped sign in tls_err_abort() calls + - mmc: vub300: fix control-message timeouts + - mmc: cqhci: clear HALT state after CQE enable + - mmc: dw_mmc: exynos: fix the finding clock sample value + - mmc: sdhci: Map more voltage level to SDHCI_POWER_330 + - mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning + circuit + - cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() + - net: lan78xx: fix division by zero in send path + - tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function + - IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields + - IB/hfi1: Fix abba locking issue with sc_disable() + - nvmet-tcp: fix data digest pointer calculation + - nvme-tcp: fix data digest pointer calculation + - RDMA/mlx5: Set user priority for DCT + - arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node + - regmap: Fix possible double-free in regcache_rbtree_exit() + - net: batman-adv: fix error handling + - net: Prevent infinite while loop in skb_tx_hash() + - RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string + - nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST + - net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume + fails + - net: ethernet: microchip: lan743x: Fix dma allocation failure by using + dma_set_mask_and_coherent + - net: nxp: lpc_eth.c: avoid hang when bringing interface down + - net/tls: Fix flipped sign in async_wait.err assignment + - phy: phy_ethtool_ksettings_get: Lock the phy for consistency + - phy: phy_start_aneg: Add an unlocked version + - sctp: use init_tag from inithdr for ABORT chunk + - sctp: fix the processing for INIT_ACK chunk + - sctp: fix the processing for COOKIE_ECHO chunk + - sctp: add vtag check in sctp_sf_violation + - sctp: add vtag check in sctp_sf_do_8_5_1_E_sa + - sctp: add vtag check in sctp_sf_ootb + - net: use netif_is_bridge_port() to check for IFF_BRIDGE_PORT + - cfg80211: correct bridge/4addr mode check + - KVM: s390: clear kicked_mask before sleeping again + - KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu + - perf script: Check session->header.env.arch before using it + - Linux 5.4.157 + + * keyboard not working on Medion notebook s17 series (LP: #1950536) + - ACPI: resources: Add one more Medion model in IRQ override quirk + + * creat09 from ubuntu_ltp_syscalls and cve-2018-13405 from ubuntu_ltp/cve + failed with XFS (LP: #1950239) + - xfs: ensure that the inode uid/gid match values match the icdinode ones + - xfs: merge the projid fields in struct xfs_icdinode + - xfs: remove the icdinode di_uid/di_gid members + - xfs: fix up non-directory creation in SGID directories + + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + + * Focal update: v5.4.156 upstream stable release (LP: #1951295) + - parisc: math-emu: Fix fall-through warnings + - net: switchdev: do not propagate bridge updates across bridges + - tee: optee: Fix missing devices unregister during optee_remove + - ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default + - xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: xtfpga: Try software restart before simulating CPU reset + - NFSD: Keep existing listeners on portlist error + - dma-debug: fix sg checks in debug_dma_map_sg() + - ASoC: wm8960: Fix clock configuration on slave mode + - netfilter: ipvs: make global sysctl readonly in non-init netns + - lan78xx: select CRC32 + - net: dsa: lantiq_gswip: fix register definition + - NIOS2: irqflags: rename a redefined register name + - net: hns3: reset DWRR of unused tc to zero + - net: hns3: add limit ets dwrr bandwidth cannot be 0 + - net: hns3: disable sriov before unload hclge layer + - net: stmmac: Fix E2E delay mechanism + - net: enetc: fix ethtool counter name for PM0_TERR + - can: rcar_can: fix suspend/resume + - can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state + notification + - can: peak_pci: peak_pci_remove(): fix UAF + - can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer + - can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv + - can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with + error length + - can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes + - ceph: fix handling of "meta" errors + - ocfs2: fix data corruption after conversion from inline format + - ocfs2: mount fails with buffer overflow in strlen + - elfcore: correct reference to CONFIG_UML + - ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset + - ALSA: hda/realtek: Add quirk for Clevo PC50HS + - ASoC: DAPM: Fix missing kctl change notifications + - audit: fix possible null-pointer dereference in audit_filter_rules + - powerpc64/idle: Fix SP offsets when saving GPRs + - KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() + - KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to + guest + - powerpc/idle: Don't corrupt back chain when going idle + - mm, slub: fix mismatch between reconstructed freelist depth and cnt + - mm, slub: fix potential memoryleak in kmem_cache_open() + - nfc: nci: fix the UAF of rf_conn_info object + - isdn: cpai: check ctr->cnr to avoid array index out of bound + - netfilter: Kconfig: use 'default y' instead of 'm' for bool config option + - selftests: netfilter: remove stray bash debug line + - gcc-plugins/structleak: add makefile var for disabling structleak + - btrfs: deal with errors when checking if a dir entry exists during log + replay + - net: stmmac: add support for dwmac 3.40a + - ARM: dts: spear3xx: Fix gmac node + - isdn: mISDN: Fix sleeping function called from invalid context + - platform/x86: intel_scu_ipc: Update timeout value in comment + - ALSA: hda: avoid write to STATESTS if controller is in reset + - Input: snvs_pwrkey - add clk handling + - scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() + - tracing: Have all levels of checks prevent recursion + - ARM: 9122/1: select HAVE_FUTEX_CMPXCHG + - pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() + - Linux 5.4.156 + + * ubuntu_ltp / finit_module02 fails on v4.15 and other kernels + (LP: #1950644) // Focal update: v5.4.156 upstream stable release + (LP: #1951295) + - vfs: check fd has read access in kernel_read_file_from_fd() + + * Focal update: v5.4.155 upstream stable release (LP: #1951291) + - ovl: simplify file splice + - ALSA: usb-audio: Add quirk for VF0770 + - ALSA: seq: Fix a potential UAF by wrong private_free call order + - ALSA: hda/realtek: Complete partial device name to avoid ambiguity + - ALSA: hda/realtek: Add quirk for Clevo X170KM-G + - ALSA: hda/realtek - ALC236 headset MIC recording issue + - ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW + - nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' + - s390: fix strrchr() implementation + - csky: don't let sigreturn play with priveleged bits of status register + - csky: Fixup regs.sr broken in ptrace + - btrfs: unlock newly allocated extent buffer after error + - btrfs: deal with errors when replaying dir entry during log replay + - btrfs: deal with errors when adding inode reference during log replay + - btrfs: check for error when looking up inode during dir entry replay + - watchdog: orion: use 0 for unset heartbeat + - x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails + - mei: me: add Ice Lake-N device id. + - xhci: guard accesses to ep_state in xhci_endpoint_reset() + - xhci: Fix command ring pointer corruption while aborting a command + - xhci: Enable trust tx length quirk for Fresco FL11 USB controller + - cb710: avoid NULL pointer subtraction + - efi/cper: use stack buffer for error record decoding + - efi: Change down_interruptible() in virt_efi_reset_system() to + down_trylock() + - usb: musb: dsps: Fix the probe error path + - Input: xpad - add support for another USB ID of Nacon GC-100 + - USB: serial: qcserial: add EM9191 QDL support + - USB: serial: option: add Quectel EC200S-CN module support + - USB: serial: option: add Telit LE910Cx composition 0x1204 + - USB: serial: option: add prod. id for Quectel EG91 + - EDAC/armada-xp: Fix output of uncorrectable error counter + - nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells + - x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically + - powerpc/xive: Discard disabled interrupts in get_irqchip_state() + - iio: adc: aspeed: set driver data when adc probe. + - iio: adc128s052: Fix the error handling path of 'adc128_probe()' + - iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED + - iio: light: opt3001: Fixed timeout error when 0 lux + - iio: ssp_sensors: add more range checking in ssp_parse_dataframe() + - iio: ssp_sensors: fix error code in ssp_print_mcu_debug() + - iio: dac: ti-dac5571: fix an error code in probe() + - sctp: account stream padding length for reconf chunk + - gpio: pca953x: Improve bias setting + - net: arc: select CRC32 + - net: korina: select CRC32 + - net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp + - net: stmmac: fix get_hw_feature() on old hardware + - net: encx24j600: check error in devm_regmap_init_encx24j600 + - ethernet: s2io: fix setting mac address during resume + - nfc: fix error handling of nfc_proto_register() + - NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() + - NFC: digital: fix possible memory leak in digital_in_send_sdd_req() + - pata_legacy: fix a couple uninitialized variable bugs + - ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() + - mlxsw: thermal: Fix out-of-bounds memory accesses + - platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call + - drm/panel: olimex-lcd-olinuxino: select CRC32 + - drm/msm: Fix null pointer dereference on pointer edp + - drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() + - drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling + - acpi/arm64: fix next_platform_timer() section mismatch error + - mqprio: Correct stats in mqprio_dump_class_stats(). + - qed: Fix missing error code in qed_slowpath_start() + - r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 + - ionic: don't remove netdev->dev_addr when syncing uc list + - Linux 5.4.155 + + * [UBUNTU 20.04] kernel: unable to read partitions on virtio-block dasd (kvm) + (LP: #1950144) // Focal update: v5.4.155 upstream stable release + (LP: #1951291) + - virtio: write back F_VERSION_1 before validate + + * Focal update: v5.4.154 upstream stable release (LP: #1951288) + - net: phy: bcm7xxx: Fixed indirect MMD operations + - ext4: correct the error path of ext4_write_inline_data_end() + - HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS + - netfilter: ip6_tables: zero-initialize fragment offset + - HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs + - netfilter: nf_nat_masquerade: make async masq_inet6_event handling generic + - netfilter: nf_nat_masquerade: defer conntrack walk to work queue + - mac80211: Drop frames from invalid MAC address in ad-hoc mode + - m68k: Handle arrivals of multiple signals correctly + - net: prevent user from passing illegal stab size + - mac80211: check return value of rhashtable_init + - net: sun: SUNVNET_COMMON should depend on INET + - drm/amdgpu: fix gart.bo pin_count leak + - scsi: ses: Fix unsigned comparison with less than zero + - scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported" + - sched: Always inline is_percpu_thread() + - Linux 5.4.154 + + * Focal update: v5.4.153 upstream stable release (LP: #1950014) + - Partially revert "usb: Kconfig: using select for USB_COMMON dependency" + - USB: cdc-acm: fix racy tty buffer accesses + - USB: cdc-acm: fix break reporting + - usb: typec: tcpm: handle SRC_STARTUP state if cc changes + - xen/privcmd: fix error handling in mmap-resource processing + - mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk + - ovl: fix missing negative dentry check in ovl_rename() + - nfsd: fix error handling of register_pernet_subsys() in init_nfsd() + - nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero + - xen/balloon: fix cancelled balloon action + - ARM: dts: omap3430-sdp: Fix NAND device node + - ARM: dts: qcom: apq8064: use compatible which contains chipid + - MIPS: BPF: Restore MIPS32 cBPF JIT + - bpf, mips: Validate conditional branch offsets + - soc: qcom: socinfo: Fixed argument passed to platform_set_data() + - ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference + - soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment + - ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo + - ARM: dts: imx: Fix USB host power regulator polarity on M53Menlo + - arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding + - xtensa: move XCHAL_KIO_* definitions to kmem_layout.h + - xtensa: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: call irqchip_init only when CONFIG_USE_OF is selected + - bpf, arm: Fix register clobbering in div/mod implementation + - bpf: Fix integer overflow in prealloc_elems_and_freelist() + - phy: mdio: fix memory leak + - net_sched: fix NULL deref in fifo_set_limit() + - powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 + - ptp_pch: Load module automatically if ID matches + - arm64: dts: freescale: Fix SP805 clock-names + - arm64: dts: ls1028a: add missing CAN nodes + - ARM: imx6: disable the GIC CPU interface before calling stby-poweroff + sequence + - net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() + - net/sched: sch_taprio: properly cancel timer from taprio_destroy() + - net: sfp: Fix typo in state machine debug string + - netlink: annotate data races around nlk->bound + - bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 + - video: fbdev: gbefb: Only instantiate device when built for IP32 + - drm/nouveau/debugfs: fix file release memory leak + - gve: Correct available tx qpl check + - rtnetlink: fix if_nlmsg_stats_size() under estimation + - gve: fix gve_get_stats() + - i40e: fix endless loop under rtnl + - i40e: Fix freeing of uninitialized misc IRQ vector + - net: prefer socket bound to interface when not in VRF + - i2c: acpi: fix resource leak in reconfiguration device addition + - bpf, s390: Fix potential memory leak about jit_data + - RISC-V: Include clone3() on rv32 + - x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI + - x86/hpet: Use another crystalball to evaluate HPET usability + - x86/Kconfig: Correct reference to MWINCHIP3D + - Linux 5.4.153 + + * Focal update: v5.4.152 upstream stable release (LP: #1950009) + - net: mdio: introduce a shutdown method to mdio device drivers + - xen-netback: correct success/error reporting for the SKB-with-fraglist case + - sparc64: fix pci_iounmap() when CONFIG_PCI is not set + - ext2: fix sleeping in atomic bugs on error + - scsi: sd: Free scsi_disk device via put_device() + - usb: testusb: Fix for showing the connection speed + - usb: dwc2: check return value after calling platform_get_resource() + - selftests: be sure to make khdr before other targets + - selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn + - scsi: ses: Retry failed Send/Receive Diagnostic commands + - tools/vm/page-types: remove dependency on opt_file for idle page tracking + - KVM: do not shrink halt_poll_ns below grow_start + - kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] + - perf/x86: Reset destroy callback on event init failure + - silence nfscache allocation warnings with kvzalloc + - libata: Add ATA_HORKAGE_NO_NCQ_ON_ATI for Samsung 860 and 870 SSD. + - Linux 5.4.152 + + * linux-aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + (LP: #1949882) + - SAUCE: aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + + -- Kleber Sacilotto de Souza Fri, 26 Nov 2021 15:42:03 +0100 + +linux (5.4.0-91.102) focal; urgency=medium + + * focal/linux: 5.4.0-91.102 -proposed tracker (LP: #1949840) + + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/2021.11.08) + + * KVM emulation failure when booting into VM crash kernel with multiple CPUs + (LP: #1948862) + - KVM: x86: Properly reset MMU context at vCPU RESET/INIT + + * aufs: kernel bug with apparmor and fuseblk (LP: #1948470) + - SAUCE: aufs: bugfix, stop omitting path->mnt + + * ebpf: bpf_redirect fails with ip6 gre interfaces (LP: #1947164) + - net: handle ARPHRD_IP6GRE in dev_is_mac_header_xmit() + + * require CAP_NET_ADMIN to attach N_HCI ldisc (LP: #1949516) + - Bluetooth: hci_ldisc: require CAP_NET_ADMIN to attach N_HCI ldisc + + * ACL updates on OCFS2 are not revalidated (LP: #1947161) + - ocfs2: fix remounting needed after setfacl command + + * ppc64 BPF JIT mod by 1 will not return 0 (LP: #1948351) + - powerpc/bpf: Fix BPF_MOD when imm == 1 + + * 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" + + * Reassign I/O Path of ConnectX-5 Port 1 before Port 2 causes NULL dereference + (LP: #1943464) + - s390/pci: fix leak of PCI device structure + - s390/pci: fix use after free of zpci_dev + - s390/pci: fix zpci_zdev_put() on reserve + + * [SRU][F] USB: serial: pl2303: add support for PL2303HXN (LP: #1948377) + - USB: serial: pl2303: add support for PL2303HXN + - USB: serial: pl2303: fix line-speed handling on newer chips + + * Focal update: v5.4.151 upstream stable release (LP: #1947888) + - tty: Fix out-of-bound vmalloc access in imageblit + - cpufreq: schedutil: Use kobject release() method to free sugov_tunables + - cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory + - usb: cdns3: fix race condition before setting doorbell + - fs-verity: fix signed integer overflow with i_size near S64_MAX + - hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary + structure field + - scsi: ufs: Fix illegal offset in UPIU event trace + - mac80211: fix use-after-free in CCMP/GCMP RX + - x86/kvmclock: Move this_cpu_pvti into kvmclock.h + - drm/amd/display: Pass PCI deviceid into DC + - ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 + - hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced + from sysfs + - mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug + - mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap + - mac80211: mesh: fix potentially unaligned access + - mac80211-hwsim: fix late beacon hrtimer handling + - sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb + - hwmon: (tmp421) report /PVLD condition as fault + - hwmon: (tmp421) fix rounding for negative values + - net: ipv4: Fix rtnexthop len when RTA_FLOW is present + - e100: fix length calculation in e100_get_regs_len + - e100: fix buffer overrun in e100_get_regs + - selftests, bpf: test_lwt_ip_encap: Really disable rp_filter + - scsi: csiostor: Add module softdep on cxgb4 + - net: hns3: do not allow call hns3_nic_net_open repeatedly + - net: sched: flower: protect fl_walk() with rcu + - af_unix: fix races in sk_peer_pid and sk_peer_cred accesses + - perf/x86/intel: Update event constraints for ICX + - elf: don't use MAP_FIXED_NOREPLACE for elf interpreter mappings + - debugfs: debugfs_create_file_size(): use IS_ERR to check for error + - ipack: ipoctal: fix stack information leak + - ipack: ipoctal: fix tty registration race + - ipack: ipoctal: fix tty-registration error handling + - ipack: ipoctal: fix missing allocation-failure check + - ipack: ipoctal: fix module reference leak + - ext4: fix loff_t overflow in ext4_max_bitmap_size() + - ext4: fix reserved space counter leakage + - ext4: fix potential infinite loop in ext4_dx_readdir() + - HID: u2fzero: ignore incomplete packets without data + - net: udp: annotate data race around udp_sk(sk)->corkflag + - net: stmmac: don't attach interface until resume finishes + - PCI: Fix pci_host_bridge struct device release/free handling + - libnvdimm/pmem: Fix crash triggered when I/O in-flight during unbind + - hso: fix bailout in error case of probe + - usb: hso: fix error handling code of hso_create_net_device + - usb: hso: remove the bailout parameter + - crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() + - HID: betop: fix slab-out-of-bounds Write in betop_probe + - netfilter: ipset: Fix oversized kvmalloc() calls + - HID: usbhid: free raw_report buffers in usbhid_stop + - Linux 5.4.151 + + * Focal update: v5.4.150 upstream stable release (LP: #1947886) + - usb: gadget: r8a66597: fix a loop in set_feature() + - usb: dwc2: gadget: Fix ISOC flow for BDMA and Slave + - usb: dwc2: gadget: Fix ISOC transfer complete handling for DDMA + - usb: musb: tusb6010: uninitialized data in tusb_fifo_write_unaligned() + - cifs: fix incorrect check for null pointer in header_assemble + - xen/x86: fix PV trap handling on secondary processors + - usb-storage: Add quirk for ScanLogic SL11R-IDE older than 2.6c + - USB: serial: cp210x: add ID for GW Instek GDM-834x Digital Multimeter + - USB: cdc-acm: fix minor-number release + - binder: make sure fd closes complete + - staging: greybus: uart: fix tty use after free + - Re-enable UAS for LaCie Rugged USB3-FW with fk quirk + - USB: serial: mos7840: remove duplicated 0xac24 device ID + - USB: serial: option: add Telit LN920 compositions + - USB: serial: option: remove duplicate USB device ID + - USB: serial: option: add device id for Foxconn T99W265 + - mcb: fix error handling in mcb_alloc_bus() + - erofs: fix up erofs_lookup tracepoint + - btrfs: prevent __btrfs_dump_space_info() to underflow its free space + - serial: mvebu-uart: fix driver's tx_empty callback + - net: hso: fix muxed tty registration + - afs: Fix incorrect triggering of sillyrename on 3rd-party invalidation + - platform/x86/intel: punit_ipc: Drop wrong use of ACPI_PTR() + - enetc: Fix illegal access when reading affinity_hint + - bnxt_en: Fix TX timeout when TX ring size is set to the smallest + - net/smc: add missing error check in smc_clc_prfx_set() + - gpio: uniphier: Fix void functions to remove return value + - qed: rdma - don't wait for resources under hw error recovery flow + - net/mlx4_en: Don't allow aRFS for encapsulated packets + - scsi: iscsi: Adjust iface sysfs attr detection + - tty: synclink_gt, drop unneeded forward declarations + - tty: synclink_gt: rename a conflicting function name + - fpga: machxo2-spi: Return an error on failure + - fpga: machxo2-spi: Fix missing error code in machxo2_write_complete() + - thermal/core: Potential buffer overflow in thermal_build_list_of_policies() + - cifs: fix a sign extension bug + - scsi: qla2xxx: Restore initiator in dual mode + - scsi: lpfc: Use correct scnprintf() limit + - irqchip/goldfish-pic: Select GENERIC_IRQ_CHIP to fix build + - irqchip/gic-v3-its: Fix potential VPE leak on error + - md: fix a lock order reversal in md_alloc + - blktrace: Fix uaf in blk_trace access after removing by sysfs + - net: macb: fix use after free on rmmod + - net: stmmac: allow CSR clock of 300MHz + - m68k: Double cast io functions to unsigned long + - ipv6: delay fib6_sernum increase in fib6_add + - bpf: Add oversize check before call kvcalloc() + - xen/balloon: use a kernel thread instead a workqueue + - nvme-multipath: fix ANA state updates when a namespace is not present + - sparc32: page align size in arch_dma_alloc + - blk-cgroup: fix UAF by grabbing blkcg lock before destroying blkg pd + - compiler.h: Introduce absolute_pointer macro + - net: i825xx: Use absolute_pointer for memcpy from fixed memory location + - sparc: avoid stringop-overread errors + - qnx4: avoid stringop-overread errors + - parisc: Use absolute_pointer() to define PAGE0 + - arm64: Mark __stack_chk_guard as __ro_after_init + - alpha: Declare virt_to_phys and virt_to_bus parameter as pointer to volatile + - net: 6pack: Fix tx timeout and slot time + - spi: Fix tegra20 build with CONFIG_PM=n + - EDAC/synopsys: Fix wrong value type assignment for edac_mode + - thermal/drivers/int340x: Do not set a wrong tcc offset on resume + - arm64: dts: marvell: armada-37xx: Extend PCIe MEM space + - xen/balloon: fix balloon kthread freezing + - qnx4: work around gcc false positive warning bug + - Linux 5.4.150 + + * ACL updates on OCFS2 are not revalidated (LP: #1947161) // Focal update: + v5.4.150 upstream stable release (LP: #1947886) + - ocfs2: drop acl cache for directories too + + * Focal update: v5.4.149 upstream stable release (LP: #1947885) + - PCI: pci-bridge-emul: Fix big-endian support + - PCI: aardvark: Indicate error in 'val' when config read fails + - PCI: pci-bridge-emul: Add PCIe Root Capabilities Register + - PCI: aardvark: Fix reporting CRS value + - PCI/ACPI: Add Ampere Altra SOC MCFG quirk + - KVM: remember position in kvm->vcpus array + - console: consume APC, DM, DCS + - s390/pci_mmio: fully validate the VMA before calling follow_pte() + - ARM: Qualify enabling of swiotlb_init() + - apparmor: remove duplicate macro list_entry_is_head() + - ARM: 9077/1: PLT: Move struct plt_entries definition to header + - ARM: 9078/1: Add warn suppress parameter to arm_gen_branch_link() + - ARM: 9079/1: ftrace: Add MODULE_PLTS support + - ARM: 9098/1: ftrace: MODULE_PLT: Fix build problem without DYNAMIC_FTRACE + - sctp: validate chunk size in __rcv_asconf_lookup + - sctp: add param size validation for SCTP_PARAM_SET_PRIMARY + - staging: rtl8192u: Fix bitwise vs logical operator in + TranslateRxSignalStuff819xUsb() + - um: virtio_uml: fix memory leak on init failures + - dmaengine: acpi: Avoid comparison GSI with Linux vIRQ + - thermal/drivers/exynos: Fix an error code in exynos_tmu_probe() + - 9p/trans_virtio: Remove sysfs file on probe failure + - prctl: allow to setup brk for et_dyn executables + - nilfs2: use refcount_dec_and_lock() to fix potential UAF + - profiling: fix shift-out-of-bounds bugs + - pwm: lpc32xx: Don't modify HW state in .probe() after the PWM chip was + registered + - phy: avoid unnecessary link-up delay in polling mode + - net: stmmac: reset Tx desc base address before restarting Tx + - Kconfig.debug: drop selecting non-existing HARDLOCKUP_DETECTOR_ARCH + - thermal/core: Fix thermal_cooling_device_register() prototype + - drivers: base: cacheinfo: Get rid of DEFINE_SMP_CALL_CACHE_FUNCTION() + - parisc: Move pci_dev_is_behind_card_dino to where it is used + - dmaengine: sprd: Add missing MODULE_DEVICE_TABLE + - dmaengine: ioat: depends on !UML + - dmaengine: xilinx_dma: Set DMA mask for coherent APIs + - ceph: request Fw caps before updating the mtime in ceph_write_iter + - ceph: lockdep annotations for try_nonblocking_invalidate + - btrfs: fix lockdep warning while mounting sprout fs + - nilfs2: fix memory leak in nilfs_sysfs_create_device_group + - nilfs2: fix NULL pointer in nilfs_##name##_attr_release + - nilfs2: fix memory leak in nilfs_sysfs_create_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_snapshot_group + - pwm: img: Don't modify HW state in .remove() callback + - pwm: rockchip: Don't modify HW state in .remove() callback + - pwm: stm32-lp: Don't modify HW state in .remove() callback + - blk-throttle: fix UAF by deleteing timer in blk_throtl_exit() + - rtc: rx8010: select REGMAP_I2C + - drm/nouveau/nvkm: Replace -ENOSYS with -ENODEV + - Linux 5.4.149 + + -- Kleber Sacilotto de Souza Fri, 05 Nov 2021 17:02:56 +0100 + +linux (5.4.0-90.101) focal; urgency=medium + + * focal/linux: 5.4.0-90.101 -proposed tracker (LP: #1947260) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.10.18) + + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + + * No sound on Lenovo laptop models Legion 15IMHG05, Yoga 7 14ITL5, and 13s + Gen2 (LP: #1939052) + - ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i + 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. + - ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s + Gen2 + + * CVE-2020-36385 + - RDMA/cma: Add missing locking to rdma_accept() + - RDMA/ucma: Fix the locking of ctx->file + - RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy + + * Focal update: v5.4.148 upstream stable release (LP: #1946802) + - rtc: tps65910: Correct driver module alias + - btrfs: wake up async_delalloc_pages waiters after submit + - btrfs: reset replace target device to allocation state on close + - blk-zoned: allow zone management send operations without CAP_SYS_ADMIN + - blk-zoned: allow BLKREPORTZONE without CAP_SYS_ADMIN + - PCI/MSI: Skip masking MSI-X on Xen PV + - powerpc/perf/hv-gpci: Fix counter value parsing + - xen: fix setting of max_pfn in shared_info + - include/linux/list.h: add a macro to test if entry is pointing to the head + - 9p/xen: Fix end of loop tests for list_for_each_entry + - tools/thermal/tmon: Add cross compiling support + - pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast + - pinctrl: ingenic: Fix incorrect pull up/down info + - soc: qcom: aoss: Fix the out of bound usage of cooling_devs + - soc: aspeed: lpc-ctrl: Fix boundary check for mmap + - soc: aspeed: p2a-ctrl: Fix boundary check for mmap + - arm64: head: avoid over-mapping in map_memory + - crypto: public_key: fix overflow during implicit conversion + - block: bfq: fix bfq_set_next_ioprio_data() + - power: supply: max17042: handle fails of reading status register + - dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() + - VMCI: fix NULL pointer dereference when unmapping queue pair + - media: uvc: don't do DMA on stack + - media: rc-loopback: return number of emitters rather than error + - Revert "dmaengine: imx-sdma: refine to load context only once" + - dmaengine: imx-sdma: remove duplicated sdma_load_context + - libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs + - ARM: 9105/1: atags_to_fdt: don't warn about stack size + - PCI/portdrv: Enable Bandwidth Notification only if port supports it + - PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported + - PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure + - PCI: xilinx-nwl: Enable the clock through CCF + - PCI: aardvark: Fix checking for PIO status + - PCI: aardvark: Increase polling delay to 1.5s while waiting for PIO response + - PCI: aardvark: Fix masking and unmasking legacy INTx interrupts + - HID: input: do not report stylus battery state as "full" + - f2fs: quota: fix potential deadlock + - scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND + - IB/hfi1: Adjust pkey entry in index 0 + - RDMA/iwcm: Release resources if iw_cm module initialization fails + - docs: Fix infiniband uverbs minor number + - pinctrl: samsung: Fix pinctrl bank pin count + - vfio: Use config not menuconfig for VFIO_NOIOMMU + - powerpc/stacktrace: Include linux/delay.h + - RDMA/efa: Remove double QP type assignment + - f2fs: show f2fs instance in printk_ratelimited + - f2fs: reduce the scope of setting fsck tag when de->name_len is zero + - openrisc: don't printk() unconditionally + - dma-debug: fix debugfs initialization order + - SUNRPC: Fix potential memory corruption + - scsi: fdomain: Fix error return code in fdomain_probe() + - pinctrl: single: Fix error return code in pcs_parse_bits_in_pinctrl_entry() + - scsi: smartpqi: Fix an error code in pqi_get_raid_map() + - scsi: qedi: Fix error codes in qedi_alloc_global_queues() + - scsi: qedf: Fix error codes in qedf_alloc_global_queues() + - powerpc/config: Renable MTD_PHYSMAP_OF + - scsi: target: avoid per-loop XCOPY buffer allocations + - HID: i2c-hid: Fix Elan touchpad regression + - KVM: PPC: Book3S HV Nested: Reflect guest PMU in-use to L0 when guest SPRs + are live + - platform/x86: dell-smbios-wmi: Add missing kfree in error-exit from + run_smbios_call + - fscache: Fix cookie key hashing + - clk: at91: sam9x60: Don't use audio PLL + - clk: at91: clk-generated: pass the id of changeable parent at registration + - clk: at91: clk-generated: Limit the requested rate to our range + - KVM: PPC: Fix clearing never mapped TCEs in realmode + - f2fs: fix to account missing .skipped_gc_rwsem + - f2fs: fix unexpected ENOENT comes from f2fs_map_blocks() + - f2fs: fix to unmap pages from userspace process in punch_hole() + - MIPS: Malta: fix alignment of the devicetree buffer + - kbuild: Fix 'no symbols' warning when CONFIG_TRIM_UNUSD_KSYMS=y + - userfaultfd: prevent concurrent API initialization + - drm/amdgpu: Fix amdgpu_ras_eeprom_init() + - ASoC: atmel: ATMEL drivers don't need HAS_DMA + - media: dib8000: rewrite the init prbs logic + - crypto: mxs-dcp - Use sg_mapping_iter to copy data + - PCI: Use pci_update_current_state() in pci_enable_device_flags() + - tipc: keep the skb in rcv queue until the whole data is read + - iio: dac: ad5624r: Fix incorrect handling of an optional regulator. + - iavf: do not override the adapter state in the watchdog task + - iavf: fix locking of critical sections + - ARM: dts: qcom: apq8064: correct clock names + - video: fbdev: kyro: fix a DoS bug by restricting user input + - netlink: Deal with ESRCH error in nlmsg_notify() + - Smack: Fix wrong semantics in smk_access_entry() + - drm: avoid blocking in drm_clients_info's rcu section + - igc: Check if num of q_vectors is smaller than max before array access + - usb: host: fotg210: fix the endpoint's transactional opportunities + calculation + - usb: host: fotg210: fix the actual_length of an iso packet + - usb: gadget: u_ether: fix a potential null pointer dereference + - USB: EHCI: ehci-mv: improve error handling in mv_ehci_enable() + - usb: gadget: composite: Allow bMaxPower=0 if self-powered + - staging: board: Fix uninitialized spinlock when attaching genpd + - tty: serial: jsm: hold port lock when reporting modem line changes + - drm/amd/display: Fix timer_per_pixel unit error + - drm/amd/amdgpu: Update debugfs link_settings output link_rate field in hex + - bpf/tests: Fix copy-and-paste error in double word test + - bpf/tests: Do not PASS tests without actually testing the result + - video: fbdev: asiliantfb: Error out if 'pixclock' equals zero + - video: fbdev: kyro: Error out if 'pixclock' equals zero + - video: fbdev: riva: Error out if 'pixclock' equals zero + - ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() + - flow_dissector: Fix out-of-bounds warnings + - s390/jump_label: print real address in a case of a jump label bug + - s390: make PCI mio support a machine flag + - serial: 8250: Define RX trigger levels for OxSemi 950 devices + - xtensa: ISS: don't panic in rs_init + - hvsi: don't panic on tty_register_driver failure + - serial: 8250_pci: make setup_port() parameters explicitly unsigned + - staging: ks7010: Fix the initialization of the 'sleep_status' structure + - samples: bpf: Fix tracex7 error raised on the missing argument + - ata: sata_dwc_460ex: No need to call phy_exit() befre phy_init() + - Bluetooth: skip invalid hci_sync_conn_complete_evt + - workqueue: Fix possible memory leaks in wq_numa_init() + - bonding: 3ad: fix the concurrency between __bond_release_one() and + bond_3ad_state_machine_handler() + - arm64: tegra: Fix Tegra194 PCIe EP compatible string + - ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the + matching in-/output + - media: imx258: Rectify mismatch of VTS value + - media: imx258: Limit the max analogue gain to 480 + - media: v4l2-dv-timings.c: fix wrong condition in two for-loops + - media: TDA1997x: fix tda1997x_query_dv_timings() return value + - media: tegra-cec: Handle errors of clk_prepare_enable() + - ARM: dts: imx53-ppd: Fix ACHC entry + - arm64: dts: qcom: sdm660: use reg value for memory node + - net: ethernet: stmmac: Do not use unreachable() in ipq806x_gmac_probe() + - drm/msm: mdp4: drop vblank get/put from prepare/complete_commit + - selftests/bpf: Fix xdp_tx.c prog section name + - Bluetooth: schedule SCO timeouts with delayed_work + - Bluetooth: avoid circular locks in sco_sock_connect + - net/mlx5: Fix variable type to match 64bit + - gpu: drm: amd: amdgpu: amdgpu_i2c: fix possible uninitialized-variable + access in amdgpu_i2c_router_select_ddc_port() + - drm/display: fix possible null-pointer dereference in dcn10_set_clock() + - mac80211: Fix monitor MTU limit so that A-MSDUs get through + - ARM: tegra: tamonten: Fix UART pad setting + - arm64: tegra: Fix compatible string for Tegra132 CPUs + - arm64: dts: ls1046a: fix eeprom entries + - nvme-tcp: don't check blk_mq_tag_to_rq when receiving pdu data + - Bluetooth: Fix handling of LE Enhanced Connection Complete + - opp: Don't print an error if required-opps is missing + - serial: sh-sci: fix break handling for sysrq + - tcp: enable data-less, empty-cookie SYN with TFO_SERVER_COOKIE_NOT_REQD + - rpc: fix gss_svc_init cleanup on failure + - staging: rts5208: Fix get_ms_information() heap buffer size + - gfs2: Don't call dlm after protocol is unmounted + - usb: chipidea: host: fix port index underflow and UBSAN complains + - lockd: lockd server-side shouldn't set fl_ops + - drm/exynos: Always initialize mapping in exynos_drm_register_dma() + - m68knommu: only set CONFIG_ISA_DMA_API for ColdFire sub-arch + - btrfs: tree-log: check btrfs_lookup_data_extent return value + - ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER + - ASoC: Intel: Skylake: Fix passing loadable flag for module + - of: Don't allow __of_attached_node_sysfs() without CONFIG_SYSFS + - mmc: sdhci-of-arasan: Check return value of non-void funtions + - mmc: rtsx_pci: Fix long reads when clock is prescaled + - selftests/bpf: Enlarge select() timeout for test_maps + - mmc: core: Return correct emmc response in case of ioctl error + - cifs: fix wrong release in sess_alloc_buffer() failed path + - Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST + quirk set" + - usb: musb: musb_dsps: request_irq() after initializing musb + - usbip: give back URBs for unsent unlink requests during cleanup + - usbip:vhci_hcd USB port can get stuck in the disabled state + - ASoC: rockchip: i2s: Fix regmap_ops hang + - ASoC: rockchip: i2s: Fixup config for DAIFMT_DSP_A/B + - drm/amdkfd: Account for SH/SE count when setting up cu masks. + - iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed + - iwlwifi: mvm: avoid static queue number aliasing + - iwlwifi: mvm: fix access to BSS elements + - net/mlx5: DR, Enable QP retransmission + - parport: remove non-zero check on count + - ath9k: fix OOB read ar9300_eeprom_restore_internal + - ath9k: fix sleeping in atomic context + - net: fix NULL pointer reference in cipso_v4_doi_free + - fix array-index-out-of-bounds in taprio_change + - net: w5100: check return value after calling platform_get_resource() + - parisc: fix crash with signals and alloca + - ovl: fix BUG_ON() in may_delete() when called from ovl_cleanup() + - scsi: BusLogic: Fix missing pr_cont() use + - scsi: qla2xxx: Changes to support kdump kernel + - scsi: qla2xxx: Sync queue idx with queue_pair_map idx + - cpufreq: powernv: Fix init_chip_info initialization in numa=off + - s390/pv: fix the forcing of the swiotlb + - mm/hugetlb: initialize hugetlb_usage in mm_init + - mm,vmscan: fix divide by zero in get_scan_count + - memcg: enable accounting for pids in nested pid namespaces + - platform/chrome: cros_ec_proto: Send command again when timeout occurs + - lib/test_stackinit: Fix static initializer test + - net: dsa: lantiq_gswip: fix maximum frame length + - drm/msi/mdp4: populate priv->kms in mdp4_kms_init + - drm/amdgpu: Fix BUG_ON assert + - drm/panfrost: Simplify lock_region calculation + - drm/panfrost: Use u64 for size in lock_region + - drm/panfrost: Clamp lock region to Bifrost minimum + - btrfs: fix upper limit for max_inline for page size 64K + - xen: reset legacy rtc flag for PV domU + - bnx2x: Fix enabling network interfaces without VFs + - arm64/sve: Use correct size when reinitialising SVE state + - PM: base: power: don't try to use non-existing RTC for storing data + - PCI: Add AMD GPU multi-function power dependencies + - drm/amd/amdgpu: Increase HWIP_MAX_INSTANCE to 10 + - drm/etnaviv: return context from etnaviv_iommu_context_get + - drm/etnaviv: put submit prev MMU context when it exists + - drm/etnaviv: stop abusing mmu_context as FE running marker + - drm/etnaviv: keep MMU context across runtime suspend/resume + - drm/etnaviv: exec and MMU state is lost when resetting the GPU + - drm/etnaviv: fix MMU context leak on GPU reset + - drm/etnaviv: reference MMU context when setting up hardware state + - drm/etnaviv: add missing MMU context put when reaping MMU mapping + - s390/sclp: fix Secure-IPL facility detection + - x86/mm: Fix kern_addr_valid() to cope with existing but not present entries + - tipc: fix an use-after-free issue in tipc_recvmsg + - net-caif: avoid user-triggerable WARN_ON(1) + - ptp: dp83640: don't define PAGE0 + - net/l2tp: Fix reference count leak in l2tp_udp_recv_core + - r6040: Restore MDIO clock frequency after MAC reset + - tipc: increase timeout in tipc_sk_enqueue() + - perf machine: Initialize srcline string member in add_location struct + - net/mlx5: FWTrace, cancel work on alloc pd error flow + - net/mlx5: Fix potential sleeping in atomic context + - events: Reuse value read using READ_ONCE instead of re-reading it + - vhost_net: fix OoB on sendmsg() failure. + - net/af_unix: fix a data-race in unix_dgram_poll + - net: dsa: destroy the phylink instance on any error in dsa_slave_phy_setup + - tcp: fix tp->undo_retrans accounting in tcp_sacktag_one() + - qed: Handle management FW error + - dt-bindings: arm: Fix Toradex compatible typo + - ibmvnic: check failover_pending in login response + - KVM: PPC: Book3S HV: Tolerate treclaim. in fake-suspend mode changing + registers + - net: hns3: pad the short tunnel frame before sending to hardware + - net: hns3: change affinity_mask to numa node range + - net: hns3: disable mac in flr process + - net: hns3: fix the timing issue of VF clearing interrupt sources + - mm/memory_hotplug: use "unsigned long" for PFN in zone_for_pfn_range() + - dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation + - mfd: db8500-prcmu: Adjust map to reality + - PCI: Add ACS quirks for NXP LX2xx0 and LX2xx2 platforms + - fuse: fix use after free in fuse_read_interrupt() + - mfd: Don't use irq_create_mapping() to resolve a mapping + - tracing/probes: Reject events which have the same name of existing one + - PCI: Add ACS quirks for Cavium multi-function devices + - Set fc_nlinfo in nh_create_ipv4, nh_create_ipv6 + - net: usb: cdc_mbim: avoid altsetting toggling for Telit LN920 + - PCI: ibmphp: Fix double unmap of io_mem + - ethtool: Fix an error code in cxgb2.c + - NTB: Fix an error code in ntb_msit_probe() + - NTB: perf: Fix an error code in perf_setup_inbuf() + - mfd: axp20x: Update AXP288 volatile ranges + - PCI: Fix pci_dev_str_match_path() alloc while atomic bug + - mfd: tqmx86: Clear GPIO IRQ resource when no IRQ is set + - KVM: arm64: Handle PSCI resets before userspace touches vCPU state + - PCI: Sync __pci_register_driver() stub for CONFIG_PCI=n + - mtd: rawnand: cafe: Fix a resource leak in the error handling path of + 'cafe_nand_probe()' + - ARC: export clear_user_page() for modules + - perf unwind: Do not overwrite FEATURE_CHECK_LDFLAGS-libunwind-{x86,aarch64} + - net: dsa: b53: Fix calculating number of switch ports + - netfilter: socket: icmp6: fix use-after-scope + - fq_codel: reject silly quantum parameters + - qlcnic: Remove redundant unlock in qlcnic_pinit_from_rom + - ip_gre: validate csum_start only on pull + - net: renesas: sh_eth: Fix freeing wrong tx descriptor + - Linux 5.4.148 + + * Focal update: v5.4.147 upstream stable release (LP: #1946795) + - Linux 5.4.147 + - upstream stable to v5.4.147 + + * CVE-2021-3428 + - ext4: save the error code which triggered an ext4_error() in the superblock + - ext4: simulate various I/O and checksum errors when reading metadata + - ext4: save all error info in save_error_info() and drop ext4_set_errno() + - ext4: check journal inode extents more carefully + + * ip6gretap / erspan / ip6erspan in rtnetlink.sh from net of + ubuntu_kernel_selftests failed on B-5.4-aws / B-5.4-gke / B-5.4-oracle / + B-5.4-azure / B-5.4 (LP: #1896448) + - SAUCE: selftests: rtnetlink: fixes for older iproute2 + + * CVE-2019-19449 + - f2fs: fix wrong total_sections check and fsmeta check + - f2fs: fix to do sanity check on segment/section count + + * kernel bug found when disconnecting one fiber channel interface on Cisco + Chassis with fnic DRV_VERSION "1.6.0.47" (LP: #1944586) + - scsi: fnic: Do not call 'scsi_done()' for unhandled commands + + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (unknown type + name ‘__u64’) (LP: #1944613) + - SAUCE: selftests/memfd: fix __u64 not defined build issue + + * Medion Notebook Keyboard not working (LP: #1909814) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + + * vrf: fix refcnt leak with vxlan slaves (LP: #1945180) + - ipv4: Fix device used for dst_alloc with local routes + + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add a new fips-checks script + - [Packaging] Add fips-checks as part of finalchecks + + * Fix cold plugged USB device on certain PCIe USB cards (LP: #1945211) + - Revert "UBUNTU: SAUCE: Revert "usb: core: reduce power-on-good delay time of + root hub"" + - usb: core: hcd: Add support for deferring roothub registration + - xhci: Set HCD flag to defer primary roothub registration + - usb: core: hcd: Modularize HCD stop configuration in usb_stop_hcd() + + * CVE-2021-3759 + - memcg: enable accounting of ipc resources + + * Focal update: v5.4.146 upstream stable release (LP: #1946024) + - locking/mutex: Fix HANDOFF condition + - regmap: fix the offset of register error log + - crypto: mxs-dcp - Check for DMA mapping errors + - sched/deadline: Fix reset_on_fork reporting of DL tasks + - power: supply: axp288_fuel_gauge: Report register-address on readb / writeb + errors + - crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() + - sched/deadline: Fix missing clock update in migrate_task_rq_dl() + - rcu/tree: Handle VM stoppage in stall detection + - hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() + - hrtimer: Ensure timerfd notification for HIGHRES=n + - udf: Check LVID earlier + - udf: Fix iocharset=utf8 mount option + - isofs: joliet: Fix iocharset=utf8 mount option + - bcache: add proper error unwinding in bcache_device_init + - nvme-tcp: don't update queue count when failing to set io queues + - nvme-rdma: don't update queue count when failing to set io queues + - nvmet: pass back cntlid on successful completion + - power: supply: max17042_battery: fix typo in MAx17042_TOFF + - s390/cio: add dev_busid sysfs entry for each subchannel + - libata: fix ata_host_start() + - crypto: qat - do not ignore errors from enable_vf2pf_comms() + - crypto: qat - handle both source of interrupt in VF ISR + - crypto: qat - fix reuse of completion variable + - crypto: qat - fix naming for init/shutdown VF to PF notifications + - crypto: qat - do not export adf_iov_putmsg() + - fcntl: fix potential deadlock for &fasync_struct.fa_lock + - udf_get_extendedattr() had no boundary checks. + - s390/kasan: fix large PMD pages address alignment check + - s390/debug: fix debug area life cycle + - m68k: emu: Fix invalid free in nfeth_cleanup() + - sched: Fix UCLAMP_FLAG_IDLE setting + - spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config + - spi: spi-pic32: Fix issue with uninitialized dma_slave_config + - genirq/timings: Fix error return code in irq_timings_test_irqs() + - lib/mpi: use kcalloc in mpi_resize + - clocksource/drivers/sh_cmt: Fix wrong setting if don't request IRQ for clock + source channel + - crypto: qat - use proper type for vf_mask + - certs: Trigger creation of RSA module signing key if it's not an RSA key + - regulator: vctrl: Use locked regulator_get_voltage in probe path + - regulator: vctrl: Avoid lockdep warning in enable/disable ops + - spi: sprd: Fix the wrong WDG_LOAD_VAL + - spi: spi-zynq-qspi: use wait_for_completion_timeout to make + zynq_qspi_exec_mem_op not interruptible + - EDAC/i10nm: Fix NVDIMM detection + - drm/panfrost: Fix missing clk_disable_unprepare() on error in + panfrost_clk_init() + - media: TDA1997x: enable EDID support + - soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally + - media: cxd2880-spi: Fix an error handling path + - bpf: Fix a typo of reuseport map in bpf.h. + - bpf: Fix potential memleak and UAF in the verifier. + - ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi + - arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties + - soc: qcom: rpmhpd: Use corner in power_off + - media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init + - media: dvb-usb: fix uninit-value in vp702x_read_mac_addr + - media: dvb-usb: Fix error handling in dvb_usb_i2c_init + - media: go7007: remove redundant initialization + - media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats + - Bluetooth: sco: prevent information leak in sco_conn_defer_accept() + - 6lowpan: iphc: Fix an off-by-one check of array index + - netns: protect netns ID lookups with RCU + - tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos + - ARM: dts: meson8: Use a higher default GPU clock frequency + - ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties + - ARM: dts: meson8b: mxq: Fix the pwm regulator supply properties + - ARM: dts: meson8b: ec100: Fix the pwm regulator supply properties + - net/mlx5e: Prohibit inner indir TIRs in IPoIB + - cgroup/cpuset: Fix a partition bug with hotplug + - net: cipso: fix warnings in netlbl_cipsov4_add_std + - i2c: highlander: add IRQ check + - leds: lt3593: Put fwnode in any case during ->probe() + - leds: trigger: audio: Add an activate callback to ensure the initial + brightness is set + - media: em28xx-input: fix refcount bug in em28xx_usb_disconnect + - media: venus: venc: Fix potential null pointer dereference on pointer fmt + - PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently + - PCI: PM: Enable PME if it can be signaled from D3cold + - soc: qcom: smsm: Fix missed interrupts if state changes while masked + - debugfs: Return error during {full/open}_proxy_open() on rmmod + - Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow + - PM: EM: Increase energy calculation precision + - drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs + - arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 + - counter: 104-quad-8: Return error when invalid mode during ceiling_write + - Bluetooth: fix repeated calls to sco_sock_kill + - drm/msm/dsi: Fix some reference counted resource leaks + - usb: gadget: udc: at91: add IRQ check + - usb: phy: fsl-usb: add IRQ check + - usb: phy: twl6030: add IRQ checks + - usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse + - usb: host: ohci-tmio: add IRQ check + - usb: phy: tahvo: add IRQ check + - mac80211: Fix insufficient headroom issue for AMSDU + - lockd: Fix invalid lockowner cast after vfs_test_lock + - nfsd4: Fix forced-expiry locking + - usb: gadget: mv_u3d: request_irq() after initializing UDC + - mm/swap: consider max pages in iomap_swapfile_add_extent + - Bluetooth: add timeout sanity check to hci_inquiry + - i2c: iop3xx: fix deferred probing + - i2c: s3c2410: fix IRQ check + - rsi: fix error code in rsi_load_9116_firmware() + - rsi: fix an error code in rsi_probe() + - ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs + - ASoC: Intel: Skylake: Fix module resource and format selection + - mmc: dw_mmc: Fix issue with uninitialized dma_slave_config + - mmc: moxart: Fix issue with uninitialized dma_slave_config + - bpf: Fix possible out of bound write in narrow load handling + - CIFS: Fix a potencially linear read overflow + - i2c: mt65xx: fix IRQ check + - usb: ehci-orion: Handle errors of clk_prepare_enable() in probe + - usb: bdc: Fix an error handling path in 'bdc_probe()' when no suitable DMA + config is available + - tty: serial: fsl_lpuart: fix the wrong mapbase value + - ASoC: wcd9335: Fix a double irq free in the remove function + - ASoC: wcd9335: Fix a memory leak in the error handling path of the probe + function + - ASoC: wcd9335: Disable irq on slave ports in the remove function + - ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() + - bcma: Fix memory leak for internally-handled cores + - brcmfmac: pcie: fix oops on failure to resume and reprobe + - ipv6: make exception cache less predictible + - ipv4: make exception cache less predictible + - net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed + - net: qualcomm: fix QCA7000 checksum handling + - octeontx2-af: Fix loop in free and unmap counter + - ipv4: fix endianness issue in inet_rtm_getroute_build_skb() + - bpf: Introduce BPF nospec instruction for mitigating Spectre v4 + - bpf: Fix leakage due to insufficient speculative store bypass mitigation + - bpf: verifier: Allocate idmap scratch in verifier env + - bpf: Fix pointer arithmetic mask tightening under state pruning + - tty: Fix data race between tiocsti() and flush_to_ldisc() + - perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op + - x86/resctrl: Fix a maybe-uninitialized build warning treated as error + - KVM: s390: index kvm->arch.idle_mask by vcpu_idx + - KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is + adjusted + - KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter + - fuse: truncate pagecache on atomic_o_trunc + - fuse: flush extending writes + - IMA: remove -Wmissing-prototypes warning + - IMA: remove the dependency on CRYPTO_MD5 + - fbmem: don't allow too huge resolutions + - backlight: pwm_bl: Improve bootloader/kernel device handover + - clk: kirkwood: Fix a clocking boot regression + - Linux 5.4.146 + + * AMD A8-7680 (amdgpu): broken Xorg acceleration and hibernation + (LP: #1920674) // Focal update: v5.4.146 upstream stable release + (LP: #1946024) + - drm/amdgpu/acp: Make PM domain really work + + * Focal update: v5.4.145 upstream stable release (LP: #1945517) + - 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 + - kthread: Fix PF_KTHREAD vs to_kthread() race + - xtensa: fix kconfig unmet dependency warning for HAVE_FUTEX_CMPXCHG + - gpu: ipu-v3: Fix i.MX IPU-v3 offset calculations for (semi)planar U/V + formats + - reset: reset-zynqmp: Fixed the argument data type + - qed: Fix the VF msix vectors flow + - net: macb: Add a NULL check on desc_ptp + - qede: Fix memset corruption + - perf/x86/intel/pt: Fix mask of num_address_ranges + - perf/x86/amd/ibs: Work around erratum #1197 + - perf/x86/amd/power: Assign pmu.module + - cryptoloop: add a deprecation warning + - ARM: 8918/2: only build return_address() if needed + - ALSA: hda/realtek: Workaround for conflicting SSID on ASUS ROG Strix G17 + - ALSA: pcm: fix divide error in snd_pcm_lib_ioctl + - ARC: wireup clone3 syscall + - media: stkwebcam: fix memory leak in stk_camera_probe + - igmp: Add ip_mc_list lock in ip_check_mc_rcu + - USB: serial: mos7720: improve OOM-handling in read_mos_reg() + - ipv4/icmp: l3mdev: Perform icmp error route lookup on source device routing + table (v2) + - powerpc/boot: Delete unneeded .globl _zimage_start + - net: ll_temac: Remove left-over debug message + - mm/page_alloc: speed up the iteration of max_order + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - x86/events/amd/iommu: Fix invalid Perf result due to IOMMU PMC power-gating + - Revert "btrfs: compression: don't try to compress if we don't have enough + pages" + - ALSA: usb-audio: Add registration quirk for JBL Quantum 800 + - usb: host: xhci-rcar: Don't reload firmware after the completion + - usb: mtu3: use @mult for HS isoc or intr + - usb: mtu3: fix the wrong HS mult value + - xhci: fix unsafe memory usage in xhci tracing + - x86/reboot: Limit Dell Optiplex 990 quirk to early BIOS versions + - PCI: Call Max Payload Size-related fixup quirks early + - Linux 5.4.145 + + * Focal update: v5.4.144 upstream stable release (LP: #1944756) + - net: qrtr: fix another OOB Read in qrtr_endpoint_post + - ARC: Fix CONFIG_STACKDEPOT + - netfilter: conntrack: collect all entries in one cycle + - once: Fix panic when module unload + - ovl: fix uninitialized pointer read in ovl_lookup_real_one() + - mmc: sdhci-msm: Update the software timeout value for sdhc + - mm, oom: make the calculation of oom badness more accurate + - can: usb: esd_usb2: esd_usb2_rx_event(): fix the interchange of the CAN RX + and TX error counters + - Revert "USB: serial: ch341: fix character loss at high transfer rates" + - USB: serial: option: add new VID/PID to support Fibocom FG150 + - usb: dwc3: gadget: Fix dwc3_calc_trbs_left() + - usb: dwc3: gadget: Stop EP0 transfers during pullup disable + - scsi: core: Fix hang of freezing queue between blocking and running device + - RDMA/bnxt_re: Add missing spin lock initialization + - IB/hfi1: Fix possible null-pointer dereference in _extend_sdma_tx_descs() + - e1000e: Fix the max snoop/no-snoop latency for 10M + - RDMA/efa: Free IRQ vectors on error flow + - ip_gre: add validation for csum_start + - xgene-v2: Fix a resource leak in the error handling path of 'xge_probe()' + - net: marvell: fix MVNETA_TX_IN_PRGRS bit number + - rtnetlink: Return correct error on changing device netns + - net: hns3: clear hardware resource when loading driver + - net: hns3: fix duplicate node in VLAN list + - net: hns3: fix get wrong pfc_en when query PFC configuration + - drm/i915: Fix syncmap memory leak + - usb: gadget: u_audio: fix race condition on endpoint stop + - perf/x86/intel/uncore: Fix integer overflow on 23 bit left shift of a u32 + - opp: remove WARN when no valid OPPs remain + - virtio: Improve vq->broken access to avoid any compiler optimization + - virtio_pci: Support surprise removal of virtio pci device + - vringh: Use wiov->used to check for read/write desc order + - qed: qed ll2 race condition fixes + - qed: Fix null-pointer dereference in qed_rdma_create_qp() + - drm: Copy drm_wait_vblank to user before returning + - drm/nouveau/disp: power down unused DP links during init + - net/rds: dma_map_sg is entitled to merge entries + - btrfs: fix race between marking inode needs to be logged and log syncing + - vt_kdsetmode: extend console locking + - bpf: Track contents of read-only maps as scalars + - bpf: Fix cast to pointer from integer of different size warning + - net: dsa: mt7530: fix VLAN traffic leaks again + - KVM: x86/mmu: Treat NX as used (not reserved) for all !TDP shadow MMUs + - arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - Revert "parisc: Add assembly implementations for memset, strlen, strcpy, + strncpy and strcat" + - 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.4.144 + + -- Kelsey Skunberg Fri, 15 Oct 2021 11:56:24 -0600 + +linux (5.4.0-89.100) focal; urgency=medium + + * focal/linux: 5.4.0-89.100 -proposed tracker (LP: #1944901) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.27) + + * ext4 journal recovery fails w/ data=journal + mmap (LP: #1847340) + - jbd2: introduce/export functions + jbd2_journal_submit|finish_inode_data_buffers() + - jbd2, ext4, ocfs2: introduce/use journal callbacks + j_submit|finish_inode_data_buffers() + - ext4: data=journal: fixes for ext4_page_mkwrite() + - ext4: data=journal: write-protect pages on j_submit_inode_data_buffers() + - ext4: fix mmap write protection for data=journal mode + + * CVE-2021-40490 + - ext4: fix race writing to an inline_data file while its xattrs are changing + + * Obsolete patch "UBUNTU: SAUCE: ext4: fix directory index node split + corruption" (LP: #1942902) + - Revert "UBUNTU: SAUCE: ext4: fix directory index node split corruption" + + * psock_snd.sh in net from ubuntu_kernel_selftests ADT failure with + focal/groovy/hirsute/impish (LP: #1892213) + - selftests/net: remove min gso test in packet_snd + + * Focal update: v5.4.143 upstream stable release (LP: #1944212) + - ext4: fix EXT4_MAX_LOGICAL_BLOCK macro + - x86/fpu: Make init_fpstate correct with optimized XSAVE + - ath: Use safer key clearing with key cache entries + - ath9k: Clear key cache explicitly on disabling hardware + - ath: Export ath_hw_keysetmac() + - ath: Modify ath_key_delete() to not need full key entry + - ath9k: Postpone key cache entry deletion for TXQ frames reference it + - mtd: cfi_cmdset_0002: fix crash when erasing/writing AMD cards + - media: zr364xx: propagate errors from zr364xx_start_readpipe() + - media: zr364xx: fix memory leaks in probe() + - media: drivers/media/usb: fix memory leak in zr364xx_probe + - USB: core: Avoid WARNings for 0-length descriptor requests + - dmaengine: xilinx_dma: Fix read-after-free bug when terminating transfers + - dmaengine: usb-dmac: Fix PM reference leak in usb_dmac_probe() + - ARM: dts: am43x-epos-evm: Reduce i2c0 bus speed for tps65218 + - dmaengine: of-dma: router_xlate to return -EPROBE_DEFER if controller is not + yet available + - scsi: megaraid_mm: Fix end of loop tests for list_for_each_entry() + - scsi: scsi_dh_rdac: Avoid crash during rdac_bus_attach() + - scsi: core: Avoid printing an error if target_alloc() returns -ENXIO + - scsi: core: Fix capacity set to zero after offlinining device + - ARM: dts: nomadik: Fix up interrupt controller node names + - net: usb: lan78xx: don't modify phy_device state concurrently + - drm/amd/display: Fix Dynamic bpp issue with 8K30 with Navi 1X + - Bluetooth: hidp: use correct wait queue when removing ctrl_wait + - iommu: Check if group is NULL before remove device + - cpufreq: armada-37xx: forbid cpufreq for 1.2 GHz variant + - dccp: add do-while-0 stubs for dccp_pr_debug macros + - virtio: Protect vqs list access + - vhost: Fix the calculation in vhost_overflow() + - bpf: Clear zext_dst of dead insns + - bnxt: don't lock the tx queue from napi poll + - bnxt: disable napi before canceling DIM + - net: 6pack: fix slab-out-of-bounds in decode_data + - ptp_pch: Restore dependency on PCI + - bnxt_en: Add missing DMA memory barriers + - vrf: Reset skb conntrack connection on VRF rcv + - virtio-net: support XDP when not more queues + - virtio-net: use NETIF_F_GRO_HW instead of NETIF_F_LRO + - net: qlcnic: add missed unlock in qlcnic_83xx_flash_read32 + - net: mdio-mux: Don't ignore memory allocation errors + - net: mdio-mux: Handle -EPROBE_DEFER correctly + - ovs: clear skb->tstamp in forwarding path + - i40e: Fix ATR queue selection + - iavf: Fix ping is lost after untrusted VF had tried to change MAC + - ovl: add splice file read write helper + - mmc: dw_mmc: Fix hang on data CRC error + - ALSA: hda - fix the 'Capture Switch' value change notifications + - tracing / histogram: Fix NULL pointer dereference on strcmp() on NULL event + name + - slimbus: messaging: start transaction ids from 1 instead of zero + - slimbus: messaging: check for valid transaction id + - slimbus: ngd: reset dma setup during runtime pm + - ipack: tpci200: fix many double free issues in tpci200_pci_probe + - ipack: tpci200: fix memory leak in the tpci200_register + - btrfs: prevent rename2 from exchanging a subvol with a directory from + different parents + - PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI + - ASoC: intel: atom: Fix breakage for PCM buffer address setup + - mm, memcg: avoid stale protection values when cgroup is above protection + - mm: memcontrol: fix occasional OOMs due to proportional memory.low reclaim + - fs: warn about impending deprecation of mandatory locks + - netfilter: nft_exthdr: fix endianness of tcp option cast + - Linux 5.4.143 + + * Focal update: v5.4.142 upstream stable release (LP: #1944202) + - iio: adc: ti-ads7950: Ensure CS is deasserted after reading channels + - iio: humidity: hdc100x: Add margin to the conversion time + - iio: adc: Fix incorrect exit of for-loop + - ASoC: xilinx: Fix reference to PCM buffer address + - ASoC: intel: atom: Fix reference to PCM buffer address + - i2c: dev: zero out array used for i2c reads from userspace + - ceph: reduce contention in ceph_check_delayed_caps() + - ACPI: NFIT: Fix support for virtual SPA ranges + - libnvdimm/region: Fix label activation vs errors + - ieee802154: hwsim: fix GPF in hwsim_set_edge_lqi + - ieee802154: hwsim: fix GPF in hwsim_new_edge_nl + - ASoC: cs42l42: Correct definition of ADC Volume control + - ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J + - ASoC: cs42l42: Fix inversion of ADC Notch Switch control + - ASoC: cs42l42: Remove duplicate control for WNF filter frequency + - netfilter: nf_conntrack_bridge: Fix memory leak when error + - ASoC: cs42l42: Fix LRCLK frame start edge + - net: dsa: mt7530: add the missing RxUnicast MIB counter + - platform/x86: pcengines-apuv2: revert wiring up simswitch GPIO as LED + - platform/x86: pcengines-apuv2: Add missing terminating entries to gpio- + lookup tables + - net: phy: micrel: Fix link detection on ksz87xx switch" + - ppp: Fix generating ifname when empty IFLA_IFNAME is specified + - net: sched: act_mirred: Reset ct info when mirror/redirect skb + - iavf: Set RSS LUT and key in reset handle path + - psample: Add a fwd declaration for skbuff + - net/mlx5: Fix return value from tracer initialization + - drm/meson: fix colour distortion from HDR set during vendor u-boot + - net: dsa: microchip: Fix ksz_read64() + - net: Fix memory leak in ieee802154_raw_deliver + - net: igmp: fix data-race in igmp_ifc_timer_expire() + - net: dsa: lan9303: fix broken backpressure in .port_fdb_dump + - net: dsa: lantiq: fix broken backpressure in .port_fdb_dump + - net: dsa: sja1105: fix broken backpressure in .port_fdb_dump + - net: bridge: fix memleak in br_add_if() + - net: linkwatch: fix failure to restore device state across suspend/resume + - tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B + packets + - net: igmp: increase size of mr_ifc_count + - xen/events: Fix race in set_evtchn_to_irq + - vsock/virtio: avoid potential deadlock when vsock device remove + - nbd: Aovid double completion of a request + - powerpc/kprobes: Fix kprobe Oops happens in booke + - x86/tools: Fix objdump version check again + - genirq: Provide IRQCHIP_AFFINITY_PRE_STARTUP + - x86/msi: Force affinity setup before startup + - x86/ioapic: Force affinity setup before startup + - x86/resctrl: Fix default monitoring groups reporting + - genirq/msi: Ensure deactivation on teardown + - genirq/timings: Prevent potential array overflow in __irq_timings_store() + - PCI/MSI: Enable and mask MSI-X early + - PCI/MSI: Mask all unused MSI-X entries + - PCI/MSI: Enforce that MSI-X table entry is masked for update + - PCI/MSI: Enforce MSI[X] entry updates to be visible + - PCI/MSI: Do not set invalid bits in MSI mask + - PCI/MSI: Correct misleading comments + - PCI/MSI: Use msi_mask_irq() in pci_msi_shutdown() + - PCI/MSI: Protect msi_desc::masked for multi-MSI + - KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation + - ceph: add some lockdep assertions around snaprealm handling + - ceph: clean up locking annotation for ceph_get_snap_realm and + __lookup_snap_realm + - ceph: take snap_empty_lock atomically with snaprealm refcount change + - vmlinux.lds.h: Handle clang's module.{c,d}tor sections + - iommu/vt-d: Fix agaw for a supported 48 bit guest address width + - Linux 5.4.142 + + * Focal update: v5.4.141 upstream stable release (LP: #1943484) + - KVM: SVM: Fix off-by-one indexing when nullifying last used SEV VMCB + - tee: Correct inappropriate usage of TEE_SHM_DMA_BUF flag + - media: v4l2-mem2mem: always consider OUTPUT queue during poll + - tracing: Reject string operand in the histogram expression + - usb: dwc3: Stop active transfers before halting the controller + - usb: dwc3: gadget: Allow runtime suspend if UDC unbinded + - usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup + - usb: dwc3: gadget: Prevent EP queuing while stopping transfers + - usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable + - usb: dwc3: gadget: Disable gadget IRQ during pullup disable + - usb: dwc3: gadget: Avoid runtime resume if disabling pullup + - KVM: X86: MMU: Use the correct inherited permissions to get shadow page + - USB:ehci:fix Kunpeng920 ehci hardware problem + - ALSA: hda: Add quirk for ASUS Flow x13 + - ppp: Fix generating ppp unit id when ifname is not specified + - ovl: prevent private clone if bind mount is not allowed + - btrfs: make qgroup_free_reserved_data take btrfs_inode + - btrfs: make btrfs_qgroup_reserve_data take btrfs_inode + - btrfs: qgroup: allow to unreserve range without releasing other ranges + - btrfs: qgroup: try to flush qgroup space when we get -EDQUOT + - btrfs: transaction: Cleanup unused TRANS_STATE_BLOCKED + - btrfs: qgroup: remove ASYNC_COMMIT mechanism in favor of reserve retry- + after-EDQUOT + - btrfs: fix lockdep splat when enabling and disabling qgroups + - net: xilinx_emaclite: Do not print real IOMEM pointer + - btrfs: qgroup: don't commit transaction when we already hold the handle + - btrfs: export and rename qgroup_reserve_meta + - btrfs: don't flush from btrfs_delayed_inode_reserve_metadata + - Linux 5.4.141 + + -- Stefan Bader Fri, 24 Sep 2021 15:50:10 +0200 + +linux (5.4.0-88.99) focal; urgency=medium + + * focal/linux: 5.4.0-88.99 -proposed tracker (LP: #1944747) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - Revert "UBUNTU: [Config] Disable virtualbox dkms build" + + -- Kelsey Skunberg Thu, 23 Sep 2021 10:40:49 -0600 + +linux (5.4.0-87.98) focal; urgency=medium + + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - [Config] Disable virtualbox dkms build + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - Disable CONFIG_HISI_DMA + - [Config] Record hisi_dma no longer built for arm64 + + * memory leaking when removing a profile (LP: #1939915) + - apparmor: Fix memory leak of profile proxy + + * CryptoExpress EP11 cards are going offline (LP: #1939618) + - s390/zcrypt: Support for CCA protected key block version 2 + - s390: Replace zero-length array with flexible-array member + - s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow + - s390/zcrypt: replace snprintf/sprintf with scnprintf + - s390/ap: Remove ap device suspend and resume callbacks + - s390/zcrypt: use fallthrough; + - s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc + - s390/ap: remove power management code from ap bus and drivers + - s390/ap: introduce new ap function ap_get_qdev() + - s390/zcrypt: use kzalloc + - s390/zcrypt: fix smatch warnings + - s390/zcrypt: code beautification and struct field renames + - s390/zcrypt: split ioctl function into smaller code units + - s390/ap: rename and clarify ap state machine related stuff + - s390/zcrypt: provide cex4 cca sysfs attributes for cex3 + - s390/ap: rework crypto config info and default domain code + - s390/zcrypt: simplify cca_findcard2 loop code + - s390/zcrypt: remove set_fs() invocation in zcrypt device driver + - s390/ap: remove unnecessary spin_lock_init() + - s390/zcrypt: Support for CCA APKA master keys + - s390/zcrypt: introduce msg tracking in zcrypt functions + - s390/ap: split ap queue state machine state from device state + - s390/ap: add error response code field for ap queue devices + - s390/ap: add card/queue deconfig state + - s390/sclp: Add support for SCLP AP adapter config/deconfig + - s390/ap: Support AP card SCLP config and deconfig operations + - s390/ap/zcrypt: revisit ap and zcrypt error handling + - s390/zcrypt: move ap_msg param one level up the call chain + - s390/zcrypt: Introduce Failure Injection feature + - s390/zcrypt: fix wrong format specifications + - s390/ap: fix ap devices reference counting + - s390/zcrypt: return EIO when msg retry limit reached + - s390/zcrypt: fix zcard and zqueue hot-unplug memleak + - s390/ap: Fix hanging ioctl caused by wrong msg counter + + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (LP: #1926142) + - SAUCE: selftests/memfd: fix build when F_SEAL_FUTURE_WRITE is not defined + + * [SRU] Ice driver causes the kernel to crash with Ubuntu 20.04.2 with ethtool + specific register commands (LP: #1939855) + - ice: Fix bad register reads + + * ubunut_kernel_selftests: memory-hotplug: avoid spamming logs with + dump_page() (LP: #1941829) + - selftests: memory-hotplug: avoid spamming logs with dump_page(), ratio limit + hot-remove error test + + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - e1000e: Do not take care about recovery NVM checksum + + * Focal update: v5.4.140 upstream stable release (LP: #1941798) + - Revert "ACPICA: Fix memory leak caused by _CID repair function" + - ALSA: seq: Fix racy deletion of subscriber + - arm64: dts: ls1028a: fix node name for the sysclk + - ARM: imx: add missing iounmap() + - ARM: imx: add missing clk_disable_unprepare() + - ARM: dts: imx6qdl-sr-som: Increase the PHY reset duration to 10ms + - ARM: dts: colibri-imx6ull: limit SDIO clock to 25MHz + - ARM: imx: fix missing 3rd argument in macro imx_mmdc_perf_init + - ARM: dts: imx: Swap M53Menlo pinctrl_power_button/pinctrl_power_out pins + - arm64: dts: armada-3720-turris-mox: remove mrvl,i2c-fast-mode + - ALSA: usb-audio: fix incorrect clock source setting + - clk: stm32f4: fix post divisor setup for I2S/SAI PLLs + - ARM: dts: am437x-l4: fix typo in can@0 node + - omap5-board-common: remove not physically existing vdds_1v8_main fixed- + regulator + - spi: imx: mx51-ecspi: Reinstate low-speed CONFIGREG delay + - spi: imx: mx51-ecspi: Fix low-speed CONFIGREG delay calculation + - scsi: sr: Return correct event when media event code is 3 + - media: videobuf2-core: dequeue if start_streaming fails + - dmaengine: imx-dma: configure the generic DMA type to make it work + - net, gro: Set inner transport header offset in tcp/udp GRO hook + - net: dsa: sja1105: overwrite dynamic FDB entries with static ones in + .port_fdb_add + - net: dsa: sja1105: invalidate dynamic FDB entries learned concurrently with + statically added ones + - net: phy: micrel: Fix detection of ksz87xx switch + - net: natsemi: Fix missing pci_disable_device() in probe and remove + - gpio: tqmx86: really make IRQ optional + - sctp: move the active_key update after sh_keys is added + - nfp: update ethtool reporting of pauseframe control + - net: ipv6: fix returned variable type in ip6_skb_dst_mtu + - mips: Fix non-POSIX regexp + - bnx2x: fix an error code in bnx2x_nic_load() + - net: pegasus: fix uninit-value in get_interrupt_interval + - net: fec: fix use-after-free in fec_drv_remove + - net: vxge: fix use-after-free in vxge_device_unregister + - blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() + - Bluetooth: defer cleanup of resources in hci_unregister_dev() + - USB: usbtmc: Fix RCU stall warning + - USB: serial: option: add Telit FD980 composition 0x1056 + - USB: serial: ch341: fix character loss at high transfer rates + - USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 + - firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback + - firmware_loader: fix use-after-free in firmware_fallback_sysfs + - ALSA: hda/realtek: add mic quirk for Acer SF314-42 + - ALSA: usb-audio: Add registration quirk for JBL Quantum 600 + - usb: cdns3: Fixed incorrect gadget state + - usb: gadget: f_hid: added GET_IDLE and SET_IDLE handlers + - usb: gadget: f_hid: fixed NULL pointer dereference + - usb: gadget: f_hid: idle uses the highest byte for duration + - usb: otg-fsm: Fix hrtimer list corruption + - clk: fix leak on devm_clk_bulk_get_all() unwind + - scripts/tracing: fix the bug that can't parse raw_trace_func + - tracing / histogram: Give calculation hist_fields a size + - optee: Clear stale cache entries during initialization + - tee: add tee_shm_alloc_kernel_buf() + - optee: Fix memory leak when failing to register shm pages + - tpm_ftpm_tee: Free and unregister TEE shared memory during kexec + - staging: rtl8723bs: Fix a resource leak in sd_int_dpc + - staging: rtl8712: get rid of flush_scheduled_work + - media: rtl28xxu: fix zero-length control request + - pipe: increase minimum default pipe size to 2 pages + - ext4: fix potential htree corruption when growing large_dir directories + - serial: tegra: Only print FIFO error message when an error occurs + - serial: 8250_mtk: fix uart corruption issue when rx power off + - serial: 8250: Mask out floating 16/32-bit bus bits + - MIPS: Malta: Do not byte-swap accesses to the CBUS UART + - serial: 8250_pci: Enumerate Elkhart Lake UARTs via dedicated driver + - serial: 8250_pci: Avoid irq sharing for MSI(-X) interrupts. + - timers: Move clearing of base::timer_running under base:: Lock + - pcmcia: i82092: fix a null pointer dereference bug + - md/raid10: properly indicate failure when ending a failed write request + - KVM: x86: accept userspace interrupt only if no event is injected + - KVM: Do not leak memory for duplicate debugfs directories + - KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds + - arm64: vdso: Avoid ISB after reading from cntvct_el0 + - soc: ixp4xx: fix printing resources + - spi: meson-spicc: fix memory leak in meson_spicc_remove + - soc: ixp4xx/qmgr: fix invalid __iomem access + - perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest + - bpf, selftests: Adjust few selftest result_unpriv outcomes + - libata: fix ata_pio_sector for CONFIG_HIGHMEM + - reiserfs: add check for root_inode in reiserfs_fill_super + - reiserfs: check directory items on read from disk + - virt_wifi: fix error on connect + - alpha: Send stop IPI to send to online CPUs + - net/qla3xxx: fix schedule while atomic in ql_wait_for_drvr_lock and + ql_adapter_reset + - arm64: fix compat syscall return truncation + - Linux 5.4.140 + + * Focal update: v5.4.139 upstream stable release (LP: #1941796) + - btrfs: delete duplicated words + other fixes in comments + - btrfs: do not commit logs and transactions during link and rename operations + - btrfs: fix race causing unnecessary inode logging during link and rename + - btrfs: fix lost inode on log replay after mix of fsync, rename and inode + eviction + - regulator: rt5033: Fix n_voltages settings for BUCK and LDO + - spi: stm32h7: fix full duplex irq handler handling + - ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits + - r8152: Fix potential PM refcount imbalance + - qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union() + - net: Fix zero-copy head len calculation. + - nvme: fix nvme_setup_command metadata trace event + - ACPI: fix NULL pointer dereference + - Revert "Bluetooth: Shutdown controller after workqueues are flushed or + cancelled" + - firmware: arm_scmi: Ensure drivers provide a probe function + - firmware: arm_scmi: Add delayed response status check + - bpf: Inherit expanded/patched seen count from old aux data + - bpf: Do not mark insn as seen under speculative path verification + - bpf: Fix leakage under speculation on mispredicted branches + - bpf: Test_verifier, add alu32 bounds tracking tests + - bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit + ones + - bpf, selftests: Adjust few selftest outcomes wrt unreachable code + - spi: mediatek: Fix fifo transfer + - Linux 5.4.139 + + * Focal update: v5.4.138 upstream stable release (LP: #1940559) + - net_sched: check error pointer in tcf_dump_walker() + - x86/asm: Ensure asm/proto.h can be included stand-alone + - btrfs: fix rw device counting in __btrfs_free_extra_devids + - btrfs: mark compressed range uptodate only if all bio succeed + - x86/kvm: fix vcpu-id indexed array sizes + - KVM: add missing compat KVM_CLEAR_DIRTY_LOG + - ocfs2: fix zero out valid data + - ocfs2: issue zeroout to EOF blocks + - can: j1939: j1939_xtp_rx_dat_one(): fix rxtimer value between consecutive + TP.DT to 750ms + - can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF + - can: mcba_usb_start(): add missing urb->transfer_dma initialization + - can: usb_8dev: fix memory leak + - can: ems_usb: fix memory leak + - can: esd_usb2: fix memory leak + - HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT + - NIU: fix incorrect error return, missed in previous revert + - nfc: nfcsim: fix use after free during module unload + - cfg80211: Fix possible memory leak in function cfg80211_bss_update + - netfilter: conntrack: adjust stop timestamp to real expiry value + - netfilter: nft_nat: allow to specify layer 4 protocol NAT only + - i40e: Fix logic of disabling queues + - i40e: Fix firmware LLDP agent related warning + - i40e: Fix queue-to-TC mapping on Tx + - i40e: Fix log TC creation failure when max num of queues is exceeded + - tipc: fix sleeping in tipc accept routine + - net: Set true network header for ECN decapsulation + - mlx4: Fix missing error code in mlx4_load_one() + - net: llc: fix skb_over_panic + - net/mlx5: Fix flow table chaining + - net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() + - sctp: fix return value check in __sctp_rcv_asconf_lookup + - tulip: windbond-840: Fix missing pci_disable_device() in probe and remove + - sis900: Fix missing pci_disable_device() in probe and remove + - can: hi311x: fix a signedness bug in hi3110_cmd() + - PCI: mvebu: Setup BAR0 in order to fix MSI + - powerpc/pseries: Fix regression while building external modules + - i40e: Add additional info to PHY type error + - can: j1939: j1939_session_deactivate(): clarify lifetime of session object + - Linux 5.4.138 + + * Focal update: v5.4.137 upstream stable release (LP: #1940557) + - selftest: fix build error in tools/testing/selftests/vm/userfaultfd.c + - tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include + - KVM: x86: determine if an exception has an error code only when injecting + it. + - af_unix: fix garbage collect vs MSG_PEEK + - workqueue: fix UAF in pwq_unbound_release_workfn() + - cgroup1: fix leaked context root causing sporadic NULL deref in LTP + - net/802/mrp: fix memleak in mrp_request_join() + - net/802/garp: fix memleak in garp_request_join() + - net: annotate data race around sk_ll_usec + - sctp: move 198 addresses from unusable to private scope + - ipv6: allocate enough headroom in ip6_finish_output2() + - hfs: add missing clean-up in hfs_fill_super + - hfs: fix high memory mapping in hfs_bnode_read + - hfs: add lock nesting notation to hfs_find_init + - firmware: arm_scmi: Fix possible scmi_linux_errmap buffer overflow + - firmware: arm_scmi: Fix range check for the maximum number of pending + messages + - cifs: fix the out of range assignment to bit fields in + parse_server_interfaces + - iomap: remove the length variable in iomap_seek_data + - iomap: remove the length variable in iomap_seek_hole + - ARM: dts: versatile: Fix up interrupt controller node names + - ipv6: ip6_finish_output2: set sk into newly allocated nskb + - Linux 5.4.137 + + * Focal update: v5.4.136 upstream stable release (LP: #1939899) + - igc: Fix use-after-free error during reset + - igb: Fix use-after-free error during reset + - igc: change default return of igc_read_phy_reg() + - ixgbe: Fix an error handling path in 'ixgbe_probe()' + - igc: Prefer to use the pci_release_mem_regions method + - igc: Fix an error handling path in 'igc_probe()' + - igb: Fix an error handling path in 'igb_probe()' + - fm10k: Fix an error handling path in 'fm10k_probe()' + - e1000e: Fix an error handling path in 'e1000_probe()' + - iavf: Fix an error handling path in 'iavf_probe()' + - igb: Check if num of q_vectors is smaller than max before array access + - igb: Fix position of assignment to *ring + - gve: Fix an error handling path in 'gve_probe()' + - ipv6: fix 'disable_policy' for fwd packets + - selftests: icmp_redirect: remove from checking for IPv6 route get + - selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect + - pwm: sprd: Ensure configuring period and duty_cycle isn't wrongly skipped + - cxgb4: fix IRQ free race during driver unload + - nvme-pci: do not call nvme_dev_remove_admin from nvme_remove + - perf probe: Fix dso->nsinfo refcounting + - perf env: Fix sibling_dies memory leak + - perf test session_topology: Delete session->evlist + - perf test event_update: Fix memory leak of evlist + - perf dso: Fix memory leak in dso__new_map() + - perf script: Fix memory 'threads' and 'cpus' leaks on exit + - perf lzma: Close lzma stream on exit + - perf probe-file: Delete namelist in del_events() on the error path + - perf data: Close all files in close_dir() + - spi: imx: add a check for speed_hz before calculating the clock + - spi: stm32: Use dma_request_chan() instead dma_request_slave_channel() + - spi: stm32: fixes pm_runtime calls in probe/remove + - regulator: hi6421: Use correct variable type for regmap api val argument + - regulator: hi6421: Fix getting wrong drvdata + - spi: mediatek: fix fifo rx mode + - ASoC: rt5631: Fix regcache sync errors on resume + - liquidio: Fix unintentional sign extension issue on left shift of u16 + - s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] + - bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats + - bpftool: Check malloc return value in mount_bpffs_for_pin + - net: fix uninit-value in caif_seqpkt_sendmsg + - efi/tpm: Differentiate missing and invalid final event log table. + - net: decnet: Fix sleeping inside in af_decnet + - KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash + - KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak + - net: sched: fix memory leak in tcindex_partial_destroy_work + - netrom: Decrease sock refcount when sock timers expire + - scsi: iscsi: Fix iface sysfs attr detection + - scsi: target: Fix protect handling in WRITE SAME(32) + - spi: cadence: Correct initialisation of runtime PM again + - bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence. + - bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() + - bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() + - bnxt_en: Check abort error state in bnxt_half_open_nic() + - net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition + - net/tcp_fastopen: fix data races around tfo_active_disable_stamp + - net: hns3: fix rx VLAN offload state inconsistent issue + - net/sched: act_skbmod: Skip non-Ethernet packets + - ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions + - nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING + - Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" + - afs: Fix tracepoint string placement with built-in AFS + - r8169: Avoid duplicate sysfs entry creation error + - nvme: set the PRACT bit when using Write Zeroes with T10 PI + - sctp: update active_key for asoc when old key is being replaced + - net: sched: cls_api: Fix the the wrong parameter + - drm/panel: raspberrypi-touchscreen: Prevent double-free + - proc: Avoid mixing integer types in mem_rw() + - s390/ftrace: fix ftrace_update_ftrace_func implementation + - s390/boot: fix use of expolines in the DMA code + - ALSA: usb-audio: Add missing proc text entry for BESPOKEN type + - ALSA: usb-audio: Add registration quirk for JBL Quantum headsets + - ALSA: sb: Fix potential ABBA deadlock in CSP driver + - ALSA: hdmi: Expose all pins on MSI MS-7C94 board + - xhci: Fix lost USB 2 remote wake + - KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow + - KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state + - usb: hub: Disable USB 3 device initiated lpm if exit latency is too high + - usb: hub: Fix link power management max exit latency (MEL) calculations + - USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS + - usb: max-3421: Prevent corruption of freed memory + - usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() + - USB: serial: option: add support for u-blox LARA-R6 family + - USB: serial: cp210x: fix comments for GE CS1000 + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. + - firmware/efi: Tell memblock about EFI iomem reservations + - tracing/histogram: Rename "cpu" to "common_cpu" + - tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. + - btrfs: check for missing device in btrfs_trim_fs + - media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() + - ixgbe: Fix packet corruption due to missing DMA sync + - selftest: use mmap instead of posix_memalign to allocate memory + - userfaultfd: do not untag user pointers + - hugetlbfs: fix mount mode command line processing + - rbd: don't hold lock_rwsem while running_list is being drained + - rbd: always kick acquire on "acquired" and "released" notifications + - nds32: fix up stack guard gap + - drm: Return -ENOTTY for non-drm ioctls + - net: dsa: mv88e6xxx: use correct .stats_set_histogram() on Topaz + - net: bcmgenet: ensure EXT_ENERGY_DET_MASK is clear + - iio: accel: bma180: Use explicit member assignment + - iio: accel: bma180: Fix BMA25x bandwidth register values + - btrfs: compression: don't try to compress if we don't have enough pages + - PCI: Mark AMD Navi14 GPU ATS as broken + - perf inject: Close inject.output on exit + - xhci: add xhci_get_virt_ep() helper + - Linux 5.4.136 + + * Focal update: v5.4.135 upstream stable release (LP: #1939442) + - ARM: dts: gemini: rename mdio to the right name + - ARM: dts: gemini: add device_type on pci + - ARM: dts: rockchip: fix pinctrl sleep nodename for rk3036-kylin and rk3288 + - arm64: dts: rockchip: fix pinctrl sleep nodename for rk3399.dtsi + - ARM: dts: rockchip: Fix the timer clocks order + - ARM: dts: rockchip: Fix IOMMU nodes properties on rk322x + - ARM: dts: rockchip: Fix power-controller node names for rk3066a + - ARM: dts: rockchip: Fix power-controller node names for rk3188 + - ARM: dts: rockchip: Fix power-controller node names for rk3288 + - arm64: dts: rockchip: Fix power-controller node names for px30 + - arm64: dts: rockchip: Fix power-controller node names for rk3328 + - reset: ti-syscon: fix to_ti_syscon_reset_data macro + - ARM: brcmstb: dts: fix NAND nodes names + - ARM: Cygnus: dts: fix NAND nodes names + - ARM: NSP: dts: fix NAND nodes names + - ARM: dts: BCM63xx: Fix NAND nodes names + - ARM: dts: Hurricane 2: Fix NAND nodes names + - ARM: dts: imx6: phyFLEX: Fix UART hardware flow control + - ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info + - rtc: mxc_v2: add missing MODULE_DEVICE_TABLE + - kbuild: sink stdout from cmd for silent build + - ARM: dts: am57xx-cl-som-am57x: fix ti,no-reset-on-init flag for gpios + - ARM: dts: am437x-gp-evm: fix ti,no-reset-on-init flag for gpios + - ARM: dts: stm32: fix gpio-keys node on STM32 MCU boards + - ARM: dts: stm32: fix RCC node name on stm32f429 MCU + - ARM: dts: stm32: fix timer nodes on STM32 MCU to prevent warnings + - arm64: dts: juno: Update SCPI nodes as per the YAML schema + - ARM: dts: rockchip: fix supply properties in io-domains nodes + - ARM: dts: stm32: fix i2c node name on stm32f746 to prevent warnings + - ARM: dts: stm32: move stmmac axi config in ethernet node on stm32mp15 + - soc/tegra: fuse: Fix Tegra234-only builds + - firmware: tegra: bpmp: Fix Tegra234-only builds + - arm64: dts: ls208xa: remove bus-num from dspi node + - arm64: dts: imx8mq: assign PCIe clocks + - thermal/core: Correct function name thermal_zone_device_unregister() + - kbuild: mkcompile_h: consider timestamp if KBUILD_BUILD_TIMESTAMP is set + - rtc: max77686: Do not enforce (incorrect) interrupt trigger type + - scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 + - scsi: libsas: Add LUN number check in .slave_alloc callback + - scsi: libfc: Fix array index out of bound exception + - scsi: qedf: Add check to synchronize abort and flush + - sched/fair: Fix CFS bandwidth hrtimer expiry type + - s390: introduce proper type handling call_on_stack() macro + - cifs: prevent NULL deref in cifs_compose_mount_options() + - arm64: dts: armada-3720-turris-mox: add firmware node + - firmware: turris-mox-rwtm: add marvell,armada-3700-rwtm-firmware compatible + string + - arm64: dts: marvell: armada-37xx: move firmware node to generic dtsi file + - f2fs: Show casefolding support only when supported + - usb: cdns3: Enable TDL_CHK only for OUT ep + - Revert "UBUNTU: SAUCE: Revert "mm: memcg/slab: fix memory leak at non-root + kmem_cache destroy"" + - mm: slab: fix kmem_cache_create failed when sysfs node not destroyed + - dm writecache: return the exact table values that were set + - net: dsa: mv88e6xxx: enable .port_set_policy() on Topaz + - net: dsa: mv88e6xxx: enable .rmu_disable() on Topaz + - net: ipv6: fix return value of ip6_skb_dst_mtu + - netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo + - net/sched: act_ct: fix err check for nf_conntrack_confirm + - net: bridge: sync fdb to new unicast-filtering ports + - net: bcmgenet: Ensure all TX/RX queues DMAs are disabled + - net: ip_tunnel: fix mtu calculation for ETHER tunnel devices + - net: moxa: fix UAF in moxart_mac_probe + - net: qcom/emac: fix UAF in emac_remove + - net: ti: fix UAF in tlan_remove_one + - net: send SYNACK packet with accepted fwmark + - net: validate lwtstate->data before returning from skb_tunnel_info() + - net: fddi: fix UAF in fza_probe + - dma-buf/sync_file: Don't leak fences on merge failure + - tcp: annotate data races around tp->mtu_info + - ipv6: tcp: drop silly ICMPv6 packet too big messages + - bpftool: Properly close va_list 'ap' by va_end() on error + - perf test bpf: Free obj_buf + - udp: annotate data races around unix_sk(sk)->gso_size + - Linux 5.4.135 + + * Focal update: v5.4.134 upstream stable release (LP: #1939440) + - KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio + - KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled + - KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() + - scsi: core: Fix bad pointer dereference when ehandler kthread is invalid + - tracing: Do not reference char * as a string in histograms + - cgroup: verify that source is a string + - fbmem: Do not delete the mode that is still in use + - net: moxa: Use devm_platform_get_and_ioremap_resource() + - dmaengine: fsl-qdma: check dma_set_mask return value + - srcu: Fix broken node geometry after early ssp init + - tty: serial: fsl_lpuart: fix the potential risk of division or modulo by + zero + - misc/libmasm/module: Fix two use after free in ibmasm_init_one + - misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge + - iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get(). + - iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get() + - ALSA: usx2y: Don't call free_pages_exact() with NULL address + - Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" + - w1: ds2438: fixing bug that would always get page0 + - scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() + - scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology + - scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the + SGLs + - scsi: core: Cap scsi_host cmd_per_lun at can_queue + - ALSA: ac97: fix PM reference leak in ac97_bus_remove() + - tty: serial: 8250: serial_cs: Fix a memory leak in error handling path + - scsi: scsi_dh_alua: Check for negative result value + - fs/jfs: Fix missing error code in lmLogInit() + - scsi: megaraid_sas: Fix resource leak in case of probe failure + - scsi: megaraid_sas: Early detection of VD deletion through RaidMap update + - scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs + - scsi: iscsi: Add iscsi_cls_conn refcount helpers + - scsi: iscsi: Fix conn use after free during resets + - scsi: iscsi: Fix shost->max_id use + - scsi: qedi: Fix null ref during abort handling + - mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE + - mfd: cpcap: Fix cpcap dmamask not set warnings + - ASoC: img: Fix PM reference leak in img_i2s_in_probe() + - serial: tty: uartlite: fix console setup + - s390/sclp_vt220: fix console name to match device + - ALSA: sb: Fix potential double-free of CSP mixer elements + - powerpc/ps3: Add dma_mask to ps3_dma_region + - iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get + fails + - iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation + - gpio: zynq: Check return value of pm_runtime_get_sync + - ALSA: ppc: fix error return code in snd_pmac_probe() + - selftests/powerpc: Fix "no_handler" EBB selftest + - gpio: pca953x: Add support for the On Semi pca9655 + - ASoC: soc-core: Fix the error return code in + snd_soc_of_parse_audio_routing() + - s390/processor: always inline stap() and __load_psw_mask() + - s390/ipl_parm: fix program check new psw handling + - s390/mem_detect: fix diag260() program check new psw handling + - s390/mem_detect: fix tprot() program check new psw handling + - Input: hideep - fix the uninitialized use in hideep_nvm_unlock() + - ALSA: bebob: add support for ToneWeal FW66 + - ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count + - ALSA: usb-audio: scarlett2: Fix data_mutex lock + - ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values + - usb: gadget: f_hid: fix endianness issue with descriptors + - usb: gadget: hid: fix error return code in hid_bind() + - powerpc/boot: Fixup device-tree on little endian + - ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters + - backlight: lm3630a: Fix return code of .update_status() callback + - ALSA: hda: Add IRQ check for platform_get_irq() + - ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions + - staging: rtl8723bs: fix macro value for 2.4Ghz only device + - intel_th: Wait until port is in reset before programming it + - i2c: core: Disable client irq on reboot/shutdown + - power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE + - power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE + - pwm: spear: Don't modify HW state in .remove callback + - power: supply: ab8500: Avoid NULL pointers + - power: supply: max17042: Do not enforce (incorrect) interrupt trigger type + - power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE + - ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 + - PCI/P2PDMA: Avoid pci_get_slot(), which may sleep + - watchdog: Fix possible use-after-free in wdt_startup() + - watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() + - watchdog: Fix possible use-after-free by calling del_timer_sync() + - watchdog: imx_sc_wdt: fix pretimeout + - x86/fpu: Return proper error codes from user access functions + - PCI: tegra: Add missing MODULE_DEVICE_TABLE + - orangefs: fix orangefs df output. + - ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty + - NFS: nfs_find_open_context() may only select open files + - power: supply: charger-manager: add missing MODULE_DEVICE_TABLE + - power: supply: ab8500: add missing MODULE_DEVICE_TABLE + - pwm: img: Fix PM reference leak in img_pwm_enable() + - pwm: tegra: Don't modify HW state in .remove callback + - ACPI: AMBA: Fix resource name in /proc/iomem + - ACPI: video: Add quirk for the Dell Vostro 3350 + - virtio-blk: Fix memory leak among suspend/resume procedure + - virtio_net: Fix error handling in virtnet_restore() + - virtio_console: Assure used length from device is limited + - x86/signal: Detect and prevent an alternate signal stack overflow + - f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs + - PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun + - power: supply: rt5033_battery: Fix device tree enumeration + - NFSv4: Initialise connection to the server in nfs4_alloc_client() + - um: fix error return code in slip_open() + - um: fix error return code in winch_tramp() + - watchdog: aspeed: fix hardware timeout calculation + - nfs: fix acl memory leak of posix_acl_create() + - ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode + - PCI: iproc: Fix multi-MSI base vector number allocation + - PCI: iproc: Support multi-MSI only on uniprocessor kernel + - x86/fpu: Limit xstate copy size in xstateregs_set() + - pwm: imx1: Don't disable clocks at device remove time + - virtio_net: move tx vq operation under tx queue lock + - nvme-tcp: can't set sk_user_data without write_lock + - ALSA: isa: Fix error return code in snd_cmi8330_probe() + - NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times + - hexagon: use common DISCARDS macro + - ARM: dts: gemini-rut1xx: remove duplicate ethernet node + - reset: a10sr: add missing of_match_table reference + - ARM: exynos: add missing of_node_put for loop iteration + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 + - memory: atmel-ebi: add missing of_node_put for loop iteration + - reset: brcmstb: Add missing MODULE_DEVICE_TABLE + - memory: pl353: Fix error return code in pl353_smc_probe() + - rtc: fix snprintf() checking in is_rtc_hctosys() + - arm64: dts: renesas: v3msk: Fix memory size + - ARM: dts: r8a7779, marzen: Fix DU clock names + - firmware: tegra: Fix error return code in tegra210_bpmp_init() + - firmware: arm_scmi: Reset Rx buffer to max size during async commands + - ARM: dts: BCM5301X: Fixup SPI binding + - reset: bail if try_module_get() fails + - memory: fsl_ifc: fix leak of IO mapping on probe failure + - memory: fsl_ifc: fix leak of private memory on probe failure + - ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: imx6q-dhcom: Fix ethernet reset time properties + - ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems + - ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery + - thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations + - firmware: turris-mox-rwtm: fix reply status decoding function + - firmware: turris-mox-rwtm: report failures better + - firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng + - scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() + - mips: always link byteswap helpers into decompressor + - mips: disable branch profiling in boot/decompress.o + - MIPS: vdso: Invalid GIC access through VDSO + - scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() + - misc: alcor_pci: fix inverted branch condition + - Linux 5.4.134 + + -- Kleber Sacilotto de Souza Mon, 20 Sep 2021 21:38:19 +0200 + +linux (5.4.0-86.97) focal; urgency=medium + + * s390x BPF JIT vulnerabilities (LP: #1943960) + - SAUCE: s390/bpf: Fix 64-bit subtraction of the -0x80000000 constant + - SAUCE: s390/bpf: Fix optimizing out zero-extensions + + -- Thadeu Lima de Souza Cascardo Fri, 17 Sep 2021 15:35:09 -0300 + +linux (5.4.0-84.94) focal; urgency=medium + + * focal/linux: 5.4.0-84.94 -proposed tracker (LP: #1941767) + + * Server boot failure after adding checks for ACPI IRQ override (LP: #1941657) + - Revert "ACPI: resources: Add checks for ACPI IRQ override" + + -- Kelsey Skunberg Thu, 26 Aug 2021 12:48:59 -0600 + +linux (5.4.0-83.93) focal; urgency=medium + + * focal/linux: 5.4.0-83.93 -proposed tracker (LP: #1940159) + + * fails to launch linux L2 guests on AMD (LP: #1940134) // CVE-2021-3653 + - KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + (CVE-2021-3653) + + * fails to launch linux L2 guests on AMD (LP: #1940134) + - SAUCE: Revert "UBUNTU: SAUCE: KVM: nSVM: avoid picking up unsupported bits + from L2 in int_ctl" + + -- Stefan Bader Tue, 17 Aug 2021 11:37:56 +0200 + +linux (5.4.0-82.92) focal; urgency=medium + + * focal/linux: 5.4.0-82.92 -proposed tracker (LP: #1939799) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.08.16) + + * CVE-2021-3656 + - SAUCE: KVM: nSVM: always intercept VMLOAD/VMSAVE when nested + + * CVE-2021-3653 + - SAUCE: KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + + * dev_forward_skb: do not scrub skb mark within the same name space + (LP: #1935040) + - dev_forward_skb: do not scrub skb mark within the same name space + + * XPS 9510 (TGL) Screen Brightness could not be changed (LP: #1933566) + - SAUCE: drm/i915: Force DPCD backlight mode for Dell XPS 9510(TGL) + + * Acer Aspire 5 sound driver issues (LP: #1930188) + - ALSA: hda/realtek: headphone and mic don't work on an Acer laptop + + * Sony Dualshock 4 usb dongle crashes the whole system (LP: #1935846) + - HID: sony: Workaround for DS4 dongle hotplug kernel crash. + + * [21.10 FEAT] KVM: Provide a secure guest indication (LP: #1933173) + - s390/uv: add prot virt guest/host indication files + - s390/uv: fix prot virt host indication compilation + + * Skip rtcpie test in kselftests/timers if the default RTC device does not + exist (LP: #1937991) + - selftests: timers: rtcpie: skip test if default RTC device does not exist + + * Focal update: v5.4.133 upstream stable release (LP: #1938713) + - drm/mxsfb: Don't select DRM_KMS_FB_HELPER + - drm/zte: Don't select DRM_KMS_FB_HELPER + - drm/amd/amdgpu/sriov disable all ip hw status by default + - drm/vc4: fix argument ordering in vc4_crtc_get_margins() + - net: pch_gbe: Use proper accessors to BE data in pch_ptp_match() + - drm/amd/display: fix use_max_lb flag for 420 pixel formats + - hugetlb: clear huge pte during flush function on mips platform + - atm: iphase: fix possible use-after-free in ia_module_exit() + - mISDN: fix possible use-after-free in HFC_cleanup() + - atm: nicstar: Fix possible use-after-free in nicstar_cleanup() + - net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT + - drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init() + - reiserfs: add check for invalid 1st journal block + - drm/virtio: Fix double free on probe failure + - drm/sched: Avoid data corruptions + - udf: Fix NULL pointer dereference in udf_symlink function + - e100: handle eeprom as little endian + - igb: handle vlan types with checker enabled + - drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer() + - clk: renesas: r8a77995: Add ZA2 clock + - clk: tegra: Ensure that PLLU configuration is applied properly + - ipv6: use prandom_u32() for ID generation + - RDMA/cxgb4: Fix missing error code in create_qp() + - dm space maps: don't reset space map allocation cursor when committing + - pinctrl: mcp23s08: fix race condition in irq handler + - ice: set the value of global config lock timeout longer + - virtio_net: Remove BUG() to avoid machine dead + - net: bcmgenet: check return value after calling platform_get_resource() + - net: mvpp2: check return value after calling platform_get_resource() + - net: micrel: check return value after calling platform_get_resource() + - drm/amd/display: Update scaling settings on modeset + - drm/amd/display: Release MST resources on switch from MST to SST + - drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7 + - drm/amdkfd: use allowed domain for vmbo validation + - fjes: check return value after calling platform_get_resource() + - selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC + - r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM + - drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check + - xfrm: Fix error reporting in xfrm_state_construct. + - wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP + - wl1251: Fix possible buffer overflow in wl1251_cmd_scan + - cw1200: add missing MODULE_DEVICE_TABLE + - bpf: Fix up register-based shifts in interpreter to silence KUBSAN + - mt76: mt7615: fix fixed-rate tx status reporting + - net: fix mistake path for netdev_features_strings + - net: sched: fix error return code in tcf_del_walker() + - drm/amdkfd: Walk through list with dqm lock hold + - rtl8xxxu: Fix device info for RTL8192EU devices + - atm: nicstar: use 'dma_free_coherent' instead of 'kfree' + - atm: nicstar: register the interrupt handler in the right place + - vsock: notify server to shutdown when client has pending signal + - RDMA/rxe: Don't overwrite errno from ib_umem_get() + - iwlwifi: mvm: don't change band on bound PHY contexts + - iwlwifi: pcie: free IML DMA memory allocation + - iwlwifi: pcie: fix context info freeing + - sfc: avoid double pci_remove of VFs + - sfc: error code if SRIOV cannot be disabled + - wireless: wext-spy: Fix out-of-bounds warning + - media, bpf: Do not copy more entries than user space requested + - net: ip: avoid OOM kills with large UDP sends over loopback + - RDMA/cma: Fix rdma_resolve_route() memory leak + - Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip. + - Bluetooth: Fix the HCI to MGMT status conversion table + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + - Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc. + - sctp: validate from_addr_param return + - sctp: add size validation when walking chunks + - MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops + - MIPS: set mips32r5 for virt extensions + - fscrypt: don't ignore minor_hash when hash is 0 + - crypto: ccp - Annotate SEV Firmware file names + - perf bench: Fix 2 memory sanitizer warnings + - powerpc/mm: Fix lockup on kernel exec fault + - powerpc/barrier: Avoid collision with clang's __lwsync macro + - drm/amdgpu: Update NV SIMD-per-CU to 2 + - drm/radeon: Add the missed drm_gem_object_put() in + radeon_user_framebuffer_create() + - drm/rockchip: dsi: remove extra component_del() call + - drm/amd/display: fix incorrrect valid irq check + - pinctrl/amd: Add device HID for new AMD GPIO controller + - drm/tegra: Don't set allow_fb_modifiers explicitly + - drm/msm/mdp4: Fix modifier support enabling + - drm/arm/malidp: Always list modifiers + - mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode + - mmc: core: clear flags before allowing to retune + - mmc: core: Allow UHS-I voltage switch for SDSC cards if supported + - ata: ahci_sunxi: Disable DIPM + - cpu/hotplug: Cure the cpusets trainwreck + - clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround + - fpga: stratix10-soc: Add missing fpga_mgr_free() call + - MIPS: fix "mipsel-linux-ld: decompress.c:undefined reference to `memmove'" + - ASoC: tegra: Set driver_name=tegra for all machine drivers + - qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute + - ipmi/watchdog: Stop watchdog timer when the current action is 'none' + - thermal/drivers/int340x/processor_thermal: Fix tcc setting + - ubifs: Fix races between xattr_{set|get} and listxattr operations + - power: supply: ab8500: Fix an old bug + - nvmem: core: add a missing of_node_put + - extcon: intel-mrfld: Sync hardware and software state on init + - seq_buf: Fix overflow in seq_buf_putmem_hex() + - rq-qos: fix missed wake-ups in rq_qos_throttle try two + - tracing: Simplify & fix saved_tgids logic + - tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT + - ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe + - coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer() + - dm btree remove: assign new_root only when removal succeeds + - PCI: Leave Apple Thunderbolt controllers on for s2idle or standby + - PCI: aardvark: Fix checking for PIO Non-posted Request + - PCI: aardvark: Implement workaround for the readback value of VEND_ID + - media: subdev: disallow ioctl for saa6588/davinci + - media: dtv5100: fix control-request directions + - media: zr364xx: fix memory leak in zr364xx_start_readpipe + - media: gspca/sq905: fix control-request direction + - media: gspca/sunplus: fix zero-length control requests + - pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq() + - jfs: fix GPF in diFree + - smackfs: restrict bytes count in smk_set_cipso() + - Linux 5.4.133 + + * Focal update: v5.4.132 upstream stable release (LP: #1938199) + - ALSA: usb-audio: fix rate on Ozone Z90 USB headset + - ALSA: usb-audio: Fix OOB access at proc output + - ALSA: usb-audio: scarlett2: Fix wrong resume call + - ALSA: intel8x0: Fix breakage at ac97 clock measurement + - ALSA: hda/realtek: Add another ALC236 variant support + - ALSA: hda/realtek: Improve fixup for HP Spectre x360 15-df0xxx + - ALSA: hda/realtek: Fix bass speaker DAC mapping for Asus UM431D + - ALSA: hda/realtek: Apply LED fixup for HP Dragonfly G1, too + - media: dvb-usb: fix wrong definition + - Input: usbtouchscreen - fix control-request directions + - net: can: ems_usb: fix use-after-free in ems_usb_disconnect() + - usb: gadget: eem: fix echo command packet response issue + - USB: cdc-acm: blacklist Heimann USB Appset device + - usb: dwc3: Fix debugfs creation flow + - usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() + - xhci: solve a double free problem while doing s4 + - ntfs: fix validity check for file name attribute + - copy_page_to_iter(): fix ITER_DISCARD case + - iov_iter_fault_in_readable() should do nothing in xarray case + - Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl + - arm_pmu: Fix write counter incorrect in ARMv7 big-endian mode + - ARM: dts: at91: sama5d4: fix pinctrl muxing + - btrfs: send: fix invalid path for unlink operations after parent + orphanization + - btrfs: clear defrag status of a root if starting transaction fails + - ext4: cleanup in-core orphan list if ext4_truncate() failed to get a + transaction handle + - ext4: fix kernel infoleak via ext4_extent_header + - ext4: return error code when ext4_fill_flex_info() fails + - ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit + - ext4: remove check for zero nr_to_scan in ext4_es_scan() + - ext4: fix avefreec in find_group_orlov + - ext4: use ext4_grp_locked_error in mb_find_extent + - can: gw: synchronize rcu operations before removing gw job entry + - can: j1939: j1939_sk_init(): set SOCK_RCU_FREE to call sk_destruct() after + RCU is done + - can: peak_pciefd: pucan_handle_status(): fix a potential starvation issue in + TX path + - mac80211: remove iwlwifi specific workaround that broke sta NDP tx + - SUNRPC: Fix the batch tasks count wraparound. + - SUNRPC: Should wake up the privileged task firstly. + - perf/smmuv3: Don't trample existing events with global filter + - KVM: PPC: Book3S HV: Workaround high stack usage with clang + - s390/cio: dont call css_wait_for_slow_path() inside a lock + - rtc: stm32: Fix unbalanced clk_disable_unprepare() on probe error path + - iio: light: tcs3472: do not free unallocated IRQ + - iio: ltr501: mark register holding upper 8 bits of ALS_DATA{0,1} and PS_DATA + as volatile, too + - iio: ltr501: ltr559: fix initialization of LTR501_ALS_CONTR + - iio: ltr501: ltr501_read_ps(): add missing endianness conversion + - serial: mvebu-uart: fix calculation of clock divisor + - serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() + - serial_cs: Add Option International GSM-Ready 56K/ISDN modem + - serial_cs: remove wrong GLOBETROTTER.cis entry + - ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() + - ssb: sdio: Don't overwrite const buffer if block_write fails + - rsi: Assign beacon rate settings to the correct rate_info descriptor field + - rsi: fix AP mode with WPA failure due to encrypted EAPOL + - tracing/histograms: Fix parsing of "sym-offset" modifier + - tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing + - seq_buf: Make trace_seq_putmem_hex() support data longer than 8 + - powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() + - evm: Execute evm_inode_init_security() only when an HMAC key is loaded + - evm: Refuse EVM_ALLOW_METADATA_WRITES only if an HMAC key is loaded + - fuse: ignore PG_workingset after stealing + - fuse: check connected before queueing on fpq->io + - fuse: reject internal errno + - spi: Make of_register_spi_device also set the fwnode + - media: mdk-mdp: fix pm_runtime_get_sync() usage count + - media: s5p: fix pm_runtime_get_sync() usage count + - media: sh_vou: fix pm_runtime_get_sync() usage count + - media: mtk-vcodec: fix PM runtime get logic + - media: s5p-jpeg: fix pm_runtime_get_sync() usage count + - media: sti/bdisp: fix pm_runtime_get_sync() usage count + - media: exynos-gsc: fix pm_runtime_get_sync() usage count + - spi: spi-loopback-test: Fix 'tx_buf' might be 'rx_buf' + - spi: spi-topcliff-pch: Fix potential double free in + pch_spi_process_messages() + - spi: omap-100k: Fix the length judgment problem + - regulator: uniphier: Add missing MODULE_DEVICE_TABLE + - hwrng: exynos - Fix runtime PM imbalance on error + - crypto: nx - add missing MODULE_DEVICE_TABLE + - media: sti: fix obj-$(config) targets + - media: cpia2: fix memory leak in cpia2_usb_probe + - media: cobalt: fix race condition in setting HPD + - media: pvrusb2: fix warning in pvr2_i2c_core_done + - media: imx: imx7_mipi_csis: Fix logging of only error event counters + - crypto: qat - check return code of qat_hal_rd_rel_reg() + - crypto: qat - remove unused macro in FW loader + - sched/fair: Fix ascii art by relpacing tabs + - media: em28xx: Fix possible memory leak of em28xx struct + - media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release + - media: bt8xx: Fix a missing check bug in bt878_probe + - media: st-hva: Fix potential NULL pointer dereferences + - Makefile: fix GDB warning with CONFIG_RELR + - media: dvd_usb: memory leak in cinergyt2_fe_attach + - memstick: rtsx_usb_ms: fix UAF + - mmc: sdhci-sprd: use sdhci_sprd_writew + - mmc: via-sdmmc: add a check against NULL pointer dereference + - crypto: shash - avoid comparing pointers to exported functions under CFI + - media: dvb_net: avoid speculation from net slot + - media: siano: fix device register error path + - media: imx-csi: Skip first few frames from a BT.656 source + - hwmon: (max31790) Report correct current pwm duty cycles + - hwmon: (max31790) Fix pwmX_enable attributes + - drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe() + - KVM: PPC: Book3S HV: Fix TLB management on SMT8 POWER9 and POWER10 + processors + - btrfs: fix error handling in __btrfs_update_delayed_inode + - btrfs: abort transaction if we fail to update the delayed inode + - btrfs: disable build on platforms having page size 256K + - locking/lockdep: Fix the dep path printing for backwards BFS + - lockding/lockdep: Avoid to find wrong lock dep path in check_irq_usage() + - KVM: s390: get rid of register asm usage + - regulator: mt6358: Fix vdram2 .vsel_mask + - regulator: da9052: Ensure enough delay time for .set_voltage_time_sel + - media: Fix Media Controller API config checks + - HID: do not use down_interruptible() when unbinding devices + - EDAC/ti: Add missing MODULE_DEVICE_TABLE + - ACPI: processor idle: Fix up C-state latency if not ordered + - hv_utils: Fix passing zero to 'PTR_ERR' warning + - lib: vsprintf: Fix handling of number field widths in vsscanf + - ACPI: EC: Make more Asus laptops use ECDT _GPE + - block_dump: remove block_dump feature in mark_inode_dirty() + - fs: dlm: cancel work sync othercon + - random32: Fix implicit truncation warning in prandom_seed_state() + - fs: dlm: fix memory leak when fenced + - ACPICA: Fix memory leak caused by _CID repair function + - ACPI: bus: Call kobject_put() in acpi_init() error path + - block: fix race between adding/removing rq qos and normal IO + - platform/x86: toshiba_acpi: Fix missing error code in + toshiba_acpi_setup_keyboard() + - nvmet-fc: do not check for invalid target port in nvmet_fc_handle_fcp_rqst() + - EDAC/Intel: Do not load EDAC driver when running as a guest + - PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv() + - clocksource: Retry clock read if long delays detected + - ACPI: tables: Add custom DSDT file as makefile prerequisite + - HID: wacom: Correct base usage for capacitive ExpressKey status bits + - cifs: fix missing spinlock around update to ses->status + - block: fix discard request merge + - kthread_worker: fix return value when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - ia64: mca_drv: fix incorrect array size calculation + - writeback, cgroup: increment isw_nr_in_flight before grabbing an inode + - media: s5p_cec: decrement usage count if disabled + - crypto: ixp4xx - dma_unmap the correct address + - crypto: ux500 - Fix error return code in hash_hw_final() + - sata_highbank: fix deferred probing + - pata_rb532_cf: fix deferred probing + - media: I2C: change 'RST' to "RSET" to fix multiple build errors + - sched/uclamp: Fix wrong implementation of cpu.uclamp.min + - sched/uclamp: Fix locking around cpu_util_update_eff() + - kbuild: run the checker after the compiler + - kbuild: Fix objtool dependency for 'OBJECT_FILES_NON_STANDARD_ := n' + - pata_octeon_cf: avoid WARN_ON() in ata_host_activate() + - evm: fix writing /evm overflow + - crypto: ccp - Fix a resource leak in an error handling path + - media: rc: i2c: Fix an error message + - pata_ep93xx: fix deferred probing + - media: exynos4-is: Fix a use after free in isp_video_release + - media: au0828: fix a NULL vs IS_ERR() check + - media: tc358743: Fix error return code in tc358743_probe_of() + - media: gspca/gl860: fix zero-length control requests + - m68k: atari: Fix ATARI_KBD_CORE kconfig unmet dependency warning + - media: siano: Fix out-of-bounds warnings in smscore_load_firmware_family2() + - crypto: nitrox - fix unchecked variable in nitrox_register_interrupts + - crypto: omap-sham - Fix PM reference leak in omap sham ops + - mmc: usdhi6rol0: fix error return code in usdhi6_probe() + - arm64: consistently use reserved_pg_dir + - arm64/mm: Fix ttbr0 values stored in struct thread_info for software-pan + - media: s5p-g2d: Fix a memory leak on ctx->fh.m2m_ctx + - hwmon: (max31722) Remove non-standard ACPI device IDs + - hwmon: (max31790) Fix fan speed reporting for fan7..12 + - KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmap + - regulator: hi655x: Fix pass wrong pointer to config.driver_data + - btrfs: clear log tree recovering status if starting transaction fails + - sched/rt: Fix RT utilization tracking during policy change + - sched/rt: Fix Deadline utilization tracking during policy change + - sched/uclamp: Fix uclamp_tg_restrict() + - spi: spi-sun6i: Fix chipselect/clock bug + - crypto: nx - Fix RCU warning in nx842_OF_upd_status + - ACPI: sysfs: Fix a buffer overrun problem with description_show() + - extcon: extcon-max8997: Fix IRQ freeing at error path + - blk-wbt: introduce a new disable state to prevent false positive by + rwb_enabled() + - blk-wbt: make sure throttle is enabled properly + - ACPI: Use DEVICE_ATTR_ macros + - ACPI: bgrt: Fix CFI violation + - cpufreq: Make cpufreq_online() call driver->offline() on errors + - ocfs2: fix snprintf() checking + - dax: fix ENOMEM handling in grab_mapping_entry() + - xfrm: xfrm_state_mtu should return at least 1280 for ipv6 + - video: fbdev: imxfb: Fix an error message + - net: mvpp2: Put fwnode in error case during ->probe() + - net: pch_gbe: Propagate error from devm_gpio_request_one() + - pinctrl: renesas: r8a7796: Add missing bias for PRESET# pin + - pinctrl: renesas: r8a77990: JTAG pins do not have pull-down capabilities + - clk: meson: g12a: fix gp0 and hifi ranges + - net: ftgmac100: add missing error return code in ftgmac100_probe() + - drm/rockchip: cdn-dp-core: add missing clk_disable_unprepare() on error in + cdn_dp_grf_write() + - drm/rockchip: dsi: move all lane config except LCDC mux to bind() + - ehea: fix error return code in ehea_restart_qps() + - net/sched: act_vlan: Fix modify to allow 0 + - RDMA/core: Sanitize WQ state received from the userspace + - RDMA/rxe: Fix failure during driver load + - drm: qxl: ensure surf.data is ininitialized + - tools/bpftool: Fix error return code in do_batch() + - ath10k: go to path err_unsupported when chip id is not supported + - ath10k: add missing error return code in ath10k_pci_probe() + - wireless: carl9170: fix LEDS build errors & warnings + - ieee802154: hwsim: Fix possible memory leak in hwsim_subscribe_all_others + - wcn36xx: Move hal_buf allocation to devm_kmalloc in probe + - ssb: Fix error return code in ssb_bus_scan() + - brcmfmac: fix setting of station info chains bitmask + - brcmfmac: correctly report average RSSI in station info + - brcmsmac: mac80211_if: Fix a resource leak in an error handling path + - ath10k: Fix an error code in ath10k_add_interface() + - netlabel: Fix memory leak in netlbl_mgmt_add_common + - RDMA/mlx5: Don't add slave port to unaffiliated list + - netfilter: nft_exthdr: check for IPv6 packet before further processing + - netfilter: nft_osf: check for TCP packet before further processing + - netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols + - RDMA/rxe: Fix qp reference counting for atomic ops + - samples/bpf: Fix the error return code of xdp_redirect's main() + - net: ethernet: aeroflex: fix UAF in greth_of_remove + - net: ethernet: ezchip: fix UAF in nps_enet_remove + - net: ethernet: ezchip: fix error handling + - vrf: do not push non-ND strict packets with a source LLA through packet taps + again + - net: sched: add barrier to ensure correct ordering for lockless qdisc + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + - pkt_sched: sch_qfq: fix qfq_change_class() error path + - vxlan: add missing rcu_read_lock() in neigh_reduce() + - net/ipv4: swap flow ports when validating source + - tc-testing: fix list handling + - ieee802154: hwsim: Fix memory leak in hwsim_add_one + - ieee802154: hwsim: avoid possible crash in hwsim_del_edge_nl() + - mac80211: remove iwlwifi specific workaround NDPs of null_response + - net: bcmgenet: Fix attaching to PYH failed on RPi 4B + - ipv6: exthdrs: do not blindly use init_net + - bpf: Do not change gso_size during bpf_skb_change_proto() + - i40e: Fix error handling in i40e_vsi_open + - i40e: Fix autoneg disabling for non-10GBaseT links + - Revert "ibmvnic: remove duplicate napi_schedule call in open function" + - ibmvnic: free tx_pool if tso_pool alloc fails + - ipv6: fix out-of-bound access in ip6_parse_tlv() + - e1000e: Check the PCIm state + - bpfilter: Specify the log level for the kmsg message + - gve: Fix swapped vars when fetching max queues + - Revert "be2net: disable bh with spin_lock in be_process_mcc" + - Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid + - Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event + - clk: actions: Fix UART clock dividers on Owl S500 SoC + - clk: actions: Fix SD clocks factor table on Owl S500 SoC + - clk: actions: Fix bisp_factor_table based clocks on Owl S500 SoC + - clk: si5341: Avoid divide errors due to bogus register contents + - clk: si5341: Update initialization magic + - writeback: fix obtain a reference to a freeing memcg css + - net: lwtunnel: handle MTU calculation in forwading + - net: sched: fix warning in tcindex_alloc_perfect_hash + - RDMA/mlx5: Don't access NULL-cleared mpi pointer + - MIPS: Fix PKMAP with 32-bit MIPS huge page support + - staging: fbtft: Rectify GPIO handling + - rcu: Invoke rcu_spawn_core_kthreads() from rcu_spawn_gp_kthread() + - tty: nozomi: Fix a resource leak in an error handling function + - mwifiex: re-fix for unaligned accesses + - iio: adis_buffer: do not return ints in irq handlers + - iio: adis16400: do not return ints in irq handlers + - iio: accel: bma180: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: bma220: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: hid: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: kxcjk-1013: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio:accel:mxc4005: Drop unnecessary explicit casts in regmap_bulk_read calls + - iio: accel: mxc4005: Fix overread of data and alignment issue. + - iio: accel: stk8312: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: stk8ba50: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads1015: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: vf610: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: gyro: bmg160: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: humidity: am2315: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: srf08: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: pulsed-light: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: as3935: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: hmc5843: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: bmc150: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: isl29125: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3414: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3472: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: cros_ec_sensors: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: potentiostat: lmp91000: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - ASoC: rk3328: fix missing clk_disable_unprepare() on error in + rk3328_platform_probe() + - ASoC: hisilicon: fix missing clk_disable_unprepare() on error in + hi6210_i2s_startup() + - backlight: lm3630a_bl: Put fwnode in error case during ->probe() + - ASoC: rsnd: tidyup loop on rsnd_adg_clk_query() + - Input: hil_kbd - fix error return code in hil_dev_connect() + - mtd: partitions: redboot: seek fis-index-block in the right node + - char: pcmcia: error out if 'num_bytes_read' is greater than 4 in + set_protocol() + - firmware: stratix10-svc: Fix a resource leak in an error handling path + - tty: nozomi: Fix the error handling path of 'nozomi_card_init()' + - leds: lm3532: select regmap I2C API + - leds: lm36274: cosmetic: rename lm36274_data to chip + - leds: lm3692x: Put fwnode in any case during ->probe() + - scsi: FlashPoint: Rename si_flags field + - fsi: core: Fix return of error values on failures + - fsi: scom: Reset the FSI2PIB engine for any error + - fsi: occ: Don't accept response from un-initialized OCC + - fsi/sbefifo: Clean up correct FIFO when receiving reset request from SBE + - fsi/sbefifo: Fix reset timeout + - visorbus: fix error return code in visorchipset_init() + - s390: appldata depends on PROC_SYSCTL + - iommu/dma: Fix IOVA reserve dma ranges + - ASoC: mediatek: mtk-btcvsd: Fix an error handling path in + 'mtk_btcvsd_snd_probe()' + - usb: gadget: f_fs: Fix setting of device and driver data cross-references + - usb: dwc2: Don't reset the core after setting turnaround time + - eeprom: idt_89hpesx: Put fwnode in matching case during ->probe() + - eeprom: idt_89hpesx: Restore printing the unsupported fwnode name + - iio: at91-sama5d2_adc: remove usage of iio_priv_to_dev() helper + - iio: adc: at91-sama5d2: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: hx711: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: mxs-lradc: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads8688: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: magn: rm3100: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - staging: gdm724x: check for buffer overflow in gdm_lte_multi_sdu_pkt() + - staging: gdm724x: check for overflow in gdm_lte_netif_rx() + - staging: rtl8712: remove redundant check in r871xu_drv_init + - staging: rtl8712: fix memory leak in rtl871x_load_fw_cb + - staging: mt7621-dts: fix pci address for PCI memory range + - serial: 8250: Actually allow UPF_MAGIC_MULTIPLIER baud rates + - iio: light: vcnl4035: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: isl29501: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK + - of: Fix truncation of memory sizes on 32-bit platforms + - mtd: rawnand: marvell: add missing clk_disable_unprepare() on error in + marvell_nfc_resume() + - scsi: mpt3sas: Fix error return value in _scsih_expander_add() + - soundwire: stream: Fix test for DP prepare complete + - phy: uniphier-pcie: Fix updating phy parameters + - phy: ti: dm816x: Fix the error handling path in 'dm816x_usb_phy_probe() + - extcon: sm5502: Drop invalid register write in sm5502_reg_data + - extcon: max8997: Add missing modalias string + - ASoC: atmel-i2s: Fix usage of capture and playback at the same time + - configfs: fix memleak in configfs_release_bin_file + - leds: as3645a: Fix error return code in as3645a_parse_node() + - leds: ktd2692: Fix an error handling path + - powerpc: Offline CPU in stop_this_cpu() + - serial: mvebu-uart: do not allow changing baudrate when uartclk is not + available + - serial: mvebu-uart: correctly calculate minimal possible baudrate + - arm64: dts: marvell: armada-37xx: Fix reg for standard variant of UART + - vfio/pci: Handle concurrent vma faults + - mm/huge_memory.c: don't discard hugepage if other processes are mapping it + - mm/z3fold: fix potential memory leak in z3fold_destroy_pool() + - selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random + - perf llvm: Return -ENOMEM when asprintf() fails + - scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() + - mmc: block: Disable CMDQ on the ioctl path + - mmc: vub3000: fix control-request direction + - scsi: core: Retry I/O for Notify (Enable Spinup) Required error + - iommu/dma: Fix compile warning in 32-bit builds + - Linux 5.4.132 + + * Keyboard not working (LP: #1909814) // Focal update: v5.4.132 upstream + stable release (LP: #1938199) + - ACPI: resources: Add checks for ACPI IRQ override + + * Focal update: v5.4.131 upstream stable release (LP: #1936245) + - KVM: SVM: Periodically schedule when unregistering regions on destroy + - s390/stack: fix possible register corruption with stack switch helper + - KVM: SVM: Call SEV Guest Decommission if ASID binding fails + - xen/events: reset active flag for lateeoi events later + - Linux 5.4.131 + + * Focal update: v5.4.130 upstream stable release (LP: #1936244) + - scsi: sr: Return appropriate error code when disk is ejected + - drm/nouveau: fix dma_address check for CPU/GPU sync + - gpio: AMD8111 and TQMX86 require HAS_IOPORT_MAP + - RDMA/mlx5: Block FDB rules when not in switchdev mode + - Linux 5.4.130 + + * Focal update: v5.4.129 upstream stable release (LP: #1936242) + - module: limit enabling module.sig_enforce + - drm/nouveau: wait for moving fence after pinning v2 + - drm/radeon: wait for moving fence after pinning + - ARM: 9081/1: fix gcc-10 thumb2-kernel regression + - mmc: meson-gx: use memcpy_to/fromio for dram-access-quirk + - kbuild: add CONFIG_LD_IS_LLD + - arm64: link with -z norelro for LLD or aarch64-elf + - MIPS: generic: Update node names to avoid unit addresses + - spi: spi-nxp-fspi: move the register operation after the clock enable + - Revert "PCI: PM: Do not read power state in pci_enable_device_flags()" + - dmaengine: zynqmp_dma: Fix PM reference leak in + zynqmp_dma_alloc_chan_resourc() + - mac80211: remove warning in ieee80211_get_sband() + - mac80211_hwsim: drop pending frames on stop + - cfg80211: call cfg80211_leave_ocb when switching away from OCB + - dmaengine: rcar-dmac: Fix PM reference leak in rcar_dmac_probe() + - dmaengine: mediatek: free the proper desc in desc_free handler + - dmaengine: mediatek: do not issue a new desc if one is still current + - dmaengine: mediatek: use GFP_NOWAIT instead of GFP_ATOMIC in prep_dma + - net: ipv4: Remove unneed BUG() function + - mac80211: drop multicast fragments + - net: ethtool: clear heap allocations for ethtool function + - ping: Check return value of function 'ping_queue_rcv_skb' + - inet: annotate date races around sk->sk_txhash + - net: phy: dp83867: perform soft reset and retain established link + - net: caif: fix memory leak in ldisc_open + - net/packet: annotate accesses to po->bind + - net/packet: annotate accesses to po->ifindex + - r8152: Avoid memcpy() over-reading of ETH_SS_STATS + - sh_eth: Avoid memcpy() over-reading of ETH_SS_STATS + - r8169: Avoid memcpy() over-reading of ETH_SS_STATS + - KVM: selftests: Fix kvm_check_cap() assertion + - net: qed: Fix memcpy() overflow of qed_dcbx_params() + - recordmcount: Correct st_shndx handling + - PCI: Add AMD RS690 quirk to enable 64-bit DMA + - net: ll_temac: Add memory-barriers for TX BD access + - net: ll_temac: Avoid ndo_start_xmit returning NETDEV_TX_BUSY + - pinctrl: stm32: fix the reported number of GPIO lines per bank + - nilfs2: fix memory leak in nilfs_sysfs_delete_device_group + - KVM: do not allow mapping valid but non-reference-counted pages + - i2c: robotfuzz-osif: fix control-request directions + - kthread_worker: split code for canceling the delayed work timer + - kthread: prevent deadlock when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - mm: add VM_WARN_ON_ONCE_PAGE() macro + - mm/rmap: remove unneeded semicolon in page_not_mapped() + - mm/rmap: use page_not_mapped in try_to_unmap() + - mm, thp: use head page in __migration_entry_wait() + - mm/thp: fix __split_huge_pmd_locked() on shmem migration entry + - mm/thp: make is_huge_zero_pmd() safe and quicker + - mm/thp: try_to_unmap() use TTU_SYNC for safe splitting + - mm/thp: fix vma_address() if virtual address below file offset + - mm/thp: fix page_address_in_vma() on file THP tails + - mm/thp: unmap_mapping_page() to fix THP truncate_cleanup_page() + - mm: thp: replace DEBUG_VM BUG with VM_WARN when unmap fails for split + - mm: page_vma_mapped_walk(): use page for pvmw->page + - mm: page_vma_mapped_walk(): settle PageHuge on entry + - mm: page_vma_mapped_walk(): use pmde for *pvmw->pmd + - mm: page_vma_mapped_walk(): prettify PVMW_MIGRATION block + - mm: page_vma_mapped_walk(): crossing page table boundary + - mm: page_vma_mapped_walk(): add a level of indentation + - mm: page_vma_mapped_walk(): use goto instead of while (1) + - mm: page_vma_mapped_walk(): get vma_address_end() earlier + - mm/thp: fix page_vma_mapped_walk() if THP mapped by ptes + - mm/thp: another PVMW_SYNC fix in page_vma_mapped_walk() + - mm, futex: fix shared futex pgoff on shmem huge page + - [Config] enable CONFIG_SYSTEM_REVOCATION_LIST + - certs: Add EFI_CERT_X509_GUID support for dbx entries + - certs: Move load_system_certificate_list to a common function + - Linux 5.4.129 + + * Patch To Fix Bug in the Linux Block Layer Responsible For Merging BIOs + (LP: #1931497) + - block: return the correct bvec when checking for gaps + + -- Stefan Bader Fri, 13 Aug 2021 11:58:48 +0200 + +linux (5.4.0-81.91) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * large_dir in ext4 broken (LP: #1933074) + - SAUCE: ext4: fix directory index node split corruption + + * Some test in kselftest/net on focal source tree were not tested at all + (LP: #1934282) + - selftests/net: add missing tests to Makefile + + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + + * icmp_redirect.sh in net from ubuntu_kernel_selftests failed on F-OEM-5.6 / + F-OEM-5.10 / F-OEM-5.13 / F / G / H (LP: #1880645) + - selftests: icmp_redirect: support expected failures + + * Focal update: v5.4.128 upstream stable release (LP: #1934179) + - dmaengine: ALTERA_MSGDMA depends on HAS_IOMEM + - dmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEM + - dmaengine: stedma40: add missing iounmap() on error in d40_probe() + - afs: Fix an IS_ERR() vs NULL check + - mm/memory-failure: make sure wait for page writeback in memory_failure + - kvm: LAPIC: Restore guard to prevent illegal APIC register access + - batman-adv: Avoid WARN_ON timing related checks + - net: ipv4: fix memory leak in netlbl_cipsov4_add_std + - vrf: fix maximum MTU + - net: rds: fix memory leak in rds_recvmsg + - net: lantiq: disable interrupt before sheduling NAPI + - udp: fix race between close() and udp_abort() + - rtnetlink: Fix regression in bridge VLAN configuration + - net/sched: act_ct: handle DNAT tuple collision + - net/mlx5e: Remove dependency in IPsec initialization flows + - net/mlx5e: Fix page reclaim for dead peer hairpin + - net/mlx5: Consider RoCE cap before init RDMA resources + - net/mlx5e: allow TSO on VXLAN over VLAN topologies + - net/mlx5e: Block offload of outer header csum for UDP tunnels + - netfilter: synproxy: Fix out of bounds when parsing TCP options + - sch_cake: Fix out of bounds when parsing TCP options and header + - alx: Fix an error handling path in 'alx_probe()' + - net: stmmac: dwmac1000: Fix extended MAC address registers definition + - net: make get_net_ns return error if NET_NS is disabled + - qlcnic: Fix an error handling path in 'qlcnic_probe()' + - netxen_nic: Fix an error handling path in 'netxen_nic_probe()' + - net: qrtr: fix OOB Read in qrtr_endpoint_post + - ptp: improve max_adj check against unreasonable values + - net: cdc_ncm: switch to eth%d interface naming + - lantiq: net: fix duplicated skb in rx descriptor ring + - net: usb: fix possible use-after-free in smsc75xx_bind + - net: fec_ptp: fix issue caused by refactor the fec_devtype + - net: ipv4: fix memory leak in ip_mc_add1_src + - net/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sock + - be2net: Fix an error handling path in 'be_probe()' + - net: hamradio: fix memory leak in mkiss_close + - net: cdc_eem: fix tx fixup skb leak + - cxgb4: fix wrong shift. + - bnxt_en: Rediscover PHY capabilities after firmware reset + - bnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error path + - icmp: don't send out ICMP messages with a source address of 0.0.0.0 + - net: ethernet: fix potential use-after-free in ec_bhf_remove + - regulator: bd70528: Fix off-by-one for buck123 .n_voltages setting + - ASoC: rt5659: Fix the lost powers for the HDA header + - spi: stm32-qspi: Always wait BUSY bit to be cleared in stm32_qspi_wait_cmd() + - pinctrl: ralink: rt2880: avoid to error in calls is pin is already enabled + - radeon: use memcpy_to/fromio for UVD fw upload + - hwmon: (scpi-hwmon) shows the negative temperature properly + - can: bcm: fix infoleak in struct bcm_msg_head + - can: bcm/raw/isotp: use per module netdevice notifier + - can: j1939: fix Use-after-Free, hold skb ref while in use + - can: mcba_usb: fix memory leak in mcba_usb + - usb: core: hub: Disable autosuspend for Cypress CY7C65632 + - tracing: Do not stop recording cmdlines when tracing is off + - tracing: Do not stop recording comms if the trace file is being read + - tracing: Do no increment trace_clock_global() by one + - PCI: Mark TI C667X to avoid bus reset + - PCI: Mark some NVIDIA GPUs to avoid bus reset + - PCI: aardvark: Don't rely on jiffies while holding spinlock + - PCI: aardvark: Fix kernel panic during PIO transfer + - PCI: Add ACS quirk for Broadcom BCM57414 NIC + - PCI: Work around Huawei Intelligent NIC VF FLR erratum + - KVM: x86: Immediately reset the MMU context when the SMM flag is cleared + - ARCv2: save ABI registers across signal handling + - x86/process: Check PF_KTHREAD and not current->mm for kernel threads + - x86/pkru: Write hardware init value to PKRU when xstate is init + - x86/fpu: Reset state for all signal restore failures + - dmaengine: pl330: fix wrong usage of spinlock flags in dma_cyclc + - cfg80211: make certificate generation more robust + - cfg80211: avoid double free of PMSR request + - net: ll_temac: Make sure to free skb when it is completely used + - net: ll_temac: Fix TX BD buffer overwrite + - net: bridge: fix vlan tunnel dst null pointer dereference + - net: bridge: fix vlan tunnel dst refcnt when egressing + - mm/slub: clarify verification reporting + - mm/slub: fix redzoning for small allocations + - mm/slub.c: include swab.h + - net: stmmac: disable clocks in stmmac_remove_config_dt() + - net: fec_ptp: add clock rate zero check + - tools headers UAPI: Sync linux/in.h copy with the kernel sources + - KVM: arm/arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST read + - ARM: OMAP: replace setup_irq() by request_irq() + - clocksource/drivers/timer-ti-dm: Add clockevent and clocksource support + - clocksource/drivers/timer-ti-dm: Prepare to handle dra7 timer wrap issue + - clocksource/drivers/timer-ti-dm: Handle dra7 timer wrap errata i940 + - usb: dwc3: debugfs: Add and remove endpoint dirs dynamically + - usb: dwc3: core: fix kernel panic when do reboot + - Linux 5.4.128 + + * linux-azure CIFS DFS oops (LP: #1935833) + - cifs: get rid of unused parameter in reconn_setup_dfs_targets() + - cifs: handle empty list of targets in cifs_reconnect() + + * pmtu.sh from net in ubuntu_kernel_selftests failed with no error message + (LP: #1887661) + - selftests: pmtu.sh: improve the test result processing + + * cifs: On cifs_reconnect, resolve the hostname again (LP: #1929831) + - cifs: rename reconn_inval_dfs_target() + - cifs: Simplify reconnect code when dfs upcall is enabled + - cifs: Avoid error pointer dereference + - cifs: On cifs_reconnect, resolve the hostname again. + + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - (upstream) media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + + * Focal update: v5.4.127 upstream stable release (LP: #1933851) + - net: ieee802154: fix null deref in parse dev addr + - HID: quirks: Set INCREMENT_USAGE_ON_DUPLICATE for Saitek X65 + - HID: hid-input: add mapping for emoji picker key + - HID: hid-sensor-hub: Return error for hid_set_field() failure + - HID: quirks: Add quirk for Lenovo optical mouse + - HID: multitouch: set Stylus suffix for Stylus-application devices, too + - HID: Add BUS_VIRTUAL to hid_connect logging + - HID: usbhid: fix info leak in hid_submit_ctrl + - drm/tegra: sor: Do not leak runtime PM reference + - ARM: OMAP2+: Fix build warning when mmc_omap is not built + - gfs2: Prevent direct-I/O write fallback errors from getting lost + - HID: gt683r: add missing MODULE_DEVICE_TABLE + - riscv: Use -mno-relax when using lld linker + - gfs2: Fix use-after-free in gfs2_glock_shrink_scan + - scsi: target: core: Fix warning on realtime kernels + - ethernet: myri10ge: Fix missing error code in myri10ge_probe() + - scsi: qedf: Do not put host in qedf_vport_create() unconditionally + - scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-V + - nvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues() + - nvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() + fails + - nvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue() + - net: ipconfig: Don't override command-line hostnames or domains + - drm/amd/display: Allow bandwidth validation for 0 streams. + - rtnetlink: Fix missing error code in rtnl_bridge_notify() + - net/x25: Return the correct errno code + - net: Return the correct errno code + - fib: Return the correct errno code + - Linux 5.4.127 + + * Focal update: v5.4.126 upstream stable release (LP: #1933369) + - proc: Check /proc/$pid/attr/ writes against file opener + - proc: Track /proc/$pid/attr/ opener mm_struct + - ASoC: max98088: fix ni clock divider calculation + - spi: Fix spi device unregister flow + - net/nfc/rawsock.c: fix a permission check bug + - usb: cdns3: Fix runtime PM imbalance on error + - ASoC: Intel: bytcr_rt5640: Add quirk for the Glavey TM800A550L tablet + - ASoC: Intel: bytcr_rt5640: Add quirk for the Lenovo Miix 3-830 tablet + - vfio-ccw: Serialize FSM IDLE state with I/O completion + - ASoC: sti-sas: add missing MODULE_DEVICE_TABLE + - spi: sprd: Add missing MODULE_DEVICE_TABLE + - isdn: mISDN: netjet: Fix crash in nj_probe: + - bonding: init notify_work earlier to avoid uninitialized use + - netlink: disable IRQs for netlink_lock_table() + - net: mdiobus: get rid of a BUG_ON() + - cgroup: disable controllers at parse time + - wq: handle VM suspension in stall detection + - net/qla3xxx: fix schedule while atomic in ql_sem_spinlock + - RDS tcp loopback connection can hang + - scsi: bnx2fc: Return failure if io_req is already in ABTS processing + - scsi: vmw_pvscsi: Set correct residual data length + - scsi: hisi_sas: Drop free_irq() of devm_request_irq() allocated irq + - scsi: target: qla2xxx: Wait for stop_phase1 at WWN removal + - net: macb: ensure the device is available before accessing GEMGXL control + registers + - net: appletalk: cops: Fix data race in cops_probe1 + - net: dsa: microchip: enable phy errata workaround on 9567 + - nvme-fabrics: decode host pathing error for connect + - MIPS: Fix kernel hang under FUNCTION_GRAPH_TRACER and PREEMPT_TRACER + - dm verity: fix require_signatures module_param permissions + - bnx2x: Fix missing error code in bnx2x_iov_init_one() + - nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P2041 i2c controllers + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P1010 i2c controllers + - spi: Don't have controller clean up spi device before driver unbind + - spi: Cleanup on failure of initial setup + - i2c: mpc: Make use of i2c_recover_bus() + - i2c: mpc: implement erratum A-004447 workaround + - x86/boot: Add .text.* to setup.ld + - spi: bcm2835: Fix out-of-bounds access with more than 4 slaves + - drm: Fix use-after-free read in drm_getunique() + - drm: Lock pointer access in drm_master_release() + - kvm: avoid speculation-based attacks from out-of-range memslot accesses + - staging: rtl8723bs: Fix uninitialized variables + - btrfs: return value from btrfs_mark_extent_written() in case of error + - btrfs: promote debugging asserts to full-fledged checks in validate_super + - cgroup1: don't allow '\n' in renaming + - USB: f_ncm: ncm_bitrate (speed) is unsigned + - usb: f_ncm: only first packet of aggregate needs to start timer + - usb: pd: Set PD_T_SINK_WAIT_CAP to 310ms + - usb: dwc3: ep0: fix NULL pointer exception + - usb: musb: fix MUSB_QUIRK_B_DISCONNECT_99 handling + - usb: typec: wcove: Use LE to CPU conversion when accessing msg->header + - usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path + - usb: gadget: f_fs: Ensure io_completion_wq is idle during unbind + - USB: serial: ftdi_sio: add NovaTech OrionMX product ID + - USB: serial: omninet: add device id for Zyxel Omni 56K Plus + - USB: serial: quatech2: fix control-request directions + - USB: serial: cp210x: fix alternate function for CP2102N QFN20 + - usb: gadget: eem: fix wrong eem header operation + - usb: fix various gadgets null ptr deref on 10gbps cabling. + - usb: fix various gadget panics on 10gbps cabling + - regulator: core: resolve supply for boot-on/always-on regulators + - regulator: max77620: Use device_set_of_node_from_dev() + - usb: typec: mux: Fix copy-paste mistake in typec_mux_match + - RDMA/ipoib: Fix warning caused by destroying non-initial netns + - RDMA/mlx4: Do not map the core_clock page to user space unless enabled + - vmlinux.lds.h: Avoid orphan section with !SMP + - perf: Fix data race between pin_count increment/decrement + - sched/fair: Make sure to update tg contrib for blocked load + - KVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint message + - IB/mlx5: Fix initializing CQ fragments buffer + - NFS: Fix a potential NULL dereference in nfs_get_client() + - NFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode() + - perf session: Correct buffer copying when peeking events + - kvm: fix previous commit for 32-bit builds + - NFS: Fix use-after-free in nfs4_init_client() + - NFSv4: Fix second deadlock in nfs4_evict_inode() + - NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error. + - scsi: core: Fix error handling of scsi_host_alloc() + - scsi: core: Fix failure handling of scsi_add_host_with_dma() + - scsi: core: Put .shost_dev in failure path if host state changes to RUNNING + - scsi: core: Only put parent device if host state differs from SHOST_CREATED + - ftrace: Do not blindly read the ip address in ftrace_bug() + - tracing: Correct the length check which causes memory corruption + - proc: only require mm_struct for writing + - Linux 5.4.126 + + * Focal update: v5.4.125 upstream stable release (LP: #1932957) + - btrfs: tree-checker: do not error out if extent ref hash doesn't match + - net: usb: cdc_ncm: don't spew notifications + - ALSA: usb: update old-style static const declaration + - nl80211: validate key indexes for cfg80211_registered_device + - hwmon: (dell-smm-hwmon) Fix index values + - netfilter: conntrack: unregister ipv4 sockopts on error unwind + - efi: Allow EFI_MEMORY_XP and EFI_MEMORY_RO both to be cleared + - efi: cper: fix snprintf() use in cper_dimm_err_location() + - vfio/pci: Fix error return code in vfio_ecap_init() + - vfio/pci: zap_vma_ptes() needs MMU + - samples: vfio-mdev: fix error handing in mdpy_fb_probe() + - vfio/platform: fix module_put call in error flow + - ipvs: ignore IP_VS_SVC_F_HASHED flag when adding service + - HID: pidff: fix error return code in hid_pidff_init() + - HID: i2c-hid: fix format string mismatch + - net/sched: act_ct: Fix ct template allocation for zone 0 + - ACPICA: Clean up context mutex during object deletion + - netfilter: nft_ct: skip expectations for confirmed conntrack + - netfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatches + - ieee802154: fix error return code in ieee802154_add_iface() + - ieee802154: fix error return code in ieee802154_llsec_getparams() + - ixgbevf: add correct exception tracing for XDP + - ipv6: Fix KASAN: slab-out-of-bounds Read in fib6_nh_flush_exceptions + - ice: write register with correct offset + - ice: Fix VFR issues for AVF drivers that expect ATQLEN cleared + - ice: Allow all LLDP packets from PF to Tx + - i2c: qcom-geni: Add shutdown callback for i2c + - i40e: optimize for XDP_REDIRECT in xsk path + - i40e: add correct exception tracing for XDP + - arm64: dts: ls1028a: fix memory node + - arm64: dts: zii-ultra: fix 12V_MAIN voltage + - ARM: dts: imx7d-meerkat96: Fix the 'tuning-step' property + - ARM: dts: imx7d-pico: Fix the 'tuning-step' property + - ARM: dts: imx: emcon-avari: Fix nxp,pca8574 #gpio-cells + - bus: ti-sysc: Fix flakey idling of uarts and stop using swsup_sidle_act + - tipc: add extack messages for bearer/media failure + - tipc: fix unique bearer names sanity check + - Bluetooth: fix the erroneous flush_work() order + - Bluetooth: use correct lock to prevent UAF of hdev object + - net: caif: added cfserl_release function + - net: caif: add proper error handling + - net: caif: fix memory leak in caif_device_notify + - net: caif: fix memory leak in cfusbl_device_notify + - HID: i2c-hid: Skip ELAN power-on command after reset + - HID: magicmouse: fix NULL-deref on disconnect + - HID: multitouch: require Finger field to mark Win8 reports as MT + - ALSA: timer: Fix master timer notification + - ALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xx + - ARM: dts: imx6dl-yapp4: Fix RGMII connection to QCA8334 switch + - ARM: dts: imx6q-dhcom: Add PU,VDD1P1,VDD2P5 regulators + - ext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failed + - usb: dwc2: Fix build in periphal-only mode + - pid: take a reference when initializing `cad_pid` + - ocfs2: fix data corruption by fallocate + - nfc: fix NULL ptr dereference in llcp_sock_getname() after failed connect + - drm/amdgpu: Don't query CE and UE errors + - drm/amdgpu: make sure we unpin the UVD BO + - x86/apic: Mark _all_ legacy interrupts when IO/APIC is missing + - btrfs: mark ordered extent and inode with error if we fail to finish + - btrfs: fix error handling in btrfs_del_csums + - btrfs: return errors from btrfs_del_csums in cleanup_ref_head + - btrfs: fixup error handling in fixup_inode_link_counts + - mm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPY + - bnxt_en: Remove the setting of dev_port. + - mm: add thp_order + - XArray: add xa_get_order + - XArray: add xas_split + - mm/filemap: fix storing to a THP shadow entry + - btrfs: fix unmountable seed device after fstrim + - KVM: SVM: Truncate GPR value for DR and CR accesses in !64-bit mode + - KVM: arm64: Fix debug register indexing + - lib/lz4: explicitly support in-place decompression + - xen-pciback: redo VF placement in the virtual topology + - i2c: qcom-geni: Suspend and resume the bus during SYSTEM_SLEEP_PM ops + - neighbour: allow NUD_NOARP entries to be forced GCed + - Linux 5.4.125 + + -- Kleber Sacilotto de Souza Thu, 15 Jul 2021 20:01:02 +0200 + linux (5.4.0-80.90) focal; urgency=medium * CVE-2021-33909 diff -u linux-azure-5.4.0/debian.master/config/amd64/config.common.amd64 linux-azure-5.4.0/debian.master/config/amd64/config.common.amd64 --- linux-azure-5.4.0/debian.master/config/amd64/config.common.amd64 +++ linux-azure-5.4.0/debian.master/config/amd64/config.common.amd64 @@ -473,7 +473,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=60 CONFIG_RC_CORE=m CONFIG_REED_SOLOMON=m -# CONFIG_REFCOUNT_FULL is not set CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_TWL4030=m diff -u linux-azure-5.4.0/debian.master/config/annotations linux-azure-5.4.0/debian.master/config/annotations --- linux-azure-5.4.0/debian.master/config/annotations +++ linux-azure-5.4.0/debian.master/config/annotations @@ -364,6 +364,7 @@ CONFIG_SYSTEM_TRUSTED_KEYS policy<{'amd64': '"debian/canonical-certs.pem"', 'arm64': '"debian/canonical-certs.pem"', 'armhf': '"debian/canonical-certs.pem"', 'i386': '"debian/canonical-certs.pem"', 'ppc64el': '"debian/canonical-certs.pem"', 's390x': '"debian/canonical-certs.pem"'}> CONFIG_SYSTEM_EXTRA_CERTIFICATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'i386': '4096', 'ppc64el': '4096', 's390x': '4096'}> +CONFIG_SYSTEM_REVOCATION_KEYS policy<{'amd64': '"debian/canonical-revoked-certs.pem"', 'arm64': '"debian/canonical-revoked-certs.pem"', 'armhf': '"debian/canonical-revoked-certs.pem"', 'i386': '"debian/canonical-revoked-certs.pem"', 'ppc64el': '"debian/canonical-revoked-certs.pem"', 's390x': '"debian/canonical-revoked-certs.pem"'}> CONFIG_SECONDARY_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> # Menu: Cryptographic API >> Hardware crypto devices @@ -1224,7 +1225,7 @@ CONFIG_DW_AXI_DMAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', }> CONFIG_FSL_EDMA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', }> CONFIG_FSL_QDMA policy<{'arm64': 'm', 'armhf': 'm'}> -CONFIG_HISI_DMA policy<{'arm64': 'm'}> +CONFIG_HISI_DMA policy<{'arm64': 'n'}> CONFIG_IMX_DMA policy<{'arm64': 'm', 'armhf-generic': 'm'}> CONFIG_IMX_SDMA policy<{'arm64': 'm', 'armhf-generic': 'm'}> CONFIG_INTEL_IDMA64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'ppc64el': 'm', }> @@ -1505,7 +1506,7 @@ CONFIG_GPIO_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', }> CONFIG_GPIO_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'ppc64el': 'm', }> CONFIG_GPIO_TPS68470 policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> -CONFIG_GPIO_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'i386': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'ppc64el': 'm', }> CONFIG_GPIO_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'i386': 'm', 'ppc64el': 'm', }> CONFIG_GPIO_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'ppc64el': 'm', }> @@ -6308,11 +6309,6 @@ CONFIG_INTERCONNECT_QCOM_QCS404 policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_INTERCONNECT_QCOM_SDM845 policy<{'arm64': 'm'}> -# Menu: Device Drivers >> Open-Channel SSD target support -CONFIG_NVM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_NVM_PBLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'i386': 'm', 'ppc64el': 'm', 's390x': 'm'}> -CONFIG_NVM_PBLK_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> - # Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support CONFIG_PCCARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'i386': 'm', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_CARDBUS policy<{'amd64': 'y', 'arm64': 'y', 'i386': 'y'}> @@ -6574,7 +6570,7 @@ CONFIG_ARM_SMMU_V3_PMU policy<{'arm64': 'm'}> CONFIG_ARM_DSU_PMU policy<{'arm64': 'm'}> CONFIG_FSL_IMX8_DDR_PMU policy<{'arm64': 'm', 'armhf-generic': 'm'}> -CONFIG_HISI_PMU policy<{'arm64': 'y'}> +CONFIG_HISI_PMU policy<{'arm64': 'm'}> CONFIG_QCOM_L2_PMU policy<{'arm64': 'y'}> CONFIG_QCOM_L3_PMU policy<{'arm64': 'y'}> CONFIG_THUNDERX2_PMU policy<{'arm64': 'm'}> @@ -10263,7 +10259,6 @@ CONFIG_VMAP_STACK policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> CONFIG_STRICT_KERNEL_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'y'}> CONFIG_STRICT_MODULE_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 's390x': 'y'}> -CONFIG_REFCOUNT_FULL policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_LOCK_EVENT_COUNTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> # CONFIG_JUMP_LABEL flag @@ -10315,6 +10310,7 @@ CONFIG_LD_DEAD_CODE_DATA_ELIMINATION policy<{'ppc64el': 'n'}> CONFIG_BPF_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_BPF_JIT_ALWAYS_ON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_UNPRIV_DEFAULT_OFF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_USERFAULTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_COMPAT_BRK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> @@ -10593,12 +10589,11 @@ CONFIG_DEBUG_INFO_REDUCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_DEBUG_INFO_SPLIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_DEBUG_INFO_DWARF4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_DEBUG_INFO_BTF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_BTF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_GDB_SCRIPTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'y', 's390x': 'y'}> # CONFIG_DEBUG_INFO mark note CONFIG_DEBUG_INFO_SPLIT note -CONFIG_DEBUG_INFO_BTF flag note # Menu: Kernel hacking >> CoreSight Tracing Support CONFIG_CORESIGHT policy<{'arm64': 'n', 'armhf': 'n'}> @@ -12921,7 +12916,6 @@ CONFIG_IMA_DEFAULT_HASH_SHA256 note # Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default template -CONFIG_IMA_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_NG_TEMPLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'i386': 'y', 'ppc64el': 'n', 's390x': 'y'}> CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'i386': 'n', 'ppc64el': 'y', 's390x': 'n'}> # diff -u linux-azure-5.4.0/debian.master/config/arm64/config.common.arm64 linux-azure-5.4.0/debian.master/config/arm64/config.common.arm64 --- linux-azure-5.4.0/debian.master/config/arm64/config.common.arm64 +++ linux-azure-5.4.0/debian.master/config/arm64/config.common.arm64 @@ -489,7 +489,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=60 CONFIG_RC_CORE=m CONFIG_REED_SOLOMON=m -CONFIG_REFCOUNT_FULL=y CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_TPS65217=m diff -u linux-azure-5.4.0/debian.master/config/armhf/config.common.armhf linux-azure-5.4.0/debian.master/config/armhf/config.common.armhf --- linux-azure-5.4.0/debian.master/config/armhf/config.common.armhf +++ linux-azure-5.4.0/debian.master/config/armhf/config.common.armhf @@ -467,7 +467,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=60 CONFIG_RC_CORE=m CONFIG_REED_SOLOMON=y -CONFIG_REFCOUNT_FULL=y CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=y CONFIG_REGULATOR_TPS65217=y diff -u linux-azure-5.4.0/debian.master/config/config.common.ubuntu linux-azure-5.4.0/debian.master/config/config.common.ubuntu --- linux-azure-5.4.0/debian.master/config/config.common.ubuntu +++ linux-azure-5.4.0/debian.master/config/config.common.ubuntu @@ -355,7 +355,6 @@ CONFIG_ARCH_HAS_FORTIFY_SOURCE=y CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y -CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y CONFIG_ARCH_HAS_HUGEPD=y CONFIG_ARCH_HAS_KCOV=y CONFIG_ARCH_HAS_KEEPINITRD=y @@ -369,7 +368,6 @@ CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_PTE_SPECIAL=y -CONFIG_ARCH_HAS_REFCOUNT=y CONFIG_ARCH_HAS_RELR=y CONFIG_ARCH_HAS_RESET_CONTROLLER=y CONFIG_ARCH_HAS_SCALED_CPUTIME=y @@ -596,6 +594,7 @@ CONFIG_ARM64_ERRATUM_1418040=y CONFIG_ARM64_ERRATUM_1463225=y CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_1742098=y CONFIG_ARM64_ERRATUM_819472=y CONFIG_ARM64_ERRATUM_824069=y CONFIG_ARM64_ERRATUM_826319=y @@ -1098,6 +1097,7 @@ CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DRBD=m CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set CONFIG_BLK_DEV_INITRD=y CONFIG_BLK_DEV_INTEGRITY=y CONFIG_BLK_DEV_IO_TRACE=y @@ -1179,6 +1179,7 @@ CONFIG_BPF_KPROBE_OVERRIDE=y CONFIG_BPF_STREAM_PARSER=y CONFIG_BPF_SYSCALL=y +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y CONFIG_BPQETHER=m CONFIG_BQL=y CONFIG_BRANCH_PROFILE_NONE=y @@ -2319,7 +2320,7 @@ # CONFIG_DEBUG_HIGHMEM is not set # CONFIG_DEBUG_HOTPLUG_CPU0 is not set CONFIG_DEBUG_INFO=y -# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_DEBUG_INFO_BTF=y CONFIG_DEBUG_INFO_DWARF4=y # CONFIG_DEBUG_INFO_REDUCED is not set # CONFIG_DEBUG_INFO_SPLIT is not set @@ -3470,7 +3471,7 @@ CONFIG_GAMEPORT_NS558=m CONFIG_GARP=m CONFIG_GART_IOMMU=y -CONFIG_GCC_VERSION=90300 +CONFIG_GCC_VERSION=90400 # CONFIG_GCOV_KERNEL is not set CONFIG_GDB_SCRIPTS=y CONFIG_GEMINI_ETHERNET=m @@ -3692,6 +3693,7 @@ CONFIG_HARDENED_USERCOPY=y CONFIG_HARDENED_USERCOPY_FALLBACK=y # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_HARDEN_BRANCH_HISTORY=y CONFIG_HARDEN_BRANCH_PREDICTOR=y CONFIG_HARDEN_EL2_VECTORS=y CONFIG_HARDIRQS_SW_RESEND=y @@ -3998,9 +4000,9 @@ CONFIG_HISILICON_ERRATUM_161600802=y CONFIG_HISILICON_IRQ_MBIGEN=y CONFIG_HISILICON_LPC=y -CONFIG_HISI_DMA=m +# CONFIG_HISI_DMA is not set CONFIG_HISI_FEMAC=m -CONFIG_HISI_PMU=y +CONFIG_HISI_PMU=m CONFIG_HISI_THERMAL=m CONFIG_HIST_TRIGGERS=y CONFIG_HIX5HD2_GMAC=m @@ -4323,7 +4325,6 @@ # CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY is not set CONFIG_IMA_LSM_RULES=y CONFIG_IMA_MEASURE_PCR_IDX=10 -# CONFIG_IMA_TEMPLATE is not set CONFIG_IMA_TRUSTED_KEYRING=y # CONFIG_IMA_WRITE_POLICY is not set CONFIG_IMA_X509_PATH="/etc/keys/x509_ima.der" @@ -5671,6 +5672,7 @@ CONFIG_MISDN_NETJET=m CONFIG_MISDN_SPEEDFAX=m CONFIG_MISDN_W6692=m +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y CONFIG_MIXCOMWD=m # CONFIG_MK6 is not set # CONFIG_MK7 is not set @@ -6705,7 +6707,6 @@ CONFIG_NVDIMM_PFN=y CONFIG_NVEC_PAZ00=m CONFIG_NVEC_POWER=m -CONFIG_NVM=y CONFIG_NVMEM_BCM_OCOTP=m CONFIG_NVMEM_IMX_IIM=m CONFIG_NVMEM_IMX_OCOTP=m @@ -6728,8 +6729,6 @@ CONFIG_NVME_TARGET_RDMA=m CONFIG_NVME_TARGET_TCP=m CONFIG_NVME_TCP=m -CONFIG_NVM_PBLK=m -# CONFIG_NVM_PBLK_DEBUG is not set CONFIG_NV_TCO=m CONFIG_NXP_TJA11XX_PHY=m CONFIG_N_HDLC=m @@ -9925,6 +9924,8 @@ CONFIG_SYSTEM_DATA_VERIFICATION=y CONFIG_SYSTEM_EXTRA_CERTIFICATE=y CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem" +CONFIG_SYSTEM_REVOCATION_LIST=y CONFIG_SYSTEM_TRUSTED_KEYRING=y CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem" CONFIG_SYSVIPC=y diff -u linux-azure-5.4.0/debian.master/config/i386/config.common.i386 linux-azure-5.4.0/debian.master/config/i386/config.common.i386 --- linux-azure-5.4.0/debian.master/config/i386/config.common.i386 +++ linux-azure-5.4.0/debian.master/config/i386/config.common.i386 @@ -466,7 +466,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=60 CONFIG_RC_CORE=m CONFIG_REED_SOLOMON=m -# CONFIG_REFCOUNT_FULL is not set CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_TWL4030=m diff -u linux-azure-5.4.0/debian.master/config/ppc64el/config.common.ppc64el linux-azure-5.4.0/debian.master/config/ppc64el/config.common.ppc64el --- linux-azure-5.4.0/debian.master/config/ppc64el/config.common.ppc64el +++ linux-azure-5.4.0/debian.master/config/ppc64el/config.common.ppc64el @@ -471,7 +471,6 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=21 CONFIG_RC_CORE=m CONFIG_REED_SOLOMON=m -# CONFIG_REFCOUNT_FULL is not set CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_TWL4030=m diff -u linux-azure-5.4.0/debian.master/config/s390x/config.common.s390x linux-azure-5.4.0/debian.master/config/s390x/config.common.s390x --- linux-azure-5.4.0/debian.master/config/s390x/config.common.s390x +++ linux-azure-5.4.0/debian.master/config/s390x/config.common.s390x @@ -434,7 +434,6 @@ # CONFIG_RAW_DRIVER is not set CONFIG_RCU_CPU_STALL_TIMEOUT=21 # CONFIG_RC_CORE is not set -# CONFIG_REFCOUNT_FULL is not set # CONFIG_REGULATOR is not set # CONFIG_REISERFS_FS is not set # CONFIG_REMOTEPROC is not set diff -u linux-azure-5.4.0/debian.master/control.d/generic.inclusion-list linux-azure-5.4.0/debian.master/control.d/generic.inclusion-list --- linux-azure-5.4.0/debian.master/control.d/generic.inclusion-list +++ linux-azure-5.4.0/debian.master/control.d/generic.inclusion-list @@ -38,9 +38,15 @@ drivers/firmware/efi/* drivers/firmware/iscsi_ibft.ko drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/bochs/bochs-drm.ko +drivers/gpu/drm/cirrus/cirrus.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/gpu/drm/virtio/virtio-gpu.ko +drivers/gpu/drm/vmwgfx/vmwgfx.ko +drivers/gpu/drm/xen/drm_xen_front.ko drivers/hid/hid-generic.ko drivers/hid/hid-hyperv.ko drivers/hid/hid.ko diff -u linux-azure-5.4.0/debian.master/control.d/vars.generic linux-azure-5.4.0/debian.master/control.d/vars.generic --- linux-azure-5.4.0/debian.master/control.d/vars.generic +++ linux-azure-5.4.0/debian.master/control.d/vars.generic @@ -4,3 +4,3 @@ desc="=HUMAN= SMP" -bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el]" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el]" provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff -u linux-azure-5.4.0/debian.master/control.d/vars.generic-lpae linux-azure-5.4.0/debian.master/control.d/vars.generic-lpae --- linux-azure-5.4.0/debian.master/control.d/vars.generic-lpae +++ linux-azure-5.4.0/debian.master/control.d/vars.generic-lpae @@ -4,3 +4,3 @@ desc="=HUMAN= SMP" -bootloader="flash-kernel [armhf]" +bootloader="flash-kernel [armhf] | grub-efi-arm [armhf]" provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff -u linux-azure-5.4.0/debian.master/control.d/vars.lowlatency linux-azure-5.4.0/debian.master/control.d/vars.lowlatency --- linux-azure-5.4.0/debian.master/control.d/vars.lowlatency +++ linux-azure-5.4.0/debian.master/control.d/vars.lowlatency @@ -4,3 +4,3 @@ desc="=HUMAN= SMP" -bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64]" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf]" provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff -u linux-azure-5.4.0/debian.master/control.stub.in linux-azure-5.4.0/debian.master/control.stub.in --- linux-azure-5.4.0/debian.master/control.stub.in +++ linux-azure-5.4.0/debian.master/control.stub.in @@ -38,6 +38,7 @@ dkms , curl , lz4 [amd64 s390x] , + dwarves [amd64 arm64 armhf ppc64el s390x] , Build-Depends-Indep: xmlto , docbook-utils , diff -u linux-azure-5.4.0/debian.master/etc/getabis linux-azure-5.4.0/debian.master/etc/getabis --- linux-azure-5.4.0/debian.master/etc/getabis +++ linux-azure-5.4.0/debian.master/etc/getabis @@ -4,6 +4,7 @@ "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux" "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux" "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux" "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux" "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux" ) diff -u linux-azure-5.4.0/debian.master/reconstruct linux-azure-5.4.0/debian.master/reconstruct --- linux-azure-5.4.0/debian.master/reconstruct +++ linux-azure-5.4.0/debian.master/reconstruct @@ -1,7 +1,11 @@ # Recreate any symlinks created since the orig. # Remove any files deleted from the orig. +rm -f 'arch/parisc/kernel/module.lds' +rm -f 'arch/parisc/lib/string.S' +rm -f 'arch/powerpc/include/uapi/asm/bpf_perf_event.h' rm -f 'arch/um/kernel/gmon_syms.c' rm -f 'arch/x86/events/intel/rapl.c' +rm -f 'arch/x86/include/asm/refcount.h' rm -f 'drivers/crypto/hisilicon/sgl.h' rm -f 'drivers/gpu/drm/amd/display/dc/calcs/dcn_calc_math.h' rm -f 'drivers/input/serio/i8042-ppcio.h' @@ -9,8 +13,11 @@ rm -f 'drivers/net/can/rx-offload.c' rm -f 'drivers/staging/mt7621-dma/mtk-hsdma.c' rm -f 'include/Kbuild' +rm -f 'include/linux/kd.h' +rm -f 'include/trace/events/random.h' rm -f 'include/uapi/rdma/nes-abi.h' rm -f 'kernel/elfcore.c' +rm -f 'tools/build/feature/test-libpython-version.c' 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' @@ -20,6 +27,8 @@ 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--virtualbox-guest' +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' @@ -29,6 +38,7 @@ chmod +x 'debian/scripts/misc/final-checks' chmod +x 'debian/scripts/misc/find-missing-sauce.sh' chmod +x 'debian/scripts/misc/find-obsolete-firmware' +chmod +x 'debian/scripts/misc/fips-checks' chmod +x 'debian/scripts/misc/fw-to-ihex.sh' chmod +x 'debian/scripts/misc/gen-auto-reconstruct' chmod +x 'debian/scripts/misc/get-firmware' @@ -63,4 +73,7 @@ chmod +x 'scripts/kmsg-doc' chmod +x 'scripts/parse-maintainers.pl' +chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' +chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' +chmod +x 'update-dkms-versions' chmod +x 'update-version-dkms' exit 0 diff -u linux-azure-5.4.0/debian.master/tracking-bug linux-azure-5.4.0/debian.master/tracking-bug --- linux-azure-5.4.0/debian.master/tracking-bug +++ linux-azure-5.4.0/debian.master/tracking-bug @@ -1 +1 @@ -1934343 2021.06.21-5 +2003486 2023.01.02-2 diff -u linux-azure-5.4.0/debian.master/upstream-stable linux-azure-5.4.0/debian.master/upstream-stable --- linux-azure-5.4.0/debian.master/upstream-stable +++ linux-azure-5.4.0/debian.master/upstream-stable @@ -3 +3 @@ - linux-5.4.y = v5.4.124 + linux-5.4.y = v5.4.224 diff -u linux-azure-5.4.0/debian/changelog linux-azure-5.4.0/debian/changelog --- linux-azure-5.4.0/debian/changelog +++ linux-azure-5.4.0/debian/changelog @@ -1,3 +1,9802 @@ +linux-azure (5.4.0-1103.109) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1103.109 -proposed tracker (LP: #2003463) + + [ Ubuntu: 5.4.0-139.156 ] + + * focal/linux: 5.4.0-139.156 -proposed tracker (LP: #2003486) + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Luke Nowakowski-Krijger Tue, 24 Jan 2023 14:54:59 -0800 + +linux-azure (5.4.0-1102.108) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1102.108 -proposed tracker (LP: #2001818) + + * Focal update: v5.4.221 upstream stable release (LP: #1997993) + - [Config] azure: updateconfigs for ARM64_ERRATUM_1742098 + + [ Ubuntu: 5.4.0-138.155 ] + + * focal/linux: 5.4.0-138.155 -proposed tracker (LP: #2001845) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * Focal update: v5.4.224 upstream stable release (LP: #1999273) + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - i2c: xiic: Add platform module alias + - xfs: don't fail verifier on empty attr3 leaf block + - xfs: use ordered buffers to initialize dquot buffers during quotacheck + - xfs: gut error handling in xfs_trans_unreserve_and_mod_sb() + - xfs: group quota should return EDQUOT when prj quota enabled + - xfs: don't fail unwritten extent conversion on writeback due to edquot + - xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - block, bfq: protect 'bfqd->queued' by 'bfqd->lock' + - binder: fix UAF of alloc->vma in race with munmap() + - btrfs: fix type of parameter generation in btrfs_get_dentry + - tcp/udp: Make early_demux back namespacified. + - kprobe: reverse kp->flags when arm_kprobe failed + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after CR0 write + - mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - ipc: remove memcg accounting for sops objects in do_semtimedop() + - Linux 5.4.224 + * Focal update: v5.4.223 upstream stable release (LP: #1999179) + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: au88x0: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - fbdev: smscufx: Fix several use-after-free bugs + - mac802154: Fix LQI recording + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - kernfs: fix use-after-free in __kernfs_remove + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - xfs: finish dfops on every insert range shift iteration + - xfs: clear XFS_DQ_FREEING if we can't lock the dquot buffer to flush + - xfs: force the log after remapping a synchronous-writes file + - Xen/gntdev: don't ignore kernel unmapping error + - xen/gntdev: Prevent leaking grants + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - arc: iounmap() arg is volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: fix indefinite deferral of RTO with SACK reneging + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - nh: fix scope used to find saddr when adding non gw nh + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5: Fix possible use-after-free in async command interface + - net: enetc: survive memory pressure without crashing + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - Linux 5.4.223 + * Focal update: v5.4.222 upstream stable release (LP: #1997994) + - once: fix section mismatch on clang builds + - Linux 5.4.222 + * Focal update: v5.4.221 upstream stable release (LP: #1997993) + - xfs: open code insert range extent split helper + - xfs: rework insert range into an atomic operation + - xfs: rework collapse range into an atomic operation + - xfs: add a function to deal with corrupt buffers post-verifiers + - xfs: xfs_buf_corruption_error should take __this_address + - xfs: fix buffer corruption reporting when xfs_dir3_free_header_check fails + - xfs: check owner of dir3 data blocks + - xfs: check owner of dir3 blocks + - xfs: Use scnprintf() for avoiding potential buffer overflow + - xfs: remove the xfs_disk_dquot_t and xfs_dquot_t + - xfs: remove the xfs_dq_logitem_t typedef + - xfs: remove the xfs_qoff_logitem_t typedef + - xfs: Replace function declaration by actual definition + - xfs: factor out quotaoff intent AIL removal and memory free + - xfs: fix unmount hang and memory leak on shutdown during quotaoff + - xfs: preserve default grace interval during quotacheck + - xfs: Lower CIL flush limit for large logs + - xfs: Throttle commits on delayed background CIL push + - xfs: factor common AIL item deletion code + - xfs: tail updates only need to occur when LSN changes + - xfs: don't write a corrupt unmount record to force summary counter recalc + - xfs: trylock underlying buffer on dquot flush + - xfs: factor out a new xfs_log_force_inode helper + - xfs: reflink should force the log out if mounted with wsync + - xfs: move inode flush to the sync workqueue + - xfs: fix use-after-free on CIL context on shutdown + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: venus: dec: Handle the case where find_format fails + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - r8152: add PID for the Lenovo OneLink+ Dock + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - HID: magicmouse: Do not set BTN_MOUSE on double report + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: hns: fix possible memory leak in hnae_ae_register() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - ACPI: video: Force backlight native for more TongFang devices + - Makefile.debug: re-enable debug info for .S files + - hv_netvsc: Fix race between VF offering and VF association message from host + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - Linux 5.4.221 + * Focal update: v5.4.220 upstream stable release (LP: #1996812) + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - usb: add quirks for Lenovo OneLink+ Dock + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: sdhci-sprd: Fix minimum clock limit + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - regulator: qcom_rpm: Fix circular deferral regression + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - riscv: Allow PROT_WRITE-only mmap() + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - powerpc/boot: Explicitly disable usage of SPE instructions + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - btrfs: fix race between quota enable and quota rescan ioctl + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - nilfs2: fix use-after-free bug of struct nilfs_root + - jbd2: wake up journal waiters in FIFO order, not LIFO + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: place buffer head allocation before handle start + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Fix race between reset page and reading page + - media: cedrus: Set the platform driver data earlier + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - gcov: support GCC 12.1 and newer compilers + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - selinux: use "grep -E" instead of "egrep" + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - userfaultfd: open userfaultfds with O_RDONLY + - sh: machvec: Use char[] for section boundaries + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - nfsd: Fix a memory leak in an error handling path + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - x86/microcode/AMD: Track patch allocation size explicitly + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm/mipi-dsi: Detach devices when removing the host + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - drm: fix drm_mipi_dbi build errors + - drm/bridge: megachips: Fix a null pointer dereference bug + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/omap: dss: Fix refcount leak bugs + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: inkern: only release the device node when done with it + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - clk: meson: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - drivers: serial: jsm: fix some leaks in probe + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - iommu/iova: Fix module config properly + - kbuild: remove the target in signal traps when interrupted + - crypto: cavium - prevent integer overflow loading firmware + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - Bluetooth: L2CAP: Fix user-after-free + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/amd/display: fix overflow on MIN_I64 definition + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - drm/amdgpu: fix initial connector audio value + - mmc: sdhci-msm: add compatible string check for sdm670 + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - btrfs: scrub: try to fix super block errors + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - HID: roccat: Fix use-after-free in roccat_read() + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - clk: bcm2835: Make peripheral PLLC critical + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - net: ieee802154: return -EINVAL for unknown addr type + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - ext4: continue to expand file system when the target size doesn't reach + - efi: libstub: drop pointless get_memory_map() call + - inet: fully convert sk->sk_rx_dst to RCU rules + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - Linux 5.4.220 + * Focal update: v5.4.219 upstream stable release (LP: #1996804) + - Linux 5.4.219 + + -- Tim Gardner Tue, 17 Jan 2023 08:45:43 -0700 + +linux-azure (5.4.0-1101.107) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1101.107 -proposed tracker (LP: #2001942) + + [ Ubuntu: 5.4.0-137.154 ] + + * focal/linux: 5.4.0-137.154 -proposed tracker (LP: #2001969) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-43945 + - NFSD: Cap rsize_bop result based on send buffer size + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Thadeu Lima de Souza Cascardo Tue, 10 Jan 2023 11:05:06 -0300 + +linux-azure (5.4.0-1100.106) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1100.106 -proposed tracker (LP: #1999429) + + * ubuntu_bpf failed to build on F-azure-5.4 / B-azure-5.4 ( error: + ‘bpf_object_open_opts’ undeclared) (LP: #1990794) + - Revert "bpf, testing: Add selftest to read/write sockaddr from user space" + + * Focal update: v5.4.214 upstream stable release (LP: #1993196) + - [Config] azure: soc: fsl: select FSL_GUTS driver for DPIO + + * Azure: hv_netvsc: Fix race between VF offering and VF association message + from host (LP: #1994974) + - hv_netvsc: Fix race between VF offering and VF association message from host + + * Azure: RMB Patch to backport on the Azure Linux Images (LP: #1994987) + - net: mana: Add rmb after checking owner bits + + [ Ubuntu: 5.4.0-136.153 ] + + * focal/linux: 5.4.0-136.153 -proposed tracker (LP: #1997835) + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * [UBUNTU 20.04] KVM: PV: ext call delivered twice when receiver in PSW wait + (LP: #1995941) + - KVM: s390: pv: don't present the ecall interrupt twice + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * Focal update: v5.4.218 upstream stable release (LP: #1995530) + - mm: pagewalk: Fix race between unmap and page walker + - perf tools: Fixup get_current_dir_name() compilation + - firmware: arm_scmi: Add SCMI PM driver remove routine + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - arch: um: Mark the stack non-executable to fix a binutils warning + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - random: restore O_NONBLOCK support + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - Linux 5.4.218 + * Focal update: v5.4.217 upstream stable release (LP: #1995528) + - xfs: fix misuse of the XFS_ATTR_INCOMPLETE flag + - xfs: introduce XFS_MAX_FILEOFF + - xfs: truncate should remove all blocks, not just to the end of the page + cache + - xfs: fix s_maxbytes computation on 32-bit kernels + - xfs: fix IOCB_NOWAIT handling in xfs_file_dio_aio_read + - xfs: refactor remote attr value buffer invalidation + - xfs: fix memory corruption during remote attr value buffer invalidation + - xfs: move incore structures out of xfs_da_format.h + - xfs: streamline xfs_attr3_leaf_inactive + - xfs: fix uninitialized variable in xfs_attr3_leaf_inactive + - xfs: remove unused variable 'done' + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - docs: update mediator information in CoC docs + - Linux 5.4.217 + * Focal update: v5.4.216 upstream stable release (LP: #1995526) + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - clk: ingenic-tcu: Properly enable registers before accessing timers + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/migrate_device.c: flush TLB while holding PTL + - mm: fix madivse_pageout mishandling on non-LRU page + - media: dvb_vb2: fix possible out of bound access + - ARM: dts: Move am33xx and am43xx mmc nodes to sdhci-omap driver + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi_sram: Make use of the helper function + devm_platform_ioremap_resource() + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - usbnet: Fix memory leak in usbnet_disconnect() + - nvme: add new line after variable declatation + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - selftests: Fix the if conditions of in test_extra_filter() + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - clk: iproc: Do not rely on node name for correct PLL setup + - Linux 5.4.216 + * Focal update: v5.4.215 upstream stable release (LP: #1993203) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - task_stack, x86/cea: Force-inline stack helpers + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - MAINTAINERS: add Chandan as xfs maintainer for 5.4.y + - iomap: iomap that extends beyond EOF should be marked dirty + - ASoC: nau8824: Fix semaphore unbalance at error paths + - regulator: pfuze100: Fix the global-out-of-bounds access in + pfuze100_regulator_probe() + - rxrpc: Fix local destruction being repeated + - rxrpc: Fix calc of resend age + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/tegra: Align BDL entry to 4KB boundary + - net: usb: qmi_wwan: add Quectel RM520N + - afs: Return -EAGAIN, not -EREMOTEIO, when a file already locked + - MIPS: OCTEON: irq: Fix octeon_irq_force_ciu_mapping() + - mksysmap: Fix the mismatch of 'L0' symbols in System.map + - video: fbdev: pxa3xx-gcu: Fix integer overflow in pxa3xx_gcu_write + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind + - usb: dwc3: Issue core soft reset before enabling run/stop + - usb: dwc3: gadget: Prevent repeat pullup() + - usb: dwc3: gadget: Refactor pullup() + - usb: dwc3: gadget: Don't modify GEVNTCOUNT in pullup() + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: xhci-mtk: get the microframe boundary for ESIT + - usb: xhci-mtk: add only one extra CS for FS/LS INTR + - usb: xhci-mtk: use @sch_tt to check whether need do TT schedule + - usb: xhci-mtk: add a function to (un)load bandwidth info + - usb: xhci-mtk: add some schedule error number + - usb: xhci-mtk: allow multiple Start-Split in a microframe + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - tty/serial: atmel: RS485 & ISO7816: wait for TXRDY before sending data + - serial: atmel: remove redundant assignment in rs485_config + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - efi: libstub: check Shim mode using MokSBStateRT + - mm/slub: fix to return errno if kmalloc() fails + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: team: Unsync device addresses on ndo_stop + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - iavf: Fix bad page state + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - netfilter: ebtables: fix memory leak when blob is malformed + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - usb: xhci-mtk: fix issue of out-of-bounds array access + - cifs: always initialize struct msghdr smb_msg completely + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/amd/display: Limit user regamma to a valid value + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - xfs: replace -EIO with -EFSCORRUPTED for corrupt metadata + - xfs: slightly tweak an assert in xfs_fs_map_blocks + - xfs: add missing assert in xfs_fsmap_owner_from_rmap + - xfs: range check ri_cnt when recovering log items + - xfs: attach dquots and reserve quota blocks during unwritten conversion + - xfs: convert EIO to EFSCORRUPTED when log contents are invalid + - xfs: constify the buffer pointer arguments to error functions + - xfs: always log corruption errors + - xfs: fix some memory leaks in log recovery + - xfs: stabilize insert range start boundary to avoid COW writeback race + - xfs: use bitops interface for buf log item AIL flag check + - xfs: refactor agfl length computation function + - xfs: split the sunit parameter update into two parts + - xfs: don't commit sunit/swidth updates to disk if that would cause repair + failures + - xfs: fix an ABBA deadlock in xfs_rename + - xfs: fix use-after-free when aborting corrupt attr inactivation + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.4.215 + * Focal update: v5.4.214 upstream stable release (LP: #1993196) + - drm/msm/rd: Fix FIFO-full deadlock + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - mm: Fix TLB flush for not-first PFNMAP mappings in unmap_region() + - net: dp83822: disable rx error interrupt + - soc: fsl: select FSL_GUTS driver for DPIO + - tracefs: Only clobber mode/uid/gid on remount if asked + - Linux 5.4.214 + * Focal update: v5.4.213 upstream stable release (LP: #1992211) + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - net: dp83822: disable false carrier interrupt + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - iio: adc: mcp3911: make use of the sign bit + - ieee802154/adf7242: defer destroy_workqueue call + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - Revert "xhci: turn off port power in shutdown" + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - staging: rtl8712: fix use after free bugs + - powerpc: align syscall table for ppc32 + - vt: Clear selection before changing the font + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - binder: fix UAF of ref->proc caused by race condition + - usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - thunderbolt: Use the actual buffer in tb_async_error() + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - net: mac802154: Fix a condition in the receive path + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - btrfs: harden identification of a stale device + - usb: dwc3: fix PHY disable sequence + - usb: dwc3: disable USB core PHY management + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/radeon: add a force flush to delay work when radeon + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - kprobes: Prohibit probes in gate area + - debugfs: add debugfs_lookup_and_remove() + - nvmet: fix a use-after-free + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Optimize single thread migration + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - smb3: missing inode locks in punch hole + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - regulator: core: Clean up on enable failure + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - netfilter: br_netfilter: Drop dst references before setting. + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - i40e: Fix kernel crash during module removal + - RDMA/siw: Pass a pointer to virt_to_page() + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - RDMA/mlx5: Set local port to one when accessing counters + - nvme-tcp: fix UAF when detecting digest errors + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - sch_sfb: Also store skb len before calling child enqueue + - x86/nospec: Fix i386 RSB stuffing + - MIPS: loongson32: ls1c: Fix hang during startup + - Linux 5.4.213 + * CVE-2022-2663 + - netfilter: nf_conntrack_irc: Fix forged IP logic + * CVE-2022-3061 + - video: fbdev: i740fb: Error out if 'pixclock' equals zero + + [ Ubuntu: 5.4.0-135.152 ] + + * focal/linux: 5.4.0-135.152 -proposed tracker (LP: #1997412) + * containerd sporadic timeouts (LP: #1996678) + - epoll: call final ep_events_available() check under the lock + - epoll: check for events when removing a timed out thread from the wait queue + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-42703 + - mm/rmap.c: don't reuse anon_vma if we just want a copy + + [ Ubuntu: 5.4.0-132.148 ] + + * CVE-2022-42719 + - mac80211: mlme: find auth challenge directly + - wifi: mac80211: don't parse mbssid in assoc response + - wifi: mac80211: fix MBSSID parsing use-after-free + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * fib_nexthop_nongw.sh from ubuntu_kernel_selftests failed on B-5.4 + (LP: #1990800) + - SAUCE: selftests/net: skipping tests for older ip command releases + * CVE-2022-29901 + - Revert "x86/speculation: Add RSB VM Exit protections" + - Revert "x86/cpu: Add a steppings field to struct x86_cpu_id" + - x86/devicetable: Move x86 specific macro out of generic code + - x86/cpu: Add consistent CPU match macros + - x86/cpu: Add a steppings field to struct x86_cpu_id + - x86/kvm/vmx: Make noinstr clean + - x86/cpufeatures: Move RETPOLINE flags to word 11 + - x86/bugs: Report AMD retbleed vulnerability + - x86/bugs: Add AMD retbleed= boot parameter + - x86/bugs: Keep a per-CPU IA32_SPEC_CTRL value + - x86/entry: Remove skip_r11rcx + - x86/entry: Add kernel IBRS implementation + - x86/bugs: Optimize SPEC_CTRL MSR writes + - x86/speculation: Add spectre_v2=ibrs option to support Kernel IBRS + - x86/bugs: Split spectre_v2_select_mitigation() and + spectre_v2_user_select_mitigation() + - x86/bugs: Report Intel retbleed vulnerability + - intel_idle: Disable IBRS during long idle + - x86/speculation: Change FILL_RETURN_BUFFER to work with objtool + - x86/speculation: Fix RSB filling with CONFIG_RETPOLINE=n + - x86/speculation: Fix firmware entry SPEC_CTRL handling + - x86/speculation: Fix SPEC_CTRL write on SMT state change + - x86/speculation: Use cached host SPEC_CTRL value for guest entry/exit + - x86/speculation: Remove x86_spec_ctrl_mask + - KVM/VMX: Use TEST %REG,%REG instead of CMP $0,%REG in vmenter.S + - KVM/nVMX: Use __vmx_vcpu_run in nested_vmx_check_vmentry_hw + - KVM: VMX: Flatten __vmx_vcpu_run() + - KVM: VMX: Convert launched argument to flags + - KVM: VMX: Prevent guest RSB poisoning attacks with eIBRS + - KVM: VMX: Fix IBRS handling after vmexit + - x86/speculation: Fill RSB on vmexit for IBRS + - x86/common: Stamp out the stepping madness + - x86/cpu/amd: Enumerate BTC_NO + - x86/bugs: Add Cannon lake to RETBleed affected CPU list + - x86/speculation: Disable RRSBA behavior + - x86/speculation: Use DECLARE_PER_CPU for x86_spec_ctrl_current + - x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts + - x86/speculation: Add RSB VM Exit protections + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor_idle: Skip dummy wait if kernel is in guest + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * cgroup: all controllers mounted when using 'cgroup_no_v1=' (LP: #1988584) + - cgroup-v1: add disabled controller check in cgroup1_parse_param() + * Focal update: v5.4.212 upstream stable release (LP: #1991156) + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - usb: cdns3: Fix issue for clear halt endpoint + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - sched/deadline: Unthrottle PI boosted threads while enqueuing + - sched/deadline: Fix stale throttling on de-/boosted tasks + - sched/deadline: Fix priority inheritance with multiple scheduling classes + - kernel/sched: Remove dl_boosted flag comment + - xfrm: fix refcount leak in __xfrm_policy_check() + - SUNRPC: RPC level errors should set task->tk_rpc_status + - rose: check NULL rose_loopback_neigh->loopback + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: check if root is readonly while setting security xattr + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - loop: Check for overflow while configuring loop + - asm-generic: sections: refactor memory_intersects + - s390: fix double free of GS and RI CBs on fork() failure + - ACPI: processor: Remove freq Qos request for all CPUs + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - md: call __md_stop_writes in md_stop + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - kbuild: Fix include path in scripts/Makefile.modpost + - Bluetooth: L2CAP: Fix build errors in some archs + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - HID: hidraw: fix memory leak in hidraw_release() + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + - btrfs: introduce btrfs_lookup_match_dir + - btrfs: do not pin logs too early during renames + - btrfs: unify lookup return value when dir entry is missing + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: clear optc underflow before turn off odm clock + - neigh: fix possible DoS due to net iface start/stop loop + - s390/hypfs: avoid error message under KVM + - drm/amd/display: Fix pixel clock programming + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - btrfs: tree-checker: check for overlapping extent items + - lib/vdso: Let do_coarse() return 0 to simplify the callsite + - lib/vdso: Mark do_hres() and do_coarse() as __always_inline + - kprobes: don't call disarm_kprobe() for disabled kprobes + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - Linux 5.4.212 + * Focal update: v5.4.211 upstream stable release (LP: #1990190) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - igc: Remove _I_PHY_ID checking + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - mm/mremap: hold the rmap lock in write mode when moving page table entries. + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - usbnet: Fix linkwatch use-after-free on disconnect + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - iio: light: isl29028: Fix the warning in isl29028_remove() + - fuse: limit nsec + - serial: mvebu-uart: uart2 error bits clearing + - md-raid10: fix KASAN warning + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - PCI: Add defines for normal and subtractive PCI bridges + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - USB: HCD: Fix URB giveback issue in tasklet function + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - ext2: Add more validity checks for inode counts + - genirq: Don't return error on missing optional irq_request_resources() + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: Add boundary check in put_entry() + - spi: spi-rspi: Fix PIO fallback on RZ platforms + - ARM: findbit: fix overflowing offset + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - soc: fsl: guts: machine variable might be unset + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - arm64: dts: mt7622: fix BPI-R64 WPS button + - erofs: avoid consecutive detection for Highmem memory + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - dm: return early from dm_pr_call() if DM device is suspended + - ath10k: do not enforce interrupt trigger type + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm: adv7511: override i2c address of cec before accessing it + - i2c: Fix a potential use after free + - media: tw686x: Register the irq at the end of probe + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/vc4: dsi: Correct DSI divider calculations + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm: bridge: sii8620: fix possible off-by-one + - drm/msm/mdp5: Fix global state lock backoff + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - fs: check FMODE_LSEEK to control internal pipe splicing + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - selftests/bpf: fix a test for snprintf() overflow + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - i2c: cadence: Support PEC for SMBus block read + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - iavf: Fix max_rate limiting + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: xhci: tegra: Fix error check + - clk: mediatek: reset: Fix written reset bit offset + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - soundwire: bus_type: fix remove and shutdown support + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - scsi: smartpqi: Fix DMA direction for RAID requests + - usb: gadget: udc: amd5536 depends on HAS_DMA + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - USB: serial: fix tty-port initialized comments + - platform/olpc: Fix uninitialized data in debugfs write + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - null_blk: fix ida error handling in null_add_dev() + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - profiling: fix shift too large makes kernel panic + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Do not change FSM state in subchannel event + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - iommu/exynos: Handle failed IOMMU device registration properly + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - kfifo: fix kfifo_to_user() return type + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - s390/zcore: fix race when reading from hardware system area + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - x86/olpc: fix 'logical not is only applied to the left hand side' + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - btrfs: reset block group chunk force if we have to wait + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: make sure ext4_append() always allocates new block + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - intel_th: pci: Add Raptor Lake-S CPU support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Meteor Lake-P support + - dm raid: fix address sanitizer warning in raid_resume + - dm raid: fix address sanitizer warning in raid_status + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - dm writecache: set a default MAX_WRITEBACK_JOBS + - ACPI: CPPC: Do not prevent CPPC from working in the future + - timekeeping: contribute wall clock to rng on time change + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - btrfs: reject log replay if there is unsupported RO compat flag + - KVM: Add infrastructure and macro to mark VM as bugged + - 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() + - tcp: fix over estimation in sk_forced_mem_schedule() + - scsi: sg: Allow waiting for commands to complete on removed device + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - net/9p: Initialize the iounit field during fid creation + - net_sched: cls_route: disallow handle of 0 + - ALSA: info: Fix llseek return value when using callback + - rds: add missing barrier to release_refill + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - btrfs: fix lost error handling when looking up extended ref on log replay + - tracing: Have filter accept "common_cpu" to be consistent + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - can: mcp251x: Fix race condition on receive interrupt + - sunrpc: fix expiry of auth creds + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - devlink: Fix use-after-free after a failed reload + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - tools/vm/slabinfo: use alphabetic order when two values are equal + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - dpaa2-eth: trace the allocated address instead of page struct + - tee: add overflow check in register_shm_helper() + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - clk: rockchip: add sclk_mac_lbtest to rk3188_critical_clocks + - netfilter: nf_tables: really skip inactive sets when allocating name + - powerpc/pci: Fix get_phb_number() locking + - net: dsa: mv88e6060: prevent crash on an unused port + - net: moxa: pass pdev instead of ndev to DMA functions + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - ice: Ignore EEXIST when setting promisc mode + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - igb: Add lock to avoid data race + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - usb: cdns3 fix use-after-free at workaround 2 + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - gadgetfs: ep_io - wait until IRQ finishes + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - watchdog: export lockup_detector_reconfigure + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - tracing/probes: Have kprobes and uprobes use $COMM too + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - Linux 5.4.211 + * CVE-2022-3028 + - af_key: Do not call xfrm_probe_algs in parallel + * CVE-2022-2978 + - fs: fix UAF/GPF bug in nilfs_mdt_destroy + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + + -- Tim Gardner Mon, 12 Dec 2022 12:49:30 -0700 + +linux-azure (5.4.0-1094.100) focal; urgency=medium + + [ Ubuntu: 5.4.0-131.147 ] + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + + -- Thadeu Lima de Souza Cascardo Sun, 16 Oct 2022 23:55:23 -0300 + +linux-azure (5.4.0-1092.97) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1092.97 -proposed tracker (LP: #1989865) + + * Focal update: v5.4.208 upstream stable release (LP: #1988225) + - [Config] azure: updateconfigs after rebase + + * Azure: Focal 5.4 kernel eBPF opensnoop does not display PATH (LP: #1990009) + - uaccess: Add strict non-pagefault kernel-space read function + - bpf: Add probe_read_{user, kernel} and probe_read_{user, kernel}_str helpers + - bpf, samples: Use bpf_probe_read_user where appropriate + - bpf, testing: Convert prog tests to probe_read_{user, kernel}{, _str} helper + - bpf, testing: Add selftest to read/write sockaddr from user space + + * azure: Set arm64 CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n (LP: #1988434) + - [Config] azure: arm64: CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n + + [ Ubuntu: 5.4.0-128.144 ] + + * focal/linux: 5.4.0-128.144 -proposed tracker (LP: #1990152) + * CVE-2022-3176 + - io_uring: disable polling pollfree files + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) + - selftests/net: test nexthop without gw + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) // icmp_redirect.sh in ubuntu_kernel_selftests failed on + Jammy 5.15.0-49.55 (LP: #1990124) + - ip: fix triggering of 'icmp redirect' + + [ Ubuntu: 5.4.0-127.143 ] + + * focal/linux: 5.4.0-127.143 -proposed tracker (LP: #1989892) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.09.19) + * [UBUNTU 20.04] mlx5 driver crashes on accessing device attributes during + recovery (LP: #1987287) + - net/mlx5: Avoid processing commands before cmdif is ready + * Focal update: v5.4.210 upstream stable release (LP: #1989230) + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - bpf: Verifer, adjust_scalar_min_max_vals to always call update_reg_bounds() + - selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads + - bpf: Test_verifier, #70 error message updates for 32-bit right shift + - KVM: Don't null dereference ops->destroy + - selftests: KVM: Handle compiler optimizations in ucall + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.4.210 + * Focal update: v5.4.209 upstream stable release (LP: #1989228) + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put + - ntfs: fix use-after-free in ntfs_ucsncmp() + - s390/archrandom: prevent CPACF trng invocations in interrupt context + - tcp: Fix data-races around sysctl_tcp_dsack. + - tcp: Fix a data-race around sysctl_tcp_app_win. + - tcp: Fix a data-race around sysctl_tcp_adv_win_scale. + - tcp: Fix a data-race around sysctl_tcp_frto. + - tcp: Fix a data-race around sysctl_tcp_nometrics_save. + - ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) + - ice: do not setup vlan for loopback VSI + - scsi: ufs: host: Hold reference returned by of_parse_phandle() + - tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. + - tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. + - net: ping6: Fix memleak in ipv6_renew_options(). + - ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr + - igmp: Fix data-races around sysctl_igmp_qrv. + - net: sungem_phy: Add of_node_put() for reference returned by of_get_parent() + - tcp: Fix a data-race around sysctl_tcp_min_tso_segs. + - tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. + - tcp: Fix a data-race around sysctl_tcp_autocorking. + - tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. + - Documentation: fix sctp_wmem in ip-sysctl.rst + - tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. + - i40e: Fix interface init with MSI interrupts (no MSI-X) + - sctp: fix sleep in atomic context bug in timer handlers + - virtio-net: fix the race between refill work and close + - perf symbol: Correct address for bss symbols + - sfc: disable softirqs for ptp TX + - sctp: leave the err path free in sctp_stream_init to sctp_stream_free + - ARM: crypto: comment out gcc warning that breaks clang builds + - mt7601u: add USB device ID for some versions of XiaoDu WiFi Dongle. + - scsi: core: Fix race between handling STS_RESOURCE and completion + - Linux 5.4.209 + * Focal update: v5.4.208 upstream stable release (LP: #1988225) + - pinctrl: stm32: fix optional IRQ support to gpios + - riscv: add as-options for modules with assembly compontents + - mlxsw: spectrum_router: Fix IPv4 nexthop gateway indication + - lockdown: Fix kexec lockdown bypass with ima policy + - xen/gntdev: Ignore failure to unmap INVALID_GRANT_HANDLE + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - serial: mvebu-uart: correctly report configured baudrate value + - xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in + xfrm_bundle_lookup() + - power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe + - pinctrl: ralink: Check for null return of devm_kcalloc + - perf/core: Fix data race between perf_event_set_output() and + perf_mmap_close() + - igc: Reinstate IGC_REMOVED logic and implement it properly + - ip: Fix data-races around sysctl_ip_no_pmtu_disc. + - ip: Fix data-races around sysctl_ip_fwd_use_pmtu. + - ip: Fix data-races around sysctl_ip_nonlocal_bind. + - ip: Fix a data-race around sysctl_fwmark_reflect. + - tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept. + - tcp: Fix data-races around sysctl_tcp_mtu_probing. + - tcp: Fix data-races around sysctl_tcp_base_mss. + - tcp: Fix data-races around sysctl_tcp_min_snd_mss. + - tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor. + - tcp: Fix a data-race around sysctl_tcp_probe_threshold. + - tcp: Fix a data-race around sysctl_tcp_probe_interval. + - i2c: cadence: Change large transfer count reset logic to be unconditional + - net: stmmac: fix dma queue left shift overflow issue + - net/tls: Fix race in TLS device down flow + - igmp: Fix data-races around sysctl_igmp_llm_reports. + - igmp: Fix a data-race around sysctl_igmp_max_memberships. + - tcp: Fix data-races around sysctl_tcp_syncookies. + - tcp: Fix data-races around sysctl_tcp_reordering. + - tcp: Fix data-races around some timeout sysctl knobs. + - tcp: Fix a data-race around sysctl_tcp_notsent_lowat. + - tcp: Fix a data-race around sysctl_tcp_tw_reuse. + - tcp: Fix data-races around sysctl_max_syn_backlog. + - tcp: Fix data-races around sysctl_tcp_fastopen. + - iavf: Fix handling of dummy receive descriptors + - i40e: Fix erroneous adapter reinitialization during recovery process + - ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero + - gpio: pca953x: only use single read/write for No AI mode + - be2net: Fix buffer overflow in be_get_module_eeprom + - ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. + - udp: Fix a data-race around sysctl_udp_l3mdev_accept. + - tcp: Fix data-races around sysctl knobs related to SYN option. + - tcp: Fix a data-race around sysctl_tcp_early_retrans. + - tcp: Fix data-races around sysctl_tcp_recovery. + - tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. + - tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. + - tcp: Fix a data-race around sysctl_tcp_retrans_collapse. + - tcp: Fix a data-race around sysctl_tcp_stdurg. + - tcp: Fix a data-race around sysctl_tcp_rfc1337. + - tcp: Fix data-races around sysctl_tcp_max_reordering. + - spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA + transfers + - mm/mempolicy: fix uninit-value in mpol_rebind_policy() + - bpf: Make sure mac_header was set before using it + - dlm: fix pending remove if msg allocation fails + - ima: remove the IMA_TEMPLATE Kconfig option + - [Config] updateconfigs for IMA_TEMPLATE + - locking/refcount: Define constants for saturation and max refcount values + - locking/refcount: Ensure integer operands are treated as signed + - locking/refcount: Remove unused refcount_*_checked() variants + - locking/refcount: Move the bulk of the REFCOUNT_FULL implementation into the + header + - locking/refcount: Improve performance of generic REFCOUNT_FULL code + - locking/refcount: Move saturation warnings out of line + - locking/refcount: Consolidate REFCOUNT_{MAX,SATURATED} definitions + - locking/refcount: Consolidate implementations of refcount_t + - [Config] updateconfigs for REFCOUNT_FULL + - x86: get rid of small constant size cases in raw_copy_{to,from}_user() + - x86/uaccess: Implement macros for CMPXCHG on user addresses + - mmap locking API: initial implementation as rwsem wrappers + - x86/mce: Deduplicate exception handling + - bitfield.h: Fix "type of reg too small for mask" test + - ALSA: memalloc: Align buffer allocations in page size + - Bluetooth: Add bt_skb_sendmsg helper + - Bluetooth: Add bt_skb_sendmmsg helper + - Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg + - Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg + - Bluetooth: Fix passing NULL to PTR_ERR + - Bluetooth: SCO: Fix sco_send_frame returning skb->len + - Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks + - tty: drivers/tty/, stop using tty_schedule_flip() + - tty: the rest, stop using tty_schedule_flip() + - tty: drop tty_schedule_flip() + - tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() + - tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() + - x86: drop bogus "cc" clobber from __try_cmpxchg_user_asm() + - Linux 5.4.208 + * Focal update: v5.4.207 upstream stable release (LP: #1988219) + - ALSA: hda - Add fixup for Dell Latitidue E5430 + - ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 + - ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop + - xen/netback: avoid entering xenvif_rx_next_skb() with an empty rx queue + - tracing/histograms: Fix memory leak problem + - net: sock: tracing: Fix sock_exceed_buf_limit not to dereference stale + pointer + - ip: fix dflt addr selection for connected nexthop + - ARM: 9213/1: Print message about disabled Spectre workarounds only once + - ARM: 9214/1: alignment: advance IT state after emulating Thumb instruction + - wifi: mac80211: fix queue selection for mesh/OCB interfaces + - cgroup: Use separate src/dst nodes when preloading css_sets for migration + - drm/panfrost: Fix shrinker list corruption by madvise IOCTL + - nilfs2: fix incorrect masking of permission flags for symlinks + - Revert "evm: Fix memleak in init_desc" + - sched/rt: Disable RT_RUNTIME_SHARE by default + - ext4: fix race condition between ext4_write and ext4_convert_inline_data + - ARM: dts: imx6qdl-ts7970: Fix ngpio typo and count + - ARM: 9209/1: Spectre-BHB: avoid pr_info() every time a CPU comes out of idle + - ARM: 9210/1: Mark the FDT_FIXED sections as shareable + - drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() + - ima: Fix a potential integer overflow in ima_appraise_measurement + - ASoC: sgtl5000: Fix noise on shutdown/remove + - net: stmmac: dwc-qos: Disable split header for Tegra194 + - inetpeer: Fix data-races around sysctl. + - net: Fix data-races around sysctl_mem. + - cipso: Fix data-races around sysctl. + - icmp: Fix data-races around sysctl. + - ipv4: Fix a data-race around sysctl_fib_sync_mem. + - ARM: dts: at91: sama5d2: Fix typo in i2s1 node + - ARM: dts: sunxi: Fix SPI NOR campatible on Orange Pi Zero + - drm/i915/gt: Serialize TLB invalidates with GT resets + - icmp: Fix a data-race around sysctl_icmp_ratelimit. + - icmp: Fix a data-race around sysctl_icmp_ratemask. + - raw: Fix a data-race around sysctl_raw_l3mdev_accept. + - ipv4: Fix data-races around sysctl_ip_dynaddr. + - net: ftgmac100: Hold reference returned by of_get_child_by_name() + - sfc: fix use after free when disabling sriov + - seg6: fix skb checksum evaluation in SRH encapsulation/insertion + - seg6: fix skb checksum in SRv6 End.B6 and End.B6.Encaps behaviors + - seg6: bpf: fix skb checksum in bpf_push_seg6_encap() + - sfc: fix kernel panic when creating VF + - mm: sysctl: fix missing numa_stat when !CONFIG_HUGETLB_PAGE + - virtio_mmio: Add missing PM calls to freeze/restore + - virtio_mmio: Restore guest page size on resume + - netfilter: br_netfilter: do not skip all hooks with 0 priority + - cpufreq: pmac32-cpufreq: Fix refcount leak bug + - platform/x86: hp-wmi: Ignore Sanitization Mode event + - net: tipc: fix possible refcount leak in tipc_sk_create() + - NFC: nxp-nci: don't print header length mismatch on i2c error + - nvme: fix regression when disconnect a recovering ctrl + - net: sfp: fix memory leak in sfp_probe() + - ASoC: ops: Fix off by one in range control validation + - ASoC: wm5110: Fix DRE control + - ASoC: cs47l15: Fix event generation for low power mux control + - ASoC: madera: Fix event generation for OUT1 demux + - ASoC: madera: Fix event generation for rate controls + - irqchip: or1k-pic: Undefine mask_ack for level triggered hardware + - x86: Clear .brk area at early boot + - soc: ixp4xx/npe: Fix unused match warning + - ARM: dts: stm32: use the correct clock source for CEC on stm32mp151 + - signal handling: don't use BUG_ON() for debugging + - USB: serial: ftdi_sio: add Belimo device ids + - usb: typec: add missing uevent when partner support PD + - usb: dwc3: gadget: Fix event pending check + - tty: serial: samsung_tty: set dma burst_size to 1 + - serial: 8250: fix return error code in serial8250_request_std_resource() + - serial: stm32: Clear prev values before setting RTS delays + - serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle + - can: m_can: m_can_tx_handler(): fix use after free of skb + - Linux 5.4.207 + * Focal update: v5.4.206 upstream stable release (LP: #1988215) + - Linux 5.4.206 + * Focal update: v5.4.205 upstream stable release (LP: #1988214) + - esp: limit skb_page_frag_refill use to a single page + - mm/slub: add missing TID updates on slab deactivation + - can: bcm: use call_rcu() instead of costly synchronize_rcu() + - can: grcan: grcan_probe(): remove extra of_node_get() + - can: gs_usb: gs_usb_open/close(): fix memory leak + - usbnet: fix memory leak in error case + - net: rose: fix UAF bug caused by rose_t0timer_expiry + - iommu/vt-d: Fix PCI bus rescan device hot add + - fbdev: fbmem: Fix logo center image dx issue + - video: of_display_timing.h: include errno.h + - powerpc/powernv: delay rng platform device creation until later in boot + - can: kvaser_usb: replace run-time checks with struct kvaser_usb_driver_info + - can: kvaser_usb: kvaser_usb_leaf: fix CAN clock frequency regression + - can: kvaser_usb: kvaser_usb_leaf: fix bittiming limits + - xfs: remove incorrect ASSERT in xfs_rename + - ARM: meson: Fix refcount leak in meson_smp_prepare_cpus + - pinctrl: sunxi: a83t: Fix NAND function name for some pins + - pinctrl: sunxi: sunxi_pconf_set: use correct offset + - ARM: at91: pm: use proper compatible for sama5d2's rtc + - ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt + - ibmvnic: Properly dispose of all skbs during a failover. + - selftests: forwarding: fix flood_unicast_test when h2 supports + IFF_UNICAST_FLT + - selftests: forwarding: fix learning_test when h1 supports IFF_UNICAST_FLT + - selftests: forwarding: fix error message in learning_test + - i2c: cadence: Unregister the clk notifier in error path + - dmaengine: imx-sdma: Allow imx8m for imx7 FW revs + - misc: rtsx_usb: fix use of dma mapped buffer for usb bulk transfer + - misc: rtsx_usb: use separate command and response buffers + - misc: rtsx_usb: set return value in rsp_buf alloc err path + - dt-bindings: dma: allwinner,sun50i-a64-dma: Fix min/max typo + - ida: don't use BUG_ON() for debugging + - dmaengine: pl330: Fix lockdep warning about non-static key + - dmaengine: at_xdma: handle errors of at_xdmac_alloc_desc() correctly + - dmaengine: ti: Fix refcount leak in ti_dra7_xbar_route_allocate + - dmaengine: ti: Add missing put_device in ti_dra7_xbar_route_allocate + - Linux 5.4.205 + * Focal update: v5.4.204 upstream stable release (LP: #1988212) + - ipv6: take care of disable_policy when restoring routes + - nvdimm: Fix badblocks clear off-by-one error + - powerpc/prom_init: Fix kernel config grep + - powerpc/bpf: Fix use of user_pt_regs in uapi + - dm raid: fix accesses beyond end of raid member array + - dm raid: fix KASAN warning in raid5_add_disks + - s390/archrandom: simplify back to earlier design and initialize earlier + - SUNRPC: Fix READ_PLUS crasher + - net: rose: fix UAF bugs caused by timer handler + - net: usb: ax88179_178a: Fix packet receiving + - virtio-net: fix race between ndo_open() and virtio_device_ready() + - selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test + - net: tun: unlink NAPI from device on destruction + - net: tun: stop NAPI when detaching queues + - RDMA/qedr: Fix reporting QP timeout attribute + - linux/dim: Fix divide by 0 in RDMA DIM + - usbnet: fix memory allocation in helpers + - net: ipv6: unexport __init-annotated seg6_hmac_net_init() + - caif_virtio: fix race between virtio_device_ready() and ndo_open() + - PM / devfreq: exynos-ppmu: Fix refcount leak in of_get_devfreq_events + - s390: remove unneeded 'select BUILD_BIN2C' + - netfilter: nft_dynset: restore set element counter when failing to update + - net/sched: act_api: Notify user space if any actions were flushed before + error + - net: bonding: fix possible NULL deref in rlb code + - net: bonding: fix use-after-free after 802.3ad slave unbind + - nfc: nfcmrvl: Fix irq_of_parse_and_map() return value + - NFC: nxp-nci: Don't issue a zero length i2c_master_read() + - net: tun: avoid disabling NAPI twice + - xen/gntdev: Avoid blocking in unmap_grant_pages() + - hwmon: (ibmaem) don't call platform_device_del() if platform_device_add() + fails + - net: dsa: bcm_sf2: force pause link settings + - sit: use min + - ipv6/sit: fix ipip6_tunnel_get_prl return value + - rseq/selftests,x86_64: Add rseq_offset_deref_addv() + - selftests/rseq: remove ARRAY_SIZE define from individual tests + - selftests/rseq: introduce own copy of rseq uapi header + - selftests/rseq: Remove useless assignment to cpu variable + - selftests/rseq: Remove volatile from __rseq_abi + - selftests/rseq: Introduce rseq_get_abi() helper + - selftests/rseq: Introduce thread pointer getters + - selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35 + - selftests/rseq: Fix ppc32: wrong rseq_cs 32-bit field pointer on big endian + - selftests/rseq: Fix ppc32 missing instruction selection "u" and "x" for + load/store + - selftests/rseq: Fix ppc32 offsets by using long rather than off_t + - selftests/rseq: Fix warnings about #if checks of undefined tokens + - selftests/rseq: Remove arm/mips asm goto compiler work-around + - selftests/rseq: Fix: work-around asm goto compiler bugs + - selftests/rseq: x86-64: use %fs segment selector for accessing rseq thread + area + - selftests/rseq: x86-32: use %gs segment selector for accessing rseq thread + area + - selftests/rseq: Change type of rseq_offset to ptrdiff_t + - xen/blkfront: fix leaking data in shared pages + - xen/netfront: fix leaking data in shared pages + - xen/netfront: force data bouncing when backend is untrusted + - xen/blkfront: force data bouncing when backend is untrusted + - xen/arm: Fix race in RB-tree based P2M accounting + - net: usb: qmi_wwan: add Telit 0x1060 composition + - net: usb: qmi_wwan: add Telit 0x1070 composition + - clocksource/drivers/ixp4xx: remove EXPORT_SYMBOL_GPL from + ixp4xx_timer_setup() + - Linux 5.4.204 + + -- Tim Gardner Thu, 22 Sep 2022 12:25:44 -0600 + +linux-azure (5.4.0-1091.96) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1091.96 -proposed tracker (LP: #1987791) + + * Focal update: v5.4.198 upstream stable release (LP: #1982409) + - Upstream stable to v5.4.198 + + [ Ubuntu: 5.4.0-126.142 ] + + * focal/linux: 5.4.0-126.142 -proposed tracker (LP: #1987819) + * [SRU] fnic driver on needs to be updated to 1.6.0.53 on Focal (LP: #1984011) + - scsi: fnic: Change shost_printk() to FNIC_FCS_DBG() + - scsi: fnic: Avoid looping in TRANS ETH on unload + - scsi: fnic: Change shost_printk() to FNIC_MAIN_DBG() + - scsi: fnic: Set scsi_set_resid() only for underflow + - scsi: fnic: Validate io_req before others + * Focal update: v5.4.203 upstream stable release (LP: #1986999) + - drm: remove drm_fb_helper_modinit + - powerpc/ftrace: Remove ftrace init tramp once kernel init is complete + - kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] + - net: mscc: ocelot: allow unregistered IP multicast flooding + - ARM: 8989/1: use .fpu assembler directives instead of assembler arguments + - ARM: 8990/1: use VFP assembler mnemonics in register load/store macros + - ARM: 8971/1: replace the sole use of a symbol with its definition + - crypto: arm/sha256-neon - avoid ADRL pseudo instruction + - crypto: arm/sha512-neon - avoid ADRL pseudo instruction + - ARM: 8933/1: replace Sun/Solaris style flag on section directive + - ARM: 8929/1: use APSR_nzcv instead of r15 as mrc operand + - ARM: OMAP2+: drop unnecessary adrl + - ARM: 9029/1: Make iwmmxt.S support Clang's integrated assembler + - crypto: arm - use Kconfig based compiler checks for crypto opcodes + - crypto: arm/ghash-ce - define fpu before fpu registers are referenced + - Linux 5.4.203 + * Focal update: v5.4.202 upstream stable release (LP: #1986995) + - random: schedule mix_interrupt_randomness() less often + - ALSA: hda/via: Fix missing beep setup + - ALSA: hda/conexant: Fix missing beep setup + - ALSA: hda/realtek - ALC897 headset MIC no sound + - ALSA: hda/realtek: Add quirk for Clevo PD70PNT + - net: openvswitch: fix parsing of nw_proto for IPv6 fragments + - mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing + - ata: libata: add qc->flags in ata_qc_complete_template tracepoint + - dm era: commit metadata in postsuspend after worker stops + - dm mirror log: clear log bits up to BITS_PER_LONG boundary + - random: quiet urandom warning ratelimit suppression message + - USB: serial: option: add Telit LE910Cx 0x1250 composition + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: option: add Quectel RM500K module support + - bpf: Fix request_sock leak in sk lookup helpers + - phy: aquantia: Fix AN when higher speeds than 1G are not advertised + - bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers + - net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms + - drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf + - erspan: do not assume transport header is always set + - net/tls: fix tls_sk_proto_close executed repeatedly + - udmabuf: add back sanity check + - x86/xen: Remove undefined behavior in setup_features() + - MIPS: Remove repetitive increase irq_err_count + - afs: Fix dynamic root getattr + - ice: ethtool: advertise 1000M speeds properly + - regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips + - igb: Make DMA faster when CPU is active on the PCIe link + - virtio_net: fix xdp_rxq_info bug after suspend/resume + - Revert "net/tls: fix tls_sk_proto_close executed repeatedly" + - gpio: winbond: Fix error code in winbond_gpio_get() + - s390/cpumf: Handle events cycles and instructions identical + - iio: adc: vf610: fix conversion mode sysfs node name + - xhci: turn off port power in shutdown + - usb: chipidea: udc: check request status before setting device address + - iio:chemical:ccs811: rearrange iio trigger get and register + - iio:accel:bma180: rearrange iio trigger get and register + - iio:accel:mxc4005: rearrange iio trigger get and register + - iio: accel: mma8452: ignore the return value of reset operation + - iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up() + - iio: trigger: sysfs: fix use-after-free on remove + - iio: adc: stm32: fix maximum clock rate for stm32mp15x + - iio: adc: axp288: Override TS pin bias current for some models + - xtensa: xtfpga: Fix refcount leak bug in setup + - xtensa: Fix refcount leak bug in time.c + - parisc: Enable ARCH_HAS_STRICT_MODULE_RWX + - powerpc: Enable execve syscall exit tracepoint + - powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address + - powerpc/powernv: wire up rng during setup_arch + - ARM: dts: imx6qdl: correct PU regulator ramp delay + - ARM: exynos: Fix refcount leak in exynos_map_pmu + - soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe + - ARM: Fix refcount leak in axxia_boot_secondary + - ARM: cns3xxx: Fix refcount leak in cns3xxx_init + - modpost: fix section mismatch check for exported init/exit sections + - random: update comment from copy_to_user() -> copy_to_iter() + - kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt) + - powerpc/pseries: wire up rng during setup_arch() + - Linux 5.4.202 + * Focal update: v5.4.201 upstream stable release (LP: #1986993) + - dm: remove special-casing of bio-based immutable singleton target on NVMe + - usb: gadget: u_ether: fix regression in setting fixed MAC address + - tcp: add some entropy in __inet_hash_connect() + - tcp: use different parts of the port_offset for index and offset + - tcp: add small random increments to the source port + - tcp: dynamically allocate the perturb table used by source ports + - tcp: increase source port perturb table to 2^16 + - tcp: drop the hash_32() part from the index calculation + - arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer + - Linux 5.4.201 + * Focal update: v5.4.200 upstream stable release (LP: #1983152) + - Revert "UBUNTU: SAUCE: random: Make getrandom() ready earlier" + - 9p: missing chunk of "fs/9p: Don't update file type when updating file + attributes" + - bpf: Fix incorrect memory charge cost calculation in stack_map_alloc() + - nfc: st21nfca: fix incorrect sizing calculations in EVT_TRANSACTION + - crypto: blake2s - generic C library implementation and selftest + - lib/crypto: blake2s: move hmac construction into wireguard + - lib/crypto: sha1: re-roll loops to reduce code size + - compat_ioctl: remove /dev/random commands + - random: don't forget compat_ioctl on urandom + - random: Don't wake crng_init_wait when crng_init == 1 + - random: Add a urandom_read_nowait() for random APIs that don't warn + - random: add GRND_INSECURE to return best-effort non-cryptographic bytes + - random: ignore GRND_RANDOM in getentropy(2) + - random: make /dev/random be almost like /dev/urandom + - random: remove the blocking pool + - random: delete code to pull data into pools + - random: remove kernel.random.read_wakeup_threshold + - random: remove unnecessary unlikely() + - random: convert to ENTROPY_BITS for better code readability + - random: Add and use pr_fmt() + - random: fix typo in add_timer_randomness() + - random: remove some dead code of poolinfo + - random: split primary/secondary crng init paths + - random: avoid warnings for !CONFIG_NUMA builds + - x86: Remove arch_has_random, arch_has_random_seed + - powerpc: Remove arch_has_random, arch_has_random_seed + - s390: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Remove arch_has_random, arch_has_random_seed + - linux/random.h: Use false with bool + - linux/random.h: Mark CONFIG_ARCH_RANDOM functions __must_check + - powerpc: Use bool in archrandom.h + - random: add arch_get_random_*long_early() + - random: avoid arch_get_random_seed_long() when collecting IRQ randomness + - random: remove dead code left over from blocking pool + - MAINTAINERS: co-maintain random.c + - crypto: blake2s - include instead of + - crypto: blake2s - adjust include guard naming + - random: document add_hwgenerator_randomness() with other input functions + - random: remove unused irq_flags argument from add_interrupt_randomness() + - random: use BLAKE2s instead of SHA1 in extraction + - random: do not sign extend bytes for rotation when mixing + - random: do not re-init if crng_reseed completes before primary init + - random: mix bootloader randomness into pool + - random: harmonize "crng init done" messages + - random: use IS_ENABLED(CONFIG_NUMA) instead of ifdefs + - random: initialize ChaCha20 constants with correct endianness + - random: early initialization of ChaCha constants + - random: avoid superfluous call to RDRAND in CRNG extraction + - random: don't reset crng_init_cnt on urandom_read() + - random: fix typo in comments + - random: cleanup poolinfo abstraction + - random: cleanup integer types + - random: remove incomplete last_data logic + - random: remove unused extract_entropy() reserved argument + - random: rather than entropy_store abstraction, use global + - random: remove unused OUTPUT_POOL constants + - random: de-duplicate INPUT_POOL constants + - random: prepend remaining pool constants with POOL_ + - random: cleanup fractional entropy shift constants + - random: access input_pool_data directly rather than through pointer + - random: selectively clang-format where it makes sense + - random: simplify arithmetic function flow in account() + - random: continually use hwgenerator randomness + - random: access primary_pool directly rather than through pointer + - random: only call crng_finalize_init() for primary_crng + - random: use computational hash for entropy extraction + - random: simplify entropy debiting + - random: use linear min-entropy accumulation crediting + - random: always wake up entropy writers after extraction + - random: make credit_entropy_bits() always safe + - random: remove use_input_pool parameter from crng_reseed() + - random: remove batched entropy locking + - random: fix locking in crng_fast_load() + - random: use RDSEED instead of RDRAND in entropy extraction + - random: get rid of secondary crngs + - random: inline leaves of rand_initialize() + - random: ensure early RDSEED goes through mixer on init + - random: do not xor RDRAND when writing into /dev/random + - random: absorb fast pool into input pool after fast load + - random: use simpler fast key erasure flow on per-cpu keys + - random: use hash function for crng_slow_load() + - random: make more consistent use of integer types + - random: remove outdated INT_MAX >> 6 check in urandom_read() + - random: zero buffer after reading entropy from userspace + - random: fix locking for crng_init in crng_reseed() + - random: tie batched entropy generation to base_crng generation + - random: remove ifdef'd out interrupt bench + - random: remove unused tracepoints + - random: add proper SPDX header + - random: deobfuscate irq u32/u64 contributions + - random: introduce drain_entropy() helper to declutter crng_reseed() + - random: remove useless header comment + - random: remove whitespace and reorder includes + - random: group initialization wait functions + - random: group crng functions + - random: group entropy extraction functions + - random: group entropy collection functions + - random: group userspace read/write functions + - random: group sysctl functions + - random: rewrite header introductory comment + - random: defer fast pool mixing to worker + - random: do not take pool spinlock at boot + - random: unify early init crng load accounting + - random: check for crng_init == 0 in add_device_randomness() + - random: pull add_hwgenerator_randomness() declaration into random.h + - random: clear fast pool, crng, and batches in cpuhp bring up + - random: round-robin registers as ulong, not u32 + - random: only wake up writers after zap if threshold was passed + - random: cleanup UUID handling + - random: unify cycles_t and jiffies usage and types + - random: do crng pre-init loading in worker rather than irq + - random: give sysctl_random_min_urandom_seed a more sensible value + - random: don't let 644 read-only sysctls be written to + - random: replace custom notifier chain with standard one + - random: use SipHash as interrupt entropy accumulator + - random: make consistent usage of crng_ready() + - random: reseed more often immediately after booting + - random: check for signal and try earlier when generating entropy + - random: skip fast_init if hwrng provides large chunk of entropy + - random: treat bootloader trust toggle the same way as cpu trust toggle + - random: re-add removed comment about get_random_{u32,u64} reseeding + - random: mix build-time latent entropy into pool at init + - random: do not split fast init input in add_hwgenerator_randomness() + - random: do not allow user to keep crng key around on stack + - random: check for signal_pending() outside of need_resched() check + - random: check for signals every PAGE_SIZE chunk of /dev/[u]random + - random: allow partial reads if later user copies fail + - random: make random_get_entropy() return an unsigned long + - random: document crng_fast_key_erasure() destination possibility + - random: fix sysctl documentation nits + - init: call time_init() before rand_initialize() + - ia64: define get_cycles macro for arch-override + - s390: define get_cycles macro for arch-override + - parisc: define get_cycles macro for arch-override + - alpha: define get_cycles macro for arch-override + - powerpc: define get_cycles macro for arch-override + - timekeeping: Add raw clock fallback for random_get_entropy() + - m68k: use fallback for random_get_entropy() instead of zero + - mips: use fallback for random_get_entropy() instead of just c0 random + - arm: use fallback for random_get_entropy() instead of zero + - nios2: use fallback for random_get_entropy() instead of zero + - x86/tsc: Use fallback for random_get_entropy() instead of zero + - um: use fallback for random_get_entropy() instead of zero + - sparc: use fallback for random_get_entropy() instead of zero + - xtensa: use fallback for random_get_entropy() instead of zero + - random: insist on random_get_entropy() existing in order to simplify + - random: do not use batches when !crng_ready() + - random: use first 128 bits of input as fast init + - random: do not pretend to handle premature next security model + - random: order timer entropy functions below interrupt functions + - random: do not use input pool from hard IRQs + - random: help compiler out with fast_mix() by using simpler arguments + - siphash: use one source of truth for siphash permutations + - random: use symbolic constants for crng_init states + - random: avoid initializing twice in credit race + - random: move initialization out of reseeding hot path + - random: remove ratelimiting for in-kernel unseeded randomness + - random: use proper jiffies comparison macro + - random: handle latent entropy and command line from random_init() + - random: credit architectural init the exact amount + - random: use static branch for crng_ready() + - random: remove extern from functions in header + - random: use proper return types on get_random_{int,long}_wait() + - random: make consistent use of buf and len + - random: move initialization functions out of hot pages + - random: move randomize_page() into mm where it belongs + - random: unify batched entropy implementations + - random: convert to using fops->read_iter() + - random: convert to using fops->write_iter() + - random: wire up fops->splice_{read,write}_iter() + - random: check for signals after page of pool writes + - Revert "random: use static branch for crng_ready()" + - crypto: drbg - always seeded with SP800-90B compliant noise source + - crypto: drbg - prepare for more fine-grained tracking of seeding state + - crypto: drbg - track whether DRBG was seeded with !rng_is_initialized() + - crypto: drbg - move dynamic ->reseed_threshold adjustments to __drbg_seed() + - crypto: drbg - always try to free Jitter RNG instance + - crypto: drbg - make reseeding from get_random_bytes() synchronous + - random: avoid checking crng_ready() twice in random_init() + - random: mark bootloader randomness code as __init + - random: account for arch randomness in bits + - powerpc/kasan: Silence KASAN warnings in __get_wchan() + - ASoC: nau8822: Add operation for internal PLL off and on + - dma-debug: make things less spammy under memory pressure + - ASoC: cs42l52: Fix TLV scales for mixer controls + - ASoC: cs35l36: Update digital volume TLV + - ASoC: cs53l30: Correct number of volume levels on SX controls + - ASoC: cs42l52: Correct TLV for Bypass Volume + - ASoC: cs42l56: Correct typo in minimum level for SX volume controls + - ata: libata-core: fix NULL pointer deref in ata_host_alloc_pinfo() + - ASoC: wm8962: Fix suspend while playing music + - ASoC: es8328: Fix event generation for deemphasis control + - ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() + - scsi: vmw_pvscsi: Expand vcpuHint to 16 bits + - scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology + - scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd + completion + - scsi: ipr: Fix missing/incorrect resource cleanup in error case + - scsi: pmcraid: Fix missing resource cleanup in error case + - ALSA: hda/realtek - Add HW8326 support + - virtio-mmio: fix missing put_device() when vm_cmdline_parent registration + failed + - nfc: nfcmrvl: Fix memory leak in nfcmrvl_play_deferred + - ipv6: Fix signed integer overflow in l2tp_ip6_sendmsg + - net: ethernet: mtk_eth_soc: fix misuse of mem alloc interface + netdev[napi]_alloc_frag + - random: credit cpu and bootloader seeds by default + - pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE + - clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() + - i40e: Fix adding ADQ filter to TC0 + - i40e: Fix calculating the number of queue pairs + - i40e: Fix call trace in setup_tx_descriptors + - tty: goldfish: Fix free_irq() on remove + - misc: atmel-ssc: Fix IRQ check in ssc_probe + - mlxsw: spectrum_cnt: Reorder counter pools + - net: bgmac: Fix an erroneous kfree() in bgmac_remove() + - arm64: ftrace: fix branch range checks + - certs/blacklist_hashes.c: fix const confusion in certs blacklist + - faddr2line: Fix overlapping text section failures, the sequel + - irqchip/gic/realview: Fix refcount leak in realview_gic_of_init + - irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions + - irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions + - i2c: designware: Use standard optional ref clock implementation + - comedi: vmk80xx: fix expression for tx buffer size + - USB: serial: option: add support for Cinterion MV31 with new baseline + - USB: serial: io_ti: add Agilent E5805A support + - usb: dwc2: Fix memory leak in dwc2_hcd_init + - usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe + - serial: 8250: Store to lsr_save_flags after lsr read + - dm mirror log: round up region bitmap size to BITS_PER_LONG + - ext4: fix bug_on ext4_mb_use_inode_pa + - ext4: make variable "count" signed + - ext4: add reserved GDT blocks check + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine + - virtio-pci: Remove wrong address verification in vp_del_vqs() + - net/sched: act_police: more accurate MTU policing + - net: openvswitch: fix leak of nested actions + - arm64: kprobes: Use BRK instead of single-step when executing instructions + out-of-line + - RISC-V: fix barrier() use in + - riscv: Less inefficient gcc tishift helpers (and export their symbols) + - powerpc/mm: Switch obsolete dssall to .long + - Linux 5.4.200 + * Focal update: v5.4.199 upstream stable release (LP: #1983150) + - Linux 5.4.199 + * Focal update: v5.4.198 upstream stable release (LP: #1982409) + - binfmt_flat: do not stop relocating GOT entries prematurely on riscv + - ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS + - USB: serial: option: add Quectel BG95 modem + - USB: new quirk for Dell Gen 2 devices + - perf/x86/intel: Fix event constraints for ICL + - ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP + - ptrace/xtensa: Replace PT_SINGLESTEP with TIF_SINGLESTEP + - ptrace: Reimplement PTRACE_KILL by always sending SIGKILL + - btrfs: add "0x" prefix for unsupported optional features + - btrfs: repair super block num_devices automatically + - drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes + - mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue + - b43legacy: Fix assigning negative value to unsigned variable + - b43: Fix assigning negative value to unsigned variable + - ipw2x00: Fix potential NULL dereference in libipw_xmit() + - ipv6: fix locking issues with loops over idev->addr_list + - fbcon: Consistently protect deferred_takeover with console_lock() + - ACPICA: Avoid cache flush inside virtual machines + - drm/komeda: return early if drm_universal_plane_init() fails. + - ALSA: jack: Access input_dev under mutex + - spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA + direction + - tools/power turbostat: fix ICX DRAM power numbers + - drm/amd/pm: fix double free in si_parse_power_table() + - ath9k: fix QCA9561 PA bias level + - media: venus: hfi: avoid null dereference in deinit + - media: pci: cx23885: Fix the error handling in cx23885_initdev() + - media: cx25821: Fix the warning when removing the module + - md/bitmap: don't set sb values if can't pass sanity check + - mmc: jz4740: Apply DMA engine limits to maximum segment size + - scsi: megaraid: Fix error check return value of register_chrdev() + - drm/plane: Move range check for format_count earlier + - drm/amd/pm: fix the compile warning + - arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall + - drm: msm: fix error check return value of irq_of_parse_and_map() + - ipv6: Don't send rs packets to the interface of ARPHRD_TUNNEL + - net/mlx5: fs, delete the FTE when there are no rules attached to it + - ASoC: dapm: Don't fold register value changes into notifications + - mlxsw: spectrum_dcb: Do not warn about priority changes + - drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo + - HID: bigben: fix slab-out-of-bounds Write in bigben_probe + - ASoC: tscs454: Add endianness flag in snd_soc_component_driver + - s390/preempt: disable __preempt_count_add() optimization for + PROFILE_ALL_BRANCHES + - spi: stm32-qspi: Fix wait_cmd timeout in APM mode + - dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC + - ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default + - ipmi:ssif: Check for NULL msg when handling events and messages + - ipmi: Fix pr_fmt to avoid compilation issues + - rtlwifi: Use pr_warn instead of WARN_ONCE + - media: coda: limit frame interval enumeration to supported encoder frame + sizes + - media: cec-adap.c: fix is_configuring state + - openrisc: start CPU timer early in boot + - nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags + - ASoC: rt5645: Fix errorenous cleanup order + - nbd: Fix hung on disconnect request if socket is closed before + - net: phy: micrel: Allow probing without .driver_data + - media: exynos4-is: Fix compile warning + - ASoC: max98357a: remove dependency on GPIOLIB + - rxrpc: Return an error to sendmsg if call failed + - eth: tg3: silence the GCC 12 array-bounds warning + - selftests/bpf: fix btf_dump/btf_dump due to recent clang change + - IB/rdmavt: add missing locks in rvt_ruc_loopback + - ARM: dts: ox820: align interrupt controller node name with dtschema + - PM / devfreq: rk3399_dmc: Disable edev on remove() + - fs: jfs: fix possible NULL pointer dereference in dbFree() + - ARM: OMAP1: clock: Fix UART rate reporting algorithm + - powerpc/fadump: Fix fadump to work with a different endian capture kernel + - fat: add ratelimit to fat*_ent_bread() + - ARM: versatile: Add missing of_node_put in dcscb_init + - ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM + - ARM: hisi: Add missing of_node_put after of_find_compatible_node + - PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() + - tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate + - powerpc/xics: fix refcount leak in icp_opal_init() + - powerpc/powernv: fix missing of_node_put in uv_init() + - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled + - powerpc/iommu: Add missing of_node_put in iommu_init_early_dart + - RDMA/hfi1: Prevent panic when SDMA is disabled + - drm: fix EDID struct for old ARM OABI format + - ath9k: fix ar9003_get_eepmisc + - drm/edid: fix invalid EDID extension block filtering + - drm/bridge: adv7511: clean up CEC adapter when probe fails + - ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe + - ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe + - x86/delay: Fix the wrong asm constraint in delay_loop() + - drm/mediatek: Fix mtk_cec_mask() + - drm/vc4: txp: Don't set TXP_VSTART_AT_EOF + - drm/vc4: txp: Force alpha to be 0xff if it's disabled + - bpf: Fix excessive memory allocation in stack_map_alloc() + - nl80211: show SSID for P2P_GO interfaces + - drm/komeda: Fix an undefined behavior bug in komeda_plane_add() + - drm: mali-dp: potential dereference of null pointer + - spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout + - NFC: NULL out the dev->rfkill to prevent UAF + - efi: Add missing prototype for efi_capsule_setup_info + - drbd: fix duplicate array initializer + - HID: hid-led: fix maximum brightness for Dream Cheeky + - HID: elan: Fix potential double free in elan_input_configured + - drm/bridge: Fix error handling in analogix_dp_probe + - sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq + - spi: img-spfi: Fix pm_runtime_get_sync() error checking + - cpufreq: Fix possible race in cpufreq online error path + - ath9k_htc: fix potential out of bounds access with invalid + rxstatus->rs_keyix + - inotify: show inotify mask flags in proc fdinfo + - fsnotify: fix wrong lockdep annotations + - of: overlay: do not break notify on NOTIFY_{OK|STOP} + - scsi: ufs: core: Exclude UECxx from SFR dump list + - x86/pm: Fix false positive kmemleak report in msr_build_context() + - x86/speculation: Add missing prototype for unpriv_ebpf_notify() + - ASoC: rk3328: fix disabling mclk on pclk probe failure + - perf tools: Add missing headers needed by util/data.h + - drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free + during pm runtime resume + - drm/msm/dsi: fix error checks and return values for DSI xmit functions + - drm/msm/hdmi: check return value after calling + platform_get_resource_byname() + - drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() + - drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() + - virtio_blk: fix the discard_granularity and discard_alignment queue limits + - x86: Fix return value of __setup handlers + - irqchip/exiu: Fix acknowledgment of edge triggered interrupts + - irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value + - x86/mm: Cleanup the control_va_addr_alignment() __setup handler + - regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET + - drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is + detected + - drm/msm/mdp5: Return error code in mdp5_mixer_release when deadlock is + detected + - drm/msm: return an error pointer in msm_gem_prime_get_sg_table() + - media: uvcvideo: Fix missing check to determine if element is found in list + - iomap: iomap_write_failed fix + - Revert "cpufreq: Fix possible race in cpufreq online error path" + - perf/amd/ibs: Use interrupt regs ip for stack unwinding + - ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe + - ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe + - regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt + - scripts/faddr2line: Fix overlapping text section failures + - media: aspeed: Fix an error handling path in aspeed_video_probe() + - media: st-delta: Fix PM disable depth imbalance in delta_probe + - media: exynos4-is: Change clk_disable to clk_disable_unprepare + - media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init + - media: vsp1: Fix offset calculation for plane cropping + - Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout + - m68k: math-emu: Fix dependencies of math emulation support + - sctp: read sk->sk_bound_dev_if once in sctp_rcv() + - media: ov7670: remove ov7670_power_off from ov7670_remove + - ext4: reject the 'commit' option on ext2 filesystems + - drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init + - drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() + - thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe + - ASoC: wm2000: fix missing clk_disable_unprepare() on error in + wm2000_anc_transition() + - NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx + - rxrpc: Fix listen() setting the bar too high for the prealloc rings + - rxrpc: Don't try to resend the request if we're receiving the reply + - rxrpc: Fix overlapping ACK accounting + - rxrpc: Don't let ack.previousPacket regress + - rxrpc: Fix decision on when to generate an IDLE ACK + - net/smc: postpone sk_refcnt increment in connect() + - arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 + - ARM: dts: suniv: F1C100: fix watchdog compatible + - soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc + - soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc + - PCI: cadence: Fix find_first_zero_bit() limit + - PCI: rockchip: Fix find_first_zero_bit() limit + - KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry + - can: xilinx_can: mark bit timing constants as const + - ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT + - ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C + - ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED + - ARM: dts: bcm2835-rpi-b: Fix GPIO line names + - misc: ocxl: fix possible double free in ocxl_file_register_afu + - crypto: marvell/cesa - ECB does not IV + - arm: mediatek: select arch timer for mt7629 + - powerpc/fadump: fix PT_LOAD segment for boot memory area + - mfd: ipaq-micro: Fix error check return value of platform_get_irq() + - scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() + - firmware: arm_scmi: Fix list protocols enumeration in the base protocol + - nvdimm: Allow overwrite in the presence of disabled dimms + - pinctrl: mvebu: Fix irq_of_parse_and_map() return value + - drivers/base/node.c: fix compaction sysfs file leak + - dax: fix cache flush on PMD-mapped pages + - powerpc/8xx: export 'cpm_setbrg' for modules + - powerpc/idle: Fix return value of __setup() handler + - powerpc/4xx/cpm: Fix return value of __setup() handler + - proc: fix dentry/inode overinstantiating under /proc/${pid}/net + - ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() + - PCI: imx6: Fix PERST# start-up sequence + - tty: fix deadlock caused by calling printk() under tty_port->lock + - crypto: cryptd - Protect per-CPU resource by disabling BH. + - Input: sparcspkr - fix refcount leak in bbc_beep_probe + - powerpc/64: Only WARN if __pa()/__va() called with bad addresses + - powerpc/perf: Fix the threshold compare group constraint for power9 + - macintosh: via-pmu and via-cuda need RTC_LIB + - powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup + - mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() + - mailbox: forward the hrtimer if not queued and under a lock + - RDMA/hfi1: Prevent use of lock before it is initialized + - Input: stmfts - do not leave device disabled in stmfts_input_open + - f2fs: fix dereference of stale list iterator after loop body + - iommu/mediatek: Add list_del in mtk_iommu_remove + - i2c: at91: use dma safe buffers + - i2c: at91: Initialize dma_buf in at91_twi_xfer() + - NFS: Do not report EINTR/ERESTARTSYS as mapping errors + - NFS: Do not report flush errors in nfs_write_end() + - NFS: Don't report errors from nfs_pageio_complete() more than once + - NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout + - video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup + - dmaengine: stm32-mdma: remove GISR1 register + - iommu/amd: Increase timeout waiting for GA log enablement + - perf c2c: Use stdio interface if slang is not supported + - perf jevents: Fix event syntax error caused by ExtSel + - f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() + - f2fs: fix to do sanity check on block address in f2fs_do_zero_range() + - f2fs: fix to clear dirty inode in f2fs_evict_inode() + - f2fs: fix deadloop in foreground GC + - f2fs: don't need inode lock for system hidden quota + - f2fs: fix fallocate to use file_modified to update permissions consistently + - wifi: mac80211: fix use-after-free in chanctx code + - iwlwifi: mvm: fix assert 1F04 upon reconfig + - fs-writeback: writeback_sb_inodes:Recalculate 'wrote' according skipped + pages + - efi: Do not import certificates from UEFI Secure Boot for T2 Macs + - bfq: Split shared queues on move between cgroups + - bfq: Update cgroup information before merging bio + - bfq: Track whether bfq_group is still online + - ext4: fix use-after-free in ext4_rename_dir_prepare + - ext4: fix warning in ext4_handle_inode_extension + - ext4: fix bug_on in ext4_writepages + - ext4: verify dir block before splitting it + - ext4: avoid cycles in directory h-tree + - ACPI: property: Release subnode properties with data nodes + - tracing: Fix potential double free in create_var_ref() + - PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 + - PCI: qcom: Fix runtime PM imbalance on probe errors + - PCI: qcom: Fix unbalanced PHY init on probe errors + - mm, compaction: fast_find_migrateblock() should return pfn in the target + zone + - dlm: fix plock invalid read + - dlm: fix missing lkb refcount handling + - ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock + - scsi: dc395x: Fix a missing check on list iterator + - scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled + - drm/amdgpu/cs: make commands with 0 chunks illegal behaviour. + - drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem + - drm/nouveau/clk: Fix an incorrect NULL check on list iterator + - drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX + - md: fix an incorrect NULL check in does_sb_need_changing + - md: fix an incorrect NULL check in md_reload_sb + - mtd: cfi_cmdset_0002: Move and rename + chip_check/chip_ready/chip_good_for_write + - media: coda: Fix reported H264 profile + - media: coda: Add more H264 levels for CODA960 + - Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug + - RDMA/hfi1: Fix potential integer multiplication overflow errors + - irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, + A38x, A39x + - irqchip: irq-xtensa-mx: fix initial IRQ affinity + - mac80211: upgrade passive scan to active scan on DFS channels after beacon + rx + - um: chan_user: Fix winch_tramp() return value + - um: Fix out-of-bounds read in LDT setup + - iommu/msm: Fix an incorrect NULL check on list iterator + - nodemask.h: fix compilation error with GCC12 + - hugetlb: fix huge_pmd_unshare address update + - rtl818x: Prevent using not initialized queues + - ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control + - carl9170: tx: fix an incorrect use of list iterator + - serial: pch: don't overwrite xmit->buf[0] by x_char + - tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator + - gma500: fix an incorrect NULL check on list iterator + - arm64: dts: qcom: ipq8074: fix the sleep clock frequency + - phy: qcom-qmp: fix struct clk leak on probe errors + - ARM: pxa: maybe fix gpio lookup tables + - docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 + - dt-bindings: gpio: altera: correct interrupt-cells + - blk-iolatency: Fix inflight count imbalances and IO hangs on offline + - phy: qcom-qmp: fix reset-controller leak on probe errors + - Kconfig: add config option for asm goto w/ outputs + - RDMA/rxe: Generate a completion for unsupported/invalid opcode + - MIPS: IP27: Remove incorrect `cpu_has_fpu' override + - bfq: Avoid merging queues with different parents + - bfq: Drop pointless unlock-lock pair + - bfq: Remove pointless bfq_init_rq() calls + - bfq: Get rid of __bio_blkcg() usage + - bfq: Make sure bfqg for which we are queueing requests is online + - block: fix bio_clone_blkg_association() to associate with proper blkcg_gq + - md: bcache: check the return value of kzalloc() in detached_dev_do_request() + - pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards + - staging: greybus: codecs: fix type confusion of list iterator variable + - iio: adc: ad7124: Remove shift from scan_type + - tty: goldfish: Use tty_port_destroy() to destroy port + - tty: serial: owl: Fix missing clk_disable_unprepare() in owl_uart_probe + - tty: serial: fsl_lpuart: fix potential bug when using both of_alias_get_id + and ida_simple_get + - usb: usbip: fix a refcount leak in stub_probe() + - usb: usbip: add missing device lock on tweak configuration cmd + - USB: storage: karma: fix rio_karma_init return + - usb: musb: Fix missing of_node_put() in omap2430_probe + - staging: fieldbus: Fix the error handling path in + anybuss_host_common_probe() + - pwm: lp3943: Fix duty calculation in case period was clamped + - rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value + - usb: dwc3: pci: Fix pm_runtime_get_sync() error checking + - firmware: stratix10-svc: fix a missing check on list iterator + - iio: adc: stmpe-adc: Fix wait_for_completion_timeout return value check + - iio: adc: sc27xx: fix read big scale voltage not right + - iio: adc: sc27xx: Fine tune the scale calibration values + - rpmsg: qcom_smd: Fix returning 0 if irq_of_parse_and_map() fails + - phy: qcom-qmp: fix pipe-clock imbalance on power-on failure + - serial: sifive: Report actual baud base rather than fixed 115200 + - coresight: cpu-debug: Replace mutex with mutex_trylock on panic notifier + - soc: rockchip: Fix refcount leak in rockchip_grf_init + - clocksource/drivers/riscv: Events are stopped during CPU suspend + - rtc: mt6397: check return value after calling platform_get_resource() + - serial: meson: acquire port->lock in startup() + - serial: 8250_fintek: Check SER_RS485_RTS_* only with RS485 + - serial: digicolor-usart: Don't allow CS5-6 + - serial: rda-uart: Don't allow CS5-6 + - serial: txx9: Don't allow CS5-6 + - serial: sh-sci: Don't allow CS5-6 + - serial: sifive: Sanitize CSIZE and c_iflag + - serial: st-asc: Sanitize CSIZE and correct PARENB for CS7 + - serial: stm32-usart: Correct CSIZE, bits, and parity + - firmware: dmi-sysfs: Fix memory leak in dmi_sysfs_register_handle + - bus: ti-sysc: Fix warnings for unbind for serial + - driver: base: fix UAF when driver_attach failed + - driver core: fix deadlock in __device_attach + - watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe + - ASoC: fsl_sai: Fix FSL_SAI_xDR/xFR definition + - clocksource/drivers/oxnas-rps: Fix irq_of_parse_and_map() return value + - s390/crypto: fix scatterwalk_unmap() callers in AES-GCM + - net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog + - net: ethernet: mtk_eth_soc: out of bounds read in mtk_hwlro_get_fdir_entry() + - net: dsa: mv88e6xxx: Fix refcount leak in mv88e6xxx_mdios_register + - modpost: fix removing numeric suffixes + - jffs2: fix memory leak in jffs2_do_fill_super + - ubi: ubi_create_volume: Fix use-after-free when volume creation failed + - nfp: only report pause frame configuration for physical device + - net/mlx5: Don't use already freed action pointer + - net/mlx5e: Update netdev features after changing XDP state + - net: sched: add barrier to fix packet stuck problem for lockless qdisc + - tcp: tcp_rtx_synack() can be called from process context + - afs: Fix infinite loop found by xfstest generic/676 + - tipc: check attribute length for bearer name + - perf c2c: Fix sorting in percent_rmt_hitm_cmp() + - mips: cpc: Fix refcount leak in mips_cpc_default_phys_base + - tracing: Fix sleeping function called from invalid context on RT kernel + - tracing: Avoid adding tracer option before update_tracer_options + - f2fs: remove WARN_ON in f2fs_is_valid_blkaddr + - i2c: cadence: Increase timeout per message if necessary + - m68knommu: set ZERO_PAGE() to the allocated zeroed page + - m68knommu: fix undefined reference to `_init_sp' + - dmaengine: zynqmp_dma: In struct zynqmp_dma_chan fix desc_size data type + - NFSv4: Don't hold the layoutget locks across multiple RPC calls + - video: fbdev: pxa3xx-gcu: release the resources correctly in + pxa3xx_gcu_probe/remove() + - xprtrdma: treat all calls not a bcall when bc_serv is NULL + - netfilter: nat: really support inet nat without l3 address + - ata: pata_octeon_cf: Fix refcount leak in octeon_cf_probe + - netfilter: nf_tables: memleak flow rule from commit path + - xen: unexport __init-annotated xen_xlate_map_ballooned_pages() + - af_unix: Fix a data-race in unix_dgram_peer_wake_me(). + - bpf, arm64: Clear prog->jited_len along prog->jited + - net: dsa: lantiq_gswip: Fix refcount leak in gswip_gphy_fw_list + - net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure + - SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() + - net: mdio: unexport __init-annotated mdio_bus_init() + - net: xfrm: unexport __init-annotated xfrm4_protocol_init() + - net: ipv6: unexport __init-annotated seg6_hmac_init() + - net/mlx5: Rearm the FW tracer after each tracer event + - net/mlx5: fs, fail conflicting actions + - ip_gre: test csum_start instead of transport header + - net: altera: Fix refcount leak in altera_tse_mdio_create + - drm: imx: fix compiler warning with gcc-12 + - iio: dummy: iio_simple_dummy: check the return value of kstrdup() + - iio: st_sensors: Add a local lock for protecting odr + - lkdtm/usercopy: Expand size of "out of frame" object + - tty: synclink_gt: Fix null-pointer-dereference in slgt_clean() + - tty: Fix a possible resource leak in icom_probe + - drivers: staging: rtl8192u: Fix deadlock in ieee80211_beacons_stop() + - drivers: staging: rtl8192e: Fix deadlock in rtllib_beacons_stop() + - USB: host: isp116x: check return value after calling platform_get_resource() + - drivers: tty: serial: Fix deadlock in sa1100_set_termios() + - drivers: usb: host: Fix deadlock in oxu_bus_suspend() + - USB: hcd-pci: Fully suspend across freeze/thaw cycle + - usb: dwc2: gadget: don't reset gadget's driver->bus + - misc: rtsx: set NULL intfdata when probe fails + - extcon: Modify extcon device to be created after driver data is set + - clocksource/drivers/sp804: Avoid error on multiple instances + - staging: rtl8712: fix uninit-value in usb_read8() and friends + - staging: rtl8712: fix uninit-value in r871xu_drv_init() + - serial: msm_serial: disable interrupts in __msm_console_write() + - kernfs: Separate kernfs_pr_cont_buf and rename_lock. + - watchdog: wdat_wdt: Stop watchdog when rebooting the system + - md: protect md_unregister_thread from reentrancy + - scsi: myrb: Fix up null pointer access on myrb_cleanup() + - ceph: allow ceph.dir.rctime xattr to be updatable + - drm/radeon: fix a possible null pointer dereference + - modpost: fix undefined behavior of is_arm_mapping_symbol() + - x86/cpu: Elide KCSAN for cpu_has() and friends + - nbd: call genl_unregister_family() first in nbd_cleanup() + - nbd: fix race between nbd_alloc_config() and module removal + - cifs: version operations for smb20 unneeded when legacy support disabled + - nodemask: Fix return values to be unsigned + - vringh: Fix loop descriptors check in the indirect cases + - scripts/gdb: change kernel config dumping method + - ALSA: hda/conexant - Fix loopback issue with CX20632 + - cifs: return errors during session setup during reconnects + - ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files + - mmc: block: Fix CQE recovery reset success + - nfc: st21nfca: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st21nfca: fix memory leaks in EVT_TRANSACTION handling + - ixgbe: fix bcast packets Rx on VF after promisc removal + - ixgbe: fix unexpected VLAN Rx in promisc mode on VF + - Input: bcm5974 - set missing URB_NO_TRANSFER_DMA_MAP urb flag + - powerpc/32: Fix overread/overwrite of thread_struct via ptrace + - md/raid0: Ignore RAID0 layout if the second zone has only one device + - mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N + - tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd + - Linux 5.4.198 + * Focal update: v5.4.197 upstream stable release (LP: #1981758) + - x86/pci/xen: Disable PCI/MSI[-X] masking for XEN_HVM guests + - staging: rtl8723bs: prevent ->Ssid overflow in rtw_wx_set_scan() + - Input: goodix - fix spurious key release events + - tcp: change source port randomizarion at connect() time + - secure_seq: use the 64 bits of the siphash for port offset calculation + - media: vim2m: Register video device after setting up internals + - media: vim2m: initialize the media device earlier + - ACPI: sysfs: Make sparse happy about address space in use + - ACPI: sysfs: Fix BERT error region memory mapping + - pinctrl: sunxi: fix f1c100s uart2 function + - net: af_key: check encryption module availability consistency + - net: ftgmac100: Disable hardware checksum on AST2600 + - i2c: ismt: Provide a DMA buffer for Interrupt Cause Logging + - drivers: i2c: thunderx: Allow driver to work with ACPI defined TWSI + controllers + - assoc_array: Fix BUG_ON during garbage collect + - cfg80211: set custom regdomain after wiphy registration + - drm/i915: Fix -Wstringop-overflow warning in call to intel_read_wm_latency() + - exec: Force single empty string when argv is empty + - netfilter: conntrack: re-fetch conntrack after insertion + - crypto: ecrdsa - Fix incorrect use of vli_cmp + - zsmalloc: fix races between asynchronous zspage free and page migration + - dm integrity: fix error code in dm_integrity_ctr() + - dm crypt: make printing of the key constant-time + - dm stats: add cond_resched when looping over entries + - dm verity: set DM_TARGET_IMMUTABLE feature flag + - raid5: introduce MD_BROKEN + - HID: multitouch: Add support for Google Whiskers Touchpad + - tpm: Fix buffer access in tpm2_get_tpm_pt() + - tpm: ibmvtpm: Correct the return value in tpm_ibmvtpm_probe() + - docs: submitting-patches: Fix crossref to 'The canonical patch format' + - NFS: Memory allocation failures are not server fatal errors + - NFSD: Fix possible sleep during nfsd4_release_lockowner() + - bpf: Enlarge offset check value to INT_MAX in bpf_skb_{load,store}_bytes + - Linux 5.4.197 + * Focal update: v5.4.196 upstream stable release (LP: #1981111) + - x86/xen: Make the boot CPU idle task reliable + - x86/xen: Make the secondary CPU idle tasks reliable + - rtc: fix use-after-free on device removal + - um: Cleanup syscall_handler_t definition/cast, fix warning + - Input: add bounds checking to input_set_capability() + - Input: stmfts - fix reference leak in stmfts_input_open + - crypto: stm32 - fix reference leak in stm32_crc_remove + - crypto: x86/chacha20 - Avoid spurious jumps to other functions + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + - nvme-multipath: fix hang when disk goes live over reconnect + - rtc: mc146818-lib: Fix the AltCentury for AMD platforms + - MIPS: lantiq: check the return value of kzalloc() + - drbd: remove usage of list iterator variable after loop + - platform/chrome: cros_ec_debugfs: detach log reader wq from devm + - ARM: 9191/1: arm/stacktrace, kasan: Silence KASAN warnings in unwind_frame() + - nilfs2: fix lockdep warnings in page operations for btree nodes + - nilfs2: fix lockdep warnings during disk space reclamation + - mmc: core: Specify timeouts for BKOPS and CACHE_FLUSH for eMMC + - mmc: block: Use generic_cmd6_time when modifying INAND_CMD38_ARG_EXT_CSD + - mmc: core: Default to generic_cmd6_time as timeout in __mmc_switch() + - SUNRPC: Clean up scheduling of autoclose + - SUNRPC: Prevent immediate close+reconnect + - SUNRPC: Don't call connect() more than once on a TCP socket + - ALSA: wavefront: Proper check of get_user() error + - perf: Fix sys_perf_event_open() race against self + - Fix double fget() in vhost_net_set_backend() + - PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold + - KVM: x86/mmu: Update number of zapped pages even if page list is stable + - crypto: qcom-rng - fix infinite loop on requests not multiple of WORD_SZ + - drm/dp/mst: fix a possible memory leak in fetch_monitor_name() + - dma-buf: fix use of DMA_BUF_SET_NAME_{A,B} in userspace + - ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi + - ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group + - net: macb: Increment rx bd head after allocating skb and buffer + - net/sched: act_pedit: sanitize shift argument before usage + - net: vmxnet3: fix possible use-after-free bugs in vmxnet3_rq_alloc_rx_buf() + - net: vmxnet3: fix possible NULL pointer dereference in vmxnet3_rq_cleanup() + - ice: fix possible under reporting of ethtool Tx and Rx statistics + - clk: at91: generated: consider range when calculating best rate + - net/qla3xxx: Fix a test in ql_reset_work() + - NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc + - net/mlx5e: Properly block LRO when XDP is enabled + - ARM: 9196/1: spectre-bhb: enable for Cortex-A15 + - ARM: 9197/1: spectre-bhb: fix loop8 sequence for Thumb2 + - igb: skip phy status check where unavailable + - net: bridge: Clear offload_fwd_mark when passing frame up bridge interface. + - gpio: gpio-vf610: do not touch other bits when set the target bit + - gpio: mvebu/pwm: Refuse requests with inverted polarity + - perf bench numa: Address compiler error on s390 + - scsi: qla2xxx: Fix missed DMA unmap for aborted commands + - mac80211: fix rx reordering with non explicit / psmp ack policy + - selftests: add ping test with ping_group_range tuned + - ethernet: tulip: fix missing pci_disable_device() on error in + tulip_init_one() + - net: stmmac: fix missing pci_disable_device() on error in stmmac_pci_probe() + - net: atlantic: verify hw_head_ lies within TX buffer ring + - Input: ili210x - fix reset timing + - block: return ELEVATOR_DISCARD_MERGE if possible + - net: stmmac: disable Split Header (SPH) for Intel platforms + - firmware_loader: use kernel credentials when reading firmware + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - x86/xen: fix booting 32-bit pv guest + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - i2c: mt7621: fix missing clk_disable_unprepare() on error in mtk_i2c_probe() + - afs: Fix afs_getattr() to refetch file status if callback break occurred + - Linux 5.4.196 + * CVE-2022-36946 + - netfilter: nf_queue: do not allow packet truncation below transport header + offset + * CVE-2021-33655 + - fbcon: Disallow setting font bigger than screen size + - fbcon: Prevent that screen size is smaller than font size + - fbmem: Check virtual screen sizes in fb_set_var() + + -- Tim Gardner Tue, 30 Aug 2022 10:06:28 -0600 + +linux-azure (5.4.0-1090.95) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1090.95 -proposed tracker (LP: #1983920) + + [ Ubuntu: 5.4.0-125.141 ] + + * focal/linux: 5.4.0-125.141 -proposed tracker (LP: #1983947) + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - blk-mq: blk-mq: provide forced completion method + - blk-mq: move failure injection out of blk_mq_complete_request + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + * CVE-2021-33656 + - vt: drop old FONT ioctls + * CVE-2021-33061 + - ixgbe: add the ability for the PF to disable VF link state + - ixgbe: add improvement for MDD response functionality + - ixgbevf: add disable link state + + -- Tim Gardner Thu, 11 Aug 2022 09:57:08 -0600 + +linux-azure (5.4.0-1089.94) focal; urgency=medium + + [ Ubuntu: 5.4.0-124.140 ] + + * CVE-2022-2586 + - SAUCE: netfilter: nf_tables: do not allow SET_ID to refer to another table + - SAUCE: netfilter: nf_tables: do not allow RULE_ID to refer to another chain + * CVE-2022-2588 + - SAUCE: net_sched: cls_route: remove from list when handle is 0 + * CVE-2022-34918 + - netfilter: nf_tables: stricter validation of element data + + -- Thadeu Lima de Souza Cascardo Fri, 05 Aug 2022 05:42:16 -0300 + +linux-azure (5.4.0-1088.93) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1088.93 -proposed tracker (LP: #1982614) + + * Azure: multi-MSI patches break fio tests on NVMe (LP: #1982613) + - Revert "PCI: hv: Fix interrupt mapping for multi-MSI" + - Revert "PCI: hv: Reuse existing IRTE allocation in compose_msi_msg()" + - Revert "PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI" + - Revert "PCI: hv: Fix multi-MSI to allow more than one MSI vector" + + -- Tim Gardner Fri, 22 Jul 2022 14:47:22 -0600 + +linux-azure (5.4.0-1087.92) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1087.92 -proposed tracker (LP: #1981257) + + * Azure: Add support for multi-MSI (LP: #1981577) + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + + [ Ubuntu: 5.4.0-123.139 ] + + * focal/linux: 5.4.0-123.139 -proposed tracker (LP: #1981284) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * Hairpin traffic does not work with centralized NAT gw (LP: #1967856) + - net: openvswitch: fix misuse of the cached connection on tuple changes + * [UBUNTU 20.04] Include patches to avoid self-detected stall with Secure + Execution (LP: #1979296) + - KVM: s390: pv: add macros for UVC CC values + - KVM: s390: pv: avoid stalls when making pages secure + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + * Focal update: v5.4.195 upstream stable release (LP: #1980407) + - batman-adv: Don't skb_split skbuffs with frag_list + - hwmon: (tmp401) Add OF device ID table + - mac80211: Reset MBSSID parameters upon connection + - net: Fix features skip in for_each_netdev_feature() + - ipv4: drop dst in multicast routing path + - drm/nouveau: Fix a potential theorical leak in nouveau_get_backlight_name() + - netlink: do not reset transport header in netlink_recvmsg() + - mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection + - dim: initialize all struct fields + - hwmon: (ltq-cputemp) restrict it to SOC_XWAY + - s390/ctcm: fix variable dereferenced before check + - s390/ctcm: fix potential memory leak + - s390/lcs: fix variable dereferenced before check + - net/sched: act_pedit: really ensure the skb is writable + - net/smc: non blocking recvmsg() return -EAGAIN when no data and + signal_pending + - net: sfc: ef10: fix memory leak in efx_ef10_mtd_probe() + - gfs2: Fix filesystem block deallocation for short writes + - hwmon: (f71882fg) Fix negative temperature + - ASoC: max98090: Reject invalid values in custom control put() + - ASoC: max98090: Generate notifications on changes for custom control + - ASoC: ops: Validate input values in snd_soc_put_volsw_range() + - s390: disable -Warray-bounds + - net: emaclite: Don't advertise 1000BASE-T and do auto negotiation + - tcp: resalt the secret every 10 seconds + - tty: n_gsm: fix mux activation issues in gsm_config() + - usb: cdc-wdm: fix reading stuck on device close + - usb: typec: tcpci: Don't skip cleanup in .remove() on error + - USB: serial: pl2303: add device id for HP LM930 Display + - USB: serial: qcserial: add support for Sierra Wireless EM7590 + - USB: serial: option: add Fibocom L610 modem + - USB: serial: option: add Fibocom MA510 modem + - slimbus: qcom: Fix IRQ check in qcom_slim_probe + - serial: 8250_mtk: Fix UART_EFR register address + - serial: 8250_mtk: Fix register address for XON/XOFF character + - drm/nouveau/tegra: Stop using iommu_present() + - i40e: i40e_main: fix a missing check on list iterator + - cgroup/cpuset: Remove cpus_allowed/mems_allowed setup in cpuset_init_smp() + - drm/vmwgfx: Initialize drm_mode_fb_cmd2 + - MIPS: fix build with gcc-12 + - net: phy: Fix race condition on link status change + - arm[64]/memremap: don't abuse pfn_valid() to ensure presence of linear map + - ping: fix address binding wrt vrf + - tty/serial: digicolor: fix possible null-ptr-deref in digicolor_uart_probe() + - Linux 5.4.195 + * Focal update: v5.4.194 upstream stable release (LP: #1980399) + - MIPS: Use address-of operator on section symbols + - block: drbd: drbd_nl: Make conversion to 'enum drbd_ret_code' explicit + - drm/amd/display/dc/gpio/gpio_service: Pass around correct dce_{version, + environment} types + - drm/i915: Cast remain to unsigned long in eb_relocate_vma + - nfp: bpf: silence bitwise vs. logical OR warning + - can: grcan: grcan_probe(): fix broken system id check for errata workaround + needs + - can: grcan: only use the NAPI poll budget for RX + - arm: remove CONFIG_ARCH_HAS_HOLES_MEMORYMODEL + - [Config] updateconfigs for ARCH_HAS_HOLES_MEMORYMODEL + - KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() + - x86/asm: Allow to pass macros to __ASM_FORM() + - x86: xen: kvm: Gather the definition of emulate prefixes + - x86: xen: insn: Decode Xen and KVM emulate-prefix signature + - x86: kprobes: Prohibit probing on instruction which has emulate prefix + - KVM: x86/svm: Account for family 17h event renumberings in + amd_pmc_perf_hw_id + - Bluetooth: Fix the creation of hdev->name + - mm: fix missing cache flush for all tail pages of compound page + - mm: hugetlb: fix missing cache flush in copy_huge_page_from_user() + - mm: userfaultfd: fix missing cache flush in mcopy_atomic_pte() and + __mcopy_atomic() + - Linux 5.4.194 + * Focal update: v5.4.193 upstream stable release (LP: #1979566) + - MIPS: Fix CP0 counter erratum detection for R4k CPUs + - parisc: Merge model and model name into one line in /proc/cpuinfo + - ALSA: fireworks: fix wrong return count shorter than expected by 4 bytes + - gpiolib: of: fix bounds check for 'gpio-reserved-ranges' + - Revert "SUNRPC: attempt AF_LOCAL connect on setup" + - firewire: fix potential uaf in outbound_phy_packet_callback() + - firewire: remove check of list iterator against head past the loop body + - firewire: core: extend card->lock in fw_core_handle_bus_reset + - ACPICA: Always create namespace nodes using acpi_ns_create_node() + - genirq: Synchronize interrupt thread startup + - ASoC: da7219: Fix change notifications for tone generator frequency + - ASoC: wm8958: Fix change notifications for DSP controls + - ASoC: meson: Fix event generation for G12A tohdmi mux + - s390/dasd: fix data corruption for ESE devices + - s390/dasd: prevent double format of tracks for ESE devices + - s390/dasd: Fix read for ESE with blksize < 4k + - s390/dasd: Fix read inconsistency for ESE DASD devices + - can: grcan: grcan_close(): fix deadlock + - can: grcan: use ofdev->dev when allocating DMA memory + - nfc: replace improper check device_is_registered() in netlink related + functions + - NFC: netlink: fix sleep in atomic bug when firmware download timeout + - hwmon: (adt7470) Fix warning on module removal + - ASoC: dmaengine: Restore NULL prepare_slave_config() callback + - RDMA/siw: Fix a condition race issue in MPA request processing + - net: ethernet: mediatek: add missing of_node_put() in mtk_sgmii_init() + - net: stmmac: dwmac-sun8i: add missing of_node_put() in + sun8i_dwmac_register_mdio_mux() + - net: emaclite: Add error handling for of_address_to_resource() + - selftests: mirror_gre_bridge_1q: Avoid changing PVID while interface is + operational + - bnxt_en: Fix possible bnxt_open() failure caused by wrong RFS flag + - smsc911x: allow using IRQ0 + - btrfs: always log symlinks in full mode + - net: igmp: respect RCU rules in ip_mc_source() and ip_mc_msfilter() + - drm/amdkfd: Use drm_priv to pass VM from KFD to amdgpu + - NFSv4: Don't invalidate inode attributes on delegation return + - kvm: x86/cpuid: Only provide CPUID leaf 0xA if host has architectural PMU + - x86/kvm: Preserve BSP MSR_KVM_POLL_CONTROL across suspend/resume + - KVM: LAPIC: Enable timer posted-interrupt only when mwait/hlt is advertised + - net: ipv6: ensure we call ipv6_mc_down() at most once + - block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern + - mm: fix unexpected zeroed page mapping with zram swap + - 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: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - tcp: make sure treq->af_specific is initialized + - dm: fix mempool NULL pointer race when completing IO + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - PCI: aardvark: Clear all MSIs at setup + - PCI: aardvark: Fix reading MSI interrupt number + - mmc: rtsx: add 74 Clocks in power on flow + - Linux 5.4.193 + * CVE-2022-1679 + - SAUCE: ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + * CVE-2022-28893 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - SUNRPC: Don't leak sockets in xs_local_connect() + * CVE-2022-1734 + - nfc: nfcmrvl: main: reorder destructive operations in + nfcmrvl_nci_unregister_dev to avoid bugs + * CVE-2022-1652 + - floppy: use a statically allocated error counter + + -- Tim Gardner Tue, 19 Jul 2022 08:28:27 -0600 + +linux-azure (5.4.0-1086.91) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1086.91 -proposed tracker (LP: #1979462) + + * Focal update: upstream stable patchset v5.4.192 (LP: #1979014) + - [Config] azure: updateconfigs for NVM, NVM_PBLK + + * focal/azure: The console log of ARM64 Ubuntu 18.04 has duplicate output + (LP: #1976399) + - printk: Move console matching logic into a separate function + - printk: Fix preferred console selection with multiple matches + + * nbd: requests can become stuck when disconnecting from server with qemu-nbd + (LP: #1896350) + - blk-mq: blk-mq: provide forced completion method + - blk-mq: move failure injection out of blk_mq_complete_request + - nbd: don't handle response without a corresponding request message + - nbd: make sure request completion won't concurrent + - nbd: don't clear 'NBD_CMD_INFLIGHT' flag if request is not completed + - nbd: fix io hung while disconnecting device + + * Azure 5.4: vDSO broken with 5.4.0-1075-azure (LP: #1977753) + - Revert "clocksource/drivers/hyper-v: Handle vDSO differences inline" + + [ Ubuntu: 5.4.0-122.138 ] + + * focal/linux: 5.4.0-122.138 -proposed tracker (LP: #1979489) + * Remove SAUCE patches from test_vxlan_under_vrf.sh in net of + ubuntu_kernel_selftests (LP: #1975691) + - Revert "UBUNTU: SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on + xfail" + - Revert "UBUNTU: SAUCE: selftests: net: Make test for VXLAN underlay in non- + default VRF an expected failure" + * Enable Asus USB-BT500 Bluetooth dongle(0b05:190e) (LP: #1976613) + - Bluetooth: btusb: Add flag to define wideband speech capability + - Bluetooth: btrtl: Add support for RTL8761B + - Bluetooth: btusb: Add 0x0b05:0x190e Realtek 8761BU (ASUS BT500) device. + * [UBUNTU 20.04] rcu stalls with many storage key guests (LP: #1975582) + - s390/gmap: voluntarily schedule during key setting + - s390/mm: use non-quiescing sske for KVM switch to keyed guest + * Ubuntu 5.4.0-117.132-generic 5.4.189 has BUG: kernel NULL pointer + dereference, address: 0000000000000034 (LP: #1978719) + - mm: rmap: explicitly reset vma->anon_vma in unlink_anon_vmas() + * Focal update: upstream stable patchset v5.4.192 (LP: #1979014) + - floppy: disable FDRAWCMD by default + - [Config] updateconfigs for BLK_DEV_FD_RAWCMD + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - lightnvm: disable the subsystem + - [Config] updateconfigs for NVM, NVM_PBLK + - usb: mtu3: fix USB 3.0 dual-role-switch from device to host + - USB: quirks: add a Realtek card reader + - USB: quirks: add STRING quirk for VCOM device + - USB: serial: whiteheat: fix heap overflow in WHITEHEAT_GET_DTR_RTS + - USB: serial: cp210x: add PIDs for Kamstrup USB Meter Reader + - USB: serial: option: add support for Cinterion MV32-WA/MV32-WB + - USB: serial: option: add Telit 0x1057, 0x1058, 0x1075 compositions + - xhci: stop polling roothubs after shutdown + - xhci: increase usb U3 -> U0 link resume timeout from 100ms to 500ms + - iio: dac: ad5592r: Fix the missing return value. + - iio: dac: ad5446: Fix read_raw not returning set value + - iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() + - usb: misc: fix improper handling of refcount in uss720_probe() + - usb: typec: ucsi: Fix role swapping + - usb: gadget: uvc: Fix crash when encoding data for usb request + - usb: gadget: configfs: clear deactivation flag in + configfs_composite_unbind() + - usb: dwc3: core: Fix tx/rx threshold settings + - usb: dwc3: gadget: Return proper request status + - serial: imx: fix overrun interrupts in DMA mode + - serial: 8250: Also set sticky MCR bits in console restoration + - serial: 8250: Correct the clock for EndRun PTP/1588 PCIe device + - arch_topology: Do not set llc_sibling if llc_id is invalid + - hex2bin: make the function hex_to_bin constant-time + - hex2bin: fix access beyond string end + - video: fbdev: udlfb: properly check endpoint type + - arm64: dts: meson: remove CPU opps below 1GHz for G12B boards + - arm64: dts: meson: remove CPU opps below 1GHz for SM1 boards + - mtd: rawnand: fix ecc parameters for mt7622 + - USB: Fix xhci event ring dequeue pointer ERDP update issue + - ARM: dts: imx6qdl-apalis: Fix sgtl5000 detection issue + - phy: samsung: Fix missing of_node_put() in exynos_sata_phy_probe + - phy: samsung: exynos5250-sata: fix missing device put in probe error paths + - ARM: OMAP2+: Fix refcount leak in omap_gic_of_init + - phy: ti: omap-usb2: Fix error handling in omap_usb2_enable_clocks + - ARM: dts: at91: Map MCLK for wm8731 on at91sam9g20ek + - phy: mapphone-mdm6600: Fix PM error handling in phy_mdm6600_probe + - phy: ti: Add missing pm_runtime_disable() in serdes_am654_probe + - ARM: dts: Fix mmc order for omap3-gta04 + - ARM: dts: am3517-evm: Fix misc pinmuxing + - ARM: dts: logicpd-som-lv: Fix wrong pinmuxing on OMAP35 + - ipvs: correctly print the memory size of ip_vs_conn_tab + - mtd: rawnand: Fix return value check of wait_for_completion_timeout + - bpf, lwt: Fix crash when using bpf_skb_set_tunnel_key() from bpf_xmit lwt + hook + - tcp: md5: incorrect tcp_header_len for incoming connections + - tcp: ensure to use the most recently sent skb when filling the rate sample + - sctp: check asoc strreset_chunk in sctp_generate_reconf_event + - ARM: dts: imx6ull-colibri: fix vqmmc regulator + - arm64: dts: imx8mn-ddr4-evk: Describe the 32.768 kHz PMIC clock + - pinctrl: pistachio: fix use of irq_of_parse_and_map() + - cpufreq: fix memory leak in sun50i_cpufreq_nvmem_probe + - net: hns3: add validity check for message data length + - net/smc: sync err code when tcp connection was refused + - ip_gre: Make o_seqno start from 0 in native mode + - tcp: fix potential xmit stalls caused by TCP_NOTSENT_LOWAT + - bus: sunxi-rsb: Fix the return value of sunxi_rsb_device_create() + - clk: sunxi: sun9i-mmc: check return value after calling + platform_get_resource() + - net: bcmgenet: hide status block before TX timestamping + - net: dsa: lantiq_gswip: Don't set GSWIP_MII_CFG_RMII_CLK + - drm/amd/display: Fix memory leak in dcn21_clock_source_create + - tls: Skip tls_append_frag on zero copy size + - bnx2x: fix napi API usage sequence + - ixgbe: ensure IPsec VF<->PF compatibility + - tcp: fix F-RTO may not work correctly when receiving DSACK + - ASoC: wm8731: Disable the regulator when probing fails + - ip6_gre: Avoid updating tunnel->tun_hlen in __gre6_xmit() + - x86: __memcpy_flushcache: fix wrong alignment if size > 2^32 + - cifs: destage any unwritten data to the server before calling + copychunk_write + - drivers: net: hippi: Fix deadlock in rr_close() + - net: ethernet: stmmac: fix write to sgmii_adapter_base + - x86/cpu: Load microcode during restore_processor_state() + - tty: n_gsm: fix wrong signal octet encoding in convergence layer type 2 + - tty: n_gsm: fix malformed counter for out of frame data + - netfilter: nft_socket: only do sk lookups when indev is available + - tty: n_gsm: fix insufficient txframe size + - tty: n_gsm: fix missing explicit ldisc flush + - tty: n_gsm: fix wrong command retry handling + - tty: n_gsm: fix wrong command frame length field encoding + - tty: n_gsm: fix incorrect UA handling + - hugetlbfs: get unmapped area below TASK_UNMAPPED_BASE for hugetlbfs + - mm, hugetlb: allow for "high" userspace addresses + - Linux 5.4.192 + * CVE-2022-1789 + - KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID + * Focal update: v5.4.191 upstream stable release (LP: #1976116) + - etherdevice: Adjust ether_addr* prototypes to silence -Wstringop-overead + - mm: page_alloc: fix building error on -Werror=array-compare + - tracing: Dump stacktrace trigger to the corresponding instance + - gfs2: assign rgrp glock before compute_bitstructs + - tcp: fix race condition when creating child sockets from syncookies + - tcp: Fix potential use-after-free due to double kfree() + - ALSA: usb-audio: Clear MIDI port active flag after draining + - ASoC: atmel: Remove system clock tree configuration for at91sam9g20ek + - ASoC: msm8916-wcd-digital: Check failure for devm_snd_soc_register_component + - dmaengine: imx-sdma: Fix error checking in sdma_event_remap + - dmaengine: mediatek:Fix PM usage reference leak of + mtk_uart_apdma_alloc_chan_resources + - igc: Fix infinite loop in release_swfw_sync + - igc: Fix BUG: scheduling while atomic + - rxrpc: Restore removed timer deletion + - net/smc: Fix sock leak when release after smc_shutdown() + - net/packet: fix packet_sock xmit return value checking + - net/sched: cls_u32: fix possible leak in u32_init_knode() + - l3mdev: l3mdev_master_upper_ifindex_by_index_rcu should be using + netdev_master_upper_dev_get_rcu + - netlink: reset network and mac headers in netlink_dump() + - selftests: mlxsw: vxlan_flooding: Prevent flooding of unwanted packets + - ARM: vexpress/spc: Avoid negative array index when !SMP + - reset: tegra-bpmp: Restore Handle errors in BPMP response + - platform/x86: samsung-laptop: Fix an unsigned comparison which can never be + negative + - ALSA: usb-audio: Fix undefined behavior due to shift overflowing the + constant + - vxlan: fix error return code in vxlan_fdb_append + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - mt76: Fix undefined behavior due to shift overflowing the constant + - brcmfmac: sdio: Fix undefined behavior due to shift overflowing the constant + - dpaa_eth: Fix missing of_node_put in dpaa_get_ts_info() + - drm/msm/mdp5: check the return of kzalloc() + - net: macb: Restart tx only if queue pointer is lagging + - scsi: qedi: Fix failed disconnect handling + - stat: fix inconsistency between struct stat and struct compat_stat + - EDAC/synopsys: Read the error count from the correct register + - oom_kill.c: futex: delay the OOM reaper to allow time for proper futex + cleanup + - ata: pata_marvell: Check the 'bmdma_addr' beforing reading + - dma: at_xdmac: fix a missing check on list iterator + - drm/panel/raspberrypi-touchscreen: Avoid NULL deref if not initialised + - drm/panel/raspberrypi-touchscreen: Initialise the bridge in prepare + - KVM: PPC: Fix TCE handling for VFIO + - drm/vc4: Use pm_runtime_resume_and_get to fix pm_runtime_get_sync() usage + - powerpc/perf: Fix power9 event alternatives + - xtensa: patch_text: Fixup last cpu should be master + - xtensa: fix a7 clobbering in coprocessor context load/store + - openvswitch: fix OOB access in reserve_sfa_size() + - ASoC: soc-dapm: fix two incorrect uses of list iterator + - e1000e: Fix possible overflow in LTR decoding + - ARC: entry: fix syscall_trace_exit argument + - arm_pmu: Validate single/group leader events + - ext4: fix symlink file size not match to file content + - ext4: fix use-after-free in ext4_search_dir + - ext4, doc: fix incorrect h_reserved size + - ext4: fix overhead calculation to account for the reserved gdt blocks + - ext4: force overhead calculation if the s_overhead_cluster makes no sense + - jbd2: fix a potential race while discarding reserved buffers after an abort + - spi: atmel-quadspi: Fix the buswidth adjustment between spi-mem and + controller + - staging: ion: Prevent incorrect reference counting behavour + - block/compat_ioctl: fix range check in BLKGETSIZE + - Linux 5.4.191 + * Focal update: v5.4.190 upstream stable release (LP: #1973085) + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - sctp: Initialize daddr on peeled off socket + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - drm/amd: Add USBC connector ID + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - drm/amd/display: Fix allocate_mst_payload assert on resume + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm, page_alloc: fix build_zonerefs_node() + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - gcc-plugins: latent_entropy: use /dev/urandom + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dma-direct: avoid redundant memory sync for swiotlb + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.4.190 + + [ Ubuntu: 5.4.0-121.137 ] + + * focal/linux: 5.4.0-121.137 -proposed tracker (LP: #1978666) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * CVE-2022-28388 + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + * test_vxlan_under_vrf.sh in net from ubuntu_kernel_selftests failed (Check VM + connectivity through VXLAN (underlay in the default VRF) [FAIL]) + (LP: #1871015) + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + * [UBUNTU 20.04] CPU-MF: add extended counter set definitions for new IBM z16 + (LP: #1974433) + - s390/cpumf: add new extended counter set for IBM z16 + * [UBUNTU 20.04] KVM nesting support leaks too much memory, might result in + stalls during cleanup (LP: #1974017) + - KVM: s390: vsie/gmap: reduce gmap_rmap overhead + * [UBUNTU 20.04] Null Pointer issue in nfs code running Ubuntu on IBM Z + (LP: #1968096) + - NFS: Fix up nfs_ctx_key_to_expire() + + -- Tim Gardner Thu, 23 Jun 2022 13:20:45 -0600 + +linux-azure (5.4.0-1085.90) focal; urgency=medium + + [ Ubuntu: 5.4.0-120.136 ] + + * CVE-2022-21123 // CVE-2022-21125 // CVE-2022-21166 + - cpu/speculation: Add prototype for cpu_show_srbds() + - x86/cpu: Add Jasper Lake to Intel family + - x86/cpu: Add Lakefield, Alder Lake and Rocket Lake models to the to Intel + CPU family + - x86/cpu: Add another Alder Lake CPU to the Intel family + - Documentation: Add documentation for Processor MMIO Stale Data + - x86/speculation/mmio: Enumerate Processor MMIO Stale Data bug + - x86/speculation: Add a common function for MD_CLEAR mitigation update + - x86/speculation/mmio: Add mitigation for Processor MMIO Stale Data + - x86/bugs: Group MDS, TAA & Processor MMIO Stale Data mitigations + - x86/speculation/mmio: Enable CPU Fill buffer clearing on idle + - x86/speculation/mmio: Add sysfs reporting for Processor MMIO Stale Data + - x86/speculation/srbds: Update SRBDS mitigation selection + - x86/speculation/mmio: Reuse SRBDS mitigation for SBDS + - KVM: x86/speculation: Disable Fill buffer clear within guests + - x86/speculation/mmio: Print SMT warning + + -- Thadeu Lima de Souza Cascardo Fri, 10 Jun 2022 11:20:03 -0300 + +linux-azure (5.4.0-1083.87) focal; urgency=medium + + [ Ubuntu: 5.4.0-117.132 ] + + * CVE-2022-1966 + - netfilter: nf_tables: add nft_set_elem_expr_alloc() + - netfilter: nf_tables: disallow non-stateful expression in sets earlier + + -- Thadeu Lima de Souza Cascardo Wed, 01 Jun 2022 21:52:55 -0300 + +linux-azure (5.4.0-1081.84) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1081.84 -proposed tracker (LP: #1974363) + + * Azure: Mellanox VF NIC crashes when removed (LP: #1973758) + - PCI: hv: Avoid a kmemleak false positive caused by the hbus buffer + - PCI: hv: Add missing kfree(hbus) in hv_pci_probe()'s error handling path + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] azure: CONFIG_HISI_PMU=m + + * [Azure] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + (LP: #1972662) + - PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + + * linux-azure: Patch Set for ARM64 Images 20.04 and 18.04 (LP: #1970468) + - Drivers: hv: balloon: Support status report for larger page sizes + - Drivers: hv: balloon: Disable balloon and hot-add accordingly + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + + [ Ubuntu: 5.4.0-115.129 ] + + * CVE-2022-21499 + - SAUCE: debug: Lock down kgdb + + [ Ubuntu: 5.4.0-114.128 ] + + * focal/linux: 5.4.0-114.128 -proposed tracker (LP: #1974391) + * 32 GT/s PCI link speeds reporting "Unknown speed" in sysfs (LP: #1970798) + - PCI: Add 32 GT/s decoding in some macros + - PCI: Add pci_speed_string() + - PCI: Use pci_speed_string() for all PCI/PCI-X/PCIe strings + - PCI: Add PCIE_LNKCAP2_SLS2SPEED() macro + * issuing invalid ioctl to /dev/vsock may spam dmesg (LP: #1971480) + - vsock: remove ratelimit unknown ioctl message + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - drivers/perf: hisi: Permit modular builds of HiSilicon uncore drivers + - [Config] CONFIG_HISI_PMU=m + * Focal update: v5.4.189 upstream stable release (LP: #1971497) + - swiotlb: fix info leak with DMA_FROM_DEVICE + - USB: serial: pl2303: add IBM device IDs + - USB: serial: simple: add Nokia phone driver + - netdevice: add the case if dev is NULL + - HID: logitech-dj: add new lightspeed receiver id + - xfrm: fix tunnel model fragmentation behavior + - virtio_console: break out of buf poll on remove + - ethernet: sun: Free the coherent when failing in probing + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - spi: Fix erroneous sgs value with min_t() + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - iommu/iova: Improve 32-bit free space estimate + - tpm: fix reference counting for struct tpm_chip + - block: Add a helper to validate the block size + - virtio-blk: Use blk_validate_block_size() to validate block size + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - 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() + - coresight: Fix TRCCONFIGR.QE sysfs interface + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: uniphier: Fix fixed-rate initialization + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - 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 + - pinctrl: samsung: drop pin banks references on error paths + - spi: mxic: Fix the transmit 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/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: 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: Fix fill_callchain return value + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - udp: call udp_encap_enable for v6 sockets when enabling encap + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - mailbox: tegra-hsp: Flush whole channel + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - 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 + - carl9170: fix missing bit-wise or operator for tx_params + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - 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() + - DEC: Limit PMAX memory probing to R3k systems + - media: davinci: vpif: fix unbalanced runtime PM get + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - PCI: pciehp: Clear cmd_busy bit in polling mode + - regulator: qcom_smd: fix for_each_child.cocci warnings + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - selftests/x86: Add validity check and allow field splitting + - audit: log AUDIT_TIME_* records only from rules + - crypto: ccree - don't attempt 0 len DMA mappings + - 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 + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - hwrng: atmel - disable trng on failure path + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - f2fs: fix to avoid potential deadlock + - media: bttv: fix WARNING regression on tunerless devices + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: hantro: Fix overfill bottom register field name + - media: aspeed: Correct value for h-total-pixels + - 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: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: video/hdmi: handle short reads of hdmi info frame. + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - 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: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - 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 + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - udmabuf: validate ubuf->pagecount + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - ath9k_htc: fix uninit value bugs + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - 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/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - 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 abort all task initialization + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - 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 + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - PCI: Reduce warnings on possible RW1C corruption + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - powerpc/sysdev: fix incorrect use to determine if list is empty + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - MIPS: RB532: fix return value of __setup handler + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - 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 + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - misc: alcor_pci: Fix an error handling path + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - NFS: Return valid errors from nfs2/3_decode_dirent() + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - 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 + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - clk: qcom: gcc-msm8994: Fix gpll4 width + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - 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 + - lib/test: use after free in register_test_dev_kmod() + - LSM: general protection fault in legacy_parse_param + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - 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 + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - spi: tegra20: Use of_device_get_match_data() + - ext4: don't BUG if someone dirty pages without asking ext4 first + - ntfs: add sanity check on allocation size + - 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 + - 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 + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: cx88-mpeg: clear interrupt status register before streaming video + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Fix build errors with newer binutils + - scsi: qla2xxx: Fix stuck session in gpdb + - 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: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - 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: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: rename_whiteout: correct old_dir size computing + - 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 + - XArray: Update the LRU list in xas_split() + - rtc: check if __rtc_read_time was successful + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - powerpc/kasan: Fix early region not updated correctly + - ASoC: soc-compress: Change the check for codec_dai + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - 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 + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: topology: Allow TLV control to be either read or write + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - um: Fix uml_mconsole stop/go + - openvswitch: Fixed nd target mask field in the flow dump. + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - rtc: wm8350: Handle error for wm8350_register_irq + - riscv module: remove (NOLOAD) + - ARM: 9187/1: JIVE: fix return value of __setup handler + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - ptp: replace snprintf with sysfs_emit + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - 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() + - power: supply: axp20x_battery: properly report current when discharging + - ipv6: make mc_forwarding atomic + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - power: supply: axp288-charger: Set Vhold to 4.4V + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - drm/amdkfd: make CRAT table missing message informational only + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - bnxt_en: Eliminate unintended link toggle during FW reset + - MIPS: fix fortify panic when copying asm exception handlers + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - xtensa: fix DTC warning unit_address_format + - Bluetooth: Fix use after free in hci_send_acl + - netlabel: fix out-of-bounds memory accesses + - 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 + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4: Protect the state recovery thread against direct reclaim + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - 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 + - 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 + - KVM: arm64: Check arm64_get_bp_hardening_data() didn't return NULL + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - bnxt_en: reserve space inside receive page for skb_shared_info + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ipv6: Fix stats accounting in ip6_pkt_drop + - net: openvswitch: don't send internal clone attribute to the userspace. + - rxrpc: fix a race in rxrpc_exit_net() + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - lz4: fix LZ4_decompress_safe_partial read out of bound + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - btrfs: fix qgroup reserve overflow the qgroup limit + - arm64: patch_text: Fixup last cpu should be master + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - 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" + - mmc: mmci_sdmmc: Replace sg_dma_xxx macros + - mmc: mmci: stm32: correctly check all elements of sg list + - mm: don't skip swap entry even if zap_details specified + - arm64: module: remove (NOLOAD) from linker script + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - drm/amdkfd: add missing void argument to function kgd2kfd_init + - drm/amdkfd: Fix -Wstrict-prototypes from + amdgpu_amdkfd_gfx_10_0_get_functions() + - 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 + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - Linux 5.4.189 + * Focal update: v5.4.188 upstream stable release (LP: #1971496) + - nfsd: cleanup nfsd_file_lru_dispose() + - nfsd: Containerise filecache laundrette + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - staging: fbtft: fb_st7789v: reset display before initialization + - thermal: int340x: fix memory leak in int3400_notify() + - llc: fix netdevice reference leaks in llc_ui_bind() + - 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 + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - 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 + - rcu: Don't deboost before reporting expedited quiescent state + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.4.188 + * Focal update: v5.4.187 upstream stable release (LP: #1971493) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - efi: fix return value of __setup handlers + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - hv_netvsc: Add check for kvmalloc_array + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - Linux 5.4.187 + * Focal update: v5.4.186 upstream stable release (LP: #1969678) + - Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0" + - sctp: fix the processing for INIT chunk + - 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: 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 + - 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 + - kselftest/vm: fix tests build with old libc + - fixup for "arm64 entry: Add macro for reading symbol address from the + trampoline" + - Linux 5.4.186 + * Focal update: v5.4.185 upstream stable release (LP: #1969672) + - clk: qcom: gdsc: Add support to update GDSC transition delay + - arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias + - virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero + - net: qlogic: check the return value of dma_alloc_coherent() in + qed_vf_hw_prepare() + - qed: return status of qed_iov_get_link + - drm/sun4i: mixer: Fix P010 and P210 format numbers + - ARM: dts: aspeed: Fix AST2600 quad spi group + - ethernet: Fix error handling in xemaclite_of_probe + - net: ethernet: ti: cpts: Handle error for clk_enable + - net: ethernet: lpc_eth: Handle error for clk_enable + - 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 + - NFC: port100: fix use-after-free in port100_send_complete + - selftests: pmtu.sh: Kill tcpdump processes launched by 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-sysfs: add check for netdevice being present to speed_show + - 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 + - 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 pipe buffer lifetime for direct_io + - staging: gdm724x: fix use after free in gdm_lte_rx() + - net: macb: Fix lost RX packet wakeup race in NAPI receive + - mmc: meson: Fix usage of meson_mmc_post_req() + - riscv: Fix auipc+jalr relocation range checks + - arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0 + - virtio: unexport virtio_finalize_features + - virtio: acknowledge all features before access + - ARM: fix Thumb2 regression with Spectre BHB + - ext4: add check to prevent attempting to resize an fs with sparse_super2 + - x86/cpufeatures: Mark two free bits in word 3 + - x86/cpu: Add hardware-enforced cache coherency as a CPUID feature + - x86/mm/pat: Don't flush cache if hardware enforces cache coherency across + encryption domnains + - KVM: SVM: Don't flush cache if hardware enforces cache coherency across + encryption domains + - Linux 5.4.185 + * Focal update: v5.4.184 upstream stable release (LP: #1969242) + - arm/arm64: Provide a wrapper for SMCCC 1.1 calls + - arm/arm64: smccc/psci: add arm_smccc_1_1_get_conduit() + - ARM: report Spectre v2 status through sysfs + - ARM: early traps initialisation + - ARM: use LOADADDR() to get load address of sections + - [Config] updateconfigs for HARDEN_BRANCH_HISTORY + - ARM: Spectre-BHB workaround + - ARM: include unprivileged BPF status in Spectre V2 reporting + - ARM: fix build error when BPF_SYSCALL is disabled + - ARM: fix co-processor register typo + - ARM: Do not use NOCROSSREFS directive with ld.lld + - 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() + - Linux 5.4.184 + * Focal update: v5.4.183 upstream stable release (LP: #1969239) + - 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 + - Input: clear BTN_RIGHT/MIDDLE on buttonpads + - cifs: fix double free race when mount fails in cifs_get_root() + - dmaengine: shdma: Fix runtime PM imbalance on error + - i2c: cadence: allow COMPILE_TEST + - i2c: qup: allow COMPILE_TEST + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990 + - usb: gadget: don't release an existing dev->buf + - usb: gadget: clear related members when goto fail + - ata: pata_hpt37x: fix PCI clock detection + - ALSA: intel_hdmi: Fix reference to PCM buffer address + - ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min + - xfrm: fix MTU regression + - netfilter: fix use-after-free in __nf_register_net_hook() + - xfrm: enforce validity of offload input flags + - netfilter: nf_queue: don't assume sk is full socket + - netfilter: nf_queue: fix possible use-after-free + - 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: dcb: flush lingering app table entries for unregistered devices + - 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 + - block: Fix fsync always failed if once failed + - xen/netfront: destroy queues before real_num_tx_queues is zeroed + - sched/topology: Make sched_init_numa() use a set for the deduplicating sort + - sched/topology: Fix sched_domain_topology_level alloc in sched_init_numa() + - ia64: ensure proper NUMA distance and possible map initialization + - mac80211: fix forwarded mesh frames AC & queue selection + - net: stmmac: fix return value of __setup handler + - iavf: Fix missing check for running netdev + - net: sxgbe: fix return value of __setup handler + - net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe() + - ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() + - efivars: Respect "block" flag in efivar_entry_set_safe() + - firmware: arm_scmi: Remove space in MODULE_ALIAS name + - ASoC: cs4265: Fix the duplicated control name + - can: gs_usb: change active_channels's type from atomic_t to u8 + - 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 + - ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions + - 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 + - soc: fsl: qe: Check of ioremap return value + - net: chelsio: cxgb3: check the return value of pci_find_capability() + - nl80211: Handle nla_memdup failures in handle_nan_filter + - 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 + - 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: qgroup: fix deadlock between rescan worker and remove qgroup + - btrfs: add missing run of delayed items after unlink during log replay + - Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6" + - net: dcb: disable softirqs in dcbnl_flush_dev() + - hamradio: fix macro redefine warning + - Linux 5.4.183 + * Focal update: v5.4.182 upstream stable release (LP: #1969236) + - cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug + - clk: jz4725b: fix mmc0 clock gating + - 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 + - drm/amdgpu: disable MMHUB PG for Picasso + - sr9700: sanity check for packet length + - USB: zaurus: support another broken Zaurus + - x86/fpu: Correct pkru/xstate inconsistency + - tee: export teedev_open() and teedev_close_context() + - optee: use driver internal tee_context for some rpc + - lan743x: fix deadlock in lan743x_phy_link_status_change() + - ping: remove pr_err from ping_lookup + - perf data: Fix double free in perf_session__delete() + - bpf: Do not try bpf_msg_push_data with len 0 + - net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends + - 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 + - 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 + - net: ll_temac: check the return value of devm_kmalloc() + - net: Force inlining of checksum functions in net/checksum.h + - nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() + - netfilter: nf_tables: fix memory leak during stateful obj update + - net/mlx5: Fix possible deadlock on rule deletion + - net/mlx5: Fix wrong limitation of metadata match on ecpf + - spi: spi-zynq-qspi: Fix a NULL pointer dereference in + zynq_qspi_exec_mem_op() + - configfs: fix a race in configfs_{,un}register_subsystem() + - RDMA/ib_srp: Fix a deadlock + - tracing: Have traceon and traceoff trigger honor the instance + - iio: adc: men_z188_adc: Fix a resource leak in an error handling path + - iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits + - iio: Fix error handling for PM + - 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 + - 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: 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. + - 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 + - gpio: tegra186: Fix chip_data type confusion + - Revert "drm/nouveau/pmu/gm200-: avoid touching PMU outside of + DEVINIT/PREOS/ACR" + - memblock: use kfree() to release kmalloced memblock regions + - fget: clarify and improve __fget_files() implementation + - Linux 5.4.182 + * CVE-2022-28390 + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + + -- Tim Gardner Thu, 26 May 2022 12:05:02 -0600 + +linux-azure (5.4.0-1080.83) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1080.83 -proposed tracker (LP: #1973952) + + [ Ubuntu: 5.4.0-113.127 ] + + * focal/linux: 5.4.0-113.127 -proposed tracker (LP: #1973980) + * CVE-2022-29581 + - net/sched: cls_u32: fix netns refcount changes in u32_change() + * CVE-2022-1116 + - io_uring: fix fs->users overflow + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + * Unprivileged users may use PTRACE_SEIZE to set PTRACE_O_SUSPEND_SECCOMP + option (LP: #1972740) + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + + -- Tim Gardner Thu, 19 May 2022 07:06:08 -0600 + +linux-azure (5.4.0-1078.81) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1078.81 -proposed tracker (LP: #1969026) + + * linux-azure: Harmonize arm64 config settings with amd64 (LP: #1968900) + - [Config] azure: Harmonize arm64 config settings with amd64 + - [Config] azure: do_enforce_all=true + - [Config] azure: format annotations + + * linux-azure: add check to prevent attempting to resize an fs with + sparse_super2 (LP: #1970223) + - ext4: add check to prevent attempting to resize an fs with sparse_super2 + + [ Ubuntu: 5.4.0-110.124 ] + + * focal/linux: 5.4.0-110.124 -proposed tracker (LP: #1969053) + * net/mlx5e: Fix page DMA map/unmap attributes (LP: #1967292) + - net/mlx5e: Fix page DMA map/unmap attributes + * xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + (LP: #1966803) + - xfs: Fix deadlock between AGI and AGF when target_ip exists in xfs_rename() + * LRMv6: add multi-architecture support (LP: #1968774) + - [Packaging] resync dkms-build{,--nvidia-N} + * xfrm interface cannot be changed anymore (LP: #1968591) + - xfrm: fix the if_id check in changelink + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + * vmx_ldtr_test in ubuntu_kvm_unit_tests failed (FAIL: Expected 0 for L1 LDTR + selector (got 50)) (LP: #1956315) + - KVM: nVMX: Set LDTR to its architecturally defined value on nested VM-Exit + * [SRU][Regression] Revert "PM: ACPI: reboot: Use S5 for reboot" which causes + Bus Fatal Error when rebooting system with BCM5720 NIC (LP: #1917471) + - Revert "PM: ACPI: reboot: Use S5 for reboot" + * Focal update: v5.4.181 upstream stable release (LP: #1967582) + - Makefile.extrawarn: Move -Wunaligned-access to W=1 + - HID:Add support for UGTABLET WP5540 + - Revert "svm: Add warning message for AVIC IPI invalid target" + - 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 + - btrfs: send: in case of IO error log it + - platform/x86: ISST: Fix possible circular locking dependency detected + - selftests: rtc: Increase test timeout so that all tests run + - 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 + - ax25: improve the incomplete fix to avoid UAF and NPD bugs + - vfs: make freeze_super abort when sync_filesystem returns error + - quota: make dquot_quota_sync return errors from ->sync_fs + - 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 + - drm/amdgpu: fix logic inversion in check + - Revert "module, async: async_synchronize_full() on module init iff async is + used" + - ftrace: add ftrace_init_nop() + - module/ftrace: handle patchable-function-entry + - arm64: module: rework special section handling + - arm64: module/ftrace: intialize PLT at load time + - iwlwifi: fix use-after-free + - drm/radeon: Fix backlight control on iMac 12,1 + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: check for inconsistent extents between index and leaf block + - ext4: prevent partial update of the extent blocks + - taskstats: Cleanup the use of task->exit_code + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - vsock: remove vsock from connected table when connect is interrupted by a + signal + - mmc: block: fix read single on recovery logic + - iwlwifi: pcie: fix locking when "HW not ready" + - iwlwifi: pcie: gen2: fix locking when "HW not ready" + - netfilter: nft_synproxy: unregister hooks on init error path + - net: dsa: lan9303: fix reset on probe + - 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 + - bonding: fix data-races around agg_select_timer + - libsubcmd: Fix use-after-free for realloc(..., 0) + - 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() + - powerpc/lib/sstep: fix 'ptesync' build error + - mtd: rawnand: gpmi: don't leak PM reference in error path + - block/wbt: fix negative inflight counter when remove scsi device + - NFS: LOOKUP_DIRECTORY is also ok with symlinks + - NFS: Do not report writeback errors in nfs_getattr() + - mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe() + - mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status + - scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop + - EDAC: Fix calculation of returned address and next offset in + edac_align_ptr() + - net: sched: limit TC_ACT_REPEAT loops + - dmaengine: sh: rcar-dmac: Check for error num after setting mask + - copy_process(): Move fd_install() out of sighand->siglock critical section + - i2c: brcmstb: fix support for DSL and CM variants + - Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj + - 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 + - irqchip/sifive-plic: Add missing thead,c900-plic match string + - netfilter: conntrack: don't refresh sctp entries in closed state + - 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 + - kconfig: let 'shell' return enough output for deep path names + - ata: libata-core: Disable TRIM on M88V29 + - drm/rockchip: dw_hdmi: Do not leave clock enabled in error case + - tracing: Fix tp_printk option related with tp_printk_stop_on_boot + - 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 + - Linux 5.4.181 + * Focal update: v5.4.180 upstream stable release (LP: #1966118) + - integrity: check the return value of audit_log_start() + - 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 + - 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: Clamp WRITE offsets + - NFSD: Fix offset type in I/O trace points + - 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 expose nfs_parse_server_name function + - drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer + - net: sched: Clarify error message when qdisc kind is unknown + - scsi: target: iscsi: Make sure the np under each tpg is unique + - scsi: qedf: Fix refcount issue when LOGO is received during TMF + - scsi: myrs: Fix crash in error case + - PM: hibernate: Remove register_nosave_region_late() + - usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend + - net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout() + - KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER + - riscv: fix build with binutils 2.38 + - ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group + - 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 + - net: bridge: fix stale eth hdr pointer in br_dev_xmit + - perf probe: Fix ppc64 'perf probe add events failed' case + - ARM: dts: meson: Fix the UART compatible strings + - staging: fbtft: Fix error path in fbtft_driver_module_init() + - ARM: dts: imx6qdl-udoo: Properly describe the SD card detect + - usb: f_fs: Fix use-after-free for epfile + - misc: fastrpc: avoid double fput() on failed usercopy + - ixgbevf: Require large buffers for build_skb on 82599VF + - bonding: pair enable_port with slave_arr_updates + - 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 + - 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 + - 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: 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 + - seccomp: Invalidate seccomp mode to catch death failures + - hwmon: (dell-smm) Speed up setting of fan speed + - scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled + - perf: Fix list corruption in perf_cgroup_switch() + - Linux 5.4.180 + * Focal update: v5.4.179 upstream stable release (LP: #1965591) + - moxart: fix potential use-after-free on remove path + - Linux 5.4.179 + * CVE-2020-27820 + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: clean up all clients on device removal + * CVE-2022-1016 + - netfilter: nf_tables: initialize registers in nft_do_chain() + * CVE-2022-27223 + - USB: gadget: validate endpoint index for xilinx udc + * CVE-2022-26490 + - nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION + * 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/speculation: Include unprivileged eBPF status in Spectre v2 mitigation + reporting + + -- Tim Gardner Mon, 25 Apr 2022 14:35:36 -0600 + +linux-azure (5.4.0-1077.80) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1077.80 -proposed tracker (LP: #1968796) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.03.21) + + * focal/linux-azure: Enable missing config options (LP: #1968749) + - Drivers: hv: vmbus: Propagate VMbus coherence to each VMbus device + - PCI: hv: Propagate coherence from VMbus device to PCI device + - [Config] azure: arm64: Ignore module movements + - [Config] azure: arm64: Enable RAID config options + - [Config] azure: arm64: Enable SQUASHFS config options + + -- Tim Gardner Tue, 12 Apr 2022 18:53:53 -0600 + +linux-azure (5.4.0-1076.79) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1076.79 -proposed tracker (LP: #1968351) + + * linux-azure: Fixup Hyperv backport bugs (LP: #1968344) + - SAUCE: azure: Fixup MSI domain ops + + [ Ubuntu: 5.4.0-109.123 ] + + * focal/linux: 5.4.0-109.123 -proposed tracker (LP: #1968290) + * USB devices not detected during boot on USB 3.0 hubs (LP: #1968210) + - SAUCE: Revert "Revert "xhci: Set HCD flag to defer primary roothub + registration"" + - SAUCE: Revert "Revert "usb: core: hcd: Add support for deferring roothub + registration"" + + -- Tim Gardner Fri, 08 Apr 2022 10:10:45 -0600 + +linux-azure (5.4.0-1075.78) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1075.78 -proposed tracker (LP: #1967368) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.02.21) + + * linux-azure: CONFIG_HIBERNATION=y (LP: #1967336) + - [Config] azure: arm64 CONFIG_HIBERNATION=y + + * linux-azure: Fix NUMA node assignment when kernel boots with custom NUMA + topology (LP: #1961300) + - PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA + topology + - ACPI: NUMA: Up-level "map to online node" functionality + - mm: mempolicy: fix kerneldoc of numa_map_to_online_node() + + * linux-azure: Focal 5.4 arm64 support (LP: #1965618) + - SAUCE: azure: sgx is x86 only + - Revert "Drivers: hv: vmbus: Fix duplicate CPU assignments within a device" + - hv_sock: use HV_HYP_PAGE_SIZE for Hyper-V communication + - Drivers: hv: vmbus: Introduce table of VMBus protocol versions + - Drivers: hv: vmbus: Enable VMBus protocol versions 4.1, 5.1 and 5.2 + - Drivers: hv: Specify receive buffer size using Hyper-V page size + - Drivers: hv: util: Specify ring buffer size using Hyper-V page size + - x86: hv: Add function to allocate zeroed page for Hyper-V + - Drivers: hv: vmbus: Remove dependencies on guest page size + - Drivers: hv: balloon: Remove dependencies on guest page size + - x86/hyper-v: Add "polling" bit to hv_synic_sint + - PCI: hv: Move hypercall related definitions into tlfs header + - PCI: hv: Move retarget related structures into tlfs header + - PCI: hv: Introduce hv_msi_entry + - Drivers: hv: Move AEOI determination to architecture dependent code + - Drivers: hv: copy from message page only what's needed + - Drivers: hv: allocate the exact needed memory for messages + - Drivers: hv: avoid passing opaque pointer to vmbus_onmessage() + - Drivers: hv: make sure that 'struct vmbus_channel_message_header' compiles + correctly + - Drivers: hv: check VMBus messages lengths + - Drivers: hv: vmbus: Don't bind the offer&rescind works to a specific CPU + - Drivers: hv: vmbus: Replace the per-CPU channel lists with a global array of + channels + - hv_netvsc: Disable NAPI before closing the VMBus channel + - hv_utils: Always execute the fcopy and vss callbacks in a tasklet + - Drivers: hv: vmbus: Use a spin lock for synchronizing channel scheduling vs. + channel removal + - PCI: hv: Prepare hv_compose_msi_msg() for the VMBus-channel-interrupt-to- + vCPU reassignment functionality + - Drivers: hv: vmbus: Remove the unused HV_LOCALIZED channel affinity logic + - Drivers: hv: vmbus: Synchronize init_vp_index() vs. CPU hotplug + - Drivers: hv: vmbus: Introduce the CHANNELMSG_MODIFYCHANNEL message type + - scsi: storvsc: Re-init stor_chns when a channel interrupt is re-assigned + - drivers: hv: remove redundant assignment to pointer primary_channel + - KVM: x86: hyperv: Remove duplicate definitions of Reference TSC Page + - x86/hyperv: Remove HV_PROCESSOR_POWER_STATE #defines + - x86/hyperv: Split hyperv-tlfs.h into arch dependent and independent files + - asm-generic/hyperv: Add definitions for Get/SetVpRegister hypercalls + - Drivers: hv: vmbus: Resolve race between init_vp_index() and CPU hotplug + - Drivers: hv: vmbus: Resolve more races involving init_vp_index() + - Drivers: hv: vmbus: Remove the target_vp field from the vmbus_channel struct + - Drivers: hv: vmbus: Remove the numa_node field from the vmbus_channel struct + - Drivers: hv: vmbus: Replace cpumask_test_cpu(, cpu_online_mask) with + cpu_online() + - Drivers: hv: vmbus: Remove unnecessary channel->lock critical sections + (sc_list readers) + - Drivers: hv: vmbus: Use channel_mutex in channel_vp_mapping_show() + - Drivers: hv: vmbus: Remove unnecessary channel->lock critical sections + (sc_list updaters) + - scsi: storvsc: Introduce the per-storvsc_device spinlock + - Drivers: hv: vmbus: Remove the lock field from the vmbus_channel struct + - Drivers: hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl + - Drivers: hv: vmbus: Move __vmbus_open() + - Drivers: hv: vmbus: Introduce types of GPADL + - Drivers: hv: Use HV_HYP_PAGE in hv_synic_enable_regs() + - Drivers: hv: vmbus: Move virt_to_hvpfn() to hyperv header + - hv: hyperv.h: Introduce some hvpfn helper functions + - hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication + - Input: hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes + - HID: hyperv: Use VMBUS_RING_SIZE() for ringbuffer sizes + - Driver: hv: util: Use VMBUS_RING_SIZE() for ringbuffer sizes + - scsi: storvsc: Support PAGE_SIZE larger than 4K + - Drivers: hv: vmbus: Add parsing of VMbus interrupt in ACPI DSDT + - smccc: Define vendor hyp owned service call region + - x86/apic: Cleanup delivery mode defines + - drivers: hv: vmbus: Fix checkpatch SPLIT_STRING + - asm-generic/hyperv: update hv_msi_entry + - asm-generic/hyperv: update hv_interrupt_entry + - Drivers: hv: vmbus: Move Hyper-V page allocator to arch neutral code + - x86/hyper-v: Move hv_message_type to architecture neutral module + - Drivers: hv: Redo Hyper-V synthetic MSR get/set functions + - Drivers: hv: vmbus: Move hyperv_report_panic_msg to arch neutral code + - Drivers: hv: vmbus: Handle auto EOI quirk inline + - Drivers: hv: vmbus: Move handling of VMbus interrupts + - clocksource/drivers/hyper-v: Handle vDSO differences inline + - clocksource/drivers/hyper-v: Handle sched_clock differences inline + - clocksource/drivers/hyper-v: Set clocksource rating based on Hyper-V feature + - clocksource/drivers/hyper-v: Move handling of STIMER0 interrupts + - drivers: hv: Create a consistent pattern for checking Hyper-V hypercall + status + - PCI: hv: Drop msi_controller structure + - Drivers: hv: Move Hyper-V extended capability check to arch neutral code + - PCI: hv: Fix a race condition when removing the device + - PCI: hv: Remove bus device removal unused refcount/functions + - Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + - arm64: smccc: Add support for SMCCCv1.2 extended input/output registers + - asm-generic/hyperv: Add missing #include of nmi.h + - Drivers: hv: Make portions of Hyper-V init code be arch neutral + - Drivers: hv: Add arch independent default functions for some Hyper-V + handlers + - Drivers: hv: Move Hyper-V misc functionality to arch-neutral code + - drivers: hv: Decouple Hyper-V clock/timer code from VMbus drivers + - arm64: hyperv: Add Hyper-V hypercall and register access utilities + - arm64: hyperv: Add panic handler + - arm64: hyperv: Initialize hypervisor on boot + - arm64: efi: Export screen_info + - Drivers: hv: Enable Hyper-V code to be built on ARM64 + - PCI: hv: Support for create interrupt v3 + - PCI: Introduce domain_nr in pci_host_bridge + - PCI: Support populating MSI domains of root buses via bridges + - arm64: PCI: Restructure pcibios_root_bridge_prepare() + - arm64: PCI: Support root bridge preparation for Hyper-V + - PCI: hv: Generify PCI probing + - PCI: hv: Set ->domain_nr of pci_host_bridge at probing time + - PCI: hv: Set up MSI domain at bridge probing time + - PCI: hv: Turn on the host bridge probing on ARM64 + - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size + - PCI: hv: Make the code arch neutral by adding arch specific interfaces + - PCI: hv: Add arm64 Hyper-V vPCI support + - Ubuntu: SAUCE: clocksource/drivers/hyper-v: Untangle stimers and timesync + from clocksources + - [Package] Initial arm64 packaging + - [Config] arm64: CONFIG_XFS_FS=m + + [ Ubuntu: 5.4.0-108.122 ] + + * focal/linux: 5.4.0-108.122 -proposed tracker (LP: #1966740) + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + - debian/dkms-versions -- update from kernel-versions (main/2022.03.21) + * Low RX performance for 40G Solarflare NICs (LP: #1964512) + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + * [UBUNTU 20.04] KVM: Enable storage key checking for intercepted instruction + (LP: #1962831) + - selftests: kvm: add _vm_ioctl + - selftests: kvm: Introduce the TEST_FAIL macro + - KVM: selftests: Add GUEST_ASSERT variants to pass values to host + - 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 + * 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon/sec2 - Add workqueue for SEC driver. + - crypto: hisilicon/sec2 - update SEC initialization and reset + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) + - crypto: hisilicon - Use one workqueue per qm instead of per qp + * Lots of hisi_qm zombie task slow down system after stress test + (LP: #1932117) // 【sec-0911】 fail to reset sec module (LP: #1943301) + - crypto: hisilicon - Unify hardware error init/uninit into QM + * [UBUNTU 20.04] Fix SIGP processing on KVM/s390 (LP: #1962578) + - KVM: s390: Simplify SIGP Set Arch handling + - KVM: s390: Add a routine for setting userspace CPU state + * Move virtual graphics drivers from linux-modules-extra to linux-modules + (LP: #1960633) + - [Packaging] Move VM DRM drivers into modules + * Focal update: v5.4.178 upstream stable release (LP: #1964634) + - audit: improve audit queue handling when "audit=1" on cmdline + - 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: Simplify quirk entries with a macro + - 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: fix deadlock between quota disable and qgroup rescan worker + - drm/nouveau: fix off by one in BIOS boundary checking + - mm/kmemleak: avoid scanning potential huge holes + - block: bio-integrity: Advance seed correctly for larger interval sizes + - memcg: charge fs_context and legacy_fs_context + - 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 + - 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 + - net: ieee802154: hwsim: Ensure proper channel selection at probe time + - net: ieee802154: mcr20a: Fix lifs/sifs periods + - net: ieee802154: ca8210: Stop leaking skb's + - net: ieee802154: Return meaningful error codes from the netlink helpers + - 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/i915/overlay: Prevent divide by zero bugs in scaling + - ASoC: fsl: Add missing error handling in pcm030_fabric_probe + - ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes + - ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name + - ASoC: max9759: fix underflow in speaker_gain_control_put() + - pinctrl: bcm2835: Fix a few error paths + - scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe + - nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. + - selftests: futex: Use variable MAKE instead of make + - rtc: cmos: Evaluate century appropriate + - EDAC/altera: Fix deferred probing + - EDAC/xgene: Fix deferred probing + - ext4: fix error handling in ext4_restore_inline_data() + - cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning + - Linux 5.4.178 + * Focal update: v5.4.177 upstream stable release (LP: #1964628) + - PCI: pciehp: Fix infinite loop in IRQ handler upon power fault + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - ipheth: fix EOVERFLOW in ipheth_rcvbulk_callback + - net: amd-xgbe: ensure to reset the tx_timer_active flag + - net: amd-xgbe: Fix skb data length underflow + - rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() + - cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() + - af_packet: fix data-race in packet_setsockopt / packet_setsockopt + - Linux 5.4.177 + * Focal update: v5.4.176 upstream stable release (LP: #1962345) + - s390/hypfs: include z/VM guests with access control group set + - 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 + - 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 + - fsnotify: fix fsnotify hooks in pseudo filesystems + - drm/etnaviv: relax submit size limits + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - 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: Add support for Brainboxes UC cards. + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - net: sfp: ignore disabled SFP node + - 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 unsigned stat widths + - 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: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - 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 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - net: phy: broadcom: hook up soft_reset for BCM54616S + - phylib: fix potential use-after-free + - rxrpc: Adjust retransmission backoff + - hwmon: (lm90) Mark alert as broken for MAX6654 + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - yam: fix a memory leak in yam_siocdevprivate() + - net: hns3: handle empty unknown interrupt for VF + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - 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.4.176 + * Focal update: v5.4.175 upstream stable release (LP: #1962330) + - rcu: Tighten rcu_advance_cbs_nowake() checks + - pinctrl: bcm2835: Drop unused define + - pinctrl: bcm2835: Refactor platform data + - pinctrl: bcm2835: Add support for all GPIOs on BCM2711 + - pinctrl: bcm2835: Match BCM7211 compatible string + - pinctrl: bcm2835: Add support for wake-up interrupts + - pinctrl: bcm2835: Change init order for gpio hogs + - ARM: dts: gpio-ranges property is now required + - mmc: sdhci-esdhc-imx: disable CMDQ support + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - Linux 5.4.175 + + -- Tim Gardner Mon, 04 Apr 2022 13:13:29 -0600 + +linux-azure (5.4.0-1074.77) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1074.77 -proposed tracker (LP: #1966248) + + [ Ubuntu: 5.4.0-107.121 ] + + * focal/linux: 5.4.0-107.121 -proposed tracker (LP: #1966275) + * CVE-2022-27666 + - esp: Fix possible buffer overflow in ESP transformation + * CVE-2022-1055 + - net: sched: fix use-after-free in tc_new_tfilter() + * Pick fixup from v5.4.176 upstream stable release to address cert + failure with clock jitter test in NUC7i3DNHE (LP: #1964204) + - Bluetooth: refactor malicious adv data check + + -- Krzysztof Kozlowski Fri, 25 Mar 2022 11:27:33 +0100 + +linux-azure (5.4.0-1073.76) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1073.76 -proposed tracker (LP: #1964181) + + * linux-azure: Missing ext4 commits (LP: #1960820) + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: avoid ext4_error()'s caused by ENOMEM in the truncate path + - ext4: check for inconsistent extents between index and leaf block + - ext4: prevent partial update of the extent blocks + + * Azure: CIFS backport request (LP: #1960549) + - cifs: use the expiry output of dns_query to schedule next resolution + - cifs: set a minimum of 120s for next dns resolution + - cifs: To match file servers, make sure the server hostname matches + + * linux-azure: net: mana: Add handling of CQE_RX_TRUNCATED (LP: #1960322) + - net: mana: Add handling of CQE_RX_TRUNCATED + - net: mana: Remove unnecessary check of cqe_type in mana_process_rx_cqe() + + * linux-azure: Add Azure Blob driver to Ubuntu 18.04 image (LP: #1960539) + - [Config] azure: CONFIG_HYPERV_AZURE_BLOB=m + - SAUCE: azure: Drivers: hv: add Azure Blob driver + + [ Ubuntu: 5.4.0-105.119 ] + + * CVE-2022-0847 + - lib/iov_iter: initialize "flags" in new pipe_buffer + * Broken network on some AWS instances with focal/impish kernels + (LP: #1961968) + - SAUCE: Revert "PCI/MSI: Mask MSI-X vectors only on success" + * [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 + * Hipersocket page allocation failure on Ubuntu 20.04 based SSC environments + (LP: #1959529) + - s390/qeth: use memory reserves to back RX buffers + * CVE-2022-0516 + - KVM: s390: Return error on SIDA memop on normal guest + * CVE-2022-0435 + - tipc: improve size validations for received domain records + * CVE-2022-0492 + - cgroup-v1: Require capabilities to set release_agent + * Recalled NFSv4 files delegations overwhelm server (LP: #1957986) + - NFSv4: Fix delegation handling in update_open_stateid() + - NFSv4: nfs4_callback_getattr() should ignore revoked delegations + - NFSv4: Delegation recalls should not find revoked delegations + - NFSv4: fail nfs4_refresh_delegation_stateid() when the delegation was + revoked + - NFS: Rename nfs_inode_return_delegation_noreclaim() + - NFSv4: Don't remove the delegation from the super_list more than once + - NFSv4: Hold the delegation spinlock when updating the seqid + - NFSv4: Clear the NFS_DELEGATION_REVOKED flag in + nfs_update_inplace_delegation() + - NFSv4: Update the stateid seqid in nfs_revoke_delegation() + - NFSv4: Revoke the delegation on success in nfs4_delegreturn_done() + - NFSv4: Ignore requests to return the delegation if it was revoked + - NFSv4: Don't reclaim delegations that have been returned or revoked + - NFSv4: nfs4_return_incompatible_delegation() should check delegation + validity + - NFSv4: Fix nfs4_inode_make_writeable() + - NFS: nfs_inode_find_state_and_recover() fix stateid matching + - NFSv4: Fix races between open and delegreturn + - NFSv4: Handle NFS4ERR_OLD_STATEID in delegreturn + - NFSv4: Don't retry the GETATTR on old stateid in nfs4_delegreturn_done() + - NFSv4: nfs_inode_evict_delegation() should set NFS_DELEGATION_RETURNING + - NFS: Clear NFS_DELEGATION_RETURN_IF_CLOSED when the delegation is returned + - NFSv4: Try to return the delegation immediately when marked for return on + close + - NFSv4: Add accounting for the number of active delegations held + - NFSv4: Limit the total number of cached delegations + - NFSv4: Ensure the delegation is pinned in nfs_do_return_delegation() + - NFSv4: Ensure the delegation cred is pinned when we call delegreturn + * Focal update: v5.4.174 upstream stable release (LP: #1960566) + - 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 + - f2fs: fix to do sanity check in is_alive() + - 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 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - 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 + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - 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 + - 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/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Reconfigure hardware on resume() + - 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 + - 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 + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - wcn36xx: Release DMA channel descriptor allocations + - media: videobuf2: Fix the size printk format + - 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: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - Bluetooth: stop proccessing malicious adv data + - tee: fix put order in teedev_close_context() + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: qce - fix uaf on qce_ahash_register_one + - 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() + - 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: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - netfilter: bridge: add support for pppoe filtering + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - ACPI: EC: Rework flushing of EC work while suspended to idle + - 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() + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - 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 + - 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 + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - 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 + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - 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 + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mmc: meson-mx-sdio: add IRQ check + - selinux: fix potential memleak in selinux_add_opt() + - bpftool: Enable line buffering for stdout + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - 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() + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - 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 + - 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 + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - net/mlx5: Set command entry semaphore up once got index free + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - tpm: add request_locality before write TPM_INT_ENABLE + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - pcmcia: fix setting of kthread task states + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - 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 + - RDMA/hns: Validate the pkey index + - 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 + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: ufs: Fix race conditions related to driver data + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - 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 + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/iova: Fix race between FQ timeout and teardown + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - RDMA/cxgb4: Set queue pair state when being queried + - of: base: Fix phandle argument length mismatch error message + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - usb: gadget: f_fs: Use stream_open() for endpoint files + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - EDAC/synopsys: Use the quirk for version instead of ddr version + - mlxsw: pci: Add shutdown method in PCI driver + - drm/bridge: megachips: Ensure both bridges are probed before registration + - 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 + - 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() + - 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 + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: m920x: don't use stack on USB reads + - iwlwifi: mvm: synchronize with FW after multicast commands + - 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 + - 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 + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - HID: quirks: Allow inverting the absolute X/Y values + - media: igorplugusb: receiver overflow should be reported + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - 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 + - cpufreq: Fix initialization of min and max frequency QoS requests + - usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - um: registers: Rename function names to avoid conflicts and build problems + - 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 + - drm/amdgpu: fixup bad vram size on gmc v8 + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - 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() + - 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: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - parisc: Avoid calling faulthandler_disabled() twice + - 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 + - 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 failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - ASoC: mediatek: mt8173: fix device_node leak + - power: bq25890: Enable continuous conversion for ADC at charging + - rpmsg: core: Clean up resources on announce_create failure. + - 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 + - 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 + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - drm/etnaviv: limit submit sizes + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - 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 + - 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: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: don't use the orphan list when migrating an inode + - 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 + - media: rcar-csi2: Optimize the selection PHTW register + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - scsi: core: Show SCMD_LAST in text form + - 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 + - bpftool: Remove inclusion of utilities.mak from Makefiles + - ipv4: avoid quadratic behavior in netns dismantle + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - f2fs: fix to reserve space for IO align feature + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: si5341: Fix clock HW provider cleanup + - net: axienet: limit minimum TX ring size + - net: axienet: fix number of TX ring slots for available check + - net: axienet: increase default TX ring size to 128 + - rtc: pxa: fix null pointer dereference + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - 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: 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 + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net_sched: restore "mpu xxx" handling + - bcmgenet: add WOL IRQ check + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - mtd: nand: bbt: Fix corner case in bad block table handling + - Revert "ia64: kprobes: Use generic kretprobe trampoline handler" + - Linux 5.4.174 + * Focal update: v5.4.173 upstream stable release (LP: #1959701) + - kbuild: Add $(KBUILD_HOSTLDFLAGS) to 'has_libelf' test + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - perf: Protect perf_guest_cbs with RCU + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - 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 + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - mtd: fixup CFI on ixp4xx + - ARM: 9025/1: Kconfig: CPU_BIG_ENDIAN depends on !LD_IS_LLD + - Linux 5.4.173 + * Focal update: v5.4.172 upstream stable release (LP: #1959698) + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: bfusb: fix division by zero in send path + - 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 + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - drivers core: Use sysfs_emit and sysfs_emit_at for show(device *...) + functions + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - 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() + - 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.4.172 + * Focal update: v5.4.171 upstream stable release (LP: #1959437) + - f2fs: quota: fix potential deadlock + - Input: touchscreen - Fix backport of + a02dcde595f7cbd240ccd64de96034ad91cffc40 + - 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 + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - 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 + - 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 + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - rndis_host: support Hytera digital radios + - phonet: refcount leak in pep_sock_accep + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - 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 + - mISDN: change function names to avoid conflicts + - Linux 5.4.171 + * Focal update: v5.4.170 upstream stable release (LP: #1958898) + - tee: handle lookup of shm with reference count 0 + - 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(). + - 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 + - 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 + - sctp: use call_rcu to free endpoint + - net: usb: pegasus: Do not drop long Ethernet frames + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - selftests/net: udpgso_bench_tx: fix dst ip argument + - net/ncsi: check for error return from call to nla_put_u32 + - 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 + - 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 + - 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 + - net: fix use-after-free in tw_timer_handler + - perf script: Fix CPU filtering of a script's switch events + - Linux 5.4.170 + * Focal update: v5.4.170 upstream stable release (LP: #1958898) // HID_ASUS + should depend on USB_HID in stable v4.15 backports (LP: #1959762) + - HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option + * Focal update: v5.4.169 upstream stable release (LP: #1958557) + - net: usb: lan78xx: add Allied Telesis AT29M2-AF + - serial: 8250_fintek: Fix garbled text for console + - arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode + - spi: change clk_disable_unprepare to clk_unprepare + - IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() + - netfilter: fix regression in looped (broad|multi)cast's MAC handling + - qlcnic: potential dereference null pointer of rx_queue->page_ring + - net: accept UFOv6 packages in virtio_net_hdr_to_skb + - net: skip virtio_net_hdr_set_proto if protocol already set + - ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module + - bonding: fix ad_actor_system option setting to default + - fjes: Check for error irq + - drivers: net: smc911x: Check for error irq + - sfc: falcon: Check null pointer of rx_queue->page_ring + - Input: elantech - fix stack out of bound access in + elantech_change_report_id() + - hwmon: (lm90) Fix usage of CONFIG2 register in detect function + - hwmon: (lm90) Add max6654 support to lm90 driver + - hwmon: (lm90) Add basic support for TI TMP461 + - hwmon: (lm90) Introduce flag indicating extended temperature support + - hwmon: (lm90) Drop critical attribute support for MAX6654 + - ALSA: jack: Check the return value of kstrdup() + - ALSA: drivers: opl3: Fix incorrect use of vp->state + - ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 + - 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 + - x86/pkey: Fix undefined behaviour with PKRU_WD_BIT + - pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines + - mmc: sdhci-tegra: Fix switch to HS400ES mode + - mmc: core: Disable card detect during shutdown + - ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling + - tee: optee: Fix incorrect page free bug + - f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() + - usb: gadget: u_ether: fix race in setting MAC address in setup phase + - KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state + - mm: mempolicy: fix THP allocations escaping mempolicy restrictions + - 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 + - ax25: NPD bug when detaching AX25 device + - hamradio: defer ax25 kfree after unregister_netdev + - hamradio: improve the incomplete fix to avoid NPD + - phonet/pep: refuse to enable an unbound pipe + - Linux 5.4.169 + * Focal update: v5.4.168 upstream stable release (LP: #1957991) + - KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE + - mac80211: mark TX-during-stop for TX in in_reconfig + - mac80211: send ADDBA requests using the tid/queue of the aggregation session + - firmware: arm_scpi: Fix string overflow in SCPI genpd driver + - virtio_ring: Fix querying of maximum DMA mapping size for virtio device + - recordmcount.pl: look for jgnop instruction as well as bcrl on s390 + - dm btree remove: fix use after free in rebalance_children() + - audit: improve robustness of the audit queue handling + - iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda + - nfsd: fix use-after-free due to delegation race + - arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas- + edge + - arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply + - arm64: dts: rockchip: fix audio-supply for Rock Pi 4 + - mac80211: track only QoS data frames for admission control + - ARM: socfpga: dts: fix qspi node compatible + - clk: Don't parent clks until the parent is fully registered + - 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: use jiffies_delta_to_msecs() + - inet_diag: fix kernel-infoleak for UDP sockets + - selftests: Fix raw socket bind tests with VRF + - selftests: Fix IPv6 address bind tests + - dmaengine: st_fdma: fix MODULE_ALIAS + - selftest/net/forwarding: declare NETIFS p9 p10 + - mac80211: agg-tx: refactor sending addba + - mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock + - mac80211: accept aggregation sessions on 6 GHz + - mac80211: fix lookup when adding AddBA extension element + - net: sched: lock action when translating it to flow_action infra + - flow_offload: return EOPNOTSUPP for the unsupported mpls action type + - rds: memory leak in __rds_conn_create() + - 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` + - 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: 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() + - USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) + - PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error + - PCI/MSI: Mask MSI-X vectors only on success + - usb: xhci: Extend support for runtime power management for AMD's Yellow + carp. + - USB: serial: cp210x: fix CP2105 GPIO registration + - USB: serial: option: add Telit FN990 compositions + - timekeeping: Really make sure wall_to_monotonic isn't positive + - libata: if T_LENGTH is zero, dma direction should be DMA_NONE + - drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE + - mac80211: validate extended element ID is present + - mwifiex: Remove unnecessary braces from HostCmd_SET_SEQ_NO_BSS_INFO + - Input: touchscreen - avoid bitwise vs logical OR warning + - ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name + - xsk: Do not sleep in poll() when need_wakeup set + - media: mxl111sf: change mutex_init() location + - fuse: annotate lock in fuse_reverse_inval_entry() + - ovl: fix warning in ovl_create_real() + - scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() + - rcu: Mark accesses to rcu_state.n_force_qs + - mac80211: fix regression in SSN handling of addba tx + - net: sched: Fix suspicious RCU usage while accessing tcf_tunnel_info + - 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.4.168 + * Focal update: v5.4.167 upstream stable release (LP: #1957987) + - nfc: fix segfault in nfc_genl_dump_devices_done + - drm/msm/dsi: set default num_data_lanes + - net/mlx4_en: Update reported link modes for 1/10G + - 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/amd/display: Fix for the no Audio bug with Tiled Displays + - drm/amd/display: add connector type check for CRC source set + - tracing: Fix a kmemleak false positive in tracing_map + - KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req + - selinux: fix race condition when computing ocontext SIDs + - bpf: Fix integer overflow in argument calculation for bpf_map_area_alloc + - hwmon: (dell-smm) Fix warning on /proc/i8k creation error + - memblock: free_unused_memmap: use pageblock units instead of MAX_ORDER + - memblock: align freed memory map on pageblock boundaries with SPARSEMEM + - memblock: ensure there is no overflow in memblock_overlaps_region() + - arm: extend pfn_valid to take into account freed memory map alignment + - arm: ioremap: don't abuse pfn_valid() to check if pfn is in RAM + - Linux 5.4.167 + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + [ Ubuntu: 5.4.0-104.118 ] + + * CVE-2022-23960 + - SAUCE: kvm: arm: fix build on 32-bit + + -- Krzysztof Kozlowski Thu, 10 Mar 2022 11:17:36 +0100 + +linux-azure (5.4.0-1072.75) focal; urgency=medium + + * Disable unprivileged BPF by default (LP: #1961338) + - [Config] azure: Enable CONFIG_BPF_UNPRIV_DEFAULT_OFF + + [ Ubuntu: 5.4.0-103.117 ] + + * CVE-2022-23960 + - arm64: Add part number for Arm Cortex-A77 + - arm64: Add Neoverse-N2, Cortex-A710 CPU part definition + - arm64: Add Cortex-X2 CPU part definition + - arm64: add ID_AA64ISAR2_EL1 sys register + - SAUCE: arm64: entry.S: Add ventry overflow sanity checks + - SAUCE: arm64: entry: Make the trampoline cleanup optional + - SAUCE: arm64: entry: Free up another register on kpti's tramp_exit path + - SAUCE: arm64: entry: Move the trampoline data page before the text page + - SAUCE: arm64: entry: Allow tramp_alias to access symbols after the 4K + boundary + - SAUCE: arm64: entry: Don't assume tramp_vectors is the start of the vectors + - SAUCE: arm64: entry: Move trampoline macros out of ifdef'd section + - SAUCE: arm64: entry: Make the kpti trampoline's kpti sequence optional + - SAUCE: arm64: entry: Allow the trampoline text to occupy multiple pages + - SAUCE: arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations + - SAUCE: arm64: entry: Add vectors that have the bhb mitigation sequences + - SAUCE: arm64: entry: Add macro for reading symbol addresses from the + trampoline + - SAUCE: arm64: Add percpu vectors for EL1 + - SAUCE: arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of + Spectre-v2 + - SAUCE: KVM: arm64: Add templates for BHB mitigation sequences + - SAUCE: arm64: Mitigate spectre style branch history side channels + - SAUCE: KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and + migrated + - SAUCE: arm64: Use the clearbhb instruction in mitigations + - [Config]: set CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + * CVE-2022-0001 + - x86/speculation: Merge one test in spectre_v2_user_select_mitigation() + - x86,bugs: Unconditionally allow spectre_v2=retpoline,amd + - SAUCE: x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE + - SAUCE: x86/speculation: Add eIBRS + Retpoline options + - SAUCE: Documentation/hw-vuln: Update spectre doc + * Disable unprivileged BPF by default (LP: #1961338) + - bpf: Add kconfig knob for disabling unpriv bpf by default + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Stefan Bader Wed, 02 Mar 2022 10:41:07 +0100 + +linux-azure (5.4.0-1070.73) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1070.73 -proposed tracker (LP: #1959251) + + * Packaging resync (LP: #1786013) + - [Packaging] azure: config resync + + * Focal update: v5.4.165 upstream stable release (LP: #1957007) + - HID: asus: Add depends on USB_HID to HID_ASUS Kconfig option + + * linux-azure: CONFIG_FB_EFI=y (LP: #1959216) + - [Config] CONFIG_FB_EFI=y + + * Add sunrpc module parameters for NFSv3 nconnect (LP: #1958990) + - SAUCE: Add sunrpc module parameters for NFSv3 nconnect + + [ Ubuntu: 5.4.0-100.113 ] + + * focal/linux: 5.4.0-100.113 -proposed tracker (LP: #1959900) + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + * CVE-2022-0330 + - drm/i915: Flush TLBs before releasing backing store + * Focal update: v5.4.166 upstream stable release (LP: #1957008) + - netfilter: selftest: conntrack_vrf.sh: fix file permission + - Linux 5.4.166 + - net/packet: rx_owner_map depends on pg_vec + - USB: gadget: bRequestType is a bitfield, not a enum + - HID: holtek: fix mouse probing + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + * Focal update: v5.4.165 upstream stable release (LP: #1957007) + - serial: tegra: Change lower tolerance baud rate limit for tegra20 and + tegra30 + - ntfs: fix ntfs_test_inode and ntfs_init_locked_inode function type + - HID: quirks: Add quirk for the Microsoft Surface 3 type-cover + - HID: google: add eel USB id + - 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 + - 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() + - 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: Fix the off-by-two error in range markings + - ice: ignore dropped packets during init + - bonding: make tx_rebalance_counter an atomic + - nfp: Fix memory leak in nfp_cpp_area_cache_add() + - seg6: fix the iif in the IPv6 socket control block + - udp: using datalen to cap max gso segments + - iavf: restore MSI state on reset + - iavf: Fix reporting when setting descriptor count + - IB/hfi1: Correct guard on eager buffer deallocation + - 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: 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*() + - btrfs: clear extent buffer uptodate when we fail to write it + - btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling + - nfsd: Fix nsfd startup race (again) + - tracefs: Have new files inherit the ownership of their parent + - clk: qcom: regmap-mux: fix parent clock lookup + - drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. + - can: pch_can: pch_can_rx_normal: fix use after free + - can: m_can: Disable and ignore ELO interrupt + - x86/sme: Explicitly map new EFI memmap table as encrypted + - libata: add horkage for ASMedia 1092 + - wait: add wake_up_pollfree() + - SAUCE: binder: export __wake_up_pollfree for binder module + - 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 + - block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) + - qede: validate non LSO skb length + - ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer + - 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 + - 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() + - Revert "UBUNTU: SAUCE: selftests: fib_tests: assign address to dummy1 for + rp_filter tests" + - selftests/fib_tests: Rework fib_rp_filter_test() + - USB: gadget: detect too-big endpoint 0 requests + - USB: gadget: zero allocate endpoint 0 buffers + - usb: core: config: fix validation of wMaxPacketValue entries + - xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime + suspending + - usb: core: config: using bit mask instead of individual bits + - xhci: avoid race between disable slot command and host runtime suspend + - 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: 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 + - irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() + - irqchip/armada-370-xp: Fix support for Multi-MSI interrupts + - 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 + - bpf: Add selftests to cover packet access corner cases + - Linux 5.4.165 + * Focal update: v5.4.164 upstream stable release (LP: #1956381) + - NFSv42: Fix pagecache invalidation after COPY/CLONE + - of: clk: Make self-contained + - arm64: dts: mcbin: support 2W SFP modules + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - gfs2: Fix length of holes reported at end-of-file + - drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY + - mac80211: do not access the IV when it was stripped + - 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 + - platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep + - s390/setup: avoid using memblock_enforce_memory_limit + - 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 + - ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile + - ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in + hns_dsaf_ge_srst_by_port() + - 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 hist: Fix memory leak of a perf_hpp_fmt + - perf report: Fix memory leaks around perf_tip() + - net/smc: Avoid warning of possible recursive locking + - vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit + - kprobes: Limit max data_size of the kretprobe instances + - rt2x00: do not mark device gone on EPROTO errors during start + - cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() + - s390/pci: move pseudo-MMIO to prevent MIO overlap + - 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 + - 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 + - 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 + - net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() + - selftests: net: Correct case name + - rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() + - 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 + - net: annotate data-races on txq->xmit_lock_owner + - ipv4: convert fib_num_tclassid_users to atomic_t + - net/rds: correct socket tunable error in rds_tcp_tune() + - net/smc: Keep smc_close_final rc during active close + - drm/msm: Do hw_init() before capturing GPU state + - ipv6: fix memory leak in fib6_rule_suppress + - KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register + - sched/uclamp: Fix rq->uclamp_max not set on first enqueue + - parisc: Fix KBUILD_IMAGE for self-extracting kernel + - parisc: Fix "make install" on newer debian releases + - 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 + - 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: 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() + - iwlwifi: mvm: retry init flow if failed + - parisc: Mark cr16 CPU clocksource unstable on all SMP machines + - net/tls: Fix authentication failure in CCM mode + - Linux 5.4.164 + * Focal update: v5.4.163 upstream stable release (LP: #1956380) + - 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 + - net: nexthop: fix null pointer dereference when IPv6 is not enabled + - usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts + - 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 + - media: cec: copy sequence field for the reply + - HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts + - staging/fbtft: Fix backlight + - staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() + - xen: don't continue xenstore initialization in case of errors + - xen: detect uninitialized xenbus in xenbus_init + - 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: Fix ADMA for PAGE_SIZE >= 64KiB + - mdio: aspeed: Fix "Link is Down" issue + - PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() + - PCI: aardvark: Wait for endpoint to be ready before training link + - PCI: aardvark: Fix big endian support + - PCI: aardvark: Train link immediately after enabling training + - PCI: aardvark: Improve link training + - PCI: aardvark: Issue PERST via GPIO + - PCI: aardvark: Replace custom macros by standard linux/pci_regs.h macros + - PCI: aardvark: Don't touch PCIe registers if no card connected + - PCI: aardvark: Fix compilation on s390 + - PCI: aardvark: Move PCIe reset card code to advk_pcie_train_link() + - PCI: aardvark: Update comment about disabling link training + - PCI: pci-bridge-emul: Fix array overruns, improve safety + - PCI: aardvark: Configure PCIe resources from 'ranges' DT property + - PCI: aardvark: Fix PCIe Max Payload Size setting + - PCI: aardvark: Implement re-issuing config requests on CRS response + - PCI: aardvark: Simplify initialization of rootcap on virtual bridge + - PCI: aardvark: Fix link training + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - pinctrl: armada-37xx: Correct PWM pins definitions + - arm64: dts: marvell: armada-37xx: Set pcie_reset_pin to gpio function + - proc/vmcore: fix clearing user buffer by properly using clear_user() + - netfilter: ipvs: Fix reuse connection if RS weight is 0 + - ARM: dts: BCM5301X: Fix I2C controller interrupt + - ARM: dts: BCM5301X: Add interrupt properties to GPIO node + - ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer + - ASoC: topology: Add missing rwsem around snd_ctl_remove() calls + - net: ieee802154: handle iftypes as u32 + - firmware: arm_scmi: pm: Propagate return value to caller + - NFSv42: Don't fail clone() unless the OP_CLONE operation failed + - ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE + - scsi: mpt3sas: Fix kernel panic during drive powercycle test + - drm/vc4: fix error code in vc4_create_object() + - iavf: Prevent changing static ITR values if adaptive moderation is on + - ipv6: fix typos in __ip6_finish_output() + - nfp: checking parameter process for rx-usecs/tx-usecs is invalid + - net: ipv6: add fib6_nh_release_dsts stub + - net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group + - scsi: core: sysfs: Fix setting device state to SDEV_RUNNING + - net/smc: Ensure the active closing peer first closes clcsock + - nvmet-tcp: fix incomplete data digest send + - net/ncsi : Add payload to be 32-bit aligned to fix dropped packets + - PM: hibernate: use correct mode for swsusp_close() + - tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited + flows + - nvmet: use IOCB_NOWAIT only if the filesystem supports it + - igb: fix netpoll exit with traffic + - MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 + - 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: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP + - net: mscc: ocelot: correctly report the timestamping RX filters in ethtool + - f2fs: set SBI_NEED_FSCK flag when inconsistent node block found + - smb3: do not error on fsync when readonly + - vhost/vsock: fix incorrect used length reported to the guest + - tracing: Check pid filtering when creating events + - s390/mm: validate VMA in PGSTE manipulation functions + - shm: extend forced shm destroy to support objects from several IPC nses + - NFC: add NCI_UNREG flag to eliminate the race + - fuse: release pipe buf after last use + - xen: sync include/xen/interface/io/ring.h with Xen's newest version + - xen/blkfront: read response from backend only once + - xen/blkfront: don't take local copy of a request from the ring page + - xen/blkfront: don't trust the backend response data blindly + - xen/netfront: read response from backend only once + - xen/netfront: don't read data from request on the ring page + - xen/netfront: disentangle tx_skb_freelist + - xen/netfront: don't trust the backend response data blindly + - tty: hvc: replace BUG_ON() with negative return value + - Linux 5.4.163 + * net/mlx5e: EPERM on vlan 0 programming (LP: #1957753) + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + * CVE-2021-4083 + - fget: check that the fd still exists after getting a ref to it + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + + -- Krzysztof Kozlowski Wed, 09 Feb 2022 15:14:16 +0100 + +linux-azure (5.4.0-1069.72) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1069.72 -proposed tracker (LP: #1959790) + + [ Ubuntu: 5.4.0-99.112 ] + + * focal/linux: 5.4.0-99.112 -proposed tracker (LP: #1959817) + * linux-image-5.4.0-97.110 freezes by accessing cifs shares (LP: #1959665) + - Revert "cifs: To match file servers, make sure the server hostname matches" + - Revert "cifs: set a minimum of 120s for next dns resolution" + - Revert "cifs: use the expiry output of dns_query to schedule next + resolution" + + -- Krzysztof Kozlowski Mon, 07 Feb 2022 10:27:12 +0100 + +linux-azure (5.4.0-1068.71) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1068.71 -proposed tracker (LP: #1955219) + + [ Ubuntu: 5.4.0-97.110 ] + + * icmp_redirect from selftests fails on F/kvm (unary operator expected) + (LP: #1938964) + - selftests: icmp_redirect: pass xfail=0 to log_test() + * Focal: CIFS stable updates (LP: #1954926) + - cifs: use the expiry output of dns_query to schedule next resolution + - cifs: set a minimum of 120s for next dns resolution + - cifs: To match file servers, make sure the server hostname matches + * seccomp_bpf in seccomp from ubuntu_kernel_selftests failed to build on B-5.4 + (LP: #1896420) + - SAUCE: selftests/seccomp: fix "storage size of 'md' isn't known" build issue + - SAUCE: selftests/seccomp: Fix s390x regs not defined issue + * system crash when removing ipmi_msghandler module (LP: #1950666) + - ipmi: Move remove_work to dedicated workqueue + - ipmi: msghandler: Make symbol 'remove_work_wq' static + * zcrypt DD: Toleration for new IBM Z Crypto Hardware - (Backport to Ubuntu + 20.04) (LP: #1954680) + - s390/AP: support new dynamic AP bus size limit + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - s390/setup: diag 318: refactor struct + - s390/kvm: diagnose 0x318 sync and reset + - KVM: s390: remove diag318 reset code + - KVM: s390: add debug statement for diag 318 CPNC data + * Updates to ib_peer_memory requested by Nvidia (LP: #1947206) + - SAUCE: RDMA/core: Updated ib_peer_memory + * Include Infiniband Peer Memory interface (LP: #1923104) + - IB: Allow calls to ib_umem_get from kernel ULPs + - SAUCE: RDMA/core: Introduce peer memory interface + * Focal update: v5.4.162 upstream stable release (LP: #1954834) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - ARM: dts: NSP: Fix mpcore, mmc node names + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: freescale: fix arm,sp805 compatible string + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - firmware_loader: fix pre-allocated buf built-in firmware use + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - 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 + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - 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() + - powerpc/5200: dts: fix memory node unit name + - ALSA: gus: fix null pointer dereference on pointer block + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - 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 + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - tracing: Save normal string variables + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - RDMA/netlink: Add __maybe_unused to static inline in C file + - 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 + - net: bnx2x: fix variable dereferenced before check + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - 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 + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - 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 + - 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 + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - NFC: reorder the logic in nfc_{un,}register_device + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - 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 + - s390/kexec: fix return code handling + - arm64: vdso32: suppress error message for 'make mrproper' + - tun: fix bonding active backup with arp monitoring + - hexagon: export raw I/O routines for modules + - ipc: WARN if trying to remove ipc object which is absent + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - s390/kexec: fix memory leak of ipl report buffer + - udf: Fix crash after seekdir + - btrfs: fix memory ordering between normal and ordered work functions + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - drm/udl: fix control-message timeout + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - Revert "net: mvpp2: disable force link UP during port init procedure" + - perf/core: Avoid put_page() when GUP fails + - batman-adv: Consider fragmentation for needed_headroom + - batman-adv: Reserve needed_*room for fragments + - batman-adv: Don't always reallocate the fragmentation skb head + - ASoC: DAPM: Cover regression by kctl change notification fix + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Delete always true check of PF pointer + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.4.162 + * Focal update: v5.4.161 upstream stable release (LP: #1954828) + - scsi: ufs: Fix interrupt error message for shared interrupts + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - scsi: ufs: Fix tm request when non-fatal error happens + - fortify: Explicitly disable Clang support + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Destroy sysfs before freeing entries + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() + - erofs: fix unsafe pagevec reuse of hooked pclusters + - Linux 5.4.161 + * Focal update: v5.4.160 upstream stable release (LP: #1953387) + - 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 + - binder: use euid from cred instead of using task + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - 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: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - 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: ite-cir: IR receiver stop working after receive overflow + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - 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: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - 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 + - cavium: Return negative value when pci_alloc_irq_vectors() fails + - scsi: qla2xxx: Return -ENOMEM if kzalloc() fails + - scsi: qla2xxx: Fix unmap of already freed sgl + - cavium: Fix return values of the probe function + - sfc: Don't use netif_info before net_device setup + - hyperv/vmbus: include linux/bitops.h + - ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode + - reset: socfpga: add empty driver allowing consumers to probe + - mmc: winbond: don't build on M68K + - drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 + - bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT + - bpf: Prevent increasing bpf_jit_limit above max + - xen/netfront: stop tx queues during live migration + - nvmet-tcp: fix a memory leak when releasing a queue + - spi: spl022: fix Microwire full duplex mode + - net: multicast: calculate csum of looped-back and forwarded packets + - watchdog: Fix OMAP watchdog early handling + - drm: panel-orientation-quirks: Add quirk for GPD Win3 + - nvmet-tcp: fix header digest verification + - r8169: Add device 10ec:8162 to driver r8169 + - vmxnet3: do not stop tx queues after netif_device_detach() + - nfp: bpf: relax prog rejection for mtu check through max_pkt_offset + - net/smc: Correct spelling mistake to TCPF_SYN_RECV + - 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 + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - 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 + - wcn36xx: Fix HT40 capability for 2Ghz band + - mwifiex: Read a PCI register after writing the TX ring write pointer + - libata: fix checking of DMA state + - 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 + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - signal: Remove the bogus sigkill_pending in ptrace_stop + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - serial: core: Fix initializing and restoring termios speed + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - xen/balloon: add late_initcall_sync() for initial ballooning done + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - 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 return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - iio: dac: ad5446: Fix ad5622_write() return value + - USB: serial: keyspan: fix memleak on probe errors + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - 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() + - drm/panel-orientation-quirks: add Valve Steam Deck + - platform/x86: wmi: do not fail if disabling fails + - 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 + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - 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 + - ath10k: high latency fixes for beacon buffer + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - 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: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: imx: set a media_device bus_info string + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - 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 + - ACPICA: Avoid evaluating methods too early during system resume + - 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 + - tracefs: Have tracefs directories not set OTH permission bits by default + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - leaking_addresses: Always print a trailing newline + - memstick: r592: Fix a UAF bug when removing the driver + - 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 + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - block: remove inaccurate requeue check + - nvmet: 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 + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - 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 + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - 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() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - 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 + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - drm/v3d: fix wait for TMU write combiner flush + - virtio-gpu: fix possible memory allocation failure + - net: net_namespace: Fix undefined member in key_remove_domain() + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - crypto: caam - disable pkc for non-E SoCs + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - net: dsa: rtl8366rb: Fix off-by-one bug + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - drm/amdgpu: fix warning for overflow check + - media: em28xx: add missing em28xx_close_extension + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: dvb-usb: fix ununit-value in az6027_rc_query + - 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: 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 + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath9k: Fix potential interrupt storm on queue reset + - EDAC/amd64: Handle three rank interleaving mode + - netfilter: nft_dynset: relax superfluous check on set updates + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - 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 + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - mmc: mxs-mmc: disable regulator on error and in the remove function + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - phy: micrel: ksz8041nl: do not use power down mode + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - drm/msm: Fix potential NULL dereference in DPU SSPP + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - libbpf: Fix BTF data layout checks and allow empty BTF + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - irq: mips: avoid nested irq_enter() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - 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 + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - net: amd-xgbe: Toggle PLL settings during rate change + - net: phylink: avoid mvneta warning when setting pause parameters + - 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 + - RDMA/rxe: Fix wrong port_cap_flags + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - 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: meson-g12a: Fix the pwm regulator supply properties + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - arm: dts: omap3-gta04a4: accelerometer irq fix + - 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 + - video: fbdev: chipsfb: use memset_io() instead of memset() + - 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 + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - ARM: dts: stm32: fix SAI sub nodes register range + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - phy: qcom-qusb2: Fix a memory leak on probe + - serial: xilinx_uartps: Fix race condition causing stuck TX + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/44x/fsp2: add missing of_node_put + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - 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() + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - mtd: core: don't remove debugfs directory if device is in use + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - 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` + - 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: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - xen-pciback: Fix return in pm_ctrl_init() + - net: davinci_emac: Fix interrupt pacing disable + - net: vlan: fix a UAF in vlan_dev_real_dev() + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - 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 + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: allow configure ETS bandwidth of all TCs + - 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 + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix set_fixmap() on PA1.x CPUs + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - ovl: fix deadlock in splice write + - powerpc/lib: Add helper to check if offset is within conditional branch + range + - powerpc/bpf: Validate branch ranges + - powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 + - powerpc/security: Add a helper to query stf_barrier type + - powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC + - 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 + - video: backlight: Drop maximum brightness override for brightness zero + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/cio: make ccw_device_dma_* more robust + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - SUNRPC: Partial revert of commit 6f9f17287e78 + - ath10k: fix invalid dma_addr_t token assignment + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - Linux 5.4.160 + - soc/tegra: pmc: Fix imbalanced clock disabling in error code path + * Focal update: v5.4.159 upstream stable release (LP: #1953071) + - 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 + - binder: don't detect sender/target during buffer cleanup + - printk/console: Allow to disable console output by using console="" or + console=null + - 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 + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.4.159 + * Focal update: v5.4.158 upstream stable release (LP: #1953066) + - scsi: core: Put LLD module refcnt after SCSI device is released + - vrf: Revert "Reset skb conntrack connection..." + - net: ethernet: microchip: lan743x: Fix skb allocation failure + - 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" + - sfc: Fix reading non-legacy supported link modes + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Linux 5.4.158 + * [Ubuntu 20.04] Problem leading IUCV service down (on s390x) (LP: #1913442) + - usercopy: mark dma-kmalloc caches as usercopy caches + + -- Krzysztof Kozlowski Wed, 19 Jan 2022 17:24:09 +0100 + +linux-azure (5.4.0-1067.70) focal; urgency=medium + + [ Ubuntu: 5.4.0-96.109 ] + + * Support builtin revoked certificates (LP: #1932029) + - [Config]: add i386 to CONFIG_SYSTEM_REVOCATION_KEYS annotation + * CVE-2022-0185 + - SAUCE: vfs: Out-of-bounds write of heap buffer in fs_context.c + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + + [ Ubuntu: 5.4.0-94.106 ] + + * focal/linux: 5.4.0-94.106 -proposed tracker (LP: #1956628) + * [Regression] Focal kernel 5.4.0-92.103 fails to boot when Secure Encrypted + Virtualization(SEV) is enabled (LP: #1956575) + - x86/ioremap: Map EFI-reserved memory as encrypted for SEV + + -- Stefan Bader Thu, 13 Jan 2022 10:15:01 +0100 + +linux-azure (5.4.0-1065.68) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1065.68 -proposed tracker (LP: #1952290) + + * Re-enable DEBUG_INFO_BTF where it was disabled (LP: #1945632) + - [Config] azure: enable CONFIG_DEBUG_INFO_BTF + + * Support builtin revoked certificates (LP: #1932029) + - [Config] azure: set CONFIG_SYSTEM_REVOCATION_KEYS + + * Bionic/linux-azure: Call trace on Ubuntu 18.04 VM with Standard NV24 + (LP: #1952621) + - PCI/sysfs: Convert "config" to static attribute + + * linux-azure: add Icelake servers support in no-HWP mode to + cpufreq/intel_pstate driver (LP: #1952234) + - cpufreq: intel_pstate: Add Icelake servers support in no-HWP mode + + [ Ubuntu: 5.4.0-92.103 ] + + * focal/linux: 5.4.0-92.103 -proposed tracker (LP: #1952316) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/2021.11.29) + * CVE-2021-4002 + - tlb: mmu_gather: add tlb_flush_*_range APIs + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + * Re-enable DEBUG_INFO_BTF where it was disabled (LP: #1945632) + - [Config] Enable CONFIG_DEBUG_INFO_BTF on all arches + * Focal linux-azure: Vm crash on Dv5/Ev5 (LP: #1950462) + - KVM: VMX: eVMCS: make evmcs_sanitize_exec_ctrls() work again + - jump_label: Fix usage in module __init + * Support builtin revoked certificates (LP: #1932029) + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() not complain about + cert lists that aren't present." + - integrity: Move import of MokListRT certs to a separate routine + - integrity: Load certs from the EFI MOK config table + - certs: Add ability to preload revocation certs + - integrity: Load mokx variables into the blacklist keyring + - certs: add 'x509_revocation_list' to gitignore + - SAUCE: Dump stack when X.509 certificates cannot be loaded + - [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 + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - efi: Support for MOK variable config table + - efi: mokvar-table: fix some issues in new code + - efi: mokvar: add missing include of asm/early_ioremap.h + - efi/mokvar: Reserve the table only if it is in boot services data + - 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 + * Focal update: v5.4.157 upstream stable release (LP: #1951883) + - ARM: 9133/1: mm: proc-macros: ensure *_tlb_fns are 4B aligned + - ARM: 9134/1: remove duplicate memcpy() definition + - ARM: 9139/1: kprobes: fix arch_init_kprobes() prototype + - ARM: 9141/1: only warn about XIP address when not compile testing + - ipv6: use siphash in rt6_exception_hash() + - ipv4: use siphash instead of Jenkins in fnhe_hashfun() + - usbnet: sanity check for maxpacket + - usbnet: fix error return code in usbnet_probe() + - Revert "pinctrl: bcm: ns: support updated DT binding as syscon subnode" + - ata: sata_mv: Fix the error handling of mv_chip_id() + - nfc: port100: fix using -ERRNO as command type mask + - net/tls: Fix flipped sign in tls_err_abort() calls + - mmc: vub300: fix control-message timeouts + - mmc: cqhci: clear HALT state after CQE enable + - mmc: dw_mmc: exynos: fix the finding clock sample value + - mmc: sdhci: Map more voltage level to SDHCI_POWER_330 + - mmc: sdhci-esdhc-imx: clear the buffer_read_ready to reset standard tuning + circuit + - cfg80211: scan: fix RCU in cfg80211_add_nontrans_list() + - net: lan78xx: fix division by zero in send path + - tcp_bpf: Fix one concurrency problem in the tcp_bpf_send_verdict function + - IB/qib: Protect from buffer overflow in struct qib_user_sdma_pkt fields + - IB/hfi1: Fix abba locking issue with sc_disable() + - nvmet-tcp: fix data digest pointer calculation + - nvme-tcp: fix data digest pointer calculation + - RDMA/mlx5: Set user priority for DCT + - arm64: dts: allwinner: h5: NanoPI Neo 2: Fix ethernet node + - regmap: Fix possible double-free in regcache_rbtree_exit() + - net: batman-adv: fix error handling + - net: Prevent infinite while loop in skb_tx_hash() + - RDMA/sa_query: Use strscpy_pad instead of memcpy to copy a string + - nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST + - net: ethernet: microchip: lan743x: Fix driver crash when lan743x_pm_resume + fails + - net: ethernet: microchip: lan743x: Fix dma allocation failure by using + dma_set_mask_and_coherent + - net: nxp: lpc_eth.c: avoid hang when bringing interface down + - net/tls: Fix flipped sign in async_wait.err assignment + - phy: phy_ethtool_ksettings_get: Lock the phy for consistency + - phy: phy_start_aneg: Add an unlocked version + - sctp: use init_tag from inithdr for ABORT chunk + - sctp: fix the processing for INIT_ACK chunk + - sctp: fix the processing for COOKIE_ECHO chunk + - sctp: add vtag check in sctp_sf_violation + - sctp: add vtag check in sctp_sf_do_8_5_1_E_sa + - sctp: add vtag check in sctp_sf_ootb + - net: use netif_is_bridge_port() to check for IFF_BRIDGE_PORT + - cfg80211: correct bridge/4addr mode check + - KVM: s390: clear kicked_mask before sleeping again + - KVM: s390: preserve deliverable_mask in __airqs_kick_single_vcpu + - perf script: Check session->header.env.arch before using it + - Linux 5.4.157 + * keyboard not working on Medion notebook s17 series (LP: #1950536) + - ACPI: resources: Add one more Medion model in IRQ override quirk + * creat09 from ubuntu_ltp_syscalls and cve-2018-13405 from ubuntu_ltp/cve + failed with XFS (LP: #1950239) + - xfs: ensure that the inode uid/gid match values match the icdinode ones + - xfs: merge the projid fields in struct xfs_icdinode + - xfs: remove the icdinode di_uid/di_gid members + - xfs: fix up non-directory creation in SGID directories + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + * Focal update: v5.4.156 upstream stable release (LP: #1951295) + - parisc: math-emu: Fix fall-through warnings + - net: switchdev: do not propagate bridge updates across bridges + - tee: optee: Fix missing devices unregister during optee_remove + - ARM: dts: at91: sama5d2_som1_ek: disable ISC node by default + - xtensa: xtfpga: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: xtfpga: Try software restart before simulating CPU reset + - NFSD: Keep existing listeners on portlist error + - dma-debug: fix sg checks in debug_dma_map_sg() + - ASoC: wm8960: Fix clock configuration on slave mode + - netfilter: ipvs: make global sysctl readonly in non-init netns + - lan78xx: select CRC32 + - net: dsa: lantiq_gswip: fix register definition + - NIOS2: irqflags: rename a redefined register name + - net: hns3: reset DWRR of unused tc to zero + - net: hns3: add limit ets dwrr bandwidth cannot be 0 + - net: hns3: disable sriov before unload hclge layer + - net: stmmac: Fix E2E delay mechanism + - net: enetc: fix ethtool counter name for PM0_TERR + - can: rcar_can: fix suspend/resume + - can: peak_usb: pcan_usb_fd_decode_status(): fix back to ERROR_ACTIVE state + notification + - can: peak_pci: peak_pci_remove(): fix UAF + - can: j1939: j1939_tp_rxtimer(): fix errant alert in j1939_tp_rxtimer + - can: j1939: j1939_netdev_start(): fix UAF for rx_kref of j1939_priv + - can: j1939: j1939_xtp_rx_dat_one(): cancel session if receive TP.DT with + error length + - can: j1939: j1939_xtp_rx_rts_session_new(): abort TP less than 9 bytes + - ceph: fix handling of "meta" errors + - ocfs2: fix data corruption after conversion from inline format + - ocfs2: mount fails with buffer overflow in strlen + - elfcore: correct reference to CONFIG_UML + - ALSA: usb-audio: Provide quirk for Sennheiser GSP670 Headset + - ALSA: hda/realtek: Add quirk for Clevo PC50HS + - ASoC: DAPM: Fix missing kctl change notifications + - audit: fix possible null-pointer dereference in audit_filter_rules + - powerpc64/idle: Fix SP offsets when saving GPRs + - KVM: PPC: Book3S HV: Fix stack handling in idle_kvm_start_guest() + - KVM: PPC: Book3S HV: Make idle_kvm_start_guest() return 0 if it went to + guest + - powerpc/idle: Don't corrupt back chain when going idle + - mm, slub: fix mismatch between reconstructed freelist depth and cnt + - mm, slub: fix potential memoryleak in kmem_cache_open() + - nfc: nci: fix the UAF of rf_conn_info object + - isdn: cpai: check ctr->cnr to avoid array index out of bound + - netfilter: Kconfig: use 'default y' instead of 'm' for bool config option + - selftests: netfilter: remove stray bash debug line + - gcc-plugins/structleak: add makefile var for disabling structleak + - btrfs: deal with errors when checking if a dir entry exists during log + replay + - net: stmmac: add support for dwmac 3.40a + - ARM: dts: spear3xx: Fix gmac node + - isdn: mISDN: Fix sleeping function called from invalid context + - platform/x86: intel_scu_ipc: Update timeout value in comment + - ALSA: hda: avoid write to STATESTS if controller is in reset + - Input: snvs_pwrkey - add clk handling + - scsi: core: Fix shost->cmd_per_lun calculation in scsi_add_host_with_dma() + - tracing: Have all levels of checks prevent recursion + - ARM: 9122/1: select HAVE_FUTEX_CMPXCHG + - pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume() + - Linux 5.4.156 + * ubuntu_ltp / finit_module02 fails on v4.15 and other kernels + (LP: #1950644) // Focal update: v5.4.156 upstream stable release + (LP: #1951295) + - vfs: check fd has read access in kernel_read_file_from_fd() + * Focal update: v5.4.155 upstream stable release (LP: #1951291) + - ovl: simplify file splice + - ALSA: usb-audio: Add quirk for VF0770 + - ALSA: seq: Fix a potential UAF by wrong private_free call order + - ALSA: hda/realtek: Complete partial device name to avoid ambiguity + - ALSA: hda/realtek: Add quirk for Clevo X170KM-G + - ALSA: hda/realtek - ALC236 headset MIC recording issue + - ALSA: hda/realtek: Fix the mic type detection issue for ASUS G551JW + - nds32/ftrace: Fix Error: invalid operands (*UND* and *UND* sections) for `^' + - s390: fix strrchr() implementation + - csky: don't let sigreturn play with priveleged bits of status register + - csky: Fixup regs.sr broken in ptrace + - btrfs: unlock newly allocated extent buffer after error + - btrfs: deal with errors when replaying dir entry during log replay + - btrfs: deal with errors when adding inode reference during log replay + - btrfs: check for error when looking up inode during dir entry replay + - watchdog: orion: use 0 for unset heartbeat + - x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails + - mei: me: add Ice Lake-N device id. + - xhci: guard accesses to ep_state in xhci_endpoint_reset() + - xhci: Fix command ring pointer corruption while aborting a command + - xhci: Enable trust tx length quirk for Fresco FL11 USB controller + - cb710: avoid NULL pointer subtraction + - efi/cper: use stack buffer for error record decoding + - efi: Change down_interruptible() in virt_efi_reset_system() to + down_trylock() + - usb: musb: dsps: Fix the probe error path + - Input: xpad - add support for another USB ID of Nacon GC-100 + - USB: serial: qcserial: add EM9191 QDL support + - USB: serial: option: add Quectel EC200S-CN module support + - USB: serial: option: add Telit LE910Cx composition 0x1204 + - USB: serial: option: add prod. id for Quectel EG91 + - EDAC/armada-xp: Fix output of uncorrectable error counter + - nvmem: Fix shift-out-of-bound (UBSAN) with byte size cells + - x86/Kconfig: Do not enable AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT automatically + - powerpc/xive: Discard disabled interrupts in get_irqchip_state() + - iio: adc: aspeed: set driver data when adc probe. + - iio: adc128s052: Fix the error handling path of 'adc128_probe()' + - iio: mtk-auxadc: fix case IIO_CHAN_INFO_PROCESSED + - iio: light: opt3001: Fixed timeout error when 0 lux + - iio: ssp_sensors: add more range checking in ssp_parse_dataframe() + - iio: ssp_sensors: fix error code in ssp_print_mcu_debug() + - iio: dac: ti-dac5571: fix an error code in probe() + - sctp: account stream padding length for reconf chunk + - gpio: pca953x: Improve bias setting + - net: arc: select CRC32 + - net: korina: select CRC32 + - net/mlx5e: Mutually exclude RX-FCS and RX-port-timestamp + - net: stmmac: fix get_hw_feature() on old hardware + - net: encx24j600: check error in devm_regmap_init_encx24j600 + - ethernet: s2io: fix setting mac address during resume + - nfc: fix error handling of nfc_proto_register() + - NFC: digital: fix possible memory leak in digital_tg_listen_mdaa() + - NFC: digital: fix possible memory leak in digital_in_send_sdd_req() + - pata_legacy: fix a couple uninitialized variable bugs + - ata: ahci_platform: fix null-ptr-deref in ahci_platform_enable_regulators() + - mlxsw: thermal: Fix out-of-bounds memory accesses + - platform/mellanox: mlxreg-io: Fix argument base in kstrtou32() call + - drm/panel: olimex-lcd-olinuxino: select CRC32 + - drm/msm: Fix null pointer dereference on pointer edp + - drm/msm/dsi: Fix an error code in msm_dsi_modeset_init() + - drm/msm/dsi: fix off by one in dsi_bus_clk_enable error handling + - acpi/arm64: fix next_platform_timer() section mismatch error + - mqprio: Correct stats in mqprio_dump_class_stats(). + - qed: Fix missing error code in qed_slowpath_start() + - r8152: select CRC32 and CRYPTO/CRYPTO_HASH/CRYPTO_SHA256 + - ionic: don't remove netdev->dev_addr when syncing uc list + - Linux 5.4.155 + * [UBUNTU 20.04] kernel: unable to read partitions on virtio-block dasd (kvm) + (LP: #1950144) // Focal update: v5.4.155 upstream stable release + (LP: #1951291) + - virtio: write back F_VERSION_1 before validate + * Focal update: v5.4.154 upstream stable release (LP: #1951288) + - net: phy: bcm7xxx: Fixed indirect MMD operations + - ext4: correct the error path of ext4_write_inline_data_end() + - HID: apple: Fix logical maximum and usage maximum of Magic Keyboard JIS + - netfilter: ip6_tables: zero-initialize fragment offset + - HID: wacom: Add new Intuos BT (CTL-4100WL/CTL-6100WL) device IDs + - netfilter: nf_nat_masquerade: make async masq_inet6_event handling generic + - netfilter: nf_nat_masquerade: defer conntrack walk to work queue + - mac80211: Drop frames from invalid MAC address in ad-hoc mode + - m68k: Handle arrivals of multiple signals correctly + - net: prevent user from passing illegal stab size + - mac80211: check return value of rhashtable_init + - net: sun: SUNVNET_COMMON should depend on INET + - drm/amdgpu: fix gart.bo pin_count leak + - scsi: ses: Fix unsigned comparison with less than zero + - scsi: virtio_scsi: Fix spelling mistake "Unsupport" -> "Unsupported" + - sched: Always inline is_percpu_thread() + - Linux 5.4.154 + * Focal update: v5.4.153 upstream stable release (LP: #1950014) + - Partially revert "usb: Kconfig: using select for USB_COMMON dependency" + - USB: cdc-acm: fix racy tty buffer accesses + - USB: cdc-acm: fix break reporting + - usb: typec: tcpm: handle SRC_STARTUP state if cc changes + - xen/privcmd: fix error handling in mmap-resource processing + - mmc: meson-gx: do not use memcpy_to/fromio for dram-access-quirk + - ovl: fix missing negative dentry check in ovl_rename() + - nfsd: fix error handling of register_pernet_subsys() in init_nfsd() + - nfsd4: Handle the NFSv4 READDIR 'dircount' hint being zero + - xen/balloon: fix cancelled balloon action + - ARM: dts: omap3430-sdp: Fix NAND device node + - ARM: dts: qcom: apq8064: use compatible which contains chipid + - MIPS: BPF: Restore MIPS32 cBPF JIT + - bpf, mips: Validate conditional branch offsets + - soc: qcom: socinfo: Fixed argument passed to platform_set_data() + - ARM: dts: qcom: apq8064: Use 27MHz PXO clock as DSI PLL reference + - soc: qcom: mdt_loader: Drop PT_LOAD check on hash segment + - ARM: dts: imx: Add missing pinctrl-names for panel on M53Menlo + - ARM: dts: imx: Fix USB host power regulator polarity on M53Menlo + - arm64: dts: qcom: pm8150: use qcom,pm8998-pon binding + - xtensa: move XCHAL_KIO_* definitions to kmem_layout.h + - xtensa: use CONFIG_USE_OF instead of CONFIG_OF + - xtensa: call irqchip_init only when CONFIG_USE_OF is selected + - bpf, arm: Fix register clobbering in div/mod implementation + - bpf: Fix integer overflow in prealloc_elems_and_freelist() + - phy: mdio: fix memory leak + - net_sched: fix NULL deref in fifo_set_limit() + - powerpc/fsl/dts: Fix phy-connection-type for fm1mac3 + - ptp_pch: Load module automatically if ID matches + - arm64: dts: freescale: Fix SP805 clock-names + - arm64: dts: ls1028a: add missing CAN nodes + - ARM: imx6: disable the GIC CPU interface before calling stby-poweroff + sequence + - net: bridge: use nla_total_size_64bit() in br_get_linkxstats_size() + - net/sched: sch_taprio: properly cancel timer from taprio_destroy() + - net: sfp: Fix typo in state machine debug string + - netlink: annotate data races around nlk->bound + - bus: ti-sysc: Use CLKDM_NOAUTO for dra7 dcan1 for errata i893 + - video: fbdev: gbefb: Only instantiate device when built for IP32 + - drm/nouveau/debugfs: fix file release memory leak + - gve: Correct available tx qpl check + - rtnetlink: fix if_nlmsg_stats_size() under estimation + - gve: fix gve_get_stats() + - i40e: fix endless loop under rtnl + - i40e: Fix freeing of uninitialized misc IRQ vector + - net: prefer socket bound to interface when not in VRF + - i2c: acpi: fix resource leak in reconfiguration device addition + - bpf, s390: Fix potential memory leak about jit_data + - RISC-V: Include clone3() on rv32 + - x86/platform/olpc: Correct ifdef symbol to intended CONFIG_OLPC_XO15_SCI + - x86/hpet: Use another crystalball to evaluate HPET usability + - x86/Kconfig: Correct reference to MWINCHIP3D + - Linux 5.4.153 + * Focal update: v5.4.152 upstream stable release (LP: #1950009) + - net: mdio: introduce a shutdown method to mdio device drivers + - xen-netback: correct success/error reporting for the SKB-with-fraglist case + - sparc64: fix pci_iounmap() when CONFIG_PCI is not set + - ext2: fix sleeping in atomic bugs on error + - scsi: sd: Free scsi_disk device via put_device() + - usb: testusb: Fix for showing the connection speed + - usb: dwc2: check return value after calling platform_get_resource() + - selftests: be sure to make khdr before other targets + - selftests:kvm: fix get_warnings_count() ignoring fscanf() return warn + - scsi: ses: Retry failed Send/Receive Diagnostic commands + - tools/vm/page-types: remove dependency on opt_file for idle page tracking + - KVM: do not shrink halt_poll_ns below grow_start + - kvm: x86: Add AMD PMU MSRs to msrs_to_save_all[] + - perf/x86: Reset destroy callback on event init failure + - silence nfscache allocation warnings with kvzalloc + - libata: Add ATA_HORKAGE_NO_NCQ_ON_ATI for Samsung 860 and 870 SSD. + - Linux 5.4.152 + * linux-aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + (LP: #1949882) + - SAUCE: aws: Fix backport of RDMA/efa: Expose maximum TX doorbell batch + + -- Krzysztof Kozlowski Fri, 03 Dec 2021 09:42:50 +0100 + +linux-azure (5.4.0-1064.67) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1064.67 -proposed tracker (LP: #1949816) + + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + + * Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + (LP: #1937078) + - Drivers: hv: vmbus: Fix duplicate CPU assignments within a device + + * linux-azure: make mana.ko built-in (LP: #1949357) + - [Config] CONFIG_MICROSOFT_MANA=y + + [ Ubuntu: 5.4.0-91.102 ] + + * focal/linux: 5.4.0-91.102 -proposed tracker (LP: #1949840) + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/2021.11.08) + * KVM emulation failure when booting into VM crash kernel with multiple CPUs + (LP: #1948862) + - KVM: x86: Properly reset MMU context at vCPU RESET/INIT + * aufs: kernel bug with apparmor and fuseblk (LP: #1948470) + - SAUCE: aufs: bugfix, stop omitting path->mnt + * ebpf: bpf_redirect fails with ip6 gre interfaces (LP: #1947164) + - net: handle ARPHRD_IP6GRE in dev_is_mac_header_xmit() + * require CAP_NET_ADMIN to attach N_HCI ldisc (LP: #1949516) + - Bluetooth: hci_ldisc: require CAP_NET_ADMIN to attach N_HCI ldisc + * ACL updates on OCFS2 are not revalidated (LP: #1947161) + - ocfs2: fix remounting needed after setfacl command + * ppc64 BPF JIT mod by 1 will not return 0 (LP: #1948351) + - powerpc/bpf: Fix BPF_MOD when imm == 1 + * 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" + * Reassign I/O Path of ConnectX-5 Port 1 before Port 2 causes NULL dereference + (LP: #1943464) + - s390/pci: fix leak of PCI device structure + - s390/pci: fix use after free of zpci_dev + - s390/pci: fix zpci_zdev_put() on reserve + * [SRU][F] USB: serial: pl2303: add support for PL2303HXN (LP: #1948377) + - USB: serial: pl2303: add support for PL2303HXN + - USB: serial: pl2303: fix line-speed handling on newer chips + * Focal update: v5.4.151 upstream stable release (LP: #1947888) + - tty: Fix out-of-bound vmalloc access in imageblit + - cpufreq: schedutil: Use kobject release() method to free sugov_tunables + - cpufreq: schedutil: Destroy mutex before kobject_put() frees the memory + - usb: cdns3: fix race condition before setting doorbell + - fs-verity: fix signed integer overflow with i_size near S64_MAX + - hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary + structure field + - hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary + structure field + - scsi: ufs: Fix illegal offset in UPIU event trace + - mac80211: fix use-after-free in CCMP/GCMP RX + - x86/kvmclock: Move this_cpu_pvti into kvmclock.h + - drm/amd/display: Pass PCI deviceid into DC + - ipvs: check that ip_vs_conn_tab_bits is between 8 and 20 + - hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced + from sysfs + - mac80211: Fix ieee80211_amsdu_aggregate frag_tail bug + - mac80211: limit injected vht mcs/nss in ieee80211_parse_tx_radiotap + - mac80211: mesh: fix potentially unaligned access + - mac80211-hwsim: fix late beacon hrtimer handling + - sctp: break out if skb_header_pointer returns NULL in sctp_rcv_ootb + - hwmon: (tmp421) report /PVLD condition as fault + - hwmon: (tmp421) fix rounding for negative values + - net: ipv4: Fix rtnexthop len when RTA_FLOW is present + - e100: fix length calculation in e100_get_regs_len + - e100: fix buffer overrun in e100_get_regs + - selftests, bpf: test_lwt_ip_encap: Really disable rp_filter + - scsi: csiostor: Add module softdep on cxgb4 + - net: hns3: do not allow call hns3_nic_net_open repeatedly + - net: sched: flower: protect fl_walk() with rcu + - af_unix: fix races in sk_peer_pid and sk_peer_cred accesses + - perf/x86/intel: Update event constraints for ICX + - elf: don't use MAP_FIXED_NOREPLACE for elf interpreter mappings + - debugfs: debugfs_create_file_size(): use IS_ERR to check for error + - ipack: ipoctal: fix stack information leak + - ipack: ipoctal: fix tty registration race + - ipack: ipoctal: fix tty-registration error handling + - ipack: ipoctal: fix missing allocation-failure check + - ipack: ipoctal: fix module reference leak + - ext4: fix loff_t overflow in ext4_max_bitmap_size() + - ext4: fix reserved space counter leakage + - ext4: fix potential infinite loop in ext4_dx_readdir() + - HID: u2fzero: ignore incomplete packets without data + - net: udp: annotate data race around udp_sk(sk)->corkflag + - net: stmmac: don't attach interface until resume finishes + - PCI: Fix pci_host_bridge struct device release/free handling + - libnvdimm/pmem: Fix crash triggered when I/O in-flight during unbind + - hso: fix bailout in error case of probe + - usb: hso: fix error handling code of hso_create_net_device + - usb: hso: remove the bailout parameter + - crypto: ccp - fix resource leaks in ccp_run_aes_gcm_cmd() + - HID: betop: fix slab-out-of-bounds Write in betop_probe + - netfilter: ipset: Fix oversized kvmalloc() calls + - HID: usbhid: free raw_report buffers in usbhid_stop + - Linux 5.4.151 + * Focal update: v5.4.150 upstream stable release (LP: #1947886) + - usb: gadget: r8a66597: fix a loop in set_feature() + - usb: dwc2: gadget: Fix ISOC flow for BDMA and Slave + - usb: dwc2: gadget: Fix ISOC transfer complete handling for DDMA + - usb: musb: tusb6010: uninitialized data in tusb_fifo_write_unaligned() + - cifs: fix incorrect check for null pointer in header_assemble + - xen/x86: fix PV trap handling on secondary processors + - usb-storage: Add quirk for ScanLogic SL11R-IDE older than 2.6c + - USB: serial: cp210x: add ID for GW Instek GDM-834x Digital Multimeter + - USB: cdc-acm: fix minor-number release + - binder: make sure fd closes complete + - staging: greybus: uart: fix tty use after free + - Re-enable UAS for LaCie Rugged USB3-FW with fk quirk + - USB: serial: mos7840: remove duplicated 0xac24 device ID + - USB: serial: option: add Telit LN920 compositions + - USB: serial: option: remove duplicate USB device ID + - USB: serial: option: add device id for Foxconn T99W265 + - mcb: fix error handling in mcb_alloc_bus() + - erofs: fix up erofs_lookup tracepoint + - btrfs: prevent __btrfs_dump_space_info() to underflow its free space + - serial: mvebu-uart: fix driver's tx_empty callback + - net: hso: fix muxed tty registration + - afs: Fix incorrect triggering of sillyrename on 3rd-party invalidation + - platform/x86/intel: punit_ipc: Drop wrong use of ACPI_PTR() + - enetc: Fix illegal access when reading affinity_hint + - bnxt_en: Fix TX timeout when TX ring size is set to the smallest + - net/smc: add missing error check in smc_clc_prfx_set() + - gpio: uniphier: Fix void functions to remove return value + - qed: rdma - don't wait for resources under hw error recovery flow + - net/mlx4_en: Don't allow aRFS for encapsulated packets + - scsi: iscsi: Adjust iface sysfs attr detection + - tty: synclink_gt, drop unneeded forward declarations + - tty: synclink_gt: rename a conflicting function name + - fpga: machxo2-spi: Return an error on failure + - fpga: machxo2-spi: Fix missing error code in machxo2_write_complete() + - thermal/core: Potential buffer overflow in thermal_build_list_of_policies() + - cifs: fix a sign extension bug + - scsi: qla2xxx: Restore initiator in dual mode + - scsi: lpfc: Use correct scnprintf() limit + - irqchip/goldfish-pic: Select GENERIC_IRQ_CHIP to fix build + - irqchip/gic-v3-its: Fix potential VPE leak on error + - md: fix a lock order reversal in md_alloc + - blktrace: Fix uaf in blk_trace access after removing by sysfs + - net: macb: fix use after free on rmmod + - net: stmmac: allow CSR clock of 300MHz + - m68k: Double cast io functions to unsigned long + - ipv6: delay fib6_sernum increase in fib6_add + - bpf: Add oversize check before call kvcalloc() + - xen/balloon: use a kernel thread instead a workqueue + - nvme-multipath: fix ANA state updates when a namespace is not present + - sparc32: page align size in arch_dma_alloc + - blk-cgroup: fix UAF by grabbing blkcg lock before destroying blkg pd + - compiler.h: Introduce absolute_pointer macro + - net: i825xx: Use absolute_pointer for memcpy from fixed memory location + - sparc: avoid stringop-overread errors + - qnx4: avoid stringop-overread errors + - parisc: Use absolute_pointer() to define PAGE0 + - arm64: Mark __stack_chk_guard as __ro_after_init + - alpha: Declare virt_to_phys and virt_to_bus parameter as pointer to volatile + - net: 6pack: Fix tx timeout and slot time + - spi: Fix tegra20 build with CONFIG_PM=n + - EDAC/synopsys: Fix wrong value type assignment for edac_mode + - thermal/drivers/int340x: Do not set a wrong tcc offset on resume + - arm64: dts: marvell: armada-37xx: Extend PCIe MEM space + - xen/balloon: fix balloon kthread freezing + - qnx4: work around gcc false positive warning bug + - Linux 5.4.150 + * ACL updates on OCFS2 are not revalidated (LP: #1947161) // Focal update: + v5.4.150 upstream stable release (LP: #1947886) + - ocfs2: drop acl cache for directories too + * Focal update: v5.4.149 upstream stable release (LP: #1947885) + - PCI: pci-bridge-emul: Fix big-endian support + - PCI: aardvark: Indicate error in 'val' when config read fails + - PCI: pci-bridge-emul: Add PCIe Root Capabilities Register + - PCI: aardvark: Fix reporting CRS value + - PCI/ACPI: Add Ampere Altra SOC MCFG quirk + - KVM: remember position in kvm->vcpus array + - console: consume APC, DM, DCS + - s390/pci_mmio: fully validate the VMA before calling follow_pte() + - ARM: Qualify enabling of swiotlb_init() + - apparmor: remove duplicate macro list_entry_is_head() + - ARM: 9077/1: PLT: Move struct plt_entries definition to header + - ARM: 9078/1: Add warn suppress parameter to arm_gen_branch_link() + - ARM: 9079/1: ftrace: Add MODULE_PLTS support + - ARM: 9098/1: ftrace: MODULE_PLT: Fix build problem without DYNAMIC_FTRACE + - sctp: validate chunk size in __rcv_asconf_lookup + - sctp: add param size validation for SCTP_PARAM_SET_PRIMARY + - staging: rtl8192u: Fix bitwise vs logical operator in + TranslateRxSignalStuff819xUsb() + - um: virtio_uml: fix memory leak on init failures + - dmaengine: acpi: Avoid comparison GSI with Linux vIRQ + - thermal/drivers/exynos: Fix an error code in exynos_tmu_probe() + - 9p/trans_virtio: Remove sysfs file on probe failure + - prctl: allow to setup brk for et_dyn executables + - nilfs2: use refcount_dec_and_lock() to fix potential UAF + - profiling: fix shift-out-of-bounds bugs + - pwm: lpc32xx: Don't modify HW state in .probe() after the PWM chip was + registered + - phy: avoid unnecessary link-up delay in polling mode + - net: stmmac: reset Tx desc base address before restarting Tx + - Kconfig.debug: drop selecting non-existing HARDLOCKUP_DETECTOR_ARCH + - thermal/core: Fix thermal_cooling_device_register() prototype + - drivers: base: cacheinfo: Get rid of DEFINE_SMP_CALL_CACHE_FUNCTION() + - parisc: Move pci_dev_is_behind_card_dino to where it is used + - dmaengine: sprd: Add missing MODULE_DEVICE_TABLE + - dmaengine: ioat: depends on !UML + - dmaengine: xilinx_dma: Set DMA mask for coherent APIs + - ceph: request Fw caps before updating the mtime in ceph_write_iter + - ceph: lockdep annotations for try_nonblocking_invalidate + - btrfs: fix lockdep warning while mounting sprout fs + - nilfs2: fix memory leak in nilfs_sysfs_create_device_group + - nilfs2: fix NULL pointer in nilfs_##name##_attr_release + - nilfs2: fix memory leak in nilfs_sysfs_create_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_##name##_group + - nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_group + - nilfs2: fix memory leak in nilfs_sysfs_delete_snapshot_group + - pwm: img: Don't modify HW state in .remove() callback + - pwm: rockchip: Don't modify HW state in .remove() callback + - pwm: stm32-lp: Don't modify HW state in .remove() callback + - blk-throttle: fix UAF by deleteing timer in blk_throtl_exit() + - rtc: rx8010: select REGMAP_I2C + - drm/nouveau/nvkm: Replace -ENOSYS with -ENODEV + - Linux 5.4.149 + + -- Krzysztof Kozlowski Tue, 09 Nov 2021 12:30:03 +0100 + +linux-azure (5.4.0-1063.66) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1063.66 -proposed tracker (LP: #1947235) + + [ Ubuntu: 5.4.0-90.101 ] + + * focal/linux: 5.4.0-90.101 -proposed tracker (LP: #1947260) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.10.18) + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + * No sound on Lenovo laptop models Legion 15IMHG05, Yoga 7 14ITL5, and 13s + Gen2 (LP: #1939052) + - ALSA: hda/realtek: Quirks to enable speaker output for Lenovo Legion 7i + 15IMHG05, Yoga 7i 14ITL5/15ITL5, and 13s Gen2 laptops. + - ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo 13s + Gen2 + * CVE-2020-36385 + - RDMA/cma: Add missing locking to rdma_accept() + - RDMA/ucma: Fix the locking of ctx->file + - RDMA/ucma: Rework ucma_migrate_id() to avoid races with destroy + * Focal update: v5.4.148 upstream stable release (LP: #1946802) + - rtc: tps65910: Correct driver module alias + - btrfs: wake up async_delalloc_pages waiters after submit + - btrfs: reset replace target device to allocation state on close + - blk-zoned: allow zone management send operations without CAP_SYS_ADMIN + - blk-zoned: allow BLKREPORTZONE without CAP_SYS_ADMIN + - PCI/MSI: Skip masking MSI-X on Xen PV + - powerpc/perf/hv-gpci: Fix counter value parsing + - xen: fix setting of max_pfn in shared_info + - include/linux/list.h: add a macro to test if entry is pointing to the head + - 9p/xen: Fix end of loop tests for list_for_each_entry + - tools/thermal/tmon: Add cross compiling support + - pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast + - pinctrl: ingenic: Fix incorrect pull up/down info + - soc: qcom: aoss: Fix the out of bound usage of cooling_devs + - soc: aspeed: lpc-ctrl: Fix boundary check for mmap + - soc: aspeed: p2a-ctrl: Fix boundary check for mmap + - arm64: head: avoid over-mapping in map_memory + - crypto: public_key: fix overflow during implicit conversion + - block: bfq: fix bfq_set_next_ioprio_data() + - power: supply: max17042: handle fails of reading status register + - dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() + - VMCI: fix NULL pointer dereference when unmapping queue pair + - media: uvc: don't do DMA on stack + - media: rc-loopback: return number of emitters rather than error + - Revert "dmaengine: imx-sdma: refine to load context only once" + - dmaengine: imx-sdma: remove duplicated sdma_load_context + - libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs + - ARM: 9105/1: atags_to_fdt: don't warn about stack size + - PCI/portdrv: Enable Bandwidth Notification only if port supports it + - PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported + - PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure + - PCI: xilinx-nwl: Enable the clock through CCF + - PCI: aardvark: Fix checking for PIO status + - PCI: aardvark: Increase polling delay to 1.5s while waiting for PIO response + - PCI: aardvark: Fix masking and unmasking legacy INTx interrupts + - HID: input: do not report stylus battery state as "full" + - f2fs: quota: fix potential deadlock + - scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND + - IB/hfi1: Adjust pkey entry in index 0 + - RDMA/iwcm: Release resources if iw_cm module initialization fails + - docs: Fix infiniband uverbs minor number + - pinctrl: samsung: Fix pinctrl bank pin count + - vfio: Use config not menuconfig for VFIO_NOIOMMU + - powerpc/stacktrace: Include linux/delay.h + - RDMA/efa: Remove double QP type assignment + - f2fs: show f2fs instance in printk_ratelimited + - f2fs: reduce the scope of setting fsck tag when de->name_len is zero + - openrisc: don't printk() unconditionally + - dma-debug: fix debugfs initialization order + - SUNRPC: Fix potential memory corruption + - scsi: fdomain: Fix error return code in fdomain_probe() + - pinctrl: single: Fix error return code in pcs_parse_bits_in_pinctrl_entry() + - scsi: smartpqi: Fix an error code in pqi_get_raid_map() + - scsi: qedi: Fix error codes in qedi_alloc_global_queues() + - scsi: qedf: Fix error codes in qedf_alloc_global_queues() + - powerpc/config: Renable MTD_PHYSMAP_OF + - scsi: target: avoid per-loop XCOPY buffer allocations + - HID: i2c-hid: Fix Elan touchpad regression + - KVM: PPC: Book3S HV Nested: Reflect guest PMU in-use to L0 when guest SPRs + are live + - platform/x86: dell-smbios-wmi: Add missing kfree in error-exit from + run_smbios_call + - fscache: Fix cookie key hashing + - clk: at91: sam9x60: Don't use audio PLL + - clk: at91: clk-generated: pass the id of changeable parent at registration + - clk: at91: clk-generated: Limit the requested rate to our range + - KVM: PPC: Fix clearing never mapped TCEs in realmode + - f2fs: fix to account missing .skipped_gc_rwsem + - f2fs: fix unexpected ENOENT comes from f2fs_map_blocks() + - f2fs: fix to unmap pages from userspace process in punch_hole() + - MIPS: Malta: fix alignment of the devicetree buffer + - kbuild: Fix 'no symbols' warning when CONFIG_TRIM_UNUSD_KSYMS=y + - userfaultfd: prevent concurrent API initialization + - drm/amdgpu: Fix amdgpu_ras_eeprom_init() + - ASoC: atmel: ATMEL drivers don't need HAS_DMA + - media: dib8000: rewrite the init prbs logic + - crypto: mxs-dcp - Use sg_mapping_iter to copy data + - PCI: Use pci_update_current_state() in pci_enable_device_flags() + - tipc: keep the skb in rcv queue until the whole data is read + - iio: dac: ad5624r: Fix incorrect handling of an optional regulator. + - iavf: do not override the adapter state in the watchdog task + - iavf: fix locking of critical sections + - ARM: dts: qcom: apq8064: correct clock names + - video: fbdev: kyro: fix a DoS bug by restricting user input + - netlink: Deal with ESRCH error in nlmsg_notify() + - Smack: Fix wrong semantics in smk_access_entry() + - drm: avoid blocking in drm_clients_info's rcu section + - igc: Check if num of q_vectors is smaller than max before array access + - usb: host: fotg210: fix the endpoint's transactional opportunities + calculation + - usb: host: fotg210: fix the actual_length of an iso packet + - usb: gadget: u_ether: fix a potential null pointer dereference + - USB: EHCI: ehci-mv: improve error handling in mv_ehci_enable() + - usb: gadget: composite: Allow bMaxPower=0 if self-powered + - staging: board: Fix uninitialized spinlock when attaching genpd + - tty: serial: jsm: hold port lock when reporting modem line changes + - drm/amd/display: Fix timer_per_pixel unit error + - drm/amd/amdgpu: Update debugfs link_settings output link_rate field in hex + - bpf/tests: Fix copy-and-paste error in double word test + - bpf/tests: Do not PASS tests without actually testing the result + - video: fbdev: asiliantfb: Error out if 'pixclock' equals zero + - video: fbdev: kyro: Error out if 'pixclock' equals zero + - video: fbdev: riva: Error out if 'pixclock' equals zero + - ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() + - flow_dissector: Fix out-of-bounds warnings + - s390/jump_label: print real address in a case of a jump label bug + - s390: make PCI mio support a machine flag + - serial: 8250: Define RX trigger levels for OxSemi 950 devices + - xtensa: ISS: don't panic in rs_init + - hvsi: don't panic on tty_register_driver failure + - serial: 8250_pci: make setup_port() parameters explicitly unsigned + - staging: ks7010: Fix the initialization of the 'sleep_status' structure + - samples: bpf: Fix tracex7 error raised on the missing argument + - ata: sata_dwc_460ex: No need to call phy_exit() befre phy_init() + - Bluetooth: skip invalid hci_sync_conn_complete_evt + - workqueue: Fix possible memory leaks in wq_numa_init() + - bonding: 3ad: fix the concurrency between __bond_release_one() and + bond_3ad_state_machine_handler() + - arm64: tegra: Fix Tegra194 PCIe EP compatible string + - ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the + matching in-/output + - media: imx258: Rectify mismatch of VTS value + - media: imx258: Limit the max analogue gain to 480 + - media: v4l2-dv-timings.c: fix wrong condition in two for-loops + - media: TDA1997x: fix tda1997x_query_dv_timings() return value + - media: tegra-cec: Handle errors of clk_prepare_enable() + - ARM: dts: imx53-ppd: Fix ACHC entry + - arm64: dts: qcom: sdm660: use reg value for memory node + - net: ethernet: stmmac: Do not use unreachable() in ipq806x_gmac_probe() + - drm/msm: mdp4: drop vblank get/put from prepare/complete_commit + - selftests/bpf: Fix xdp_tx.c prog section name + - Bluetooth: schedule SCO timeouts with delayed_work + - Bluetooth: avoid circular locks in sco_sock_connect + - net/mlx5: Fix variable type to match 64bit + - gpu: drm: amd: amdgpu: amdgpu_i2c: fix possible uninitialized-variable + access in amdgpu_i2c_router_select_ddc_port() + - drm/display: fix possible null-pointer dereference in dcn10_set_clock() + - mac80211: Fix monitor MTU limit so that A-MSDUs get through + - ARM: tegra: tamonten: Fix UART pad setting + - arm64: tegra: Fix compatible string for Tegra132 CPUs + - arm64: dts: ls1046a: fix eeprom entries + - nvme-tcp: don't check blk_mq_tag_to_rq when receiving pdu data + - Bluetooth: Fix handling of LE Enhanced Connection Complete + - opp: Don't print an error if required-opps is missing + - serial: sh-sci: fix break handling for sysrq + - tcp: enable data-less, empty-cookie SYN with TFO_SERVER_COOKIE_NOT_REQD + - rpc: fix gss_svc_init cleanup on failure + - staging: rts5208: Fix get_ms_information() heap buffer size + - gfs2: Don't call dlm after protocol is unmounted + - usb: chipidea: host: fix port index underflow and UBSAN complains + - lockd: lockd server-side shouldn't set fl_ops + - drm/exynos: Always initialize mapping in exynos_drm_register_dma() + - m68knommu: only set CONFIG_ISA_DMA_API for ColdFire sub-arch + - btrfs: tree-log: check btrfs_lookup_data_extent return value + - ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER + - ASoC: Intel: Skylake: Fix passing loadable flag for module + - of: Don't allow __of_attached_node_sysfs() without CONFIG_SYSFS + - mmc: sdhci-of-arasan: Check return value of non-void funtions + - mmc: rtsx_pci: Fix long reads when clock is prescaled + - selftests/bpf: Enlarge select() timeout for test_maps + - mmc: core: Return correct emmc response in case of ioctl error + - cifs: fix wrong release in sess_alloc_buffer() failed path + - Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST + quirk set" + - usb: musb: musb_dsps: request_irq() after initializing musb + - usbip: give back URBs for unsent unlink requests during cleanup + - usbip:vhci_hcd USB port can get stuck in the disabled state + - ASoC: rockchip: i2s: Fix regmap_ops hang + - ASoC: rockchip: i2s: Fixup config for DAIFMT_DSP_A/B + - drm/amdkfd: Account for SH/SE count when setting up cu masks. + - iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed + - iwlwifi: mvm: avoid static queue number aliasing + - iwlwifi: mvm: fix access to BSS elements + - net/mlx5: DR, Enable QP retransmission + - parport: remove non-zero check on count + - ath9k: fix OOB read ar9300_eeprom_restore_internal + - ath9k: fix sleeping in atomic context + - net: fix NULL pointer reference in cipso_v4_doi_free + - fix array-index-out-of-bounds in taprio_change + - net: w5100: check return value after calling platform_get_resource() + - parisc: fix crash with signals and alloca + - ovl: fix BUG_ON() in may_delete() when called from ovl_cleanup() + - scsi: BusLogic: Fix missing pr_cont() use + - scsi: qla2xxx: Changes to support kdump kernel + - scsi: qla2xxx: Sync queue idx with queue_pair_map idx + - cpufreq: powernv: Fix init_chip_info initialization in numa=off + - s390/pv: fix the forcing of the swiotlb + - mm/hugetlb: initialize hugetlb_usage in mm_init + - mm,vmscan: fix divide by zero in get_scan_count + - memcg: enable accounting for pids in nested pid namespaces + - platform/chrome: cros_ec_proto: Send command again when timeout occurs + - lib/test_stackinit: Fix static initializer test + - net: dsa: lantiq_gswip: fix maximum frame length + - drm/msi/mdp4: populate priv->kms in mdp4_kms_init + - drm/amdgpu: Fix BUG_ON assert + - drm/panfrost: Simplify lock_region calculation + - drm/panfrost: Use u64 for size in lock_region + - drm/panfrost: Clamp lock region to Bifrost minimum + - btrfs: fix upper limit for max_inline for page size 64K + - xen: reset legacy rtc flag for PV domU + - bnx2x: Fix enabling network interfaces without VFs + - arm64/sve: Use correct size when reinitialising SVE state + - PM: base: power: don't try to use non-existing RTC for storing data + - PCI: Add AMD GPU multi-function power dependencies + - drm/amd/amdgpu: Increase HWIP_MAX_INSTANCE to 10 + - drm/etnaviv: return context from etnaviv_iommu_context_get + - drm/etnaviv: put submit prev MMU context when it exists + - drm/etnaviv: stop abusing mmu_context as FE running marker + - drm/etnaviv: keep MMU context across runtime suspend/resume + - drm/etnaviv: exec and MMU state is lost when resetting the GPU + - drm/etnaviv: fix MMU context leak on GPU reset + - drm/etnaviv: reference MMU context when setting up hardware state + - drm/etnaviv: add missing MMU context put when reaping MMU mapping + - s390/sclp: fix Secure-IPL facility detection + - x86/mm: Fix kern_addr_valid() to cope with existing but not present entries + - tipc: fix an use-after-free issue in tipc_recvmsg + - net-caif: avoid user-triggerable WARN_ON(1) + - ptp: dp83640: don't define PAGE0 + - net/l2tp: Fix reference count leak in l2tp_udp_recv_core + - r6040: Restore MDIO clock frequency after MAC reset + - tipc: increase timeout in tipc_sk_enqueue() + - perf machine: Initialize srcline string member in add_location struct + - net/mlx5: FWTrace, cancel work on alloc pd error flow + - net/mlx5: Fix potential sleeping in atomic context + - events: Reuse value read using READ_ONCE instead of re-reading it + - vhost_net: fix OoB on sendmsg() failure. + - net/af_unix: fix a data-race in unix_dgram_poll + - net: dsa: destroy the phylink instance on any error in dsa_slave_phy_setup + - tcp: fix tp->undo_retrans accounting in tcp_sacktag_one() + - qed: Handle management FW error + - dt-bindings: arm: Fix Toradex compatible typo + - ibmvnic: check failover_pending in login response + - KVM: PPC: Book3S HV: Tolerate treclaim. in fake-suspend mode changing + registers + - net: hns3: pad the short tunnel frame before sending to hardware + - net: hns3: change affinity_mask to numa node range + - net: hns3: disable mac in flr process + - net: hns3: fix the timing issue of VF clearing interrupt sources + - mm/memory_hotplug: use "unsigned long" for PFN in zone_for_pfn_range() + - dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation + - mfd: db8500-prcmu: Adjust map to reality + - PCI: Add ACS quirks for NXP LX2xx0 and LX2xx2 platforms + - fuse: fix use after free in fuse_read_interrupt() + - mfd: Don't use irq_create_mapping() to resolve a mapping + - tracing/probes: Reject events which have the same name of existing one + - PCI: Add ACS quirks for Cavium multi-function devices + - Set fc_nlinfo in nh_create_ipv4, nh_create_ipv6 + - net: usb: cdc_mbim: avoid altsetting toggling for Telit LN920 + - PCI: ibmphp: Fix double unmap of io_mem + - ethtool: Fix an error code in cxgb2.c + - NTB: Fix an error code in ntb_msit_probe() + - NTB: perf: Fix an error code in perf_setup_inbuf() + - mfd: axp20x: Update AXP288 volatile ranges + - PCI: Fix pci_dev_str_match_path() alloc while atomic bug + - mfd: tqmx86: Clear GPIO IRQ resource when no IRQ is set + - KVM: arm64: Handle PSCI resets before userspace touches vCPU state + - PCI: Sync __pci_register_driver() stub for CONFIG_PCI=n + - mtd: rawnand: cafe: Fix a resource leak in the error handling path of + 'cafe_nand_probe()' + - ARC: export clear_user_page() for modules + - perf unwind: Do not overwrite FEATURE_CHECK_LDFLAGS-libunwind-{x86,aarch64} + - net: dsa: b53: Fix calculating number of switch ports + - netfilter: socket: icmp6: fix use-after-scope + - fq_codel: reject silly quantum parameters + - qlcnic: Remove redundant unlock in qlcnic_pinit_from_rom + - ip_gre: validate csum_start only on pull + - net: renesas: sh_eth: Fix freeing wrong tx descriptor + - Linux 5.4.148 + * Focal update: v5.4.147 upstream stable release (LP: #1946795) + - Linux 5.4.147 + - upstream stable to v5.4.147 + * CVE-2021-3428 + - ext4: save the error code which triggered an ext4_error() in the superblock + - ext4: simulate various I/O and checksum errors when reading metadata + - ext4: save all error info in save_error_info() and drop ext4_set_errno() + - ext4: check journal inode extents more carefully + * ip6gretap / erspan / ip6erspan in rtnetlink.sh from net of + ubuntu_kernel_selftests failed on B-5.4-aws / B-5.4-gke / B-5.4-oracle / + B-5.4-azure / B-5.4 (LP: #1896448) + - SAUCE: selftests: rtnetlink: fixes for older iproute2 + * CVE-2019-19449 + - f2fs: fix wrong total_sections check and fsmeta check + - f2fs: fix to do sanity check on segment/section count + * kernel bug found when disconnecting one fiber channel interface on Cisco + Chassis with fnic DRV_VERSION "1.6.0.47" (LP: #1944586) + - scsi: fnic: Do not call 'scsi_done()' for unhandled commands + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (unknown type + name ‘__u64’) (LP: #1944613) + - SAUCE: selftests/memfd: fix __u64 not defined build issue + * Medion Notebook Keyboard not working (LP: #1909814) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + * vrf: fix refcnt leak with vxlan slaves (LP: #1945180) + - ipv4: Fix device used for dst_alloc with local routes + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add a new fips-checks script + - [Packaging] Add fips-checks as part of finalchecks + * Fix cold plugged USB device on certain PCIe USB cards (LP: #1945211) + - Revert "UBUNTU: SAUCE: Revert "usb: core: reduce power-on-good delay time of + root hub"" + - usb: core: hcd: Add support for deferring roothub registration + - xhci: Set HCD flag to defer primary roothub registration + - usb: core: hcd: Modularize HCD stop configuration in usb_stop_hcd() + * CVE-2021-3759 + - memcg: enable accounting of ipc resources + * Focal update: v5.4.146 upstream stable release (LP: #1946024) + - locking/mutex: Fix HANDOFF condition + - regmap: fix the offset of register error log + - crypto: mxs-dcp - Check for DMA mapping errors + - sched/deadline: Fix reset_on_fork reporting of DL tasks + - power: supply: axp288_fuel_gauge: Report register-address on readb / writeb + errors + - crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() + - sched/deadline: Fix missing clock update in migrate_task_rq_dl() + - rcu/tree: Handle VM stoppage in stall detection + - hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() + - hrtimer: Ensure timerfd notification for HIGHRES=n + - udf: Check LVID earlier + - udf: Fix iocharset=utf8 mount option + - isofs: joliet: Fix iocharset=utf8 mount option + - bcache: add proper error unwinding in bcache_device_init + - nvme-tcp: don't update queue count when failing to set io queues + - nvme-rdma: don't update queue count when failing to set io queues + - nvmet: pass back cntlid on successful completion + - power: supply: max17042_battery: fix typo in MAx17042_TOFF + - s390/cio: add dev_busid sysfs entry for each subchannel + - libata: fix ata_host_start() + - crypto: qat - do not ignore errors from enable_vf2pf_comms() + - crypto: qat - handle both source of interrupt in VF ISR + - crypto: qat - fix reuse of completion variable + - crypto: qat - fix naming for init/shutdown VF to PF notifications + - crypto: qat - do not export adf_iov_putmsg() + - fcntl: fix potential deadlock for &fasync_struct.fa_lock + - udf_get_extendedattr() had no boundary checks. + - s390/kasan: fix large PMD pages address alignment check + - s390/debug: fix debug area life cycle + - m68k: emu: Fix invalid free in nfeth_cleanup() + - sched: Fix UCLAMP_FLAG_IDLE setting + - spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config + - spi: spi-pic32: Fix issue with uninitialized dma_slave_config + - genirq/timings: Fix error return code in irq_timings_test_irqs() + - lib/mpi: use kcalloc in mpi_resize + - clocksource/drivers/sh_cmt: Fix wrong setting if don't request IRQ for clock + source channel + - crypto: qat - use proper type for vf_mask + - certs: Trigger creation of RSA module signing key if it's not an RSA key + - regulator: vctrl: Use locked regulator_get_voltage in probe path + - regulator: vctrl: Avoid lockdep warning in enable/disable ops + - spi: sprd: Fix the wrong WDG_LOAD_VAL + - spi: spi-zynq-qspi: use wait_for_completion_timeout to make + zynq_qspi_exec_mem_op not interruptible + - EDAC/i10nm: Fix NVDIMM detection + - drm/panfrost: Fix missing clk_disable_unprepare() on error in + panfrost_clk_init() + - media: TDA1997x: enable EDID support + - soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally + - media: cxd2880-spi: Fix an error handling path + - bpf: Fix a typo of reuseport map in bpf.h. + - bpf: Fix potential memleak and UAF in the verifier. + - ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi + - arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties + - soc: qcom: rpmhpd: Use corner in power_off + - media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init + - media: dvb-usb: fix uninit-value in vp702x_read_mac_addr + - media: dvb-usb: Fix error handling in dvb_usb_i2c_init + - media: go7007: remove redundant initialization + - media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats + - Bluetooth: sco: prevent information leak in sco_conn_defer_accept() + - 6lowpan: iphc: Fix an off-by-one check of array index + - netns: protect netns ID lookups with RCU + - tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos + - ARM: dts: meson8: Use a higher default GPU clock frequency + - ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties + - ARM: dts: meson8b: mxq: Fix the pwm regulator supply properties + - ARM: dts: meson8b: ec100: Fix the pwm regulator supply properties + - net/mlx5e: Prohibit inner indir TIRs in IPoIB + - cgroup/cpuset: Fix a partition bug with hotplug + - net: cipso: fix warnings in netlbl_cipsov4_add_std + - i2c: highlander: add IRQ check + - leds: lt3593: Put fwnode in any case during ->probe() + - leds: trigger: audio: Add an activate callback to ensure the initial + brightness is set + - media: em28xx-input: fix refcount bug in em28xx_usb_disconnect + - media: venus: venc: Fix potential null pointer dereference on pointer fmt + - PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently + - PCI: PM: Enable PME if it can be signaled from D3cold + - soc: qcom: smsm: Fix missed interrupts if state changes while masked + - debugfs: Return error during {full/open}_proxy_open() on rmmod + - Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow + - PM: EM: Increase energy calculation precision + - drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs + - arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 + - counter: 104-quad-8: Return error when invalid mode during ceiling_write + - Bluetooth: fix repeated calls to sco_sock_kill + - drm/msm/dsi: Fix some reference counted resource leaks + - usb: gadget: udc: at91: add IRQ check + - usb: phy: fsl-usb: add IRQ check + - usb: phy: twl6030: add IRQ checks + - usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse + - usb: host: ohci-tmio: add IRQ check + - usb: phy: tahvo: add IRQ check + - mac80211: Fix insufficient headroom issue for AMSDU + - lockd: Fix invalid lockowner cast after vfs_test_lock + - nfsd4: Fix forced-expiry locking + - usb: gadget: mv_u3d: request_irq() after initializing UDC + - mm/swap: consider max pages in iomap_swapfile_add_extent + - Bluetooth: add timeout sanity check to hci_inquiry + - i2c: iop3xx: fix deferred probing + - i2c: s3c2410: fix IRQ check + - rsi: fix error code in rsi_load_9116_firmware() + - rsi: fix an error code in rsi_probe() + - ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs + - ASoC: Intel: Skylake: Fix module resource and format selection + - mmc: dw_mmc: Fix issue with uninitialized dma_slave_config + - mmc: moxart: Fix issue with uninitialized dma_slave_config + - bpf: Fix possible out of bound write in narrow load handling + - CIFS: Fix a potencially linear read overflow + - i2c: mt65xx: fix IRQ check + - usb: ehci-orion: Handle errors of clk_prepare_enable() in probe + - usb: bdc: Fix an error handling path in 'bdc_probe()' when no suitable DMA + config is available + - tty: serial: fsl_lpuart: fix the wrong mapbase value + - ASoC: wcd9335: Fix a double irq free in the remove function + - ASoC: wcd9335: Fix a memory leak in the error handling path of the probe + function + - ASoC: wcd9335: Disable irq on slave ports in the remove function + - ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() + - bcma: Fix memory leak for internally-handled cores + - brcmfmac: pcie: fix oops on failure to resume and reprobe + - ipv6: make exception cache less predictible + - ipv4: make exception cache less predictible + - net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed + - net: qualcomm: fix QCA7000 checksum handling + - octeontx2-af: Fix loop in free and unmap counter + - ipv4: fix endianness issue in inet_rtm_getroute_build_skb() + - bpf: Introduce BPF nospec instruction for mitigating Spectre v4 + - bpf: Fix leakage due to insufficient speculative store bypass mitigation + - bpf: verifier: Allocate idmap scratch in verifier env + - bpf: Fix pointer arithmetic mask tightening under state pruning + - tty: Fix data race between tiocsti() and flush_to_ldisc() + - perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op + - x86/resctrl: Fix a maybe-uninitialized build warning treated as error + - KVM: s390: index kvm->arch.idle_mask by vcpu_idx + - KVM: x86: Update vCPU's hv_clock before back to guest when tsc_offset is + adjusted + - KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter + - fuse: truncate pagecache on atomic_o_trunc + - fuse: flush extending writes + - IMA: remove -Wmissing-prototypes warning + - IMA: remove the dependency on CRYPTO_MD5 + - fbmem: don't allow too huge resolutions + - backlight: pwm_bl: Improve bootloader/kernel device handover + - clk: kirkwood: Fix a clocking boot regression + - Linux 5.4.146 + * AMD A8-7680 (amdgpu): broken Xorg acceleration and hibernation + (LP: #1920674) // Focal update: v5.4.146 upstream stable release + (LP: #1946024) + - drm/amdgpu/acp: Make PM domain really work + * Focal update: v5.4.145 upstream stable release (LP: #1945517) + - 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 + - kthread: Fix PF_KTHREAD vs to_kthread() race + - xtensa: fix kconfig unmet dependency warning for HAVE_FUTEX_CMPXCHG + - gpu: ipu-v3: Fix i.MX IPU-v3 offset calculations for (semi)planar U/V + formats + - reset: reset-zynqmp: Fixed the argument data type + - qed: Fix the VF msix vectors flow + - net: macb: Add a NULL check on desc_ptp + - qede: Fix memset corruption + - perf/x86/intel/pt: Fix mask of num_address_ranges + - perf/x86/amd/ibs: Work around erratum #1197 + - perf/x86/amd/power: Assign pmu.module + - cryptoloop: add a deprecation warning + - ARM: 8918/2: only build return_address() if needed + - ALSA: hda/realtek: Workaround for conflicting SSID on ASUS ROG Strix G17 + - ALSA: pcm: fix divide error in snd_pcm_lib_ioctl + - ARC: wireup clone3 syscall + - media: stkwebcam: fix memory leak in stk_camera_probe + - igmp: Add ip_mc_list lock in ip_check_mc_rcu + - USB: serial: mos7720: improve OOM-handling in read_mos_reg() + - ipv4/icmp: l3mdev: Perform icmp error route lookup on source device routing + table (v2) + - powerpc/boot: Delete unneeded .globl _zimage_start + - net: ll_temac: Remove left-over debug message + - mm/page_alloc: speed up the iteration of max_order + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - x86/events/amd/iommu: Fix invalid Perf result due to IOMMU PMC power-gating + - Revert "btrfs: compression: don't try to compress if we don't have enough + pages" + - ALSA: usb-audio: Add registration quirk for JBL Quantum 800 + - usb: host: xhci-rcar: Don't reload firmware after the completion + - usb: mtu3: use @mult for HS isoc or intr + - usb: mtu3: fix the wrong HS mult value + - xhci: fix unsafe memory usage in xhci tracing + - x86/reboot: Limit Dell Optiplex 990 quirk to early BIOS versions + - PCI: Call Max Payload Size-related fixup quirks early + - Linux 5.4.145 + * Focal update: v5.4.144 upstream stable release (LP: #1944756) + - net: qrtr: fix another OOB Read in qrtr_endpoint_post + - ARC: Fix CONFIG_STACKDEPOT + - netfilter: conntrack: collect all entries in one cycle + - once: Fix panic when module unload + - ovl: fix uninitialized pointer read in ovl_lookup_real_one() + - mmc: sdhci-msm: Update the software timeout value for sdhc + - mm, oom: make the calculation of oom badness more accurate + - can: usb: esd_usb2: esd_usb2_rx_event(): fix the interchange of the CAN RX + and TX error counters + - Revert "USB: serial: ch341: fix character loss at high transfer rates" + - USB: serial: option: add new VID/PID to support Fibocom FG150 + - usb: dwc3: gadget: Fix dwc3_calc_trbs_left() + - usb: dwc3: gadget: Stop EP0 transfers during pullup disable + - scsi: core: Fix hang of freezing queue between blocking and running device + - RDMA/bnxt_re: Add missing spin lock initialization + - IB/hfi1: Fix possible null-pointer dereference in _extend_sdma_tx_descs() + - e1000e: Fix the max snoop/no-snoop latency for 10M + - RDMA/efa: Free IRQ vectors on error flow + - ip_gre: add validation for csum_start + - xgene-v2: Fix a resource leak in the error handling path of 'xge_probe()' + - net: marvell: fix MVNETA_TX_IN_PRGRS bit number + - rtnetlink: Return correct error on changing device netns + - net: hns3: clear hardware resource when loading driver + - net: hns3: fix duplicate node in VLAN list + - net: hns3: fix get wrong pfc_en when query PFC configuration + - drm/i915: Fix syncmap memory leak + - usb: gadget: u_audio: fix race condition on endpoint stop + - perf/x86/intel/uncore: Fix integer overflow on 23 bit left shift of a u32 + - opp: remove WARN when no valid OPPs remain + - virtio: Improve vq->broken access to avoid any compiler optimization + - virtio_pci: Support surprise removal of virtio pci device + - vringh: Use wiov->used to check for read/write desc order + - qed: qed ll2 race condition fixes + - qed: Fix null-pointer dereference in qed_rdma_create_qp() + - drm: Copy drm_wait_vblank to user before returning + - drm/nouveau/disp: power down unused DP links during init + - net/rds: dma_map_sg is entitled to merge entries + - btrfs: fix race between marking inode needs to be logged and log syncing + - vt_kdsetmode: extend console locking + - bpf: Track contents of read-only maps as scalars + - bpf: Fix cast to pointer from integer of different size warning + - net: dsa: mt7530: fix VLAN traffic leaks again + - KVM: x86/mmu: Treat NX as used (not reserved) for all !TDP shadow MMUs + - arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - Revert "parisc: Add assembly implementations for memset, strlen, strcpy, + strncpy and strcat" + - 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.4.144 + + -- Krzysztof Kozlowski Thu, 21 Oct 2021 09:21:56 +0200 + +linux-azure (5.4.0-1062.65) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1062.65 -proposed tracker (LP: #1946370) + + [ Ubuntu: 5.4.0-89.100 ] + + * focal/linux: 5.4.0-89.100 -proposed tracker (LP: #1944901) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.27) + * ext4 journal recovery fails w/ data=journal + mmap (LP: #1847340) + - jbd2: introduce/export functions + jbd2_journal_submit|finish_inode_data_buffers() + - jbd2, ext4, ocfs2: introduce/use journal callbacks + j_submit|finish_inode_data_buffers() + - ext4: data=journal: fixes for ext4_page_mkwrite() + - ext4: data=journal: write-protect pages on j_submit_inode_data_buffers() + - ext4: fix mmap write protection for data=journal mode + * CVE-2021-40490 + - ext4: fix race writing to an inline_data file while its xattrs are changing + * Obsolete patch "UBUNTU: SAUCE: ext4: fix directory index node split + corruption" (LP: #1942902) + - Revert "UBUNTU: SAUCE: ext4: fix directory index node split corruption" + * psock_snd.sh in net from ubuntu_kernel_selftests ADT failure with + focal/groovy/hirsute/impish (LP: #1892213) + - selftests/net: remove min gso test in packet_snd + * Focal update: v5.4.143 upstream stable release (LP: #1944212) + - ext4: fix EXT4_MAX_LOGICAL_BLOCK macro + - x86/fpu: Make init_fpstate correct with optimized XSAVE + - ath: Use safer key clearing with key cache entries + - ath9k: Clear key cache explicitly on disabling hardware + - ath: Export ath_hw_keysetmac() + - ath: Modify ath_key_delete() to not need full key entry + - ath9k: Postpone key cache entry deletion for TXQ frames reference it + - mtd: cfi_cmdset_0002: fix crash when erasing/writing AMD cards + - media: zr364xx: propagate errors from zr364xx_start_readpipe() + - media: zr364xx: fix memory leaks in probe() + - media: drivers/media/usb: fix memory leak in zr364xx_probe + - USB: core: Avoid WARNings for 0-length descriptor requests + - dmaengine: xilinx_dma: Fix read-after-free bug when terminating transfers + - dmaengine: usb-dmac: Fix PM reference leak in usb_dmac_probe() + - ARM: dts: am43x-epos-evm: Reduce i2c0 bus speed for tps65218 + - dmaengine: of-dma: router_xlate to return -EPROBE_DEFER if controller is not + yet available + - scsi: megaraid_mm: Fix end of loop tests for list_for_each_entry() + - scsi: scsi_dh_rdac: Avoid crash during rdac_bus_attach() + - scsi: core: Avoid printing an error if target_alloc() returns -ENXIO + - scsi: core: Fix capacity set to zero after offlinining device + - ARM: dts: nomadik: Fix up interrupt controller node names + - net: usb: lan78xx: don't modify phy_device state concurrently + - drm/amd/display: Fix Dynamic bpp issue with 8K30 with Navi 1X + - Bluetooth: hidp: use correct wait queue when removing ctrl_wait + - iommu: Check if group is NULL before remove device + - cpufreq: armada-37xx: forbid cpufreq for 1.2 GHz variant + - dccp: add do-while-0 stubs for dccp_pr_debug macros + - virtio: Protect vqs list access + - vhost: Fix the calculation in vhost_overflow() + - bpf: Clear zext_dst of dead insns + - bnxt: don't lock the tx queue from napi poll + - bnxt: disable napi before canceling DIM + - net: 6pack: fix slab-out-of-bounds in decode_data + - ptp_pch: Restore dependency on PCI + - bnxt_en: Add missing DMA memory barriers + - vrf: Reset skb conntrack connection on VRF rcv + - virtio-net: support XDP when not more queues + - virtio-net: use NETIF_F_GRO_HW instead of NETIF_F_LRO + - net: qlcnic: add missed unlock in qlcnic_83xx_flash_read32 + - net: mdio-mux: Don't ignore memory allocation errors + - net: mdio-mux: Handle -EPROBE_DEFER correctly + - ovs: clear skb->tstamp in forwarding path + - i40e: Fix ATR queue selection + - iavf: Fix ping is lost after untrusted VF had tried to change MAC + - ovl: add splice file read write helper + - mmc: dw_mmc: Fix hang on data CRC error + - ALSA: hda - fix the 'Capture Switch' value change notifications + - tracing / histogram: Fix NULL pointer dereference on strcmp() on NULL event + name + - slimbus: messaging: start transaction ids from 1 instead of zero + - slimbus: messaging: check for valid transaction id + - slimbus: ngd: reset dma setup during runtime pm + - ipack: tpci200: fix many double free issues in tpci200_pci_probe + - ipack: tpci200: fix memory leak in the tpci200_register + - btrfs: prevent rename2 from exchanging a subvol with a directory from + different parents + - PCI: Increase D3 delay for AMD Renoir/Cezanne XHCI + - ASoC: intel: atom: Fix breakage for PCM buffer address setup + - mm, memcg: avoid stale protection values when cgroup is above protection + - mm: memcontrol: fix occasional OOMs due to proportional memory.low reclaim + - fs: warn about impending deprecation of mandatory locks + - netfilter: nft_exthdr: fix endianness of tcp option cast + - Linux 5.4.143 + * Focal update: v5.4.142 upstream stable release (LP: #1944202) + - iio: adc: ti-ads7950: Ensure CS is deasserted after reading channels + - iio: humidity: hdc100x: Add margin to the conversion time + - iio: adc: Fix incorrect exit of for-loop + - ASoC: xilinx: Fix reference to PCM buffer address + - ASoC: intel: atom: Fix reference to PCM buffer address + - i2c: dev: zero out array used for i2c reads from userspace + - ceph: reduce contention in ceph_check_delayed_caps() + - ACPI: NFIT: Fix support for virtual SPA ranges + - libnvdimm/region: Fix label activation vs errors + - ieee802154: hwsim: fix GPF in hwsim_set_edge_lqi + - ieee802154: hwsim: fix GPF in hwsim_new_edge_nl + - ASoC: cs42l42: Correct definition of ADC Volume control + - ASoC: cs42l42: Don't allow SND_SOC_DAIFMT_LEFT_J + - ASoC: cs42l42: Fix inversion of ADC Notch Switch control + - ASoC: cs42l42: Remove duplicate control for WNF filter frequency + - netfilter: nf_conntrack_bridge: Fix memory leak when error + - ASoC: cs42l42: Fix LRCLK frame start edge + - net: dsa: mt7530: add the missing RxUnicast MIB counter + - platform/x86: pcengines-apuv2: revert wiring up simswitch GPIO as LED + - platform/x86: pcengines-apuv2: Add missing terminating entries to gpio- + lookup tables + - net: phy: micrel: Fix link detection on ksz87xx switch" + - ppp: Fix generating ifname when empty IFLA_IFNAME is specified + - net: sched: act_mirred: Reset ct info when mirror/redirect skb + - iavf: Set RSS LUT and key in reset handle path + - psample: Add a fwd declaration for skbuff + - net/mlx5: Fix return value from tracer initialization + - drm/meson: fix colour distortion from HDR set during vendor u-boot + - net: dsa: microchip: Fix ksz_read64() + - net: Fix memory leak in ieee802154_raw_deliver + - net: igmp: fix data-race in igmp_ifc_timer_expire() + - net: dsa: lan9303: fix broken backpressure in .port_fdb_dump + - net: dsa: lantiq: fix broken backpressure in .port_fdb_dump + - net: dsa: sja1105: fix broken backpressure in .port_fdb_dump + - net: bridge: fix memleak in br_add_if() + - net: linkwatch: fix failure to restore device state across suspend/resume + - tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B + packets + - net: igmp: increase size of mr_ifc_count + - xen/events: Fix race in set_evtchn_to_irq + - vsock/virtio: avoid potential deadlock when vsock device remove + - nbd: Aovid double completion of a request + - powerpc/kprobes: Fix kprobe Oops happens in booke + - x86/tools: Fix objdump version check again + - genirq: Provide IRQCHIP_AFFINITY_PRE_STARTUP + - x86/msi: Force affinity setup before startup + - x86/ioapic: Force affinity setup before startup + - x86/resctrl: Fix default monitoring groups reporting + - genirq/msi: Ensure deactivation on teardown + - genirq/timings: Prevent potential array overflow in __irq_timings_store() + - PCI/MSI: Enable and mask MSI-X early + - PCI/MSI: Mask all unused MSI-X entries + - PCI/MSI: Enforce that MSI-X table entry is masked for update + - PCI/MSI: Enforce MSI[X] entry updates to be visible + - PCI/MSI: Do not set invalid bits in MSI mask + - PCI/MSI: Correct misleading comments + - PCI/MSI: Use msi_mask_irq() in pci_msi_shutdown() + - PCI/MSI: Protect msi_desc::masked for multi-MSI + - KVM: VMX: Use current VMCS to query WAITPKG support for MSR emulation + - ceph: add some lockdep assertions around snaprealm handling + - ceph: clean up locking annotation for ceph_get_snap_realm and + __lookup_snap_realm + - ceph: take snap_empty_lock atomically with snaprealm refcount change + - vmlinux.lds.h: Handle clang's module.{c,d}tor sections + - iommu/vt-d: Fix agaw for a supported 48 bit guest address width + - Linux 5.4.142 + * Focal update: v5.4.141 upstream stable release (LP: #1943484) + - KVM: SVM: Fix off-by-one indexing when nullifying last used SEV VMCB + - tee: Correct inappropriate usage of TEE_SHM_DMA_BUF flag + - media: v4l2-mem2mem: always consider OUTPUT queue during poll + - tracing: Reject string operand in the histogram expression + - usb: dwc3: Stop active transfers before halting the controller + - usb: dwc3: gadget: Allow runtime suspend if UDC unbinded + - usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup + - usb: dwc3: gadget: Prevent EP queuing while stopping transfers + - usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable + - usb: dwc3: gadget: Disable gadget IRQ during pullup disable + - usb: dwc3: gadget: Avoid runtime resume if disabling pullup + - KVM: X86: MMU: Use the correct inherited permissions to get shadow page + - USB:ehci:fix Kunpeng920 ehci hardware problem + - ALSA: hda: Add quirk for ASUS Flow x13 + - ppp: Fix generating ppp unit id when ifname is not specified + - ovl: prevent private clone if bind mount is not allowed + - btrfs: make qgroup_free_reserved_data take btrfs_inode + - btrfs: make btrfs_qgroup_reserve_data take btrfs_inode + - btrfs: qgroup: allow to unreserve range without releasing other ranges + - btrfs: qgroup: try to flush qgroup space when we get -EDQUOT + - btrfs: transaction: Cleanup unused TRANS_STATE_BLOCKED + - btrfs: qgroup: remove ASYNC_COMMIT mechanism in favor of reserve retry- + after-EDQUOT + - btrfs: fix lockdep splat when enabling and disabling qgroups + - net: xilinx_emaclite: Do not print real IOMEM pointer + - btrfs: qgroup: don't commit transaction when we already hold the handle + - btrfs: export and rename qgroup_reserve_meta + - btrfs: don't flush from btrfs_delayed_inode_reserve_metadata + - Linux 5.4.141 + + [ Ubuntu: 5.4.0-88.99 ] + + * focal/linux: 5.4.0-88.99 -proposed tracker (LP: #1944747) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - Revert "UBUNTU: [Config] Disable virtualbox dkms build" + + [ Ubuntu: 5.4.0-87.98 ] + + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - [Config] Disable virtualbox dkms build + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - Disable CONFIG_HISI_DMA + - [Config] Record hisi_dma no longer built for arm64 + * memory leaking when removing a profile (LP: #1939915) + - apparmor: Fix memory leak of profile proxy + * CryptoExpress EP11 cards are going offline (LP: #1939618) + - s390/zcrypt: Support for CCA protected key block version 2 + - s390: Replace zero-length array with flexible-array member + - s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow + - s390/zcrypt: replace snprintf/sprintf with scnprintf + - s390/ap: Remove ap device suspend and resume callbacks + - s390/zcrypt: use fallthrough; + - s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc + - s390/ap: remove power management code from ap bus and drivers + - s390/ap: introduce new ap function ap_get_qdev() + - s390/zcrypt: use kzalloc + - s390/zcrypt: fix smatch warnings + - s390/zcrypt: code beautification and struct field renames + - s390/zcrypt: split ioctl function into smaller code units + - s390/ap: rename and clarify ap state machine related stuff + - s390/zcrypt: provide cex4 cca sysfs attributes for cex3 + - s390/ap: rework crypto config info and default domain code + - s390/zcrypt: simplify cca_findcard2 loop code + - s390/zcrypt: remove set_fs() invocation in zcrypt device driver + - s390/ap: remove unnecessary spin_lock_init() + - s390/zcrypt: Support for CCA APKA master keys + - s390/zcrypt: introduce msg tracking in zcrypt functions + - s390/ap: split ap queue state machine state from device state + - s390/ap: add error response code field for ap queue devices + - s390/ap: add card/queue deconfig state + - s390/sclp: Add support for SCLP AP adapter config/deconfig + - s390/ap: Support AP card SCLP config and deconfig operations + - s390/ap/zcrypt: revisit ap and zcrypt error handling + - s390/zcrypt: move ap_msg param one level up the call chain + - s390/zcrypt: Introduce Failure Injection feature + - s390/zcrypt: fix wrong format specifications + - s390/ap: fix ap devices reference counting + - s390/zcrypt: return EIO when msg retry limit reached + - s390/zcrypt: fix zcard and zqueue hot-unplug memleak + - s390/ap: Fix hanging ioctl caused by wrong msg counter + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (LP: #1926142) + - SAUCE: selftests/memfd: fix build when F_SEAL_FUTURE_WRITE is not defined + * [SRU] Ice driver causes the kernel to crash with Ubuntu 20.04.2 with ethtool + specific register commands (LP: #1939855) + - ice: Fix bad register reads + * ubunut_kernel_selftests: memory-hotplug: avoid spamming logs with + dump_page() (LP: #1941829) + - selftests: memory-hotplug: avoid spamming logs with dump_page(), ratio limit + hot-remove error test + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - e1000e: Do not take care about recovery NVM checksum + * Focal update: v5.4.140 upstream stable release (LP: #1941798) + - Revert "ACPICA: Fix memory leak caused by _CID repair function" + - ALSA: seq: Fix racy deletion of subscriber + - arm64: dts: ls1028a: fix node name for the sysclk + - ARM: imx: add missing iounmap() + - ARM: imx: add missing clk_disable_unprepare() + - ARM: dts: imx6qdl-sr-som: Increase the PHY reset duration to 10ms + - ARM: dts: colibri-imx6ull: limit SDIO clock to 25MHz + - ARM: imx: fix missing 3rd argument in macro imx_mmdc_perf_init + - ARM: dts: imx: Swap M53Menlo pinctrl_power_button/pinctrl_power_out pins + - arm64: dts: armada-3720-turris-mox: remove mrvl,i2c-fast-mode + - ALSA: usb-audio: fix incorrect clock source setting + - clk: stm32f4: fix post divisor setup for I2S/SAI PLLs + - ARM: dts: am437x-l4: fix typo in can@0 node + - omap5-board-common: remove not physically existing vdds_1v8_main fixed- + regulator + - spi: imx: mx51-ecspi: Reinstate low-speed CONFIGREG delay + - spi: imx: mx51-ecspi: Fix low-speed CONFIGREG delay calculation + - scsi: sr: Return correct event when media event code is 3 + - media: videobuf2-core: dequeue if start_streaming fails + - dmaengine: imx-dma: configure the generic DMA type to make it work + - net, gro: Set inner transport header offset in tcp/udp GRO hook + - net: dsa: sja1105: overwrite dynamic FDB entries with static ones in + .port_fdb_add + - net: dsa: sja1105: invalidate dynamic FDB entries learned concurrently with + statically added ones + - net: phy: micrel: Fix detection of ksz87xx switch + - net: natsemi: Fix missing pci_disable_device() in probe and remove + - gpio: tqmx86: really make IRQ optional + - sctp: move the active_key update after sh_keys is added + - nfp: update ethtool reporting of pauseframe control + - net: ipv6: fix returned variable type in ip6_skb_dst_mtu + - mips: Fix non-POSIX regexp + - bnx2x: fix an error code in bnx2x_nic_load() + - net: pegasus: fix uninit-value in get_interrupt_interval + - net: fec: fix use-after-free in fec_drv_remove + - net: vxge: fix use-after-free in vxge_device_unregister + - blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() + - Bluetooth: defer cleanup of resources in hci_unregister_dev() + - USB: usbtmc: Fix RCU stall warning + - USB: serial: option: add Telit FD980 composition 0x1056 + - USB: serial: ch341: fix character loss at high transfer rates + - USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 + - firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback + - firmware_loader: fix use-after-free in firmware_fallback_sysfs + - ALSA: hda/realtek: add mic quirk for Acer SF314-42 + - ALSA: usb-audio: Add registration quirk for JBL Quantum 600 + - usb: cdns3: Fixed incorrect gadget state + - usb: gadget: f_hid: added GET_IDLE and SET_IDLE handlers + - usb: gadget: f_hid: fixed NULL pointer dereference + - usb: gadget: f_hid: idle uses the highest byte for duration + - usb: otg-fsm: Fix hrtimer list corruption + - clk: fix leak on devm_clk_bulk_get_all() unwind + - scripts/tracing: fix the bug that can't parse raw_trace_func + - tracing / histogram: Give calculation hist_fields a size + - optee: Clear stale cache entries during initialization + - tee: add tee_shm_alloc_kernel_buf() + - optee: Fix memory leak when failing to register shm pages + - tpm_ftpm_tee: Free and unregister TEE shared memory during kexec + - staging: rtl8723bs: Fix a resource leak in sd_int_dpc + - staging: rtl8712: get rid of flush_scheduled_work + - media: rtl28xxu: fix zero-length control request + - pipe: increase minimum default pipe size to 2 pages + - ext4: fix potential htree corruption when growing large_dir directories + - serial: tegra: Only print FIFO error message when an error occurs + - serial: 8250_mtk: fix uart corruption issue when rx power off + - serial: 8250: Mask out floating 16/32-bit bus bits + - MIPS: Malta: Do not byte-swap accesses to the CBUS UART + - serial: 8250_pci: Enumerate Elkhart Lake UARTs via dedicated driver + - serial: 8250_pci: Avoid irq sharing for MSI(-X) interrupts. + - timers: Move clearing of base::timer_running under base:: Lock + - pcmcia: i82092: fix a null pointer dereference bug + - md/raid10: properly indicate failure when ending a failed write request + - KVM: x86: accept userspace interrupt only if no event is injected + - KVM: Do not leak memory for duplicate debugfs directories + - KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds + - arm64: vdso: Avoid ISB after reading from cntvct_el0 + - soc: ixp4xx: fix printing resources + - spi: meson-spicc: fix memory leak in meson_spicc_remove + - soc: ixp4xx/qmgr: fix invalid __iomem access + - perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest + - bpf, selftests: Adjust few selftest result_unpriv outcomes + - libata: fix ata_pio_sector for CONFIG_HIGHMEM + - reiserfs: add check for root_inode in reiserfs_fill_super + - reiserfs: check directory items on read from disk + - virt_wifi: fix error on connect + - alpha: Send stop IPI to send to online CPUs + - net/qla3xxx: fix schedule while atomic in ql_wait_for_drvr_lock and + ql_adapter_reset + - arm64: fix compat syscall return truncation + - Linux 5.4.140 + * Focal update: v5.4.139 upstream stable release (LP: #1941796) + - btrfs: delete duplicated words + other fixes in comments + - btrfs: do not commit logs and transactions during link and rename operations + - btrfs: fix race causing unnecessary inode logging during link and rename + - btrfs: fix lost inode on log replay after mix of fsync, rename and inode + eviction + - regulator: rt5033: Fix n_voltages settings for BUCK and LDO + - spi: stm32h7: fix full duplex irq handler handling + - ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits + - r8152: Fix potential PM refcount imbalance + - qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union() + - net: Fix zero-copy head len calculation. + - nvme: fix nvme_setup_command metadata trace event + - ACPI: fix NULL pointer dereference + - Revert "Bluetooth: Shutdown controller after workqueues are flushed or + cancelled" + - firmware: arm_scmi: Ensure drivers provide a probe function + - firmware: arm_scmi: Add delayed response status check + - bpf: Inherit expanded/patched seen count from old aux data + - bpf: Do not mark insn as seen under speculative path verification + - bpf: Fix leakage under speculation on mispredicted branches + - bpf: Test_verifier, add alu32 bounds tracking tests + - bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit + ones + - bpf, selftests: Adjust few selftest outcomes wrt unreachable code + - spi: mediatek: Fix fifo transfer + - Linux 5.4.139 + * Focal update: v5.4.138 upstream stable release (LP: #1940559) + - net_sched: check error pointer in tcf_dump_walker() + - x86/asm: Ensure asm/proto.h can be included stand-alone + - btrfs: fix rw device counting in __btrfs_free_extra_devids + - btrfs: mark compressed range uptodate only if all bio succeed + - x86/kvm: fix vcpu-id indexed array sizes + - KVM: add missing compat KVM_CLEAR_DIRTY_LOG + - ocfs2: fix zero out valid data + - ocfs2: issue zeroout to EOF blocks + - can: j1939: j1939_xtp_rx_dat_one(): fix rxtimer value between consecutive + TP.DT to 750ms + - can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF + - can: mcba_usb_start(): add missing urb->transfer_dma initialization + - can: usb_8dev: fix memory leak + - can: ems_usb: fix memory leak + - can: esd_usb2: fix memory leak + - HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT + - NIU: fix incorrect error return, missed in previous revert + - nfc: nfcsim: fix use after free during module unload + - cfg80211: Fix possible memory leak in function cfg80211_bss_update + - netfilter: conntrack: adjust stop timestamp to real expiry value + - netfilter: nft_nat: allow to specify layer 4 protocol NAT only + - i40e: Fix logic of disabling queues + - i40e: Fix firmware LLDP agent related warning + - i40e: Fix queue-to-TC mapping on Tx + - i40e: Fix log TC creation failure when max num of queues is exceeded + - tipc: fix sleeping in tipc accept routine + - net: Set true network header for ECN decapsulation + - mlx4: Fix missing error code in mlx4_load_one() + - net: llc: fix skb_over_panic + - net/mlx5: Fix flow table chaining + - net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() + - sctp: fix return value check in __sctp_rcv_asconf_lookup + - tulip: windbond-840: Fix missing pci_disable_device() in probe and remove + - sis900: Fix missing pci_disable_device() in probe and remove + - can: hi311x: fix a signedness bug in hi3110_cmd() + - PCI: mvebu: Setup BAR0 in order to fix MSI + - powerpc/pseries: Fix regression while building external modules + - i40e: Add additional info to PHY type error + - can: j1939: j1939_session_deactivate(): clarify lifetime of session object + - Linux 5.4.138 + * Focal update: v5.4.137 upstream stable release (LP: #1940557) + - selftest: fix build error in tools/testing/selftests/vm/userfaultfd.c + - tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include + - KVM: x86: determine if an exception has an error code only when injecting + it. + - af_unix: fix garbage collect vs MSG_PEEK + - workqueue: fix UAF in pwq_unbound_release_workfn() + - cgroup1: fix leaked context root causing sporadic NULL deref in LTP + - net/802/mrp: fix memleak in mrp_request_join() + - net/802/garp: fix memleak in garp_request_join() + - net: annotate data race around sk_ll_usec + - sctp: move 198 addresses from unusable to private scope + - ipv6: allocate enough headroom in ip6_finish_output2() + - hfs: add missing clean-up in hfs_fill_super + - hfs: fix high memory mapping in hfs_bnode_read + - hfs: add lock nesting notation to hfs_find_init + - firmware: arm_scmi: Fix possible scmi_linux_errmap buffer overflow + - firmware: arm_scmi: Fix range check for the maximum number of pending + messages + - cifs: fix the out of range assignment to bit fields in + parse_server_interfaces + - iomap: remove the length variable in iomap_seek_data + - iomap: remove the length variable in iomap_seek_hole + - ARM: dts: versatile: Fix up interrupt controller node names + - ipv6: ip6_finish_output2: set sk into newly allocated nskb + - Linux 5.4.137 + * Focal update: v5.4.136 upstream stable release (LP: #1939899) + - igc: Fix use-after-free error during reset + - igb: Fix use-after-free error during reset + - igc: change default return of igc_read_phy_reg() + - ixgbe: Fix an error handling path in 'ixgbe_probe()' + - igc: Prefer to use the pci_release_mem_regions method + - igc: Fix an error handling path in 'igc_probe()' + - igb: Fix an error handling path in 'igb_probe()' + - fm10k: Fix an error handling path in 'fm10k_probe()' + - e1000e: Fix an error handling path in 'e1000_probe()' + - iavf: Fix an error handling path in 'iavf_probe()' + - igb: Check if num of q_vectors is smaller than max before array access + - igb: Fix position of assignment to *ring + - gve: Fix an error handling path in 'gve_probe()' + - ipv6: fix 'disable_policy' for fwd packets + - selftests: icmp_redirect: remove from checking for IPv6 route get + - selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect + - pwm: sprd: Ensure configuring period and duty_cycle isn't wrongly skipped + - cxgb4: fix IRQ free race during driver unload + - nvme-pci: do not call nvme_dev_remove_admin from nvme_remove + - perf probe: Fix dso->nsinfo refcounting + - perf env: Fix sibling_dies memory leak + - perf test session_topology: Delete session->evlist + - perf test event_update: Fix memory leak of evlist + - perf dso: Fix memory leak in dso__new_map() + - perf script: Fix memory 'threads' and 'cpus' leaks on exit + - perf lzma: Close lzma stream on exit + - perf probe-file: Delete namelist in del_events() on the error path + - perf data: Close all files in close_dir() + - spi: imx: add a check for speed_hz before calculating the clock + - spi: stm32: Use dma_request_chan() instead dma_request_slave_channel() + - spi: stm32: fixes pm_runtime calls in probe/remove + - regulator: hi6421: Use correct variable type for regmap api val argument + - regulator: hi6421: Fix getting wrong drvdata + - spi: mediatek: fix fifo rx mode + - ASoC: rt5631: Fix regcache sync errors on resume + - liquidio: Fix unintentional sign extension issue on left shift of u16 + - s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] + - bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats + - bpftool: Check malloc return value in mount_bpffs_for_pin + - net: fix uninit-value in caif_seqpkt_sendmsg + - efi/tpm: Differentiate missing and invalid final event log table. + - net: decnet: Fix sleeping inside in af_decnet + - KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash + - KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak + - net: sched: fix memory leak in tcindex_partial_destroy_work + - netrom: Decrease sock refcount when sock timers expire + - scsi: iscsi: Fix iface sysfs attr detection + - scsi: target: Fix protect handling in WRITE SAME(32) + - spi: cadence: Correct initialisation of runtime PM again + - bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence. + - bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() + - bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() + - bnxt_en: Check abort error state in bnxt_half_open_nic() + - net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition + - net/tcp_fastopen: fix data races around tfo_active_disable_stamp + - net: hns3: fix rx VLAN offload state inconsistent issue + - net/sched: act_skbmod: Skip non-Ethernet packets + - ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions + - nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING + - Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" + - afs: Fix tracepoint string placement with built-in AFS + - r8169: Avoid duplicate sysfs entry creation error + - nvme: set the PRACT bit when using Write Zeroes with T10 PI + - sctp: update active_key for asoc when old key is being replaced + - net: sched: cls_api: Fix the the wrong parameter + - drm/panel: raspberrypi-touchscreen: Prevent double-free + - proc: Avoid mixing integer types in mem_rw() + - s390/ftrace: fix ftrace_update_ftrace_func implementation + - s390/boot: fix use of expolines in the DMA code + - ALSA: usb-audio: Add missing proc text entry for BESPOKEN type + - ALSA: usb-audio: Add registration quirk for JBL Quantum headsets + - ALSA: sb: Fix potential ABBA deadlock in CSP driver + - ALSA: hdmi: Expose all pins on MSI MS-7C94 board + - xhci: Fix lost USB 2 remote wake + - KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow + - KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state + - usb: hub: Disable USB 3 device initiated lpm if exit latency is too high + - usb: hub: Fix link power management max exit latency (MEL) calculations + - USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS + - usb: max-3421: Prevent corruption of freed memory + - usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() + - USB: serial: option: add support for u-blox LARA-R6 family + - USB: serial: cp210x: fix comments for GE CS1000 + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. + - firmware/efi: Tell memblock about EFI iomem reservations + - tracing/histogram: Rename "cpu" to "common_cpu" + - tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. + - btrfs: check for missing device in btrfs_trim_fs + - media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() + - ixgbe: Fix packet corruption due to missing DMA sync + - selftest: use mmap instead of posix_memalign to allocate memory + - userfaultfd: do not untag user pointers + - hugetlbfs: fix mount mode command line processing + - rbd: don't hold lock_rwsem while running_list is being drained + - rbd: always kick acquire on "acquired" and "released" notifications + - nds32: fix up stack guard gap + - drm: Return -ENOTTY for non-drm ioctls + - net: dsa: mv88e6xxx: use correct .stats_set_histogram() on Topaz + - net: bcmgenet: ensure EXT_ENERGY_DET_MASK is clear + - iio: accel: bma180: Use explicit member assignment + - iio: accel: bma180: Fix BMA25x bandwidth register values + - btrfs: compression: don't try to compress if we don't have enough pages + - PCI: Mark AMD Navi14 GPU ATS as broken + - perf inject: Close inject.output on exit + - xhci: add xhci_get_virt_ep() helper + - Linux 5.4.136 + * Focal update: v5.4.135 upstream stable release (LP: #1939442) + - ARM: dts: gemini: rename mdio to the right name + - ARM: dts: gemini: add device_type on pci + - ARM: dts: rockchip: fix pinctrl sleep nodename for rk3036-kylin and rk3288 + - arm64: dts: rockchip: fix pinctrl sleep nodename for rk3399.dtsi + - ARM: dts: rockchip: Fix the timer clocks order + - ARM: dts: rockchip: Fix IOMMU nodes properties on rk322x + - ARM: dts: rockchip: Fix power-controller node names for rk3066a + - ARM: dts: rockchip: Fix power-controller node names for rk3188 + - ARM: dts: rockchip: Fix power-controller node names for rk3288 + - arm64: dts: rockchip: Fix power-controller node names for px30 + - arm64: dts: rockchip: Fix power-controller node names for rk3328 + - reset: ti-syscon: fix to_ti_syscon_reset_data macro + - ARM: brcmstb: dts: fix NAND nodes names + - ARM: Cygnus: dts: fix NAND nodes names + - ARM: NSP: dts: fix NAND nodes names + - ARM: dts: BCM63xx: Fix NAND nodes names + - ARM: dts: Hurricane 2: Fix NAND nodes names + - ARM: dts: imx6: phyFLEX: Fix UART hardware flow control + - ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info + - rtc: mxc_v2: add missing MODULE_DEVICE_TABLE + - kbuild: sink stdout from cmd for silent build + - ARM: dts: am57xx-cl-som-am57x: fix ti,no-reset-on-init flag for gpios + - ARM: dts: am437x-gp-evm: fix ti,no-reset-on-init flag for gpios + - ARM: dts: stm32: fix gpio-keys node on STM32 MCU boards + - ARM: dts: stm32: fix RCC node name on stm32f429 MCU + - ARM: dts: stm32: fix timer nodes on STM32 MCU to prevent warnings + - arm64: dts: juno: Update SCPI nodes as per the YAML schema + - ARM: dts: rockchip: fix supply properties in io-domains nodes + - ARM: dts: stm32: fix i2c node name on stm32f746 to prevent warnings + - ARM: dts: stm32: move stmmac axi config in ethernet node on stm32mp15 + - soc/tegra: fuse: Fix Tegra234-only builds + - firmware: tegra: bpmp: Fix Tegra234-only builds + - arm64: dts: ls208xa: remove bus-num from dspi node + - arm64: dts: imx8mq: assign PCIe clocks + - thermal/core: Correct function name thermal_zone_device_unregister() + - kbuild: mkcompile_h: consider timestamp if KBUILD_BUILD_TIMESTAMP is set + - rtc: max77686: Do not enforce (incorrect) interrupt trigger type + - scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 + - scsi: libsas: Add LUN number check in .slave_alloc callback + - scsi: libfc: Fix array index out of bound exception + - scsi: qedf: Add check to synchronize abort and flush + - sched/fair: Fix CFS bandwidth hrtimer expiry type + - s390: introduce proper type handling call_on_stack() macro + - cifs: prevent NULL deref in cifs_compose_mount_options() + - arm64: dts: armada-3720-turris-mox: add firmware node + - firmware: turris-mox-rwtm: add marvell,armada-3700-rwtm-firmware compatible + string + - arm64: dts: marvell: armada-37xx: move firmware node to generic dtsi file + - f2fs: Show casefolding support only when supported + - usb: cdns3: Enable TDL_CHK only for OUT ep + - Revert "UBUNTU: SAUCE: Revert "mm: memcg/slab: fix memory leak at non-root + kmem_cache destroy"" + - mm: slab: fix kmem_cache_create failed when sysfs node not destroyed + - dm writecache: return the exact table values that were set + - net: dsa: mv88e6xxx: enable .port_set_policy() on Topaz + - net: dsa: mv88e6xxx: enable .rmu_disable() on Topaz + - net: ipv6: fix return value of ip6_skb_dst_mtu + - netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo + - net/sched: act_ct: fix err check for nf_conntrack_confirm + - net: bridge: sync fdb to new unicast-filtering ports + - net: bcmgenet: Ensure all TX/RX queues DMAs are disabled + - net: ip_tunnel: fix mtu calculation for ETHER tunnel devices + - net: moxa: fix UAF in moxart_mac_probe + - net: qcom/emac: fix UAF in emac_remove + - net: ti: fix UAF in tlan_remove_one + - net: send SYNACK packet with accepted fwmark + - net: validate lwtstate->data before returning from skb_tunnel_info() + - net: fddi: fix UAF in fza_probe + - dma-buf/sync_file: Don't leak fences on merge failure + - tcp: annotate data races around tp->mtu_info + - ipv6: tcp: drop silly ICMPv6 packet too big messages + - bpftool: Properly close va_list 'ap' by va_end() on error + - perf test bpf: Free obj_buf + - udp: annotate data races around unix_sk(sk)->gso_size + - Linux 5.4.135 + * Focal update: v5.4.134 upstream stable release (LP: #1939440) + - KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio + - KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled + - KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() + - scsi: core: Fix bad pointer dereference when ehandler kthread is invalid + - tracing: Do not reference char * as a string in histograms + - cgroup: verify that source is a string + - fbmem: Do not delete the mode that is still in use + - net: moxa: Use devm_platform_get_and_ioremap_resource() + - dmaengine: fsl-qdma: check dma_set_mask return value + - srcu: Fix broken node geometry after early ssp init + - tty: serial: fsl_lpuart: fix the potential risk of division or modulo by + zero + - misc/libmasm/module: Fix two use after free in ibmasm_init_one + - misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge + - iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get(). + - iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get() + - ALSA: usx2y: Don't call free_pages_exact() with NULL address + - Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" + - w1: ds2438: fixing bug that would always get page0 + - scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() + - scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology + - scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the + SGLs + - scsi: core: Cap scsi_host cmd_per_lun at can_queue + - ALSA: ac97: fix PM reference leak in ac97_bus_remove() + - tty: serial: 8250: serial_cs: Fix a memory leak in error handling path + - scsi: scsi_dh_alua: Check for negative result value + - fs/jfs: Fix missing error code in lmLogInit() + - scsi: megaraid_sas: Fix resource leak in case of probe failure + - scsi: megaraid_sas: Early detection of VD deletion through RaidMap update + - scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs + - scsi: iscsi: Add iscsi_cls_conn refcount helpers + - scsi: iscsi: Fix conn use after free during resets + - scsi: iscsi: Fix shost->max_id use + - scsi: qedi: Fix null ref during abort handling + - mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE + - mfd: cpcap: Fix cpcap dmamask not set warnings + - ASoC: img: Fix PM reference leak in img_i2s_in_probe() + - serial: tty: uartlite: fix console setup + - s390/sclp_vt220: fix console name to match device + - ALSA: sb: Fix potential double-free of CSP mixer elements + - powerpc/ps3: Add dma_mask to ps3_dma_region + - iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get + fails + - iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation + - gpio: zynq: Check return value of pm_runtime_get_sync + - ALSA: ppc: fix error return code in snd_pmac_probe() + - selftests/powerpc: Fix "no_handler" EBB selftest + - gpio: pca953x: Add support for the On Semi pca9655 + - ASoC: soc-core: Fix the error return code in + snd_soc_of_parse_audio_routing() + - s390/processor: always inline stap() and __load_psw_mask() + - s390/ipl_parm: fix program check new psw handling + - s390/mem_detect: fix diag260() program check new psw handling + - s390/mem_detect: fix tprot() program check new psw handling + - Input: hideep - fix the uninitialized use in hideep_nvm_unlock() + - ALSA: bebob: add support for ToneWeal FW66 + - ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count + - ALSA: usb-audio: scarlett2: Fix data_mutex lock + - ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values + - usb: gadget: f_hid: fix endianness issue with descriptors + - usb: gadget: hid: fix error return code in hid_bind() + - powerpc/boot: Fixup device-tree on little endian + - ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters + - backlight: lm3630a: Fix return code of .update_status() callback + - ALSA: hda: Add IRQ check for platform_get_irq() + - ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions + - staging: rtl8723bs: fix macro value for 2.4Ghz only device + - intel_th: Wait until port is in reset before programming it + - i2c: core: Disable client irq on reboot/shutdown + - power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE + - power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE + - pwm: spear: Don't modify HW state in .remove callback + - power: supply: ab8500: Avoid NULL pointers + - power: supply: max17042: Do not enforce (incorrect) interrupt trigger type + - power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE + - ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 + - PCI/P2PDMA: Avoid pci_get_slot(), which may sleep + - watchdog: Fix possible use-after-free in wdt_startup() + - watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() + - watchdog: Fix possible use-after-free by calling del_timer_sync() + - watchdog: imx_sc_wdt: fix pretimeout + - x86/fpu: Return proper error codes from user access functions + - PCI: tegra: Add missing MODULE_DEVICE_TABLE + - orangefs: fix orangefs df output. + - ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty + - NFS: nfs_find_open_context() may only select open files + - power: supply: charger-manager: add missing MODULE_DEVICE_TABLE + - power: supply: ab8500: add missing MODULE_DEVICE_TABLE + - pwm: img: Fix PM reference leak in img_pwm_enable() + - pwm: tegra: Don't modify HW state in .remove callback + - ACPI: AMBA: Fix resource name in /proc/iomem + - ACPI: video: Add quirk for the Dell Vostro 3350 + - virtio-blk: Fix memory leak among suspend/resume procedure + - virtio_net: Fix error handling in virtnet_restore() + - virtio_console: Assure used length from device is limited + - x86/signal: Detect and prevent an alternate signal stack overflow + - f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs + - PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun + - power: supply: rt5033_battery: Fix device tree enumeration + - NFSv4: Initialise connection to the server in nfs4_alloc_client() + - um: fix error return code in slip_open() + - um: fix error return code in winch_tramp() + - watchdog: aspeed: fix hardware timeout calculation + - nfs: fix acl memory leak of posix_acl_create() + - ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode + - PCI: iproc: Fix multi-MSI base vector number allocation + - PCI: iproc: Support multi-MSI only on uniprocessor kernel + - x86/fpu: Limit xstate copy size in xstateregs_set() + - pwm: imx1: Don't disable clocks at device remove time + - virtio_net: move tx vq operation under tx queue lock + - nvme-tcp: can't set sk_user_data without write_lock + - ALSA: isa: Fix error return code in snd_cmi8330_probe() + - NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times + - hexagon: use common DISCARDS macro + - ARM: dts: gemini-rut1xx: remove duplicate ethernet node + - reset: a10sr: add missing of_match_table reference + - ARM: exynos: add missing of_node_put for loop iteration + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 + - memory: atmel-ebi: add missing of_node_put for loop iteration + - reset: brcmstb: Add missing MODULE_DEVICE_TABLE + - memory: pl353: Fix error return code in pl353_smc_probe() + - rtc: fix snprintf() checking in is_rtc_hctosys() + - arm64: dts: renesas: v3msk: Fix memory size + - ARM: dts: r8a7779, marzen: Fix DU clock names + - firmware: tegra: Fix error return code in tegra210_bpmp_init() + - firmware: arm_scmi: Reset Rx buffer to max size during async commands + - ARM: dts: BCM5301X: Fixup SPI binding + - reset: bail if try_module_get() fails + - memory: fsl_ifc: fix leak of IO mapping on probe failure + - memory: fsl_ifc: fix leak of private memory on probe failure + - ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: imx6q-dhcom: Fix ethernet reset time properties + - ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems + - ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery + - thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations + - firmware: turris-mox-rwtm: fix reply status decoding function + - firmware: turris-mox-rwtm: report failures better + - firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng + - scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() + - mips: always link byteswap helpers into decompressor + - mips: disable branch profiling in boot/decompress.o + - MIPS: vdso: Invalid GIC access through VDSO + - scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() + - misc: alcor_pci: fix inverted branch condition + - Linux 5.4.134 + + [ Ubuntu: 5.4.0-86.97 ] + + * s390x BPF JIT vulnerabilities (LP: #1943960) + - SAUCE: s390/bpf: Fix 64-bit subtraction of the -0x80000000 constant + - SAUCE: s390/bpf: Fix optimizing out zero-extensions + + -- Tim Gardner Fri, 08 Oct 2021 07:12:01 -0600 + +linux-azure (5.4.0-1061.64) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1061.64 -proposed tracker (LP: #1946377) + + * Azure kernels fail to boot on some large Azure instance types (LP: #1940564) + - Revert "scsi: core: Cap scsi_host cmd_per_lun at can_queue" + + -- Tim Gardner Thu, 07 Oct 2021 09:11:51 -0600 + +linux-azure (5.4.0-1059.62) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1059.62 -proposed tracker (LP: #1942532) + + * binderfs support is not enabled (LP: #1925246) + - [Config] linux-azure: CONFIG_ANDROID_BINDERFS=m + + [ Ubuntu: 5.4.0-85.95 ] + + * focal/linux: 5.4.0-85.95 -proposed tracker (LP: #1942557) + * please drop virtualbox-guest-dkms virtualbox-guest-source (LP: #1933248) + - [Config] Disable virtualbox dkms build + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.09.06) + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - Disable CONFIG_HISI_DMA + - [Config] Record hisi_dma no longer built for arm64 + * memory leaking when removing a profile (LP: #1939915) + - apparmor: Fix memory leak of profile proxy + * CryptoExpress EP11 cards are going offline (LP: #1939618) + - s390/zcrypt: Support for CCA protected key block version 2 + - s390: Replace zero-length array with flexible-array member + - s390/zcrypt: Use scnprintf() for avoiding potential buffer overflow + - s390/zcrypt: replace snprintf/sprintf with scnprintf + - s390/ap: Remove ap device suspend and resume callbacks + - s390/zcrypt: use fallthrough; + - s390/zcrypt: use kvmalloc instead of kmalloc for 256k alloc + - s390/ap: remove power management code from ap bus and drivers + - s390/ap: introduce new ap function ap_get_qdev() + - s390/zcrypt: use kzalloc + - s390/zcrypt: fix smatch warnings + - s390/zcrypt: code beautification and struct field renames + - s390/zcrypt: split ioctl function into smaller code units + - s390/ap: rename and clarify ap state machine related stuff + - s390/zcrypt: provide cex4 cca sysfs attributes for cex3 + - s390/ap: rework crypto config info and default domain code + - s390/zcrypt: simplify cca_findcard2 loop code + - s390/zcrypt: remove set_fs() invocation in zcrypt device driver + - s390/ap: remove unnecessary spin_lock_init() + - s390/zcrypt: Support for CCA APKA master keys + - s390/zcrypt: introduce msg tracking in zcrypt functions + - s390/ap: split ap queue state machine state from device state + - s390/ap: add error response code field for ap queue devices + - s390/ap: add card/queue deconfig state + - s390/sclp: Add support for SCLP AP adapter config/deconfig + - s390/ap: Support AP card SCLP config and deconfig operations + - s390/ap/zcrypt: revisit ap and zcrypt error handling + - s390/zcrypt: move ap_msg param one level up the call chain + - s390/zcrypt: Introduce Failure Injection feature + - s390/zcrypt: fix wrong format specifications + - s390/ap: fix ap devices reference counting + - s390/zcrypt: return EIO when msg retry limit reached + - s390/zcrypt: fix zcard and zqueue hot-unplug memleak + - s390/ap: Fix hanging ioctl caused by wrong msg counter + * memfd from ubuntu_kernel_selftests failed to build on B-5.4 (LP: #1926142) + - SAUCE: selftests/memfd: fix build when F_SEAL_FUTURE_WRITE is not defined + * [SRU] Ice driver causes the kernel to crash with Ubuntu 20.04.2 with ethtool + specific register commands (LP: #1939855) + - ice: Fix bad register reads + * ubunut_kernel_selftests: memory-hotplug: avoid spamming logs with + dump_page() (LP: #1941829) + - selftests: memory-hotplug: avoid spamming logs with dump_page(), ratio limit + hot-remove error test + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - e1000e: Do not take care about recovery NVM checksum + * Focal update: v5.4.140 upstream stable release (LP: #1941798) + - Revert "ACPICA: Fix memory leak caused by _CID repair function" + - ALSA: seq: Fix racy deletion of subscriber + - arm64: dts: ls1028a: fix node name for the sysclk + - ARM: imx: add missing iounmap() + - ARM: imx: add missing clk_disable_unprepare() + - ARM: dts: imx6qdl-sr-som: Increase the PHY reset duration to 10ms + - ARM: dts: colibri-imx6ull: limit SDIO clock to 25MHz + - ARM: imx: fix missing 3rd argument in macro imx_mmdc_perf_init + - ARM: dts: imx: Swap M53Menlo pinctrl_power_button/pinctrl_power_out pins + - arm64: dts: armada-3720-turris-mox: remove mrvl,i2c-fast-mode + - ALSA: usb-audio: fix incorrect clock source setting + - clk: stm32f4: fix post divisor setup for I2S/SAI PLLs + - ARM: dts: am437x-l4: fix typo in can@0 node + - omap5-board-common: remove not physically existing vdds_1v8_main fixed- + regulator + - spi: imx: mx51-ecspi: Reinstate low-speed CONFIGREG delay + - spi: imx: mx51-ecspi: Fix low-speed CONFIGREG delay calculation + - scsi: sr: Return correct event when media event code is 3 + - media: videobuf2-core: dequeue if start_streaming fails + - dmaengine: imx-dma: configure the generic DMA type to make it work + - net, gro: Set inner transport header offset in tcp/udp GRO hook + - net: dsa: sja1105: overwrite dynamic FDB entries with static ones in + .port_fdb_add + - net: dsa: sja1105: invalidate dynamic FDB entries learned concurrently with + statically added ones + - net: phy: micrel: Fix detection of ksz87xx switch + - net: natsemi: Fix missing pci_disable_device() in probe and remove + - gpio: tqmx86: really make IRQ optional + - sctp: move the active_key update after sh_keys is added + - nfp: update ethtool reporting of pauseframe control + - net: ipv6: fix returned variable type in ip6_skb_dst_mtu + - mips: Fix non-POSIX regexp + - bnx2x: fix an error code in bnx2x_nic_load() + - net: pegasus: fix uninit-value in get_interrupt_interval + - net: fec: fix use-after-free in fec_drv_remove + - net: vxge: fix use-after-free in vxge_device_unregister + - blk-iolatency: error out if blk_get_queue() failed in iolatency_set_limit() + - Bluetooth: defer cleanup of resources in hci_unregister_dev() + - USB: usbtmc: Fix RCU stall warning + - USB: serial: option: add Telit FD980 composition 0x1056 + - USB: serial: ch341: fix character loss at high transfer rates + - USB: serial: ftdi_sio: add device ID for Auto-M3 OP-COM v2 + - firmware_loader: use -ETIMEDOUT instead of -EAGAIN in fw_load_sysfs_fallback + - firmware_loader: fix use-after-free in firmware_fallback_sysfs + - ALSA: hda/realtek: add mic quirk for Acer SF314-42 + - ALSA: usb-audio: Add registration quirk for JBL Quantum 600 + - usb: cdns3: Fixed incorrect gadget state + - usb: gadget: f_hid: added GET_IDLE and SET_IDLE handlers + - usb: gadget: f_hid: fixed NULL pointer dereference + - usb: gadget: f_hid: idle uses the highest byte for duration + - usb: otg-fsm: Fix hrtimer list corruption + - clk: fix leak on devm_clk_bulk_get_all() unwind + - scripts/tracing: fix the bug that can't parse raw_trace_func + - tracing / histogram: Give calculation hist_fields a size + - optee: Clear stale cache entries during initialization + - tee: add tee_shm_alloc_kernel_buf() + - optee: Fix memory leak when failing to register shm pages + - tpm_ftpm_tee: Free and unregister TEE shared memory during kexec + - staging: rtl8723bs: Fix a resource leak in sd_int_dpc + - staging: rtl8712: get rid of flush_scheduled_work + - media: rtl28xxu: fix zero-length control request + - pipe: increase minimum default pipe size to 2 pages + - ext4: fix potential htree corruption when growing large_dir directories + - serial: tegra: Only print FIFO error message when an error occurs + - serial: 8250_mtk: fix uart corruption issue when rx power off + - serial: 8250: Mask out floating 16/32-bit bus bits + - MIPS: Malta: Do not byte-swap accesses to the CBUS UART + - serial: 8250_pci: Enumerate Elkhart Lake UARTs via dedicated driver + - serial: 8250_pci: Avoid irq sharing for MSI(-X) interrupts. + - timers: Move clearing of base::timer_running under base:: Lock + - pcmcia: i82092: fix a null pointer dereference bug + - md/raid10: properly indicate failure when ending a failed write request + - KVM: x86: accept userspace interrupt only if no event is injected + - KVM: Do not leak memory for duplicate debugfs directories + - KVM: x86/mmu: Fix per-cpu counter corruption on 32-bit builds + - arm64: vdso: Avoid ISB after reading from cntvct_el0 + - soc: ixp4xx: fix printing resources + - spi: meson-spicc: fix memory leak in meson_spicc_remove + - soc: ixp4xx/qmgr: fix invalid __iomem access + - perf/x86/amd: Don't touch the AMD64_EVENTSEL_HOSTONLY bit inside the guest + - bpf, selftests: Adjust few selftest result_unpriv outcomes + - libata: fix ata_pio_sector for CONFIG_HIGHMEM + - reiserfs: add check for root_inode in reiserfs_fill_super + - reiserfs: check directory items on read from disk + - virt_wifi: fix error on connect + - alpha: Send stop IPI to send to online CPUs + - net/qla3xxx: fix schedule while atomic in ql_wait_for_drvr_lock and + ql_adapter_reset + - arm64: fix compat syscall return truncation + - Linux 5.4.140 + * Focal update: v5.4.139 upstream stable release (LP: #1941796) + - btrfs: delete duplicated words + other fixes in comments + - btrfs: do not commit logs and transactions during link and rename operations + - btrfs: fix race causing unnecessary inode logging during link and rename + - btrfs: fix lost inode on log replay after mix of fsync, rename and inode + eviction + - regulator: rt5033: Fix n_voltages settings for BUCK and LDO + - spi: stm32h7: fix full duplex irq handler handling + - ASoC: tlv320aic31xx: fix reversed bclk/wclk master bits + - r8152: Fix potential PM refcount imbalance + - qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union() + - net: Fix zero-copy head len calculation. + - nvme: fix nvme_setup_command metadata trace event + - ACPI: fix NULL pointer dereference + - Revert "Bluetooth: Shutdown controller after workqueues are flushed or + cancelled" + - firmware: arm_scmi: Ensure drivers provide a probe function + - firmware: arm_scmi: Add delayed response status check + - bpf: Inherit expanded/patched seen count from old aux data + - bpf: Do not mark insn as seen under speculative path verification + - bpf: Fix leakage under speculation on mispredicted branches + - bpf: Test_verifier, add alu32 bounds tracking tests + - bpf, selftests: Add a verifier test for assigning 32bit reg states to 64bit + ones + - bpf, selftests: Adjust few selftest outcomes wrt unreachable code + - spi: mediatek: Fix fifo transfer + - Linux 5.4.139 + * Focal update: v5.4.138 upstream stable release (LP: #1940559) + - net_sched: check error pointer in tcf_dump_walker() + - x86/asm: Ensure asm/proto.h can be included stand-alone + - btrfs: fix rw device counting in __btrfs_free_extra_devids + - btrfs: mark compressed range uptodate only if all bio succeed + - x86/kvm: fix vcpu-id indexed array sizes + - KVM: add missing compat KVM_CLEAR_DIRTY_LOG + - ocfs2: fix zero out valid data + - ocfs2: issue zeroout to EOF blocks + - can: j1939: j1939_xtp_rx_dat_one(): fix rxtimer value between consecutive + TP.DT to 750ms + - can: raw: raw_setsockopt(): fix raw_rcv panic for sock UAF + - can: mcba_usb_start(): add missing urb->transfer_dma initialization + - can: usb_8dev: fix memory leak + - can: ems_usb: fix memory leak + - can: esd_usb2: fix memory leak + - HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT + - NIU: fix incorrect error return, missed in previous revert + - nfc: nfcsim: fix use after free during module unload + - cfg80211: Fix possible memory leak in function cfg80211_bss_update + - netfilter: conntrack: adjust stop timestamp to real expiry value + - netfilter: nft_nat: allow to specify layer 4 protocol NAT only + - i40e: Fix logic of disabling queues + - i40e: Fix firmware LLDP agent related warning + - i40e: Fix queue-to-TC mapping on Tx + - i40e: Fix log TC creation failure when max num of queues is exceeded + - tipc: fix sleeping in tipc accept routine + - net: Set true network header for ECN decapsulation + - mlx4: Fix missing error code in mlx4_load_one() + - net: llc: fix skb_over_panic + - net/mlx5: Fix flow table chaining + - net/mlx5e: Fix nullptr in mlx5e_hairpin_get_mdev() + - sctp: fix return value check in __sctp_rcv_asconf_lookup + - tulip: windbond-840: Fix missing pci_disable_device() in probe and remove + - sis900: Fix missing pci_disable_device() in probe and remove + - can: hi311x: fix a signedness bug in hi3110_cmd() + - PCI: mvebu: Setup BAR0 in order to fix MSI + - powerpc/pseries: Fix regression while building external modules + - i40e: Add additional info to PHY type error + - can: j1939: j1939_session_deactivate(): clarify lifetime of session object + - Linux 5.4.138 + * Focal update: v5.4.137 upstream stable release (LP: #1940557) + - selftest: fix build error in tools/testing/selftests/vm/userfaultfd.c + - tools: Allow proper CC/CXX/... override with LLVM=1 in Makefile.include + - KVM: x86: determine if an exception has an error code only when injecting + it. + - af_unix: fix garbage collect vs MSG_PEEK + - workqueue: fix UAF in pwq_unbound_release_workfn() + - cgroup1: fix leaked context root causing sporadic NULL deref in LTP + - net/802/mrp: fix memleak in mrp_request_join() + - net/802/garp: fix memleak in garp_request_join() + - net: annotate data race around sk_ll_usec + - sctp: move 198 addresses from unusable to private scope + - ipv6: allocate enough headroom in ip6_finish_output2() + - hfs: add missing clean-up in hfs_fill_super + - hfs: fix high memory mapping in hfs_bnode_read + - hfs: add lock nesting notation to hfs_find_init + - firmware: arm_scmi: Fix possible scmi_linux_errmap buffer overflow + - firmware: arm_scmi: Fix range check for the maximum number of pending + messages + - cifs: fix the out of range assignment to bit fields in + parse_server_interfaces + - iomap: remove the length variable in iomap_seek_data + - iomap: remove the length variable in iomap_seek_hole + - ARM: dts: versatile: Fix up interrupt controller node names + - ipv6: ip6_finish_output2: set sk into newly allocated nskb + - Linux 5.4.137 + * Focal update: v5.4.136 upstream stable release (LP: #1939899) + - igc: Fix use-after-free error during reset + - igb: Fix use-after-free error during reset + - igc: change default return of igc_read_phy_reg() + - ixgbe: Fix an error handling path in 'ixgbe_probe()' + - igc: Prefer to use the pci_release_mem_regions method + - igc: Fix an error handling path in 'igc_probe()' + - igb: Fix an error handling path in 'igb_probe()' + - fm10k: Fix an error handling path in 'fm10k_probe()' + - e1000e: Fix an error handling path in 'e1000_probe()' + - iavf: Fix an error handling path in 'iavf_probe()' + - igb: Check if num of q_vectors is smaller than max before array access + - igb: Fix position of assignment to *ring + - gve: Fix an error handling path in 'gve_probe()' + - ipv6: fix 'disable_policy' for fwd packets + - selftests: icmp_redirect: remove from checking for IPv6 route get + - selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect + - pwm: sprd: Ensure configuring period and duty_cycle isn't wrongly skipped + - cxgb4: fix IRQ free race during driver unload + - nvme-pci: do not call nvme_dev_remove_admin from nvme_remove + - perf probe: Fix dso->nsinfo refcounting + - perf env: Fix sibling_dies memory leak + - perf test session_topology: Delete session->evlist + - perf test event_update: Fix memory leak of evlist + - perf dso: Fix memory leak in dso__new_map() + - perf script: Fix memory 'threads' and 'cpus' leaks on exit + - perf lzma: Close lzma stream on exit + - perf probe-file: Delete namelist in del_events() on the error path + - perf data: Close all files in close_dir() + - spi: imx: add a check for speed_hz before calculating the clock + - spi: stm32: Use dma_request_chan() instead dma_request_slave_channel() + - spi: stm32: fixes pm_runtime calls in probe/remove + - regulator: hi6421: Use correct variable type for regmap api val argument + - regulator: hi6421: Fix getting wrong drvdata + - spi: mediatek: fix fifo rx mode + - ASoC: rt5631: Fix regcache sync errors on resume + - liquidio: Fix unintentional sign extension issue on left shift of u16 + - s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] + - bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats + - bpftool: Check malloc return value in mount_bpffs_for_pin + - net: fix uninit-value in caif_seqpkt_sendmsg + - efi/tpm: Differentiate missing and invalid final event log table. + - net: decnet: Fix sleeping inside in af_decnet + - KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash + - KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak + - net: sched: fix memory leak in tcindex_partial_destroy_work + - netrom: Decrease sock refcount when sock timers expire + - scsi: iscsi: Fix iface sysfs attr detection + - scsi: target: Fix protect handling in WRITE SAME(32) + - spi: cadence: Correct initialisation of runtime PM again + - bnxt_en: Improve bnxt_ulp_stop()/bnxt_ulp_start() call sequence. + - bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() + - bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() + - bnxt_en: Check abort error state in bnxt_half_open_nic() + - net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition + - net/tcp_fastopen: fix data races around tfo_active_disable_stamp + - net: hns3: fix rx VLAN offload state inconsistent issue + - net/sched: act_skbmod: Skip non-Ethernet packets + - ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions + - nvme-pci: don't WARN_ON in nvme_reset_work if ctrl.state is not RESETTING + - Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" + - afs: Fix tracepoint string placement with built-in AFS + - r8169: Avoid duplicate sysfs entry creation error + - nvme: set the PRACT bit when using Write Zeroes with T10 PI + - sctp: update active_key for asoc when old key is being replaced + - net: sched: cls_api: Fix the the wrong parameter + - drm/panel: raspberrypi-touchscreen: Prevent double-free + - proc: Avoid mixing integer types in mem_rw() + - s390/ftrace: fix ftrace_update_ftrace_func implementation + - s390/boot: fix use of expolines in the DMA code + - ALSA: usb-audio: Add missing proc text entry for BESPOKEN type + - ALSA: usb-audio: Add registration quirk for JBL Quantum headsets + - ALSA: sb: Fix potential ABBA deadlock in CSP driver + - ALSA: hdmi: Expose all pins on MSI MS-7C94 board + - xhci: Fix lost USB 2 remote wake + - KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow + - KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state + - usb: hub: Disable USB 3 device initiated lpm if exit latency is too high + - usb: hub: Fix link power management max exit latency (MEL) calculations + - USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS + - usb: max-3421: Prevent corruption of freed memory + - usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() + - USB: serial: option: add support for u-blox LARA-R6 family + - USB: serial: cp210x: fix comments for GE CS1000 + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: dwc2: gadget: Fix sending zero length packet in DDMA mode. + - firmware/efi: Tell memblock about EFI iomem reservations + - tracing/histogram: Rename "cpu" to "common_cpu" + - tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop. + - btrfs: check for missing device in btrfs_trim_fs + - media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() + - ixgbe: Fix packet corruption due to missing DMA sync + - selftest: use mmap instead of posix_memalign to allocate memory + - userfaultfd: do not untag user pointers + - hugetlbfs: fix mount mode command line processing + - rbd: don't hold lock_rwsem while running_list is being drained + - rbd: always kick acquire on "acquired" and "released" notifications + - nds32: fix up stack guard gap + - drm: Return -ENOTTY for non-drm ioctls + - net: dsa: mv88e6xxx: use correct .stats_set_histogram() on Topaz + - net: bcmgenet: ensure EXT_ENERGY_DET_MASK is clear + - iio: accel: bma180: Use explicit member assignment + - iio: accel: bma180: Fix BMA25x bandwidth register values + - btrfs: compression: don't try to compress if we don't have enough pages + - PCI: Mark AMD Navi14 GPU ATS as broken + - perf inject: Close inject.output on exit + - xhci: add xhci_get_virt_ep() helper + - Linux 5.4.136 + * Focal update: v5.4.135 upstream stable release (LP: #1939442) + - ARM: dts: gemini: rename mdio to the right name + - ARM: dts: gemini: add device_type on pci + - ARM: dts: rockchip: fix pinctrl sleep nodename for rk3036-kylin and rk3288 + - arm64: dts: rockchip: fix pinctrl sleep nodename for rk3399.dtsi + - ARM: dts: rockchip: Fix the timer clocks order + - ARM: dts: rockchip: Fix IOMMU nodes properties on rk322x + - ARM: dts: rockchip: Fix power-controller node names for rk3066a + - ARM: dts: rockchip: Fix power-controller node names for rk3188 + - ARM: dts: rockchip: Fix power-controller node names for rk3288 + - arm64: dts: rockchip: Fix power-controller node names for px30 + - arm64: dts: rockchip: Fix power-controller node names for rk3328 + - reset: ti-syscon: fix to_ti_syscon_reset_data macro + - ARM: brcmstb: dts: fix NAND nodes names + - ARM: Cygnus: dts: fix NAND nodes names + - ARM: NSP: dts: fix NAND nodes names + - ARM: dts: BCM63xx: Fix NAND nodes names + - ARM: dts: Hurricane 2: Fix NAND nodes names + - ARM: dts: imx6: phyFLEX: Fix UART hardware flow control + - ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info + - rtc: mxc_v2: add missing MODULE_DEVICE_TABLE + - kbuild: sink stdout from cmd for silent build + - ARM: dts: am57xx-cl-som-am57x: fix ti,no-reset-on-init flag for gpios + - ARM: dts: am437x-gp-evm: fix ti,no-reset-on-init flag for gpios + - ARM: dts: stm32: fix gpio-keys node on STM32 MCU boards + - ARM: dts: stm32: fix RCC node name on stm32f429 MCU + - ARM: dts: stm32: fix timer nodes on STM32 MCU to prevent warnings + - arm64: dts: juno: Update SCPI nodes as per the YAML schema + - ARM: dts: rockchip: fix supply properties in io-domains nodes + - ARM: dts: stm32: fix i2c node name on stm32f746 to prevent warnings + - ARM: dts: stm32: move stmmac axi config in ethernet node on stm32mp15 + - soc/tegra: fuse: Fix Tegra234-only builds + - firmware: tegra: bpmp: Fix Tegra234-only builds + - arm64: dts: ls208xa: remove bus-num from dspi node + - arm64: dts: imx8mq: assign PCIe clocks + - thermal/core: Correct function name thermal_zone_device_unregister() + - kbuild: mkcompile_h: consider timestamp if KBUILD_BUILD_TIMESTAMP is set + - rtc: max77686: Do not enforce (incorrect) interrupt trigger type + - scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 + - scsi: libsas: Add LUN number check in .slave_alloc callback + - scsi: libfc: Fix array index out of bound exception + - scsi: qedf: Add check to synchronize abort and flush + - sched/fair: Fix CFS bandwidth hrtimer expiry type + - s390: introduce proper type handling call_on_stack() macro + - cifs: prevent NULL deref in cifs_compose_mount_options() + - arm64: dts: armada-3720-turris-mox: add firmware node + - firmware: turris-mox-rwtm: add marvell,armada-3700-rwtm-firmware compatible + string + - arm64: dts: marvell: armada-37xx: move firmware node to generic dtsi file + - f2fs: Show casefolding support only when supported + - usb: cdns3: Enable TDL_CHK only for OUT ep + - Revert "UBUNTU: SAUCE: Revert "mm: memcg/slab: fix memory leak at non-root + kmem_cache destroy"" + - mm: slab: fix kmem_cache_create failed when sysfs node not destroyed + - dm writecache: return the exact table values that were set + - net: dsa: mv88e6xxx: enable .port_set_policy() on Topaz + - net: dsa: mv88e6xxx: enable .rmu_disable() on Topaz + - net: ipv6: fix return value of ip6_skb_dst_mtu + - netfilter: ctnetlink: suspicious RCU usage in ctnetlink_dump_helpinfo + - net/sched: act_ct: fix err check for nf_conntrack_confirm + - net: bridge: sync fdb to new unicast-filtering ports + - net: bcmgenet: Ensure all TX/RX queues DMAs are disabled + - net: ip_tunnel: fix mtu calculation for ETHER tunnel devices + - net: moxa: fix UAF in moxart_mac_probe + - net: qcom/emac: fix UAF in emac_remove + - net: ti: fix UAF in tlan_remove_one + - net: send SYNACK packet with accepted fwmark + - net: validate lwtstate->data before returning from skb_tunnel_info() + - net: fddi: fix UAF in fza_probe + - dma-buf/sync_file: Don't leak fences on merge failure + - tcp: annotate data races around tp->mtu_info + - ipv6: tcp: drop silly ICMPv6 packet too big messages + - bpftool: Properly close va_list 'ap' by va_end() on error + - perf test bpf: Free obj_buf + - udp: annotate data races around unix_sk(sk)->gso_size + - Linux 5.4.135 + * Focal update: v5.4.134 upstream stable release (LP: #1939440) + - KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio + - KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled + - KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() + - scsi: core: Fix bad pointer dereference when ehandler kthread is invalid + - tracing: Do not reference char * as a string in histograms + - cgroup: verify that source is a string + - fbmem: Do not delete the mode that is still in use + - net: moxa: Use devm_platform_get_and_ioremap_resource() + - dmaengine: fsl-qdma: check dma_set_mask return value + - srcu: Fix broken node geometry after early ssp init + - tty: serial: fsl_lpuart: fix the potential risk of division or modulo by + zero + - misc/libmasm/module: Fix two use after free in ibmasm_init_one + - misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge + - iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get(). + - iio: magn: bmc150: Balance runtime pm + use pm_runtime_resume_and_get() + - ALSA: usx2y: Don't call free_pages_exact() with NULL address + - Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" + - w1: ds2438: fixing bug that would always get page0 + - scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() + - scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology + - scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the + SGLs + - scsi: core: Cap scsi_host cmd_per_lun at can_queue + - ALSA: ac97: fix PM reference leak in ac97_bus_remove() + - tty: serial: 8250: serial_cs: Fix a memory leak in error handling path + - scsi: scsi_dh_alua: Check for negative result value + - fs/jfs: Fix missing error code in lmLogInit() + - scsi: megaraid_sas: Fix resource leak in case of probe failure + - scsi: megaraid_sas: Early detection of VD deletion through RaidMap update + - scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs + - scsi: iscsi: Add iscsi_cls_conn refcount helpers + - scsi: iscsi: Fix conn use after free during resets + - scsi: iscsi: Fix shost->max_id use + - scsi: qedi: Fix null ref during abort handling + - mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE + - mfd: cpcap: Fix cpcap dmamask not set warnings + - ASoC: img: Fix PM reference leak in img_i2s_in_probe() + - serial: tty: uartlite: fix console setup + - s390/sclp_vt220: fix console name to match device + - ALSA: sb: Fix potential double-free of CSP mixer elements + - powerpc/ps3: Add dma_mask to ps3_dma_region + - iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get + fails + - iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation + - gpio: zynq: Check return value of pm_runtime_get_sync + - ALSA: ppc: fix error return code in snd_pmac_probe() + - selftests/powerpc: Fix "no_handler" EBB selftest + - gpio: pca953x: Add support for the On Semi pca9655 + - ASoC: soc-core: Fix the error return code in + snd_soc_of_parse_audio_routing() + - s390/processor: always inline stap() and __load_psw_mask() + - s390/ipl_parm: fix program check new psw handling + - s390/mem_detect: fix diag260() program check new psw handling + - s390/mem_detect: fix tprot() program check new psw handling + - Input: hideep - fix the uninitialized use in hideep_nvm_unlock() + - ALSA: bebob: add support for ToneWeal FW66 + - ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count + - ALSA: usb-audio: scarlett2: Fix data_mutex lock + - ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values + - usb: gadget: f_hid: fix endianness issue with descriptors + - usb: gadget: hid: fix error return code in hid_bind() + - powerpc/boot: Fixup device-tree on little endian + - ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters + - backlight: lm3630a: Fix return code of .update_status() callback + - ALSA: hda: Add IRQ check for platform_get_irq() + - ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions + - staging: rtl8723bs: fix macro value for 2.4Ghz only device + - intel_th: Wait until port is in reset before programming it + - i2c: core: Disable client irq on reboot/shutdown + - power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE + - power: supply: sc2731_charger: Add missing MODULE_DEVICE_TABLE + - pwm: spear: Don't modify HW state in .remove callback + - power: supply: ab8500: Avoid NULL pointers + - power: supply: max17042: Do not enforce (incorrect) interrupt trigger type + - power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE + - ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 + - PCI/P2PDMA: Avoid pci_get_slot(), which may sleep + - watchdog: Fix possible use-after-free in wdt_startup() + - watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() + - watchdog: Fix possible use-after-free by calling del_timer_sync() + - watchdog: imx_sc_wdt: fix pretimeout + - x86/fpu: Return proper error codes from user access functions + - PCI: tegra: Add missing MODULE_DEVICE_TABLE + - orangefs: fix orangefs df output. + - ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty + - NFS: nfs_find_open_context() may only select open files + - power: supply: charger-manager: add missing MODULE_DEVICE_TABLE + - power: supply: ab8500: add missing MODULE_DEVICE_TABLE + - pwm: img: Fix PM reference leak in img_pwm_enable() + - pwm: tegra: Don't modify HW state in .remove callback + - ACPI: AMBA: Fix resource name in /proc/iomem + - ACPI: video: Add quirk for the Dell Vostro 3350 + - virtio-blk: Fix memory leak among suspend/resume procedure + - virtio_net: Fix error handling in virtnet_restore() + - virtio_console: Assure used length from device is limited + - x86/signal: Detect and prevent an alternate signal stack overflow + - f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs + - PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun + - power: supply: rt5033_battery: Fix device tree enumeration + - NFSv4: Initialise connection to the server in nfs4_alloc_client() + - um: fix error return code in slip_open() + - um: fix error return code in winch_tramp() + - watchdog: aspeed: fix hardware timeout calculation + - nfs: fix acl memory leak of posix_acl_create() + - ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode + - PCI: iproc: Fix multi-MSI base vector number allocation + - PCI: iproc: Support multi-MSI only on uniprocessor kernel + - x86/fpu: Limit xstate copy size in xstateregs_set() + - pwm: imx1: Don't disable clocks at device remove time + - virtio_net: move tx vq operation under tx queue lock + - nvme-tcp: can't set sk_user_data without write_lock + - ALSA: isa: Fix error return code in snd_cmi8330_probe() + - NFSv4/pNFS: Don't call _nfs4_pnfs_v3_ds_connect multiple times + - hexagon: use common DISCARDS macro + - ARM: dts: gemini-rut1xx: remove duplicate ethernet node + - reset: a10sr: add missing of_match_table reference + - ARM: exynos: add missing of_node_put for loop iteration + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 + - ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 + - memory: atmel-ebi: add missing of_node_put for loop iteration + - reset: brcmstb: Add missing MODULE_DEVICE_TABLE + - memory: pl353: Fix error return code in pl353_smc_probe() + - rtc: fix snprintf() checking in is_rtc_hctosys() + - arm64: dts: renesas: v3msk: Fix memory size + - ARM: dts: r8a7779, marzen: Fix DU clock names + - firmware: tegra: Fix error return code in tegra210_bpmp_init() + - firmware: arm_scmi: Reset Rx buffer to max size during async commands + - ARM: dts: BCM5301X: Fixup SPI binding + - reset: bail if try_module_get() fails + - memory: fsl_ifc: fix leak of IO mapping on probe failure + - memory: fsl_ifc: fix leak of private memory on probe failure + - ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: am437x: align ti,pindir-d0-out-d1-in property with dt-shema + - ARM: dts: imx6q-dhcom: Fix ethernet reset time properties + - ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems + - ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery + - thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations + - firmware: turris-mox-rwtm: fix reply status decoding function + - firmware: turris-mox-rwtm: report failures better + - firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng + - scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() + - mips: always link byteswap helpers into decompressor + - mips: disable branch profiling in boot/decompress.o + - MIPS: vdso: Invalid GIC access through VDSO + - scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() + - misc: alcor_pci: fix inverted branch condition + - Linux 5.4.134 + + -- Marcelo Henrique Cerri Mon, 13 Sep 2021 17:59:12 -0300 + +linux-azure (5.4.0-1058.60) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1058.60 -proposed tracker (LP: #1942117) + + * linux-azure: main(): sched_setscheduler(): Operation not permitted + (LP: #1942092) + - Revert "UBUNTU: [Config] azure: CONFIG_RT_GROUP_SCHED=y" + + [ Ubuntu: 5.4.0-84.94 ] + + * focal/linux: 5.4.0-84.94 -proposed tracker (LP: #1941767) + * Server boot failure after adding checks for ACPI IRQ override (LP: #1941657) + - Revert "ACPI: resources: Add checks for ACPI IRQ override" + + -- Marcelo Henrique Cerri Tue, 31 Aug 2021 10:43:59 -0300 + +linux-azure (5.4.0-1057.59) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1057.59 -proposed tracker (LP: #1939775) + + * Focal update: v5.4.129 upstream stable release (LP: #1936242) + - [Config] enable CONFIG_SYSTEM_REVOCATION_LIST + + * linux-azure Enable CONFIG_RT_GROUP_SCHED (LP: #1939024) + - [Config] azure: CONFIG_RT_GROUP_SCHED=y + + * Sync to SGX 1.33.2 (LP: #1936240) + - SAUCE: ubuntu/sgx: backport fixes to 1.33 + - SAUCE: ubuntu/sgx: missing synchronize_srcu call before cleanup + - SAUCE: ubuntu/sgx: fix a synchronization issue for mmput + - SAUCE: ubuntu/sgx: look for exported symbols in Makefile + - SAUCE: ubuntu/sgx: hardening compiler options + - SAUCE: ubuntu/sgx: Fix signed integer overflow on shift + - SAUCE: ubuntu/sgx: move use space header + - SAUCE: ubuntu/sgx: Version 1.33.2 + + [ Ubuntu: 5.4.0-83.93 ] + + * focal/linux: 5.4.0-83.93 -proposed tracker (LP: #1940159) + * fails to launch linux L2 guests on AMD (LP: #1940134) // CVE-2021-3653 + - KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + (CVE-2021-3653) + * fails to launch linux L2 guests on AMD (LP: #1940134) + - SAUCE: Revert "UBUNTU: SAUCE: KVM: nSVM: avoid picking up unsupported bits + from L2 in int_ctl" + + [ Ubuntu: 5.4.0-82.92 ] + + * focal/linux: 5.4.0-82.92 -proposed tracker (LP: #1939799) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2021.08.16) + * CVE-2021-3656 + - SAUCE: KVM: nSVM: always intercept VMLOAD/VMSAVE when nested + * CVE-2021-3653 + - SAUCE: KVM: nSVM: avoid picking up unsupported bits from L2 in int_ctl + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + * dev_forward_skb: do not scrub skb mark within the same name space + (LP: #1935040) + - dev_forward_skb: do not scrub skb mark within the same name space + * XPS 9510 (TGL) Screen Brightness could not be changed (LP: #1933566) + - SAUCE: drm/i915: Force DPCD backlight mode for Dell XPS 9510(TGL) + * Acer Aspire 5 sound driver issues (LP: #1930188) + - ALSA: hda/realtek: headphone and mic don't work on an Acer laptop + * Sony Dualshock 4 usb dongle crashes the whole system (LP: #1935846) + - HID: sony: Workaround for DS4 dongle hotplug kernel crash. + * [21.10 FEAT] KVM: Provide a secure guest indication (LP: #1933173) + - s390/uv: add prot virt guest/host indication files + - s390/uv: fix prot virt host indication compilation + * Skip rtcpie test in kselftests/timers if the default RTC device does not + exist (LP: #1937991) + - selftests: timers: rtcpie: skip test if default RTC device does not exist + * Focal update: v5.4.133 upstream stable release (LP: #1938713) + - drm/mxsfb: Don't select DRM_KMS_FB_HELPER + - drm/zte: Don't select DRM_KMS_FB_HELPER + - drm/amd/amdgpu/sriov disable all ip hw status by default + - drm/vc4: fix argument ordering in vc4_crtc_get_margins() + - net: pch_gbe: Use proper accessors to BE data in pch_ptp_match() + - drm/amd/display: fix use_max_lb flag for 420 pixel formats + - hugetlb: clear huge pte during flush function on mips platform + - atm: iphase: fix possible use-after-free in ia_module_exit() + - mISDN: fix possible use-after-free in HFC_cleanup() + - atm: nicstar: Fix possible use-after-free in nicstar_cleanup() + - net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT + - drm/mediatek: Fix PM reference leak in mtk_crtc_ddp_hw_init() + - reiserfs: add check for invalid 1st journal block + - drm/virtio: Fix double free on probe failure + - drm/sched: Avoid data corruptions + - udf: Fix NULL pointer dereference in udf_symlink function + - e100: handle eeprom as little endian + - igb: handle vlan types with checker enabled + - drm/bridge: cdns: Fix PM reference leak in cdns_dsi_transfer() + - clk: renesas: r8a77995: Add ZA2 clock + - clk: tegra: Ensure that PLLU configuration is applied properly + - ipv6: use prandom_u32() for ID generation + - RDMA/cxgb4: Fix missing error code in create_qp() + - dm space maps: don't reset space map allocation cursor when committing + - pinctrl: mcp23s08: fix race condition in irq handler + - ice: set the value of global config lock timeout longer + - virtio_net: Remove BUG() to avoid machine dead + - net: bcmgenet: check return value after calling platform_get_resource() + - net: mvpp2: check return value after calling platform_get_resource() + - net: micrel: check return value after calling platform_get_resource() + - drm/amd/display: Update scaling settings on modeset + - drm/amd/display: Release MST resources on switch from MST to SST + - drm/amd/display: Set DISPCLK_MAX_ERRDET_CYCLES to 7 + - drm/amdkfd: use allowed domain for vmbo validation + - fjes: check return value after calling platform_get_resource() + - selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC + - r8169: avoid link-up interrupt issue on RTL8106e if user enables ASPM + - drm/amd/display: Verify Gamma & Degamma LUT sizes in amdgpu_dm_atomic_check + - xfrm: Fix error reporting in xfrm_state_construct. + - wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP + - wl1251: Fix possible buffer overflow in wl1251_cmd_scan + - cw1200: add missing MODULE_DEVICE_TABLE + - bpf: Fix up register-based shifts in interpreter to silence KUBSAN + - mt76: mt7615: fix fixed-rate tx status reporting + - net: fix mistake path for netdev_features_strings + - net: sched: fix error return code in tcf_del_walker() + - drm/amdkfd: Walk through list with dqm lock hold + - rtl8xxxu: Fix device info for RTL8192EU devices + - atm: nicstar: use 'dma_free_coherent' instead of 'kfree' + - atm: nicstar: register the interrupt handler in the right place + - vsock: notify server to shutdown when client has pending signal + - RDMA/rxe: Don't overwrite errno from ib_umem_get() + - iwlwifi: mvm: don't change band on bound PHY contexts + - iwlwifi: pcie: free IML DMA memory allocation + - iwlwifi: pcie: fix context info freeing + - sfc: avoid double pci_remove of VFs + - sfc: error code if SRIOV cannot be disabled + - wireless: wext-spy: Fix out-of-bounds warning + - media, bpf: Do not copy more entries than user space requested + - net: ip: avoid OOM kills with large UDP sends over loopback + - RDMA/cma: Fix rdma_resolve_route() memory leak + - Bluetooth: btusb: Fixed too many in-token issue for Mediatek Chip. + - Bluetooth: Fix the HCI to MGMT status conversion table + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + - Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc. + - sctp: validate from_addr_param return + - sctp: add size validation when walking chunks + - MIPS: loongsoon64: Reserve memory below starting pfn to prevent Oops + - MIPS: set mips32r5 for virt extensions + - fscrypt: don't ignore minor_hash when hash is 0 + - crypto: ccp - Annotate SEV Firmware file names + - perf bench: Fix 2 memory sanitizer warnings + - powerpc/mm: Fix lockup on kernel exec fault + - powerpc/barrier: Avoid collision with clang's __lwsync macro + - drm/amdgpu: Update NV SIMD-per-CU to 2 + - drm/radeon: Add the missed drm_gem_object_put() in + radeon_user_framebuffer_create() + - drm/rockchip: dsi: remove extra component_del() call + - drm/amd/display: fix incorrrect valid irq check + - pinctrl/amd: Add device HID for new AMD GPIO controller + - drm/tegra: Don't set allow_fb_modifiers explicitly + - drm/msm/mdp4: Fix modifier support enabling + - drm/arm/malidp: Always list modifiers + - mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode + - mmc: core: clear flags before allowing to retune + - mmc: core: Allow UHS-I voltage switch for SDSC cards if supported + - ata: ahci_sunxi: Disable DIPM + - cpu/hotplug: Cure the cpusets trainwreck + - clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround + - fpga: stratix10-soc: Add missing fpga_mgr_free() call + - MIPS: fix "mipsel-linux-ld: decompress.c:undefined reference to `memmove'" + - ASoC: tegra: Set driver_name=tegra for all machine drivers + - qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute + - ipmi/watchdog: Stop watchdog timer when the current action is 'none' + - thermal/drivers/int340x/processor_thermal: Fix tcc setting + - ubifs: Fix races between xattr_{set|get} and listxattr operations + - power: supply: ab8500: Fix an old bug + - nvmem: core: add a missing of_node_put + - extcon: intel-mrfld: Sync hardware and software state on init + - seq_buf: Fix overflow in seq_buf_putmem_hex() + - rq-qos: fix missed wake-ups in rq_qos_throttle try two + - tracing: Simplify & fix saved_tgids logic + - tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT + - ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe + - coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer() + - dm btree remove: assign new_root only when removal succeeds + - PCI: Leave Apple Thunderbolt controllers on for s2idle or standby + - PCI: aardvark: Fix checking for PIO Non-posted Request + - PCI: aardvark: Implement workaround for the readback value of VEND_ID + - media: subdev: disallow ioctl for saa6588/davinci + - media: dtv5100: fix control-request directions + - media: zr364xx: fix memory leak in zr364xx_start_readpipe + - media: gspca/sq905: fix control-request direction + - media: gspca/sunplus: fix zero-length control requests + - pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq() + - jfs: fix GPF in diFree + - smackfs: restrict bytes count in smk_set_cipso() + - Linux 5.4.133 + * Focal update: v5.4.132 upstream stable release (LP: #1938199) + - ALSA: usb-audio: fix rate on Ozone Z90 USB headset + - ALSA: usb-audio: Fix OOB access at proc output + - ALSA: usb-audio: scarlett2: Fix wrong resume call + - ALSA: intel8x0: Fix breakage at ac97 clock measurement + - ALSA: hda/realtek: Add another ALC236 variant support + - ALSA: hda/realtek: Improve fixup for HP Spectre x360 15-df0xxx + - ALSA: hda/realtek: Fix bass speaker DAC mapping for Asus UM431D + - ALSA: hda/realtek: Apply LED fixup for HP Dragonfly G1, too + - media: dvb-usb: fix wrong definition + - Input: usbtouchscreen - fix control-request directions + - net: can: ems_usb: fix use-after-free in ems_usb_disconnect() + - usb: gadget: eem: fix echo command packet response issue + - USB: cdc-acm: blacklist Heimann USB Appset device + - usb: dwc3: Fix debugfs creation flow + - usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() + - xhci: solve a double free problem while doing s4 + - ntfs: fix validity check for file name attribute + - copy_page_to_iter(): fix ITER_DISCARD case + - iov_iter_fault_in_readable() should do nothing in xarray case + - Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl + - arm_pmu: Fix write counter incorrect in ARMv7 big-endian mode + - ARM: dts: at91: sama5d4: fix pinctrl muxing + - btrfs: send: fix invalid path for unlink operations after parent + orphanization + - btrfs: clear defrag status of a root if starting transaction fails + - ext4: cleanup in-core orphan list if ext4_truncate() failed to get a + transaction handle + - ext4: fix kernel infoleak via ext4_extent_header + - ext4: return error code when ext4_fill_flex_info() fails + - ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit + - ext4: remove check for zero nr_to_scan in ext4_es_scan() + - ext4: fix avefreec in find_group_orlov + - ext4: use ext4_grp_locked_error in mb_find_extent + - can: gw: synchronize rcu operations before removing gw job entry + - can: j1939: j1939_sk_init(): set SOCK_RCU_FREE to call sk_destruct() after + RCU is done + - can: peak_pciefd: pucan_handle_status(): fix a potential starvation issue in + TX path + - mac80211: remove iwlwifi specific workaround that broke sta NDP tx + - SUNRPC: Fix the batch tasks count wraparound. + - SUNRPC: Should wake up the privileged task firstly. + - perf/smmuv3: Don't trample existing events with global filter + - KVM: PPC: Book3S HV: Workaround high stack usage with clang + - s390/cio: dont call css_wait_for_slow_path() inside a lock + - rtc: stm32: Fix unbalanced clk_disable_unprepare() on probe error path + - iio: light: tcs3472: do not free unallocated IRQ + - iio: ltr501: mark register holding upper 8 bits of ALS_DATA{0,1} and PS_DATA + as volatile, too + - iio: ltr501: ltr559: fix initialization of LTR501_ALS_CONTR + - iio: ltr501: ltr501_read_ps(): add missing endianness conversion + - serial: mvebu-uart: fix calculation of clock divisor + - serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() + - serial_cs: Add Option International GSM-Ready 56K/ISDN modem + - serial_cs: remove wrong GLOBETROTTER.cis entry + - ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() + - ssb: sdio: Don't overwrite const buffer if block_write fails + - rsi: Assign beacon rate settings to the correct rate_info descriptor field + - rsi: fix AP mode with WPA failure due to encrypted EAPOL + - tracing/histograms: Fix parsing of "sym-offset" modifier + - tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing + - seq_buf: Make trace_seq_putmem_hex() support data longer than 8 + - powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() + - evm: Execute evm_inode_init_security() only when an HMAC key is loaded + - evm: Refuse EVM_ALLOW_METADATA_WRITES only if an HMAC key is loaded + - fuse: ignore PG_workingset after stealing + - fuse: check connected before queueing on fpq->io + - fuse: reject internal errno + - spi: Make of_register_spi_device also set the fwnode + - media: mdk-mdp: fix pm_runtime_get_sync() usage count + - media: s5p: fix pm_runtime_get_sync() usage count + - media: sh_vou: fix pm_runtime_get_sync() usage count + - media: mtk-vcodec: fix PM runtime get logic + - media: s5p-jpeg: fix pm_runtime_get_sync() usage count + - media: sti/bdisp: fix pm_runtime_get_sync() usage count + - media: exynos-gsc: fix pm_runtime_get_sync() usage count + - spi: spi-loopback-test: Fix 'tx_buf' might be 'rx_buf' + - spi: spi-topcliff-pch: Fix potential double free in + pch_spi_process_messages() + - spi: omap-100k: Fix the length judgment problem + - regulator: uniphier: Add missing MODULE_DEVICE_TABLE + - hwrng: exynos - Fix runtime PM imbalance on error + - crypto: nx - add missing MODULE_DEVICE_TABLE + - media: sti: fix obj-$(config) targets + - media: cpia2: fix memory leak in cpia2_usb_probe + - media: cobalt: fix race condition in setting HPD + - media: pvrusb2: fix warning in pvr2_i2c_core_done + - media: imx: imx7_mipi_csis: Fix logging of only error event counters + - crypto: qat - check return code of qat_hal_rd_rel_reg() + - crypto: qat - remove unused macro in FW loader + - sched/fair: Fix ascii art by relpacing tabs + - media: em28xx: Fix possible memory leak of em28xx struct + - media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release + - media: bt8xx: Fix a missing check bug in bt878_probe + - media: st-hva: Fix potential NULL pointer dereferences + - Makefile: fix GDB warning with CONFIG_RELR + - media: dvd_usb: memory leak in cinergyt2_fe_attach + - memstick: rtsx_usb_ms: fix UAF + - mmc: sdhci-sprd: use sdhci_sprd_writew + - mmc: via-sdmmc: add a check against NULL pointer dereference + - crypto: shash - avoid comparing pointers to exported functions under CFI + - media: dvb_net: avoid speculation from net slot + - media: siano: fix device register error path + - media: imx-csi: Skip first few frames from a BT.656 source + - hwmon: (max31790) Report correct current pwm duty cycles + - hwmon: (max31790) Fix pwmX_enable attributes + - drivers/perf: fix the missed ida_simple_remove() in ddr_perf_probe() + - KVM: PPC: Book3S HV: Fix TLB management on SMT8 POWER9 and POWER10 + processors + - btrfs: fix error handling in __btrfs_update_delayed_inode + - btrfs: abort transaction if we fail to update the delayed inode + - btrfs: disable build on platforms having page size 256K + - locking/lockdep: Fix the dep path printing for backwards BFS + - lockding/lockdep: Avoid to find wrong lock dep path in check_irq_usage() + - KVM: s390: get rid of register asm usage + - regulator: mt6358: Fix vdram2 .vsel_mask + - regulator: da9052: Ensure enough delay time for .set_voltage_time_sel + - media: Fix Media Controller API config checks + - HID: do not use down_interruptible() when unbinding devices + - EDAC/ti: Add missing MODULE_DEVICE_TABLE + - ACPI: processor idle: Fix up C-state latency if not ordered + - hv_utils: Fix passing zero to 'PTR_ERR' warning + - lib: vsprintf: Fix handling of number field widths in vsscanf + - ACPI: EC: Make more Asus laptops use ECDT _GPE + - block_dump: remove block_dump feature in mark_inode_dirty() + - fs: dlm: cancel work sync othercon + - random32: Fix implicit truncation warning in prandom_seed_state() + - fs: dlm: fix memory leak when fenced + - ACPICA: Fix memory leak caused by _CID repair function + - ACPI: bus: Call kobject_put() in acpi_init() error path + - block: fix race between adding/removing rq qos and normal IO + - platform/x86: toshiba_acpi: Fix missing error code in + toshiba_acpi_setup_keyboard() + - nvmet-fc: do not check for invalid target port in nvmet_fc_handle_fcp_rqst() + - EDAC/Intel: Do not load EDAC driver when running as a guest + - PCI: hv: Add check for hyperv_initialized in init_hv_pci_drv() + - clocksource: Retry clock read if long delays detected + - ACPI: tables: Add custom DSDT file as makefile prerequisite + - HID: wacom: Correct base usage for capacitive ExpressKey status bits + - cifs: fix missing spinlock around update to ses->status + - block: fix discard request merge + - kthread_worker: fix return value when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - ia64: mca_drv: fix incorrect array size calculation + - writeback, cgroup: increment isw_nr_in_flight before grabbing an inode + - media: s5p_cec: decrement usage count if disabled + - crypto: ixp4xx - dma_unmap the correct address + - crypto: ux500 - Fix error return code in hash_hw_final() + - sata_highbank: fix deferred probing + - pata_rb532_cf: fix deferred probing + - media: I2C: change 'RST' to "RSET" to fix multiple build errors + - sched/uclamp: Fix wrong implementation of cpu.uclamp.min + - sched/uclamp: Fix locking around cpu_util_update_eff() + - kbuild: run the checker after the compiler + - kbuild: Fix objtool dependency for 'OBJECT_FILES_NON_STANDARD_ := n' + - pata_octeon_cf: avoid WARN_ON() in ata_host_activate() + - evm: fix writing /evm overflow + - crypto: ccp - Fix a resource leak in an error handling path + - media: rc: i2c: Fix an error message + - pata_ep93xx: fix deferred probing + - media: exynos4-is: Fix a use after free in isp_video_release + - media: au0828: fix a NULL vs IS_ERR() check + - media: tc358743: Fix error return code in tc358743_probe_of() + - media: gspca/gl860: fix zero-length control requests + - m68k: atari: Fix ATARI_KBD_CORE kconfig unmet dependency warning + - media: siano: Fix out-of-bounds warnings in smscore_load_firmware_family2() + - crypto: nitrox - fix unchecked variable in nitrox_register_interrupts + - crypto: omap-sham - Fix PM reference leak in omap sham ops + - mmc: usdhi6rol0: fix error return code in usdhi6_probe() + - arm64: consistently use reserved_pg_dir + - arm64/mm: Fix ttbr0 values stored in struct thread_info for software-pan + - media: s5p-g2d: Fix a memory leak on ctx->fh.m2m_ctx + - hwmon: (max31722) Remove non-standard ACPI device IDs + - hwmon: (max31790) Fix fan speed reporting for fan7..12 + - KVM: nVMX: Ensure 64-bit shift when checking VMFUNC bitmap + - regulator: hi655x: Fix pass wrong pointer to config.driver_data + - btrfs: clear log tree recovering status if starting transaction fails + - sched/rt: Fix RT utilization tracking during policy change + - sched/rt: Fix Deadline utilization tracking during policy change + - sched/uclamp: Fix uclamp_tg_restrict() + - spi: spi-sun6i: Fix chipselect/clock bug + - crypto: nx - Fix RCU warning in nx842_OF_upd_status + - ACPI: sysfs: Fix a buffer overrun problem with description_show() + - extcon: extcon-max8997: Fix IRQ freeing at error path + - blk-wbt: introduce a new disable state to prevent false positive by + rwb_enabled() + - blk-wbt: make sure throttle is enabled properly + - ACPI: Use DEVICE_ATTR_ macros + - ACPI: bgrt: Fix CFI violation + - cpufreq: Make cpufreq_online() call driver->offline() on errors + - ocfs2: fix snprintf() checking + - dax: fix ENOMEM handling in grab_mapping_entry() + - xfrm: xfrm_state_mtu should return at least 1280 for ipv6 + - video: fbdev: imxfb: Fix an error message + - net: mvpp2: Put fwnode in error case during ->probe() + - net: pch_gbe: Propagate error from devm_gpio_request_one() + - pinctrl: renesas: r8a7796: Add missing bias for PRESET# pin + - pinctrl: renesas: r8a77990: JTAG pins do not have pull-down capabilities + - clk: meson: g12a: fix gp0 and hifi ranges + - net: ftgmac100: add missing error return code in ftgmac100_probe() + - drm/rockchip: cdn-dp-core: add missing clk_disable_unprepare() on error in + cdn_dp_grf_write() + - drm/rockchip: dsi: move all lane config except LCDC mux to bind() + - ehea: fix error return code in ehea_restart_qps() + - net/sched: act_vlan: Fix modify to allow 0 + - RDMA/core: Sanitize WQ state received from the userspace + - RDMA/rxe: Fix failure during driver load + - drm: qxl: ensure surf.data is ininitialized + - tools/bpftool: Fix error return code in do_batch() + - ath10k: go to path err_unsupported when chip id is not supported + - ath10k: add missing error return code in ath10k_pci_probe() + - wireless: carl9170: fix LEDS build errors & warnings + - ieee802154: hwsim: Fix possible memory leak in hwsim_subscribe_all_others + - wcn36xx: Move hal_buf allocation to devm_kmalloc in probe + - ssb: Fix error return code in ssb_bus_scan() + - brcmfmac: fix setting of station info chains bitmask + - brcmfmac: correctly report average RSSI in station info + - brcmsmac: mac80211_if: Fix a resource leak in an error handling path + - ath10k: Fix an error code in ath10k_add_interface() + - netlabel: Fix memory leak in netlbl_mgmt_add_common + - RDMA/mlx5: Don't add slave port to unaffiliated list + - netfilter: nft_exthdr: check for IPv6 packet before further processing + - netfilter: nft_osf: check for TCP packet before further processing + - netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols + - RDMA/rxe: Fix qp reference counting for atomic ops + - samples/bpf: Fix the error return code of xdp_redirect's main() + - net: ethernet: aeroflex: fix UAF in greth_of_remove + - net: ethernet: ezchip: fix UAF in nps_enet_remove + - net: ethernet: ezchip: fix error handling + - vrf: do not push non-ND strict packets with a source LLA through packet taps + again + - net: sched: add barrier to ensure correct ordering for lockless qdisc + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + - pkt_sched: sch_qfq: fix qfq_change_class() error path + - vxlan: add missing rcu_read_lock() in neigh_reduce() + - net/ipv4: swap flow ports when validating source + - tc-testing: fix list handling + - ieee802154: hwsim: Fix memory leak in hwsim_add_one + - ieee802154: hwsim: avoid possible crash in hwsim_del_edge_nl() + - mac80211: remove iwlwifi specific workaround NDPs of null_response + - net: bcmgenet: Fix attaching to PYH failed on RPi 4B + - ipv6: exthdrs: do not blindly use init_net + - bpf: Do not change gso_size during bpf_skb_change_proto() + - i40e: Fix error handling in i40e_vsi_open + - i40e: Fix autoneg disabling for non-10GBaseT links + - Revert "ibmvnic: remove duplicate napi_schedule call in open function" + - ibmvnic: free tx_pool if tso_pool alloc fails + - ipv6: fix out-of-bound access in ip6_parse_tlv() + - e1000e: Check the PCIm state + - bpfilter: Specify the log level for the kmsg message + - gve: Fix swapped vars when fetching max queues + - Revert "be2net: disable bh with spin_lock in be_process_mcc" + - Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid + - Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event + - clk: actions: Fix UART clock dividers on Owl S500 SoC + - clk: actions: Fix SD clocks factor table on Owl S500 SoC + - clk: actions: Fix bisp_factor_table based clocks on Owl S500 SoC + - clk: si5341: Avoid divide errors due to bogus register contents + - clk: si5341: Update initialization magic + - writeback: fix obtain a reference to a freeing memcg css + - net: lwtunnel: handle MTU calculation in forwading + - net: sched: fix warning in tcindex_alloc_perfect_hash + - RDMA/mlx5: Don't access NULL-cleared mpi pointer + - MIPS: Fix PKMAP with 32-bit MIPS huge page support + - staging: fbtft: Rectify GPIO handling + - rcu: Invoke rcu_spawn_core_kthreads() from rcu_spawn_gp_kthread() + - tty: nozomi: Fix a resource leak in an error handling function + - mwifiex: re-fix for unaligned accesses + - iio: adis_buffer: do not return ints in irq handlers + - iio: adis16400: do not return ints in irq handlers + - iio: accel: bma180: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: bma220: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: hid: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: kxcjk-1013: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio:accel:mxc4005: Drop unnecessary explicit casts in regmap_bulk_read calls + - iio: accel: mxc4005: Fix overread of data and alignment issue. + - iio: accel: stk8312: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: accel: stk8ba50: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads1015: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: vf610: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: gyro: bmg160: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: humidity: am2315: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: srf08: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: pulsed-light: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: as3935: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: hmc5843: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: magn: bmc150: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: isl29125: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3414: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: light: tcs3472: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: cros_ec_sensors: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: potentiostat: lmp91000: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - ASoC: rk3328: fix missing clk_disable_unprepare() on error in + rk3328_platform_probe() + - ASoC: hisilicon: fix missing clk_disable_unprepare() on error in + hi6210_i2s_startup() + - backlight: lm3630a_bl: Put fwnode in error case during ->probe() + - ASoC: rsnd: tidyup loop on rsnd_adg_clk_query() + - Input: hil_kbd - fix error return code in hil_dev_connect() + - mtd: partitions: redboot: seek fis-index-block in the right node + - char: pcmcia: error out if 'num_bytes_read' is greater than 4 in + set_protocol() + - firmware: stratix10-svc: Fix a resource leak in an error handling path + - tty: nozomi: Fix the error handling path of 'nozomi_card_init()' + - leds: lm3532: select regmap I2C API + - leds: lm36274: cosmetic: rename lm36274_data to chip + - leds: lm3692x: Put fwnode in any case during ->probe() + - scsi: FlashPoint: Rename si_flags field + - fsi: core: Fix return of error values on failures + - fsi: scom: Reset the FSI2PIB engine for any error + - fsi: occ: Don't accept response from un-initialized OCC + - fsi/sbefifo: Clean up correct FIFO when receiving reset request from SBE + - fsi/sbefifo: Fix reset timeout + - visorbus: fix error return code in visorchipset_init() + - s390: appldata depends on PROC_SYSCTL + - iommu/dma: Fix IOVA reserve dma ranges + - ASoC: mediatek: mtk-btcvsd: Fix an error handling path in + 'mtk_btcvsd_snd_probe()' + - usb: gadget: f_fs: Fix setting of device and driver data cross-references + - usb: dwc2: Don't reset the core after setting turnaround time + - eeprom: idt_89hpesx: Put fwnode in matching case during ->probe() + - eeprom: idt_89hpesx: Restore printing the unsupported fwnode name + - iio: at91-sama5d2_adc: remove usage of iio_priv_to_dev() helper + - iio: adc: at91-sama5d2: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: hx711: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: mxs-lradc: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: adc: ti-ads8688: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - iio: magn: rm3100: Fix alignment of buffer in + iio_push_to_buffers_with_timestamp() + - staging: gdm724x: check for buffer overflow in gdm_lte_multi_sdu_pkt() + - staging: gdm724x: check for overflow in gdm_lte_netif_rx() + - staging: rtl8712: remove redundant check in r871xu_drv_init + - staging: rtl8712: fix memory leak in rtl871x_load_fw_cb + - staging: mt7621-dts: fix pci address for PCI memory range + - serial: 8250: Actually allow UPF_MAGIC_MULTIPLIER baud rates + - iio: light: vcnl4035: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - iio: prox: isl29501: Fix buffer alignment in + iio_push_to_buffers_with_timestamp() + - ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK + - of: Fix truncation of memory sizes on 32-bit platforms + - mtd: rawnand: marvell: add missing clk_disable_unprepare() on error in + marvell_nfc_resume() + - scsi: mpt3sas: Fix error return value in _scsih_expander_add() + - soundwire: stream: Fix test for DP prepare complete + - phy: uniphier-pcie: Fix updating phy parameters + - phy: ti: dm816x: Fix the error handling path in 'dm816x_usb_phy_probe() + - extcon: sm5502: Drop invalid register write in sm5502_reg_data + - extcon: max8997: Add missing modalias string + - ASoC: atmel-i2s: Fix usage of capture and playback at the same time + - configfs: fix memleak in configfs_release_bin_file + - leds: as3645a: Fix error return code in as3645a_parse_node() + - leds: ktd2692: Fix an error handling path + - powerpc: Offline CPU in stop_this_cpu() + - serial: mvebu-uart: do not allow changing baudrate when uartclk is not + available + - serial: mvebu-uart: correctly calculate minimal possible baudrate + - arm64: dts: marvell: armada-37xx: Fix reg for standard variant of UART + - vfio/pci: Handle concurrent vma faults + - mm/huge_memory.c: don't discard hugepage if other processes are mapping it + - mm/z3fold: fix potential memory leak in z3fold_destroy_pool() + - selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random + - perf llvm: Return -ENOMEM when asprintf() fails + - scsi: target: cxgbit: Unmap DMA buffer before calling target_execute_cmd() + - mmc: block: Disable CMDQ on the ioctl path + - mmc: vub3000: fix control-request direction + - scsi: core: Retry I/O for Notify (Enable Spinup) Required error + - iommu/dma: Fix compile warning in 32-bit builds + - Linux 5.4.132 + * Keyboard not working (LP: #1909814) // Focal update: v5.4.132 upstream + stable release (LP: #1938199) + - ACPI: resources: Add checks for ACPI IRQ override + * Focal update: v5.4.131 upstream stable release (LP: #1936245) + - KVM: SVM: Periodically schedule when unregistering regions on destroy + - s390/stack: fix possible register corruption with stack switch helper + - KVM: SVM: Call SEV Guest Decommission if ASID binding fails + - xen/events: reset active flag for lateeoi events later + - Linux 5.4.131 + * Focal update: v5.4.130 upstream stable release (LP: #1936244) + - scsi: sr: Return appropriate error code when disk is ejected + - drm/nouveau: fix dma_address check for CPU/GPU sync + - gpio: AMD8111 and TQMX86 require HAS_IOPORT_MAP + - RDMA/mlx5: Block FDB rules when not in switchdev mode + - Linux 5.4.130 + * Focal update: v5.4.129 upstream stable release (LP: #1936242) + - module: limit enabling module.sig_enforce + - drm/nouveau: wait for moving fence after pinning v2 + - drm/radeon: wait for moving fence after pinning + - ARM: 9081/1: fix gcc-10 thumb2-kernel regression + - mmc: meson-gx: use memcpy_to/fromio for dram-access-quirk + - kbuild: add CONFIG_LD_IS_LLD + - arm64: link with -z norelro for LLD or aarch64-elf + - MIPS: generic: Update node names to avoid unit addresses + - spi: spi-nxp-fspi: move the register operation after the clock enable + - Revert "PCI: PM: Do not read power state in pci_enable_device_flags()" + - dmaengine: zynqmp_dma: Fix PM reference leak in + zynqmp_dma_alloc_chan_resourc() + - mac80211: remove warning in ieee80211_get_sband() + - mac80211_hwsim: drop pending frames on stop + - cfg80211: call cfg80211_leave_ocb when switching away from OCB + - dmaengine: rcar-dmac: Fix PM reference leak in rcar_dmac_probe() + - dmaengine: mediatek: free the proper desc in desc_free handler + - dmaengine: mediatek: do not issue a new desc if one is still current + - dmaengine: mediatek: use GFP_NOWAIT instead of GFP_ATOMIC in prep_dma + - net: ipv4: Remove unneed BUG() function + - mac80211: drop multicast fragments + - net: ethtool: clear heap allocations for ethtool function + - ping: Check return value of function 'ping_queue_rcv_skb' + - inet: annotate date races around sk->sk_txhash + - net: phy: dp83867: perform soft reset and retain established link + - net: caif: fix memory leak in ldisc_open + - net/packet: annotate accesses to po->bind + - net/packet: annotate accesses to po->ifindex + - r8152: Avoid memcpy() over-reading of ETH_SS_STATS + - sh_eth: Avoid memcpy() over-reading of ETH_SS_STATS + - r8169: Avoid memcpy() over-reading of ETH_SS_STATS + - KVM: selftests: Fix kvm_check_cap() assertion + - net: qed: Fix memcpy() overflow of qed_dcbx_params() + - recordmcount: Correct st_shndx handling + - PCI: Add AMD RS690 quirk to enable 64-bit DMA + - net: ll_temac: Add memory-barriers for TX BD access + - net: ll_temac: Avoid ndo_start_xmit returning NETDEV_TX_BUSY + - pinctrl: stm32: fix the reported number of GPIO lines per bank + - nilfs2: fix memory leak in nilfs_sysfs_delete_device_group + - KVM: do not allow mapping valid but non-reference-counted pages + - i2c: robotfuzz-osif: fix control-request directions + - kthread_worker: split code for canceling the delayed work timer + - kthread: prevent deadlock when kthread_mod_delayed_work() races with + kthread_cancel_delayed_work_sync() + - mm: add VM_WARN_ON_ONCE_PAGE() macro + - mm/rmap: remove unneeded semicolon in page_not_mapped() + - mm/rmap: use page_not_mapped in try_to_unmap() + - mm, thp: use head page in __migration_entry_wait() + - mm/thp: fix __split_huge_pmd_locked() on shmem migration entry + - mm/thp: make is_huge_zero_pmd() safe and quicker + - mm/thp: try_to_unmap() use TTU_SYNC for safe splitting + - mm/thp: fix vma_address() if virtual address below file offset + - mm/thp: fix page_address_in_vma() on file THP tails + - mm/thp: unmap_mapping_page() to fix THP truncate_cleanup_page() + - mm: thp: replace DEBUG_VM BUG with VM_WARN when unmap fails for split + - mm: page_vma_mapped_walk(): use page for pvmw->page + - mm: page_vma_mapped_walk(): settle PageHuge on entry + - mm: page_vma_mapped_walk(): use pmde for *pvmw->pmd + - mm: page_vma_mapped_walk(): prettify PVMW_MIGRATION block + - mm: page_vma_mapped_walk(): crossing page table boundary + - mm: page_vma_mapped_walk(): add a level of indentation + - mm: page_vma_mapped_walk(): use goto instead of while (1) + - mm: page_vma_mapped_walk(): get vma_address_end() earlier + - mm/thp: fix page_vma_mapped_walk() if THP mapped by ptes + - mm/thp: another PVMW_SYNC fix in page_vma_mapped_walk() + - mm, futex: fix shared futex pgoff on shmem huge page + - [Config] enable CONFIG_SYSTEM_REVOCATION_LIST + - certs: Add EFI_CERT_X509_GUID support for dbx entries + - certs: Move load_system_certificate_list to a common function + - Linux 5.4.129 + * Patch To Fix Bug in the Linux Block Layer Responsible For Merging BIOs + (LP: #1931497) + - block: return the correct bvec when checking for gaps + + -- Marcelo Henrique Cerri Mon, 23 Aug 2021 09:24:15 -0300 + +linux-azure (5.4.0-1056.58) focal; urgency=medium + + * focal/linux-azure: 5.4.0-1056.58 -proposed tracker (LP: #1936515) + + [ Ubuntu: 5.4.0-81.91 ] + + * Packaging resync (LP: #1786013) + - update dkms package versions + * large_dir in ext4 broken (LP: #1933074) + - SAUCE: ext4: fix directory index node split corruption + * Some test in kselftest/net on focal source tree were not tested at all + (LP: #1934282) + - selftests/net: add missing tests to Makefile + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + * icmp_redirect.sh in net from ubuntu_kernel_selftests failed on F-OEM-5.6 / + F-OEM-5.10 / F-OEM-5.13 / F / G / H (LP: #1880645) + - selftests: icmp_redirect: support expected failures + * Focal update: v5.4.128 upstream stable release (LP: #1934179) + - dmaengine: ALTERA_MSGDMA depends on HAS_IOMEM + - dmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEM + - dmaengine: stedma40: add missing iounmap() on error in d40_probe() + - afs: Fix an IS_ERR() vs NULL check + - mm/memory-failure: make sure wait for page writeback in memory_failure + - kvm: LAPIC: Restore guard to prevent illegal APIC register access + - batman-adv: Avoid WARN_ON timing related checks + - net: ipv4: fix memory leak in netlbl_cipsov4_add_std + - vrf: fix maximum MTU + - net: rds: fix memory leak in rds_recvmsg + - net: lantiq: disable interrupt before sheduling NAPI + - udp: fix race between close() and udp_abort() + - rtnetlink: Fix regression in bridge VLAN configuration + - net/sched: act_ct: handle DNAT tuple collision + - net/mlx5e: Remove dependency in IPsec initialization flows + - net/mlx5e: Fix page reclaim for dead peer hairpin + - net/mlx5: Consider RoCE cap before init RDMA resources + - net/mlx5e: allow TSO on VXLAN over VLAN topologies + - net/mlx5e: Block offload of outer header csum for UDP tunnels + - netfilter: synproxy: Fix out of bounds when parsing TCP options + - sch_cake: Fix out of bounds when parsing TCP options and header + - alx: Fix an error handling path in 'alx_probe()' + - net: stmmac: dwmac1000: Fix extended MAC address registers definition + - net: make get_net_ns return error if NET_NS is disabled + - qlcnic: Fix an error handling path in 'qlcnic_probe()' + - netxen_nic: Fix an error handling path in 'netxen_nic_probe()' + - net: qrtr: fix OOB Read in qrtr_endpoint_post + - ptp: improve max_adj check against unreasonable values + - net: cdc_ncm: switch to eth%d interface naming + - lantiq: net: fix duplicated skb in rx descriptor ring + - net: usb: fix possible use-after-free in smsc75xx_bind + - net: fec_ptp: fix issue caused by refactor the fec_devtype + - net: ipv4: fix memory leak in ip_mc_add1_src + - net/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sock + - be2net: Fix an error handling path in 'be_probe()' + - net: hamradio: fix memory leak in mkiss_close + - net: cdc_eem: fix tx fixup skb leak + - cxgb4: fix wrong shift. + - bnxt_en: Rediscover PHY capabilities after firmware reset + - bnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error path + - icmp: don't send out ICMP messages with a source address of 0.0.0.0 + - net: ethernet: fix potential use-after-free in ec_bhf_remove + - regulator: bd70528: Fix off-by-one for buck123 .n_voltages setting + - ASoC: rt5659: Fix the lost powers for the HDA header + - spi: stm32-qspi: Always wait BUSY bit to be cleared in stm32_qspi_wait_cmd() + - pinctrl: ralink: rt2880: avoid to error in calls is pin is already enabled + - radeon: use memcpy_to/fromio for UVD fw upload + - hwmon: (scpi-hwmon) shows the negative temperature properly + - can: bcm: fix infoleak in struct bcm_msg_head + - can: bcm/raw/isotp: use per module netdevice notifier + - can: j1939: fix Use-after-Free, hold skb ref while in use + - can: mcba_usb: fix memory leak in mcba_usb + - usb: core: hub: Disable autosuspend for Cypress CY7C65632 + - tracing: Do not stop recording cmdlines when tracing is off + - tracing: Do not stop recording comms if the trace file is being read + - tracing: Do no increment trace_clock_global() by one + - PCI: Mark TI C667X to avoid bus reset + - PCI: Mark some NVIDIA GPUs to avoid bus reset + - PCI: aardvark: Don't rely on jiffies while holding spinlock + - PCI: aardvark: Fix kernel panic during PIO transfer + - PCI: Add ACS quirk for Broadcom BCM57414 NIC + - PCI: Work around Huawei Intelligent NIC VF FLR erratum + - KVM: x86: Immediately reset the MMU context when the SMM flag is cleared + - ARCv2: save ABI registers across signal handling + - x86/process: Check PF_KTHREAD and not current->mm for kernel threads + - x86/pkru: Write hardware init value to PKRU when xstate is init + - x86/fpu: Reset state for all signal restore failures + - dmaengine: pl330: fix wrong usage of spinlock flags in dma_cyclc + - cfg80211: make certificate generation more robust + - cfg80211: avoid double free of PMSR request + - net: ll_temac: Make sure to free skb when it is completely used + - net: ll_temac: Fix TX BD buffer overwrite + - net: bridge: fix vlan tunnel dst null pointer dereference + - net: bridge: fix vlan tunnel dst refcnt when egressing + - mm/slub: clarify verification reporting + - mm/slub: fix redzoning for small allocations + - mm/slub.c: include swab.h + - net: stmmac: disable clocks in stmmac_remove_config_dt() + - net: fec_ptp: add clock rate zero check + - tools headers UAPI: Sync linux/in.h copy with the kernel sources + - KVM: arm/arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST read + - ARM: OMAP: replace setup_irq() by request_irq() + - clocksource/drivers/timer-ti-dm: Add clockevent and clocksource support + - clocksource/drivers/timer-ti-dm: Prepare to handle dra7 timer wrap issue + - clocksource/drivers/timer-ti-dm: Handle dra7 timer wrap errata i940 + - usb: dwc3: debugfs: Add and remove endpoint dirs dynamically + - usb: dwc3: core: fix kernel panic when do reboot + - Linux 5.4.128 + * linux-azure CIFS DFS oops (LP: #1935833) + - cifs: get rid of unused parameter in reconn_setup_dfs_targets() + - cifs: handle empty list of targets in cifs_reconnect() + * pmtu.sh from net in ubuntu_kernel_selftests failed with no error message + (LP: #1887661) + - selftests: pmtu.sh: improve the test result processing + * cifs: On cifs_reconnect, resolve the hostname again (LP: #1929831) + - cifs: rename reconn_inval_dfs_target() + - cifs: Simplify reconnect code when dfs upcall is enabled + - cifs: Avoid error pointer dereference + - cifs: On cifs_reconnect, resolve the hostname again. + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - (upstream) media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + * Focal update: v5.4.127 upstream stable release (LP: #1933851) + - net: ieee802154: fix null deref in parse dev addr + - HID: quirks: Set INCREMENT_USAGE_ON_DUPLICATE for Saitek X65 + - HID: hid-input: add mapping for emoji picker key + - HID: hid-sensor-hub: Return error for hid_set_field() failure + - HID: quirks: Add quirk for Lenovo optical mouse + - HID: multitouch: set Stylus suffix for Stylus-application devices, too + - HID: Add BUS_VIRTUAL to hid_connect logging + - HID: usbhid: fix info leak in hid_submit_ctrl + - drm/tegra: sor: Do not leak runtime PM reference + - ARM: OMAP2+: Fix build warning when mmc_omap is not built + - gfs2: Prevent direct-I/O write fallback errors from getting lost + - HID: gt683r: add missing MODULE_DEVICE_TABLE + - riscv: Use -mno-relax when using lld linker + - gfs2: Fix use-after-free in gfs2_glock_shrink_scan + - scsi: target: core: Fix warning on realtime kernels + - ethernet: myri10ge: Fix missing error code in myri10ge_probe() + - scsi: qedf: Do not put host in qedf_vport_create() unconditionally + - scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-V + - nvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues() + - nvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() + fails + - nvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue() + - net: ipconfig: Don't override command-line hostnames or domains + - drm/amd/display: Allow bandwidth validation for 0 streams. + - rtnetlink: Fix missing error code in rtnl_bridge_notify() + - net/x25: Return the correct errno code + - net: Return the correct errno code + - fib: Return the correct errno code + - Linux 5.4.127 + * Focal update: v5.4.126 upstream stable release (LP: #1933369) + - proc: Check /proc/$pid/attr/ writes against file opener + - proc: Track /proc/$pid/attr/ opener mm_struct + - ASoC: max98088: fix ni clock divider calculation + - spi: Fix spi device unregister flow + - net/nfc/rawsock.c: fix a permission check bug + - usb: cdns3: Fix runtime PM imbalance on error + - ASoC: Intel: bytcr_rt5640: Add quirk for the Glavey TM800A550L tablet + - ASoC: Intel: bytcr_rt5640: Add quirk for the Lenovo Miix 3-830 tablet + - vfio-ccw: Serialize FSM IDLE state with I/O completion + - ASoC: sti-sas: add missing MODULE_DEVICE_TABLE + - spi: sprd: Add missing MODULE_DEVICE_TABLE + - isdn: mISDN: netjet: Fix crash in nj_probe: + - bonding: init notify_work earlier to avoid uninitialized use + - netlink: disable IRQs for netlink_lock_table() + - net: mdiobus: get rid of a BUG_ON() + - cgroup: disable controllers at parse time + - wq: handle VM suspension in stall detection + - net/qla3xxx: fix schedule while atomic in ql_sem_spinlock + - RDS tcp loopback connection can hang + - scsi: bnx2fc: Return failure if io_req is already in ABTS processing + - scsi: vmw_pvscsi: Set correct residual data length + - scsi: hisi_sas: Drop free_irq() of devm_request_irq() allocated irq + - scsi: target: qla2xxx: Wait for stop_phase1 at WWN removal + - net: macb: ensure the device is available before accessing GEMGXL control + registers + - net: appletalk: cops: Fix data race in cops_probe1 + - net: dsa: microchip: enable phy errata workaround on 9567 + - nvme-fabrics: decode host pathing error for connect + - MIPS: Fix kernel hang under FUNCTION_GRAPH_TRACER and PREEMPT_TRACER + - dm verity: fix require_signatures module_param permissions + - bnx2x: Fix missing error code in bnx2x_iov_init_one() + - nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P2041 i2c controllers + - powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P1010 i2c controllers + - spi: Don't have controller clean up spi device before driver unbind + - spi: Cleanup on failure of initial setup + - i2c: mpc: Make use of i2c_recover_bus() + - i2c: mpc: implement erratum A-004447 workaround + - x86/boot: Add .text.* to setup.ld + - spi: bcm2835: Fix out-of-bounds access with more than 4 slaves + - drm: Fix use-after-free read in drm_getunique() + - drm: Lock pointer access in drm_master_release() + - kvm: avoid speculation-based attacks from out-of-range memslot accesses + - staging: rtl8723bs: Fix uninitialized variables + - btrfs: return value from btrfs_mark_extent_written() in case of error + - btrfs: promote debugging asserts to full-fledged checks in validate_super + - cgroup1: don't allow '\n' in renaming + - USB: f_ncm: ncm_bitrate (speed) is unsigned + - usb: f_ncm: only first packet of aggregate needs to start timer + - usb: pd: Set PD_T_SINK_WAIT_CAP to 310ms + - usb: dwc3: ep0: fix NULL pointer exception + - usb: musb: fix MUSB_QUIRK_B_DISCONNECT_99 handling + - usb: typec: wcove: Use LE to CPU conversion when accessing msg->header + - usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path + - usb: gadget: f_fs: Ensure io_completion_wq is idle during unbind + - USB: serial: ftdi_sio: add NovaTech OrionMX product ID + - USB: serial: omninet: add device id for Zyxel Omni 56K Plus + - USB: serial: quatech2: fix control-request directions + - USB: serial: cp210x: fix alternate function for CP2102N QFN20 + - usb: gadget: eem: fix wrong eem header operation + - usb: fix various gadgets null ptr deref on 10gbps cabling. + - usb: fix various gadget panics on 10gbps cabling + - regulator: core: resolve supply for boot-on/always-on regulators + - regulator: max77620: Use device_set_of_node_from_dev() + - usb: typec: mux: Fix copy-paste mistake in typec_mux_match + - RDMA/ipoib: Fix warning caused by destroying non-initial netns + - RDMA/mlx4: Do not map the core_clock page to user space unless enabled + - vmlinux.lds.h: Avoid orphan section with !SMP + - perf: Fix data race between pin_count increment/decrement + - sched/fair: Make sure to update tg contrib for blocked load + - KVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint message + - IB/mlx5: Fix initializing CQ fragments buffer + - NFS: Fix a potential NULL dereference in nfs_get_client() + - NFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode() + - perf session: Correct buffer copying when peeking events + - kvm: fix previous commit for 32-bit builds + - NFS: Fix use-after-free in nfs4_init_client() + - NFSv4: Fix second deadlock in nfs4_evict_inode() + - NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error. + - scsi: core: Fix error handling of scsi_host_alloc() + - scsi: core: Fix failure handling of scsi_add_host_with_dma() + - scsi: core: Put .shost_dev in failure path if host state changes to RUNNING + - scsi: core: Only put parent device if host state differs from SHOST_CREATED + - ftrace: Do not blindly read the ip address in ftrace_bug() + - tracing: Correct the length check which causes memory corruption + - proc: only require mm_struct for writing + - Linux 5.4.126 + * Focal update: v5.4.125 upstream stable release (LP: #1932957) + - btrfs: tree-checker: do not error out if extent ref hash doesn't match + - net: usb: cdc_ncm: don't spew notifications + - ALSA: usb: update old-style static const declaration + - nl80211: validate key indexes for cfg80211_registered_device + - hwmon: (dell-smm-hwmon) Fix index values + - netfilter: conntrack: unregister ipv4 sockopts on error unwind + - efi: Allow EFI_MEMORY_XP and EFI_MEMORY_RO both to be cleared + - efi: cper: fix snprintf() use in cper_dimm_err_location() + - vfio/pci: Fix error return code in vfio_ecap_init() + - vfio/pci: zap_vma_ptes() needs MMU + - samples: vfio-mdev: fix error handing in mdpy_fb_probe() + - vfio/platform: fix module_put call in error flow + - ipvs: ignore IP_VS_SVC_F_HASHED flag when adding service + - HID: pidff: fix error return code in hid_pidff_init() + - HID: i2c-hid: fix format string mismatch + - net/sched: act_ct: Fix ct template allocation for zone 0 + - ACPICA: Clean up context mutex during object deletion + - netfilter: nft_ct: skip expectations for confirmed conntrack + - netfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatches + - ieee802154: fix error return code in ieee802154_add_iface() + - ieee802154: fix error return code in ieee802154_llsec_getparams() + - ixgbevf: add correct exception tracing for XDP + - ipv6: Fix KASAN: slab-out-of-bounds Read in fib6_nh_flush_exceptions + - ice: write register with correct offset + - ice: Fix VFR issues for AVF drivers that expect ATQLEN cleared + - ice: Allow all LLDP packets from PF to Tx + - i2c: qcom-geni: Add shutdown callback for i2c + - i40e: optimize for XDP_REDIRECT in xsk path + - i40e: add correct exception tracing for XDP + - arm64: dts: ls1028a: fix memory node + - arm64: dts: zii-ultra: fix 12V_MAIN voltage + - ARM: dts: imx7d-meerkat96: Fix the 'tuning-step' property + - ARM: dts: imx7d-pico: Fix the 'tuning-step' property + - ARM: dts: imx: emcon-avari: Fix nxp,pca8574 #gpio-cells + - bus: ti-sysc: Fix flakey idling of uarts and stop using swsup_sidle_act + - tipc: add extack messages for bearer/media failure + - tipc: fix unique bearer names sanity check + - Bluetooth: fix the erroneous flush_work() order + - Bluetooth: use correct lock to prevent UAF of hdev object + - net: caif: added cfserl_release function + - net: caif: add proper error handling + - net: caif: fix memory leak in caif_device_notify + - net: caif: fix memory leak in cfusbl_device_notify + - HID: i2c-hid: Skip ELAN power-on command after reset + - HID: magicmouse: fix NULL-deref on disconnect + - HID: multitouch: require Finger field to mark Win8 reports as MT + - ALSA: timer: Fix master timer notification + - ALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xx + - ARM: dts: imx6dl-yapp4: Fix RGMII connection to QCA8334 switch + - ARM: dts: imx6q-dhcom: Add PU,VDD1P1,VDD2P5 regulators + - ext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failed + - usb: dwc2: Fix build in periphal-only mode + - pid: take a reference when initializing `cad_pid` + - ocfs2: fix data corruption by fallocate + - nfc: fix NULL ptr dereference in llcp_sock_getname() after failed connect + - drm/amdgpu: Don't query CE and UE errors + - drm/amdgpu: make sure we unpin the UVD BO + - x86/apic: Mark _all_ legacy interrupts when IO/APIC is missing + - btrfs: mark ordered extent and inode with error if we fail to finish + - btrfs: fix error handling in btrfs_del_csums + - btrfs: return errors from btrfs_del_csums in cleanup_ref_head + - btrfs: fixup error handling in fixup_inode_link_counts + - mm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPY + - bnxt_en: Remove the setting of dev_port. + - mm: add thp_order + - XArray: add xa_get_order + - XArray: add xas_split + - mm/filemap: fix storing to a THP shadow entry + - btrfs: fix unmountable seed device after fstrim + - KVM: SVM: Truncate GPR value for DR and CR accesses in !64-bit mode + - KVM: arm64: Fix debug register indexing + - lib/lz4: explicitly support in-place decompression + - xen-pciback: redo VF placement in the virtual topology + - i2c: qcom-geni: Suspend and resume the bus during SYSTEM_SLEEP_PM ops + - neighbour: allow NUD_NOARP entries to be forced GCed + - Linux 5.4.125 + + -- Tim Gardner Mon, 26 Jul 2021 06:57:12 -0600 + linux-azure (5.4.0-1055.57) focal; urgency=medium [ Ubuntu: 5.4.0-80.90 ] diff -u linux-azure-5.4.0/debian/control linux-azure-5.4.0/debian/control --- linux-azure-5.4.0/debian/control +++ linux-azure-5.4.0/debian/control @@ -2,6 +2,7 @@ Section: devel Priority: optional Maintainer: Ubuntu Kernel Team +XSC-Ubuntu-Compatible-Signing: ubuntu/4 pro/3 Standards-Version: 3.9.4.0 Build-Depends: debhelper (>= 9), @@ -35,6 +36,7 @@ libnuma-dev [amd64 arm64 ppc64el s390x] , dkms , curl , + dwarves [amd64 arm64 armhf ppc64el s390x] , Build-Depends-Indep: xmlto , docbook-utils , @@ -50,7 +52,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-azure-headers-5.4.0-1055 +Package: linux-azure-headers-5.4.0-1103 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -60,46 +62,46 @@ Description: Header files related to Linux kernel version 5.4.0 This package provides kernel header files for version 5.4.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-azure-headers-5.4.0-1055/debian.README.gz for details + /usr/share/doc/linux-azure-headers-5.4.0-1103/debian.README.gz for details -Package: linux-azure-tools-5.4.0-1055 +Package: linux-azure-tools-5.4.0-1103 Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 5.4.0-1055 +Description: Linux kernel version specific tools for version 5.4.0-1103 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.4.0-1055 on + version 5.4.0-1103 on 64 bit x86. - You probably want to install linux-tools-5.4.0-1055-. + You probably want to install linux-tools-5.4.0-1103-. -Package: linux-azure-cloud-tools-5.4.0-1055 +Package: linux-azure-cloud-tools-5.4.0-1103 Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 5.4.0-1055 +Description: Linux kernel version specific cloud tools for version 5.4.0-1103 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 5.4.0-1055 on + version locked tools for cloud tools for version 5.4.0-1103 on 64 bit x86. - You probably want to install linux-cloud-tools-5.4.0-1055-. + You probably want to install linux-cloud-tools-5.4.0-1103-. -Package: linux-image-unsigned-5.4.0-1055-azure +Package: linux-image-unsigned-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, aufs-dkms, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.4.0-1055-azure -Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.4.0-1103-azure +Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64] Breaks: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] -Conflicts: linux-image-5.4.0-1055-azure -Suggests: fdutils, linux-azure-doc-5.4.0 | linux-azure-source-5.4.0, linux-azure-tools, linux-headers-5.4.0-1055-azure, initramfs-tools | linux-initramfs-tool +Conflicts: linux-image-5.4.0-1103-azure +Suggests: fdutils, linux-azure-doc-5.4.0 | linux-azure-source-5.4.0, linux-azure-tools, linux-headers-5.4.0-1103-azure, initramfs-tools | linux-initramfs-tool Description: Linux kernel image for version 5.4.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 5.4.0 on 64 bit x86 SMP. @@ -112,9 +114,9 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-5.4.0-1055-azure +Package: linux-modules-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-base-sgx @@ -132,12 +134,12 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-5.4.0-1055-azure +Package: linux-modules-extra-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.4.0-1055-azure | linux-image-unsigned-5.4.0-1055-azure, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.4.0-1103-azure | linux-image-unsigned-5.4.0-1103-azure, crda | wireless-crda Description: Linux kernel extra modules for version 5.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 5.4.0 on 64 bit x86 SMP. @@ -154,23 +156,23 @@ the linux-azure meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-5.4.0-1055-azure +Package: linux-headers-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-headers-5.4.0-1055, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-azure-headers-5.4.0-1103, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 5.4.0 on 64 bit x86 SMP This package provides kernel header files for version 5.4.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-5.4.0-1055/debian.README.gz for details. + /usr/share/doc/linux-headers-5.4.0-1103/debian.README.gz for details. -Package: linux-image-unsigned-5.4.0-1055-azure-dbgsym +Package: linux-image-unsigned-5.4.0-1103-azure-dbgsym Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends} @@ -185,43 +187,43 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-5.4.0-1055-azure +Package: linux-tools-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-tools-5.4.0-1055 -Description: Linux kernel version specific tools for version 5.4.0-1055 +Depends: ${misc:Depends}, linux-azure-tools-5.4.0-1103 +Description: Linux kernel version specific tools for version 5.4.0-1103 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.4.0-1055 on + version 5.4.0-1103 on 64 bit x86. -Package: linux-cloud-tools-5.4.0-1055-azure +Package: linux-cloud-tools-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-azure-cloud-tools-5.4.0-1055 -Description: Linux kernel version specific cloud tools for version 5.4.0-1055 +Depends: ${misc:Depends}, linux-azure-cloud-tools-5.4.0-1103 +Description: Linux kernel version specific cloud tools for version 5.4.0-1103 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 5.4.0-1055 on + version locked tools for cloud for version 5.4.0-1103 on 64 bit x86. Package: linux-udebs-azure Build-Profiles: XC-Package-Type: udeb Section: debian-installer -Architecture: amd64 +Architecture: amd64 arm64 Depends: ${udeb:Depends} Description: Metapackage depending on kernel udebs This package depends on the all udebs that the kernel build generated, for easier version and migration tracking. -Package: linux-buildinfo-5.4.0-1055-azure +Package: linux-buildinfo-5.4.0-1103-azure Build-Profiles: -Architecture: amd64 +Architecture: amd64 arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends} diff -u linux-azure-5.4.0/debian/dkms-versions linux-azure-5.4.0/debian/dkms-versions --- linux-azure-5.4.0/debian/dkms-versions +++ linux-azure-5.4.0/debian/dkms-versions @@ -1,9 +1,3 @@ -zfs-linux 0.8.3-1ubuntu12.10 -nvidia-graphics-drivers-390 390.143-0ubuntu0.20.04.2 -nvidia-graphics-drivers-460 460.84-0ubuntu0.20.04.1 transition=nvidia-graphics-drivers-455 transition=nvidia-graphics-drivers-435 transition=nvidia-graphics-drivers-440 transition=nvidia-graphics-drivers-450 -nvidia-graphics-drivers-465 465.31-0ubuntu0.20.04.1 -nvidia-graphics-drivers-418-server 418.197.02-0ubuntu0.20.04.2 -nvidia-graphics-drivers-450-server 450.119.04-0ubuntu0.20.04.3 transition=nvidia-graphics-drivers-440-server -nvidia-graphics-drivers-460-server 460.73.01-0ubuntu0.20.04.2 -virtualbox 6.1.16-dfsg-6~ubuntu1.20.04.2 +zfs-linux 0.8.3-1ubuntu12.14 +virtualbox 6.1.38-dfsg-3~ubuntu1.20.04.1 wireguard-linux-compat 1.0.20201112-1~20.04.1 diff -u linux-azure-5.4.0/debian/rules linux-azure-5.4.0/debian/rules --- linux-azure-5.4.0/debian/rules +++ linux-azure-5.4.0/debian/rules @@ -137,7 +137,7 @@ build: build-arch build-indep -clean: debian/control debian/canonical-certs.pem +clean: debian/control debian/canonical-certs.pem debian/canonical-revoked-certs.pem dh_testdir dh_testroot dh_clean @@ -199,11 +199,15 @@ endif endif +# Calculate Ubuntu Compatible Signing levels +UBUNTU_COMPATIBLE_SIGNING=$(shell grep -qx ' *Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v3)' debian/canonical-revoked-certs.pem && echo ubuntu/4 pro/3) + # Misc stuff .PHONY: $(DEBIAN)/control.stub $(DEBIAN)/control.stub: \ $(DROOT)/scripts/control-create \ $(control_files) \ + debian/canonical-revoked-certs.pem \ $(DEBIAN)/changelog \ $(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars) for i in $(control_files); do \ @@ -214,6 +218,7 @@ -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ -e 's/=HUMAN=/$(human_arch)/g' \ -e 's/=SERIES=/$(series)/g' \ + -e 's|\(^Maintainer:.*\)|\1\nXSC-Ubuntu-Compatible-Signing: $(UBUNTU_COMPATIBLE_SIGNING)|g' \ > $(DEBIAN)/control.stub; flavours="$(sort $(wildcard $(DEBIAN)/control.d/vars.* $(DEBIAN)/sub-flavours/*.vars))";\ for i in $$flavours; do \ @@ -248,2 +253,14 @@ done; \ + done >"$@" + +debian/canonical-revoked-certs.pem: $(wildcard $(DROOT)/revoked-certs/*-all.pem) $(wildcard $(DROOT)/revoked-certs/*-$(arch).pem) $(wildcard $(DEBIAN)/revoked-certs/*-all.pem) $(wildcard $(DEBIAN)/revoked-certs/*-$(arch).pem) + for cert in $(sort $(notdir $^)); \ + do \ + for dir in $(DEBIAN) $(DROOT); \ + do \ + if [ -f "$$dir/revoked-certs/$$cert" ]; then \ + cat "$$dir/revoked-certs/$$cert"; \ + break; \ + fi; \ + done; \ done >"$@" diff -u linux-azure-5.4.0/debian/rules.d/0-common-vars.mk linux-azure-5.4.0/debian/rules.d/0-common-vars.mk --- linux-azure-5.4.0/debian/rules.d/0-common-vars.mk +++ linux-azure-5.4.0/debian/rules.d/0-common-vars.mk @@ -219,6 +219,9 @@ # DTBs do_dtbs=false +# FIPS check +do_fips_checks=false + # Support parallel= in DEB_BUILD_OPTIONS (see #209008) # # These 2 environment variables set the -j value of the kernel build. For example, diff -u linux-azure-5.4.0/debian/rules.d/1-maintainer.mk linux-azure-5.4.0/debian/rules.d/1-maintainer.mk --- linux-azure-5.4.0/debian/rules.d/1-maintainer.mk +++ linux-azure-5.4.0/debian/rules.d/1-maintainer.mk @@ -134,6 +134,9 @@ fi finalchecks: debian/control +ifeq ($(do_fips_checks),true) + $(DROOT)/scripts/misc/fips-checks +endif $(DROOT)/scripts/misc/final-checks "$(DEBIAN)" "$(prev_fullver)" diffupstream: diff -u linux-azure-5.4.0/debian/rules.d/2-binary-arch.mk linux-azure-5.4.0/debian/rules.d/2-binary-arch.mk --- linux-azure-5.4.0/debian/rules.d/2-binary-arch.mk +++ linux-azure-5.4.0/debian/rules.d/2-binary-arch.mk @@ -504,6 +504,8 @@ $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/retpoline install -m644 $(abidir)/$*.compiler \ $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/compiler + install -m644 $(DROOT)/canonical-certs.pem $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/canonical-certs.pem + install -m644 $(DROOT)/canonical-revoked-certs.pem $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/canonical-revoked-certs.pem headers_tmp := $(CURDIR)/debian/tmp-headers headers_dir := $(CURDIR)/debian/linux-libc-dev diff -u linux-azure-5.4.0/debian/scripts/dkms-build linux-azure-5.4.0/debian/scripts/dkms-build --- linux-azure-5.4.0/debian/scripts/dkms-build +++ linux-azure-5.4.0/debian/scripts/dkms-build @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e dkms_dir="$1" @@ -116,7 +116,7 @@ continue fi echo "II: dkms-build-configure $(basename "$dkms_config") found, executing" - $SHELL "$dkms_config" \ + "$dkms_config" \ "$srcdir" \ "$dkms_conf" \ "$dkms_dir" \ @@ -158,8 +158,10 @@ # Build the DKMS binaries. echo "II: dkms-build building $package" +fakeroot="" +[ $(id -u) -ne 0 ] && fakeroot="/usr/bin/fakeroot" rc=0 -/usr/sbin/dkms build --no-prepare-kernel --no-clean-kernel \ +$fakeroot /usr/sbin/dkms build --no-prepare-kernel --no-clean-kernel \ -k "$abi_flavour" \ --sourcetree "$dkms_dir/source" \ --dkmstree "$dkms_dir/build" \ @@ -241,7 +243,7 @@ continue fi echo "II: dkms-build override $(basename "$dkms_build") found, executing" - $SHELL "$dkms_build" \ + "$dkms_build" \ "$srcdir" \ "$dkms_dir/build/$dkms_package/$dkms_version/objects" \ "$log" \ diff -u linux-azure-5.4.0/debian/scripts/dkms-build--nvidia-N linux-azure-5.4.0/debian/scripts/dkms-build--nvidia-N --- linux-azure-5.4.0/debian/scripts/dkms-build--nvidia-N +++ linux-azure-5.4.0/debian/scripts/dkms-build--nvidia-N @@ -1,4 +1,5 @@ #!/bin/sh +set -e srcdir="$1" objects="$2" diff -u linux-azure-5.4.0/debian/scripts/helpers/open linux-azure-5.4.0/debian/scripts/helpers/open --- linux-azure-5.4.0/debian/scripts/helpers/open +++ linux-azure-5.4.0/debian/scripts/helpers/open @@ -138,6 +138,7 @@ # Load the info about derivative BACKPORT_SUFFIX= +BACKPORT_NO_SUFFIX= derivative_conf="$DEBIAN/etc/update.conf" if [ -f "$derivative_conf" ]; then # shellcheck disable=SC1090 @@ -145,7 +146,7 @@ fi # Run the update script used for backport kernels -if [ -n "$BACKPORT_SUFFIX" ]; then +if [ -n "$BACKPORT_SUFFIX" ] || [ -n "$BACKPORT_NO_SUFFIX" ]; then update_from_master_script="$DEBIAN/scripts/helpers/copy-files" if [ ! -x "$update_from_master_script" ]; then echo "Backport kernel is missing the"\ diff -u linux-azure-5.4.0/debian/scripts/misc/final-checks linux-azure-5.4.0/debian/scripts/misc/final-checks --- linux-azure-5.4.0/debian/scripts/misc/final-checks +++ linux-azure-5.4.0/debian/scripts/misc/final-checks @@ -45,6 +45,18 @@ fi } +if [ -d debian/certs ]; then + if ! grep -q '^CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem"$' $debian/config/config.common.ubuntu; then + failure "'CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem"' is required" + fi +fi + +if [ -d debian/revoked-certs ]; then + if ! grep -q '^CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem"$' $debian/config/config.common.ubuntu; then + failure "'CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem"' is required" + fi +fi + for arch in $archs do image_pkg=$(awk -F '\\s*=\\s*' '$1 == "do_flavour_image_package" { print $2 }' $debian/rules.d/$arch.mk) diff -u linux-azure-5.4.0/debian/scripts/misc/getabis linux-azure-5.4.0/debian/scripts/misc/getabis --- linux-azure-5.4.0/debian/scripts/misc/getabis +++ linux-azure-5.4.0/debian/scripts/misc/getabis @@ -162,6 +162,9 @@ mv "$base/$comp" "$abidir/$arch/$sub.$comp" done cat "$base/fwinfo" >>"$fwinfo" + if [ -e "${base}"/fwinfo.builtin ] ; then + cat "${base}"/fwinfo.builtin >> "${fwinfo}".builtin + fi fi rm -rf tmp $filenames echo " done" @@ -197,8 +200,13 @@ sort -u $abidir/*/*.compiler | sed 's/^/WARNING: /' 1>&2 fi +# Sort fwinfo files sort < $fwinfo | uniq > fwinfo.tmp mv fwinfo.tmp $fwinfo +if [ -e "${fwinfo}".builtin ] ; then + sort < "${fwinfo}".builtin | uniq > fwinfo.tmp + mv fwinfo.tmp "${fwinfo}".builtin +fi rmdir $tmpdir diff -u linux-azure-5.4.0/debian/tests/ubuntu-regression-suite linux-azure-5.4.0/debian/tests/ubuntu-regression-suite --- linux-azure-5.4.0/debian/tests/ubuntu-regression-suite +++ linux-azure-5.4.0/debian/tests/ubuntu-regression-suite @@ -43,3 +43,3 @@ -git clone git://kernel.ubuntu.com/ubuntu/kernel-testing +git clone --depth=1 git://git.launchpad.net/~canonical-kernel-team/+git/kernel-testing kernel-testing/run-dep8-tests diff -u linux-azure-5.4.0/drivers/Makefile linux-azure-5.4.0/drivers/Makefile --- linux-azure-5.4.0/drivers/Makefile +++ linux-azure-5.4.0/drivers/Makefile @@ -159,7 +159,7 @@ # Virtualization drivers obj-$(CONFIG_VIRT_DRIVERS) += virt/ -obj-$(CONFIG_HYPERV) += hv/ +obj-$(subst m,y,$(CONFIG_HYPERV)) += hv/ obj-$(CONFIG_PM_DEVFREQ) += devfreq/ obj-$(CONFIG_EXTCON) += extcon/ diff -u linux-azure-5.4.0/drivers/acpi/Makefile linux-azure-5.4.0/drivers/acpi/Makefile --- linux-azure-5.4.0/drivers/acpi/Makefile +++ linux-azure-5.4.0/drivers/acpi/Makefile @@ -8,6 +8,11 @@ # # ACPI Boot-Time Table Parsing # +ifeq ($(CONFIG_ACPI_CUSTOM_DSDT),y) +tables.o: $(src)/../../include/$(subst $\",,$(CONFIG_ACPI_CUSTOM_DSDT_FILE)) ; + +endif + obj-$(CONFIG_ACPI) += tables.o obj-$(CONFIG_X86) += blacklist.o diff -u linux-azure-5.4.0/drivers/acpi/acpi_extlog.c linux-azure-5.4.0/drivers/acpi/acpi_extlog.c --- linux-azure-5.4.0/drivers/acpi/acpi_extlog.c +++ linux-azure-5.4.0/drivers/acpi/acpi_extlog.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -140,8 +141,8 @@ int cpu = mce->extcpu; struct acpi_hest_generic_status *estatus, *tmp; struct acpi_hest_generic_data *gdata; - const guid_t *fru_id = &guid_null; - char *fru_text = ""; + const guid_t *fru_id; + char *fru_text; guid_t *sec_type; static u32 err_seq; @@ -162,17 +163,23 @@ /* log event via trace */ err_seq++; - gdata = (struct acpi_hest_generic_data *)(tmp + 1); - if (gdata->validation_bits & CPER_SEC_VALID_FRU_ID) - fru_id = (guid_t *)gdata->fru_id; - if (gdata->validation_bits & CPER_SEC_VALID_FRU_TEXT) - fru_text = gdata->fru_text; - sec_type = (guid_t *)gdata->section_type; - if (guid_equal(sec_type, &CPER_SEC_PLATFORM_MEM)) { - struct cper_sec_mem_err *mem = (void *)(gdata + 1); - if (gdata->error_data_length >= sizeof(*mem)) - trace_extlog_mem_event(mem, err_seq, fru_id, fru_text, - (u8)gdata->error_severity); + apei_estatus_for_each_section(tmp, gdata) { + if (gdata->validation_bits & CPER_SEC_VALID_FRU_ID) + fru_id = (guid_t *)gdata->fru_id; + else + fru_id = &guid_null; + if (gdata->validation_bits & CPER_SEC_VALID_FRU_TEXT) + fru_text = gdata->fru_text; + else + fru_text = ""; + sec_type = (guid_t *)gdata->section_type; + if (guid_equal(sec_type, &CPER_SEC_PLATFORM_MEM)) { + struct cper_sec_mem_err *mem = (void *)(gdata + 1); + + if (gdata->error_data_length >= sizeof(*mem)) + trace_extlog_mem_event(mem, err_seq, fru_id, fru_text, + (u8)gdata->error_severity); + } } out: diff -u linux-azure-5.4.0/drivers/acpi/acpi_lpss.c linux-azure-5.4.0/drivers/acpi/acpi_lpss.c --- linux-azure-5.4.0/drivers/acpi/acpi_lpss.c +++ linux-azure-5.4.0/drivers/acpi/acpi_lpss.c @@ -401,6 +401,9 @@ if (!lpss_clk_dev) lpt_register_clock_device(); + if (IS_ERR(lpss_clk_dev)) + return PTR_ERR(lpss_clk_dev); + clk_data = platform_get_drvdata(lpss_clk_dev); if (!clk_data) return -ENODEV; diff -u linux-azure-5.4.0/drivers/acpi/acpica/utdelete.c linux-azure-5.4.0/drivers/acpi/acpica/utdelete.c --- linux-azure-5.4.0/drivers/acpi/acpica/utdelete.c +++ linux-azure-5.4.0/drivers/acpi/acpica/utdelete.c @@ -285,6 +285,14 @@ } break; + case ACPI_TYPE_LOCAL_ADDRESS_HANDLER: + + ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, + "***** Address handler %p\n", object)); + + acpi_os_delete_mutex(object->address_space.context_mutex); + break; + default: break; @@ -414,6 +422,7 @@ ACPI_WARNING((AE_INFO, "Obj %p, Reference Count is already zero, cannot decrement\n", object)); + return; } ACPI_DEBUG_PRINT_RAW((ACPI_DB_ALLOCATIONS, diff -u linux-azure-5.4.0/drivers/acpi/arm64/gtdt.c linux-azure-5.4.0/drivers/acpi/arm64/gtdt.c --- linux-azure-5.4.0/drivers/acpi/arm64/gtdt.c +++ linux-azure-5.4.0/drivers/acpi/arm64/gtdt.c @@ -36,7 +36,7 @@ static struct acpi_gtdt_descriptor acpi_gtdt_desc __initdata; -static inline void *next_platform_timer(void *platform_timer) +static inline __init void *next_platform_timer(void *platform_timer) { struct acpi_gtdt_header *gh = platform_timer; diff -u linux-azure-5.4.0/drivers/acpi/arm64/iort.c linux-azure-5.4.0/drivers/acpi/arm64/iort.c --- linux-azure-5.4.0/drivers/acpi/arm64/iort.c +++ linux-azure-5.4.0/drivers/acpi/arm64/iort.c @@ -1373,9 +1373,17 @@ res[0].start = pmcg->page0_base_address; res[0].end = pmcg->page0_base_address + SZ_4K - 1; res[0].flags = IORESOURCE_MEM; - res[1].start = pmcg->page1_base_address; - res[1].end = pmcg->page1_base_address + SZ_4K - 1; - res[1].flags = IORESOURCE_MEM; + /* + * The initial version in DEN0049C lacked a way to describe register + * page 1, which makes it broken for most PMCG implementations; in + * that case, just let the driver fail gracefully if it expects to + * find a second memory resource. + */ + if (node->revision > 0) { + res[1].start = pmcg->page1_base_address; + res[1].end = pmcg->page1_base_address + SZ_4K - 1; + res[1].flags = IORESOURCE_MEM; + } if (pmcg->overflow_gsiv) acpi_iort_register_irq(pmcg->overflow_gsiv, "overflow", diff -u linux-azure-5.4.0/drivers/acpi/battery.c linux-azure-5.4.0/drivers/acpi/battery.c --- linux-azure-5.4.0/drivers/acpi/battery.c +++ linux-azure-5.4.0/drivers/acpi/battery.c @@ -65,6 +65,7 @@ static int battery_notification_delay_ms; static int battery_ac_is_broken; static int battery_check_pmic = 1; +static int battery_quirk_notcharging; static unsigned int cache_time = 1000; module_param(cache_time, uint, 0644); MODULE_PARM_DESC(cache_time, "cache time in milliseconds"); @@ -76,6 +77,10 @@ static const struct acpi_device_id battery_device_ids[] = { {"PNP0C0A", 0}, + + /* Microsoft Surface Go 3 */ + {"MSHW0146", 0}, + {"", 0}, }; @@ -185,7 +190,7 @@ return 1; /* fallback to using design values for broken batteries */ - if (battery->design_capacity == battery->capacity_now) + if (battery->design_capacity <= battery->capacity_now) return 1; /* we don't do any sort of metric based on percentages */ @@ -233,6 +238,8 @@ val->intval = POWER_SUPPLY_STATUS_CHARGING; else if (acpi_battery_is_charged(battery)) val->intval = POWER_SUPPLY_STATUS_FULL; + else if (battery_quirk_notcharging) + val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; else val->intval = POWER_SUPPLY_STATUS_UNKNOWN; break; @@ -1337,6 +1344,12 @@ return 0; } +static int __init battery_quirk_not_charging(const struct dmi_system_id *d) +{ + battery_quirk_notcharging = 1; + return 0; +} + static const struct dmi_system_id bat_dmi_table[] __initconst = { { /* NEC LZ750/LS */ @@ -1381,6 +1394,27 @@ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"), }, }, + { + /* + * On Lenovo ThinkPads the BIOS specification defines + * a state when the bits for charging and discharging + * are both set to 0. That state is "Not Charging". + */ + .callback = battery_quirk_not_charging, + .ident = "Lenovo ThinkPad", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad"), + }, + }, + { + /* Microsoft Surface Go 3 */ + .callback = battery_notification_delay_quirk, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go 3"), + }, + }, {}, }; diff -u linux-azure-5.4.0/drivers/acpi/bus.c linux-azure-5.4.0/drivers/acpi/bus.c --- linux-azure-5.4.0/drivers/acpi/bus.c +++ linux-azure-5.4.0/drivers/acpi/bus.c @@ -1240,6 +1240,7 @@ result = acpi_bus_init(); if (result) { + kobject_put(acpi_kobj); disable_acpi(); return result; } diff -u linux-azure-5.4.0/drivers/acpi/cppc_acpi.c linux-azure-5.4.0/drivers/acpi/cppc_acpi.c --- linux-azure-5.4.0/drivers/acpi/cppc_acpi.c +++ linux-azure-5.4.0/drivers/acpi/cppc_acpi.c @@ -626,33 +626,6 @@ return 0; } -/* Check if CPPC revision + num_ent combination is supported */ -static bool is_cppc_supported(int revision, int num_ent) -{ - int expected_num_ent; - - switch (revision) { - case CPPC_V2_REV: - expected_num_ent = CPPC_V2_NUM_ENT; - break; - case CPPC_V3_REV: - expected_num_ent = CPPC_V3_NUM_ENT; - break; - default: - pr_debug("Firmware exports unsupported CPPC revision: %d\n", - revision); - return false; - } - - if (expected_num_ent != num_ent) { - pr_debug("Firmware exports %d entries. Expected: %d for CPPC rev:%d\n", - num_ent, expected_num_ent, revision); - return false; - } - - return true; -} - /* * An example CPC table looks like the following. * @@ -738,12 +711,16 @@ cpc_obj = &out_obj->package.elements[0]; if (cpc_obj->type == ACPI_TYPE_INTEGER) { num_ent = cpc_obj->integer.value; + if (num_ent <= 1) { + pr_debug("Unexpected _CPC NumEntries value (%d) for CPU:%d\n", + num_ent, pr->id); + goto out_free; + } } else { pr_debug("Unexpected entry type(%d) for NumEntries\n", cpc_obj->type); goto out_free; } - cpc_ptr->num_entries = num_ent; /* Second entry should be revision. */ cpc_obj = &out_obj->package.elements[1]; @@ -754,10 +731,32 @@ cpc_obj->type); goto out_free; } - cpc_ptr->version = cpc_rev; - if (!is_cppc_supported(cpc_rev, num_ent)) + if (cpc_rev < CPPC_V2_REV) { + pr_debug("Unsupported _CPC Revision (%d) for CPU:%d\n", cpc_rev, + pr->id); goto out_free; + } + + /* + * Disregard _CPC if the number of entries in the return pachage is not + * as expected, but support future revisions being proper supersets of + * the v3 and only causing more entries to be returned by _CPC. + */ + if ((cpc_rev == CPPC_V2_REV && num_ent != CPPC_V2_NUM_ENT) || + (cpc_rev == CPPC_V3_REV && num_ent != CPPC_V3_NUM_ENT) || + (cpc_rev > CPPC_V3_REV && num_ent <= CPPC_V3_NUM_ENT)) { + pr_debug("Unexpected number of _CPC return package entries (%d) for CPU:%d\n", + num_ent, pr->id); + goto out_free; + } + if (cpc_rev > CPPC_V3_REV) { + num_ent = CPPC_V3_NUM_ENT; + cpc_rev = CPPC_V3_REV; + } + + cpc_ptr->num_entries = num_ent; + cpc_ptr->version = cpc_rev; /* Iterate through remaining entries in _CPC */ for (i = 2; i < num_ent; i++) { diff -u linux-azure-5.4.0/drivers/acpi/device_sysfs.c linux-azure-5.4.0/drivers/acpi/device_sysfs.c --- linux-azure-5.4.0/drivers/acpi/device_sysfs.c +++ linux-azure-5.4.0/drivers/acpi/device_sysfs.c @@ -325,11 +325,11 @@ EXPORT_SYMBOL_GPL(acpi_device_modalias); static ssize_t -acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) +modalias_show(struct device *dev, struct device_attribute *attr, char *buf) { return __acpi_device_modalias(to_acpi_device(dev), buf, 1024); } -static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL); +static DEVICE_ATTR_RO(modalias); static ssize_t real_power_state_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -358,8 +358,8 @@ static DEVICE_ATTR_RO(power_state); static ssize_t -acpi_eject_store(struct device *d, struct device_attribute *attr, - const char *buf, size_t count) +eject_store(struct device *d, struct device_attribute *attr, + const char *buf, size_t count) { struct acpi_device *acpi_device = to_acpi_device(d); acpi_object_type not_used; @@ -387,28 +387,28 @@ return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN; } -static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store); +static DEVICE_ATTR_WO(eject); static ssize_t -acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) +hid_show(struct device *dev, struct device_attribute *attr, char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev)); } -static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL); +static DEVICE_ATTR_RO(hid); -static ssize_t acpi_device_uid_show(struct device *dev, - struct device_attribute *attr, char *buf) +static ssize_t uid_show(struct device *dev, + struct device_attribute *attr, char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id); } -static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL); +static DEVICE_ATTR_RO(uid); -static ssize_t acpi_device_adr_show(struct device *dev, - struct device_attribute *attr, char *buf) +static ssize_t adr_show(struct device *dev, + struct device_attribute *attr, char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); @@ -417,16 +417,16 @@ else return sprintf(buf, "0x%08llx\n", acpi_dev->pnp.bus_address); } -static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL); +static DEVICE_ATTR_RO(adr); -static ssize_t acpi_device_path_show(struct device *dev, - struct device_attribute *attr, char *buf) +static ssize_t path_show(struct device *dev, + struct device_attribute *attr, char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); return acpi_object_path(acpi_dev->handle, buf); } -static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL); +static DEVICE_ATTR_RO(path); /* sysfs file that shows description text from the ACPI _STR method */ static ssize_t description_show(struct device *dev, @@ -446,7 +446,7 @@ (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer, acpi_dev->pnp.str_obj->buffer.length, UTF16_LITTLE_ENDIAN, buf, - PAGE_SIZE); + PAGE_SIZE - 1); buf[result++] = '\n'; @@ -455,8 +455,8 @@ static DEVICE_ATTR_RO(description); static ssize_t -acpi_device_sun_show(struct device *dev, struct device_attribute *attr, - char *buf) { +sun_show(struct device *dev, struct device_attribute *attr, + char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); acpi_status status; unsigned long long sun; @@ -467,11 +467,11 @@ return sprintf(buf, "%llu\n", sun); } -static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL); +static DEVICE_ATTR_RO(sun); static ssize_t -acpi_device_hrv_show(struct device *dev, struct device_attribute *attr, - char *buf) { +hrv_show(struct device *dev, struct device_attribute *attr, + char *buf) { struct acpi_device *acpi_dev = to_acpi_device(dev); acpi_status status; unsigned long long hrv; @@ -482,7 +482,7 @@ return sprintf(buf, "%llu\n", hrv); } -static DEVICE_ATTR(hrv, 0444, acpi_device_hrv_show, NULL); +static DEVICE_ATTR_RO(hrv); static ssize_t status_show(struct device *dev, struct device_attribute *attr, char *buf) { diff -u linux-azure-5.4.0/drivers/acpi/ec.c linux-azure-5.4.0/drivers/acpi/ec.c --- linux-azure-5.4.0/drivers/acpi/ec.c +++ linux-azure-5.4.0/drivers/acpi/ec.c @@ -167,6 +167,7 @@ struct transaction transaction; struct work_struct work; struct acpi_ec_query_handler *handler; + struct acpi_ec *ec; }; static int acpi_ec_query(struct acpi_ec *ec, u8 *data); @@ -470,6 +471,7 @@ ec_dbg_evt("Command(%s) submitted/blocked", acpi_ec_cmd_string(ACPI_EC_COMMAND_QUERY)); ec->nr_pending_queries++; + ec->events_in_progress++; queue_work(ec_wq, &ec->work); } } @@ -536,7 +538,7 @@ #ifdef CONFIG_PM_SLEEP static void __acpi_ec_flush_work(void) { - drain_workqueue(ec_wq); /* flush ec->work */ + flush_workqueue(ec_wq); /* flush ec->work */ flush_workqueue(ec_query_wq); /* flush queries */ } @@ -1129,7 +1131,7 @@ } EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler); -static struct acpi_ec_query *acpi_ec_create_query(u8 *pval) +static struct acpi_ec_query *acpi_ec_create_query(struct acpi_ec *ec, u8 *pval) { struct acpi_ec_query *q; struct transaction *t; @@ -1137,11 +1139,13 @@ q = kzalloc(sizeof (struct acpi_ec_query), GFP_KERNEL); if (!q) return NULL; + INIT_WORK(&q->work, acpi_ec_event_processor); t = &q->transaction; t->command = ACPI_EC_COMMAND_QUERY; t->rdata = pval; t->rlen = 1; + q->ec = ec; return q; } @@ -1158,13 +1162,21 @@ { struct acpi_ec_query *q = container_of(work, struct acpi_ec_query, work); struct acpi_ec_query_handler *handler = q->handler; + struct acpi_ec *ec = q->ec; ec_dbg_evt("Query(0x%02x) started", handler->query_bit); + if (handler->func) handler->func(handler->data); else if (handler->handle) acpi_evaluate_object(handler->handle, NULL, NULL, NULL); + ec_dbg_evt("Query(0x%02x) stopped", handler->query_bit); + + spin_lock_irq(&ec->lock); + ec->queries_in_progress--; + spin_unlock_irq(&ec->lock); + acpi_ec_delete_query(q); } @@ -1174,7 +1186,7 @@ int result; struct acpi_ec_query *q; - q = acpi_ec_create_query(&value); + q = acpi_ec_create_query(ec, &value); if (!q) return -ENOMEM; @@ -1196,19 +1208,20 @@ } /* - * It is reported that _Qxx are evaluated in a parallel way on - * Windows: + * It is reported that _Qxx are evaluated in a parallel way on Windows: * https://bugzilla.kernel.org/show_bug.cgi?id=94411 * - * Put this log entry before schedule_work() in order to make - * it appearing before any other log entries occurred during the - * work queue execution. + * Put this log entry before queue_work() to make it appear in the log + * before any other messages emitted during workqueue handling. */ ec_dbg_evt("Query(0x%02x) scheduled", value); - if (!queue_work(ec_query_wq, &q->work)) { - ec_dbg_evt("Query(0x%02x) overlapped", value); - result = -EBUSY; - } + + spin_lock_irq(&ec->lock); + + ec->queries_in_progress++; + queue_work(ec_query_wq, &q->work); + + spin_unlock_irq(&ec->lock); err_exit: if (result) @@ -1266,6 +1279,10 @@ ec_dbg_evt("Event stopped"); acpi_ec_check_event(ec); + + spin_lock_irqsave(&ec->lock, flags); + ec->events_in_progress--; + spin_unlock_irqrestore(&ec->lock, flags); } static void acpi_ec_handle_interrupt(struct acpi_ec *ec) @@ -1905,6 +1922,22 @@ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), DMI_MATCH(DMI_PRODUCT_NAME, "GL702VMK"),}, NULL}, { + ec_honor_ecdt_gpe, "ASUSTeK COMPUTER INC. X505BA", { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X505BA"),}, NULL}, + { + ec_honor_ecdt_gpe, "ASUSTeK COMPUTER INC. X505BP", { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X505BP"),}, NULL}, + { + ec_honor_ecdt_gpe, "ASUSTeK COMPUTER INC. X542BA", { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X542BA"),}, NULL}, + { + ec_honor_ecdt_gpe, "ASUSTeK COMPUTER INC. X542BP", { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X542BP"),}, NULL}, + { ec_honor_ecdt_gpe, "ASUS X550VXK", { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), DMI_MATCH(DMI_PRODUCT_NAME, "X550VXK"),}, NULL}, @@ -2042,6 +2075,7 @@ bool acpi_ec_dispatch_gpe(void) { + bool work_in_progress; u32 ret; if (!first_ec) @@ -2062,8 +2096,19 @@ if (ret == ACPI_INTERRUPT_HANDLED) pm_pr_dbg("EC GPE dispatched\n"); - /* Flush the event and query workqueues. */ - acpi_ec_flush_work(); + /* Drain EC work. */ + do { + acpi_ec_flush_work(); + + pm_pr_dbg("ACPI EC work flushed\n"); + + spin_lock_irq(&first_ec->lock); + + work_in_progress = first_ec->events_in_progress + + first_ec->queries_in_progress > 0; + + spin_unlock_irq(&first_ec->lock); + } while (work_in_progress && !pm_wakeup_pending()); return false; } @@ -2160,13 +2205,6 @@ }, }, { - .ident = "ThinkPad X1 Carbon 6th", - .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), - DMI_MATCH(DMI_PRODUCT_FAMILY, "ThinkPad X1 Carbon 6th"), - }, - }, - { .ident = "ThinkPad X1 Yoga 3rd", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), diff -u linux-azure-5.4.0/drivers/acpi/internal.h linux-azure-5.4.0/drivers/acpi/internal.h --- linux-azure-5.4.0/drivers/acpi/internal.h +++ linux-azure-5.4.0/drivers/acpi/internal.h @@ -184,6 +184,8 @@ struct work_struct work; unsigned long timestamp; unsigned long nr_pending_queries; + unsigned int events_in_progress; + unsigned int queries_in_progress; bool busy_polling; unsigned int polling_guard; }; diff -u linux-azure-5.4.0/drivers/acpi/nfit/core.c linux-azure-5.4.0/drivers/acpi/nfit/core.c --- linux-azure-5.4.0/drivers/acpi/nfit/core.c +++ linux-azure-5.4.0/drivers/acpi/nfit/core.c @@ -2973,6 +2973,9 @@ struct acpi_nfit_memory_map *memdev = nfit_memdev->memdev; struct nd_mapping_desc *mapping; + /* range index 0 == unmapped in SPA or invalid-SPA */ + if (memdev->range_index == 0 || spa->range_index == 0) + continue; if (memdev->range_index != spa->range_index) continue; if (count >= ND_MAX_MAPPINGS) { diff -u linux-azure-5.4.0/drivers/acpi/numa.c linux-azure-5.4.0/drivers/acpi/numa.c --- linux-azure-5.4.0/drivers/acpi/numa.c +++ linux-azure-5.4.0/drivers/acpi/numa.c @@ -72,47 +72,6 @@ } EXPORT_SYMBOL(acpi_map_pxm_to_node); -/** - * acpi_map_pxm_to_online_node - Map proximity ID to online node - * @pxm: ACPI proximity ID - * - * This is similar to acpi_map_pxm_to_node(), but always returns an online - * node. When the mapped node from a given proximity ID is offline, it - * looks up the node distance table and returns the nearest online node. - * - * ACPI device drivers, which are called after the NUMA initialization has - * completed in the kernel, can call this interface to obtain their device - * NUMA topology from ACPI tables. Such drivers do not have to deal with - * offline nodes. A node may be offline when a device proximity ID is - * unique, SRAT memory entry does not exist, or NUMA is disabled, ex. - * "numa=off" on x86. - */ -int acpi_map_pxm_to_online_node(int pxm) -{ - int node, min_node; - - node = acpi_map_pxm_to_node(pxm); - - if (node == NUMA_NO_NODE) - node = 0; - - min_node = node; - if (!node_online(node)) { - int min_dist = INT_MAX, dist, n; - - for_each_online_node(n) { - dist = node_distance(node, n); - if (dist < min_dist) { - min_dist = dist; - min_node = n; - } - } - } - - return min_node; -} -EXPORT_SYMBOL(acpi_map_pxm_to_online_node); - static void __init acpi_table_print_srat_entry(struct acpi_subtable_header *header) { diff -u linux-azure-5.4.0/drivers/acpi/property.c linux-azure-5.4.0/drivers/acpi/property.c --- linux-azure-5.4.0/drivers/acpi/property.c +++ linux-azure-5.4.0/drivers/acpi/property.c @@ -152,10 +152,10 @@ return acpi_nondev_subnode_data_ok(handle, link, list, parent); } -static int acpi_add_nondev_subnodes(acpi_handle scope, - const union acpi_object *links, - struct list_head *list, - struct fwnode_handle *parent) +static bool acpi_add_nondev_subnodes(acpi_handle scope, + const union acpi_object *links, + struct list_head *list, + struct fwnode_handle *parent) { bool ret = false; int i; @@ -430,6 +430,16 @@ acpi_extract_apple_properties(adev); } +static void acpi_free_device_properties(struct list_head *list) +{ + struct acpi_device_properties *props, *tmp; + + list_for_each_entry_safe(props, tmp, list, list) { + list_del(&props->list); + kfree(props); + } +} + static void acpi_destroy_nondev_subnodes(struct list_head *list) { struct acpi_data_node *dn, *next; @@ -442,22 +452,18 @@ wait_for_completion(&dn->kobj_done); list_del(&dn->sibling); ACPI_FREE((void *)dn->data.pointer); + acpi_free_device_properties(&dn->data.properties); kfree(dn); } } void acpi_free_properties(struct acpi_device *adev) { - struct acpi_device_properties *props, *tmp; - acpi_destroy_nondev_subnodes(&adev->data.subnodes); ACPI_FREE((void *)adev->data.pointer); adev->data.of_compatible = NULL; adev->data.pointer = NULL; - list_for_each_entry_safe(props, tmp, &adev->data.properties, list) { - list_del(&props->list); - kfree(props); - } + acpi_free_device_properties(&adev->data.properties); } /** @@ -692,7 +698,7 @@ */ if (obj->type == ACPI_TYPE_LOCAL_REFERENCE) { if (index) - return -EINVAL; + return -ENOENT; ret = acpi_bus_get_device(obj->reference.handle, &device); if (ret) diff -u linux-azure-5.4.0/drivers/acpi/resource.c linux-azure-5.4.0/drivers/acpi/resource.c --- linux-azure-5.4.0/drivers/acpi/resource.c +++ linux-azure-5.4.0/drivers/acpi/resource.c @@ -16,6 +16,7 @@ #include #include #include +#include #ifdef CONFIG_X86 #define valid_IRQ(i) (((i) != 0) && ((i) != 2)) @@ -387,9 +388,84 @@ res->flags = IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET; } +static const struct dmi_system_id medion_laptop[] = { + { + .ident = "MEDION P15651", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), + DMI_MATCH(DMI_BOARD_NAME, "M15T"), + }, + }, + { + .ident = "MEDION S17405", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), + DMI_MATCH(DMI_BOARD_NAME, "M17T"), + }, + }, + { } +}; + +static const struct dmi_system_id asus_laptop[] = { + { + .ident = "Asus Vivobook K3402ZA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "K3402ZA"), + }, + }, + { + .ident = "Asus Vivobook K3502ZA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "K3502ZA"), + }, + }, + { + .ident = "Asus Vivobook S5402ZA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "S5402ZA"), + }, + }, + { } +}; + +struct irq_override_cmp { + const struct dmi_system_id *system; + unsigned char irq; + unsigned char triggering; + unsigned char polarity; + unsigned char shareable; +}; + +static const struct irq_override_cmp skip_override_table[] = { + { medion_laptop, 1, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0 }, + { asus_laptop, 1, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0 }, +}; + +static bool acpi_dev_irq_override(u32 gsi, u8 triggering, u8 polarity, + u8 shareable) +{ + int i; + + for (i = 0; i < ARRAY_SIZE(skip_override_table); i++) { + const struct irq_override_cmp *entry = &skip_override_table[i]; + + if (dmi_check_system(entry->system) && + entry->irq == gsi && + entry->triggering == triggering && + entry->polarity == polarity && + entry->shareable == shareable) + return false; + } + + return true; +} + static void acpi_dev_get_irqresource(struct resource *res, u32 gsi, u8 triggering, u8 polarity, u8 shareable, - bool legacy) + bool check_override) { int irq, p, t; @@ -408,7 +484,9 @@ * using extended IRQ descriptors we take the IRQ configuration * from _CRS directly. */ - if (legacy && !acpi_get_override_irq(gsi, &t, &p)) { + if (check_override && + acpi_dev_irq_override(gsi, triggering, polarity, shareable) && + !acpi_get_override_irq(gsi, &t, &p)) { u8 trig = t ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE; u8 pol = p ? ACPI_ACTIVE_LOW : ACPI_ACTIVE_HIGH; diff -u linux-azure-5.4.0/drivers/acpi/scan.c linux-azure-5.4.0/drivers/acpi/scan.c --- linux-azure-5.4.0/drivers/acpi/scan.c +++ linux-azure-5.4.0/drivers/acpi/scan.c @@ -1577,6 +1577,7 @@ { struct list_head resource_list; bool is_serial_bus_slave = false; + static const struct acpi_device_id ignore_serial_bus_ids[] = { /* * These devices have multiple I2cSerialBus resources and an i2c-client * must be instantiated for each, each with its own i2c_device_id. @@ -1585,11 +1586,18 @@ * drivers/platform/x86/i2c-multi-instantiate.c driver, which knows * which i2c_device_id to use for each resource. */ - static const struct acpi_device_id i2c_multi_instantiate_ids[] = { {"BSG1160", }, {"BSG2150", }, {"INT33FE", }, {"INT3515", }, + /* + * HIDs of device with an UartSerialBusV2 resource for which userspace + * expects a regular tty cdev to be created (instead of the in kernel + * serdev) and which have a kernel driver which expects a platform_dev + * such as the rfkill-gpio driver. + */ + {"BCM4752", }, + {"LNV4752", }, {} }; @@ -1603,8 +1611,7 @@ fwnode_property_present(&device->fwnode, "baud"))) return true; - /* Instantiate a pdev for the i2c-multi-instantiate drv to bind to */ - if (!acpi_match_device_ids(device, i2c_multi_instantiate_ids)) + if (!acpi_match_device_ids(device, ignore_serial_bus_ids)) return false; INIT_LIST_HEAD(&resource_list); diff -u linux-azure-5.4.0/drivers/acpi/sleep.c linux-azure-5.4.0/drivers/acpi/sleep.c --- linux-azure-5.4.0/drivers/acpi/sleep.c +++ linux-azure-5.4.0/drivers/acpi/sleep.c @@ -361,6 +361,14 @@ DMI_MATCH(DMI_PRODUCT_NAME, "80E3"), }, }, + { + .callback = init_nvs_save_s3, + .ident = "Lenovo G40-45", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "80E1"), + }, + }, /* * ThinkPad X1 Tablet(2016) cannot do suspend-to-idle using * the Low Power S0 Idle firmware interface (see @@ -374,6 +382,18 @@ DMI_MATCH(DMI_PRODUCT_NAME, "20GGA00L00"), }, }, + /* + * ASUS B1400CEAE hangs on resume from suspend (see + * https://bugzilla.kernel.org/show_bug.cgi?id=215742). + */ + { + .callback = init_default_s3, + .ident = "ASUS B1400CEAE", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK B1400CEAE"), + }, + }, {}, }; @@ -1027,6 +1047,7 @@ if (pm_wakeup_pending()) return true; + pm_wakeup_clear(acpi_sci_irq); rearm_wake_irq(acpi_sci_irq); } diff -u linux-azure-5.4.0/drivers/acpi/sysfs.c linux-azure-5.4.0/drivers/acpi/sysfs.c --- linux-azure-5.4.0/drivers/acpi/sysfs.c +++ linux-azure-5.4.0/drivers/acpi/sysfs.c @@ -439,18 +439,29 @@ { struct acpi_data_attr *data_attr; void __iomem *base; - ssize_t rc; + ssize_t size; data_attr = container_of(bin_attr, struct acpi_data_attr, attr); + size = data_attr->attr.size; - base = acpi_os_map_memory(data_attr->addr, data_attr->attr.size); + if (offset < 0) + return -EINVAL; + + if (offset >= size) + return 0; + + if (count > size - offset) + count = size - offset; + + base = acpi_os_map_iomem(data_attr->addr, size); if (!base) return -ENOMEM; - rc = memory_read_from_io_buffer(buf, count, &offset, base, - data_attr->attr.size); - acpi_os_unmap_memory(base, data_attr->attr.size); - return rc; + memcpy_fromio(buf, base + offset, count); + + acpi_os_unmap_iomem(base, size); + + return count; } static int acpi_bert_data_init(void *th, struct acpi_data_attr *data_attr) diff -u linux-azure-5.4.0/drivers/acpi/video_detect.c linux-azure-5.4.0/drivers/acpi/video_detect.c --- linux-azure-5.4.0/drivers/acpi/video_detect.c +++ linux-azure-5.4.0/drivers/acpi/video_detect.c @@ -388,7 +388,161 @@ DMI_MATCH(DMI_BOARD_NAME, "BA51_MV"), }, }, - + /* + * Clevo NL5xRU and NL5xNU/TUXEDO Aura 15 Gen1 and Gen2 have both a + * working native and video interface. However the default detection + * mechanism first registers the video interface before unregistering + * it again and switching to the native interface during boot. This + * results in a dangling SBIOS request for backlight change for some + * reason, causing the backlight to switch to ~2% once per boot on the + * first power cord connect or disconnect event. Setting the native + * interface explicitly circumvents this buggy behaviour, by avoiding + * the unregistering process. + */ + { + .callback = video_detect_force_native, + .ident = "Clevo NL5xRU", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "NL5xRU"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "Clevo NL5xRU", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "AURA1501"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "Clevo NL5xRU", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "EDUBOOK1502"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "Clevo NL5xNU", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "NL5xNU"), + }, + }, + /* + * The TongFang PF5PU1G, PF4NU1F, PF5NU1G, and PF5LUXG/TUXEDO BA15 Gen10, + * Pulse 14/15 Gen1, and Pulse 15 Gen2 have the same problem as the Clevo + * NL5xRU and NL5xNU/TUXEDO Aura 15 Gen1 and Gen2. See the description + * above. + */ + { + .callback = video_detect_force_native, + .ident = "TongFang PF5PU1G", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "PF5PU1G"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang PF4NU1F", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "PF4NU1F"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang PF4NU1F", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "PULSE1401"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang PF5NU1G", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "PF5NU1G"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang PF5NU1G", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "PULSE1501"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang PF5LUXG", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "PF5LUXG"), + }, + }, + /* + * More Tongfang devices with the same issue as the Clevo NL5xRU and + * NL5xNU/TUXEDO Aura 15 Gen1 and Gen2. See the description above. + */ + { + .callback = video_detect_force_native, + .ident = "TongFang GKxNRxx", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GKxNRxx"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GKxNRxx", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "POLARIS1501A1650TI"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GKxNRxx", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "POLARIS1501A2060"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GKxNRxx", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "POLARIS1701A1650TI"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GKxNRxx", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TUXEDO"), + DMI_MATCH(DMI_BOARD_NAME, "POLARIS1701A2060"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GMxNGxx", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxNGxx"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GMxZGxx", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxZGxx"), + }, + }, + { + .callback = video_detect_force_native, + .ident = "TongFang GMxRGxx", + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxRGxx"), + }, + }, /* * Desktops which falsely report a backlight and which our heuristics * for this do not catch. diff -u linux-azure-5.4.0/drivers/amba/bus.c linux-azure-5.4.0/drivers/amba/bus.c --- linux-azure-5.4.0/drivers/amba/bus.c +++ linux-azure-5.4.0/drivers/amba/bus.c @@ -375,9 +375,6 @@ void __iomem *tmp; int i, ret; - WARN_ON(dev->irq[0] == (unsigned int)-1); - WARN_ON(dev->irq[1] == (unsigned int)-1); - ret = request_resource(parent, &dev->res); if (ret) goto err_out; diff -u linux-azure-5.4.0/drivers/android/binder.c linux-azure-5.4.0/drivers/android/binder.c --- linux-azure-5.4.0/drivers/android/binder.c +++ linux-azure-5.4.0/drivers/android/binder.c @@ -424,6 +424,9 @@ * (invariant after initialized) * @tsk task_struct for group_leader of process * (invariant after initialized) + * @cred struct cred associated with the `struct file` + * in binder_open() + * (invariant after initialized) * @deferred_work_node: element for binder_deferred_list * (protected by binder_deferred_lock) * @deferred_work: bitmap of deferred work to perform @@ -469,6 +472,7 @@ struct list_head waiting_threads; int pid; struct task_struct *tsk; + const struct cred *cred; struct hlist_node deferred_work_node; int deferred_work; bool is_dead; @@ -1744,6 +1748,18 @@ } ret = binder_inc_ref_olocked(ref, strong, target_list); *rdata = ref->data; + if (ret && ref == new_ref) { + /* + * Cleanup the failed reference here as the target + * could now be dead and have already released its + * references by now. Calling on the new reference + * with strong=0 and a tmp_refs will not decrement + * the node. The new_ref gets kfree'd below. + */ + binder_cleanup_ref_olocked(new_ref); + ref = NULL; + } + binder_proc_unlock(proc); if (new_ref && ref != new_ref) /* @@ -2239,6 +2255,7 @@ } static void binder_transaction_buffer_release(struct binder_proc *proc, + struct binder_thread *thread, struct binder_buffer *buffer, binder_size_t failed_at, bool is_failure) @@ -2256,7 +2273,7 @@ binder_dec_node(buffer->target_node, 1, 0); off_start_offset = ALIGN(buffer->data_size, sizeof(void *)); - off_end_offset = is_failure ? failed_at : + off_end_offset = is_failure && failed_at ? failed_at : off_start_offset + buffer->offsets_size; for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; buffer_offset += sizeof(binder_size_t)) { @@ -2342,9 +2359,8 @@ binder_size_t fd_buf_size; binder_size_t num_valid; - if (proc->tsk != current->group_leader) { + if (is_failure) { /* - * Nothing to do if running in sender context * The fd fixups have not been applied so no * fds need to be closed. */ @@ -2398,8 +2414,16 @@ &proc->alloc, &fd, buffer, offset, sizeof(fd)); WARN_ON(err); - if (!err) + if (!err) { binder_deferred_fd_close(fd); + /* + * Need to make sure the thread goes + * back to userspace to complete the + * deferred close + */ + if (thread) + thread->looper_need_return = true; + } } } break; default: @@ -2434,7 +2458,7 @@ ret = -EINVAL; goto done; } - if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) { + if (security_binder_transfer_binder(proc->cred, target_proc->cred)) { ret = -EPERM; goto done; } @@ -2480,7 +2504,7 @@ proc->pid, thread->pid, fp->handle); return -EINVAL; } - if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) { + if (security_binder_transfer_binder(proc->cred, target_proc->cred)) { ret = -EPERM; goto done; } @@ -2568,7 +2592,7 @@ ret = -EBADF; goto err_fget; } - ret = security_binder_transfer_file(proc->tsk, target_proc->tsk, file); + ret = security_binder_transfer_file(proc->cred, target_proc->cred, file); if (ret < 0) { ret = -EPERM; goto err_security; @@ -2648,8 +2672,8 @@ if (!ret) ret = binder_translate_fd(fd, offset, t, thread, in_reply_to); - if (ret < 0) - return ret; + if (ret) + return ret > 0 ? -EINVAL : ret; } return 0; } @@ -2967,8 +2991,8 @@ return_error_line = __LINE__; goto err_invalid_target_handle; } - if (security_binder_transaction(proc->tsk, - target_proc->tsk) < 0) { + if (security_binder_transaction(proc->cred, + target_proc->cred) < 0) { return_error = BR_FAILED_REPLY; return_error_param = -EPERM; return_error_line = __LINE__; @@ -3094,7 +3118,7 @@ u32 secid; size_t added_size; - security_task_getsecid(proc->tsk, &secid); + security_cred_getsecid(proc->cred, &secid); ret = security_secid_to_secctx(secid, &secctx, &secctx_sz); if (ret) { return_error = BR_FAILED_REPLY; @@ -3469,7 +3493,7 @@ err_copy_data_failed: binder_free_txn_fixups(t); trace_binder_transaction_failed_buffer_release(t->buffer); - binder_transaction_buffer_release(target_proc, t->buffer, + binder_transaction_buffer_release(target_proc, NULL, t->buffer, buffer_offset, true); if (target_node) binder_dec_node_tmpref(target_node); @@ -3539,6 +3563,7 @@ * binder_free_buf() - free the specified buffer * @proc: binder proc that owns buffer * @buffer: buffer to be freed + * @is_failure: failed to send transaction * * If buffer for an async transaction, enqueue the next async * transaction from the node. @@ -3546,7 +3571,9 @@ * Cleanup buffer and free it. */ static void -binder_free_buf(struct binder_proc *proc, struct binder_buffer *buffer) +binder_free_buf(struct binder_proc *proc, + struct binder_thread *thread, + struct binder_buffer *buffer, bool is_failure) { binder_inner_proc_lock(proc); if (buffer->transaction) { @@ -3574,7 +3601,7 @@ binder_node_inner_unlock(buf_node); } trace_binder_transaction_buffer_release(buffer); - binder_transaction_buffer_release(proc, buffer, 0, false); + binder_transaction_buffer_release(proc, thread, buffer, 0, is_failure); binder_alloc_free_buf(&proc->alloc, buffer); } @@ -3775,7 +3802,7 @@ proc->pid, thread->pid, (u64)data_ptr, buffer->debug_id, buffer->transaction ? "active" : "finished"); - binder_free_buf(proc, buffer); + binder_free_buf(proc, thread, buffer, false); break; } @@ -4463,7 +4490,7 @@ buffer->transaction = NULL; binder_cleanup_transaction(t, "fd fixups failed", BR_FAILED_REPLY); - binder_free_buf(proc, buffer); + binder_free_buf(proc, thread, buffer, true); binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, "%d:%d %stransaction %d fd fixups failed %d/%d, line %d\n", proc->pid, thread->pid, @@ -4696,6 +4723,7 @@ } binder_alloc_deferred_release(&proc->alloc); put_task_struct(proc->tsk); + put_cred(proc->cred); binder_stats_deleted(BINDER_STAT_PROC); kfree(proc); } @@ -4772,23 +4800,20 @@ __release(&t->lock); /* - * If this thread used poll, make sure we remove the waitqueue - * from any epoll data structures holding it with POLLFREE. - * waitqueue_active() is safe to use here because we're holding - * the inner lock. + * If this thread used poll, make sure we remove the waitqueue from any + * poll data structures holding it. */ - if ((thread->looper & BINDER_LOOPER_STATE_POLL) && - waitqueue_active(&thread->wait)) { - wake_up_poll(&thread->wait, EPOLLHUP | POLLFREE); - } + if (thread->looper & BINDER_LOOPER_STATE_POLL) + wake_up_pollfree(&thread->wait); binder_inner_proc_unlock(thread->proc); /* - * This is needed to avoid races between wake_up_poll() above and - * and ep_remove_waitqueue() called for other reasons (eg the epoll file - * descriptor being closed); ep_remove_waitqueue() holds an RCU read - * lock, so we can be sure it's done after calling synchronize_rcu(). + * This is needed to avoid races between wake_up_pollfree() above and + * someone else removing the last entry from the queue for other reasons + * (e.g. ep_remove_wait_queue() being called due to an epoll file + * descriptor being closed). Such other users hold an RCU read lock, so + * we can be sure they're done after we call synchronize_rcu(). */ if (thread->looper & BINDER_LOOPER_STATE_POLL) synchronize_rcu(); @@ -4906,7 +4931,7 @@ ret = -EBUSY; goto out; } - ret = security_binder_set_context_mgr(proc->tsk); + ret = security_binder_set_context_mgr(proc->cred); if (ret < 0) goto out; if (uid_valid(context->binder_context_mgr_uid)) { @@ -5223,6 +5248,7 @@ spin_lock_init(&proc->outer_lock); get_task_struct(current->group_leader); proc->tsk = current->group_leader; + proc->cred = get_cred(filp->f_cred); INIT_LIST_HEAD(&proc->todo); proc->default_priority = task_nice(current); /* binderfs stashes devices in i_private */ @@ -6069,6 +6095,7 @@ .open = binder_open, .flush = binder_flush, .release = binder_release, + .may_pollfree = true, }; static int __init init_binder_device(const char *name) diff -u linux-azure-5.4.0/drivers/android/binder_alloc.c linux-azure-5.4.0/drivers/android/binder_alloc.c --- linux-azure-5.4.0/drivers/android/binder_alloc.c +++ linux-azure-5.4.0/drivers/android/binder_alloc.c @@ -211,7 +211,7 @@ mm = alloc->vma_vm_mm; if (mm) { - down_read(&mm->mmap_sem); + down_write(&mm->mmap_sem); vma = alloc->vma; } @@ -270,7 +270,7 @@ /* vm_insert_page does not seem to increment the refcount */ } if (mm) { - up_read(&mm->mmap_sem); + up_write(&mm->mmap_sem); mmput(mm); } return 0; @@ -303,7 +303,7 @@ } err_no_vma: if (mm) { - up_read(&mm->mmap_sem); + up_write(&mm->mmap_sem); mmput(mm); } return vma ? -ENOMEM : -ESRCH; @@ -612,7 +612,7 @@ BUG_ON(buffer->user_data > alloc->buffer + alloc->buffer_size); if (buffer->async_transaction) { - alloc->free_async_space += size + sizeof(struct binder_buffer); + alloc->free_async_space += buffer_size + sizeof(struct binder_buffer); binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC, "%d: binder_free_buf size %zd async free %zd\n", diff -u linux-azure-5.4.0/drivers/ata/ahci.c linux-azure-5.4.0/drivers/ata/ahci.c --- linux-azure-5.4.0/drivers/ata/ahci.c +++ linux-azure-5.4.0/drivers/ata/ahci.c @@ -422,6 +422,7 @@ /* AMD */ { PCI_VDEVICE(AMD, 0x7800), board_ahci }, /* AMD Hudson-2 */ { PCI_VDEVICE(AMD, 0x7900), board_ahci }, /* AMD CZ */ + { PCI_VDEVICE(AMD, 0x7901), board_ahci_mobile }, /* AMD Green Sardine */ /* AMD is using RAID class only for ahci controllers */ { PCI_VENDOR_ID_AMD, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_RAID << 8, 0xffffff, board_ahci }, diff -u linux-azure-5.4.0/drivers/ata/ahci.h linux-azure-5.4.0/drivers/ata/ahci.h --- linux-azure-5.4.0/drivers/ata/ahci.h +++ linux-azure-5.4.0/drivers/ata/ahci.h @@ -254,7 +254,7 @@ PCS_7 = 0x94, /* 7+ port PCS (Denverton) */ /* em constants */ - EM_MAX_SLOTS = 8, + EM_MAX_SLOTS = SATA_PMP_MAX_PORTS, EM_MAX_RETRY = 5, /* em_ctl bits */ diff -u linux-azure-5.4.0/drivers/ata/libahci_platform.c linux-azure-5.4.0/drivers/ata/libahci_platform.c --- linux-azure-5.4.0/drivers/ata/libahci_platform.c +++ linux-azure-5.4.0/drivers/ata/libahci_platform.c @@ -440,10 +440,7 @@ hpriv->phy_regulator = devm_regulator_get(dev, "phy"); if (IS_ERR(hpriv->phy_regulator)) { rc = PTR_ERR(hpriv->phy_regulator); - if (rc == -EPROBE_DEFER) - goto err_out; - rc = 0; - hpriv->phy_regulator = NULL; + goto err_out; } if (flags & AHCI_PLATFORM_GET_RESETS) { @@ -454,14 +451,24 @@ } } - hpriv->nports = child_nodes = of_get_child_count(dev->of_node); + /* + * Too many sub-nodes most likely means having something wrong with + * the firmware. + */ + child_nodes = of_get_child_count(dev->of_node); + if (child_nodes > AHCI_MAX_PORTS) { + rc = -EINVAL; + goto err_out; + } /* * If no sub-node was found, we still need to set nports to * one in order to be able to use the * ahci_platform_[en|dis]able_[phys|regulators] functions. */ - if (!child_nodes) + if (child_nodes) + hpriv->nports = child_nodes; + else hpriv->nports = 1; hpriv->phys = devm_kcalloc(dev, hpriv->nports, sizeof(*hpriv->phys), GFP_KERNEL); diff -u linux-azure-5.4.0/drivers/ata/libata-core.c linux-azure-5.4.0/drivers/ata/libata-core.c --- linux-azure-5.4.0/drivers/ata/libata-core.c +++ linux-azure-5.4.0/drivers/ata/libata-core.c @@ -2057,7 +2057,7 @@ retry: ata_tf_init(dev, &tf); - if (dev->dma_mode && ata_id_has_read_log_dma_ext(dev->id) && + if (ata_dma_enabled(dev) && ata_id_has_read_log_dma_ext(dev->id) && !(dev->horkage & ATA_HORKAGE_NO_DMA_LOG)) { tf.command = ATA_CMD_READ_LOG_DMA_EXT; tf.protocol = ATA_PROT_DMA; @@ -2252,6 +2252,25 @@ } +static bool ata_dev_check_adapter(struct ata_device *dev, + unsigned short vendor_id) +{ + struct pci_dev *pcidev = NULL; + struct device *parent_dev = NULL; + + for (parent_dev = dev->tdev.parent; parent_dev != NULL; + parent_dev = parent_dev->parent) { + if (dev_is_pci(parent_dev)) { + pcidev = to_pci_dev(parent_dev); + if (pcidev->vendor == vendor_id) + return true; + break; + } + } + + return false; +} + static int ata_dev_config_ncq(struct ata_device *dev, char *desc, size_t desc_sz) { @@ -2268,6 +2287,13 @@ snprintf(desc, desc_sz, "NCQ (not used)"); return 0; } + + if (dev->horkage & ATA_HORKAGE_NO_NCQ_ON_ATI && + ata_dev_check_adapter(dev, PCI_VENDOR_ID_ATI)) { + snprintf(desc, desc_sz, "NCQ (not used)"); + return 0; + } + if (ap->flags & ATA_FLAG_NCQ) { hdepth = min(ap->scsi_host->can_queue, ATA_MAX_QUEUE); dev->flags |= ATA_DFLAG_NCQ; @@ -4411,6 +4437,8 @@ { "VRFDFC22048UCHC-TE*", NULL, ATA_HORKAGE_NODMA }, /* Odd clown on sil3726/4726 PMPs */ { "Config Disk", NULL, ATA_HORKAGE_DISABLE }, + /* Similar story with ASMedia 1092 */ + { "ASMT109x- Config", NULL, ATA_HORKAGE_DISABLE }, /* Weird ATAPI devices */ { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, @@ -4514,6 +4542,10 @@ { "PIONEER DVD-RW DVR-212D", NULL, ATA_HORKAGE_NOSETXFER }, { "PIONEER DVD-RW DVR-216D", NULL, ATA_HORKAGE_NOSETXFER }, + /* These specific Pioneer models have LPM issues */ + { "PIONEER BD-RW BDR-207M", NULL, ATA_HORKAGE_NOLPM }, + { "PIONEER BD-RW BDR-205", NULL, ATA_HORKAGE_NOLPM }, + /* Crucial BX100 SSD 500GB has broken LPM support */ { "CT500BX100SSD1", NULL, ATA_HORKAGE_NOLPM }, @@ -4552,15 +4584,25 @@ ATA_HORKAGE_ZERO_AFTER_TRIM, }, { "Crucial_CT*MX100*", "MU01", ATA_HORKAGE_NO_NCQ_TRIM | ATA_HORKAGE_ZERO_AFTER_TRIM, }, + { "Samsung SSD 840 EVO*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | + ATA_HORKAGE_NO_DMA_LOG | + ATA_HORKAGE_ZERO_AFTER_TRIM, }, { "Samsung SSD 840*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | ATA_HORKAGE_ZERO_AFTER_TRIM, }, { "Samsung SSD 850*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | ATA_HORKAGE_ZERO_AFTER_TRIM, }, + { "Samsung SSD 860*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | + ATA_HORKAGE_ZERO_AFTER_TRIM | + ATA_HORKAGE_NO_NCQ_ON_ATI, }, + { "Samsung SSD 870*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | + ATA_HORKAGE_ZERO_AFTER_TRIM | + ATA_HORKAGE_NO_NCQ_ON_ATI, }, { "FCCT*M500*", NULL, ATA_HORKAGE_NO_NCQ_TRIM | ATA_HORKAGE_ZERO_AFTER_TRIM, }, /* devices that don't properly handle TRIM commands */ { "SuperSSpeed S238*", NULL, ATA_HORKAGE_NOTRIM, }, + { "M88V29*", NULL, ATA_HORKAGE_NOTRIM, }, /* * As defined, the DRAT (Deterministic Read After Trim) and RZAT @@ -6197,7 +6239,7 @@ const struct ata_port_info * const * ppi, int n_ports) { - const struct ata_port_info *pi; + const struct ata_port_info *pi = &ata_dummy_port_info; struct ata_host *host; int i, j; @@ -6205,7 +6247,7 @@ if (!host) return NULL; - for (i = 0, j = 0, pi = NULL; i < host->n_ports; i++) { + for (i = 0, j = 0; i < host->n_ports; i++) { struct ata_port *ap = host->ports[i]; if (ppi[j]) @@ -6394,7 +6436,7 @@ have_stop = 1; } - if (host->ops->host_stop) + if (host->ops && host->ops->host_stop) have_stop = 1; if (have_stop) { @@ -6912,6 +6954,8 @@ { "ncq", .horkage_off = ATA_HORKAGE_NONCQ }, { "noncqtrim", .horkage_on = ATA_HORKAGE_NO_NCQ_TRIM }, { "ncqtrim", .horkage_off = ATA_HORKAGE_NO_NCQ_TRIM }, + { "noncqati", .horkage_on = ATA_HORKAGE_NO_NCQ_ON_ATI }, + { "ncqati", .horkage_off = ATA_HORKAGE_NO_NCQ_ON_ATI }, { "dump_id", .horkage_on = ATA_HORKAGE_DUMP_ID }, { "pio0", .xfer_mask = 1 << (ATA_SHIFT_PIO + 0) }, { "pio1", .xfer_mask = 1 << (ATA_SHIFT_PIO + 1) }, diff -u linux-azure-5.4.0/drivers/ata/libata-scsi.c linux-azure-5.4.0/drivers/ata/libata-scsi.c --- linux-azure-5.4.0/drivers/ata/libata-scsi.c +++ linux-azure-5.4.0/drivers/ata/libata-scsi.c @@ -3164,8 +3164,19 @@ goto invalid_fld; } - if (ata_is_ncq(tf->protocol) && (cdb[2 + cdb_offset] & 0x3) == 0) - tf->protocol = ATA_PROT_NCQ_NODATA; + if ((cdb[2 + cdb_offset] & 0x3) == 0) { + /* + * When T_LENGTH is zero (No data is transferred), dir should + * be DMA_NONE. + */ + if (scmd->sc_data_direction != DMA_NONE) { + fp = 2 + cdb_offset; + goto invalid_fld; + } + + if (ata_is_ncq(tf->protocol)) + tf->protocol = ATA_PROT_NCQ_NODATA; + } /* enable LBA */ tf->flags |= ATA_TFLAG_LBA; diff -u linux-azure-5.4.0/drivers/ata/libata-sff.c linux-azure-5.4.0/drivers/ata/libata-sff.c --- linux-azure-5.4.0/drivers/ata/libata-sff.c +++ linux-azure-5.4.0/drivers/ata/libata-sff.c @@ -641,6 +641,20 @@ } EXPORT_SYMBOL_GPL(ata_sff_data_xfer32); +static void ata_pio_xfer(struct ata_queued_cmd *qc, struct page *page, + unsigned int offset, size_t xfer_size) +{ + bool do_write = (qc->tf.flags & ATA_TFLAG_WRITE); + unsigned char *buf; + + buf = kmap_atomic(page); + qc->ap->ops->sff_data_xfer(qc, buf + offset, xfer_size, do_write); + kunmap_atomic(buf); + + if (!do_write && !PageSlab(page)) + flush_dcache_page(page); +} + /** * ata_pio_sector - Transfer a sector of data. * @qc: Command on going @@ -652,11 +666,9 @@ */ static void ata_pio_sector(struct ata_queued_cmd *qc) { - int do_write = (qc->tf.flags & ATA_TFLAG_WRITE); struct ata_port *ap = qc->ap; struct page *page; unsigned int offset; - unsigned char *buf; if (!qc->cursg) { qc->curbytes = qc->nbytes; @@ -674,13 +686,20 @@ DPRINTK("data %s\n", qc->tf.flags & ATA_TFLAG_WRITE ? "write" : "read"); - /* do the actual data transfer */ - buf = kmap_atomic(page); - ap->ops->sff_data_xfer(qc, buf + offset, qc->sect_size, do_write); - kunmap_atomic(buf); - - if (!do_write && !PageSlab(page)) - flush_dcache_page(page); + /* + * Split the transfer when it splits a page boundary. Note that the + * split still has to be dword aligned like all ATA data transfers. + */ + WARN_ON_ONCE(offset % 4); + if (offset + qc->sect_size > PAGE_SIZE) { + unsigned int split_len = PAGE_SIZE - offset; + + ata_pio_xfer(qc, page, offset, split_len); + ata_pio_xfer(qc, nth_page(page, 1), 0, + qc->sect_size - split_len); + } else { + ata_pio_xfer(qc, page, offset, qc->sect_size); + } qc->curbytes += qc->sect_size; qc->cursg_ofs += qc->sect_size; diff -u linux-azure-5.4.0/drivers/ata/sata_fsl.c linux-azure-5.4.0/drivers/ata/sata_fsl.c --- linux-azure-5.4.0/drivers/ata/sata_fsl.c +++ linux-azure-5.4.0/drivers/ata/sata_fsl.c @@ -1394,6 +1394,14 @@ return 0; } +static void sata_fsl_host_stop(struct ata_host *host) +{ + struct sata_fsl_host_priv *host_priv = host->private_data; + + iounmap(host_priv->hcr_base); + kfree(host_priv); +} + /* * scsi mid-layer and libata interface structures */ @@ -1426,6 +1434,8 @@ .port_start = sata_fsl_port_start, .port_stop = sata_fsl_port_stop, + .host_stop = sata_fsl_host_stop, + .pmp_attach = sata_fsl_pmp_attach, .pmp_detach = sata_fsl_pmp_detach, }; @@ -1480,9 +1490,9 @@ host_priv->ssr_base = ssr_base; host_priv->csr_base = csr_base; - irq = irq_of_parse_and_map(ofdev->dev.of_node, 0); - if (!irq) { - dev_err(&ofdev->dev, "invalid irq from platform\n"); + irq = platform_get_irq(ofdev, 0); + if (irq < 0) { + retval = irq; goto error_exit_with_cleanup; } host_priv->irq = irq; @@ -1557,10 +1567,6 @@ ata_host_detach(host); - irq_dispose_mapping(host_priv->irq); - iounmap(host_priv->hcr_base); - kfree(host_priv); - return 0; } diff -u linux-azure-5.4.0/drivers/ata/sata_mv.c linux-azure-5.4.0/drivers/ata/sata_mv.c --- linux-azure-5.4.0/drivers/ata/sata_mv.c +++ linux-azure-5.4.0/drivers/ata/sata_mv.c @@ -3892,8 +3892,8 @@ break; default: - dev_err(host->dev, "BUG: invalid board index %u\n", board_idx); - return 1; + dev_alert(host->dev, "BUG: invalid board index %u\n", board_idx); + return -EINVAL; } hpriv->hp_flags = hp_flags; diff -u linux-azure-5.4.0/drivers/atm/eni.c linux-azure-5.4.0/drivers/atm/eni.c --- linux-azure-5.4.0/drivers/atm/eni.c +++ linux-azure-5.4.0/drivers/atm/eni.c @@ -1116,6 +1116,8 @@ } paddr = dma_map_single(&eni_dev->pci_dev->dev,skb->data,skb->len, DMA_TO_DEVICE); + if (dma_mapping_error(&eni_dev->pci_dev->dev, paddr)) + return enq_next; ENI_PRV_PADDR(skb) = paddr; /* prepare DMA queue entries */ j = 0; diff -u linux-azure-5.4.0/drivers/atm/firestream.c linux-azure-5.4.0/drivers/atm/firestream.c --- linux-azure-5.4.0/drivers/atm/firestream.c +++ linux-azure-5.4.0/drivers/atm/firestream.c @@ -1677,6 +1677,8 @@ dev->hw_base = pci_resource_start(pci_dev, 0); dev->base = ioremap(dev->hw_base, 0x1000); + if (!dev->base) + return 1; reset_chip (dev); diff -u linux-azure-5.4.0/drivers/atm/idt77252.c linux-azure-5.4.0/drivers/atm/idt77252.c --- linux-azure-5.4.0/drivers/atm/idt77252.c +++ linux-azure-5.4.0/drivers/atm/idt77252.c @@ -3766,6 +3766,7 @@ card = idt77252_chain; dev = card->atmdev; idt77252_chain = card->next; + del_timer_sync(&card->tst_timer); if (dev->phy->stop) dev->phy->stop(dev); diff -u linux-azure-5.4.0/drivers/atm/nicstar.c linux-azure-5.4.0/drivers/atm/nicstar.c --- linux-azure-5.4.0/drivers/atm/nicstar.c +++ linux-azure-5.4.0/drivers/atm/nicstar.c @@ -297,7 +297,7 @@ { XPRINTK("nicstar: nicstar_cleanup() called.\n"); - del_timer(&ns_timer); + del_timer_sync(&ns_timer); pci_unregister_driver(&nicstar_driver); @@ -525,6 +525,15 @@ /* Set the VPI/VCI MSb mask to zero so we can receive OAM cells */ writel(0x00000000, card->membase + VPM); + card->intcnt = 0; + if (request_irq + (pcidev->irq, &ns_irq_handler, IRQF_SHARED, "nicstar", card) != 0) { + pr_err("nicstar%d: can't allocate IRQ %d.\n", i, pcidev->irq); + error = 9; + ns_init_card_error(card, error); + return error; + } + /* Initialize TSQ */ card->tsq.org = dma_alloc_coherent(&card->pcidev->dev, NS_TSQSIZE + NS_TSQ_ALIGNMENT, @@ -751,15 +760,6 @@ card->efbie = 1; - card->intcnt = 0; - if (request_irq - (pcidev->irq, &ns_irq_handler, IRQF_SHARED, "nicstar", card) != 0) { - printk("nicstar%d: can't allocate IRQ %d.\n", i, pcidev->irq); - error = 9; - ns_init_card_error(card, error); - return error; - } - /* Register device */ card->atmdev = atm_dev_register("nicstar", &card->pcidev->dev, &atm_ops, -1, NULL); @@ -837,10 +837,12 @@ dev_kfree_skb_any(hb); } if (error >= 12) { - kfree(card->rsq.org); + dma_free_coherent(&card->pcidev->dev, NS_RSQSIZE + NS_RSQ_ALIGNMENT, + card->rsq.org, card->rsq.dma); } if (error >= 11) { - kfree(card->tsq.org); + dma_free_coherent(&card->pcidev->dev, NS_TSQSIZE + NS_TSQ_ALIGNMENT, + card->tsq.org, card->tsq.dma); } if (error >= 10) { free_irq(card->pcidev->irq, card); diff -u linux-azure-5.4.0/drivers/auxdisplay/ht16k33.c linux-azure-5.4.0/drivers/auxdisplay/ht16k33.c --- linux-azure-5.4.0/drivers/auxdisplay/ht16k33.c +++ linux-azure-5.4.0/drivers/auxdisplay/ht16k33.c @@ -219,6 +219,15 @@ .check_fb = ht16k33_bl_check_fb, }; +/* + * Blank events will be passed to the actual device handling the backlight when + * we return zero here. + */ +static int ht16k33_blank(int blank, struct fb_info *info) +{ + return 0; +} + static int ht16k33_mmap(struct fb_info *info, struct vm_area_struct *vma) { struct ht16k33_priv *priv = info->par; @@ -231,6 +240,7 @@ .owner = THIS_MODULE, .fb_read = fb_sys_read, .fb_write = fb_sys_write, + .fb_blank = ht16k33_blank, .fb_fillrect = sys_fillrect, .fb_copyarea = sys_copyarea, .fb_imageblit = sys_imageblit, @@ -418,6 +428,33 @@ if (err) return err; + /* Backlight */ + memset(&bl_props, 0, sizeof(struct backlight_properties)); + bl_props.type = BACKLIGHT_RAW; + bl_props.max_brightness = MAX_BRIGHTNESS; + + bl = devm_backlight_device_register(&client->dev, DRIVER_NAME"-bl", + &client->dev, priv, + &ht16k33_bl_ops, &bl_props); + if (IS_ERR(bl)) { + dev_err(&client->dev, "failed to register backlight\n"); + return PTR_ERR(bl); + } + + err = of_property_read_u32(node, "default-brightness-level", + &dft_brightness); + if (err) { + dft_brightness = MAX_BRIGHTNESS; + } else if (dft_brightness > MAX_BRIGHTNESS) { + dev_warn(&client->dev, + "invalid default brightness level: %u, using %u\n", + dft_brightness, MAX_BRIGHTNESS); + dft_brightness = MAX_BRIGHTNESS; + } + + bl->props.brightness = dft_brightness; + ht16k33_bl_update_status(bl); + /* Framebuffer (2 bytes per column) */ BUILD_BUG_ON(PAGE_SIZE < HT16K33_FB_SIZE); fbdev->buffer = (unsigned char *) get_zeroed_page(GFP_KERNEL); @@ -450,6 +487,7 @@ fbdev->info->screen_size = HT16K33_FB_SIZE; fbdev->info->fix = ht16k33_fb_fix; fbdev->info->var = ht16k33_fb_var; + fbdev->info->bl_dev = bl; fbdev->info->pseudo_palette = NULL; fbdev->info->flags = FBINFO_FLAG_DEFAULT; fbdev->info->par = priv; @@ -462,34 +500,6 @@ if (err) goto err_fbdev_unregister; - /* Backlight */ - memset(&bl_props, 0, sizeof(struct backlight_properties)); - bl_props.type = BACKLIGHT_RAW; - bl_props.max_brightness = MAX_BRIGHTNESS; - - bl = devm_backlight_device_register(&client->dev, DRIVER_NAME"-bl", - &client->dev, priv, - &ht16k33_bl_ops, &bl_props); - if (IS_ERR(bl)) { - dev_err(&client->dev, "failed to register backlight\n"); - err = PTR_ERR(bl); - goto err_fbdev_unregister; - } - - err = of_property_read_u32(node, "default-brightness-level", - &dft_brightness); - if (err) { - dft_brightness = MAX_BRIGHTNESS; - } else if (dft_brightness > MAX_BRIGHTNESS) { - dev_warn(&client->dev, - "invalid default brightness level: %u, using %u\n", - dft_brightness, MAX_BRIGHTNESS); - dft_brightness = MAX_BRIGHTNESS; - } - - bl->props.brightness = dft_brightness; - ht16k33_bl_update_status(bl); - ht16k33_fb_queue(priv); return 0; diff -u linux-azure-5.4.0/drivers/base/arch_topology.c linux-azure-5.4.0/drivers/base/arch_topology.c --- linux-azure-5.4.0/drivers/base/arch_topology.c +++ linux-azure-5.4.0/drivers/base/arch_topology.c @@ -48,7 +48,7 @@ { struct cpu *cpu = container_of(dev, struct cpu, dev); - return sprintf(buf, "%lu\n", topology_get_cpu_scale(cpu->dev.id)); + return sysfs_emit(buf, "%lu\n", topology_get_cpu_scale(cpu->dev.id)); } static void update_topology_flags_workfn(struct work_struct *work); @@ -457,7 +457,7 @@ for_each_online_cpu(cpu) { cpu_topo = &cpu_topology[cpu]; - if (cpuid_topo->llc_id == cpu_topo->llc_id) { + if (cpu_topo->llc_id != -1 && cpuid_topo->llc_id == cpu_topo->llc_id) { cpumask_set_cpu(cpu, &cpuid_topo->llc_sibling); cpumask_set_cpu(cpuid, &cpu_topo->llc_sibling); } @@ -540,2 +540,21 @@ } + +void store_cpu_topology(unsigned int cpuid) +{ + struct cpu_topology *cpuid_topo = &cpu_topology[cpuid]; + + if (cpuid_topo->package_id != -1) + goto topology_populated; + + cpuid_topo->thread_id = -1; + cpuid_topo->core_id = cpuid; + cpuid_topo->package_id = cpu_to_node(cpuid); + + pr_debug("CPU%u: package %d core %d thread %d\n", + cpuid, cpuid_topo->package_id, cpuid_topo->core_id, + cpuid_topo->thread_id); + +topology_populated: + update_siblings_masks(cpuid); +} #endif diff -u linux-azure-5.4.0/drivers/base/core.c linux-azure-5.4.0/drivers/base/core.c --- linux-azure-5.4.0/drivers/base/core.c +++ linux-azure-5.4.0/drivers/base/core.c @@ -1027,7 +1027,7 @@ char *buf) { struct dev_ext_attribute *ea = to_ext_attr(attr); - return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); + return sysfs_emit(buf, "%lx\n", *(unsigned long *)(ea->var)); } EXPORT_SYMBOL_GPL(device_show_ulong); @@ -1057,7 +1057,7 @@ { struct dev_ext_attribute *ea = to_ext_attr(attr); - return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); + return sysfs_emit(buf, "%d\n", *(int *)(ea->var)); } EXPORT_SYMBOL_GPL(device_show_int); @@ -1078,7 +1078,7 @@ { struct dev_ext_attribute *ea = to_ext_attr(attr); - return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var)); + return sysfs_emit(buf, "%d\n", *(bool *)(ea->var)); } EXPORT_SYMBOL_GPL(device_show_bool); @@ -1310,7 +1310,7 @@ device_lock(dev); val = !dev->offline; device_unlock(dev); - return sprintf(buf, "%u\n", val); + return sysfs_emit(buf, "%u\n", val); } static ssize_t online_store(struct device *dev, struct device_attribute *attr, @@ -1722,6 +1722,7 @@ device_pm_init(dev); set_dev_node(dev, -1); #ifdef CONFIG_GENERIC_MSI_IRQ + raw_spin_lock_init(&dev->msi_lock); INIT_LIST_HEAD(&dev->msi_list); #endif INIT_LIST_HEAD(&dev->links.consumers); diff -u linux-azure-5.4.0/drivers/base/cpu.c linux-azure-5.4.0/drivers/base/cpu.c --- linux-azure-5.4.0/drivers/base/cpu.c +++ linux-azure-5.4.0/drivers/base/cpu.c @@ -156,7 +156,7 @@ * operation should be safe. No locking required. */ addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum)); - rc = sprintf(buf, "%Lx\n", addr); + rc = sysfs_emit(buf, "%Lx\n", addr); return rc; } static DEVICE_ATTR(crash_notes, 0400, show_crash_notes, NULL); @@ -167,7 +167,7 @@ { ssize_t rc; - rc = sprintf(buf, "%zu\n", sizeof(note_buf_t)); + rc = sysfs_emit(buf, "%zu\n", sizeof(note_buf_t)); return rc; } static DEVICE_ATTR(crash_notes_size, 0400, show_crash_notes_size, NULL); @@ -231,8 +231,7 @@ static ssize_t print_cpus_kernel_max(struct device *dev, struct device_attribute *attr, char *buf) { - int n = snprintf(buf, PAGE_SIZE-2, "%d\n", NR_CPUS - 1); - return n; + return sprintf(buf, "%d\n", NR_CPUS - 1); } static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL); @@ -272,7 +271,7 @@ static ssize_t print_cpus_isolated(struct device *dev, struct device_attribute *attr, char *buf) { - int n = 0, len = PAGE_SIZE-2; + int n; cpumask_var_t isolated; if (!alloc_cpumask_var(&isolated, GFP_KERNEL)) @@ -280,7 +279,7 @@ cpumask_andnot(isolated, cpu_possible_mask, housekeeping_cpumask(HK_FLAG_DOMAIN)); - n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(isolated)); + n = sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(isolated)); free_cpumask_var(isolated); @@ -292,11 +291,7 @@ static ssize_t print_cpus_nohz_full(struct device *dev, struct device_attribute *attr, char *buf) { - int n = 0, len = PAGE_SIZE-2; - - n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(tick_nohz_full_mask)); - - return n; + return sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(tick_nohz_full_mask)); } static DEVICE_ATTR(nohz_full, 0444, print_cpus_nohz_full, NULL); #endif @@ -328,8 +323,8 @@ ssize_t n; u32 i; - n = sprintf(buf, "cpu:type:" CPU_FEATURE_TYPEFMT ":feature:", - CPU_FEATURE_TYPEVAL); + n = sysfs_emit(buf, "cpu:type:" CPU_FEATURE_TYPEFMT ":feature:", + CPU_FEATURE_TYPEVAL); for (i = 0; i < MAX_CPU_FEATURES; i++) if (cpu_have_feature(i)) { @@ -521,56 +516,68 @@ ssize_t __weak cpu_show_meltdown(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_spec_store_bypass(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_l1tf(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_mds(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_tsx_async_abort(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_itlb_multihit(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); } ssize_t __weak cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "Not affected\n"); + return sysfs_emit(buf, "Not affected\n"); +} + +ssize_t __weak cpu_show_mmio_stale_data(struct device *dev, + struct device_attribute *attr, char *buf) +{ + return sysfs_emit(buf, "Not affected\n"); +} + +ssize_t __weak cpu_show_retbleed(struct device *dev, + struct device_attribute *attr, char *buf) +{ + return sysfs_emit(buf, "Not affected\n"); } static DEVICE_ATTR(meltdown, 0444, cpu_show_meltdown, NULL); @@ -582,6 +589,8 @@ static DEVICE_ATTR(tsx_async_abort, 0444, cpu_show_tsx_async_abort, NULL); static DEVICE_ATTR(itlb_multihit, 0444, cpu_show_itlb_multihit, NULL); static DEVICE_ATTR(srbds, 0444, cpu_show_srbds, NULL); +static DEVICE_ATTR(mmio_stale_data, 0444, cpu_show_mmio_stale_data, NULL); +static DEVICE_ATTR(retbleed, 0444, cpu_show_retbleed, NULL); static struct attribute *cpu_root_vulnerabilities_attrs[] = { &dev_attr_meltdown.attr, @@ -593,6 +602,8 @@ &dev_attr_tsx_async_abort.attr, &dev_attr_itlb_multihit.attr, &dev_attr_srbds.attr, + &dev_attr_mmio_stale_data.attr, + &dev_attr_retbleed.attr, NULL }; diff -u linux-azure-5.4.0/drivers/base/dd.c linux-azure-5.4.0/drivers/base/dd.c --- linux-azure-5.4.0/drivers/base/dd.c +++ linux-azure-5.4.0/drivers/base/dd.c @@ -747,7 +747,7 @@ "Too long list of driver names for 'driver_async_probe'!\n"); strlcpy(async_probe_drv_names, buf, ASYNC_DRV_NAMES_MAX_LEN); - return 0; + return 1; } __setup("driver_async_probe=", save_async_options); @@ -818,6 +818,11 @@ } else if (ret == -EPROBE_DEFER) { dev_dbg(dev, "Device match requests probe deferral\n"); driver_deferred_probe_add(dev); + /* + * Device can't match with a driver right now, so don't attempt + * to match or bind with other drivers on the bus. + */ + return ret; } else if (ret < 0) { dev_dbg(dev, "Bus failed to match device: %d", ret); return ret; @@ -873,6 +878,7 @@ static int __device_attach(struct device *dev, bool allow_async) { int ret = 0; + bool async = false; device_lock(dev); if (dev->p->dead) { @@ -911,7 +917,7 @@ */ dev_dbg(dev, "scheduling asynchronous probe\n"); get_device(dev); - async_schedule_dev(__device_attach_async_helper, dev); + async = true; } else { pm_request_idle(dev); } @@ -921,6 +927,8 @@ } out_unlock: device_unlock(dev); + if (async) + async_schedule_dev(__device_attach_async_helper, dev); return ret; } @@ -1034,6 +1042,7 @@ static int __driver_attach(struct device *dev, void *data) { struct device_driver *drv = data; + bool async = false; int ret; /* @@ -1053,6 +1062,11 @@ } else if (ret == -EPROBE_DEFER) { dev_dbg(dev, "Device match requests probe deferral\n"); driver_deferred_probe_add(dev); + /* + * Driver could not match with device, but may match with + * another device on the bus. + */ + return 0; } else if (ret < 0) { dev_dbg(dev, "Bus failed to match device: %d", ret); return ret; @@ -1071,9 +1085,11 @@ if (!dev->driver) { get_device(dev); dev->p->async_driver = drv; - async_schedule_dev(__driver_attach_async_helper, dev); + async = true; } device_unlock(dev); + if (async) + async_schedule_dev(__driver_attach_async_helper, dev); return 0; } diff -u linux-azure-5.4.0/drivers/base/firmware_loader/fallback.c linux-azure-5.4.0/drivers/base/firmware_loader/fallback.c --- linux-azure-5.4.0/drivers/base/firmware_loader/fallback.c +++ linux-azure-5.4.0/drivers/base/firmware_loader/fallback.c @@ -86,12 +86,11 @@ { /* * There is a small window in which user can write to 'loading' - * between loading done and disappearance of 'loading' + * between loading done/aborted and disappearance of 'loading' */ - if (fw_sysfs_done(fw_priv)) + if (fw_state_is_aborted(fw_priv) || fw_sysfs_done(fw_priv)) return; - list_del_init(&fw_priv->pending_list); fw_state_aborted(fw_priv); } @@ -216,7 +215,7 @@ loading = fw_sysfs_loading(fw_sysfs->fw_priv); mutex_unlock(&fw_lock); - return sprintf(buf, "%d\n", loading); + return sysfs_emit(buf, "%d\n", loading); } /** @@ -277,7 +276,6 @@ * Same logic as fw_load_abort, only the DONE bit * is ignored and we set ABORT only on failure. */ - list_del_init(&fw_priv->pending_list); if (rc) { fw_state_aborted(fw_priv); written = rc; @@ -512,6 +510,11 @@ } mutex_lock(&fw_lock); + if (fw_state_is_aborted(fw_priv)) { + mutex_unlock(&fw_lock); + retval = -EINTR; + goto out; + } list_add(&fw_priv->pending_list, &pending_fw_head); mutex_unlock(&fw_lock); @@ -534,11 +537,10 @@ if (fw_state_is_aborted(fw_priv)) { if (retval == -ERESTARTSYS) retval = -EINTR; - else - retval = -EAGAIN; } else if (fw_priv->is_paged_buf && !fw_priv->data) retval = -ENOMEM; +out: device_del(f_dev); err_put_dev: put_device(f_dev); diff -u linux-azure-5.4.0/drivers/base/firmware_loader/firmware.h linux-azure-5.4.0/drivers/base/firmware_loader/firmware.h --- linux-azure-5.4.0/drivers/base/firmware_loader/firmware.h +++ linux-azure-5.4.0/drivers/base/firmware_loader/firmware.h @@ -108,8 +108,16 @@ WRITE_ONCE(fw_st->status, status); - if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED) + if (status == FW_STATUS_DONE || status == FW_STATUS_ABORTED) { +#ifdef CONFIG_FW_LOADER_USER_HELPER + /* + * Doing this here ensures that the fw_priv is deleted from + * the pending list in all abort/done paths. + */ + list_del_init(&fw_priv->pending_list); +#endif complete_all(&fw_st->completion); + } } static inline void fw_state_aborted(struct fw_priv *fw_priv) diff -u linux-azure-5.4.0/drivers/base/firmware_loader/main.c linux-azure-5.4.0/drivers/base/firmware_loader/main.c --- linux-azure-5.4.0/drivers/base/firmware_loader/main.c +++ linux-azure-5.4.0/drivers/base/firmware_loader/main.c @@ -98,12 +98,15 @@ extern struct builtin_fw __start_builtin_fw[]; extern struct builtin_fw __end_builtin_fw[]; -static void fw_copy_to_prealloc_buf(struct firmware *fw, +static bool fw_copy_to_prealloc_buf(struct firmware *fw, void *buf, size_t size) { - if (!buf || size < fw->size) - return; + if (!buf) + return true; + if (size < fw->size) + return false; memcpy(buf, fw->data, fw->size); + return true; } static bool fw_get_builtin_firmware(struct firmware *fw, const char *name, @@ -115,9 +118,7 @@ if (strcmp(name, b_fw->name) == 0) { fw->size = b_fw->size; fw->data = b_fw->data; - fw_copy_to_prealloc_buf(fw, buf, size); - - return true; + return fw_copy_to_prealloc_buf(fw, buf, size); } } @@ -747,8 +748,10 @@ return; fw_priv = fw->priv; + mutex_lock(&fw_lock); if (!fw_state_is_aborted(fw_priv)) fw_state_aborted(fw_priv); + mutex_unlock(&fw_lock); } /* called from request_firmware() and request_firmware_work_func() */ @@ -758,6 +761,8 @@ enum fw_opt opt_flags) { struct firmware *fw = NULL; + struct cred *kern_cred = NULL; + const struct cred *old_cred; int ret; if (!firmware_p) @@ -773,6 +778,18 @@ if (ret <= 0) /* error or already assigned */ goto out; + /* + * We are about to try to access the firmware file. Because we may have been + * called by a driver when serving an unrelated request from userland, we use + * the kernel credentials to read the file. + */ + kern_cred = prepare_kernel_cred(NULL); + if (!kern_cred) { + ret = -ENOMEM; + goto out; + } + old_cred = override_creds(kern_cred); + ret = fw_get_filesystem_firmware(device, fw->priv, "", NULL); #ifdef CONFIG_FW_LOADER_COMPRESS if (ret == -ENOENT) @@ -789,6 +806,9 @@ } else ret = assign_fw(fw, device, opt_flags); + revert_creds(old_cred); + put_cred(kern_cred); + out: if (ret < 0) { fw_abort_batch_reqs(fw); diff -u linux-azure-5.4.0/drivers/base/memory.c linux-azure-5.4.0/drivers/base/memory.c --- linux-azure-5.4.0/drivers/base/memory.c +++ linux-azure-5.4.0/drivers/base/memory.c @@ -110,7 +110,7 @@ unsigned long phys_index; phys_index = mem->start_section_nr / sections_per_block; - return sprintf(buf, "%08lx\n", phys_index); + return sysfs_emit(buf, "%08lx\n", phys_index); } /* @@ -120,7 +120,7 @@ static ssize_t removable_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%d\n", (int)IS_ENABLED(CONFIG_MEMORY_HOTREMOVE)); + return sysfs_emit(buf, "%d\n", (int)IS_ENABLED(CONFIG_MEMORY_HOTREMOVE)); } /* @@ -138,17 +138,17 @@ */ switch (mem->state) { case MEM_ONLINE: - len = sprintf(buf, "online\n"); + len = sysfs_emit(buf, "online\n"); break; case MEM_OFFLINE: - len = sprintf(buf, "offline\n"); + len = sysfs_emit(buf, "offline\n"); break; case MEM_GOING_OFFLINE: - len = sprintf(buf, "going-offline\n"); + len = sysfs_emit(buf, "going-offline\n"); break; default: - len = sprintf(buf, "ERROR-UNKNOWN-%ld\n", - mem->state); + len = sysfs_emit(buf, "ERROR-UNKNOWN-%ld\n", + mem->state); WARN_ON(1); break; } @@ -358,7 +358,7 @@ struct device_attribute *attr, char *buf) { struct memory_block *mem = to_memory_block(dev); - return sprintf(buf, "%d\n", mem->phys_device); + return sysfs_emit(buf, "%d\n", mem->phys_device); } #ifdef CONFIG_MEMORY_HOTREMOVE @@ -396,7 +396,7 @@ */ if (!test_pages_in_a_zone(start_pfn, start_pfn + nr_pages, &valid_start_pfn, &valid_end_pfn)) - return sprintf(buf, "none\n"); + return sysfs_emit(buf, "none\n"); start_pfn = valid_start_pfn; strcat(buf, page_zone(pfn_to_page(start_pfn))->name); goto out; @@ -429,7 +429,7 @@ static ssize_t block_size_bytes_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%lx\n", memory_block_size_bytes()); + return sysfs_emit(buf, "%lx\n", memory_block_size_bytes()); } static DEVICE_ATTR_RO(block_size_bytes); @@ -442,9 +442,9 @@ struct device_attribute *attr, char *buf) { if (memhp_auto_online) - return sprintf(buf, "online\n"); + return sysfs_emit(buf, "online\n"); else - return sprintf(buf, "offline\n"); + return sysfs_emit(buf, "offline\n"); } static ssize_t auto_online_blocks_store(struct device *dev, diff -u linux-azure-5.4.0/drivers/base/node.c linux-azure-5.4.0/drivers/base/node.c --- linux-azure-5.4.0/drivers/base/node.c +++ linux-azure-5.4.0/drivers/base/node.c @@ -368,7 +368,7 @@ si_meminfo_node(&i, nid); sreclaimable = node_page_state(pgdat, NR_SLAB_RECLAIMABLE); sunreclaimable = node_page_state(pgdat, NR_SLAB_UNRECLAIMABLE); - n = sprintf(buf, + n = sysfs_emit(buf, "Node %d MemTotal: %8lu kB\n" "Node %d MemFree: %8lu kB\n" "Node %d MemUsed: %8lu kB\n" @@ -469,19 +469,19 @@ static ssize_t node_read_numastat(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, - "numa_hit %lu\n" - "numa_miss %lu\n" - "numa_foreign %lu\n" - "interleave_hit %lu\n" - "local_node %lu\n" - "other_node %lu\n", - sum_zone_numa_state(dev->id, NUMA_HIT), - sum_zone_numa_state(dev->id, NUMA_MISS), - sum_zone_numa_state(dev->id, NUMA_FOREIGN), - sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT), - sum_zone_numa_state(dev->id, NUMA_LOCAL), - sum_zone_numa_state(dev->id, NUMA_OTHER)); + return sysfs_emit(buf, + "numa_hit %lu\n" + "numa_miss %lu\n" + "numa_foreign %lu\n" + "interleave_hit %lu\n" + "local_node %lu\n" + "other_node %lu\n", + sum_zone_numa_state(dev->id, NUMA_HIT), + sum_zone_numa_state(dev->id, NUMA_MISS), + sum_zone_numa_state(dev->id, NUMA_FOREIGN), + sum_zone_numa_state(dev->id, NUMA_INTERLEAVE_HIT), + sum_zone_numa_state(dev->id, NUMA_LOCAL), + sum_zone_numa_state(dev->id, NUMA_OTHER)); } static DEVICE_ATTR(numastat, S_IRUGO, node_read_numastat, NULL); @@ -641,6 +641,7 @@ */ void unregister_node(struct node *node) { + compaction_unregister_node(node); hugetlb_unregister_node(node); /* no-op, if memoryless node */ node_remove_accesses(node); node_remove_caches(node); diff -u linux-azure-5.4.0/drivers/base/platform.c linux-azure-5.4.0/drivers/base/platform.c --- linux-azure-5.4.0/drivers/base/platform.c +++ linux-azure-5.4.0/drivers/base/platform.c @@ -1009,7 +1009,7 @@ ssize_t len; device_lock(dev); - len = sprintf(buf, "%s\n", pdev->driver_override); + len = sysfs_emit(buf, "%s\n", pdev->driver_override); device_unlock(dev); return len; } diff -u linux-azure-5.4.0/drivers/base/power/domain.c linux-azure-5.4.0/drivers/base/power/domain.c --- linux-azure-5.4.0/drivers/base/power/domain.c +++ linux-azure-5.4.0/drivers/base/power/domain.c @@ -2622,6 +2622,10 @@ np = it.node; if (!of_match_node(idle_state_match, np)) continue; + + if (!of_device_is_available(np)) + continue; + if (states) { ret = genpd_parse_state(&states[i], np); if (ret) { diff -u linux-azure-5.4.0/drivers/base/power/main.c linux-azure-5.4.0/drivers/base/power/main.c --- linux-azure-5.4.0/drivers/base/power/main.c +++ linux-azure-5.4.0/drivers/base/power/main.c @@ -2121,7 +2121,9 @@ void device_pm_check_callbacks(struct device *dev) { - spin_lock_irq(&dev->power.lock); + unsigned long flags; + + spin_lock_irqsave(&dev->power.lock, flags); dev->power.no_pm_callbacks = (!dev->bus || (pm_ops_is_empty(dev->bus->pm) && !dev->bus->suspend && !dev->bus->resume)) && @@ -2130,7 +2132,7 @@ (!dev->pm_domain || pm_ops_is_empty(&dev->pm_domain->ops)) && (!dev->driver || (pm_ops_is_empty(dev->driver->pm) && !dev->driver->suspend && !dev->driver->resume)); - spin_unlock_irq(&dev->power.lock); + spin_unlock_irqrestore(&dev->power.lock, flags); } bool dev_pm_smart_suspend_and_suspended(struct device *dev) diff -u linux-azure-5.4.0/drivers/base/power/sysfs.c linux-azure-5.4.0/drivers/base/power/sysfs.c --- linux-azure-5.4.0/drivers/base/power/sysfs.c +++ linux-azure-5.4.0/drivers/base/power/sysfs.c @@ -100,7 +100,7 @@ static ssize_t control_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%s\n", + return sysfs_emit(buf, "%s\n", dev->power.runtime_auto ? ctrl_auto : ctrl_on); } @@ -126,7 +126,7 @@ int ret; u64 tmp = pm_runtime_active_time(dev); do_div(tmp, NSEC_PER_MSEC); - ret = sprintf(buf, "%llu\n", tmp); + ret = sysfs_emit(buf, "%llu\n", tmp); return ret; } @@ -138,7 +138,7 @@ int ret; u64 tmp = pm_runtime_suspended_time(dev); do_div(tmp, NSEC_PER_MSEC); - ret = sprintf(buf, "%llu\n", tmp); + ret = sysfs_emit(buf, "%llu\n", tmp); return ret; } @@ -171,7 +171,7 @@ return -EIO; } } - return sprintf(buf, p); + return sysfs_emit(buf, p); } static DEVICE_ATTR_RO(runtime_status); @@ -181,7 +181,7 @@ { if (!dev->power.use_autosuspend) return -EIO; - return sprintf(buf, "%d\n", dev->power.autosuspend_delay); + return sysfs_emit(buf, "%d\n", dev->power.autosuspend_delay); } static ssize_t autosuspend_delay_ms_store(struct device *dev, @@ -210,11 +210,11 @@ s32 value = dev_pm_qos_requested_resume_latency(dev); if (value == 0) - return sprintf(buf, "n/a\n"); + return sysfs_emit(buf, "n/a\n"); if (value == PM_QOS_RESUME_LATENCY_NO_CONSTRAINT) value = 0; - return sprintf(buf, "%d\n", value); + return sysfs_emit(buf, "%d\n", value); } static ssize_t pm_qos_resume_latency_us_store(struct device *dev, @@ -254,11 +254,11 @@ s32 value = dev_pm_qos_get_user_latency_tolerance(dev); if (value < 0) - return sprintf(buf, "auto\n"); + return sysfs_emit(buf, "auto\n"); if (value == PM_QOS_LATENCY_ANY) - return sprintf(buf, "any\n"); + return sysfs_emit(buf, "any\n"); - return sprintf(buf, "%d\n", value); + return sysfs_emit(buf, "%d\n", value); } static ssize_t pm_qos_latency_tolerance_us_store(struct device *dev, @@ -290,8 +290,8 @@ struct device_attribute *attr, char *buf) { - return sprintf(buf, "%d\n", !!(dev_pm_qos_requested_flags(dev) - & PM_QOS_FLAG_NO_POWER_OFF)); + return sysfs_emit(buf, "%d\n", !!(dev_pm_qos_requested_flags(dev) + & PM_QOS_FLAG_NO_POWER_OFF)); } static ssize_t pm_qos_no_power_off_store(struct device *dev, @@ -319,9 +319,9 @@ static ssize_t wakeup_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%s\n", device_can_wakeup(dev) - ? (device_may_wakeup(dev) ? _enabled : _disabled) - : ""); + return sysfs_emit(buf, "%s\n", device_can_wakeup(dev) + ? (device_may_wakeup(dev) ? _enabled : _disabled) + : ""); } static ssize_t wakeup_store(struct device *dev, struct device_attribute *attr, @@ -521,7 +521,7 @@ static ssize_t runtime_usage_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%d\n", atomic_read(&dev->power.usage_count)); + return sysfs_emit(buf, "%d\n", atomic_read(&dev->power.usage_count)); } static DEVICE_ATTR_RO(runtime_usage); @@ -529,8 +529,8 @@ struct device_attribute *attr, char *buf) { - return sprintf(buf, "%d\n", dev->power.ignore_children ? - 0 : atomic_read(&dev->power.child_count)); + return sysfs_emit(buf, "%d\n", dev->power.ignore_children ? + 0 : atomic_read(&dev->power.child_count)); } static DEVICE_ATTR_RO(runtime_active_kids); @@ -538,12 +538,12 @@ struct device_attribute *attr, char *buf) { if (dev->power.disable_depth && (dev->power.runtime_auto == false)) - return sprintf(buf, "disabled & forbidden\n"); + return sysfs_emit(buf, "disabled & forbidden\n"); if (dev->power.disable_depth) - return sprintf(buf, "disabled\n"); + return sysfs_emit(buf, "disabled\n"); if (dev->power.runtime_auto == false) - return sprintf(buf, "forbidden\n"); - return sprintf(buf, "enabled\n"); + return sysfs_emit(buf, "forbidden\n"); + return sysfs_emit(buf, "enabled\n"); } static DEVICE_ATTR_RO(runtime_enabled); @@ -551,9 +551,9 @@ static ssize_t async_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "%s\n", - device_async_suspend_enabled(dev) ? - _enabled : _disabled); + return sysfs_emit(buf, "%s\n", + device_async_suspend_enabled(dev) ? + _enabled : _disabled); } static ssize_t async_store(struct device *dev, struct device_attribute *attr, diff -u linux-azure-5.4.0/drivers/base/power/wakeup.c linux-azure-5.4.0/drivers/base/power/wakeup.c --- linux-azure-5.4.0/drivers/base/power/wakeup.c +++ linux-azure-5.4.0/drivers/base/power/wakeup.c @@ -31,7 +31,8 @@ bool events_check_enabled __read_mostly; /* First wakeup IRQ seen by the kernel in the last cycle. */ -unsigned int pm_wakeup_irq __read_mostly; +static unsigned int wakeup_irq[2] __read_mostly; +static DEFINE_RAW_SPINLOCK(wakeup_irq_lock); /* If greater than 0 and the system is suspending, terminate the suspend. */ static atomic_t pm_abort_suspend __read_mostly; @@ -884,19 +885,45 @@ atomic_dec_if_positive(&pm_abort_suspend); } -void pm_wakeup_clear(bool reset) +void pm_wakeup_clear(unsigned int irq_number) { - pm_wakeup_irq = 0; - if (reset) + raw_spin_lock_irq(&wakeup_irq_lock); + + if (irq_number && wakeup_irq[0] == irq_number) + wakeup_irq[0] = wakeup_irq[1]; + else + wakeup_irq[0] = 0; + + wakeup_irq[1] = 0; + + raw_spin_unlock_irq(&wakeup_irq_lock); + + if (!irq_number) atomic_set(&pm_abort_suspend, 0); } void pm_system_irq_wakeup(unsigned int irq_number) { - if (pm_wakeup_irq == 0) { - pm_wakeup_irq = irq_number; + unsigned long flags; + + raw_spin_lock_irqsave(&wakeup_irq_lock, flags); + + if (wakeup_irq[0] == 0) + wakeup_irq[0] = irq_number; + else if (wakeup_irq[1] == 0) + wakeup_irq[1] = irq_number; + else + irq_number = 0; + + raw_spin_unlock_irqrestore(&wakeup_irq_lock, flags); + + if (irq_number) pm_system_wakeup(); - } +} + +unsigned int pm_wakeup_irq(void) +{ + return wakeup_irq[0]; } /** diff -u linux-azure-5.4.0/drivers/base/regmap/regmap.c linux-azure-5.4.0/drivers/base/regmap/regmap.c --- linux-azure-5.4.0/drivers/base/regmap/regmap.c +++ linux-azure-5.4.0/drivers/base/regmap/regmap.c @@ -1505,7 +1505,7 @@ if (ret) { dev_err(map->dev, "Error in caching of register: %x ret: %d\n", - reg + i, ret); + reg + regmap_get_offset(map, i), ret); return ret; } } diff -u linux-azure-5.4.0/drivers/block/Kconfig linux-azure-5.4.0/drivers/block/Kconfig --- linux-azure-5.4.0/drivers/block/Kconfig +++ linux-azure-5.4.0/drivers/block/Kconfig @@ -39,6 +39,22 @@ To compile this driver as a module, choose M here: the module will be called floppy. +config BLK_DEV_FD_RAWCMD + bool "Support for raw floppy disk commands (DEPRECATED)" + depends on BLK_DEV_FD + help + If you want to use actual physical floppies and expect to do + special low-level hardware accesses to them (access and use + non-standard formats, for example), then enable this. + + Note that the code enabled by this option is rarely used and + might be unstable or insecure, and distros should not enable it. + + Note: FDRAWCMD is deprecated and will be removed from the kernel + in the near future. + + If unsure, say N. + config AMIGA_FLOPPY tristate "Amiga floppy support" depends on AMIGA @@ -230,7 +246,7 @@ dynamically allocated with the /dev/loop-control interface. config BLK_DEV_CRYPTOLOOP - tristate "Cryptoloop Support" + tristate "Cryptoloop Support (DEPRECATED)" select CRYPTO select CRYPTO_CBC depends on BLK_DEV_LOOP @@ -242,7 +258,7 @@ WARNING: This device is not safe for journaled file systems like ext3 or Reiserfs. Please use the Device Mapper crypto module instead, which can be configured to be on-disk compatible with the - cryptoloop device. + cryptoloop device. cryptoloop support will be removed in Linux 5.16. source "drivers/block/drbd/Kconfig" diff -u linux-azure-5.4.0/drivers/block/floppy.c linux-azure-5.4.0/drivers/block/floppy.c --- linux-azure-5.4.0/drivers/block/floppy.c +++ linux-azure-5.4.0/drivers/block/floppy.c @@ -521,8 +521,8 @@ static DECLARE_WAIT_QUEUE_HEAD(fdc_wait); static DECLARE_WAIT_QUEUE_HEAD(command_done); -/* Errors during formatting are counted here. */ -static int format_errors; +/* errors encountered on the current (or last) request */ +static int floppy_errors; /* Format request descriptor. */ static struct format_descr format_req; @@ -542,7 +542,6 @@ static char *floppy_track_buffer; static int max_buffer_sectors; -static int *errors; typedef void (*done_f)(int); static const struct cont_t { void (*interrupt)(void); @@ -1003,7 +1002,7 @@ static void cancel_activity(void) { do_floppy = NULL; - cancel_delayed_work_sync(&fd_timer); + cancel_delayed_work(&fd_timer); cancel_work_sync(&floppy_work); } @@ -1435,7 +1434,7 @@ if (DP->flags & FTD_MSG) DPRINT("Over/Underrun - retrying\n"); bad = 0; - } else if (*errors >= DP->max_errors.reporting) { + } else if (floppy_errors >= DP->max_errors.reporting) { print_errors(); } if (ST2 & ST2_WC || ST2 & ST2_BC) @@ -2055,7 +2054,7 @@ if (!next_valid_format()) return; } - err_count = ++(*errors); + err_count = ++floppy_errors; INFBOUND(DRWE->badness, err_count); if (err_count > DP->max_errors.abort) cont->done(0); @@ -2200,9 +2199,8 @@ return -EINVAL; } format_req = *tmp_format_req; - format_errors = 0; cont = &format_cont; - errors = &format_errors; + floppy_errors = 0; ret = wait_til_done(redo_format, true); if (ret == -EINTR) return -EINTR; @@ -2677,7 +2675,7 @@ */ if (!direct || (indirect * 2 > direct * 3 && - *errors < DP->max_errors.read_track && + floppy_errors < DP->max_errors.read_track && ((!probing || (DP->read_track & (1 << DRS->probed_format)))))) { max_size = blk_rq_sectors(current_req); @@ -2801,10 +2799,11 @@ current_req = list_first_entry_or_null(&floppy_reqs, struct request, queuelist); if (current_req) { - current_req->error_count = 0; + floppy_errors = 0; list_del_init(¤t_req->queuelist); + return 1; } - return current_req != NULL; + return 0; } static void redo_fd_request(void) @@ -2860,7 +2859,6 @@ _floppy = floppy_type + DP->autodetect[DRS->probed_format]; } else probing = 0; - errors = &(current_req->error_count); tmp = make_raw_rw_request(); if (tmp < 2) { request_done(tmp); @@ -3012,6 +3010,8 @@ return "(null)"; } +#ifdef CONFIG_BLK_DEV_FD_RAWCMD + /* raw commands */ static void raw_cmd_done(int flag) { @@ -3112,6 +3112,8 @@ } } +#define MAX_LEN (1UL << MAX_ORDER << PAGE_SHIFT) + static int raw_cmd_copyin(int cmd, void __user *param, struct floppy_raw_cmd **rcmd) { @@ -3149,7 +3151,7 @@ ptr->resultcode = 0; if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) { - if (ptr->length <= 0) + if (ptr->length <= 0 || ptr->length >= MAX_LEN) return -EINVAL; ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length); fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length); @@ -3221,6 +3223,35 @@ return ret; } +static int floppy_raw_cmd_ioctl(int type, int drive, int cmd, + void __user *param) +{ + int ret; + + pr_warn_once("Note: FDRAWCMD is deprecated and will be removed from the kernel in the near future.\n"); + + if (type) + return -EINVAL; + if (lock_fdc(drive)) + return -EINTR; + set_floppy(drive); + ret = raw_cmd_ioctl(cmd, param); + if (ret == -EINTR) + return -EINTR; + process_fd_request(); + return ret; +} + +#else /* CONFIG_BLK_DEV_FD_RAWCMD */ + +static int floppy_raw_cmd_ioctl(int type, int drive, int cmd, + void __user *param) +{ + return -EOPNOTSUPP; +} + +#endif + static int invalidate_drive(struct block_device *bdev) { /* invalidate the buffer track to force a reread */ @@ -3408,7 +3439,6 @@ { int drive = (long)bdev->bd_disk->private_data; int type = ITYPE(UDRS->fd_device); - int i; int ret; int size; union inparam { @@ -3559,16 +3589,7 @@ outparam = UDRWE; break; case FDRAWCMD: - if (type) - return -EINVAL; - if (lock_fdc(drive)) - return -EINTR; - set_floppy(drive); - i = raw_cmd_ioctl(cmd, (void __user *)param); - if (i == -EINTR) - return -EINTR; - process_fd_request(); - return i; + return floppy_raw_cmd_ioctl(type, drive, cmd, (void __user *)param); case FDTWADDLE: if (lock_fdc(drive)) return -EINTR; @@ -4063,22 +4084,21 @@ if (UFDCS->rawcmd == 1) UFDCS->rawcmd = 2; - if (mode & (FMODE_READ|FMODE_WRITE)) { - UDRS->last_checked = 0; - clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags); - check_disk_change(bdev); - if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags)) - goto out; - if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags)) + if (!(mode & FMODE_NDELAY)) { + if (mode & (FMODE_READ|FMODE_WRITE)) { + UDRS->last_checked = 0; + clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags); + check_disk_change(bdev); + if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags)) + goto out; + if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags)) + goto out; + } + res = -EROFS; + if ((mode & FMODE_WRITE) && + !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags)) goto out; } - - res = -EROFS; - - if ((mode & FMODE_WRITE) && - !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags)) - goto out; - mutex_unlock(&open_lock); mutex_unlock(&floppy_mutex); return 0; diff -u linux-azure-5.4.0/drivers/block/loop.c linux-azure-5.4.0/drivers/block/loop.c --- linux-azure-5.4.0/drivers/block/loop.c +++ linux-azure-5.4.0/drivers/block/loop.c @@ -497,7 +497,8 @@ return; kfree(cmd->bvec); cmd->bvec = NULL; - blk_mq_complete_request(rq); + if (likely(!blk_should_fake_timeout(rq->q))) + blk_mq_complete_request(rq); } static void lo_rw_aio_complete(struct kiocb *iocb, long ret, long ret2) @@ -834,33 +835,33 @@ static ssize_t loop_attr_offset_show(struct loop_device *lo, char *buf) { - return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_offset); + return sysfs_emit(buf, "%llu\n", (unsigned long long)lo->lo_offset); } static ssize_t loop_attr_sizelimit_show(struct loop_device *lo, char *buf) { - return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_sizelimit); + return sysfs_emit(buf, "%llu\n", (unsigned long long)lo->lo_sizelimit); } static ssize_t loop_attr_autoclear_show(struct loop_device *lo, char *buf) { int autoclear = (lo->lo_flags & LO_FLAGS_AUTOCLEAR); - return sprintf(buf, "%s\n", autoclear ? "1" : "0"); + return sysfs_emit(buf, "%s\n", autoclear ? "1" : "0"); } static ssize_t loop_attr_partscan_show(struct loop_device *lo, char *buf) { int partscan = (lo->lo_flags & LO_FLAGS_PARTSCAN); - return sprintf(buf, "%s\n", partscan ? "1" : "0"); + return sysfs_emit(buf, "%s\n", partscan ? "1" : "0"); } static ssize_t loop_attr_dio_show(struct loop_device *lo, char *buf) { int dio = (lo->lo_flags & LO_FLAGS_DIRECT_IO); - return sprintf(buf, "%s\n", dio ? "1" : "0"); + return sysfs_emit(buf, "%s\n", dio ? "1" : "0"); } LOOP_ATTR_RO(backing_file); @@ -1450,6 +1451,11 @@ info->lo_number = lo->lo_number; info->lo_offset = lo->lo_offset; info->lo_sizelimit = lo->lo_sizelimit; + + /* loff_t vars have been assigned __u64 */ + if (lo->lo_offset < 0 || lo->lo_sizelimit < 0) + return -EOVERFLOW; + info->lo_flags = lo->lo_flags; memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE); memcpy(info->lo_crypt_name, lo->lo_crypt_name, LO_NAME_SIZE); @@ -2027,7 +2033,8 @@ /* complete non-aio request */ if (!cmd->use_aio || ret) { cmd->ret = ret ? -EIO : 0; - blk_mq_complete_request(rq); + if (likely(!blk_should_fake_timeout(rq->q))) + blk_mq_complete_request(rq); } } diff -u linux-azure-5.4.0/drivers/block/nbd.c linux-azure-5.4.0/drivers/block/nbd.c --- linux-azure-5.4.0/drivers/block/nbd.c +++ linux-azure-5.4.0/drivers/block/nbd.c @@ -122,6 +122,12 @@ }; #define NBD_CMD_REQUEUED 1 +/* + * This flag will be set if nbd_queue_rq() succeed, and will be checked and + * cleared in completion. Both setting and clearing of the flag are protected + * by cmd->lock. + */ +#define NBD_CMD_INFLIGHT 2 struct nbd_cmd { struct nbd_device *nbd; @@ -388,8 +394,14 @@ if (!mutex_trylock(&cmd->lock)) return BLK_EH_RESET_TIMER; + if (!test_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + mutex_unlock(&cmd->lock); + return BLK_EH_DONE; + } + if (!refcount_inc_not_zero(&nbd->config_refs)) { cmd->status = BLK_STS_TIMEOUT; + __clear_bit(NBD_CMD_INFLIGHT, &cmd->flags); mutex_unlock(&cmd->lock); goto done; } @@ -445,6 +457,7 @@ dev_err_ratelimited(nbd_to_dev(nbd), "Connection timed out\n"); set_bit(NBD_RT_TIMEDOUT, &config->runtime_flags); cmd->status = BLK_STS_IOERR; + __clear_bit(NBD_CMD_INFLIGHT, &cmd->flags); mutex_unlock(&cmd->lock); sock_shutdown(nbd); nbd_config_put(nbd); @@ -704,6 +717,12 @@ cmd = blk_mq_rq_to_pdu(req); mutex_lock(&cmd->lock); + if (!test_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + dev_err(disk_to_dev(nbd->disk), "Suspicious reply %d (status %u flags %lu)", + tag, cmd->status, cmd->flags); + ret = -ENOENT; + goto out; + } if (cmd->cmd_cookie != nbd_handle_to_cookie(handle)) { dev_err(disk_to_dev(nbd->disk), "Double reply on req %p, cmd_cookie %u, handle cookie %u\n", req, cmd->cmd_cookie, nbd_handle_to_cookie(handle)); @@ -773,6 +792,7 @@ struct nbd_device *nbd = args->nbd; struct nbd_config *config = nbd->config; struct nbd_cmd *cmd; + struct request *rq; while (1) { cmd = nbd_read_stat(nbd, args->index); @@ -785,7 +805,17 @@ break; } - blk_mq_complete_request(blk_mq_rq_from_pdu(cmd)); + rq = blk_mq_rq_from_pdu(cmd); + if (likely(!blk_should_fake_timeout(rq->q))) { + bool complete; + + mutex_lock(&cmd->lock); + complete = __test_and_clear_bit(NBD_CMD_INFLIGHT, + &cmd->flags); + mutex_unlock(&cmd->lock); + if (complete) + blk_mq_complete_request(rq); + } } nbd_config_put(nbd); atomic_dec(&config->recv_threads); @@ -797,7 +827,15 @@ { struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req); + /* don't abort one completed request */ + if (blk_mq_request_completed(req)) + return true; + mutex_lock(&cmd->lock); + if (!__test_and_clear_bit(NBD_CMD_INFLIGHT, &cmd->flags)) { + mutex_unlock(&cmd->lock); + return true; + } cmd->status = BLK_STS_IOERR; mutex_unlock(&cmd->lock); @@ -861,11 +899,15 @@ struct nbd_config *config = nbd->config; if (!config->dead_conn_timeout) return 0; - if (test_bit(NBD_RT_DISCONNECTED, &config->runtime_flags)) + + if (!wait_event_timeout(config->conn_wait, + test_bit(NBD_RT_DISCONNECTED, + &config->runtime_flags) || + atomic_read(&config->live_connections) > 0, + config->dead_conn_timeout)) return 0; - return wait_event_timeout(config->conn_wait, - atomic_read(&config->live_connections) > 0, - config->dead_conn_timeout) > 0; + + return !test_bit(NBD_RT_DISCONNECTED, &config->runtime_flags); } static int nbd_handle_cmd(struct nbd_cmd *cmd, int index) @@ -934,7 +976,13 @@ * returns EAGAIN can be retried on a different socket. */ ret = nbd_send_cmd(nbd, cmd, index); - if (ret == -EAGAIN) { + /* + * Access to this flag is protected by cmd->lock, thus it's safe to set + * the flag after nbd_send_cmd() succeed to send request to server. + */ + if (!ret) + __set_bit(NBD_CMD_INFLIGHT, &cmd->flags); + else if (ret == -EAGAIN) { dev_err_ratelimited(disk_to_dev(nbd->disk), "Request send failed, requeueing\n"); nbd_mark_nsock_dead(nbd, nsock, 1); @@ -1319,10 +1367,12 @@ mutex_unlock(&nbd->config_lock); ret = wait_event_interruptible(config->recv_wq, atomic_read(&config->recv_threads) == 0); - if (ret) + if (ret) { sock_shutdown(nbd); - flush_workqueue(nbd->recv_workq); + nbd_clear_que(nbd); + } + flush_workqueue(nbd->recv_workq); mutex_lock(&nbd->config_lock); nbd_bdev_reset(bdev); /* user requested, ignore socket errors */ @@ -1336,7 +1386,7 @@ static void nbd_clear_sock_ioctl(struct nbd_device *nbd, struct block_device *bdev) { - sock_shutdown(nbd); + nbd_clear_sock(nbd); __invalidate_device(bdev, true); nbd_bdev_reset(bdev); if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF, @@ -1449,15 +1499,20 @@ { struct nbd_config *config; + if (!try_module_get(THIS_MODULE)) + return ERR_PTR(-ENODEV); + config = kzalloc(sizeof(struct nbd_config), GFP_NOFS); - if (!config) - return NULL; + if (!config) { + module_put(THIS_MODULE); + return ERR_PTR(-ENOMEM); + } + atomic_set(&config->recv_threads, 0); init_waitqueue_head(&config->recv_wq); init_waitqueue_head(&config->conn_wait); config->blksize = NBD_DEF_BLKSIZE; atomic_set(&config->live_connections, 0); - try_module_get(THIS_MODULE); return config; } @@ -1484,12 +1539,13 @@ mutex_unlock(&nbd->config_lock); goto out; } - config = nbd->config = nbd_alloc_config(); - if (!config) { - ret = -ENOMEM; + config = nbd_alloc_config(); + if (IS_ERR(config)) { + ret = PTR_ERR(config); mutex_unlock(&nbd->config_lock); goto out; } + nbd->config = config; refcount_set(&nbd->config_refs, 1); refcount_inc(&nbd->refs); mutex_unlock(&nbd->config_lock); @@ -1911,13 +1967,14 @@ nbd_put(nbd); return -EINVAL; } - config = nbd->config = nbd_alloc_config(); - if (!nbd->config) { + config = nbd_alloc_config(); + if (IS_ERR(config)) { mutex_unlock(&nbd->config_lock); nbd_put(nbd); printk(KERN_ERR "nbd: couldn't allocate config\n"); - return -ENOMEM; + return PTR_ERR(config); } + nbd->config = config; refcount_set(&nbd->config_refs, 1); set_bit(NBD_RT_BOUND, &config->runtime_flags); @@ -2009,15 +2066,20 @@ { mutex_lock(&nbd->config_lock); nbd_disconnect(nbd); - nbd_clear_sock(nbd); - mutex_unlock(&nbd->config_lock); + sock_shutdown(nbd); + wake_up(&nbd->config->conn_wait); /* * Make sure recv thread has finished, so it does not drop the last * config ref and try to destroy the workqueue from inside the work - * queue. + * queue. And this also ensure that we can safely call nbd_clear_que() + * to cancel the inflight I/Os. */ if (nbd->recv_workq) flush_workqueue(nbd->recv_workq); + nbd_clear_que(nbd); + nbd->task_setup = NULL; + mutex_unlock(&nbd->config_lock); + if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF, &nbd->config->runtime_flags)) nbd_config_put(nbd); @@ -2439,6 +2501,12 @@ struct nbd_device *nbd; LIST_HEAD(del_list); + /* + * Unregister netlink interface prior to waiting + * for the completion of netlink commands. + */ + genl_unregister_family(&nbd_genl_family); + nbd_dbg_close(); mutex_lock(&nbd_index_mutex); @@ -2448,13 +2516,15 @@ while (!list_empty(&del_list)) { nbd = list_first_entry(&del_list, struct nbd_device, list); list_del_init(&nbd->list); + if (refcount_read(&nbd->config_refs)) + printk(KERN_ERR "nbd: possibly leaking nbd_config (ref %d)\n", + refcount_read(&nbd->config_refs)); if (refcount_read(&nbd->refs) != 1) printk(KERN_ERR "nbd: possibly leaking a device\n"); nbd_put(nbd); } idr_destroy(&nbd_index_idr); - genl_unregister_family(&nbd_genl_family); unregister_blkdev(NBD_MAJOR, "nbd"); } diff -u linux-azure-5.4.0/drivers/block/null_blk_main.c linux-azure-5.4.0/drivers/block/null_blk_main.c --- linux-azure-5.4.0/drivers/block/null_blk_main.c +++ linux-azure-5.4.0/drivers/block/null_blk_main.c @@ -1190,7 +1190,8 @@ case NULL_IRQ_SOFTIRQ: switch (cmd->nq->dev->queue_mode) { case NULL_Q_MQ: - blk_mq_complete_request(cmd->rq); + if (likely(!blk_should_fake_timeout(cmd->rq->q))) + blk_mq_complete_request(cmd->rq); break; case NULL_Q_BIO: /* @@ -1711,8 +1712,13 @@ blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, nullb->q); mutex_lock(&lock); - nullb->index = ida_simple_get(&nullb_indexes, 0, 0, GFP_KERNEL); - dev->index = nullb->index; + rv = ida_simple_get(&nullb_indexes, 0, 0, GFP_KERNEL); + if (rv < 0) { + mutex_unlock(&lock); + goto out_cleanup_zone; + } + nullb->index = rv; + dev->index = rv; mutex_unlock(&lock); blk_queue_logical_block_size(nullb->q, dev->blocksize); @@ -1724,13 +1730,16 @@ rv = null_gendisk_register(nullb); if (rv) - goto out_cleanup_zone; + goto out_ida_free; mutex_lock(&lock); list_add_tail(&nullb->list, &nullb_list); mutex_unlock(&lock); return 0; + +out_ida_free: + ida_free(&nullb_indexes, nullb->index); out_cleanup_zone: if (dev->zoned) null_zone_exit(dev); diff -u linux-azure-5.4.0/drivers/block/rbd.c linux-azure-5.4.0/drivers/block/rbd.c --- linux-azure-5.4.0/drivers/block/rbd.c +++ linux-azure-5.4.0/drivers/block/rbd.c @@ -4239,8 +4239,6 @@ static bool rbd_quiesce_lock(struct rbd_device *rbd_dev) { - bool need_wait; - dout("%s rbd_dev %p\n", __func__, rbd_dev); lockdep_assert_held_write(&rbd_dev->lock_rwsem); @@ -4252,11 +4250,11 @@ */ rbd_dev->lock_state = RBD_LOCK_STATE_RELEASING; rbd_assert(!completion_done(&rbd_dev->releasing_wait)); - need_wait = !list_empty(&rbd_dev->running_list); - downgrade_write(&rbd_dev->lock_rwsem); - if (need_wait) - wait_for_completion(&rbd_dev->releasing_wait); - up_read(&rbd_dev->lock_rwsem); + if (list_empty(&rbd_dev->running_list)) + return true; + + up_write(&rbd_dev->lock_rwsem); + wait_for_completion(&rbd_dev->releasing_wait); down_write(&rbd_dev->lock_rwsem); if (rbd_dev->lock_state != RBD_LOCK_STATE_RELEASING) @@ -4342,15 +4340,11 @@ if (!rbd_cid_equal(&cid, &rbd_empty_cid)) { down_write(&rbd_dev->lock_rwsem); if (rbd_cid_equal(&cid, &rbd_dev->owner_cid)) { - /* - * we already know that the remote client is - * the owner - */ - up_write(&rbd_dev->lock_rwsem); - return; + dout("%s rbd_dev %p cid %llu-%llu == owner_cid\n", + __func__, rbd_dev, cid.gid, cid.handle); + } else { + rbd_set_owner_cid(rbd_dev, &cid); } - - rbd_set_owner_cid(rbd_dev, &cid); downgrade_write(&rbd_dev->lock_rwsem); } else { down_read(&rbd_dev->lock_rwsem); @@ -4375,14 +4369,12 @@ if (!rbd_cid_equal(&cid, &rbd_empty_cid)) { down_write(&rbd_dev->lock_rwsem); if (!rbd_cid_equal(&cid, &rbd_dev->owner_cid)) { - dout("%s rbd_dev %p unexpected owner, cid %llu-%llu != owner_cid %llu-%llu\n", + dout("%s rbd_dev %p cid %llu-%llu != owner_cid %llu-%llu\n", __func__, rbd_dev, cid.gid, cid.handle, rbd_dev->owner_cid.gid, rbd_dev->owner_cid.handle); - up_write(&rbd_dev->lock_rwsem); - return; + } else { + rbd_set_owner_cid(rbd_dev, &rbd_empty_cid); } - - rbd_set_owner_cid(rbd_dev, &rbd_empty_cid); downgrade_write(&rbd_dev->lock_rwsem); } else { down_read(&rbd_dev->lock_rwsem); diff -u linux-azure-5.4.0/drivers/block/virtio_blk.c linux-azure-5.4.0/drivers/block/virtio_blk.c --- linux-azure-5.4.0/drivers/block/virtio_blk.c +++ linux-azure-5.4.0/drivers/block/virtio_blk.c @@ -272,7 +272,8 @@ while ((vbr = virtqueue_get_buf(vblk->vqs[qid].vq, &len)) != NULL) { struct request *req = blk_mq_rq_from_pdu(vbr); - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); req_done = true; } if (unlikely(virtqueue_is_broken(vq))) @@ -936,9 +937,17 @@ err = virtio_cread_feature(vdev, VIRTIO_BLK_F_BLK_SIZE, struct virtio_blk_config, blk_size, &blk_size); - if (!err) + if (!err) { + err = blk_validate_block_size(blk_size); + if (err) { + dev_err(&vdev->dev, + "virtio_blk: invalid block size: 0x%x\n", + blk_size); + goto out_free_tags; + } + blk_queue_logical_block_size(q, blk_size); - else + } else blk_size = queue_logical_block_size(q); /* Use topology information if available */ @@ -968,11 +977,12 @@ blk_queue_io_opt(q, blk_size * opt_io_size); if (virtio_has_feature(vdev, VIRTIO_BLK_F_DISCARD)) { - q->limits.discard_granularity = blk_size; - virtio_cread(vdev, struct virtio_blk_config, discard_sector_alignment, &v); - q->limits.discard_alignment = v ? v << SECTOR_SHIFT : 0; + if (v) + q->limits.discard_granularity = v << SECTOR_SHIFT; + else + q->limits.discard_granularity = blk_size; virtio_cread(vdev, struct virtio_blk_config, max_discard_sectors, &v); @@ -980,9 +990,15 @@ virtio_cread(vdev, struct virtio_blk_config, max_discard_seg, &v); + + /* + * max_discard_seg == 0 is out of spec but we always + * handled it. + */ + if (!v) + v = sg_elems - 2; blk_queue_max_discard_segments(q, - min_not_zero(v, - MAX_DISCARD_SEGMENTS)); + min(v, MAX_DISCARD_SEGMENTS)); blk_queue_flag_set(QUEUE_FLAG_DISCARD, q); } @@ -1057,6 +1073,8 @@ blk_mq_quiesce_queue(vblk->disk->queue); vdev->config->del_vqs(vdev); + kfree(vblk->vqs); + return 0; } diff -u linux-azure-5.4.0/drivers/block/xen-blkfront.c linux-azure-5.4.0/drivers/block/xen-blkfront.c --- linux-azure-5.4.0/drivers/block/xen-blkfront.c +++ linux-azure-5.4.0/drivers/block/xen-blkfront.c @@ -80,6 +80,7 @@ BLKIF_STATE_DISCONNECTED, BLKIF_STATE_CONNECTED, BLKIF_STATE_SUSPENDED, + BLKIF_STATE_ERROR, }; struct grant { @@ -89,6 +90,7 @@ }; enum blk_req_status { + REQ_PROCESSING, REQ_WAITING, REQ_DONE, REQ_ERROR, @@ -149,6 +151,10 @@ module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, 0444); MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring"); +static bool __read_mostly xen_blkif_trusted = true; +module_param_named(trusted, xen_blkif_trusted, bool, 0644); +MODULE_PARM_DESC(trusted, "Is the backend trusted"); + #define BLK_RING_SIZE(info) \ __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages) @@ -209,6 +215,7 @@ unsigned int feature_discard:1; unsigned int feature_secdiscard:1; unsigned int feature_persistent:1; + unsigned int bounce:1; unsigned int discard_granularity; unsigned int discard_alignment; /* Number of 4KB segments handled */ @@ -298,8 +305,8 @@ if (!gnt_list_entry) goto out_of_memory; - if (info->feature_persistent) { - granted_page = alloc_page(GFP_NOIO); + if (info->bounce) { + granted_page = alloc_page(GFP_NOIO | __GFP_ZERO); if (!granted_page) { kfree(gnt_list_entry); goto out_of_memory; @@ -318,7 +325,7 @@ list_for_each_entry_safe(gnt_list_entry, n, &rinfo->grants, node) { list_del(&gnt_list_entry->node); - if (info->feature_persistent) + if (info->bounce) __free_page(gnt_list_entry->page); kfree(gnt_list_entry); i--; @@ -364,7 +371,7 @@ /* Assign a gref to this page */ gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head); BUG_ON(gnt_list_entry->gref == -ENOSPC); - if (info->feature_persistent) + if (info->bounce) grant_foreign_access(gnt_list_entry, info); else { /* Grant access to the GFN passed by the caller */ @@ -388,7 +395,7 @@ /* Assign a gref to this page */ gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head); BUG_ON(gnt_list_entry->gref == -ENOSPC); - if (!info->feature_persistent) { + if (!info->bounce) { struct page *indirect_page; /* Fetch a pre-allocated page to use for indirect grefs */ @@ -533,10 +540,10 @@ id = get_id_from_freelist(rinfo); rinfo->shadow[id].request = req; - rinfo->shadow[id].status = REQ_WAITING; + rinfo->shadow[id].status = REQ_PROCESSING; rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID; - (*ring_req)->u.rw.id = id; + rinfo->shadow[id].req.u.rw.id = id; return id; } @@ -544,11 +551,12 @@ static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo) { struct blkfront_info *info = rinfo->dev_info; - struct blkif_request *ring_req; + struct blkif_request *ring_req, *final_ring_req; unsigned long id; /* Fill out a communications ring structure. */ - id = blkif_ring_get_request(rinfo, req, &ring_req); + id = blkif_ring_get_request(rinfo, req, &final_ring_req); + ring_req = &rinfo->shadow[id].req; ring_req->operation = BLKIF_OP_DISCARD; ring_req->u.discard.nr_sectors = blk_rq_sectors(req); @@ -559,8 +567,9 @@ else ring_req->u.discard.flag = 0; - /* Keep a private copy so we can reissue requests when recovering. */ - rinfo->shadow[id].req = *ring_req; + /* Copy the request to the ring page. */ + *final_ring_req = *ring_req; + rinfo->shadow[id].status = REQ_WAITING; return 0; } @@ -693,6 +702,7 @@ { struct blkfront_info *info = rinfo->dev_info; struct blkif_request *ring_req, *extra_ring_req = NULL; + struct blkif_request *final_ring_req, *final_extra_ring_req = NULL; unsigned long id, extra_id = NO_ASSOCIATED_ID; bool require_extra_req = false; int i; @@ -700,7 +710,7 @@ .grant_idx = 0, .segments = NULL, .rinfo = rinfo, - .need_copy = rq_data_dir(req) && info->feature_persistent, + .need_copy = rq_data_dir(req) && info->bounce, }; /* @@ -737,7 +747,8 @@ } /* Fill out a communications ring structure. */ - id = blkif_ring_get_request(rinfo, req, &ring_req); + id = blkif_ring_get_request(rinfo, req, &final_ring_req); + ring_req = &rinfo->shadow[id].req; num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg); num_grant = 0; @@ -788,7 +799,9 @@ ring_req->u.rw.nr_segments = num_grant; if (unlikely(require_extra_req)) { extra_id = blkif_ring_get_request(rinfo, req, - &extra_ring_req); + &final_extra_ring_req); + extra_ring_req = &rinfo->shadow[extra_id].req; + /* * Only the first request contains the scatter-gather * list. @@ -830,10 +843,13 @@ if (setup.segments) kunmap_atomic(setup.segments); - /* Keep a private copy so we can reissue requests when recovering. */ - rinfo->shadow[id].req = *ring_req; - if (unlikely(require_extra_req)) - rinfo->shadow[extra_id].req = *extra_ring_req; + /* Copy request(s) to the ring page. */ + *final_ring_req = *ring_req; + rinfo->shadow[id].status = REQ_WAITING; + if (unlikely(require_extra_req)) { + *final_extra_ring_req = *extra_ring_req; + rinfo->shadow[extra_id].status = REQ_WAITING; + } if (new_persistent_gnts) gnttab_free_grant_references(setup.gref_head); @@ -1015,11 +1031,12 @@ { blk_queue_write_cache(info->rq, info->feature_flush ? true : false, info->feature_fua ? true : false); - pr_info("blkfront: %s: %s %s %s %s %s\n", + pr_info("blkfront: %s: %s %s %s %s %s %s %s\n", info->gd->disk_name, flush_info(info), "persistent grants:", info->feature_persistent ? "enabled;" : "disabled;", "indirect descriptors:", - info->max_indirect_segments ? "enabled;" : "disabled;"); + info->max_indirect_segments ? "enabled;" : "disabled;", + "bounce buffer:", info->bounce ? "enabled" : "disabled;"); } static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset) @@ -1254,7 +1271,7 @@ if (!list_empty(&rinfo->indirect_pages)) { struct page *indirect_page, *n; - BUG_ON(info->feature_persistent); + BUG_ON(info->bounce); list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) { list_del(&indirect_page->lru); __free_page(indirect_page); @@ -1271,7 +1288,7 @@ 0, 0UL); rinfo->persistent_gnts_c--; } - if (info->feature_persistent) + if (info->bounce) __free_page(persistent_gnt->page); kfree(persistent_gnt); } @@ -1292,7 +1309,7 @@ for (j = 0; j < segs; j++) { persistent_gnt = rinfo->shadow[i].grants_used[j]; gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL); - if (info->feature_persistent) + if (info->bounce) __free_page(persistent_gnt->page); kfree(persistent_gnt); } @@ -1333,7 +1350,8 @@ rinfo->ring_ref[i] = GRANT_INVALID_REF; } } - free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE)); + free_pages_exact(rinfo->ring.sring, + info->nr_ring_pages * XEN_PAGE_SIZE); rinfo->ring.sring = NULL; if (rinfo->irq) @@ -1407,8 +1425,8 @@ static int blkif_get_final_status(enum blk_req_status s1, enum blk_req_status s2) { - BUG_ON(s1 == REQ_WAITING); - BUG_ON(s2 == REQ_WAITING); + BUG_ON(s1 < REQ_DONE); + BUG_ON(s2 < REQ_DONE); if (s1 == REQ_ERROR || s2 == REQ_ERROR) return BLKIF_RSP_ERROR; @@ -1417,9 +1435,15 @@ return BLKIF_RSP_OKAY; } -static bool blkif_completion(unsigned long *id, - struct blkfront_ring_info *rinfo, - struct blkif_response *bret) +/* + * Return values: + * 1 response processed. + * 0 missing further responses. + * -1 error while processing. + */ +static int blkif_completion(unsigned long *id, + struct blkfront_ring_info *rinfo, + struct blkif_response *bret) { int i = 0; struct scatterlist *sg; @@ -1441,8 +1465,8 @@ s->status = blkif_rsp_to_req_status(bret->status); /* Wait the second response if not yet here. */ - if (s2->status == REQ_WAITING) - return false; + if (s2->status < REQ_DONE) + return 0; bret->status = blkif_get_final_status(s->status, s2->status); @@ -1475,7 +1499,7 @@ data.s = s; num_sg = s->num_sg; - if (bret->operation == BLKIF_OP_READ && info->feature_persistent) { + if (bret->operation == BLKIF_OP_READ && info->bounce) { for_each_sg(s->sg, sg, num_sg, i) { BUG_ON(sg->offset + sg->length > PAGE_SIZE); @@ -1493,47 +1517,48 @@ } /* Add the persistent grant into the list of free grants */ for (i = 0; i < num_grant; i++) { - if (gnttab_query_foreign_access(s->grants_used[i]->gref)) { + if (!gnttab_try_end_foreign_access(s->grants_used[i]->gref)) { /* * If the grant is still mapped by the backend (the * backend has chosen to make this grant persistent) * we add it at the head of the list, so it will be * reused first. */ - if (!info->feature_persistent) - pr_alert_ratelimited("backed has not unmapped grant: %u\n", - s->grants_used[i]->gref); + if (!info->feature_persistent) { + pr_alert("backed has not unmapped grant: %u\n", + s->grants_used[i]->gref); + return -1; + } list_add(&s->grants_used[i]->node, &rinfo->grants); rinfo->persistent_gnts_c++; } else { /* - * If the grant is not mapped by the backend we end the - * foreign access and add it to the tail of the list, - * so it will not be picked again unless we run out of - * persistent grants. + * If the grant is not mapped by the backend we add it + * to the tail of the list, so it will not be picked + * again unless we run out of persistent grants. */ - gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL); s->grants_used[i]->gref = GRANT_INVALID_REF; list_add_tail(&s->grants_used[i]->node, &rinfo->grants); } } if (s->req.operation == BLKIF_OP_INDIRECT) { for (i = 0; i < INDIRECT_GREFS(num_grant); i++) { - if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) { - if (!info->feature_persistent) - pr_alert_ratelimited("backed has not unmapped grant: %u\n", - s->indirect_grants[i]->gref); + if (!gnttab_try_end_foreign_access(s->indirect_grants[i]->gref)) { + if (!info->feature_persistent) { + pr_alert("backed has not unmapped grant: %u\n", + s->indirect_grants[i]->gref); + return -1; + } list_add(&s->indirect_grants[i]->node, &rinfo->grants); rinfo->persistent_gnts_c++; } else { struct page *indirect_page; - gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL); /* * Add the used indirect page back to the list of * available pages for indirect grefs. */ - if (!info->feature_persistent) { + if (!info->bounce) { indirect_page = s->indirect_grants[i]->page; list_add(&indirect_page->lru, &rinfo->indirect_pages); } @@ -1543,71 +1568,103 @@ } } - return true; + return 1; } static irqreturn_t blkif_interrupt(int irq, void *dev_id) { struct request *req; - struct blkif_response *bret; + struct blkif_response bret; RING_IDX i, rp; unsigned long flags; struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id; struct blkfront_info *info = rinfo->dev_info; + unsigned int eoiflag = XEN_EOI_FLAG_SPURIOUS; - if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) + if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) { + xen_irq_lateeoi(irq, XEN_EOI_FLAG_SPURIOUS); return IRQ_HANDLED; + } spin_lock_irqsave(&rinfo->ring_lock, flags); again: - rp = rinfo->ring.sring->rsp_prod; - rmb(); /* Ensure we see queued responses up to 'rp'. */ + rp = READ_ONCE(rinfo->ring.sring->rsp_prod); + virt_rmb(); /* Ensure we see queued responses up to 'rp'. */ + if (RING_RESPONSE_PROD_OVERFLOW(&rinfo->ring, rp)) { + pr_alert("%s: illegal number of responses %u\n", + info->gd->disk_name, rp - rinfo->ring.rsp_cons); + goto err; + } for (i = rinfo->ring.rsp_cons; i != rp; i++) { unsigned long id; + unsigned int op; + + eoiflag = 0; + + RING_COPY_RESPONSE(&rinfo->ring, i, &bret); + id = bret.id; - bret = RING_GET_RESPONSE(&rinfo->ring, i); - id = bret->id; /* * The backend has messed up and given us an id that we would * never have given to it (we stamp it up to BLK_RING_SIZE - * look in get_id_from_freelist. */ if (id >= BLK_RING_SIZE(info)) { - WARN(1, "%s: response to %s has incorrect id (%ld)\n", - info->gd->disk_name, op_name(bret->operation), id); - /* We can't safely get the 'struct request' as - * the id is busted. */ - continue; + pr_alert("%s: response has incorrect id (%ld)\n", + info->gd->disk_name, id); + goto err; + } + if (rinfo->shadow[id].status != REQ_WAITING) { + pr_alert("%s: response references no pending request\n", + info->gd->disk_name); + goto err; } + + rinfo->shadow[id].status = REQ_PROCESSING; req = rinfo->shadow[id].request; - if (bret->operation != BLKIF_OP_DISCARD) { + op = rinfo->shadow[id].req.operation; + if (op == BLKIF_OP_INDIRECT) + op = rinfo->shadow[id].req.u.indirect.indirect_op; + if (bret.operation != op) { + pr_alert("%s: response has wrong operation (%u instead of %u)\n", + info->gd->disk_name, bret.operation, op); + goto err; + } + + if (bret.operation != BLKIF_OP_DISCARD) { + int ret; + /* * We may need to wait for an extra response if the * I/O request is split in 2 */ - if (!blkif_completion(&id, rinfo, bret)) + ret = blkif_completion(&id, rinfo, &bret); + if (!ret) continue; + if (unlikely(ret < 0)) + goto err; } if (add_id_to_freelist(rinfo, id)) { WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n", - info->gd->disk_name, op_name(bret->operation), id); + info->gd->disk_name, op_name(bret.operation), id); continue; } - if (bret->status == BLKIF_RSP_OKAY) + if (bret.status == BLKIF_RSP_OKAY) blkif_req(req)->error = BLK_STS_OK; else blkif_req(req)->error = BLK_STS_IOERR; - switch (bret->operation) { + switch (bret.operation) { case BLKIF_OP_DISCARD: - if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) { + if (unlikely(bret.status == BLKIF_RSP_EOPNOTSUPP)) { struct request_queue *rq = info->rq; - printk(KERN_WARNING "blkfront: %s: %s op failed\n", - info->gd->disk_name, op_name(bret->operation)); + + pr_warn_ratelimited("blkfront: %s: %s op failed\n", + info->gd->disk_name, op_name(bret.operation)); blkif_req(req)->error = BLK_STS_NOTSUPP; info->feature_discard = 0; info->feature_secdiscard = 0; @@ -1617,15 +1674,15 @@ break; case BLKIF_OP_FLUSH_DISKCACHE: case BLKIF_OP_WRITE_BARRIER: - if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) { - printk(KERN_WARNING "blkfront: %s: %s op failed\n", - info->gd->disk_name, op_name(bret->operation)); + if (unlikely(bret.status == BLKIF_RSP_EOPNOTSUPP)) { + pr_warn_ratelimited("blkfront: %s: %s op failed\n", + info->gd->disk_name, op_name(bret.operation)); blkif_req(req)->error = BLK_STS_NOTSUPP; } - if (unlikely(bret->status == BLKIF_RSP_ERROR && + if (unlikely(bret.status == BLKIF_RSP_ERROR && rinfo->shadow[id].req.u.rw.nr_segments == 0)) { - printk(KERN_WARNING "blkfront: %s: empty %s op failed\n", - info->gd->disk_name, op_name(bret->operation)); + pr_warn_ratelimited("blkfront: %s: empty %s op failed\n", + info->gd->disk_name, op_name(bret.operation)); blkif_req(req)->error = BLK_STS_NOTSUPP; } if (unlikely(blkif_req(req)->error)) { @@ -1638,16 +1695,18 @@ /* fall through */ case BLKIF_OP_READ: case BLKIF_OP_WRITE: - if (unlikely(bret->status != BLKIF_RSP_OKAY)) - dev_dbg(&info->xbdev->dev, "Bad return from blkdev data " - "request: %x\n", bret->status); + if (unlikely(bret.status != BLKIF_RSP_OKAY)) + dev_dbg_ratelimited(&info->xbdev->dev, + "Bad return from blkdev data request: %#x\n", + bret.status); break; default: BUG(); } - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); } rinfo->ring.rsp_cons = i; @@ -1664,6 +1723,18 @@ spin_unlock_irqrestore(&rinfo->ring_lock, flags); + xen_irq_lateeoi(irq, eoiflag); + + return IRQ_HANDLED; + + err: + info->connected = BLKIF_STATE_ERROR; + + spin_unlock_irqrestore(&rinfo->ring_lock, flags); + + /* No EOI in order to avoid further interrupts. */ + + pr_alert("%s disabled for further use\n", info->gd->disk_name); return IRQ_HANDLED; } @@ -1680,8 +1751,7 @@ for (i = 0; i < info->nr_ring_pages; i++) rinfo->ring_ref[i] = GRANT_INVALID_REF; - sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH, - get_order(ring_size)); + sring = alloc_pages_exact(ring_size, GFP_NOIO | __GFP_ZERO); if (!sring) { xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring"); return -ENOMEM; @@ -1691,7 +1761,7 @@ err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref); if (err < 0) { - free_pages((unsigned long)sring, get_order(ring_size)); + free_pages_exact(sring, ring_size); rinfo->ring.sring = NULL; goto fail; } @@ -1702,8 +1772,8 @@ if (err) goto fail; - err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0, - "blkif", rinfo); + err = bind_evtchn_to_irqhandler_lateeoi(rinfo->evtchn, blkif_interrupt, + 0, "blkif", rinfo); if (err <= 0) { xenbus_dev_fatal(dev, err, "bind_evtchn_to_irqhandler failed"); @@ -1784,6 +1854,10 @@ if (!info) return -ENODEV; + /* Check if backend is trusted. */ + info->bounce = !xen_blkif_trusted || + !xenbus_read_unsigned(dev->nodename, "trusted", 1); + max_page_order = xenbus_read_unsigned(info->xbdev->otherend, "max-ring-page-order", 0); ring_page_order = min(xen_blkif_max_ring_order, max_page_order); @@ -2210,17 +2284,18 @@ if (err) goto out_of_memory; - if (!info->feature_persistent && info->max_indirect_segments) { + if (!info->bounce && info->max_indirect_segments) { /* - * We are using indirect descriptors but not persistent - * grants, we need to allocate a set of pages that can be + * We are using indirect descriptors but don't have a bounce + * buffer, we need to allocate a set of pages that can be * used for mapping indirect grefs */ int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info); BUG_ON(!list_empty(&rinfo->indirect_pages)); for (i = 0; i < num; i++) { - struct page *indirect_page = alloc_page(GFP_KERNEL); + struct page *indirect_page = alloc_page(GFP_KERNEL | + __GFP_ZERO); if (!indirect_page) goto out_of_memory; list_add(&indirect_page->lru, &rinfo->indirect_pages); @@ -2312,6 +2387,8 @@ info->feature_persistent = !!xenbus_read_unsigned(info->xbdev->otherend, "feature-persistent", 0); + if (info->feature_persistent) + info->bounce = true; indirect_segments = xenbus_read_unsigned(info->xbdev->otherend, "feature-max-indirect-segments", 0); @@ -2669,11 +2746,10 @@ list_for_each_entry_safe(gnt_list_entry, tmp, &rinfo->grants, node) { if (gnt_list_entry->gref == GRANT_INVALID_REF || - gnttab_query_foreign_access(gnt_list_entry->gref)) + !gnttab_try_end_foreign_access(gnt_list_entry->gref)) continue; list_del(&gnt_list_entry->node); - gnttab_end_foreign_access(gnt_list_entry->gref, 0, 0UL); rinfo->persistent_gnts_c--; gnt_list_entry->gref = GRANT_INVALID_REF; list_add_tail(&gnt_list_entry->node, &rinfo->grants); @@ -2688,6 +2764,13 @@ struct blkfront_info *info; bool need_schedule_work = false; + /* + * Note that when using bounce buffers but not persistent grants + * there's no need to run blkfront_delay_work because grants are + * revoked in blkif_completion or else an error is reported and the + * connection is closed. + */ + mutex_lock(&blkfront_mutex); list_for_each_entry(info, &info_list, info_list) { diff -u linux-azure-5.4.0/drivers/block/zram/zram_drv.c linux-azure-5.4.0/drivers/block/zram/zram_drv.c --- linux-azure-5.4.0/drivers/block/zram/zram_drv.c +++ linux-azure-5.4.0/drivers/block/zram/zram_drv.c @@ -901,7 +901,7 @@ zram_test_flag(zram, index, ZRAM_HUGE) ? 'h' : '.', zram_test_flag(zram, index, ZRAM_IDLE) ? 'i' : '.'); - if (count < copied) { + if (count <= copied) { zram_slot_unlock(zram, index); break; } diff -u linux-azure-5.4.0/drivers/bluetooth/btmtksdio.c linux-azure-5.4.0/drivers/bluetooth/btmtksdio.c --- linux-azure-5.4.0/drivers/bluetooth/btmtksdio.c +++ linux-azure-5.4.0/drivers/bluetooth/btmtksdio.c @@ -980,6 +980,8 @@ hdev->manufacturer = 70; set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks); + sdio_set_drvdata(func, bdev); + err = hci_register_dev(hdev); if (err < 0) { dev_err(&func->dev, "Can't register HCI device\n"); @@ -987,8 +989,6 @@ return err; } - sdio_set_drvdata(func, bdev); - /* pm_runtime_enable would be done after the firmware is being * downloaded because the core layer probably already enables * runtime PM for this func such as the case host->caps & @@ -1041,6 +1041,8 @@ if (!bdev) return 0; + sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER); + sdio_claim_host(bdev->func); sdio_writel(bdev->func, C_FW_OWN_REQ_SET, MTK_REG_CHLPCR, &err); diff -u linux-azure-5.4.0/drivers/bluetooth/btmtkuart.c linux-azure-5.4.0/drivers/bluetooth/btmtkuart.c --- linux-azure-5.4.0/drivers/bluetooth/btmtkuart.c +++ linux-azure-5.4.0/drivers/bluetooth/btmtkuart.c @@ -158,8 +158,10 @@ int err; hlen = sizeof(*hdr) + wmt_params->dlen; - if (hlen > 255) - return -EINVAL; + if (hlen > 255) { + err = -EINVAL; + goto err_free_skb; + } hdr = (struct mtk_wmt_hdr *)&wc; hdr->dir = 1; @@ -173,7 +175,7 @@ err = __hci_cmd_send(hdev, 0xfc6f, hlen, &wc); if (err < 0) { clear_bit(BTMTKUART_TX_WAIT_VND_EVT, &bdev->tx_state); - return err; + goto err_free_skb; } /* The vendor specific WMT commands are all answered by a vendor @@ -190,13 +192,14 @@ if (err == -EINTR) { bt_dev_err(hdev, "Execution of wmt command interrupted"); clear_bit(BTMTKUART_TX_WAIT_VND_EVT, &bdev->tx_state); - return err; + goto err_free_skb; } if (err) { bt_dev_err(hdev, "Execution of wmt command timed out"); clear_bit(BTMTKUART_TX_WAIT_VND_EVT, &bdev->tx_state); - return -ETIMEDOUT; + err = -ETIMEDOUT; + goto err_free_skb; } /* Parse and handle the return WMT event */ diff -u linux-azure-5.4.0/drivers/bluetooth/btrtl.c linux-azure-5.4.0/drivers/bluetooth/btrtl.c --- linux-azure-5.4.0/drivers/bluetooth/btrtl.c +++ linux-azure-5.4.0/drivers/bluetooth/btrtl.c @@ -131,12 +131,19 @@ .cfg_name = "rtl_bt/rtl8821c_config" }, /* 8761A */ - { IC_MATCH_FL_LMPSUBV, RTL_ROM_LMP_8761A, 0x0, + { IC_INFO(RTL_ROM_LMP_8761A, 0xa), .config_needed = false, .has_rom_version = true, .fw_name = "rtl_bt/rtl8761a_fw.bin", .cfg_name = "rtl_bt/rtl8761a_config" }, + /* 8761B */ + { IC_INFO(RTL_ROM_LMP_8761A, 0xb), + .config_needed = false, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8761b_fw.bin", + .cfg_name = "rtl_bt/rtl8761b_config" }, + /* 8822C with USB interface */ { IC_INFO(RTL_ROM_LMP_8822B, 0xc), .config_needed = false, @@ -256,6 +263,7 @@ { RTL_ROM_LMP_8723B, 9 }, /* 8723D */ { RTL_ROM_LMP_8821A, 10 }, /* 8821C */ { RTL_ROM_LMP_8822B, 13 }, /* 8822C */ + { RTL_ROM_LMP_8761A, 14 }, /* 8761B */ }; min_size = sizeof(struct rtl_epatch_header) + sizeof(extension_sig) + 3; diff -u linux-azure-5.4.0/drivers/bluetooth/btusb.c linux-azure-5.4.0/drivers/bluetooth/btusb.c --- linux-azure-5.4.0/drivers/bluetooth/btusb.c +++ linux-azure-5.4.0/drivers/bluetooth/btusb.c @@ -58,6 +58,7 @@ #define BTUSB_IFNUM_2 0x80000 #define BTUSB_CW6622 0x100000 #define BTUSB_MEDIATEK 0x200000 +#define BTUSB_WIDEBAND_SPEECH 0x400000 static const struct usb_device_id btusb_table[] = { /* Generic Bluetooth USB device */ @@ -333,15 +334,21 @@ { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL }, /* Intel Bluetooth devices */ - { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW }, - { USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_NEW }, - { USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_NEW }, + { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_NEW | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_NEW | + BTUSB_WIDEBAND_SPEECH }, { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR }, { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL }, { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL }, - { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW }, - { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL }, - { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW }, + { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW | + BTUSB_WIDEBAND_SPEECH }, /* Other Intel Bluetooth devices */ { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01), @@ -374,6 +381,10 @@ { USB_DEVICE(0x0bda, 0xb009), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x2ff8, 0xb011), .driver_info = BTUSB_REALTEK }, + /* Additional Realtek 8761BU Bluetooth devices */ + { USB_DEVICE(0x0b05, 0x190e), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + /* Additional Realtek 8821AE Bluetooth devices */ { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK }, { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK }, @@ -2569,6 +2580,7 @@ skb = bt_skb_alloc(HCI_WMT_MAX_EVENT_SIZE, GFP_ATOMIC); if (!skb) { hdev->stat.err_rx++; + kfree(urb->setup_packet); return; } @@ -2589,6 +2601,7 @@ data->evt_skb = skb_clone(skb, GFP_ATOMIC); if (!data->evt_skb) { kfree_skb(skb); + kfree(urb->setup_packet); return; } } @@ -2597,6 +2610,7 @@ if (err < 0) { kfree_skb(data->evt_skb); data->evt_skb = NULL; + kfree(urb->setup_packet); return; } @@ -2607,6 +2621,7 @@ wake_up_bit(&data->flags, BTUSB_TX_WAIT_VND_EVT); } + kfree(urb->setup_packet); return; } else if (urb->status == -ENOENT) { /* Avoid suspend failed when usb_kill_urb */ @@ -2627,6 +2642,7 @@ usb_anchor_urb(urb, &data->ctrl_anchor); err = usb_submit_urb(urb, GFP_ATOMIC); if (err < 0) { + kfree(urb->setup_packet); /* -EPERM: urb is being killed; * -ENODEV: device got disconnected */ @@ -2701,11 +2717,6 @@ struct btmtk_wmt_hdr *hdr; int err; - /* Submit control IN URB on demand to process the WMT event */ - err = btusb_mtk_submit_wmt_recv_urb(hdev); - if (err < 0) - return err; - /* Send the WMT command and wait until the WMT event returns */ hlen = sizeof(*hdr) + wmt_params->dlen; if (hlen > 255) @@ -2727,6 +2738,11 @@ return err; } + /* Submit control IN URB on demand to process the WMT event */ + err = btusb_mtk_submit_wmt_recv_urb(hdev); + if (err < 0) + return err; + /* The vendor specific WMT commands are all answered by a vendor * specific event and will have the Command Status or Command * Complete as with usual HCI command flow control. @@ -3293,6 +3309,11 @@ sent += size; count -= size; + /* ep2 need time to switch from function acl to function dfu, + * so we add 20ms delay here. + */ + msleep(20); + while (count) { size = min_t(size_t, count, QCA_DFU_PACKET_LEN); diff -u linux-azure-5.4.0/drivers/bluetooth/hci_bcm.c linux-azure-5.4.0/drivers/bluetooth/hci_bcm.c --- linux-azure-5.4.0/drivers/bluetooth/hci_bcm.c +++ linux-azure-5.4.0/drivers/bluetooth/hci_bcm.c @@ -1127,7 +1127,12 @@ return -ENOMEM; dev->dev = &pdev->dev; - dev->irq = platform_get_irq(pdev, 0); + + ret = platform_get_irq(pdev, 0); + if (ret < 0) + return ret; + + dev->irq = ret; if (has_acpi_companion(&pdev->dev)) { ret = bcm_acpi_probe(dev); diff -u linux-azure-5.4.0/drivers/bluetooth/hci_ldisc.c linux-azure-5.4.0/drivers/bluetooth/hci_ldisc.c --- linux-azure-5.4.0/drivers/bluetooth/hci_ldisc.c +++ linux-azure-5.4.0/drivers/bluetooth/hci_ldisc.c @@ -479,6 +479,9 @@ BT_DBG("tty %p", tty); + if (!capable(CAP_NET_ADMIN)) + return -EPERM; + /* Error if the tty has no write op instead of leaving an exploitable * hole */ diff -u linux-azure-5.4.0/drivers/bluetooth/hci_serdev.c linux-azure-5.4.0/drivers/bluetooth/hci_serdev.c --- linux-azure-5.4.0/drivers/bluetooth/hci_serdev.c +++ linux-azure-5.4.0/drivers/bluetooth/hci_serdev.c @@ -279,6 +279,8 @@ if (err) return err; + percpu_init_rwsem(&hu->proto_lock); + err = p->open(hu); if (err) goto err_open; @@ -301,7 +303,6 @@ INIT_WORK(&hu->init_ready, hci_uart_init_work); INIT_WORK(&hu->write_work, hci_uart_write_work); - percpu_init_rwsem(&hu->proto_lock); /* Only when vendor specific setup callback is provided, consider * the manufacturer information valid. This avoids filling in the diff -u linux-azure-5.4.0/drivers/bus/hisi_lpc.c linux-azure-5.4.0/drivers/bus/hisi_lpc.c --- linux-azure-5.4.0/drivers/bus/hisi_lpc.c +++ linux-azure-5.4.0/drivers/bus/hisi_lpc.c @@ -504,13 +504,13 @@ { struct acpi_device *adev = ACPI_COMPANION(hostdev); struct acpi_device *child; + struct platform_device *pdev; int ret; /* Only consider the children of the host */ list_for_each_entry(child, &adev->children, node) { const char *hid = acpi_device_hid(child); const struct hisi_lpc_acpi_cell *cell; - struct platform_device *pdev; const struct resource *res; bool found = false; int num_res; @@ -572,22 +572,24 @@ ret = platform_device_add_resources(pdev, res, num_res); if (ret) - goto fail; + goto fail_put_device; ret = platform_device_add_data(pdev, cell->pdata, cell->pdata_size); if (ret) - goto fail; + goto fail_put_device; ret = platform_device_add(pdev); if (ret) - goto fail; + goto fail_put_device; acpi_device_set_enumerated(child); } return 0; +fail_put_device: + platform_device_put(pdev); fail: hisi_lpc_acpi_remove(hostdev); return ret; diff -u linux-azure-5.4.0/drivers/bus/sunxi-rsb.c linux-azure-5.4.0/drivers/bus/sunxi-rsb.c --- linux-azure-5.4.0/drivers/bus/sunxi-rsb.c +++ linux-azure-5.4.0/drivers/bus/sunxi-rsb.c @@ -224,6 +224,8 @@ dev_dbg(&rdev->dev, "device %s registered\n", dev_name(&rdev->dev)); + return rdev; + err_device_add: put_device(&rdev->dev); diff -u linux-azure-5.4.0/drivers/bus/ti-sysc.c linux-azure-5.4.0/drivers/bus/ti-sysc.c --- linux-azure-5.4.0/drivers/bus/ti-sysc.c +++ linux-azure-5.4.0/drivers/bus/ti-sysc.c @@ -1376,9 +1376,9 @@ SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), /* Uarts on omap4 and later */ SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x50411e03, 0xffff00ff, - SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x47422e03, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), /* Quirks that need to be set based on the module address */ SYSC_QUIRK("mcpdm", 0x40132000, 0, 0x10, -ENODEV, 0x50000800, 0xffffffff, @@ -1388,6 +1388,9 @@ /* Quirks that need to be set based on detected module */ SYSC_QUIRK("aess", 0, 0, 0x10, -ENODEV, 0x40000000, 0xffffffff, SYSC_MODULE_QUIRK_AESS), + /* Errata i893 handling for dra7 dcan1 and 2 */ + SYSC_QUIRK("dcan", 0x4ae3c000, 0x20, -ENODEV, -ENODEV, 0xa3170504, 0xffffffff, + SYSC_QUIRK_CLKDM_NOAUTO), SYSC_QUIRK("dcan", 0x48480000, 0x20, -ENODEV, -ENODEV, 0xa3170504, 0xffffffff, SYSC_QUIRK_CLKDM_NOAUTO), SYSC_QUIRK("dss", 0x4832a000, 0, 0x10, 0x14, 0x00000020, 0xffffffff, @@ -2721,7 +2724,9 @@ struct sysc *ddata = platform_get_drvdata(pdev); int error; - cancel_delayed_work_sync(&ddata->idle_work); + /* Device can still be enabled, see deferred idle quirk in probe */ + if (cancel_delayed_work_sync(&ddata->idle_work)) + ti_sysc_idle(&ddata->idle_work.work); error = pm_runtime_get_sync(ddata->dev); if (error < 0) { diff -u linux-azure-5.4.0/drivers/char/ipmi/ipmi_msghandler.c linux-azure-5.4.0/drivers/char/ipmi/ipmi_msghandler.c --- linux-azure-5.4.0/drivers/char/ipmi/ipmi_msghandler.c +++ linux-azure-5.4.0/drivers/char/ipmi/ipmi_msghandler.c @@ -11,8 +11,8 @@ * Copyright 2002 MontaVista Software Inc. */ -#define pr_fmt(fmt) "%s" fmt, "IPMI message handler: " -#define dev_fmt pr_fmt +#define pr_fmt(fmt) "IPMI message handler: " fmt +#define dev_fmt(fmt) pr_fmt(fmt) #include #include @@ -220,6 +220,8 @@ struct work_struct remove_work; }; +static struct workqueue_struct *remove_work_wq; + static struct ipmi_user *acquire_ipmi_user(struct ipmi_user *user, int *index) __acquires(user->release_barrier) { @@ -1286,7 +1288,7 @@ struct ipmi_user *user = container_of(ref, struct ipmi_user, refcount); /* SRCU cleanup must happen in task context. */ - schedule_work(&user->remove_work); + queue_work(remove_work_wq, &user->remove_work); } static void _ipmi_destroy_user(struct ipmi_user *user) @@ -2936,7 +2938,7 @@ * with removing the device attributes while reading a device * attribute. */ - schedule_work(&bmc->remove_work); + queue_work(remove_work_wq, &bmc->remove_work); } /* @@ -4797,7 +4799,9 @@ static void free_smi_msg(struct ipmi_smi_msg *msg) { atomic_dec(&smi_msg_inuse_count); - kfree(msg); + /* Try to keep as much stuff out of the panic path as possible. */ + if (!oops_in_progress) + kfree(msg); } struct ipmi_smi_msg *ipmi_alloc_smi_msg(void) @@ -4816,7 +4820,9 @@ static void free_recv_msg(struct ipmi_recv_msg *msg) { atomic_dec(&recv_msg_inuse_count); - kfree(msg); + /* Try to keep as much stuff out of the panic path as possible. */ + if (!oops_in_progress) + kfree(msg); } static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void) @@ -4834,7 +4840,7 @@ void ipmi_free_recv_msg(struct ipmi_recv_msg *msg) { - if (msg->user) + if (msg->user && !oops_in_progress) kref_put(&msg->user->refcount, free_user); msg->done(msg); } @@ -5150,7 +5156,16 @@ if (initialized) goto out; - init_srcu_struct(&ipmi_interfaces_srcu); + rv = init_srcu_struct(&ipmi_interfaces_srcu); + if (rv) + goto out; + + remove_work_wq = create_singlethread_workqueue("ipmi-msghandler-remove-wq"); + if (!remove_work_wq) { + pr_err("unable to create ipmi-msghandler-remove-wq workqueue"); + rv = -ENOMEM; + goto out_wq; + } timer_setup(&ipmi_timer, ipmi_timeout, 0); mod_timer(&ipmi_timer, jiffies + IPMI_TIMEOUT_JIFFIES); @@ -5159,6 +5174,9 @@ initialized = true; +out_wq: + if (rv) + cleanup_srcu_struct(&ipmi_interfaces_srcu); out: mutex_unlock(&ipmi_interfaces_mutex); return rv; @@ -5182,6 +5200,8 @@ int count; if (initialized) { + destroy_workqueue(remove_work_wq); + atomic_notifier_chain_unregister(&panic_notifier_list, &panic_block); diff -u linux-azure-5.4.0/drivers/char/ipmi/ipmi_ssif.c linux-azure-5.4.0/drivers/char/ipmi/ipmi_ssif.c --- linux-azure-5.4.0/drivers/char/ipmi/ipmi_ssif.c +++ linux-azure-5.4.0/drivers/char/ipmi/ipmi_ssif.c @@ -845,6 +845,14 @@ break; case SSIF_GETTING_EVENTS: + if (!msg) { + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "No message set while getting events\n"); + ipmi_ssif_unlock_cond(ssif_info, flags); + break; + } + if ((result < 0) || (len < 3) || (msg->rsp[2] != 0)) { /* Error getting event, probably done. */ msg->done(msg); @@ -869,6 +877,14 @@ break; case SSIF_GETTING_MESSAGES: + if (!msg) { + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "No message set while getting messages\n"); + ipmi_ssif_unlock_cond(ssif_info, flags); + break; + } + if ((result < 0) || (len < 3) || (msg->rsp[2] != 0)) { /* Error getting event, probably done. */ msg->done(msg); @@ -892,6 +908,13 @@ deliver_recv_msg(ssif_info, msg); } break; + + default: + /* Should never happen, but just in case. */ + dev_warn(&ssif_info->client->dev, + "Invalid state in message done handling: %d\n", + ssif_info->ssif_state); + ipmi_ssif_unlock_cond(ssif_info, flags); } flags = ipmi_ssif_lock_cond(ssif_info, &oflags); @@ -1704,6 +1727,9 @@ } } + ssif_info->client = client; + i2c_set_clientdata(client, ssif_info); + rv = ssif_check_and_remove(client, ssif_info); /* If rv is 0 and addr source is not SI_ACPI, continue probing */ if (!rv && ssif_info->addr_source == SI_ACPI) { @@ -1724,9 +1750,6 @@ ipmi_addr_src_to_str(ssif_info->addr_source), client->addr, client->adapter->name, slave_addr); - ssif_info->client = client; - i2c_set_clientdata(client, ssif_info); - /* Now check for system interface capabilities */ msg[0] = IPMI_NETFN_APP_REQUEST << 2; msg[1] = IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_CMD; @@ -1926,6 +1949,7 @@ dev_err(&ssif_info->client->dev, "Unable to start IPMI SSIF: %d\n", rv); + i2c_set_clientdata(client, NULL); kfree(ssif_info); } kfree(resp); diff -u linux-azure-5.4.0/drivers/char/mem.c linux-azure-5.4.0/drivers/char/mem.c --- linux-azure-5.4.0/drivers/char/mem.c +++ linux-azure-5.4.0/drivers/char/mem.c @@ -953,8 +953,8 @@ #endif [5] = { "zero", 0666, &zero_fops, 0 }, [7] = { "full", 0666, &full_fops, 0 }, - [8] = { "random", 0666, &random_fops, 0 }, - [9] = { "urandom", 0666, &urandom_fops, 0 }, + [8] = { "random", 0666, &random_fops, FMODE_NOWAIT }, + [9] = { "urandom", 0666, &urandom_fops, FMODE_NOWAIT }, #ifdef CONFIG_PRINTK [11] = { "kmsg", 0644, &kmsg_fops, 0 }, #endif interdiff impossible; taking evasive action reverted: --- linux-azure-5.4.0/drivers/char/random.c +++ linux-azure-5.4.0.orig/drivers/char/random.c @@ -1223,14 +1223,14 @@ * We take into account the first, second and third-order deltas * in order to make our estimate. */ + delta = sample.jiffies - state->last_time; + state->last_time = sample.jiffies; - delta = sample.jiffies - READ_ONCE(state->last_time); - WRITE_ONCE(state->last_time, sample.jiffies); + delta2 = delta - state->last_delta; + state->last_delta = delta; - delta2 = delta - READ_ONCE(state->last_delta); - WRITE_ONCE(state->last_delta, delta); + delta3 = delta2 - state->last_delta2; + state->last_delta2 = delta2; - delta3 = delta2 - READ_ONCE(state->last_delta2); - WRITE_ONCE(state->last_delta2, delta2); if (delta < 0) delta = -delta; @@ -1687,9 +1687,8 @@ print_once = true; #endif if (__ratelimit(&unseeded_warning)) + pr_notice("random: %s called from %pS with crng_init=%d\n", + func_name, caller, crng_init); - printk_deferred(KERN_NOTICE "random: %s called from %pS " - "with crng_init=%d\n", func_name, caller, - crng_init); } /* @@ -2149,7 +2148,7 @@ return -EPERM; if (crng_init < 2) return -ENODATA; + crng_reseed(&primary_crng, NULL); - crng_reseed(&primary_crng, &input_pool); crng_global_init_time = jiffies - 1; return 0; default: @@ -2193,10 +2192,10 @@ if (flags & GRND_RANDOM) return _random_read(flags & GRND_NONBLOCK, buf, count); + if (!crng_ready()) { - if (crng_init == 0) { if (flags & GRND_NONBLOCK) return -EAGAIN; + ret = wait_for_random_bytes(); - ret = wait_event_interruptible(crng_init_wait, crng_init > 0); if (unlikely(ret)) return ret; } @@ -2358,11 +2357,11 @@ /* * Get a random word for internal kernel use only. The quality of the random + * number is either as good as RDRAND or as good as /dev/urandom, with the + * goal of being quite fast and not depleting entropy. In order to ensure - * number is good as /dev/urandom, but there is no backtrack protection, with - * the goal of being quite fast and not depleting entropy. In order to ensure * that the randomness provided by this function is okay, the function + * wait_for_random_bytes() should be called and return 0 at least once + * at any point prior. - * wait_for_random_bytes() should be called and return 0 at least once at any - * point prior. */ static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u64) = { .batch_lock = __SPIN_LOCK_UNLOCKED(batched_entropy_u64.lock), @@ -2375,6 +2374,15 @@ struct batched_entropy *batch; static void *previous; +#if BITS_PER_LONG == 64 + if (arch_get_random_long((unsigned long *)&ret)) + return ret; +#else + if (arch_get_random_long((unsigned long *)&ret) && + arch_get_random_long((unsigned long *)&ret + 1)) + return ret; +#endif + warn_unseeded_randomness(&previous); batch = raw_cpu_ptr(&batched_entropy_u64); @@ -2399,6 +2407,9 @@ struct batched_entropy *batch; static void *previous; + if (arch_get_random_int(&ret)) + return ret; + warn_unseeded_randomness(&previous); batch = raw_cpu_ptr(&batched_entropy_u32); unchanged: --- linux-azure-5.4.0.orig/drivers/char/random.c +++ linux-azure-5.4.0/drivers/char/random.c @@ -1,312 +1,30 @@ +// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) /* - * random.c -- A strong random number generator - * - * Copyright (C) 2017 Jason A. Donenfeld . All - * Rights Reserved. - * + * Copyright (C) 2017-2022 Jason A. Donenfeld . All Rights Reserved. * Copyright Matt Mackall , 2003, 2004, 2005 + * Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All rights reserved. * - * Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All - * rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, and the entire permission notice in its entirety, - * including the disclaimer of warranties. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote - * products derived from this software without specific prior - * written permission. - * - * ALTERNATIVELY, this product may be distributed under the terms of - * the GNU General Public License, in which case the provisions of the GPL are - * required INSTEAD OF the above restrictions. (This clause is - * necessary due to a potential bad interaction between the GPL and - * the restrictions contained in a BSD-style copyright.) - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF - * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT - * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE - * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH - * DAMAGE. - */ - -/* - * (now, with legal B.S. out of the way.....) - * - * This routine gathers environmental noise from device drivers, etc., - * and returns good random numbers, suitable for cryptographic use. - * Besides the obvious cryptographic uses, these numbers are also good - * for seeding TCP sequence numbers, and other places where it is - * desirable to have numbers which are not only random, but hard to - * predict by an attacker. - * - * Theory of operation - * =================== - * - * Computers are very predictable devices. Hence it is extremely hard - * to produce truly random numbers on a computer --- as opposed to - * pseudo-random numbers, which can easily generated by using a - * algorithm. Unfortunately, it is very easy for attackers to guess - * the sequence of pseudo-random number generators, and for some - * applications this is not acceptable. So instead, we must try to - * gather "environmental noise" from the computer's environment, which - * must be hard for outside attackers to observe, and use that to - * generate random numbers. In a Unix environment, this is best done - * from inside the kernel. - * - * Sources of randomness from the environment include inter-keyboard - * timings, inter-interrupt timings from some interrupts, and other - * events which are both (a) non-deterministic and (b) hard for an - * outside observer to measure. Randomness from these sources are - * added to an "entropy pool", which is mixed using a CRC-like function. - * This is not cryptographically strong, but it is adequate assuming - * the randomness is not chosen maliciously, and it is fast enough that - * the overhead of doing it on every interrupt is very reasonable. - * As random bytes are mixed into the entropy pool, the routines keep - * an *estimate* of how many bits of randomness have been stored into - * the random number generator's internal state. - * - * When random bytes are desired, they are obtained by taking the SHA - * hash of the contents of the "entropy pool". The SHA hash avoids - * exposing the internal state of the entropy pool. It is believed to - * be computationally infeasible to derive any useful information - * about the input of SHA from its output. Even if it is possible to - * analyze SHA in some clever way, as long as the amount of data - * returned from the generator is less than the inherent entropy in - * the pool, the output data is totally unpredictable. For this - * reason, the routine decreases its internal estimate of how many - * bits of "true randomness" are contained in the entropy pool as it - * outputs random numbers. - * - * If this estimate goes to zero, the routine can still generate - * random numbers; however, an attacker may (at least in theory) be - * able to infer the future output of the generator from prior - * outputs. This requires successful cryptanalysis of SHA, which is - * not believed to be feasible, but there is a remote possibility. - * Nonetheless, these numbers should be useful for the vast majority - * of purposes. - * - * Exported interfaces ---- output - * =============================== - * - * There are four exported interfaces; two for use within the kernel, - * and two or use from userspace. - * - * Exported interfaces ---- userspace output - * ----------------------------------------- - * - * The userspace interfaces are two character devices /dev/random and - * /dev/urandom. /dev/random is suitable for use when very high - * quality randomness is desired (for example, for key generation or - * one-time pads), as it will only return a maximum of the number of - * bits of randomness (as estimated by the random number generator) - * contained in the entropy pool. - * - * The /dev/urandom device does not have this limit, and will return - * as many bytes as are requested. As more and more random bytes are - * requested without giving time for the entropy pool to recharge, - * this will result in random numbers that are merely cryptographically - * strong. For many applications, however, this is acceptable. - * - * Exported interfaces ---- kernel output - * -------------------------------------- - * - * The primary kernel interface is - * - * void get_random_bytes(void *buf, int nbytes); - * - * This interface will return the requested number of random bytes, - * and place it in the requested buffer. This is equivalent to a - * read from /dev/urandom. - * - * For less critical applications, there are the functions: - * - * u32 get_random_u32() - * u64 get_random_u64() - * unsigned int get_random_int() - * unsigned long get_random_long() - * - * These are produced by a cryptographic RNG seeded from get_random_bytes, - * and so do not deplete the entropy pool as much. These are recommended - * for most in-kernel operations *if the result is going to be stored in - * the kernel*. - * - * Specifically, the get_random_int() family do not attempt to do - * "anti-backtracking". If you capture the state of the kernel (e.g. - * by snapshotting the VM), you can figure out previous get_random_int() - * return values. But if the value is stored in the kernel anyway, - * this is not a problem. - * - * It *is* safe to expose get_random_int() output to attackers (e.g. as - * network cookies); given outputs 1..n, it's not feasible to predict - * outputs 0 or n+1. The only concern is an attacker who breaks into - * the kernel later; the get_random_int() engine is not reseeded as - * often as the get_random_bytes() one. - * - * get_random_bytes() is needed for keys that need to stay secret after - * they are erased from the kernel. For example, any key that will - * be wrapped and stored encrypted. And session encryption keys: we'd - * like to know that after the session is closed and the keys erased, - * the plaintext is unrecoverable to someone who recorded the ciphertext. - * - * But for network ports/cookies, stack canaries, PRNG seeds, address - * space layout randomization, session *authentication* keys, or other - * applications where the sensitive data is stored in the kernel in - * plaintext for as long as it's sensitive, the get_random_int() family - * is just fine. - * - * Consider ASLR. We want to keep the address space secret from an - * outside attacker while the process is running, but once the address - * space is torn down, it's of no use to an attacker any more. And it's - * stored in kernel data structures as long as it's alive, so worrying - * about an attacker's ability to extrapolate it from the get_random_int() - * CRNG is silly. - * - * Even some cryptographic keys are safe to generate with get_random_int(). - * In particular, keys for SipHash are generally fine. Here, knowledge - * of the key authorizes you to do something to a kernel object (inject - * packets to a network connection, or flood a hash table), and the - * key is stored with the object being protected. Once it goes away, - * we no longer care if anyone knows the key. - * - * prandom_u32() - * ------------- - * - * For even weaker applications, see the pseudorandom generator - * prandom_u32(), prandom_max(), and prandom_bytes(). If the random - * numbers aren't security-critical at all, these are *far* cheaper. - * Useful for self-tests, random error simulation, randomized backoffs, - * and any other application where you trust that nobody is trying to - * maliciously mess with you by guessing the "random" numbers. - * - * Exported interfaces ---- input - * ============================== - * - * The current exported interfaces for gathering environmental noise - * from the devices are: - * - * void add_device_randomness(const void *buf, unsigned int size); - * void add_input_randomness(unsigned int type, unsigned int code, - * unsigned int value); - * void add_interrupt_randomness(int irq, int irq_flags); - * void add_disk_randomness(struct gendisk *disk); - * - * add_device_randomness() is for adding data to the random pool that - * is likely to differ between two devices (or possibly even per boot). - * This would be things like MAC addresses or serial numbers, or the - * read-out of the RTC. This does *not* add any actual entropy to the - * pool, but it initializes the pool to different values for devices - * that might otherwise be identical and have very little entropy - * available to them (particularly common in the embedded world). - * - * add_input_randomness() uses the input layer interrupt timing, as well as - * the event type information from the hardware. - * - * add_interrupt_randomness() uses the interrupt timing as random - * inputs to the entropy pool. Using the cycle counters and the irq source - * as inputs, it feeds the randomness roughly once a second. - * - * add_disk_randomness() uses what amounts to the seek time of block - * layer request events, on a per-disk_devt basis, as input to the - * entropy pool. Note that high-speed solid state drives with very low - * seek times do not make for good sources of entropy, as their seek - * times are usually fairly consistent. + * This driver produces cryptographically secure pseudorandom data. It is divided + * into roughly six sections, each with a section header: * - * All of these routines try to estimate how many bits of randomness a - * particular randomness source. They do this by keeping track of the - * first and second order deltas of the event timings. - * - * Ensuring unpredictability at system startup - * ============================================ - * - * When any operating system starts up, it will go through a sequence - * of actions that are fairly predictable by an adversary, especially - * if the start-up does not involve interaction with a human operator. - * This reduces the actual number of bits of unpredictability in the - * entropy pool below the value in entropy_count. In order to - * counteract this effect, it helps to carry information in the - * entropy pool across shut-downs and start-ups. To do this, put the - * following lines an appropriate script which is run during the boot - * sequence: - * - * echo "Initializing random number generator..." - * random_seed=/var/run/random-seed - * # Carry a random seed from start-up to start-up - * # Load and then save the whole entropy pool - * if [ -f $random_seed ]; then - * cat $random_seed >/dev/urandom - * else - * touch $random_seed - * fi - * chmod 600 $random_seed - * dd if=/dev/urandom of=$random_seed count=1 bs=512 - * - * and the following lines in an appropriate script which is run as - * the system is shutdown: - * - * # Carry a random seed from shut-down to start-up - * # Save the whole entropy pool - * echo "Saving random seed..." - * random_seed=/var/run/random-seed - * touch $random_seed - * chmod 600 $random_seed - * dd if=/dev/urandom of=$random_seed count=1 bs=512 - * - * For example, on most modern systems using the System V init - * scripts, such code fragments would be found in - * /etc/rc.d/init.d/random. On older Linux systems, the correct script - * location might be in /etc/rcb.d/rc.local or /etc/rc.d/rc.0. - * - * Effectively, these commands cause the contents of the entropy pool - * to be saved at shut-down time and reloaded into the entropy pool at - * start-up. (The 'dd' in the addition to the bootup script is to - * make sure that /etc/random-seed is different for every start-up, - * even if the system crashes without executing rc.0.) Even with - * complete knowledge of the start-up activities, predicting the state - * of the entropy pool requires knowledge of the previous history of - * the system. - * - * Configuring the /dev/random driver under Linux - * ============================================== - * - * The /dev/random driver under Linux uses minor numbers 8 and 9 of - * the /dev/mem major number (#1). So if your system does not have - * /dev/random and /dev/urandom created already, they can be created - * by using the commands: - * - * mknod /dev/random c 1 8 - * mknod /dev/urandom c 1 9 - * - * Acknowledgements: - * ================= - * - * Ideas for constructing this random number generator were derived - * from Pretty Good Privacy's random number generator, and from private - * discussions with Phil Karn. Colin Plumb provided a faster random - * number generator, which speed up the mixing function of the entropy - * pool, taken from PGPfone. Dale Worley has also contributed many - * useful ideas and suggestions to improve this driver. - * - * Any flaws in the design are solely my responsibility, and should - * not be attributed to the Phil, Colin, or any of authors of PGP. - * - * Further background information on this topic may be obtained from - * RFC 1750, "Randomness Recommendations for Security", by Donald - * Eastlake, Steve Crocker, and Jeff Schiller. + * - Initialization and readiness waiting. + * - Fast key erasure RNG, the "crng". + * - Entropy accumulation and extraction routines. + * - Entropy collection routines. + * - Userspace reader/writer interfaces. + * - Sysctl interface. + * + * The high level overview is that there is one input pool, into which + * various pieces of data are hashed. Prior to initialization, some of that + * data is then "credited" as having a certain number of bits of entropy. + * When enough bits of entropy are available, the hash is finalized and + * handed as a key to a stream cipher that expands it indefinitely for + * various consumers. This key is periodically refreshed as the various + * entropy collectors, described below, add data to the input pool. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include @@ -325,8 +43,6 @@ #include #include #include -#include -#include #include #include #include @@ -334,1403 +50,1085 @@ #include #include #include +#include +#include +#include #include - +#include #include -#include #include #include #include -#define CREATE_TRACE_POINTS -#include - -/* #define ADD_INTERRUPT_BENCH */ - -/* - * Configuration information - */ -#define INPUT_POOL_SHIFT 12 -#define INPUT_POOL_WORDS (1 << (INPUT_POOL_SHIFT-5)) -#define OUTPUT_POOL_SHIFT 10 -#define OUTPUT_POOL_WORDS (1 << (OUTPUT_POOL_SHIFT-5)) -#define SEC_XFER_SIZE 512 -#define EXTRACT_SIZE 10 - - -#define LONGS(x) (((x) + sizeof(unsigned long) - 1)/sizeof(unsigned long)) - -/* - * To allow fractional bits to be tracked, the entropy_count field is - * denominated in units of 1/8th bits. - * - * 2*(ENTROPY_SHIFT + poolbitshift) must <= 31, or the multiply in - * credit_entropy_bits() needs to be 64 bits wide. - */ -#define ENTROPY_SHIFT 3 -#define ENTROPY_BITS(r) ((r)->entropy_count >> ENTROPY_SHIFT) - -/* - * The minimum number of bits of entropy before we wake up a read on - * /dev/random. Should be enough to do a significant reseed. - */ -static int random_read_wakeup_bits = 64; - -/* - * If the entropy count falls under this number of bits, then we - * should wake up processes which are selecting or polling on write - * access to /dev/random. - */ -static int random_write_wakeup_bits = 28 * OUTPUT_POOL_WORDS; - -/* - * Originally, we used a primitive polynomial of degree .poolwords - * over GF(2). The taps for various sizes are defined below. They - * were chosen to be evenly spaced except for the last tap, which is 1 - * to get the twisting happening as fast as possible. - * - * For the purposes of better mixing, we use the CRC-32 polynomial as - * well to make a (modified) twisted Generalized Feedback Shift - * Register. (See M. Matsumoto & Y. Kurita, 1992. Twisted GFSR - * generators. ACM Transactions on Modeling and Computer Simulation - * 2(3):179-194. Also see M. Matsumoto & Y. Kurita, 1994. Twisted - * GFSR generators II. ACM Transactions on Modeling and Computer - * Simulation 4:254-266) - * - * Thanks to Colin Plumb for suggesting this. - * - * The mixing operation is much less sensitive than the output hash, - * where we use SHA-1. All that we want of mixing operation is that - * it be a good non-cryptographic hash; i.e. it not produce collisions - * when fed "random" data of the sort we expect to see. As long as - * the pool state differs for different inputs, we have preserved the - * input entropy and done a good job. The fact that an intelligent - * attacker can construct inputs that will produce controlled - * alterations to the pool's state is not important because we don't - * consider such inputs to contribute any randomness. The only - * property we need with respect to them is that the attacker can't - * increase his/her knowledge of the pool's state. Since all - * additions are reversible (knowing the final state and the input, - * you can reconstruct the initial state), if an attacker has any - * uncertainty about the initial state, he/she can only shuffle that - * uncertainty about, but never cause any collisions (which would - * decrease the uncertainty). - * - * Our mixing functions were analyzed by Lacharme, Roeck, Strubel, and - * Videau in their paper, "The Linux Pseudorandom Number Generator - * Revisited" (see: http://eprint.iacr.org/2012/251.pdf). In their - * paper, they point out that we are not using a true Twisted GFSR, - * since Matsumoto & Kurita used a trinomial feedback polynomial (that - * is, with only three taps, instead of the six that we are using). - * As a result, the resulting polynomial is neither primitive nor - * irreducible, and hence does not have a maximal period over - * GF(2**32). They suggest a slight change to the generator - * polynomial which improves the resulting TGFSR polynomial to be - * irreducible, which we have made here. - */ -static const struct poolinfo { - int poolbitshift, poolwords, poolbytes, poolfracbits; -#define S(x) ilog2(x)+5, (x), (x)*4, (x) << (ENTROPY_SHIFT+5) - int tap1, tap2, tap3, tap4, tap5; -} poolinfo_table[] = { - /* was: x^128 + x^103 + x^76 + x^51 +x^25 + x + 1 */ - /* x^128 + x^104 + x^76 + x^51 +x^25 + x + 1 */ - { S(128), 104, 76, 51, 25, 1 }, - /* was: x^32 + x^26 + x^20 + x^14 + x^7 + x + 1 */ - /* x^32 + x^26 + x^19 + x^14 + x^7 + x + 1 */ - { S(32), 26, 19, 14, 7, 1 }, -#if 0 - /* x^2048 + x^1638 + x^1231 + x^819 + x^411 + x + 1 -- 115 */ - { S(2048), 1638, 1231, 819, 411, 1 }, - - /* x^1024 + x^817 + x^615 + x^412 + x^204 + x + 1 -- 290 */ - { S(1024), 817, 615, 412, 204, 1 }, - - /* x^1024 + x^819 + x^616 + x^410 + x^207 + x^2 + 1 -- 115 */ - { S(1024), 819, 616, 410, 207, 2 }, - - /* x^512 + x^411 + x^308 + x^208 + x^104 + x + 1 -- 225 */ - { S(512), 411, 308, 208, 104, 1 }, - - /* x^512 + x^409 + x^307 + x^206 + x^102 + x^2 + 1 -- 95 */ - { S(512), 409, 307, 206, 102, 2 }, - /* x^512 + x^409 + x^309 + x^205 + x^103 + x^2 + 1 -- 95 */ - { S(512), 409, 309, 205, 103, 2 }, - - /* x^256 + x^205 + x^155 + x^101 + x^52 + x + 1 -- 125 */ - { S(256), 205, 155, 101, 52, 1 }, - - /* x^128 + x^103 + x^78 + x^51 + x^27 + x^2 + 1 -- 70 */ - { S(128), 103, 78, 51, 27, 2 }, - - /* x^64 + x^52 + x^39 + x^26 + x^14 + x + 1 -- 15 */ - { S(64), 52, 39, 26, 14, 1 }, -#endif -}; +/********************************************************************* + * + * Initialization and readiness waiting. + * + * Much of the RNG infrastructure is devoted to various dependencies + * being able to wait until the RNG has collected enough entropy and + * is ready for safe consumption. + * + *********************************************************************/ /* - * Static global variables + * crng_init is protected by base_crng->lock, and only increases + * its value (from empty->early->ready). */ -static DECLARE_WAIT_QUEUE_HEAD(random_read_wait); -static DECLARE_WAIT_QUEUE_HEAD(random_write_wait); +static enum { + CRNG_EMPTY = 0, /* Little to no entropy collected */ + CRNG_EARLY = 1, /* At least POOL_EARLY_BITS collected */ + CRNG_READY = 2 /* Fully initialized with POOL_READY_BITS collected */ +} crng_init __read_mostly = CRNG_EMPTY; +#define crng_ready() (likely(crng_init >= CRNG_READY)) +/* Various types of waiters for crng_init->CRNG_READY transition. */ +static DECLARE_WAIT_QUEUE_HEAD(crng_init_wait); static struct fasync_struct *fasync; +static DEFINE_SPINLOCK(random_ready_chain_lock); +static RAW_NOTIFIER_HEAD(random_ready_chain); -static DEFINE_SPINLOCK(random_ready_list_lock); -static LIST_HEAD(random_ready_list); - -struct crng_state { - __u32 state[16]; - unsigned long init_time; - spinlock_t lock; -}; - -static struct crng_state primary_crng = { - .lock = __SPIN_LOCK_UNLOCKED(primary_crng.lock), -}; - -/* - * crng_init = 0 --> Uninitialized - * 1 --> Initialized - * 2 --> Initialized from input_pool - * - * crng_init is protected by primary_crng->lock, and only increases - * its value (from 0->1->2). - */ -static int crng_init = 0; -#define crng_ready() (likely(crng_init > 1)) -static int crng_init_cnt = 0; -static unsigned long crng_global_init_time = 0; -#define CRNG_INIT_CNT_THRESH (2*CHACHA_KEY_SIZE) -static void _extract_crng(struct crng_state *crng, __u8 out[CHACHA_BLOCK_SIZE]); -static void _crng_backtrack_protect(struct crng_state *crng, - __u8 tmp[CHACHA_BLOCK_SIZE], int used); -static void process_random_ready_list(void); -static void _get_random_bytes(void *buf, int nbytes); - -static struct ratelimit_state unseeded_warning = - RATELIMIT_STATE_INIT("warn_unseeded_randomness", HZ, 3); +/* Control how we warn userspace. */ static struct ratelimit_state urandom_warning = - RATELIMIT_STATE_INIT("warn_urandom_randomness", HZ, 3); - -static int ratelimit_disable __read_mostly; - + RATELIMIT_STATE_INIT_FLAGS("urandom_warning", HZ, 3, RATELIMIT_MSG_ON_RELEASE); +static int ratelimit_disable __read_mostly = + IS_ENABLED(CONFIG_WARN_ALL_UNSEEDED_RANDOM); module_param_named(ratelimit_disable, ratelimit_disable, int, 0644); MODULE_PARM_DESC(ratelimit_disable, "Disable random ratelimit suppression"); -/********************************************************************** - * - * OS independent entropy store. Here are the functions which handle - * storing entropy in an entropy pool. +/* + * Returns whether or not the input pool has been seeded and thus guaranteed + * to supply cryptographically secure random numbers. This applies to: the + * /dev/urandom device, the get_random_bytes function, and the get_random_{u32, + * ,u64,int,long} family of functions. * - **********************************************************************/ - -struct entropy_store; -struct entropy_store { - /* read-only data: */ - const struct poolinfo *poolinfo; - __u32 *pool; - const char *name; - struct entropy_store *pull; - struct work_struct push_work; - - /* read-write data: */ - unsigned long last_pulled; - spinlock_t lock; - unsigned short add_ptr; - unsigned short input_rotate; - int entropy_count; - unsigned int initialized:1; - unsigned int last_data_init:1; - __u8 last_data[EXTRACT_SIZE]; -}; - -static ssize_t extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int min, int rsvd); -static ssize_t _extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int fips); - -static void crng_reseed(struct crng_state *crng, struct entropy_store *r); -static void push_to_pool(struct work_struct *work); -static __u32 input_pool_data[INPUT_POOL_WORDS] __latent_entropy; -static __u32 blocking_pool_data[OUTPUT_POOL_WORDS] __latent_entropy; - -static struct entropy_store input_pool = { - .poolinfo = &poolinfo_table[0], - .name = "input", - .lock = __SPIN_LOCK_UNLOCKED(input_pool.lock), - .pool = input_pool_data -}; - -static struct entropy_store blocking_pool = { - .poolinfo = &poolinfo_table[1], - .name = "blocking", - .pull = &input_pool, - .lock = __SPIN_LOCK_UNLOCKED(blocking_pool.lock), - .pool = blocking_pool_data, - .push_work = __WORK_INITIALIZER(blocking_pool.push_work, - push_to_pool), -}; + * Returns: true if the input pool has been seeded. + * false if the input pool has not been seeded. + */ +bool rng_is_initialized(void) +{ + return crng_ready(); +} +EXPORT_SYMBOL(rng_is_initialized); -static __u32 const twist_table[8] = { - 0x00000000, 0x3b6e20c8, 0x76dc4190, 0x4db26158, - 0xedb88320, 0xd6d6a3e8, 0x9b64c2b0, 0xa00ae278 }; +/* Used by wait_for_random_bytes(), and considered an entropy collector, below. */ +static void try_to_generate_entropy(void); /* - * This function adds bytes into the entropy "pool". It does not - * update the entropy estimate. The caller should call - * credit_entropy_bits if this is appropriate. + * Wait for the input pool to be seeded and thus guaranteed to supply + * cryptographically secure random numbers. This applies to: the /dev/urandom + * device, the get_random_bytes function, and the get_random_{u32,u64,int,long} + * family of functions. Using any of these functions without first calling + * this function forfeits the guarantee of security. * - * The pool is stirred with a primitive polynomial of the appropriate - * degree, and then twisted. We twist by three bits at a time because - * it's cheap to do so and helps slightly in the expected case where - * the entropy is concentrated in the low-order bits. + * Returns: 0 if the input pool has been seeded. + * -ERESTARTSYS if the function was interrupted by a signal. */ -static void _mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +int wait_for_random_bytes(void) { - unsigned long i, tap1, tap2, tap3, tap4, tap5; - int input_rotate; - int wordmask = r->poolinfo->poolwords - 1; - const char *bytes = in; - __u32 w; - - tap1 = r->poolinfo->tap1; - tap2 = r->poolinfo->tap2; - tap3 = r->poolinfo->tap3; - tap4 = r->poolinfo->tap4; - tap5 = r->poolinfo->tap5; - - input_rotate = r->input_rotate; - i = r->add_ptr; - - /* mix one byte at a time to simplify size handling and churn faster */ - while (nbytes--) { - w = rol32(*bytes++, input_rotate); - i = (i - 1) & wordmask; + while (!crng_ready()) { + int ret; - /* XOR in the various taps */ - w ^= r->pool[i]; - w ^= r->pool[(i + tap1) & wordmask]; - w ^= r->pool[(i + tap2) & wordmask]; - w ^= r->pool[(i + tap3) & wordmask]; - w ^= r->pool[(i + tap4) & wordmask]; - w ^= r->pool[(i + tap5) & wordmask]; + try_to_generate_entropy(); + ret = wait_event_interruptible_timeout(crng_init_wait, crng_ready(), HZ); + if (ret) + return ret > 0 ? 0 : ret; + } + return 0; +} +EXPORT_SYMBOL(wait_for_random_bytes); - /* Mix the result back in with a twist */ - r->pool[i] = (w >> 3) ^ twist_table[w & 7]; +/* + * Add a callback function that will be invoked when the input + * pool is initialised. + * + * returns: 0 if callback is successfully added + * -EALREADY if pool is already initialised (callback not called) + */ +int __cold register_random_ready_notifier(struct notifier_block *nb) +{ + unsigned long flags; + int ret = -EALREADY; - /* - * Normally, we add 7 bits of rotation to the pool. - * At the beginning of the pool, add an extra 7 bits - * rotation, so that successive passes spread the - * input bits across the pool evenly. - */ - input_rotate = (input_rotate + (i ? 7 : 14)) & 31; - } + if (crng_ready()) + return ret; - r->input_rotate = input_rotate; - r->add_ptr = i; + spin_lock_irqsave(&random_ready_chain_lock, flags); + if (!crng_ready()) + ret = raw_notifier_chain_register(&random_ready_chain, nb); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); + return ret; } -static void __mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +/* + * Delete a previously registered readiness callback function. + */ +int __cold unregister_random_ready_notifier(struct notifier_block *nb) { - trace_mix_pool_bytes_nolock(r->name, nbytes, _RET_IP_); - _mix_pool_bytes(r, in, nbytes); + unsigned long flags; + int ret; + + spin_lock_irqsave(&random_ready_chain_lock, flags); + ret = raw_notifier_chain_unregister(&random_ready_chain, nb); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); + return ret; } -static void mix_pool_bytes(struct entropy_store *r, const void *in, - int nbytes) +static void __cold process_random_ready_list(void) { unsigned long flags; - trace_mix_pool_bytes(r->name, nbytes, _RET_IP_); - spin_lock_irqsave(&r->lock, flags); - _mix_pool_bytes(r, in, nbytes); - spin_unlock_irqrestore(&r->lock, flags); + spin_lock_irqsave(&random_ready_chain_lock, flags); + raw_notifier_call_chain(&random_ready_chain, 0, NULL); + spin_unlock_irqrestore(&random_ready_chain_lock, flags); } -struct fast_pool { - __u32 pool[4]; - unsigned long last; - unsigned short reg_idx; - unsigned char count; -}; +#define warn_unseeded_randomness() \ + if (IS_ENABLED(CONFIG_WARN_ALL_UNSEEDED_RANDOM) && !crng_ready()) \ + printk_deferred(KERN_NOTICE "random: %s called from %pS with crng_init=%d\n", \ + __func__, (void *)_RET_IP_, crng_init) -/* - * This is a fast mixing routine used by the interrupt randomness - * collector. It's hardcoded for an 128 bit pool and assumes that any - * locks that might be needed are taken by the caller. - */ -static void fast_mix(struct fast_pool *f) -{ - __u32 a = f->pool[0], b = f->pool[1]; - __u32 c = f->pool[2], d = f->pool[3]; - a += b; c += d; - b = rol32(b, 6); d = rol32(d, 27); - d ^= a; b ^= c; +/********************************************************************* + * + * Fast key erasure RNG, the "crng". + * + * These functions expand entropy from the entropy extractor into + * long streams for external consumption using the "fast key erasure" + * RNG described at . + * + * There are a few exported interfaces for use by other drivers: + * + * void get_random_bytes(void *buf, size_t len) + * u32 get_random_u32() + * u64 get_random_u64() + * unsigned int get_random_int() + * unsigned long get_random_long() + * + * These interfaces will return the requested number of random bytes + * into the given buffer or as a return value. This is equivalent to + * a read from /dev/urandom. The u32, u64, int, and long family of + * functions may be higher performance for one-off random integers, + * because they do a bit of buffering and do not invoke reseeding + * until the buffer is emptied. + * + *********************************************************************/ + +enum { + CRNG_RESEED_START_INTERVAL = HZ, + CRNG_RESEED_INTERVAL = 60 * HZ +}; - a += b; c += d; - b = rol32(b, 16); d = rol32(d, 14); - d ^= a; b ^= c; +static struct { + u8 key[CHACHA_KEY_SIZE] __aligned(__alignof__(long)); + unsigned long birth; + unsigned long generation; + spinlock_t lock; +} base_crng = { + .lock = __SPIN_LOCK_UNLOCKED(base_crng.lock) +}; - a += b; c += d; - b = rol32(b, 6); d = rol32(d, 27); - d ^= a; b ^= c; +struct crng { + u8 key[CHACHA_KEY_SIZE]; + unsigned long generation; +}; - a += b; c += d; - b = rol32(b, 16); d = rol32(d, 14); - d ^= a; b ^= c; +static DEFINE_PER_CPU(struct crng, crngs) = { + .generation = ULONG_MAX +}; - f->pool[0] = a; f->pool[1] = b; - f->pool[2] = c; f->pool[3] = d; - f->count++; -} +/* Used by crng_reseed() and crng_make_state() to extract a new seed from the input pool. */ +static void extract_entropy(void *buf, size_t len); -static void process_random_ready_list(void) +/* This extracts a new crng key from the input pool. */ +static void crng_reseed(void) { unsigned long flags; - struct random_ready_callback *rdy, *tmp; + unsigned long next_gen; + u8 key[CHACHA_KEY_SIZE]; - spin_lock_irqsave(&random_ready_list_lock, flags); - list_for_each_entry_safe(rdy, tmp, &random_ready_list, list) { - struct module *owner = rdy->owner; + extract_entropy(key, sizeof(key)); - list_del_init(&rdy->list); - rdy->func(rdy); - module_put(owner); - } - spin_unlock_irqrestore(&random_ready_list_lock, flags); + /* + * We copy the new key into the base_crng, overwriting the old one, + * and update the generation counter. We avoid hitting ULONG_MAX, + * because the per-cpu crngs are initialized to ULONG_MAX, so this + * forces new CPUs that come online to always initialize. + */ + spin_lock_irqsave(&base_crng.lock, flags); + memcpy(base_crng.key, key, sizeof(base_crng.key)); + next_gen = base_crng.generation + 1; + if (next_gen == ULONG_MAX) + ++next_gen; + WRITE_ONCE(base_crng.generation, next_gen); + WRITE_ONCE(base_crng.birth, jiffies); + if (!crng_ready()) + crng_init = CRNG_READY; + spin_unlock_irqrestore(&base_crng.lock, flags); + memzero_explicit(key, sizeof(key)); } /* - * Credit (or debit) the entropy store with n bits of entropy. - * Use credit_entropy_bits_safe() if the value comes from userspace - * or otherwise should be checked for extreme values. + * This generates a ChaCha block using the provided key, and then + * immediately overwites that key with half the block. It returns + * the resultant ChaCha state to the user, along with the second + * half of the block containing 32 bytes of random data that may + * be used; random_data_len may not be greater than 32. + * + * The returned ChaCha state contains within it a copy of the old + * key value, at index 4, so the state should always be zeroed out + * immediately after using in order to maintain forward secrecy. + * If the state cannot be erased in a timely manner, then it is + * safer to set the random_data parameter to &chacha_state[4] so + * that this function overwrites it before returning. */ -static void credit_entropy_bits(struct entropy_store *r, int nbits) +static void crng_fast_key_erasure(u8 key[CHACHA_KEY_SIZE], + u32 chacha_state[CHACHA_BLOCK_SIZE / sizeof(u32)], + u8 *random_data, size_t random_data_len) { - int entropy_count, orig, has_initialized = 0; - const int pool_size = r->poolinfo->poolfracbits; - int nfrac = nbits << ENTROPY_SHIFT; + u8 first_block[CHACHA_BLOCK_SIZE]; - if (!nbits) - return; + BUG_ON(random_data_len > 32); -retry: - entropy_count = orig = READ_ONCE(r->entropy_count); - if (nfrac < 0) { - /* Debit */ - entropy_count += nfrac; - } else { - /* - * Credit: we have to account for the possibility of - * overwriting already present entropy. Even in the - * ideal case of pure Shannon entropy, new contributions - * approach the full value asymptotically: - * - * entropy <- entropy + (pool_size - entropy) * - * (1 - exp(-add_entropy/pool_size)) - * - * For add_entropy <= pool_size/2 then - * (1 - exp(-add_entropy/pool_size)) >= - * (add_entropy/pool_size)*0.7869... - * so we can approximate the exponential with - * 3/4*add_entropy/pool_size and still be on the - * safe side by adding at most pool_size/2 at a time. - * - * The use of pool_size-2 in the while statement is to - * prevent rounding artifacts from making the loop - * arbitrarily long; this limits the loop to log2(pool_size)*2 - * turns no matter how large nbits is. - */ - int pnfrac = nfrac; - const int s = r->poolinfo->poolbitshift + ENTROPY_SHIFT + 2; - /* The +2 corresponds to the /4 in the denominator */ - - do { - unsigned int anfrac = min(pnfrac, pool_size/2); - unsigned int add = - ((pool_size - entropy_count)*anfrac*3) >> s; - - entropy_count += add; - pnfrac -= anfrac; - } while (unlikely(entropy_count < pool_size-2 && pnfrac)); - } - - if (unlikely(entropy_count < 0)) { - pr_warn("random: negative entropy/overflow: pool %s count %d\n", - r->name, entropy_count); - WARN_ON(1); - entropy_count = 0; - } else if (entropy_count > pool_size) - entropy_count = pool_size; - if ((r == &blocking_pool) && !r->initialized && - (entropy_count >> ENTROPY_SHIFT) > 128) - has_initialized = 1; - if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) - goto retry; - - if (has_initialized) { - r->initialized = 1; - wake_up_interruptible(&random_read_wait); - kill_fasync(&fasync, SIGIO, POLL_IN); - } + chacha_init_consts(chacha_state); + memcpy(&chacha_state[4], key, CHACHA_KEY_SIZE); + memset(&chacha_state[12], 0, sizeof(u32) * 4); + chacha20_block(chacha_state, first_block); - trace_credit_entropy_bits(r->name, nbits, - entropy_count >> ENTROPY_SHIFT, _RET_IP_); - - if (r == &input_pool) { - int entropy_bits = entropy_count >> ENTROPY_SHIFT; - struct entropy_store *other = &blocking_pool; - - if (crng_init < 2) { - if (entropy_bits < 128) - return; - crng_reseed(&primary_crng, r); - entropy_bits = r->entropy_count >> ENTROPY_SHIFT; - } - - /* initialize the blocking pool if necessary */ - if (entropy_bits >= random_read_wakeup_bits && - !other->initialized) { - schedule_work(&other->push_work); - return; - } - - /* should we wake readers? */ - if (entropy_bits >= random_read_wakeup_bits && - wq_has_sleeper(&random_read_wait)) { - wake_up_interruptible(&random_read_wait); - kill_fasync(&fasync, SIGIO, POLL_IN); - } - /* If the input pool is getting full, and the blocking - * pool has room, send some entropy to the blocking - * pool. - */ - if (!work_pending(&other->push_work) && - (ENTROPY_BITS(r) > 6 * r->poolinfo->poolbytes) && - (ENTROPY_BITS(other) <= 6 * other->poolinfo->poolbytes)) - schedule_work(&other->push_work); - } + memcpy(key, first_block, CHACHA_KEY_SIZE); + memcpy(random_data, first_block + CHACHA_KEY_SIZE, random_data_len); + memzero_explicit(first_block, sizeof(first_block)); } -static int credit_entropy_bits_safe(struct entropy_store *r, int nbits) +/* + * Return whether the crng seed is considered to be sufficiently old + * that a reseeding is needed. This happens if the last reseeding + * was CRNG_RESEED_INTERVAL ago, or during early boot, at an interval + * proportional to the uptime. + */ +static bool crng_has_old_seed(void) { - const int nbits_max = r->poolinfo->poolwords * 32; + static bool early_boot = true; + unsigned long interval = CRNG_RESEED_INTERVAL; - if (nbits < 0) - return -EINVAL; - - /* Cap the value to avoid overflows */ - nbits = min(nbits, nbits_max); - - credit_entropy_bits(r, nbits); - return 0; + if (unlikely(READ_ONCE(early_boot))) { + time64_t uptime = ktime_get_seconds(); + if (uptime >= CRNG_RESEED_INTERVAL / HZ * 2) + WRITE_ONCE(early_boot, false); + else + interval = max_t(unsigned int, CRNG_RESEED_START_INTERVAL, + (unsigned int)uptime / 2 * HZ); + } + return time_is_before_jiffies(READ_ONCE(base_crng.birth) + interval); } -/********************************************************************* - * - * CRNG using CHACHA20 - * - *********************************************************************/ - -#define CRNG_RESEED_INTERVAL (300*HZ) - -static DECLARE_WAIT_QUEUE_HEAD(crng_init_wait); - -#ifdef CONFIG_NUMA /* - * Hack to deal with crazy userspace progams when they are all trying - * to access /dev/urandom in parallel. The programs are almost - * certainly doing something terribly wrong, but we'll work around - * their brain damage. + * This function returns a ChaCha state that you may use for generating + * random data. It also returns up to 32 bytes on its own of random data + * that may be used; random_data_len may not be greater than 32. */ -static struct crng_state **crng_node_pool __read_mostly; -#endif +static void crng_make_state(u32 chacha_state[CHACHA_BLOCK_SIZE / sizeof(u32)], + u8 *random_data, size_t random_data_len) +{ + unsigned long flags; + struct crng *crng; -static void invalidate_batched_entropy(void); -static void numa_crng_init(void); + BUG_ON(random_data_len > 32); -static bool trust_cpu __ro_after_init = IS_ENABLED(CONFIG_RANDOM_TRUST_CPU); -static int __init parse_trust_cpu(char *arg) -{ - return kstrtobool(arg, &trust_cpu); -} -early_param("random.trust_cpu", parse_trust_cpu); + /* + * For the fast path, we check whether we're ready, unlocked first, and + * then re-check once locked later. In the case where we're really not + * ready, we do fast key erasure with the base_crng directly, extracting + * when crng_init is CRNG_EMPTY. + */ + if (!crng_ready()) { + bool ready; -static void crng_initialize(struct crng_state *crng) -{ - int i; - int arch_init = 1; - unsigned long rv; - - memcpy(&crng->state[0], "expand 32-byte k", 16); - if (crng == &primary_crng) - _extract_entropy(&input_pool, &crng->state[4], - sizeof(__u32) * 12, 0); - else - _get_random_bytes(&crng->state[4], sizeof(__u32) * 12); - for (i = 4; i < 16; i++) { - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) { - rv = random_get_entropy(); - arch_init = 0; + spin_lock_irqsave(&base_crng.lock, flags); + ready = crng_ready(); + if (!ready) { + if (crng_init == CRNG_EMPTY) + extract_entropy(base_crng.key, sizeof(base_crng.key)); + crng_fast_key_erasure(base_crng.key, chacha_state, + random_data, random_data_len); } - crng->state[i] ^= rv; + spin_unlock_irqrestore(&base_crng.lock, flags); + if (!ready) + return; } - if (trust_cpu && arch_init && crng == &primary_crng) { - invalidate_batched_entropy(); - numa_crng_init(); - crng_init = 2; - pr_notice("random: crng done (trusting CPU's manufacturer)\n"); + + /* + * If the base_crng is old enough, we reseed, which in turn bumps the + * generation counter that we check below. + */ + if (unlikely(crng_has_old_seed())) + crng_reseed(); + + local_irq_save(flags); + crng = raw_cpu_ptr(&crngs); + + /* + * If our per-cpu crng is older than the base_crng, then it means + * somebody reseeded the base_crng. In that case, we do fast key + * erasure on the base_crng, and use its output as the new key + * for our per-cpu crng. This brings us up to date with base_crng. + */ + if (unlikely(crng->generation != READ_ONCE(base_crng.generation))) { + spin_lock(&base_crng.lock); + crng_fast_key_erasure(base_crng.key, chacha_state, + crng->key, sizeof(crng->key)); + crng->generation = base_crng.generation; + spin_unlock(&base_crng.lock); } - crng->init_time = jiffies - CRNG_RESEED_INTERVAL - 1; + + /* + * Finally, when we've made it this far, our per-cpu crng has an up + * to date key, and we can do fast key erasure with it to produce + * some random data and a ChaCha state for the caller. All other + * branches of this function are "unlikely", so most of the time we + * should wind up here immediately. + */ + crng_fast_key_erasure(crng->key, chacha_state, random_data, random_data_len); + local_irq_restore(flags); } -#ifdef CONFIG_NUMA -static void do_numa_crng_init(struct work_struct *work) +static void _get_random_bytes(void *buf, size_t len) { - int i; - struct crng_state *crng; - struct crng_state **pool; + u32 chacha_state[CHACHA_BLOCK_SIZE / sizeof(u32)]; + u8 tmp[CHACHA_BLOCK_SIZE]; + size_t first_block_len; - pool = kcalloc(nr_node_ids, sizeof(*pool), GFP_KERNEL|__GFP_NOFAIL); - for_each_online_node(i) { - crng = kmalloc_node(sizeof(struct crng_state), - GFP_KERNEL | __GFP_NOFAIL, i); - spin_lock_init(&crng->lock); - crng_initialize(crng); - pool[i] = crng; - } - mb(); - if (cmpxchg(&crng_node_pool, NULL, pool)) { - for_each_node(i) - kfree(pool[i]); - kfree(pool); - } -} + if (!len) + return; -static DECLARE_WORK(numa_crng_init_work, do_numa_crng_init); + first_block_len = min_t(size_t, 32, len); + crng_make_state(chacha_state, buf, first_block_len); + len -= first_block_len; + buf += first_block_len; + + while (len) { + if (len < CHACHA_BLOCK_SIZE) { + chacha20_block(chacha_state, tmp); + memcpy(buf, tmp, len); + memzero_explicit(tmp, sizeof(tmp)); + break; + } -static void numa_crng_init(void) -{ - schedule_work(&numa_crng_init_work); + chacha20_block(chacha_state, buf); + if (unlikely(chacha_state[12] == 0)) + ++chacha_state[13]; + len -= CHACHA_BLOCK_SIZE; + buf += CHACHA_BLOCK_SIZE; + } + + memzero_explicit(chacha_state, sizeof(chacha_state)); } -#else -static void numa_crng_init(void) {} -#endif /* - * crng_fast_load() can be called by code in the interrupt service - * path. So we can't afford to dilly-dally. + * This function is the exported kernel interface. It returns some + * number of good random numbers, suitable for key generation, seeding + * TCP sequence numbers, etc. It does not rely on the hardware random + * number generator. For random bytes direct from the hardware RNG + * (when available), use get_random_bytes_arch(). In order to ensure + * that the randomness provided by this function is okay, the function + * wait_for_random_bytes() should be called and return 0 at least once + * at any point prior. */ -static int crng_fast_load(const char *cp, size_t len) +void get_random_bytes(void *buf, size_t len) { - unsigned long flags; - char *p; - - if (!spin_trylock_irqsave(&primary_crng.lock, flags)) - return 0; - if (crng_init != 0) { - spin_unlock_irqrestore(&primary_crng.lock, flags); - return 0; - } - p = (unsigned char *) &primary_crng.state[4]; - while (len > 0 && crng_init_cnt < CRNG_INIT_CNT_THRESH) { - p[crng_init_cnt % CHACHA_KEY_SIZE] ^= *cp; - cp++; crng_init_cnt++; len--; - } - spin_unlock_irqrestore(&primary_crng.lock, flags); - if (crng_init_cnt >= CRNG_INIT_CNT_THRESH) { - invalidate_batched_entropy(); - crng_init = 1; - wake_up_interruptible(&crng_init_wait); - pr_notice("random: fast init done\n"); - } - return 1; + warn_unseeded_randomness(); + _get_random_bytes(buf, len); } +EXPORT_SYMBOL(get_random_bytes); -/* - * crng_slow_load() is called by add_device_randomness, which has two - * attributes. (1) We can't trust the buffer passed to it is - * guaranteed to be unpredictable (so it might not have any entropy at - * all), and (2) it doesn't have the performance constraints of - * crng_fast_load(). - * - * So we do something more comprehensive which is guaranteed to touch - * all of the primary_crng's state, and which uses a LFSR with a - * period of 255 as part of the mixing algorithm. Finally, we do - * *not* advance crng_init_cnt since buffer we may get may be something - * like a fixed DMI table (for example), which might very well be - * unique to the machine, but is otherwise unvarying. - */ -static int crng_slow_load(const char *cp, size_t len) +static ssize_t get_random_bytes_user(struct iov_iter *iter) { - unsigned long flags; - static unsigned char lfsr = 1; - unsigned char tmp; - unsigned i, max = CHACHA_KEY_SIZE; - const char * src_buf = cp; - char * dest_buf = (char *) &primary_crng.state[4]; + u32 chacha_state[CHACHA_BLOCK_SIZE / sizeof(u32)]; + u8 block[CHACHA_BLOCK_SIZE]; + size_t ret = 0, copied; - if (!spin_trylock_irqsave(&primary_crng.lock, flags)) - return 0; - if (crng_init != 0) { - spin_unlock_irqrestore(&primary_crng.lock, flags); + if (unlikely(!iov_iter_count(iter))) return 0; + + /* + * Immediately overwrite the ChaCha key at index 4 with random + * bytes, in case userspace causes copy_to_iter() below to sleep + * forever, so that we still retain forward secrecy in that case. + */ + crng_make_state(chacha_state, (u8 *)&chacha_state[4], CHACHA_KEY_SIZE); + /* + * However, if we're doing a read of len <= 32, we don't need to + * use chacha_state after, so we can simply return those bytes to + * the user directly. + */ + if (iov_iter_count(iter) <= CHACHA_KEY_SIZE) { + ret = copy_to_iter(&chacha_state[4], CHACHA_KEY_SIZE, iter); + goto out_zero_chacha; } - if (len > max) - max = len; - for (i = 0; i < max ; i++) { - tmp = lfsr; - lfsr >>= 1; - if (tmp & 1) - lfsr ^= 0xE1; - tmp = dest_buf[i % CHACHA_KEY_SIZE]; - dest_buf[i % CHACHA_KEY_SIZE] ^= src_buf[i % len] ^ lfsr; - lfsr += (tmp << 3) | (tmp >> 5); - } - spin_unlock_irqrestore(&primary_crng.lock, flags); - return 1; -} - -static void crng_reseed(struct crng_state *crng, struct entropy_store *r) -{ - unsigned long flags; - int i, num; - union { - __u8 block[CHACHA_BLOCK_SIZE]; - __u32 key[8]; - } buf; - - if (r) { - num = extract_entropy(r, &buf, 32, 16, 0); - if (num == 0) - return; - } else { - _extract_crng(&primary_crng, buf.block); - _crng_backtrack_protect(&primary_crng, buf.block, - CHACHA_KEY_SIZE); - } - spin_lock_irqsave(&crng->lock, flags); - for (i = 0; i < 8; i++) { - unsigned long rv; - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) - rv = random_get_entropy(); - crng->state[i+4] ^= buf.key[i] ^ rv; - } - memzero_explicit(&buf, sizeof(buf)); - crng->init_time = jiffies; - spin_unlock_irqrestore(&crng->lock, flags); - if (crng == &primary_crng && crng_init < 2) { - invalidate_batched_entropy(); - numa_crng_init(); - crng_init = 2; - process_random_ready_list(); - wake_up_interruptible(&crng_init_wait); - pr_notice("random: crng init done\n"); - if (unseeded_warning.missed) { - pr_notice("random: %d get_random_xx warning(s) missed " - "due to ratelimiting\n", - unseeded_warning.missed); - unseeded_warning.missed = 0; - } - if (urandom_warning.missed) { - pr_notice("random: %d urandom warning(s) missed " - "due to ratelimiting\n", - urandom_warning.missed); - urandom_warning.missed = 0; + for (;;) { + chacha20_block(chacha_state, block); + if (unlikely(chacha_state[12] == 0)) + ++chacha_state[13]; + + copied = copy_to_iter(block, sizeof(block), iter); + ret += copied; + if (!iov_iter_count(iter) || copied != sizeof(block)) + break; + + BUILD_BUG_ON(PAGE_SIZE % sizeof(block) != 0); + if (ret % PAGE_SIZE == 0) { + if (signal_pending(current)) + break; + cond_resched(); } } -} -static void _extract_crng(struct crng_state *crng, - __u8 out[CHACHA_BLOCK_SIZE]) -{ - unsigned long v, flags; - - if (crng_ready() && - (time_after(crng_global_init_time, crng->init_time) || - time_after(jiffies, crng->init_time + CRNG_RESEED_INTERVAL))) - crng_reseed(crng, crng == &primary_crng ? &input_pool : NULL); - spin_lock_irqsave(&crng->lock, flags); - if (arch_get_random_long(&v)) - crng->state[14] ^= v; - chacha20_block(&crng->state[0], out); - if (crng->state[12] == 0) - crng->state[13]++; - spin_unlock_irqrestore(&crng->lock, flags); -} - -static void extract_crng(__u8 out[CHACHA_BLOCK_SIZE]) -{ - struct crng_state *crng = NULL; - -#ifdef CONFIG_NUMA - if (crng_node_pool) - crng = crng_node_pool[numa_node_id()]; - if (crng == NULL) -#endif - crng = &primary_crng; - _extract_crng(crng, out); -} + memzero_explicit(block, sizeof(block)); +out_zero_chacha: + memzero_explicit(chacha_state, sizeof(chacha_state)); + return ret ? ret : -EFAULT; +} + +/* + * Batched entropy returns random integers. The quality of the random + * number is good as /dev/urandom. In order to ensure that the randomness + * provided by this function is okay, the function wait_for_random_bytes() + * should be called and return 0 at least once at any point prior. + */ + +#define DEFINE_BATCHED_ENTROPY(type) \ +struct batch_ ##type { \ + /* \ + * We make this 1.5x a ChaCha block, so that we get the \ + * remaining 32 bytes from fast key erasure, plus one full \ + * block from the detached ChaCha state. We can increase \ + * the size of this later if needed so long as we keep the \ + * formula of (integer_blocks + 0.5) * CHACHA_BLOCK_SIZE. \ + */ \ + type entropy[CHACHA_BLOCK_SIZE * 3 / (2 * sizeof(type))]; \ + unsigned long generation; \ + unsigned int position; \ +}; \ + \ +static DEFINE_PER_CPU(struct batch_ ##type, batched_entropy_ ##type) = { \ + .position = UINT_MAX \ +}; \ + \ +type get_random_ ##type(void) \ +{ \ + type ret; \ + unsigned long flags; \ + struct batch_ ##type *batch; \ + unsigned long next_gen; \ + \ + warn_unseeded_randomness(); \ + \ + if (!crng_ready()) { \ + _get_random_bytes(&ret, sizeof(ret)); \ + return ret; \ + } \ + \ + local_irq_save(flags); \ + batch = raw_cpu_ptr(&batched_entropy_##type); \ + \ + next_gen = READ_ONCE(base_crng.generation); \ + if (batch->position >= ARRAY_SIZE(batch->entropy) || \ + next_gen != batch->generation) { \ + _get_random_bytes(batch->entropy, sizeof(batch->entropy)); \ + batch->position = 0; \ + batch->generation = next_gen; \ + } \ + \ + ret = batch->entropy[batch->position]; \ + batch->entropy[batch->position] = 0; \ + ++batch->position; \ + local_irq_restore(flags); \ + return ret; \ +} \ +EXPORT_SYMBOL(get_random_ ##type); + +DEFINE_BATCHED_ENTROPY(u64) +DEFINE_BATCHED_ENTROPY(u32) +#ifdef CONFIG_SMP /* - * Use the leftover bytes from the CRNG block output (if there is - * enough) to mutate the CRNG key to provide backtracking protection. + * This function is called when the CPU is coming up, with entry + * CPUHP_RANDOM_PREPARE, which comes before CPUHP_WORKQUEUE_PREP. */ -static void _crng_backtrack_protect(struct crng_state *crng, - __u8 tmp[CHACHA_BLOCK_SIZE], int used) +int __cold random_prepare_cpu(unsigned int cpu) { - unsigned long flags; - __u32 *s, *d; - int i; - - used = round_up(used, sizeof(__u32)); - if (used + CHACHA_KEY_SIZE > CHACHA_BLOCK_SIZE) { - extract_crng(tmp); - used = 0; - } - spin_lock_irqsave(&crng->lock, flags); - s = (__u32 *) &tmp[used]; - d = &crng->state[4]; - for (i=0; i < 8; i++) - *d++ ^= *s++; - spin_unlock_irqrestore(&crng->lock, flags); + /* + * When the cpu comes back online, immediately invalidate both + * the per-cpu crng and all batches, so that we serve fresh + * randomness. + */ + per_cpu_ptr(&crngs, cpu)->generation = ULONG_MAX; + per_cpu_ptr(&batched_entropy_u32, cpu)->position = UINT_MAX; + per_cpu_ptr(&batched_entropy_u64, cpu)->position = UINT_MAX; + return 0; } - -static void crng_backtrack_protect(__u8 tmp[CHACHA_BLOCK_SIZE], int used) -{ - struct crng_state *crng = NULL; - -#ifdef CONFIG_NUMA - if (crng_node_pool) - crng = crng_node_pool[numa_node_id()]; - if (crng == NULL) #endif - crng = &primary_crng; - _crng_backtrack_protect(crng, tmp, used); -} -static ssize_t extract_crng_user(void __user *buf, size_t nbytes) +/* + * This function will use the architecture-specific hardware random + * number generator if it is available. It is not recommended for + * use. Use get_random_bytes() instead. It returns the number of + * bytes filled in. + */ +size_t __must_check get_random_bytes_arch(void *buf, size_t len) { - ssize_t ret = 0, i = CHACHA_BLOCK_SIZE; - __u8 tmp[CHACHA_BLOCK_SIZE] __aligned(4); - int large_request = (nbytes > 256); + size_t left = len; + u8 *p = buf; - while (nbytes) { - if (large_request && need_resched()) { - if (signal_pending(current)) { - if (ret == 0) - ret = -ERESTARTSYS; - break; - } - schedule(); - } + while (left) { + unsigned long v; + size_t block_len = min_t(size_t, left, sizeof(unsigned long)); - extract_crng(tmp); - i = min_t(int, nbytes, CHACHA_BLOCK_SIZE); - if (copy_to_user(buf, tmp, i)) { - ret = -EFAULT; + if (!arch_get_random_long(&v)) break; - } - nbytes -= i; - buf += i; - ret += i; + memcpy(p, &v, block_len); + p += block_len; + left -= block_len; } - crng_backtrack_protect(tmp, i); - - /* Wipe data just written to memory */ - memzero_explicit(tmp, sizeof(tmp)); - return ret; + return len - left; } +EXPORT_SYMBOL(get_random_bytes_arch); -/********************************************************************* +/********************************************************************** * - * Entropy input management + * Entropy accumulation and extraction routines. * - *********************************************************************/ + * Callers may add entropy via: + * + * static void mix_pool_bytes(const void *buf, size_t len) + * + * After which, if added entropy should be credited: + * + * static void credit_init_bits(size_t bits) + * + * Finally, extract entropy via: + * + * static void extract_entropy(void *buf, size_t len) + * + **********************************************************************/ -/* There is one of these per entropy source */ -struct timer_rand_state { - cycles_t last_time; - long last_delta, last_delta2; +enum { + POOL_BITS = BLAKE2S_HASH_SIZE * 8, + POOL_READY_BITS = POOL_BITS, /* When crng_init->CRNG_READY */ + POOL_EARLY_BITS = POOL_READY_BITS / 2 /* When crng_init->CRNG_EARLY */ +}; + +static struct { + struct blake2s_state hash; + spinlock_t lock; + unsigned int init_bits; +} input_pool = { + .hash.h = { BLAKE2S_IV0 ^ (0x01010000 | BLAKE2S_HASH_SIZE), + BLAKE2S_IV1, BLAKE2S_IV2, BLAKE2S_IV3, BLAKE2S_IV4, + BLAKE2S_IV5, BLAKE2S_IV6, BLAKE2S_IV7 }, + .hash.outlen = BLAKE2S_HASH_SIZE, + .lock = __SPIN_LOCK_UNLOCKED(input_pool.lock), }; -#define INIT_TIMER_RAND_STATE { INITIAL_JIFFIES, }; +static void _mix_pool_bytes(const void *buf, size_t len) +{ + blake2s_update(&input_pool.hash, buf, len); +} /* - * Add device- or boot-specific data to the input pool to help - * initialize it. - * - * None of this adds any entropy; it is meant to avoid the problem of - * the entropy pool having similar initial state across largely - * identical devices. + * This function adds bytes into the input pool. It does not + * update the initialization bit counter; the caller should call + * credit_init_bits if this is appropriate. */ -void add_device_randomness(const void *buf, unsigned int size) +static void mix_pool_bytes(const void *buf, size_t len) { - unsigned long time = random_get_entropy() ^ jiffies; unsigned long flags; - if (!crng_ready() && size) - crng_slow_load(buf, size); - - trace_add_device_randomness(size, _RET_IP_); spin_lock_irqsave(&input_pool.lock, flags); - _mix_pool_bytes(&input_pool, buf, size); - _mix_pool_bytes(&input_pool, &time, sizeof(time)); + _mix_pool_bytes(buf, len); spin_unlock_irqrestore(&input_pool.lock, flags); } -EXPORT_SYMBOL(add_device_randomness); - -static struct timer_rand_state input_timer_state = INIT_TIMER_RAND_STATE; /* - * This function adds entropy to the entropy "pool" by using timing - * delays. It uses the timer_rand_state structure to make an estimate - * of how many bits of entropy this call has added to the pool. - * - * The number "num" is also added to the pool - it should somehow describe - * the type of event which just happened. This is currently 0-255 for - * keyboard scan codes, and 256 upwards for interrupts. - * + * This is an HKDF-like construction for using the hashed collected entropy + * as a PRF key, that's then expanded block-by-block. */ -static void add_timer_randomness(struct timer_rand_state *state, unsigned num) +static void extract_entropy(void *buf, size_t len) { - struct entropy_store *r; + unsigned long flags; + u8 seed[BLAKE2S_HASH_SIZE], next_key[BLAKE2S_HASH_SIZE]; struct { - long jiffies; - unsigned cycles; - unsigned num; - } sample; - long delta, delta2, delta3; - - sample.jiffies = jiffies; - sample.cycles = random_get_entropy(); - sample.num = num; - r = &input_pool; - mix_pool_bytes(r, &sample, sizeof(sample)); - - /* - * Calculate number of bits of randomness we probably added. - * We take into account the first, second and third-order deltas - * in order to make our estimate. - */ - delta = sample.jiffies - state->last_time; - state->last_time = sample.jiffies; + unsigned long rdseed[32 / sizeof(long)]; + size_t counter; + } block; + size_t i; + + for (i = 0; i < ARRAY_SIZE(block.rdseed); ++i) { + if (!arch_get_random_seed_long(&block.rdseed[i]) && + !arch_get_random_long(&block.rdseed[i])) + block.rdseed[i] = random_get_entropy(); + } - delta2 = delta - state->last_delta; - state->last_delta = delta; + spin_lock_irqsave(&input_pool.lock, flags); - delta3 = delta2 - state->last_delta2; - state->last_delta2 = delta2; + /* seed = HASHPRF(last_key, entropy_input) */ + blake2s_final(&input_pool.hash, seed); - if (delta < 0) - delta = -delta; - if (delta2 < 0) - delta2 = -delta2; - if (delta3 < 0) - delta3 = -delta3; - if (delta > delta2) - delta = delta2; - if (delta > delta3) - delta = delta3; - - /* - * delta is now minimum absolute delta. - * Round down by 1 bit on general principles, - * and limit entropy entimate to 12 bits. - */ - credit_entropy_bits(r, min_t(int, fls(delta>>1), 11)); -} + /* next_key = HASHPRF(seed, RDSEED || 0) */ + block.counter = 0; + blake2s(next_key, (u8 *)&block, seed, sizeof(next_key), sizeof(block), sizeof(seed)); + blake2s_init_key(&input_pool.hash, BLAKE2S_HASH_SIZE, next_key, sizeof(next_key)); -void add_input_randomness(unsigned int type, unsigned int code, - unsigned int value) -{ - static unsigned char last_value; + spin_unlock_irqrestore(&input_pool.lock, flags); + memzero_explicit(next_key, sizeof(next_key)); - /* ignore autorepeat and the like */ - if (value == last_value) - return; + while (len) { + i = min_t(size_t, len, BLAKE2S_HASH_SIZE); + /* output = HASHPRF(seed, RDSEED || ++counter) */ + ++block.counter; + blake2s(buf, (u8 *)&block, seed, i, sizeof(block), sizeof(seed)); + len -= i; + buf += i; + } - last_value = value; - add_timer_randomness(&input_timer_state, - (type << 4) ^ code ^ (code >> 4) ^ value); - trace_add_input_randomness(ENTROPY_BITS(&input_pool)); + memzero_explicit(seed, sizeof(seed)); + memzero_explicit(&block, sizeof(block)); } -EXPORT_SYMBOL_GPL(add_input_randomness); - -static DEFINE_PER_CPU(struct fast_pool, irq_randomness); - -#ifdef ADD_INTERRUPT_BENCH -static unsigned long avg_cycles, avg_deviation; -#define AVG_SHIFT 8 /* Exponential average factor k=1/256 */ -#define FIXED_1_2 (1 << (AVG_SHIFT-1)) +#define credit_init_bits(bits) if (!crng_ready()) _credit_init_bits(bits) -static void add_interrupt_bench(cycles_t start) +static void __cold _credit_init_bits(size_t bits) { - long delta = random_get_entropy() - start; - - /* Use a weighted moving average */ - delta = delta - ((avg_cycles + FIXED_1_2) >> AVG_SHIFT); - avg_cycles += delta; - /* And average deviation */ - delta = abs(delta) - ((avg_deviation + FIXED_1_2) >> AVG_SHIFT); - avg_deviation += delta; -} -#else -#define add_interrupt_bench(x) -#endif - -static __u32 get_reg(struct fast_pool *f, struct pt_regs *regs) -{ - __u32 *ptr = (__u32 *) regs; - unsigned int idx; - - if (regs == NULL) - return 0; - idx = READ_ONCE(f->reg_idx); - if (idx >= sizeof(struct pt_regs) / sizeof(__u32)) - idx = 0; - ptr += idx++; - WRITE_ONCE(f->reg_idx, idx); - return *ptr; -} - -void add_interrupt_randomness(int irq, int irq_flags) -{ - struct entropy_store *r; - struct fast_pool *fast_pool = this_cpu_ptr(&irq_randomness); - struct pt_regs *regs = get_irq_regs(); - unsigned long now = jiffies; - cycles_t cycles = random_get_entropy(); - __u32 c_high, j_high; - __u64 ip; - unsigned long seed; - int credit = 0; - - if (cycles == 0) - cycles = get_reg(fast_pool, regs); - c_high = (sizeof(cycles) > 4) ? cycles >> 32 : 0; - j_high = (sizeof(now) > 4) ? now >> 32 : 0; - fast_pool->pool[0] ^= cycles ^ j_high ^ irq; - fast_pool->pool[1] ^= now ^ c_high; - ip = regs ? instruction_pointer(regs) : _RET_IP_; - fast_pool->pool[2] ^= ip; - fast_pool->pool[3] ^= (sizeof(ip) > 4) ? ip >> 32 : - get_reg(fast_pool, regs); - - fast_mix(fast_pool); - add_interrupt_bench(cycles); - - if (unlikely(crng_init == 0)) { - if ((fast_pool->count >= 64) && - crng_fast_load((char *) fast_pool->pool, - sizeof(fast_pool->pool))) { - fast_pool->count = 0; - fast_pool->last = now; - } - return; - } + unsigned int new, orig, add; + unsigned long flags; - if ((fast_pool->count < 64) && - !time_after(now, fast_pool->last + HZ)) + if (!bits) return; - r = &input_pool; - if (!spin_trylock(&r->lock)) - return; + add = min_t(size_t, bits, POOL_BITS); - fast_pool->last = now; - __mix_pool_bytes(r, &fast_pool->pool, sizeof(fast_pool->pool)); + do { + orig = READ_ONCE(input_pool.init_bits); + new = min_t(unsigned int, POOL_BITS, orig + add); + } while (cmpxchg(&input_pool.init_bits, orig, new) != orig); - /* - * If we have architectural seed generator, produce a seed and - * add it to the pool. For the sake of paranoia don't let the - * architectural seed generator dominate the input from the - * interrupt noise. - */ - if (arch_get_random_seed_long(&seed)) { - __mix_pool_bytes(r, &seed, sizeof(seed)); - credit = 1; + if (orig < POOL_READY_BITS && new >= POOL_READY_BITS) { + crng_reseed(); /* Sets crng_init to CRNG_READY under base_crng.lock. */ + process_random_ready_list(); + wake_up_interruptible(&crng_init_wait); + kill_fasync(&fasync, SIGIO, POLL_IN); + pr_notice("crng init done\n"); + if (urandom_warning.missed) + pr_notice("%d urandom warning(s) missed due to ratelimiting\n", + urandom_warning.missed); + } else if (orig < POOL_EARLY_BITS && new >= POOL_EARLY_BITS) { + spin_lock_irqsave(&base_crng.lock, flags); + /* Check if crng_init is CRNG_EMPTY, to avoid race with crng_reseed(). */ + if (crng_init == CRNG_EMPTY) { + extract_entropy(base_crng.key, sizeof(base_crng.key)); + crng_init = CRNG_EARLY; + } + spin_unlock_irqrestore(&base_crng.lock, flags); } - spin_unlock(&r->lock); - - fast_pool->count = 0; - - /* award one bit for the contents of the fast pool */ - credit_entropy_bits(r, credit + 1); } -EXPORT_SYMBOL_GPL(add_interrupt_randomness); -#ifdef CONFIG_BLOCK -void add_disk_randomness(struct gendisk *disk) -{ - if (!disk || !disk->random) - return; - /* first major is 1, so we get >= 0x200 here */ - add_timer_randomness(disk->random, 0x100 + disk_devt(disk)); - trace_add_disk_randomness(disk_devt(disk), ENTROPY_BITS(&input_pool)); -} -EXPORT_SYMBOL_GPL(add_disk_randomness); -#endif -/********************************************************************* +/********************************************************************** * - * Entropy extraction routines + * Entropy collection routines. * - *********************************************************************/ - -/* - * This utility inline function is responsible for transferring entropy - * from the primary pool to the secondary extraction pool. We make - * sure we pull enough for a 'catastrophic reseed'. - */ -static void _xfer_secondary_pool(struct entropy_store *r, size_t nbytes); -static void xfer_secondary_pool(struct entropy_store *r, size_t nbytes) -{ - if (!r->pull || - r->entropy_count >= (nbytes << (ENTROPY_SHIFT + 3)) || - r->entropy_count > r->poolinfo->poolfracbits) - return; + * The following exported functions are used for pushing entropy into + * the above entropy accumulation routines: + * + * void add_device_randomness(const void *buf, size_t len); + * void add_hwgenerator_randomness(const void *buf, size_t len, size_t entropy); + * void add_bootloader_randomness(const void *buf, size_t len); + * void add_interrupt_randomness(int irq); + * void add_input_randomness(unsigned int type, unsigned int code, unsigned int value); + * void add_disk_randomness(struct gendisk *disk); + * + * add_device_randomness() adds data to the input pool that + * is likely to differ between two devices (or possibly even per boot). + * This would be things like MAC addresses or serial numbers, or the + * read-out of the RTC. This does *not* credit any actual entropy to + * the pool, but it initializes the pool to different values for devices + * that might otherwise be identical and have very little entropy + * available to them (particularly common in the embedded world). + * + * add_hwgenerator_randomness() is for true hardware RNGs, and will credit + * entropy as specified by the caller. If the entropy pool is full it will + * block until more entropy is needed. + * + * add_bootloader_randomness() is called by bootloader drivers, such as EFI + * and device tree, and credits its input depending on whether or not the + * configuration option CONFIG_RANDOM_TRUST_BOOTLOADER is set. + * + * add_interrupt_randomness() uses the interrupt timing as random + * inputs to the entropy pool. Using the cycle counters and the irq source + * as inputs, it feeds the input pool roughly once a second or after 64 + * interrupts, crediting 1 bit of entropy for whichever comes first. + * + * add_input_randomness() uses the input layer interrupt timing, as well + * as the event type information from the hardware. + * + * add_disk_randomness() uses what amounts to the seek time of block + * layer request events, on a per-disk_devt basis, as input to the + * entropy pool. Note that high-speed solid state drives with very low + * seek times do not make for good sources of entropy, as their seek + * times are usually fairly consistent. + * + * The last two routines try to estimate how many bits of entropy + * to credit. They do this by keeping track of the first and second + * order deltas of the event timings. + * + **********************************************************************/ - _xfer_secondary_pool(r, nbytes); +static bool trust_cpu __initdata = IS_ENABLED(CONFIG_RANDOM_TRUST_CPU); +static bool trust_bootloader __initdata = IS_ENABLED(CONFIG_RANDOM_TRUST_BOOTLOADER); +static int __init parse_trust_cpu(char *arg) +{ + return kstrtobool(arg, &trust_cpu); } +static int __init parse_trust_bootloader(char *arg) +{ + return kstrtobool(arg, &trust_bootloader); +} +early_param("random.trust_cpu", parse_trust_cpu); +early_param("random.trust_bootloader", parse_trust_bootloader); -static void _xfer_secondary_pool(struct entropy_store *r, size_t nbytes) +/* + * The first collection of entropy occurs at system boot while interrupts + * are still turned off. Here we push in latent entropy, RDSEED, a timestamp, + * utsname(), and the command line. Depending on the above configuration knob, + * RDSEED may be considered sufficient for initialization. Note that much + * earlier setup may already have pushed entropy into the input pool by the + * time we get here. + */ +int __init random_init(const char *command_line) { - __u32 tmp[OUTPUT_POOL_WORDS]; + ktime_t now = ktime_get_real(); + unsigned int i, arch_bits; + unsigned long entropy; - int bytes = nbytes; +#if defined(LATENT_ENTROPY_PLUGIN) + static const u8 compiletime_seed[BLAKE2S_BLOCK_SIZE] __initconst __latent_entropy; + _mix_pool_bytes(compiletime_seed, sizeof(compiletime_seed)); +#endif - /* pull at least as much as a wakeup */ - bytes = max_t(int, bytes, random_read_wakeup_bits / 8); - /* but never more than the buffer size */ - bytes = min_t(int, bytes, sizeof(tmp)); + for (i = 0, arch_bits = BLAKE2S_BLOCK_SIZE * 8; + i < BLAKE2S_BLOCK_SIZE; i += sizeof(entropy)) { + if (!arch_get_random_seed_long_early(&entropy) && + !arch_get_random_long_early(&entropy)) { + entropy = random_get_entropy(); + arch_bits -= sizeof(entropy) * 8; + } + _mix_pool_bytes(&entropy, sizeof(entropy)); + } + _mix_pool_bytes(&now, sizeof(now)); + _mix_pool_bytes(utsname(), sizeof(*(utsname()))); + _mix_pool_bytes(command_line, strlen(command_line)); + add_latent_entropy(); + + if (crng_ready()) + crng_reseed(); + else if (trust_cpu) + _credit_init_bits(arch_bits); - trace_xfer_secondary_pool(r->name, bytes * 8, nbytes * 8, - ENTROPY_BITS(r), ENTROPY_BITS(r->pull)); - bytes = extract_entropy(r->pull, tmp, bytes, - random_read_wakeup_bits / 8, 0); - mix_pool_bytes(r, tmp, bytes); - credit_entropy_bits(r, bytes*8); + return 0; } /* - * Used as a workqueue function so that when the input pool is getting - * full, we can "spill over" some entropy to the output pools. That - * way the output pools can store some of the excess entropy instead - * of letting it go to waste. + * Add device- or boot-specific data to the input pool to help + * initialize it. + * + * None of this adds any entropy; it is meant to avoid the problem of + * the entropy pool having similar initial state across largely + * identical devices. */ -static void push_to_pool(struct work_struct *work) +void add_device_randomness(const void *buf, size_t len) { - struct entropy_store *r = container_of(work, struct entropy_store, - push_work); - BUG_ON(!r); - _xfer_secondary_pool(r, random_read_wakeup_bits/8); - trace_push_to_pool(r->name, r->entropy_count >> ENTROPY_SHIFT, - r->pull->entropy_count >> ENTROPY_SHIFT); + unsigned long entropy = random_get_entropy(); + unsigned long flags; + + spin_lock_irqsave(&input_pool.lock, flags); + _mix_pool_bytes(&entropy, sizeof(entropy)); + _mix_pool_bytes(buf, len); + spin_unlock_irqrestore(&input_pool.lock, flags); } +EXPORT_SYMBOL(add_device_randomness); /* - * This function decides how many bytes to actually take from the - * given pool, and also debits the entropy count accordingly. + * Interface for in-kernel drivers of true hardware RNGs. + * Those devices may produce endless random bits and will be throttled + * when our pool is full. */ -static size_t account(struct entropy_store *r, size_t nbytes, int min, - int reserved) +void add_hwgenerator_randomness(const void *buf, size_t len, size_t entropy) { - int entropy_count, orig, have_bytes; - size_t ibytes, nfrac; - - BUG_ON(r->entropy_count > r->poolinfo->poolfracbits); + mix_pool_bytes(buf, len); + credit_init_bits(entropy); - /* Can we pull enough? */ -retry: - entropy_count = orig = READ_ONCE(r->entropy_count); - ibytes = nbytes; - /* never pull more than available */ - have_bytes = entropy_count >> (ENTROPY_SHIFT + 3); + /* + * Throttle writing to once every CRNG_RESEED_INTERVAL, unless + * we're not yet initialized. + */ + if (!kthread_should_stop() && crng_ready()) + schedule_timeout_interruptible(CRNG_RESEED_INTERVAL); +} +EXPORT_SYMBOL_GPL(add_hwgenerator_randomness); - if ((have_bytes -= reserved) < 0) - have_bytes = 0; - ibytes = min_t(size_t, ibytes, have_bytes); - if (ibytes < min) - ibytes = 0; +/* + * Handle random seed passed by bootloader, and credit it if + * CONFIG_RANDOM_TRUST_BOOTLOADER is set. + */ +void __init add_bootloader_randomness(const void *buf, size_t len) +{ + mix_pool_bytes(buf, len); + if (trust_bootloader) + credit_init_bits(len * 8); +} - if (unlikely(entropy_count < 0)) { - pr_warn("random: negative entropy count: pool %s count %d\n", - r->name, entropy_count); - WARN_ON(1); - entropy_count = 0; - } - nfrac = ibytes << (ENTROPY_SHIFT + 3); - if ((size_t) entropy_count > nfrac) - entropy_count -= nfrac; - else - entropy_count = 0; +struct fast_pool { + unsigned long pool[4]; + unsigned long last; + unsigned int count; + struct timer_list mix; +}; - if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) - goto retry; +static void mix_interrupt_randomness(struct timer_list *work); - trace_debit_entropy(r->name, 8 * ibytes); - if (ibytes && - (r->entropy_count >> ENTROPY_SHIFT) < random_write_wakeup_bits) { - wake_up_interruptible(&random_write_wait); - kill_fasync(&fasync, SIGIO, POLL_OUT); - } +static DEFINE_PER_CPU(struct fast_pool, irq_randomness) = { +#ifdef CONFIG_64BIT +#define FASTMIX_PERM SIPHASH_PERMUTATION + .pool = { SIPHASH_CONST_0, SIPHASH_CONST_1, SIPHASH_CONST_2, SIPHASH_CONST_3 }, +#else +#define FASTMIX_PERM HSIPHASH_PERMUTATION + .pool = { HSIPHASH_CONST_0, HSIPHASH_CONST_1, HSIPHASH_CONST_2, HSIPHASH_CONST_3 }, +#endif + .mix = __TIMER_INITIALIZER(mix_interrupt_randomness, 0) +}; - return ibytes; +/* + * This is [Half]SipHash-1-x, starting from an empty key. Because + * the key is fixed, it assumes that its inputs are non-malicious, + * and therefore this has no security on its own. s represents the + * four-word SipHash state, while v represents a two-word input. + */ +static void fast_mix(unsigned long s[4], unsigned long v1, unsigned long v2) +{ + s[3] ^= v1; + FASTMIX_PERM(s[0], s[1], s[2], s[3]); + s[0] ^= v1; + s[3] ^= v2; + FASTMIX_PERM(s[0], s[1], s[2], s[3]); + s[0] ^= v2; } +#ifdef CONFIG_SMP /* - * This function does the actual extraction for extract_entropy and - * extract_entropy_user. - * - * Note: we assume that .poolwords is a multiple of 16 words. + * This function is called when the CPU has just come online, with + * entry CPUHP_AP_RANDOM_ONLINE, just after CPUHP_AP_WORKQUEUE_ONLINE. */ -static void extract_buf(struct entropy_store *r, __u8 *out) +int __cold random_online_cpu(unsigned int cpu) { - int i; - union { - __u32 w[5]; - unsigned long l[LONGS(20)]; - } hash; - __u32 workspace[SHA_WORKSPACE_WORDS]; - unsigned long flags; - /* - * If we have an architectural hardware random number - * generator, use it for SHA's initial vector + * During CPU shutdown and before CPU onlining, add_interrupt_ + * randomness() may schedule mix_interrupt_randomness(), and + * set the MIX_INFLIGHT flag. However, because the worker can + * be scheduled on a different CPU during this period, that + * flag will never be cleared. For that reason, we zero out + * the flag here, which runs just after workqueues are onlined + * for the CPU again. This also has the effect of setting the + * irq randomness count to zero so that new accumulated irqs + * are fresh. */ - sha_init(hash.w); - for (i = 0; i < LONGS(20); i++) { - unsigned long v; - if (!arch_get_random_long(&v)) - break; - hash.l[i] = v; - } - - /* Generate a hash across the pool, 16 words (512 bits) at a time */ - spin_lock_irqsave(&r->lock, flags); - for (i = 0; i < r->poolinfo->poolwords; i += 16) - sha_transform(hash.w, (__u8 *)(r->pool + i), workspace); + per_cpu_ptr(&irq_randomness, cpu)->count = 0; + return 0; +} +#endif +static void mix_interrupt_randomness(struct timer_list *work) +{ + struct fast_pool *fast_pool = container_of(work, struct fast_pool, mix); /* - * We mix the hash back into the pool to prevent backtracking - * attacks (where the attacker knows the state of the pool - * plus the current outputs, and attempts to find previous - * ouputs), unless the hash function can be inverted. By - * mixing at least a SHA1 worth of hash data back, we make - * brute-forcing the feedback as hard as brute-forcing the - * hash. + * The size of the copied stack pool is explicitly 2 longs so that we + * only ever ingest half of the siphash output each time, retaining + * the other half as the next "key" that carries over. The entropy is + * supposed to be sufficiently dispersed between bits so on average + * we don't wind up "losing" some. */ - __mix_pool_bytes(r, hash.w, sizeof(hash.w)); - spin_unlock_irqrestore(&r->lock, flags); + unsigned long pool[2]; + unsigned int count; - memzero_explicit(workspace, sizeof(workspace)); + /* Check to see if we're running on the wrong CPU due to hotplug. */ + local_irq_disable(); + if (fast_pool != this_cpu_ptr(&irq_randomness)) { + local_irq_enable(); + return; + } /* - * In case the hash function has some recognizable output - * pattern, we fold it in half. Thus, we always feed back - * twice as much data as we output. + * Copy the pool to the stack so that the mixer always has a + * consistent view, before we reenable irqs again. */ - hash.w[0] ^= hash.w[3]; - hash.w[1] ^= hash.w[4]; - hash.w[2] ^= rol32(hash.w[2], 16); + memcpy(pool, fast_pool->pool, sizeof(pool)); + count = fast_pool->count; + fast_pool->count = 0; + fast_pool->last = jiffies; + local_irq_enable(); + + mix_pool_bytes(pool, sizeof(pool)); + credit_init_bits(clamp_t(unsigned int, (count & U16_MAX) / 64, 1, sizeof(pool) * 8)); - memcpy(out, &hash, EXTRACT_SIZE); - memzero_explicit(&hash, sizeof(hash)); + memzero_explicit(pool, sizeof(pool)); } -static ssize_t _extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int fips) +void add_interrupt_randomness(int irq) { - ssize_t ret = 0, i; - __u8 tmp[EXTRACT_SIZE]; - unsigned long flags; + enum { MIX_INFLIGHT = 1U << 31 }; + unsigned long entropy = random_get_entropy(); + struct fast_pool *fast_pool = this_cpu_ptr(&irq_randomness); + struct pt_regs *regs = get_irq_regs(); + unsigned int new_count; - while (nbytes) { - extract_buf(r, tmp); + fast_mix(fast_pool->pool, entropy, + (regs ? instruction_pointer(regs) : _RET_IP_) ^ swab(irq)); + new_count = ++fast_pool->count; - if (fips) { - spin_lock_irqsave(&r->lock, flags); - if (!memcmp(tmp, r->last_data, EXTRACT_SIZE)) - panic("Hardware RNG duplicated output!\n"); - memcpy(r->last_data, tmp, EXTRACT_SIZE); - spin_unlock_irqrestore(&r->lock, flags); - } - i = min_t(int, nbytes, EXTRACT_SIZE); - memcpy(buf, tmp, i); - nbytes -= i; - buf += i; - ret += i; - } + if (new_count & MIX_INFLIGHT) + return; - /* Wipe data just returned from memory */ - memzero_explicit(tmp, sizeof(tmp)); + if (new_count < 1024 && !time_is_before_jiffies(fast_pool->last + HZ)) + return; - return ret; + fast_pool->count |= MIX_INFLIGHT; + if (!timer_pending(&fast_pool->mix)) { + fast_pool->mix.expires = jiffies; + add_timer_on(&fast_pool->mix, raw_smp_processor_id()); + } } +EXPORT_SYMBOL_GPL(add_interrupt_randomness); + +/* There is one of these per entropy source */ +struct timer_rand_state { + unsigned long last_time; + long last_delta, last_delta2; +}; /* - * This function extracts randomness from the "entropy pool", and - * returns it in a buffer. - * - * The min parameter specifies the minimum amount we can pull before - * failing to avoid races that defeat catastrophic reseeding while the - * reserved parameter indicates how much entropy we must leave in the - * pool after each pull to avoid starving other readers. + * This function adds entropy to the entropy "pool" by using timing + * delays. It uses the timer_rand_state structure to make an estimate + * of how many bits of entropy this call has added to the pool. The + * value "num" is also added to the pool; it should somehow describe + * the type of event that just happened. */ -static ssize_t extract_entropy(struct entropy_store *r, void *buf, - size_t nbytes, int min, int reserved) +static void add_timer_randomness(struct timer_rand_state *state, unsigned int num) { - __u8 tmp[EXTRACT_SIZE]; - unsigned long flags; + unsigned long entropy = random_get_entropy(), now = jiffies, flags; + long delta, delta2, delta3; + unsigned int bits; - /* if last_data isn't primed, we need EXTRACT_SIZE extra bytes */ - if (fips_enabled) { - spin_lock_irqsave(&r->lock, flags); - if (!r->last_data_init) { - r->last_data_init = 1; - spin_unlock_irqrestore(&r->lock, flags); - trace_extract_entropy(r->name, EXTRACT_SIZE, - ENTROPY_BITS(r), _RET_IP_); - xfer_secondary_pool(r, EXTRACT_SIZE); - extract_buf(r, tmp); - spin_lock_irqsave(&r->lock, flags); - memcpy(r->last_data, tmp, EXTRACT_SIZE); - } - spin_unlock_irqrestore(&r->lock, flags); + /* + * If we're in a hard IRQ, add_interrupt_randomness() will be called + * sometime after, so mix into the fast pool. + */ + if (in_irq()) { + fast_mix(this_cpu_ptr(&irq_randomness)->pool, entropy, num); + } else { + spin_lock_irqsave(&input_pool.lock, flags); + _mix_pool_bytes(&entropy, sizeof(entropy)); + _mix_pool_bytes(&num, sizeof(num)); + spin_unlock_irqrestore(&input_pool.lock, flags); } - trace_extract_entropy(r->name, nbytes, ENTROPY_BITS(r), _RET_IP_); - xfer_secondary_pool(r, nbytes); - nbytes = account(r, nbytes, min, reserved); - - return _extract_entropy(r, buf, nbytes, fips_enabled); -} - -/* - * This function extracts randomness from the "entropy pool", and - * returns it in a userspace buffer. - */ -static ssize_t extract_entropy_user(struct entropy_store *r, void __user *buf, - size_t nbytes) -{ - ssize_t ret = 0, i; - __u8 tmp[EXTRACT_SIZE]; - int large_request = (nbytes > 256); + if (crng_ready()) + return; - trace_extract_entropy_user(r->name, nbytes, ENTROPY_BITS(r), _RET_IP_); - if (!r->initialized && r->pull) { - xfer_secondary_pool(r, ENTROPY_BITS(r->pull)/8); - if (!r->initialized) - return 0; - } - xfer_secondary_pool(r, nbytes); - nbytes = account(r, nbytes, 0, 0); + /* + * Calculate number of bits of randomness we probably added. + * We take into account the first, second and third-order deltas + * in order to make our estimate. + */ + delta = now - READ_ONCE(state->last_time); + WRITE_ONCE(state->last_time, now); - while (nbytes) { - if (large_request && need_resched()) { - if (signal_pending(current)) { - if (ret == 0) - ret = -ERESTARTSYS; - break; - } - schedule(); - } + delta2 = delta - READ_ONCE(state->last_delta); + WRITE_ONCE(state->last_delta, delta); - extract_buf(r, tmp); - i = min_t(int, nbytes, EXTRACT_SIZE); - if (copy_to_user(buf, tmp, i)) { - ret = -EFAULT; - break; - } + delta3 = delta2 - READ_ONCE(state->last_delta2); + WRITE_ONCE(state->last_delta2, delta2); - nbytes -= i; - buf += i; - ret += i; - } + if (delta < 0) + delta = -delta; + if (delta2 < 0) + delta2 = -delta2; + if (delta3 < 0) + delta3 = -delta3; + if (delta > delta2) + delta = delta2; + if (delta > delta3) + delta = delta3; - /* Wipe data just returned from memory */ - memzero_explicit(tmp, sizeof(tmp)); + /* + * delta is now minimum absolute delta. Round down by 1 bit + * on general principles, and limit entropy estimate to 11 bits. + */ + bits = min(fls(delta >> 1), 11); - return ret; + /* + * As mentioned above, if we're in a hard IRQ, add_interrupt_randomness() + * will run after this, which uses a different crediting scheme of 1 bit + * per every 64 interrupts. In order to let that function do accounting + * close to the one in this function, we credit a full 64/64 bit per bit, + * and then subtract one to account for the extra one added. + */ + if (in_irq()) + this_cpu_ptr(&irq_randomness)->count += max(1u, bits * 64) - 1; + else + _credit_init_bits(bits); } -#define warn_unseeded_randomness(previous) \ - _warn_unseeded_randomness(__func__, (void *) _RET_IP_, (previous)) - -static void _warn_unseeded_randomness(const char *func_name, void *caller, - void **previous) +void add_input_randomness(unsigned int type, unsigned int code, unsigned int value) { -#ifdef CONFIG_WARN_ALL_UNSEEDED_RANDOM - const bool print_once = false; -#else - static bool print_once __read_mostly; -#endif + static unsigned char last_value; + static struct timer_rand_state input_timer_state = { INITIAL_JIFFIES }; - if (print_once || - crng_ready() || - (previous && (caller == READ_ONCE(*previous)))) + /* Ignore autorepeat and the like. */ + if (value == last_value) return; - WRITE_ONCE(*previous, caller); -#ifndef CONFIG_WARN_ALL_UNSEEDED_RANDOM - print_once = true; -#endif - if (__ratelimit(&unseeded_warning)) - pr_notice("random: %s called from %pS with crng_init=%d\n", - func_name, caller, crng_init); + + last_value = value; + add_timer_randomness(&input_timer_state, + (type << 4) ^ code ^ (code >> 4) ^ value); } +EXPORT_SYMBOL_GPL(add_input_randomness); -/* - * This function is the exported kernel interface. It returns some - * number of good random numbers, suitable for key generation, seeding - * TCP sequence numbers, etc. It does not rely on the hardware random - * number generator. For random bytes direct from the hardware RNG - * (when available), use get_random_bytes_arch(). In order to ensure - * that the randomness provided by this function is okay, the function - * wait_for_random_bytes() should be called and return 0 at least once - * at any point prior. - */ -static void _get_random_bytes(void *buf, int nbytes) +#ifdef CONFIG_BLOCK +void add_disk_randomness(struct gendisk *disk) { - __u8 tmp[CHACHA_BLOCK_SIZE] __aligned(4); - - trace_get_random_bytes(nbytes, _RET_IP_); - - while (nbytes >= CHACHA_BLOCK_SIZE) { - extract_crng(buf); - buf += CHACHA_BLOCK_SIZE; - nbytes -= CHACHA_BLOCK_SIZE; - } - - if (nbytes > 0) { - extract_crng(tmp); - memcpy(buf, tmp, nbytes); - crng_backtrack_protect(tmp, nbytes); - } else - crng_backtrack_protect(tmp, CHACHA_BLOCK_SIZE); - memzero_explicit(tmp, sizeof(tmp)); + if (!disk || !disk->random) + return; + /* First major is 1, so we get >= 0x200 here. */ + add_timer_randomness(disk->random, 0x100 + disk_devt(disk)); } +EXPORT_SYMBOL_GPL(add_disk_randomness); -void get_random_bytes(void *buf, int nbytes) +void __cold rand_initialize_disk(struct gendisk *disk) { - static void *previous; + struct timer_rand_state *state; - warn_unseeded_randomness(&previous); - _get_random_bytes(buf, nbytes); + /* + * If kzalloc returns null, we just won't use that entropy + * source. + */ + state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL); + if (state) { + state->last_time = INITIAL_JIFFIES; + disk->random = state; + } } -EXPORT_SYMBOL(get_random_bytes); - +#endif /* * Each time the timer fires, we expect that we got an unpredictable @@ -1745,371 +1143,181 @@ * * So the re-arming always happens in the entropy loop itself. */ -static void entropy_timer(struct timer_list *t) +static void __cold entropy_timer(struct timer_list *t) { - credit_entropy_bits(&input_pool, 1); + credit_init_bits(1); } /* * If we have an actual cycle counter, see if we can * generate enough entropy with timing noise */ -static void try_to_generate_entropy(void) +static void __cold try_to_generate_entropy(void) { struct { - unsigned long now; + unsigned long entropy; struct timer_list timer; } stack; - stack.now = random_get_entropy(); + stack.entropy = random_get_entropy(); /* Slow counter - or none. Don't even bother */ - if (stack.now == random_get_entropy()) + if (stack.entropy == random_get_entropy()) return; timer_setup_on_stack(&stack.timer, entropy_timer, 0); - while (!crng_ready()) { + while (!crng_ready() && !signal_pending(current)) { if (!timer_pending(&stack.timer)) - mod_timer(&stack.timer, jiffies+1); - mix_pool_bytes(&input_pool, &stack.now, sizeof(stack.now)); + mod_timer(&stack.timer, jiffies + 1); + mix_pool_bytes(&stack.entropy, sizeof(stack.entropy)); schedule(); - stack.now = random_get_entropy(); + stack.entropy = random_get_entropy(); } del_timer_sync(&stack.timer); destroy_timer_on_stack(&stack.timer); - mix_pool_bytes(&input_pool, &stack.now, sizeof(stack.now)); + mix_pool_bytes(&stack.entropy, sizeof(stack.entropy)); } -/* - * Wait for the urandom pool to be seeded and thus guaranteed to supply - * cryptographically secure random numbers. This applies to: the /dev/urandom - * device, the get_random_bytes function, and the get_random_{u32,u64,int,long} - * family of functions. Using any of these functions without first calling - * this function forfeits the guarantee of security. - * - * Returns: 0 if the urandom pool has been seeded. - * -ERESTARTSYS if the function was interrupted by a signal. - */ -int wait_for_random_bytes(void) -{ - if (likely(crng_ready())) - return 0; - - do { - int ret; - ret = wait_event_interruptible_timeout(crng_init_wait, crng_ready(), HZ); - if (ret) - return ret > 0 ? 0 : ret; - - try_to_generate_entropy(); - } while (!crng_ready()); - return 0; -} -EXPORT_SYMBOL(wait_for_random_bytes); - -/* - * Returns whether or not the urandom pool has been seeded and thus guaranteed - * to supply cryptographically secure random numbers. This applies to: the - * /dev/urandom device, the get_random_bytes function, and the get_random_{u32, - * ,u64,int,long} family of functions. +/********************************************************************** * - * Returns: true if the urandom pool has been seeded. - * false if the urandom pool has not been seeded. - */ -bool rng_is_initialized(void) -{ - return crng_ready(); -} -EXPORT_SYMBOL(rng_is_initialized); - -/* - * Add a callback function that will be invoked when the nonblocking - * pool is initialised. + * Userspace reader/writer interfaces. * - * returns: 0 if callback is successfully added - * -EALREADY if pool is already initialised (callback not called) - * -ENOENT if module for callback is not alive - */ -int add_random_ready_callback(struct random_ready_callback *rdy) -{ - struct module *owner; - unsigned long flags; - int err = -EALREADY; - - if (crng_ready()) - return err; - - owner = rdy->owner; - if (!try_module_get(owner)) - return -ENOENT; - - spin_lock_irqsave(&random_ready_list_lock, flags); - if (crng_ready()) - goto out; - - owner = NULL; - - list_add(&rdy->list, &random_ready_list); - err = 0; - -out: - spin_unlock_irqrestore(&random_ready_list_lock, flags); - - module_put(owner); - - return err; -} -EXPORT_SYMBOL(add_random_ready_callback); - -/* - * Delete a previously registered readiness callback function. - */ -void del_random_ready_callback(struct random_ready_callback *rdy) -{ - unsigned long flags; - struct module *owner = NULL; - - spin_lock_irqsave(&random_ready_list_lock, flags); - if (!list_empty(&rdy->list)) { - list_del_init(&rdy->list); - owner = rdy->owner; - } - spin_unlock_irqrestore(&random_ready_list_lock, flags); - - module_put(owner); -} -EXPORT_SYMBOL(del_random_ready_callback); - -/* - * This function will use the architecture-specific hardware random - * number generator if it is available. The arch-specific hw RNG will - * almost certainly be faster than what we can do in software, but it - * is impossible to verify that it is implemented securely (as - * opposed, to, say, the AES encryption of a sequence number using a - * key known by the NSA). So it's useful if we need the speed, but - * only if we're willing to trust the hardware manufacturer not to - * have put in a back door. + * getrandom(2) is the primary modern interface into the RNG and should + * be used in preference to anything else. * - * Return number of bytes filled in. - */ -int __must_check get_random_bytes_arch(void *buf, int nbytes) -{ - int left = nbytes; - char *p = buf; - - trace_get_random_bytes_arch(left, _RET_IP_); - while (left) { - unsigned long v; - int chunk = min_t(int, left, sizeof(unsigned long)); - - if (!arch_get_random_long(&v)) - break; - - memcpy(p, &v, chunk); - p += chunk; - left -= chunk; - } - - return nbytes - left; -} -EXPORT_SYMBOL(get_random_bytes_arch); - -/* - * init_std_data - initialize pool with system data + * Reading from /dev/random has the same functionality as calling + * getrandom(2) with flags=0. In earlier versions, however, it had + * vastly different semantics and should therefore be avoided, to + * prevent backwards compatibility issues. * - * @r: pool to initialize + * Reading from /dev/urandom has the same functionality as calling + * getrandom(2) with flags=GRND_INSECURE. Because it does not block + * waiting for the RNG to be ready, it should not be used. * - * This function clears the pool's entropy count and mixes some system - * data into the pool to prepare it for use. The pool is not cleared - * as that can only decrease the entropy in the pool. - */ -static void __init init_std_data(struct entropy_store *r) + * Writing to either /dev/random or /dev/urandom adds entropy to + * the input pool but does not credit it. + * + * Polling on /dev/random indicates when the RNG is initialized, on + * the read side, and when it wants new entropy, on the write side. + * + * Both /dev/random and /dev/urandom have the same set of ioctls for + * adding entropy, getting the entropy count, zeroing the count, and + * reseeding the crng. + * + **********************************************************************/ + +SYSCALL_DEFINE3(getrandom, char __user *, ubuf, size_t, len, unsigned int, flags) { - int i; - ktime_t now = ktime_get_real(); - unsigned long rv; + struct iov_iter iter; + struct iovec iov; + int ret; - r->last_pulled = jiffies; - mix_pool_bytes(r, &now, sizeof(now)); - for (i = r->poolinfo->poolbytes; i > 0; i -= sizeof(rv)) { - if (!arch_get_random_seed_long(&rv) && - !arch_get_random_long(&rv)) - rv = random_get_entropy(); - mix_pool_bytes(r, &rv, sizeof(rv)); - } - mix_pool_bytes(r, utsname(), sizeof(*(utsname()))); -} + if (flags & ~(GRND_NONBLOCK | GRND_RANDOM | GRND_INSECURE)) + return -EINVAL; -/* - * Note that setup_arch() may call add_device_randomness() - * long before we get here. This allows seeding of the pools - * with some platform dependent data very early in the boot - * process. But it limits our options here. We must use - * statically allocated structures that already have all - * initializations complete at compile time. We should also - * take care not to overwrite the precious per platform data - * we were given. - */ -int __init rand_initialize(void) -{ - init_std_data(&input_pool); - init_std_data(&blocking_pool); - crng_initialize(&primary_crng); - crng_global_init_time = jiffies; - if (ratelimit_disable) { - urandom_warning.interval = 0; - unseeded_warning.interval = 0; + /* + * Requesting insecure and blocking randomness at the same time makes + * no sense. + */ + if ((flags & (GRND_INSECURE | GRND_RANDOM)) == (GRND_INSECURE | GRND_RANDOM)) + return -EINVAL; + + if (!crng_ready() && !(flags & GRND_INSECURE)) { + if (flags & GRND_NONBLOCK) + return -EAGAIN; + ret = wait_for_random_bytes(); + if (unlikely(ret)) + return ret; } - return 0; + + ret = import_single_range(READ, ubuf, len, &iov, &iter); + if (unlikely(ret)) + return ret; + return get_random_bytes_user(&iter); } -#ifdef CONFIG_BLOCK -void rand_initialize_disk(struct gendisk *disk) +static __poll_t random_poll(struct file *file, poll_table *wait) { - struct timer_rand_state *state; - - /* - * If kzalloc returns null, we just won't use that entropy - * source. - */ - state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL); - if (state) { - state->last_time = INITIAL_JIFFIES; - disk->random = state; - } + poll_wait(file, &crng_init_wait, wait); + return crng_ready() ? EPOLLIN | EPOLLRDNORM : EPOLLOUT | EPOLLWRNORM; } -#endif -static ssize_t -_random_read(int nonblock, char __user *buf, size_t nbytes) +static ssize_t write_pool_user(struct iov_iter *iter) { - ssize_t n; + u8 block[BLAKE2S_BLOCK_SIZE]; + ssize_t ret = 0; + size_t copied; - if (nbytes == 0) + if (unlikely(!iov_iter_count(iter))) return 0; - nbytes = min_t(size_t, nbytes, SEC_XFER_SIZE); - while (1) { - n = extract_entropy_user(&blocking_pool, buf, nbytes); - if (n < 0) - return n; - trace_random_read(n*8, (nbytes-n)*8, - ENTROPY_BITS(&blocking_pool), - ENTROPY_BITS(&input_pool)); - if (n > 0) - return n; - - /* Pool is (near) empty. Maybe wait and retry. */ - if (nonblock) - return -EAGAIN; + for (;;) { + copied = copy_from_iter(block, sizeof(block), iter); + ret += copied; + mix_pool_bytes(block, copied); + if (!iov_iter_count(iter) || copied != sizeof(block)) + break; - wait_event_interruptible(random_read_wait, - blocking_pool.initialized && - (ENTROPY_BITS(&input_pool) >= random_read_wakeup_bits)); - if (signal_pending(current)) - return -ERESTARTSYS; + BUILD_BUG_ON(PAGE_SIZE % sizeof(block) != 0); + if (ret % PAGE_SIZE == 0) { + if (signal_pending(current)) + break; + cond_resched(); + } } -} - -static ssize_t -random_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) -{ - return _random_read(file->f_flags & O_NONBLOCK, buf, nbytes); -} - -static ssize_t -urandom_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) -{ - unsigned long flags; - static int maxwarn = 10; - int ret; - if (!crng_ready() && maxwarn > 0) { - maxwarn--; - if (__ratelimit(&urandom_warning)) - printk(KERN_NOTICE "random: %s: uninitialized " - "urandom read (%zd bytes read)\n", - current->comm, nbytes); - spin_lock_irqsave(&primary_crng.lock, flags); - crng_init_cnt = 0; - spin_unlock_irqrestore(&primary_crng.lock, flags); - } - nbytes = min_t(size_t, nbytes, INT_MAX >> (ENTROPY_SHIFT + 3)); - ret = extract_crng_user(buf, nbytes); - trace_urandom_read(8 * nbytes, 0, ENTROPY_BITS(&input_pool)); - return ret; + memzero_explicit(block, sizeof(block)); + return ret ? ret : -EFAULT; } -static __poll_t -random_poll(struct file *file, poll_table * wait) +static ssize_t random_write_iter(struct kiocb *kiocb, struct iov_iter *iter) { - __poll_t mask; - - poll_wait(file, &random_read_wait, wait); - poll_wait(file, &random_write_wait, wait); - mask = 0; - if (ENTROPY_BITS(&input_pool) >= random_read_wakeup_bits) - mask |= EPOLLIN | EPOLLRDNORM; - if (ENTROPY_BITS(&input_pool) < random_write_wakeup_bits) - mask |= EPOLLOUT | EPOLLWRNORM; - return mask; + return write_pool_user(iter); } -static int -write_pool(struct entropy_store *r, const char __user *buffer, size_t count) +static ssize_t urandom_read_iter(struct kiocb *kiocb, struct iov_iter *iter) { - size_t bytes; - __u32 t, buf[16]; - const char __user *p = buffer; - - while (count > 0) { - int b, i = 0; - - bytes = min(count, sizeof(buf)); - if (copy_from_user(&buf, p, bytes)) - return -EFAULT; + static int maxwarn = 10; - for (b = bytes ; b > 0 ; b -= sizeof(__u32), i++) { - if (!arch_get_random_int(&t)) - break; - buf[i] ^= t; + if (!crng_ready()) { + if (!ratelimit_disable && maxwarn <= 0) + ++urandom_warning.missed; + else if (ratelimit_disable || __ratelimit(&urandom_warning)) { + --maxwarn; + pr_notice("%s: uninitialized urandom read (%zu bytes read)\n", + current->comm, iov_iter_count(iter)); } - - count -= bytes; - p += bytes; - - mix_pool_bytes(r, buf, bytes); - cond_resched(); } - return 0; + return get_random_bytes_user(iter); } -static ssize_t random_write(struct file *file, const char __user *buffer, - size_t count, loff_t *ppos) +static ssize_t random_read_iter(struct kiocb *kiocb, struct iov_iter *iter) { - size_t ret; + int ret; - ret = write_pool(&input_pool, buffer, count); - if (ret) - return ret; + if (!crng_ready() && + ((kiocb->ki_flags & IOCB_NOWAIT) || + (kiocb->ki_filp->f_flags & O_NONBLOCK))) + return -EAGAIN; - return (ssize_t)count; + ret = wait_for_random_bytes(); + if (ret != 0) + return ret; + return get_random_bytes_user(iter); } static long random_ioctl(struct file *f, unsigned int cmd, unsigned long arg) { - int size, ent_count; int __user *p = (int __user *)arg; - int retval; + int ent_count; switch (cmd) { case RNDGETENTCNT: - /* inherently racy, no point locking */ - ent_count = ENTROPY_BITS(&input_pool); - if (put_user(ent_count, p)) + /* Inherently racy, no point locking. */ + if (put_user(input_pool.init_bits, p)) return -EFAULT; return 0; case RNDADDTOENTCNT: @@ -2117,39 +1325,48 @@ return -EPERM; if (get_user(ent_count, p)) return -EFAULT; - return credit_entropy_bits_safe(&input_pool, ent_count); - case RNDADDENTROPY: + if (ent_count < 0) + return -EINVAL; + credit_init_bits(ent_count); + return 0; + case RNDADDENTROPY: { + struct iov_iter iter; + struct iovec iov; + ssize_t ret; + int len; + if (!capable(CAP_SYS_ADMIN)) return -EPERM; if (get_user(ent_count, p++)) return -EFAULT; if (ent_count < 0) return -EINVAL; - if (get_user(size, p++)) + if (get_user(len, p++)) return -EFAULT; - retval = write_pool(&input_pool, (const char __user *)p, - size); - if (retval < 0) - return retval; - return credit_entropy_bits_safe(&input_pool, ent_count); + ret = import_single_range(WRITE, p, len, &iov, &iter); + if (unlikely(ret)) + return ret; + ret = write_pool_user(&iter); + if (unlikely(ret < 0)) + return ret; + /* Since we're crediting, enforce that it was all written into the pool. */ + if (unlikely(ret != len)) + return -EFAULT; + credit_init_bits(ent_count); + return 0; + } case RNDZAPENTCNT: case RNDCLEARPOOL: - /* - * Clear the entropy pool counters. We no longer clear - * the entropy pool, as that's silly. - */ + /* No longer has any effect. */ if (!capable(CAP_SYS_ADMIN)) return -EPERM; - input_pool.entropy_count = 0; - blocking_pool.entropy_count = 0; return 0; case RNDRESEEDCRNG: if (!capable(CAP_SYS_ADMIN)) return -EPERM; - if (crng_init < 2) + if (!crng_ready()) return -ENODATA; - crng_reseed(&primary_crng, NULL); - crng_global_init_time = jiffies - 1; + crng_reseed(); return 0; default: return -EINVAL; @@ -2162,49 +1379,56 @@ } const struct file_operations random_fops = { - .read = random_read, - .write = random_write, - .poll = random_poll, + .read_iter = random_read_iter, + .write_iter = random_write_iter, + .poll = random_poll, .unlocked_ioctl = random_ioctl, + .compat_ioctl = compat_ptr_ioctl, .fasync = random_fasync, .llseek = noop_llseek, + .splice_read = generic_file_splice_read, + .splice_write = iter_file_splice_write, }; const struct file_operations urandom_fops = { - .read = urandom_read, - .write = random_write, + .read_iter = urandom_read_iter, + .write_iter = random_write_iter, .unlocked_ioctl = random_ioctl, + .compat_ioctl = compat_ptr_ioctl, .fasync = random_fasync, .llseek = noop_llseek, + .splice_read = generic_file_splice_read, + .splice_write = iter_file_splice_write, }; -SYSCALL_DEFINE3(getrandom, char __user *, buf, size_t, count, - unsigned int, flags) -{ - int ret; - - if (flags & ~(GRND_NONBLOCK|GRND_RANDOM)) - return -EINVAL; - - if (count > INT_MAX) - count = INT_MAX; - - if (flags & GRND_RANDOM) - return _random_read(flags & GRND_NONBLOCK, buf, count); - - if (!crng_ready()) { - if (flags & GRND_NONBLOCK) - return -EAGAIN; - ret = wait_for_random_bytes(); - if (unlikely(ret)) - return ret; - } - return urandom_read(NULL, buf, count, NULL); -} /******************************************************************** * - * Sysctl interface + * Sysctl interface. + * + * These are partly unused legacy knobs with dummy values to not break + * userspace and partly still useful things. They are usually accessible + * in /proc/sys/kernel/random/ and are as follows: + * + * - boot_id - a UUID representing the current boot. + * + * - uuid - a random UUID, different each time the file is read. + * + * - poolsize - the number of bits of entropy that the input pool can + * hold, tied to the POOL_BITS constant. + * + * - entropy_avail - the number of bits of entropy currently in the + * input pool. Always <= poolsize. + * + * - write_wakeup_threshold - the amount of entropy in the input pool + * below which write polls to /dev/random will unblock, requesting + * more entropy, tied to the POOL_READY_BITS constant. It is writable + * to avoid breaking old userspaces, but writing to it does not + * change any behavior of the RNG. + * + * - urandom_min_reseed_secs - fixed to the value CRNG_RESEED_INTERVAL. + * It is writable to avoid breaking old userspaces, but writing + * to it does not change any behavior of the RNG. * ********************************************************************/ @@ -2212,26 +1436,28 @@ #include -static int min_read_thresh = 8, min_write_thresh; -static int max_read_thresh = OUTPUT_POOL_WORDS * 32; -static int max_write_thresh = INPUT_POOL_WORDS * 32; -static int random_min_urandom_seed = 60; -static char sysctl_bootid[16]; +static int sysctl_random_min_urandom_seed = CRNG_RESEED_INTERVAL / HZ; +static int sysctl_random_write_wakeup_bits = POOL_READY_BITS; +static int sysctl_poolsize = POOL_BITS; +static u8 sysctl_bootid[UUID_SIZE]; /* * This function is used to return both the bootid UUID, and random - * UUID. The difference is in whether table->data is NULL; if it is, + * UUID. The difference is in whether table->data is NULL; if it is, * then a new UUID is generated and returned to the user. - * - * If the user accesses this via the proc interface, the UUID will be - * returned as an ASCII string in the standard UUID format; if via the - * sysctl system call, as 16 bytes of binary data. */ -static int proc_do_uuid(struct ctl_table *table, int write, - void __user *buffer, size_t *lenp, loff_t *ppos) +static int proc_do_uuid(struct ctl_table *table, int write, void __user *buf, + size_t *lenp, loff_t *ppos) { - struct ctl_table fake_table; - unsigned char buf[64], tmp_uuid[16], *uuid; + u8 tmp_uuid[UUID_SIZE], *uuid; + char uuid_string[UUID_STRING_LEN + 1]; + struct ctl_table fake_table = { + .data = uuid_string, + .maxlen = UUID_STRING_LEN + }; + + if (write) + return -EPERM; uuid = table->data; if (!uuid) { @@ -2246,32 +1472,17 @@ spin_unlock(&bootid_spinlock); } - sprintf(buf, "%pU", uuid); - - fake_table.data = buf; - fake_table.maxlen = sizeof(buf); - - return proc_dostring(&fake_table, write, buffer, lenp, ppos); + snprintf(uuid_string, sizeof(uuid_string), "%pU", uuid); + return proc_dostring(&fake_table, 0, buf, lenp, ppos); } -/* - * Return entropy available scaled to integral bits - */ -static int proc_do_entropy(struct ctl_table *table, int write, - void __user *buffer, size_t *lenp, loff_t *ppos) +/* The same as proc_dointvec, but writes don't change anything. */ +static int proc_do_rointvec(struct ctl_table *table, int write, void __user *buf, + size_t *lenp, loff_t *ppos) { - struct ctl_table fake_table; - int entropy_count; - - entropy_count = *(int *)table->data >> ENTROPY_SHIFT; - - fake_table.data = &entropy_count; - fake_table.maxlen = sizeof(entropy_count); - - return proc_dointvec(&fake_table, write, buffer, lenp, ppos); + return write ? 0 : proc_dointvec(table, 0, buf, lenp, ppos); } -static int sysctl_poolsize = INPUT_POOL_WORDS * 32; extern struct ctl_table random_table[]; struct ctl_table random_table[] = { { @@ -2283,239 +1494,36 @@ }, { .procname = "entropy_avail", + .data = &input_pool.init_bits, .maxlen = sizeof(int), .mode = 0444, - .proc_handler = proc_do_entropy, - .data = &input_pool.entropy_count, - }, - { - .procname = "read_wakeup_threshold", - .data = &random_read_wakeup_bits, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &min_read_thresh, - .extra2 = &max_read_thresh, + .proc_handler = proc_dointvec, }, { .procname = "write_wakeup_threshold", - .data = &random_write_wakeup_bits, + .data = &sysctl_random_write_wakeup_bits, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &min_write_thresh, - .extra2 = &max_write_thresh, + .proc_handler = proc_do_rointvec, }, { .procname = "urandom_min_reseed_secs", - .data = &random_min_urandom_seed, + .data = &sysctl_random_min_urandom_seed, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_dointvec, + .proc_handler = proc_do_rointvec, }, { .procname = "boot_id", .data = &sysctl_bootid, - .maxlen = 16, .mode = 0444, .proc_handler = proc_do_uuid, }, { .procname = "uuid", - .maxlen = 16, .mode = 0444, .proc_handler = proc_do_uuid, }, -#ifdef ADD_INTERRUPT_BENCH - { - .procname = "add_interrupt_avg_cycles", - .data = &avg_cycles, - .maxlen = sizeof(avg_cycles), - .mode = 0444, - .proc_handler = proc_doulongvec_minmax, - }, - { - .procname = "add_interrupt_avg_deviation", - .data = &avg_deviation, - .maxlen = sizeof(avg_deviation), - .mode = 0444, - .proc_handler = proc_doulongvec_minmax, - }, -#endif { } }; -#endif /* CONFIG_SYSCTL */ - -struct batched_entropy { - union { - u64 entropy_u64[CHACHA_BLOCK_SIZE / sizeof(u64)]; - u32 entropy_u32[CHACHA_BLOCK_SIZE / sizeof(u32)]; - }; - unsigned int position; - spinlock_t batch_lock; -}; - -/* - * Get a random word for internal kernel use only. The quality of the random - * number is either as good as RDRAND or as good as /dev/urandom, with the - * goal of being quite fast and not depleting entropy. In order to ensure - * that the randomness provided by this function is okay, the function - * wait_for_random_bytes() should be called and return 0 at least once - * at any point prior. - */ -static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u64) = { - .batch_lock = __SPIN_LOCK_UNLOCKED(batched_entropy_u64.lock), -}; - -u64 get_random_u64(void) -{ - u64 ret; - unsigned long flags; - struct batched_entropy *batch; - static void *previous; - -#if BITS_PER_LONG == 64 - if (arch_get_random_long((unsigned long *)&ret)) - return ret; -#else - if (arch_get_random_long((unsigned long *)&ret) && - arch_get_random_long((unsigned long *)&ret + 1)) - return ret; -#endif - - warn_unseeded_randomness(&previous); - - batch = raw_cpu_ptr(&batched_entropy_u64); - spin_lock_irqsave(&batch->batch_lock, flags); - if (batch->position % ARRAY_SIZE(batch->entropy_u64) == 0) { - extract_crng((u8 *)batch->entropy_u64); - batch->position = 0; - } - ret = batch->entropy_u64[batch->position++]; - spin_unlock_irqrestore(&batch->batch_lock, flags); - return ret; -} -EXPORT_SYMBOL(get_random_u64); - -static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u32) = { - .batch_lock = __SPIN_LOCK_UNLOCKED(batched_entropy_u32.lock), -}; -u32 get_random_u32(void) -{ - u32 ret; - unsigned long flags; - struct batched_entropy *batch; - static void *previous; - - if (arch_get_random_int(&ret)) - return ret; - - warn_unseeded_randomness(&previous); - - batch = raw_cpu_ptr(&batched_entropy_u32); - spin_lock_irqsave(&batch->batch_lock, flags); - if (batch->position % ARRAY_SIZE(batch->entropy_u32) == 0) { - extract_crng((u8 *)batch->entropy_u32); - batch->position = 0; - } - ret = batch->entropy_u32[batch->position++]; - spin_unlock_irqrestore(&batch->batch_lock, flags); - return ret; -} -EXPORT_SYMBOL(get_random_u32); - -/* It's important to invalidate all potential batched entropy that might - * be stored before the crng is initialized, which we can do lazily by - * simply resetting the counter to zero so that it's re-extracted on the - * next usage. */ -static void invalidate_batched_entropy(void) -{ - int cpu; - unsigned long flags; - - for_each_possible_cpu (cpu) { - struct batched_entropy *batched_entropy; - - batched_entropy = per_cpu_ptr(&batched_entropy_u32, cpu); - spin_lock_irqsave(&batched_entropy->batch_lock, flags); - batched_entropy->position = 0; - spin_unlock(&batched_entropy->batch_lock); - - batched_entropy = per_cpu_ptr(&batched_entropy_u64, cpu); - spin_lock(&batched_entropy->batch_lock); - batched_entropy->position = 0; - spin_unlock_irqrestore(&batched_entropy->batch_lock, flags); - } -} - -/** - * randomize_page - Generate a random, page aligned address - * @start: The smallest acceptable address the caller will take. - * @range: The size of the area, starting at @start, within which the - * random address must fall. - * - * If @start + @range would overflow, @range is capped. - * - * NOTE: Historical use of randomize_range, which this replaces, presumed that - * @start was already page aligned. We now align it regardless. - * - * Return: A page aligned address within [start, start + range). On error, - * @start is returned. - */ -unsigned long -randomize_page(unsigned long start, unsigned long range) -{ - if (!PAGE_ALIGNED(start)) { - range -= PAGE_ALIGN(start) - start; - start = PAGE_ALIGN(start); - } - - if (start > ULONG_MAX - range) - range = ULONG_MAX - start; - - range >>= PAGE_SHIFT; - - if (range == 0) - return start; - - return start + (get_random_long() % range << PAGE_SHIFT); -} - -/* Interface for in-kernel drivers of true hardware RNGs. - * Those devices may produce endless random bits and will be throttled - * when our pool is full. - */ -void add_hwgenerator_randomness(const char *buffer, size_t count, - size_t entropy) -{ - struct entropy_store *poolp = &input_pool; - - if (unlikely(crng_init == 0)) { - crng_fast_load(buffer, count); - return; - } - - /* Suspend writing if we're above the trickle threshold. - * We'll be woken up again once below random_write_wakeup_thresh, - * or when the calling thread is about to terminate. - */ - wait_event_interruptible(random_write_wait, kthread_should_stop() || - ENTROPY_BITS(&input_pool) <= random_write_wakeup_bits); - mix_pool_bytes(poolp, buffer, count); - credit_entropy_bits(poolp, entropy); -} -EXPORT_SYMBOL_GPL(add_hwgenerator_randomness); - -/* Handle random seed passed by bootloader. - * If the seed is trustworthy, it would be regarded as hardware RNGs. Otherwise - * it would be regarded as device data. - * The decision is controlled by CONFIG_RANDOM_TRUST_BOOTLOADER. - */ -void add_bootloader_randomness(const void *buf, unsigned int size) -{ - if (IS_ENABLED(CONFIG_RANDOM_TRUST_BOOTLOADER)) - add_hwgenerator_randomness(buf, size, size * 8); - else - add_device_randomness(buf, size); -} -EXPORT_SYMBOL_GPL(add_bootloader_randomness); +#endif /* CONFIG_SYSCTL */ diff -u linux-azure-5.4.0/drivers/char/tpm/tpm-chip.c linux-azure-5.4.0/drivers/char/tpm/tpm-chip.c --- linux-azure-5.4.0/drivers/char/tpm/tpm-chip.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm-chip.c @@ -274,14 +274,6 @@ kfree(chip); } -static void tpm_devs_release(struct device *dev) -{ - struct tpm_chip *chip = container_of(dev, struct tpm_chip, devs); - - /* release the master device reference */ - put_device(&chip->dev); -} - /** * tpm_class_shutdown() - prepare the TPM device for loss of power. * @dev: device to which the chip is associated. @@ -344,7 +336,6 @@ chip->dev_num = rc; device_initialize(&chip->dev); - device_initialize(&chip->devs); chip->dev.class = tpm_class; chip->dev.class->shutdown_pre = tpm_class_shutdown; @@ -352,39 +343,20 @@ chip->dev.parent = pdev; chip->dev.groups = chip->groups; - chip->devs.parent = pdev; - chip->devs.class = tpmrm_class; - chip->devs.release = tpm_devs_release; - /* get extra reference on main device to hold on - * behalf of devs. This holds the chip structure - * while cdevs is in use. The corresponding put - * is in the tpm_devs_release (TPM2 only) - */ - if (chip->flags & TPM_CHIP_FLAG_TPM2) - get_device(&chip->dev); - if (chip->dev_num == 0) chip->dev.devt = MKDEV(MISC_MAJOR, TPM_MINOR); else chip->dev.devt = MKDEV(MAJOR(tpm_devt), chip->dev_num); - chip->devs.devt = - MKDEV(MAJOR(tpm_devt), chip->dev_num + TPM_NUM_DEVICES); - rc = dev_set_name(&chip->dev, "tpm%d", chip->dev_num); if (rc) goto out; - rc = dev_set_name(&chip->devs, "tpmrm%d", chip->dev_num); - if (rc) - goto out; if (!pdev) chip->flags |= TPM_CHIP_FLAG_VIRTUAL; cdev_init(&chip->cdev, &tpm_fops); - cdev_init(&chip->cdevs, &tpmrm_fops); chip->cdev.owner = THIS_MODULE; - chip->cdevs.owner = THIS_MODULE; rc = tpm2_init_space(&chip->work_space, TPM2_SPACE_BUFFER_SIZE); if (rc) { @@ -396,7 +368,6 @@ return chip; out: - put_device(&chip->devs); put_device(&chip->dev); return ERR_PTR(rc); } @@ -445,14 +416,9 @@ } if (chip->flags & TPM_CHIP_FLAG_TPM2) { - rc = cdev_device_add(&chip->cdevs, &chip->devs); - if (rc) { - dev_err(&chip->devs, - "unable to cdev_device_add() %s, major %d, minor %d, err=%d\n", - dev_name(&chip->devs), MAJOR(chip->devs.devt), - MINOR(chip->devs.devt), rc); - return rc; - } + rc = tpm_devs_add(chip); + if (rc) + goto err_del_cdev; } /* Make the chip available. */ @@ -460,6 +426,10 @@ idr_replace(&dev_nums_idr, chip, chip->dev_num); mutex_unlock(&idr_lock); + return 0; + +err_del_cdev: + cdev_device_del(&chip->cdev, &chip->dev); return rc; } @@ -641,7 +611,7 @@ hwrng_unregister(&chip->hwrng); tpm_bios_log_teardown(chip); if (chip->flags & TPM_CHIP_FLAG_TPM2) - cdev_device_del(&chip->cdevs, &chip->devs); + tpm_devs_remove(chip); tpm_del_char_device(chip); } EXPORT_SYMBOL_GPL(tpm_chip_unregister); diff -u linux-azure-5.4.0/drivers/char/tpm/tpm-dev-common.c linux-azure-5.4.0/drivers/char/tpm/tpm-dev-common.c --- linux-azure-5.4.0/drivers/char/tpm/tpm-dev-common.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm-dev-common.c @@ -70,7 +70,13 @@ ret = tpm_dev_transmit(priv->chip, priv->space, priv->data_buffer, sizeof(priv->data_buffer)); tpm_put_ops(priv->chip); - if (ret > 0) { + + /* + * If ret is > 0 then tpm_dev_transmit returned the size of the + * response. If ret is < 0 then tpm_dev_transmit failed and + * returned an error code. + */ + if (ret != 0) { priv->response_length = ret; mod_timer(&priv->user_read_timer, jiffies + (120 * HZ)); } diff -u linux-azure-5.4.0/drivers/char/tpm/tpm.h linux-azure-5.4.0/drivers/char/tpm/tpm.h --- linux-azure-5.4.0/drivers/char/tpm/tpm.h +++ linux-azure-5.4.0/drivers/char/tpm/tpm.h @@ -466,6 +466,8 @@ size_t cmdsiz); int tpm2_commit_space(struct tpm_chip *chip, struct tpm_space *space, void *buf, size_t *bufsiz); +int tpm_devs_add(struct tpm_chip *chip); +void tpm_devs_remove(struct tpm_chip *chip); void tpm_bios_log_setup(struct tpm_chip *chip); void tpm_bios_log_teardown(struct tpm_chip *chip); diff -u linux-azure-5.4.0/drivers/char/tpm/tpm2-cmd.c linux-azure-5.4.0/drivers/char/tpm/tpm2-cmd.c --- linux-azure-5.4.0/drivers/char/tpm/tpm2-cmd.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm2-cmd.c @@ -706,7 +706,16 @@ if (!rc) { out = (struct tpm2_get_cap_out *) &buf.data[TPM_HEADER_SIZE]; - *value = be32_to_cpu(out->value); + /* + * To prevent failing boot up of some systems, Infineon TPM2.0 + * returns SUCCESS on TPM2_Startup in field upgrade mode. Also + * the TPM2_Getcapability command returns a zero length list + * in field upgrade mode. + */ + if (be32_to_cpu(out->property_cnt) > 0) + *value = be32_to_cpu(out->value); + else + rc = -ENODATA; } tpm_buf_destroy(&buf); return rc; diff -u linux-azure-5.4.0/drivers/char/tpm/tpm2-space.c linux-azure-5.4.0/drivers/char/tpm/tpm2-space.c --- linux-azure-5.4.0/drivers/char/tpm/tpm2-space.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm2-space.c @@ -58,12 +58,12 @@ void tpm2_del_space(struct tpm_chip *chip, struct tpm_space *space) { - mutex_lock(&chip->tpm_mutex); - if (!tpm_chip_start(chip)) { + + if (tpm_try_get_ops(chip) == 0) { tpm2_flush_sessions(chip, space); - tpm_chip_stop(chip); + tpm_put_ops(chip); } - mutex_unlock(&chip->tpm_mutex); + kfree(space->context_buf); kfree(space->session_buf); } @@ -455,6 +455,9 @@ if (be32_to_cpu(data->capability) != TPM2_CAP_HANDLES) return 0; + if (be32_to_cpu(data->count) > (UINT_MAX - TPM_HEADER_SIZE - 9) / 4) + return -EFAULT; + if (len != TPM_HEADER_SIZE + 9 + 4 * be32_to_cpu(data->count)) return -EFAULT; @@ -573,0 +577,65 @@ + +/* + * Put the reference to the main device. + */ +static void tpm_devs_release(struct device *dev) +{ + struct tpm_chip *chip = container_of(dev, struct tpm_chip, devs); + + /* release the master device reference */ + put_device(&chip->dev); +} + +/* + * Remove the device file for exposed TPM spaces and release the device + * reference. This may also release the reference to the master device. + */ +void tpm_devs_remove(struct tpm_chip *chip) +{ + cdev_device_del(&chip->cdevs, &chip->devs); + put_device(&chip->devs); +} + +/* + * Add a device file to expose TPM spaces. Also take a reference to the + * main device. + */ +int tpm_devs_add(struct tpm_chip *chip) +{ + int rc; + + device_initialize(&chip->devs); + chip->devs.parent = chip->dev.parent; + chip->devs.class = tpmrm_class; + + /* + * Get extra reference on main device to hold on behalf of devs. + * This holds the chip structure while cdevs is in use. The + * corresponding put is in the tpm_devs_release. + */ + get_device(&chip->dev); + chip->devs.release = tpm_devs_release; + chip->devs.devt = MKDEV(MAJOR(tpm_devt), chip->dev_num + TPM_NUM_DEVICES); + cdev_init(&chip->cdevs, &tpmrm_fops); + chip->cdevs.owner = THIS_MODULE; + + rc = dev_set_name(&chip->devs, "tpmrm%d", chip->dev_num); + if (rc) + goto err_put_devs; + + rc = cdev_device_add(&chip->cdevs, &chip->devs); + if (rc) { + dev_err(&chip->devs, + "unable to cdev_device_add() %s, major %d, minor %d, err=%d\n", + dev_name(&chip->devs), MAJOR(chip->devs.devt), + MINOR(chip->devs.devt), rc); + goto err_put_devs; + } + + return 0; + +err_put_devs: + put_device(&chip->devs); + + return rc; +} diff -u linux-azure-5.4.0/drivers/char/tpm/tpm_ftpm_tee.c linux-azure-5.4.0/drivers/char/tpm/tpm_ftpm_tee.c --- linux-azure-5.4.0/drivers/char/tpm/tpm_ftpm_tee.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm_ftpm_tee.c @@ -255,11 +255,11 @@ pvt_data->session = sess_arg.session; /* Allocate dynamic shared memory with fTPM TA */ - pvt_data->shm = tee_shm_alloc(pvt_data->ctx, - MAX_COMMAND_SIZE + MAX_RESPONSE_SIZE, - TEE_SHM_MAPPED | TEE_SHM_DMA_BUF); + pvt_data->shm = tee_shm_alloc_kernel_buf(pvt_data->ctx, + MAX_COMMAND_SIZE + + MAX_RESPONSE_SIZE); if (IS_ERR(pvt_data->shm)) { - dev_err(dev, "%s: tee_shm_alloc failed\n", __func__); + dev_err(dev, "%s: tee_shm_alloc_kernel_buf failed\n", __func__); rc = -ENOMEM; goto out_shm_alloc; } diff -u linux-azure-5.4.0/drivers/char/tpm/tpm_ibmvtpm.c linux-azure-5.4.0/drivers/char/tpm/tpm_ibmvtpm.c --- linux-azure-5.4.0/drivers/char/tpm/tpm_ibmvtpm.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm_ibmvtpm.c @@ -685,6 +685,7 @@ if (!wait_event_timeout(ibmvtpm->crq_queue.wq, ibmvtpm->rtce_buf != NULL, HZ)) { + rc = -ENODEV; dev_err(dev, "CRQ response timed out\n"); goto init_irq_cleanup; } diff -u linux-azure-5.4.0/drivers/char/tpm/tpm_tis_core.c linux-azure-5.4.0/drivers/char/tpm/tpm_tis_core.c --- linux-azure-5.4.0/drivers/char/tpm/tpm_tis_core.c +++ linux-azure-5.4.0/drivers/char/tpm/tpm_tis_core.c @@ -877,7 +877,15 @@ intmask |= TPM_INTF_CMD_READY_INT | TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_DATA_AVAIL_INT | TPM_INTF_STS_VALID_INT; intmask &= ~TPM_GLOBAL_INT_ENABLE; + + rc = request_locality(chip, 0); + if (rc < 0) { + rc = -ENODEV; + goto out_err; + } + tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask); + release_locality(chip, 0); rc = tpm_chip_start(chip); if (rc) diff -u linux-azure-5.4.0/drivers/char/virtio_console.c linux-azure-5.4.0/drivers/char/virtio_console.c --- linux-azure-5.4.0/drivers/char/virtio_console.c +++ linux-azure-5.4.0/drivers/char/virtio_console.c @@ -475,7 +475,7 @@ buf = virtqueue_get_buf(port->in_vq, &len); if (buf) { - buf->len = len; + buf->len = min_t(size_t, len, buf->size); buf->offset = 0; port->stats.bytes_received += len; } @@ -1714,7 +1714,7 @@ while ((buf = virtqueue_get_buf(vq, &len))) { spin_unlock(&portdev->c_ivq_lock); - buf->len = len; + buf->len = min_t(size_t, len, buf->size); buf->offset = 0; handle_control_message(vq->vdev, portdev, buf); @@ -1961,6 +1961,13 @@ list_del(&portdev->list); spin_unlock_irq(&pdrvdata_lock); + /* Device is going away, exit any polling for buffers */ + virtio_break_device(vdev); + if (use_multiport(portdev)) + flush_work(&portdev->control_work); + else + flush_work(&portdev->config_work); + /* Disable interrupts for vqs */ vdev->config->reset(vdev); /* Finish up work that's lined up */ @@ -2234,7 +2241,7 @@ .remove = virtcons_remove, }; -static int __init init(void) +static int __init virtio_console_init(void) { int err; @@ -2271,7 +2278,7 @@ return err; } -static void __exit fini(void) +static void __exit virtio_console_fini(void) { reclaim_dma_bufs(); @@ -2281,8 +2288,8 @@ class_destroy(pdrvdata.class); debugfs_remove_recursive(pdrvdata.debugfs_dir); } -module_init(init); -module_exit(fini); +module_init(virtio_console_init); +module_exit(virtio_console_fini); MODULE_DESCRIPTION("Virtio console driver"); MODULE_LICENSE("GPL"); diff -u linux-azure-5.4.0/drivers/clk/actions/owl-s500.c linux-azure-5.4.0/drivers/clk/actions/owl-s500.c --- linux-azure-5.4.0/drivers/clk/actions/owl-s500.c +++ linux-azure-5.4.0/drivers/clk/actions/owl-s500.c @@ -125,8 +125,7 @@ { 12, 1, 13 }, { 13, 1, 14 }, { 14, 1, 15 }, { 15, 1, 16 }, { 16, 1, 17 }, { 17, 1, 18 }, { 18, 1, 19 }, { 19, 1, 20 }, { 20, 1, 21 }, { 21, 1, 22 }, { 22, 1, 23 }, { 23, 1, 24 }, - { 24, 1, 25 }, { 25, 1, 26 }, { 26, 1, 27 }, { 27, 1, 28 }, - { 28, 1, 29 }, { 29, 1, 30 }, { 30, 1, 31 }, { 31, 1, 32 }, + { 24, 1, 25 }, /* bit8: /128 */ { 256, 1, 1 * 128 }, { 257, 1, 2 * 128 }, { 258, 1, 3 * 128 }, { 259, 1, 4 * 128 }, @@ -135,14 +134,20 @@ { 268, 1, 13 * 128 }, { 269, 1, 14 * 128 }, { 270, 1, 15 * 128 }, { 271, 1, 16 * 128 }, { 272, 1, 17 * 128 }, { 273, 1, 18 * 128 }, { 274, 1, 19 * 128 }, { 275, 1, 20 * 128 }, { 276, 1, 21 * 128 }, { 277, 1, 22 * 128 }, { 278, 1, 23 * 128 }, { 279, 1, 24 * 128 }, - { 280, 1, 25 * 128 }, { 281, 1, 26 * 128 }, { 282, 1, 27 * 128 }, { 283, 1, 28 * 128 }, - { 284, 1, 29 * 128 }, { 285, 1, 30 * 128 }, { 286, 1, 31 * 128 }, { 287, 1, 32 * 128 }, + { 280, 1, 25 * 128 }, { 0, 0, 0 }, }; -static struct clk_factor_table bisp_factor_table[] = { - { 0, 1, 1 }, { 1, 1, 2 }, { 2, 1, 3 }, { 3, 1, 4 }, - { 4, 1, 5 }, { 5, 1, 6 }, { 6, 1, 7 }, { 7, 1, 8 }, +static struct clk_factor_table de_factor_table[] = { + { 0, 1, 1 }, { 1, 2, 3 }, { 2, 1, 2 }, { 3, 2, 5 }, + { 4, 1, 3 }, { 5, 1, 4 }, { 6, 1, 6 }, { 7, 1, 8 }, + { 8, 1, 12 }, + { 0, 0, 0 }, +}; + +static struct clk_factor_table hde_factor_table[] = { + { 0, 1, 1 }, { 1, 2, 3 }, { 2, 1, 2 }, { 3, 2, 5 }, + { 4, 1, 3 }, { 5, 1, 4 }, { 6, 1, 6 }, { 7, 1, 8 }, { 0, 0, 0 }, }; @@ -156,6 +161,13 @@ { 0, 0 }, }; +static struct clk_div_table std12rate_div_table[] = { + { 0, 1 }, { 1, 2 }, { 2, 3 }, { 3, 4 }, + { 4, 5 }, { 5, 6 }, { 6, 7 }, { 7, 8 }, + { 8, 9 }, { 9, 10 }, { 10, 11 }, { 11, 12 }, + { 0, 0 }, +}; + static struct clk_div_table i2s_div_table[] = { { 0, 1 }, { 1, 2 }, { 2, 3 }, { 3, 4 }, { 4, 6 }, { 5, 8 }, { 6, 12 }, { 7, 16 }, @@ -188,39 +200,39 @@ /* factor clocks */ static OWL_FACTOR(ahb_clk, "ahb_clk", "h_clk", CMU_BUSCLK1, 2, 2, ahb_factor_table, 0, 0); -static OWL_FACTOR(de1_clk, "de_clk1", "de_clk", CMU_DECLK, 0, 3, bisp_factor_table, 0, 0); -static OWL_FACTOR(de2_clk, "de_clk2", "de_clk", CMU_DECLK, 4, 3, bisp_factor_table, 0, 0); +static OWL_FACTOR(de1_clk, "de_clk1", "de_clk", CMU_DECLK, 0, 4, de_factor_table, 0, 0); +static OWL_FACTOR(de2_clk, "de_clk2", "de_clk", CMU_DECLK, 4, 4, de_factor_table, 0, 0); /* composite clocks */ static OWL_COMP_FACTOR(vce_clk, "vce_clk", hde_clk_mux_p, OWL_MUX_HW(CMU_VCECLK, 4, 2), OWL_GATE_HW(CMU_DEVCLKEN0, 26, 0), - OWL_FACTOR_HW(CMU_VCECLK, 0, 3, 0, bisp_factor_table), + OWL_FACTOR_HW(CMU_VCECLK, 0, 3, 0, hde_factor_table), 0); static OWL_COMP_FACTOR(vde_clk, "vde_clk", hde_clk_mux_p, OWL_MUX_HW(CMU_VDECLK, 4, 2), OWL_GATE_HW(CMU_DEVCLKEN0, 25, 0), - OWL_FACTOR_HW(CMU_VDECLK, 0, 3, 0, bisp_factor_table), + OWL_FACTOR_HW(CMU_VDECLK, 0, 3, 0, hde_factor_table), 0); -static OWL_COMP_FACTOR(bisp_clk, "bisp_clk", bisp_clk_mux_p, +static OWL_COMP_DIV(bisp_clk, "bisp_clk", bisp_clk_mux_p, OWL_MUX_HW(CMU_BISPCLK, 4, 1), OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0), - OWL_FACTOR_HW(CMU_BISPCLK, 0, 3, 0, bisp_factor_table), + OWL_DIVIDER_HW(CMU_BISPCLK, 0, 4, 0, std12rate_div_table), 0); -static OWL_COMP_FACTOR(sensor0_clk, "sensor0_clk", sensor_clk_mux_p, +static OWL_COMP_DIV(sensor0_clk, "sensor0_clk", sensor_clk_mux_p, OWL_MUX_HW(CMU_SENSORCLK, 4, 1), OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0), - OWL_FACTOR_HW(CMU_SENSORCLK, 0, 3, 0, bisp_factor_table), - CLK_IGNORE_UNUSED); + OWL_DIVIDER_HW(CMU_SENSORCLK, 0, 4, 0, std12rate_div_table), + 0); -static OWL_COMP_FACTOR(sensor1_clk, "sensor1_clk", sensor_clk_mux_p, +static OWL_COMP_DIV(sensor1_clk, "sensor1_clk", sensor_clk_mux_p, OWL_MUX_HW(CMU_SENSORCLK, 4, 1), OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0), - OWL_FACTOR_HW(CMU_SENSORCLK, 8, 3, 0, bisp_factor_table), - CLK_IGNORE_UNUSED); + OWL_DIVIDER_HW(CMU_SENSORCLK, 8, 4, 0, std12rate_div_table), + 0); static OWL_COMP_FACTOR(sd0_clk, "sd0_clk", sd_clk_mux_p, OWL_MUX_HW(CMU_SD0CLK, 9, 1), @@ -300,7 +312,7 @@ static OWL_COMP_DIV(uart0_clk, "uart0_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART0CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 6, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART0CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(uart1_clk, "uart1_clk", uart_clk_mux_p, @@ -312,31 +324,31 @@ static OWL_COMP_DIV(uart2_clk, "uart2_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART2CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 8, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART2CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(uart3_clk, "uart3_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART3CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 19, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART3CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(uart4_clk, "uart4_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART4CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 20, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART4CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(uart5_clk, "uart5_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART5CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 21, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART5CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(uart6_clk, "uart6_clk", uart_clk_mux_p, OWL_MUX_HW(CMU_UART6CLK, 16, 1), OWL_GATE_HW(CMU_DEVCLKEN1, 18, 0), - OWL_DIVIDER_HW(CMU_UART1CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), + OWL_DIVIDER_HW(CMU_UART6CLK, 0, 8, CLK_DIVIDER_ROUND_CLOSEST, NULL), CLK_IGNORE_UNUSED); static OWL_COMP_DIV(i2srx_clk, "i2srx_clk", i2s_clk_mux_p, diff -u linux-azure-5.4.0/drivers/clk/at91/pmc.c linux-azure-5.4.0/drivers/clk/at91/pmc.c --- linux-azure-5.4.0/drivers/clk/at91/pmc.c +++ linux-azure-5.4.0/drivers/clk/at91/pmc.c @@ -275,6 +275,11 @@ np = of_find_matching_node(NULL, sama5d2_pmc_dt_ids); + if (!of_device_is_available(np)) { + of_node_put(np); + return -ENODEV; + } + pmcreg = device_node_to_regmap(np); if (IS_ERR(pmcreg)) return PTR_ERR(pmcreg); diff -u linux-azure-5.4.0/drivers/clk/at91/sam9x60.c linux-azure-5.4.0/drivers/clk/at91/sam9x60.c --- linux-azure-5.4.0/drivers/clk/at91/sam9x60.c +++ linux-azure-5.4.0/drivers/clk/at91/sam9x60.c @@ -124,7 +124,6 @@ char *n; u8 id; struct clk_range r; - bool pll; } sam9x60_gck[] = { { .n = "flex0_gclk", .id = 5, }, { .n = "flex1_gclk", .id = 6, }, @@ -144,11 +143,9 @@ { .n = "sdmmc1_gclk", .id = 26, .r = { .min = 0, .max = 105000000 }, }, { .n = "flex11_gclk", .id = 32, }, { .n = "flex12_gclk", .id = 33, }, - { .n = "i2s_gclk", .id = 34, .r = { .min = 0, .max = 105000000 }, - .pll = true, }, + { .n = "i2s_gclk", .id = 34, .r = { .min = 0, .max = 105000000 }, }, { .n = "pit64b_gclk", .id = 37, }, - { .n = "classd_gclk", .id = 42, .r = { .min = 0, .max = 100000000 }, - .pll = true, }, + { .n = "classd_gclk", .id = 42, .r = { .min = 0, .max = 100000000 }, }, { .n = "tcb1_gclk", .id = 45, }, { .n = "dbgu_gclk", .id = 47, }, }; @@ -285,8 +282,7 @@ sam9x60_gck[i].n, parent_names, 6, sam9x60_gck[i].id, - sam9x60_gck[i].pll, - &sam9x60_gck[i].r); + &sam9x60_gck[i].r, INT_MIN); if (IS_ERR(hw)) goto err_free; diff -u linux-azure-5.4.0/drivers/clk/at91/sama5d2.c linux-azure-5.4.0/drivers/clk/at91/sama5d2.c --- linux-azure-5.4.0/drivers/clk/at91/sama5d2.c +++ linux-azure-5.4.0/drivers/clk/at91/sama5d2.c @@ -115,21 +115,20 @@ char *n; u8 id; struct clk_range r; - bool pll; + int chg_pid; } sama5d2_gck[] = { - { .n = "sdmmc0_gclk", .id = 31, }, - { .n = "sdmmc1_gclk", .id = 32, }, - { .n = "tcb0_gclk", .id = 35, .r = { .min = 0, .max = 83000000 }, }, - { .n = "tcb1_gclk", .id = 36, .r = { .min = 0, .max = 83000000 }, }, - { .n = "pwm_gclk", .id = 38, .r = { .min = 0, .max = 83000000 }, }, - { .n = "isc_gclk", .id = 46, }, - { .n = "pdmic_gclk", .id = 48, }, - { .n = "i2s0_gclk", .id = 54, .pll = true }, - { .n = "i2s1_gclk", .id = 55, .pll = true }, - { .n = "can0_gclk", .id = 56, .r = { .min = 0, .max = 80000000 }, }, - { .n = "can1_gclk", .id = 57, .r = { .min = 0, .max = 80000000 }, }, - { .n = "classd_gclk", .id = 59, .r = { .min = 0, .max = 100000000 }, - .pll = true }, + { .n = "sdmmc0_gclk", .id = 31, .chg_pid = INT_MIN, }, + { .n = "sdmmc1_gclk", .id = 32, .chg_pid = INT_MIN, }, + { .n = "tcb0_gclk", .id = 35, .chg_pid = INT_MIN, .r = { .min = 0, .max = 83000000 }, }, + { .n = "tcb1_gclk", .id = 36, .chg_pid = INT_MIN, .r = { .min = 0, .max = 83000000 }, }, + { .n = "pwm_gclk", .id = 38, .chg_pid = INT_MIN, .r = { .min = 0, .max = 83000000 }, }, + { .n = "isc_gclk", .id = 46, .chg_pid = INT_MIN, }, + { .n = "pdmic_gclk", .id = 48, .chg_pid = INT_MIN, }, + { .n = "i2s0_gclk", .id = 54, .chg_pid = 5, }, + { .n = "i2s1_gclk", .id = 55, .chg_pid = 5, }, + { .n = "can0_gclk", .id = 56, .chg_pid = INT_MIN, .r = { .min = 0, .max = 80000000 }, }, + { .n = "can1_gclk", .id = 57, .chg_pid = INT_MIN, .r = { .min = 0, .max = 80000000 }, }, + { .n = "classd_gclk", .id = 59, .chg_pid = 5, .r = { .min = 0, .max = 100000000 }, }, }; static const struct clk_programmable_layout sama5d2_programmable_layout = { @@ -317,8 +316,8 @@ sama5d2_gck[i].n, parent_names, 6, sama5d2_gck[i].id, - sama5d2_gck[i].pll, - &sama5d2_gck[i].r); + &sama5d2_gck[i].r, + sama5d2_gck[i].chg_pid); if (IS_ERR(hw)) goto err_free; diff -u linux-azure-5.4.0/drivers/clk/bcm/clk-bcm2835.c linux-azure-5.4.0/drivers/clk/bcm/clk-bcm2835.c --- linux-azure-5.4.0/drivers/clk/bcm/clk-bcm2835.c +++ linux-azure-5.4.0/drivers/clk/bcm/clk-bcm2835.c @@ -932,8 +932,7 @@ static u32 bcm2835_clock_choose_div(struct clk_hw *hw, unsigned long rate, - unsigned long parent_rate, - bool round_up) + unsigned long parent_rate) { struct bcm2835_clock *clock = bcm2835_clock_from_hw(hw); const struct bcm2835_clock_data *data = clock->data; @@ -945,10 +944,6 @@ rem = do_div(temp, rate); div = temp; - - /* Round up and mask off the unused bits */ - if (round_up && ((div & unused_frac_mask) != 0 || rem != 0)) - div += unused_frac_mask + 1; div &= ~unused_frac_mask; /* different clamping limits apply for a mash clock */ @@ -972,9 +967,9 @@ return div; } -static long bcm2835_clock_rate_from_divisor(struct bcm2835_clock *clock, - unsigned long parent_rate, - u32 div) +static unsigned long bcm2835_clock_rate_from_divisor(struct bcm2835_clock *clock, + unsigned long parent_rate, + u32 div) { const struct bcm2835_clock_data *data = clock->data; u64 temp; @@ -1079,7 +1074,7 @@ struct bcm2835_clock *clock = bcm2835_clock_from_hw(hw); struct bcm2835_cprman *cprman = clock->cprman; const struct bcm2835_clock_data *data = clock->data; - u32 div = bcm2835_clock_choose_div(hw, rate, parent_rate, false); + u32 div = bcm2835_clock_choose_div(hw, rate, parent_rate); u32 ctl; spin_lock(&cprman->regs_lock); @@ -1130,7 +1125,7 @@ if (!(BIT(parent_idx) & data->set_rate_parent)) { *prate = clk_hw_get_rate(parent); - *div = bcm2835_clock_choose_div(hw, rate, *prate, true); + *div = bcm2835_clock_choose_div(hw, rate, *prate); *avgrate = bcm2835_clock_rate_from_divisor(clock, *prate, *div); @@ -1216,7 +1211,7 @@ rate = bcm2835_clock_choose_div_and_prate(hw, i, req->rate, &div, &prate, &avgrate); - if (rate > best_rate && rate <= req->rate) { + if (abs(req->rate - rate) < abs(req->rate - best_rate)) { best_parent = parent; best_prate = prate; best_rate = rate; @@ -1761,7 +1756,7 @@ .load_mask = CM_PLLC_LOADPER, .hold_mask = CM_PLLC_HOLDPER, .fixed_divider = 1, - .flags = CLK_SET_RATE_PARENT), + .flags = CLK_IS_CRITICAL | CLK_SET_RATE_PARENT), /* * PLLD is the display PLL, used to drive DSI display panels. diff -u linux-azure-5.4.0/drivers/clk/clk-ast2600.c linux-azure-5.4.0/drivers/clk/clk-ast2600.c --- linux-azure-5.4.0/drivers/clk/clk-ast2600.c +++ linux-azure-5.4.0/drivers/clk/clk-ast2600.c @@ -48,6 +48,8 @@ static struct clk_hw_onecell_data *aspeed_g6_clk_data; static void __iomem *scu_g6_base; +/* AST2600 revision: A0, A1, A2, etc */ +static u8 soc_rev; /* * Clocks marked with CLK_IS_CRITICAL: @@ -190,9 +192,8 @@ static struct clk_hw *ast2600_calc_apll(const char *name, u32 val) { unsigned int mult, div; - u32 chip_id = readl(scu_g6_base + ASPEED_G6_SILICON_REV); - if (((chip_id & CHIP_REVISION_ID) >> 16) >= 2) { + if (soc_rev >= 2) { if (val & BIT(24)) { /* Pass through mode */ mult = div = 1; @@ -578,7 +579,7 @@ regmap_write(map, 0x308, 0x12000); /* 3x3 = 9 */ /* P-Bus (BCLK) clock divider */ - hw = clk_hw_register_divider_table(dev, "bclk", "hpll", 0, + hw = clk_hw_register_divider_table(dev, "bclk", "epll", 0, scu_g6_base + ASPEED_G6_CLK_SELECTION1, 20, 3, 0, ast2600_div_table, &aspeed_g6_clk_lock); @@ -664,7 +665,7 @@ static void __init aspeed_g6_cc(struct regmap *map) { struct clk_hw *hw; - u32 val, div, divbits, chip_id, axi_div, ahb_div; + u32 val, div, divbits, axi_div, ahb_div; clk_hw_register_fixed_rate(NULL, "clkin", NULL, 0, 25000000); @@ -695,8 +696,7 @@ axi_div = 2; divbits = (val >> 11) & 0x3; - regmap_read(map, ASPEED_G6_SILICON_REV, &chip_id); - if (chip_id & BIT(16)) { + if (soc_rev >= 1) { if (!divbits) { ahb_div = ast2600_a1_axi_ahb200_tbl[(val >> 8) & 0x3]; if (val & BIT(16)) @@ -741,6 +741,8 @@ if (!scu_g6_base) return; + soc_rev = (readl(scu_g6_base + ASPEED_G6_SILICON_REV) & CHIP_REVISION_ID) >> 16; + aspeed_g6_clk_data = kzalloc(struct_size(aspeed_g6_clk_data, hws, ASPEED_G6_NUM_CLKS), GFP_KERNEL); if (!aspeed_g6_clk_data) diff -u linux-azure-5.4.0/drivers/clk/clk.c linux-azure-5.4.0/drivers/clk/clk.c --- linux-azure-5.4.0/drivers/clk/clk.c +++ linux-azure-5.4.0/drivers/clk/clk.c @@ -637,6 +637,24 @@ *max_rate = min(*max_rate, clk_user->max_rate); } +static bool clk_core_check_boundaries(struct clk_core *core, + unsigned long min_rate, + unsigned long max_rate) +{ + struct clk *user; + + lockdep_assert_held(&prepare_lock); + + if (min_rate > core->max_rate || max_rate < core->min_rate) + return false; + + hlist_for_each_entry(user, &core->clks, clks_node) + if (min_rate > user->max_rate || max_rate < user->min_rate) + return false; + + return true; +} + void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate, unsigned long max_rate) { @@ -834,10 +852,9 @@ if (core->ops->unprepare) core->ops->unprepare(core->hw); - clk_pm_runtime_put(core); - trace_clk_unprepare_complete(core); clk_core_unprepare(core->parent); + clk_pm_runtime_put(core); } static void clk_core_unprepare_lock(struct clk_core *core) @@ -2306,6 +2323,11 @@ clk->min_rate = min; clk->max_rate = max; + if (!clk_core_check_boundaries(clk->core, min, max)) { + ret = -EINVAL; + goto out; + } + rate = clk_core_get_rate_nolock(clk->core); if (rate < min || rate > max) { /* @@ -2334,6 +2356,7 @@ } } +out: if (clk->exclusive_count) clk_core_rate_protect(clk->core); @@ -3278,6 +3301,19 @@ __clk_set_parent_after(orphan, parent, NULL); __clk_recalc_accuracies(orphan); __clk_recalc_rates(orphan, 0); + + /* + * __clk_init_parent() will set the initial req_rate to + * 0 if the clock doesn't have clk_ops::recalc_rate and + * is an orphan when it's registered. + * + * 'req_rate' is used by clk_set_rate_range() and + * clk_put() to trigger a clk_set_rate() call whenever + * the boundaries are modified. Let's make sure + * 'req_rate' is set to something non-zero so that + * clk_set_rate_range() doesn't drop the frequency. + */ + orphan->req_rate = orphan->rate; } } } @@ -3299,6 +3335,14 @@ clk_prepare_lock(); + /* + * Set hw->core after grabbing the prepare_lock to synchronize with + * callers of clk_core_fill_parent_index() where we treat hw->core + * being NULL as the clk not being registered yet. This is crucial so + * that clks aren't parented until their parent is fully registered. + */ + core->hw->core = core; + ret = clk_pm_runtime_get(core); if (ret) goto unlock; @@ -3452,8 +3496,10 @@ out: clk_pm_runtime_put(core); unlock: - if (ret) + if (ret) { hlist_del_init(&core->child_node); + core->hw->core = NULL; + } clk_prepare_unlock(); @@ -3699,7 +3745,6 @@ core->num_parents = init->num_parents; core->min_rate = 0; core->max_rate = ULONG_MAX; - hw->core = core; ret = clk_core_populate_parent_map(core, init); if (ret) @@ -3717,7 +3762,7 @@ goto fail_create_clk; } - clk_core_link_consumer(hw->core, hw->clk); + clk_core_link_consumer(core, hw->clk); ret = __clk_core_init(core); if (!ret) diff -u linux-azure-5.4.0/drivers/clk/ingenic/cgu.c linux-azure-5.4.0/drivers/clk/ingenic/cgu.c --- linux-azure-5.4.0/drivers/clk/ingenic/cgu.c +++ linux-azure-5.4.0/drivers/clk/ingenic/cgu.c @@ -426,15 +426,15 @@ } /* Impose hardware constraints */ - div = min_t(unsigned, div, 1 << clk_info->div.bits); - div = max_t(unsigned, div, 1); + div = clamp_t(unsigned int, div, clk_info->div.div, + clk_info->div.div << clk_info->div.bits); /* * If the divider value itself must be divided before being written to * the divider register, we must ensure we don't have any bits set that * would be lost as a result of doing so. */ - div /= clk_info->div.div; + div = DIV_ROUND_UP(div, clk_info->div.div); div *= clk_info->div.div; return div; diff -u linux-azure-5.4.0/drivers/clk/ingenic/tcu.c linux-azure-5.4.0/drivers/clk/ingenic/tcu.c --- linux-azure-5.4.0/drivers/clk/ingenic/tcu.c +++ linux-azure-5.4.0/drivers/clk/ingenic/tcu.c @@ -100,15 +100,11 @@ bool enabled = false; /* - * If the SoC has no global TCU clock, we must ungate the channel's - * clock to be able to access its registers. - * If we have a TCU clock, it will be enabled automatically as it has - * been attached to the regmap. + * According to the programming manual, a timer channel's registers can + * only be accessed when the channel's stop bit is clear. */ - if (!tcu->clk) { - enabled = !!ingenic_tcu_is_enabled(hw); - regmap_write(tcu->map, TCU_REG_TSCR, BIT(info->gate_bit)); - } + enabled = !!ingenic_tcu_is_enabled(hw); + regmap_write(tcu->map, TCU_REG_TSCR, BIT(info->gate_bit)); return enabled; } @@ -119,8 +115,7 @@ const struct ingenic_tcu_clk_info *info = tcu_clk->info; struct ingenic_tcu *tcu = tcu_clk->tcu; - if (!tcu->clk) - regmap_write(tcu->map, TCU_REG_TSSR, BIT(info->gate_bit)); + regmap_write(tcu->map, TCU_REG_TSSR, BIT(info->gate_bit)); } static u8 ingenic_tcu_get_parent(struct clk_hw *hw) diff -u linux-azure-5.4.0/drivers/clk/meson/g12a.c linux-azure-5.4.0/drivers/clk/meson/g12a.c --- linux-azure-5.4.0/drivers/clk/meson/g12a.c +++ linux-azure-5.4.0/drivers/clk/meson/g12a.c @@ -1602,7 +1602,7 @@ }; static const struct pll_mult_range g12a_gp0_pll_mult_range = { - .min = 55, + .min = 125, .max = 255, }; diff -u linux-azure-5.4.0/drivers/clk/meson/meson8b.c linux-azure-5.4.0/drivers/clk/meson/meson8b.c --- linux-azure-5.4.0/drivers/clk/meson/meson8b.c +++ linux-azure-5.4.0/drivers/clk/meson/meson8b.c @@ -3684,13 +3684,16 @@ struct clk_hw_onecell_data *clk_hw_onecell_data) { struct meson8b_clk_reset *rstc; + struct device_node *parent_np; const char *notifier_clk_name; struct clk *notifier_clk; void __iomem *clk_base; struct regmap *map; int i, ret; - map = syscon_node_to_regmap(of_get_parent(np)); + parent_np = of_get_parent(np); + map = syscon_node_to_regmap(parent_np); + of_node_put(parent_np); if (IS_ERR(map)) { pr_info("failed to get HHI regmap - Trying obsolete regs\n"); diff -u linux-azure-5.4.0/drivers/clk/qcom/clk-rcg2.c linux-azure-5.4.0/drivers/clk/qcom/clk-rcg2.c --- linux-azure-5.4.0/drivers/clk/qcom/clk-rcg2.c +++ linux-azure-5.4.0/drivers/clk/qcom/clk-rcg2.c @@ -263,7 +263,7 @@ static int __clk_rcg2_configure(struct clk_rcg2 *rcg, const struct freq_tbl *f) { - u32 cfg, mask; + u32 cfg, mask, d_val, not2d_val, n_minus_m; struct clk_hw *hw = &rcg->clkr.hw; int ret, index = qcom_find_src_index(hw, rcg->parent_map, f->src); @@ -282,8 +282,17 @@ if (ret) return ret; + /* Calculate 2d value */ + d_val = f->n; + + n_minus_m = f->n - f->m; + n_minus_m *= 2; + + d_val = clamp_t(u32, d_val, f->m, n_minus_m); + not2d_val = ~d_val & mask; + ret = regmap_update_bits(rcg->clkr.regmap, - RCG_D_OFFSET(rcg), mask, ~f->n); + RCG_D_OFFSET(rcg), mask, not2d_val); if (ret) return ret; } @@ -638,6 +647,7 @@ { 2, 9 }, { 4, 9 }, { 1, 1 }, + { 2, 3 }, { } }; diff -u linux-azure-5.4.0/drivers/clk/qcom/common.c linux-azure-5.4.0/drivers/clk/qcom/common.c --- linux-azure-5.4.0/drivers/clk/qcom/common.c +++ linux-azure-5.4.0/drivers/clk/qcom/common.c @@ -69,6 +69,18 @@ } EXPORT_SYMBOL_GPL(qcom_find_src_index); +int qcom_find_cfg_index(struct clk_hw *hw, const struct parent_map *map, u8 cfg) +{ + int i, num_parents = clk_hw_get_num_parents(hw); + + for (i = 0; i < num_parents; i++) + if (cfg == map[i].cfg) + return i; + + return -ENOENT; +} +EXPORT_SYMBOL_GPL(qcom_find_cfg_index); + struct regmap * qcom_cc_map(struct platform_device *pdev, const struct qcom_cc_desc *desc) { diff -u linux-azure-5.4.0/drivers/clk/renesas/r9a06g032-clocks.c linux-azure-5.4.0/drivers/clk/renesas/r9a06g032-clocks.c --- linux-azure-5.4.0/drivers/clk/renesas/r9a06g032-clocks.c +++ linux-azure-5.4.0/drivers/clk/renesas/r9a06g032-clocks.c @@ -286,8 +286,8 @@ .name = "uart_group_012", .type = K_BITSEL, .source = 1 + R9A06G032_DIV_UART, - /* R9A06G032_SYSCTRL_REG_PWRCTRL_PG1_PR2 */ - .dual.sel = ((0xec / 4) << 5) | 24, + /* R9A06G032_SYSCTRL_REG_PWRCTRL_PG0_0 */ + .dual.sel = ((0x34 / 4) << 5) | 30, .dual.group = 0, }, { @@ -295,8 +295,8 @@ .name = "uart_group_34567", .type = K_BITSEL, .source = 1 + R9A06G032_DIV_P2_PG, - /* R9A06G032_SYSCTRL_REG_PWRCTRL_PG0_0 */ - .dual.sel = ((0x34 / 4) << 5) | 30, + /* R9A06G032_SYSCTRL_REG_PWRCTRL_PG1_PR2 */ + .dual.sel = ((0xec / 4) << 5) | 24, .dual.group = 1, }, D_UGATE(CLK_UART0, "clk_uart0", UART_GROUP_012, 0, 0, 0x1b2, 0x1b3, 0x1b4, 0x1b5), diff -u linux-azure-5.4.0/drivers/clk/tegra/clk-pll.c linux-azure-5.4.0/drivers/clk/tegra/clk-pll.c --- linux-azure-5.4.0/drivers/clk/tegra/clk-pll.c +++ linux-azure-5.4.0/drivers/clk/tegra/clk-pll.c @@ -1089,7 +1089,8 @@ if (pll->lock) spin_lock_irqsave(pll->lock, flags); - _clk_pll_enable(hw); + if (!clk_pll_is_enabled(hw)) + _clk_pll_enable(hw); ret = clk_pll_wait_for_lock(pll); if (ret < 0) @@ -1706,15 +1707,13 @@ return -EINVAL; } - if (clk_pll_is_enabled(hw)) - return 0; - input_rate = clk_hw_get_rate(__clk_get_hw(osc)); if (pll->lock) spin_lock_irqsave(pll->lock, flags); - _clk_pll_enable(hw); + if (!clk_pll_is_enabled(hw)) + _clk_pll_enable(hw); ret = clk_pll_wait_for_lock(pll); if (ret < 0) diff -u linux-azure-5.4.0/drivers/clk/ti/clk-7xx.c linux-azure-5.4.0/drivers/clk/ti/clk-7xx.c --- linux-azure-5.4.0/drivers/clk/ti/clk-7xx.c +++ linux-azure-5.4.0/drivers/clk/ti/clk-7xx.c @@ -793,6 +793,7 @@ DT_CLK(NULL, "timer_32k_ck", "sys_32k_ck"), DT_CLK(NULL, "sys_clkin_ck", "timer_sys_clk_div"), DT_CLK(NULL, "sys_clkin", "sys_clkin1"), + DT_CLK(NULL, "timer_sys_ck", "timer_sys_clk_div"), DT_CLK(NULL, "atl_dpll_clk_mux", "atl-clkctrl:0000:24"), DT_CLK(NULL, "atl_gfclk_mux", "atl-clkctrl:0000:26"), DT_CLK(NULL, "dcan1_sys_clk_mux", "wkupaon-clkctrl:0068:24"), diff -u linux-azure-5.4.0/drivers/clk/zynqmp/clkc.c linux-azure-5.4.0/drivers/clk/zynqmp/clkc.c --- linux-azure-5.4.0/drivers/clk/zynqmp/clkc.c +++ linux-azure-5.4.0/drivers/clk/zynqmp/clkc.c @@ -679,6 +679,13 @@ FIELD_PREP(CLK_ATTR_NODE_INDEX, i); zynqmp_pm_clock_get_name(clock[i].clk_id, &name); + + /* + * Terminate with NULL character in case name provided by firmware + * is longer and truncated due to size limit. + */ + name.name[sizeof(name.name) - 1] = '\0'; + if (!strcmp(name.name, RESERVED_CLK_NAME)) continue; strncpy(clock[i].clk_name, name.name, MAX_NAME_LEN); diff -u linux-azure-5.4.0/drivers/clk/zynqmp/pll.c linux-azure-5.4.0/drivers/clk/zynqmp/pll.c --- linux-azure-5.4.0/drivers/clk/zynqmp/pll.c +++ linux-azure-5.4.0/drivers/clk/zynqmp/pll.c @@ -98,26 +98,25 @@ unsigned long *prate) { u32 fbdiv; - long rate_div, f; + u32 mult, div; - /* Enable the fractional mode if needed */ - rate_div = (rate * FRAC_DIV) / *prate; - f = rate_div % FRAC_DIV; - if (f) { - if (rate > PS_PLL_VCO_MAX) { - fbdiv = rate / PS_PLL_VCO_MAX; - rate = rate / (fbdiv + 1); - } - if (rate < PS_PLL_VCO_MIN) { - fbdiv = DIV_ROUND_UP(PS_PLL_VCO_MIN, rate); - rate = rate * fbdiv; - } - return rate; + /* Let rate fall inside the range PS_PLL_VCO_MIN ~ PS_PLL_VCO_MAX */ + if (rate > PS_PLL_VCO_MAX) { + div = DIV_ROUND_UP(rate, PS_PLL_VCO_MAX); + rate = rate / div; + } + if (rate < PS_PLL_VCO_MIN) { + mult = DIV_ROUND_UP(PS_PLL_VCO_MIN, rate); + rate = rate * mult; } fbdiv = DIV_ROUND_CLOSEST(rate, *prate); - fbdiv = clamp_t(u32, fbdiv, PLL_FBDIV_MIN, PLL_FBDIV_MAX); - return *prate * fbdiv; + if (fbdiv < PLL_FBDIV_MIN || fbdiv > PLL_FBDIV_MAX) { + fbdiv = clamp_t(u32, fbdiv, PLL_FBDIV_MIN, PLL_FBDIV_MAX); + rate = *prate * fbdiv; + } + + return rate; } /** diff -u linux-azure-5.4.0/drivers/clocksource/Kconfig linux-azure-5.4.0/drivers/clocksource/Kconfig --- linux-azure-5.4.0/drivers/clocksource/Kconfig +++ linux-azure-5.4.0/drivers/clocksource/Kconfig @@ -24,6 +24,7 @@ config OMAP_DM_TIMER bool + select TIMER_OF config CLKBLD_I8253 def_bool y if CLKSRC_I8253 || CLKEVT_I8253 || I8253_LOCK diff -u linux-azure-5.4.0/drivers/clocksource/arm_arch_timer.c linux-azure-5.4.0/drivers/clocksource/arm_arch_timer.c --- linux-azure-5.4.0/drivers/clocksource/arm_arch_timer.c +++ linux-azure-5.4.0/drivers/clocksource/arm_arch_timer.c @@ -348,7 +348,7 @@ do { \ _val = read_sysreg(reg); \ _retries--; \ - } while (((_val + 1) & GENMASK(9, 0)) <= 1 && _retries); \ + } while (((_val + 1) & GENMASK(8, 0)) <= 1 && _retries); \ \ WARN_ON_ONCE(!_retries); \ _val; \ diff -u linux-azure-5.4.0/drivers/clocksource/hyperv_timer.c linux-azure-5.4.0/drivers/clocksource/hyperv_timer.c --- linux-azure-5.4.0/drivers/clocksource/hyperv_timer.c +++ linux-azure-5.4.0/drivers/clocksource/hyperv_timer.c @@ -18,6 +18,9 @@ #include #include #include +#include +#include +#include #include #include #include @@ -43,14 +46,13 @@ */ static bool direct_mode_enabled; -static int stimer0_irq; -static int stimer0_vector; +static int stimer0_irq = -1; static int stimer0_message_sint; +static DEFINE_PER_CPU(long, stimer0_evt); /* - * ISR for when stimer0 is operating in Direct Mode. Direct Mode - * does not use VMbus or any VMbus messages, so process here and not - * in the VMbus driver code. + * Common code for stimer0 interrupts coming via Direct Mode or + * as a VMbus message. */ void hv_stimer0_isr(void) { @@ -61,6 +63,16 @@ } EXPORT_SYMBOL_GPL(hv_stimer0_isr); +/* + * stimer0 interrupt handler for architectures that support + * per-cpu interrupts, which also implies Direct Mode. + */ +static irqreturn_t hv_stimer0_percpu_isr(int irq, void *dev_id) +{ + hv_stimer0_isr(); + return IRQ_HANDLED; +} + static int hv_ce_set_next_event(unsigned long delta, struct clock_event_device *evt) { @@ -68,16 +80,16 @@ current_tick = hyperv_cs->read(NULL); current_tick += delta; - hv_init_timer(0, current_tick); + hv_set_register(HV_REGISTER_STIMER0_COUNT, current_tick); return 0; } static int hv_ce_shutdown(struct clock_event_device *evt) { - hv_init_timer(0, 0); - hv_init_timer_config(0, 0); - if (direct_mode_enabled) - hv_disable_stimer0_percpu_irq(stimer0_irq); + hv_set_register(HV_REGISTER_STIMER0_COUNT, 0); + hv_set_register(HV_REGISTER_STIMER0_CONFIG, 0); + if (direct_mode_enabled && stimer0_irq >= 0) + disable_percpu_irq(stimer0_irq); return 0; } @@ -95,8 +107,9 @@ * on the specified hardware vector/IRQ. */ timer_cfg.direct_mode = 1; - timer_cfg.apic_vector = stimer0_vector; - hv_enable_stimer0_percpu_irq(stimer0_irq); + timer_cfg.apic_vector = HYPERV_STIMER0_VECTOR; + if (stimer0_irq >= 0) + enable_percpu_irq(stimer0_irq, IRQ_TYPE_NONE); } else { /* * When it expires, the timer will generate a VMbus message, @@ -105,7 +118,7 @@ timer_cfg.direct_mode = 0; timer_cfg.sintx = stimer0_message_sint; } - hv_init_timer_config(0, timer_cfg.as_uint64); + hv_set_register(HV_REGISTER_STIMER0_CONFIG, timer_cfg.as_uint64); return 0; } @@ -169,10 +182,58 @@ } EXPORT_SYMBOL_GPL(hv_stimer_cleanup); +/* + * These placeholders are overridden by arch specific code on + * architectures that need special setup of the stimer0 IRQ because + * they don't support per-cpu IRQs (such as x86/x64). + */ +void __weak hv_setup_stimer0_handler(void (*handler)(void)) +{ +}; + +void __weak hv_remove_stimer0_handler(void) +{ +}; + +/* Called only on architectures with per-cpu IRQs (i.e., not x86/x64) */ +static int hv_setup_stimer0_irq(void) +{ + int ret; + + ret = acpi_register_gsi(NULL, HYPERV_STIMER0_VECTOR, + ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_HIGH); + if (ret < 0) { + pr_err("Can't register Hyper-V stimer0 GSI. Error %d", ret); + return ret; + } + stimer0_irq = ret; + + ret = request_percpu_irq(stimer0_irq, hv_stimer0_percpu_isr, + "Hyper-V stimer0", &stimer0_evt); + if (ret) { + pr_err("Can't request Hyper-V stimer0 IRQ %d. Error %d", + stimer0_irq, ret); + acpi_unregister_gsi(stimer0_irq); + stimer0_irq = -1; + } + return ret; +} + +static void hv_remove_stimer0_irq(void) +{ + if (stimer0_irq == -1) { + hv_remove_stimer0_handler(); + } else { + free_percpu_irq(stimer0_irq, &stimer0_evt); + acpi_unregister_gsi(stimer0_irq); + stimer0_irq = -1; + } +} + /* hv_stimer_alloc - Global initialization of the clockevent and stimer0 */ -int hv_stimer_alloc(void) +int hv_stimer_alloc(bool have_percpu_irqs) { - int ret = 0; + int ret; /* * Synthetic timers are always available except on old versions of @@ -188,29 +249,37 @@ direct_mode_enabled = ms_hyperv.misc_features & HV_STIMER_DIRECT_MODE_AVAILABLE; - if (direct_mode_enabled) { - ret = hv_setup_stimer0_irq(&stimer0_irq, &stimer0_vector, - hv_stimer0_isr); + + /* + * If Direct Mode isn't enabled, the remainder of the initialization + * is done later by hv_stimer_legacy_init() + */ + if (!direct_mode_enabled) + return 0; + + if (have_percpu_irqs) { + ret = hv_setup_stimer0_irq(); if (ret) - goto free_percpu; + goto free_clock_event; + } else { + hv_setup_stimer0_handler(hv_stimer0_isr); + } - /* - * Since we are in Direct Mode, stimer initialization - * can be done now with a CPUHP value in the same range - * as other clockevent devices. - */ - ret = cpuhp_setup_state(CPUHP_AP_HYPERV_TIMER_STARTING, - "clockevents/hyperv/stimer:starting", - hv_stimer_init, hv_stimer_cleanup); - if (ret < 0) - goto free_stimer0_irq; + /* + * Since we are in Direct Mode, stimer initialization + * can be done now with a CPUHP value in the same range + * as other clockevent devices. + */ + ret = cpuhp_setup_state(CPUHP_AP_HYPERV_TIMER_STARTING, + "clockevents/hyperv/stimer:starting", + hv_stimer_init, hv_stimer_cleanup); + if (ret < 0) { + hv_remove_stimer0_irq(); + goto free_clock_event; } return ret; -free_stimer0_irq: - hv_remove_stimer0_irq(stimer0_irq); - stimer0_irq = 0; -free_percpu: +free_clock_event: free_percpu(hv_clock_event); hv_clock_event = NULL; return ret; @@ -255,21 +324,4 @@ EXPORT_SYMBOL_GPL(hv_stimer_legacy_cleanup); - -/* hv_stimer_free - Free global resources allocated by hv_stimer_alloc() */ -void hv_stimer_free(void) -{ - if (!hv_clock_event) - return; - - if (direct_mode_enabled) { - cpuhp_remove_state(CPUHP_AP_HYPERV_TIMER_STARTING); - hv_remove_stimer0_irq(stimer0_irq); - stimer0_irq = 0; - } - free_percpu(hv_clock_event); - hv_clock_event = NULL; -} -EXPORT_SYMBOL_GPL(hv_stimer_free); - /* * Do a global cleanup of clockevents for the cases of kexec and @@ -287,12 +339,17 @@ hv_stimer_legacy_cleanup(cpu); } - /* - * If Direct Mode is enabled, the cpuhp teardown callback - * (hv_stimer_cleanup) will be run on all CPUs to stop the - * stimers. - */ - hv_stimer_free(); + if (!hv_clock_event) + return; + + if (direct_mode_enabled) { + cpuhp_remove_state(CPUHP_AP_HYPERV_TIMER_STARTING); + hv_remove_stimer0_irq(); + stimer0_irq = -1; + } + free_percpu(hv_clock_event); + hv_clock_event = NULL; + } EXPORT_SYMBOL_GPL(hv_stimer_global_cleanup); @@ -302,33 +359,28 @@ * the other that uses the TSC reference page feature as defined in the * TLFS. The MSR version is for compatibility with old versions of * Hyper-V and 32-bit x86. The TSC reference page version is preferred. - * - * The Hyper-V clocksource ratings of 250 are chosen to be below the - * TSC clocksource rating of 300. In configurations where Hyper-V offers - * an InvariantTSC, the TSC is not marked "unstable", so the TSC clocksource - * is available and preferred. With the higher rating, it will be the - * default. On older hardware and Hyper-V versions, the TSC is marked - * "unstable", so no TSC clocksource is created and the selected Hyper-V - * clocksource will be the default. */ struct clocksource *hyperv_cs; EXPORT_SYMBOL_GPL(hyperv_cs); -static struct ms_hyperv_tsc_page tsc_pg __aligned(PAGE_SIZE); +static union { + struct ms_hyperv_tsc_page page; + u8 reserved[PAGE_SIZE]; +} tsc_pg __aligned(PAGE_SIZE); struct ms_hyperv_tsc_page *hv_get_tsc_page(void) { - return &tsc_pg; + return &tsc_pg.page; } EXPORT_SYMBOL_GPL(hv_get_tsc_page); static u64 notrace read_hv_clock_tsc(struct clocksource *arg) { - u64 current_tick = hv_read_tsc_page(&tsc_pg); + u64 current_tick = hv_read_tsc_page(hv_get_tsc_page()); if (current_tick == U64_MAX) - hv_get_time_ref_count(current_tick); + current_tick = hv_get_register(HV_REGISTER_TIME_REF_COUNT); return current_tick; } @@ -344,9 +396,9 @@ u64 tsc_msr; /* Disable the TSC page */ - hv_get_reference_tsc(tsc_msr); + tsc_msr = hv_get_register(HV_REGISTER_REFERENCE_TSC); tsc_msr &= ~BIT_ULL(0); - hv_set_reference_tsc(tsc_msr); + hv_set_register(HV_REGISTER_REFERENCE_TSC, tsc_msr); } @@ -356,15 +408,15 @@ u64 tsc_msr; /* Re-enable the TSC page */ - hv_get_reference_tsc(tsc_msr); + tsc_msr = hv_get_register(HV_REGISTER_REFERENCE_TSC); tsc_msr &= GENMASK_ULL(11, 0); tsc_msr |= BIT_ULL(0) | (u64)phys_addr; - hv_set_reference_tsc(tsc_msr); + hv_set_register(HV_REGISTER_REFERENCE_TSC, tsc_msr); } static struct clocksource hyperv_cs_tsc = { .name = "hyperv_clocksource_tsc_page", - .rating = 250, + .rating = 500, .read = read_hv_clock_tsc, .mask = CLOCKSOURCE_MASK(64), .flags = CLOCK_SOURCE_IS_CONTINUOUS, @@ -374,14 +426,12 @@ static u64 notrace read_hv_clock_msr(struct clocksource *arg) { - u64 current_tick; /* * Read the partition counter to get the current tick count. This count * is set to 0 when the partition is created and is incremented in * 100 nanosecond units. */ - hv_get_time_ref_count(current_tick); - return current_tick; + return hv_get_register(HV_REGISTER_TIME_REF_COUNT); } static u64 read_hv_sched_clock_msr(void) @@ -392,12 +442,36 @@ static struct clocksource hyperv_cs_msr = { .name = "hyperv_clocksource_msr", - .rating = 250, + .rating = 500, .read = read_hv_clock_msr, .mask = CLOCKSOURCE_MASK(64), .flags = CLOCK_SOURCE_IS_CONTINUOUS, }; +/* + * Reference to pv_ops must be inline so objtool + * detection of noinstr violations can work correctly. + */ +#ifdef CONFIG_GENERIC_SCHED_CLOCK +static __always_inline void hv_setup_sched_clock(void *sched_clock) +{ + /* + * We're on an architecture with generic sched clock (not x86/x64). + * The Hyper-V sched clock read function returns nanoseconds, not + * the normal 100ns units of the Hyper-V synthetic clock. + */ + sched_clock_register(sched_clock, 64, NSEC_PER_SEC); +} +#elif defined CONFIG_PARAVIRT +static __always_inline void hv_setup_sched_clock(void *sched_clock) +{ + /* We're on x86/x64 *and* using PV ops */ + pv_ops.time.sched_clock = sched_clock; +} +#else /* !CONFIG_GENERIC_SCHED_CLOCK && !CONFIG_PARAVIRT */ +static __always_inline void hv_setup_sched_clock(void *sched_clock) {} +#endif /* CONFIG_GENERIC_SCHED_CLOCK */ + static bool __init hv_init_tsc_clocksource(void) { u64 tsc_msr; @@ -407,7 +481,24 @@ return false; hyperv_cs = &hyperv_cs_tsc; - phys_addr = virt_to_phys(&tsc_pg); + phys_addr = virt_to_phys(hv_get_tsc_page()); + + /* + * If Hyper-V offers TSC_INVARIANT, then the virtualized TSC correctly + * handles frequency and offset changes due to live migration, + * pause/resume, and other VM management operations. So lower the + * Hyper-V Reference TSC rating, causing the generic TSC to be used. + * TSC_INVARIANT is not offered on ARM64, so the Hyper-V Reference + * TSC will be preferred over the virtualized ARM64 arch counter. + * While the Hyper-V MSR clocksource won't be used since the + * Reference TSC clocksource is present, change its rating as + * well for consistency. + */ + if (ms_hyperv.features & HV_ACCESS_TSC_INVARIANT) { + hyperv_cs_tsc.rating = 250; + hyperv_cs_msr.rating = 250; + } + /* * The Hyper-V TLFS specifies to preserve the value of reserved @@ -416,10 +507,10 @@ * (which already has at least the low 12 bits set to zero since * it is page aligned). Also set the "enable" bit, which is bit 0. */ - hv_get_reference_tsc(tsc_msr); + tsc_msr = hv_get_register(HV_REGISTER_REFERENCE_TSC); tsc_msr &= GENMASK_ULL(11, 0); tsc_msr = tsc_msr | 0x1 | (u64)phys_addr; - hv_set_reference_tsc(tsc_msr); + hv_set_register(HV_REGISTER_REFERENCE_TSC, tsc_msr); hv_set_clocksource_vdso(hyperv_cs_tsc); clocksource_register_hz(&hyperv_cs_tsc, NSEC_PER_SEC/100); @@ -455 +545,0 @@ -EXPORT_SYMBOL_GPL(hv_init_clocksource); diff -u linux-azure-5.4.0/drivers/clocksource/timer-of.c linux-azure-5.4.0/drivers/clocksource/timer-of.c --- linux-azure-5.4.0/drivers/clocksource/timer-of.c +++ linux-azure-5.4.0/drivers/clocksource/timer-of.c @@ -157,9 +157,9 @@ of_base->base = of_base->name ? of_io_request_and_map(np, of_base->index, of_base->name) : of_iomap(np, of_base->index); - if (IS_ERR(of_base->base)) { - pr_err("Failed to iomap (%s)\n", of_base->name); - return PTR_ERR(of_base->base); + if (IS_ERR_OR_NULL(of_base->base)) { + pr_err("Failed to iomap (%s:%s)\n", np->name, of_base->name); + return of_base->base ? PTR_ERR(of_base->base) : -ENOMEM; } return 0; diff -u linux-azure-5.4.0/drivers/clocksource/timer-riscv.c linux-azure-5.4.0/drivers/clocksource/timer-riscv.c --- linux-azure-5.4.0/drivers/clocksource/timer-riscv.c +++ linux-azure-5.4.0/drivers/clocksource/timer-riscv.c @@ -26,7 +26,7 @@ static DEFINE_PER_CPU(struct clock_event_device, riscv_clock_event) = { .name = "riscv_timer_clockevent", - .features = CLOCK_EVT_FEAT_ONESHOT, + .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP, .rating = 100, .set_next_event = riscv_clock_next_event, }; diff -u linux-azure-5.4.0/drivers/counter/104-quad-8.c linux-azure-5.4.0/drivers/counter/104-quad-8.c --- linux-azure-5.4.0/drivers/counter/104-quad-8.c +++ linux-azure-5.4.0/drivers/counter/104-quad-8.c @@ -1230,12 +1230,13 @@ case 1: case 3: quad8_preset_register_set(priv, count->id, ceiling); - break; + mutex_unlock(&priv->lock); + return len; } mutex_unlock(&priv->lock); - return len; + return -EINVAL; } static ssize_t quad8_count_preset_enable_read(struct counter_device *counter, diff -u linux-azure-5.4.0/drivers/cpufreq/acpi-cpufreq.c linux-azure-5.4.0/drivers/cpufreq/acpi-cpufreq.c --- linux-azure-5.4.0/drivers/cpufreq/acpi-cpufreq.c +++ linux-azure-5.4.0/drivers/cpufreq/acpi-cpufreq.c @@ -30,6 +30,7 @@ #include #include #include +#include MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski"); MODULE_DESCRIPTION("ACPI Processor P-States Driver"); diff -u linux-azure-5.4.0/drivers/cpufreq/armada-37xx-cpufreq.c linux-azure-5.4.0/drivers/cpufreq/armada-37xx-cpufreq.c --- linux-azure-5.4.0/drivers/cpufreq/armada-37xx-cpufreq.c +++ linux-azure-5.4.0/drivers/cpufreq/armada-37xx-cpufreq.c @@ -102,7 +102,11 @@ }; static struct armada_37xx_dvfs armada_37xx_dvfs[] = { - {.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} }, + /* + * The cpufreq scaling for 1.2 GHz variant of the SOC is currently + * unstable because we do not know how to configure it properly. + */ + /* {.cpu_freq_max = 1200*1000*1000, .divider = {1, 2, 4, 6} }, */ {.cpu_freq_max = 1000*1000*1000, .divider = {1, 2, 4, 5} }, {.cpu_freq_max = 800*1000*1000, .divider = {1, 2, 3, 4} }, {.cpu_freq_max = 600*1000*1000, .divider = {2, 4, 5, 6} }, diff -u linux-azure-5.4.0/drivers/cpufreq/cpufreq.c linux-azure-5.4.0/drivers/cpufreq/cpufreq.c --- linux-azure-5.4.0/drivers/cpufreq/cpufreq.c +++ linux-azure-5.4.0/drivers/cpufreq/cpufreq.c @@ -995,10 +995,9 @@ .release = cpufreq_sysfs_release, }; -static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu) +static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu, + struct device *dev) { - struct device *dev = get_cpu_device(cpu); - if (unlikely(!dev)) return; @@ -1361,9 +1360,14 @@ goto out_free_policy; } + /* + * The initialization has succeeded and the policy is online. + * If there is a problem with its frequency table, take it + * offline and drop it. + */ ret = cpufreq_table_validate_and_sort(policy); if (ret) - goto out_exit_policy; + goto out_offline_policy; /* related_cpus should at least include policy->cpus. */ cpumask_copy(policy->related_cpus, policy->cpus); @@ -1379,7 +1383,7 @@ if (new_policy) { for_each_cpu(j, policy->related_cpus) { per_cpu(cpufreq_cpu_data, j) = policy; - add_cpu_dev_symlink(policy, j); + add_cpu_dev_symlink(policy, j, get_cpu_device(j)); } policy->min_freq_req = kzalloc(2 * sizeof(*policy->min_freq_req), @@ -1389,7 +1393,7 @@ ret = freq_qos_add_request(&policy->constraints, policy->min_freq_req, FREQ_QOS_MIN, - policy->min); + FREQ_QOS_MIN_DEFAULT_VALUE); if (ret < 0) { /* * So we don't call freq_qos_remove_request() for an @@ -1409,7 +1413,7 @@ ret = freq_qos_add_request(&policy->constraints, policy->max_freq_req, FREQ_QOS_MAX, - policy->max); + FREQ_QOS_MAX_DEFAULT_VALUE); if (ret < 0) { policy->max_freq_req = NULL; goto out_destroy_policy; @@ -1507,6 +1511,10 @@ up_write(&policy->rwsem); +out_offline_policy: + if (cpufreq_driver->offline) + cpufreq_driver->offline(policy); + out_exit_policy: if (cpufreq_driver->exit) cpufreq_driver->exit(policy); @@ -1538,7 +1546,7 @@ /* Create sysfs link on CPU registration */ policy = per_cpu(cpufreq_cpu_data, cpu); if (policy) - add_cpu_dev_symlink(policy, cpu); + add_cpu_dev_symlink(policy, cpu, dev); return 0; } diff -u linux-azure-5.4.0/drivers/cpufreq/intel_pstate.c linux-azure-5.4.0/drivers/cpufreq/intel_pstate.c --- linux-azure-5.4.0/drivers/cpufreq/intel_pstate.c +++ linux-azure-5.4.0/drivers/cpufreq/intel_pstate.c @@ -1942,6 +1942,7 @@ ICPU(INTEL_FAM6_ATOM_GOLDMONT, core_funcs), ICPU(INTEL_FAM6_ATOM_GOLDMONT_PLUS, core_funcs), ICPU(INTEL_FAM6_SKYLAKE_X, core_funcs), + ICPU(INTEL_FAM6_ICELAKE_X, core_funcs), {} }; MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); diff -u linux-azure-5.4.0/drivers/cpufreq/powernv-cpufreq.c linux-azure-5.4.0/drivers/cpufreq/powernv-cpufreq.c --- linux-azure-5.4.0/drivers/cpufreq/powernv-cpufreq.c +++ linux-azure-5.4.0/drivers/cpufreq/powernv-cpufreq.c @@ -36,6 +36,7 @@ #define MAX_PSTATE_SHIFT 32 #define LPSTATE_SHIFT 48 #define GPSTATE_SHIFT 56 +#define MAX_NR_CHIPS 32 #define MAX_RAMP_DOWN_TIME 5120 /* @@ -1051,10 +1052,18 @@ unsigned int cpu, i; unsigned int prev_chip_id = UINT_MAX; + cpumask_t *chip_cpu_mask; int ret = 0; chip = kcalloc(num_possible_cpus(), sizeof(*chip), GFP_KERNEL); if (!chip) return -ENOMEM; + /* Allocate a chip cpu mask large enough to fit mask for all chips */ + chip_cpu_mask = kcalloc(MAX_NR_CHIPS, sizeof(cpumask_t), GFP_KERNEL); + if (!chip_cpu_mask) { + ret = -ENOMEM; + goto free_and_return; + } + for_each_possible_cpu(cpu) { unsigned int id = cpu_to_chip_id(cpu); @@ -1063,22 +1072,25 @@ prev_chip_id = id; chip[nr_chips++] = id; } + cpumask_set_cpu(cpu, &chip_cpu_mask[nr_chips-1]); } chips = kcalloc(nr_chips, sizeof(struct chip), GFP_KERNEL); if (!chips) { ret = -ENOMEM; - goto free_and_return; + goto out_free_chip_cpu_mask; } for (i = 0; i < nr_chips; i++) { chips[i].id = chip[i]; - cpumask_copy(&chips[i].mask, cpumask_of_node(chip[i])); + cpumask_copy(&chips[i].mask, &chip_cpu_mask[i]); INIT_WORK(&chips[i].throttle, powernv_cpufreq_work_fn); for_each_cpu(cpu, &chips[i].mask) per_cpu(chip_info, cpu) = &chips[i]; } +out_free_chip_cpu_mask: + kfree(chip_cpu_mask); free_and_return: kfree(chip); return ret; diff -u linux-azure-5.4.0/drivers/cpufreq/sun50i-cpufreq-nvmem.c linux-azure-5.4.0/drivers/cpufreq/sun50i-cpufreq-nvmem.c --- linux-azure-5.4.0/drivers/cpufreq/sun50i-cpufreq-nvmem.c +++ linux-azure-5.4.0/drivers/cpufreq/sun50i-cpufreq-nvmem.c @@ -98,8 +98,10 @@ return -ENOMEM; ret = sun50i_cpufreq_get_efuse(&speed); - if (ret) + if (ret) { + kfree(opp_tables); return ret; + } snprintf(name, MAX_NAME_LEN, "speed%d", speed); diff -u linux-azure-5.4.0/drivers/cpuidle/sysfs.c linux-azure-5.4.0/drivers/cpuidle/sysfs.c --- linux-azure-5.4.0/drivers/cpuidle/sysfs.c +++ linux-azure-5.4.0/drivers/cpuidle/sysfs.c @@ -481,6 +481,7 @@ &kdev->kobj, "state%d", i); if (ret) { kobject_put(&kobj->kobj); + kfree(kobj); goto error_state; } cpuidle_add_s2idle_attr_group(kobj); @@ -612,6 +613,7 @@ &kdev->kobj, "driver"); if (ret) { kobject_put(&kdrv->kobj); + kfree(kdrv); return ret; } @@ -698,7 +700,6 @@ if (!kdev) return -ENOMEM; kdev->dev = dev; - dev->kobj_dev = kdev; init_completion(&kdev->kobj_unregister); @@ -706,9 +707,11 @@ "cpuidle"); if (error) { kobject_put(&kdev->kobj); + kfree(kdev); return error; } + dev->kobj_dev = kdev; kobject_uevent(&kdev->kobj, KOBJ_ADD); return 0; diff -u linux-azure-5.4.0/drivers/crypto/caam/caamalg_qi2.c linux-azure-5.4.0/drivers/crypto/caam/caamalg_qi2.c --- linux-azure-5.4.0/drivers/crypto/caam/caamalg_qi2.c +++ linux-azure-5.4.0/drivers/crypto/caam/caamalg_qi2.c @@ -5421,7 +5421,7 @@ dpaa2_fd_set_len(&fd, dpaa2_fl_get_len(&req->fd_flt[1])); dpaa2_fd_set_flc(&fd, req->flc_dma); - ppriv = this_cpu_ptr(priv->ppriv); + ppriv = raw_cpu_ptr(priv->ppriv); for (i = 0; i < (priv->dpseci_attr.num_tx_queues << 1); i++) { err = dpaa2_io_service_enqueue_fq(ppriv->dpio, ppriv->req_fqid, &fd); diff -u linux-azure-5.4.0/drivers/crypto/ccp/ccp-dmaengine.c linux-azure-5.4.0/drivers/crypto/ccp/ccp-dmaengine.c --- linux-azure-5.4.0/drivers/crypto/ccp/ccp-dmaengine.c +++ linux-azure-5.4.0/drivers/crypto/ccp/ccp-dmaengine.c @@ -633,6 +633,24 @@ return 0; } +static void ccp_dma_release(struct ccp_device *ccp) +{ + struct ccp_dma_chan *chan; + struct dma_chan *dma_chan; + unsigned int i; + + for (i = 0; i < ccp->cmd_q_count; i++) { + chan = ccp->ccp_dma_chan + i; + dma_chan = &chan->dma_chan; + + if (dma_chan->client_count) + dma_release_channel(dma_chan); + + tasklet_kill(&chan->cleanup_tasklet); + list_del_rcu(&dma_chan->device_node); + } +} + int ccp_dmaengine_register(struct ccp_device *ccp) { struct ccp_dma_chan *chan; @@ -737,6 +755,7 @@ return 0; err_reg: + ccp_dma_release(ccp); kmem_cache_destroy(ccp->dma_desc_cache); err_cache: @@ -752,6 +771,7 @@ if (!dmaengine) return; + ccp_dma_release(ccp); dma_async_device_unregister(dma_dev); kmem_cache_destroy(ccp->dma_desc_cache); diff -u linux-azure-5.4.0/drivers/crypto/ccp/ccp-ops.c linux-azure-5.4.0/drivers/crypto/ccp/ccp-ops.c --- linux-azure-5.4.0/drivers/crypto/ccp/ccp-ops.c +++ linux-azure-5.4.0/drivers/crypto/ccp/ccp-ops.c @@ -778,7 +778,7 @@ in_place ? DMA_BIDIRECTIONAL : DMA_TO_DEVICE); if (ret) - goto e_ctx; + goto e_aad; if (in_place) { dst = src; @@ -863,7 +863,7 @@ op.u.aes.size = 0; ret = cmd_q->ccp->vdata->perform->aes(&op); if (ret) - goto e_dst; + goto e_final_wa; if (aes->action == CCP_AES_ACTION_ENCRYPT) { /* Put the ciphered tag after the ciphertext. */ @@ -873,17 +873,19 @@ ret = ccp_init_dm_workarea(&tag, cmd_q, authsize, DMA_BIDIRECTIONAL); if (ret) - goto e_tag; + goto e_final_wa; ret = ccp_set_dm_area(&tag, 0, p_tag, 0, authsize); - if (ret) - goto e_tag; + if (ret) { + ccp_dm_free(&tag); + goto e_final_wa; + } ret = crypto_memneq(tag.address, final_wa.address, authsize) ? -EBADMSG : 0; ccp_dm_free(&tag); } -e_tag: +e_final_wa: ccp_dm_free(&final_wa); e_dst: diff -u linux-azure-5.4.0/drivers/crypto/ccree/cc_buffer_mgr.c linux-azure-5.4.0/drivers/crypto/ccree/cc_buffer_mgr.c --- linux-azure-5.4.0/drivers/crypto/ccree/cc_buffer_mgr.c +++ linux-azure-5.4.0/drivers/crypto/ccree/cc_buffer_mgr.c @@ -295,6 +295,13 @@ { int ret = 0; + if (!nbytes) { + *mapped_nents = 0; + *lbytes = 0; + *nents = 0; + return 0; + } + *nents = cc_get_sgl_nents(dev, sg, nbytes, lbytes); if (*nents > max_sg_nents) { *nents = 0; diff -u linux-azure-5.4.0/drivers/crypto/chelsio/chtls/chtls_cm.c linux-azure-5.4.0/drivers/crypto/chelsio/chtls/chtls_cm.c --- linux-azure-5.4.0/drivers/crypto/chelsio/chtls/chtls_cm.c +++ linux-azure-5.4.0/drivers/crypto/chelsio/chtls/chtls_cm.c @@ -1103,8 +1103,8 @@ csk->sndbuf = newsk->sk_sndbuf; csk->smac_idx = ((struct port_info *)netdev_priv(ndev))->smt_idx; RCV_WSCALE(tp) = select_rcv_wscale(tcp_full_space(newsk), - sock_net(newsk)-> - ipv4.sysctl_tcp_window_scaling, + READ_ONCE(sock_net(newsk)-> + ipv4.sysctl_tcp_window_scaling), tp->window_clamp); neigh_release(n); inet_inherit_port(&tcp_hashinfo, lsk, newsk); @@ -1235,7 +1235,7 @@ chtls_set_req_addr(oreq, iph->daddr, iph->saddr); ip_dsfield = ipv4_get_dsfield(iph); if (req->tcpopt.wsf <= 14 && - sock_net(sk)->ipv4.sysctl_tcp_window_scaling) { + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_window_scaling)) { inet_rsk(oreq)->wscale_ok = 1; inet_rsk(oreq)->snd_wscale = req->tcpopt.wsf; } diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/hpre/hpre_main.c linux-azure-5.4.0/drivers/crypto/hisilicon/hpre/hpre_main.c --- linux-azure-5.4.0/drivers/crypto/hisilicon/hpre/hpre_main.c +++ linux-azure-5.4.0/drivers/crypto/hisilicon/hpre/hpre_main.c @@ -349,18 +349,14 @@ hisi_qm_debug_regs_clear(qm); } -static void hpre_hw_error_disable(struct hpre *hpre) +static void hpre_hw_error_disable(struct hisi_qm *qm) { - struct hisi_qm *qm = &hpre->qm; - /* disable hpre hw error interrupts */ writel(HPRE_CORE_INT_DISABLE, qm->io_base + HPRE_INT_MASK); } -static void hpre_hw_error_enable(struct hpre *hpre) +static void hpre_hw_error_enable(struct hisi_qm *qm) { - struct hisi_qm *qm = &hpre->qm; - /* enable hpre hw error interrupts */ writel(HPRE_CORE_INT_ENABLE, qm->io_base + HPRE_INT_MASK); writel(HPRE_HAC_RAS_CE_ENABLE, qm->io_base + HPRE_RAS_CE_ENB); @@ -713,12 +709,16 @@ return 0; } -static void hpre_hw_err_init(struct hpre *hpre) -{ - hisi_qm_hw_error_init(&hpre->qm, QM_BASE_CE, QM_BASE_NFE, - 0, QM_DB_RANDOM_INVALID); - hpre_hw_error_enable(hpre); -} +static const struct hisi_qm_err_ini hpre_err_ini = { + .hw_err_enable = hpre_hw_error_enable, + .hw_err_disable = hpre_hw_error_disable, + .err_info = { + .ce = QM_BASE_CE, + .nfe = QM_BASE_NFE | QM_ACC_DO_TASK_TIMEOUT, + .fe = 0, + .msi = QM_DB_RANDOM_INVALID, + } +}; static int hpre_pf_probe_init(struct hpre *hpre) { @@ -731,7 +731,8 @@ if (ret) return ret; - hpre_hw_err_init(hpre); + qm->err_ini = &hpre_err_ini; + hisi_qm_dev_err_init(qm); return 0; } @@ -790,8 +791,7 @@ hisi_qm_stop(qm); err_with_err_init: - if (pdev->is_physfn) - hpre_hw_error_disable(hpre); + hisi_qm_dev_err_uninit(qm); err_with_qm_init: hisi_qm_uninit(qm); @@ -922,8 +922,7 @@ hpre_debugfs_exit(hpre); hisi_qm_stop(qm); - if (qm->fun_type == QM_HW_PF) - hpre_hw_error_disable(hpre); + hisi_qm_dev_err_uninit(qm); hisi_qm_uninit(qm); } diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/qm.c linux-azure-5.4.0/drivers/crypto/hisilicon/qm.c --- linux-azure-5.4.0/drivers/crypto/hisilicon/qm.c +++ linux-azure-5.4.0/drivers/crypto/hisilicon/qm.c @@ -277,6 +277,7 @@ int (*debug_init)(struct hisi_qm *qm); void (*hw_error_init)(struct hisi_qm *qm, u32 ce, u32 nfe, u32 fe, u32 msi); + void (*hw_error_uninit)(struct hisi_qm *qm); pci_ers_result_t (*hw_error_handle)(struct hisi_qm *qm); }; @@ -485,17 +486,9 @@ } } -static void qm_qp_work_func(struct work_struct *work) +static void qm_work_process(struct work_struct *work) { - struct hisi_qp *qp; - - qp = container_of(work, struct hisi_qp, work); - qm_poll_qp(qp, qp->qm); -} - -static irqreturn_t qm_irq_handler(int irq, void *data) -{ - struct hisi_qm *qm = data; + struct hisi_qm *qm = container_of(work, struct hisi_qm, work); struct qm_eqe *eqe = qm->eqe + qm->status.eq_head; struct hisi_qp *qp; int eqe_num = 0; @@ -504,7 +497,7 @@ eqe_num++; qp = qm_to_hisi_qp(qm, eqe); if (qp) - queue_work(qp->wq, &qp->work); + qm_poll_qp(qp, qm); if (qm->status.eq_head == QM_Q_DEPTH - 1) { qm->status.eqc_phase = !qm->status.eqc_phase; @@ -522,6 +515,17 @@ } qm_db(qm, 0, QM_DOORBELL_CMD_EQ, qm->status.eq_head, 0); +} + +static irqreturn_t do_qm_irq(int irq, void *data) +{ + struct hisi_qm *qm = (struct hisi_qm *)data; + + /* the workqueue created by device driver of QM */ + if (qm->wq) + queue_work(qm->wq, &qm->work); + else + schedule_work(&qm->work); return IRQ_HANDLED; } @@ -531,7 +535,7 @@ struct hisi_qm *qm = data; if (readl(qm->io_base + QM_VF_EQ_INT_SOURCE)) - return qm_irq_handler(irq, data); + return do_qm_irq(irq, data); dev_err(&qm->pdev->dev, "invalid int source\n"); qm_db(qm, 0, QM_DOORBELL_CMD_EQ, qm->status.eq_head, 0); @@ -1011,6 +1015,11 @@ writel(irq_unmask, qm->io_base + QM_ABNORMAL_INT_MASK); } +static void qm_hw_error_uninit_v2(struct hisi_qm *qm) +{ + writel(QM_ABNORMAL_INT_MASK_VALUE, qm->io_base + QM_ABNORMAL_INT_MASK); +} + static void qm_log_hw_error(struct hisi_qm *qm, u32 error_status) { const struct hisi_qm_hw_error *err = qm_hw_error; @@ -1082,6 +1091,7 @@ .qm_db = qm_db_v2, .get_irq_num = qm_get_irq_num_v2, .hw_error_init = qm_hw_error_init_v2, + .hw_error_uninit = qm_hw_error_uninit_v2, .hw_error_handle = qm_hw_error_handle_v2, }; @@ -1147,20 +1157,9 @@ qp->qp_id = qp_id; qp->alg_type = alg_type; - INIT_WORK(&qp->work, qm_qp_work_func); - qp->wq = alloc_workqueue("hisi_qm", WQ_UNBOUND | WQ_HIGHPRI | - WQ_CPU_INTENSIVE | WQ_MEM_RECLAIM, 0); - if (!qp->wq) { - ret = -EFAULT; - goto err_free_qp_mem; - } return qp; -err_free_qp_mem: - if (qm->use_dma_api) - dma_free_coherent(dev, qp->qdma.size, qp->qdma.va, - qp->qdma.dma); err_clear_bit: write_lock(&qm->qps_lock); qm->qp_array[qp_id] = NULL; @@ -1479,6 +1478,7 @@ qm->qp_in_used = 0; mutex_init(&qm->mailbox_lock); rwlock_init(&qm->qps_lock); + INIT_WORK(&qm->work, qm_work_process); dev_dbg(dev, "init qm %s with %s\n", pdev->is_physfn ? "pf" : "vf", qm->use_dma_api ? "dma api" : "iommu api"); @@ -1856,35 +1856,28 @@ } EXPORT_SYMBOL_GPL(hisi_qm_debug_regs_clear); -/** - * hisi_qm_hw_error_init() - Configure qm hardware error report method. - * @qm: The qm which we want to configure. - * @ce: Bit mask of correctable error configure. - * @nfe: Bit mask of non-fatal error configure. - * @fe: Bit mask of fatal error configure. - * @msi: Bit mask of error reported by message signal interrupt. - * - * Hardware errors of qm can be reported either by RAS interrupts which will - * be handled by UEFI and then PCIe AER or by device MSI. User can configure - * each error to use either of above two methods. For RAS interrupts, we can - * configure an error as one of correctable error, non-fatal error or - * fatal error. - * - * Bits indicating errors can be configured to ce, nfe, fe and msi to enable - * related report methods. Error report will be masked if related error bit - * does not configure. - */ -void hisi_qm_hw_error_init(struct hisi_qm *qm, u32 ce, u32 nfe, u32 fe, - u32 msi) +static void qm_hw_error_init(struct hisi_qm *qm) { + const struct hisi_qm_err_info *err_info = &qm->err_ini->err_info; + if (!qm->ops->hw_error_init) { dev_err(&qm->pdev->dev, "QM doesn't support hw error handling!\n"); return; } - qm->ops->hw_error_init(qm, ce, nfe, fe, msi); + qm->ops->hw_error_init(qm, err_info->ce, err_info->nfe, + err_info->fe, err_info->msi); +} + +static void qm_hw_error_uninit(struct hisi_qm *qm) +{ + if (!qm->ops->hw_error_uninit) { + dev_err(&qm->pdev->dev, "Unexpected QM hw error uninit!\n"); + return; + } + + qm->ops->hw_error_uninit(qm); } -EXPORT_SYMBOL_GPL(hisi_qm_hw_error_init); /** * hisi_qm_hw_error_handle() - Handle qm non-fatal hardware errors. @@ -1922,6 +1915,48 @@ } EXPORT_SYMBOL_GPL(hisi_qm_get_hw_version); +/** + * hisi_qm_dev_err_init() - Initialize device error configuration. + * @qm: The qm for which we want to do error initialization. + * + * Initialize QM and device error related configuration. + */ +void hisi_qm_dev_err_init(struct hisi_qm *qm) +{ + if (qm->fun_type == QM_HW_VF) + return; + + qm_hw_error_init(qm); + + if (!qm->err_ini->hw_err_enable) { + dev_err(&qm->pdev->dev, "Device doesn't support hw error init!\n"); + return; + } + qm->err_ini->hw_err_enable(qm); +} +EXPORT_SYMBOL_GPL(hisi_qm_dev_err_init); + +/** + * hisi_qm_dev_err_uninit() - Uninitialize device error configuration. + * @qm: The qm for which we want to do error uninitialization. + * + * Uninitialize QM and device error related configuration. + */ +void hisi_qm_dev_err_uninit(struct hisi_qm *qm) +{ + if (qm->fun_type == QM_HW_VF) + return; + + qm_hw_error_uninit(qm); + + if (!qm->err_ini->hw_err_disable) { + dev_err(&qm->pdev->dev, "Unexpected device hw error uninit!\n"); + return; + } + qm->err_ini->hw_err_disable(qm); +} +EXPORT_SYMBOL_GPL(hisi_qm_dev_err_uninit); + MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Zhou Wang "); MODULE_DESCRIPTION("HiSilicon Accelerator queue manager driver"); diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/qm.h linux-azure-5.4.0/drivers/crypto/hisilicon/qm.h --- linux-azure-5.4.0/drivers/crypto/hisilicon/qm.h +++ linux-azure-5.4.0/drivers/crypto/hisilicon/qm.h @@ -40,6 +40,7 @@ #define QM_AXI_M_CFG 0x1000ac #define AXI_M_CFG 0xffff #define QM_AXI_M_CFG_ENABLE 0x1000b0 +#define AM_CFG_SINGLE_PORT_MAX_TRANS 0x300014 #define AXI_M_CFG_ENABLE 0xffffffff #define QM_PEH_AXUSER_CFG 0x1000cc #define QM_PEH_AXUSER_CFG_ENABLE 0x1000d0 @@ -125,6 +126,21 @@ unsigned long flags; }; +struct hisi_qm; + +struct hisi_qm_err_info { + u32 ce; + u32 nfe; + u32 fe; + u32 msi; +}; + +struct hisi_qm_err_ini { + void (*hw_err_enable)(struct hisi_qm *qm); + void (*hw_err_disable)(struct hisi_qm *qm); + struct hisi_qm_err_info err_info; +}; + struct hisi_qm { enum qm_hw_ver ver; enum qm_fun_type fun_type; @@ -148,6 +164,7 @@ dma_addr_t aeqe_dma; struct hisi_qm_status status; + const struct hisi_qm_err_ini *err_ini; rwlock_t qps_lock; unsigned long *qp_bitmap; @@ -162,6 +179,8 @@ u32 error_mask; u32 msi_mask; + struct workqueue_struct *wq; + struct work_struct work; bool use_dma_api; }; @@ -192,8 +211,6 @@ struct hisi_qp_ops *hw_ops; void *qp_ctx; void (*req_cb)(struct hisi_qp *qp, void *data); - struct work_struct work; - struct workqueue_struct *wq; struct hisi_qm *qm; }; @@ -211,11 +228,11 @@ int hisi_qm_get_vft(struct hisi_qm *qm, u32 *base, u32 *number); int hisi_qm_set_vft(struct hisi_qm *qm, u32 fun_num, u32 base, u32 number); int hisi_qm_debug_init(struct hisi_qm *qm); -void hisi_qm_hw_error_init(struct hisi_qm *qm, u32 ce, u32 nfe, u32 fe, - u32 msi); pci_ers_result_t hisi_qm_hw_error_handle(struct hisi_qm *qm); enum qm_hw_ver hisi_qm_get_hw_version(struct pci_dev *pdev); void hisi_qm_debug_regs_clear(struct hisi_qm *qm); +void hisi_qm_dev_err_init(struct hisi_qm *qm); +void hisi_qm_dev_err_uninit(struct hisi_qm *qm); struct hisi_acc_sgl_pool; struct hisi_acc_hw_sgl *hisi_acc_sg_buf_map_to_hw_sgl(struct device *dev, diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/sec/sec_algs.c linux-azure-5.4.0/drivers/crypto/hisilicon/sec/sec_algs.c --- linux-azure-5.4.0/drivers/crypto/hisilicon/sec/sec_algs.c +++ linux-azure-5.4.0/drivers/crypto/hisilicon/sec/sec_algs.c @@ -449,7 +449,7 @@ */ } - mutex_lock(&ctx->queue->queuelock); + spin_lock_bh(&ctx->queue->queuelock); /* Put the IV in place for chained cases */ switch (ctx->cipher_alg) { case SEC_C_AES_CBC_128: @@ -509,7 +509,7 @@ list_del(&backlog_req->backlog_head); } } - mutex_unlock(&ctx->queue->queuelock); + spin_unlock_bh(&ctx->queue->queuelock); mutex_lock(&sec_req->lock); list_del(&sec_req_el->head); @@ -798,7 +798,7 @@ */ /* Grab a big lock for a long time to avoid concurrency issues */ - mutex_lock(&queue->queuelock); + spin_lock_bh(&queue->queuelock); /* * Can go on to queue if we have space in either: @@ -814,15 +814,15 @@ ret = -EBUSY; if ((skreq->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)) { list_add_tail(&sec_req->backlog_head, &ctx->backlog); - mutex_unlock(&queue->queuelock); + spin_unlock_bh(&queue->queuelock); goto out; } - mutex_unlock(&queue->queuelock); + spin_unlock_bh(&queue->queuelock); goto err_free_elements; } ret = sec_send_request(sec_req, queue); - mutex_unlock(&queue->queuelock); + spin_unlock_bh(&queue->queuelock); if (ret) goto err_free_elements; @@ -881,7 +881,7 @@ if (IS_ERR(ctx->queue)) return PTR_ERR(ctx->queue); - mutex_init(&ctx->queue->queuelock); + spin_lock_init(&ctx->queue->queuelock); ctx->queue->havesoftqueue = false; return 0; diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/sec2/sec_main.c linux-azure-5.4.0/drivers/crypto/hisilicon/sec2/sec_main.c --- linux-azure-5.4.0/drivers/crypto/hisilicon/sec2/sec_main.c +++ linux-azure-5.4.0/drivers/crypto/hisilicon/sec2/sec_main.c @@ -21,11 +21,9 @@ #define SEC_PF_PCI_DEVICE_ID 0xa255 #define SEC_VF_PCI_DEVICE_ID 0xa256 -#define SEC_XTS_MIV_ENABLE_REG 0x301384 -#define SEC_XTS_MIV_ENABLE_MSK 0x7FFFFFFF -#define SEC_XTS_MIV_DISABLE_MSK 0xFFFFFFFF -#define SEC_BD_ERR_CHK_EN1 0xfffff7fd -#define SEC_BD_ERR_CHK_EN2 0xffffbfff +#define SEC_BD_ERR_CHK_EN0 0xEFFFFFFF +#define SEC_BD_ERR_CHK_EN1 0x7ffff7fd +#define SEC_BD_ERR_CHK_EN3 0xffffbfff #define SEC_SQE_SIZE 128 #define SEC_SQ_SIZE (SEC_SQE_SIZE * QM_Q_DEPTH) @@ -46,17 +44,18 @@ #define SEC_ECC_ADDR(err) ((err) >> 0) #define SEC_CORE_INT_DISABLE 0x0 #define SEC_CORE_INT_ENABLE 0x1ff +#define SEC_CORE_INT_CLEAR 0x1ff +#define SEC_SAA_ENABLE 0x17f -#define SEC_RAS_CE_REG 0x50 -#define SEC_RAS_FE_REG 0x54 -#define SEC_RAS_NFE_REG 0x58 +#define SEC_RAS_CE_REG 0x301050 +#define SEC_RAS_FE_REG 0x301054 +#define SEC_RAS_NFE_REG 0x301058 #define SEC_RAS_CE_ENB_MSK 0x88 #define SEC_RAS_FE_ENB_MSK 0x0 #define SEC_RAS_NFE_ENB_MSK 0x177 #define SEC_RAS_DISABLE 0x0 #define SEC_MEM_START_INIT_REG 0x0100 #define SEC_MEM_INIT_DONE_REG 0x0104 -#define SEC_QM_ABNORMAL_INT_MASK 0x100004 #define SEC_CONTROL_REG 0x0200 #define SEC_TRNG_EN_SHIFT 8 @@ -67,8 +66,10 @@ #define SEC_INTERFACE_USER_CTRL0_REG 0x0220 #define SEC_INTERFACE_USER_CTRL1_REG 0x0224 +#define SEC_SAA_EN_REG 0x0270 +#define SEC_BD_ERR_CHK_EN_REG0 0x0380 #define SEC_BD_ERR_CHK_EN_REG1 0x0384 -#define SEC_BD_ERR_CHK_EN_REG2 0x038c +#define SEC_BD_ERR_CHK_EN_REG3 0x038c #define SEC_USER0_SMMU_NORMAL (BIT(23) | BIT(15)) #define SEC_USER1_SMMU_NORMAL (BIT(31) | BIT(23) | BIT(15) | BIT(7)) @@ -76,8 +77,8 @@ #define SEC_DELAY_10_US 10 #define SEC_POLL_TIMEOUT_US 1000 -#define SEC_VF_CNT_MASK 0xffffffc0 #define SEC_DBGFS_VAL_MAX_LEN 20 +#define SEC_SINGLE_PORT_MAX_TRANS 0x2060 #define SEC_ADDR(qm, offset) ((qm)->io_base + (offset) + \ SEC_ENGINE_PF_CFG_OFF + SEC_ACC_COMMON_REG_OFF) @@ -322,25 +323,25 @@ reg |= SEC_USER1_SMMU_NORMAL; writel_relaxed(reg, SEC_ADDR(qm, SEC_INTERFACE_USER_CTRL1_REG)); + writel(SEC_SINGLE_PORT_MAX_TRANS, + qm->io_base + AM_CFG_SINGLE_PORT_MAX_TRANS); + + writel(SEC_SAA_ENABLE, SEC_ADDR(qm, SEC_SAA_EN_REG)); + + /* Enable sm4 extra mode, as ctr/ecb */ + writel_relaxed(SEC_BD_ERR_CHK_EN0, + SEC_ADDR(qm, SEC_BD_ERR_CHK_EN_REG0)); + /* Enable sm4 xts mode multiple iv */ writel_relaxed(SEC_BD_ERR_CHK_EN1, SEC_ADDR(qm, SEC_BD_ERR_CHK_EN_REG1)); - writel_relaxed(SEC_BD_ERR_CHK_EN2, - SEC_ADDR(qm, SEC_BD_ERR_CHK_EN_REG2)); - - /* enable clock gate control */ - reg = readl_relaxed(SEC_ADDR(qm, SEC_CONTROL_REG)); - reg |= SEC_CLK_GATE_ENABLE; - writel_relaxed(reg, SEC_ADDR(qm, SEC_CONTROL_REG)); + writel_relaxed(SEC_BD_ERR_CHK_EN3, + SEC_ADDR(qm, SEC_BD_ERR_CHK_EN_REG3)); /* config endian */ reg = readl_relaxed(SEC_ADDR(qm, SEC_CONTROL_REG)); reg |= sec_get_endian(sec); writel_relaxed(reg, SEC_ADDR(qm, SEC_CONTROL_REG)); - /* Enable sm4 xts mode multiple iv */ - writel_relaxed(SEC_XTS_MIV_ENABLE_MSK, - qm->io_base + SEC_XTS_MIV_ENABLE_REG); - return 0; } @@ -384,9 +385,8 @@ hisi_qm_debug_regs_clear(qm); } -static void sec_hw_error_enable(struct sec_dev *sec) +static void sec_hw_error_enable(struct hisi_qm *qm) { - struct hisi_qm *qm = &sec->qm; u32 val; if (qm->ver == QM_HW_V1) { @@ -395,10 +395,10 @@ return; } - val = readl(qm->io_base + SEC_CONTROL_REG); + val = readl(SEC_ADDR(qm, SEC_CONTROL_REG)); /* clear SEC hw error source if having */ - writel(SEC_CORE_INT_DISABLE, qm->io_base + SEC_CORE_INT_SOURCE); + writel(SEC_CORE_INT_CLEAR, qm->io_base + SEC_CORE_INT_SOURCE); /* enable SEC hw error interrupts */ writel(SEC_CORE_INT_ENABLE, qm->io_base + SEC_CORE_INT_MASK); @@ -411,15 +411,14 @@ /* enable SEC block master OOO when m-bit error occur */ val = val | SEC_AXI_SHUTDOWN_ENABLE; - writel(val, qm->io_base + SEC_CONTROL_REG); + writel(val, SEC_ADDR(qm, SEC_CONTROL_REG)); } -static void sec_hw_error_disable(struct sec_dev *sec) +static void sec_hw_error_disable(struct hisi_qm *qm) { - struct hisi_qm *qm = &sec->qm; u32 val; - val = readl(qm->io_base + SEC_CONTROL_REG); + val = readl(SEC_ADDR(qm, SEC_CONTROL_REG)); /* disable RAS int */ writel(SEC_RAS_DISABLE, qm->io_base + SEC_RAS_CE_REG); @@ -432,28 +431,7 @@ /* disable SEC block master OOO when m-bit error occur */ val = val & SEC_AXI_SHUTDOWN_DISABLE; - writel(val, qm->io_base + SEC_CONTROL_REG); -} - -static void sec_hw_error_init(struct sec_dev *sec) -{ - if (sec->qm.fun_type == QM_HW_VF) - return; - - hisi_qm_hw_error_init(&sec->qm, QM_BASE_CE, - QM_BASE_NFE | QM_ACC_DO_TASK_TIMEOUT - | QM_ACC_WB_NOT_READY_TIMEOUT, 0, - QM_DB_RANDOM_INVALID); - sec_hw_error_enable(sec); -} - -static void sec_hw_error_uninit(struct sec_dev *sec) -{ - if (sec->qm.fun_type == QM_HW_VF) - return; - - sec_hw_error_disable(sec); - writel(GENMASK(12, 0), sec->qm.io_base + SEC_QM_ABNORMAL_INT_MASK); + writel(val, SEC_ADDR(qm, SEC_CONTROL_REG)); } static u32 sec_current_qm_read(struct sec_debug_file *file) @@ -695,6 +673,18 @@ debugfs_remove_recursive(sec->qm.debug.debug_root); } +static const struct hisi_qm_err_ini sec_err_ini = { + .hw_err_enable = sec_hw_error_enable, + .hw_err_disable = sec_hw_error_disable, + .err_info = { + .ce = QM_BASE_CE, + .nfe = QM_BASE_NFE | QM_ACC_DO_TASK_TIMEOUT | + QM_ACC_WB_NOT_READY_TIMEOUT, + .fe = 0, + .msi = QM_DB_RANDOM_INVALID, + } +}; + static int sec_pf_probe_init(struct sec_dev *sec) { struct hisi_qm *qm = &sec->qm; @@ -713,11 +703,13 @@ return -EINVAL; } + qm->err_ini = &sec_err_ini; + ret = sec_set_user_domain_and_cache(sec); if (ret) return ret; - sec_hw_error_init(sec); + hisi_qm_dev_err_init(qm); sec_debug_regs_clear(qm); return 0; @@ -750,12 +742,30 @@ static int sec_probe_init(struct hisi_qm *qm, struct sec_dev *sec) { + int ret; + + /* + * WQ_HIGHPRI: SEC request must be low delayed, + * so need a high priority workqueue. + * WQ_UNBOUND: SEC task is likely with long + * running CPU intensive workloads. + */ + qm->wq = alloc_workqueue("%s", WQ_HIGHPRI | + WQ_MEM_RECLAIM | WQ_UNBOUND, num_online_cpus(), + pci_name(qm->pdev)); + if (!qm->wq) { + pci_err(qm->pdev, "fail to alloc workqueue\n"); + return -ENOMEM; + } + if (qm->fun_type == QM_HW_PF) { qm->qp_base = SEC_PF_DEF_Q_BASE; qm->qp_num = pf_q_num; qm->debug.curr_qm_qp_num = pf_q_num; - return sec_pf_probe_init(sec); + ret = sec_pf_probe_init(sec); + if (ret) + goto err_probe_uninit; } else if (qm->fun_type == QM_HW_VF) { /* * have no way to get qm configure in VM in v1 hardware, @@ -768,18 +778,26 @@ qm->qp_num = SEC_QUEUE_NUM_V1 - SEC_PF_DEF_Q_NUM; } else if (qm->ver == QM_HW_V2) { /* v2 starts to support get vft by mailbox */ - return hisi_qm_get_vft(qm, &qm->qp_base, &qm->qp_num); + ret = hisi_qm_get_vft(qm, &qm->qp_base, &qm->qp_num); + if (ret) + goto err_probe_uninit; } } else { - return -ENODEV; + ret = -ENODEV; + goto err_probe_uninit; } return 0; +err_probe_uninit: + destroy_workqueue(qm->wq); + return ret; } -static void sec_probe_uninit(struct sec_dev *sec) +static void sec_probe_uninit(struct hisi_qm *qm) { - sec_hw_error_uninit(sec); + hisi_qm_dev_err_uninit(qm); + + destroy_workqueue(qm->wq); } static int sec_probe(struct pci_dev *pdev, const struct pci_device_id *id) @@ -836,7 +854,7 @@ hisi_qm_stop(qm); err_probe_uninit: - sec_probe_uninit(sec); + sec_probe_uninit(qm); err_qm_uninit: sec_qm_uninit(qm); @@ -967,7 +985,7 @@ if (qm->fun_type == QM_HW_PF) sec_debug_regs_clear(qm); - sec_probe_uninit(sec); + sec_probe_uninit(qm); sec_qm_uninit(qm); } diff -u linux-azure-5.4.0/drivers/crypto/hisilicon/zip/zip_main.c linux-azure-5.4.0/drivers/crypto/hisilicon/zip/zip_main.c --- linux-azure-5.4.0/drivers/crypto/hisilicon/zip/zip_main.c +++ linux-azure-5.4.0/drivers/crypto/hisilicon/zip/zip_main.c @@ -60,13 +60,13 @@ #define HZIP_CORE_DEBUG_DECOMP_5 0x309000 #define HZIP_CORE_INT_SOURCE 0x3010A0 -#define HZIP_CORE_INT_MASK 0x3010A4 +#define HZIP_CORE_INT_MASK_REG 0x3010A4 #define HZIP_CORE_INT_STATUS 0x3010AC #define HZIP_CORE_INT_STATUS_M_ECC BIT(1) #define HZIP_CORE_SRAM_ECC_ERR_INFO 0x301148 #define SRAM_ECC_ERR_NUM_SHIFT 16 #define SRAM_ECC_ERR_ADDR_SHIFT 24 -#define HZIP_CORE_INT_DISABLE 0x000007FF +#define HZIP_CORE_INT_MASK_ALL GENMASK(10, 0) #define HZIP_COMP_CORE_NUM 2 #define HZIP_DECOMP_CORE_NUM 6 #define HZIP_CORE_NUM (HZIP_COMP_CORE_NUM + \ @@ -366,27 +366,26 @@ FIELD_PREP(CQC_CACHE_WB_THRD, 1), base + QM_CACHE_CTL); } -static void hisi_zip_hw_error_set_state(struct hisi_zip *hisi_zip, bool state) +static void hisi_zip_hw_error_enable(struct hisi_qm *qm) { - struct hisi_qm *qm = &hisi_zip->qm; - if (qm->ver == QM_HW_V1) { - writel(HZIP_CORE_INT_DISABLE, qm->io_base + HZIP_CORE_INT_MASK); + writel(HZIP_CORE_INT_MASK_ALL, + qm->io_base + HZIP_CORE_INT_MASK_REG); dev_info(&qm->pdev->dev, "Does not support hw error handle\n"); return; } - if (state) { - /* clear ZIP hw error source if having */ - writel(HZIP_CORE_INT_DISABLE, hisi_zip->qm.io_base + - HZIP_CORE_INT_SOURCE); - /* enable ZIP hw error interrupts */ - writel(0, hisi_zip->qm.io_base + HZIP_CORE_INT_MASK); - } else { - /* disable ZIP hw error interrupts */ - writel(HZIP_CORE_INT_DISABLE, - hisi_zip->qm.io_base + HZIP_CORE_INT_MASK); - } + /* clear ZIP hw error source if having */ + writel(HZIP_CORE_INT_MASK_ALL, qm->io_base + HZIP_CORE_INT_SOURCE); + + /* enable ZIP hw error interrupts */ + writel(0, qm->io_base + HZIP_CORE_INT_MASK_REG); +} + +static void hisi_zip_hw_error_disable(struct hisi_qm *qm) +{ + /* disable ZIP hw error interrupts */ + writel(HZIP_CORE_INT_MASK_ALL, qm->io_base + HZIP_CORE_INT_MASK_REG); } static inline struct hisi_qm *file_to_qm(struct ctrl_debug_file *file) @@ -638,13 +637,16 @@ hisi_zip_debug_regs_clear(hisi_zip); } -static void hisi_zip_hw_error_init(struct hisi_zip *hisi_zip) -{ - hisi_qm_hw_error_init(&hisi_zip->qm, QM_BASE_CE, - QM_BASE_NFE | QM_ACC_WB_NOT_READY_TIMEOUT, 0, - QM_DB_RANDOM_INVALID); - hisi_zip_hw_error_set_state(hisi_zip, true); -} +static const struct hisi_qm_err_ini hisi_zip_err_ini = { + .hw_err_enable = hisi_zip_hw_error_enable, + .hw_err_disable = hisi_zip_hw_error_disable, + .err_info = { + .ce = QM_BASE_CE, + .nfe = QM_BASE_NFE | QM_ACC_WB_NOT_READY_TIMEOUT, + .fe = 0, + .msi = QM_DB_RANDOM_INVALID, + } +}; static int hisi_zip_pf_probe_init(struct hisi_zip *hisi_zip) { @@ -671,8 +673,10 @@ return -EINVAL; } + qm->err_ini = &hisi_zip_err_ini; + hisi_zip_set_user_domain_and_cache(hisi_zip); - hisi_zip_hw_error_init(hisi_zip); + hisi_qm_dev_err_init(qm); hisi_zip_debug_regs_clear(hisi_zip); return 0; @@ -887,9 +891,7 @@ hisi_zip_debugfs_exit(hisi_zip); hisi_qm_stop(qm); - if (qm->fun_type == QM_HW_PF) - hisi_zip_hw_error_set_state(hisi_zip, false); - + hisi_qm_dev_err_uninit(qm); hisi_qm_uninit(qm); hisi_zip_remove_from_list(hisi_zip); } diff -u linux-azure-5.4.0/drivers/crypto/inside-secure/safexcel.c linux-azure-5.4.0/drivers/crypto/inside-secure/safexcel.c --- linux-azure-5.4.0/drivers/crypto/inside-secure/safexcel.c +++ linux-azure-5.4.0/drivers/crypto/inside-secure/safexcel.c @@ -1658,6 +1658,8 @@ {}, }; +MODULE_DEVICE_TABLE(of, safexcel_of_match_table); + static struct platform_driver crypto_safexcel = { .probe = safexcel_probe, .remove = safexcel_remove, diff -u linux-azure-5.4.0/drivers/crypto/ixp4xx_crypto.c linux-azure-5.4.0/drivers/crypto/ixp4xx_crypto.c --- linux-azure-5.4.0/drivers/crypto/ixp4xx_crypto.c +++ linux-azure-5.4.0/drivers/crypto/ixp4xx_crypto.c @@ -329,7 +329,7 @@ buf1 = buf->next; phys1 = buf->phys_next; - dma_unmap_single(dev, buf->phys_next, buf->buf_len, buf->dir); + dma_unmap_single(dev, buf->phys_addr, buf->buf_len, buf->dir); dma_pool_free(buffer_pool, buf, phys); buf = buf1; phys = phys1; diff -u linux-azure-5.4.0/drivers/crypto/mxs-dcp.c linux-azure-5.4.0/drivers/crypto/mxs-dcp.c --- linux-azure-5.4.0/drivers/crypto/mxs-dcp.c +++ linux-azure-5.4.0/drivers/crypto/mxs-dcp.c @@ -168,15 +168,19 @@ static int mxs_dcp_start_dma(struct dcp_async_ctx *actx) { + int dma_err; struct dcp *sdcp = global_sdcp; const int chan = actx->chan; uint32_t stat; unsigned long ret; struct dcp_dma_desc *desc = &sdcp->coh->desc[actx->chan]; - dma_addr_t desc_phys = dma_map_single(sdcp->dev, desc, sizeof(*desc), DMA_TO_DEVICE); + dma_err = dma_mapping_error(sdcp->dev, desc_phys); + if (dma_err) + return dma_err; + reinit_completion(&sdcp->completion[chan]); /* Clear status register. */ @@ -214,18 +218,29 @@ static int mxs_dcp_run_aes(struct dcp_async_ctx *actx, struct ablkcipher_request *req, int init) { + dma_addr_t key_phys, src_phys, dst_phys; struct dcp *sdcp = global_sdcp; struct dcp_dma_desc *desc = &sdcp->coh->desc[actx->chan]; struct dcp_aes_req_ctx *rctx = ablkcipher_request_ctx(req); int ret; - dma_addr_t key_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_key, - 2 * AES_KEYSIZE_128, - DMA_TO_DEVICE); - dma_addr_t src_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_in_buf, - DCP_BUF_SZ, DMA_TO_DEVICE); - dma_addr_t dst_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_out_buf, - DCP_BUF_SZ, DMA_FROM_DEVICE); + key_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_key, + 2 * AES_KEYSIZE_128, DMA_TO_DEVICE); + ret = dma_mapping_error(sdcp->dev, key_phys); + if (ret) + return ret; + + src_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_in_buf, + DCP_BUF_SZ, DMA_TO_DEVICE); + ret = dma_mapping_error(sdcp->dev, src_phys); + if (ret) + goto err_src; + + dst_phys = dma_map_single(sdcp->dev, sdcp->coh->aes_out_buf, + DCP_BUF_SZ, DMA_FROM_DEVICE); + ret = dma_mapping_error(sdcp->dev, dst_phys); + if (ret) + goto err_dst; if (actx->fill % AES_BLOCK_SIZE) { dev_err(sdcp->dev, "Invalid block size!\n"); @@ -263,10 +278,12 @@ ret = mxs_dcp_start_dma(actx); aes_done_run: + dma_unmap_single(sdcp->dev, dst_phys, DCP_BUF_SZ, DMA_FROM_DEVICE); +err_dst: + dma_unmap_single(sdcp->dev, src_phys, DCP_BUF_SZ, DMA_TO_DEVICE); +err_src: dma_unmap_single(sdcp->dev, key_phys, 2 * AES_KEYSIZE_128, DMA_TO_DEVICE); - dma_unmap_single(sdcp->dev, src_phys, DCP_BUF_SZ, DMA_TO_DEVICE); - dma_unmap_single(sdcp->dev, dst_phys, DCP_BUF_SZ, DMA_FROM_DEVICE); return ret; } @@ -281,21 +298,20 @@ struct scatterlist *dst = req->dst; struct scatterlist *src = req->src; - const int nents = sg_nents(req->src); + int dst_nents = sg_nents(dst); const int out_off = DCP_BUF_SZ; uint8_t *in_buf = sdcp->coh->aes_in_buf; uint8_t *out_buf = sdcp->coh->aes_out_buf; - uint8_t *out_tmp, *src_buf, *dst_buf = NULL; uint32_t dst_off = 0; + uint8_t *src_buf = NULL; uint32_t last_out_len = 0; uint8_t *key = sdcp->coh->aes_key; int ret = 0; - int split = 0; - unsigned int i, len, clen, rem = 0, tlen = 0; + unsigned int i, len, clen, tlen = 0; int init = 0; bool limit_hit = false; @@ -313,7 +329,7 @@ memset(key + AES_KEYSIZE_128, 0, AES_KEYSIZE_128); } - for_each_sg(req->src, src, nents, i) { + for_each_sg(req->src, src, sg_nents(req->src), i) { src_buf = sg_virt(src); len = sg_dma_len(src); tlen += len; @@ -338,34 +354,17 @@ * submit the buffer. */ if (actx->fill == out_off || sg_is_last(src) || - limit_hit) { + limit_hit) { ret = mxs_dcp_run_aes(actx, req, init); if (ret) return ret; init = 0; - out_tmp = out_buf; + sg_pcopy_from_buffer(dst, dst_nents, out_buf, + actx->fill, dst_off); + dst_off += actx->fill; last_out_len = actx->fill; - while (dst && actx->fill) { - if (!split) { - dst_buf = sg_virt(dst); - dst_off = 0; - } - rem = min(sg_dma_len(dst) - dst_off, - actx->fill); - - memcpy(dst_buf + dst_off, out_tmp, rem); - out_tmp += rem; - dst_off += rem; - actx->fill -= rem; - - if (dst_off == sg_dma_len(dst)) { - dst = sg_next(dst); - split = 0; - } else { - split = 1; - } - } + actx->fill = 0; } } while (len); @@ -565,6 +564,10 @@ dma_addr_t buf_phys = dma_map_single(sdcp->dev, sdcp->coh->sha_in_buf, DCP_BUF_SZ, DMA_TO_DEVICE); + ret = dma_mapping_error(sdcp->dev, buf_phys); + if (ret) + return ret; + /* Fill in the DMA descriptor. */ desc->control0 = MXS_DCP_CONTROL0_DECR_SEMAPHORE | MXS_DCP_CONTROL0_INTERRUPT | @@ -597,6 +600,10 @@ if (rctx->fini) { digest_phys = dma_map_single(sdcp->dev, sdcp->coh->sha_out_buf, DCP_SHA_PAY_SZ, DMA_FROM_DEVICE); + ret = dma_mapping_error(sdcp->dev, digest_phys); + if (ret) + goto done_run; + desc->control0 |= MXS_DCP_CONTROL0_HASH_TERM; desc->payload = digest_phys; } diff -u linux-azure-5.4.0/drivers/crypto/omap-aes.c linux-azure-5.4.0/drivers/crypto/omap-aes.c --- linux-azure-5.4.0/drivers/crypto/omap-aes.c +++ linux-azure-5.4.0/drivers/crypto/omap-aes.c @@ -1318,7 +1318,7 @@ static int omap_aes_resume(struct device *dev) { - pm_runtime_resume_and_get(dev); + pm_runtime_get_sync(dev); return 0; } #endif diff -u linux-azure-5.4.0/drivers/crypto/omap-sham.c linux-azure-5.4.0/drivers/crypto/omap-sham.c --- linux-azure-5.4.0/drivers/crypto/omap-sham.c +++ linux-azure-5.4.0/drivers/crypto/omap-sham.c @@ -364,7 +364,7 @@ { int err; - err = pm_runtime_get_sync(dd->dev); + err = pm_runtime_resume_and_get(dd->dev); if (err < 0) { dev_err(dd->dev, "failed to get sync: %d\n", err); return err; @@ -1734,7 +1734,7 @@ if (test_and_clear_bit(FLAGS_OUTPUT_READY, &dd->flags)) goto finish; } else if (test_bit(FLAGS_DMA_READY, &dd->flags)) { - if (test_and_clear_bit(FLAGS_DMA_ACTIVE, &dd->flags)) { + if (test_bit(FLAGS_DMA_ACTIVE, &dd->flags)) { omap_sham_update_dma_stop(dd); if (dd->err) { err = dd->err; @@ -2236,7 +2236,7 @@ static int omap_sham_resume(struct device *dev) { - int err = pm_runtime_get_sync(dev); + int err = pm_runtime_resume_and_get(dev); if (err < 0) { dev_err(dev, "failed to get sync: %d\n", err); return err; diff -u linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_isr.c linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_isr.c --- linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_isr.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_isr.c @@ -59,6 +59,8 @@ #include "adf_transport_access_macros.h" #include "adf_transport_internal.h" +#define ADF_MAX_NUM_VFS 32 + static int adf_enable_msix(struct adf_accel_dev *accel_dev) { struct adf_accel_pci *pci_dev_info = &accel_dev->accel_pci_dev; @@ -111,7 +113,7 @@ struct adf_bar *pmisc = &GET_BARS(accel_dev)[hw_data->get_misc_bar_id(hw_data)]; void __iomem *pmisc_bar_addr = pmisc->virt_addr; - u32 vf_mask; + unsigned long vf_mask; /* Get the interrupt sources triggered by VFs */ vf_mask = ((ADF_CSR_RD(pmisc_bar_addr, ADF_ERRSOU5) & @@ -132,8 +134,7 @@ * unless the VF is malicious and is attempting to * flood the host OS with VF2PF interrupts. */ - for_each_set_bit(i, (const unsigned long *)&vf_mask, - (sizeof(vf_mask) * BITS_PER_BYTE)) { + for_each_set_bit(i, &vf_mask, ADF_MAX_NUM_VFS) { vf_info = accel_dev->pf.vf_info + i; if (!__ratelimit(&vf_info->vf2pf_ratelimit)) { diff -u linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_vf_isr.c linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_vf_isr.c --- linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_vf_isr.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_vf_isr.c @@ -123,6 +123,11 @@ /* Read the message from PF */ msg = ADF_CSR_RD(pmisc_bar_addr, hw_data->get_pf2vf_offset(0)); + if (!(msg & ADF_PF2VF_INT)) { + dev_info(&GET_DEV(accel_dev), + "Spurious PF2VF interrupt, msg %X. Ignored\n", msg); + goto out; + } if (!(msg & ADF_PF2VF_MSGORIGIN_SYSTEM)) /* Ignore legacy non-system (non-kernel) PF2VF messages */ @@ -171,6 +176,7 @@ msg &= ~ADF_PF2VF_INT; ADF_CSR_WR(pmisc_bar_addr, hw_data->get_pf2vf_offset(0), msg); +out: /* Re-enable PF2VF interrupts */ adf_enable_pf2vf_interrupts(accel_dev); return; @@ -203,6 +209,7 @@ struct adf_bar *pmisc = &GET_BARS(accel_dev)[hw_data->get_misc_bar_id(hw_data)]; void __iomem *pmisc_bar_addr = pmisc->virt_addr; + bool handled = false; u32 v_int; /* Read VF INT source CSR to determine the source of VF interrupt */ @@ -215,7 +222,7 @@ /* Schedule tasklet to handle interrupt BH */ tasklet_hi_schedule(&accel_dev->vf.pf2vf_bh_tasklet); - return IRQ_HANDLED; + handled = true; } /* Check bundle interrupt */ @@ -227,10 +234,10 @@ WRITE_CSR_INT_FLAG_AND_COL(bank->csr_addr, bank->bank_number, 0); tasklet_hi_schedule(&bank->resp_handler); - return IRQ_HANDLED; + handled = true; } - return IRQ_NONE; + return handled ? IRQ_HANDLED : IRQ_NONE; } static int adf_request_msi_irq(struct adf_accel_dev *accel_dev) diff -u linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_hal.c linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_hal.c --- linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_hal.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_hal.c @@ -1256,7 +1256,11 @@ pr_err("QAT: bad xfrAddr=0x%x\n", xfr_addr); return -EINVAL; } - qat_hal_rd_rel_reg(handle, ae, ctx, ICP_GPB_REL, gprnum, &gprval); + status = qat_hal_rd_rel_reg(handle, ae, ctx, ICP_GPB_REL, gprnum, &gprval); + if (status) { + pr_err("QAT: failed to read register"); + return status; + } gpr_addr = qat_hal_get_reg_addr(ICP_GPB_REL, gprnum); data16low = 0xffff & data; data16hi = 0xffff & (data >> 0x10); diff -u linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_uclo.c linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_uclo.c --- linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_uclo.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_uclo.c @@ -385,7 +385,6 @@ return 0; } -#define ICP_DH895XCC_PESRAM_BAR_SIZE 0x80000 static int qat_uclo_init_ae_memory(struct icp_qat_fw_loader_handle *handle, struct icp_qat_uof_initmem *init_mem) { diff -u linux-azure-5.4.0/drivers/crypto/stm32/stm32-crc32.c linux-azure-5.4.0/drivers/crypto/stm32/stm32-crc32.c --- linux-azure-5.4.0/drivers/crypto/stm32/stm32-crc32.c +++ linux-azure-5.4.0/drivers/crypto/stm32/stm32-crc32.c @@ -230,7 +230,7 @@ .digestsize = CHKSUM_DIGEST_SIZE, .base = { .cra_name = "crc32", - .cra_driver_name = DRIVER_NAME, + .cra_driver_name = "stm32-crc32-crc32", .cra_priority = 200, .cra_flags = CRYPTO_ALG_OPTIONAL_KEY, .cra_blocksize = CHKSUM_BLOCK_SIZE, @@ -252,7 +252,7 @@ .digestsize = CHKSUM_DIGEST_SIZE, .base = { .cra_name = "crc32c", - .cra_driver_name = DRIVER_NAME, + .cra_driver_name = "stm32-crc32-crc32c", .cra_priority = 200, .cra_flags = CRYPTO_ALG_OPTIONAL_KEY, .cra_blocksize = CHKSUM_BLOCK_SIZE, @@ -332,8 +332,10 @@ struct stm32_crc *crc = platform_get_drvdata(pdev); int ret = pm_runtime_get_sync(crc->dev); - if (ret < 0) + if (ret < 0) { + pm_runtime_put_noidle(crc->dev); return ret; + } spin_lock(&crc_list.lock); list_del(&crc->list); diff -u linux-azure-5.4.0/drivers/crypto/stm32/stm32-cryp.c linux-azure-5.4.0/drivers/crypto/stm32/stm32-cryp.c --- linux-azure-5.4.0/drivers/crypto/stm32/stm32-cryp.c +++ linux-azure-5.4.0/drivers/crypto/stm32/stm32-cryp.c @@ -639,7 +639,7 @@ /* Phase 4 : output tag */ err = stm32_cryp_read_auth_tag(cryp); - if (!err && (!(is_gcm(cryp) || is_ccm(cryp)))) + if (!err && (!(is_gcm(cryp) || is_ccm(cryp) || is_ecb(cryp)))) stm32_cryp_get_iv(cryp); if (cryp->sgs_copied) { @@ -669,8 +669,6 @@ else crypto_finalize_ablkcipher_request(cryp->engine, cryp->req, err); - - memset(cryp->ctx->key, 0, cryp->ctx->keylen); } static int stm32_cryp_cpu_start(struct stm32_cryp *cryp) @@ -2038,8 +2036,6 @@ pm_runtime_disable(dev); pm_runtime_put_noidle(dev); - pm_runtime_disable(dev); - pm_runtime_put_noidle(dev); clk_disable_unprepare(cryp->clk); diff -u linux-azure-5.4.0/drivers/dax/super.c linux-azure-5.4.0/drivers/dax/super.c --- linux-azure-5.4.0/drivers/dax/super.c +++ linux-azure-5.4.0/drivers/dax/super.c @@ -691,6 +691,7 @@ static void dax_fs_exit(void) { kern_unmount(dax_mnt); + rcu_barrier(); kmem_cache_destroy(dax_cache); } diff -u linux-azure-5.4.0/drivers/devfreq/event/exynos-ppmu.c linux-azure-5.4.0/drivers/devfreq/event/exynos-ppmu.c --- linux-azure-5.4.0/drivers/devfreq/event/exynos-ppmu.c +++ linux-azure-5.4.0/drivers/devfreq/event/exynos-ppmu.c @@ -514,15 +514,19 @@ count = of_get_child_count(events_np); desc = devm_kcalloc(dev, count, sizeof(*desc), GFP_KERNEL); - if (!desc) + if (!desc) { + of_node_put(events_np); return -ENOMEM; + } info->num_events = count; of_id = of_match_device(exynos_ppmu_id_match, dev); if (of_id) info->ppmu_type = (enum exynos_ppmu_type)of_id->data; - else + else { + of_node_put(events_np); return -EINVAL; + } j = 0; for_each_child_of_node(events_np, node) { diff -u linux-azure-5.4.0/drivers/devfreq/rk3399_dmc.c linux-azure-5.4.0/drivers/devfreq/rk3399_dmc.c --- linux-azure-5.4.0/drivers/devfreq/rk3399_dmc.c +++ linux-azure-5.4.0/drivers/devfreq/rk3399_dmc.c @@ -485,6 +485,8 @@ { struct rk3399_dmcfreq *dmcfreq = dev_get_drvdata(&pdev->dev); + devfreq_event_disable_edev(dmcfreq->edev); + /* * Before remove the opp table we need to unregister the opp notifier. */ diff -u linux-azure-5.4.0/drivers/dma-buf/dma-buf.c linux-azure-5.4.0/drivers/dma-buf/dma-buf.c --- linux-azure-5.4.0/drivers/dma-buf/dma-buf.c +++ linux-azure-5.4.0/drivers/dma-buf/dma-buf.c @@ -79,6 +79,7 @@ if (dmabuf->resv == (struct dma_resv *)&dmabuf[1]) dma_resv_fini(dmabuf->resv); + WARN_ON(!list_empty(&dmabuf->attachments)); module_put(dmabuf->owner); kfree(dmabuf->name); kfree(dmabuf); diff -u linux-azure-5.4.0/drivers/dma-buf/sync_file.c linux-azure-5.4.0/drivers/dma-buf/sync_file.c --- linux-azure-5.4.0/drivers/dma-buf/sync_file.c +++ linux-azure-5.4.0/drivers/dma-buf/sync_file.c @@ -211,8 +211,8 @@ struct sync_file *b) { struct sync_file *sync_file; - struct dma_fence **fences, **nfences, **a_fences, **b_fences; - int i, i_a, i_b, num_fences, a_num_fences, b_num_fences; + struct dma_fence **fences = NULL, **nfences, **a_fences, **b_fences; + int i = 0, i_a, i_b, num_fences, a_num_fences, b_num_fences; sync_file = sync_file_alloc(); if (!sync_file) @@ -236,7 +236,7 @@ * If a sync_file can only be created with sync_file_merge * and sync_file_create, this is a reasonable assumption. */ - for (i = i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) { + for (i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) { struct dma_fence *pt_a = a_fences[i_a]; struct dma_fence *pt_b = b_fences[i_b]; @@ -278,15 +278,16 @@ fences = nfences; } - if (sync_file_set_fence(sync_file, fences, i) < 0) { - kfree(fences); + if (sync_file_set_fence(sync_file, fences, i) < 0) goto err; - } strlcpy(sync_file->user_name, name, sizeof(sync_file->user_name)); return sync_file; err: + while (i) + dma_fence_put(fences[--i]); + kfree(fences); fput(sync_file->file); return NULL; diff -u linux-azure-5.4.0/drivers/dma/Kconfig linux-azure-5.4.0/drivers/dma/Kconfig --- linux-azure-5.4.0/drivers/dma/Kconfig +++ linux-azure-5.4.0/drivers/dma/Kconfig @@ -59,6 +59,7 @@ #devices config ALTERA_MSGDMA tristate "Altera / Intel mSGDMA Engine" + depends on HAS_IOMEM select DMA_ENGINE help Enable support for Altera / Intel mSGDMA controller. @@ -283,7 +284,7 @@ config INTEL_IOATDMA tristate "Intel I/OAT DMA support" - depends on PCI && X86_64 + depends on PCI && X86_64 && !UML select DMA_ENGINE select DMA_ENGINE_RAID select DCA diff -u linux-azure-5.4.0/drivers/dma/acpi-dma.c linux-azure-5.4.0/drivers/dma/acpi-dma.c --- linux-azure-5.4.0/drivers/dma/acpi-dma.c +++ linux-azure-5.4.0/drivers/dma/acpi-dma.c @@ -70,10 +70,14 @@ si = (const struct acpi_csrt_shared_info *)&grp[1]; - /* Match device by MMIO and IRQ */ + /* Match device by MMIO */ if (si->mmio_base_low != lower_32_bits(mem) || - si->mmio_base_high != upper_32_bits(mem) || - si->gsi_interrupt != irq) + si->mmio_base_high != upper_32_bits(mem)) + return 0; + + /* Match device by Linux vIRQ */ + ret = acpi_register_gsi(NULL, si->gsi_interrupt, si->interrupt_mode, si->interrupt_polarity); + if (ret != irq) return 0; dev_dbg(&adev->dev, "matches with %.4s%04X (rev %u)\n", diff -u linux-azure-5.4.0/drivers/dma/fsl-qdma.c linux-azure-5.4.0/drivers/dma/fsl-qdma.c --- linux-azure-5.4.0/drivers/dma/fsl-qdma.c +++ linux-azure-5.4.0/drivers/dma/fsl-qdma.c @@ -1184,7 +1184,11 @@ fsl_qdma->dma_dev.device_synchronize = fsl_qdma_synchronize; fsl_qdma->dma_dev.device_terminate_all = fsl_qdma_terminate_all; - dma_set_mask(&pdev->dev, DMA_BIT_MASK(40)); + ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(40)); + if (ret) { + dev_err(&pdev->dev, "dma_set_mask failure.\n"); + return ret; + } platform_set_drvdata(pdev, fsl_qdma); diff -u linux-azure-5.4.0/drivers/dma/imx-sdma.c linux-azure-5.4.0/drivers/dma/imx-sdma.c --- linux-azure-5.4.0/drivers/dma/imx-sdma.c +++ linux-azure-5.4.0/drivers/dma/imx-sdma.c @@ -377,7 +377,6 @@ unsigned long watermark_level; u32 shp_addr, per_addr; enum dma_status status; - bool context_loaded; struct imx_dma_data data; struct work_struct terminate_worker; }; @@ -988,9 +987,6 @@ int ret; unsigned long flags; - if (sdmac->context_loaded) - return 0; - if (sdmac->direction == DMA_DEV_TO_MEM) load_address = sdmac->pc_from_device; else if (sdmac->direction == DMA_DEV_TO_DEV) @@ -1033,8 +1029,6 @@ spin_unlock_irqrestore(&sdma->channel_0_lock, flags); - sdmac->context_loaded = true; - return ret; } @@ -1074,7 +1068,6 @@ sdmac->desc = NULL; spin_unlock_irqrestore(&sdmac->vc.lock, flags); vchan_dma_desc_free_list(&sdmac->vc, &head); - sdmac->context_loaded = false; } static int sdma_disable_channel_async(struct dma_chan *chan) @@ -1141,7 +1134,6 @@ static int sdma_config_channel(struct dma_chan *chan) { struct sdma_channel *sdmac = to_sdma_chan(chan); - int ret; sdma_disable_channel(chan); @@ -1181,9 +1173,7 @@ sdmac->watermark_level = 0; /* FIXME: M3_BASE_ADDRESS */ } - ret = sdma_load_context(sdmac); - - return ret; + return 0; } static int sdma_set_channel_priority(struct sdma_channel *sdmac, @@ -1335,7 +1325,6 @@ sdmac->event_id0 = 0; sdmac->event_id1 = 0; - sdmac->context_loaded = false; sdma_set_channel_priority(sdmac, 0); @@ -1795,7 +1784,7 @@ u32 reg, val, shift, num_map, i; int ret = 0; - if (IS_ERR(np) || IS_ERR(gpr_np)) + if (IS_ERR(np) || !gpr_np) goto out; event_remap = of_find_property(np, propname, NULL); @@ -1843,7 +1832,7 @@ } out: - if (!IS_ERR(gpr_np)) + if (gpr_np) of_node_put(gpr_np); return ret; @@ -2219,7 +2208,7 @@ #if IS_ENABLED(CONFIG_SOC_IMX6Q) MODULE_FIRMWARE("imx/sdma/sdma-imx6q.bin"); #endif -#if IS_ENABLED(CONFIG_SOC_IMX7D) +#if IS_ENABLED(CONFIG_SOC_IMX7D) || IS_ENABLED(CONFIG_SOC_IMX8M) MODULE_FIRMWARE("imx/sdma/sdma-imx7d.bin"); #endif MODULE_LICENSE("GPL"); diff -u linux-azure-5.4.0/drivers/dma/ioat/dma.c linux-azure-5.4.0/drivers/dma/ioat/dma.c --- linux-azure-5.4.0/drivers/dma/ioat/dma.c +++ linux-azure-5.4.0/drivers/dma/ioat/dma.c @@ -653,7 +653,7 @@ if (active - i == 0) { dev_dbg(to_dev(ioat_chan), "%s: cancel completion timeout\n", __func__); - mod_timer(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); + mod_timer_pending(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); } /* microsecond delay by sysfs variable per pending descriptor */ @@ -679,7 +679,7 @@ if (chanerr & (IOAT_CHANERR_HANDLE_MASK | IOAT_CHANERR_RECOVER_MASK)) { - mod_timer(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); + mod_timer_pending(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); ioat_eh(ioat_chan); } } @@ -876,7 +876,7 @@ } if (test_and_clear_bit(IOAT_CHAN_ACTIVE, &ioat_chan->state)) - mod_timer(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); + mod_timer_pending(&ioat_chan->timer, jiffies + IDLE_TIMEOUT); } void ioat_timer_event(struct timer_list *t) diff -u linux-azure-5.4.0/drivers/dma/of-dma.c linux-azure-5.4.0/drivers/dma/of-dma.c --- linux-azure-5.4.0/drivers/dma/of-dma.c +++ linux-azure-5.4.0/drivers/dma/of-dma.c @@ -65,8 +65,12 @@ return NULL; ofdma_target = of_dma_find_controller(&dma_spec_target); - if (!ofdma_target) - return NULL; + if (!ofdma_target) { + ofdma->dma_router->route_free(ofdma->dma_router->dev, + route_data); + chan = ERR_PTR(-EPROBE_DEFER); + goto err; + } chan = ofdma_target->of_dma_xlate(&dma_spec_target, ofdma_target); if (IS_ERR_OR_NULL(chan)) { @@ -77,6 +81,7 @@ chan->route_data = route_data; } +err: /* * Need to put the node back since the ofdma->of_dma_route_allocate * has taken it for generating the new, translated dma_spec diff -u linux-azure-5.4.0/drivers/dma/pl330.c linux-azure-5.4.0/drivers/dma/pl330.c --- linux-azure-5.4.0/drivers/dma/pl330.c +++ linux-azure-5.4.0/drivers/dma/pl330.c @@ -2585,7 +2585,7 @@ /* If the DMAC pool is empty, alloc new */ if (!desc) { - DEFINE_SPINLOCK(lock); + static DEFINE_SPINLOCK(lock); LIST_HEAD(pool); if (!add_desc(&pool, &lock, GFP_ATOMIC, 1)) @@ -2690,13 +2690,15 @@ for (i = 0; i < len / period_len; i++) { desc = pl330_get_desc(pch); if (!desc) { + unsigned long iflags; + dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n", __func__, __LINE__); if (!first) return NULL; - spin_lock_irqsave(&pl330->pool_lock, flags); + spin_lock_irqsave(&pl330->pool_lock, iflags); while (!list_empty(&first->node)) { desc = list_entry(first->node.next, @@ -2706,7 +2708,7 @@ list_move_tail(&first->node, &pl330->desc_pool); - spin_unlock_irqrestore(&pl330->pool_lock, flags); + spin_unlock_irqrestore(&pl330->pool_lock, iflags); return NULL; } diff -u linux-azure-5.4.0/drivers/dma/sh/usb-dmac.c linux-azure-5.4.0/drivers/dma/sh/usb-dmac.c --- linux-azure-5.4.0/drivers/dma/sh/usb-dmac.c +++ linux-azure-5.4.0/drivers/dma/sh/usb-dmac.c @@ -855,8 +855,8 @@ error: of_dma_controller_free(pdev->dev.of_node); - pm_runtime_put(&pdev->dev); error_pm: + pm_runtime_put(&pdev->dev); pm_runtime_disable(&pdev->dev); return ret; } diff -u linux-azure-5.4.0/drivers/dma/stm32-mdma.c linux-azure-5.4.0/drivers/dma/stm32-mdma.c --- linux-azure-5.4.0/drivers/dma/stm32-mdma.c +++ linux-azure-5.4.0/drivers/dma/stm32-mdma.c @@ -40,7 +40,6 @@ STM32_MDMA_SHIFT(mask)) #define STM32_MDMA_GISR0 0x0000 /* MDMA Int Status Reg 1 */ -#define STM32_MDMA_GISR1 0x0004 /* MDMA Int Status Reg 2 */ /* MDMA Channel x interrupt/status register */ #define STM32_MDMA_CISR(x) (0x40 + 0x40 * (x)) /* x = 0..62 */ @@ -184,7 +183,7 @@ #define STM32_MDMA_CTBR(x) (0x68 + 0x40 * (x)) #define STM32_MDMA_CTBR_DBUS BIT(17) #define STM32_MDMA_CTBR_SBUS BIT(16) -#define STM32_MDMA_CTBR_TSEL_MASK GENMASK(7, 0) +#define STM32_MDMA_CTBR_TSEL_MASK GENMASK(5, 0) #define STM32_MDMA_CTBR_TSEL(n) STM32_MDMA_SET(n, \ STM32_MDMA_CTBR_TSEL_MASK) @@ -196,7 +195,7 @@ #define STM32_MDMA_MAX_BUF_LEN 128 #define STM32_MDMA_MAX_BLOCK_LEN 65536 -#define STM32_MDMA_MAX_CHANNELS 63 +#define STM32_MDMA_MAX_CHANNELS 32 #define STM32_MDMA_MAX_REQUESTS 256 #define STM32_MDMA_MAX_BURST 128 #define STM32_MDMA_VERY_HIGH_PRIORITY 0x11 @@ -1351,21 +1350,11 @@ /* Find out which channel generates the interrupt */ status = readl_relaxed(dmadev->base + STM32_MDMA_GISR0); - if (status) { - id = __ffs(status); - } else { - status = readl_relaxed(dmadev->base + STM32_MDMA_GISR1); - if (!status) { - dev_dbg(mdma2dev(dmadev), "spurious it\n"); - return IRQ_NONE; - } - id = __ffs(status); - /* - * As GISR0 provides status for channel id from 0 to 31, - * so GISR1 provides status for channel id from 32 to 62 - */ - id += 32; + if (!status) { + dev_dbg(mdma2dev(dmadev), "spurious it\n"); + return IRQ_NONE; } + id = __ffs(status); chan = &dmadev->chan[id]; if (!chan) { diff -u linux-azure-5.4.0/drivers/dma/xilinx/xilinx_dma.c linux-azure-5.4.0/drivers/dma/xilinx/xilinx_dma.c --- linux-azure-5.4.0/drivers/dma/xilinx/xilinx_dma.c +++ linux-azure-5.4.0/drivers/dma/xilinx/xilinx_dma.c @@ -333,6 +333,7 @@ * @genlock: Support genlock mode * @err: Channel has errors * @idle: Check for channel idle + * @terminating: Check for channel being synchronized by user * @tasklet: Cleanup work after irq * @config: Device configuration info * @flush_on_fsync: Flush on Frame sync @@ -370,6 +371,7 @@ bool genlock; bool err; bool idle; + bool terminating; struct tasklet_struct tasklet; struct xilinx_vdma_config config; bool flush_on_fsync; @@ -844,6 +846,13 @@ /* Run any dependencies, then free the descriptor */ dma_run_dependencies(&desc->async_tx); xilinx_dma_free_tx_descriptor(chan, desc); + + /* + * While we ran a callback the user called a terminate function, + * which takes care of cleaning up any remaining descriptors + */ + if (chan->terminating) + break; } spin_unlock_irqrestore(&chan->lock, flags); @@ -1618,6 +1627,8 @@ if (desc->cyclic) chan->cyclic = true; + chan->terminating = false; + spin_unlock_irqrestore(&chan->lock, flags); return cookie; @@ -2074,6 +2085,7 @@ } /* Remove and free all of the descriptors in the lists */ + chan->terminating = true; xilinx_dma_free_descriptors(chan); chan->idle = true; @@ -2671,7 +2683,7 @@ if (err < 0) { dev_err(xdev->dev, "missing xlnx,num-fstores property\n"); - return err; + goto disable_clks; } err = of_property_read_u32(node, "xlnx,flush-fsync", @@ -2691,7 +2703,11 @@ xdev->ext_addr = false; /* Set the dma mask bits */ - dma_set_mask(xdev->dev, DMA_BIT_MASK(addr_width)); + err = dma_set_mask_and_coherent(xdev->dev, DMA_BIT_MASK(addr_width)); + if (err < 0) { + dev_err(xdev->dev, "DMA mask error %d\n", err); + goto disable_clks; + } /* Initialize the DMA engine */ xdev->common.dev = &pdev->dev; diff -u linux-azure-5.4.0/drivers/dma/xilinx/zynqmp_dma.c linux-azure-5.4.0/drivers/dma/xilinx/zynqmp_dma.c --- linux-azure-5.4.0/drivers/dma/xilinx/zynqmp_dma.c +++ linux-azure-5.4.0/drivers/dma/xilinx/zynqmp_dma.c @@ -232,7 +232,7 @@ bool is_dmacoherent; struct tasklet_struct tasklet; bool idle; - u32 desc_size; + size_t desc_size; bool err; u32 bus_width; u32 src_burst_len; @@ -467,7 +467,7 @@ struct zynqmp_dma_desc_sw *desc; int i, ret; - ret = pm_runtime_get_sync(chan->dev); + ret = pm_runtime_resume_and_get(chan->dev); if (ret < 0) return ret; @@ -489,7 +489,8 @@ } chan->desc_pool_v = dma_alloc_coherent(chan->dev, - (2 * chan->desc_size * ZYNQMP_DMA_NUM_DESCS), + (2 * ZYNQMP_DMA_DESC_SIZE(chan) * + ZYNQMP_DMA_NUM_DESCS), &chan->desc_pool_p, GFP_KERNEL); if (!chan->desc_pool_v) return -ENOMEM; diff -u linux-azure-5.4.0/drivers/edac/altera_edac.c linux-azure-5.4.0/drivers/edac/altera_edac.c --- linux-azure-5.4.0/drivers/edac/altera_edac.c +++ linux-azure-5.4.0/drivers/edac/altera_edac.c @@ -349,7 +349,7 @@ if (irq < 0) { edac_printk(KERN_ERR, EDAC_MC, "No irq %d in DT\n", irq); - return -ENODEV; + return irq; } /* Arria10 has a 2nd IRQ */ diff -u linux-azure-5.4.0/drivers/edac/amd64_edac.c linux-azure-5.4.0/drivers/edac/amd64_edac.c --- linux-azure-5.4.0/drivers/edac/amd64_edac.c +++ linux-azure-5.4.0/drivers/edac/amd64_edac.c @@ -790,12 +790,14 @@ #define CS_ODD_PRIMARY BIT(1) #define CS_EVEN_SECONDARY BIT(2) #define CS_ODD_SECONDARY BIT(3) +#define CS_3R_INTERLEAVE BIT(4) #define CS_EVEN (CS_EVEN_PRIMARY | CS_EVEN_SECONDARY) #define CS_ODD (CS_ODD_PRIMARY | CS_ODD_SECONDARY) static int f17_get_cs_mode(int dimm, u8 ctrl, struct amd64_pvt *pvt) { + u8 base, count = 0; int cs_mode = 0; if (csrow_enabled(2 * dimm, ctrl, pvt)) @@ -808,6 +810,20 @@ if (csrow_sec_enabled(2 * dimm + 1, ctrl, pvt)) cs_mode |= CS_ODD_SECONDARY; + /* + * 3 Rank inteleaving support. + * There should be only three bases enabled and their two masks should + * be equal. + */ + for_each_chip_select(base, ctrl, pvt) + count += csrow_enabled(base, ctrl, pvt); + + if (count == 3 && + pvt->csels[ctrl].csmasks[0] == pvt->csels[ctrl].csmasks[1]) { + edac_dbg(1, "3R interleaving in use.\n"); + cs_mode |= CS_3R_INTERLEAVE; + } + return cs_mode; } @@ -1616,10 +1632,14 @@ * * The MSB is the number of bits in the full mask because BIT[0] is * always 0. + * + * In the special 3 Rank interleaving case, a single bit is flipped + * without swapping with the most significant bit. This can be handled + * by keeping the MSB where it is and ignoring the single zero bit. */ msb = fls(addr_mask_orig) - 1; weight = hweight_long(addr_mask_orig); - num_zero_bits = msb - weight; + num_zero_bits = msb - weight - !!(cs_mode & CS_3R_INTERLEAVE); /* Take the number of zero bits off from the top of the mask. */ addr_mask_deinterleaved = GENMASK_ULL(msb - num_zero_bits, 1); diff -u linux-azure-5.4.0/drivers/edac/edac_mc.c linux-azure-5.4.0/drivers/edac/edac_mc.c --- linux-azure-5.4.0/drivers/edac/edac_mc.c +++ linux-azure-5.4.0/drivers/edac/edac_mc.c @@ -263,7 +263,7 @@ else return (char *)ptr; - r = (unsigned long)p % align; + r = (unsigned long)ptr % align; if (r == 0) return (char *)ptr; diff -u linux-azure-5.4.0/drivers/edac/i10nm_base.c linux-azure-5.4.0/drivers/edac/i10nm_base.c --- linux-azure-5.4.0/drivers/edac/i10nm_base.c +++ linux-azure-5.4.0/drivers/edac/i10nm_base.c @@ -26,8 +26,8 @@ pci_read_config_dword((d)->uracu, 0xd8 + (i) * 4, &(reg)) #define I10NM_GET_DIMMMTR(m, i, j) \ readl((m)->mbase + 0x2080c + (i) * 0x4000 + (j) * 4) -#define I10NM_GET_MCDDRTCFG(m, i, j) \ - readl((m)->mbase + 0x20970 + (i) * 0x4000 + (j) * 4) +#define I10NM_GET_MCDDRTCFG(m, i) \ + readl((m)->mbase + 0x20970 + (i) * 0x4000) #define I10NM_GET_MCMTR(m, i) \ readl((m)->mbase + 0x20ef8 + (i) * 0x4000) @@ -156,11 +156,11 @@ continue; ndimms = 0; + mcddrtcfg = I10NM_GET_MCDDRTCFG(imc, i); for (j = 0; j < I10NM_NUM_DIMMS; j++) { dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers, i, j, 0); mtr = I10NM_GET_DIMMMTR(imc, i, j); - mcddrtcfg = I10NM_GET_MCDDRTCFG(imc, i, j); edac_dbg(1, "dimmmtr 0x%x mcddrtcfg 0x%x (mc%d ch%d dimm%d)\n", mtr, mcddrtcfg, imc->mc, i, j); @@ -249,6 +249,9 @@ if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR))) return -EBUSY; + if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) + return -ENODEV; + id = x86_match_cpu(i10nm_cpuids); if (!id) return -ENODEV; diff -u linux-azure-5.4.0/drivers/edac/pnd2_edac.c linux-azure-5.4.0/drivers/edac/pnd2_edac.c --- linux-azure-5.4.0/drivers/edac/pnd2_edac.c +++ linux-azure-5.4.0/drivers/edac/pnd2_edac.c @@ -1555,6 +1555,9 @@ if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR))) return -EBUSY; + if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) + return -ENODEV; + id = x86_match_cpu(pnd2_cpuids); if (!id) return -ENODEV; diff -u linux-azure-5.4.0/drivers/edac/sb_edac.c linux-azure-5.4.0/drivers/edac/sb_edac.c --- linux-azure-5.4.0/drivers/edac/sb_edac.c +++ linux-azure-5.4.0/drivers/edac/sb_edac.c @@ -1055,7 +1055,7 @@ pci_read_config_dword(pvt->info.pci_vtd, HASWELL_TOHM_1, ®); rc = ((reg << 6) | rc) << 26; - return rc | 0x1ffffff; + return rc | 0x3ffffff; } static u64 knl_get_tolm(struct sbridge_pvt *pvt) @@ -3512,6 +3512,9 @@ if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR))) return -EBUSY; + if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) + return -ENODEV; + id = x86_match_cpu(sbridge_cpuids); if (!id) return -ENODEV; diff -u linux-azure-5.4.0/drivers/edac/skx_base.c linux-azure-5.4.0/drivers/edac/skx_base.c --- linux-azure-5.4.0/drivers/edac/skx_base.c +++ linux-azure-5.4.0/drivers/edac/skx_base.c @@ -605,6 +605,9 @@ if (owner && strncmp(owner, EDAC_MOD_STR, sizeof(EDAC_MOD_STR))) return -EBUSY; + if (cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) + return -ENODEV; + id = x86_match_cpu(skx_cpuids); if (!id) return -ENODEV; diff -u linux-azure-5.4.0/drivers/edac/synopsys_edac.c linux-azure-5.4.0/drivers/edac/synopsys_edac.c --- linux-azure-5.4.0/drivers/edac/synopsys_edac.c +++ linux-azure-5.4.0/drivers/edac/synopsys_edac.c @@ -163,6 +163,11 @@ #define ECC_STAT_CECNT_SHIFT 8 #define ECC_STAT_BITNUM_MASK 0x7F +/* ECC error count register definitions */ +#define ECC_ERRCNT_UECNT_MASK 0xFFFF0000 +#define ECC_ERRCNT_UECNT_SHIFT 16 +#define ECC_ERRCNT_CECNT_MASK 0xFFFF + /* DDR QOS Interrupt register definitions */ #define DDR_QOS_IRQ_STAT_OFST 0x20200 #define DDR_QOSUE_MASK 0x4 @@ -418,15 +423,16 @@ base = priv->baseaddr; p = &priv->stat; + regval = readl(base + ECC_ERRCNT_OFST); + p->ce_cnt = regval & ECC_ERRCNT_CECNT_MASK; + p->ue_cnt = (regval & ECC_ERRCNT_UECNT_MASK) >> ECC_ERRCNT_UECNT_SHIFT; + if (!p->ce_cnt) + goto ue_err; + regval = readl(base + ECC_STAT_OFST); if (!regval) return 1; - p->ce_cnt = (regval & ECC_STAT_CECNT_MASK) >> ECC_STAT_CECNT_SHIFT; - p->ue_cnt = (regval & ECC_STAT_UECNT_MASK) >> ECC_STAT_UECNT_SHIFT; - if (!p->ce_cnt) - goto ue_err; - p->ceinfo.bitpos = (regval & ECC_STAT_BITNUM_MASK); regval = readl(base + ECC_CEADDR0_OFST); @@ -782,7 +788,7 @@ for (j = 0; j < csi->nr_channels; j++) { dimm = csi->channels[j]->dimm; - dimm->edac_mode = EDAC_FLAG_SECDED; + dimm->edac_mode = EDAC_SECDED; dimm->mtype = p_data->get_mtype(priv->baseaddr); dimm->nr_pages = (size >> PAGE_SHIFT) / csi->nr_channels; dimm->grain = SYNPS_EDAC_ERR_GRAIN; @@ -1351,8 +1357,7 @@ } } - if (of_device_is_compatible(pdev->dev.of_node, - "xlnx,zynqmp-ddrc-2.40a")) + if (priv->p_data->quirks & DDR_ECC_INTR_SUPPORT) setup_address_map(priv); #endif diff -u linux-azure-5.4.0/drivers/edac/ti_edac.c linux-azure-5.4.0/drivers/edac/ti_edac.c --- linux-azure-5.4.0/drivers/edac/ti_edac.c +++ linux-azure-5.4.0/drivers/edac/ti_edac.c @@ -197,6 +197,7 @@ { .compatible = "ti,emif-dra7xx", .data = (void *)EMIF_TYPE_DRA7 }, {}, }; +MODULE_DEVICE_TABLE(of, ti_edac_of_match); static int _emif_get_id(struct device_node *node) { diff -u linux-azure-5.4.0/drivers/extcon/extcon-sm5502.c linux-azure-5.4.0/drivers/extcon/extcon-sm5502.c --- linux-azure-5.4.0/drivers/extcon/extcon-sm5502.c +++ linux-azure-5.4.0/drivers/extcon/extcon-sm5502.c @@ -88,7 +88,6 @@ | SM5502_REG_INTM2_MHL_MASK, .invert = true, }, - { } }; /* List of detectable cables */ diff -u linux-azure-5.4.0/drivers/extcon/extcon.c linux-azure-5.4.0/drivers/extcon/extcon.c --- linux-azure-5.4.0/drivers/extcon/extcon.c +++ linux-azure-5.4.0/drivers/extcon/extcon.c @@ -1230,19 +1230,14 @@ edev->dev.type = &edev->extcon_dev_type; } - ret = device_register(&edev->dev); - if (ret) { - put_device(&edev->dev); - goto err_dev; - } - spin_lock_init(&edev->lock); - edev->nh = devm_kcalloc(&edev->dev, edev->max_supported, - sizeof(*edev->nh), GFP_KERNEL); - if (!edev->nh) { - ret = -ENOMEM; - device_unregister(&edev->dev); - goto err_dev; + if (edev->max_supported) { + edev->nh = kcalloc(edev->max_supported, sizeof(*edev->nh), + GFP_KERNEL); + if (!edev->nh) { + ret = -ENOMEM; + goto err_alloc_nh; + } } for (index = 0; index < edev->max_supported; index++) @@ -1253,6 +1248,12 @@ dev_set_drvdata(&edev->dev, edev); edev->state = 0; + ret = device_register(&edev->dev); + if (ret) { + put_device(&edev->dev); + goto err_dev; + } + mutex_lock(&extcon_dev_list_lock); list_add(&edev->entry, &extcon_dev_list); mutex_unlock(&extcon_dev_list_lock); @@ -1261,6 +1262,9 @@ err_dev: if (edev->max_supported) + kfree(edev->nh); +err_alloc_nh: + if (edev->max_supported) kfree(edev->extcon_dev_type.groups); err_alloc_groups: if (edev->max_supported && edev->mutually_exclusive) { @@ -1320,6 +1324,7 @@ if (edev->max_supported) { kfree(edev->extcon_dev_type.groups); kfree(edev->cables); + kfree(edev->nh); } put_device(&edev->dev); diff -u linux-azure-5.4.0/drivers/firmware/arm_scmi/base.c linux-azure-5.4.0/drivers/firmware/arm_scmi/base.c --- linux-azure-5.4.0/drivers/firmware/arm_scmi/base.c +++ linux-azure-5.4.0/drivers/firmware/arm_scmi/base.c @@ -164,7 +164,7 @@ break; loop_num_ret = le32_to_cpu(*num_ret); - if (tot_num_ret + loop_num_ret > MAX_PROTOCOLS_IMP) { + if (loop_num_ret > MAX_PROTOCOLS_IMP - tot_num_ret) { dev_err(dev, "No. of Protocol > MAX_PROTOCOLS_IMP"); break; } diff -u linux-azure-5.4.0/drivers/firmware/arm_scmi/bus.c linux-azure-5.4.0/drivers/firmware/arm_scmi/bus.c --- linux-azure-5.4.0/drivers/firmware/arm_scmi/bus.c +++ linux-azure-5.4.0/drivers/firmware/arm_scmi/bus.c @@ -100,6 +100,9 @@ { int retval; + if (!driver->probe) + return -EINVAL; + driver->driver.bus = &scmi_bus_type; driver->driver.name = driver->name; driver->driver.owner = owner; diff -u linux-azure-5.4.0/drivers/firmware/arm_scmi/driver.c linux-azure-5.4.0/drivers/firmware/arm_scmi/driver.c --- linux-azure-5.4.0/drivers/firmware/arm_scmi/driver.c +++ linux-azure-5.4.0/drivers/firmware/arm_scmi/driver.c @@ -54,7 +54,6 @@ SCMI_ERR_GENERIC = -8, /* Generic Error */ SCMI_ERR_HARDWARE = -9, /* Hardware Error */ SCMI_ERR_PROTOCOL = -10,/* Protocol Error */ - SCMI_ERR_MAX }; /* List of all SCMI devices active in system */ @@ -176,8 +175,10 @@ static inline int scmi_to_linux_errno(int errno) { - if (errno < SCMI_SUCCESS && errno > SCMI_ERR_MAX) - return scmi_linux_errmap[-errno]; + int err_idx = -errno; + + if (err_idx >= SCMI_SUCCESS && err_idx < ARRAY_SIZE(scmi_linux_errmap)) + return scmi_linux_errmap[err_idx]; return -EIO; } @@ -370,6 +371,10 @@ xfer = &minfo->xfer_block[xfer_id]; + /* rx.len could be shrunk in the sync do_xfer, so reset to maxsz */ + if (msg_type == MSG_TYPE_DELAYED_RESP) + xfer->rx.len = info->desc->max_msg_size; + scmi_dump_header_dbg(dev, &xfer->hdr); scmi_fetch_response(xfer, mem); @@ -510,8 +515,12 @@ xfer->async_done = &async_response; ret = scmi_do_xfer(handle, xfer); - if (!ret && !wait_for_completion_timeout(xfer->async_done, timeout)) - ret = -ETIMEDOUT; + if (!ret) { + if (!wait_for_completion_timeout(xfer->async_done, timeout)) + ret = -ETIMEDOUT; + else if (xfer->hdr.status) + ret = scmi_to_linux_errno(xfer->hdr.status); + } xfer->async_done = NULL; return ret; @@ -689,8 +698,9 @@ struct scmi_xfers_info *info = &sinfo->tx_minfo; /* Pre-allocated messages, no more than what hdr.seq can support */ - if (WARN_ON(desc->max_msg >= MSG_TOKEN_MAX)) { - dev_err(dev, "Maximum message of %d exceeds supported %ld\n", + if (WARN_ON(!desc->max_msg || desc->max_msg > MSG_TOKEN_MAX)) { + dev_err(dev, + "Invalid maximum messages %d, not in range [1 - %lu]\n", desc->max_msg, MSG_TOKEN_MAX); return -EINVAL; } @@ -973,7 +983,7 @@ module_platform_driver(scmi_driver); -MODULE_ALIAS("platform: arm-scmi"); +MODULE_ALIAS("platform:arm-scmi"); MODULE_AUTHOR("Sudeep Holla "); MODULE_DESCRIPTION("ARM SCMI protocol driver"); MODULE_LICENSE("GPL v2"); diff -u linux-azure-5.4.0/drivers/firmware/arm_scmi/scmi_pm_domain.c linux-azure-5.4.0/drivers/firmware/arm_scmi/scmi_pm_domain.c --- linux-azure-5.4.0/drivers/firmware/arm_scmi/scmi_pm_domain.c +++ linux-azure-5.4.0/drivers/firmware/arm_scmi/scmi_pm_domain.c @@ -106,9 +106,26 @@ scmi_pd_data->domains = domains; scmi_pd_data->num_domains = num_domains; - of_genpd_add_provider_onecell(np, scmi_pd_data); + dev_set_drvdata(dev, scmi_pd_data); - return 0; + return of_genpd_add_provider_onecell(np, scmi_pd_data); +} + +static void scmi_pm_domain_remove(struct scmi_device *sdev) +{ + int i; + struct genpd_onecell_data *scmi_pd_data; + struct device *dev = &sdev->dev; + struct device_node *np = dev->of_node; + + of_genpd_del_provider(np); + + scmi_pd_data = dev_get_drvdata(dev); + for (i = 0; i < scmi_pd_data->num_domains; i++) { + if (!scmi_pd_data->domains[i]) + continue; + pm_genpd_remove(scmi_pd_data->domains[i]); + } } static const struct scmi_device_id scmi_id_table[] = { @@ -120,6 +137,7 @@ static struct scmi_driver scmi_power_domain_driver = { .name = "scmi-power-domain", .probe = scmi_pm_domain_probe, + .remove = scmi_pm_domain_remove, .id_table = scmi_id_table, }; module_scmi_driver(scmi_power_domain_driver); diff -u linux-azure-5.4.0/drivers/firmware/arm_scpi.c linux-azure-5.4.0/drivers/firmware/arm_scpi.c --- linux-azure-5.4.0/drivers/firmware/arm_scpi.c +++ linux-azure-5.4.0/drivers/firmware/arm_scpi.c @@ -815,7 +815,7 @@ info->firmware_version = le32_to_cpu(caps.platform_version); } /* Ignore error if not implemented */ - if (scpi_info->is_legacy && ret == -EOPNOTSUPP) + if (info->is_legacy && ret == -EOPNOTSUPP) return 0; return ret; @@ -905,13 +905,14 @@ struct resource res; struct device *dev = &pdev->dev; struct device_node *np = dev->of_node; + struct scpi_drvinfo *scpi_drvinfo; - scpi_info = devm_kzalloc(dev, sizeof(*scpi_info), GFP_KERNEL); - if (!scpi_info) + scpi_drvinfo = devm_kzalloc(dev, sizeof(*scpi_drvinfo), GFP_KERNEL); + if (!scpi_drvinfo) return -ENOMEM; if (of_match_device(legacy_scpi_of_match, &pdev->dev)) - scpi_info->is_legacy = true; + scpi_drvinfo->is_legacy = true; count = of_count_phandle_with_args(np, "mboxes", "#mbox-cells"); if (count < 0) { @@ -919,19 +920,19 @@ return -ENODEV; } - scpi_info->channels = devm_kcalloc(dev, count, sizeof(struct scpi_chan), - GFP_KERNEL); - if (!scpi_info->channels) + scpi_drvinfo->channels = + devm_kcalloc(dev, count, sizeof(struct scpi_chan), GFP_KERNEL); + if (!scpi_drvinfo->channels) return -ENOMEM; - ret = devm_add_action(dev, scpi_free_channels, scpi_info); + ret = devm_add_action(dev, scpi_free_channels, scpi_drvinfo); if (ret) return ret; - for (; scpi_info->num_chans < count; scpi_info->num_chans++) { + for (; scpi_drvinfo->num_chans < count; scpi_drvinfo->num_chans++) { resource_size_t size; - int idx = scpi_info->num_chans; - struct scpi_chan *pchan = scpi_info->channels + idx; + int idx = scpi_drvinfo->num_chans; + struct scpi_chan *pchan = scpi_drvinfo->channels + idx; struct mbox_client *cl = &pchan->cl; struct device_node *shmem = of_parse_phandle(np, "shmem", idx); @@ -975,45 +976,53 @@ return ret; } - scpi_info->commands = scpi_std_commands; + scpi_drvinfo->commands = scpi_std_commands; - platform_set_drvdata(pdev, scpi_info); + platform_set_drvdata(pdev, scpi_drvinfo); - if (scpi_info->is_legacy) { + if (scpi_drvinfo->is_legacy) { /* Replace with legacy variants */ scpi_ops.clk_set_val = legacy_scpi_clk_set_val; - scpi_info->commands = scpi_legacy_commands; + scpi_drvinfo->commands = scpi_legacy_commands; /* Fill priority bitmap */ for (idx = 0; idx < ARRAY_SIZE(legacy_hpriority_cmds); idx++) set_bit(legacy_hpriority_cmds[idx], - scpi_info->cmd_priority); + scpi_drvinfo->cmd_priority); } - ret = scpi_init_versions(scpi_info); + scpi_info = scpi_drvinfo; + + ret = scpi_init_versions(scpi_drvinfo); if (ret) { dev_err(dev, "incorrect or no SCP firmware found\n"); + scpi_info = NULL; return ret; } - if (scpi_info->is_legacy && !scpi_info->protocol_version && - !scpi_info->firmware_version) + if (scpi_drvinfo->is_legacy && !scpi_drvinfo->protocol_version && + !scpi_drvinfo->firmware_version) dev_info(dev, "SCP Protocol legacy pre-1.0 firmware\n"); else dev_info(dev, "SCP Protocol %lu.%lu Firmware %lu.%lu.%lu version\n", FIELD_GET(PROTO_REV_MAJOR_MASK, - scpi_info->protocol_version), + scpi_drvinfo->protocol_version), FIELD_GET(PROTO_REV_MINOR_MASK, - scpi_info->protocol_version), + scpi_drvinfo->protocol_version), FIELD_GET(FW_REV_MAJOR_MASK, - scpi_info->firmware_version), + scpi_drvinfo->firmware_version), FIELD_GET(FW_REV_MINOR_MASK, - scpi_info->firmware_version), + scpi_drvinfo->firmware_version), FIELD_GET(FW_REV_PATCH_MASK, - scpi_info->firmware_version)); - scpi_info->scpi_ops = &scpi_ops; + scpi_drvinfo->firmware_version)); + + scpi_drvinfo->scpi_ops = &scpi_ops; - return devm_of_platform_populate(dev); + ret = devm_of_platform_populate(dev); + if (ret) + scpi_info = NULL; + + return ret; } static const struct of_device_id scpi_of_match[] = { diff -u linux-azure-5.4.0/drivers/firmware/efi/Makefile linux-azure-5.4.0/drivers/firmware/efi/Makefile --- linux-azure-5.4.0/drivers/firmware/efi/Makefile +++ linux-azure-5.4.0/drivers/firmware/efi/Makefile @@ -27,6 +27,7 @@ obj-$(CONFIG_EFI) += secureboot.o obj-$(CONFIG_APPLE_PROPERTIES) += apple-properties.o obj-$(CONFIG_EFI_RCI2_TABLE) += rci2-table.o +obj-$(CONFIG_LOAD_UEFI_KEYS) += mokvar-table.o arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o obj-$(CONFIG_ARM) += $(arm-obj-y) diff -u linux-azure-5.4.0/drivers/firmware/efi/arm-init.c linux-azure-5.4.0/drivers/firmware/efi/arm-init.c --- linux-azure-5.4.0/drivers/firmware/efi/arm-init.c +++ linux-azure-5.4.0/drivers/firmware/efi/arm-init.c @@ -263,6 +263,7 @@ reserve_regions(); efi_esrt_init(); + efi_mokvar_table_init(); memblock_reserve(params.mmap & PAGE_MASK, PAGE_ALIGN(params.mmap_size + diff -u linux-azure-5.4.0/drivers/firmware/efi/efi.c linux-azure-5.4.0/drivers/firmware/efi/efi.c --- linux-azure-5.4.0/drivers/firmware/efi/efi.c +++ linux-azure-5.4.0/drivers/firmware/efi/efi.c @@ -53,6 +53,9 @@ .rng_seed = EFI_INVALID_TABLE_ADDR, .tpm_log = EFI_INVALID_TABLE_ADDR, .tpm_final_log = EFI_INVALID_TABLE_ADDR, +#ifdef CONFIG_LOAD_UEFI_KEYS + .mokvar_table = EFI_INVALID_TABLE_ADDR, +#endif .mem_reserve = EFI_INVALID_TABLE_ADDR, }; EXPORT_SYMBOL(efi); @@ -232,7 +235,7 @@ memcpy(efivar_ssdt, str, strlen(str)); else pr_warn("efivar_ssdt: name too long: %s\n", str); - return 0; + return 1; } __setup("efivar_ssdt=", efivar_ssdt_setup); @@ -480,6 +483,9 @@ #ifdef CONFIG_EFI_RCI2_TABLE {DELLEMC_EFI_RCI2_TABLE_GUID, NULL, &rci2_table_phys}, #endif +#ifdef CONFIG_LOAD_UEFI_KEYS + {LINUX_EFI_MOK_VARIABLE_TABLE_GUID, "MOKvar", &efi.mokvar_table}, +#endif {NULL_GUID, NULL, NULL}, }; @@ -547,7 +553,7 @@ seed = early_memremap(efi.rng_seed, sizeof(*seed)); if (seed != NULL) { - size = READ_ONCE(seed->size); + size = min(seed->size, EFI_RANDOM_SEED_SIZE); early_memunmap(seed, sizeof(*seed)); } else { pr_err("Could not map UEFI random seed!\n"); @@ -1038,6 +1044,7 @@ static int efi_mem_reserve_iomem(phys_addr_t addr, u64 size) { struct resource *res, *parent; + int ret; res = kzalloc(sizeof(struct resource), GFP_ATOMIC); if (!res) @@ -1050,7 +1057,17 @@ /* we expect a conflict with a 'System RAM' region */ parent = request_resource_conflict(&iomem_resource, res); - return parent ? request_resource(parent, res) : 0; + ret = parent ? request_resource(parent, res) : 0; + + /* + * Given that efi_mem_reserve_iomem() can be called at any + * time, only call memblock_reserve() if the architecture + * keeps the infrastructure around. + */ + if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK) && !ret) + memblock_reserve(addr, size); + + return ret; } int __ref efi_mem_reserve_persistent(phys_addr_t addr, u64 size) diff -u linux-azure-5.4.0/drivers/firmware/efi/libstub/fdt.c linux-azure-5.4.0/drivers/firmware/efi/libstub/fdt.c --- linux-azure-5.4.0/drivers/firmware/efi/libstub/fdt.c +++ linux-azure-5.4.0/drivers/firmware/efi/libstub/fdt.c @@ -297,14 +297,6 @@ goto fail; } - /* - * Now that we have done our final memory allocation (and free) - * we can get the memory map key needed for exit_boot_services(). - */ - status = efi_get_memory_map(sys_table, &map); - if (status != EFI_SUCCESS) - goto fail_free_new_fdt; - status = update_fdt(sys_table, (void *)fdt_addr, fdt_size, (void *)*new_fdt_addr, MAX_FDT_SIZE, cmdline_ptr, initrd_addr, initrd_size); diff -u linux-azure-5.4.0/drivers/firmware/efi/tpm.c linux-azure-5.4.0/drivers/firmware/efi/tpm.c --- linux-azure-5.4.0/drivers/firmware/efi/tpm.c +++ linux-azure-5.4.0/drivers/firmware/efi/tpm.c @@ -62,9 +62,11 @@ tbl_size = sizeof(*log_tbl) + log_tbl->size; memblock_reserve(efi.tpm_log, tbl_size); - if (efi.tpm_final_log == EFI_INVALID_TABLE_ADDR || - log_tbl->version != EFI_TCG2_EVENT_LOG_FORMAT_TCG_2) { - pr_warn(FW_BUG "TPM Final Events table missing or invalid\n"); + if (efi.tpm_final_log == EFI_INVALID_TABLE_ADDR) { + pr_info("TPM Final Events table not present\n"); + goto out; + } else if (log_tbl->version != EFI_TCG2_EVENT_LOG_FORMAT_TCG_2) { + pr_warn(FW_BUG "TPM Final Events table invalid\n"); goto out; } diff -u linux-azure-5.4.0/drivers/firmware/psci/psci_checker.c linux-azure-5.4.0/drivers/firmware/psci/psci_checker.c --- linux-azure-5.4.0/drivers/firmware/psci/psci_checker.c +++ linux-azure-5.4.0/drivers/firmware/psci/psci_checker.c @@ -155,7 +155,7 @@ if (!alloc_cpumask_var(&tmp, GFP_KERNEL)) return -ENOMEM; - cpu_groups = kcalloc(nb_available_cpus, sizeof(cpu_groups), + cpu_groups = kcalloc(nb_available_cpus, sizeof(*cpu_groups), GFP_KERNEL); if (!cpu_groups) { free_cpumask_var(tmp); diff -u linux-azure-5.4.0/drivers/firmware/qemu_fw_cfg.c linux-azure-5.4.0/drivers/firmware/qemu_fw_cfg.c --- linux-azure-5.4.0/drivers/firmware/qemu_fw_cfg.c +++ linux-azure-5.4.0/drivers/firmware/qemu_fw_cfg.c @@ -296,15 +296,13 @@ return 0; } -static ssize_t fw_cfg_showrev(struct kobject *k, struct attribute *a, char *buf) +static ssize_t fw_cfg_showrev(struct kobject *k, struct kobj_attribute *a, + char *buf) { return sprintf(buf, "%u\n", fw_cfg_rev); } -static const struct { - struct attribute attr; - ssize_t (*show)(struct kobject *k, struct attribute *a, char *buf); -} fw_cfg_rev_attr = { +static const struct kobj_attribute fw_cfg_rev_attr = { .attr = { .name = "rev", .mode = S_IRUSR }, .show = fw_cfg_showrev, }; @@ -387,9 +385,7 @@ struct fw_cfg_sysfs_entry *entry, *next; list_for_each_entry_safe(entry, next, &fw_cfg_entry_cache, list) { - /* will end up invoking fw_cfg_sysfs_cache_delist() - * via each object's release() method (i.e. destructor) - */ + fw_cfg_sysfs_cache_delist(entry); kobject_put(&entry->kobj); } } @@ -447,7 +443,6 @@ { struct fw_cfg_sysfs_entry *entry = to_entry(kobj); - fw_cfg_sysfs_cache_delist(entry); kfree(entry); } @@ -600,20 +595,18 @@ /* set file entry information */ entry->size = be32_to_cpu(f->size); entry->select = be16_to_cpu(f->select); - memcpy(entry->name, f->name, FW_CFG_MAX_FILE_PATH); + strscpy(entry->name, f->name, FW_CFG_MAX_FILE_PATH); /* register entry under "/sys/firmware/qemu_fw_cfg/by_key/" */ err = kobject_init_and_add(&entry->kobj, &fw_cfg_sysfs_entry_ktype, fw_cfg_sel_ko, "%d", entry->select); - if (err) { - kobject_put(&entry->kobj); - return err; - } + if (err) + goto err_put_entry; /* add raw binary content access */ err = sysfs_create_bin_file(&entry->kobj, &fw_cfg_sysfs_attr_raw); if (err) - goto err_add_raw; + goto err_del_entry; /* try adding "/sys/firmware/qemu_fw_cfg/by_name/" symlink */ fw_cfg_build_symlink(fw_cfg_fname_kset, &entry->kobj, entry->name); @@ -622,9 +615,10 @@ fw_cfg_sysfs_cache_enlist(entry); return 0; -err_add_raw: +err_del_entry: kobject_del(&entry->kobj); - kfree(entry); +err_put_entry: + kobject_put(&entry->kobj); return err; } diff -u linux-azure-5.4.0/drivers/fsi/fsi-core.c linux-azure-5.4.0/drivers/fsi/fsi-core.c --- linux-azure-5.4.0/drivers/fsi/fsi-core.c +++ linux-azure-5.4.0/drivers/fsi/fsi-core.c @@ -718,7 +718,7 @@ rc = count; fail: *offset = off; - return count; + return rc; } static ssize_t cfam_write(struct file *filep, const char __user *buf, @@ -755,7 +755,7 @@ rc = count; fail: *offset = off; - return count; + return rc; } static loff_t cfam_llseek(struct file *file, loff_t offset, int whence) @@ -1271,6 +1271,9 @@ mutex_init(&master->scan_lock); master->idx = ida_simple_get(&master_ida, 0, INT_MAX, GFP_KERNEL); + if (master->idx < 0) + return master->idx; + dev_set_name(&master->dev, "fsi%d", master->idx); rc = device_register(&master->dev); diff -u linux-azure-5.4.0/drivers/gpio/Kconfig linux-azure-5.4.0/drivers/gpio/Kconfig --- linux-azure-5.4.0/drivers/gpio/Kconfig +++ linux-azure-5.4.0/drivers/gpio/Kconfig @@ -1232,6 +1232,7 @@ config GPIO_TQMX86 tristate "TQ-Systems QTMX86 GPIO" depends on MFD_TQMX86 || COMPILE_TEST + depends on HAS_IOPORT_MAP select GPIOLIB_IRQCHIP help This driver supports GPIO on the TQMX86 IO controller. @@ -1299,6 +1300,7 @@ config GPIO_AMD8111 tristate "AMD 8111 GPIO driver" depends on X86 || COMPILE_TEST + depends on HAS_IOPORT_MAP help The AMD 8111 south bridge contains 32 GPIO pins which can be used. diff -u linux-azure-5.4.0/drivers/gpio/gpio-aspeed.c linux-azure-5.4.0/drivers/gpio/gpio-aspeed.c --- linux-azure-5.4.0/drivers/gpio/gpio-aspeed.c +++ linux-azure-5.4.0/drivers/gpio/gpio-aspeed.c @@ -53,7 +53,7 @@ struct aspeed_gpio { struct gpio_chip chip; struct irq_chip irqc; - spinlock_t lock; + raw_spinlock_t lock; void __iomem *base; int irq; const struct aspeed_gpio_config *config; @@ -413,14 +413,14 @@ unsigned long flags; bool copro; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); copro = aspeed_gpio_copro_request(gpio, offset); __aspeed_gpio_set(gc, offset, val); if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); } static int aspeed_gpio_dir_in(struct gpio_chip *gc, unsigned int offset) @@ -435,7 +435,7 @@ if (!have_input(gpio, offset)) return -ENOTSUPP; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); reg = ioread32(addr); reg &= ~GPIO_BIT(offset); @@ -445,7 +445,7 @@ if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return 0; } @@ -463,7 +463,7 @@ if (!have_output(gpio, offset)) return -ENOTSUPP; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); reg = ioread32(addr); reg |= GPIO_BIT(offset); @@ -474,7 +474,7 @@ if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return 0; } @@ -492,11 +492,11 @@ if (!have_output(gpio, offset)) return 1; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); val = ioread32(bank_reg(gpio, bank, reg_dir)) & GPIO_BIT(offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return !val; @@ -540,14 +540,14 @@ status_addr = bank_reg(gpio, bank, reg_irq_status); - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); copro = aspeed_gpio_copro_request(gpio, offset); iowrite32(bit, status_addr); if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); } static void aspeed_gpio_irq_set_mask(struct irq_data *d, bool set) @@ -566,7 +566,7 @@ addr = bank_reg(gpio, bank, reg_irq_enable); - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); copro = aspeed_gpio_copro_request(gpio, offset); reg = ioread32(addr); @@ -578,7 +578,7 @@ if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); } static void aspeed_gpio_irq_mask(struct irq_data *d) @@ -630,7 +630,7 @@ return -EINVAL; } - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); copro = aspeed_gpio_copro_request(gpio, offset); addr = bank_reg(gpio, bank, reg_irq_type0); @@ -650,7 +650,7 @@ if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); irq_set_handler_locked(d, handler); @@ -720,7 +720,7 @@ treg = bank_reg(gpio, to_bank(offset), reg_tolerance); - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); copro = aspeed_gpio_copro_request(gpio, offset); val = readl(treg); @@ -734,7 +734,7 @@ if (copro) aspeed_gpio_copro_release(gpio, offset); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return 0; } @@ -860,7 +860,7 @@ return rc; } - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); if (timer_allocation_registered(gpio, offset)) { rc = unregister_allocated_timer(gpio, offset); @@ -920,7 +920,7 @@ configure_timer(gpio, offset, i); out: - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return rc; } @@ -931,13 +931,13 @@ unsigned long flags; int rc; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); rc = unregister_allocated_timer(gpio, offset); if (!rc) configure_timer(gpio, offset, 0); - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return rc; } @@ -1019,7 +1019,7 @@ return -EINVAL; bindex = offset >> 3; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); /* Sanity check, this shouldn't happen */ if (gpio->cf_copro_bankmap[bindex] == 0xff) { @@ -1040,7 +1040,7 @@ if (bit) *bit = GPIO_OFFSET(offset); bail: - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return rc; } EXPORT_SYMBOL_GPL(aspeed_gpio_copro_grab_gpio); @@ -1064,7 +1064,7 @@ return -EINVAL; bindex = offset >> 3; - spin_lock_irqsave(&gpio->lock, flags); + raw_spin_lock_irqsave(&gpio->lock, flags); /* Sanity check, this shouldn't happen */ if (gpio->cf_copro_bankmap[bindex] == 0) { @@ -1078,7 +1078,7 @@ aspeed_gpio_change_cmd_source(gpio, bank, bindex, GPIO_CMDSRC_ARM); bail: - spin_unlock_irqrestore(&gpio->lock, flags); + raw_spin_unlock_irqrestore(&gpio->lock, flags); return rc; } EXPORT_SYMBOL_GPL(aspeed_gpio_copro_release_gpio); @@ -1151,7 +1151,7 @@ if (IS_ERR(gpio->base)) return PTR_ERR(gpio->base); - spin_lock_init(&gpio->lock); + raw_spin_lock_init(&gpio->lock); gpio_id = of_match_node(aspeed_gpio_of_table, pdev->dev.of_node); if (!gpio_id) diff -u linux-azure-5.4.0/drivers/gpio/gpio-mpc8xxx.c linux-azure-5.4.0/drivers/gpio/gpio-mpc8xxx.c --- linux-azure-5.4.0/drivers/gpio/gpio-mpc8xxx.c +++ linux-azure-5.4.0/drivers/gpio/gpio-mpc8xxx.c @@ -190,6 +190,7 @@ switch (flow_type) { case IRQ_TYPE_EDGE_FALLING: + case IRQ_TYPE_LEVEL_LOW: raw_spin_lock_irqsave(&mpc8xxx_gc->lock, flags); gc->write_reg(mpc8xxx_gc->regs + GPIO_ICR, gc->read_reg(mpc8xxx_gc->regs + GPIO_ICR) diff -u linux-azure-5.4.0/drivers/gpio/gpio-mvebu.c linux-azure-5.4.0/drivers/gpio/gpio-mvebu.c --- linux-azure-5.4.0/drivers/gpio/gpio-mvebu.c +++ linux-azure-5.4.0/drivers/gpio/gpio-mvebu.c @@ -697,6 +697,9 @@ unsigned long flags; unsigned int on, off; + if (state->polarity != PWM_POLARITY_NORMAL) + return -EINVAL; + val = (unsigned long long) mvpwm->clk_rate * state->duty_cycle; do_div(val, NSEC_PER_SEC); if (val > UINT_MAX) diff -u linux-azure-5.4.0/drivers/gpio/gpio-pca953x.c linux-azure-5.4.0/drivers/gpio/gpio-pca953x.c --- linux-azure-5.4.0/drivers/gpio/gpio-pca953x.c +++ linux-azure-5.4.0/drivers/gpio/gpio-pca953x.c @@ -379,6 +379,9 @@ .reg_bits = 8, .val_bits = 8, + .use_single_read = true, + .use_single_write = true, + .readable_reg = pca953x_readable_register, .writeable_reg = pca953x_writeable_register, .volatile_reg = pca953x_volatile_register, @@ -583,21 +586,21 @@ mutex_lock(&chip->i2c_lock); - /* Disable pull-up/pull-down */ - ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, 0); - if (ret) - goto exit; - /* Configure pull-up/pull-down */ if (config == PIN_CONFIG_BIAS_PULL_UP) ret = regmap_write_bits(chip->regmap, pull_sel_reg, bit, bit); else if (config == PIN_CONFIG_BIAS_PULL_DOWN) ret = regmap_write_bits(chip->regmap, pull_sel_reg, bit, 0); + else + ret = 0; if (ret) goto exit; - /* Enable pull-up/pull-down */ - ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, bit); + /* Disable/Enable pull-up/pull-down */ + if (config == PIN_CONFIG_BIAS_DISABLE) + ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, 0); + else + ret = regmap_write_bits(chip->regmap, pull_en_reg, bit, bit); exit: mutex_unlock(&chip->i2c_lock); @@ -611,7 +614,9 @@ switch (pinconf_to_config_param(config)) { case PIN_CONFIG_BIAS_PULL_UP: + case PIN_CONFIG_BIAS_PULL_PIN_DEFAULT: case PIN_CONFIG_BIAS_PULL_DOWN: + case PIN_CONFIG_BIAS_DISABLE: return pca953x_gpio_set_pull_up_down(chip, offset, config); default: return -ENOTSUPP; @@ -1193,7 +1198,9 @@ { struct pca953x_chip *chip = dev_get_drvdata(dev); + mutex_lock(&chip->i2c_lock); regcache_cache_only(chip->regmap, true); + mutex_unlock(&chip->i2c_lock); if (atomic_read(&chip->wakeup_path)) device_set_wakeup_path(dev); @@ -1216,13 +1223,17 @@ } } + mutex_lock(&chip->i2c_lock); regcache_cache_only(chip->regmap, false); regcache_mark_dirty(chip->regmap); ret = pca953x_regcache_sync(dev); - if (ret) + if (ret) { + mutex_unlock(&chip->i2c_lock); return ret; + } ret = regcache_sync(chip->regmap); + mutex_unlock(&chip->i2c_lock); if (ret) { dev_err(dev, "Failed to restore register map: %d\n", ret); return ret; @@ -1272,6 +1283,7 @@ { .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), }, { .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), }, + { .compatible = "onnn,pca9655", .data = OF_953X(16, PCA_INT), }, { .compatible = "exar,xra1202", .data = OF_953X( 8, 0), }, { } diff -u linux-azure-5.4.0/drivers/gpio/gpio-zynq.c linux-azure-5.4.0/drivers/gpio/gpio-zynq.c --- linux-azure-5.4.0/drivers/gpio/gpio-zynq.c +++ linux-azure-5.4.0/drivers/gpio/gpio-zynq.c @@ -938,8 +938,11 @@ static int zynq_gpio_remove(struct platform_device *pdev) { struct zynq_gpio *gpio = platform_get_drvdata(pdev); + int ret; - pm_runtime_get_sync(&pdev->dev); + ret = pm_runtime_get_sync(&pdev->dev); + if (ret < 0) + dev_warn(&pdev->dev, "pm_runtime_get_sync() Failed\n"); gpiochip_remove(&gpio->chip); clk_disable_unprepare(gpio->clk); device_set_wakeup_capable(&pdev->dev, 0); diff -u linux-azure-5.4.0/drivers/gpio/gpiolib-acpi.c linux-azure-5.4.0/drivers/gpio/gpiolib-acpi.c --- linux-azure-5.4.0/drivers/gpio/gpiolib-acpi.c +++ linux-azure-5.4.0/drivers/gpio/gpiolib-acpi.c @@ -275,8 +275,8 @@ pin = agpio->pin_table[0]; if (pin <= 255) { - char ev_name[5]; - sprintf(ev_name, "_%c%02hhX", + char ev_name[8]; + sprintf(ev_name, "_%c%02X", agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L', pin); if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle))) @@ -953,10 +953,17 @@ irq_flags = acpi_dev_get_irq_type(info.triggering, info.polarity); - /* Set type if specified and different than the current one */ - if (irq_flags != IRQ_TYPE_NONE && - irq_flags != irq_get_trigger_type(irq)) - irq_set_irq_type(irq, irq_flags); + /* + * If the IRQ is not already in use then set type + * if specified and different than the current one. + */ + if (can_request_irq(irq, irq_flags)) { + if (irq_flags != IRQ_TYPE_NONE && + irq_flags != irq_get_trigger_type(irq)) + irq_set_irq_type(irq, irq_flags); + } else { + dev_dbg(&adev->dev, "IRQ %d already in use\n", irq); + } return irq; } diff -u linux-azure-5.4.0/drivers/gpio/gpiolib-of.c linux-azure-5.4.0/drivers/gpio/gpiolib-of.c --- linux-azure-5.4.0/drivers/gpio/gpiolib-of.c +++ linux-azure-5.4.0/drivers/gpio/gpiolib-of.c @@ -734,7 +734,8 @@ if (mm_gc->save_regs) mm_gc->save_regs(mm_gc); - mm_gc->gc.of_node = np; + of_node_put(mm_gc->gc.of_node); + mm_gc->gc.of_node = of_node_get(np); ret = gpiochip_add_data(gc, data); if (ret) @@ -742,6 +743,7 @@ return 0; err2: + of_node_put(np); iounmap(mm_gc->regs); err1: kfree(gc->label); @@ -783,7 +785,7 @@ i, &start); of_property_read_u32_index(np, "gpio-reserved-ranges", i + 1, &count); - if (start >= chip->ngpio || start + count >= chip->ngpio) + if (start >= chip->ngpio || start + count > chip->ngpio) continue; bitmap_clear(chip->valid_mask, start, count); diff -u linux-azure-5.4.0/drivers/gpu/drm/Kconfig linux-azure-5.4.0/drivers/gpu/drm/Kconfig --- linux-azure-5.4.0/drivers/gpu/drm/Kconfig +++ linux-azure-5.4.0/drivers/gpu/drm/Kconfig @@ -27,6 +27,7 @@ config DRM_MIPI_DBI tristate depends on DRM + select DRM_KMS_HELPER config DRM_MIPI_DSI bool diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -762,7 +762,7 @@ MAX_HWIP }; -#define HWIP_MAX_INSTANCE 8 +#define HWIP_MAX_INSTANCE 10 struct amd_powerplay { void *pp_handle; diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.c @@ -165,7 +165,7 @@ .get_tile_config = amdgpu_amdkfd_get_tile_config, }; -struct kfd2kgd_calls *amdgpu_amdkfd_gfx_10_0_get_functions() +struct kfd2kgd_calls *amdgpu_amdkfd_gfx_10_0_get_functions(void) { return (struct kfd2kgd_calls *)&kfd2kgd; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c @@ -55,12 +55,6 @@ spinlock_t mem_limit_lock; } kfd_mem_limit; -/* Struct used for amdgpu_amdkfd_bo_validate */ -struct amdgpu_vm_parser { - uint32_t domain; - bool wait; -}; - static const char * const domain_bit_to_string[] = { "CPU", "GTT", @@ -293,11 +287,9 @@ return ret; } -static int amdgpu_amdkfd_validate(void *param, struct amdgpu_bo *bo) +static int amdgpu_amdkfd_validate_vm_bo(void *_unused, struct amdgpu_bo *bo) { - struct amdgpu_vm_parser *p = param; - - return amdgpu_amdkfd_bo_validate(bo, p->domain, p->wait); + return amdgpu_amdkfd_bo_validate(bo, bo->allowed_domains, false); } /* vm_validate_pt_pd_bos - Validate page table and directory BOs @@ -311,20 +303,15 @@ { struct amdgpu_bo *pd = vm->root.base.bo; struct amdgpu_device *adev = amdgpu_ttm_adev(pd->tbo.bdev); - struct amdgpu_vm_parser param; int ret; - param.domain = AMDGPU_GEM_DOMAIN_VRAM; - param.wait = false; - - ret = amdgpu_vm_validate_pt_bos(adev, vm, amdgpu_amdkfd_validate, - ¶m); + ret = amdgpu_vm_validate_pt_bos(adev, vm, amdgpu_amdkfd_validate_vm_bo, NULL); if (ret) { pr_err("amdgpu: failed to validate PT BOs\n"); return ret; } - ret = amdgpu_amdkfd_validate(¶m, pd); + ret = amdgpu_amdkfd_validate_vm_bo(NULL, pd); if (ret) { pr_err("amdgpu: failed to validate PD\n"); return ret; @@ -964,11 +951,15 @@ struct dma_fence **ef) { struct amdgpu_device *adev = get_amdgpu_device(kgd); - struct drm_file *drm_priv = filp->private_data; - struct amdgpu_fpriv *drv_priv = drm_priv->driver_priv; - struct amdgpu_vm *avm = &drv_priv->vm; + struct amdgpu_fpriv *drv_priv; + struct amdgpu_vm *avm; int ret; + ret = amdgpu_file_to_fpriv(filp, &drv_priv); + if (ret) + return ret; + avm = &drv_priv->vm; + /* Already a compute VM? */ if (avm->process_info) return -EINVAL; diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c @@ -389,6 +389,9 @@ native_mode->vdisplay != 0 && native_mode->clock != 0) { mode = drm_mode_duplicate(dev, native_mode); + if (!mode) + return NULL; + mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; drm_mode_set_name(mode); @@ -403,6 +406,9 @@ * simpler. */ mode = drm_cvt_mode(dev, native_mode->hdisplay, native_mode->vdisplay, 60, true, false, false); + if (!mode) + return NULL; + mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; DRM_DEBUG_KMS("Adding cvt approximation of native panel mode %s\n", mode->name); } @@ -829,6 +835,7 @@ amdgpu_connector_get_edid(connector); ret = amdgpu_connector_ddc_get_modes(connector); + amdgpu_get_native_mode(connector); return ret; } @@ -1639,10 +1646,12 @@ adev->mode_info.dither_property, AMDGPU_FMT_DITHER_DISABLE); - if (amdgpu_audio != 0) + if (amdgpu_audio != 0) { drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.audio_property, AMDGPU_AUDIO_AUTO); + amdgpu_connector->audio = AMDGPU_AUDIO_AUTO; + } subpixel_order = SubPixelHorizontalRGB; connector->interlace_allowed = true; @@ -1764,6 +1773,7 @@ drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.audio_property, AMDGPU_AUDIO_AUTO); + amdgpu_connector->audio = AMDGPU_AUDIO_AUTO; } drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.dither_property, @@ -1817,6 +1827,7 @@ drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.audio_property, AMDGPU_AUDIO_AUTO); + amdgpu_connector->audio = AMDGPU_AUDIO_AUTO; } drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.dither_property, @@ -1867,6 +1878,7 @@ drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.audio_property, AMDGPU_AUDIO_AUTO); + amdgpu_connector->audio = AMDGPU_AUDIO_AUTO; } drm_object_attach_property(&amdgpu_connector->base.base, adev->mode_info.dither_property, diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -2289,7 +2289,7 @@ AMD_IP_BLOCK_TYPE_IH, }; - for (i = 0; i < ARRAY_SIZE(ip_order); i++) { + for (i = 0; i < adev->num_ip_blocks; i++) { int j; struct amdgpu_ip_block *block; diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -633,7 +633,7 @@ * Maximum number of processes that HWS can schedule concurrently. The maximum is the * number of VMIDs assigned to the HWS, which is also the default. */ -int hws_max_conc_proc = 8; +int hws_max_conc_proc = -1; module_param(hws_max_conc_proc, int, 0444); MODULE_PARM_DESC(hws_max_conc_proc, "Max # processes HWS can execute concurrently when sched_policy=0 (0 = no concurrency, #VMIDs for KFD = Maximum(default))"); diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c @@ -200,7 +200,7 @@ c++; } - BUG_ON(c >= AMDGPU_BO_MAX_PLACEMENTS); + BUG_ON(c > AMDGPU_BO_MAX_PLACEMENTS); placement->num_placement = c; placement->placement = places; @@ -892,6 +892,10 @@ if (WARN_ON_ONCE(min_offset > max_offset)) return -EINVAL; + /* Check domain to be pinned to against preferred domains */ + if (bo->preferred_domains & domain) + domain = bo->preferred_domains & domain; + /* A shared bo cannot be migrated to VRAM */ if (bo->prime_shared_count) { if (domain & AMDGPU_GEM_DOMAIN_GTT) @@ -1305,7 +1309,8 @@ !(abo->flags & AMDGPU_GEM_CREATE_VRAM_WIPE_ON_RELEASE)) return; - dma_resv_lock(bo->base.resv, NULL); + if (WARN_ON_ONCE(!dma_resv_trylock(bo->base.resv))) + return; r = amdgpu_fill_buffer(abo, AMDGPU_POISON, bo->base.resv, &fence); if (!WARN_ON(r)) { diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -1976,7 +1976,7 @@ unsigned i; int r; - if (direct_submit && !ring->sched.ready) { + if (!direct_submit && !ring->sched.ready) { DRM_ERROR("Trying to move memory with ring turned off.\n"); return -EINVAL; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -2468,7 +2468,8 @@ gfx_v9_0_tiling_mode_table_init(adev); - gfx_v9_0_setup_rb(adev); + if (adev->gfx.num_gfx_rings) + gfx_v9_0_setup_rb(adev); gfx_v9_0_get_cu_info(adev, &adev->gfx.cu_info); adev->gfx.config.db_debug2 = RREG32_SOC15(GC, 0, mmDB_DEBUG2); @@ -2902,8 +2903,8 @@ AMD_PG_SUPPORT_CP | AMD_PG_SUPPORT_GDS | AMD_PG_SUPPORT_RLC_SMU_HS)) { - WREG32(mmRLC_JUMP_TABLE_RESTORE, - adev->gfx.rlc.cp_table_gpu_addr >> 8); + WREG32_SOC15(GC, 0, mmRLC_JUMP_TABLE_RESTORE, + adev->gfx.rlc.cp_table_gpu_addr >> 8); gfx_v9_0_init_gfx_power_gating(adev); } } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c @@ -903,6 +903,8 @@ { struct amdgpu_device *adev = (struct amdgpu_device *)handle; + gmc_v10_0_gart_disable(adev); + if (amdgpu_sriov_vf(adev)) { /* full access mode, so don't touch any GMC register */ DRM_DEBUG("For SRIOV client, shouldn't do anything.\n"); @@ -910,7 +912,6 @@ } amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0); - gmc_v10_0_gart_disable(adev); return 0; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c @@ -1526,6 +1526,8 @@ { struct amdgpu_device *adev = (struct amdgpu_device *)handle; + gmc_v9_0_gart_disable(adev); + if (amdgpu_sriov_vf(adev)) { /* full access mode, so don't touch any GMC register */ DRM_DEBUG("For SRIOV client, shouldn't do anything.\n"); @@ -1534,7 +1536,6 @@ amdgpu_irq_put(adev, &adev->gmc.ecc_irq, 0); amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0); - gmc_v9_0_gart_disable(adev); return 0; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c @@ -182,6 +182,7 @@ tmp = REG_SET_FIELD(tmp, VM_L2_CNTL2, INVALIDATE_L2_CACHE, 1); WREG32_SOC15(MMHUB, 0, mmVM_L2_CNTL2, tmp); + tmp = mmVM_L2_CNTL3_DEFAULT; if (adev->gmc.translate_further) { tmp = REG_SET_FIELD(tmp, VM_L2_CNTL3, BANK_SELECT, 12); tmp = REG_SET_FIELD(tmp, VM_L2_CNTL3, diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/soc15.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/soc15.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/soc15.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/soc15.c @@ -1143,8 +1143,11 @@ AMD_CG_SUPPORT_SDMA_MGCG | AMD_CG_SUPPORT_SDMA_LS; + /* + * MMHUB PG needs to be disabled for Picasso for + * stability reasons. + */ adev->pg_flags = AMD_PG_SUPPORT_SDMA | - AMD_PG_SUPPORT_MMHUB | AMD_PG_SUPPORT_VCN; } else { adev->cg_flags = AMD_CG_SUPPORT_GFX_MGCG | diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device.c @@ -609,15 +609,10 @@ - kfd->vm_info.first_vmid_kfd + 1; /* Verify module parameters regarding mapped process number*/ - if ((hws_max_conc_proc < 0) - || (hws_max_conc_proc > kfd->vm_info.vmid_num_kfd)) { - dev_err(kfd_device, - "hws_max_conc_proc %d must be between 0 and %d, use %d instead\n", - hws_max_conc_proc, kfd->vm_info.vmid_num_kfd, - kfd->vm_info.vmid_num_kfd); + if (hws_max_conc_proc >= 0) + kfd->max_proc_per_quantum = min((u32)hws_max_conc_proc, kfd->vm_info.vmid_num_kfd); + else kfd->max_proc_per_quantum = kfd->vm_info.vmid_num_kfd; - } else - kfd->max_proc_per_quantum = hws_max_conc_proc; /* Allocate global GWS that is shared by all KFD processes */ if (hws_gws_support && amdgpu_amdkfd_alloc_gws(kfd->kgd, diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c @@ -1584,7 +1584,7 @@ struct qcm_process_device *qpd) { int retval; - struct queue *q, *next; + struct queue *q; struct kernel_queue *kq, *kq_next; struct mqd_manager *mqd_mgr; struct device_process_node *cur, *next_dpn; @@ -1639,24 +1639,26 @@ qpd->reset_wavefronts = false; } - dqm_unlock(dqm); - - /* Outside the DQM lock because under the DQM lock we can't do - * reclaim or take other locks that others hold while reclaiming. - */ - if (found) - kfd_dec_compute_active(dqm->dev); - /* Lastly, free mqd resources. * Do free_mqd() after dqm_unlock to avoid circular locking. */ - list_for_each_entry_safe(q, next, &qpd->queues_list, list) { + while (!list_empty(&qpd->queues_list)) { + q = list_first_entry(&qpd->queues_list, struct queue, list); mqd_mgr = dqm->mqd_mgrs[get_mqd_type_from_queue_type( q->properties.type)]; list_del(&q->list); qpd->queue_count--; + dqm_unlock(dqm); mqd_mgr->free_mqd(mqd_mgr, q->mqd, q->mqd_mem_obj); + dqm_lock(dqm); } + dqm_unlock(dqm); + + /* Outside the DQM lock because under the DQM lock we can't do + * reclaim or take other locks that others hold while reclaiming. + */ + if (found) + kfd_dec_compute_active(dqm->dev); return retval; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -664,6 +664,7 @@ init_data.asic_id.pci_revision_id = adev->rev_id; init_data.asic_id.hw_internal_rev = adev->external_rev_id; + init_data.asic_id.chip_id = adev->pdev->device; init_data.asic_id.vram_width = adev->gmc.vram_width; /* TODO: initialize init_data.asic_id.vram_type here!!!! */ @@ -1209,7 +1210,8 @@ * this is the case when traversing through already created * MST connectors, should be skipped */ - if (aconnector->mst_port) + if (aconnector->dc_link && + aconnector->dc_link->type == dc_connection_mst_branch) continue; mutex_lock(&aconnector->hpd_lock); @@ -4995,6 +4997,9 @@ mode = amdgpu_dm_create_common_mode(encoder, common_modes[i].name, common_modes[i].w, common_modes[i].h); + if (!mode) + continue; + drm_mode_probed_add(connector, mode); amdgpu_dm_connector->num_modes++; } @@ -6832,7 +6837,8 @@ BUG_ON(dm_new_crtc_state->stream == NULL); /* Scaling or underscan settings */ - if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state)) + if (is_scaling_state_different(dm_old_conn_state, dm_new_conn_state) || + drm_atomic_crtc_needs_modeset(new_crtc_state)) update_stream_scaling_settings( &new_crtc_state->mode, dm_new_conn_state, dm_new_crtc_state->stream); @@ -7246,10 +7252,13 @@ static int add_affected_mst_dsc_crtcs(struct drm_atomic_state *state, struct drm_crtc *crtc) { struct drm_connector *connector; - struct drm_connector_state *conn_state; + struct drm_connector_state *conn_state, *old_conn_state; struct amdgpu_dm_connector *aconnector = NULL; int i; - for_each_new_connector_in_state(state, connector, conn_state, i) { + for_each_oldnew_connector_in_state(state, connector, old_conn_state, conn_state, i) { + if (!conn_state->crtc) + conn_state = old_conn_state; + if (conn_state->crtc != crtc) continue; @@ -7406,6 +7415,10 @@ old_crtc_state->vrr_enabled == new_crtc_state->vrr_enabled) continue; + ret = amdgpu_dm_verify_lut_sizes(new_crtc_state); + if (ret) + goto fail; + if (!new_crtc_state->enable) continue; diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c @@ -278,6 +278,37 @@ } /** + * Verifies that the Degamma and Gamma LUTs attached to the |crtc_state| are of + * the expected size. + * Returns 0 on success. + */ +int amdgpu_dm_verify_lut_sizes(const struct drm_crtc_state *crtc_state) +{ + const struct drm_color_lut *lut = NULL; + uint32_t size = 0; + + lut = __extract_blob_lut(crtc_state->degamma_lut, &size); + if (lut && size != MAX_COLOR_LUT_ENTRIES) { + DRM_DEBUG_DRIVER( + "Invalid Degamma LUT size. Should be %u but got %u.\n", + MAX_COLOR_LUT_ENTRIES, size); + return -EINVAL; + } + + lut = __extract_blob_lut(crtc_state->gamma_lut, &size); + if (lut && size != MAX_COLOR_LUT_ENTRIES && + size != MAX_COLOR_LEGACY_LUT_ENTRIES) { + DRM_DEBUG_DRIVER( + "Invalid Gamma LUT size. Should be %u (or %u for legacy) but got %u.\n", + MAX_COLOR_LUT_ENTRIES, MAX_COLOR_LEGACY_LUT_ENTRIES, + size); + return -EINVAL; + } + + return 0; +} + +/** * amdgpu_dm_update_crtc_color_mgmt: Maps DRM color management to DC stream. * @crtc: amdgpu_dm crtc state * @@ -311,14 +342,12 @@ bool is_legacy; int r; - degamma_lut = __extract_blob_lut(crtc->base.degamma_lut, °amma_size); - if (degamma_lut && degamma_size != MAX_COLOR_LUT_ENTRIES) - return -EINVAL; + r = amdgpu_dm_verify_lut_sizes(&crtc->base); + if (r) + return r; + degamma_lut = __extract_blob_lut(crtc->base.degamma_lut, °amma_size); regamma_lut = __extract_blob_lut(crtc->base.gamma_lut, ®amma_size); - if (regamma_lut && regamma_size != MAX_COLOR_LUT_ENTRIES && - regamma_size != MAX_COLOR_LEGACY_LUT_ENTRIES) - return -EINVAL; has_degamma = degamma_lut && !__is_lut_linear(degamma_lut, degamma_size); diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c @@ -221,6 +221,14 @@ ret = -EINVAL; goto cleanup; } + + if ((aconn->base.connector_type != DRM_MODE_CONNECTOR_DisplayPort) && + (aconn->base.connector_type != DRM_MODE_CONNECTOR_eDP)) { + DRM_DEBUG_DRIVER("No DP connector available for CRC source\n"); + ret = -EINVAL; + goto cleanup; + } + } if (amdgpu_dm_crtc_configure_crc_source(crtc, crtc_state, source)) { diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c @@ -1284,6 +1284,8 @@ link->type = dc_connection_single; link->local_sink = link->remote_sinks[0]; link->local_sink->sink_signal = SIGNAL_TYPE_DISPLAY_PORT; + dc_sink_retain(link->local_sink); + dm_helpers_dp_mst_stop_top_mgr(link->ctx, link); } else if (mst_enable == true && link->type == dc_connection_single && link->remote_sinks[0] != NULL) { diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c @@ -546,9 +546,11 @@ switch (pix_clk_params->color_depth) { case COLOR_DEPTH_101010: actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 5) >> 2; + actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10; break; case COLOR_DEPTH_121212: actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 6) >> 2; + actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10; break; case COLOR_DEPTH_161616: actual_pixel_clock_100hz = actual_pixel_clock_100hz * 2; diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c @@ -126,7 +126,7 @@ REG_WRITE(MILLISECOND_TIME_BASE_DIV, 0x1186a0); /* This value is dependent on the hardware pipeline delay so set once per SOC */ - REG_WRITE(DISPCLK_FREQ_CHANGE_CNTL, 0x801003c); + REG_WRITE(DISPCLK_FREQ_CHANGE_CNTL, 0xe01003c); } void dcn20_display_init(struct dc *dc) { @@ -1740,14 +1740,18 @@ pipe_ctx, &blnd_cfg.black_color); } - if (per_pixel_alpha) - blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA; - else - blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_GLOBAL_ALPHA; - blnd_cfg.overlap_only = false; blnd_cfg.global_gain = 0xff; + if (per_pixel_alpha && pipe_ctx->plane_state->global_alpha) { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA_COMBINED_GLOBAL_GAIN; + blnd_cfg.global_gain = pipe_ctx->plane_state->global_alpha_value; + } else if (per_pixel_alpha) { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA; + } else { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_GLOBAL_ALPHA; + } + if (pipe_ctx->plane_state->global_alpha) blnd_cfg.global_alpha = pipe_ctx->plane_state->global_alpha_value; else diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c @@ -362,7 +362,7 @@ REG_UPDATE_2(OTG_GLOBAL_CONTROL1, MASTER_UPDATE_LOCK_DB_X, - h_blank_start - 200 - 1, + (h_blank_start - 200 - 1) / optc1->opp_count, MASTER_UPDATE_LOCK_DB_Y, v_blank_start - 1); } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c @@ -2232,7 +2232,7 @@ wb_arb_params->cli_watermark[k] = get_wm_writeback_urgent(&context->bw_ctx.dml, pipes, pipe_cnt) * 1000; wb_arb_params->pstate_watermark[k] = get_wm_writeback_dram_clock_change(&context->bw_ctx.dml, pipes, pipe_cnt) * 1000; } - wb_arb_params->time_per_pixel = 16.0 / context->res_ctx.pipe_ctx[i].stream->phy_pix_clk; /* 4 bit fraction, ms */ + wb_arb_params->time_per_pixel = 16.0 * 1000 / (context->res_ctx.pipe_ctx[i].stream->phy_pix_clk / 1000); /* 4 bit fraction, ms */ wb_arb_params->slice_lines = 32; wb_arb_params->arbitration_slice = 2; wb_arb_params->max_scaled_time = dcn20_calc_max_scaled_time(wb_arb_params->time_per_pixel, @@ -2917,7 +2917,7 @@ voltage_supported = dcn20_validate_bandwidth_internal(dc, context, false); dummy_pstate_supported = context->bw_ctx.bw.dcn.clk.p_state_change_support; - if (voltage_supported && dummy_pstate_supported) { + if (voltage_supported && (dummy_pstate_supported || !(context->stream_count))) { context->bw_ctx.bw.dcn.clk.p_state_change_support = false; goto restore_dml_state; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c @@ -1140,6 +1140,7 @@ return &clk_src->base; } + kfree(clk_src); BREAK_TO_DEBUGGER(); return NULL; } diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c @@ -227,14 +227,6 @@ .funcs = &pflip_irq_info_funcs\ } -#define vupdate_int_entry(reg_num)\ - [DC_IRQ_SOURCE_VUPDATE1 + reg_num] = {\ - IRQ_REG_ENTRY(OTG, reg_num,\ - OTG_GLOBAL_SYNC_STATUS, VUPDATE_INT_EN,\ - OTG_GLOBAL_SYNC_STATUS, VUPDATE_EVENT_CLEAR),\ - .funcs = &vblank_irq_info_funcs\ - } - /* vupdate_no_lock_int_entry maps to DC_IRQ_SOURCE_VUPDATEx, to match semantic * of DCE's DC_IRQ_SOURCE_VUPDATEx. */ @@ -348,12 +340,6 @@ dc_underflow_int_entry(6), [DC_IRQ_SOURCE_DMCU_SCP] = dummy_irq_entry(), [DC_IRQ_SOURCE_VBIOS_SW] = dummy_irq_entry(), - vupdate_int_entry(0), - vupdate_int_entry(1), - vupdate_int_entry(2), - vupdate_int_entry(3), - vupdate_int_entry(4), - vupdate_int_entry(5), vupdate_no_lock_int_entry(0), vupdate_no_lock_int_entry(1), vupdate_no_lock_int_entry(2), diff -u linux-azure-5.4.0/drivers/gpu/drm/amd/display/modules/color/color_gamma.c linux-azure-5.4.0/drivers/gpu/drm/amd/display/modules/color/color_gamma.c --- linux-azure-5.4.0/drivers/gpu/drm/amd/display/modules/color/color_gamma.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/modules/color/color_gamma.c @@ -1486,6 +1486,7 @@ struct fixed31_32 lut2; struct fixed31_32 delta_lut; struct fixed31_32 delta_index; + const struct fixed31_32 one = dc_fixpt_from_int(1); i = 0; /* fixed_pt library has problems handling too small values */ @@ -1514,6 +1515,9 @@ } else hw_x = coordinates_x[i].x; + if (dc_fixpt_le(one, hw_x)) + hw_x = one; + norm_x = dc_fixpt_mul(norm_factor, hw_x); index = dc_fixpt_floor(norm_x); if (index < 0 || index > 255) diff -u linux-azure-5.4.0/drivers/gpu/drm/arm/malidp_planes.c linux-azure-5.4.0/drivers/gpu/drm/arm/malidp_planes.c --- linux-azure-5.4.0/drivers/gpu/drm/arm/malidp_planes.c +++ linux-azure-5.4.0/drivers/gpu/drm/arm/malidp_planes.c @@ -922,6 +922,11 @@ .atomic_disable = malidp_de_plane_disable, }; +static const uint64_t linear_only_modifiers[] = { + DRM_FORMAT_MOD_LINEAR, + DRM_FORMAT_MOD_INVALID +}; + int malidp_de_planes_init(struct drm_device *drm) { struct malidp_drm *malidp = drm->dev_private; @@ -985,8 +990,8 @@ */ ret = drm_universal_plane_init(drm, &plane->base, crtcs, &malidp_de_plane_funcs, formats, n, - (id == DE_SMART) ? NULL : modifiers, plane_type, - NULL); + (id == DE_SMART) ? linear_only_modifiers : modifiers, + plane_type, NULL); if (ret < 0) goto cleanup; diff -u linux-azure-5.4.0/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c linux-azure-5.4.0/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c --- linux-azure-5.4.0/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/analogix/analogix_dp_core.c @@ -1630,8 +1630,19 @@ struct drm_dp_aux_msg *msg) { struct analogix_dp_device *dp = to_dp(aux); + int ret; + + pm_runtime_get_sync(dp->dev); + + ret = analogix_dp_detect_hpd(dp); + if (ret) + goto out; - return analogix_dp_transfer(dp, msg); + ret = analogix_dp_transfer(dp, msg); +out: + pm_runtime_put(dp->dev); + + return ret; } struct analogix_dp_device * @@ -1696,8 +1707,10 @@ res = platform_get_resource(pdev, IORESOURCE_MEM, 0); dp->reg_base = devm_ioremap_resource(&pdev->dev, res); - if (IS_ERR(dp->reg_base)) - return ERR_CAST(dp->reg_base); + if (IS_ERR(dp->reg_base)) { + ret = PTR_ERR(dp->reg_base); + goto err_disable_clk; + } dp->force_hpd = of_property_read_bool(dev->of_node, "force-hpd"); @@ -1709,7 +1722,8 @@ if (IS_ERR(dp->hpd_gpiod)) { dev_err(dev, "error getting HDP GPIO: %ld\n", PTR_ERR(dp->hpd_gpiod)); - return ERR_CAST(dp->hpd_gpiod); + ret = PTR_ERR(dp->hpd_gpiod); + goto err_disable_clk; } if (dp->hpd_gpiod) { @@ -1729,7 +1743,8 @@ if (dp->irq == -ENXIO) { dev_err(&pdev->dev, "failed to get irq\n"); - return ERR_PTR(-ENODEV); + ret = -ENODEV; + goto err_disable_clk; } ret = devm_request_threaded_irq(&pdev->dev, dp->irq, @@ -1738,11 +1753,15 @@ irq_flags, "analogix-dp", dp); if (ret) { dev_err(&pdev->dev, "failed to request irq\n"); - return ERR_PTR(ret); + goto err_disable_clk; } disable_irq(dp->irq); return dp; + +err_disable_clk: + clk_disable_unprepare(dp->clock); + return ERR_PTR(ret); } EXPORT_SYMBOL_GPL(analogix_dp_probe); @@ -1804,12 +1823,6 @@ int analogix_dp_suspend(struct analogix_dp_device *dp) { clk_disable_unprepare(dp->clock); - - if (dp->plat_data->panel) { - if (drm_panel_unprepare(dp->plat_data->panel)) - DRM_ERROR("failed to turnoff the panel\n"); - } - return 0; } EXPORT_SYMBOL_GPL(analogix_dp_suspend); @@ -1824,13 +1837,6 @@ return ret; } - if (dp->plat_data->panel) { - if (drm_panel_prepare(dp->plat_data->panel)) { - DRM_ERROR("failed to setup the panel\n"); - return -EBUSY; - } - } - return 0; } EXPORT_SYMBOL_GPL(analogix_dp_resume); diff -u linux-azure-5.4.0/drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c linux-azure-5.4.0/drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c --- linux-azure-5.4.0/drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c @@ -279,7 +279,9 @@ * This check is to avoid both the drivers * removing the bridge in their remove() function */ - if (!ge_b850v3_lvds_ptr) + if (!ge_b850v3_lvds_ptr || + !ge_b850v3_lvds_ptr->stdp2690_i2c || + !ge_b850v3_lvds_ptr->stdp4028_i2c) goto out; drm_bridge_remove(&ge_b850v3_lvds_ptr->bridge); @@ -291,19 +293,10 @@ mutex_unlock(&ge_b850v3_lvds_dev_mutex); } -static int stdp4028_ge_b850v3_fw_probe(struct i2c_client *stdp4028_i2c, - const struct i2c_device_id *id) +static int ge_b850v3_register(void) { + struct i2c_client *stdp4028_i2c = ge_b850v3_lvds_ptr->stdp4028_i2c; struct device *dev = &stdp4028_i2c->dev; - int ret; - - ret = ge_b850v3_lvds_init(dev); - - if (ret) - return ret; - - ge_b850v3_lvds_ptr->stdp4028_i2c = stdp4028_i2c; - i2c_set_clientdata(stdp4028_i2c, ge_b850v3_lvds_ptr); /* drm bridge initialization */ ge_b850v3_lvds_ptr->bridge.funcs = &ge_b850v3_lvds_funcs; @@ -325,6 +318,27 @@ "ge-b850v3-lvds-dp", ge_b850v3_lvds_ptr); } +static int stdp4028_ge_b850v3_fw_probe(struct i2c_client *stdp4028_i2c, + const struct i2c_device_id *id) +{ + struct device *dev = &stdp4028_i2c->dev; + int ret; + + ret = ge_b850v3_lvds_init(dev); + + if (ret) + return ret; + + ge_b850v3_lvds_ptr->stdp4028_i2c = stdp4028_i2c; + i2c_set_clientdata(stdp4028_i2c, ge_b850v3_lvds_ptr); + + /* Only register after both bridges are probed */ + if (!ge_b850v3_lvds_ptr->stdp2690_i2c) + return 0; + + return ge_b850v3_register(); +} + static int stdp4028_ge_b850v3_fw_remove(struct i2c_client *stdp4028_i2c) { ge_b850v3_lvds_remove(); @@ -368,7 +382,11 @@ ge_b850v3_lvds_ptr->stdp2690_i2c = stdp2690_i2c; i2c_set_clientdata(stdp2690_i2c, ge_b850v3_lvds_ptr); - return 0; + /* Only register after both bridges are probed */ + if (!ge_b850v3_lvds_ptr->stdp4028_i2c) + return 0; + + return ge_b850v3_register(); } static int stdp2690_ge_b850v3_fw_remove(struct i2c_client *stdp2690_i2c) diff -u linux-azure-5.4.0/drivers/gpu/drm/bridge/sil-sii8620.c linux-azure-5.4.0/drivers/gpu/drm/bridge/sil-sii8620.c --- linux-azure-5.4.0/drivers/gpu/drm/bridge/sil-sii8620.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/sil-sii8620.c @@ -604,7 +604,7 @@ u8 *buf = &ctx->burst.tx_buf[ctx->burst.tx_count]; int size = len + 2; - if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) { + if (ctx->burst.tx_count + size >= ARRAY_SIZE(ctx->burst.tx_buf)) { dev_err(ctx->dev, "TX-BLK buffer exhausted\n"); ctx->error = -EINVAL; return NULL; @@ -621,7 +621,7 @@ u8 *buf = &ctx->burst.rx_buf[ctx->burst.rx_count]; int size = len + 1; - if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) { + if (ctx->burst.rx_count + size >= ARRAY_SIZE(ctx->burst.rx_buf)) { dev_err(ctx->dev, "RX-BLK buffer exhausted\n"); ctx->error = -EINVAL; return NULL; @@ -2118,7 +2118,7 @@ if (ret) { dev_err(ctx->dev, "Failed to register RC device\n"); ctx->error = ret; - rc_free_device(ctx->rc_dev); + rc_free_device(rc_dev); return; } ctx->rc_dev = rc_dev; diff -u linux-azure-5.4.0/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c linux-azure-5.4.0/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c --- linux-azure-5.4.0/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c @@ -1057,6 +1057,7 @@ ret = mipi_dsi_host_register(&dsi->dsi_host); if (ret) { dev_err(dev, "Failed to register MIPI host: %d\n", ret); + pm_runtime_disable(dev); dw_mipi_dsi_debugfs_remove(dsi); return ERR_PTR(ret); } diff -u linux-azure-5.4.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c linux-azure-5.4.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c --- linux-azure-5.4.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c @@ -115,6 +115,7 @@ .val_bits = 8, .volatile_table = &ti_sn_bridge_volatile_table, .cache_type = REGCACHE_NONE, + .max_register = 0xFF, }; static void ti_sn_bridge_write_u16(struct ti_sn_bridge *pdata, diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_connector.c linux-azure-5.4.0/drivers/gpu/drm/drm_connector.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_connector.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_connector.c @@ -1984,6 +1984,9 @@ void drm_connector_set_vrr_capable_property( struct drm_connector *connector, bool capable) { + if (!connector->vrr_capable_property) + return; + drm_object_property_set_value(&connector->base, connector->vrr_capable_property, capable); diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_debugfs.c linux-azure-5.4.0/drivers/gpu/drm/drm_debugfs.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_debugfs.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_debugfs.c @@ -91,6 +91,7 @@ mutex_lock(&dev->filelist_mutex); list_for_each_entry_reverse(priv, &dev->filelist, lhead) { struct task_struct *task; + bool is_current_master = drm_is_current_master(priv); rcu_read_lock(); /* locks pid_task()->comm */ task = pid_task(priv->pid, PIDTYPE_PID); @@ -99,7 +100,7 @@ task ? task->comm : "", pid_vnr(priv->pid), priv->minor->index, - drm_is_current_master(priv) ? 'y' : 'n', + is_current_master ? 'y' : 'n', priv->authenticated ? 'y' : 'n', from_kuid_munged(seq_user_ns(m), uid), priv->magic); diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_dp_helper.c linux-azure-5.4.0/drivers/gpu/drm/drm_dp_helper.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_dp_helper.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_dp_helper.c @@ -1343,6 +1343,7 @@ { MFG(0x4d, 0x10), PROD_ID(0xe6, 0x14), BIT(DP_QUIRK_FORCE_DPCD_BACKLIGHT) }, { MFG(0x4c, 0x83), PROD_ID(0x47, 0x41), BIT(DP_QUIRK_FORCE_DPCD_BACKLIGHT) }, { MFG(0x4c, 0x83), PROD_ID(0x4f, 0x41), BIT(DP_QUIRK_FORCE_DPCD_BACKLIGHT) }, + { MFG(0x4c, 0x83), PROD_ID(0x4d, 0x41), BIT(DP_QUIRK_FORCE_DPCD_BACKLIGHT) }, /* * Some HP ZBook Studio G7 systems have panels support and relies on * PSR being enabled. diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-azure-5.4.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_dp_mst_topology.c @@ -3657,6 +3657,7 @@ mst_edid = drm_dp_mst_get_edid(port->connector, mgr, port); drm_edid_get_monitor_name(mst_edid, name, namelen); + kfree(mst_edid); } /** diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_edid.c linux-azure-5.4.0/drivers/gpu/drm/drm_edid.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_edid.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_edid.c @@ -1702,9 +1702,6 @@ connector_bad_edid(connector, edid, edid[0x7e] + 1); - edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions; - edid[0x7e] = valid_extensions; - new = kmalloc_array(valid_extensions + 1, EDID_LENGTH, GFP_KERNEL); if (!new) @@ -1721,6 +1718,9 @@ base += EDID_LENGTH; } + new[EDID_LENGTH - 1] += new[0x7e] - valid_extensions; + new[0x7e] = valid_extensions; + kfree(edid); edid = new; } @@ -4380,7 +4380,8 @@ if (!edid_ext) goto end; - has_audio = ((edid_ext[3] & EDID_BASIC_AUDIO) != 0); + has_audio = (edid_ext[0] == CEA_EXT && + (edid_ext[3] & EDID_BASIC_AUDIO) != 0); if (has_audio) { DRM_DEBUG_KMS("Monitor has basic audio support\n"); @@ -4533,16 +4534,8 @@ connector->name, dc_bpc); info->bpc = dc_bpc; - /* - * Deep color support mandates RGB444 support for all video - * modes and forbids YCRCB422 support for all video modes per - * HDMI 1.3 spec. - */ - info->color_formats = DRM_COLOR_FORMAT_RGB444; - /* YCRCB444 is optional according to spec. */ if (hdmi[6] & DRM_EDID_HDMI_DC_Y444) { - info->color_formats |= DRM_COLOR_FORMAT_YCRCB444; DRM_DEBUG("%s: HDMI sink does YCRCB444 in deep color.\n", connector->name); } @@ -4659,6 +4652,7 @@ if (!(edid->input & DRM_EDID_INPUT_DIGITAL)) return quirks; + info->color_formats |= DRM_COLOR_FORMAT_RGB444; drm_parse_cea_ext(connector, edid); /* @@ -4707,7 +4701,6 @@ DRM_DEBUG("%s: Assigning EDID-1.4 digital sink color depth as %d bpc.\n", connector->name, info->bpc); - info->color_formats |= DRM_COLOR_FORMAT_RGB444; if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB444) info->color_formats |= DRM_COLOR_FORMAT_YCRCB444; if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422) diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_fb_helper.c linux-azure-5.4.0/drivers/gpu/drm/drm_fb_helper.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_fb_helper.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_fb_helper.c @@ -2418,21 +2417,0 @@ - -/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT) - * but the module doesn't depend on any fb console symbols. At least - * attempt to load fbcon to avoid leaving the system without a usable console. - */ -int __init drm_fb_helper_modinit(void) -{ -#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT) - const char name[] = "fbcon"; - struct module *fbcon; - - mutex_lock(&module_mutex); - fbcon = find_module(name); - mutex_unlock(&module_mutex); - - if (!fbcon) - request_module_nowait(name); -#endif - return 0; -} -EXPORT_SYMBOL(drm_fb_helper_modinit); diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_gem.c linux-azure-5.4.0/drivers/gpu/drm/drm_gem.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_gem.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_gem.c @@ -167,21 +167,6 @@ } EXPORT_SYMBOL(drm_gem_private_object_init); -static void -drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp) -{ - /* - * Note: obj->dma_buf can't disappear as long as we still hold a - * handle reference in obj->handle_count. - */ - mutex_lock(&filp->prime.lock); - if (obj->dma_buf) { - drm_prime_remove_buf_handle_locked(&filp->prime, - obj->dma_buf); - } - mutex_unlock(&filp->prime.lock); -} - /** * drm_gem_object_handle_free - release resources bound to userspace handles * @obj: GEM object to clean up. @@ -255,7 +240,7 @@ else if (dev->driver->gem_close_object) dev->driver->gem_close_object(obj, file_priv); - drm_gem_remove_prime_handles(obj, file_priv); + drm_prime_remove_buf_handle(&file_priv->prime, id); drm_vma_node_revoke(&obj->vma_node, file_priv); drm_gem_object_handle_put_unlocked(obj); @@ -1292,7 +1277,7 @@ ret = dma_resv_lock_slow_interruptible(obj->resv, acquire_ctx); if (ret) { - ww_acquire_done(acquire_ctx); + ww_acquire_fini(acquire_ctx); return ret; } } @@ -1317,7 +1302,7 @@ goto retry; } - ww_acquire_done(acquire_ctx); + ww_acquire_fini(acquire_ctx); return ret; } } diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_ioc32.c linux-azure-5.4.0/drivers/gpu/drm/drm_ioc32.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_ioc32.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_ioc32.c @@ -863,8 +863,6 @@ req.request.sequence = req32.request.sequence; req.request.signal = req32.request.signal; err = drm_ioctl_kernel(file, drm_wait_vblank_ioctl, &req, DRM_UNLOCKED); - if (err) - return err; req32.reply.type = req.reply.type; req32.reply.sequence = req.reply.sequence; @@ -873,7 +871,7 @@ if (copy_to_user(argp, &req32, sizeof(req32))) return -EFAULT; - return 0; + return err; } #if defined(CONFIG_X86) diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_ioctl.c linux-azure-5.4.0/drivers/gpu/drm/drm_ioctl.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_ioctl.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_ioctl.c @@ -118,17 +118,18 @@ struct drm_file *file_priv) { struct drm_unique *u = data; - struct drm_master *master = file_priv->master; + struct drm_master *master; - mutex_lock(&master->dev->master_mutex); + mutex_lock(&dev->master_mutex); + master = file_priv->master; if (u->unique_len >= master->unique_len) { if (copy_to_user(u->unique, master->unique, master->unique_len)) { - mutex_unlock(&master->dev->master_mutex); + mutex_unlock(&dev->master_mutex); return -EFAULT; } } u->unique_len = master->unique_len; - mutex_unlock(&master->dev->master_mutex); + mutex_unlock(&dev->master_mutex); return 0; } @@ -472,7 +473,13 @@ */ static int drm_copy_field(char __user *buf, size_t *buf_len, const char *value) { - int len; + size_t len; + + /* don't attempt to copy a NULL pointer */ + if (WARN_ONCE(!value, "BUG: the value to copy was not set!")) { + *buf_len = 0; + return 0; + } /* don't overflow userbuf */ len = strlen(value); @@ -826,6 +833,9 @@ if (drm_dev_is_unplugged(dev)) return -ENODEV; + if (DRM_IOCTL_TYPE(cmd) != DRM_IOCTL_BASE) + return -ENOTTY; + is_driver_ioctl = nr >= DRM_COMMAND_BASE && nr < DRM_COMMAND_END; if (is_driver_ioctl) { diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dbi.c linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dbi.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dbi.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dbi.c @@ -1156,6 +1156,13 @@ size_t chunk; int ret; + /* In __spi_validate, there's a validation that no partial transfers + * are accepted (xfer->len % w_size must be zero). + * Here we align max_chunk to multiple of 2 (16bits), + * to prevent transfers from being rejected. + */ + max_chunk = ALIGN_DOWN(max_chunk, 2); + spi_message_init_with_transfers(&m, &tr, 1); while (len) { diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dsi.c linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dsi.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_mipi_dsi.c @@ -300,6 +300,7 @@ { struct mipi_dsi_device *dsi = to_mipi_dsi_device(dev); + mipi_dsi_detach(dsi); mipi_dsi_device_unregister(dsi); return 0; diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_panel_orientation_quirks.c linux-azure-5.4.0/drivers/gpu/drm/drm_panel_orientation_quirks.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -109,6 +109,18 @@ .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, }; +static const struct drm_dmi_panel_orientation_data lcd1280x1920_rightside_up = { + .width = 1280, + .height = 1920, + .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, +}; + +static const struct drm_dmi_panel_orientation_data lcd1600x2560_leftside_up = { + .width = 1600, + .height = 2560, + .orientation = DRM_MODE_PANEL_ORIENTATION_LEFT_UP, +}; + static const struct dmi_system_id orientation_data[] = { { /* Acer One 10 (S1003) */ .matches = { @@ -116,6 +128,12 @@ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "One S1003"), }, .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* Anbernic Win600 */ + .matches = { + DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Anbernic"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Win600"), + }, + .driver_data = (void *)&lcd720x1280_rightside_up, }, { /* Asus T100HA */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), @@ -134,6 +152,12 @@ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T103HAF"), }, .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* AYA NEO 2021 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYADEVICE"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AYA NEO 2021"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* GPD MicroPC (generic strings, also match on bios date) */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"), @@ -148,6 +172,12 @@ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "MicroPC"), }, .driver_data = (void *)&lcd720x1280_rightside_up, + }, { /* GPD Win Max */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G1619-01"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* * GPD Pocket, note that the the DMI data is less generic then * it seems, devices with a board-vendor of "AMI Corporation" @@ -185,6 +215,12 @@ DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"), }, .driver_data = (void *)&gpd_win2, + }, { /* GPD Win 3 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "GPD"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G1618-03") + }, + .driver_data = (void *)&lcd720x1280_rightside_up, }, { /* I.T.Works TW891 */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."), @@ -193,6 +229,13 @@ DMI_EXACT_MATCH(DMI_BOARD_NAME, "TW891"), }, .driver_data = (void *)&itworks_tw891, + }, { /* KD Kurio Smart C15200 2-in-1 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "KD Interactive"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Kurio Smart"), + DMI_EXACT_MATCH(DMI_BOARD_NAME, "KDM960BCP"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* * Lenovo Ideapad Miix 310 laptop, only some production batches * have a portrait screen, the resolution checks makes the quirk @@ -211,13 +254,24 @@ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"), }, .driver_data = (void *)&lcd800x1280_rightside_up, - }, { /* Lenovo Ideapad D330 */ + }, { /* Lenovo Ideapad D330-10IGM (HD) */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad D330-10IGM"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* Lenovo Ideapad D330-10IGM (FHD) */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"), - DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "81H3"), DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad D330-10IGM"), }, .driver_data = (void *)&lcd1200x1920_rightside_up, + }, { /* Lenovo Yoga Book X90F / X91F / X91L */ + .matches = { + /* Non exact match to match all versions */ + DMI_MATCH(DMI_PRODUCT_NAME, "Lenovo YB1-X9"), + }, + .driver_data = (void *)&lcd1200x1920_rightside_up, }, { /* OneGX1 Pro */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "SYSTEM_MANUFACTURER"), @@ -225,6 +279,25 @@ DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Default string"), }, .driver_data = (void *)&onegx1_pro, + }, { /* OneXPlayer */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ONE-NETBOOK TECHNOLOGY CO., LTD."), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "ONE XPLAYER"), + }, + .driver_data = (void *)&lcd1600x2560_leftside_up, + }, { /* Samsung GalaxyBook 10.6 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Galaxy Book 10.6"), + }, + .driver_data = (void *)&lcd1280x1920_rightside_up, + }, { /* Valve Steam Deck */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Valve"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Jupiter"), + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "1"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* VIOS LTH17 */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"), diff -u linux-azure-5.4.0/drivers/gpu/drm/drm_syncobj.c linux-azure-5.4.0/drivers/gpu/drm/drm_syncobj.c --- linux-azure-5.4.0/drivers/gpu/drm/drm_syncobj.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_syncobj.c @@ -329,8 +329,17 @@ if (*fence) { ret = dma_fence_chain_find_seqno(fence, point); - if (!ret) + if (!ret) { + /* If the requested seqno is already signaled + * drm_syncobj_find_fence may return a NULL + * fence. To make sure the recipient gets + * signalled, use a new fence instead. + */ + if (!*fence) + *fence = dma_fence_get_stub(); + goto out; + } dma_fence_put(*fence); } else { ret = -EINVAL; diff -u linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_buffer.c linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_buffer.c --- linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_buffer.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_buffer.c @@ -397,8 +397,7 @@ if (switch_mmu_context) { struct etnaviv_iommu_context *old_context = gpu->mmu_context; - etnaviv_iommu_context_get(mmu_context); - gpu->mmu_context = mmu_context; + gpu->mmu_context = etnaviv_iommu_context_get(mmu_context); etnaviv_iommu_context_put(old_context); } diff -u linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c --- linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c @@ -471,6 +471,12 @@ return -EINVAL; } + if (args->stream_size > SZ_128K || args->nr_relocs > SZ_128K || + args->nr_bos > SZ_128K || args->nr_pmrs > 128) { + DRM_ERROR("submit arguments out of size limits\n"); + return -EINVAL; + } + /* * Copy the command submission and bo array to kernel space in * one go, and do this outside of any locks. @@ -534,8 +540,7 @@ goto err_submit_objects; submit->ctx = file->driver_priv; - etnaviv_iommu_context_get(submit->ctx->mmu); - submit->mmu_context = submit->ctx->mmu; + submit->mmu_context = etnaviv_iommu_context_get(submit->ctx->mmu); submit->exec_state = args->exec_state; submit->flags = args->flags; diff -u linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gpu.c linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gpu.c --- linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gpu.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gpu.c @@ -545,6 +545,12 @@ /* We rely on the GPU running, so program the clock */ etnaviv_gpu_update_clock(gpu); + gpu->fe_running = false; + gpu->exec_state = -1; + if (gpu->mmu_context) + etnaviv_iommu_context_put(gpu->mmu_context); + gpu->mmu_context = NULL; + return 0; } @@ -607,19 +613,23 @@ VIVS_MMUv2_SEC_COMMAND_CONTROL_ENABLE | VIVS_MMUv2_SEC_COMMAND_CONTROL_PREFETCH(prefetch)); } + + gpu->fe_running = true; } -static void etnaviv_gpu_start_fe_idleloop(struct etnaviv_gpu *gpu) +static void etnaviv_gpu_start_fe_idleloop(struct etnaviv_gpu *gpu, + struct etnaviv_iommu_context *context) { - u32 address = etnaviv_cmdbuf_get_va(&gpu->buffer, - &gpu->mmu_context->cmdbuf_mapping); u16 prefetch; + u32 address; /* setup the MMU */ - etnaviv_iommu_restore(gpu, gpu->mmu_context); + etnaviv_iommu_restore(gpu, context); /* Start command processor */ prefetch = etnaviv_buffer_init(gpu); + address = etnaviv_cmdbuf_get_va(&gpu->buffer, + &gpu->mmu_context->cmdbuf_mapping); etnaviv_gpu_start_fe(gpu, address, prefetch); } @@ -790,7 +800,6 @@ /* Now program the hardware */ mutex_lock(&gpu->lock); etnaviv_gpu_hw_init(gpu); - gpu->exec_state = -1; mutex_unlock(&gpu->lock); pm_runtime_mark_last_busy(gpu->dev); @@ -994,8 +1003,6 @@ spin_unlock(&gpu->event_spinlock); etnaviv_gpu_hw_init(gpu); - gpu->exec_state = -1; - gpu->mmu_context = NULL; mutex_unlock(&gpu->lock); pm_runtime_mark_last_busy(gpu->dev); @@ -1306,14 +1313,12 @@ goto out_unlock; } - if (!gpu->mmu_context) { - etnaviv_iommu_context_get(submit->mmu_context); - gpu->mmu_context = submit->mmu_context; - etnaviv_gpu_start_fe_idleloop(gpu); - } else { - etnaviv_iommu_context_get(gpu->mmu_context); - submit->prev_mmu_context = gpu->mmu_context; - } + if (!gpu->fe_running) + etnaviv_gpu_start_fe_idleloop(gpu, submit->mmu_context); + + if (submit->prev_mmu_context) + etnaviv_iommu_context_put(submit->prev_mmu_context); + submit->prev_mmu_context = etnaviv_iommu_context_get(gpu->mmu_context); if (submit->nr_pmrs) { gpu->event[event[1]].sync_point = &sync_point_perfmon_sample_pre; @@ -1530,7 +1535,7 @@ static int etnaviv_gpu_hw_suspend(struct etnaviv_gpu *gpu) { - if (gpu->initialized && gpu->mmu_context) { + if (gpu->initialized && gpu->fe_running) { /* Replace the last WAIT with END */ mutex_lock(&gpu->lock); etnaviv_buffer_end(gpu); @@ -1543,8 +1548,7 @@ */ etnaviv_gpu_wait_idle(gpu, 100); - etnaviv_iommu_context_put(gpu->mmu_context); - gpu->mmu_context = NULL; + gpu->fe_running = false; } gpu->exec_state = -1; @@ -1692,6 +1696,9 @@ etnaviv_gpu_hw_suspend(gpu); #endif + if (gpu->mmu_context) + etnaviv_iommu_context_put(gpu->mmu_context); + if (gpu->initialized) { etnaviv_cmdbuf_free(&gpu->buffer); etnaviv_iommu_global_fini(gpu); diff -u linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos7_drm_decon.c linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos7_drm_decon.c --- linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos7_drm_decon.c +++ linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos7_drm_decon.c @@ -800,31 +800,40 @@ if (ret < 0) { DRM_DEV_ERROR(dev, "Failed to prepare_enable the pclk [%d]\n", ret); - return ret; + goto err_pclk_enable; } ret = clk_prepare_enable(ctx->aclk); if (ret < 0) { DRM_DEV_ERROR(dev, "Failed to prepare_enable the aclk [%d]\n", ret); - return ret; + goto err_aclk_enable; } ret = clk_prepare_enable(ctx->eclk); if (ret < 0) { DRM_DEV_ERROR(dev, "Failed to prepare_enable the eclk [%d]\n", ret); - return ret; + goto err_eclk_enable; } ret = clk_prepare_enable(ctx->vclk); if (ret < 0) { DRM_DEV_ERROR(dev, "Failed to prepare_enable the vclk [%d]\n", ret); - return ret; + goto err_vclk_enable; } return 0; + +err_vclk_enable: + clk_disable_unprepare(ctx->eclk); +err_eclk_enable: + clk_disable_unprepare(ctx->aclk); +err_aclk_enable: + clk_disable_unprepare(ctx->pclk); +err_pclk_enable: + return ret; } #endif diff -u linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos_drm_dma.c linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos_drm_dma.c --- linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos_drm_dma.c +++ linux-azure-5.4.0/drivers/gpu/drm/exynos/exynos_drm_dma.c @@ -140,6 +140,8 @@ EXYNOS_DEV_ADDR_START, EXYNOS_DEV_ADDR_SIZE); else if (IS_ENABLED(CONFIG_IOMMU_DMA)) mapping = iommu_get_domain_for_dev(priv->dma_dev); + else + mapping = ERR_PTR(-ENODEV); if (IS_ERR(mapping)) return PTR_ERR(mapping); diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/Kconfig.debug linux-azure-5.4.0/drivers/gpu/drm/i915/Kconfig.debug --- linux-azure-5.4.0/drivers/gpu/drm/i915/Kconfig.debug +++ linux-azure-5.4.0/drivers/gpu/drm/i915/Kconfig.debug @@ -21,7 +21,6 @@ depends on DRM_I915 select DEBUG_FS select PREEMPT_COUNT - select REFCOUNT_FULL select I2C_CHARDEV select STACKDEPOT select DRM_DP_AUX_CHARDEV diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp.c linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp.c @@ -166,6 +166,12 @@ enum pipe pipe); static void intel_dp_unset_edid(struct intel_dp *intel_dp); +static void intel_dp_set_default_sink_rates(struct intel_dp *intel_dp) +{ + intel_dp->sink_rates[0] = 162000; + intel_dp->num_sink_rates = 1; +} + /* update sink rates from dpcd */ static void intel_dp_set_sink_rates(struct intel_dp *intel_dp) { @@ -4261,6 +4267,9 @@ */ intel_psr_init_dpcd(intel_dp); + /* Clear the default sink rates */ + intel_dp->num_sink_rates = 0; + /* Read the eDP 1.4+ supported link rates. */ if (intel_dp->edp_dpcd[0] >= DP_EDP_14) { __le16 sink_rates[DP_MAX_SUPPORTED_RATES]; @@ -7170,6 +7179,8 @@ return false; intel_dp_set_source_rates(intel_dp); + intel_dp_set_default_sink_rates(intel_dp); + intel_dp_set_common_rates(intel_dp); intel_dp->reset_link_params = true; intel_dp->pps_pipe = INVALID_PIPE; diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp_mst.c linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp_mst.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_dp_mst.c @@ -520,6 +520,7 @@ ret = drm_connector_init(dev, connector, &intel_dp_mst_connector_funcs, DRM_MODE_CONNECTOR_DisplayPort); if (ret) { + drm_dp_mst_put_port_malloc(port); intel_connector_free(intel_connector); return NULL; } diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_overlay.c linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_overlay.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_overlay.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_overlay.c @@ -922,6 +922,9 @@ const struct intel_crtc_state *pipe_config = overlay->crtc->config; + if (rec->dst_height == 0 || rec->dst_width == 0) + return -EINVAL; + if (rec->dst_x < pipe_config->pipe_src_w && rec->dst_x + rec->dst_width <= pipe_config->pipe_src_w && rec->dst_y < pipe_config->pipe_src_h && diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c @@ -1452,7 +1452,7 @@ urelocs = u64_to_user_ptr(entry->relocs_ptr); remain = entry->relocation_count; - if (unlikely(remain > N_RELOC(ULONG_MAX))) + if (unlikely((unsigned long)remain > N_RELOC(ULONG_MAX))) return -EINVAL; /* diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_object_types.h linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_object_types.h --- linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_object_types.h +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_object_types.h @@ -118,6 +118,9 @@ I915_SELFTEST_DECLARE(struct list_head st_link); + unsigned long flags; +#define I915_BO_WAS_BOUND_BIT 0 + /* * Is the object to be mapped as read-only to the GPU * Only honoured if hardware has relevant pte bit diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_timeline.c linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_timeline.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_timeline.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_timeline.c @@ -290,6 +290,14 @@ i915_gem_object_unpin_map(timeline->hwsp_ggtt->obj); i915_vma_put(timeline->hwsp_ggtt); + + /* + * A small race exists between intel_gt_retire_requests_timeout and + * intel_timeline_exit which could result in the syncmap not getting + * free'd. Rather than work to hard to seal this race, simply cleanup + * the syncmap on fini. + */ + i915_syncmap_free(&timeline->sync); } struct intel_timeline * diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/gvt/handlers.c linux-azure-5.4.0/drivers/gpu/drm/i915/gvt/handlers.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/gvt/handlers.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gvt/handlers.c @@ -654,7 +654,7 @@ else if (FDI_RX_IMR_TO_PIPE(offset) != INVALID_INDEX) index = FDI_RX_IMR_TO_PIPE(offset); else { - gvt_vgpu_err("Unsupport registers %x\n", offset); + gvt_vgpu_err("Unsupported registers %x\n", offset); return -EINVAL; } diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/i915_reg.h linux-azure-5.4.0/drivers/gpu/drm/i915/i915_reg.h --- linux-azure-5.4.0/drivers/gpu/drm/i915/i915_reg.h +++ linux-azure-5.4.0/drivers/gpu/drm/i915/i915_reg.h @@ -2519,6 +2519,12 @@ #define GAMT_CHKN_DISABLE_DYNAMIC_CREDIT_SHARING (1 << 28) #define GAMT_CHKN_DISABLE_I2M_CYCLE_ON_WR_PORT (1 << 24) +#define GEN8_RTCR _MMIO(0x4260) +#define GEN8_M1TCR _MMIO(0x4264) +#define GEN8_M2TCR _MMIO(0x4268) +#define GEN8_BTCR _MMIO(0x426c) +#define GEN8_VTCR _MMIO(0x4270) + #if 0 #define PRB0_TAIL _MMIO(0x2030) #define PRB0_HEAD _MMIO(0x2034) @@ -2602,6 +2608,11 @@ #define FAULT_VA_HIGH_BITS (0xf << 0) #define FAULT_GTT_SEL (1 << 4) +#define GEN12_GFX_TLB_INV_CR _MMIO(0xced8) +#define GEN12_VD_TLB_INV_CR _MMIO(0xcedc) +#define GEN12_VE_TLB_INV_CR _MMIO(0xcee0) +#define GEN12_BLT_TLB_INV_CR _MMIO(0xcee4) + #define FPGA_DBG _MMIO(0x42300) #define FPGA_DBG_RM_NOCLAIM (1 << 31) diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/i915_vma.c linux-azure-5.4.0/drivers/gpu/drm/i915/i915_vma.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/i915_vma.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/i915_vma.c @@ -341,6 +341,10 @@ return ret; vma->flags |= bind_flags; + + if (vma->obj) + set_bit(I915_BO_WAS_BOUND_BIT, &vma->obj->flags); + return 0; } diff -u linux-azure-5.4.0/drivers/gpu/drm/i915/intel_pm.c linux-azure-5.4.0/drivers/gpu/drm/i915/intel_pm.c --- linux-azure-5.4.0/drivers/gpu/drm/i915/intel_pm.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/intel_pm.c @@ -2822,7 +2822,7 @@ } static void intel_read_wm_latency(struct drm_i915_private *dev_priv, - u16 wm[8]) + u16 wm[]) { struct intel_uncore *uncore = &dev_priv->uncore; @@ -3017,9 +3017,9 @@ * The BIOS provided WM memory latency values are often * inadequate for high resolution displays. Adjust them. */ - changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | - ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) | - ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); + changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12); + changed |= ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12); + changed |= ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); if (!changed) return; diff -u linux-azure-5.4.0/drivers/gpu/drm/imx/ipuv3-crtc.c linux-azure-5.4.0/drivers/gpu/drm/imx/ipuv3-crtc.c --- linux-azure-5.4.0/drivers/gpu/drm/imx/ipuv3-crtc.c +++ linux-azure-5.4.0/drivers/gpu/drm/imx/ipuv3-crtc.c @@ -68,7 +68,7 @@ drm_atomic_crtc_state_for_each_plane(plane, old_crtc_state) { if (plane == &ipu_crtc->plane[0]->base) disable_full = true; - if (&ipu_crtc->plane[1] && plane == &ipu_crtc->plane[1]->base) + if (ipu_crtc->plane[1] && plane == &ipu_crtc->plane[1]->base) disable_partial = true; } diff -u linux-azure-5.4.0/drivers/gpu/drm/imx/parallel-display.c linux-azure-5.4.0/drivers/gpu/drm/imx/parallel-display.c --- linux-azure-5.4.0/drivers/gpu/drm/imx/parallel-display.c +++ linux-azure-5.4.0/drivers/gpu/drm/imx/parallel-display.c @@ -68,8 +68,10 @@ ret = of_get_drm_display_mode(np, &imxpd->mode, &imxpd->bus_flags, OF_USE_NATIVE_MODE); - if (ret) + if (ret) { + drm_mode_destroy(connector->dev, mode); return ret; + } drm_mode_copy(mode, &imxpd->mode); mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED, diff -u linux-azure-5.4.0/drivers/gpu/drm/mcde/mcde_dsi.c linux-azure-5.4.0/drivers/gpu/drm/mcde/mcde_dsi.c --- linux-azure-5.4.0/drivers/gpu/drm/mcde/mcde_dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/mcde/mcde_dsi.c @@ -942,6 +942,7 @@ bridge = of_drm_find_bridge(child); if (!bridge) { dev_err(dev, "failed to find bridge\n"); + of_node_put(child); return -EINVAL; } } diff -u linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_dpi.c linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_dpi.c --- linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_dpi.c +++ linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_dpi.c @@ -50,13 +50,7 @@ }; enum mtk_dpi_out_color_format { - MTK_DPI_COLOR_FORMAT_RGB, - MTK_DPI_COLOR_FORMAT_RGB_FULL, - MTK_DPI_COLOR_FORMAT_YCBCR_444, - MTK_DPI_COLOR_FORMAT_YCBCR_422, - MTK_DPI_COLOR_FORMAT_XV_YCC, - MTK_DPI_COLOR_FORMAT_YCBCR_444_FULL, - MTK_DPI_COLOR_FORMAT_YCBCR_422_FULL + MTK_DPI_COLOR_FORMAT_RGB }; struct mtk_dpi { @@ -355,24 +349,11 @@ static void mtk_dpi_config_color_format(struct mtk_dpi *dpi, enum mtk_dpi_out_color_format format) { - if ((format == MTK_DPI_COLOR_FORMAT_YCBCR_444) || - (format == MTK_DPI_COLOR_FORMAT_YCBCR_444_FULL)) { - mtk_dpi_config_yuv422_enable(dpi, false); - mtk_dpi_config_csc_enable(dpi, true); - mtk_dpi_config_swap_input(dpi, false); - mtk_dpi_config_channel_swap(dpi, MTK_DPI_OUT_CHANNEL_SWAP_BGR); - } else if ((format == MTK_DPI_COLOR_FORMAT_YCBCR_422) || - (format == MTK_DPI_COLOR_FORMAT_YCBCR_422_FULL)) { - mtk_dpi_config_yuv422_enable(dpi, true); - mtk_dpi_config_csc_enable(dpi, true); - mtk_dpi_config_swap_input(dpi, true); - mtk_dpi_config_channel_swap(dpi, MTK_DPI_OUT_CHANNEL_SWAP_RGB); - } else { - mtk_dpi_config_yuv422_enable(dpi, false); - mtk_dpi_config_csc_enable(dpi, false); - mtk_dpi_config_swap_input(dpi, false); - mtk_dpi_config_channel_swap(dpi, MTK_DPI_OUT_CHANNEL_SWAP_RGB); - } + /* only support RGB888 */ + mtk_dpi_config_yuv422_enable(dpi, false); + mtk_dpi_config_csc_enable(dpi, false); + mtk_dpi_config_swap_input(dpi, false); + mtk_dpi_config_channel_swap(dpi, MTK_DPI_OUT_CHANNEL_SWAP_RGB); } static void mtk_dpi_power_off(struct mtk_dpi *dpi) @@ -413,7 +394,6 @@ if (dpi->pinctrl && dpi->pins_dpi) pinctrl_select_state(dpi->pinctrl, dpi->pins_dpi); - mtk_dpi_enable(dpi); return 0; err_pixel: @@ -557,6 +537,7 @@ mtk_dpi_power_on(dpi); mtk_dpi_set_display_mode(dpi, &dpi->mode); + mtk_dpi_enable(dpi); } static int mtk_dpi_atomic_check(struct drm_encoder *encoder, diff -u linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c --- linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c @@ -240,7 +240,7 @@ drm_connector_list_iter_end(&conn_iter); } - ret = pm_runtime_get_sync(crtc->dev->dev); + ret = pm_runtime_resume_and_get(crtc->dev->dev); if (ret < 0) { DRM_ERROR("Failed to enable power domain: %d\n", ret); return ret; diff -u linux-azure-5.4.0/drivers/gpu/drm/meson/meson_drv.c linux-azure-5.4.0/drivers/gpu/drm/meson/meson_drv.c --- linux-azure-5.4.0/drivers/gpu/drm/meson/meson_drv.c +++ linux-azure-5.4.0/drivers/gpu/drm/meson/meson_drv.c @@ -124,8 +124,11 @@ for_each_endpoint_of_node(dev->of_node, ep) { /* If the endpoint node exists, consider it enabled */ remote = of_graph_get_remote_port(ep); - if (remote) + if (remote) { + of_node_put(remote); + of_node_put(ep); return true; + } } return false; diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c linux-azure-5.4.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c @@ -891,6 +891,7 @@ BUG_ON(!node); ret = a6xx_gmu_init(a6xx_gpu, node); + of_node_put(node); if (ret) { a6xx_destroy(&(a6xx_gpu->base.base)); return ERR_PTR(ret); diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c @@ -534,9 +534,15 @@ if (ret) return ret; - mdp5_mixer_release(new_crtc_state->state, old_mixer); + ret = mdp5_mixer_release(new_crtc_state->state, old_mixer); + if (ret) + return ret; + if (old_r_mixer) { - mdp5_mixer_release(new_crtc_state->state, old_r_mixer); + ret = mdp5_mixer_release(new_crtc_state->state, old_r_mixer); + if (ret) + return ret; + if (!need_right_mixer) pipeline->r_mixer = NULL; } @@ -903,8 +909,10 @@ ret = msm_gem_get_and_pin_iova(cursor_bo, kms->aspace, &mdp5_crtc->cursor.iova); - if (ret) + if (ret) { + drm_gem_object_put(cursor_bo); return -EINVAL; + } pm_runtime_get_sync(&pdev->dev); diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c @@ -698,9 +698,9 @@ pdev = mdp5_kms->pdev; irq = irq_of_parse_and_map(pdev->dev.of_node, 0); - if (irq < 0) { - ret = irq; - DRM_DEV_ERROR(&pdev->dev, "failed to get irq: %d\n", ret); + if (!irq) { + ret = -EINVAL; + DRM_DEV_ERROR(&pdev->dev, "failed to get irq\n"); goto fail; } diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_manager.c linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_manager.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_manager.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_manager.c @@ -625,7 +625,7 @@ return connector; fail: - connector->funcs->destroy(msm_dsi->connector); + connector->funcs->destroy(connector); return ERR_PTR(ret); } diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c @@ -347,7 +347,7 @@ } else { timing->shared_timings.clk_pre = linear_inter(tmax, tmin, pcnt2, 0, false); - timing->shared_timings.clk_pre_inc_by_2 = 0; + timing->shared_timings.clk_pre_inc_by_2 = 0; } timing->ta_go = 3; @@ -665,12 +665,14 @@ int msm_dsi_phy_enable(struct msm_dsi_phy *phy, int src_pll_id, struct msm_dsi_phy_clk_request *clk_req) { - struct device *dev = &phy->pdev->dev; + struct device *dev; int ret; if (!phy || !phy->cfg->ops.enable) return -EINVAL; + dev = &phy->pdev->dev; + ret = dsi_phy_enable_resource(phy); if (ret) { DRM_DEV_ERROR(dev, "%s: resource enable failed, %d\n", diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/msm_debugfs.c linux-azure-5.4.0/drivers/gpu/drm/msm/msm_debugfs.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/msm_debugfs.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/msm_debugfs.c @@ -77,6 +77,7 @@ goto free_priv; pm_runtime_get_sync(&gpu->pdev->dev); + msm_gpu_hw_init(gpu); show_priv->state = gpu->funcs->gpu_state_get(gpu); pm_runtime_put_sync(&gpu->pdev->dev); diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/msm_drv.c linux-azure-5.4.0/drivers/gpu/drm/msm/msm_drv.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/msm_drv.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/msm_drv.c @@ -337,7 +337,7 @@ of_node_put(node); if (ret) return ret; - size = r.end - r.start; + size = r.end - r.start + 1; DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start); /* if we have no IOMMU, then we need to use carveout allocator. diff -u linux-azure-5.4.0/drivers/gpu/drm/msm/msm_gem.c linux-azure-5.4.0/drivers/gpu/drm/msm/msm_gem.c --- linux-azure-5.4.0/drivers/gpu/drm/msm/msm_gem.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/msm_gem.c @@ -1036,7 +1036,7 @@ ret = msm_gem_new_impl(dev, size, flags, &obj); if (ret) - goto fail; + return ERR_PTR(ret); msm_obj = to_msm_bo(obj); @@ -1124,7 +1124,7 @@ ret = msm_gem_new_impl(dev, size, MSM_BO_WC, &obj); if (ret) - goto fail; + return ERR_PTR(ret); drm_gem_private_object_init(dev, obj, size); diff -u linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_debugfs.c linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_debugfs.c --- linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_debugfs.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_debugfs.c @@ -207,6 +207,7 @@ .open = nouveau_debugfs_pstate_open, .read = seq_read, .write = nouveau_debugfs_pstate_set, + .release = single_release, }; static struct drm_info_list nouveau_debugfs_list[] = { diff -u linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drm.c linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drm.c --- linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drm.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drm.c @@ -520,6 +520,7 @@ nvkm_dbgopt(nouveau_debug, "DRM"); INIT_LIST_HEAD(&drm->clients); + mutex_init(&drm->clients_lock); spin_lock_init(&drm->tile.lock); /* workaround an odd issue on nvc1 by disabling the device's @@ -589,6 +590,7 @@ static void nouveau_drm_device_fini(struct drm_device *dev) { + struct nouveau_cli *cli, *temp_cli; struct nouveau_drm *drm = nouveau_drm(dev); if (nouveau_pmops_runtime()) { @@ -613,8 +615,27 @@ nouveau_ttm_fini(drm); nouveau_vga_fini(drm); + /* + * There may be existing clients from as-yet unclosed files. For now, + * clean them up here rather than deferring until the file is closed, + * but this likely not correct if we want to support hot-unplugging + * properly. + */ + mutex_lock(&drm->clients_lock); + list_for_each_entry_safe(cli, temp_cli, &drm->clients, head) { + list_del(&cli->head); + mutex_lock(&cli->mutex); + if (cli->abi16) + nouveau_abi16_fini(cli->abi16); + mutex_unlock(&cli->mutex); + nouveau_cli_fini(cli); + kfree(cli); + } + mutex_unlock(&drm->clients_lock); + nouveau_cli_fini(&drm->client); nouveau_cli_fini(&drm->master); + mutex_destroy(&drm->clients_lock); kfree(drm); } @@ -779,7 +800,7 @@ struct nvkm_client *client; struct nvkm_device *device; - drm_dev_unregister(dev); + drm_dev_unplug(dev); dev->irq_enabled = false; client = nvxx_client(&drm->client.base); @@ -1073,9 +1094,9 @@ fpriv->driver_priv = cli; - mutex_lock(&drm->client.mutex); + mutex_lock(&drm->clients_lock); list_add(&cli->head, &drm->clients); - mutex_unlock(&drm->client.mutex); + mutex_unlock(&drm->clients_lock); done: if (ret && cli) { @@ -1093,6 +1114,16 @@ { struct nouveau_cli *cli = nouveau_cli(fpriv); struct nouveau_drm *drm = nouveau_drm(dev); + int dev_index; + + /* + * The device is gone, and as it currently stands all clients are + * cleaned up in the removal codepath. In the future this may change + * so that we can support hot-unplugging, but for now we immediately + * return to avoid a double-free situation. + */ + if (!drm_dev_enter(dev, &dev_index)) + return; pm_runtime_get_sync(dev->dev); @@ -1101,14 +1132,15 @@ nouveau_abi16_fini(cli->abi16); mutex_unlock(&cli->mutex); - mutex_lock(&drm->client.mutex); + mutex_lock(&drm->clients_lock); list_del(&cli->head); - mutex_unlock(&drm->client.mutex); + mutex_unlock(&drm->clients_lock); nouveau_cli_fini(cli); kfree(cli); pm_runtime_mark_last_busy(dev->dev); pm_runtime_put_autosuspend(dev->dev); + drm_dev_exit(dev_index); } static const struct drm_ioctl_desc diff -u linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drv.h linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drv.h --- linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drv.h +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -138,6 +138,11 @@ struct list_head clients; + /** + * @clients_lock: Protects access to the @clients list of &struct nouveau_cli. + */ + struct mutex clients_lock; + u8 old_pm_cap; struct { diff -u linux-azure-5.4.0/drivers/gpu/drm/omapdrm/dss/dss.c linux-azure-5.4.0/drivers/gpu/drm/omapdrm/dss/dss.c --- linux-azure-5.4.0/drivers/gpu/drm/omapdrm/dss/dss.c +++ linux-azure-5.4.0/drivers/gpu/drm/omapdrm/dss/dss.c @@ -1173,6 +1173,7 @@ default: break; } + of_node_put(port); } } @@ -1205,11 +1206,13 @@ default: break; } + of_node_put(port); } return 0; error: + of_node_put(port); __dss_uninit_ports(dss, i); return r; } diff -u linux-azure-5.4.0/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c linux-azure-5.4.0/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c --- linux-azure-5.4.0/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c +++ linux-azure-5.4.0/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c @@ -232,7 +232,7 @@ ret = i2c_smbus_write_byte_data(ts->i2c, reg, val); if (ret) - dev_err(&ts->dsi->dev, "I2C write failed: %d\n", ret); + dev_err(&ts->i2c->dev, "I2C write failed: %d\n", ret); } static int rpi_touchscreen_write(struct rpi_touchscreen *ts, u16 reg, u32 val) @@ -268,7 +268,7 @@ return 0; } -static int rpi_touchscreen_enable(struct drm_panel *panel) +static int rpi_touchscreen_prepare(struct drm_panel *panel) { struct rpi_touchscreen *ts = panel_to_ts(panel); int i; @@ -298,6 +298,13 @@ rpi_touchscreen_write(ts, DSI_STARTDSI, 0x01); msleep(100); + return 0; +} + +static int rpi_touchscreen_enable(struct drm_panel *panel) +{ + struct rpi_touchscreen *ts = panel_to_ts(panel); + /* Turn on the backlight. */ rpi_touchscreen_i2c_write(ts, REG_PWM, 255); @@ -352,7 +359,7 @@ static const struct drm_panel_funcs rpi_touchscreen_funcs = { .disable = rpi_touchscreen_disable, .unprepare = rpi_touchscreen_noop, - .prepare = rpi_touchscreen_noop, + .prepare = rpi_touchscreen_prepare, .enable = rpi_touchscreen_enable, .get_modes = rpi_touchscreen_get_modes, }; @@ -453,7 +460,6 @@ drm_panel_remove(&ts->base); mipi_dsi_device_unregister(ts->dsi); - kfree(ts->dsi); return 0; } diff -u linux-azure-5.4.0/drivers/gpu/drm/panel/panel-simple.c linux-azure-5.4.0/drivers/gpu/drm/panel/panel-simple.c --- linux-azure-5.4.0/drivers/gpu/drm/panel/panel-simple.c +++ linux-azure-5.4.0/drivers/gpu/drm/panel/panel-simple.c @@ -1619,7 +1619,7 @@ static const struct panel_desc innolux_g070y2_l01 = { .timings = &innolux_g070y2_l01_timing, .num_timings = 1, - .bpc = 6, + .bpc = 8, .size = { .width = 152, .height = 91, diff -u linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_drv.c linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_drv.c --- linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_drv.c +++ linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_drv.c @@ -428,8 +428,8 @@ if (args->retained) { if (args->madv == PANFROST_MADV_DONTNEED) - list_add_tail(&bo->base.madv_list, - &pfdev->shrinker_list); + list_move_tail(&bo->base.madv_list, + &pfdev->shrinker_list); else if (args->madv == PANFROST_MADV_WILLNEED) list_del_init(&bo->base.madv_list); } diff -u linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_mmu.c linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_mmu.c --- linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_mmu.c +++ linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_mmu.c @@ -52,25 +52,16 @@ } static void lock_region(struct panfrost_device *pfdev, u32 as_nr, - u64 iova, size_t size) + u64 iova, u64 size) { u8 region_width; u64 region = iova & PAGE_MASK; - /* - * fls returns: - * 1 .. 32 - * - * 10 + fls(num_pages) - * results in the range (11 .. 42) - */ - - size = round_up(size, PAGE_SIZE); - region_width = 10 + fls(size >> PAGE_SHIFT); - if ((size >> PAGE_SHIFT) != (1ul << (region_width - 11))) { - /* not pow2, so must go up to the next pow2 */ - region_width += 1; - } + /* The size is encoded as ceil(log2) minus(1), which may be calculated + * with fls. The size must be clamped to hardware bounds. + */ + size = max_t(u64, size, AS_LOCK_REGION_MIN_SIZE); + region_width = fls64(size - 1) - 1; region |= region_width; /* Lock the region that needs to be updated */ @@ -81,7 +72,7 @@ static int mmu_hw_do_operation_locked(struct panfrost_device *pfdev, int as_nr, - u64 iova, size_t size, u32 op) + u64 iova, u64 size, u32 op) { if (as_nr < 0) return 0; @@ -98,7 +89,7 @@ static int mmu_hw_do_operation(struct panfrost_device *pfdev, struct panfrost_mmu *mmu, - u64 iova, size_t size, u32 op) + u64 iova, u64 size, u32 op) { int ret; @@ -115,7 +106,7 @@ u64 transtab = cfg->arm_mali_lpae_cfg.transtab; u64 memattr = cfg->arm_mali_lpae_cfg.memattr; - mmu_hw_do_operation_locked(pfdev, as_nr, 0, ~0UL, AS_COMMAND_FLUSH_MEM); + mmu_hw_do_operation_locked(pfdev, as_nr, 0, ~0ULL, AS_COMMAND_FLUSH_MEM); mmu_write(pfdev, AS_TRANSTAB_LO(as_nr), transtab & 0xffffffffUL); mmu_write(pfdev, AS_TRANSTAB_HI(as_nr), transtab >> 32); @@ -131,7 +122,7 @@ static void panfrost_mmu_disable(struct panfrost_device *pfdev, u32 as_nr) { - mmu_hw_do_operation_locked(pfdev, as_nr, 0, ~0UL, AS_COMMAND_FLUSH_MEM); + mmu_hw_do_operation_locked(pfdev, as_nr, 0, ~0ULL, AS_COMMAND_FLUSH_MEM); mmu_write(pfdev, AS_TRANSTAB_LO(as_nr), 0); mmu_write(pfdev, AS_TRANSTAB_HI(as_nr), 0); @@ -231,7 +222,7 @@ static void panfrost_mmu_flush_range(struct panfrost_device *pfdev, struct panfrost_mmu *mmu, - u64 iova, size_t size) + u64 iova, u64 size) { if (mmu->as < 0) return; diff -u linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_regs.h linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_regs.h --- linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_regs.h +++ linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_regs.h @@ -318,6 +318,8 @@ #define AS_FAULTSTATUS_ACCESS_TYPE_READ (0x2 << 8) #define AS_FAULTSTATUS_ACCESS_TYPE_WRITE (0x3 << 8) +#define AS_LOCK_REGION_MIN_SIZE (1ULL << 15) + #define gpu_write(dev, reg, data) writel(data, dev->iomem + reg) #define gpu_read(dev, reg) readl(dev->iomem + reg) diff -u linux-azure-5.4.0/drivers/gpu/drm/radeon/ni_dpm.c linux-azure-5.4.0/drivers/gpu/drm/radeon/ni_dpm.c --- linux-azure-5.4.0/drivers/gpu/drm/radeon/ni_dpm.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/ni_dpm.c @@ -2740,10 +2740,10 @@ table->mc_reg_table_entry[k].mc_data[j] |= 0x100; } j++; - if (j > SMC_NISLANDS_MC_REGISTER_ARRAY_SIZE) - return -EINVAL; break; case MC_SEQ_RESERVE_M >> 2: + if (j >= SMC_NISLANDS_MC_REGISTER_ARRAY_SIZE) + return -EINVAL; temp_reg = RREG32(MC_PMG_CMD_MRS1); table->mc_reg_address[j].s1 = MC_PMG_CMD_MRS1 >> 2; table->mc_reg_address[j].s0 = MC_SEQ_PMG_CMD_MRS1_LP >> 2; @@ -2752,8 +2752,6 @@ (temp_reg & 0xffff0000) | (table->mc_reg_table_entry[k].mc_data[i] & 0x0000ffff); j++; - if (j > SMC_NISLANDS_MC_REGISTER_ARRAY_SIZE) - return -EINVAL; break; default: break; diff -u linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_connectors.c linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_connectors.c --- linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_connectors.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_connectors.c @@ -477,6 +477,8 @@ native_mode->vdisplay != 0 && native_mode->clock != 0) { mode = drm_mode_duplicate(dev, native_mode); + if (!mode) + return NULL; mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; drm_mode_set_name(mode); @@ -491,6 +493,8 @@ * simpler. */ mode = drm_cvt_mode(dev, native_mode->hdisplay, native_mode->vdisplay, 60, true, false, false); + if (!mode) + return NULL; mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; DRM_DEBUG_KMS("Adding cvt approximation of native panel mode %s\n", mode->name); } diff -u linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_display.c linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_display.c --- linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_display.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_display.c @@ -1333,6 +1333,7 @@ /* Handle is imported dma-buf, so cannot be migrated to VRAM for scanout */ if (obj->import_attach) { DRM_DEBUG_KMS("Cannot create framebuffer from imported dma_buf\n"); + drm_gem_object_put(obj); return ERR_PTR(-EINVAL); } diff -u linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_kms.c linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_kms.c --- linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_kms.c @@ -634,6 +634,8 @@ int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv) { struct radeon_device *rdev = dev->dev_private; + struct radeon_fpriv *fpriv; + struct radeon_vm *vm; int r; file_priv->driver_priv = NULL; @@ -646,48 +648,52 @@ /* new gpu have virtual address space support */ if (rdev->family >= CHIP_CAYMAN) { - struct radeon_fpriv *fpriv; - struct radeon_vm *vm; fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL); if (unlikely(!fpriv)) { r = -ENOMEM; - goto out_suspend; + goto err_suspend; } if (rdev->accel_working) { vm = &fpriv->vm; r = radeon_vm_init(rdev, vm); - if (r) { - kfree(fpriv); - goto out_suspend; - } + if (r) + goto err_fpriv; r = radeon_bo_reserve(rdev->ring_tmp_bo.bo, false); - if (r) { - radeon_vm_fini(rdev, vm); - kfree(fpriv); - goto out_suspend; - } + if (r) + goto err_vm_fini; /* map the ib pool buffer read only into * virtual address space */ vm->ib_bo_va = radeon_vm_bo_add(rdev, vm, rdev->ring_tmp_bo.bo); + if (!vm->ib_bo_va) { + r = -ENOMEM; + goto err_vm_fini; + } + r = radeon_vm_bo_set_addr(rdev, vm->ib_bo_va, RADEON_VA_IB_OFFSET, RADEON_VM_PAGE_READABLE | RADEON_VM_PAGE_SNOOPED); - if (r) { - radeon_vm_fini(rdev, vm); - kfree(fpriv); - goto out_suspend; - } + if (r) + goto err_vm_fini; } file_priv->driver_priv = fpriv; } -out_suspend: + pm_runtime_mark_last_busy(dev->dev); + pm_runtime_put_autosuspend(dev->dev); + return 0; + +err_vm_fini: + radeon_vm_fini(rdev, vm); +err_fpriv: + kfree(fpriv); + +err_suspend: pm_runtime_mark_last_busy(dev->dev); pm_runtime_put_autosuspend(dev->dev); return r; diff -u linux-azure-5.4.0/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c linux-azure-5.4.0/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c --- linux-azure-5.4.0/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c +++ linux-azure-5.4.0/drivers/gpu/drm/rockchip/analogix_dp-rockchip.c @@ -401,7 +401,15 @@ if (IS_ERR(dp->adp)) return PTR_ERR(dp->adp); - return component_add(dev, &rockchip_dp_component_ops); + ret = component_add(dev, &rockchip_dp_component_ops); + if (ret) + goto err_dp_remove; + + return 0; + +err_dp_remove: + analogix_dp_remove(dp->adp); + return ret; } static int rockchip_dp_remove(struct platform_device *pdev) diff -u linux-azure-5.4.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c linux-azure-5.4.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c --- linux-azure-5.4.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c +++ linux-azure-5.4.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c @@ -1288,6 +1288,9 @@ { struct rockchip_crtc_state *rockchip_state; + if (WARN_ON(!crtc->state)) + return NULL; + rockchip_state = kzalloc(sizeof(*rockchip_state), GFP_KERNEL); if (!rockchip_state) return NULL; @@ -1848,10 +1851,10 @@ vop_win_init(vop); res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - vop->len = resource_size(res); vop->regs = devm_ioremap_resource(dev, res); if (IS_ERR(vop->regs)) return PTR_ERR(vop->regs); + vop->len = resource_size(res); vop->regsbak = devm_kzalloc(dev, vop->len, GFP_KERNEL); if (!vop->regsbak) diff -u linux-azure-5.4.0/drivers/gpu/drm/sun4i/sun8i_mixer.h linux-azure-5.4.0/drivers/gpu/drm/sun4i/sun8i_mixer.h --- linux-azure-5.4.0/drivers/gpu/drm/sun4i/sun8i_mixer.h +++ linux-azure-5.4.0/drivers/gpu/drm/sun4i/sun8i_mixer.h @@ -114,10 +114,10 @@ /* format 13 is semi-planar YUV411 VUVU */ #define SUN8I_MIXER_FBFMT_YUV411 14 /* format 15 doesn't exist */ -/* format 16 is P010 YVU */ -#define SUN8I_MIXER_FBFMT_P010_YUV 17 -/* format 18 is P210 YVU */ -#define SUN8I_MIXER_FBFMT_P210_YUV 19 +#define SUN8I_MIXER_FBFMT_P010_YUV 16 +/* format 17 is P010 YVU */ +#define SUN8I_MIXER_FBFMT_P210_YUV 18 +/* format 19 is P210 YVU */ /* format 20 is packed YVU444 10-bit */ /* format 21 is packed YUV444 10-bit */ diff -u linux-azure-5.4.0/drivers/gpu/drm/tegra/dc.c linux-azure-5.4.0/drivers/gpu/drm/tegra/dc.c --- linux-azure-5.4.0/drivers/gpu/drm/tegra/dc.c +++ linux-azure-5.4.0/drivers/gpu/drm/tegra/dc.c @@ -919,6 +919,11 @@ .atomic_disable = tegra_cursor_atomic_disable, }; +static const uint64_t linear_modifiers[] = { + DRM_FORMAT_MOD_LINEAR, + DRM_FORMAT_MOD_INVALID +}; + static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm, struct tegra_dc *dc) { @@ -947,7 +952,7 @@ err = drm_universal_plane_init(drm, &plane->base, possible_crtcs, &tegra_plane_funcs, formats, - num_formats, NULL, + num_formats, linear_modifiers, DRM_PLANE_TYPE_CURSOR, NULL); if (err < 0) { kfree(plane); @@ -1065,7 +1070,8 @@ err = drm_universal_plane_init(drm, &plane->base, possible_crtcs, &tegra_plane_funcs, formats, - num_formats, NULL, type, NULL); + num_formats, linear_modifiers, + type, NULL); if (err < 0) { kfree(plane); return ERR_PTR(err); diff -u linux-azure-5.4.0/drivers/gpu/drm/tegra/drm.c linux-azure-5.4.0/drivers/gpu/drm/tegra/drm.c --- linux-azure-5.4.0/drivers/gpu/drm/tegra/drm.c +++ linux-azure-5.4.0/drivers/gpu/drm/tegra/drm.c @@ -122,8 +122,6 @@ drm->mode_config.max_width = 4096; drm->mode_config.max_height = 4096; - drm->mode_config.allow_fb_modifiers = true; - drm->mode_config.normalize_zpos = true; drm->mode_config.funcs = &tegra_drm_mode_config_funcs; diff -u linux-azure-5.4.0/drivers/gpu/drm/tegra/sor.c linux-azure-5.4.0/drivers/gpu/drm/tegra/sor.c --- linux-azure-5.4.0/drivers/gpu/drm/tegra/sor.c +++ linux-azure-5.4.0/drivers/gpu/drm/tegra/sor.c @@ -2875,21 +2875,21 @@ if (err < 0) { dev_err(sor->dev, "failed to acquire SOR reset: %d\n", err); - return err; + goto rpm_put; } err = reset_control_assert(sor->rst); if (err < 0) { dev_err(sor->dev, "failed to assert SOR reset: %d\n", err); - return err; + goto rpm_put; } } err = clk_prepare_enable(sor->clk); if (err < 0) { dev_err(sor->dev, "failed to enable clock: %d\n", err); - return err; + goto rpm_put; } usleep_range(1000, 3000); @@ -2900,7 +2900,7 @@ dev_err(sor->dev, "failed to deassert SOR reset: %d\n", err); clk_disable_unprepare(sor->clk); - return err; + goto rpm_put; } reset_control_release(sor->rst); @@ -2929,6 +2929,12 @@ tegra_sor_writel(sor, value, SOR_INT_MASK); return 0; + +rpm_put: + if (sor->rst) + pm_runtime_put(sor->dev); + + return err; } static int tegra_sor_exit(struct host1x_client *client) diff -u linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_plane.c linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_plane.c --- linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_plane.c @@ -288,16 +288,16 @@ adjhdisplay, crtc_state->mode.hdisplay); vc4_pstate->crtc_x += left; - if (vc4_pstate->crtc_x > crtc_state->mode.hdisplay - left) - vc4_pstate->crtc_x = crtc_state->mode.hdisplay - left; + if (vc4_pstate->crtc_x > crtc_state->mode.hdisplay - right) + vc4_pstate->crtc_x = crtc_state->mode.hdisplay - right; adjvdisplay = crtc_state->mode.vdisplay - (top + bottom); vc4_pstate->crtc_y = DIV_ROUND_CLOSEST(vc4_pstate->crtc_y * adjvdisplay, crtc_state->mode.vdisplay); vc4_pstate->crtc_y += top; - if (vc4_pstate->crtc_y > crtc_state->mode.vdisplay - top) - vc4_pstate->crtc_y = crtc_state->mode.vdisplay - top; + if (vc4_pstate->crtc_y > crtc_state->mode.vdisplay - bottom) + vc4_pstate->crtc_y = crtc_state->mode.vdisplay - bottom; vc4_pstate->crtc_w = DIV_ROUND_CLOSEST(vc4_pstate->crtc_w * adjhdisplay, @@ -317,7 +317,6 @@ struct vc4_plane_state *vc4_state = to_vc4_plane_state(state); struct drm_framebuffer *fb = state->fb; struct drm_gem_cma_object *bo = drm_fb_cma_get_gem_obj(fb, 0); - u32 subpixel_src_mask = (1 << 16) - 1; int num_planes = fb->format->num_planes; struct drm_crtc_state *crtc_state; u32 h_subsample = fb->format->hsub; @@ -339,18 +338,15 @@ for (i = 0; i < num_planes; i++) vc4_state->offsets[i] = bo->paddr + fb->offsets[i]; - /* We don't support subpixel source positioning for scaling. */ - if ((state->src.x1 & subpixel_src_mask) || - (state->src.x2 & subpixel_src_mask) || - (state->src.y1 & subpixel_src_mask) || - (state->src.y2 & subpixel_src_mask)) { - return -EINVAL; - } - - vc4_state->src_x = state->src.x1 >> 16; - vc4_state->src_y = state->src.y1 >> 16; - vc4_state->src_w[0] = (state->src.x2 - state->src.x1) >> 16; - vc4_state->src_h[0] = (state->src.y2 - state->src.y1) >> 16; + /* + * We don't support subpixel source positioning for scaling, + * but fractional coordinates can be generated by clipping + * so just round for now + */ + vc4_state->src_x = DIV_ROUND_CLOSEST(state->src.x1, 1 << 16); + vc4_state->src_y = DIV_ROUND_CLOSEST(state->src.y1, 1 << 16); + vc4_state->src_w[0] = DIV_ROUND_CLOSEST(state->src.x2, 1 << 16) - vc4_state->src_x; + vc4_state->src_h[0] = DIV_ROUND_CLOSEST(state->src.y2, 1 << 16) - vc4_state->src_y; vc4_state->crtc_x = state->dst.x1; vc4_state->crtc_y = state->dst.y1; diff -u linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_kms.c linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_kms.c --- linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_kms.c @@ -218,6 +218,7 @@ err_vbufs: vgdev->vdev->config->del_vqs(vgdev->vdev); err_vqs: + dev->dev_private = NULL; kfree(vgdev); return ret; } diff -u linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_vq.c linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_vq.c --- linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_vq.c +++ linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_vq.c @@ -80,9 +80,7 @@ { struct virtio_gpu_vbuffer *vbuf; - vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_KERNEL); - if (!vbuf) - return ERR_PTR(-ENOMEM); + vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_KERNEL | __GFP_NOFAIL); BUG_ON(size > MAX_INLINE_CMD_SIZE); vbuf->buf = (void *)vbuf + sizeof(*vbuf); @@ -142,10 +140,6 @@ vbuf = virtio_gpu_get_vbuf(vgdev, cmd_size, resp_size, resp_buf, cb); - if (IS_ERR(vbuf)) { - *vbuffer_p = NULL; - return ERR_CAST(vbuf); - } *vbuffer_p = vbuf; return (struct virtio_gpu_command *)vbuf->buf; } diff -u linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c --- linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c @@ -2570,7 +2570,7 @@ if (file_priv) vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv), ret, user_fence_rep, fence, - handle, -1, NULL); + handle, -1); if (out_fence) *out_fence = fence; else diff -u linux-azure-5.4.0/drivers/hid/hid-alps.c linux-azure-5.4.0/drivers/hid/hid-alps.c --- linux-azure-5.4.0/drivers/hid/hid-alps.c +++ linux-azure-5.4.0/drivers/hid/hid-alps.c @@ -832,6 +832,8 @@ { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1) }, { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, + USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_UNICORN_LEGACY) }, + { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_T4_BTNLESS) }, { } }; diff -u linux-azure-5.4.0/drivers/hid/hid-apple.c linux-azure-5.4.0/drivers/hid/hid-apple.c --- linux-azure-5.4.0/drivers/hid/hid-apple.c +++ linux-azure-5.4.0/drivers/hid/hid-apple.c @@ -301,12 +301,19 @@ /* * MacBook JIS keyboard has wrong logical maximum + * Magic Keyboard JIS has wrong logical maximum */ static __u8 *apple_report_fixup(struct hid_device *hdev, __u8 *rdesc, unsigned int *rsize) { struct apple_sc *asc = hid_get_drvdata(hdev); + if(*rsize >=71 && rdesc[70] == 0x65 && rdesc[64] == 0x65) { + hid_info(hdev, + "fixing up Magic Keyboard JIS report descriptor\n"); + rdesc[64] = rdesc[70] = 0xe7; + } + if ((asc->quirks & APPLE_RDESC_JIS) && *rsize >= 60 && rdesc[53] == 0x65 && rdesc[59] == 0x65) { hid_info(hdev, @@ -382,7 +389,7 @@ if ((asc->quirks & APPLE_HAS_FN) && !asc->fn_found) { hid_info(hdev, "Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling\n"); - asc->quirks = 0; + asc->quirks &= ~APPLE_HAS_FN; } return 0; diff -u linux-azure-5.4.0/drivers/hid/hid-asus.c linux-azure-5.4.0/drivers/hid/hid-asus.c --- linux-azure-5.4.0/drivers/hid/hid-asus.c +++ linux-azure-5.4.0/drivers/hid/hid-asus.c @@ -849,7 +849,7 @@ if (drvdata->quirks & QUIRK_IS_MULTITOUCH) drvdata->tp = &asus_i2c_tp; - if (drvdata->quirks & QUIRK_T100_KEYBOARD) { + if ((drvdata->quirks & QUIRK_T100_KEYBOARD) && hid_is_usb(hdev)) { struct usb_interface *intf = to_usb_interface(hdev->dev.parent); if (intf->altsetting->desc.bInterfaceNumber == T100_TPAD_INTF) { diff -u linux-azure-5.4.0/drivers/hid/hid-bigbenff.c linux-azure-5.4.0/drivers/hid/hid-bigbenff.c --- linux-azure-5.4.0/drivers/hid/hid-bigbenff.c +++ linux-azure-5.4.0/drivers/hid/hid-bigbenff.c @@ -191,7 +191,7 @@ struct bigben_device, worker); struct hid_field *report_field = bigben->report->field[0]; - if (bigben->removed) + if (bigben->removed || !report_field) return; if (bigben->work_led) { @@ -347,6 +347,12 @@ bigben->report = list_entry(report_list->next, struct hid_report, list); + if (list_empty(&hid->inputs)) { + hid_err(hid, "no inputs found\n"); + error = -ENODEV; + goto error_hw_stop; + } + hidinput = list_first_entry(&hid->inputs, struct hid_input, list); set_bit(FF_RUMBLE, hidinput->input->ffbit); diff -u linux-azure-5.4.0/drivers/hid/hid-core.c linux-azure-5.4.0/drivers/hid/hid-core.c --- linux-azure-5.4.0/drivers/hid/hid-core.c +++ linux-azure-5.4.0/drivers/hid/hid-core.c @@ -1998,6 +1998,9 @@ case BUS_I2C: bus = "I2C"; break; + case BUS_VIRTUAL: + bus = "VIRTUAL"; + break; default: bus = ""; } @@ -2296,12 +2299,8 @@ { struct hid_device *hdev = to_hid_device(dev); struct hid_driver *hdrv; - int ret = 0; - if (down_interruptible(&hdev->driver_input_lock)) { - ret = -EINTR; - goto end; - } + down(&hdev->driver_input_lock); hdev->io_started = false; hdrv = hdev->driver; @@ -2316,8 +2315,8 @@ if (!hdev->io_started) up(&hdev->driver_input_lock); -end: - return ret; + + return 0; } static ssize_t modalias_show(struct device *dev, struct device_attribute *a, diff -u linux-azure-5.4.0/drivers/hid/hid-elan.c linux-azure-5.4.0/drivers/hid/hid-elan.c --- linux-azure-5.4.0/drivers/hid/hid-elan.c +++ linux-azure-5.4.0/drivers/hid/hid-elan.c @@ -50,7 +50,7 @@ static int is_not_elan_touchpad(struct hid_device *hdev) { - if (hdev->bus == BUS_USB) { + if (hid_is_usb(hdev)) { struct usb_interface *intf = to_usb_interface(hdev->dev.parent); return (intf->altsetting->desc.bInterfaceNumber != @@ -188,7 +188,6 @@ ret = input_mt_init_slots(input, ELAN_MAX_FINGERS, INPUT_MT_POINTER); if (ret) { hid_err(hdev, "Failed to init elan MT slots: %d\n", ret); - input_free_device(input); return ret; } @@ -200,7 +199,6 @@ hid_err(hdev, "Failed to register elan input device: %d\n", ret); input_mt_destroy_slots(input); - input_free_device(input); return ret; } diff -u linux-azure-5.4.0/drivers/hid/hid-google-hammer.c linux-azure-5.4.0/drivers/hid/hid-google-hammer.c --- linux-azure-5.4.0/drivers/hid/hid-google-hammer.c +++ linux-azure-5.4.0/drivers/hid/hid-google-hammer.c @@ -470,6 +470,8 @@ { HID_DEVICE(BUS_USB, HID_GROUP_GENERIC, USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_DON) }, { HID_DEVICE(BUS_USB, HID_GROUP_GENERIC, + USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_EEL) }, + { HID_DEVICE(BUS_USB, HID_GROUP_GENERIC, USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_HAMMER) }, { HID_DEVICE(BUS_USB, HID_GROUP_GENERIC, USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_MAGNEMITE) }, diff -u linux-azure-5.4.0/drivers/hid/hid-hyperv.c linux-azure-5.4.0/drivers/hid/hid-hyperv.c --- linux-azure-5.4.0/drivers/hid/hid-hyperv.c +++ linux-azure-5.4.0/drivers/hid/hid-hyperv.c @@ -104,8 +104,8 @@ #pragma pack(pop) -#define INPUTVSC_SEND_RING_BUFFER_SIZE (40 * 1024) -#define INPUTVSC_RECV_RING_BUFFER_SIZE (40 * 1024) +#define INPUTVSC_SEND_RING_BUFFER_SIZE VMBUS_RING_SIZE(36 * 1024) +#define INPUTVSC_RECV_RING_BUFFER_SIZE VMBUS_RING_SIZE(36 * 1024) enum pipe_prot_msg_type { diff -u linux-azure-5.4.0/drivers/hid/hid-ids.h linux-azure-5.4.0/drivers/hid/hid-ids.h --- linux-azure-5.4.0/drivers/hid/hid-ids.h +++ linux-azure-5.4.0/drivers/hid/hid-ids.h @@ -489,6 +489,7 @@ #define USB_DEVICE_ID_GOOGLE_MAGNEMITE 0x503d #define USB_DEVICE_ID_GOOGLE_MOONBALL 0x5044 #define USB_DEVICE_ID_GOOGLE_DON 0x5050 +#define USB_DEVICE_ID_GOOGLE_EEL 0x5057 #define USB_VENDOR_ID_GOTOP 0x08f2 #define USB_DEVICE_ID_SUPER_Q2 0x007f @@ -741,6 +742,7 @@ #define USB_DEVICE_ID_LENOVO_X1_COVER 0x6085 #define USB_DEVICE_ID_LENOVO_X1_TAB 0x60a3 #define USB_DEVICE_ID_LENOVO_X1_TAB3 0x60b5 +#define USB_DEVICE_ID_LENOVO_OPTICAL_USB_MOUSE_600E 0x600e #define USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_608D 0x608d #define USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_6019 0x6019 #define USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_602E 0x602e @@ -816,6 +818,7 @@ #define USB_DEVICE_ID_MADCATZ_BEATPAD 0x4540 #define USB_DEVICE_ID_MADCATZ_RAT5 0x1705 #define USB_DEVICE_ID_MADCATZ_RAT9 0x1709 +#define USB_DEVICE_ID_MADCATZ_MMO7 0x1713 #define USB_VENDOR_ID_MCC 0x09db #define USB_DEVICE_ID_MCC_PMD1024LS 0x0076 @@ -857,6 +860,7 @@ #define USB_DEVICE_ID_MS_TOUCH_COVER_2 0x07a7 #define USB_DEVICE_ID_MS_TYPE_COVER_2 0x07a9 #define USB_DEVICE_ID_MS_POWER_COVER 0x07da +#define USB_DEVICE_ID_MS_SURFACE3_COVER 0x07de #define USB_DEVICE_ID_MS_XBOX_ONE_S_CONTROLLER 0x02fd #define USB_DEVICE_ID_MS_PIXART_MOUSE 0x00cb #define USB_DEVICE_ID_8BITDO_SN30_PRO_PLUS 0x02e0 @@ -1028,6 +1032,7 @@ #define USB_DEVICE_ID_SAITEK_X52 0x075c #define USB_DEVICE_ID_SAITEK_X52_2 0x0255 #define USB_DEVICE_ID_SAITEK_X52_PRO 0x0762 +#define USB_DEVICE_ID_SAITEK_X65 0x0b6a #define USB_VENDOR_ID_SAMSUNG 0x0419 #define USB_DEVICE_ID_SAMSUNG_IR_REMOTE 0x0001 @@ -1307,6 +1312,7 @@ #define USB_VENDOR_ID_UGTIZER 0x2179 #define USB_DEVICE_ID_UGTIZER_TABLET_GP0610 0x0053 #define USB_DEVICE_ID_UGTIZER_TABLET_GT5040 0x0077 +#define USB_DEVICE_ID_UGTIZER_TABLET_WP5540 0x0004 #define USB_VENDOR_ID_VIEWSONIC 0x0543 #define USB_DEVICE_ID_VIEWSONIC_PD1011 0xe621 diff -u linux-azure-5.4.0/drivers/hid/hid-input.c linux-azure-5.4.0/drivers/hid/hid-input.c --- linux-azure-5.4.0/drivers/hid/hid-input.c +++ linux-azure-5.4.0/drivers/hid/hid-input.c @@ -415,8 +415,6 @@ if (dev->battery_status == HID_BATTERY_UNKNOWN) val->intval = POWER_SUPPLY_STATUS_UNKNOWN; - else if (dev->battery_capacity == 100) - val->intval = POWER_SUPPLY_STATUS_FULL; else val->intval = POWER_SUPPLY_STATUS_DISCHARGING; break; @@ -957,6 +955,10 @@ case 0x0cd: map_key_clear(KEY_PLAYPAUSE); break; case 0x0cf: map_key_clear(KEY_VOICECOMMAND); break; + + case 0x0d8: map_key_clear(KEY_DICTATE); break; + case 0x0d9: map_key_clear(KEY_EMOJI_PICKER); break; + case 0x0e0: map_abs_clear(ABS_VOLUME); break; case 0x0e2: map_key_clear(KEY_MUTE); break; case 0x0e5: map_key_clear(KEY_BASSBOOST); break; @@ -1046,6 +1048,8 @@ case 0x29d: map_key_clear(KEY_KBD_LAYOUT_NEXT); break; + case 0x2a2: map_key_clear(KEY_ALL_APPLICATIONS); break; + case 0x2c7: map_key_clear(KEY_KBDINPUTASSIST_PREV); break; case 0x2c8: map_key_clear(KEY_KBDINPUTASSIST_NEXT); break; case 0x2c9: map_key_clear(KEY_KBDINPUTASSIST_PREVGROUP); break; @@ -1287,6 +1291,12 @@ input = field->hidinput->input; + if (usage->type == EV_ABS && + (((*quirks & HID_QUIRK_X_INVERT) && usage->code == ABS_X) || + ((*quirks & HID_QUIRK_Y_INVERT) && usage->code == ABS_Y))) { + value = field->logical_maximum - value; + } + if (usage->hat_min < usage->hat_max || usage->hat_dir) { int hat_dir = usage->hat_dir; if (!hat_dir) diff -u linux-azure-5.4.0/drivers/hid/hid-logitech-dj.c linux-azure-5.4.0/drivers/hid/hid-logitech-dj.c --- linux-azure-5.4.0/drivers/hid/hid-logitech-dj.c +++ linux-azure-5.4.0/drivers/hid/hid-logitech-dj.c @@ -1000,6 +1000,7 @@ workitem.reports_supported |= STD_KEYBOARD; break; case 0x0f: + case 0x11: device_type = "eQUAD Lightspeed 1.2"; logi_hidpp_dev_conn_notif_equad(hdev, hidpp_report, &workitem); workitem.reports_supported |= STD_KEYBOARD; @@ -1686,7 +1687,7 @@ case recvr_type_27mhz: no_dj_interfaces = 2; break; case recvr_type_bluetooth: no_dj_interfaces = 2; break; } - if (hid_is_using_ll_driver(hdev, &usb_hid_driver)) { + if (hid_is_usb(hdev)) { intf = to_usb_interface(hdev->dev.parent); if (intf && intf->altsetting->desc.bInterfaceNumber >= no_dj_interfaces) { diff -u linux-azure-5.4.0/drivers/hid/hid-magicmouse.c linux-azure-5.4.0/drivers/hid/hid-magicmouse.c --- linux-azure-5.4.0/drivers/hid/hid-magicmouse.c +++ linux-azure-5.4.0/drivers/hid/hid-magicmouse.c @@ -387,7 +387,7 @@ magicmouse_raw_event(hdev, report, data + 2, data[1]); magicmouse_raw_event(hdev, report, data + 2 + data[1], size - 2 - data[1]); - break; + return 0; default: return 0; } @@ -597,7 +597,7 @@ if (id->vendor == USB_VENDOR_ID_APPLE && id->product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD2 && hdev->type != HID_TYPE_USBMOUSE) - return 0; + return -ENODEV; msc = devm_kzalloc(&hdev->dev, sizeof(*msc), GFP_KERNEL); if (msc == NULL) { diff -u linux-azure-5.4.0/drivers/hid/hid-multitouch.c linux-azure-5.4.0/drivers/hid/hid-multitouch.c --- linux-azure-5.4.0/drivers/hid/hid-multitouch.c +++ linux-azure-5.4.0/drivers/hid/hid-multitouch.c @@ -611,9 +611,13 @@ if (!(HID_MAIN_ITEM_VARIABLE & field->flags)) continue; - for (n = 0; n < field->report_count; n++) { - if (field->usage[n].hid == HID_DG_CONTACTID) - rdata->is_mt_collection = true; + if (field->logical == HID_DG_FINGER || td->hdev->group != HID_GROUP_MULTITOUCH_WIN_8) { + for (n = 0; n < field->report_count; n++) { + if (field->usage[n].hid == HID_DG_CONTACTID) { + rdata->is_mt_collection = true; + break; + } + } } } @@ -1158,7 +1162,7 @@ int contact_count = -1; /* sticky fingers release in progress, abort */ - if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) + if (test_and_set_bit_lock(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) return; scantime = *app->scantime; @@ -1239,7 +1243,7 @@ del_timer(&td->release_timer); } - clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); + clear_bit_unlock(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); } static int mt_touch_input_configured(struct hid_device *hdev, @@ -1583,13 +1587,13 @@ /* we do not set suffix = "Touchscreen" */ hi->input->name = hdev->name; break; - case HID_DG_STYLUS: - /* force BTN_STYLUS to allow tablet matching in udev */ - __set_bit(BTN_STYLUS, hi->input->keybit); - break; case HID_VD_ASUS_CUSTOM_MEDIA_KEYS: suffix = "Custom Media Keys"; break; + case HID_DG_STYLUS: + /* force BTN_STYLUS to allow tablet matching in udev */ + __set_bit(BTN_STYLUS, hi->input->keybit); + fallthrough; case HID_DG_PEN: suffix = "Stylus"; break; @@ -1676,11 +1680,11 @@ * An input report came in just before we release the sticky fingers, * it will take care of the sticky fingers. */ - if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) + if (test_and_set_bit_lock(MT_IO_FLAGS_RUNNING, &td->mt_io_flags)) return; if (test_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags)) mt_release_contacts(hdev); - clear_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); + clear_bit_unlock(MT_IO_FLAGS_RUNNING, &td->mt_io_flags); } static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id) @@ -2154,6 +2158,9 @@ { .driver_data = MT_CLS_GOOGLE, HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_GOOGLE, USB_DEVICE_ID_GOOGLE_TOUCH_ROSE) }, + { .driver_data = MT_CLS_GOOGLE, + HID_DEVICE(BUS_USB, HID_GROUP_MULTITOUCH_WIN_8, USB_VENDOR_ID_GOOGLE, + USB_DEVICE_ID_GOOGLE_WHISKERS) }, /* Generic MT device */ { HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) }, diff -u linux-azure-5.4.0/drivers/hid/hid-quirks.c linux-azure-5.4.0/drivers/hid/hid-quirks.c --- linux-azure-5.4.0/drivers/hid/hid-quirks.c +++ linux-azure-5.4.0/drivers/hid/hid-quirks.c @@ -110,6 +110,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_PENSKETCH_M912), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M406XE), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_KYE, USB_DEVICE_ID_PIXART_USB_OPTICAL_MOUSE_ID2), HID_QUIRK_ALWAYS_POLL }, + { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_OPTICAL_USB_MOUSE_600E), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_608D), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_6019), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, USB_DEVICE_ID_LENOVO_PIXART_USB_MOUSE_602E), HID_QUIRK_ALWAYS_POLL }, @@ -123,6 +124,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_MCS, USB_DEVICE_ID_MCS_GAMEPADBLOCK), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_PIXART_MOUSE), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_POWER_COVER), HID_QUIRK_NO_INIT_REPORTS }, + { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_SURFACE3_COVER), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_SURFACE_PRO_2), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TOUCH_COVER_2), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_TYPE_COVER_2), HID_QUIRK_NO_INIT_REPORTS }, @@ -158,6 +160,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_X52), HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE }, { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_X52_2), HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE }, { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_X52_PRO), HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE }, + { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_X65), HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE }, { HID_USB_DEVICE(USB_VENDOR_ID_SEMICO, USB_DEVICE_ID_SEMICO_USB_KEYKOARD2), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_SEMICO, USB_DEVICE_ID_SEMICO_USB_KEYKOARD), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_SENNHEISER, USB_DEVICE_ID_SENNHEISER_BTD500USB), HID_QUIRK_NOGET }, @@ -184,6 +187,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD), HID_QUIRK_NOGET }, { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_KNA5), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC, USB_DEVICE_ID_UCLOGIC_TABLET_TWA60), HID_QUIRK_MULTI_INPUT }, + { HID_USB_DEVICE(USB_VENDOR_ID_UGTIZER, USB_DEVICE_ID_UGTIZER_TABLET_WP5540), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SIRIUS_BATTERY_FREE_TABLET), HID_QUIRK_MULTI_INPUT }, @@ -611,6 +615,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7) }, { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT5) }, { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_RAT9) }, + { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_MMO7) }, #endif #if IS_ENABLED(CONFIG_HID_SAMSUNG) { HID_USB_DEVICE(USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE) }, diff -u linux-azure-5.4.0/drivers/hid/hid-roccat-kone.c linux-azure-5.4.0/drivers/hid/hid-roccat-kone.c --- linux-azure-5.4.0/drivers/hid/hid-roccat-kone.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-kone.c @@ -749,6 +749,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); diff -u linux-azure-5.4.0/drivers/hid/hid-sensor-hub.c linux-azure-5.4.0/drivers/hid/hid-sensor-hub.c --- linux-azure-5.4.0/drivers/hid/hid-sensor-hub.c +++ linux-azure-5.4.0/drivers/hid/hid-sensor-hub.c @@ -210,16 +210,21 @@ buffer_size = buffer_size / sizeof(__s32); if (buffer_size) { for (i = 0; i < buffer_size; ++i) { - hid_set_field(report->field[field_index], i, - (__force __s32)cpu_to_le32(*buf32)); + ret = hid_set_field(report->field[field_index], i, + (__force __s32)cpu_to_le32(*buf32)); + if (ret) + goto done_proc; + ++buf32; } } if (remaining_bytes) { value = 0; memcpy(&value, (u8 *)buf32, remaining_bytes); - hid_set_field(report->field[field_index], i, - (__force __s32)cpu_to_le32(value)); + ret = hid_set_field(report->field[field_index], i, + (__force __s32)cpu_to_le32(value)); + if (ret) + goto done_proc; } hid_hw_request(hsdev->hdev, report, HID_REQ_SET_REPORT); hid_hw_wait(hsdev->hdev); diff -u linux-azure-5.4.0/drivers/hid/hid-sony.c linux-azure-5.4.0/drivers/hid/hid-sony.c --- linux-azure-5.4.0/drivers/hid/hid-sony.c +++ linux-azure-5.4.0/drivers/hid/hid-sony.c @@ -1597,16 +1597,38 @@ * of the controller, so that it sends input reports of type 0x11. */ if (sc->quirks & (DUALSHOCK4_CONTROLLER_USB | DUALSHOCK4_DONGLE)) { + int retries; + buf = kmalloc(DS4_FEATURE_REPORT_0x02_SIZE, GFP_KERNEL); if (!buf) return -ENOMEM; - ret = hid_hw_raw_request(sc->hdev, 0x02, buf, - DS4_FEATURE_REPORT_0x02_SIZE, - HID_FEATURE_REPORT, - HID_REQ_GET_REPORT); - if (ret < 0) - goto err_stop; + /* We should normally receive the feature report data we asked + * for, but hidraw applications such as Steam can issue feature + * reports as well. In particular for Dongle reconnects, Steam + * and this function are competing resulting in often receiving + * data for a different HID report, so retry a few times. + */ + for (retries = 0; retries < 3; retries++) { + ret = hid_hw_raw_request(sc->hdev, 0x02, buf, + DS4_FEATURE_REPORT_0x02_SIZE, + HID_FEATURE_REPORT, + HID_REQ_GET_REPORT); + if (ret < 0) + goto err_stop; + + if (buf[0] != 0x02) { + if (retries < 2) { + hid_warn(sc->hdev, "Retrying DualShock 4 get calibration report (0x02) request\n"); + continue; + } else { + ret = -EILSEQ; + goto err_stop; + } + } else { + break; + } + } } else { u8 bthdr = 0xA3; u32 crc; diff -u linux-azure-5.4.0/drivers/hid/hid-steam.c linux-azure-5.4.0/drivers/hid/hid-steam.c --- linux-azure-5.4.0/drivers/hid/hid-steam.c +++ linux-azure-5.4.0/drivers/hid/hid-steam.c @@ -134,6 +134,11 @@ int ret; r = steam->hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[0]; + if (!r) { + hid_err(steam->hdev, "No HID_FEATURE_REPORT submitted - nothing to read\n"); + return -EINVAL; + } + if (hid_report_len(r) < 64) return -EINVAL; @@ -165,6 +170,11 @@ int ret; r = steam->hdev->report_enum[HID_FEATURE_REPORT].report_id_hash[0]; + if (!r) { + hid_err(steam->hdev, "No HID_FEATURE_REPORT submitted - nothing to read\n"); + return -EINVAL; + } + if (hid_report_len(r) < 64) return -EINVAL; diff -u linux-azure-5.4.0/drivers/hid/hid-uclogic-core.c linux-azure-5.4.0/drivers/hid/hid-uclogic-core.c --- linux-azure-5.4.0/drivers/hid/hid-uclogic-core.c +++ linux-azure-5.4.0/drivers/hid/hid-uclogic-core.c @@ -164,6 +164,9 @@ struct uclogic_drvdata *drvdata = NULL; bool params_initialized = false; + if (!hid_is_usb(hdev)) + return -EINVAL; + /* * libinput requires the pad interface to be on a different node * than the pen, so use QUIRK_MULTI_INPUT for all tablets. diff -u linux-azure-5.4.0/drivers/hid/hid-uclogic-params.c linux-azure-5.4.0/drivers/hid/hid-uclogic-params.c --- linux-azure-5.4.0/drivers/hid/hid-uclogic-params.c +++ linux-azure-5.4.0/drivers/hid/hid-uclogic-params.c @@ -65,7 +65,7 @@ __u8 idx, size_t len) { int rc; - struct usb_device *udev = hid_to_usb_dev(hdev); + struct usb_device *udev; __u8 *buf = NULL; /* Check arguments */ @@ -74,6 +74,8 @@ goto cleanup; } + udev = hid_to_usb_dev(hdev); + buf = kmalloc(len, GFP_KERNEL); if (buf == NULL) { rc = -ENOMEM; @@ -449,7 +451,7 @@ { int rc; bool found = false; - struct usb_device *usb_dev = hid_to_usb_dev(hdev); + struct usb_device *usb_dev; char *str_buf = NULL; const size_t str_len = 16; @@ -459,6 +461,8 @@ goto cleanup; } + usb_dev = hid_to_usb_dev(hdev); + /* * Enable generic button mode */ @@ -705,9 +709,9 @@ struct hid_device *hdev) { int rc; - struct usb_device *udev = hid_to_usb_dev(hdev); - struct usb_interface *iface = to_usb_interface(hdev->dev.parent); - __u8 bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber; + struct usb_device *udev; + struct usb_interface *iface; + __u8 bInterfaceNumber; bool found; /* The resulting parameters (noop) */ struct uclogic_params p = {0, }; @@ -721,6 +725,10 @@ goto cleanup; } + udev = hid_to_usb_dev(hdev); + iface = to_usb_interface(hdev->dev.parent); + bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber; + /* If it's not a pen interface */ if (bInterfaceNumber != 0) { /* TODO: Consider marking the interface invalid */ @@ -832,21 +840,25 @@ struct hid_device *hdev) { int rc; - struct usb_device *udev = hid_to_usb_dev(hdev); - __u8 bNumInterfaces = udev->config->desc.bNumInterfaces; - struct usb_interface *iface = to_usb_interface(hdev->dev.parent); - __u8 bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber; + struct usb_device *udev; + __u8 bNumInterfaces; + struct usb_interface *iface; + __u8 bInterfaceNumber; bool found; /* The resulting parameters (noop) */ struct uclogic_params p = {0, }; /* Check arguments */ - if (params == NULL || hdev == NULL || - !hid_is_using_ll_driver(hdev, &usb_hid_driver)) { + if (params == NULL || hdev == NULL || !hid_is_usb(hdev)) { rc = -EINVAL; goto cleanup; } + udev = hid_to_usb_dev(hdev); + bNumInterfaces = udev->config->desc.bNumInterfaces; + iface = to_usb_interface(hdev->dev.parent); + bInterfaceNumber = iface->cur_altsetting->desc.bInterfaceNumber; + /* * Set replacement report descriptor if the original matches the * specified size. Otherwise keep interface unchanged. diff -u linux-azure-5.4.0/drivers/hid/hidraw.c linux-azure-5.4.0/drivers/hid/hidraw.c --- linux-azure-5.4.0/drivers/hid/hidraw.c +++ linux-azure-5.4.0/drivers/hid/hidraw.c @@ -346,10 +346,13 @@ unsigned int minor = iminor(inode); struct hidraw_list *list = file->private_data; unsigned long flags; + int i; mutex_lock(&minors_lock); spin_lock_irqsave(&hidraw_table[minor]->list_lock, flags); + for (i = list->tail; i < list->head; i++) + kfree(list->buffer[i].value); list_del(&list->node); spin_unlock_irqrestore(&hidraw_table[minor]->list_lock, flags); kfree(list); diff -u linux-azure-5.4.0/drivers/hid/i2c-hid/i2c-hid-core.c linux-azure-5.4.0/drivers/hid/i2c-hid/i2c-hid-core.c --- linux-azure-5.4.0/drivers/hid/i2c-hid/i2c-hid-core.c +++ linux-azure-5.4.0/drivers/hid/i2c-hid/i2c-hid-core.c @@ -50,6 +50,7 @@ #define I2C_HID_QUIRK_BOGUS_IRQ BIT(4) #define I2C_HID_QUIRK_RESET_ON_RESUME BIT(5) #define I2C_HID_QUIRK_BAD_INPUT_SIZE BIT(6) +#define I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET BIT(7) /* flags */ @@ -177,14 +178,18 @@ I2C_HID_QUIRK_NO_IRQ_AFTER_RESET }, { I2C_VENDOR_ID_RAYDIUM, I2C_PRODUCT_ID_RAYDIUM_3118, I2C_HID_QUIRK_NO_IRQ_AFTER_RESET }, - { USB_VENDOR_ID_ELAN, HID_ANY_ID, - I2C_HID_QUIRK_BOGUS_IRQ }, { USB_VENDOR_ID_ALPS_JP, HID_ANY_ID, I2C_HID_QUIRK_RESET_ON_RESUME }, { I2C_VENDOR_ID_SYNAPTICS, I2C_PRODUCT_ID_SYNAPTICS_SYNA2393, I2C_HID_QUIRK_RESET_ON_RESUME }, { USB_VENDOR_ID_ITE, I2C_DEVICE_ID_ITE_LENOVO_LEGION_Y720, I2C_HID_QUIRK_BAD_INPUT_SIZE }, + /* + * Sending the wakeup after reset actually break ELAN touchscreen controller + */ + { USB_VENDOR_ID_ELAN, HID_ANY_ID, + I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET | + I2C_HID_QUIRK_BOGUS_IRQ }, { 0, 0 } }; @@ -468,7 +473,8 @@ } /* At least some SIS devices need this after reset */ - ret = i2c_hid_set_power(client, I2C_HID_PWR_ON); + if (!(ihid->quirks & I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET)) + ret = i2c_hid_set_power(client, I2C_HID_PWR_ON); out_unlock: mutex_unlock(&ihid->reset_lock); @@ -616,6 +622,17 @@ if (report_type == HID_OUTPUT_REPORT) return -EINVAL; + /* + * In case of unnumbered reports the response from the device will + * not have the report ID that the upper layers expect, so we need + * to stash it the buffer ourselves and adjust the data size. + */ + if (!report_number) { + buf[0] = 0; + buf++; + count--; + } + /* +2 bytes to include the size of the reply in the query buffer */ ask_count = min(count + 2, (size_t)ihid->bufsize); @@ -637,6 +654,9 @@ count = min(count, ret_count - 2); memcpy(buf, ihid->rawbuf + 2, count); + if (!report_number) + count++; + return count; } @@ -653,17 +673,19 @@ mutex_lock(&ihid->reset_lock); - if (report_id) { - buf++; - count--; - } - + /* + * Note that both numbered and unnumbered reports passed here + * are supposed to have report ID stored in the 1st byte of the + * buffer, so we strip it off unconditionally before passing payload + * to i2c_hid_set_or_send_report which takes care of encoding + * everything properly. + */ ret = i2c_hid_set_or_send_report(client, report_type == HID_FEATURE_REPORT ? 0x03 : 0x02, - report_id, buf, count, use_data); + report_id, buf + 1, count - 1, use_data); - if (report_id && ret >= 0) - ret++; /* add report_id to the number of transfered bytes */ + if (ret >= 0) + ret++; /* add report_id to the number of transferred bytes */ mutex_unlock(&ihid->reset_lock); @@ -1114,8 +1136,8 @@ hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID); hid->product = le16_to_cpu(ihid->hdesc.wProductID); - snprintf(hid->name, sizeof(hid->name), "%s %04hX:%04hX", - client->name, hid->vendor, hid->product); + snprintf(hid->name, sizeof(hid->name), "%s %04X:%04X", + client->name, (u16)hid->vendor, (u16)hid->product); strlcpy(hid->phys, dev_name(&client->dev), sizeof(hid->phys)); ihid->quirks = i2c_hid_lookup_quirk(hid->vendor, hid->product); diff -u linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp-fw-loader.c linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp-fw-loader.c --- linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp-fw-loader.c +++ linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp-fw-loader.c @@ -656,21 +656,12 @@ */ payload_max_size &= ~(L1_CACHE_BYTES - 1); - dma_buf = kmalloc(payload_max_size, GFP_KERNEL | GFP_DMA32); + dma_buf = dma_alloc_coherent(devc, payload_max_size, &dma_buf_phy, GFP_KERNEL); if (!dma_buf) { client_data->flag_retry = true; return -ENOMEM; } - dma_buf_phy = dma_map_single(devc, dma_buf, payload_max_size, - DMA_TO_DEVICE); - if (dma_mapping_error(devc, dma_buf_phy)) { - dev_err(cl_data_to_dev(client_data), "DMA map failed\n"); - client_data->flag_retry = true; - rv = -ENOMEM; - goto end_err_dma_buf_release; - } - ldr_xfer_dma_frag.fragment.hdr.command = LOADER_CMD_XFER_FRAGMENT; ldr_xfer_dma_frag.fragment.xfer_mode = LOADER_XFER_MODE_DIRECT_DMA; ldr_xfer_dma_frag.ddr_phys_addr = (u64)dma_buf_phy; @@ -690,14 +681,7 @@ ldr_xfer_dma_frag.fragment.size = fragment_size; memcpy(dma_buf, &fw->data[fragment_offset], fragment_size); - dma_sync_single_for_device(devc, dma_buf_phy, - payload_max_size, - DMA_TO_DEVICE); - - /* - * Flush cache here because the dma_sync_single_for_device() - * does not do for x86. - */ + /* Flush cache to be sure the data is in main memory. */ clflush_cache_range(dma_buf, payload_max_size); dev_dbg(cl_data_to_dev(client_data), @@ -720,15 +704,8 @@ fragment_offset += fragment_size; } - dma_unmap_single(devc, dma_buf_phy, payload_max_size, DMA_TO_DEVICE); - kfree(dma_buf); - return 0; - end_err_resp_buf_release: - /* Free ISH buffer if not done already, in error case */ - dma_unmap_single(devc, dma_buf_phy, payload_max_size, DMA_TO_DEVICE); -end_err_dma_buf_release: - kfree(dma_buf); + dma_free_coherent(devc, payload_max_size, dma_buf, dma_buf_phy); return rv; } diff -u linux-azure-5.4.0/drivers/hid/uhid.c linux-azure-5.4.0/drivers/hid/uhid.c --- linux-azure-5.4.0/drivers/hid/uhid.c +++ linux-azure-5.4.0/drivers/hid/uhid.c @@ -28,11 +28,22 @@ struct uhid_device { struct mutex devlock; + + /* This flag tracks whether the HID device is usable for commands from + * userspace. The flag is already set before hid_add_device(), which + * runs in workqueue context, to allow hid_add_device() to communicate + * with userspace. + * However, if hid_add_device() fails, the flag is cleared without + * holding devlock. + * We guarantee that if @running changes from true to false while you're + * holding @devlock, it's still fine to access @hid. + */ bool running; __u8 *rd_data; uint rd_size; + /* When this is NULL, userspace may use UHID_CREATE/UHID_CREATE2. */ struct hid_device *hid; struct uhid_event input_buf; @@ -63,9 +74,18 @@ if (ret) { hid_err(uhid->hid, "Cannot register HID device: error %d\n", ret); - hid_destroy_device(uhid->hid); - uhid->hid = NULL; + /* We used to call hid_destroy_device() here, but that's really + * messy to get right because we have to coordinate with + * concurrent writes from userspace that might be in the middle + * of using uhid->hid. + * Just leave uhid->hid as-is for now, and clean it up when + * userspace tries to close or reinitialize the uhid instance. + * + * However, we do have to clear the ->running flag and do a + * wakeup to make sure userspace knows that the device is gone. + */ uhid->running = false; + wake_up_interruptible(&uhid->report_wait); } } @@ -474,7 +494,7 @@ void *rd_data; int ret; - if (uhid->running) + if (uhid->hid) return -EALREADY; rd_size = ev->u.create2.rd_size; @@ -556,7 +576,7 @@ static int uhid_dev_destroy(struct uhid_device *uhid) { - if (!uhid->running) + if (!uhid->hid) return -EINVAL; uhid->running = false; @@ -565,6 +585,7 @@ cancel_work_sync(&uhid->worker); hid_destroy_device(uhid->hid); + uhid->hid = NULL; kfree(uhid->rd_data); return 0; diff -u linux-azure-5.4.0/drivers/hid/usbhid/hid-core.c linux-azure-5.4.0/drivers/hid/usbhid/hid-core.c --- linux-azure-5.4.0/drivers/hid/usbhid/hid-core.c +++ linux-azure-5.4.0/drivers/hid/usbhid/hid-core.c @@ -374,7 +374,7 @@ raw_report = usbhid->ctrl[usbhid->ctrltail].raw_report; dir = usbhid->ctrl[usbhid->ctrltail].dir; - len = ((report->size - 1) >> 3) + 1 + (report->id > 0); + len = hid_report_len(report); if (dir == USB_DIR_OUT) { usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0); usbhid->urbctrl->transfer_buffer_length = len; @@ -503,7 +503,7 @@ if (unplug) { usbhid->ctrltail = usbhid->ctrlhead; - } else { + } else if (usbhid->ctrlhead != usbhid->ctrltail) { usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1); if (usbhid->ctrlhead != usbhid->ctrltail && @@ -1221,9 +1221,20 @@ mutex_lock(&usbhid->mutex); clear_bit(HID_STARTED, &usbhid->iofl); + spin_lock_irq(&usbhid->lock); /* Sync with error and led handlers */ set_bit(HID_DISCONNECTED, &usbhid->iofl); + while (usbhid->ctrltail != usbhid->ctrlhead) { + if (usbhid->ctrl[usbhid->ctrltail].dir == USB_DIR_OUT) { + kfree(usbhid->ctrl[usbhid->ctrltail].raw_report); + usbhid->ctrl[usbhid->ctrltail].raw_report = NULL; + } + + usbhid->ctrltail = (usbhid->ctrltail + 1) & + (HID_CONTROL_FIFO_SIZE - 1); + } spin_unlock_irq(&usbhid->lock); + usb_kill_urb(usbhid->urbin); usb_kill_urb(usbhid->urbout); usb_kill_urb(usbhid->urbctrl); diff -u linux-azure-5.4.0/drivers/hid/wacom_sys.c linux-azure-5.4.0/drivers/hid/wacom_sys.c --- linux-azure-5.4.0/drivers/hid/wacom_sys.c +++ linux-azure-5.4.0/drivers/hid/wacom_sys.c @@ -726,7 +726,7 @@ * Skip the query for this type and modify defaults based on * interface number. */ - if (features->type == WIRELESS) { + if (features->type == WIRELESS && intf) { if (intf->cur_altsetting->desc.bInterfaceNumber == 0) features->device_type = WACOM_DEVICETYPE_WL_MONITOR; else @@ -2124,7 +2124,7 @@ error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac); if (error) { - /* no pad in use on this interface */ + /* no pad events using this interface */ input_free_device(pad_input_dev); wacom_wac->pad_input = NULL; pad_input_dev = NULL; @@ -2217,7 +2217,7 @@ if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) { char *product_name = wacom->hdev->name; - if (hid_is_using_ll_driver(wacom->hdev, &usb_hid_driver)) { + if (hid_is_usb(wacom->hdev)) { struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent); struct usb_device *dev = interface_to_usbdev(intf); product_name = dev->product; @@ -2448,6 +2448,9 @@ wacom_destroy_battery(wacom); + if (!usbdev) + return; + /* Stylus interface */ hdev1 = usb_get_intfdata(usbdev->config->interface[1]); wacom1 = hid_get_drvdata(hdev1); @@ -2727,8 +2730,6 @@ static int wacom_probe(struct hid_device *hdev, const struct hid_device_id *id) { - struct usb_interface *intf = to_usb_interface(hdev->dev.parent); - struct usb_device *dev = interface_to_usbdev(intf); struct wacom *wacom; struct wacom_wac *wacom_wac; struct wacom_features *features; @@ -2763,8 +2764,14 @@ wacom_wac->hid_data.inputmode = -1; wacom_wac->mode_report = -1; - wacom->usbdev = dev; - wacom->intf = intf; + if (hid_is_usb(hdev)) { + struct usb_interface *intf = to_usb_interface(hdev->dev.parent); + struct usb_device *dev = interface_to_usbdev(intf); + + wacom->usbdev = dev; + wacom->intf = intf; + } + mutex_init(&wacom->lock); INIT_DELAYED_WORK(&wacom->init_work, wacom_init_work); INIT_WORK(&wacom->wireless_work, wacom_wireless_work); diff -u linux-azure-5.4.0/drivers/hid/wacom_wac.c linux-azure-5.4.0/drivers/hid/wacom_wac.c --- linux-azure-5.4.0/drivers/hid/wacom_wac.c +++ linux-azure-5.4.0/drivers/hid/wacom_wac.c @@ -638,9 +638,26 @@ return (tool_id & ~0xFFF) << 4 | (tool_id & 0xFFF); } +static bool wacom_is_art_pen(int tool_id) +{ + bool is_art_pen = false; + + switch (tool_id) { + case 0x885: /* Intuos3 Marker Pen */ + case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */ + case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */ + is_art_pen = true; + break; + } + return is_art_pen; +} + static int wacom_intuos_get_tool_type(int tool_id) { - int tool_type; + int tool_type = BTN_TOOL_PEN; + + if (wacom_is_art_pen(tool_id)) + return tool_type; switch (tool_id) { case 0x812: /* Inking pen */ @@ -655,12 +672,9 @@ case 0x852: case 0x823: /* Intuos3 Grip Pen */ case 0x813: /* Intuos3 Classic Pen */ - case 0x885: /* Intuos3 Marker Pen */ case 0x802: /* Intuos4/5 13HD/24HD General Pen */ - case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */ case 0x8e2: /* IntuosHT2 pen */ case 0x022: - case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */ case 0x10842: /* MobileStudio Pro Pro Pen slim */ case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */ case 0x16802: /* Cintiq 13HD Pro Pen */ @@ -718,10 +732,6 @@ case 0x10902: /* Intuos4/5 13HD/24HD Airbrush */ tool_type = BTN_TOOL_AIRBRUSH; break; - - default: /* Unknown tool */ - tool_type = BTN_TOOL_PEN; - break; } return tool_type; } @@ -2006,7 +2016,6 @@ wacom_wac->has_mute_touch_switch = true; usage->type = EV_SW; usage->code = SW_MUTE_DEVICE; - features->device_type |= WACOM_DEVICETYPE_PAD; break; case WACOM_HID_WD_TOUCHSTRIP: wacom_map_usage(input, usage, field, EV_ABS, ABS_RX, 0); @@ -2086,6 +2095,30 @@ wacom_wac->hid_data.inrange_state |= value; } + /* Process touch switch state first since it is reported through touch interface, + * which is indepentent of pad interface. In the case when there are no other pad + * events, the pad interface will not even be created. + */ + if ((equivalent_usage == WACOM_HID_WD_MUTE_DEVICE) || + (equivalent_usage == WACOM_HID_WD_TOUCHONOFF)) { + if (wacom_wac->shared->touch_input) { + bool *is_touch_on = &wacom_wac->shared->is_touch_on; + + if (equivalent_usage == WACOM_HID_WD_MUTE_DEVICE && value) + *is_touch_on = !(*is_touch_on); + else if (equivalent_usage == WACOM_HID_WD_TOUCHONOFF) + *is_touch_on = value; + + input_report_switch(wacom_wac->shared->touch_input, + SW_MUTE_DEVICE, !(*is_touch_on)); + input_sync(wacom_wac->shared->touch_input); + } + return; + } + + if (!input) + return; + switch (equivalent_usage) { case WACOM_HID_WD_TOUCHRING: /* @@ -2121,22 +2154,6 @@ input_event(input, usage->type, usage->code, 0); break; - case WACOM_HID_WD_MUTE_DEVICE: - case WACOM_HID_WD_TOUCHONOFF: - if (wacom_wac->shared->touch_input) { - bool *is_touch_on = &wacom_wac->shared->is_touch_on; - - if (equivalent_usage == WACOM_HID_WD_MUTE_DEVICE && value) - *is_touch_on = !(*is_touch_on); - else if (equivalent_usage == WACOM_HID_WD_TOUCHONOFF) - *is_touch_on = value; - - input_report_switch(wacom_wac->shared->touch_input, - SW_MUTE_DEVICE, !(*is_touch_on)); - input_sync(wacom_wac->shared->touch_input); - } - break; - case WACOM_HID_WD_MODE_CHANGE: if (wacom_wac->is_direct_mode != value) { wacom_wac->is_direct_mode = value; @@ -2312,6 +2329,9 @@ } return; case HID_DG_TWIST: + /* don't modify the value if the pen doesn't support the feature */ + if (!wacom_is_art_pen(wacom_wac->id[0])) return; + /* * Userspace expects pen twist to have its zero point when * the buttons/finger is on the tablet's left. HID values @@ -2566,6 +2586,24 @@ } } +static bool wacom_wac_slot_is_active(struct input_dev *dev, int key) +{ + struct input_mt *mt = dev->mt; + struct input_mt_slot *s; + + if (!mt) + return false; + + for (s = mt->slots; s != mt->slots + mt->num_slots; s++) { + if (s->key == key && + input_mt_get_value(s, ABS_MT_TRACKING_ID) >= 0) { + return true; + } + } + + return false; +} + static void wacom_wac_finger_event(struct hid_device *hdev, struct hid_field *field, struct hid_usage *usage, __s32 value) { @@ -2578,6 +2616,9 @@ return; switch (equivalent_usage) { + case HID_DG_CONFIDENCE: + wacom_wac->hid_data.confidence = value; + break; case HID_GD_X: wacom_wac->hid_data.x = value; break; @@ -2610,8 +2651,14 @@ } if (usage->usage_index + 1 == field->report_count) { - if (equivalent_usage == wacom_wac->hid_data.last_slot_field) - wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input); + if (equivalent_usage == wacom_wac->hid_data.last_slot_field) { + bool touch_removed = wacom_wac_slot_is_active(wacom_wac->touch_input, + wacom_wac->hid_data.id) && !wacom_wac->hid_data.tipswitch; + + if (wacom_wac->hid_data.confidence || touch_removed) { + wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input); + } + } } } @@ -2625,6 +2672,12 @@ wacom_wac->is_invalid_bt_frame = false; + hid_data->confidence = true; + + hid_data->cc_report = 0; + hid_data->cc_index = -1; + hid_data->cc_value_index = -1; + for (i = 0; i < report->maxfield; i++) { struct hid_field *field = report->field[i]; int j; @@ -2658,11 +2711,14 @@ hid_data->cc_index >= 0) { struct hid_field *field = report->field[hid_data->cc_index]; int value = field->value[hid_data->cc_value_index]; - if (value) + if (value) { hid_data->num_expected = value; + hid_data->num_received = 0; + } } else { hid_data->num_expected = wacom_wac->features.touch_max; + hid_data->num_received = 0; } } @@ -2686,6 +2742,7 @@ input_sync(input); wacom_wac->hid_data.num_received = 0; + wacom_wac->hid_data.num_expected = 0; /* keep touch state for pen event */ wacom_wac->shared->touch_down = wacom_wac_finger_count_touches(wacom_wac); @@ -2726,7 +2783,7 @@ /* usage tests must precede field tests */ if (WACOM_BATTERY_USAGE(usage)) wacom_wac_battery_event(hdev, field, usage, value); - else if (WACOM_PAD_FIELD(field) && wacom->wacom_wac.pad_input) + else if (WACOM_PAD_FIELD(field)) wacom_wac_pad_event(hdev, field, usage, value); else if (WACOM_PEN_FIELD(field) && wacom->wacom_wac.pen_input) wacom_wac_pen_event(hdev, field, usage, value); @@ -3829,7 +3886,7 @@ wacom_wac->shared->touch->product == 0xF6) { input_dev->evbit[0] |= BIT_MASK(EV_SW); __set_bit(SW_MUTE_DEVICE, input_dev->swbit); - wacom_wac->shared->has_mute_touch_switch = true; + wacom_wac->has_mute_touch_switch = true; } /* fall through */ @@ -4715,6 +4772,12 @@ { "Wacom Intuos Pro S", 31920, 19950, 8191, 63, INTUOSP2S_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 10 }; +static const struct wacom_features wacom_features_0x3c6 = + { "Wacom Intuos BT S", 15200, 9500, 4095, 63, + INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 }; +static const struct wacom_features wacom_features_0x3c8 = + { "Wacom Intuos BT M", 21600, 13500, 4095, 63, + INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 }; static const struct wacom_features wacom_features_HID_ANY_ID = { "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID }; @@ -4888,6 +4951,8 @@ { USB_DEVICE_WACOM(0x37A) }, { USB_DEVICE_WACOM(0x37B) }, { BT_DEVICE_WACOM(0x393) }, + { BT_DEVICE_WACOM(0x3c6) }, + { BT_DEVICE_WACOM(0x3c8) }, { USB_DEVICE_WACOM(0x4001) }, { USB_DEVICE_WACOM(0x4004) }, { USB_DEVICE_WACOM(0x5000) }, diff -u linux-azure-5.4.0/drivers/hid/wacom_wac.h linux-azure-5.4.0/drivers/hid/wacom_wac.h --- linux-azure-5.4.0/drivers/hid/wacom_wac.h +++ linux-azure-5.4.0/drivers/hid/wacom_wac.h @@ -122,7 +122,7 @@ #define WACOM_HID_WD_TOUCHONOFF (WACOM_HID_UP_WACOMDIGITIZER | 0x0454) #define WACOM_HID_WD_BATTERY_LEVEL (WACOM_HID_UP_WACOMDIGITIZER | 0x043b) #define WACOM_HID_WD_EXPRESSKEY00 (WACOM_HID_UP_WACOMDIGITIZER | 0x0910) -#define WACOM_HID_WD_EXPRESSKEYCAP00 (WACOM_HID_UP_WACOMDIGITIZER | 0x0950) +#define WACOM_HID_WD_EXPRESSKEYCAP00 (WACOM_HID_UP_WACOMDIGITIZER | 0x0940) #define WACOM_HID_WD_MODE_CHANGE (WACOM_HID_UP_WACOMDIGITIZER | 0x0980) #define WACOM_HID_WD_MUTE_DEVICE (WACOM_HID_UP_WACOMDIGITIZER | 0x0981) #define WACOM_HID_WD_CONTROLPANEL (WACOM_HID_UP_WACOMDIGITIZER | 0x0982) @@ -300,6 +300,7 @@ bool tipswitch; bool barrelswitch; bool barrelswitch2; + bool confidence; int x; int y; int pressure; diff -u linux-azure-5.4.0/drivers/hsi/controllers/omap_ssi_core.c linux-azure-5.4.0/drivers/hsi/controllers/omap_ssi_core.c --- linux-azure-5.4.0/drivers/hsi/controllers/omap_ssi_core.c +++ linux-azure-5.4.0/drivers/hsi/controllers/omap_ssi_core.c @@ -524,6 +524,7 @@ if (!childpdev) { err = -ENODEV; dev_err(&pd->dev, "failed to create ssi controller port\n"); + of_node_put(child); goto out3; } } diff -u linux-azure-5.4.0/drivers/hsi/hsi_core.c linux-azure-5.4.0/drivers/hsi/hsi_core.c --- linux-azure-5.4.0/drivers/hsi/hsi_core.c +++ linux-azure-5.4.0/drivers/hsi/hsi_core.c @@ -102,6 +102,7 @@ if (device_register(&cl->device) < 0) { pr_err("hsi: failed to register client: %s\n", info->name); put_device(&cl->device); + goto err; } return cl; diff -u linux-azure-5.4.0/drivers/hv/channel.c linux-azure-5.4.0/drivers/hv/channel.c --- linux-azure-5.4.0/drivers/hv/channel.c +++ linux-azure-5.4.0/drivers/hv/channel.c @@ -37,17 +37,97 @@ hv_do_fast_hypercall8(HVCALL_SIGNAL_EVENT, channel->sig_event); } -static unsigned long virt_to_hvpfn(void *addr) +/* + * hv_gpadl_size - Return the real size of a gpadl, the size that Hyper-V uses + * + * For BUFFER gpadl, Hyper-V uses the exact same size as the guest does. + * + * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the header + * (because of the alignment requirement), however, the hypervisor only + * uses the first HV_HYP_PAGE_SIZE as the header, therefore leaving a + * (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. And since there are two rings in a + * ringbuffer, the total size for a RING gpadl that Hyper-V uses is the + * total size that the guest uses minus twice of the gap size. + */ +static inline u32 hv_gpadl_size(enum hv_gpadl_type type, u32 size) { - phys_addr_t paddr; + switch (type) { + case HV_GPADL_BUFFER: + return size; + case HV_GPADL_RING: + /* The size of a ringbuffer must be page-aligned */ + BUG_ON(size % PAGE_SIZE); + /* + * Two things to notice here: + * 1) We're processing two ring buffers as a unit + * 2) We're skipping any space larger than HV_HYP_PAGE_SIZE in + * the first guest-size page of each of the two ring buffers. + * So we effectively subtract out two guest-size pages, and add + * back two Hyper-V size pages. + */ + return size - 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); + } + BUG(); + return 0; +} - if (is_vmalloc_addr(addr)) - paddr = page_to_phys(vmalloc_to_page(addr)) + - offset_in_page(addr); - else - paddr = __pa(addr); +/* + * hv_ring_gpadl_send_hvpgoffset - Calculate the send offset (in unit of + * HV_HYP_PAGE) in a ring gpadl based on the + * offset in the guest + * + * @offset: the offset (in bytes) where the send ringbuffer starts in the + * virtual address space of the guest + */ +static inline u32 hv_ring_gpadl_send_hvpgoffset(u32 offset) +{ - return paddr >> PAGE_SHIFT; + /* + * For RING gpadl, in each ring, the guest uses one PAGE_SIZE as the + * header (because of the alignment requirement), however, the + * hypervisor only uses the first HV_HYP_PAGE_SIZE as the header, + * therefore leaving a (PAGE_SIZE - HV_HYP_PAGE_SIZE) gap. + * + * And to calculate the effective send offset in gpadl, we need to + * substract this gap. + */ + return (offset - (PAGE_SIZE - HV_HYP_PAGE_SIZE)) >> HV_HYP_PAGE_SHIFT; +} + +/* + * hv_gpadl_hvpfn - Return the Hyper-V page PFN of the @i th Hyper-V page in + * the gpadl + * + * @type: the type of the gpadl + * @kbuffer: the pointer to the gpadl in the guest + * @size: the total size (in bytes) of the gpadl + * @send_offset: the offset (in bytes) where the send ringbuffer starts in the + * virtual address space of the guest + * @i: the index + */ +static inline u64 hv_gpadl_hvpfn(enum hv_gpadl_type type, void *kbuffer, + u32 size, u32 send_offset, int i) +{ + int send_idx = hv_ring_gpadl_send_hvpgoffset(send_offset); + unsigned long delta = 0UL; + + switch (type) { + case HV_GPADL_BUFFER: + break; + case HV_GPADL_RING: + if (i == 0) + delta = 0; + else if (i <= send_idx) + delta = PAGE_SIZE - HV_HYP_PAGE_SIZE; + else + delta = 2 * (PAGE_SIZE - HV_HYP_PAGE_SIZE); + break; + default: + BUG(); + break; + } + + return virt_to_hvpfn(kbuffer + delta + (HV_HYP_PAGE_SIZE * i)); } /* @@ -124,164 +204,6 @@ } EXPORT_SYMBOL_GPL(vmbus_alloc_ring); -static int __vmbus_open(struct vmbus_channel *newchannel, - void *userdata, u32 userdatalen, - void (*onchannelcallback)(void *context), void *context) -{ - struct vmbus_channel_open_channel *open_msg; - struct vmbus_channel_msginfo *open_info = NULL; - struct page *page = newchannel->ringbuffer_page; - u32 send_pages, recv_pages; - unsigned long flags; - int err; - - if (userdatalen > MAX_USER_DEFINED_BYTES) - return -EINVAL; - - send_pages = newchannel->ringbuffer_send_offset; - recv_pages = newchannel->ringbuffer_pagecount - send_pages; - - spin_lock_irqsave(&newchannel->lock, flags); - if (newchannel->state != CHANNEL_OPEN_STATE) { - spin_unlock_irqrestore(&newchannel->lock, flags); - return -EINVAL; - } - spin_unlock_irqrestore(&newchannel->lock, flags); - - newchannel->state = CHANNEL_OPENING_STATE; - newchannel->onchannel_callback = onchannelcallback; - newchannel->channel_callback_context = context; - - err = hv_ringbuffer_init(&newchannel->outbound, page, send_pages); - if (err) - goto error_clean_ring; - - err = hv_ringbuffer_init(&newchannel->inbound, - &page[send_pages], recv_pages); - if (err) - goto error_clean_ring; - - /* Establish the gpadl for the ring buffer */ - newchannel->ringbuffer_gpadlhandle = 0; - - err = vmbus_establish_gpadl(newchannel, - page_address(newchannel->ringbuffer_page), - (send_pages + recv_pages) << PAGE_SHIFT, - &newchannel->ringbuffer_gpadlhandle); - if (err) - goto error_clean_ring; - - /* Create and init the channel open message */ - open_info = kmalloc(sizeof(*open_info) + - sizeof(struct vmbus_channel_open_channel), - GFP_KERNEL); - if (!open_info) { - err = -ENOMEM; - goto error_free_gpadl; - } - - init_completion(&open_info->waitevent); - open_info->waiting_channel = newchannel; - - open_msg = (struct vmbus_channel_open_channel *)open_info->msg; - open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; - open_msg->openid = newchannel->offermsg.child_relid; - open_msg->child_relid = newchannel->offermsg.child_relid; - open_msg->ringbuffer_gpadlhandle = newchannel->ringbuffer_gpadlhandle; - open_msg->downstream_ringbuffer_pageoffset = newchannel->ringbuffer_send_offset; - open_msg->target_vp = newchannel->target_vp; - - if (userdatalen) - memcpy(open_msg->userdata, userdata, userdatalen); - - spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); - list_add_tail(&open_info->msglistentry, - &vmbus_connection.chn_msg_list); - spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); - - if (newchannel->rescind) { - err = -ENODEV; - goto error_free_info; - } - - err = vmbus_post_msg(open_msg, - sizeof(struct vmbus_channel_open_channel), true); - - trace_vmbus_open(open_msg, err); - - if (err != 0) - goto error_clean_msglist; - - wait_for_completion(&open_info->waitevent); - - spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); - list_del(&open_info->msglistentry); - spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); - - if (newchannel->rescind) { - err = -ENODEV; - goto error_free_info; - } - - if (open_info->response.open_result.status) { - err = -EAGAIN; - goto error_free_info; - } - - newchannel->state = CHANNEL_OPENED_STATE; - kfree(open_info); - return 0; - -error_clean_msglist: - spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); - list_del(&open_info->msglistentry); - spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); -error_free_info: - kfree(open_info); -error_free_gpadl: - vmbus_teardown_gpadl(newchannel, newchannel->ringbuffer_gpadlhandle); - newchannel->ringbuffer_gpadlhandle = 0; -error_clean_ring: - hv_ringbuffer_cleanup(&newchannel->outbound); - hv_ringbuffer_cleanup(&newchannel->inbound); - newchannel->state = CHANNEL_OPEN_STATE; - return err; -} - -/* - * vmbus_connect_ring - Open the channel but reuse ring buffer - */ -int vmbus_connect_ring(struct vmbus_channel *newchannel, - void (*onchannelcallback)(void *context), void *context) -{ - return __vmbus_open(newchannel, NULL, 0, onchannelcallback, context); -} -EXPORT_SYMBOL_GPL(vmbus_connect_ring); - -/* - * vmbus_open - Open the specified channel. - */ -int vmbus_open(struct vmbus_channel *newchannel, - u32 send_ringbuffer_size, u32 recv_ringbuffer_size, - void *userdata, u32 userdatalen, - void (*onchannelcallback)(void *context), void *context) -{ - int err; - - err = vmbus_alloc_ring(newchannel, send_ringbuffer_size, - recv_ringbuffer_size); - if (err) - return err; - - err = __vmbus_open(newchannel, userdata, userdatalen, - onchannelcallback, context); - if (err) - vmbus_free_ring(newchannel); - - return err; -} -EXPORT_SYMBOL_GPL(vmbus_open); - /* Used for Hyper-V Socket: a guest client's connect() to the host */ int vmbus_send_tl_connect_request(const guid_t *shv_guest_servie_id, const guid_t *shv_host_servie_id) @@ -303,9 +225,38 @@ EXPORT_SYMBOL_GPL(vmbus_send_tl_connect_request); /* + * Set/change the vCPU (@target_vp) the channel (@child_relid) will interrupt. + * + * CHANNELMSG_MODIFYCHANNEL messages are aynchronous. Also, Hyper-V does not + * ACK such messages. IOW we can't know when the host will stop interrupting + * the "old" vCPU and start interrupting the "new" vCPU for the given channel. + * + * The CHANNELMSG_MODIFYCHANNEL message type is supported since VMBus version + * VERSION_WIN10_V4_1. + */ +int vmbus_send_modifychannel(u32 child_relid, u32 target_vp) +{ + struct vmbus_channel_modifychannel conn_msg; + int ret; + + memset(&conn_msg, 0, sizeof(conn_msg)); + conn_msg.header.msgtype = CHANNELMSG_MODIFYCHANNEL; + conn_msg.child_relid = child_relid; + conn_msg.target_vp = target_vp; + + ret = vmbus_post_msg(&conn_msg, sizeof(conn_msg), true); + + trace_vmbus_send_modifychannel(&conn_msg, ret); + + return ret; +} +EXPORT_SYMBOL_GPL(vmbus_send_modifychannel); + +/* * create_gpadl_header - Creates a gpadl for the specified buffer */ -static int create_gpadl_header(void *kbuffer, u32 size, +static int create_gpadl_header(enum hv_gpadl_type type, void *kbuffer, + u32 size, u32 send_offset, struct vmbus_channel_msginfo **msginfo) { int i; @@ -318,7 +269,7 @@ int pfnsum, pfncount, pfnleft, pfncurr, pfnsize; - pagecount = size >> PAGE_SHIFT; + pagecount = hv_gpadl_size(type, size) >> HV_HYP_PAGE_SHIFT; /* do we need a gpadl body msg */ pfnsize = MAX_SIZE_CHANNEL_MESSAGE - @@ -345,10 +296,10 @@ gpadl_header->range_buflen = sizeof(struct gpa_range) + pagecount * sizeof(u64); gpadl_header->range[0].byte_offset = 0; - gpadl_header->range[0].byte_count = size; + gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); for (i = 0; i < pfncount; i++) - gpadl_header->range[0].pfn_array[i] = virt_to_hvpfn( - kbuffer + PAGE_SIZE * i); + gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( + type, kbuffer, size, send_offset, i); *msginfo = msgheader; pfnsum = pfncount; @@ -399,8 +350,8 @@ * so the hypervisor guarantees that this is ok. */ for (i = 0; i < pfncurr; i++) - gpadl_body->pfn[i] = virt_to_hvpfn( - kbuffer + PAGE_SIZE * (pfnsum + i)); + gpadl_body->pfn[i] = hv_gpadl_hvpfn(type, + kbuffer, size, send_offset, pfnsum + i); /* add to msg header */ list_add_tail(&msgbody->msglistentry, @@ -426,10 +377,10 @@ gpadl_header->range_buflen = sizeof(struct gpa_range) + pagecount * sizeof(u64); gpadl_header->range[0].byte_offset = 0; - gpadl_header->range[0].byte_count = size; + gpadl_header->range[0].byte_count = hv_gpadl_size(type, size); for (i = 0; i < pagecount; i++) - gpadl_header->range[0].pfn_array[i] = virt_to_hvpfn( - kbuffer + PAGE_SIZE * i); + gpadl_header->range[0].pfn_array[i] = hv_gpadl_hvpfn( + type, kbuffer, size, send_offset, i); *msginfo = msgheader; } @@ -442,15 +393,20 @@ } /* - * vmbus_establish_gpadl - Establish a GPADL for the specified buffer + * __vmbus_establish_gpadl - Establish a GPADL for a buffer or ringbuffer * * @channel: a channel + * @type: the type of the corresponding GPADL, only meaningful for the guest. * @kbuffer: from kmalloc or vmalloc * @size: page-size multiple + * @send_offset: the offset (in bytes) where the send ring buffer starts, + * should be 0 for BUFFER type gpadl * @gpadl_handle: some funky thing */ -int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, - u32 size, u32 *gpadl_handle) +static int __vmbus_establish_gpadl(struct vmbus_channel *channel, + enum hv_gpadl_type type, void *kbuffer, + u32 size, u32 send_offset, + u32 *gpadl_handle) { struct vmbus_channel_gpadl_header *gpadlmsg; struct vmbus_channel_gpadl_body *gpadl_body; @@ -464,7 +420,7 @@ next_gpadl_handle = (atomic_inc_return(&vmbus_connection.next_gpadl_handle) - 1); - ret = create_gpadl_header(kbuffer, size, &msginfo); + ret = create_gpadl_header(type, kbuffer, size, send_offset, &msginfo); if (ret) return ret; @@ -545,8 +501,184 @@ kfree(msginfo); return ret; } + +/* + * vmbus_establish_gpadl - Establish a GPADL for the specified buffer + * + * @channel: a channel + * @kbuffer: from kmalloc or vmalloc + * @size: page-size multiple + * @gpadl_handle: some funky thing + */ +int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, + u32 size, u32 *gpadl_handle) +{ + return __vmbus_establish_gpadl(channel, HV_GPADL_BUFFER, kbuffer, size, + 0U, gpadl_handle); +} EXPORT_SYMBOL_GPL(vmbus_establish_gpadl); +static int __vmbus_open(struct vmbus_channel *newchannel, + void *userdata, u32 userdatalen, + void (*onchannelcallback)(void *context), void *context) +{ + struct vmbus_channel_open_channel *open_msg; + struct vmbus_channel_msginfo *open_info = NULL; + struct page *page = newchannel->ringbuffer_page; + u32 send_pages, recv_pages; + unsigned long flags; + int err; + + if (userdatalen > MAX_USER_DEFINED_BYTES) + return -EINVAL; + + send_pages = newchannel->ringbuffer_send_offset; + recv_pages = newchannel->ringbuffer_pagecount - send_pages; + + if (newchannel->state != CHANNEL_OPEN_STATE) + return -EINVAL; + + newchannel->state = CHANNEL_OPENING_STATE; + newchannel->onchannel_callback = onchannelcallback; + newchannel->channel_callback_context = context; + + err = hv_ringbuffer_init(&newchannel->outbound, page, send_pages); + if (err) + goto error_clean_ring; + + err = hv_ringbuffer_init(&newchannel->inbound, + &page[send_pages], recv_pages); + if (err) + goto error_clean_ring; + + /* Establish the gpadl for the ring buffer */ + newchannel->ringbuffer_gpadlhandle = 0; + + err = __vmbus_establish_gpadl(newchannel, HV_GPADL_RING, + page_address(newchannel->ringbuffer_page), + (send_pages + recv_pages) << PAGE_SHIFT, + newchannel->ringbuffer_send_offset << PAGE_SHIFT, + &newchannel->ringbuffer_gpadlhandle); + if (err) + goto error_clean_ring; + + /* Create and init the channel open message */ + open_info = kmalloc(sizeof(*open_info) + + sizeof(struct vmbus_channel_open_channel), + GFP_KERNEL); + if (!open_info) { + err = -ENOMEM; + goto error_free_gpadl; + } + + init_completion(&open_info->waitevent); + open_info->waiting_channel = newchannel; + + open_msg = (struct vmbus_channel_open_channel *)open_info->msg; + open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; + open_msg->openid = newchannel->offermsg.child_relid; + open_msg->child_relid = newchannel->offermsg.child_relid; + open_msg->ringbuffer_gpadlhandle = newchannel->ringbuffer_gpadlhandle; + /* + * The unit of ->downstream_ringbuffer_pageoffset is HV_HYP_PAGE and + * the unit of ->ringbuffer_send_offset (i.e. send_pages) is PAGE, so + * here we calculate it into HV_HYP_PAGE. + */ + open_msg->downstream_ringbuffer_pageoffset = + hv_ring_gpadl_send_hvpgoffset(send_pages << PAGE_SHIFT); + open_msg->target_vp = hv_cpu_number_to_vp_number(newchannel->target_cpu); + + if (userdatalen) + memcpy(open_msg->userdata, userdata, userdatalen); + + spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); + list_add_tail(&open_info->msglistentry, + &vmbus_connection.chn_msg_list); + spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); + + if (newchannel->rescind) { + err = -ENODEV; + goto error_free_info; + } + + err = vmbus_post_msg(open_msg, + sizeof(struct vmbus_channel_open_channel), true); + + trace_vmbus_open(open_msg, err); + + if (err != 0) + goto error_clean_msglist; + + wait_for_completion(&open_info->waitevent); + + spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); + list_del(&open_info->msglistentry); + spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); + + if (newchannel->rescind) { + err = -ENODEV; + goto error_free_info; + } + + if (open_info->response.open_result.status) { + err = -EAGAIN; + goto error_free_info; + } + + newchannel->state = CHANNEL_OPENED_STATE; + kfree(open_info); + return 0; + +error_clean_msglist: + spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); + list_del(&open_info->msglistentry); + spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); +error_free_info: + kfree(open_info); +error_free_gpadl: + vmbus_teardown_gpadl(newchannel, newchannel->ringbuffer_gpadlhandle); + newchannel->ringbuffer_gpadlhandle = 0; +error_clean_ring: + hv_ringbuffer_cleanup(&newchannel->outbound); + hv_ringbuffer_cleanup(&newchannel->inbound); + newchannel->state = CHANNEL_OPEN_STATE; + return err; +} + +/* + * vmbus_connect_ring - Open the channel but reuse ring buffer + */ +int vmbus_connect_ring(struct vmbus_channel *newchannel, + void (*onchannelcallback)(void *context), void *context) +{ + return __vmbus_open(newchannel, NULL, 0, onchannelcallback, context); +} +EXPORT_SYMBOL_GPL(vmbus_connect_ring); + +/* + * vmbus_open - Open the specified channel. + */ +int vmbus_open(struct vmbus_channel *newchannel, + u32 send_ringbuffer_size, u32 recv_ringbuffer_size, + void *userdata, u32 userdatalen, + void (*onchannelcallback)(void *context), void *context) +{ + int err; + + err = vmbus_alloc_ring(newchannel, send_ringbuffer_size, + recv_ringbuffer_size); + if (err) + return err; + + err = __vmbus_open(newchannel, userdata, userdatalen, + onchannelcallback, context); + if (err) + vmbus_free_ring(newchannel); + + return err; +} +EXPORT_SYMBOL_GPL(vmbus_open); + /* * vmbus_teardown_gpadl -Teardown the specified GPADL handle */ @@ -607,35 +739,31 @@ } EXPORT_SYMBOL_GPL(vmbus_teardown_gpadl); -static void reset_channel_cb(void *arg) -{ - struct vmbus_channel *channel = arg; - - channel->onchannel_callback = NULL; -} - void vmbus_reset_channel_cb(struct vmbus_channel *channel) { + unsigned long flags; + /* * vmbus_on_event(), running in the per-channel tasklet, can race * with vmbus_close_internal() in the case of SMP guest, e.g., when * the former is accessing channel->inbound.ring_buffer, the latter * could be freeing the ring_buffer pages, so here we must stop it * first. + * + * vmbus_chan_sched() might call the netvsc driver callback function + * that ends up scheduling NAPI work that accesses the ring buffer. + * At this point, we have to ensure that any such work is completed + * and that the channel ring buffer is no longer being accessed, cf. + * the calls to napi_disable() in netvsc_device_remove(). */ tasklet_disable(&channel->callback_event); - channel->sc_creation_callback = NULL; + /* See the inline comments in vmbus_chan_sched(). */ + spin_lock_irqsave(&channel->sched_lock, flags); + channel->onchannel_callback = NULL; + spin_unlock_irqrestore(&channel->sched_lock, flags); - /* Stop the callback asap */ - if (channel->target_cpu != get_cpu()) { - put_cpu(); - smp_call_function_single(channel->target_cpu, reset_channel_cb, - channel, true); - } else { - reset_channel_cb(channel); - put_cpu(); - } + channel->sc_creation_callback = NULL; /* Re-enable tasklet for use on re-open */ tasklet_enable(&channel->callback_event); diff -u linux-azure-5.4.0/drivers/hv/channel_mgmt.c linux-azure-5.4.0/drivers/hv/channel_mgmt.c --- linux-azure-5.4.0/drivers/hv/channel_mgmt.c +++ linux-azure-5.4.0/drivers/hv/channel_mgmt.c @@ -18,14 +18,15 @@ #include #include #include +#include #include #include #include "hyperv_vmbus.h" -static void init_vp_index(struct vmbus_channel *channel, u16 dev_type); +static void init_vp_index(struct vmbus_channel *channel); -static const struct vmbus_device vmbus_devs[] = { +const struct vmbus_device vmbus_devs[] = { /* IDE */ { .dev_type = HV_IDE, HV_IDE_GUID, @@ -122,6 +123,12 @@ .perf_device = false, }, + /* Azure Blob */ + { .dev_type = HV_AZURE_BLOB, + HV_AZURE_BLOB_GUID, + .perf_device = false, + }, + /* Unknown GUID */ { .dev_type = HV_UNKNOWN, .perf_device = false, @@ -315,11 +322,10 @@ if (!channel) return NULL; - spin_lock_init(&channel->lock); + spin_lock_init(&channel->sched_lock); init_completion(&channel->rescind_event); INIT_LIST_HEAD(&channel->sc_list); - INIT_LIST_HEAD(&channel->percpu_list); tasklet_init(&channel->callback_event, vmbus_on_event, (unsigned long)channel); @@ -340,23 +346,49 @@ kobject_put(&channel->kobj); } -static void percpu_channel_enq(void *arg) +void vmbus_channel_map_relid(struct vmbus_channel *channel) { - struct vmbus_channel *channel = arg; - struct hv_per_cpu_context *hv_cpu - = this_cpu_ptr(hv_context.cpu_context); - - list_add_tail_rcu(&channel->percpu_list, &hv_cpu->chan_list); + if (WARN_ON(channel->offermsg.child_relid >= MAX_CHANNEL_RELIDS)) + return; + /* + * The mapping of the channel's relid is visible from the CPUs that + * execute vmbus_chan_sched() by the time that vmbus_chan_sched() will + * execute: + * + * (a) In the "normal (i.e., not resuming from hibernation)" path, + * the full barrier in virt_store_mb() guarantees that the store + * is propagated to all CPUs before the add_channel_work work + * is queued. In turn, add_channel_work is queued before the + * channel's ring buffer is allocated/initialized and the + * OPENCHANNEL message for the channel is sent in vmbus_open(). + * Hyper-V won't start sending the interrupts for the channel + * before the OPENCHANNEL message is acked. The memory barrier + * in vmbus_chan_sched() -> sync_test_and_clear_bit() ensures + * that vmbus_chan_sched() must find the channel's relid in + * recv_int_page before retrieving the channel pointer from the + * array of channels. + * + * (b) In the "resuming from hibernation" path, the virt_store_mb() + * guarantees that the store is propagated to all CPUs before + * the VMBus connection is marked as ready for the resume event + * (cf. check_ready_for_resume_event()). The interrupt handler + * of the VMBus driver and vmbus_chan_sched() can not run before + * vmbus_bus_resume() has completed execution (cf. resume_noirq). + */ + virt_store_mb( + vmbus_connection.channels[channel->offermsg.child_relid], + channel); } -static void percpu_channel_deq(void *arg) +void vmbus_channel_unmap_relid(struct vmbus_channel *channel) { - struct vmbus_channel *channel = arg; - - list_del_rcu(&channel->percpu_list); + if (WARN_ON(channel->offermsg.child_relid >= MAX_CHANNEL_RELIDS)) + return; + WRITE_ONCE( + vmbus_connection.channels[channel->offermsg.child_relid], + NULL); } - static void vmbus_release_relid(u32 relid) { struct vmbus_channel_relid_released msg; @@ -373,39 +405,37 @@ void hv_process_channel_removal(struct vmbus_channel *channel) { - struct vmbus_channel *primary_channel; - unsigned long flags; - - BUG_ON(!mutex_is_locked(&vmbus_connection.channel_mutex)); + lockdep_assert_held(&vmbus_connection.channel_mutex); BUG_ON(!channel->rescind); - if (channel->target_cpu != get_cpu()) { - put_cpu(); - smp_call_function_single(channel->target_cpu, - percpu_channel_deq, channel, true); - } else { - percpu_channel_deq(channel); - put_cpu(); - } + /* + * hv_process_channel_removal() could find INVALID_RELID only for + * hv_sock channels. See the inline comments in vmbus_onoffer(). + */ + WARN_ON(channel->offermsg.child_relid == INVALID_RELID && + !is_hvsock_channel(channel)); - if (channel->primary_channel == NULL) { - list_del(&channel->listentry); + /* + * Upon suspend, an in-use hv_sock channel is removed from the array of + * channels and the relid is invalidated. After hibernation, when the + * user-space appplication destroys the channel, it's unnecessary and + * unsafe to remove the channel from the array of channels. See also + * the inline comments before the call of vmbus_release_relid() below. + */ + if (channel->offermsg.child_relid != INVALID_RELID) + vmbus_channel_unmap_relid(channel); - primary_channel = channel; - } else { - primary_channel = channel->primary_channel; - spin_lock_irqsave(&primary_channel->lock, flags); + if (channel->primary_channel == NULL) + list_del(&channel->listentry); + else list_del(&channel->sc_list); - spin_unlock_irqrestore(&primary_channel->lock, flags); - } /* - * We need to free the bit for init_vp_index() to work in the case - * of sub-channel, when we reload drivers like hv_netvsc. + * If this is a "perf" channel, updates the hv_numa_map[] masks so that + * init_vp_index() can (re-)use the CPU. */ - if (channel->affinity_policy == HV_LOCALIZED) - cpumask_clear_cpu(channel->target_cpu, - &primary_channel->alloced_cpus_in_node); + if (hv_is_perf_channel(channel)) + hv_clear_alloced_cpu(channel->target_cpu); /* * Upon suspend, an in-use hv_sock channel is marked as "rescinded" and @@ -439,24 +469,8 @@ struct vmbus_channel *newchannel = container_of(work, struct vmbus_channel, add_channel_work); struct vmbus_channel *primary_channel = newchannel->primary_channel; - unsigned long flags; - u16 dev_type; int ret; - dev_type = hv_get_dev_type(newchannel); - - init_vp_index(newchannel, dev_type); - - if (newchannel->target_cpu != get_cpu()) { - put_cpu(); - smp_call_function_single(newchannel->target_cpu, - percpu_channel_enq, - newchannel, true); - } else { - percpu_channel_enq(newchannel); - put_cpu(); - } - /* * This state is used to indicate a successful open * so that when we do close the channel normally, we @@ -488,7 +502,7 @@ if (!newchannel->device_obj) goto err_deq_chan; - newchannel->device_obj->device_id = dev_type; + newchannel->device_obj->device_id = newchannel->device_id; /* * Add the new device to the bus. This will kick off device-driver * binding which eventually invokes the device driver's AddDevice() @@ -515,25 +529,15 @@ */ newchannel->probe_done = true; - if (primary_channel == NULL) { + if (primary_channel == NULL) list_del(&newchannel->listentry); - } else { - spin_lock_irqsave(&primary_channel->lock, flags); + else list_del(&newchannel->sc_list); - spin_unlock_irqrestore(&primary_channel->lock, flags); - } - mutex_unlock(&vmbus_connection.channel_mutex); + /* vmbus_process_offer() has mapped the channel. */ + vmbus_channel_unmap_relid(newchannel); - if (newchannel->target_cpu != get_cpu()) { - put_cpu(); - smp_call_function_single(newchannel->target_cpu, - percpu_channel_deq, - newchannel, true); - } else { - percpu_channel_deq(newchannel); - put_cpu(); - } + mutex_unlock(&vmbus_connection.channel_mutex); vmbus_release_relid(newchannel->offermsg.child_relid); @@ -548,20 +552,34 @@ { struct vmbus_channel *channel; struct workqueue_struct *wq; - unsigned long flags; bool fnew = true; - mutex_lock(&vmbus_connection.channel_mutex); - - /* Remember the channels that should be cleaned up upon suspend. */ - if (is_hvsock_channel(newchannel) || is_sub_channel(newchannel)) - atomic_inc(&vmbus_connection.nr_chan_close_on_suspend); + /* + * Synchronize vmbus_process_offer() and CPU hotplugging: + * + * CPU1 CPU2 + * + * [vmbus_process_offer()] [Hot removal of the CPU] + * + * CPU_READ_LOCK CPUS_WRITE_LOCK + * LOAD cpu_online_mask SEARCH chn_list + * STORE target_cpu LOAD target_cpu + * INSERT chn_list STORE cpu_online_mask + * CPUS_READ_UNLOCK CPUS_WRITE_UNLOCK + * + * Forbids: CPU1's LOAD from *not* seing CPU2's STORE && + * CPU2's SEARCH from *not* seeing CPU1's INSERT + * + * Forbids: CPU2's SEARCH from seeing CPU1's INSERT && + * CPU2's LOAD from *not* seing CPU1's STORE + */ + cpus_read_lock(); /* - * Now that we have acquired the channel_mutex, - * we can release the potentially racing rescind thread. + * Serializes the modifications of the chn_list list as well as + * the accesses to next_numa_node_id in init_vp_index(). */ - atomic_dec(&vmbus_connection.offer_in_progress); + mutex_lock(&vmbus_connection.channel_mutex); list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { if (guid_equal(&channel->offermsg.offer.if_type, @@ -569,14 +587,27 @@ guid_equal(&channel->offermsg.offer.if_instance, &newchannel->offermsg.offer.if_instance)) { fnew = false; + newchannel->primary_channel = channel; break; } } - if (fnew) + init_vp_index(newchannel); + + /* Remember the channels that should be cleaned up upon suspend. */ + if (is_hvsock_channel(newchannel) || is_sub_channel(newchannel)) + atomic_inc(&vmbus_connection.nr_chan_close_on_suspend); + + /* + * Now that we have acquired the channel_mutex, + * we can release the potentially racing rescind thread. + */ + atomic_dec(&vmbus_connection.offer_in_progress); + + if (fnew) { list_add_tail(&newchannel->listentry, &vmbus_connection.chn_list); - else { + } else { /* * Check to see if this is a valid sub-channel. */ @@ -593,13 +624,13 @@ /* * Process the sub-channel. */ - newchannel->primary_channel = channel; - spin_lock_irqsave(&channel->lock, flags); list_add_tail(&newchannel->sc_list, &channel->sc_list); - spin_unlock_irqrestore(&channel->lock, flags); } + vmbus_channel_map_relid(newchannel); + mutex_unlock(&vmbus_connection.channel_mutex); + cpus_read_unlock(); /* * vmbus_process_offer() mustn't call channel->sc_creation_callback() @@ -629,136 +660,105 @@ } /* - * We use this state to statically distribute the channel interrupt load. + * Check if CPUs used by other channels of the same device. + * It should only be called by init_vp_index(). */ -static int next_numa_node_id; +static bool hv_cpuself_used(u32 cpu, struct vmbus_channel *chn) +{ + struct vmbus_channel *primary = chn->primary_channel; + struct vmbus_channel *sc; + + lockdep_assert_held(&vmbus_connection.channel_mutex); + + if (!primary) + return false; + + if (primary->target_cpu == cpu) + return true; + + list_for_each_entry(sc, &primary->sc_list, sc_list) + if (sc != chn && sc->target_cpu == cpu) + return true; + + return false; +} + /* - * init_vp_index() accesses global variables like next_numa_node_id, and - * it can run concurrently for primary channels and sub-channels: see - * vmbus_process_offer(), so we need the lock to protect the global - * variables. + * We use this state to statically distribute the channel interrupt load. */ -static DEFINE_SPINLOCK(bind_channel_to_cpu_lock); +static int next_numa_node_id; /* * Starting with Win8, we can statically distribute the incoming * channel interrupt load by binding a channel to VCPU. - * We distribute the interrupt loads to one or more NUMA nodes based on - * the channel's affinity_policy. * * For pre-win8 hosts or non-performance critical channels we assign the - * first CPU in the first NUMA node. + * VMBUS_CONNECT_CPU. + * + * Starting with win8, performance critical channels will be distributed + * evenly among all the available NUMA nodes. Once the node is assigned, + * we will assign the CPU based on a simple round robin scheme. */ -static void init_vp_index(struct vmbus_channel *channel, u16 dev_type) +static void init_vp_index(struct vmbus_channel *channel) { - u32 cur_cpu; - bool perf_chn = vmbus_devs[dev_type].perf_device; - struct vmbus_channel *primary = channel->primary_channel; - int next_node; + bool perf_chn = hv_is_perf_channel(channel); + u32 i, ncpu = num_online_cpus(); cpumask_var_t available_mask; struct cpumask *alloced_mask; + u32 target_cpu; + int numa_node; if ((vmbus_proto_version == VERSION_WS2008) || (vmbus_proto_version == VERSION_WIN7) || (!perf_chn) || !alloc_cpumask_var(&available_mask, GFP_KERNEL)) { /* * Prior to win8, all channel interrupts are - * delivered on cpu 0. + * delivered on VMBUS_CONNECT_CPU. * Also if the channel is not a performance critical - * channel, bind it to cpu 0. - * In case alloc_cpumask_var() fails, bind it to cpu 0. + * channel, bind it to VMBUS_CONNECT_CPU. + * In case alloc_cpumask_var() fails, bind it to + * VMBUS_CONNECT_CPU. */ - channel->numa_node = 0; - channel->target_cpu = 0; - channel->target_vp = hv_cpu_number_to_vp_number(0); + channel->target_cpu = VMBUS_CONNECT_CPU; + if (perf_chn) + hv_set_alloced_cpu(VMBUS_CONNECT_CPU); return; } - spin_lock(&bind_channel_to_cpu_lock); - - /* - * Based on the channel affinity policy, we will assign the NUMA - * nodes. - */ - - if ((channel->affinity_policy == HV_BALANCED) || (!primary)) { + for (i = 1; i <= ncpu + 1; i++) { while (true) { - next_node = next_numa_node_id++; - if (next_node == nr_node_ids) { - next_node = next_numa_node_id = 0; + numa_node = next_numa_node_id++; + if (numa_node == nr_node_ids) { + next_numa_node_id = 0; continue; } - if (cpumask_empty(cpumask_of_node(next_node))) + if (cpumask_empty(cpumask_of_node(numa_node))) continue; break; } - channel->numa_node = next_node; - primary = channel; - } - alloced_mask = &hv_context.hv_numa_map[primary->numa_node]; + alloced_mask = &hv_context.hv_numa_map[numa_node]; - if (cpumask_weight(alloced_mask) == - cpumask_weight(cpumask_of_node(primary->numa_node))) { - /* - * We have cycled through all the CPUs in the node; - * reset the alloced map. - */ - cpumask_clear(alloced_mask); - } - - cpumask_xor(available_mask, alloced_mask, - cpumask_of_node(primary->numa_node)); - - cur_cpu = -1; + if (cpumask_weight(alloced_mask) == + cpumask_weight(cpumask_of_node(numa_node))) { + /* + * We have cycled through all the CPUs in the node; + * reset the alloced map. + */ + cpumask_clear(alloced_mask); + } - if (primary->affinity_policy == HV_LOCALIZED) { - /* - * Normally Hyper-V host doesn't create more subchannels - * than there are VCPUs on the node but it is possible when not - * all present VCPUs on the node are initialized by guest. - * Clear the alloced_cpus_in_node to start over. - */ - if (cpumask_equal(&primary->alloced_cpus_in_node, - cpumask_of_node(primary->numa_node))) - cpumask_clear(&primary->alloced_cpus_in_node); - } + cpumask_xor(available_mask, alloced_mask, + cpumask_of_node(numa_node)); - while (true) { - cur_cpu = cpumask_next(cur_cpu, available_mask); - if (cur_cpu >= nr_cpu_ids) { - cur_cpu = -1; - cpumask_copy(available_mask, - cpumask_of_node(primary->numa_node)); - continue; - } + target_cpu = cpumask_first(available_mask); + cpumask_set_cpu(target_cpu, alloced_mask); - if (primary->affinity_policy == HV_LOCALIZED) { - /* - * NOTE: in the case of sub-channel, we clear the - * sub-channel related bit(s) in - * primary->alloced_cpus_in_node in - * hv_process_channel_removal(), so when we - * reload drivers like hv_netvsc in SMP guest, here - * we're able to re-allocate - * bit from primary->alloced_cpus_in_node. - */ - if (!cpumask_test_cpu(cur_cpu, - &primary->alloced_cpus_in_node)) { - cpumask_set_cpu(cur_cpu, - &primary->alloced_cpus_in_node); - cpumask_set_cpu(cur_cpu, alloced_mask); - break; - } - } else { - cpumask_set_cpu(cur_cpu, alloced_mask); + if (channel->offermsg.offer.sub_channel_index >= ncpu || + i > ncpu || !hv_cpuself_used(target_cpu, channel)) break; - } } - channel->target_cpu = cur_cpu; - channel->target_vp = hv_cpu_number_to_vp_number(cur_cpu); - - spin_unlock(&bind_channel_to_cpu_lock); + channel->target_cpu = target_cpu; free_cpumask_var(available_mask); } @@ -918,6 +918,7 @@ sizeof(struct vmbus_channel_offer_channel)); channel->monitor_grp = (u8)offer->monitorid / 32; channel->monitor_bit = (u8)offer->monitorid % 32; + channel->device_id = hv_get_dev_type(channel); } /* @@ -968,8 +969,6 @@ oldchannel = find_primary_channel_by_offer(offer); if (oldchannel != NULL) { - atomic_dec(&vmbus_connection.offer_in_progress); - /* * We're resuming from hibernation: all the sub-channel and * hv_sock channels we had before the hibernation should have @@ -977,36 +976,65 @@ * primary channel that we had before the hibernation. */ + /* + * { Initially: channel relid = INVALID_RELID, + * channels[valid_relid] = NULL } + * + * CPU1 CPU2 + * + * [vmbus_onoffer()] [vmbus_device_release()] + * + * LOCK channel_mutex LOCK channel_mutex + * STORE channel relid = valid_relid LOAD r1 = channel relid + * MAP_RELID channel if (r1 != INVALID_RELID) + * UNLOCK channel_mutex UNMAP_RELID channel + * UNLOCK channel_mutex + * + * Forbids: r1 == valid_relid && + * channels[valid_relid] == channel + * + * Note. r1 can be INVALID_RELID only for an hv_sock channel. + * None of the hv_sock channels which were present before the + * suspend are re-offered upon the resume. See the WARN_ON() + * in hv_process_channel_removal(). + */ + mutex_lock(&vmbus_connection.channel_mutex); + + atomic_dec(&vmbus_connection.offer_in_progress); + WARN_ON(oldchannel->offermsg.child_relid != INVALID_RELID); /* Fix up the relid. */ oldchannel->offermsg.child_relid = offer->child_relid; offer_sz = sizeof(*offer); - if (memcmp(offer, &oldchannel->offermsg, offer_sz) == 0) { - check_ready_for_resume_event(); - return; - } - - /* - * This is not an error, since the host can also change the - * other field(s) of the offer, e.g. on WS RS5 (Build 17763), - * the offer->connection_id of the Mellanox VF vmbus device - * can change when the host reoffers the device upon resume. - */ - pr_debug("vmbus offer changed: relid=%d\n", - offer->child_relid); + if (memcmp(offer, &oldchannel->offermsg, offer_sz) != 0) { + /* + * This is not an error, since the host can also change + * the other field(s) of the offer, e.g. on WS RS5 + * (Build 17763), the offer->connection_id of the + * Mellanox VF vmbus device can change when the host + * reoffers the device upon resume. + */ + pr_debug("vmbus offer changed: relid=%d\n", + offer->child_relid); - print_hex_dump_debug("Old vmbus offer: ", DUMP_PREFIX_OFFSET, - 16, 4, &oldchannel->offermsg, offer_sz, - false); - print_hex_dump_debug("New vmbus offer: ", DUMP_PREFIX_OFFSET, - 16, 4, offer, offer_sz, false); + print_hex_dump_debug("Old vmbus offer: ", + DUMP_PREFIX_OFFSET, 16, 4, + &oldchannel->offermsg, offer_sz, + false); + print_hex_dump_debug("New vmbus offer: ", + DUMP_PREFIX_OFFSET, 16, 4, + offer, offer_sz, false); - /* Fix up the old channel. */ - vmbus_setup_channel_state(oldchannel, offer); + /* Fix up the old channel. */ + vmbus_setup_channel_state(oldchannel, offer); + } + /* Add the channel back to the array of channels. */ + vmbus_channel_map_relid(oldchannel); check_ready_for_resume_event(); + mutex_unlock(&vmbus_connection.channel_mutex); return; } @@ -1056,11 +1084,22 @@ * offer comes in first and then the rescind. * Since we process these events in work elements, * and with preemption, we may end up processing - * the events out of order. Given that we handle these - * work elements on the same CPU, this is possible only - * in the case of preemption. In any case wait here - * until the offer processing has moved beyond the - * point where the channel is discoverable. + * the events out of order. We rely on the synchronization + * provided by offer_in_progress and by channel_mutex for + * ordering these events: + * + * { Initially: offer_in_progress = 1 } + * + * CPU1 CPU2 + * + * [vmbus_onoffer()] [vmbus_onoffer_rescind()] + * + * LOCK channel_mutex WAIT_ON offer_in_progress == 0 + * DECREMENT offer_in_progress LOCK channel_mutex + * STORE channels[] LOAD channels[] + * UNLOCK channel_mutex UNLOCK channel_mutex + * + * Forbids: CPU2's LOAD from *not* seeing CPU1's STORE */ while (atomic_read(&vmbus_connection.offer_in_progress) != 0) { @@ -1359,30 +1398,36 @@ /* Channel message dispatch table */ const struct vmbus_channel_message_table_entry channel_message_table[CHANNELMSG_COUNT] = { - { CHANNELMSG_INVALID, 0, NULL }, - { CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer }, - { CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind }, - { CHANNELMSG_REQUESTOFFERS, 0, NULL }, - { CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered }, - { CHANNELMSG_OPENCHANNEL, 0, NULL }, - { CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result }, - { CHANNELMSG_CLOSECHANNEL, 0, NULL }, - { CHANNELMSG_GPADL_HEADER, 0, NULL }, - { CHANNELMSG_GPADL_BODY, 0, NULL }, - { CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created }, - { CHANNELMSG_GPADL_TEARDOWN, 0, NULL }, - { CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown }, - { CHANNELMSG_RELID_RELEASED, 0, NULL }, - { CHANNELMSG_INITIATE_CONTACT, 0, NULL }, - { CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response }, - { CHANNELMSG_UNLOAD, 0, NULL }, - { CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response }, - { CHANNELMSG_18, 0, NULL }, - { CHANNELMSG_19, 0, NULL }, - { CHANNELMSG_20, 0, NULL }, - { CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL }, - { CHANNELMSG_22, 0, NULL }, - { CHANNELMSG_TL_CONNECT_RESULT, 0, NULL }, + { CHANNELMSG_INVALID, 0, NULL, 0}, + { CHANNELMSG_OFFERCHANNEL, 0, vmbus_onoffer, + sizeof(struct vmbus_channel_offer_channel)}, + { CHANNELMSG_RESCIND_CHANNELOFFER, 0, vmbus_onoffer_rescind, + sizeof(struct vmbus_channel_rescind_offer) }, + { CHANNELMSG_REQUESTOFFERS, 0, NULL, 0}, + { CHANNELMSG_ALLOFFERS_DELIVERED, 1, vmbus_onoffers_delivered, 0}, + { CHANNELMSG_OPENCHANNEL, 0, NULL, 0}, + { CHANNELMSG_OPENCHANNEL_RESULT, 1, vmbus_onopen_result, + sizeof(struct vmbus_channel_open_result)}, + { CHANNELMSG_CLOSECHANNEL, 0, NULL, 0}, + { CHANNELMSG_GPADL_HEADER, 0, NULL, 0}, + { CHANNELMSG_GPADL_BODY, 0, NULL, 0}, + { CHANNELMSG_GPADL_CREATED, 1, vmbus_ongpadl_created, + sizeof(struct vmbus_channel_gpadl_created)}, + { CHANNELMSG_GPADL_TEARDOWN, 0, NULL, 0}, + { CHANNELMSG_GPADL_TORNDOWN, 1, vmbus_ongpadl_torndown, + sizeof(struct vmbus_channel_gpadl_torndown) }, + { CHANNELMSG_RELID_RELEASED, 0, NULL, 0}, + { CHANNELMSG_INITIATE_CONTACT, 0, NULL, 0}, + { CHANNELMSG_VERSION_RESPONSE, 1, vmbus_onversion_response, + sizeof(struct vmbus_channel_version_response)}, + { CHANNELMSG_UNLOAD, 0, NULL, 0}, + { CHANNELMSG_UNLOAD_RESPONSE, 1, vmbus_unload_response, 0}, + { CHANNELMSG_18, 0, NULL, 0}, + { CHANNELMSG_19, 0, NULL, 0}, + { CHANNELMSG_20, 0, NULL, 0}, + { CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL, 0}, + { CHANNELMSG_MODIFYCHANNEL, 0, NULL, 0}, + { CHANNELMSG_TL_CONNECT_RESULT, 0, NULL, 0}, }; /* @@ -1390,13 +1435,8 @@ * * This is invoked in the vmbus worker thread context. */ -void vmbus_onmessage(void *context) +void vmbus_onmessage(struct vmbus_channel_message_header *hdr) { - struct hv_message *msg = context; - struct vmbus_channel_message_header *hdr; - - hdr = (struct vmbus_channel_message_header *)msg->u.payload; - trace_vmbus_on_message(hdr); /* diff -u linux-azure-5.4.0/drivers/hv/connection.c linux-azure-5.4.0/drivers/hv/connection.c --- linux-azure-5.4.0/drivers/hv/connection.c +++ linux-azure-5.4.0/drivers/hv/connection.c @@ -42,29 +42,20 @@ __u32 vmbus_proto_version; EXPORT_SYMBOL_GPL(vmbus_proto_version); -static __u32 vmbus_get_next_version(__u32 current_version) -{ - switch (current_version) { - case (VERSION_WIN7): - return VERSION_WS2008; - - case (VERSION_WIN8): - return VERSION_WIN7; - - case (VERSION_WIN8_1): - return VERSION_WIN8; - - case (VERSION_WIN10): - return VERSION_WIN8_1; - - case (VERSION_WIN10_V5): - return VERSION_WIN10; - - case (VERSION_WS2008): - default: - return VERSION_INVAL; - } -} +/* + * Table of VMBus versions listed from newest to oldest. + */ +static __u32 vmbus_versions[] = { + VERSION_WIN10_V5_2, + VERSION_WIN10_V5_1, + VERSION_WIN10_V5, + VERSION_WIN10_V4_1, + VERSION_WIN10, + VERSION_WIN8_1, + VERSION_WIN8, + VERSION_WIN7, + VERSION_WS2008 +}; int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo, u32 version) { @@ -81,12 +72,12 @@ msg->vmbus_version_requested = version; /* - * VMBus protocol 5.0 (VERSION_WIN10_V5) requires that we must use - * VMBUS_MESSAGE_CONNECTION_ID_4 for the Initiate Contact Message, + * VMBus protocol 5.0 (VERSION_WIN10_V5) and higher require that we must + * use VMBUS_MESSAGE_CONNECTION_ID_4 for the Initiate Contact Message, * and for subsequent messages, we must use the Message Connection ID * field in the host-returned Version Response Message. And, with - * VERSION_WIN10_V5, we don't use msg->interrupt_page, but we tell - * the host explicitly that we still use VMBUS_MESSAGE_SINT(2) for + * VERSION_WIN10_V5 and higher, we don't use msg->interrupt_page, but we + * tell the host explicitly that we still use VMBUS_MESSAGE_SINT(2) for * compatibility. * * On old hosts, we should always use VMBUS_MESSAGE_CONNECTION_ID (1). @@ -153,8 +144,8 @@ */ int vmbus_connect(void) { - int ret = 0; struct vmbus_channel_msginfo *msginfo = NULL; + int i, ret = 0; __u32 version; /* Initialize the vmbus connection */ @@ -190,7 +181,7 @@ * abstraction stuff */ vmbus_connection.int_page = - (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, 0); + (void *)hv_alloc_hyperv_zeroed_page(); if (vmbus_connection.int_page == NULL) { ret = -ENOMEM; goto cleanup; @@ -199,14 +190,14 @@ vmbus_connection.recv_int_page = vmbus_connection.int_page; vmbus_connection.send_int_page = (void *)((unsigned long)vmbus_connection.int_page + - (PAGE_SIZE >> 1)); + (HV_HYP_PAGE_SIZE >> 1)); /* * Setup the monitor notification facility. The 1st page for * parent->child and the 2nd page for child->parent */ - vmbus_connection.monitor_pages[0] = (void *)__get_free_pages((GFP_KERNEL|__GFP_ZERO), 0); - vmbus_connection.monitor_pages[1] = (void *)__get_free_pages((GFP_KERNEL|__GFP_ZERO), 0); + vmbus_connection.monitor_pages[0] = (void *)hv_alloc_hyperv_zeroed_page(); + vmbus_connection.monitor_pages[1] = (void *)hv_alloc_hyperv_zeroed_page(); if ((vmbus_connection.monitor_pages[0] == NULL) || (vmbus_connection.monitor_pages[1] == NULL)) { ret = -ENOMEM; @@ -228,26 +219,32 @@ * version. */ - version = VERSION_CURRENT; + for (i = 0; ; i++) { + if (i == ARRAY_SIZE(vmbus_versions)) + goto cleanup; + + version = vmbus_versions[i]; - do { ret = vmbus_negotiate_version(msginfo, version); if (ret == -ETIMEDOUT) goto cleanup; if (vmbus_connection.conn_state == CONNECTED) break; - - version = vmbus_get_next_version(version); - } while (version != VERSION_INVAL); - - if (version == VERSION_INVAL) - goto cleanup; + } vmbus_proto_version = version; pr_info("Vmbus version:%d.%d\n", version >> 16, version & 0xFFFF); + vmbus_connection.channels = kcalloc(MAX_CHANNEL_RELIDS, + sizeof(struct vmbus_channel *), + GFP_KERNEL); + if (vmbus_connection.channels == NULL) { + ret = -ENOMEM; + goto cleanup; + } + kfree(msginfo); return 0; @@ -279,12 +276,12 @@ destroy_workqueue(vmbus_connection.work_queue); if (vmbus_connection.int_page) { - free_pages((unsigned long)vmbus_connection.int_page, 0); + hv_free_hyperv_page((unsigned long)vmbus_connection.int_page); vmbus_connection.int_page = NULL; } - free_pages((unsigned long)vmbus_connection.monitor_pages[0], 0); - free_pages((unsigned long)vmbus_connection.monitor_pages[1], 0); + hv_free_hyperv_page((unsigned long)vmbus_connection.monitor_pages[0]); + hv_free_hyperv_page((unsigned long)vmbus_connection.monitor_pages[1]); vmbus_connection.monitor_pages[0] = NULL; vmbus_connection.monitor_pages[1] = NULL; } @@ -295,33 +292,9 @@ */ struct vmbus_channel *relid2channel(u32 relid) { - struct vmbus_channel *channel; - struct vmbus_channel *found_channel = NULL; - struct list_head *cur, *tmp; - struct vmbus_channel *cur_sc; - - BUG_ON(!mutex_is_locked(&vmbus_connection.channel_mutex)); - - list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { - if (channel->offermsg.child_relid == relid) { - found_channel = channel; - break; - } else if (!list_empty(&channel->sc_list)) { - /* - * Deal with sub-channels. - */ - list_for_each_safe(cur, tmp, &channel->sc_list) { - cur_sc = list_entry(cur, struct vmbus_channel, - sc_list); - if (cur_sc->offermsg.child_relid == relid) { - found_channel = cur_sc; - break; - } - } - } - } - - return found_channel; + if (WARN_ON(relid >= MAX_CHANNEL_RELIDS)) + return NULL; + return READ_ONCE(vmbus_connection.channels[relid]); } /* @@ -397,7 +370,7 @@ case HV_STATUS_INVALID_CONNECTION_ID: /* * See vmbus_negotiate_version(): VMBus protocol 5.0 - * requires that we must use + * and higher require that we must use * VMBUS_MESSAGE_CONNECTION_ID_4 for the Initiate * Contact message, but on old hosts that only * support VMBus protocol 4.0 or lower, here we get diff -u linux-azure-5.4.0/drivers/hv/hv.c linux-azure-5.4.0/drivers/hv/hv.c --- linux-azure-5.4.0/drivers/hv/hv.c +++ linux-azure-5.4.0/drivers/hv/hv.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include "hyperv_vmbus.h" @@ -37,6 +38,42 @@ } /* + * Functions for allocating and freeing memory with size and + * alignment HV_HYP_PAGE_SIZE. These functions are needed because + * the guest page size may not be the same as the Hyper-V page + * size. We depend upon kmalloc() aligning power-of-two size + * allocations to the allocation size boundary, so that the + * allocated memory appears to Hyper-V as a page of the size + * it expects. + */ + +void *hv_alloc_hyperv_page(void) +{ + BUILD_BUG_ON(PAGE_SIZE < HV_HYP_PAGE_SIZE); + + if (PAGE_SIZE == HV_HYP_PAGE_SIZE) + return (void *)__get_free_page(GFP_KERNEL); + else + return kmalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL); +} + +void *hv_alloc_hyperv_zeroed_page(void) +{ + if (PAGE_SIZE == HV_HYP_PAGE_SIZE) + return (void *)__get_free_page(GFP_KERNEL | __GFP_ZERO); + else + return kzalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL); +} + +void hv_free_hyperv_page(unsigned long addr) +{ + if (PAGE_SIZE == HV_HYP_PAGE_SIZE) + free_page(addr); + else + kfree((void *)addr); +} + +/* * hv_post_message - Post a message using the hypervisor message IPC. * * This involves a hypercall. @@ -68,7 +105,7 @@ */ put_cpu_ptr(hv_cpu); - return status & 0xFFFF; + return hv_result(status); } int hv_synic_alloc(void) @@ -117,8 +154,6 @@ pr_err("Unable to allocate post msg page\n"); goto err; } - - INIT_LIST_HEAD(&hv_cpu->chan_list); } return 0; @@ -164,38 +199,48 @@ union hv_synic_scontrol sctrl; /* Setup the Synic's message page */ - hv_get_simp(simp.as_uint64); + simp.as_uint64 = hv_get_register(HV_REGISTER_SIMP); simp.simp_enabled = 1; simp.base_simp_gpa = virt_to_phys(hv_cpu->synic_message_page) - >> PAGE_SHIFT; + >> HV_HYP_PAGE_SHIFT; - hv_set_simp(simp.as_uint64); + hv_set_register(HV_REGISTER_SIMP, simp.as_uint64); /* Setup the Synic's event page */ - hv_get_siefp(siefp.as_uint64); + siefp.as_uint64 = hv_get_register(HV_REGISTER_SIEFP); siefp.siefp_enabled = 1; siefp.base_siefp_gpa = virt_to_phys(hv_cpu->synic_event_page) - >> PAGE_SHIFT; + >> HV_HYP_PAGE_SHIFT; - hv_set_siefp(siefp.as_uint64); + hv_set_register(HV_REGISTER_SIEFP, siefp.as_uint64); /* Setup the shared SINT. */ - hv_get_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + if (vmbus_irq != -1) + enable_percpu_irq(vmbus_irq, 0); + shared_sint.as_uint64 = hv_get_register(HV_REGISTER_SINT0 + + VMBUS_MESSAGE_SINT); - shared_sint.vector = HYPERVISOR_CALLBACK_VECTOR; + shared_sint.vector = vmbus_interrupt; shared_sint.masked = false; - if (ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED) - shared_sint.auto_eoi = false; - else - shared_sint.auto_eoi = true; - hv_set_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + /* + * On architectures where Hyper-V doesn't support AEOI (e.g., ARM64), + * it doesn't provide a recommendation flag and AEOI must be disabled. + */ +#ifdef HV_DEPRECATING_AEOI_RECOMMENDED + shared_sint.auto_eoi = + !(ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED); +#else + shared_sint.auto_eoi = 0; +#endif + hv_set_register(HV_REGISTER_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); /* Enable the global synic bit */ - hv_get_synic_state(sctrl.as_uint64); + sctrl.as_uint64 = hv_get_register(HV_REGISTER_SCONTROL); sctrl.enable = 1; - hv_set_synic_state(sctrl.as_uint64); + hv_set_register(HV_REGISTER_SCONTROL, sctrl.as_uint64); } int hv_synic_init(unsigned int cpu) @@ -217,37 +262,42 @@ union hv_synic_siefp siefp; union hv_synic_scontrol sctrl; - hv_get_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + shared_sint.as_uint64 = hv_get_register(HV_REGISTER_SINT0 + + VMBUS_MESSAGE_SINT); shared_sint.masked = 1; /* Need to correctly cleanup in the case of SMP!!! */ /* Disable the interrupt */ - hv_set_synint_state(VMBUS_MESSAGE_SINT, shared_sint.as_uint64); + hv_set_register(HV_REGISTER_SINT0 + VMBUS_MESSAGE_SINT, + shared_sint.as_uint64); - hv_get_simp(simp.as_uint64); + simp.as_uint64 = hv_get_register(HV_REGISTER_SIMP); simp.simp_enabled = 0; simp.base_simp_gpa = 0; - hv_set_simp(simp.as_uint64); + hv_set_register(HV_REGISTER_SIMP, simp.as_uint64); - hv_get_siefp(siefp.as_uint64); + siefp.as_uint64 = hv_get_register(HV_REGISTER_SIEFP); siefp.siefp_enabled = 0; siefp.base_siefp_gpa = 0; - hv_set_siefp(siefp.as_uint64); + hv_set_register(HV_REGISTER_SIEFP, siefp.as_uint64); /* Disable the global synic bit */ - hv_get_synic_state(sctrl.as_uint64); + sctrl.as_uint64 = hv_get_register(HV_REGISTER_SCONTROL); sctrl.enable = 0; - hv_set_synic_state(sctrl.as_uint64); + hv_set_register(HV_REGISTER_SCONTROL, sctrl.as_uint64); + + if (vmbus_irq != -1) + disable_percpu_irq(vmbus_irq); } + int hv_synic_cleanup(unsigned int cpu) { struct vmbus_channel *channel, *sc; bool channel_found = false; - unsigned long flags; /* * Hyper-V does not provide a way to change the connect CPU once @@ -262,9 +312,10 @@ /* * Search for channels which are bound to the CPU we're about to - * cleanup. In case we find one and vmbus is still connected we need to - * fail, this will effectively prevent CPU offlining. There is no way - * we can re-bind channels to different CPUs for now. + * cleanup. In case we find one and vmbus is still connected, we + * fail; this will effectively prevent CPU offlining. + * + * TODO: Re-bind the channels to different CPUs. */ mutex_lock(&vmbus_connection.channel_mutex); list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { @@ -272,14 +323,12 @@ channel_found = true; break; } - spin_lock_irqsave(&channel->lock, flags); list_for_each_entry(sc, &channel->sc_list, sc_list) { if (sc->target_cpu == cpu) { channel_found = true; break; } } - spin_unlock_irqrestore(&channel->lock, flags); if (channel_found) break; } diff -u linux-azure-5.4.0/drivers/hv/hv_balloon.c linux-azure-5.4.0/drivers/hv/hv_balloon.c --- linux-azure-5.4.0/drivers/hv/hv_balloon.c +++ linux-azure-5.4.0/drivers/hv/hv_balloon.c @@ -17,12 +17,14 @@ #include #include #include +#include #include #include #include #include #include +#include #include @@ -343,8 +345,6 @@ * * mem_range: Memory range to hot add. * - * On Linux we currently don't support this since we cannot hot add - * arbitrary granularity of memory. */ struct dm_hot_add { @@ -480,7 +480,7 @@ MODULE_PARM_DESC(pressure_report_delay, "Delay in secs in reporting pressure"); static atomic_t trans_id = ATOMIC_INIT(0); -static int dm_ring_size = (5 * PAGE_SIZE); +static int dm_ring_size = VMBUS_RING_SIZE(16 * 1024); /* * Driver specific state. @@ -496,10 +496,10 @@ }; -static __u8 recv_buffer[PAGE_SIZE]; -static __u8 balloon_up_send_buffer[PAGE_SIZE]; -#define PAGES_IN_2M 512 -#define HA_CHUNK (32 * 1024) +static __u8 recv_buffer[HV_HYP_PAGE_SIZE]; +static __u8 balloon_up_send_buffer[HV_HYP_PAGE_SIZE]; +#define PAGES_IN_2M (2 * 1024 * 1024 / PAGE_SIZE) +#define HA_CHUNK (128 * 1024 * 1024 / PAGE_SIZE) struct hv_dynmem_device { struct hv_device *dev; @@ -1083,7 +1083,7 @@ __u64 *max_page_count = (__u64 *)&info_hdr[1]; pr_info("Max. dynamic memory size: %llu MB\n", - (*max_page_count) >> (20 - PAGE_SHIFT)); + (*max_page_count) >> (20 - HV_HYP_PAGE_SHIFT)); } break; @@ -1137,6 +1137,7 @@ struct dm_status status; unsigned long now = jiffies; unsigned long last_post = last_post_time; + unsigned long num_pages_avail, num_pages_committed; if (pressure_report_delay > 0) { --pressure_report_delay; @@ -1161,16 +1162,21 @@ * num_pages_onlined) as committed to the host, otherwise it can try * asking us to balloon them out. */ - status.num_avail = si_mem_available(); - status.num_committed = vm_memory_committed() + + num_pages_avail = si_mem_available(); + num_pages_committed = vm_memory_committed() + dm->num_pages_ballooned + (dm->num_pages_added > dm->num_pages_onlined ? dm->num_pages_added - dm->num_pages_onlined : 0) + compute_balloon_floor(); - trace_balloon_status(status.num_avail, status.num_committed, + trace_balloon_status(num_pages_avail, num_pages_committed, vm_memory_committed(), dm->num_pages_ballooned, dm->num_pages_added, dm->num_pages_onlined); + + /* Convert numbers of pages into numbers of HV_HYP_PAGEs. */ + status.num_avail = num_pages_avail * NR_HV_HYP_PAGES_IN_PAGE; + status.num_committed = num_pages_committed * NR_HV_HYP_PAGES_IN_PAGE; + /* * If our transaction ID is no longer current, just don't * send the status. This can happen if we were interrupted @@ -1222,7 +1228,7 @@ for (i = 0; i < num_pages / alloc_unit; i++) { if (bl_resp->hdr.size + sizeof(union dm_mem_page_range) > - PAGE_SIZE) + HV_HYP_PAGE_SIZE) return i * alloc_unit; /* @@ -1275,9 +1281,9 @@ /* * We will attempt 2M allocations. However, if we fail to - * allocate 2M chunks, we will go back to 4k allocations. + * allocate 2M chunks, we will go back to PAGE_SIZE allocations. */ - alloc_unit = 512; + alloc_unit = PAGES_IN_2M; avail_pages = si_mem_available(); floor = compute_balloon_floor(); @@ -1292,7 +1298,7 @@ } while (!done) { - memset(balloon_up_send_buffer, 0, PAGE_SIZE); + memset(balloon_up_send_buffer, 0, HV_HYP_PAGE_SIZE); bl_resp = (struct dm_balloon_response *)balloon_up_send_buffer; bl_resp->hdr.type = DM_BALLOON_RESPONSE; bl_resp->hdr.size = sizeof(struct dm_balloon_response); @@ -1491,7 +1497,7 @@ memset(recv_buffer, 0, sizeof(recv_buffer)); vmbus_recvpacket(dev->channel, recv_buffer, - PAGE_SIZE, &recvlen, &requestid); + HV_HYP_PAGE_SIZE, &recvlen, &requestid); if (recvlen > 0) { dm_msg = (struct dm_message *)recv_buffer; @@ -1567,13 +1573,45 @@ break; default: - pr_warn("Unhandled message: type: %d\n", dm_hdr->type); + pr_warn_ratelimited("Unhandled message: type: %d\n", dm_hdr->type); } } } +static int ballooning_enabled(void) +{ + /* + * Disable ballooning if the page size is not 4k (HV_HYP_PAGE_SIZE), + * since currently it's unclear to us whether an unballoon request can + * make sure all page ranges are guest page size aligned. + */ + if (PAGE_SIZE != HV_HYP_PAGE_SIZE) { + pr_info("Ballooning disabled because page size is not 4096 bytes\n"); + return 0; + } + + return 1; +} + +static int hot_add_enabled(void) +{ + /* + * Disable hot add on ARM64, because we currently rely on + * memory_add_physaddr_to_nid() to get a node id of a hot add range, + * however ARM64's memory_add_physaddr_to_nid() always return 0 and + * DM_MEM_HOT_ADD_REQUEST doesn't have the NUMA node information for + * add_memory(). + */ + if (IS_ENABLED(CONFIG_ARM64)) { + pr_info("Memory hot add disabled on ARM64\n"); + return 0; + } + + return 1; +} + static int balloon_connect_vsp(struct hv_device *dev) { struct dm_version_request version_req; @@ -1638,8 +1676,8 @@ * currently still requires the bits to be set, so we have to add code * to fail the host's hot-add and balloon up/down requests, if any. */ - cap_msg.caps.cap_bits.balloon = 1; - cap_msg.caps.cap_bits.hot_add = 1; + cap_msg.caps.cap_bits.balloon = ballooning_enabled(); + cap_msg.caps.cap_bits.hot_add = hot_add_enabled(); /* * Specify our alignment requirements as it relates diff -u linux-azure-5.4.0/drivers/hv/hv_fcopy.c linux-azure-5.4.0/drivers/hv/hv_fcopy.c --- linux-azure-5.4.0/drivers/hv/hv_fcopy.c +++ linux-azure-5.4.0/drivers/hv/hv_fcopy.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "hyperv_vmbus.h" #include "hv_utils_transport.h" @@ -70,7 +71,7 @@ { /* Transaction is finished, reset the state here to avoid races. */ fcopy_transaction.state = HVUTIL_READY; - hv_fcopy_onchannelcallback(channel); + tasklet_schedule(&((struct vmbus_channel *)channel)->callback_event); } static void fcopy_timeout_func(struct work_struct *dummy) @@ -234,7 +235,7 @@ if (fcopy_transaction.state > HVUTIL_READY) return; - vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen, + vmbus_recvpacket(channel, recv_buffer, HV_HYP_PAGE_SIZE * 2, &recvlen, &requestid); if (recvlen <= 0) return; diff -u linux-azure-5.4.0/drivers/hv/hv_kvp.c linux-azure-5.4.0/drivers/hv/hv_kvp.c --- linux-azure-5.4.0/drivers/hv/hv_kvp.c +++ linux-azure-5.4.0/drivers/hv/hv_kvp.c @@ -27,6 +27,7 @@ #include #include #include +#include #include "hyperv_vmbus.h" #include "hv_utils_transport.h" @@ -661,7 +662,7 @@ if (kvp_transaction.state > HVUTIL_READY) return; - vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 4, &recvlen, + vmbus_recvpacket(channel, recv_buffer, HV_HYP_PAGE_SIZE * 4, &recvlen, &requestid); if (recvlen > 0) { diff -u linux-azure-5.4.0/drivers/hv/hv_snapshot.c linux-azure-5.4.0/drivers/hv/hv_snapshot.c --- linux-azure-5.4.0/drivers/hv/hv_snapshot.c +++ linux-azure-5.4.0/drivers/hv/hv_snapshot.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "hyperv_vmbus.h" #include "hv_utils_transport.h" @@ -79,7 +80,7 @@ { /* Transaction is finished, reset the state here to avoid races. */ vss_transaction.state = HVUTIL_READY; - hv_vss_onchannelcallback(channel); + tasklet_schedule(&((struct vmbus_channel *)channel)->callback_event); } /* @@ -297,7 +298,7 @@ if (vss_transaction.state > HVUTIL_READY) return; - vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen, + vmbus_recvpacket(channel, recv_buffer, HV_HYP_PAGE_SIZE * 2, &recvlen, &requestid); if (recvlen > 0) { diff -u linux-azure-5.4.0/drivers/hv/hv_util.c linux-azure-5.4.0/drivers/hv/hv_util.c --- linux-azure-5.4.0/drivers/hv/hv_util.c +++ linux-azure-5.4.0/drivers/hv/hv_util.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include "hyperv_vmbus.h" @@ -196,7 +195,7 @@ struct icmsg_hdr *icmsghdrp; vmbus_recvpacket(channel, shut_txf_buf, - PAGE_SIZE, &recvlen, &requestid); + HV_HYP_PAGE_SIZE, &recvlen, &requestid); if (recvlen > 0) { icmsghdrp = (struct icmsg_hdr *)&shut_txf_buf[ @@ -299,7 +298,7 @@ int ret = 0; spin_lock_irqsave(&host_ts.lock, flags); - reftime = hyperv_cs->read(hyperv_cs); + reftime = hv_read_reference_counter(); /* * We need to let the caller know that last update from host @@ -354,7 +353,7 @@ */ spin_lock_irqsave(&host_ts.lock, flags); - cur_reftime = hyperv_cs->read(hyperv_cs); + cur_reftime = hv_read_reference_counter(); host_ts.host_time = hosttime; host_ts.ref_time = cur_reftime; @@ -393,7 +392,7 @@ */ while (1) { int ret = vmbus_recvpacket(channel, time_txf_buf, - PAGE_SIZE, &recvlen, &requestid); + HV_HYP_PAGE_SIZE, &recvlen, &requestid); if (ret) { pr_warn_once("TimeSync IC pkt recv failed (Err: %d)\n", ret); @@ -431,7 +430,7 @@ sizeof(struct vmbuspipe_hdr) + sizeof(struct icmsg_hdr)]; adj_guesttime(timedatap->parenttime, - hyperv_cs->read(hyperv_cs), + hv_read_reference_counter(), timedatap->flags); } } @@ -462,7 +461,7 @@ while (1) { vmbus_recvpacket(channel, hbeat_txf_buf, - PAGE_SIZE, &recvlen, &requestid); + HV_HYP_PAGE_SIZE, &recvlen, &requestid); if (!recvlen) break; @@ -499,6 +498,9 @@ } } +#define HV_UTIL_RING_SEND_SIZE VMBUS_RING_SIZE(3 * HV_HYP_PAGE_SIZE) +#define HV_UTIL_RING_RECV_SIZE VMBUS_RING_SIZE(3 * HV_HYP_PAGE_SIZE) + static int util_probe(struct hv_device *dev, const struct hv_vmbus_device_id *dev_id) { @@ -506,7 +508,7 @@ (struct hv_util_service *)dev_id->driver_data; int ret; - srv->recv_buffer = kmalloc(PAGE_SIZE * 4, GFP_KERNEL); + srv->recv_buffer = kmalloc(HV_HYP_PAGE_SIZE * 4, GFP_KERNEL); if (!srv->recv_buffer) return -ENOMEM; srv->channel = dev->channel; @@ -529,8 +531,9 @@ hv_set_drvdata(dev, srv); - ret = vmbus_open(dev->channel, 4 * PAGE_SIZE, 4 * PAGE_SIZE, NULL, 0, - srv->util_cb, dev->channel); + ret = vmbus_open(dev->channel, HV_UTIL_RING_SEND_SIZE, + HV_UTIL_RING_RECV_SIZE, NULL, 0, srv->util_cb, + dev->channel); if (ret) goto error; @@ -588,8 +591,8 @@ return ret; } - ret = vmbus_open(dev->channel, 4 * HV_HYP_PAGE_SIZE, - 4 * HV_HYP_PAGE_SIZE, NULL, 0, srv->util_cb, + ret = vmbus_open(dev->channel, HV_UTIL_RING_SEND_SIZE, + HV_UTIL_RING_RECV_SIZE, NULL, 0, srv->util_cb, dev->channel); return ret; } @@ -677,7 +680,7 @@ static int hv_timesync_init(struct hv_util_service *srv) { /* TimeSync requires Hyper-V clocksource. */ - if (!hyperv_cs) + if (!hv_read_reference_counter) return -ENODEV; spin_lock_init(&host_ts.lock); @@ -691,8 +694,8 @@ */ hv_ptp_clock = ptp_clock_register(&ptp_hyperv_info, NULL); if (IS_ERR_OR_NULL(hv_ptp_clock)) { - pr_err("cannot register PTP clock: %ld\n", - PTR_ERR(hv_ptp_clock)); + pr_err("cannot register PTP clock: %d\n", + PTR_ERR_OR_ZERO(hv_ptp_clock)); hv_ptp_clock = NULL; } diff -u linux-azure-5.4.0/drivers/hv/hyperv_vmbus.h linux-azure-5.4.0/drivers/hv/hyperv_vmbus.h --- linux-azure-5.4.0/drivers/hv/hyperv_vmbus.h +++ linux-azure-5.4.0/drivers/hv/hyperv_vmbus.h @@ -13,6 +13,7 @@ #define _HYPERV_VMBUS_H #include +#include #include #include #include @@ -132,12 +133,6 @@ * basis. */ struct tasklet_struct msg_dpc; - - /* - * To optimize the mapping of relid to channel, maintain - * per-cpu list of the channels based on their CPU affinity. - */ - struct list_head chan_list; }; struct hv_context { @@ -202,6 +197,8 @@ /* TODO: Need to make this configurable */ #define MAX_NUM_CHANNELS_SUPPORTED 256 +#define MAX_CHANNEL_RELIDS \ + max(MAX_NUM_CHANNELS_SUPPORTED, HV_EVENT_FLAGS_COUNT) enum vmbus_connect_state { DISCONNECTED, @@ -251,6 +248,9 @@ struct list_head chn_list; struct mutex channel_mutex; + /* Array of channels */ + struct vmbus_channel **channels; + /* * An offer message is handled first on the work_queue, and then * is further handled on handle_primary_chan_wq or @@ -318,6 +318,7 @@ enum vmbus_channel_message_type message_type; enum vmbus_message_handler_type handler_type; void (*message_handler)(struct vmbus_channel_message_header *msg); + u32 min_payload_len; }; extern const struct vmbus_channel_message_table_entry @@ -337,6 +338,9 @@ void vmbus_remove_channel_attr_group(struct vmbus_channel *channel); +void vmbus_channel_map_relid(struct vmbus_channel *channel); +void vmbus_channel_unmap_relid(struct vmbus_channel *channel); + struct vmbus_channel *relid2channel(u32 relid); void vmbus_free_channels(void); @@ -375,12 +379,7 @@ { if (!channel) return; - - if (in_interrupt() && (channel->target_cpu == smp_processor_id())) { - cb(channel); - return; - } - smp_call_function_single(channel->target_cpu, cb, channel, true); + cb(channel); } enum hvutil_device_state { @@ -394,2 +393,50 @@ +extern const struct vmbus_device vmbus_devs[]; + +static inline bool hv_is_perf_channel(struct vmbus_channel *channel) +{ + return vmbus_devs[channel->device_id].perf_device; +} + +static inline bool hv_is_alloced_cpu(unsigned int cpu) +{ + struct vmbus_channel *channel, *sc; + + lockdep_assert_held(&vmbus_connection.channel_mutex); + /* + * List additions/deletions as well as updates of the target CPUs are + * protected by channel_mutex. + */ + list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { + if (!hv_is_perf_channel(channel)) + continue; + if (channel->target_cpu == cpu) + return true; + list_for_each_entry(sc, &channel->sc_list, sc_list) { + if (sc->target_cpu == cpu) + return true; + } + } + return false; +} + +static inline void hv_set_alloced_cpu(unsigned int cpu) +{ + cpumask_set_cpu(cpu, &hv_context.hv_numa_map[cpu_to_node(cpu)]); +} + +static inline void hv_clear_alloced_cpu(unsigned int cpu) +{ + if (hv_is_alloced_cpu(cpu)) + return; + cpumask_clear_cpu(cpu, &hv_context.hv_numa_map[cpu_to_node(cpu)]); +} + +static inline void hv_update_alloced_cpus(unsigned int old_cpu, + unsigned int new_cpu) +{ + hv_set_alloced_cpu(new_cpu); + hv_clear_alloced_cpu(old_cpu); +} + #endif /* _HYPERV_VMBUS_H */ diff -u linux-azure-5.4.0/drivers/hv/vmbus_drv.c linux-azure-5.4.0/drivers/hv/vmbus_drv.c --- linux-azure-5.4.0/drivers/hv/vmbus_drv.c +++ linux-azure-5.4.0/drivers/hv/vmbus_drv.c @@ -23,7 +23,6 @@ #include #include -#include #include #include #include @@ -49,6 +48,12 @@ static void *hv_panic_page; +static long __percpu *vmbus_evt; + +/* Values parsed from ACPI DSDT */ +int vmbus_irq; +int vmbus_interrupt; + /* * Boolean to control whether to report panic messages over Hyper-V. * @@ -241,7 +246,7 @@ if (!hv_dev->channel) return -ENODEV; - return sprintf(buf, "%d\n", hv_dev->channel->numa_node); + return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu)); } static DEVICE_ATTR_RO(numa_node); #endif @@ -522,18 +527,17 @@ { struct hv_device *hv_dev = device_to_hv_device(dev); struct vmbus_channel *channel = hv_dev->channel, *cur_sc; - unsigned long flags; int buf_size = PAGE_SIZE, n_written, tot_written; struct list_head *cur; if (!channel) return -ENODEV; + mutex_lock(&vmbus_connection.channel_mutex); + tot_written = snprintf(buf, buf_size, "%u:%u\n", channel->offermsg.child_relid, channel->target_cpu); - spin_lock_irqsave(&channel->lock, flags); - list_for_each(cur, &channel->sc_list) { if (tot_written >= buf_size - 1) break; @@ -547,7 +551,7 @@ tot_written += n_written; } - spin_unlock_irqrestore(&channel->lock, flags); + mutex_unlock(&vmbus_connection.channel_mutex); return tot_written; } @@ -908,6 +912,21 @@ } /* + * vmbus_dma_configure -- Configure DMA coherence for VMbus device + */ +static int vmbus_dma_configure(struct device *child_device) +{ + /* + * On ARM64, propagate the DMA coherence setting from the top level + * VMbus ACPI device to the child VMbus device being added here. + * On x86/x64 coherence is assumed and these calls have no effect. + */ + hv_setup_dma_ops(child_device, + device_get_dma_attr(&hv_acpi_dev->dev) == DEV_DMA_COHERENT); + return 0; +} + +/* * vmbus_remove - Remove a vmbus device */ static int vmbus_remove(struct device *child_device) @@ -1028,6 +1047,7 @@ .remove = vmbus_remove, .probe = vmbus_probe, .uevent = vmbus_uevent, + .dma_configure = vmbus_dma_configure, .dev_groups = vmbus_dev_groups, .drv_groups = vmbus_drv_groups, .pm = &vmbus_pm, @@ -1035,7 +1055,10 @@ struct onmessage_work_context { struct work_struct work; - struct hv_message msg; + struct { + struct hv_message_header header; + u8 payload[]; + } msg; }; static void vmbus_onmessage_work(struct work_struct *work) @@ -1048,7 +1071,8 @@ ctx = container_of(work, struct onmessage_work_context, work); - vmbus_onmessage(&ctx->msg); + vmbus_onmessage((struct vmbus_channel_message_header *) + &ctx->msg.payload); kfree(ctx); } @@ -1063,6 +1087,13 @@ struct onmessage_work_context *ctx; u32 message_type = msg->header.message_type; + /* + * 'enum vmbus_channel_message_type' is supposed to always be 'u32' as + * it is being used in 'struct vmbus_channel_message_header' definition + * which is supposed to match hypervisor ABI. + */ + BUILD_BUG_ON(sizeof(enum vmbus_channel_message_type) != sizeof(u32)); + if (message_type == HVMSG_NONE) /* no msg */ return; @@ -1076,24 +1107,39 @@ goto msg_handled; } + if (msg->header.payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT) { + WARN_ONCE(1, "payload size is too large (%d)\n", + msg->header.payload_size); + goto msg_handled; + } + entry = &channel_message_table[hdr->msgtype]; if (!entry->message_handler) goto msg_handled; + if (msg->header.payload_size < entry->min_payload_len) { + WARN_ONCE(1, "message too short: msgtype=%d len=%d\n", + hdr->msgtype, msg->header.payload_size); + goto msg_handled; + } + if (entry->handler_type == VMHT_BLOCKING) { - ctx = kmalloc(sizeof(*ctx), GFP_ATOMIC); + ctx = kmalloc(sizeof(*ctx) + msg->header.payload_size, + GFP_ATOMIC); if (ctx == NULL) return; INIT_WORK(&ctx->work, vmbus_onmessage_work); - memcpy(&ctx->msg, msg, sizeof(*msg)); + memcpy(&ctx->msg, msg, sizeof(msg->header) + + msg->header.payload_size); /* * The host can generate a rescind message while we * may still be handling the original offer. We deal with - * this condition by ensuring the processing is done on the - * same CPU. + * this condition by relying on the synchronization provided + * by offer_in_progress and by channel_mutex. See also the + * inline comments in vmbus_onoffer_rescind(). */ switch (hdr->msgtype) { case CHANNELMSG_RESCIND_CHANNELOFFER: @@ -1115,16 +1161,34 @@ * work queue: the RESCIND handler can not start to * run before the OFFER handler finishes. */ - schedule_work_on(VMBUS_CONNECT_CPU, - &ctx->work); + schedule_work(&ctx->work); break; case CHANNELMSG_OFFERCHANNEL: + /* + * The host sends the offer message of a given channel + * before sending the rescind message of the same + * channel. These messages are sent to the guest's + * connect CPU; the guest then starts processing them + * in the tasklet handler on this CPU: + * + * VMBUS_CONNECT_CPU + * + * [vmbus_on_msg_dpc()] + * atomic_inc() // CHANNELMSG_OFFERCHANNEL + * queue_work() + * ... + * [vmbus_on_msg_dpc()] + * schedule_work() // CHANNELMSG_RESCIND_CHANNELOFFER + * + * We rely on the memory-ordering properties of the + * queue_work() and schedule_work() primitives, which + * guarantee that the atomic increment will be visible + * to the CPUs which will execute the offer & rescind + * works by the time these works will start execution. + */ atomic_inc(&vmbus_connection.offer_in_progress); - queue_work_on(VMBUS_CONNECT_CPU, - vmbus_connection.work_queue, - &ctx->work); - break; + fallthrough; default: queue_work(vmbus_connection.work_queue, &ctx->work); @@ -1149,10 +1213,11 @@ WARN_ON(!is_hvsock_channel(channel)); /* - * sizeof(*ctx) is small and the allocation should really not fail, + * Allocation size is small and the allocation should really not fail, * otherwise the state of the hv_sock connections ends up in limbo. */ - ctx = kzalloc(sizeof(*ctx), GFP_KERNEL | __GFP_NOFAIL); + ctx = kzalloc(sizeof(*ctx) + sizeof(*rescind), + GFP_KERNEL | __GFP_NOFAIL); /* * So far, these are not really used by Linux. Just set them to the @@ -1162,31 +1227,17 @@ ctx->msg.header.payload_size = sizeof(*rescind); /* These values are actually used by Linux. */ - rescind = (struct vmbus_channel_rescind_offer *)ctx->msg.u.payload; + rescind = (struct vmbus_channel_rescind_offer *)ctx->msg.payload; rescind->header.msgtype = CHANNELMSG_RESCIND_CHANNELOFFER; rescind->child_relid = channel->offermsg.child_relid; INIT_WORK(&ctx->work, vmbus_onmessage_work); - queue_work_on(VMBUS_CONNECT_CPU, - vmbus_connection.work_queue, - &ctx->work); + queue_work(vmbus_connection.work_queue, &ctx->work); } #endif /* CONFIG_PM_SLEEP */ /* - * Direct callback for channels using other deferred processing - */ -static void vmbus_channel_isr(struct vmbus_channel *channel) -{ - void (*callback_fn)(void *); - - callback_fn = READ_ONCE(channel->onchannel_callback); - if (likely(callback_fn != NULL)) - (*callback_fn)(channel->channel_callback_context); -} - -/* * Schedule all channels with events pending */ static void vmbus_chan_sched(struct hv_per_cpu_context *hv_cpu) @@ -1216,6 +1267,7 @@ return; for_each_set_bit(relid, recv_int_page, maxbits) { + void (*callback_fn)(void *context); struct vmbus_channel *channel; if (!sync_test_and_clear_bit(relid, recv_int_page)) @@ -1225,33 +1277,54 @@ if (relid == 0) continue; + /* + * Pairs with the kfree_rcu() in vmbus_chan_release(). + * Guarantees that the channel data structure doesn't + * get freed while the channel pointer below is being + * dereferenced. + */ rcu_read_lock(); /* Find channel based on relid */ - list_for_each_entry_rcu(channel, &hv_cpu->chan_list, percpu_list) { - if (channel->offermsg.child_relid != relid) - continue; + channel = relid2channel(relid); + if (channel == NULL) + goto sched_unlock_rcu; - if (channel->rescind) - continue; + if (channel->rescind) + goto sched_unlock_rcu; + + /* + * Make sure that the ring buffer data structure doesn't get + * freed while we dereference the ring buffer pointer. Test + * for the channel's onchannel_callback being NULL within a + * sched_lock critical section. See also the inline comments + * in vmbus_reset_channel_cb(). + */ + spin_lock(&channel->sched_lock); + + callback_fn = channel->onchannel_callback; + if (unlikely(callback_fn == NULL)) + goto sched_unlock; - trace_vmbus_chan_sched(channel); + trace_vmbus_chan_sched(channel); - ++channel->interrupts; + ++channel->interrupts; - switch (channel->callback_mode) { - case HV_CALL_ISR: - vmbus_channel_isr(channel); - break; - - case HV_CALL_BATCHED: - hv_begin_read(&channel->inbound); - /* fallthrough */ - case HV_CALL_DIRECT: - tasklet_schedule(&channel->callback_event); - } + switch (channel->callback_mode) { + case HV_CALL_ISR: + (*callback_fn)(channel->channel_callback_context); + break; + + case HV_CALL_BATCHED: + hv_begin_read(&channel->inbound); + fallthrough; + case HV_CALL_DIRECT: + tasklet_schedule(&channel->callback_event); } +sched_unlock: + spin_unlock(&channel->sched_lock); +sched_unlock_rcu: rcu_read_unlock(); } } @@ -1307,7 +1380,13 @@ tasklet_schedule(&hv_cpu->msg_dpc); } - add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0); + add_interrupt_randomness(vmbus_interrupt); +} + +static irqreturn_t vmbus_percpu_isr(int irq, void *dev_id) +{ + vmbus_isr(); + return IRQ_HANDLED; } /* @@ -1318,28 +1397,60 @@ enum kmsg_dump_reason reason) { size_t bytes_written; - phys_addr_t panic_pa; /* We are only interested in panics. */ if ((reason != KMSG_DUMP_PANIC) || (!sysctl_record_panic_msg)) return; - panic_pa = virt_to_phys(hv_panic_page); - /* * Write dump contents to the page. No need to synchronize; panic should * be single-threaded. */ - kmsg_dump_get_buffer(dumper, true, hv_panic_page, PAGE_SIZE, + kmsg_dump_get_buffer(dumper, true, hv_panic_page, HV_HYP_PAGE_SIZE, &bytes_written); - if (bytes_written) - hyperv_report_panic_msg(panic_pa, bytes_written); + if (!bytes_written) + return; + /* + * P3 to contain the physical address of the panic page & P4 to + * contain the size of the panic data in that page. Rest of the + * registers are no-op when the NOTIFY_MSG flag is set. + */ + hv_set_register(HV_REGISTER_CRASH_P0, 0); + hv_set_register(HV_REGISTER_CRASH_P1, 0); + hv_set_register(HV_REGISTER_CRASH_P2, 0); + hv_set_register(HV_REGISTER_CRASH_P3, virt_to_phys(hv_panic_page)); + hv_set_register(HV_REGISTER_CRASH_P4, bytes_written); + + /* + * Let Hyper-V know there is crash data available along with + * the panic message. + */ + hv_set_register(HV_REGISTER_CRASH_CTL, + (HV_CRASH_CTL_CRASH_NOTIFY | HV_CRASH_CTL_CRASH_NOTIFY_MSG)); } static struct kmsg_dumper hv_kmsg_dumper = { .dump = hv_kmsg_dump, }; +static void hv_kmsg_dump_register(void) +{ + int ret; + + hv_panic_page = hv_alloc_hyperv_zeroed_page(); + if (!hv_panic_page) { + pr_err("Hyper-V: panic message page memory allocation failed\n"); + return; + } + + ret = kmsg_dump_register(&hv_kmsg_dumper); + if (ret) { + pr_err("Hyper-V: kmsg dump register error 0x%x\n", ret); + hv_free_hyperv_page((unsigned long)hv_panic_page); + hv_panic_page = NULL; + } +} + static struct ctl_table_header *hv_ctl_table_hdr; /* @@ -1391,7 +1502,28 @@ if (ret) return ret; - hv_setup_vmbus_irq(vmbus_isr); + /* + * VMbus interrupts are best modeled as per-cpu interrupts. If + * on an architecture with support for per-cpu IRQs (e.g. ARM64), + * allocate a per-cpu IRQ using standard Linux kernel functionality. + * If not on such an architecture (e.g., x86/x64), then rely on + * code in the arch-specific portion of the code tree to connect + * the VMbus interrupt handler. + */ + + if (vmbus_irq == -1) { + hv_setup_vmbus_handler(vmbus_isr); + } else { + vmbus_evt = alloc_percpu(long); + ret = request_percpu_irq(vmbus_irq, vmbus_percpu_isr, + "Hyper-V VMbus", vmbus_evt); + if (ret) { + pr_err("Can't request Hyper-V VMbus IRQ %d, Err %d", + vmbus_irq, ret); + free_percpu(vmbus_evt); + goto err_setup; + } + } ret = hv_synic_alloc(); if (ret) @@ -1428,22 +1560,9 @@ * Register for panic kmsg callback only if the right * capability is supported by the hypervisor. */ - hv_get_crash_ctl(hyperv_crash_ctl); - if (hyperv_crash_ctl & HV_CRASH_CTL_CRASH_NOTIFY_MSG) { - hv_panic_page = (void *)get_zeroed_page(GFP_KERNEL); - if (hv_panic_page) { - ret = kmsg_dump_register(&hv_kmsg_dumper); - if (ret) { - pr_err("Hyper-V: kmsg dump register " - "error 0x%x\n", ret); - hv_free_hyperv_page( - (unsigned long)hv_panic_page); - hv_panic_page = NULL; - } - } else - pr_err("Hyper-V: panic message page memory " - "allocation failed"); - } + hyperv_crash_ctl = hv_get_register(HV_REGISTER_CRASH_CTL); + if (hyperv_crash_ctl & HV_CRASH_CTL_CRASH_NOTIFY_MSG) + hv_kmsg_dump_register(); register_die_notifier(&hyperv_die_block); } @@ -1465,8 +1584,13 @@ err_cpuhp: hv_synic_free(); err_alloc: - hv_remove_vmbus_irq(); - + if (vmbus_irq == -1) { + hv_remove_vmbus_handler(); + } else { + free_percpu_irq(vmbus_irq, vmbus_evt); + free_percpu(vmbus_evt); + } +err_setup: bus_unregister(&hv_bus); unregister_sysctl_table(hv_ctl_table_hdr); hv_ctl_table_hdr = NULL; @@ -1569,8 +1693,24 @@ return attribute->show(chan, buf); } +static ssize_t vmbus_chan_attr_store(struct kobject *kobj, + struct attribute *attr, const char *buf, + size_t count) +{ + const struct vmbus_chan_attribute *attribute + = container_of(attr, struct vmbus_chan_attribute, attr); + struct vmbus_channel *chan + = container_of(kobj, struct vmbus_channel, kobj); + + if (!attribute->store) + return -EIO; + + return attribute->store(chan, buf, count); +} + static const struct sysfs_ops vmbus_chan_sysfs_ops = { .show = vmbus_chan_attr_show, + .store = vmbus_chan_attr_store, }; static ssize_t out_mask_show(struct vmbus_channel *channel, char *buf) @@ -1641,11 +1781,108 @@ } static VMBUS_CHAN_ATTR_RO(write_avail); -static ssize_t show_target_cpu(struct vmbus_channel *channel, char *buf) +static ssize_t target_cpu_show(struct vmbus_channel *channel, char *buf) { return sprintf(buf, "%u\n", channel->target_cpu); } -static VMBUS_CHAN_ATTR(cpu, S_IRUGO, show_target_cpu, NULL); +static ssize_t target_cpu_store(struct vmbus_channel *channel, + const char *buf, size_t count) +{ + u32 target_cpu, origin_cpu; + ssize_t ret = count; + + if (vmbus_proto_version < VERSION_WIN10_V4_1) + return -EIO; + + if (sscanf(buf, "%uu", &target_cpu) != 1) + return -EIO; + + /* Validate target_cpu for the cpumask_test_cpu() operation below. */ + if (target_cpu >= nr_cpumask_bits) + return -EINVAL; + + /* No CPUs should come up or down during this. */ + cpus_read_lock(); + + if (!cpu_online(target_cpu)) { + cpus_read_unlock(); + return -EINVAL; + } + + /* + * Synchronizes target_cpu_store() and channel closure: + * + * { Initially: state = CHANNEL_OPENED } + * + * CPU1 CPU2 + * + * [target_cpu_store()] [vmbus_disconnect_ring()] + * + * LOCK channel_mutex LOCK channel_mutex + * LOAD r1 = state LOAD r2 = state + * IF (r1 == CHANNEL_OPENED) IF (r2 == CHANNEL_OPENED) + * SEND MODIFYCHANNEL STORE state = CHANNEL_OPEN + * [...] SEND CLOSECHANNEL + * UNLOCK channel_mutex UNLOCK channel_mutex + * + * Forbids: r1 == r2 == CHANNEL_OPENED (i.e., CPU1's LOCK precedes + * CPU2's LOCK) && CPU2's SEND precedes CPU1's SEND + * + * Note. The host processes the channel messages "sequentially", in + * the order in which they are received on a per-partition basis. + */ + mutex_lock(&vmbus_connection.channel_mutex); + + /* + * Hyper-V will ignore MODIFYCHANNEL messages for "non-open" channels; + * avoid sending the message and fail here for such channels. + */ + if (channel->state != CHANNEL_OPENED_STATE) { + ret = -EIO; + goto cpu_store_unlock; + } + + origin_cpu = channel->target_cpu; + if (target_cpu == origin_cpu) + goto cpu_store_unlock; + + if (vmbus_send_modifychannel(channel->offermsg.child_relid, + hv_cpu_number_to_vp_number(target_cpu))) { + ret = -EIO; + goto cpu_store_unlock; + } + + /* + * Warning. At this point, there is *no* guarantee that the host will + * have successfully processed the vmbus_send_modifychannel() request. + * See the header comment of vmbus_send_modifychannel() for more info. + * + * Lags in the processing of the above vmbus_send_modifychannel() can + * result in missed interrupts if the "old" target CPU is taken offline + * before Hyper-V starts sending interrupts to the "new" target CPU. + * But apart from this offlining scenario, the code tolerates such + * lags. It will function correctly even if a channel interrupt comes + * in on a CPU that is different from the channel target_cpu value. + */ + + channel->target_cpu = target_cpu; + + /* See init_vp_index(). */ + if (hv_is_perf_channel(channel)) + hv_update_alloced_cpus(origin_cpu, target_cpu); + + /* Currently set only for storvsc channels. */ + if (channel->change_target_cpu_callback) { + (*channel->change_target_cpu_callback)(channel, + origin_cpu, target_cpu); + } + +cpu_store_unlock: + mutex_unlock(&vmbus_connection.channel_mutex); + cpus_read_unlock(); + return ret; +} +static VMBUS_CHAN_ATTR(cpu, 0644, target_cpu_show, target_cpu_store); static ssize_t channel_pending_show(struct vmbus_channel *channel, char *buf) @@ -1786,8 +2023,10 @@ kobj->kset = dev->channels_kset; ret = kobject_init_and_add(kobj, &vmbus_chan_ktype, NULL, "%u", relid); - if (ret) + if (ret) { + kobject_put(kobj); return ret; + } ret = sysfs_create_group(kobj, &vmbus_chan_group); @@ -1796,6 +2035,7 @@ * The calling functions' error handling paths will cleanup the * empty channel directory. */ + kobject_put(kobj); dev_err(device, "Unable to set up channel sysfs files\n"); return ret; } @@ -1917,6 +2157,7 @@ struct resource *new_res; struct resource **old_res = &hyperv_mmio; struct resource **prev_res = NULL; + struct resource r; switch (res->type) { @@ -1935,6 +2176,23 @@ end = res->data.address64.address.maximum; break; + /* + * The IRQ information is needed only on ARM64, which Hyper-V + * sets up in the extended format. IRQ information is present + * on x86/x64 in the non-extended format but it is not used by + * Linux. So don't bother checking for the non-extended format. + */ + case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: + if (!acpi_dev_resource_interrupt(res, 0, &r)) { + pr_err("Unable to parse Hyper-V ACPI interrupt\n"); + return AE_ERROR; + } + /* ARM64 INTID for VMbus */ + vmbus_interrupt = res->data.extended_irq.interrupts[0]; + /* Linux IRQ number */ + vmbus_irq = r.start; + return AE_OK; + default: /* Unused resource type */ return AE_OK; @@ -2071,7 +2329,7 @@ bool fb_overlap_ok) { struct resource *iter, *shadow; - resource_size_t range_min, range_max, start; + resource_size_t range_min, range_max, start, end; const char *dev_n = dev_name(&device_obj->device); int retval; @@ -2106,6 +2364,14 @@ range_max = iter->end; start = (range_min + align - 1) & ~(align - 1); for (; start + size - 1 <= range_max; start += align) { + end = start + size - 1; + + /* Skip the whole fb_mmio region if not fb_overlap_ok */ + if (!fb_overlap_ok && fb_mmio && + (((start >= fb_mmio->start) && (start <= fb_mmio->end)) || + ((end >= fb_mmio->start) && (end <= fb_mmio->end)))) + continue; + shadow = __request_region(iter, start, size, NULL, IORESOURCE_BUSY); if (!shadow) @@ -2161,6 +2427,21 @@ hv_acpi_dev = device; + /* + * Older versions of Hyper-V for ARM64 fail to include the _CCA + * method on the top level VMbus device in the DSDT. But devices + * are hardware coherent in all current Hyper-V use cases, so fix + * up the ACPI device to behave as if _CCA is present and indicates + * hardware coherence. + */ + ACPI_COMPANION_SET(&device->dev, device); + if (IS_ENABLED(CONFIG_ACPI_CCA_REQUIRED) && + device_get_dma_attr(&device->dev) == DEV_DMA_NOT_SUPPORTED) { + pr_info("No ACPI _CCA found; assuming coherent device I/O\n"); + device->flags.cca_seen = true; + device->flags.coherent_dma = true; + } + result = acpi_walk_resources(device->handle, METHOD_NAME__CRS, vmbus_walk_resources, NULL); @@ -2194,7 +2475,6 @@ static int vmbus_bus_suspend(struct device *dev) { struct vmbus_channel *channel, *sc; - unsigned long flags; while (atomic_read(&vmbus_connection.offer_in_progress) != 0) { /* @@ -2239,9 +2519,12 @@ list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { /* - * Invalidate the field. Upon resume, vmbus_onoffer() will fix - * up the field, and the other fields (if necessary). + * Remove the channel from the array of channels and invalidate + * the channel's relid. Upon resume, vmbus_onoffer() will fix + * up the relid (and other fields, if necessary) and add the + * channel back to the array. */ + vmbus_channel_unmap_relid(channel); channel->offermsg.child_relid = INVALID_RELID; if (is_hvsock_channel(channel)) { @@ -2252,12 +2535,10 @@ continue; } - spin_lock_irqsave(&channel->lock, flags); list_for_each_entry(sc, &channel->sc_list, sc_list) { pr_err("Sub-channel not deleted!\n"); WARN_ON_ONCE(1); } - spin_unlock_irqrestore(&channel->lock, flags); atomic_inc(&vmbus_connection.nr_chan_fixup_on_resume); } @@ -2282,8 +2563,7 @@ * We only use the 'vmbus_proto_version', which was in use before * hibernation, to re-negotiate with the host. */ - if (vmbus_proto_version == VERSION_INVAL || - vmbus_proto_version == 0) { + if (!vmbus_proto_version) { pr_err("Invalid proto version = 0x%x\n", vmbus_proto_version); return -EINVAL; } @@ -2452,6 +2732,17 @@ goto cleanup; } + /* + * If we're on an architecture with a hardcoded hypervisor + * vector (i.e. x86/x64), override the VMbus interrupt found + * in the ACPI tables. Ensure vmbus_irq is not set since the + * normal Linux IRQ mechanism is not used in this case. + */ +#ifdef HYPERVISOR_CALLBACK_VECTOR + vmbus_interrupt = HYPERVISOR_CALLBACK_VECTOR; + vmbus_irq = -1; +#endif + ret = vmbus_bus_init(); if (ret) goto cleanup; @@ -2480,7 +2771,12 @@ vmbus_connection.conn_state = DISCONNECTED; hv_stimer_global_cleanup(); vmbus_disconnect(); - hv_remove_vmbus_irq(); + if (vmbus_irq == -1) { + hv_remove_vmbus_handler(); + } else { + free_percpu_irq(vmbus_irq, vmbus_evt); + free_percpu(vmbus_evt); + } for_each_online_cpu(cpu) { struct hv_per_cpu_context *hv_cpu = per_cpu_ptr(hv_context.cpu_context, cpu); @@ -2488,14 +2784,20 @@ tasklet_kill(&hv_cpu->msg_dpc); } vmbus_free_channels(); + kfree(vmbus_connection.channels); if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) { kmsg_dump_unregister(&hv_kmsg_dumper); unregister_die_notifier(&hyperv_die_block); - atomic_notifier_chain_unregister(&panic_notifier_list, - &hyperv_panic_block); } + /* + * The panic notifier is always registered, hence we should + * also unconditionally unregister it here as well. + */ + atomic_notifier_chain_unregister(&panic_notifier_list, + &hyperv_panic_block); + free_page((unsigned long)hv_panic_page); unregister_sysctl_table(hv_ctl_table_hdr); hv_ctl_table_hdr = NULL; diff -u linux-azure-5.4.0/drivers/hwmon/Kconfig linux-azure-5.4.0/drivers/hwmon/Kconfig --- linux-azure-5.4.0/drivers/hwmon/Kconfig +++ linux-azure-5.4.0/drivers/hwmon/Kconfig @@ -802,7 +802,7 @@ config SENSORS_LTQ_CPUTEMP bool "Lantiq cpu temperature sensor driver" - depends on LANTIQ + depends on SOC_XWAY help If you say yes here you get support for the temperature sensor inside your CPU. @@ -1132,10 +1132,11 @@ help If you say yes here you get support for National Semiconductor LM90, LM86, LM89 and LM99, Analog Devices ADM1032, ADT7461, and ADT7461A, - Maxim MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659, - MAX6680, MAX6681, MAX6692, MAX6695, MAX6696, ON Semiconductor NCT1008, - Winbond/Nuvoton W83L771W/G/AWG/ASG, Philips SA56004, GMT G781, and - Texas Instruments TMP451 sensor chips. + Maxim MAX6646, MAX6647, MAX6648, MAX6649, MAX6654, MAX6657, MAX6658, + MAX6659, MAX6680, MAX6681, MAX6692, MAX6695, MAX6696, + ON Semiconductor NCT1008, Winbond/Nuvoton W83L771W/G/AWG/ASG, + Philips SA56004, GMT G781, Texas Instruments TMP451 and TMP461 + sensor chips. This driver can also be built as a module. If so, the module will be called lm90. diff -u linux-azure-5.4.0/drivers/hwmon/hwmon.c linux-azure-5.4.0/drivers/hwmon/hwmon.c --- linux-azure-5.4.0/drivers/hwmon/hwmon.c +++ linux-azure-5.4.0/drivers/hwmon/hwmon.c @@ -645,8 +645,10 @@ dev_set_drvdata(hdev, drvdata); dev_set_name(hdev, HWMON_ID_FORMAT, id); err = device_register(hdev); - if (err) - goto free_hwmon; + if (err) { + put_device(hdev); + goto ida_remove; + } if (dev && dev->of_node && chip && chip->ops->read && chip->info[0]->type == hwmon_chip && diff -u linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-etm4x-sysfs.c linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-etm4x-sysfs.c --- linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-etm4x-sysfs.c +++ linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-etm4x-sysfs.c @@ -364,8 +364,12 @@ mode = ETM_MODE_QELEM(config->mode); /* start by clearing QE bits */ config->cfg &= ~(BIT(13) | BIT(14)); - /* if supported, Q elements with instruction counts are enabled */ - if ((mode & BIT(0)) && (drvdata->q_support & BIT(0))) + /* + * if supported, Q elements with instruction counts are enabled. + * Always set the low bit for any requested mode. Valid combos are + * 0b00, 0b01 and 0b11. + */ + if (mode && drvdata->q_support) config->cfg |= BIT(13); /* * if supported, Q elements with and without instruction diff -u linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-tmc-etf.c linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-tmc-etf.c --- linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-tmc-etf.c +++ linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-tmc-etf.c @@ -528,7 +528,7 @@ buf_ptr = buf->data_pages[cur] + offset; *buf_ptr = readl_relaxed(drvdata->base + TMC_RRD); - if (lost && *barrier) { + if (lost && i < CORESIGHT_BARRIER_PKT_SIZE) { *buf_ptr = *barrier; barrier++; } diff -u linux-azure-5.4.0/drivers/hwtracing/coresight/coresight.c linux-azure-5.4.0/drivers/hwtracing/coresight/coresight.c --- linux-azure-5.4.0/drivers/hwtracing/coresight/coresight.c +++ linux-azure-5.4.0/drivers/hwtracing/coresight/coresight.c @@ -1073,6 +1073,7 @@ * platform data. */ fwnode_handle_put(conn->child_fwnode); + conn->child_fwnode = NULL; /* No need to continue */ break; } diff -u linux-azure-5.4.0/drivers/hwtracing/intel_th/core.c linux-azure-5.4.0/drivers/hwtracing/intel_th/core.c --- linux-azure-5.4.0/drivers/hwtracing/intel_th/core.c +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/core.c @@ -215,6 +215,22 @@ static DEVICE_ATTR_RO(port); +static void intel_th_trace_prepare(struct intel_th_device *thdev) +{ + struct intel_th_device *hub = to_intel_th_hub(thdev); + struct intel_th_driver *hubdrv = to_intel_th_driver(hub->dev.driver); + + if (hub->type != INTEL_TH_SWITCH) + return; + + if (thdev->type != INTEL_TH_OUTPUT) + return; + + pm_runtime_get_sync(&thdev->dev); + hubdrv->prepare(hub, &thdev->output); + pm_runtime_put(&thdev->dev); +} + static int intel_th_output_activate(struct intel_th_device *thdev) { struct intel_th_driver *thdrv = @@ -235,6 +251,7 @@ if (ret) goto fail_put; + intel_th_trace_prepare(thdev); if (thdrv->activate) ret = thdrv->activate(thdev); else diff -u linux-azure-5.4.0/drivers/hwtracing/intel_th/gth.c linux-azure-5.4.0/drivers/hwtracing/intel_th/gth.c --- linux-azure-5.4.0/drivers/hwtracing/intel_th/gth.c +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/gth.c @@ -564,6 +564,21 @@ iowrite32(reg, gth->base + REG_TSCU_TSUCTRL); } +static void intel_th_gth_prepare(struct intel_th_device *thdev, + struct intel_th_output *output) +{ + struct gth_device *gth = dev_get_drvdata(&thdev->dev); + int count; + + /* + * Wait until the output port is in reset before we start + * programming it. + */ + for (count = GTH_PLE_WAITLOOP_DEPTH; + count && !(gth_output_get(gth, output->port) & BIT(5)); count--) + cpu_relax(); +} + /** * intel_th_gth_enable() - enable tracing to an output device * @thdev: GTH device @@ -815,6 +830,7 @@ .assign = intel_th_gth_assign, .unassign = intel_th_gth_unassign, .set_output = intel_th_gth_set_output, + .prepare = intel_th_gth_prepare, .enable = intel_th_gth_enable, .trig_switch = intel_th_gth_switch, .disable = intel_th_gth_disable, diff -u linux-azure-5.4.0/drivers/hwtracing/intel_th/intel_th.h linux-azure-5.4.0/drivers/hwtracing/intel_th/intel_th.h --- linux-azure-5.4.0/drivers/hwtracing/intel_th/intel_th.h +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/intel_th.h @@ -143,6 +143,7 @@ * @remove: remove method * @assign: match a given output type device against available outputs * @unassign: deassociate an output type device from an output port + * @prepare: prepare output port for tracing * @enable: enable tracing for a given output device * @disable: disable tracing for a given output device * @irq: interrupt callback @@ -164,6 +165,8 @@ struct intel_th_device *othdev); void (*unassign)(struct intel_th_device *thdev, struct intel_th_device *othdev); + void (*prepare)(struct intel_th_device *thdev, + struct intel_th_output *output); void (*enable)(struct intel_th_device *thdev, struct intel_th_output *output); void (*trig_switch)(struct intel_th_device *thdev, diff -u linux-azure-5.4.0/drivers/hwtracing/intel_th/msu.c linux-azure-5.4.0/drivers/hwtracing/intel_th/msu.c --- linux-azure-5.4.0/drivers/hwtracing/intel_th/msu.c +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/msu.c @@ -1050,6 +1050,16 @@ static inline void msc_buffer_set_wb(struct msc_window *win) {} #endif /* CONFIG_X86 */ +static struct page *msc_sg_page(struct scatterlist *sg) +{ + void *addr = sg_virt(sg); + + if (is_vmalloc_addr(addr)) + return vmalloc_to_page(addr); + + return sg_page(sg); +} + /** * msc_buffer_win_alloc() - alloc a window for a multiblock mode * @msc: MSC device @@ -1122,7 +1132,7 @@ int i; for_each_sg(win->sgt->sgl, sg, win->nr_segs, i) { - struct page *page = sg_page(sg); + struct page *page = msc_sg_page(sg); page->mapping = NULL; dma_free_coherent(msc_dev(win->msc)->parent->parent, PAGE_SIZE, @@ -1384,7 +1394,7 @@ pgoff -= win->pgoff; for_each_sg(win->sgt->sgl, sg, win->nr_segs, blk) { - struct page *page = sg_page(sg); + struct page *page = msc_sg_page(sg); size_t pgsz = PFN_DOWN(sg->length); if (pgoff < pgsz) diff -u linux-azure-5.4.0/drivers/hwtracing/intel_th/pci.c linux-azure-5.4.0/drivers/hwtracing/intel_th/pci.c --- linux-azure-5.4.0/drivers/hwtracing/intel_th/pci.c +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/pci.c @@ -100,8 +100,10 @@ } th = intel_th_alloc(&pdev->dev, drvdata, resource, r); - if (IS_ERR(th)) - return PTR_ERR(th); + if (IS_ERR(th)) { + err = PTR_ERR(th); + goto err_free_irq; + } th->activate = intel_th_pci_activate; th->deactivate = intel_th_pci_deactivate; @@ -109,6 +111,10 @@ pci_set_master(pdev); return 0; + +err_free_irq: + pci_free_irq_vectors(pdev); + return err; } static void intel_th_pci_remove(struct pci_dev *pdev) @@ -274,6 +280,21 @@ .driver_data = (kernel_ulong_t)&intel_th_2x, }, { + /* Raptor Lake-S CPU */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa76f), + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, + { + /* Meteor Lake-P */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7e24), + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, + { + /* Raptor Lake-S */ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7a26), + .driver_data = (kernel_ulong_t)&intel_th_2x, + }, + { /* Rocket Lake CPU */ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c19), .driver_data = (kernel_ulong_t)&intel_th_2x, diff -u linux-azure-5.4.0/drivers/i2c/busses/Kconfig linux-azure-5.4.0/drivers/i2c/busses/Kconfig --- linux-azure-5.4.0/drivers/i2c/busses/Kconfig +++ linux-azure-5.4.0/drivers/i2c/busses/Kconfig @@ -483,7 +483,7 @@ config I2C_CADENCE tristate "Cadence I2C Controller" - depends on ARCH_ZYNQ || ARM64 || XTENSA + depends on ARCH_ZYNQ || ARM64 || XTENSA || COMPILE_TEST help Say yes here to select Cadence I2C Host Controller. This controller is e.g. used by Xilinx Zynq. @@ -894,7 +894,7 @@ config I2C_QUP tristate "Qualcomm QUP based I2C controller" - depends on ARCH_QCOM + depends on ARCH_QCOM || COMPILE_TEST help If you say yes to this option, support will be included for the built-in I2C interface on the Qualcomm SoCs. diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-bcm2835.c linux-azure-5.4.0/drivers/i2c/busses/i2c-bcm2835.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-bcm2835.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-bcm2835.c @@ -23,6 +23,11 @@ #define BCM2835_I2C_FIFO 0x10 #define BCM2835_I2C_DIV 0x14 #define BCM2835_I2C_DEL 0x18 +/* + * 16-bit field for the number of SCL cycles to wait after rising SCL + * before deciding the slave is not responding. 0 disables the + * timeout detection. + */ #define BCM2835_I2C_CLKT 0x1c #define BCM2835_I2C_C_READ BIT(0) @@ -479,6 +484,12 @@ adap->dev.of_node = pdev->dev.of_node; adap->quirks = of_device_get_match_data(&pdev->dev); + /* + * Disable the hardware clock stretching timeout. SMBUS + * specifies a limit for how long the device can stretch the + * clock, but core I2C doesn't. + */ + bcm2835_i2c_writel(i2c_dev, BCM2835_I2C_CLKT, 0); bcm2835_i2c_writel(i2c_dev, BCM2835_I2C_C, 0); ret = i2c_add_adapter(adap); diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-brcmstb.c linux-azure-5.4.0/drivers/i2c/busses/i2c-brcmstb.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-brcmstb.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-brcmstb.c @@ -640,7 +640,7 @@ /* set the data in/out register size for compatible SoCs */ if (of_device_is_compatible(dev->device->of_node, - "brcmstb,brcmper-i2c")) + "brcm,brcmper-i2c")) dev->data_regsz = sizeof(u8); else dev->data_regsz = sizeof(u32); diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-cadence.c linux-azure-5.4.0/drivers/i2c/busses/i2c-cadence.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-cadence.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-cadence.c @@ -198,9 +198,9 @@ */ static irqreturn_t cdns_i2c_isr(int irq, void *ptr) { - unsigned int isr_status, avail_bytes, updatetx; + unsigned int isr_status, avail_bytes; unsigned int bytes_to_send; - bool hold_quirk; + bool updatetx; struct cdns_i2c *id = ptr; /* Signal completion only after everything is updated */ int done_flag = 0; @@ -219,11 +219,7 @@ * Check if transfer size register needs to be updated again for a * large data receive operation. */ - updatetx = 0; - if (id->recv_count > id->curr_recv_count) - updatetx = 1; - - hold_quirk = (id->quirks & CDNS_I2C_BROKEN_HOLD_BIT) && updatetx; + updatetx = id->recv_count > id->curr_recv_count; /* When receiving, handle data interrupt and completion interrupt */ if (id->p_recv_buf && @@ -246,7 +242,7 @@ id->recv_count--; id->curr_recv_count--; - if (cdns_is_holdquirk(id, hold_quirk)) + if (cdns_is_holdquirk(id, updatetx)) break; } @@ -257,7 +253,7 @@ * maintain transfer size non-zero while performing a large * receive operation. */ - if (cdns_is_holdquirk(id, hold_quirk)) { + if (cdns_is_holdquirk(id, updatetx)) { /* wait while fifo is full */ while (cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET) != (id->curr_recv_count - CDNS_I2C_FIFO_DEPTH)) @@ -279,22 +275,6 @@ CDNS_I2C_XFER_SIZE_OFFSET); id->curr_recv_count = id->recv_count; } - } else if (id->recv_count && !hold_quirk && - !id->curr_recv_count) { - - /* Set the slave address in address register*/ - cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK, - CDNS_I2C_ADDR_OFFSET); - - if (id->recv_count > CDNS_I2C_TRANSFER_SIZE) { - cdns_i2c_writereg(CDNS_I2C_TRANSFER_SIZE, - CDNS_I2C_XFER_SIZE_OFFSET); - id->curr_recv_count = CDNS_I2C_TRANSFER_SIZE; - } else { - cdns_i2c_writereg(id->recv_count, - CDNS_I2C_XFER_SIZE_OFFSET); - id->curr_recv_count = id->recv_count; - } } /* Clear hold (if not repeated start) and signal completion */ @@ -368,8 +348,13 @@ ctrl_reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET); ctrl_reg |= CDNS_I2C_CR_RW | CDNS_I2C_CR_CLR_FIFO; + /* + * Receive up to I2C_SMBUS_BLOCK_MAX data bytes, plus one message length + * byte, plus one checksum byte if PEC is enabled. p_msg->len will be 2 if + * PEC is enabled, otherwise 1. + */ if (id->p_msg->flags & I2C_M_RECV_LEN) - id->recv_count = I2C_SMBUS_BLOCK_MAX + 1; + id->recv_count = I2C_SMBUS_BLOCK_MAX + id->p_msg->len; id->curr_recv_count = id->recv_count; @@ -506,7 +491,7 @@ static int cdns_i2c_process_msg(struct cdns_i2c *id, struct i2c_msg *msg, struct i2c_adapter *adap) { - unsigned long time_left; + unsigned long time_left, msg_timeout; u32 reg; id->p_msg = msg; @@ -531,8 +516,16 @@ else cdns_i2c_msend(id); + /* Minimal time to execute this message */ + msg_timeout = msecs_to_jiffies((1000 * msg->len * BITS_PER_BYTE) / id->i2c_clk); + /* Plus some wiggle room */ + msg_timeout += msecs_to_jiffies(500); + + if (msg_timeout < adap->timeout) + msg_timeout = adap->timeout; + /* Wait for the signal of completion */ - time_left = wait_for_completion_timeout(&id->xfer_done, adap->timeout); + time_left = wait_for_completion_timeout(&id->xfer_done, msg_timeout); if (time_left == 0) { cdns_i2c_master_reset(adap); dev_err(id->adap.dev.parent, @@ -547,6 +540,9 @@ if (id->err_status & CDNS_I2C_IXR_ARB_LOST) return -EAGAIN; + if (msg->flags & I2C_M_RECV_LEN) + msg->len += min_t(unsigned int, msg->buf[0], I2C_SMBUS_BLOCK_MAX); + return 0; } @@ -977,6 +973,7 @@ return 0; err_clk_dis: + clk_notifier_unregister(id->clk, &id->clk_rate_change_nb); clk_disable_unprepare(id->clk); pm_runtime_set_suspended(&pdev->dev); pm_runtime_disable(&pdev->dev); diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-pcidrv.c linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-pcidrv.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-pcidrv.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-pcidrv.c @@ -37,10 +37,10 @@ }; struct dw_scl_sda_cfg { - u32 ss_hcnt; - u32 fs_hcnt; - u32 ss_lcnt; - u32 fs_lcnt; + u16 ss_hcnt; + u16 fs_hcnt; + u16 ss_lcnt; + u16 fs_lcnt; u32 sda_hold; }; diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-platdrv.c linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-platdrv.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-platdrv.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-platdrv.c @@ -349,8 +349,17 @@ goto exit_reset; } - dev->clk = devm_clk_get(&pdev->dev, NULL); - if (!i2c_dw_prepare_clk(dev, true)) { + dev->clk = devm_clk_get_optional(&pdev->dev, NULL); + if (IS_ERR(dev->clk)) { + ret = PTR_ERR(dev->clk); + goto exit_reset; + } + + ret = i2c_dw_prepare_clk(dev, true); + if (ret) + goto exit_reset; + + if (dev->clk) { u64 clk_khz; dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz; diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-i801.c linux-azure-5.4.0/drivers/i2c/busses/i2c-i801.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-i801.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-i801.c @@ -787,6 +787,11 @@ int result = 0; unsigned char hostc; + if (read_write == I2C_SMBUS_READ && command == I2C_SMBUS_BLOCK_DATA) + data->block[0] = I2C_SMBUS_BLOCK_MAX; + else if (data->block[0] < 1 || data->block[0] > I2C_SMBUS_BLOCK_MAX) + return -EPROTO; + if (command == I2C_SMBUS_I2C_BLOCK_DATA) { if (read_write == I2C_SMBUS_WRITE) { /* set I2C_EN bit in configuration register */ @@ -800,16 +805,6 @@ } } - if (read_write == I2C_SMBUS_WRITE - || command == I2C_SMBUS_I2C_BLOCK_DATA) { - if (data->block[0] < 1) - data->block[0] = 1; - if (data->block[0] > I2C_SMBUS_BLOCK_MAX) - data->block[0] = I2C_SMBUS_BLOCK_MAX; - } else { - data->block[0] = 32; /* max for SMBus block reads */ - } - /* Experience has shown that the block buffer can only be used for SMBus (not I2C) block transactions, even though the datasheet doesn't mention this limitation. */ diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-iop3xx.c linux-azure-5.4.0/drivers/i2c/busses/i2c-iop3xx.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-iop3xx.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-iop3xx.c @@ -467,16 +467,14 @@ irq = platform_get_irq(pdev, 0); if (irq < 0) { - ret = -ENXIO; + ret = irq; goto unmap; } ret = request_irq(irq, iop3xx_i2c_irq_handler, 0, pdev->name, adapter_data); - if (ret) { - ret = -EIO; + if (ret) goto unmap; - } memcpy(new_adapter->name, pdev->name, strlen(pdev->name)); new_adapter->owner = THIS_MODULE; diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-mt65xx.c linux-azure-5.4.0/drivers/i2c/busses/i2c-mt65xx.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-mt65xx.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-mt65xx.c @@ -932,7 +932,7 @@ return PTR_ERR(i2c->pdmabase); irq = platform_get_irq(pdev, 0); - if (irq <= 0) + if (irq < 0) return irq; init_completion(&i2c->msg_complete); diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-qcom-geni.c linux-azure-5.4.0/drivers/i2c/busses/i2c-qcom-geni.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-qcom-geni.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-qcom-geni.c @@ -641,6 +641,14 @@ return 0; } +static void geni_i2c_shutdown(struct platform_device *pdev) +{ + struct geni_i2c_dev *gi2c = platform_get_drvdata(pdev); + + /* Make client i2c transfers start failing */ + i2c_mark_adapter_suspended(&gi2c->adap); +} + static int __maybe_unused geni_i2c_runtime_suspend(struct device *dev) { int ret; @@ -677,6 +685,8 @@ { struct geni_i2c_dev *gi2c = dev_get_drvdata(dev); + i2c_mark_adapter_suspended(&gi2c->adap); + if (!gi2c->suspended) { geni_i2c_runtime_suspend(dev); pm_runtime_disable(dev); @@ -686,8 +696,16 @@ return 0; } +static int __maybe_unused geni_i2c_resume_noirq(struct device *dev) +{ + struct geni_i2c_dev *gi2c = dev_get_drvdata(dev); + + i2c_mark_adapter_resumed(&gi2c->adap); + return 0; +} + static const struct dev_pm_ops geni_i2c_pm_ops = { - SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(geni_i2c_suspend_noirq, NULL) + SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(geni_i2c_suspend_noirq, geni_i2c_resume_noirq) SET_RUNTIME_PM_OPS(geni_i2c_runtime_suspend, geni_i2c_runtime_resume, NULL) }; @@ -701,6 +719,7 @@ static struct platform_driver geni_i2c_driver = { .probe = geni_i2c_probe, .remove = geni_i2c_remove, + .shutdown = geni_i2c_shutdown, .driver = { .name = "geni_i2c", .pm = &geni_i2c_pm_ops, diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-s3c2410.c linux-azure-5.4.0/drivers/i2c/busses/i2c-s3c2410.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-s3c2410.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-s3c2410.c @@ -1141,7 +1141,7 @@ */ if (!(i2c->quirks & QUIRK_POLL)) { i2c->irq = ret = platform_get_irq(pdev, 0); - if (ret <= 0) { + if (ret < 0) { dev_err(&pdev->dev, "cannot find IRQ\n"); clk_unprepare(i2c->clk); return ret; diff -u linux-azure-5.4.0/drivers/i2c/busses/i2c-stm32f7.c linux-azure-5.4.0/drivers/i2c/busses/i2c-stm32f7.c --- linux-azure-5.4.0/drivers/i2c/busses/i2c-stm32f7.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-stm32f7.c @@ -1394,6 +1394,7 @@ { struct stm32f7_i2c_dev *i2c_dev = data; struct stm32f7_i2c_msg *f7_msg = &i2c_dev->f7_msg; + struct stm32_i2c_dma *dma = i2c_dev->dma; void __iomem *base = i2c_dev->base; u32 status, mask; int ret = IRQ_HANDLED; @@ -1418,6 +1419,10 @@ if (status & STM32F7_I2C_ISR_NACKF) { dev_dbg(i2c_dev->dev, "<%s>: Receive NACK\n", __func__); writel_relaxed(STM32F7_I2C_ICR_NACKCF, base + STM32F7_I2C_ICR); + if (i2c_dev->use_dma) { + stm32f7_i2c_disable_dma_req(i2c_dev); + dmaengine_terminate_all(dma->chan_using); + } f7_msg->result = -ENXIO; } @@ -1433,7 +1438,7 @@ /* Clear STOP flag */ writel_relaxed(STM32F7_I2C_ICR_STOPCF, base + STM32F7_I2C_ICR); - if (i2c_dev->use_dma) { + if (i2c_dev->use_dma && !f7_msg->result) { ret = IRQ_WAKE_THREAD; } else { i2c_dev->master_mode = false; @@ -1446,7 +1451,7 @@ if (f7_msg->stop) { mask = STM32F7_I2C_CR2_STOP; stm32f7_i2c_set_bits(base + STM32F7_I2C_CR2, mask); - } else if (i2c_dev->use_dma) { + } else if (i2c_dev->use_dma && !f7_msg->result) { ret = IRQ_WAKE_THREAD; } else if (f7_msg->smbus) { stm32f7_i2c_smbus_rep_start(i2c_dev); @@ -1586,12 +1591,23 @@ time_left = wait_for_completion_timeout(&i2c_dev->complete, i2c_dev->adap.timeout); ret = f7_msg->result; + if (ret) { + /* + * It is possible that some unsent data have already been + * written into TXDR. To avoid sending old data in a + * further transfer, flush TXDR in case of any error + */ + writel_relaxed(STM32F7_I2C_ISR_TXE, + i2c_dev->base + STM32F7_I2C_ISR); + goto pm_free; + } if (!time_left) { dev_dbg(i2c_dev->dev, "Access to slave 0x%x timed out\n", i2c_dev->msg->addr); if (i2c_dev->use_dma) dmaengine_terminate_all(dma->chan_using); + stm32f7_i2c_wait_free_bus(i2c_dev); ret = -ETIMEDOUT; } @@ -1634,13 +1650,22 @@ timeout = wait_for_completion_timeout(&i2c_dev->complete, i2c_dev->adap.timeout); ret = f7_msg->result; - if (ret) + if (ret) { + /* + * It is possible that some unsent data have already been + * written into TXDR. To avoid sending old data in a + * further transfer, flush TXDR in case of any error + */ + writel_relaxed(STM32F7_I2C_ISR_TXE, + i2c_dev->base + STM32F7_I2C_ISR); goto pm_free; + } if (!timeout) { dev_dbg(dev, "Access to slave 0x%x timed out\n", f7_msg->addr); if (i2c_dev->use_dma) dmaengine_terminate_all(dma->chan_using); + stm32f7_i2c_wait_free_bus(i2c_dev); ret = -ETIMEDOUT; goto pm_free; } diff -u linux-azure-5.4.0/drivers/i2c/i2c-core-acpi.c linux-azure-5.4.0/drivers/i2c/i2c-core-acpi.c --- linux-azure-5.4.0/drivers/i2c/i2c-core-acpi.c +++ linux-azure-5.4.0/drivers/i2c/i2c-core-acpi.c @@ -436,6 +436,7 @@ break; i2c_acpi_register_device(adapter, adev, &info); + put_device(&adapter->dev); break; case ACPI_RECONFIG_DEVICE_REMOVE: if (!acpi_device_enumerated(adev)) diff -u linux-azure-5.4.0/drivers/i2c/i2c-core-base.c linux-azure-5.4.0/drivers/i2c/i2c-core-base.c --- linux-azure-5.4.0/drivers/i2c/i2c-core-base.c +++ linux-azure-5.4.0/drivers/i2c/i2c-core-base.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -459,6 +460,8 @@ driver = to_i2c_driver(dev->driver); if (driver->shutdown) driver->shutdown(client); + else if (client->irq > 0) + disable_irq(client->irq); } static void i2c_client_dev_release(struct device *dev) @@ -2355,8 +2358,9 @@ if (!adap) return; - put_device(&adap->dev); module_put(adap->owner); + /* Should be last, otherwise we risk use-after-free with 'adap' */ + put_device(&adap->dev); } EXPORT_SYMBOL(i2c_put_adapter); diff -u linux-azure-5.4.0/drivers/i2c/i2c-dev.c linux-azure-5.4.0/drivers/i2c/i2c-dev.c --- linux-azure-5.4.0/drivers/i2c/i2c-dev.c +++ linux-azure-5.4.0/drivers/i2c/i2c-dev.c @@ -141,7 +141,7 @@ if (count > 8192) count = 8192; - tmp = kmalloc(count, GFP_KERNEL); + tmp = kzalloc(count, GFP_KERNEL); if (tmp == NULL) return -ENOMEM; @@ -150,7 +150,8 @@ ret = i2c_master_recv(client, tmp, count); if (ret >= 0) - ret = copy_to_user(buf, tmp, count) ? -EFAULT : ret; + if (copy_to_user(buf, tmp, ret)) + ret = -EFAULT; kfree(tmp); return ret; } @@ -535,6 +536,9 @@ sizeof(rdwr_arg))) return -EFAULT; + if (!rdwr_arg.msgs || rdwr_arg.nmsgs == 0) + return -EINVAL; + if (rdwr_arg.nmsgs > I2C_RDWR_IOCTL_MAX_MSGS) return -EINVAL; diff -u linux-azure-5.4.0/drivers/i2c/muxes/i2c-demux-pinctrl.c linux-azure-5.4.0/drivers/i2c/muxes/i2c-demux-pinctrl.c --- linux-azure-5.4.0/drivers/i2c/muxes/i2c-demux-pinctrl.c +++ linux-azure-5.4.0/drivers/i2c/muxes/i2c-demux-pinctrl.c @@ -261,7 +261,7 @@ err = device_create_file(&pdev->dev, &dev_attr_available_masters); if (err) - goto err_rollback; + goto err_rollback_activation; err = device_create_file(&pdev->dev, &dev_attr_current_master); if (err) @@ -271,8 +271,9 @@ err_rollback_available: device_remove_file(&pdev->dev, &dev_attr_available_masters); -err_rollback: +err_rollback_activation: i2c_demux_deactivate_master(priv); +err_rollback: for (j = 0; j < i; j++) { of_node_put(priv->chan[j].parent_np); of_changeset_destroy(&priv->chan[j].chgset); diff -u linux-azure-5.4.0/drivers/iio/accel/bmc150-accel-core.c linux-azure-5.4.0/drivers/iio/accel/bmc150-accel-core.c --- linux-azure-5.4.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-azure-5.4.0/drivers/iio/accel/bmc150-accel-core.c @@ -1649,11 +1649,14 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(dev, "Unable to register iio device\n"); - goto err_trigger_unregister; + goto err_pm_cleanup; } return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(dev); + pm_runtime_disable(dev); err_trigger_unregister: bmc150_accel_unregister_triggers(data, BMC150_ACCEL_TRIGGERS - 1); err_buffer_cleanup: diff -u linux-azure-5.4.0/drivers/iio/accel/kxcjk-1013.c linux-azure-5.4.0/drivers/iio/accel/kxcjk-1013.c --- linux-azure-5.4.0/drivers/iio/accel/kxcjk-1013.c +++ linux-azure-5.4.0/drivers/iio/accel/kxcjk-1013.c @@ -132,12 +132,23 @@ ACPI_KIOX010A, }; +enum kxcjk1013_axis { + AXIS_X, + AXIS_Y, + AXIS_Z, + AXIS_MAX +}; + struct kxcjk1013_data { struct i2c_client *client; struct iio_trigger *dready_trig; struct iio_trigger *motion_trig; struct mutex mutex; - s16 buffer[8]; + /* Ensure timestamp naturally aligned */ + struct { + s16 chans[AXIS_MAX]; + s64 timestamp __aligned(8); + } scan; u8 odr_bits; u8 range; int wake_thres; @@ -153,9 +164,2 @@ -enum kxcjk1013_axis { - AXIS_X, - AXIS_Y, - AXIS_Z, - AXIS_MAX, -}; - enum kxcjk1013_mode { @@ -1078,12 +1082,12 @@ ret = i2c_smbus_read_i2c_block_data_or_emulated(data->client, KXCJK1013_REG_XOUT_L, AXIS_MAX * 2, - (u8 *)data->buffer); + (u8 *)data->scan.chans); mutex_unlock(&data->mutex); if (ret < 0) goto err; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, data->timestamp); err: iio_trigger_notify_done(indio_dev->trig); @@ -1405,14 +1409,16 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(&client->dev, "unable to register iio device\n"); - goto err_buffer_cleanup; + goto err_pm_cleanup; } return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(&client->dev); + pm_runtime_disable(&client->dev); err_buffer_cleanup: - if (data->dready_trig) - iio_triggered_buffer_cleanup(indio_dev); + iio_triggered_buffer_cleanup(indio_dev); err_trigger_unregister: if (data->dready_trig) iio_trigger_unregister(data->dready_trig); @@ -1435,8 +1441,8 @@ pm_runtime_set_suspended(&client->dev); pm_runtime_put_noidle(&client->dev); + iio_triggered_buffer_cleanup(indio_dev); if (data->dready_trig) { - iio_triggered_buffer_cleanup(indio_dev); iio_trigger_unregister(data->dready_trig); iio_trigger_unregister(data->motion_trig); } diff -u linux-azure-5.4.0/drivers/iio/accel/kxsd9.c linux-azure-5.4.0/drivers/iio/accel/kxsd9.c --- linux-azure-5.4.0/drivers/iio/accel/kxsd9.c +++ linux-azure-5.4.0/drivers/iio/accel/kxsd9.c @@ -224,14 +224,14 @@ hw_values.chan, sizeof(hw_values.chan)); if (ret) { - dev_err(st->dev, - "error reading data\n"); - return ret; + dev_err(st->dev, "error reading data: %d\n", ret); + goto out; } iio_push_to_buffers_with_timestamp(indio_dev, &hw_values, iio_get_time_ns(indio_dev)); +out: iio_trigger_notify_done(indio_dev->trig); return IRQ_HANDLED; diff -u linux-azure-5.4.0/drivers/iio/accel/mma8452.c linux-azure-5.4.0/drivers/iio/accel/mma8452.c --- linux-azure-5.4.0/drivers/iio/accel/mma8452.c +++ linux-azure-5.4.0/drivers/iio/accel/mma8452.c @@ -1473,7 +1473,7 @@ if (ret) return ret; - indio_dev->trig = trig; + indio_dev->trig = iio_trigger_get(trig); return 0; } @@ -1489,10 +1489,14 @@ int i; int ret; - ret = i2c_smbus_write_byte_data(client, MMA8452_CTRL_REG2, + /* + * Find on fxls8471, after config reset bit, it reset immediately, + * and will not give ACK, so here do not check the return value. + * The following code will read the reset register, and check whether + * this reset works. + */ + i2c_smbus_write_byte_data(client, MMA8452_CTRL_REG2, MMA8452_CTRL_REG2_RST); - if (ret < 0) - return ret; for (i = 0; i < 10; i++) { usleep_range(100, 200); diff -u linux-azure-5.4.0/drivers/iio/adc/ad7124.c linux-azure-5.4.0/drivers/iio/adc/ad7124.c --- linux-azure-5.4.0/drivers/iio/adc/ad7124.c +++ linux-azure-5.4.0/drivers/iio/adc/ad7124.c @@ -63,7 +63,7 @@ #define AD7124_CONFIG_REF_SEL(x) FIELD_PREP(AD7124_CONFIG_REF_SEL_MSK, x) #define AD7124_CONFIG_PGA_MSK GENMASK(2, 0) #define AD7124_CONFIG_PGA(x) FIELD_PREP(AD7124_CONFIG_PGA_MSK, x) -#define AD7124_CONFIG_IN_BUFF_MSK GENMASK(7, 6) +#define AD7124_CONFIG_IN_BUFF_MSK GENMASK(6, 5) #define AD7124_CONFIG_IN_BUFF(x) FIELD_PREP(AD7124_CONFIG_IN_BUFF_MSK, x) /* AD7124_FILTER_X */ @@ -142,7 +142,6 @@ .sign = 'u', .realbits = 24, .storagebits = 32, - .shift = 8, .endianness = IIO_BE, }, }; diff -u linux-azure-5.4.0/drivers/iio/adc/ad7768-1.c linux-azure-5.4.0/drivers/iio/adc/ad7768-1.c --- linux-azure-5.4.0/drivers/iio/adc/ad7768-1.c +++ linux-azure-5.4.0/drivers/iio/adc/ad7768-1.c @@ -470,8 +470,8 @@ iio_push_to_buffers_with_timestamp(indio_dev, &st->data.scan, iio_get_time_ns(indio_dev)); - iio_trigger_notify_done(indio_dev->trig); err_unlock: + iio_trigger_notify_done(indio_dev->trig); mutex_unlock(&st->lock); return IRQ_HANDLED; diff -u linux-azure-5.4.0/drivers/iio/adc/at91-sama5d2_adc.c linux-azure-5.4.0/drivers/iio/adc/at91-sama5d2_adc.c --- linux-azure-5.4.0/drivers/iio/adc/at91-sama5d2_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/at91-sama5d2_adc.c @@ -73,7 +73,7 @@ #define AT91_SAMA5D2_MR_ANACH BIT(23) /* Tracking Time */ #define AT91_SAMA5D2_MR_TRACKTIM(v) ((v) << 24) -#define AT91_SAMA5D2_MR_TRACKTIM_MAX 0xff +#define AT91_SAMA5D2_MR_TRACKTIM_MAX 0xf /* Transfer Time */ #define AT91_SAMA5D2_MR_TRANSFER(v) ((v) << 28) #define AT91_SAMA5D2_MR_TRANSFER_MAX 0x3 @@ -399,7 +399,9 @@ wait_queue_head_t wq_data_available; struct at91_adc_dma dma_st; struct at91_adc_touch touch_st; - u16 buffer[AT91_BUFFER_MAX_HWORDS]; + struct iio_dev *indio_dev; + /* Ensure naturally aligned timestamp */ + u16 buffer[AT91_BUFFER_MAX_HWORDS] __aligned(8); /* * lock to prevent concurrent 'single conversion' requests through * sysfs. @@ -624,13 +626,13 @@ /* first half of register is the x or y, second half is the scale */ val = at91_adc_readl(st, reg); if (!val) - dev_dbg(&iio_priv_to_dev(st)->dev, "pos is 0\n"); + dev_dbg(&st->indio_dev->dev, "pos is 0\n"); pos = val & AT91_SAMA5D2_XYZ_MASK; result = (pos << AT91_SAMA5D2_MAX_POS_BITS) - pos; scale = (val >> 16) & AT91_SAMA5D2_XYZ_MASK; if (scale == 0) { - dev_err(&iio_priv_to_dev(st)->dev, "scale is 0\n"); + dev_err(&st->indio_dev->dev, "scale is 0\n"); return 0; } result /= scale; @@ -1154,9 +1156,9 @@ return i; } -static void at91_adc_setup_samp_freq(struct at91_adc_state *st, unsigned freq) +static void at91_adc_setup_samp_freq(struct iio_dev *indio_dev, unsigned freq) { - struct iio_dev *indio_dev = iio_priv_to_dev(st); + struct at91_adc_state *st = iio_priv(indio_dev); unsigned f_per, prescal, startup, mr; f_per = clk_get_rate(st->per_clk); @@ -1225,9 +1227,9 @@ st->touch_st.touching = true; } -static void at91_adc_no_pen_detect_interrupt(struct at91_adc_state *st) +static void at91_adc_no_pen_detect_interrupt(struct iio_dev *indio_dev) { - struct iio_dev *indio_dev = iio_priv_to_dev(st); + struct at91_adc_state *st = iio_priv(indio_dev); at91_adc_writel(st, AT91_SAMA5D2_TRGR, AT91_SAMA5D2_TRGR_TRGMOD_NO_TRIGGER); @@ -1247,7 +1249,7 @@ struct at91_adc_touch, workq); struct at91_adc_state *st = container_of(touch_st, struct at91_adc_state, touch_st); - struct iio_dev *indio_dev = iio_priv_to_dev(st); + struct iio_dev *indio_dev = st->indio_dev; iio_push_to_buffers(indio_dev, st->buffer); } @@ -1268,7 +1270,7 @@ at91_adc_pen_detect_interrupt(st); } else if ((status & AT91_SAMA5D2_IER_NOPEN)) { /* nopen detected IRQ */ - at91_adc_no_pen_detect_interrupt(st); + at91_adc_no_pen_detect_interrupt(indio); } else if ((status & AT91_SAMA5D2_ISR_PENS) && ((status & rdy_mask) == rdy_mask)) { /* periodic trigger IRQ - during pen sense */ @@ -1319,10 +1321,12 @@ ret = at91_adc_read_position(st, chan->channel, &tmp_val); *val = tmp_val; + if (ret > 0) + ret = at91_adc_adjust_val_osr(st, val); mutex_unlock(&st->lock); iio_device_release_direct_mode(indio_dev); - return at91_adc_adjust_val_osr(st, val); + return ret; } if (chan->type == IIO_PRESSURE) { ret = iio_device_claim_direct_mode(indio_dev); @@ -1333,10 +1337,12 @@ ret = at91_adc_read_pressure(st, chan->channel, &tmp_val); *val = tmp_val; + if (ret > 0) + ret = at91_adc_adjust_val_osr(st, val); mutex_unlock(&st->lock); iio_device_release_direct_mode(indio_dev); - return at91_adc_adjust_val_osr(st, val); + return ret; } /* in this case we have a voltage channel */ @@ -1367,7 +1373,8 @@ *val = st->conversion_value; ret = at91_adc_adjust_val_osr(st, val); if (chan->scan_type.sign == 's') - *val = sign_extend32(*val, 11); + *val = sign_extend32(*val, + chan->scan_type.realbits - 1); st->conversion_done = false; } @@ -1426,16 +1433,20 @@ /* if no change, optimize out */ if (val == st->oversampling_ratio) return 0; + mutex_lock(&st->lock); st->oversampling_ratio = val; /* update ratio */ at91_adc_config_emr(st); + mutex_unlock(&st->lock); return 0; case IIO_CHAN_INFO_SAMP_FREQ: if (val < st->soc_info.min_sample_rate || val > st->soc_info.max_sample_rate) return -EINVAL; - at91_adc_setup_samp_freq(st, val); + mutex_lock(&st->lock); + at91_adc_setup_samp_freq(indio_dev, val); + mutex_unlock(&st->lock); return 0; default: return -EINVAL; @@ -1573,8 +1584,10 @@ return 0; } -static void at91_adc_hw_init(struct at91_adc_state *st) +static void at91_adc_hw_init(struct iio_dev *indio_dev) { + struct at91_adc_state *st = iio_priv(indio_dev); + at91_adc_writel(st, AT91_SAMA5D2_CR, AT91_SAMA5D2_CR_SWRST); at91_adc_writel(st, AT91_SAMA5D2_IDR, 0xffffffff); /* @@ -1584,7 +1597,7 @@ at91_adc_writel(st, AT91_SAMA5D2_MR, AT91_SAMA5D2_MR_TRANSFER(2) | AT91_SAMA5D2_MR_ANACH); - at91_adc_setup_samp_freq(st, st->soc_info.min_sample_rate); + at91_adc_setup_samp_freq(indio_dev, st->soc_info.min_sample_rate); /* configure extended mode register */ at91_adc_config_emr(st); @@ -1667,6 +1680,7 @@ indio_dev->num_channels = ARRAY_SIZE(at91_adc_channels); st = iio_priv(indio_dev); + st->indio_dev = indio_dev; bitmap_set(&st->touch_st.channels_bitmask, AT91_SAMA5D2_TOUCH_X_CHAN_IDX, 1); @@ -1778,7 +1792,7 @@ goto vref_disable; } - at91_adc_hw_init(st); + at91_adc_hw_init(indio_dev); ret = clk_prepare_enable(st->per_clk); if (ret) @@ -1894,7 +1908,7 @@ if (ret) goto vref_disable_resume; - at91_adc_hw_init(st); + at91_adc_hw_init(indio_dev); /* reconfiguring trigger hardware state */ if (!iio_buffer_enabled(indio_dev)) diff -u linux-azure-5.4.0/drivers/iio/adc/dln2-adc.c linux-azure-5.4.0/drivers/iio/adc/dln2-adc.c --- linux-azure-5.4.0/drivers/iio/adc/dln2-adc.c +++ linux-azure-5.4.0/drivers/iio/adc/dln2-adc.c @@ -248,7 +248,6 @@ static int dln2_adc_read(struct dln2_adc *dln2, unsigned int channel) { int ret, i; - struct iio_dev *indio_dev = platform_get_drvdata(dln2->pdev); u16 conflict; __le16 value; int olen = sizeof(value); @@ -257,13 +256,9 @@ .chan = channel, }; - ret = iio_device_claim_direct_mode(indio_dev); - if (ret < 0) - return ret; - ret = dln2_adc_set_chan_enabled(dln2, channel, true); if (ret < 0) - goto release_direct; + return ret; ret = dln2_adc_set_port_enabled(dln2, true, &conflict); if (ret < 0) { @@ -300,8 +295,6 @@ dln2_adc_set_port_enabled(dln2, false, NULL); disable_chan: dln2_adc_set_chan_enabled(dln2, channel, false); -release_direct: - iio_device_release_direct_mode(indio_dev); return ret; } @@ -337,10 +330,16 @@ switch (mask) { case IIO_CHAN_INFO_RAW: + ret = iio_device_claim_direct_mode(indio_dev); + if (ret < 0) + return ret; + mutex_lock(&dln2->mutex); ret = dln2_adc_read(dln2, chan->channel); mutex_unlock(&dln2->mutex); + iio_device_release_direct_mode(indio_dev); + if (ret < 0) return ret; @@ -666,7 +665,11 @@ return -ENOMEM; } iio_trigger_set_drvdata(dln2->trig, dln2); - devm_iio_trigger_register(dev, dln2->trig); + ret = devm_iio_trigger_register(dev, dln2->trig); + if (ret) { + dev_err(dev, "failed to register trigger: %d\n", ret); + return ret; + } iio_trigger_set_immutable(indio_dev, dln2->trig); ret = devm_iio_triggered_buffer_setup(dev, indio_dev, NULL, diff -u linux-azure-5.4.0/drivers/iio/adc/mt6577_auxadc.c linux-azure-5.4.0/drivers/iio/adc/mt6577_auxadc.c --- linux-azure-5.4.0/drivers/iio/adc/mt6577_auxadc.c +++ linux-azure-5.4.0/drivers/iio/adc/mt6577_auxadc.c @@ -82,6 +82,10 @@ MT6577_AUXADC_CHANNEL(15), }; +/* For Voltage calculation */ +#define VOLTAGE_FULL_RANGE 1500 /* VA voltage */ +#define AUXADC_PRECISE 4096 /* 12 bits */ + static int mt_auxadc_get_cali_data(int rawdata, bool enable_cali) { return rawdata; @@ -191,6 +195,10 @@ } if (adc_dev->dev_comp->sample_data_cali) *val = mt_auxadc_get_cali_data(*val, true); + + /* Convert adc raw data to voltage: 0 - 1500 mV */ + *val = *val * VOLTAGE_FULL_RANGE / AUXADC_PRECISE; + return IIO_VAL_INT; default: diff -u linux-azure-5.4.0/drivers/iio/adc/stm32-adc-core.c linux-azure-5.4.0/drivers/iio/adc/stm32-adc-core.c --- linux-azure-5.4.0/drivers/iio/adc/stm32-adc-core.c +++ linux-azure-5.4.0/drivers/iio/adc/stm32-adc-core.c @@ -815,7 +815,7 @@ static const struct stm32_adc_priv_cfg stm32mp1_adc_priv_cfg = { .regs = &stm32h7_adc_common_regs, .clk_sel = stm32h7_adc_clk_sel, - .max_clk_rate_hz = 40000000, + .max_clk_rate_hz = 36000000, .has_syscfg = HAS_VBOOSTER | HAS_ANASWVDD, .num_irqs = 2, }; diff -u linux-azure-5.4.0/drivers/iio/adc/stm32-adc.c linux-azure-5.4.0/drivers/iio/adc/stm32-adc.c --- linux-azure-5.4.0/drivers/iio/adc/stm32-adc.c +++ linux-azure-5.4.0/drivers/iio/adc/stm32-adc.c @@ -933,6 +933,7 @@ static void stm32h7_adc_unprepare(struct stm32_adc *adc) { + stm32_adc_writel(adc, STM32H7_ADC_PCSEL, 0); stm32h7_adc_disable(adc); stm32h7_adc_enter_pwr_down(adc); } diff -u linux-azure-5.4.0/drivers/iio/adc/ti-ads1015.c linux-azure-5.4.0/drivers/iio/adc/ti-ads1015.c --- linux-azure-5.4.0/drivers/iio/adc/ti-ads1015.c +++ linux-azure-5.4.0/drivers/iio/adc/ti-ads1015.c @@ -388,10 +388,14 @@ struct iio_poll_func *pf = p; struct iio_dev *indio_dev = pf->indio_dev; struct ads1015_data *data = iio_priv(indio_dev); - s16 buf[8]; /* 1x s16 ADC val + 3x s16 padding + 4x s16 timestamp */ + /* Ensure natural alignment of timestamp */ + struct { + s16 chan; + s64 timestamp __aligned(8); + } scan; int chan, ret, res; - memset(buf, 0, sizeof(buf)); + memset(&scan, 0, sizeof(scan)); mutex_lock(&data->lock); chan = find_first_bit(indio_dev->active_scan_mask, @@ -402,10 +406,10 @@ goto err; } - buf[0] = res; + scan.chan = res; mutex_unlock(&data->lock); - iio_push_to_buffers_with_timestamp(indio_dev, buf, + iio_push_to_buffers_with_timestamp(indio_dev, &scan, iio_get_time_ns(indio_dev)); err: diff -u linux-azure-5.4.0/drivers/iio/chemical/ccs811.c linux-azure-5.4.0/drivers/iio/chemical/ccs811.c --- linux-azure-5.4.0/drivers/iio/chemical/ccs811.c +++ linux-azure-5.4.0/drivers/iio/chemical/ccs811.c @@ -418,11 +418,11 @@ data->drdy_trig->dev.parent = &client->dev; data->drdy_trig->ops = &ccs811_trigger_ops; iio_trigger_set_drvdata(data->drdy_trig, indio_dev); - indio_dev->trig = data->drdy_trig; - iio_trigger_get(indio_dev->trig); ret = iio_trigger_register(data->drdy_trig); if (ret) goto err_poweroff; + + indio_dev->trig = iio_trigger_get(data->drdy_trig); } ret = iio_triggered_buffer_setup(indio_dev, NULL, diff -u linux-azure-5.4.0/drivers/iio/common/st_sensors/st_sensors_core.c linux-azure-5.4.0/drivers/iio/common/st_sensors/st_sensors_core.c --- linux-azure-5.4.0/drivers/iio/common/st_sensors/st_sensors_core.c +++ linux-azure-5.4.0/drivers/iio/common/st_sensors/st_sensors_core.c @@ -76,16 +76,18 @@ int st_sensors_set_odr(struct iio_dev *indio_dev, unsigned int odr) { - int err; + int err = 0; struct st_sensor_odr_avl odr_out = {0, 0}; struct st_sensor_data *sdata = iio_priv(indio_dev); + mutex_lock(&sdata->odr_lock); + if (!sdata->sensor_settings->odr.mask) - return 0; + goto unlock_mutex; err = st_sensors_match_odr(sdata->sensor_settings, odr, &odr_out); if (err < 0) - goto st_sensors_match_odr_error; + goto unlock_mutex; if ((sdata->sensor_settings->odr.addr == sdata->sensor_settings->pw.addr) && @@ -108,7 +110,9 @@ if (err >= 0) sdata->odr = odr_out.hz; -st_sensors_match_odr_error: +unlock_mutex: + mutex_unlock(&sdata->odr_lock); + return err; } EXPORT_SYMBOL(st_sensors_set_odr); @@ -384,6 +388,8 @@ struct st_sensors_platform_data *of_pdata; int err = 0; + mutex_init(&sdata->odr_lock); + /* If OF/DT pdata exists, it will take precedence of anything else */ of_pdata = st_sensors_of_probe(indio_dev->dev.parent, pdata); if (of_pdata) @@ -575,18 +581,24 @@ err = -EBUSY; goto out; } else { + mutex_lock(&sdata->odr_lock); err = st_sensors_set_enable(indio_dev, true); - if (err < 0) + if (err < 0) { + mutex_unlock(&sdata->odr_lock); goto out; + } msleep((sdata->sensor_settings->bootime * 1000) / sdata->odr); err = st_sensors_read_axis_data(indio_dev, ch, val); - if (err < 0) + if (err < 0) { + mutex_unlock(&sdata->odr_lock); goto out; + } *val = *val >> ch->scan_type.shift; err = st_sensors_set_enable(indio_dev, false); + mutex_unlock(&sdata->odr_lock); } out: mutex_unlock(&indio_dev->mlock); diff -u linux-azure-5.4.0/drivers/iio/dac/ad5446.c linux-azure-5.4.0/drivers/iio/dac/ad5446.c --- linux-azure-5.4.0/drivers/iio/dac/ad5446.c +++ linux-azure-5.4.0/drivers/iio/dac/ad5446.c @@ -170,7 +170,7 @@ switch (m) { case IIO_CHAN_INFO_RAW: - *val = st->cached_val; + *val = st->cached_val >> chan->scan_type.shift; return IIO_VAL_INT; case IIO_CHAN_INFO_SCALE: *val = st->vref_mv; @@ -527,8 +527,15 @@ { struct i2c_client *client = to_i2c_client(st->dev); __be16 data = cpu_to_be16(val); + int ret; - return i2c_master_send(client, (char *)&data, sizeof(data)); + ret = i2c_master_send(client, (char *)&data, sizeof(data)); + if (ret < 0) + return ret; + if (ret != sizeof(data)) + return -EIO; + + return 0; } /** diff -u linux-azure-5.4.0/drivers/iio/dac/ad5592r-base.c linux-azure-5.4.0/drivers/iio/dac/ad5592r-base.c --- linux-azure-5.4.0/drivers/iio/dac/ad5592r-base.c +++ linux-azure-5.4.0/drivers/iio/dac/ad5592r-base.c @@ -530,7 +530,7 @@ if (!ret) st->channel_modes[reg] = tmp; - fwnode_property_read_u32(child, "adi,off-state", &tmp); + ret = fwnode_property_read_u32(child, "adi,off-state", &tmp); if (!ret) st->channel_offstate[reg] = tmp; } diff -u linux-azure-5.4.0/drivers/iio/gyro/fxas21002c_core.c linux-azure-5.4.0/drivers/iio/gyro/fxas21002c_core.c --- linux-azure-5.4.0/drivers/iio/gyro/fxas21002c_core.c +++ linux-azure-5.4.0/drivers/iio/gyro/fxas21002c_core.c @@ -300,14 +300,7 @@ static int fxas21002c_pm_get(struct fxas21002c_data *data) { - struct device *dev = regmap_get_device(data->regmap); - int ret; - - ret = pm_runtime_get_sync(dev); - if (ret < 0) - pm_runtime_put_noidle(dev); - - return ret; + return pm_runtime_resume_and_get(regmap_get_device(data->regmap)); } static int fxas21002c_pm_put(struct fxas21002c_data *data) @@ -940,7 +933,6 @@ pm_disable: pm_runtime_disable(dev); pm_runtime_set_suspended(dev); - pm_runtime_put_noidle(dev); return ret; } @@ -954,7 +946,6 @@ pm_runtime_disable(dev); pm_runtime_set_suspended(dev); - pm_runtime_put_noidle(dev); } EXPORT_SYMBOL_GPL(fxas21002c_core_remove); diff -u linux-azure-5.4.0/drivers/iio/gyro/itg3200_buffer.c linux-azure-5.4.0/drivers/iio/gyro/itg3200_buffer.c --- linux-azure-5.4.0/drivers/iio/gyro/itg3200_buffer.c +++ linux-azure-5.4.0/drivers/iio/gyro/itg3200_buffer.c @@ -61,9 +61,9 @@ iio_push_to_buffers_with_timestamp(indio_dev, &scan, pf->timestamp); +error_ret: iio_trigger_notify_done(indio_dev->trig); -error_ret: return IRQ_HANDLED; } diff -u linux-azure-5.4.0/drivers/iio/gyro/mpu3050-core.c linux-azure-5.4.0/drivers/iio/gyro/mpu3050-core.c --- linux-azure-5.4.0/drivers/iio/gyro/mpu3050-core.c +++ linux-azure-5.4.0/drivers/iio/gyro/mpu3050-core.c @@ -874,6 +874,7 @@ ret = regmap_update_bits(mpu3050->map, MPU3050_PWR_MGM, MPU3050_PWR_MGM_SLEEP, 0); if (ret) { + regulator_bulk_disable(ARRAY_SIZE(mpu3050->regs), mpu3050->regs); dev_err(mpu3050->dev, "error setting power mode\n"); return ret; } diff -u linux-azure-5.4.0/drivers/iio/humidity/hdc100x.c linux-azure-5.4.0/drivers/iio/humidity/hdc100x.c --- linux-azure-5.4.0/drivers/iio/humidity/hdc100x.c +++ linux-azure-5.4.0/drivers/iio/humidity/hdc100x.c @@ -24,6 +24,8 @@ #include #include +#include + #define HDC100X_REG_TEMP 0x00 #define HDC100X_REG_HUMIDITY 0x01 @@ -165,7 +167,7 @@ struct iio_chan_spec const *chan) { struct i2c_client *client = data->client; - int delay = data->adc_int_us[chan->address]; + int delay = data->adc_int_us[chan->address] + 1*USEC_PER_MSEC; int ret; __be16 val; @@ -322,7 +324,7 @@ struct iio_dev *indio_dev = pf->indio_dev; struct hdc100x_data *data = iio_priv(indio_dev); struct i2c_client *client = data->client; - int delay = data->adc_int_us[0] + data->adc_int_us[1]; + int delay = data->adc_int_us[0] + data->adc_int_us[1] + 2*USEC_PER_MSEC; int ret; /* dual read starts at temp register */ diff -u linux-azure-5.4.0/drivers/iio/imu/adis16400.c linux-azure-5.4.0/drivers/iio/imu/adis16400.c --- linux-azure-5.4.0/drivers/iio/imu/adis16400.c +++ linux-azure-5.4.0/drivers/iio/imu/adis16400.c @@ -651,9 +651,6 @@ void *buffer; int ret; - if (!adis->buffer) - return -ENOMEM; - if (!(st->variant->flags & ADIS16400_NO_BURST) && st->adis.spi->max_speed_hz > ADIS16400_SPI_BURST) { st->adis.spi->max_speed_hz = ADIS16400_SPI_BURST; diff -u linux-azure-5.4.0/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c linux-azure-5.4.0/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c --- linux-azure-5.4.0/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c +++ linux-azure-5.4.0/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c @@ -1015,6 +1015,8 @@ int err; switch (sensor->id) { + case ST_LSM6DSX_ID_GYRO: + break; case ST_LSM6DSX_ID_EXT0: case ST_LSM6DSX_ID_EXT1: case ST_LSM6DSX_ID_EXT2: @@ -1040,8 +1042,8 @@ } break; } - default: - break; + default: /* should never occur */ + return -EINVAL; } if (req_odr > 0) { diff -u linux-azure-5.4.0/drivers/iio/light/ltr501.c linux-azure-5.4.0/drivers/iio/light/ltr501.c --- linux-azure-5.4.0/drivers/iio/light/ltr501.c +++ linux-azure-5.4.0/drivers/iio/light/ltr501.c @@ -32,9 +32,12 @@ #define LTR501_PART_ID 0x86 #define LTR501_MANUFAC_ID 0x87 #define LTR501_ALS_DATA1 0x88 /* 16-bit, little endian */ +#define LTR501_ALS_DATA1_UPPER 0x89 /* upper 8 bits of LTR501_ALS_DATA1 */ #define LTR501_ALS_DATA0 0x8a /* 16-bit, little endian */ +#define LTR501_ALS_DATA0_UPPER 0x8b /* upper 8 bits of LTR501_ALS_DATA0 */ #define LTR501_ALS_PS_STATUS 0x8c #define LTR501_PS_DATA 0x8d /* 16-bit, little endian */ +#define LTR501_PS_DATA_UPPER 0x8e /* upper 8 bits of LTR501_PS_DATA */ #define LTR501_INTR 0x8f /* output mode, polarity, mode */ #define LTR501_PS_THRESH_UP 0x90 /* 11 bit, ps upper threshold */ #define LTR501_PS_THRESH_LOW 0x92 /* 11 bit, ps lower threshold */ @@ -405,18 +408,19 @@ static int ltr501_read_ps(struct ltr501_data *data) { - int ret, status; + __le16 status; + int ret; ret = ltr501_drdy(data, LTR501_STATUS_PS_RDY); if (ret < 0) return ret; ret = regmap_bulk_read(data->regmap, LTR501_PS_DATA, - &status, 2); + &status, sizeof(status)); if (ret < 0) return ret; - return status; + return le16_to_cpu(status); } static int ltr501_read_intr_prst(struct ltr501_data *data, @@ -1204,7 +1208,7 @@ .als_gain_tbl_size = ARRAY_SIZE(ltr559_als_gain_tbl), .ps_gain = ltr559_ps_gain_tbl, .ps_gain_tbl_size = ARRAY_SIZE(ltr559_ps_gain_tbl), - .als_mode_active = BIT(1), + .als_mode_active = BIT(0), .als_gain_mask = BIT(2) | BIT(3) | BIT(4), .als_gain_shift = 2, .info = <r501_info, @@ -1268,7 +1272,7 @@ ret = regmap_bulk_read(data->regmap, LTR501_ALS_DATA1, (u8 *)als_buf, sizeof(als_buf)); if (ret < 0) - return ret; + goto done; if (test_bit(0, indio_dev->active_scan_mask)) scan.channels[j++] = le16_to_cpu(als_buf[1]); if (test_bit(1, indio_dev->active_scan_mask)) @@ -1353,9 +1357,12 @@ { switch (reg) { case LTR501_ALS_DATA1: + case LTR501_ALS_DATA1_UPPER: case LTR501_ALS_DATA0: + case LTR501_ALS_DATA0_UPPER: case LTR501_ALS_PS_STATUS: case LTR501_PS_DATA: + case LTR501_PS_DATA_UPPER: return true; default: return false; diff -u linux-azure-5.4.0/drivers/iio/light/tsl2583.c linux-azure-5.4.0/drivers/iio/light/tsl2583.c --- linux-azure-5.4.0/drivers/iio/light/tsl2583.c +++ linux-azure-5.4.0/drivers/iio/light/tsl2583.c @@ -857,7 +857,7 @@ TSL2583_POWER_OFF_DELAY_MS); pm_runtime_use_autosuspend(&clientp->dev); - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev); + ret = iio_device_register(indio_dev); if (ret) { dev_err(&clientp->dev, "%s: iio registration failed\n", __func__); diff -u linux-azure-5.4.0/drivers/iio/magnetometer/ak8975.c linux-azure-5.4.0/drivers/iio/magnetometer/ak8975.c --- linux-azure-5.4.0/drivers/iio/magnetometer/ak8975.c +++ linux-azure-5.4.0/drivers/iio/magnetometer/ak8975.c @@ -391,6 +391,7 @@ if (ret) { dev_warn(&data->client->dev, "Failed to enable specified Vid supply\n"); + regulator_disable(data->vdd); return ret; } /* diff -u linux-azure-5.4.0/drivers/iio/proximity/pulsedlight-lidar-lite-v2.c linux-azure-5.4.0/drivers/iio/proximity/pulsedlight-lidar-lite-v2.c --- linux-azure-5.4.0/drivers/iio/proximity/pulsedlight-lidar-lite-v2.c +++ linux-azure-5.4.0/drivers/iio/proximity/pulsedlight-lidar-lite-v2.c @@ -43,7 +43,11 @@ int (*xfer)(struct lidar_data *data, u8 reg, u8 *val, int len); int i2c_enabled; - u16 buffer[8]; /* 2 byte distance + 8 byte timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + u16 chan; + s64 timestamp __aligned(8); + } scan; }; static const struct iio_chan_spec lidar_channels[] = { @@ -228,9 +232,9 @@ struct lidar_data *data = iio_priv(indio_dev); int ret; - ret = lidar_get_measurement(data, data->buffer); + ret = lidar_get_measurement(data, &data->scan.chan); if (!ret) { - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, iio_get_time_ns(indio_dev)); } else if (ret != -EINVAL) { dev_err(&data->client->dev, "cannot read LIDAR measurement"); diff -u linux-azure-5.4.0/drivers/iio/trigger/stm32-timer-trigger.c linux-azure-5.4.0/drivers/iio/trigger/stm32-timer-trigger.c --- linux-azure-5.4.0/drivers/iio/trigger/stm32-timer-trigger.c +++ linux-azure-5.4.0/drivers/iio/trigger/stm32-timer-trigger.c @@ -801,5 +801,5 @@ module_platform_driver(stm32_timer_trigger_driver); -MODULE_ALIAS("platform: stm32-timer-trigger"); +MODULE_ALIAS("platform:stm32-timer-trigger"); MODULE_DESCRIPTION("STMicroelectronics STM32 Timer Trigger driver"); MODULE_LICENSE("GPL v2"); diff -u linux-azure-5.4.0/drivers/infiniband/core/Makefile linux-azure-5.4.0/drivers/infiniband/core/Makefile --- linux-azure-5.4.0/drivers/infiniband/core/Makefile +++ linux-azure-5.4.0/drivers/infiniband/core/Makefile @@ -36,3 +36,3 @@ uverbs_uapi.o uverbs_std_types_device.o -ib_uverbs-$(CONFIG_INFINIBAND_USER_MEM) += umem.o +ib_uverbs-$(CONFIG_INFINIBAND_USER_MEM) += umem.o peer_mem.o ib_uverbs-$(CONFIG_INFINIBAND_ON_DEMAND_PAGING) += umem_odp.o diff -u linux-azure-5.4.0/drivers/infiniband/core/cma.c linux-azure-5.4.0/drivers/infiniband/core/cma.c --- linux-azure-5.4.0/drivers/infiniband/core/cma.c +++ linux-azure-5.4.0/drivers/infiniband/core/cma.c @@ -820,6 +820,7 @@ u16 pkey, index; u8 p; enum ib_port_state port_state; + int ret; int i; cma_dev = NULL; @@ -838,9 +839,14 @@ if (ib_get_cached_port_state(cur_dev->device, p, &port_state)) continue; - for (i = 0; !rdma_query_gid(cur_dev->device, - p, i, &gid); - i++) { + + for (i = 0; i < cur_dev->device->port_data[p].immutable.gid_tbl_len; + ++i) { + ret = rdma_query_gid(cur_dev->device, p, i, + &gid); + if (ret) + continue; + if (!memcmp(&gid, dgid, sizeof(gid))) { cma_dev = cur_dev; sgid = gid; @@ -1428,7 +1434,7 @@ return false; memset(&fl4, 0, sizeof(fl4)); - fl4.flowi4_iif = net_dev->ifindex; + fl4.flowi4_oif = net_dev->ifindex; fl4.daddr = daddr; fl4.saddr = saddr; @@ -1713,8 +1719,8 @@ } if (!validate_net_dev(*net_dev, - (struct sockaddr *)&req->listen_addr_storage, - (struct sockaddr *)&req->src_addr_storage)) { + (struct sockaddr *)&req->src_addr_storage, + (struct sockaddr *)&req->listen_addr_storage)) { id_priv = ERR_PTR(-EHOSTUNREACH); goto err; } @@ -2553,7 +2559,7 @@ { struct rdma_id_private *id_priv; - if (id->qp_type != IB_QPT_RC) + if (id->qp_type != IB_QPT_RC && id->qp_type != IB_QPT_XRC_INI) return -EINVAL; id_priv = container_of(id, struct rdma_id_private, id); @@ -2719,7 +2725,8 @@ cma_init_resolve_route_work(work, id_priv); - route->path_rec = kmalloc(sizeof *route->path_rec, GFP_KERNEL); + if (!route->path_rec) + route->path_rec = kmalloc(sizeof *route->path_rec, GFP_KERNEL); if (!route->path_rec) { ret = -ENOMEM; goto err1; @@ -4050,14 +4057,15 @@ int __rdma_accept(struct rdma_cm_id *id, struct rdma_conn_param *conn_param, const char *caller) { - struct rdma_id_private *id_priv; + struct rdma_id_private *id_priv = + container_of(id, struct rdma_id_private, id); int ret; - id_priv = container_of(id, struct rdma_id_private, id); + lockdep_assert_held(&id_priv->handler_mutex); rdma_restrack_set_task(&id_priv->res, caller); - if (!cma_comp(id_priv, RDMA_CM_CONNECT)) + if (READ_ONCE(id_priv->state) != RDMA_CM_CONNECT) return -EINVAL; if (!id->qp && conn_param) { @@ -4097,6 +4105,24 @@ } EXPORT_SYMBOL(__rdma_accept); +void rdma_lock_handler(struct rdma_cm_id *id) +{ + struct rdma_id_private *id_priv = + container_of(id, struct rdma_id_private, id); + + mutex_lock(&id_priv->handler_mutex); +} +EXPORT_SYMBOL(rdma_lock_handler); + +void rdma_unlock_handler(struct rdma_cm_id *id) +{ + struct rdma_id_private *id_priv = + container_of(id, struct rdma_id_private, id); + + mutex_unlock(&id_priv->handler_mutex); +} +EXPORT_SYMBOL(rdma_unlock_handler); + int rdma_notify(struct rdma_cm_id *id, enum ib_event_type event) { struct rdma_id_private *id_priv; diff -u linux-azure-5.4.0/drivers/infiniband/core/device.c linux-azure-5.4.0/drivers/infiniband/core/device.c --- linux-azure-5.4.0/drivers/infiniband/core/device.c +++ linux-azure-5.4.0/drivers/infiniband/core/device.c @@ -2438,7 +2438,8 @@ ++i) { ret = rdma_query_gid(device, port, i, &tmp_gid); if (ret) - return ret; + continue; + if (!memcmp(&tmp_gid, gid, sizeof *gid)) { *port_num = port; if (index) @@ -2762,10 +2763,18 @@ nldev_init(); rdma_nl_register(RDMA_NL_LS, ibnl_ls_cb_table); - roce_gid_mgmt_init(); + ret = roce_gid_mgmt_init(); + if (ret) { + pr_warn("Couldn't init RoCE GID management\n"); + goto err_parent; + } return 0; +err_parent: + rdma_nl_unregister(RDMA_NL_LS); + nldev_exit(); + unregister_pernet_device(&rdma_dev_net_ops); err_compat: unregister_blocking_lsm_notifier(&ibdev_lsm_nb); err_sa: diff -u linux-azure-5.4.0/drivers/infiniband/core/iwcm.c linux-azure-5.4.0/drivers/infiniband/core/iwcm.c --- linux-azure-5.4.0/drivers/infiniband/core/iwcm.c +++ linux-azure-5.4.0/drivers/infiniband/core/iwcm.c @@ -1187,29 +1187,34 @@ ret = iwpm_init(RDMA_NL_IWCM); if (ret) - pr_err("iw_cm: couldn't init iwpm\n"); - else - rdma_nl_register(RDMA_NL_IWCM, iwcm_nl_cb_table); + return ret; + iwcm_wq = alloc_ordered_workqueue("iw_cm_wq", 0); if (!iwcm_wq) - return -ENOMEM; + goto err_alloc; iwcm_ctl_table_hdr = register_net_sysctl(&init_net, "net/iw_cm", iwcm_ctl_table); if (!iwcm_ctl_table_hdr) { pr_err("iw_cm: couldn't register sysctl paths\n"); - destroy_workqueue(iwcm_wq); - return -ENOMEM; + goto err_sysctl; } + rdma_nl_register(RDMA_NL_IWCM, iwcm_nl_cb_table); return 0; + +err_sysctl: + destroy_workqueue(iwcm_wq); +err_alloc: + iwpm_exit(RDMA_NL_IWCM); + return -ENOMEM; } static void __exit iw_cm_cleanup(void) { + rdma_nl_unregister(RDMA_NL_IWCM); unregister_net_sysctl_table(iwcm_ctl_table_hdr); destroy_workqueue(iwcm_wq); - rdma_nl_unregister(RDMA_NL_IWCM); iwpm_exit(RDMA_NL_IWCM); } diff -u linux-azure-5.4.0/drivers/infiniband/core/nldev.c linux-azure-5.4.0/drivers/infiniband/core/nldev.c --- linux-azure-5.4.0/drivers/infiniband/core/nldev.c +++ linux-azure-5.4.0/drivers/infiniband/core/nldev.c @@ -2098,7 +2098,7 @@ rdma_nl_register(RDMA_NL_NLDEV, nldev_cb_table); } -void __exit nldev_exit(void) +void nldev_exit(void) { rdma_nl_unregister(RDMA_NL_NLDEV); } diff -u linux-azure-5.4.0/drivers/infiniband/core/sa_query.c linux-azure-5.4.0/drivers/infiniband/core/sa_query.c --- linux-azure-5.4.0/drivers/infiniband/core/sa_query.c +++ linux-azure-5.4.0/drivers/infiniband/core/sa_query.c @@ -760,8 +760,9 @@ /* Construct the family header first */ header = skb_put(skb, NLMSG_ALIGN(sizeof(*header))); - memcpy(header->device_name, dev_name(&query->port->agent->device->dev), - LS_DEVICE_NAME_MAX); + strscpy_pad(header->device_name, + dev_name(&query->port->agent->device->dev), + LS_DEVICE_NAME_MAX); header->port_num = query->port->port_num; if ((comp_mask & IB_SA_PATH_REC_REVERSIBLE) && diff -u linux-azure-5.4.0/drivers/infiniband/core/ucma.c linux-azure-5.4.0/drivers/infiniband/core/ucma.c --- linux-azure-5.4.0/drivers/infiniband/core/ucma.c +++ linux-azure-5.4.0/drivers/infiniband/core/ucma.c @@ -545,6 +545,7 @@ { struct ucma_event *uevent, *tmp; + rdma_lock_handler(mc->ctx->cm_id); list_for_each_entry_safe(uevent, tmp, &mc->ctx->file->event_list, list) { if (uevent->mc != mc) continue; @@ -552,6 +553,7 @@ list_del(&uevent->list); kfree(uevent); } + rdma_unlock_handler(mc->ctx->cm_id); } /* @@ -1133,16 +1135,20 @@ if (cmd.conn_param.valid) { ucma_copy_conn_param(ctx->cm_id, &conn_param, &cmd.conn_param); - mutex_lock(&file->mut); mutex_lock(&ctx->mutex); + rdma_lock_handler(ctx->cm_id); ret = __rdma_accept(ctx->cm_id, &conn_param, NULL); - mutex_unlock(&ctx->mutex); - if (!ret) + if (!ret) { + /* The uid must be set atomically with the handler */ ctx->uid = cmd.uid; - mutex_unlock(&file->mut); + } + rdma_unlock_handler(ctx->cm_id); + mutex_unlock(&ctx->mutex); } else { mutex_lock(&ctx->mutex); + rdma_lock_handler(ctx->cm_id); ret = __rdma_accept(ctx->cm_id, NULL, NULL); + rdma_unlock_handler(ctx->cm_id); mutex_unlock(&ctx->mutex); } ucma_put_ctx(ctx); @@ -1544,7 +1550,7 @@ mc = xa_load(&multicast_table, cmd.id); if (!mc) mc = ERR_PTR(-ENOENT); - else if (mc->ctx->file != file) + else if (READ_ONCE(mc->ctx->file) != file) mc = ERR_PTR(-EINVAL); else if (!atomic_inc_not_zero(&mc->ctx->ref)) mc = ERR_PTR(-ENXIO); @@ -1577,45 +1583,15 @@ return ret; } -static void ucma_lock_files(struct ucma_file *file1, struct ucma_file *file2) -{ - /* Acquire mutex's based on pointer comparison to prevent deadlock. */ - if (file1 < file2) { - mutex_lock(&file1->mut); - mutex_lock_nested(&file2->mut, SINGLE_DEPTH_NESTING); - } else { - mutex_lock(&file2->mut); - mutex_lock_nested(&file1->mut, SINGLE_DEPTH_NESTING); - } -} - -static void ucma_unlock_files(struct ucma_file *file1, struct ucma_file *file2) -{ - if (file1 < file2) { - mutex_unlock(&file2->mut); - mutex_unlock(&file1->mut); - } else { - mutex_unlock(&file1->mut); - mutex_unlock(&file2->mut); - } -} - -static void ucma_move_events(struct ucma_context *ctx, struct ucma_file *file) -{ - struct ucma_event *uevent, *tmp; - - list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list) - if (uevent->ctx == ctx) - list_move_tail(&uevent->list, &file->event_list); -} - static ssize_t ucma_migrate_id(struct ucma_file *new_file, const char __user *inbuf, int in_len, int out_len) { struct rdma_ucm_migrate_id cmd; struct rdma_ucm_migrate_resp resp; + struct ucma_event *uevent, *tmp; struct ucma_context *ctx; + LIST_HEAD(event_list); struct fd f; struct ucma_file *cur_file; int ret = 0; @@ -1631,42 +1607,53 @@ ret = -EINVAL; goto file_put; } + cur_file = f.file->private_data; /* Validate current fd and prevent destruction of id. */ - ctx = ucma_get_ctx(f.file->private_data, cmd.id); + ctx = ucma_get_ctx(cur_file, cmd.id); if (IS_ERR(ctx)) { ret = PTR_ERR(ctx); goto file_put; } - cur_file = ctx->file; - if (cur_file == new_file) { - mutex_lock(&cur_file->mut); - resp.events_reported = ctx->events_reported; - mutex_unlock(&cur_file->mut); - goto response; - } - + rdma_lock_handler(ctx->cm_id); /* - * Migrate events between fd's, maintaining order, and avoiding new - * events being added before existing events. + * ctx->file can only be changed under the handler & xa_lock. xa_load() + * must be checked again to ensure the ctx hasn't begun destruction + * since the ucma_get_ctx(). */ - ucma_lock_files(cur_file, new_file); xa_lock(&ctx_table); - - list_move_tail(&ctx->list, &new_file->ctx_list); - ucma_move_events(ctx, new_file); + if (_ucma_find_context(cmd.id, cur_file) != ctx) { + xa_unlock(&ctx_table); + ret = -ENOENT; + goto err_unlock; + } ctx->file = new_file; + xa_unlock(&ctx_table); + + mutex_lock(&cur_file->mut); + list_del(&ctx->list); + /* + * At this point lock_handler() prevents addition of new uevents for + * this ctx. + */ + list_for_each_entry_safe(uevent, tmp, &cur_file->event_list, list) + if (uevent->ctx == ctx) + list_move_tail(&uevent->list, &event_list); resp.events_reported = ctx->events_reported; + mutex_unlock(&cur_file->mut); - xa_unlock(&ctx_table); - ucma_unlock_files(cur_file, new_file); + mutex_lock(&new_file->mut); + list_add_tail(&ctx->list, &new_file->ctx_list); + list_splice_tail(&event_list, &new_file->event_list); + mutex_unlock(&new_file->mut); -response: if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof(resp))) ret = -EFAULT; +err_unlock: + rdma_unlock_handler(ctx->cm_id); ucma_put_ctx(ctx); file_put: fdput(f); diff -u linux-azure-5.4.0/drivers/infiniband/core/umem.c linux-azure-5.4.0/drivers/infiniband/core/umem.c --- linux-azure-5.4.0/drivers/infiniband/core/umem.c +++ linux-azure-5.4.0/drivers/infiniband/core/umem.c @@ -42,6 +42,7 @@ #include #include "uverbs.h" +#include "ib_peer_mem.h" static void __ib_umem_release(struct ib_device *dev, struct ib_umem *umem, int dirty) { @@ -193,17 +194,18 @@ EXPORT_SYMBOL(ib_umem_find_best_pgsz); /** - * ib_umem_get - Pin and DMA map userspace memory. + * __ib_umem_get - Pin and DMA map userspace memory. * - * @udata: userspace context to pin memory for + * @device: IB device to connect UMEM * @addr: userspace virtual address to start at * @size: length of region to pin * @access: IB_ACCESS_xxx flags for memory being pinned + * @peer_mem_flags: IB_PEER_MEM_xxx flags for memory being used */ -struct ib_umem *ib_umem_get(struct ib_udata *udata, unsigned long addr, - size_t size, int access) +struct ib_umem *__ib_umem_get(struct ib_device *device, + unsigned long addr, size_t size, int access, + unsigned long peer_mem_flags) { - struct ib_ucontext *context; struct ib_umem *umem; struct page **page_list; unsigned long lock_limit; @@ -215,14 +217,6 @@ struct scatterlist *sg; unsigned int gup_flags = FOLL_WRITE; - if (!udata) - return ERR_PTR(-EIO); - - context = container_of(udata, struct uverbs_attr_bundle, driver_udata) - ->context; - if (!context) - return ERR_PTR(-EIO); - /* * If the combination of the addr and size requested for this memory * region causes an integer overflow, return error. @@ -240,7 +234,7 @@ umem = kzalloc(sizeof(*umem), GFP_KERNEL); if (!umem) return ERR_PTR(-ENOMEM); - umem->ibdev = context->device; + umem->ibdev = device; umem->length = size; umem->address = addr; umem->writable = ib_access_writable(access); @@ -295,7 +289,7 @@ npages -= ret; sg = ib_umem_add_sg_table(sg, page_list, ret, - dma_get_max_seg_size(context->device->dma_device), + dma_get_max_seg_size(device->dma_device), &umem->sg_nents); up_read(&mm->mmap_sem); @@ -303,10 +297,10 @@ sg_mark_end(sg); - umem->nmap = ib_dma_map_sg(context->device, - umem->sg_head.sgl, - umem->sg_nents, - DMA_BIDIRECTIONAL); + umem->nmap = ib_dma_map_sg(device, + umem->sg_head.sgl, + umem->sg_nents, + DMA_BIDIRECTIONAL); if (!umem->nmap) { ret = -ENOMEM; @@ -317,7 +311,25 @@ goto out; umem_release: - __ib_umem_release(context->device, umem, 0); + __ib_umem_release(device, umem, 0); + /* + * If the address belongs to peer memory client, then the first + * call to get_user_pages will fail. In this case, try to get + * these pages from the peers. + */ + //FIXME: this placement is horrible + if (ret < 0 && peer_mem_flags & IB_PEER_MEM_ALLOW) { + struct ib_umem *new_umem; + + new_umem = ib_peer_umem_get(umem, ret, peer_mem_flags); + if (IS_ERR(new_umem)) { + ret = PTR_ERR(new_umem); + goto vma; + } + umem = new_umem; + ret = 0; + goto out; + } vma: atomic64_sub(ib_umem_num_pages(umem), &mm->pinned_vm); out: @@ -329,8 +341,23 @@ } return ret ? ERR_PTR(ret) : umem; } + +struct ib_umem *ib_umem_get(struct ib_device *device, unsigned long addr, + size_t size, int access) +{ + return __ib_umem_get(device, addr, size, access, 0); +} EXPORT_SYMBOL(ib_umem_get); +struct ib_umem *ib_umem_get_peer(struct ib_device *device, unsigned long addr, + size_t size, int access, + unsigned long peer_mem_flags) +{ + return __ib_umem_get(device, addr, size, access, + IB_PEER_MEM_ALLOW | peer_mem_flags); +} +EXPORT_SYMBOL(ib_umem_get_peer); + /** * ib_umem_release - release memory pinned with ib_umem_get * @umem: umem struct to release @@ -342,6 +369,8 @@ if (umem->is_odp) return ib_umem_odp_release(to_ib_umem_odp(umem)); + if (umem->is_peer) + return ib_peer_umem_release(umem); __ib_umem_release(umem->ibdev, umem, 1); atomic64_sub(ib_umem_num_pages(umem), &umem->owning_mm->pinned_vm); diff -u linux-azure-5.4.0/drivers/infiniband/core/umem_odp.c linux-azure-5.4.0/drivers/infiniband/core/umem_odp.c --- linux-azure-5.4.0/drivers/infiniband/core/umem_odp.c +++ linux-azure-5.4.0/drivers/infiniband/core/umem_odp.c @@ -287,15 +287,12 @@ * They exist only to hold the per_mm reference to help the driver create * children umems. * - * @udata: udata from the syscall being used to create the umem + * @device: IB device to create UMEM * @access: ib_reg_mr access flags */ -struct ib_umem_odp *ib_umem_odp_alloc_implicit(struct ib_udata *udata, +struct ib_umem_odp *ib_umem_odp_alloc_implicit(struct ib_device *device, int access) { - struct ib_ucontext *context = - container_of(udata, struct uverbs_attr_bundle, driver_udata) - ->context; struct ib_umem *umem; struct ib_umem_odp *umem_odp; int ret; @@ -303,16 +300,14 @@ if (access & IB_ACCESS_HUGETLB) return ERR_PTR(-EINVAL); - if (!context) - return ERR_PTR(-EIO); - if (WARN_ON_ONCE(!context->device->ops.invalidate_range)) + if (WARN_ON_ONCE(!device->ops.invalidate_range)) return ERR_PTR(-EINVAL); umem_odp = kzalloc(sizeof(*umem_odp), GFP_KERNEL); if (!umem_odp) return ERR_PTR(-ENOMEM); umem = &umem_odp->umem; - umem->ibdev = context->device; + umem->ibdev = device; umem->writable = ib_access_writable(access); umem->owning_mm = current->mm; umem_odp->is_implicit_odp = 1; @@ -373,7 +368,7 @@ /** * ib_umem_odp_get - Create a umem_odp for a userspace va * - * @udata: userspace context to pin memory for + * @device: IB device struct to get UMEM * @addr: userspace virtual address to start at * @size: length of region to pin * @access: IB_ACCESS_xxx flags for memory being pinned @@ -382,31 +377,23 @@ * pinning, instead, stores the mm for future page fault handling in * conjunction with MMU notifiers. */ -struct ib_umem_odp *ib_umem_odp_get(struct ib_udata *udata, unsigned long addr, - size_t size, int access) +struct ib_umem_odp *ib_umem_odp_get(struct ib_device *device, + unsigned long addr, size_t size, + int access) { struct ib_umem_odp *umem_odp; - struct ib_ucontext *context; struct mm_struct *mm; int ret; - if (!udata) - return ERR_PTR(-EIO); - - context = container_of(udata, struct uverbs_attr_bundle, driver_udata) - ->context; - if (!context) - return ERR_PTR(-EIO); - if (WARN_ON_ONCE(!(access & IB_ACCESS_ON_DEMAND)) || - WARN_ON_ONCE(!context->device->ops.invalidate_range)) + WARN_ON_ONCE(!device->ops.invalidate_range)) return ERR_PTR(-EINVAL); umem_odp = kzalloc(sizeof(struct ib_umem_odp), GFP_KERNEL); if (!umem_odp) return ERR_PTR(-ENOMEM); - umem_odp->umem.ibdev = context->device; + umem_odp->umem.ibdev = device; umem_odp->umem.length = size; umem_odp->umem.address = addr; umem_odp->umem.writable = ib_access_writable(access); diff -u linux-azure-5.4.0/drivers/infiniband/core/uverbs_cmd.c linux-azure-5.4.0/drivers/infiniband/core/uverbs_cmd.c --- linux-azure-5.4.0/drivers/infiniband/core/uverbs_cmd.c +++ linux-azure-5.4.0/drivers/infiniband/core/uverbs_cmd.c @@ -3033,12 +3033,29 @@ if (!wq) return -EINVAL; - wq_attr.curr_wq_state = cmd.curr_wq_state; - wq_attr.wq_state = cmd.wq_state; if (cmd.attr_mask & IB_WQ_FLAGS) { wq_attr.flags = cmd.flags; wq_attr.flags_mask = cmd.flags_mask; } + + if (cmd.attr_mask & IB_WQ_CUR_STATE) { + if (cmd.curr_wq_state > IB_WQS_ERR) + return -EINVAL; + + wq_attr.curr_wq_state = cmd.curr_wq_state; + } else { + wq_attr.curr_wq_state = wq->state; + } + + if (cmd.attr_mask & IB_WQ_STATE) { + if (cmd.wq_state > IB_WQS_ERR) + return -EINVAL; + + wq_attr.wq_state = cmd.wq_state; + } else { + wq_attr.wq_state = wq_attr.curr_wq_state; + } + ret = wq->device->ops.modify_wq(wq, &wq_attr, cmd.attr_mask, &attrs->driver_udata); uobj_put_obj_read(wq); diff -u linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/ib_verbs.c linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/ib_verbs.c --- linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/ib_verbs.c +++ linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/ib_verbs.c @@ -855,7 +855,8 @@ bytes += (qplib_qp->sq.max_wqe * psn_sz); } bytes = PAGE_ALIGN(bytes); - umem = ib_umem_get(udata, ureq.qpsva, bytes, IB_ACCESS_LOCAL_WRITE); + umem = ib_umem_get(&rdev->ibdev, ureq.qpsva, bytes, + IB_ACCESS_LOCAL_WRITE); if (IS_ERR(umem)) return PTR_ERR(umem); @@ -868,7 +869,7 @@ if (!qp->qplib_qp.srq) { bytes = (qplib_qp->rq.max_wqe * BNXT_QPLIB_MAX_RQE_ENTRY_SIZE); bytes = PAGE_ALIGN(bytes); - umem = ib_umem_get(udata, ureq.qprva, bytes, + umem = ib_umem_get(&rdev->ibdev, ureq.qprva, bytes, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(umem)) goto rqfail; @@ -1322,7 +1323,8 @@ bytes = (qplib_srq->max_wqe * BNXT_QPLIB_MAX_RQE_ENTRY_SIZE); bytes = PAGE_ALIGN(bytes); - umem = ib_umem_get(udata, ureq.srqva, bytes, IB_ACCESS_LOCAL_WRITE); + umem = ib_umem_get(&rdev->ibdev, ureq.srqva, bytes, + IB_ACCESS_LOCAL_WRITE); if (IS_ERR(umem)) return PTR_ERR(umem); @@ -1404,6 +1406,7 @@ if (nq) nq->budget++; atomic_inc(&rdev->srq_count); + spin_lock_init(&srq->lock); return 0; @@ -2564,7 +2567,7 @@ goto fail; } - cq->umem = ib_umem_get(udata, req.cq_va, + cq->umem = ib_umem_get(&rdev->ibdev, req.cq_va, entries * sizeof(struct cq_base), IB_ACCESS_LOCAL_WRITE); if (IS_ERR(cq->umem)) { @@ -3080,8 +3083,11 @@ struct ib_wc *wc, struct bnxt_qplib_cqe *cqe) { + struct bnxt_re_dev *rdev; + u16 vlan_id = 0; u8 nw_type; + rdev = qp->rdev; wc->opcode = IB_WC_RECV; wc->status = __rc_to_ib_wc_status(cqe->status); @@ -3093,9 +3099,12 @@ memcpy(wc->smac, cqe->smac, ETH_ALEN); wc->wc_flags |= IB_WC_WITH_SMAC; if (cqe->flags & CQ_RES_UD_FLAGS_META_FORMAT_VLAN) { - wc->vlan_id = (cqe->cfa_meta & 0xFFF); - if (wc->vlan_id < 0x1000) - wc->wc_flags |= IB_WC_WITH_VLAN; + vlan_id = (cqe->cfa_meta & 0xFFF); + } + /* Mark only if vlan_id is non zero */ + if (vlan_id && bnxt_re_check_if_vlan_valid(rdev, vlan_id)) { + wc->vlan_id = vlan_id; + wc->wc_flags |= IB_WC_WITH_VLAN; } nw_type = (cqe->flags & CQ_RES_UD_FLAGS_ROCE_IP_VER_MASK) >> CQ_RES_UD_FLAGS_ROCE_IP_VER_SFT; @@ -3548,7 +3557,7 @@ /* The fixed portion of the rkey is the same as the lkey */ mr->ib_mr.rkey = mr->qplib_mr.rkey; - umem = ib_umem_get(udata, start, length, mr_access_flags); + umem = ib_umem_get(&rdev->ibdev, start, length, mr_access_flags); if (IS_ERR(umem)) { dev_err(rdev_to_dev(rdev), "Failed to get umem"); rc = -EFAULT; diff -u linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/qplib_fp.c linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/qplib_fp.c --- linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/qplib_fp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/bnxt_re/qplib_fp.c @@ -642,12 +642,13 @@ int rc = 0; RCFW_CMD_PREP(req, QUERY_SRQ, cmd_flags); - req.srq_cid = cpu_to_le32(srq->id); /* Configure the request */ sbuf = bnxt_qplib_rcfw_alloc_sbuf(rcfw, sizeof(*sb)); if (!sbuf) return -ENOMEM; + req.resp_size = sizeof(*sb) / BNXT_QPLIB_CMDQE_UNITS; + req.srq_cid = cpu_to_le32(srq->id); sb = sbuf->sb; rc = bnxt_qplib_rcfw_send_message(rcfw, (void *)&req, (void *)&resp, (void *)sbuf, 0); diff -u linux-azure-5.4.0/drivers/infiniband/hw/cxgb3/iwch_provider.c linux-azure-5.4.0/drivers/infiniband/hw/cxgb3/iwch_provider.c --- linux-azure-5.4.0/drivers/infiniband/hw/cxgb3/iwch_provider.c +++ linux-azure-5.4.0/drivers/infiniband/hw/cxgb3/iwch_provider.c @@ -451,7 +451,7 @@ mhp->rhp = rhp; - mhp->umem = ib_umem_get(udata, start, length, acc); + mhp->umem = ib_umem_get(pd->device, start, length, acc); if (IS_ERR(mhp->umem)) { err = PTR_ERR(mhp->umem); kfree(mhp); diff -u linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/mem.c linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/mem.c --- linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/mem.c +++ linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/mem.c @@ -542,7 +542,7 @@ mhp->rhp = rhp; - mhp->umem = ib_umem_get(udata, start, length, acc); + mhp->umem = ib_umem_get(pd->device, start, length, acc); if (IS_ERR(mhp->umem)) goto err_free_skb; diff -u linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/qp.c linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/qp.c --- linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/qp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/cxgb4/qp.c @@ -295,6 +295,7 @@ if (user && (!wq->sq.bar2_pa || (need_rq && !wq->rq.bar2_pa))) { pr_warn("%s: sqid %u or rqid %u not in BAR2 range\n", pci_name(rdev->lldi.pdev), wq->sq.qid, wq->rq.qid); + ret = -EINVAL; goto free_dma; } @@ -2468,6 +2469,7 @@ memset(attr, 0, sizeof(*attr)); memset(init_attr, 0, sizeof(*init_attr)); attr->qp_state = to_ib_qp_state(qhp->attr.state); + attr->cur_qp_state = to_ib_qp_state(qhp->attr.state); init_attr->cap.max_send_wr = qhp->attr.sq_num_entries; init_attr->cap.max_recv_wr = qhp->attr.rq_num_entries; init_attr->cap.max_send_sge = qhp->attr.sq_max_sges; diff -u linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_admin_cmds_defs.h linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_admin_cmds_defs.h --- linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_admin_cmds_defs.h +++ linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_admin_cmds_defs.h @@ -606,6 +606,9 @@ /* The maximum size of LLQ in bytes */ u32 max_llq_size; + /* Maximum number of SGEs for a single RDMA read WQE */ + u16 max_wr_rdma_sges; + /* * Maximum number of bytes that can be written to SQ between two * consecutive doorbells (in units of 64B). Driver must ensure that only diff -u linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_main.c linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_main.c --- linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_main.c +++ linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_main.c @@ -342,6 +342,7 @@ } if (irq_num != msix_vecs) { + efa_disable_msix(dev); dev_err(&dev->pdev->dev, "Allocated %d MSI-X (out of %d requested)\n", irq_num, msix_vecs); diff -u linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_verbs.c linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_verbs.c --- linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_verbs.c +++ linux-azure-5.4.0/drivers/infiniband/hw/efa/efa_verbs.c @@ -745,7 +745,6 @@ rq_entry_inserted = true; qp->qp_handle = create_qp_resp.qp_handle; qp->ibqp.qp_num = create_qp_resp.qp_num; - qp->ibqp.qp_type = init_attr->qp_type; qp->max_send_wr = init_attr->cap.max_send_wr; qp->max_recv_wr = init_attr->cap.max_recv_wr; qp->max_send_sge = init_attr->cap.max_send_sge; @@ -1423,7 +1422,7 @@ goto err_out; } - mr->umem = ib_umem_get(udata, start, length, access_flags); + mr->umem = ib_umem_get(ibpd->device, start, length, access_flags); if (IS_ERR(mr->umem)) { err = PTR_ERR(mr->umem); ibdev_dbg(&dev->ibdev, diff -u linux-azure-5.4.0/drivers/infiniband/hw/hfi1/file_ops.c linux-azure-5.4.0/drivers/infiniband/hw/hfi1/file_ops.c --- linux-azure-5.4.0/drivers/infiniband/hw/hfi1/file_ops.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hfi1/file_ops.c @@ -308,6 +308,8 @@ unsigned long dim = from->nr_segs; int idx; + if (!HFI1_CAP_IS_KSET(SDMA)) + return -EINVAL; idx = srcu_read_lock(&fd->pq_srcu); pq = srcu_dereference(fd->pq, &fd->pq_srcu); if (!cq || !pq) { @@ -1222,8 +1224,10 @@ goto done; ret = init_user_ctxt(fd, uctxt); - if (ret) + if (ret) { + hfi1_free_ctxt_rcv_groups(uctxt); goto done; + } user_init(uctxt); diff -u linux-azure-5.4.0/drivers/infiniband/hw/hfi1/init.c linux-azure-5.4.0/drivers/infiniband/hw/hfi1/init.c --- linux-azure-5.4.0/drivers/infiniband/hw/hfi1/init.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hfi1/init.c @@ -543,7 +543,7 @@ u16 shift, mult; u64 src; u32 current_egress_rate; /* Mbits /sec */ - u32 max_pkt_time; + u64 max_pkt_time; /* * max_pkt_time is the maximum packet egress time in units * of the fabric clock period 1/(805 MHz). @@ -664,12 +664,7 @@ ppd->pkeys[default_pkey_idx] = DEFAULT_P_KEY; ppd->part_enforce |= HFI1_PART_ENFORCE_IN; - - if (loopback) { - dd_dev_err(dd, "Faking data partition 0x8001 in idx %u\n", - !default_pkey_idx); - ppd->pkeys[!default_pkey_idx] = 0x8001; - } + ppd->pkeys[0] = 0x8001; INIT_WORK(&ppd->link_vc_work, handle_verify_cap); INIT_WORK(&ppd->link_up_work, handle_link_up); @@ -1180,7 +1175,7 @@ rcd->egrbufs.rcvtids = NULL; for (e = 0; e < rcd->egrbufs.alloced; e++) { - if (rcd->egrbufs.buffers[e].dma) + if (rcd->egrbufs.buffers[e].addr) dma_free_coherent(&dd->pcidev->dev, rcd->egrbufs.buffers[e].len, rcd->egrbufs.buffers[e].addr, diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_cq.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_cq.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_cq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_cq.c @@ -163,7 +163,7 @@ u32 npages; int ret; - *umem = ib_umem_get(udata, ucmd.buf_addr, buf->size, + *umem = ib_umem_get(&hr_dev->ib_dev, ucmd.buf_addr, buf->size, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(*umem)) return PTR_ERR(*umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_db.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_db.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_db.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_db.c @@ -31,7 +31,8 @@ refcount_set(&page->refcount, 1); page->user_virt = page_addr; - page->umem = ib_umem_get(udata, page_addr, PAGE_SIZE, 0); + page->umem = ib_umem_get(context->ibucontext.device, page_addr, + PAGE_SIZE, 0); if (IS_ERR(page->umem)) { ret = PTR_ERR(page->umem); kfree(page); diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -5442,8 +5442,8 @@ dev_err(dev, "AEQ overflow!\n"); - int_st |= 1 << HNS_ROCE_V2_VF_INT_ST_AEQ_OVERFLOW_S; - roce_write(hr_dev, ROCEE_VF_ABN_INT_ST_REG, int_st); + roce_write(hr_dev, ROCEE_VF_ABN_INT_ST_REG, + 1 << HNS_ROCE_V2_VF_INT_ST_AEQ_OVERFLOW_S); /* Set reset level for reset_event() */ if (ops->set_default_reset_request) diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.h @@ -91,7 +91,7 @@ #define HNS_ROCE_V2_SCCC_ENTRY_SZ 32 #define HNS_ROCE_V2_QPC_TIMER_ENTRY_SZ PAGE_SIZE #define HNS_ROCE_V2_CQC_TIMER_ENTRY_SZ PAGE_SIZE -#define HNS_ROCE_V2_PAGE_SIZE_SUPPORTED 0xFFFFF000 +#define HNS_ROCE_V2_PAGE_SIZE_SUPPORTED 0xFFFF000 #define HNS_ROCE_V2_MAX_INNER_MTPT_NUM 2 #define HNS_ROCE_INVALID_LKEY 0x100 #define HNS_ROCE_CMQ_TX_TIMEOUT 30000 diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_main.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_main.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_main.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_main.c @@ -280,6 +280,9 @@ static int hns_roce_query_pkey(struct ib_device *ib_dev, u8 port, u16 index, u16 *pkey) { + if (index > 0) + return -EINVAL; + *pkey = PKEY_ID; return 0; @@ -354,7 +357,7 @@ return rdma_user_mmap_io(context, vma, to_hr_ucontext(context)->uar.pfn, PAGE_SIZE, - pgprot_noncached(vma->vm_page_prot), + pgprot_device(vma->vm_page_prot), NULL); /* vm_pgoff: 1 -- TPTR */ diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_mr.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_mr.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_mr.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_mr.c @@ -1145,7 +1145,7 @@ if (!mr) return ERR_PTR(-ENOMEM); - mr->umem = ib_umem_get(udata, start, length, access_flags); + mr->umem = ib_umem_get(pd->device, start, length, access_flags); if (IS_ERR(mr->umem)) { ret = PTR_ERR(mr->umem); goto err_free; @@ -1230,7 +1230,7 @@ } ib_umem_release(mr->umem); - mr->umem = ib_umem_get(udata, start, length, mr_access_flags); + mr->umem = ib_umem_get(ibmr->device, start, length, mr_access_flags); if (IS_ERR(mr->umem)) { ret = PTR_ERR(mr->umem); mr->umem = NULL; diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_qp.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_qp.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_qp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_qp.c @@ -833,7 +833,7 @@ } if (udata) { - hr_qp->umem = ib_umem_get(udata, addr, hr_qp->buff_size, 0); + hr_qp->umem = ib_umem_get(ibdev, addr, hr_qp->buff_size, 0); if (IS_ERR(hr_qp->umem)) { ret = PTR_ERR(hr_qp->umem); goto err_inline; diff -u linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_srq.c linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_srq.c --- linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_srq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hns/hns_roce_srq.c @@ -186,7 +186,8 @@ if (ib_copy_from_udata(&ucmd, udata, sizeof(ucmd))) return -EFAULT; - srq->umem = ib_umem_get(udata, ucmd.buf_addr, srq_buf_size, 0); + srq->umem = + ib_umem_get(srq->ibsrq.device, ucmd.buf_addr, srq_buf_size, 0); if (IS_ERR(srq->umem)) return PTR_ERR(srq->umem); @@ -205,7 +206,7 @@ goto err_user_srq_mtt; /* config index queue BA */ - srq->idx_que.umem = ib_umem_get(udata, ucmd.que_addr, + srq->idx_que.umem = ib_umem_get(srq->ibsrq.device, ucmd.que_addr, srq->idx_que.buf_size, 0); if (IS_ERR(srq->idx_que.umem)) { dev_err(hr_dev->dev, "ib_umem_get error for index queue\n"); diff -u linux-azure-5.4.0/drivers/infiniband/hw/i40iw/i40iw_verbs.c linux-azure-5.4.0/drivers/infiniband/hw/i40iw/i40iw_verbs.c --- linux-azure-5.4.0/drivers/infiniband/hw/i40iw/i40iw_verbs.c +++ linux-azure-5.4.0/drivers/infiniband/hw/i40iw/i40iw_verbs.c @@ -1754,7 +1754,7 @@ if (length > I40IW_MAX_MR_SIZE) return ERR_PTR(-EINVAL); - region = ib_umem_get(udata, start, length, acc); + region = ib_umem_get(pd->device, start, length, acc); if (IS_ERR(region)) return (struct ib_mr *)region; diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/cq.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/cq.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/cq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/cq.c @@ -144,7 +144,7 @@ int shift; int n; - *umem = ib_umem_get(udata, buf_addr, cqe * cqe_size, + *umem = ib_umem_get(&dev->ib_dev, buf_addr, cqe * cqe_size, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(*umem)) return PTR_ERR(*umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/doorbell.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/doorbell.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/doorbell.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/doorbell.c @@ -64,7 +64,8 @@ page->user_virt = (virt & PAGE_MASK); page->refcnt = 0; - page->umem = ib_umem_get(udata, virt & PAGE_MASK, PAGE_SIZE, 0); + page->umem = ib_umem_get(context->ibucontext.device, virt & PAGE_MASK, + PAGE_SIZE, 0); if (IS_ERR(page->umem)) { err = PTR_ERR(page->umem); kfree(page); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/main.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/main.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/main.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/main.c @@ -577,12 +577,9 @@ props->cq_caps.max_cq_moderation_count = MLX4_MAX_CQ_COUNT; props->cq_caps.max_cq_moderation_period = MLX4_MAX_CQ_PERIOD; - if (!mlx4_is_slave(dev->dev)) - err = mlx4_get_internal_clock_params(dev->dev, &clock_params); - if (uhw->outlen >= resp.response_length + sizeof(resp.hca_core_clock_offset)) { resp.response_length += sizeof(resp.hca_core_clock_offset); - if (!err && !mlx4_is_slave(dev->dev)) { + if (!mlx4_get_internal_clock_params(dev->dev, &clock_params)) { resp.comp_mask |= MLX4_IB_QUERY_DEV_RESP_MASK_CORE_CLOCK_OFFSET; resp.hca_core_clock_offset = clock_params.offset % PAGE_SIZE; } @@ -3297,7 +3294,7 @@ case MLX4_DEV_EVENT_PORT_MGMT_CHANGE: ew = kmalloc(sizeof *ew, GFP_ATOMIC); if (!ew) - break; + return; INIT_WORK(&ew->work, handle_port_mgmt_change_event); memcpy(&ew->ib_eqe, eqe, sizeof *eqe); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/mr.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/mr.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/mr.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/mr.c @@ -367,7 +367,7 @@ return block_shift; } -static struct ib_umem *mlx4_get_umem_mr(struct ib_udata *udata, u64 start, +static struct ib_umem *mlx4_get_umem_mr(struct ib_device *device, u64 start, u64 length, int access_flags) { /* @@ -398,7 +398,7 @@ up_read(¤t->mm->mmap_sem); } - return ib_umem_get(udata, start, length, access_flags); + return ib_umem_get(device, start, length, access_flags); } struct ib_mr *mlx4_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, @@ -415,7 +415,7 @@ if (!mr) return ERR_PTR(-ENOMEM); - mr->umem = mlx4_get_umem_mr(udata, start, length, access_flags); + mr->umem = mlx4_get_umem_mr(pd->device, start, length, access_flags); if (IS_ERR(mr->umem)) { err = PTR_ERR(mr->umem); goto err_free; @@ -503,7 +503,7 @@ mlx4_mr_rereg_mem_cleanup(dev->dev, &mmr->mmr); ib_umem_release(mmr->umem); - mmr->umem = mlx4_get_umem_mr(udata, start, length, + mmr->umem = mlx4_get_umem_mr(mr->device, start, length, mr_access_flags); if (IS_ERR(mmr->umem)) { err = PTR_ERR(mmr->umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/qp.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/qp.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/qp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/qp.c @@ -916,7 +916,7 @@ qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) + (qp->sq.wqe_cnt << qp->sq.wqe_shift); - qp->umem = ib_umem_get(udata, wq.buf_addr, qp->buf_size, 0); + qp->umem = ib_umem_get(pd->device, wq.buf_addr, qp->buf_size, 0); if (IS_ERR(qp->umem)) { err = PTR_ERR(qp->umem); goto err; @@ -1110,7 +1110,8 @@ if (err) goto err; - qp->umem = ib_umem_get(udata, ucmd.buf_addr, qp->buf_size, 0); + qp->umem = + ib_umem_get(pd->device, ucmd.buf_addr, qp->buf_size, 0); if (IS_ERR(qp->umem)) { err = PTR_ERR(qp->umem); goto err; @@ -1148,8 +1149,10 @@ if (dev->steering_support == MLX4_STEERING_MODE_DEVICE_MANAGED) qp->flags |= MLX4_IB_QP_NETIF; - else + else { + err = -EINVAL; goto err; + } } err = set_kernel_sq_size(dev, &init_attr->cap, qp_type, qp); @@ -4293,13 +4296,8 @@ if (wq_attr_mask & IB_WQ_FLAGS) return -EOPNOTSUPP; - cur_state = wq_attr_mask & IB_WQ_CUR_STATE ? wq_attr->curr_wq_state : - ibwq->state; - new_state = wq_attr_mask & IB_WQ_STATE ? wq_attr->wq_state : cur_state; - - if (cur_state < IB_WQS_RESET || cur_state > IB_WQS_ERR || - new_state < IB_WQS_RESET || new_state > IB_WQS_ERR) - return -EINVAL; + cur_state = wq_attr->curr_wq_state; + new_state = wq_attr->wq_state; if ((new_state == IB_WQS_RDY) && (cur_state == IB_WQS_ERR)) return -EINVAL; diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx4/srq.c linux-azure-5.4.0/drivers/infiniband/hw/mlx4/srq.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx4/srq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx4/srq.c @@ -110,7 +110,8 @@ if (ib_copy_from_udata(&ucmd, udata, sizeof(ucmd))) return -EFAULT; - srq->umem = ib_umem_get(udata, ucmd.buf_addr, buf_size, 0); + srq->umem = + ib_umem_get(ib_srq->device, ucmd.buf_addr, buf_size, 0); if (IS_ERR(srq->umem)) return PTR_ERR(srq->umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/cq.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/cq.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/cq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/cq.c @@ -733,8 +733,9 @@ *cqe_size = ucmd.cqe_size; cq->buf.umem = - ib_umem_get(udata, ucmd.buf_addr, entries * ucmd.cqe_size, - IB_ACCESS_LOCAL_WRITE); + ib_umem_get_peer(&dev->ib_dev, ucmd.buf_addr, + entries * ucmd.cqe_size, + IB_ACCESS_LOCAL_WRITE, 0); if (IS_ERR(cq->buf.umem)) { err = PTR_ERR(cq->buf.umem); return err; @@ -829,15 +830,14 @@ ib_umem_release(cq->buf.umem); } -static void init_cq_frag_buf(struct mlx5_ib_cq *cq, - struct mlx5_ib_cq_buf *buf) +static void init_cq_frag_buf(struct mlx5_ib_cq_buf *buf) { int i; void *cqe; struct mlx5_cqe64 *cqe64; for (i = 0; i < buf->nent; i++) { - cqe = get_cqe(cq, i); + cqe = mlx5_frag_buf_get_wqe(&buf->fbc, i); cqe64 = buf->cqe_size == 64 ? cqe : cqe + 64; cqe64->op_own = MLX5_CQE_INVALID << 4; } @@ -863,7 +863,7 @@ if (err) goto err_db; - init_cq_frag_buf(cq, &cq->buf); + init_cq_frag_buf(&cq->buf); *inlen = MLX5_ST_SZ_BYTES(create_cq_in) + MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * @@ -1133,9 +1133,9 @@ if (ucmd.cqe_size && SIZE_MAX / ucmd.cqe_size <= entries - 1) return -EINVAL; - umem = ib_umem_get(udata, ucmd.buf_addr, - (size_t)ucmd.cqe_size * entries, - IB_ACCESS_LOCAL_WRITE); + umem = ib_umem_get_peer(&dev->ib_dev, ucmd.buf_addr, + (size_t)ucmd.cqe_size * entries, + IB_ACCESS_LOCAL_WRITE, 0); if (IS_ERR(umem)) { err = PTR_ERR(umem); return err; @@ -1163,7 +1163,7 @@ if (err) goto ex; - init_cq_frag_buf(cq, cq->resize_buf); + init_cq_frag_buf(cq->resize_buf); return 0; diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/devx.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/devx.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/devx.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/devx.c @@ -1857,8 +1857,10 @@ key_level2, obj_event, GFP_KERNEL); - if (err) + if (err) { + kfree(obj_event); return err; + } INIT_LIST_HEAD(&obj_event->obj_sub_list); } @@ -2143,7 +2145,7 @@ if (err) return err; - obj->umem = ib_umem_get(&attrs->driver_udata, addr, size, access); + obj->umem = ib_umem_get_peer(&dev->ib_dev, addr, size, access, 0); if (IS_ERR(obj->umem)) return PTR_ERR(obj->umem); @@ -2190,6 +2192,8 @@ mlx5_ib_populate_pas(dev, obj->umem, obj->page_shift, mtt, (obj->umem->writable ? MLX5_IB_MTT_WRITE : 0) | MLX5_IB_MTT_READ); + if (obj->umem->is_peer && MLX5_CAP_GEN(dev->mdev, ats)) + MLX5_SET(umem, umem, ats, 1); } static int UVERBS_HANDLER(MLX5_IB_METHOD_DEVX_UMEM_REG)( diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/doorbell.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/doorbell.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/doorbell.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/doorbell.c @@ -64,7 +64,8 @@ page->user_virt = (virt & PAGE_MASK); page->refcnt = 0; - page->umem = ib_umem_get(udata, virt & PAGE_MASK, PAGE_SIZE, 0); + page->umem = ib_umem_get_peer(context->ibucontext.device, virt & PAGE_MASK, + PAGE_SIZE, 0, 0); if (IS_ERR(page->umem)) { err = PTR_ERR(page->umem); kfree(page); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/flow.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/flow.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/flow.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/flow.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "mlx5_ib.h" #define UVERBS_MODULE_NAME mlx5_ib @@ -337,6 +338,13 @@ if (err) goto end; + if (obj->ns_type == MLX5_FLOW_NAMESPACE_FDB && + mlx5_eswitch_mode(dev->mdev->priv.eswitch) != + MLX5_ESWITCH_OFFLOADS) { + err = -EINVAL; + goto end; + } + uobj->object = obj; obj->mdev = dev->mdev; atomic_set(&obj->usecnt, 0); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/main.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/main.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/main.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/main.c @@ -5868,8 +5868,6 @@ port->mp.mpi = NULL; - list_add_tail(&mpi->list, &mlx5_ib_unaffiliated_port_list); - spin_unlock(&port->mp.mpi_lock); err = mlx5_nic_vport_unaffiliate_multiport(mpi->mdev); @@ -6022,6 +6020,8 @@ dev->port[i].mp.mpi = NULL; } else { mlx5_ib_dbg(dev, "unbinding port_num: %d\n", i + 1); + list_add_tail(&dev->port[i].mp.mpi->list, + &mlx5_ib_unaffiliated_port_list); mlx5_ib_unbind_slave_port(dev, dev->port[i].mp.mpi); } } diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mem.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mem.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mem.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mem.c @@ -56,16 +56,17 @@ int i = 0; struct scatterlist *sg; int entry; + int page_shift = umem->is_peer ? umem->page_shift : PAGE_SHIFT; - addr = addr >> PAGE_SHIFT; + addr = addr >> page_shift; tmp = (unsigned long)addr; m = find_first_bit(&tmp, BITS_PER_LONG); if (max_page_shift) - m = min_t(unsigned long, max_page_shift - PAGE_SHIFT, m); + m = min_t(unsigned long, max_page_shift - page_shift, m); for_each_sg(umem->sg_head.sgl, sg, umem->nmap, entry) { - len = sg_dma_len(sg) >> PAGE_SHIFT; - pfn = sg_dma_address(sg) >> PAGE_SHIFT; + len = sg_dma_len(sg) >> page_shift; + pfn = sg_dma_address(sg) >> page_shift; if (base + p != pfn) { /* If either the offset or the new * base are unaligned update m @@ -97,7 +98,7 @@ *ncont = 0; } - *shift = PAGE_SHIFT + m; + *shift = page_shift + m; *count = i; } diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mr.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mr.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mr.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mr.c @@ -41,6 +41,8 @@ #include #include "mlx5_ib.h" +static void mlx5_invalidate_umem(struct ib_umem *umem, void *priv); + enum { MAX_PENDING_REG_MR = 8, }; @@ -752,10 +754,9 @@ return MLX5_MAX_UMR_SHIFT; } -static int mr_umem_get(struct mlx5_ib_dev *dev, struct ib_udata *udata, - u64 start, u64 length, int access_flags, - struct ib_umem **umem, int *npages, int *page_shift, - int *ncont, int *order) +static int mr_umem_get(struct mlx5_ib_dev *dev, u64 start, u64 length, + int access_flags, struct ib_umem **umem, int *npages, + int *page_shift, int *ncont, int *order, bool allow_peer) { struct ib_umem *u; @@ -764,7 +765,8 @@ if (access_flags & IB_ACCESS_ON_DEMAND) { struct ib_umem_odp *odp; - odp = ib_umem_odp_get(udata, start, length, access_flags); + odp = ib_umem_odp_get(&dev->ib_dev, start, length, + access_flags); if (IS_ERR(odp)) { mlx5_ib_dbg(dev, "umem get failed (%ld)\n", PTR_ERR(odp)); @@ -779,7 +781,13 @@ if (order) *order = ilog2(roundup_pow_of_two(*ncont)); } else { - u = ib_umem_get(udata, start, length, access_flags); + if (allow_peer) + u = ib_umem_get_peer(&dev->ib_dev, start, length, + access_flags, + IB_PEER_MEM_INVAL_SUPP); + else + u = ib_umem_get(&dev->ib_dev, start, length, + access_flags); if (IS_ERR(u)) { mlx5_ib_dbg(dev, "umem get failed (%ld)\n", PTR_ERR(u)); return PTR_ERR(u); @@ -1113,6 +1121,9 @@ get_octo_len(virt_addr, length, page_shift)); } + if (umem->is_peer && MLX5_CAP_GEN(dev->mdev, ats)) + MLX5_SET(mkc, mkc, ma_tranlation_mode, 1); + err = mlx5_core_create_mkey(dev->mdev, &mr->mmkey, in, inlen); if (err) { mlx5_ib_warn(dev, "create mkey failed\n"); @@ -1283,15 +1294,17 @@ return &mr->ibmr; } - err = mr_umem_get(dev, udata, start, length, access_flags, &umem, - &npages, &page_shift, &ncont, &order); + err = mr_umem_get(dev, start, length, access_flags, &umem, + &npages, &page_shift, &ncont, &order, true); if (err < 0) return ERR_PTR(err); use_umr = mlx5_ib_can_use_umr(dev, true); - if (order <= mr_cache_max_order(dev) && use_umr) { + if (umem->is_peer && MLX5_CAP_GEN(dev->mdev, ats)) { + use_umr = false; + } else if (order <= mr_cache_max_order(dev) && use_umr) { mr = alloc_mr_from_cache(pd, umem, virt_addr, length, ncont, page_shift, order, access_flags); if (PTR_ERR(mr) == -EAGAIN) { @@ -1316,6 +1329,8 @@ if (IS_ERR(mr)) { err = PTR_ERR(mr); + if (umem->is_peer) + ib_umem_stop_invalidation_notifier(umem); goto error; } @@ -1339,6 +1354,12 @@ } } + if (umem->is_peer) { + ib_umem_activate_invalidation_notifier( + umem, mlx5_invalidate_umem, mr); + /* After this point the MR can be invalidated */ + } + if (is_odp_mr(mr)) { to_ib_umem_odp(mr->umem)->private = mr; atomic_set(&mr->num_pending_prefetch, 0); @@ -1416,6 +1437,10 @@ atomic_sub(mr->npages, &dev->mdev->priv.reg_pages); + /* Peer memory isn't supported */ + if (mr->umem->is_peer) + return -EOPNOTSUPP; + if (!mr->umem) return -EINVAL; @@ -1438,9 +1463,8 @@ flags |= IB_MR_REREG_TRANS; ib_umem_release(mr->umem); mr->umem = NULL; - err = mr_umem_get(dev, udata, addr, len, access_flags, - &mr->umem, &npages, &page_shift, &ncont, - &order); + err = mr_umem_get(dev, addr, len, access_flags, &mr->umem, + &npages, &page_shift, &ncont, &order, false); if (err) goto err; } @@ -1613,6 +1637,17 @@ /* Avoid double-freeing the umem. */ umem = NULL; } + else { + /* + * For peers, need to disable the invalidation notifier + * before calling destroy_mkey(). + */ + if (umem && umem->is_peer) { + if (unreg_umr(mr->dev ,mr)) + return; + ib_umem_stop_invalidation_notifier(umem); + } + } clean_mr(dev, mr); @@ -1620,13 +1655,14 @@ * We should unregister the DMA address from the HCA before * remove the DMA mapping. */ - mlx5_mr_cache_free(dev, mr); + if (mr->allocated_from_cache) + mlx5_mr_cache_free(dev, mr); + else + kfree(mr); + ib_umem_release(umem); if (umem) atomic_sub(npages, &dev->mdev->priv.reg_pages); - - if (!mr->allocated_from_cache) - kfree(mr); } int mlx5_ib_dereg_mr(struct ib_mr *ibmr, struct ib_udata *udata) @@ -2338,0 +2375,12 @@ + +static void mlx5_invalidate_umem(struct ib_umem *umem, void *priv) +{ + struct mlx5_ib_mr *mr = priv; + + /* + * DMA is turned off for the mkey, but the mkey remains otherwise + * untouched until the normal flow of dereg_mr happens. Any access to + * this mkey will generate CQEs. + */ + unreg_umr(mr->dev ,mr); +} diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/qp.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/qp.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/qp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/qp.c @@ -749,7 +749,7 @@ { int err; - *umem = ib_umem_get(udata, addr, size, 0); + *umem = ib_umem_get_peer(&dev->ib_dev, addr, size, 0, 0); if (IS_ERR(*umem)) { mlx5_ib_dbg(dev, "umem_get failed\n"); return PTR_ERR(*umem); @@ -806,7 +806,7 @@ if (!ucmd->buf_addr) return -EINVAL; - rwq->umem = ib_umem_get(udata, ucmd->buf_addr, rwq->buf_size, 0); + rwq->umem = ib_umem_get(&dev->ib_dev, ucmd->buf_addr, rwq->buf_size, 0); if (IS_ERR(rwq->umem)) { mlx5_ib_dbg(dev, "umem_get failed\n"); err = PTR_ERR(rwq->umem); @@ -3868,6 +3868,8 @@ MLX5_SET(dctc, dctc, mtu, attr->path_mtu); MLX5_SET(dctc, dctc, my_addr_index, attr->ah_attr.grh.sgid_index); MLX5_SET(dctc, dctc, hop_limit, attr->ah_attr.grh.hop_limit); + if (attr->ah_attr.type == RDMA_AH_ATTR_TYPE_ROCE) + MLX5_SET(dctc, dctc, eth_prio, attr->ah_attr.sl & 0x7); err = mlx5_core_create_dct(dev->mdev, &qp->dct.mdct, qp->dct.in, MLX5_ST_SZ_BYTES(create_dct_in), out, @@ -6319,10 +6321,8 @@ rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx); - curr_wq_state = (wq_attr_mask & IB_WQ_CUR_STATE) ? - wq_attr->curr_wq_state : wq->state; - wq_state = (wq_attr_mask & IB_WQ_STATE) ? - wq_attr->wq_state : curr_wq_state; + curr_wq_state = wq_attr->curr_wq_state; + wq_state = wq_attr->wq_state; if (curr_wq_state == IB_WQS_ERR) curr_wq_state = MLX5_RQC_STATE_ERR; if (wq_state == IB_WQS_ERR) diff -u linux-azure-5.4.0/drivers/infiniband/hw/mlx5/srq.c linux-azure-5.4.0/drivers/infiniband/hw/mlx5/srq.c --- linux-azure-5.4.0/drivers/infiniband/hw/mlx5/srq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/srq.c @@ -80,7 +80,7 @@ srq->wq_sig = !!(ucmd.flags & MLX5_SRQ_FLAG_SIGNATURE); - srq->umem = ib_umem_get(udata, ucmd.buf_addr, buf_size, 0); + srq->umem = ib_umem_get_peer(pd->device, ucmd.buf_addr, buf_size, 0, 0); if (IS_ERR(srq->umem)) { mlx5_ib_dbg(dev, "failed umem get, size %d\n", buf_size); err = PTR_ERR(srq->umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/mthca/mthca_provider.c linux-azure-5.4.0/drivers/infiniband/hw/mthca/mthca_provider.c --- linux-azure-5.4.0/drivers/infiniband/hw/mthca/mthca_provider.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mthca/mthca_provider.c @@ -880,7 +880,7 @@ if (!mr) return ERR_PTR(-ENOMEM); - mr->umem = ib_umem_get(udata, start, length, acc); + mr->umem = ib_umem_get(pd->device, start, length, acc); if (IS_ERR(mr->umem)) { err = PTR_ERR(mr->umem); goto err; diff -u linux-azure-5.4.0/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c linux-azure-5.4.0/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c --- linux-azure-5.4.0/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c +++ linux-azure-5.4.0/drivers/infiniband/hw/ocrdma/ocrdma_verbs.c @@ -875,7 +875,7 @@ mr = kzalloc(sizeof(*mr), GFP_KERNEL); if (!mr) return ERR_PTR(status); - mr->umem = ib_umem_get(udata, start, len, acc); + mr->umem = ib_umem_get(ibpd->device, start, len, acc); if (IS_ERR(mr->umem)) { status = -EFAULT; goto umem_err; diff -u linux-azure-5.4.0/drivers/infiniband/hw/qedr/main.c linux-azure-5.4.0/drivers/infiniband/hw/qedr/main.c --- linux-azure-5.4.0/drivers/infiniband/hw/qedr/main.c +++ linux-azure-5.4.0/drivers/infiniband/hw/qedr/main.c @@ -362,6 +362,10 @@ if (IS_IWARP(dev)) { xa_init(&dev->qps); dev->iwarp_wq = create_singlethread_workqueue("qedr_iwarpq"); + if (!dev->iwarp_wq) { + rc = -ENOMEM; + goto err1; + } } /* Allocate Status blocks for CNQ */ @@ -369,7 +373,7 @@ GFP_KERNEL); if (!dev->sb_array) { rc = -ENOMEM; - goto err1; + goto err_destroy_wq; } dev->cnq_array = kcalloc(dev->num_cnq, @@ -423,6 +427,9 @@ kfree(dev->cnq_array); err2: kfree(dev->sb_array); +err_destroy_wq: + if (IS_IWARP(dev)) + destroy_workqueue(dev->iwarp_wq); err1: kfree(dev->sgid_tbl); return rc; diff -u linux-azure-5.4.0/drivers/infiniband/hw/qedr/qedr.h linux-azure-5.4.0/drivers/infiniband/hw/qedr/qedr.h --- linux-azure-5.4.0/drivers/infiniband/hw/qedr/qedr.h +++ linux-azure-5.4.0/drivers/infiniband/hw/qedr/qedr.h @@ -416,6 +416,7 @@ u32 sq_psn; u32 qkey; u32 dest_qp_num; + u8 timeout; /* Relevant to qps created from kernel space only (ULPs) */ u8 prev_wqe_size; diff -u linux-azure-5.4.0/drivers/infiniband/hw/qedr/verbs.c linux-azure-5.4.0/drivers/infiniband/hw/qedr/verbs.c --- linux-azure-5.4.0/drivers/infiniband/hw/qedr/verbs.c +++ linux-azure-5.4.0/drivers/infiniband/hw/qedr/verbs.c @@ -706,7 +706,7 @@ q->buf_addr = buf_addr; q->buf_len = buf_len; - q->umem = ib_umem_get(udata, q->buf_addr, q->buf_len, access); + q->umem = ib_umem_get(&dev->ibdev, q->buf_addr, q->buf_len, access); if (IS_ERR(q->umem)) { DP_ERR(dev, "create user queue: failed ib_umem_get, got %ld\n", PTR_ERR(q->umem)); @@ -1292,9 +1292,8 @@ if (rc) return rc; - srq->prod_umem = - ib_umem_get(udata, ureq->prod_pair_addr, - sizeof(struct rdma_srq_producers), access); + srq->prod_umem = ib_umem_get(srq->ibsrq.device, ureq->prod_pair_addr, + sizeof(struct rdma_srq_producers), access); if (IS_ERR(srq->prod_umem)) { qedr_free_pbl(srq->dev, &srq->usrq.pbl_info, srq->usrq.pbl_tbl); ib_umem_release(srq->usrq.umem); @@ -2258,6 +2257,8 @@ 1 << max_t(int, attr->timeout - 8, 0); else qp_params.ack_timeout = 0; + + qp->timeout = attr->timeout; } if (attr_mask & IB_QP_RETRY_CNT) { @@ -2382,15 +2383,18 @@ int rc = 0; memset(¶ms, 0, sizeof(params)); - - rc = dev->ops->rdma_query_qp(dev->rdma_ctx, qp->qed_qp, ¶ms); - if (rc) - goto err; - memset(qp_attr, 0, sizeof(*qp_attr)); memset(qp_init_attr, 0, sizeof(*qp_init_attr)); - qp_attr->qp_state = qedr_get_ibqp_state(params.state); + if (qp->qp_type != IB_QPT_GSI) { + rc = dev->ops->rdma_query_qp(dev->rdma_ctx, qp->qed_qp, ¶ms); + if (rc) + goto err; + qp_attr->qp_state = qedr_get_ibqp_state(params.state); + } else { + qp_attr->qp_state = qedr_get_ibqp_state(QED_ROCE_QP_STATE_RTS); + } + qp_attr->cur_qp_state = qedr_get_ibqp_state(params.state); qp_attr->path_mtu = ib_mtu_int_to_enum(params.mtu); qp_attr->path_mig_state = IB_MIG_MIGRATED; @@ -2414,7 +2418,7 @@ rdma_ah_set_dgid_raw(&qp_attr->ah_attr, ¶ms.dgid.bytes[0]); rdma_ah_set_port_num(&qp_attr->ah_attr, 1); rdma_ah_set_sl(&qp_attr->ah_attr, 0); - qp_attr->timeout = params.timeout; + qp_attr->timeout = qp->timeout; qp_attr->rnr_retry = params.rnr_retry; qp_attr->retry_cnt = params.retry_cnt; qp_attr->min_rnr_timer = params.min_rnr_nak_timer; @@ -2622,7 +2626,7 @@ mr->type = QEDR_MR_USER; - mr->umem = ib_umem_get(udata, start, len, acc); + mr->umem = ib_umem_get(ibpd->device, start, len, acc); if (IS_ERR(mr->umem)) { rc = -EFAULT; goto err0; diff -u linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c --- linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c @@ -135,7 +135,7 @@ goto err_cq; } - cq->umem = ib_umem_get(udata, ucmd.buf_addr, ucmd.buf_size, + cq->umem = ib_umem_get(ibdev, ucmd.buf_addr, ucmd.buf_size, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(cq->umem)) { ret = PTR_ERR(cq->umem); diff -u linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c --- linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c +++ linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.c @@ -126,7 +126,7 @@ return ERR_PTR(-EINVAL); } - umem = ib_umem_get(udata, start, length, access_flags); + umem = ib_umem_get(pd->device, start, length, access_flags); if (IS_ERR(umem)) { dev_warn(&dev->pdev->dev, "could not get umem for mem region\n"); diff -u linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c --- linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c @@ -262,8 +262,9 @@ if (!is_srq) { /* set qp->sq.wqe_cnt, shift, buf_size.. */ - qp->rumem = ib_umem_get(udata, ucmd.rbuf_addr, - ucmd.rbuf_size, 0); + qp->rumem = + ib_umem_get(pd->device, ucmd.rbuf_addr, + ucmd.rbuf_size, 0); if (IS_ERR(qp->rumem)) { ret = PTR_ERR(qp->rumem); goto err_qp; @@ -274,7 +275,7 @@ qp->srq = to_vsrq(init_attr->srq); } - qp->sumem = ib_umem_get(udata, ucmd.sbuf_addr, + qp->sumem = ib_umem_get(pd->device, ucmd.sbuf_addr, ucmd.sbuf_size, 0); if (IS_ERR(qp->sumem)) { if (!is_srq) diff -u linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.c linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.c --- linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.c +++ linux-azure-5.4.0/drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.c @@ -146,7 +146,7 @@ goto err_srq; } - srq->umem = ib_umem_get(udata, ucmd.buf_addr, ucmd.buf_size, 0); + srq->umem = ib_umem_get(ibsrq->device, ucmd.buf_addr, ucmd.buf_size, 0); if (IS_ERR(srq->umem)) { ret = PTR_ERR(srq->umem); goto err_srq; diff -u linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/mr.c linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/mr.c --- linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/mr.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/mr.c @@ -390,7 +390,7 @@ if (length == 0) return ERR_PTR(-EINVAL); - umem = ib_umem_get(udata, start, length, mr_access_flags); + umem = ib_umem_get(pd->device, start, length, mr_access_flags); if (IS_ERR(umem)) return (void *)umem; diff -u linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/qp.c linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/qp.c --- linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/qp.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rdmavt/qp.c @@ -2812,7 +2812,7 @@ EXPORT_SYMBOL(rvt_qp_iter); /* - * This should be called with s_lock held. + * This should be called with s_lock and r_lock held. */ void rvt_send_complete(struct rvt_qp *qp, struct rvt_swqe *wqe, enum ib_wc_status status) @@ -3110,6 +3110,8 @@ case IB_WR_ATOMIC_FETCH_AND_ADD: if (unlikely(!(qp->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC))) goto inv_err; + if (unlikely(wqe->atomic_wr.remote_addr & (sizeof(u64) - 1))) + goto inv_err; if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, sizeof(u64), wqe->atomic_wr.remote_addr, wqe->atomic_wr.rkey, @@ -3169,7 +3171,9 @@ rvp->n_loop_pkts++; flush_send: sqp->s_rnr_retry = sqp->s_rnr_retry_cnt; + spin_lock(&sqp->r_lock); rvt_send_complete(sqp, wqe, send_status); + spin_unlock(&sqp->r_lock); if (local_ops) { atomic_dec(&sqp->local_ops_pending); local_ops = 0; @@ -3223,9 +3227,15 @@ spin_unlock_irqrestore(&qp->r_lock, flags); serr_no_r_lock: spin_lock_irqsave(&sqp->s_lock, flags); + spin_lock(&sqp->r_lock); rvt_send_complete(sqp, wqe, send_status); + spin_unlock(&sqp->r_lock); if (sqp->ibqp.qp_type == IB_QPT_RC) { - int lastwqe = rvt_error_qp(sqp, IB_WC_WR_FLUSH_ERR); + int lastwqe; + + spin_lock(&sqp->r_lock); + lastwqe = rvt_error_qp(sqp, IB_WC_WR_FLUSH_ERR); + spin_unlock(&sqp->r_lock); sqp->s_flags &= ~RVT_S_BUSY; spin_unlock_irqrestore(&sqp->s_lock, flags); diff -u linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_mr.c linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_mr.c --- linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_mr.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_mr.c @@ -169,11 +169,11 @@ void *vaddr; int err; - umem = ib_umem_get(udata, start, length, access); + umem = ib_umem_get(pd->ibpd.device, start, length, access); if (IS_ERR(umem)) { pr_warn("err %d from rxe_umem_get\n", (int)PTR_ERR(umem)); - err = -EINVAL; + err = PTR_ERR(umem); goto err1; } diff -u linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_net.c linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_net.c --- linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_net.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_net.c @@ -251,10 +251,8 @@ /* Create UDP socket */ err = udp_sock_create(net, &udp_cfg, &sock); - if (err < 0) { - pr_err("failed to create udp socket. err = %d\n", err); + if (err < 0) return ERR_PTR(err); - } tnl_cfg.encap_type = 1; tnl_cfg.encap_rcv = rxe_udp_encap_recv; @@ -660,6 +658,12 @@ recv_sockets.sk6 = rxe_setup_udp_tunnel(&init_net, htons(ROCE_V2_UDP_DPORT), true); + if (PTR_ERR(recv_sockets.sk6) == -EAFNOSUPPORT) { + recv_sockets.sk6 = NULL; + pr_warn("IPv6 is not supported, can not create a UDPv6 socket\n"); + return 0; + } + if (IS_ERR(recv_sockets.sk6)) { recv_sockets.sk6 = NULL; pr_err("Failed to create IPv6 UDP tunnel\n"); diff -u linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_qp.c linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_qp.c --- linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_qp.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_qp.c @@ -152,7 +152,6 @@ void free_rd_atomic_resource(struct rxe_qp *qp, struct resp_res *res) { if (res->type == RXE_ATOMIC_MASK) { - rxe_drop_ref(qp); kfree_skb(res->atomic.skb); } else if (res->type == RXE_READ_MASK) { if (res->read.mr) @@ -212,6 +211,14 @@ spin_lock_init(&qp->grp_lock); spin_lock_init(&qp->state_lock); + spin_lock_init(&qp->req.task.state_lock); + spin_lock_init(&qp->resp.task.state_lock); + spin_lock_init(&qp->comp.task.state_lock); + + spin_lock_init(&qp->sq.sq_lock); + spin_lock_init(&qp->rq.producer_lock); + spin_lock_init(&qp->rq.consumer_lock); + atomic_set(&qp->ssn, 0); atomic_set(&qp->skb_out, 0); } @@ -269,7 +276,6 @@ qp->req.opcode = -1; qp->comp.opcode = -1; - spin_lock_init(&qp->sq.sq_lock); skb_queue_head_init(&qp->req_pkts); rxe_init_task(rxe, &qp->req.task, qp, @@ -319,9 +325,6 @@ } } - spin_lock_init(&qp->rq.producer_lock); - spin_lock_init(&qp->rq.consumer_lock); - skb_queue_head_init(&qp->resp_pkts); rxe_init_task(rxe, &qp->resp.task, qp, @@ -802,7 +805,9 @@ rxe_cleanup_task(&qp->comp.task); /* flush out any receive wr's or pending requests */ - __rxe_do_task(&qp->req.task); + if (qp->req.task.func) + __rxe_do_task(&qp->req.task); + if (qp->sq.queue) { __rxe_do_task(&qp->comp.task); __rxe_do_task(&qp->req.task); @@ -842,8 +847,10 @@ free_rd_atomic_resources(qp); - kernel_sock_shutdown(qp->sk, SHUT_RDWR); - sock_release(qp->sk); + if (qp->sk) { + kernel_sock_shutdown(qp->sk, SHUT_RDWR); + sock_release(qp->sk); + } } /* called when the last reference to the qp is dropped */ diff -u linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_req.c linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_req.c --- linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_req.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_req.c @@ -680,7 +680,7 @@ opcode = next_opcode(qp, wqe, wqe->wr.opcode); if (unlikely(opcode < 0)) { wqe->status = IB_WC_LOC_QP_OP_ERR; - goto exit; + goto err; } mask = rxe_opcode[opcode].mask; diff -u linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_resp.c linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_resp.c --- linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_resp.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_resp.c @@ -993,8 +993,6 @@ goto out; } - rxe_add_ref(qp); - res = &qp->resp.resources[qp->resp.res_head]; free_rd_atomic_resource(qp, res); rxe_advance_resp_resource(qp); diff -u linux-azure-5.4.0/drivers/infiniband/sw/siw/siw.h linux-azure-5.4.0/drivers/infiniband/sw/siw/siw.h --- linux-azure-5.4.0/drivers/infiniband/sw/siw/siw.h +++ linux-azure-5.4.0/drivers/infiniband/sw/siw/siw.h @@ -658,14 +658,9 @@ return &qp->orq[qp->orq_get % qp->attrs.orq_size]; } -static inline struct siw_sqe *orq_get_tail(struct siw_qp *qp) -{ - return &qp->orq[qp->orq_put % qp->attrs.orq_size]; -} - static inline struct siw_sqe *orq_get_free(struct siw_qp *qp) { - struct siw_sqe *orq_e = orq_get_tail(qp); + struct siw_sqe *orq_e = &qp->orq[qp->orq_put % qp->attrs.orq_size]; if (READ_ONCE(orq_e->flags) == 0) return orq_e; diff -u linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_cm.c linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_cm.c --- linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_cm.c +++ linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_cm.c @@ -725,11 +725,11 @@ enum mpa_v2_ctrl mpa_p2p_mode = MPA_V2_RDMA_NO_RTR; rv = siw_recv_mpa_rr(cep); - if (rv != -EAGAIN) - siw_cancel_mpatimer(cep); if (rv) goto out_err; + siw_cancel_mpatimer(cep); + rep = &cep->mpa.hdr; if (__mpa_rr_revision(rep->params.bits) > MPA_REVISION_2) { @@ -895,7 +895,8 @@ } out_err: - siw_cm_upcall(cep, IW_CM_EVENT_CONNECT_REPLY, -EINVAL); + if (rv != -EAGAIN) + siw_cm_upcall(cep, IW_CM_EVENT_CONNECT_REPLY, -EINVAL); return rv; } @@ -976,14 +977,15 @@ siw_cep_set_inuse(new_cep); rv = siw_proc_mpareq(new_cep); - siw_cep_set_free(new_cep); - if (rv != -EAGAIN) { siw_cep_put(cep); new_cep->listen_cep = NULL; - if (rv) + if (rv) { + siw_cep_set_free(new_cep); goto error; + } } + siw_cep_set_free(new_cep); } return; diff -u linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_rx.c linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_rx.c --- linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_rx.c +++ linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_rx.c @@ -961,27 +961,28 @@ static int siw_get_trailer(struct siw_qp *qp, struct siw_rx_stream *srx) { struct sk_buff *skb = srx->skb; + int avail = min(srx->skb_new, srx->fpdu_part_rem); u8 *tbuf = (u8 *)&srx->trailer.crc - srx->pad; __wsum crc_in, crc_own = 0; siw_dbg_qp(qp, "expected %d, available %d, pad %u\n", srx->fpdu_part_rem, srx->skb_new, srx->pad); - if (srx->skb_new < srx->fpdu_part_rem) - return -EAGAIN; - - skb_copy_bits(skb, srx->skb_offset, tbuf, srx->fpdu_part_rem); + skb_copy_bits(skb, srx->skb_offset, tbuf, avail); - if (srx->mpa_crc_hd && srx->pad) - crypto_shash_update(srx->mpa_crc_hd, tbuf, srx->pad); + srx->skb_new -= avail; + srx->skb_offset += avail; + srx->skb_copied += avail; + srx->fpdu_part_rem -= avail; - srx->skb_new -= srx->fpdu_part_rem; - srx->skb_offset += srx->fpdu_part_rem; - srx->skb_copied += srx->fpdu_part_rem; + if (srx->fpdu_part_rem) + return -EAGAIN; if (!srx->mpa_crc_hd) return 0; + if (srx->pad) + crypto_shash_update(srx->mpa_crc_hd, tbuf, srx->pad); /* * CRC32 is computed, transmitted and received directly in NBO, * so there's never a reason to convert byte order. @@ -1083,10 +1084,9 @@ * completely received. */ if (iwarp_pktinfo[opcode].hdr_len > sizeof(struct iwarp_ctrl_tagged)) { - bytes = iwarp_pktinfo[opcode].hdr_len - MIN_DDP_HDR; + int hdrlen = iwarp_pktinfo[opcode].hdr_len; - if (srx->skb_new < bytes) - return -EAGAIN; + bytes = min_t(int, hdrlen - MIN_DDP_HDR, srx->skb_new); skb_copy_bits(skb, srx->skb_offset, (char *)c_hdr + srx->fpdu_part_rcvd, bytes); @@ -1096,6 +1096,9 @@ srx->skb_new -= bytes; srx->skb_offset += bytes; srx->skb_copied += bytes; + + if (srx->fpdu_part_rcvd < hdrlen) + return -EAGAIN; } /* @@ -1153,11 +1156,12 @@ spin_lock_irqsave(&qp->orq_lock, flags); - rreq = orq_get_current(qp); - /* free current orq entry */ + rreq = orq_get_current(qp); WRITE_ONCE(rreq->flags, 0); + qp->orq_get++; + if (qp->tx_ctx.orq_fence) { if (unlikely(tx_waiting->wr_status != SIW_WR_QUEUED)) { pr_warn("siw: [QP %u]: fence resume: bad status %d\n", @@ -1165,10 +1169,12 @@ rv = -EPROTO; goto out; } - /* resume SQ processing */ + /* resume SQ processing, if possible */ if (tx_waiting->sqe.opcode == SIW_OP_READ || tx_waiting->sqe.opcode == SIW_OP_READ_LOCAL_INV) { - rreq = orq_get_tail(qp); + + /* SQ processing was stopped because of a full ORQ */ + rreq = orq_get_free(qp); if (unlikely(!rreq)) { pr_warn("siw: [QP %u]: no ORQE\n", qp_id(qp)); rv = -EPROTO; @@ -1181,15 +1187,14 @@ resume_tx = 1; } else if (siw_orq_empty(qp)) { + /* + * SQ processing was stopped by fenced work request. + * Resume since all previous Read's are now completed. + */ qp->tx_ctx.orq_fence = 0; resume_tx = 1; - } else { - pr_warn("siw: [QP %u]: fence resume: orq idx: %d:%d\n", - qp_id(qp), qp->orq_get, qp->orq_put); - rv = -EPROTO; } } - qp->orq_get++; out: spin_unlock_irqrestore(&qp->orq_lock, flags); diff -u linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_tx.c linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_tx.c --- linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_tx.c +++ linux-azure-5.4.0/drivers/infiniband/sw/siw/siw_qp_tx.c @@ -29,7 +29,7 @@ dma_addr_t paddr = siw_pbl_get_buffer(pbl, offset, NULL, idx); if (paddr) - return virt_to_page(paddr); + return virt_to_page((void *)paddr); return NULL; } @@ -523,13 +523,23 @@ kunmap(p); } } else { - u64 va = sge->laddr + sge_off; + /* + * Cast to an uintptr_t to preserve all 64 bits + * in sge->laddr. + */ + uintptr_t va = (uintptr_t)(sge->laddr + sge_off); - page_array[seg] = virt_to_page(va & PAGE_MASK); + /* + * virt_to_page() takes a (void *) pointer + * so cast to a (void *) meaning it will be 64 + * bits on a 64 bit platform and 32 bits on a + * 32 bit platform. + */ + page_array[seg] = virt_to_page((void *)(va & PAGE_MASK)); if (do_crc) crypto_shash_update( c_tx->mpa_crc_hd, - (void *)(uintptr_t)va, + (void *)va, plen); } diff -u linux-azure-5.4.0/drivers/infiniband/ulp/ipoib/ipoib_netlink.c linux-azure-5.4.0/drivers/infiniband/ulp/ipoib/ipoib_netlink.c --- linux-azure-5.4.0/drivers/infiniband/ulp/ipoib/ipoib_netlink.c +++ linux-azure-5.4.0/drivers/infiniband/ulp/ipoib/ipoib_netlink.c @@ -163,6 +163,7 @@ static struct rtnl_link_ops ipoib_link_ops __read_mostly = { .kind = "ipoib", + .netns_refund = true, .maxtype = IFLA_IPOIB_MAX, .policy = ipoib_policy, .priv_size = sizeof(struct ipoib_dev_priv), diff -u linux-azure-5.4.0/drivers/infiniband/ulp/srp/ib_srp.c linux-azure-5.4.0/drivers/infiniband/ulp/srp/ib_srp.c --- linux-azure-5.4.0/drivers/infiniband/ulp/srp/ib_srp.c +++ linux-azure-5.4.0/drivers/infiniband/ulp/srp/ib_srp.c @@ -4222,9 +4222,11 @@ spin_unlock(&host->target_lock); /* - * Wait for tl_err and target port removal tasks. + * srp_queue_remove_work() queues a call to + * srp_remove_target(). The latter function cancels + * target->tl_err_work so waiting for the remove works to + * finish is sufficient. */ - flush_workqueue(system_long_wq); flush_workqueue(srp_remove_wq); kfree(host); diff -u linux-azure-5.4.0/drivers/input/input.c linux-azure-5.4.0/drivers/input/input.c --- linux-azure-5.4.0/drivers/input/input.c +++ linux-azure-5.4.0/drivers/input/input.c @@ -47,6 +47,17 @@ static const struct input_value input_value_sync = { EV_SYN, SYN_REPORT, 1 }; +static const unsigned int input_max_code[EV_CNT] = { + [EV_KEY] = KEY_MAX, + [EV_REL] = REL_MAX, + [EV_ABS] = ABS_MAX, + [EV_MSC] = MSC_MAX, + [EV_SW] = SW_MAX, + [EV_LED] = LED_MAX, + [EV_SND] = SND_MAX, + [EV_FF] = FF_MAX, +}; + static inline int is_event_supported(unsigned int code, unsigned long *bm, unsigned int max) { @@ -1978,6 +1989,14 @@ */ void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code) { + if (type < EV_CNT && input_max_code[type] && + code > input_max_code[type]) { + pr_err("%s: invalid code %u for type %u\n", __func__, code, + type); + dump_stack(); + return; + } + switch (type) { case EV_KEY: __set_bit(code, dev->keybit); diff -u linux-azure-5.4.0/drivers/input/joydev.c linux-azure-5.4.0/drivers/input/joydev.c --- linux-azure-5.4.0/drivers/input/joydev.c +++ linux-azure-5.4.0/drivers/input/joydev.c @@ -500,7 +500,7 @@ memcpy(joydev->keypam, keypam, len); for (i = 0; i < joydev->nkey; i++) - joydev->keymap[keypam[i] - BTN_MISC] = i; + joydev->keymap[joydev->keypam[i] - BTN_MISC] = i; out: kfree(keypam); diff -u linux-azure-5.4.0/drivers/input/joystick/xpad.c linux-azure-5.4.0/drivers/input/joystick/xpad.c --- linux-azure-5.4.0/drivers/input/joystick/xpad.c +++ linux-azure-5.4.0/drivers/input/joystick/xpad.c @@ -112,6 +112,8 @@ u8 xtype; } xpad_device[] = { { 0x0079, 0x18d4, "GPD Win 2 X-Box Controller", 0, XTYPE_XBOX360 }, + { 0x03eb, 0xff01, "Wooting One (Legacy)", 0, XTYPE_XBOX360 }, + { 0x03eb, 0xff02, "Wooting Two (Legacy)", 0, XTYPE_XBOX360 }, { 0x044f, 0x0f00, "Thrustmaster Wheel", 0, XTYPE_XBOX }, { 0x044f, 0x0f03, "Thrustmaster Wheel", 0, XTYPE_XBOX }, { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX }, @@ -242,6 +244,7 @@ { 0x0f0d, 0x0063, "Hori Real Arcade Pro Hayabusa (USA) Xbox One", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, { 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE }, { 0x0f0d, 0x0078, "Hori Real Arcade Pro V Kai Xbox One", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, + { 0x0f0d, 0x00c5, "Hori Fighting Commander ONE", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, { 0x0f30, 0x010b, "Philips Recoil", 0, XTYPE_XBOX }, { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX }, { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX }, @@ -258,6 +261,7 @@ { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX }, { 0x1430, 0xf801, "RedOctane Controller", 0, XTYPE_XBOX360 }, { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 }, + { 0x146b, 0x0604, "Bigben Interactive DAIJA Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 }, { 0x1532, 0x0a00, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, { 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE }, @@ -322,6 +326,7 @@ { 0x24c6, 0x5502, "Hori Fighting Stick VX Alt", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x24c6, 0x5503, "Hori Fighting Edge", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 }, + { 0x24c6, 0x5510, "Hori Fighting Commander ONE (Xbox 360/PC Mode)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x24c6, 0x550d, "Hori GEM Xbox controller", 0, XTYPE_XBOX360 }, { 0x24c6, 0x550e, "Hori Real Arcade Pro V Kai 360", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x24c6, 0x551a, "PowerA FUSION Pro Controller", 0, XTYPE_XBOXONE }, @@ -331,6 +336,15 @@ { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 }, { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 }, { 0x24c6, 0xfafe, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 }, + { 0x2563, 0x058d, "OneXPlayer Gamepad", 0, XTYPE_XBOX360 }, + { 0x2dc8, 0x2000, "8BitDo Pro 2 Wired Controller fox Xbox", 0, XTYPE_XBOXONE }, + { 0x31e3, 0x1100, "Wooting One", 0, XTYPE_XBOX360 }, + { 0x31e3, 0x1200, "Wooting Two", 0, XTYPE_XBOX360 }, + { 0x31e3, 0x1210, "Wooting Lekker", 0, XTYPE_XBOX360 }, + { 0x31e3, 0x1220, "Wooting Two HE", 0, XTYPE_XBOX360 }, + { 0x31e3, 0x1300, "Wooting 60HE (AVR)", 0, XTYPE_XBOX360 }, + { 0x31e3, 0x1310, "Wooting 60HE (ARM)", 0, XTYPE_XBOX360 }, + { 0x3285, 0x0607, "Nacon GC-100", 0, XTYPE_XBOX360 }, { 0x3767, 0x0101, "Fanatec Speedster 3 Forceshock Wheel", 0, XTYPE_XBOX }, { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX }, { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN } @@ -415,6 +429,7 @@ static const struct usb_device_id xpad_table[] = { { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */ XPAD_XBOX360_VENDOR(0x0079), /* GPD Win 2 Controller */ + XPAD_XBOX360_VENDOR(0x03eb), /* Wooting Keyboards (Legacy) */ XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */ XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */ XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */ @@ -425,6 +440,7 @@ { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */ XPAD_XBOXONE_VENDOR(0x0738), /* Mad Catz FightStick TE 2 */ XPAD_XBOX360_VENDOR(0x07ff), /* Mad Catz GamePad */ + XPAD_XBOX360_VENDOR(0x0c12), /* Zeroplus X-Box 360 controllers */ XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */ XPAD_XBOXONE_VENDOR(0x0e6f), /* 0x0e6f X-Box One controllers */ XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */ @@ -445,8 +461,13 @@ XPAD_XBOXONE_VENDOR(0x20d6), /* PowerA Controllers */ XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */ XPAD_XBOXONE_VENDOR(0x24c6), /* PowerA Controllers */ + XPAD_XBOX360_VENDOR(0x2563), /* OneXPlayer Gamepad */ + XPAD_XBOX360_VENDOR(0x260d), /* Dareu H101 */ + XPAD_XBOXONE_VENDOR(0x2dc8), /* 8BitDo Pro 2 Wired Controller for Xbox */ XPAD_XBOXONE_VENDOR(0x2e24), /* Hyperkin Duke X-Box One pad */ XPAD_XBOX360_VENDOR(0x2f24), /* GameSir Controllers */ + XPAD_XBOX360_VENDOR(0x31e3), /* Wooting Keyboards */ + XPAD_XBOX360_VENDOR(0x3285), /* Nacon GC-100 */ { } }; @@ -1962,7 +1983,6 @@ .disconnect = xpad_disconnect, .suspend = xpad_suspend, .resume = xpad_resume, - .reset_resume = xpad_resume, .id_table = xpad_table, }; diff -u linux-azure-5.4.0/drivers/input/mouse/elan_i2c_core.c linux-azure-5.4.0/drivers/input/mouse/elan_i2c_core.c --- linux-azure-5.4.0/drivers/input/mouse/elan_i2c_core.c +++ linux-azure-5.4.0/drivers/input/mouse/elan_i2c_core.c @@ -131,55 +131,21 @@ return 0; } -static int elan_enable_power(struct elan_tp_data *data) +static int elan_set_power(struct elan_tp_data *data, bool on) { int repeat = ETP_RETRY_COUNT; int error; - error = regulator_enable(data->vcc); - if (error) { - dev_err(&data->client->dev, - "failed to enable regulator: %d\n", error); - return error; - } - do { - error = data->ops->power_control(data->client, true); + error = data->ops->power_control(data->client, on); if (error >= 0) return 0; msleep(30); } while (--repeat > 0); - dev_err(&data->client->dev, "failed to enable power: %d\n", error); - return error; -} - -static int elan_disable_power(struct elan_tp_data *data) -{ - int repeat = ETP_RETRY_COUNT; - int error; - - do { - error = data->ops->power_control(data->client, false); - if (!error) { - error = regulator_disable(data->vcc); - if (error) { - dev_err(&data->client->dev, - "failed to disable regulator: %d\n", - error); - /* Attempt to power the chip back up */ - data->ops->power_control(data->client, true); - break; - } - - return 0; - } - - msleep(30); - } while (--repeat > 0); - - dev_err(&data->client->dev, "failed to disable power: %d\n", error); + dev_err(&data->client->dev, "failed to set power %s: %d\n", + on ? "on" : "off", error); return error; } @@ -1337,9 +1303,19 @@ /* Enable wake from IRQ */ data->irq_wake = (enable_irq_wake(client->irq) == 0); } else { - ret = elan_disable_power(data); + ret = elan_set_power(data, false); + if (ret) + goto err; + + ret = regulator_disable(data->vcc); + if (ret) { + dev_err(dev, "error %d disabling regulator\n", ret); + /* Attempt to power the chip back up */ + elan_set_power(data, true); + } } +err: mutex_unlock(&data->sysfs_mutex); return ret; } @@ -1350,12 +1326,18 @@ struct elan_tp_data *data = i2c_get_clientdata(client); int error; - if (device_may_wakeup(dev) && data->irq_wake) { + if (!device_may_wakeup(dev)) { + error = regulator_enable(data->vcc); + if (error) { + dev_err(dev, "error %d enabling regulator\n", error); + goto err; + } + } else if (data->irq_wake) { disable_irq_wake(client->irq); data->irq_wake = false; } - error = elan_enable_power(data); + error = elan_set_power(data, true); if (error) { dev_err(dev, "power up when resuming failed: %d\n", error); goto err; diff -u linux-azure-5.4.0/drivers/input/mouse/elantech.c linux-azure-5.4.0/drivers/input/mouse/elantech.c --- linux-azure-5.4.0/drivers/input/mouse/elantech.c +++ linux-azure-5.4.0/drivers/input/mouse/elantech.c @@ -517,6 +517,19 @@ case 0x16008020U: case 0x26800010U: case 0x36808000U: + + /* + * This firmware misreport coordinates for trackpoint + * occasionally. Discard packets outside of [-127, 127] range + * to prevent cursor jumps. + */ + if (packet[4] == 0x80 || packet[5] == 0x80 || + packet[1] >> 7 == packet[4] >> 7 || + packet[2] >> 7 == packet[5] >> 7) { + elantech_debug("discarding packet [%6ph]\n", packet); + break; + + } x = packet[4] - (int)((packet[1]^0x80) << 1); y = (int)((packet[2]^0x80) << 1) - packet[5]; @@ -1575,7 +1588,13 @@ */ static int elantech_change_report_id(struct psmouse *psmouse) { - unsigned char param[2] = { 0x10, 0x03 }; + /* + * NOTE: the code is expecting to receive param[] as an array of 3 + * items (see __ps2_command()), even if in this case only 2 are + * actually needed. Make sure the array size is 3 to avoid potential + * stack out-of-bound accesses. + */ + unsigned char param[3] = { 0x10, 0x03 }; if (elantech_write_reg_params(psmouse, 0x7, param) || elantech_read_reg_params(psmouse, 0x7, param) || diff -u linux-azure-5.4.0/drivers/input/serio/hyperv-keyboard.c linux-azure-5.4.0/drivers/input/serio/hyperv-keyboard.c --- linux-azure-5.4.0/drivers/input/serio/hyperv-keyboard.c +++ linux-azure-5.4.0/drivers/input/serio/hyperv-keyboard.c @@ -75,8 +75,8 @@ #define HK_MAXIMUM_MESSAGE_SIZE 256 -#define KBD_VSC_SEND_RING_BUFFER_SIZE (40 * 1024) -#define KBD_VSC_RECV_RING_BUFFER_SIZE (40 * 1024) +#define KBD_VSC_SEND_RING_BUFFER_SIZE VMBUS_RING_SIZE(36 * 1024) +#define KBD_VSC_RECV_RING_BUFFER_SIZE VMBUS_RING_SIZE(36 * 1024) #define XTKBD_EMUL0 0xe0 #define XTKBD_EMUL1 0xe1 diff -u linux-azure-5.4.0/drivers/input/serio/i8042-x86ia64io.h linux-azure-5.4.0/drivers/input/serio/i8042-x86ia64io.h --- linux-azure-5.4.0/drivers/input/serio/i8042-x86ia64io.h +++ linux-azure-5.4.0/drivers/input/serio/i8042-x86ia64io.h @@ -273,6 +273,13 @@ }, }, { + /* Fujitsu Lifebook T725 laptop */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T725"), + }, + }, + { /* Fujitsu Lifebook U745 */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), @@ -841,6 +848,13 @@ }, }, { + /* Fujitsu Lifebook T725 laptop */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T725"), + }, + }, + { /* Fujitsu U574 laptop */ /* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */ .matches = { @@ -981,6 +995,24 @@ { } }; +static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = { + { + /* ASUS ZenBook UX425UA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"), + }, + }, + { + /* ASUS ZenBook UM325UA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"), + }, + }, + { } +}; + #endif /* CONFIG_X86 */ #ifdef CONFIG_PNP @@ -1300,6 +1332,9 @@ if (dmi_check_system(i8042_dmi_kbdreset_table)) i8042_kbdreset = true; + if (dmi_check_system(i8042_dmi_probe_defer_table)) + i8042_probe_defer = true; + /* * A20 was already enabled during early kernel init. But some buggy * BIOSes (in MSI Laptops) require A20 to be enabled using 8042 to diff -u linux-azure-5.4.0/drivers/input/serio/i8042.c linux-azure-5.4.0/drivers/input/serio/i8042.c --- linux-azure-5.4.0/drivers/input/serio/i8042.c +++ linux-azure-5.4.0/drivers/input/serio/i8042.c @@ -44,6 +44,10 @@ module_param_named(unlock, i8042_unlock, bool, 0); MODULE_PARM_DESC(unlock, "Ignore keyboard lock."); +static bool i8042_probe_defer; +module_param_named(probe_defer, i8042_probe_defer, bool, 0); +MODULE_PARM_DESC(probe_defer, "Allow deferred probing."); + enum i8042_controller_reset_mode { I8042_RESET_NEVER, I8042_RESET_ALWAYS, @@ -709,7 +713,7 @@ * LCS/Telegraphics. */ -static int __init i8042_check_mux(void) +static int i8042_check_mux(void) { unsigned char mux_version; @@ -738,10 +742,10 @@ /* * The following is used to test AUX IRQ delivery. */ -static struct completion i8042_aux_irq_delivered __initdata; -static bool i8042_irq_being_tested __initdata; +static struct completion i8042_aux_irq_delivered; +static bool i8042_irq_being_tested; -static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id) +static irqreturn_t i8042_aux_test_irq(int irq, void *dev_id) { unsigned long flags; unsigned char str, data; @@ -768,7 +772,7 @@ * verifies success by readinng CTR. Used when testing for presence of AUX * port. */ -static int __init i8042_toggle_aux(bool on) +static int i8042_toggle_aux(bool on) { unsigned char param; int i; @@ -796,7 +800,7 @@ * the presence of an AUX interface. */ -static int __init i8042_check_aux(void) +static int i8042_check_aux(void) { int retval = -1; bool irq_registered = false; @@ -1006,7 +1010,7 @@ if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) { pr_err("Can't read CTR while initializing i8042\n"); - return -EIO; + return i8042_probe_defer ? -EPROBE_DEFER : -EIO; } } while (n < 2 || ctr[0] != ctr[1]); @@ -1321,7 +1325,7 @@ i8042_controller_reset(false); } -static int __init i8042_create_kbd_port(void) +static int i8042_create_kbd_port(void) { struct serio *serio; struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO]; @@ -1349,7 +1353,7 @@ return 0; } -static int __init i8042_create_aux_port(int idx) +static int i8042_create_aux_port(int idx) { struct serio *serio; int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx; @@ -1386,13 +1390,13 @@ return 0; } -static void __init i8042_free_kbd_port(void) +static void i8042_free_kbd_port(void) { kfree(i8042_ports[I8042_KBD_PORT_NO].serio); i8042_ports[I8042_KBD_PORT_NO].serio = NULL; } -static void __init i8042_free_aux_ports(void) +static void i8042_free_aux_ports(void) { int i; @@ -1402,7 +1406,7 @@ } } -static void __init i8042_register_ports(void) +static void i8042_register_ports(void) { int i; @@ -1443,7 +1447,7 @@ i8042_aux_irq_registered = i8042_kbd_irq_registered = false; } -static int __init i8042_setup_aux(void) +static int i8042_setup_aux(void) { int (*aux_enable)(void); int error; @@ -1485,7 +1489,7 @@ return error; } -static int __init i8042_setup_kbd(void) +static int i8042_setup_kbd(void) { int error; @@ -1535,7 +1539,7 @@ return 0; } -static int __init i8042_probe(struct platform_device *dev) +static int i8042_probe(struct platform_device *dev) { int error; @@ -1600,6 +1604,7 @@ .pm = &i8042_pm_ops, #endif }, + .probe = i8042_probe, .remove = i8042_remove, .shutdown = i8042_shutdown, }; @@ -1610,7 +1615,6 @@ static int __init i8042_init(void) { - struct platform_device *pdev; int err; dbg_init(); @@ -1626,17 +1630,29 @@ /* Set this before creating the dev to allow i8042_command to work right away */ i8042_present = true; - pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0); - if (IS_ERR(pdev)) { - err = PTR_ERR(pdev); + err = platform_driver_register(&i8042_driver); + if (err) goto err_platform_exit; + + i8042_platform_device = platform_device_alloc("i8042", -1); + if (!i8042_platform_device) { + err = -ENOMEM; + goto err_unregister_driver; } + err = platform_device_add(i8042_platform_device); + if (err) + goto err_free_device; + bus_register_notifier(&serio_bus, &i8042_kbd_bind_notifier_block); panic_blink = i8042_panic_blink; return 0; +err_free_device: + platform_device_put(i8042_platform_device); +err_unregister_driver: + platform_driver_unregister(&i8042_driver); err_platform_exit: i8042_platform_exit(); return err; diff -u linux-azure-5.4.0/drivers/input/tablet/aiptek.c linux-azure-5.4.0/drivers/input/tablet/aiptek.c --- linux-azure-5.4.0/drivers/input/tablet/aiptek.c +++ linux-azure-5.4.0/drivers/input/tablet/aiptek.c @@ -1801,15 +1801,13 @@ input_set_abs_params(inputdev, ABS_TILT_Y, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0); input_set_abs_params(inputdev, ABS_WHEEL, AIPTEK_WHEEL_MIN, AIPTEK_WHEEL_MAX - 1, 0, 0); - /* Verify that a device really has an endpoint */ - if (intf->cur_altsetting->desc.bNumEndpoints < 1) { + err = usb_find_common_endpoints(intf->cur_altsetting, + NULL, NULL, &endpoint, NULL); + if (err) { dev_err(&intf->dev, - "interface has %d endpoints, but must have minimum 1\n", - intf->cur_altsetting->desc.bNumEndpoints); - err = -EINVAL; + "interface has no int in endpoints, but must have minimum 1\n"); goto fail3; } - endpoint = &intf->cur_altsetting->endpoint[0].desc; /* Go set up our URB, which is called when the tablet receives * input. diff -u linux-azure-5.4.0/drivers/input/touchscreen/atmel_mxt_ts.c linux-azure-5.4.0/drivers/input/touchscreen/atmel_mxt_ts.c --- linux-azure-5.4.0/drivers/input/touchscreen/atmel_mxt_ts.c +++ linux-azure-5.4.0/drivers/input/touchscreen/atmel_mxt_ts.c @@ -1794,7 +1794,7 @@ if (error) { dev_err(&client->dev, "Error %d parsing object table\n", error); mxt_free_object_table(data); - goto err_free_mem; + return error; } data->object_table = (struct mxt_object *)(id_buf + MXT_OBJECT_START); diff -u linux-azure-5.4.0/drivers/input/touchscreen/goodix.c linux-azure-5.4.0/drivers/input/touchscreen/goodix.c --- linux-azure-5.4.0/drivers/input/touchscreen/goodix.c +++ linux-azure-5.4.0/drivers/input/touchscreen/goodix.c @@ -335,7 +335,7 @@ * The Goodix panel will send spurious interrupts after a * 'finger up' event, which will always cause a timeout. */ - return 0; + return -ENOMSG; } static void goodix_ts_report_touch_8b(struct goodix_ts_data *ts, u8 *coor_data) diff -u linux-azure-5.4.0/drivers/input/touchscreen/ili210x.c linux-azure-5.4.0/drivers/input/touchscreen/ili210x.c --- linux-azure-5.4.0/drivers/input/touchscreen/ili210x.c +++ linux-azure-5.4.0/drivers/input/touchscreen/ili210x.c @@ -290,9 +290,9 @@ if (error) return error; - usleep_range(50, 100); + usleep_range(12000, 15000); gpiod_set_value_cansleep(reset_gpio, 0); - msleep(100); + msleep(160); } priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); diff -u linux-azure-5.4.0/drivers/input/touchscreen/stmfts.c linux-azure-5.4.0/drivers/input/touchscreen/stmfts.c --- linux-azure-5.4.0/drivers/input/touchscreen/stmfts.c +++ linux-azure-5.4.0/drivers/input/touchscreen/stmfts.c @@ -337,13 +337,15 @@ struct stmfts_data *sdata = input_get_drvdata(dev); int err; - err = pm_runtime_get_sync(&sdata->client->dev); - if (err < 0) + err = pm_runtime_resume_and_get(&sdata->client->dev); + if (err) return err; err = i2c_smbus_write_byte(sdata->client, STMFTS_MS_MT_SENSE_ON); - if (err) + if (err) { + pm_runtime_put_sync(&sdata->client->dev); return err; + } mutex_lock(&sdata->mutex); sdata->running = true; diff -u linux-azure-5.4.0/drivers/input/touchscreen/usbtouchscreen.c linux-azure-5.4.0/drivers/input/touchscreen/usbtouchscreen.c --- linux-azure-5.4.0/drivers/input/touchscreen/usbtouchscreen.c +++ linux-azure-5.4.0/drivers/input/touchscreen/usbtouchscreen.c @@ -251,7 +251,7 @@ int ret; struct usb_device *udev = interface_to_usbdev(usbtouch->interface); - ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), + ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x01, 0x02, 0x0000, 0x0081, NULL, 0, USB_CTRL_SET_TIMEOUT); @@ -531,7 +531,7 @@ if (ret) return ret; - ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), + ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), MTOUCHUSB_RESET, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT); @@ -543,7 +543,7 @@ msleep(150); for (i = 0; i < 3; i++) { - ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), + ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), MTOUCHUSB_ASYNC_REPORT, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 1, 1, NULL, 0, USB_CTRL_SET_TIMEOUT); @@ -722,7 +722,7 @@ } /* start sending data */ - ret = usb_control_msg(dev, usb_rcvctrlpipe (dev, 0), + ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), TSC10_CMD_DATA1, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT); diff -u linux-azure-5.4.0/drivers/iommu/amd_iommu.c linux-azure-5.4.0/drivers/iommu/amd_iommu.c --- linux-azure-5.4.0/drivers/iommu/amd_iommu.c +++ linux-azure-5.4.0/drivers/iommu/amd_iommu.c @@ -4187,7 +4187,7 @@ data->irq_2_irte.devid = devid; data->irq_2_irte.index = index + sub_handle; - iommu->irte_ops->prepare(data->entry, apic->irq_delivery_mode, + iommu->irte_ops->prepare(data->entry, apic->delivery_mode, apic->irq_dest_mode, irq_cfg->vector, irq_cfg->dest_apicid, devid); @@ -4455,7 +4455,7 @@ entry->lo.fields_remap.valid = valid; entry->lo.fields_remap.dm = apic->irq_dest_mode; - entry->lo.fields_remap.int_type = apic->irq_delivery_mode; + entry->lo.fields_remap.int_type = apic->delivery_mode; entry->hi.fields.vector = cfg->vector; entry->lo.fields_remap.destination = APICID_TO_IRTE_DEST_LO(cfg->dest_apicid); diff -u linux-azure-5.4.0/drivers/iommu/amd_iommu_init.c linux-azure-5.4.0/drivers/iommu/amd_iommu_init.c --- linux-azure-5.4.0/drivers/iommu/amd_iommu_init.c +++ linux-azure-5.4.0/drivers/iommu/amd_iommu_init.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -82,7 +83,7 @@ #define ACPI_DEVFLAG_LINT1 0x80 #define ACPI_DEVFLAG_ATSDIS 0x10000000 -#define LOOP_TIMEOUT 100000 +#define LOOP_TIMEOUT 2000000 /* * ACPI table definitions * @@ -759,6 +760,7 @@ status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET); if (status & (MMIO_STATUS_GALOG_RUN_MASK)) break; + udelay(10); } if (i >= LOOP_TIMEOUT) diff -u linux-azure-5.4.0/drivers/iommu/arm-smmu-v3.c linux-azure-5.4.0/drivers/iommu/arm-smmu-v3.c --- linux-azure-5.4.0/drivers/iommu/arm-smmu-v3.c +++ linux-azure-5.4.0/drivers/iommu/arm-smmu-v3.c @@ -1708,6 +1708,7 @@ dev_info(smmu->dev, "\t0x%016llx\n", (unsigned long long)evt[i]); + cond_resched(); } /* diff -u linux-azure-5.4.0/drivers/iommu/dma-iommu.c linux-azure-5.4.0/drivers/iommu/dma-iommu.c --- linux-azure-5.4.0/drivers/iommu/dma-iommu.c +++ linux-azure-5.4.0/drivers/iommu/dma-iommu.c @@ -216,9 +216,11 @@ lo = iova_pfn(iovad, start); hi = iova_pfn(iovad, end); reserve_iova(iovad, lo, hi); - } else { + } else if (end < start) { /* dma_ranges list should be sorted */ - dev_err(&dev->dev, "Failed to reserve IOVA\n"); + dev_err(&dev->dev, + "Failed to reserve IOVA [%pa-%pa]\n", + &start, &end); return -EINVAL; } diff -u linux-azure-5.4.0/drivers/iommu/dmar.c linux-azure-5.4.0/drivers/iommu/dmar.c --- linux-azure-5.4.0/drivers/iommu/dmar.c +++ linux-azure-5.4.0/drivers/iommu/dmar.c @@ -363,7 +363,7 @@ static struct notifier_block dmar_pci_bus_nb = { .notifier_call = dmar_pci_bus_notifier, - .priority = INT_MIN, + .priority = 1, }; static struct dmar_drhd_unit * @@ -475,7 +475,7 @@ if (drhd->reg_base_addr == rhsa->base_address) { int node = acpi_map_pxm_to_node(rhsa->proximity_domain); - if (!node_online(node)) + if (node != NUMA_NO_NODE && !node_online(node)) node = NUMA_NO_NODE; drhd->iommu->node = node; return 0; diff -u linux-azure-5.4.0/drivers/iommu/exynos-iommu.c linux-azure-5.4.0/drivers/iommu/exynos-iommu.c --- linux-azure-5.4.0/drivers/iommu/exynos-iommu.c +++ linux-azure-5.4.0/drivers/iommu/exynos-iommu.c @@ -635,7 +635,7 @@ ret = iommu_device_register(&data->iommu); if (ret) - return ret; + goto err_iommu_register; platform_set_drvdata(pdev, data); @@ -662,6 +662,10 @@ pm_runtime_enable(dev); return 0; + +err_iommu_register: + iommu_device_sysfs_remove(&data->iommu); + return ret; } static int __maybe_unused exynos_sysmmu_suspend(struct device *dev) diff -u linux-azure-5.4.0/drivers/iommu/intel-iommu.c linux-azure-5.4.0/drivers/iommu/intel-iommu.c --- linux-azure-5.4.0/drivers/iommu/intel-iommu.c +++ linux-azure-5.4.0/drivers/iommu/intel-iommu.c @@ -1858,7 +1858,7 @@ static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu, int guest_width) { - int adjust_width, agaw; + int adjust_width, agaw, cap_width; unsigned long sagaw; int err; @@ -1872,8 +1872,9 @@ domain_reserve_special_ranges(domain); /* calculate AGAW */ - if (guest_width > cap_mgaw(iommu->cap)) - guest_width = cap_mgaw(iommu->cap); + cap_width = min_t(int, cap_mgaw(iommu->cap), agaw_to_width(iommu->agaw)); + if (guest_width > cap_width) + guest_width = cap_width; domain->gaw = guest_width; adjust_width = guestwidth_to_adjustwidth(guest_width); agaw = width_to_agaw(adjust_width); @@ -2755,6 +2756,7 @@ if (md_domain_init(si_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) { domain_exit(si_domain); + si_domain = NULL; return -EFAULT; } @@ -3375,6 +3377,10 @@ disable_dmar_iommu(iommu); free_dmar_iommu(iommu); } + if (si_domain) { + domain_exit(si_domain); + si_domain = NULL; + } kfree(g_iommus); diff -u linux-azure-5.4.0/drivers/iommu/intel_irq_remapping.c linux-azure-5.4.0/drivers/iommu/intel_irq_remapping.c --- linux-azure-5.4.0/drivers/iommu/intel_irq_remapping.c +++ linux-azure-5.4.0/drivers/iommu/intel_irq_remapping.c @@ -1100,7 +1100,7 @@ * irq migration in the presence of interrupt-remapping. */ irte->trigger_mode = 0; - irte->dlvry_mode = apic->irq_delivery_mode; + irte->dlvry_mode = apic->delivery_mode; irte->vector = vector; irte->dest_id = IRTE_DEST(dest); irte->redir_hint = 1; diff -u linux-azure-5.4.0/drivers/iommu/iommu.c linux-azure-5.4.0/drivers/iommu/iommu.c --- linux-azure-5.4.0/drivers/iommu/iommu.c +++ linux-azure-5.4.0/drivers/iommu/iommu.c @@ -775,6 +775,9 @@ struct iommu_group *group = dev->iommu_group; struct group_device *tmp_device, *device = NULL; + if (!group) + return; + dev_info(dev, "Removing from iommu group %d\n", group->id); /* Pre-notify listeners that a device is being removed. */ diff -u linux-azure-5.4.0/drivers/iommu/iova.c linux-azure-5.4.0/drivers/iommu/iova.c --- linux-azure-5.4.0/drivers/iommu/iova.c +++ linux-azure-5.4.0/drivers/iommu/iova.c @@ -64,8 +64,7 @@ if (!has_iova_flush_queue(iovad)) return; - if (timer_pending(&iovad->fq_timer)) - del_timer(&iovad->fq_timer); + del_timer_sync(&iovad->fq_timer); fq_destroy_all_entries(iovad); @@ -139,10 +138,11 @@ cached_iova = rb_entry(iovad->cached32_node, struct iova, node); if (free == cached_iova || (free->pfn_hi < iovad->dma_32bit_pfn && - free->pfn_lo >= cached_iova->pfn_lo)) { + free->pfn_lo >= cached_iova->pfn_lo)) iovad->cached32_node = rb_next(&free->node); + + if (free->pfn_lo < iovad->dma_32bit_pfn) iovad->max32_alloc_size = iovad->dma_32bit_pfn; - } cached_iova = rb_entry(iovad->cached_node, struct iova, node); if (free->pfn_lo >= cached_iova->pfn_lo) diff -u linux-azure-5.4.0/drivers/iommu/mtk_iommu.c linux-azure-5.4.0/drivers/iommu/mtk_iommu.c --- linux-azure-5.4.0/drivers/iommu/mtk_iommu.c +++ linux-azure-5.4.0/drivers/iommu/mtk_iommu.c @@ -769,8 +769,7 @@ iommu_device_sysfs_remove(&data->iommu); iommu_device_unregister(&data->iommu); - if (iommu_present(&platform_bus_type)) - bus_set_iommu(&platform_bus_type, NULL); + list_del(&data->list); clk_disable_unprepare(data->bclk); devm_free_irq(&pdev->dev, data->irq, data); diff -u linux-azure-5.4.0/drivers/iommu/omap-iommu-debug.c linux-azure-5.4.0/drivers/iommu/omap-iommu-debug.c --- linux-azure-5.4.0/drivers/iommu/omap-iommu-debug.c +++ linux-azure-5.4.0/drivers/iommu/omap-iommu-debug.c @@ -32,12 +32,12 @@ ssize_t bytes; \ const char *str = "%20s: %08x\n"; \ const int maxcol = 32; \ - bytes = snprintf(p, maxcol, str, __stringify(name), \ + if (len < maxcol) \ + goto out; \ + bytes = scnprintf(p, maxcol, str, __stringify(name), \ iommu_read_reg(obj, MMU_##name)); \ p += bytes; \ len -= bytes; \ - if (len < maxcol) \ - goto out; \ } while (0) static ssize_t diff -u linux-azure-5.4.0/drivers/iommu/qcom_iommu.c linux-azure-5.4.0/drivers/iommu/qcom_iommu.c --- linux-azure-5.4.0/drivers/iommu/qcom_iommu.c +++ linux-azure-5.4.0/drivers/iommu/qcom_iommu.c @@ -785,9 +785,12 @@ { struct device_node *child; - for_each_child_of_node(qcom_iommu->dev->of_node, child) - if (of_device_is_compatible(child, "qcom,msm-iommu-v1-sec")) + for_each_child_of_node(qcom_iommu->dev->of_node, child) { + if (of_device_is_compatible(child, "qcom,msm-iommu-v1-sec")) { + of_node_put(child); return true; + } + } return false; } diff -u linux-azure-5.4.0/drivers/ipack/carriers/tpci200.c linux-azure-5.4.0/drivers/ipack/carriers/tpci200.c --- linux-azure-5.4.0/drivers/ipack/carriers/tpci200.c +++ linux-azure-5.4.0/drivers/ipack/carriers/tpci200.c @@ -91,16 +91,13 @@ free_irq(tpci200->info->pdev->irq, (void *) tpci200); pci_iounmap(tpci200->info->pdev, tpci200->info->interface_regs); - pci_iounmap(tpci200->info->pdev, tpci200->info->cfg_regs); pci_release_region(tpci200->info->pdev, TPCI200_IP_INTERFACE_BAR); pci_release_region(tpci200->info->pdev, TPCI200_IO_ID_INT_SPACES_BAR); pci_release_region(tpci200->info->pdev, TPCI200_MEM16_SPACE_BAR); pci_release_region(tpci200->info->pdev, TPCI200_MEM8_SPACE_BAR); - pci_release_region(tpci200->info->pdev, TPCI200_CFG_MEM_BAR); pci_disable_device(tpci200->info->pdev); - pci_dev_put(tpci200->info->pdev); } static void tpci200_enable_irq(struct tpci200_board *tpci200, @@ -259,7 +256,7 @@ "(bn 0x%X, sn 0x%X) failed to allocate PCI resource for BAR 2 !", tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); - goto out_disable_pci; + goto err_disable_device; } /* Request IO ID INT space (Bar 3) */ @@ -271,7 +268,7 @@ "(bn 0x%X, sn 0x%X) failed to allocate PCI resource for BAR 3 !", tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); - goto out_release_ip_space; + goto err_ip_interface_bar; } /* Request MEM8 space (Bar 5) */ @@ -282,7 +279,7 @@ "(bn 0x%X, sn 0x%X) failed to allocate PCI resource for BAR 5!", tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); - goto out_release_ioid_int_space; + goto err_io_id_int_spaces_bar; } /* Request MEM16 space (Bar 4) */ @@ -293,7 +290,7 @@ "(bn 0x%X, sn 0x%X) failed to allocate PCI resource for BAR 4!", tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); - goto out_release_mem8_space; + goto err_mem8_space_bar; } /* Map internal tpci200 driver user space */ @@ -307,7 +304,7 @@ tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); res = -ENOMEM; - goto out_release_mem8_space; + goto err_mem16_space_bar; } /* Initialize lock that protects interface_regs */ @@ -346,18 +343,22 @@ "(bn 0x%X, sn 0x%X) unable to register IRQ !", tpci200->info->pdev->bus->number, tpci200->info->pdev->devfn); - goto out_release_ioid_int_space; + goto err_interface_regs; } return 0; -out_release_mem8_space: +err_interface_regs: + pci_iounmap(tpci200->info->pdev, tpci200->info->interface_regs); +err_mem16_space_bar: + pci_release_region(tpci200->info->pdev, TPCI200_MEM16_SPACE_BAR); +err_mem8_space_bar: pci_release_region(tpci200->info->pdev, TPCI200_MEM8_SPACE_BAR); -out_release_ioid_int_space: +err_io_id_int_spaces_bar: pci_release_region(tpci200->info->pdev, TPCI200_IO_ID_INT_SPACES_BAR); -out_release_ip_space: +err_ip_interface_bar: pci_release_region(tpci200->info->pdev, TPCI200_IP_INTERFACE_BAR); -out_disable_pci: +err_disable_device: pci_disable_device(tpci200->info->pdev); return res; } @@ -529,7 +530,7 @@ tpci200->info = kzalloc(sizeof(struct tpci200_infos), GFP_KERNEL); if (!tpci200->info) { ret = -ENOMEM; - goto out_err_info; + goto err_tpci200; } pci_dev_get(pdev); @@ -540,7 +541,7 @@ if (ret) { dev_err(&pdev->dev, "Failed to allocate PCI Configuration Memory"); ret = -EBUSY; - goto out_err_pci_request; + goto err_tpci200_info; } tpci200->info->cfg_regs = ioremap_nocache( pci_resource_start(pdev, TPCI200_CFG_MEM_BAR), @@ -548,7 +549,7 @@ if (!tpci200->info->cfg_regs) { dev_err(&pdev->dev, "Failed to map PCI Configuration Memory"); ret = -EFAULT; - goto out_err_ioremap; + goto err_request_region; } /* Disable byte swapping for 16 bit IP module access. This will ensure @@ -571,7 +572,7 @@ if (ret) { dev_err(&pdev->dev, "error during tpci200 install\n"); ret = -ENODEV; - goto out_err_install; + goto err_cfg_regs; } /* Register the carrier in the industry pack bus driver */ @@ -583,7 +584,7 @@ dev_err(&pdev->dev, "error registering the carrier on ipack driver\n"); ret = -EFAULT; - goto out_err_bus_register; + goto err_tpci200_install; } /* save the bus number given by ipack to logging purpose */ @@ -594,16 +595,16 @@ tpci200_create_device(tpci200, i); return 0; -out_err_bus_register: +err_tpci200_install: tpci200_uninstall(tpci200); -out_err_install: - iounmap(tpci200->info->cfg_regs); -out_err_ioremap: +err_cfg_regs: + pci_iounmap(tpci200->info->pdev, tpci200->info->cfg_regs); +err_request_region: pci_release_region(pdev, TPCI200_CFG_MEM_BAR); -out_err_pci_request: - pci_dev_put(pdev); +err_tpci200_info: kfree(tpci200->info); -out_err_info: + pci_dev_put(pdev); +err_tpci200: kfree(tpci200); return ret; } @@ -613,6 +614,12 @@ ipack_bus_unregister(tpci200->info->ipack_bus); tpci200_uninstall(tpci200); + pci_iounmap(tpci200->info->pdev, tpci200->info->cfg_regs); + + pci_release_region(tpci200->info->pdev, TPCI200_CFG_MEM_BAR); + + pci_dev_put(tpci200->info->pdev); + kfree(tpci200->info); kfree(tpci200); } diff -u linux-azure-5.4.0/drivers/irqchip/Kconfig linux-azure-5.4.0/drivers/irqchip/Kconfig --- linux-azure-5.4.0/drivers/irqchip/Kconfig +++ linux-azure-5.4.0/drivers/irqchip/Kconfig @@ -415,6 +415,7 @@ config GOLDFISH_PIC bool "Goldfish programmable interrupt controller" depends on MIPS && (GOLDFISH || COMPILE_TEST) + select GENERIC_IRQ_CHIP select IRQ_DOMAIN help Say yes here to enable Goldfish interrupt controller driver used diff -u linux-azure-5.4.0/drivers/irqchip/irq-gic-v3-its.c linux-azure-5.4.0/drivers/irqchip/irq-gic-v3-its.c --- linux-azure-5.4.0/drivers/irqchip/irq-gic-v3-its.c +++ linux-azure-5.4.0/drivers/irqchip/irq-gic-v3-its.c @@ -574,7 +574,7 @@ its_fixup_cmd(cmd); - return NULL; + return desc->its_invall_cmd.col; } static struct its_vpe *its_build_vinvall_cmd(struct its_node *its, @@ -3123,7 +3123,7 @@ if (err) { if (i > 0) - its_vpe_irq_domain_free(domain, virq, i - 1); + its_vpe_irq_domain_free(domain, virq, i); its_lpi_free(bitmap, base, nr_ids); its_free_prop_table(vprop_page); diff -u linux-azure-5.4.0/drivers/irqchip/irq-gic-v3.c linux-azure-5.4.0/drivers/irqchip/irq-gic-v3.c --- linux-azure-5.4.0/drivers/irqchip/irq-gic-v3.c +++ linux-azure-5.4.0/drivers/irqchip/irq-gic-v3.c @@ -162,11 +162,11 @@ } } -static void gic_do_wait_for_rwp(void __iomem *base) +static void gic_do_wait_for_rwp(void __iomem *base, u32 bit) { u32 count = 1000000; /* 1s! */ - while (readl_relaxed(base + GICD_CTLR) & GICD_CTLR_RWP) { + while (readl_relaxed(base + GICD_CTLR) & bit) { count--; if (!count) { pr_err_ratelimited("RWP timeout, gone fishing\n"); @@ -180,13 +180,13 @@ /* Wait for completion of a distributor change */ static void gic_dist_wait_for_rwp(void) { - gic_do_wait_for_rwp(gic_data.dist_base); + gic_do_wait_for_rwp(gic_data.dist_base, GICD_CTLR_RWP); } /* Wait for completion of a redistributor change */ static void gic_redist_wait_for_rwp(void) { - gic_do_wait_for_rwp(gic_data_rdist_rd_base()); + gic_do_wait_for_rwp(gic_data_rdist_rd_base(), GICR_CTLR_RWP); } #ifdef CONFIG_ARM64 @@ -1616,7 +1616,7 @@ gic_data.ppi_descs = kcalloc(gic_data.ppi_nr, sizeof(*gic_data.ppi_descs), GFP_KERNEL); if (!gic_data.ppi_descs) - return; + goto out_put_node; nr_parts = of_get_child_count(parts_node); @@ -1657,12 +1657,15 @@ continue; cpu = of_cpu_node_to_id(cpu_node); - if (WARN_ON(cpu < 0)) + if (WARN_ON(cpu < 0)) { + of_node_put(cpu_node); continue; + } pr_cont("%pOF[%d] ", cpu_node, cpu); cpumask_set_cpu(cpu, &part->mask); + of_node_put(cpu_node); } pr_cont("}\n"); diff -u linux-azure-5.4.0/drivers/irqchip/irq-sni-exiu.c linux-azure-5.4.0/drivers/irqchip/irq-sni-exiu.c --- linux-azure-5.4.0/drivers/irqchip/irq-sni-exiu.c +++ linux-azure-5.4.0/drivers/irqchip/irq-sni-exiu.c @@ -37,11 +37,26 @@ u32 spi_base; }; -static void exiu_irq_eoi(struct irq_data *d) +static void exiu_irq_ack(struct irq_data *d) { struct exiu_irq_data *data = irq_data_get_irq_chip_data(d); writel(BIT(d->hwirq), data->base + EIREQCLR); +} + +static void exiu_irq_eoi(struct irq_data *d) +{ + struct exiu_irq_data *data = irq_data_get_irq_chip_data(d); + + /* + * Level triggered interrupts are latched and must be cleared during + * EOI or the interrupt will be jammed on. Of course if a level + * triggered interrupt is still asserted then the write will not clear + * the interrupt. + */ + if (irqd_is_level_type(d)) + writel(BIT(d->hwirq), data->base + EIREQCLR); + irq_chip_eoi_parent(d); } @@ -91,10 +106,13 @@ writel_relaxed(val, data->base + EILVL); val = readl_relaxed(data->base + EIEDG); - if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH) + if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH) { val &= ~BIT(d->hwirq); - else + irq_set_handler_locked(d, handle_fasteoi_irq); + } else { val |= BIT(d->hwirq); + irq_set_handler_locked(d, handle_fasteoi_ack_irq); + } writel_relaxed(val, data->base + EIEDG); writel_relaxed(BIT(d->hwirq), data->base + EIREQCLR); @@ -104,6 +122,7 @@ static struct irq_chip exiu_irq_chip = { .name = "EXIU", + .irq_ack = exiu_irq_ack, .irq_eoi = exiu_irq_eoi, .irq_enable = exiu_irq_enable, .irq_mask = exiu_irq_mask, diff -u linux-azure-5.4.0/drivers/isdn/capi/kcapi.c linux-azure-5.4.0/drivers/isdn/capi/kcapi.c --- linux-azure-5.4.0/drivers/isdn/capi/kcapi.c +++ linux-azure-5.4.0/drivers/isdn/capi/kcapi.c @@ -565,6 +565,11 @@ ctr_down(ctr, CAPI_CTR_DETACHED); + if (ctr->cnr < 1 || ctr->cnr - 1 >= CAPI_MAXCONTR) { + err = -EINVAL; + goto unlock_out; + } + if (capi_controller[ctr->cnr - 1] != ctr) { err = -EINVAL; goto unlock_out; diff -u linux-azure-5.4.0/drivers/leds/Kconfig linux-azure-5.4.0/drivers/leds/Kconfig --- linux-azure-5.4.0/drivers/leds/Kconfig +++ linux-azure-5.4.0/drivers/leds/Kconfig @@ -144,6 +144,7 @@ config LEDS_LM3532 tristate "LCD Backlight driver for LM3532" + select REGMAP_I2C depends on LEDS_CLASS depends on I2C help diff -u linux-azure-5.4.0/drivers/leds/leds-lm36274.c linux-azure-5.4.0/drivers/leds/leds-lm36274.c --- linux-azure-5.4.0/drivers/leds/leds-lm36274.c +++ linux-azure-5.4.0/drivers/leds/leds-lm36274.c @@ -41,37 +41,36 @@ }; static int lm36274_brightness_set(struct led_classdev *led_cdev, - enum led_brightness brt_val) + enum led_brightness brt_val) { - struct lm36274 *led = container_of(led_cdev, struct lm36274, led_dev); + struct lm36274 *chip = container_of(led_cdev, struct lm36274, led_dev); - return ti_lmu_common_set_brightness(&led->lmu_data, brt_val); + return ti_lmu_common_set_brightness(&chip->lmu_data, brt_val); } -static int lm36274_init(struct lm36274 *lm36274_data) +static int lm36274_init(struct lm36274 *chip) { int enable_val = 0; int i; - for (i = 0; i < lm36274_data->num_leds; i++) - enable_val |= (1 << lm36274_data->led_sources[i]); + for (i = 0; i < chip->num_leds; i++) + enable_val |= (1 << chip->led_sources[i]); if (!enable_val) { - dev_err(lm36274_data->dev, "No LEDs were enabled\n"); + dev_err(chip->dev, "No LEDs were enabled\n"); return -EINVAL; } enable_val |= LM36274_BL_EN; - return regmap_write(lm36274_data->regmap, LM36274_REG_BL_EN, - enable_val); + return regmap_write(chip->regmap, LM36274_REG_BL_EN, enable_val); } -static int lm36274_parse_dt(struct lm36274 *lm36274_data) +static int lm36274_parse_dt(struct lm36274 *chip) { struct fwnode_handle *child = NULL; char label[LED_MAX_NAME_SIZE]; - struct device *dev = &lm36274_data->pdev->dev; + struct device *dev = &chip->pdev->dev; const char *name; int child_cnt; int ret = -EINVAL; @@ -84,37 +83,37 @@ device_for_each_child_node(dev, child) { ret = fwnode_property_read_string(child, "label", &name); if (ret) - snprintf(label, sizeof(label), - "%s::", lm36274_data->pdev->name); + snprintf(label, sizeof(label), "%s::", + chip->pdev->name); else - snprintf(label, sizeof(label), - "%s:%s", lm36274_data->pdev->name, name); + snprintf(label, sizeof(label), "%s:%s", + chip->pdev->name, name); - lm36274_data->num_leds = fwnode_property_count_u32(child, "led-sources"); - if (lm36274_data->num_leds <= 0) + chip->num_leds = fwnode_property_count_u32(child, "led-sources"); + if (chip->num_leds <= 0) return -ENODEV; ret = fwnode_property_read_u32_array(child, "led-sources", - lm36274_data->led_sources, - lm36274_data->num_leds); + chip->led_sources, + chip->num_leds); if (ret) { dev_err(dev, "led-sources property missing\n"); return ret; } fwnode_property_read_string(child, "linux,default-trigger", - &lm36274_data->led_dev.default_trigger); + &chip->led_dev.default_trigger); } - lm36274_data->lmu_data.regmap = lm36274_data->regmap; - lm36274_data->lmu_data.max_brightness = MAX_BRIGHTNESS_11BIT; - lm36274_data->lmu_data.msb_brightness_reg = LM36274_REG_BRT_MSB; - lm36274_data->lmu_data.lsb_brightness_reg = LM36274_REG_BRT_LSB; - - lm36274_data->led_dev.name = label; - lm36274_data->led_dev.max_brightness = MAX_BRIGHTNESS_11BIT; - lm36274_data->led_dev.brightness_set_blocking = lm36274_brightness_set; + chip->lmu_data.regmap = chip->regmap; + chip->lmu_data.max_brightness = MAX_BRIGHTNESS_11BIT; + chip->lmu_data.msb_brightness_reg = LM36274_REG_BRT_MSB; + chip->lmu_data.lsb_brightness_reg = LM36274_REG_BRT_LSB; + + chip->led_dev.name = label; + chip->led_dev.max_brightness = MAX_BRIGHTNESS_11BIT; + chip->led_dev.brightness_set_blocking = lm36274_brightness_set; return 0; } @@ -122,39 +121,38 @@ static int lm36274_probe(struct platform_device *pdev) { struct ti_lmu *lmu = dev_get_drvdata(pdev->dev.parent); - struct lm36274 *lm36274_data; + struct lm36274 *chip; int ret; - lm36274_data = devm_kzalloc(&pdev->dev, sizeof(*lm36274_data), - GFP_KERNEL); - if (!lm36274_data) + chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL); + if (!chip) return -ENOMEM; - lm36274_data->pdev = pdev; - lm36274_data->dev = lmu->dev; - lm36274_data->regmap = lmu->regmap; - platform_set_drvdata(pdev, lm36274_data); + chip->pdev = pdev; + chip->dev = lmu->dev; + chip->regmap = lmu->regmap; + platform_set_drvdata(pdev, chip); - ret = lm36274_parse_dt(lm36274_data); + ret = lm36274_parse_dt(chip); if (ret) { - dev_err(lm36274_data->dev, "Failed to parse DT node\n"); + dev_err(chip->dev, "Failed to parse DT node\n"); return ret; } - ret = lm36274_init(lm36274_data); + ret = lm36274_init(chip); if (ret) { - dev_err(lm36274_data->dev, "Failed to init the device\n"); + dev_err(chip->dev, "Failed to init the device\n"); return ret; } - return led_classdev_register(lm36274_data->dev, &lm36274_data->led_dev); + return led_classdev_register(chip->dev, &chip->led_dev); } static int lm36274_remove(struct platform_device *pdev) { - struct lm36274 *lm36274_data = platform_get_drvdata(pdev); + struct lm36274 *chip = platform_get_drvdata(pdev); - led_classdev_unregister(&lm36274_data->led_dev); + led_classdev_unregister(&chip->led_dev); return 0; } diff -u linux-azure-5.4.0/drivers/leds/leds-lm3692x.c linux-azure-5.4.0/drivers/leds/leds-lm3692x.c --- linux-azure-5.4.0/drivers/leds/leds-lm3692x.c +++ linux-azure-5.4.0/drivers/leds/leds-lm3692x.c @@ -358,6 +358,7 @@ ret = fwnode_property_read_u32(child, "reg", &led->led_enable); if (ret) { + fwnode_handle_put(child); dev_err(&led->client->dev, "reg DT property missing\n"); return ret; } @@ -368,12 +369,11 @@ ret = devm_led_classdev_register_ext(&led->client->dev, &led->led_dev, &init_data); - if (ret) { + if (ret) dev_err(&led->client->dev, "led register err: %d\n", ret); - return ret; - } - return 0; + fwnode_handle_put(init_data.fwnode); + return ret; } static int lm3692x_probe(struct i2c_client *client, diff -u linux-azure-5.4.0/drivers/lightnvm/Kconfig linux-azure-5.4.0/drivers/lightnvm/Kconfig --- linux-azure-5.4.0/drivers/lightnvm/Kconfig +++ linux-azure-5.4.0/drivers/lightnvm/Kconfig @@ -5,7 +5,7 @@ menuconfig NVM bool "Open-Channel SSD target support" - depends on BLOCK + depends on BLOCK && BROKEN help Say Y here to get to enable Open-channel SSDs. diff -u linux-azure-5.4.0/drivers/mailbox/mailbox.c linux-azure-5.4.0/drivers/mailbox/mailbox.c --- linux-azure-5.4.0/drivers/mailbox/mailbox.c +++ linux-azure-5.4.0/drivers/mailbox/mailbox.c @@ -82,11 +82,11 @@ exit: spin_unlock_irqrestore(&chan->lock, flags); - /* kick start the timer immediately to avoid delays */ if (!err && (chan->txdone_method & TXDONE_BY_POLL)) { - /* but only if not already active */ - if (!hrtimer_active(&chan->mbox->poll_hrt)) - hrtimer_start(&chan->mbox->poll_hrt, 0, HRTIMER_MODE_REL); + /* kick start the timer immediately to avoid delays */ + spin_lock_irqsave(&chan->mbox->poll_hrt_lock, flags); + hrtimer_start(&chan->mbox->poll_hrt, 0, HRTIMER_MODE_REL); + spin_unlock_irqrestore(&chan->mbox->poll_hrt_lock, flags); } } @@ -120,20 +120,26 @@ container_of(hrtimer, struct mbox_controller, poll_hrt); bool txdone, resched = false; int i; + unsigned long flags; for (i = 0; i < mbox->num_chans; i++) { struct mbox_chan *chan = &mbox->chans[i]; if (chan->active_req && chan->cl) { - resched = true; txdone = chan->mbox->ops->last_tx_done(chan); if (txdone) tx_tick(chan, 0); + else + resched = true; } } if (resched) { - hrtimer_forward_now(hrtimer, ms_to_ktime(mbox->txpoll_period)); + spin_lock_irqsave(&mbox->poll_hrt_lock, flags); + if (!hrtimer_is_queued(hrtimer)) + hrtimer_forward_now(hrtimer, ms_to_ktime(mbox->txpoll_period)); + spin_unlock_irqrestore(&mbox->poll_hrt_lock, flags); + return HRTIMER_RESTART; } return HRTIMER_NORESTART; @@ -500,6 +506,7 @@ hrtimer_init(&mbox->poll_hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL); mbox->poll_hrt.function = txdone_hrtimer; + spin_lock_init(&mbox->poll_hrt_lock); } for (i = 0; i < mbox->num_chans; i++) { diff -u linux-azure-5.4.0/drivers/mailbox/tegra-hsp.c linux-azure-5.4.0/drivers/mailbox/tegra-hsp.c --- linux-azure-5.4.0/drivers/mailbox/tegra-hsp.c +++ linux-azure-5.4.0/drivers/mailbox/tegra-hsp.c @@ -403,6 +403,11 @@ value = tegra_hsp_channel_readl(ch, HSP_SM_SHRD_MBOX); if ((value & HSP_SM_SHRD_MBOX_FULL) == 0) { mbox_chan_txdone(chan, 0); + + /* Wait until channel is empty */ + if (chan->active_req != NULL) + continue; + return 0; } diff -u linux-azure-5.4.0/drivers/md/bcache/request.c linux-azure-5.4.0/drivers/md/bcache/request.c --- linux-azure-5.4.0/drivers/md/bcache/request.c +++ linux-azure-5.4.0/drivers/md/bcache/request.c @@ -1119,6 +1119,12 @@ * which would call closure_get(&dc->disk.cl) */ ddip = kzalloc(sizeof(struct detached_dev_io_private), GFP_NOIO); + if (!ddip) { + bio->bi_status = BLK_STS_RESOURCE; + bio->bi_end_io(bio); + return; + } + ddip->d = d; ddip->start_time = jiffies; ddip->bi_end_io = bio->bi_end_io; diff -u linux-azure-5.4.0/drivers/md/bcache/super.c linux-azure-5.4.0/drivers/md/bcache/super.c --- linux-azure-5.4.0/drivers/md/bcache/super.c +++ linux-azure-5.4.0/drivers/md/bcache/super.c @@ -839,20 +839,20 @@ n = BITS_TO_LONGS(d->nr_stripes) * sizeof(unsigned long); d->full_dirty_stripes = kvzalloc(n, GFP_KERNEL); if (!d->full_dirty_stripes) - return -ENOMEM; + goto out_free_stripe_sectors_dirty; idx = ida_simple_get(&bcache_device_idx, 0, BCACHE_DEVICE_IDX_MAX, GFP_KERNEL); if (idx < 0) - return idx; + goto out_free_full_dirty_stripes; if (bioset_init(&d->bio_split, 4, offsetof(struct bbio, bio), BIOSET_NEED_BVECS|BIOSET_NEED_RESCUER)) - goto err; + goto out_ida_remove; d->disk = alloc_disk(BCACHE_MINORS); if (!d->disk) - goto err; + goto out_bioset_exit; set_capacity(d->disk, sectors); snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", idx); @@ -902,8 +902,14 @@ return 0; -err: +out_bioset_exit: + bioset_exit(&d->bio_split); +out_ida_remove: ida_simple_remove(&bcache_device_idx, idx); +out_free_full_dirty_stripes: + kvfree(d->full_dirty_stripes); +out_free_stripe_sectors_dirty: + kvfree(d->stripe_sectors_dirty); return -ENOMEM; } diff -u linux-azure-5.4.0/drivers/md/bcache/writeback.c linux-azure-5.4.0/drivers/md/bcache/writeback.c --- linux-azure-5.4.0/drivers/md/bcache/writeback.c +++ linux-azure-5.4.0/drivers/md/bcache/writeback.c @@ -157,27 +157,61 @@ dc->writeback_rate_target = target; } +static bool idle_counter_exceeded(struct cache_set *c) +{ + int counter, dev_nr; + + /* + * If c->idle_counter is overflow (idel for really long time), + * reset as 0 and not set maximum rate this time for code + * simplicity. + */ + counter = atomic_inc_return(&c->idle_counter); + if (counter <= 0) { + atomic_set(&c->idle_counter, 0); + return false; + } + + dev_nr = atomic_read(&c->attached_dev_nr); + if (dev_nr == 0) + return false; + + /* + * c->idle_counter is increased by writeback thread of all + * attached backing devices, in order to represent a rough + * time period, counter should be divided by dev_nr. + * Otherwise the idle time cannot be larger with more backing + * device attached. + * The following calculation equals to checking + * (counter / dev_nr) < (dev_nr * 6) + */ + if (counter < (dev_nr * dev_nr * 6)) + return false; + + return true; +} + +/* + * Idle_counter is increased every time when update_writeback_rate() is + * called. If all backing devices attached to the same cache set have + * identical dc->writeback_rate_update_seconds values, it is about 6 + * rounds of update_writeback_rate() on each backing device before + * c->at_max_writeback_rate is set to 1, and then max wrteback rate set + * to each dc->writeback_rate.rate. + * In order to avoid extra locking cost for counting exact dirty cached + * devices number, c->attached_dev_nr is used to calculate the idle + * throushold. It might be bigger if not all cached device are in write- + * back mode, but it still works well with limited extra rounds of + * update_writeback_rate(). + */ static bool set_at_max_writeback_rate(struct cache_set *c, struct cached_dev *dc) { /* Don't set max writeback rate if gc is running */ if (!c->gc_mark_valid) return false; - /* - * Idle_counter is increased everytime when update_writeback_rate() is - * called. If all backing devices attached to the same cache set have - * identical dc->writeback_rate_update_seconds values, it is about 6 - * rounds of update_writeback_rate() on each backing device before - * c->at_max_writeback_rate is set to 1, and then max wrteback rate set - * to each dc->writeback_rate.rate. - * In order to avoid extra locking cost for counting exact dirty cached - * devices number, c->attached_dev_nr is used to calculate the idle - * throushold. It might be bigger if not all cached device are in write- - * back mode, but it still works well with limited extra rounds of - * update_writeback_rate(). - */ - if (atomic_inc_return(&c->idle_counter) < - atomic_read(&c->attached_dev_nr) * 6) + + if (!idle_counter_exceeded(c)) return false; if (atomic_read(&c->at_max_writeback_rate) != 1) @@ -191,13 +225,10 @@ dc->writeback_rate_change = 0; /* - * Check c->idle_counter and c->at_max_writeback_rate agagain in case - * new I/O arrives during before set_at_max_writeback_rate() returns. - * Then the writeback rate is set to 1, and its new value should be - * decided via __update_writeback_rate(). + * In case new I/O arrives during before + * set_at_max_writeback_rate() returns. */ - if ((atomic_read(&c->idle_counter) < - atomic_read(&c->attached_dev_nr) * 6) || + if (!idle_counter_exceeded(c) || !atomic_read(&c->at_max_writeback_rate)) return false; diff -u linux-azure-5.4.0/drivers/md/dm-crypt.c linux-azure-5.4.0/drivers/md/dm-crypt.c --- linux-azure-5.4.0/drivers/md/dm-crypt.c +++ linux-azure-5.4.0/drivers/md/dm-crypt.c @@ -2010,7 +2010,7 @@ static int get_key_size(char **key_string) { - return (*key_string[0] == ':') ? -EINVAL : strlen(*key_string) >> 1; + return (*key_string[0] == ':') ? -EINVAL : (int)(strlen(*key_string) >> 1); } #endif @@ -2092,7 +2092,12 @@ struct crypt_config *cc = pool_data; struct page *page; - if (unlikely(percpu_counter_compare(&cc->n_allocated_pages, dm_crypt_pages_per_client) >= 0) && + /* + * Note, percpu_counter_read_positive() may over (and under) estimate + * the current usage by at most (batch - 1) * num_online_cpus() pages, + * but avoids potential spinlock contention of an exact result. + */ + if (unlikely(percpu_counter_read_positive(&cc->n_allocated_pages) >= dm_crypt_pages_per_client) && likely(gfp_mask & __GFP_NORETRY)) return NULL; @@ -2812,6 +2817,11 @@ return DM_MAPIO_SUBMITTED; } +static char hex2asc(unsigned char c) +{ + return c + '0' + ((unsigned)(9 - c) >> 4 & 0x27); +} + static void crypt_status(struct dm_target *ti, status_type_t type, unsigned status_flags, char *result, unsigned maxlen) { @@ -2830,9 +2840,12 @@ if (cc->key_size > 0) { if (cc->key_string) DMEMIT(":%u:%s", cc->key_size, cc->key_string); - else - for (i = 0; i < cc->key_size; i++) - DMEMIT("%02x", cc->key[i]); + else { + for (i = 0; i < cc->key_size; i++) { + DMEMIT("%c%c", hex2asc(cc->key[i] >> 4), + hex2asc(cc->key[i] & 0xf)); + } + } } else DMEMIT("-"); diff -u linux-azure-5.4.0/drivers/md/dm-era-target.c linux-azure-5.4.0/drivers/md/dm-era-target.c --- linux-azure-5.4.0/drivers/md/dm-era-target.c +++ linux-azure-5.4.0/drivers/md/dm-era-target.c @@ -1397,7 +1397,7 @@ static void stop_worker(struct era *era) { atomic_set(&era->suspended, 1); - flush_workqueue(era->wq); + drain_workqueue(era->wq); } /*---------------------------------------------------------------- @@ -1581,6 +1581,12 @@ } stop_worker(era); + + r = metadata_commit(era->md); + if (r) { + DMERR("%s: metadata_commit failed", __func__); + /* FIXME: fail mode */ + } } static int era_preresume(struct dm_target *ti) diff -u linux-azure-5.4.0/drivers/md/dm-integrity.c linux-azure-5.4.0/drivers/md/dm-integrity.c --- linux-azure-5.4.0/drivers/md/dm-integrity.c +++ linux-azure-5.4.0/drivers/md/dm-integrity.c @@ -4054,6 +4054,7 @@ } if (ic->internal_hash) { + size_t recalc_tags_size; ic->recalc_wq = alloc_workqueue("dm-integrity-recalc", WQ_MEM_RECLAIM, 1); if (!ic->recalc_wq ) { ti->error = "Cannot allocate workqueue"; @@ -4067,8 +4068,10 @@ r = -ENOMEM; goto bad; } - ic->recalc_tags = kvmalloc_array(RECALC_SECTORS >> ic->sb->log2_sectors_per_block, - ic->tag_size, GFP_KERNEL); + recalc_tags_size = (RECALC_SECTORS >> ic->sb->log2_sectors_per_block) * ic->tag_size; + if (crypto_shash_digestsize(ic->internal_hash) > ic->tag_size) + recalc_tags_size += crypto_shash_digestsize(ic->internal_hash) - ic->tag_size; + ic->recalc_tags = kvmalloc(recalc_tags_size, GFP_KERNEL); if (!ic->recalc_tags) { ti->error = "Cannot allocate tags for recalculating"; r = -ENOMEM; @@ -4146,8 +4149,6 @@ } if (should_write_sb) { - int r; - init_journal(ic, 0, ic->journal_sections, 0); r = dm_integrity_failed(ic); if (unlikely(r)) { diff -u linux-azure-5.4.0/drivers/md/dm-ioctl.c linux-azure-5.4.0/drivers/md/dm-ioctl.c --- linux-azure-5.4.0/drivers/md/dm-ioctl.c +++ linux-azure-5.4.0/drivers/md/dm-ioctl.c @@ -17,6 +17,7 @@ #include #include #include +#include #include @@ -1696,6 +1697,7 @@ if (unlikely(cmd >= ARRAY_SIZE(_ioctls))) return NULL; + cmd = array_index_nospec(cmd, ARRAY_SIZE(_ioctls)); *ioctl_flags = _ioctls[cmd].flags; return _ioctls[cmd].fn; } diff -u linux-azure-5.4.0/drivers/md/dm-raid.c linux-azure-5.4.0/drivers/md/dm-raid.c --- linux-azure-5.4.0/drivers/md/dm-raid.c +++ linux-azure-5.4.0/drivers/md/dm-raid.c @@ -998,12 +998,13 @@ static int validate_raid_redundancy(struct raid_set *rs) { unsigned int i, rebuild_cnt = 0; - unsigned int rebuilds_per_group = 0, copies; + unsigned int rebuilds_per_group = 0, copies, raid_disks; unsigned int group_size, last_group_start; - for (i = 0; i < rs->md.raid_disks; i++) - if (!test_bit(In_sync, &rs->dev[i].rdev.flags) || - !rs->dev[i].rdev.sb_page) + for (i = 0; i < rs->raid_disks; i++) + if (!test_bit(FirstUse, &rs->dev[i].rdev.flags) && + ((!test_bit(In_sync, &rs->dev[i].rdev.flags) || + !rs->dev[i].rdev.sb_page))) rebuild_cnt++; switch (rs->md.level) { @@ -1043,8 +1044,9 @@ * A A B B C * C D D E E */ + raid_disks = min(rs->raid_disks, rs->md.raid_disks); if (__is_raid10_near(rs->md.new_layout)) { - for (i = 0; i < rs->md.raid_disks; i++) { + for (i = 0; i < raid_disks; i++) { if (!(i % copies)) rebuilds_per_group = 0; if ((!rs->dev[i].rdev.sb_page || @@ -1067,10 +1069,10 @@ * results in the need to treat the last (potentially larger) * set differently. */ - group_size = (rs->md.raid_disks / copies); - last_group_start = (rs->md.raid_disks / group_size) - 1; + group_size = (raid_disks / copies); + last_group_start = (raid_disks / group_size) - 1; last_group_start *= group_size; - for (i = 0; i < rs->md.raid_disks; i++) { + for (i = 0; i < raid_disks; i++) { if (!(i % copies) && !(i > last_group_start)) rebuilds_per_group = 0; if ((!rs->dev[i].rdev.sb_page || @@ -1585,7 +1587,7 @@ { int i; - for (i = 0; i < rs->md.raid_disks; i++) { + for (i = 0; i < rs->raid_disks; i++) { struct md_rdev *rdev = &rs->dev[i].rdev; if (!test_bit(Journal, &rdev->flags) && @@ -3526,7 +3528,7 @@ { struct raid_set *rs = ti->private; struct mddev *mddev = &rs->md; - struct r5conf *conf = mddev->private; + struct r5conf *conf = rs_is_raid456(rs) ? mddev->private : NULL; int i, max_nr_stripes = conf ? conf->max_nr_stripes : 0; unsigned long recovery; unsigned int raid_param_cnt = 1; /* at least 1 for chunksize */ @@ -3746,13 +3748,13 @@ unsigned int i; int r = 0; - for (i = 0; !r && i < rs->md.raid_disks; i++) - if (rs->dev[i].data_dev) - r = fn(ti, - rs->dev[i].data_dev, - 0, /* No offset on data devs */ - rs->md.dev_sectors, - data); + for (i = 0; !r && i < rs->raid_disks; i++) { + if (rs->dev[i].data_dev) { + r = fn(ti, rs->dev[i].data_dev, + 0, /* No offset on data devs */ + rs->md.dev_sectors, data); + } + } return r; } @@ -3797,7 +3799,7 @@ memset(cleared_failed_devices, 0, sizeof(cleared_failed_devices)); - for (i = 0; i < mddev->raid_disks; i++) { + for (i = 0; i < rs->raid_disks; i++) { r = &rs->dev[i].rdev; /* HM FIXME: enhance journal device recovery processing */ if (test_bit(Journal, &r->flags)) diff -u linux-azure-5.4.0/drivers/md/dm-rq.c linux-azure-5.4.0/drivers/md/dm-rq.c --- linux-azure-5.4.0/drivers/md/dm-rq.c +++ linux-azure-5.4.0/drivers/md/dm-rq.c @@ -285,7 +285,8 @@ struct dm_rq_target_io *tio = tio_from_request(rq); tio->error = error; - blk_mq_complete_request(rq); + if (likely(!blk_should_fake_timeout(rq->q))) + blk_mq_complete_request(rq); } /* diff -u linux-azure-5.4.0/drivers/md/dm-table.c linux-azure-5.4.0/drivers/md/dm-table.c --- linux-azure-5.4.0/drivers/md/dm-table.c +++ linux-azure-5.4.0/drivers/md/dm-table.c @@ -872,8 +872,7 @@ static bool __table_type_bio_based(enum dm_queue_mode table_type) { return (table_type == DM_TYPE_BIO_BASED || - table_type == DM_TYPE_DAX_BIO_BASED || - table_type == DM_TYPE_NVME_BIO_BASED); + table_type == DM_TYPE_DAX_BIO_BASED); } static bool __table_type_request_based(enum dm_queue_mode table_type) @@ -929,8 +928,6 @@ return true; } -static bool dm_table_does_not_support_partial_completion(struct dm_table *t); - static int device_is_rq_stackable(struct dm_target *ti, struct dm_dev *dev, sector_t start, sector_t len, void *data) { @@ -960,7 +957,6 @@ goto verify_bio_based; } BUG_ON(t->type == DM_TYPE_DAX_BIO_BASED); - BUG_ON(t->type == DM_TYPE_NVME_BIO_BASED); goto verify_rq_based; } @@ -999,15 +995,6 @@ if (dm_table_supports_dax(t, device_not_dax_capable, &page_size) || (list_empty(devices) && live_md_type == DM_TYPE_DAX_BIO_BASED)) { t->type = DM_TYPE_DAX_BIO_BASED; - } else { - /* Check if upgrading to NVMe bio-based is valid or required */ - tgt = dm_table_get_immutable_target(t); - if (tgt && !tgt->max_io_len && dm_table_does_not_support_partial_completion(t)) { - t->type = DM_TYPE_NVME_BIO_BASED; - goto verify_rq_based; /* must be stacked directly on NVMe (blk-mq) */ - } else if (list_empty(devices) && live_md_type == DM_TYPE_NVME_BIO_BASED) { - t->type = DM_TYPE_NVME_BIO_BASED; - } } return 0; } @@ -1024,8 +1011,7 @@ * (e.g. request completion process for partial completion.) */ if (t->num_targets > 1) { - DMERR("%s DM doesn't support multiple targets", - t->type == DM_TYPE_NVME_BIO_BASED ? "nvme bio-based" : "request-based"); + DMERR("request-based DM doesn't support multiple targets"); return -EINVAL; } @@ -1714,20 +1700,6 @@ return q && !blk_queue_add_random(q); } -static int device_is_partial_completion(struct dm_target *ti, struct dm_dev *dev, - sector_t start, sector_t len, void *data) -{ - char b[BDEVNAME_SIZE]; - - /* For now, NVMe devices are the only devices of this class */ - return (strncmp(bdevname(dev->bdev, b), "nvme", 4) != 0); -} - -static bool dm_table_does_not_support_partial_completion(struct dm_table *t) -{ - return !dm_table_any_dev_attr(t, device_is_partial_completion, NULL); -} - static int device_not_write_same_capable(struct dm_target *ti, struct dm_dev *dev, sector_t start, sector_t len, void *data) { diff -u linux-azure-5.4.0/drivers/md/dm-thin-metadata.c linux-azure-5.4.0/drivers/md/dm-thin-metadata.c --- linux-azure-5.4.0/drivers/md/dm-thin-metadata.c +++ linux-azure-5.4.0/drivers/md/dm-thin-metadata.c @@ -2060,10 +2060,13 @@ dm_sm_threshold_fn fn, void *context) { - int r; + int r = -EINVAL; pmd_write_lock_in_core(pmd); - r = dm_sm_register_threshold_callback(pmd->metadata_sm, threshold, fn, context); + if (!pmd->fail_io) { + r = dm_sm_register_threshold_callback(pmd->metadata_sm, + threshold, fn, context); + } pmd_write_unlock(pmd); return r; diff -u linux-azure-5.4.0/drivers/md/dm-thin.c linux-azure-5.4.0/drivers/md/dm-thin.c --- linux-azure-5.4.0/drivers/md/dm-thin.c +++ linux-azure-5.4.0/drivers/md/dm-thin.c @@ -3425,8 +3425,10 @@ calc_metadata_threshold(pt), metadata_low_callback, pool); - if (r) + if (r) { + ti->error = "Error registering metadata threshold"; goto out_flags_changed; + } pt->callbacks.congested_fn = pool_is_congested; dm_table_add_target_callbacks(ti->table, &pt->callbacks); diff -u linux-azure-5.4.0/drivers/md/dm-verity-target.c linux-azure-5.4.0/drivers/md/dm-verity-target.c --- linux-azure-5.4.0/drivers/md/dm-verity-target.c +++ linux-azure-5.4.0/drivers/md/dm-verity-target.c @@ -1217,6 +1217,7 @@ static struct target_type verity_target = { .name = "verity", + .features = DM_TARGET_IMMUTABLE, .version = {1, 5, 0}, .module = THIS_MODULE, .ctr = verity_ctr, diff -u linux-azure-5.4.0/drivers/md/dm-writecache.c linux-azure-5.4.0/drivers/md/dm-writecache.c --- linux-azure-5.4.0/drivers/md/dm-writecache.c +++ linux-azure-5.4.0/drivers/md/dm-writecache.c @@ -20,7 +20,7 @@ #define HIGH_WATERMARK 50 #define LOW_WATERMARK 45 -#define MAX_WRITEBACK_JOBS 0 +#define MAX_WRITEBACK_JOBS min(0x10000000 / PAGE_SIZE, totalram_pages() / 16) #define ENDIO_LATENCY 16 #define WRITEBACK_LATENCY 64 #define AUTOCOMMIT_BLOCKS_SSD 65536 @@ -154,6 +154,7 @@ bool overwrote_committed:1; bool memory_vmapped:1; + bool start_sector_set:1; bool high_wm_percent_set:1; bool low_wm_percent_set:1; bool max_writeback_jobs_set:1; @@ -162,6 +163,10 @@ bool writeback_fua_set:1; bool flush_on_suspend:1; + unsigned high_wm_percent_value; + unsigned low_wm_percent_value; + unsigned autocommit_time_value; + unsigned writeback_all; struct workqueue_struct *writeback_wq; struct work_struct writeback_work; @@ -2069,6 +2074,7 @@ if (sscanf(string, "%llu%c", &start_sector, &dummy) != 1) goto invalid_optional; wc->start_sector = start_sector; + wc->start_sector_set = true; if (wc->start_sector != start_sector || wc->start_sector >= wc->memory_map_size >> SECTOR_SHIFT) goto invalid_optional; @@ -2078,6 +2084,7 @@ goto invalid_optional; if (high_wm_percent < 0 || high_wm_percent > 100) goto invalid_optional; + wc->high_wm_percent_value = high_wm_percent; wc->high_wm_percent_set = true; } else if (!strcasecmp(string, "low_watermark") && opt_params >= 1) { string = dm_shift_arg(&as), opt_params--; @@ -2085,6 +2092,7 @@ goto invalid_optional; if (low_wm_percent < 0 || low_wm_percent > 100) goto invalid_optional; + wc->low_wm_percent_value = low_wm_percent; wc->low_wm_percent_set = true; } else if (!strcasecmp(string, "writeback_jobs") && opt_params >= 1) { string = dm_shift_arg(&as), opt_params--; @@ -2104,6 +2112,7 @@ if (autocommit_msecs > 3600000) goto invalid_optional; wc->autocommit_jiffies = msecs_to_jiffies(autocommit_msecs); + wc->autocommit_time_value = autocommit_msecs; wc->autocommit_time_set = true; } else if (!strcasecmp(string, "fua")) { if (WC_MODE_PMEM(wc)) { @@ -2305,7 +2314,6 @@ struct dm_writecache *wc = ti->private; unsigned extra_args; unsigned sz = 0; - uint64_t x; switch (type) { case STATUSTYPE_INFO: @@ -2317,7 +2325,7 @@ DMEMIT("%c %s %s %u ", WC_MODE_PMEM(wc) ? 'p' : 's', wc->dev->name, wc->ssd_dev->name, wc->block_size); extra_args = 0; - if (wc->start_sector) + if (wc->start_sector_set) extra_args += 2; if (wc->high_wm_percent_set) extra_args += 2; @@ -2333,26 +2341,18 @@ extra_args++; DMEMIT("%u", extra_args); - if (wc->start_sector) + if (wc->start_sector_set) DMEMIT(" start_sector %llu", (unsigned long long)wc->start_sector); - if (wc->high_wm_percent_set) { - x = (uint64_t)wc->freelist_high_watermark * 100; - x += wc->n_blocks / 2; - do_div(x, (size_t)wc->n_blocks); - DMEMIT(" high_watermark %u", 100 - (unsigned)x); - } - if (wc->low_wm_percent_set) { - x = (uint64_t)wc->freelist_low_watermark * 100; - x += wc->n_blocks / 2; - do_div(x, (size_t)wc->n_blocks); - DMEMIT(" low_watermark %u", 100 - (unsigned)x); - } + if (wc->high_wm_percent_set) + DMEMIT(" high_watermark %u", wc->high_wm_percent_value); + if (wc->low_wm_percent_set) + DMEMIT(" low_watermark %u", wc->low_wm_percent_value); if (wc->max_writeback_jobs_set) DMEMIT(" writeback_jobs %u", wc->max_writeback_jobs); if (wc->autocommit_blocks_set) DMEMIT(" autocommit_blocks %u", wc->autocommit_blocks); if (wc->autocommit_time_set) - DMEMIT(" autocommit_time %u", jiffies_to_msecs(wc->autocommit_jiffies)); + DMEMIT(" autocommit_time %u", wc->autocommit_time_value); if (wc->writeback_fua_set) DMEMIT(" %sfua", wc->writeback_fua ? "" : "no"); break; diff -u linux-azure-5.4.0/drivers/md/dm.c linux-azure-5.4.0/drivers/md/dm.c --- linux-azure-5.4.0/drivers/md/dm.c +++ linux-azure-5.4.0/drivers/md/dm.c @@ -676,19 +676,20 @@ false, 0, &io->stats_aux); } -static void end_io_acct(struct dm_io *io) +static void end_io_acct(struct mapped_device *md, struct bio *bio, + unsigned long start_time, struct dm_stats_aux *stats_aux) { - struct mapped_device *md = io->md; - struct bio *bio = io->orig_bio; - unsigned long duration = jiffies - io->start_time; - - generic_end_io_acct(md->queue, bio_op(bio), &dm_disk(md)->part0, - io->start_time); + unsigned long duration = jiffies - start_time; if (unlikely(dm_stats_used(&md->stats))) dm_stats_account_io(&md->stats, bio_data_dir(bio), bio->bi_iter.bi_sector, bio_sectors(bio), - true, duration, &io->stats_aux); + true, duration, stats_aux); + + smp_wmb(); + + generic_end_io_acct(md->queue, bio_op(bio), &dm_disk(md)->part0, + start_time); /* nudge anyone waiting on suspend queue */ if (unlikely(wq_has_sleeper(&md->wait))) @@ -909,6 +910,8 @@ blk_status_t io_error; struct bio *bio; struct mapped_device *md = io->md; + unsigned long start_time = 0; + struct dm_stats_aux stats_aux; /* Push-back supersedes any I/O errors */ if (unlikely(error)) { @@ -935,8 +938,10 @@ io_error = io->status; bio = io->orig_bio; - end_io_acct(io); + start_time = io->start_time; + stats_aux = io->stats_aux; free_io(md, io); + end_io_acct(md, bio, start_time, &stats_aux); if (io_error == BLK_STS_DM_REQUEUE) return; @@ -995,7 +1000,7 @@ struct mapped_device *md = tio->io->md; dm_endio_fn endio = tio->ti->type->end_io; - if (unlikely(error == BLK_STS_TARGET) && md->type != DM_TYPE_NVME_BIO_BASED) { + if (unlikely(error == BLK_STS_TARGET)) { if (bio_op(bio) == REQ_OP_DISCARD && !bio->bi_disk->queue->limits.max_discard_sectors) disable_discard(md); @@ -1320,7 +1325,6 @@ sector = clone->bi_iter.bi_sector; if (unlikely(swap_bios_limit(ti, clone))) { - struct mapped_device *md = io->md; int latch = get_swap_bios(); if (unlikely(latch != md->swap_bios)) __set_swap_bios_limit(md, latch); @@ -1335,24 +1339,17 @@ /* the bio has been remapped so dispatch it */ trace_block_bio_remap(clone->bi_disk->queue, clone, bio_dev(io->orig_bio), sector); - if (md->type == DM_TYPE_NVME_BIO_BASED) - ret = direct_make_request(clone); - else - ret = generic_make_request(clone); + ret = generic_make_request(clone); break; case DM_MAPIO_KILL: - if (unlikely(swap_bios_limit(ti, clone))) { - struct mapped_device *md = io->md; + if (unlikely(swap_bios_limit(ti, clone))) up(&md->swap_bios_semaphore); - } free_tio(tio); dec_pending(io, BLK_STS_IOERR); break; case DM_MAPIO_REQUEUE: - if (unlikely(swap_bios_limit(ti, clone))) { - struct mapped_device *md = io->md; + if (unlikely(swap_bios_limit(ti, clone))) up(&md->swap_bios_semaphore); - } free_tio(tio); dec_pending(io, BLK_STS_DM_REQUEUE); break; @@ -1727,51 +1724,6 @@ return ret; } -/* - * Optimized variant of __split_and_process_bio that leverages the - * fact that targets that use it do _not_ have a need to split bios. - */ -static blk_qc_t __process_bio(struct mapped_device *md, struct dm_table *map, - struct bio *bio, struct dm_target *ti) -{ - struct clone_info ci; - blk_qc_t ret = BLK_QC_T_NONE; - int error = 0; - - init_clone_info(&ci, md, map, bio); - - if (bio->bi_opf & REQ_PREFLUSH) { - struct bio flush_bio; - - /* - * Use an on-stack bio for this, it's safe since we don't - * need to reference it after submit. It's just used as - * the basis for the clone(s). - */ - bio_init(&flush_bio, NULL, 0); - flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC; - ci.bio = &flush_bio; - ci.sector_count = 0; - error = __send_empty_flush(&ci); - bio_uninit(ci.bio); - /* dec_pending submits any data associated with flush */ - } else { - struct dm_target_io *tio; - - ci.bio = bio; - ci.sector_count = bio_sectors(bio); - if (__process_abnormal_io(&ci, ti, &error)) - goto out; - - tio = alloc_tio(&ci, ti, 0, GFP_NOIO); - ret = __clone_and_map_simple_bio(&ci, tio, NULL); - } -out: - /* drop the extra reference count */ - dec_pending(ci.io, errno_to_blk_status(error)); - return ret; -} - static blk_qc_t dm_process_bio(struct mapped_device *md, struct dm_table *map, struct bio *bio) { @@ -1802,8 +1754,6 @@ /* regular IO is split by __split_and_process_bio */ } - if (dm_get_md_type(md) == DM_TYPE_NVME_BIO_BASED) - return __process_bio(md, map, bio, ti); return __split_and_process_bio(md, map, bio); } @@ -2195,12 +2145,10 @@ if (request_based) dm_stop_queue(q); - if (request_based || md->type == DM_TYPE_NVME_BIO_BASED) { + if (request_based) { /* - * Leverage the fact that request-based DM targets and - * NVMe bio based targets are immutable singletons - * - used to optimize both dm_request_fn and dm_mq_queue_rq; - * and __process_bio. + * Leverage the fact that request-based DM targets are + * immutable singletons - used to optimize dm_mq_queue_rq. */ md->immutable_target = dm_table_get_immutable_target(t); } @@ -2329,7 +2277,6 @@ break; case DM_TYPE_BIO_BASED: case DM_TYPE_DAX_BIO_BASED: - case DM_TYPE_NVME_BIO_BASED: dm_init_congested_fn(md); break; case DM_TYPE_NONE: @@ -2491,6 +2438,8 @@ } finish_wait(&md->wait, &wait); + smp_rmb(); + return r; } @@ -3063,7 +3012,6 @@ switch (type) { case DM_TYPE_BIO_BASED: case DM_TYPE_DAX_BIO_BASED: - case DM_TYPE_NVME_BIO_BASED: pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size); front_pad = roundup(per_io_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone); io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio); @@ -3132,6 +3080,11 @@ goto out; ti = dm_table_get_target(table, 0); + if (dm_suspended_md(md)) { + ret = -EAGAIN; + goto out; + } + ret = -EINVAL; if (!ti->type->iterate_devices) goto out; diff -u linux-azure-5.4.0/drivers/md/md-bitmap.c linux-azure-5.4.0/drivers/md/md-bitmap.c --- linux-azure-5.4.0/drivers/md/md-bitmap.c +++ linux-azure-5.4.0/drivers/md/md-bitmap.c @@ -642,14 +642,6 @@ daemon_sleep = le32_to_cpu(sb->daemon_sleep) * HZ; write_behind = le32_to_cpu(sb->write_behind); sectors_reserved = le32_to_cpu(sb->sectors_reserved); - /* Setup nodes/clustername only if bitmap version is - * cluster-compatible - */ - if (sb->version == cpu_to_le32(BITMAP_MAJOR_CLUSTERED)) { - nodes = le32_to_cpu(sb->nodes); - strlcpy(bitmap->mddev->bitmap_info.cluster_name, - sb->cluster_name, 64); - } /* verify that the bitmap-specific fields are valid */ if (sb->magic != cpu_to_le32(BITMAP_MAGIC)) @@ -671,6 +663,16 @@ goto out; } + /* + * Setup nodes/clustername only if bitmap version is + * cluster-compatible + */ + if (sb->version == cpu_to_le32(BITMAP_MAJOR_CLUSTERED)) { + nodes = le32_to_cpu(sb->nodes); + strlcpy(bitmap->mddev->bitmap_info.cluster_name, + sb->cluster_name, 64); + } + /* keep the array size field of the bitmap superblock up to date */ sb->sync_size = cpu_to_le64(bitmap->mddev->resync_max_sectors); @@ -703,9 +705,9 @@ out: kunmap_atomic(sb); - /* Assigning chunksize is required for "re_read" */ - bitmap->mddev->bitmap_info.chunksize = chunksize; if (err == 0 && nodes && (bitmap->cluster_slot < 0)) { + /* Assigning chunksize is required for "re_read" */ + bitmap->mddev->bitmap_info.chunksize = chunksize; err = md_setup_cluster(bitmap->mddev, nodes); if (err) { pr_warn("%s: Could not setup cluster service (%d)\n", @@ -716,18 +718,18 @@ goto re_read; } - out_no_sb: - if (test_bit(BITMAP_STALE, &bitmap->flags)) - bitmap->events_cleared = bitmap->mddev->events; - bitmap->mddev->bitmap_info.chunksize = chunksize; - bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep; - bitmap->mddev->bitmap_info.max_write_behind = write_behind; - bitmap->mddev->bitmap_info.nodes = nodes; - if (bitmap->mddev->bitmap_info.space == 0 || - bitmap->mddev->bitmap_info.space > sectors_reserved) - bitmap->mddev->bitmap_info.space = sectors_reserved; - if (err) { + if (err == 0) { + if (test_bit(BITMAP_STALE, &bitmap->flags)) + bitmap->events_cleared = bitmap->mddev->events; + bitmap->mddev->bitmap_info.chunksize = chunksize; + bitmap->mddev->bitmap_info.daemon_sleep = daemon_sleep; + bitmap->mddev->bitmap_info.max_write_behind = write_behind; + bitmap->mddev->bitmap_info.nodes = nodes; + if (bitmap->mddev->bitmap_info.space == 0 || + bitmap->mddev->bitmap_info.space > sectors_reserved) + bitmap->mddev->bitmap_info.space = sectors_reserved; + } else { md_bitmap_print_sb(bitmap); if (bitmap->cluster_slot < 0) md_cluster_stop(bitmap->mddev); diff -u linux-azure-5.4.0/drivers/md/md.c linux-azure-5.4.0/drivers/md/md.c --- linux-azure-5.4.0/drivers/md/md.c +++ linux-azure-5.4.0/drivers/md/md.c @@ -2532,14 +2532,16 @@ static bool does_sb_need_changing(struct mddev *mddev) { - struct md_rdev *rdev; + struct md_rdev *rdev = NULL, *iter; struct mdp_superblock_1 *sb; int role; /* Find a good rdev */ - rdev_for_each(rdev, mddev) - if ((rdev->raid_disk >= 0) && !test_bit(Faulty, &rdev->flags)) + rdev_for_each(iter, mddev) + if ((iter->raid_disk >= 0) && !test_bit(Faulty, &iter->flags)) { + rdev = iter; break; + } /* No good device found. */ if (!rdev) @@ -5535,10 +5537,6 @@ */ disk->flags |= GENHD_FL_EXT_DEVT; mddev->gendisk = disk; - /* As soon as we call add_disk(), another thread could get - * through to md_open, so make sure it doesn't get too far - */ - mutex_lock(&mddev->open_mutex); add_disk(disk); error = kobject_add(&mddev->kobj, &disk_to_dev(disk)->kobj, "%s", "md"); @@ -5553,7 +5551,6 @@ if (mddev->kobj.sd && sysfs_create_group(&mddev->kobj, &md_bitmap_group)) pr_debug("pointless warning\n"); - mutex_unlock(&mddev->open_mutex); abort: mutex_unlock(&disks_mutex); if (!error && mddev->kobj.sd) { @@ -6097,6 +6094,7 @@ /* stop the array and free an attached data structures. * This is called from dm-raid */ + __md_stop_writes(mddev); __md_stop(mddev); bioset_exit(&mddev->bio_set); bioset_exit(&mddev->sync_set); @@ -7780,17 +7778,22 @@ void md_unregister_thread(struct md_thread **threadp) { - struct md_thread *thread = *threadp; - if (!thread) - return; - pr_debug("interrupting MD-thread pid %d\n", task_pid_nr(thread->tsk)); - /* Locking ensures that mddev_unlock does not wake_up a + struct md_thread *thread; + + /* + * Locking ensures that mddev_unlock does not wake_up a * non-existent thread */ spin_lock(&pers_lock); + thread = *threadp; + if (!thread) { + spin_unlock(&pers_lock); + return; + } *threadp = NULL; spin_unlock(&pers_lock); + pr_debug("interrupting MD-thread pid %d\n", task_pid_nr(thread->tsk)); kthread_stop(thread->tsk); kfree(thread); } @@ -9554,16 +9557,18 @@ void md_reload_sb(struct mddev *mddev, int nr) { - struct md_rdev *rdev; + struct md_rdev *rdev = NULL, *iter; int err; /* Find the rdev */ - rdev_for_each_rcu(rdev, mddev) { - if (rdev->desc_nr == nr) + rdev_for_each_rcu(iter, mddev) { + if (iter->desc_nr == nr) { + rdev = iter; break; + } } - if (!rdev || rdev->desc_nr != nr) { + if (!rdev) { pr_warn("%s: %d Could not find rdev with nr %d\n", __func__, __LINE__, nr); return; } diff -u linux-azure-5.4.0/drivers/md/persistent-data/dm-btree-remove.c linux-azure-5.4.0/drivers/md/persistent-data/dm-btree-remove.c --- linux-azure-5.4.0/drivers/md/persistent-data/dm-btree-remove.c +++ linux-azure-5.4.0/drivers/md/persistent-data/dm-btree-remove.c @@ -423,9 +423,9 @@ memcpy(n, dm_block_data(child), dm_bm_block_size(dm_tm_get_bm(info->tm))); - dm_tm_unlock(info->tm, child); dm_tm_dec(info->tm, dm_block_location(child)); + dm_tm_unlock(info->tm, child); return 0; } @@ -549,7 +549,8 @@ delete_at(n, index); } - *new_root = shadow_root(&spine); + if (!r) + *new_root = shadow_root(&spine); exit_shadow_spine(&spine); return r; diff -u linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-common.c linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-common.c --- linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-common.c +++ linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-common.c @@ -281,6 +281,11 @@ struct disk_index_entry ie_disk; struct dm_block *blk; + if (b >= ll->nr_blocks) { + DMERR_LIMIT("metadata block out of bounds"); + return -EINVAL; + } + b = do_div(index, ll->entries_per_block); r = ll->load_ie(ll, index, &ie_disk); if (r < 0) diff -u linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-disk.c linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-disk.c --- linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-disk.c +++ linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-disk.c @@ -171,6 +171,14 @@ * Any block we allocate has to be free in both the old and current ll. */ r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, smd->begin, smd->ll.nr_blocks, b); + if (r == -ENOSPC) { + /* + * There's no free block between smd->begin and the end of the metadata device. + * We search before smd->begin in case something has been freed. + */ + r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, 0, smd->begin, b); + } + if (r) return r; @@ -199,7 +207,6 @@ return r; memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll)); - smd->begin = 0; smd->nr_allocated_this_transaction = 0; r = sm_disk_get_nr_free(sm, &nr_free); diff -u linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-metadata.c linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-metadata.c --- linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-metadata.c +++ linux-azure-5.4.0/drivers/md/persistent-data/dm-space-map-metadata.c @@ -452,6 +452,14 @@ * Any block we allocate has to be free in both the old and current ll. */ r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); + if (r == -ENOSPC) { + /* + * There's no free block between smm->begin and the end of the metadata device. + * We search before smm->begin in case something has been freed. + */ + r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, 0, smm->begin, b); + } + if (r) return r; @@ -503,7 +511,6 @@ return r; memcpy(&smm->old_ll, &smm->ll, sizeof(smm->old_ll)); - smm->begin = 0; smm->allocated_this_transaction = 0; return 0; diff -u linux-azure-5.4.0/drivers/md/raid0.c linux-azure-5.4.0/drivers/md/raid0.c --- linux-azure-5.4.0/drivers/md/raid0.c +++ linux-azure-5.4.0/drivers/md/raid0.c @@ -63,7 +63,7 @@ int len = 0; for (k = 0; k < conf->strip_zone[j].nb_dev; k++) - len += snprintf(line+len, 200-len, "%s%s", k?"/":"", + len += scnprintf(line+len, 200-len, "%s%s", k?"/":"", bdevname(conf->devlist[j*raid_disks + k]->bdev, b)); pr_debug("md: zone%d=[%s]\n", j, line); @@ -143,22 +143,6 @@ pr_debug("md/raid0:%s: FINAL %d zones\n", mdname(mddev), conf->nr_strip_zones); - if (conf->nr_strip_zones == 1) { - conf->layout = RAID0_ORIG_LAYOUT; - } else if (mddev->layout == RAID0_ORIG_LAYOUT || - mddev->layout == RAID0_ALT_MULTIZONE_LAYOUT) { - conf->layout = mddev->layout; - } else if (default_layout == RAID0_ORIG_LAYOUT || - default_layout == RAID0_ALT_MULTIZONE_LAYOUT) { - conf->layout = default_layout; - } else { - conf->layout = RAID0_ALT_MULTIZONE_LAYOUT; - pr_warn("md/raid0:%s: !!! DEFAULTING TO ALTERNATE LAYOUT !!!\n", - mdname(mddev)); - pr_warn("md/raid0: Please set raid0.default_layout to 1 or 2\n"); - pr_warn("md/raid0: Read the following page for more information:\n"); - pr_warn("md/raid0: https://wiki.ubuntu.com/Kernel/Raid0LayoutMigration\n"); - } /* * now since we have the hard sector sizes, we can make sure * chunk size is a multiple of that sector size @@ -289,6 +273,24 @@ (unsigned long long)smallest->sectors); } + if (conf->nr_strip_zones == 1 || conf->strip_zone[1].nb_dev == 1) { + conf->layout = RAID0_ORIG_LAYOUT; + } else if (mddev->layout == RAID0_ORIG_LAYOUT || + mddev->layout == RAID0_ALT_MULTIZONE_LAYOUT) { + conf->layout = mddev->layout; + } else if (default_layout == RAID0_ORIG_LAYOUT || + default_layout == RAID0_ALT_MULTIZONE_LAYOUT) { + conf->layout = default_layout; + } else { + pr_err("md/raid0:%s: cannot assemble multi-zone RAID0 with default_layout setting\n", + mdname(mddev)); + pr_err("md/raid0: please set raid0.default_layout to 1 or 2\n"); + pr_err("md/raid0: Read the following page for more information:\n"); + pr_err("md/raid0: https://wiki.ubuntu.com/Kernel/Raid0LayoutMigration\n"); + err = -EOPNOTSUPP; + goto abort; + } + pr_debug("md/raid0:%s: done.\n", mdname(mddev)); *private_conf = conf; diff -u linux-azure-5.4.0/drivers/md/raid1.c linux-azure-5.4.0/drivers/md/raid1.c --- linux-azure-5.4.0/drivers/md/raid1.c +++ linux-azure-5.4.0/drivers/md/raid1.c @@ -452,8 +452,6 @@ /* * When the device is faulty, it is not necessary to * handle write error. - * For failfast, this is the only remaining device, - * We need to retry the write without FailFast. */ if (!test_bit(Faulty, &rdev->flags)) set_bit(R1BIO_WriteError, &r1_bio->state); diff -u linux-azure-5.4.0/drivers/md/raid10.c linux-azure-5.4.0/drivers/md/raid10.c --- linux-azure-5.4.0/drivers/md/raid10.c +++ linux-azure-5.4.0/drivers/md/raid10.c @@ -469,12 +469,12 @@ /* * When the device is faulty, it is not necessary to * handle write error. - * For failfast, this is the only remaining device, - * We need to retry the write without FailFast. */ if (!test_bit(Faulty, &rdev->flags)) set_bit(R10BIO_WriteError, &r10_bio->state); else { + /* Fail the request */ + set_bit(R10BIO_Degraded, &r10_bio->state); r10_bio->devs[slot].bio = NULL; to_put = bio; dec_rdev = 1; @@ -2146,9 +2146,12 @@ int err = 0; int number = rdev->raid_disk; struct md_rdev **rdevp; - struct raid10_info *p = conf->mirrors + number; + struct raid10_info *p; print_conf(conf); + if (unlikely(number >= mddev->raid_disks)) + return 0; + p = conf->mirrors + number; if (rdev == p->rdev) rdevp = &p->rdev; else if (rdev == p->replacement) diff -u linux-azure-5.4.0/drivers/md/raid5.c linux-azure-5.4.0/drivers/md/raid5.c --- linux-azure-5.4.0/drivers/md/raid5.c +++ linux-azure-5.4.0/drivers/md/raid5.c @@ -36,6 +36,7 @@ */ #include +#include #include #include #include @@ -609,17 +610,17 @@ return degraded; } -static int has_failed(struct r5conf *conf) +static bool has_failed(struct r5conf *conf) { - int degraded; + int degraded = conf->mddev->degraded; - if (conf->mddev->reshape_position == MaxSector) - return conf->mddev->degraded > conf->max_degraded; + if (test_bit(MD_BROKEN, &conf->mddev->flags)) + return true; - degraded = raid5_calc_degraded(conf); - if (degraded > conf->max_degraded) - return 1; - return 0; + if (conf->mddev->reshape_position != MaxSector) + degraded = raid5_calc_degraded(conf); + + return degraded > conf->max_degraded; } struct stripe_head * @@ -2666,10 +2667,10 @@ if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags)) clear_bit(R5_LOCKED, &sh->dev[i].flags); set_bit(STRIPE_HANDLE, &sh->state); - raid5_release_stripe(sh); if (sh->batch_head && sh != sh->batch_head) raid5_release_stripe(sh->batch_head); + raid5_release_stripe(sh); } static void raid5_error(struct mddev *mddev, struct md_rdev *rdev) @@ -2679,34 +2680,31 @@ unsigned long flags; pr_debug("raid456: error called\n"); + pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n", + mdname(mddev), bdevname(rdev->bdev, b)); + spin_lock_irqsave(&conf->device_lock, flags); + set_bit(Faulty, &rdev->flags); + clear_bit(In_sync, &rdev->flags); + mddev->degraded = raid5_calc_degraded(conf); - if (test_bit(In_sync, &rdev->flags) && - mddev->degraded == conf->max_degraded) { - /* - * Don't allow to achieve failed state - * Don't try to recover this device - */ + if (has_failed(conf)) { + set_bit(MD_BROKEN, &conf->mddev->flags); conf->recovery_disabled = mddev->recovery_disabled; - spin_unlock_irqrestore(&conf->device_lock, flags); - return; + + pr_crit("md/raid:%s: Cannot continue operation (%d/%d failed).\n", + mdname(mddev), mddev->degraded, conf->raid_disks); + } else { + pr_crit("md/raid:%s: Operation continuing on %d devices.\n", + mdname(mddev), conf->raid_disks - mddev->degraded); } - set_bit(Faulty, &rdev->flags); - clear_bit(In_sync, &rdev->flags); - mddev->degraded = raid5_calc_degraded(conf); spin_unlock_irqrestore(&conf->device_lock, flags); set_bit(MD_RECOVERY_INTR, &mddev->recovery); set_bit(Blocked, &rdev->flags); set_mask_bits(&mddev->sb_flags, 0, BIT(MD_SB_CHANGE_DEVS) | BIT(MD_SB_CHANGE_PENDING)); - pr_crit("md/raid:%s: Disk failure on %s, disabling device.\n" - "md/raid:%s: Operation continuing on %d devices.\n", - mdname(mddev), - bdevname(rdev->bdev, b), - mdname(mddev), - conf->raid_disks - mddev->degraded); r5c_update_on_rdev_error(mddev, rdev); } @@ -3731,7 +3729,7 @@ * back cache (prexor with orig_page, and then xor with * page) in the read path */ - if (s->injournal && s->failed) { + if (s->to_read && s->injournal && s->failed) { if (test_bit(STRIPE_R5C_CACHING, &sh->state)) r5c_make_stripe_write_out(sh); goto out; @@ -6337,7 +6335,18 @@ spin_unlock_irq(&conf->device_lock); md_check_recovery(mddev); spin_lock_irq(&conf->device_lock); + + /* + * Waiting on MD_SB_CHANGE_PENDING below may deadlock + * seeing md_check_recovery() is needed to clear + * the flag when using mdmon. + */ + continue; } + + wait_event_lock_irq(mddev->sb_wait, + !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags), + conf->device_lock); } pr_debug("%d stripes handled\n", handled); @@ -7725,6 +7734,7 @@ */ if (rdev->saved_raid_disk >= 0 && rdev->saved_raid_disk >= first && + rdev->saved_raid_disk <= last && conf->disks[rdev->saved_raid_disk].rdev == NULL) first = rdev->saved_raid_disk; diff -u linux-azure-5.4.0/drivers/media/cec/cec-adap.c linux-azure-5.4.0/drivers/media/cec/cec-adap.c --- linux-azure-5.4.0/drivers/media/cec/cec-adap.c +++ linux-azure-5.4.0/drivers/media/cec/cec-adap.c @@ -1191,6 +1191,7 @@ if (abort) dst->rx_status |= CEC_RX_STATUS_FEATURE_ABORT; msg->flags = dst->flags; + msg->sequence = dst->sequence; /* Remove it from the wait_queue */ list_del_init(&data->list); @@ -1262,7 +1263,7 @@ * While trying to poll the physical address was reset * and the adapter was unconfigured, so bail out. */ - if (!adap->is_configuring) + if (adap->phys_addr == CEC_PHYS_ADDR_INVALID) return -EINTR; if (err) @@ -1320,7 +1321,6 @@ adap->phys_addr != CEC_PHYS_ADDR_INVALID) WARN_ON(adap->ops->adap_log_addr(adap, CEC_LOG_ADDR_INVALID)); adap->log_addrs.log_addr_mask = 0; - adap->is_configuring = false; adap->is_configured = false; memset(adap->phys_addrs, 0xff, sizeof(adap->phys_addrs)); cec_flush(adap); @@ -1513,9 +1513,10 @@ for (i = 0; i < las->num_log_addrs; i++) las->log_addr[i] = CEC_LOG_ADDR_INVALID; cec_adap_unconfigure(adap); + adap->is_configuring = false; adap->kthread_config = NULL; - mutex_unlock(&adap->lock); complete(&adap->config_completion); + mutex_unlock(&adap->lock); return 0; } diff -u linux-azure-5.4.0/drivers/media/common/siano/smsdvb-main.c linux-azure-5.4.0/drivers/media/common/siano/smsdvb-main.c --- linux-azure-5.4.0/drivers/media/common/siano/smsdvb-main.c +++ linux-azure-5.4.0/drivers/media/common/siano/smsdvb-main.c @@ -1176,6 +1176,10 @@ return 0; media_graph_error: + mutex_lock(&g_smsdvb_clientslock); + list_del(&client->entry); + mutex_unlock(&g_smsdvb_clientslock); + smsdvb_debugfs_release(client); client_error: diff -u linux-azure-5.4.0/drivers/media/i2c/adv7511-v4l2.c linux-azure-5.4.0/drivers/media/i2c/adv7511-v4l2.c --- linux-azure-5.4.0/drivers/media/i2c/adv7511-v4l2.c +++ linux-azure-5.4.0/drivers/media/i2c/adv7511-v4l2.c @@ -555,7 +555,7 @@ buffer[3] = 0; buffer[3] = hdmi_infoframe_checksum(buffer, len + 4); - if (hdmi_infoframe_unpack(&frame, buffer, sizeof(buffer)) < 0) { + if (hdmi_infoframe_unpack(&frame, buffer, len + 4) < 0) { v4l2_err(sd, "%s: unpack of %s infoframe failed\n", __func__, cri->desc); return; } diff -u linux-azure-5.4.0/drivers/media/i2c/adv7604.c linux-azure-5.4.0/drivers/media/i2c/adv7604.c --- linux-azure-5.4.0/drivers/media/i2c/adv7604.c +++ linux-azure-5.4.0/drivers/media/i2c/adv7604.c @@ -2444,7 +2444,7 @@ buffer[i + 3] = infoframe_read(sd, adv76xx_cri[index].payload_addr + i); - if (hdmi_infoframe_unpack(frame, buffer, sizeof(buffer)) < 0) { + if (hdmi_infoframe_unpack(frame, buffer, len + 3) < 0) { v4l2_err(sd, "%s: unpack of %s infoframe failed\n", __func__, adv76xx_cri[index].desc); return -ENOENT; diff -u linux-azure-5.4.0/drivers/media/i2c/adv7842.c linux-azure-5.4.0/drivers/media/i2c/adv7842.c --- linux-azure-5.4.0/drivers/media/i2c/adv7842.c +++ linux-azure-5.4.0/drivers/media/i2c/adv7842.c @@ -2574,7 +2574,7 @@ for (i = 0; i < len; i++) buffer[i + 3] = infoframe_read(sd, cri->payload_addr + i); - if (hdmi_infoframe_unpack(&frame, buffer, sizeof(buffer)) < 0) { + if (hdmi_infoframe_unpack(&frame, buffer, len + 3) < 0) { v4l2_err(sd, "%s: unpack of %s infoframe failed\n", __func__, cri->desc); return; } diff -u linux-azure-5.4.0/drivers/media/i2c/tc358743.c linux-azure-5.4.0/drivers/media/i2c/tc358743.c --- linux-azure-5.4.0/drivers/media/i2c/tc358743.c +++ linux-azure-5.4.0/drivers/media/i2c/tc358743.c @@ -1973,6 +1973,7 @@ bps_pr_lane = 2 * endpoint.link_frequencies[0]; if (bps_pr_lane < 62500000U || bps_pr_lane > 1000000000U) { dev_err(dev, "unsupported bps per lane: %u bps\n", bps_pr_lane); + ret = -EINVAL; goto disable_clk; } diff -u linux-azure-5.4.0/drivers/media/i2c/tda1997x.c linux-azure-5.4.0/drivers/media/i2c/tda1997x.c --- linux-azure-5.4.0/drivers/media/i2c/tda1997x.c +++ linux-azure-5.4.0/drivers/media/i2c/tda1997x.c @@ -1247,13 +1247,13 @@ { struct v4l2_subdev *sd = &state->sd; union hdmi_infoframe frame; - u8 buffer[40]; + u8 buffer[40] = { 0 }; u8 reg; int len, err; /* read data */ len = io_readn(sd, addr, sizeof(buffer), buffer); - err = hdmi_infoframe_unpack(&frame, buffer, sizeof(buffer)); + err = hdmi_infoframe_unpack(&frame, buffer, len); if (err) { v4l_err(state->client, "failed parsing %d byte infoframe: 0x%04x/0x%02x\n", @@ -1695,14 +1695,15 @@ struct v4l2_dv_timings *timings) { struct tda1997x_state *state = to_state(sd); + int ret; v4l_dbg(1, debug, state->client, "%s\n", __func__); memset(timings, 0, sizeof(struct v4l2_dv_timings)); mutex_lock(&state->lock); - tda1997x_detect_std(state, timings); + ret = tda1997x_detect_std(state, timings); mutex_unlock(&state->lock); - return 0; + return ret; } static const struct v4l2_subdev_video_ops tda1997x_video_ops = { @@ -1926,13 +1927,13 @@ { struct tda1997x_state *state = to_state(sd); union hdmi_infoframe frame; - u8 buffer[40]; + u8 buffer[40] = { 0 }; int len, err; /* read data */ len = io_readn(sd, addr, sizeof(buffer), buffer); v4l2_dbg(1, debug, sd, "infoframe: addr=%d len=%d\n", addr, len); - err = hdmi_infoframe_unpack(&frame, buffer, sizeof(buffer)); + err = hdmi_infoframe_unpack(&frame, buffer, len); if (err) { v4l_err(state->client, "failed parsing %d byte infoframe: 0x%04x/0x%02x\n", @@ -2233,6 +2234,7 @@ /* get initial HDMI status */ state->hdmi_status = io_read(sd, REG_HDMI_FLAGS); + io_write(sd, REG_EDID_ENABLE, EDID_ENABLE_A_EN | EDID_ENABLE_B_EN); return 0; } diff -u linux-azure-5.4.0/drivers/media/pci/bt8xx/bttv-driver.c linux-azure-5.4.0/drivers/media/pci/bt8xx/bttv-driver.c --- linux-azure-5.4.0/drivers/media/pci/bt8xx/bttv-driver.c +++ linux-azure-5.4.0/drivers/media/pci/bt8xx/bttv-driver.c @@ -3187,7 +3187,7 @@ btv->radio_user--; - bttv_call_all(btv, core, ioctl, SAA6588_CMD_CLOSE, &cmd); + bttv_call_all(btv, core, command, SAA6588_CMD_CLOSE, &cmd); if (btv->radio_user == 0) btv->has_radio_tuner = 0; @@ -3268,7 +3268,7 @@ cmd.result = -ENODEV; radio_enable(btv); - bttv_call_all(btv, core, ioctl, SAA6588_CMD_READ, &cmd); + bttv_call_all(btv, core, command, SAA6588_CMD_READ, &cmd); return cmd.result; } @@ -3289,7 +3289,7 @@ cmd.instance = file; cmd.event_list = wait; cmd.poll_mask = res; - bttv_call_all(btv, core, ioctl, SAA6588_CMD_POLL, &cmd); + bttv_call_all(btv, core, command, SAA6588_CMD_POLL, &cmd); return cmd.poll_mask; } @@ -3898,7 +3898,7 @@ /* video */ vdev_init(btv, &btv->video_dev, &bttv_video_template, "video"); - btv->video_dev.device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_TUNER | + btv->video_dev.device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE | V4L2_CAP_STREAMING; if (btv->tuner_type != TUNER_ABSENT) btv->video_dev.device_caps |= V4L2_CAP_TUNER; @@ -3919,7 +3919,7 @@ /* vbi */ vdev_init(btv, &btv->vbi_dev, &bttv_video_template, "vbi"); btv->vbi_dev.device_caps = V4L2_CAP_VBI_CAPTURE | V4L2_CAP_READWRITE | - V4L2_CAP_STREAMING | V4L2_CAP_TUNER; + V4L2_CAP_STREAMING; if (btv->tuner_type != TUNER_ABSENT) btv->vbi_dev.device_caps |= V4L2_CAP_TUNER; diff -u linux-azure-5.4.0/drivers/media/pci/cx23885/cx23885-core.c linux-azure-5.4.0/drivers/media/pci/cx23885/cx23885-core.c --- linux-azure-5.4.0/drivers/media/pci/cx23885/cx23885-core.c +++ linux-azure-5.4.0/drivers/media/pci/cx23885/cx23885-core.c @@ -2154,7 +2154,7 @@ err = pci_set_dma_mask(pci_dev, 0xffffffff); if (err) { pr_err("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name); - goto fail_ctrl; + goto fail_dma_set_mask; } err = request_irq(pci_dev->irq, cx23885_irq, @@ -2162,7 +2162,7 @@ if (err < 0) { pr_err("%s: can't get IRQ %d\n", dev->name, pci_dev->irq); - goto fail_irq; + goto fail_dma_set_mask; } switch (dev->board) { @@ -2184,7 +2184,7 @@ return 0; -fail_irq: +fail_dma_set_mask: cx23885_dev_unregister(dev); fail_ctrl: v4l2_ctrl_handler_free(hdl); diff -u linux-azure-5.4.0/drivers/media/pci/cx25821/cx25821-core.c linux-azure-5.4.0/drivers/media/pci/cx25821/cx25821-core.c --- linux-azure-5.4.0/drivers/media/pci/cx25821/cx25821-core.c +++ linux-azure-5.4.0/drivers/media/pci/cx25821/cx25821-core.c @@ -1340,11 +1340,11 @@ struct cx25821_dev *dev = get_cx25821(v4l2_dev); cx25821_shutdown(dev); - pci_disable_device(pci_dev); /* unregister stuff */ if (pci_dev->irq) free_irq(pci_dev->irq, dev); + pci_disable_device(pci_dev); cx25821_dev_unregister(dev); v4l2_device_unregister(v4l2_dev); diff -u linux-azure-5.4.0/drivers/media/pci/cx88/cx88-video.c linux-azure-5.4.0/drivers/media/pci/cx88/cx88-video.c --- linux-azure-5.4.0/drivers/media/pci/cx88/cx88-video.c +++ linux-azure-5.4.0/drivers/media/pci/cx88/cx88-video.c @@ -433,6 +433,7 @@ static int buffer_prepare(struct vb2_buffer *vb) { + int ret; struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); struct cx8800_dev *dev = vb->vb2_queue->drv_priv; struct cx88_core *core = dev->core; @@ -447,35 +448,35 @@ switch (core->field) { case V4L2_FIELD_TOP: - cx88_risc_buffer(dev->pci, &buf->risc, - sgt->sgl, 0, UNSET, - buf->bpl, 0, core->height); + ret = cx88_risc_buffer(dev->pci, &buf->risc, + sgt->sgl, 0, UNSET, + buf->bpl, 0, core->height); break; case V4L2_FIELD_BOTTOM: - cx88_risc_buffer(dev->pci, &buf->risc, - sgt->sgl, UNSET, 0, - buf->bpl, 0, core->height); + ret = cx88_risc_buffer(dev->pci, &buf->risc, + sgt->sgl, UNSET, 0, + buf->bpl, 0, core->height); break; case V4L2_FIELD_SEQ_TB: - cx88_risc_buffer(dev->pci, &buf->risc, - sgt->sgl, - 0, buf->bpl * (core->height >> 1), - buf->bpl, 0, - core->height >> 1); + ret = cx88_risc_buffer(dev->pci, &buf->risc, + sgt->sgl, + 0, buf->bpl * (core->height >> 1), + buf->bpl, 0, + core->height >> 1); break; case V4L2_FIELD_SEQ_BT: - cx88_risc_buffer(dev->pci, &buf->risc, - sgt->sgl, - buf->bpl * (core->height >> 1), 0, - buf->bpl, 0, - core->height >> 1); + ret = cx88_risc_buffer(dev->pci, &buf->risc, + sgt->sgl, + buf->bpl * (core->height >> 1), 0, + buf->bpl, 0, + core->height >> 1); break; case V4L2_FIELD_INTERLACED: default: - cx88_risc_buffer(dev->pci, &buf->risc, - sgt->sgl, 0, buf->bpl, - buf->bpl, buf->bpl, - core->height >> 1); + ret = cx88_risc_buffer(dev->pci, &buf->risc, + sgt->sgl, 0, buf->bpl, + buf->bpl, buf->bpl, + core->height >> 1); break; } dprintk(2, @@ -483,7 +484,7 @@ buf, buf->vb.vb2_buf.index, __func__, core->width, core->height, dev->fmt->depth, dev->fmt->fourcc, (unsigned long)buf->risc.dma); - return 0; + return ret; } static void buffer_finish(struct vb2_buffer *vb) diff -u linux-azure-5.4.0/drivers/media/pci/saa7146/mxb.c linux-azure-5.4.0/drivers/media/pci/saa7146/mxb.c --- linux-azure-5.4.0/drivers/media/pci/saa7146/mxb.c +++ linux-azure-5.4.0/drivers/media/pci/saa7146/mxb.c @@ -683,10 +683,16 @@ static int mxb_attach(struct saa7146_dev *dev, struct saa7146_pci_extension_data *info) { struct mxb *mxb; + int ret; DEB_EE("dev:%p\n", dev); - saa7146_vv_init(dev, &vv_data); + ret = saa7146_vv_init(dev, &vv_data); + if (ret) { + ERR("Error in saa7146_vv_init()"); + return ret; + } + if (mxb_probe(dev)) { saa7146_vv_release(dev); return -1; diff -u linux-azure-5.4.0/drivers/media/platform/aspeed-video.c linux-azure-5.4.0/drivers/media/platform/aspeed-video.c --- linux-azure-5.4.0/drivers/media/platform/aspeed-video.c +++ linux-azure-5.4.0/drivers/media/platform/aspeed-video.c @@ -151,7 +151,7 @@ #define VE_SRC_TB_EDGE_DET_BOT GENMASK(28, VE_SRC_TB_EDGE_DET_BOT_SHF) #define VE_MODE_DETECT_STATUS 0x098 -#define VE_MODE_DETECT_H_PIXELS GENMASK(11, 0) +#define VE_MODE_DETECT_H_PERIOD GENMASK(11, 0) #define VE_MODE_DETECT_V_LINES_SHF 16 #define VE_MODE_DETECT_V_LINES GENMASK(27, VE_MODE_DETECT_V_LINES_SHF) #define VE_MODE_DETECT_STATUS_VSYNC BIT(28) @@ -162,6 +162,8 @@ #define VE_SYNC_STATUS_VSYNC_SHF 16 #define VE_SYNC_STATUS_VSYNC GENMASK(27, VE_SYNC_STATUS_VSYNC_SHF) +#define VE_H_TOTAL_PIXELS 0x0A0 + #define VE_INTERRUPT_CTRL 0x304 #define VE_INTERRUPT_STATUS 0x308 #define VE_INTERRUPT_MODE_DETECT_WD BIT(0) @@ -477,6 +479,10 @@ aspeed_video_update(video, VE_INTERRUPT_CTRL, 0, VE_INTERRUPT_MODE_DETECT); + /* Disable mode detect in order to re-trigger */ + aspeed_video_update(video, VE_SEQ_CTRL, + VE_SEQ_CTRL_TRIG_MODE_DET, 0); + /* Trigger mode detect */ aspeed_video_update(video, VE_SEQ_CTRL, 0, VE_SEQ_CTRL_TRIG_MODE_DET); } @@ -529,6 +535,8 @@ set_bit(VIDEO_RES_CHANGE, &video->flags); clear_bit(VIDEO_FRAME_INPRG, &video->flags); + video->v4l2_input_status = V4L2_IN_ST_NO_SIGNAL; + aspeed_video_off(video); aspeed_video_bufs_done(video, VB2_BUF_STATE_ERROR); @@ -737,6 +745,7 @@ u32 src_lr_edge; u32 src_tb_edge; u32 sync; + u32 htotal; struct v4l2_bt_timings *det = &video->detected_timings; det->width = MIN_WIDTH; @@ -764,10 +773,6 @@ return; } - /* Disable mode detect in order to re-trigger */ - aspeed_video_update(video, VE_SEQ_CTRL, - VE_SEQ_CTRL_TRIG_MODE_DET, 0); - aspeed_video_check_and_set_polarity(video); aspeed_video_enable_mode_detect(video); @@ -785,6 +790,7 @@ src_tb_edge = aspeed_video_read(video, VE_SRC_TB_EDGE_DET); mds = aspeed_video_read(video, VE_MODE_DETECT_STATUS); sync = aspeed_video_read(video, VE_SYNC_STATUS); + htotal = aspeed_video_read(video, VE_H_TOTAL_PIXELS); video->frame_bottom = (src_tb_edge & VE_SRC_TB_EDGE_DET_BOT) >> VE_SRC_TB_EDGE_DET_BOT_SHF; @@ -801,8 +807,7 @@ VE_SRC_LR_EDGE_DET_RT_SHF; video->frame_left = src_lr_edge & VE_SRC_LR_EDGE_DET_LEFT; det->hfrontporch = video->frame_left; - det->hbackporch = (mds & VE_MODE_DETECT_H_PIXELS) - - video->frame_right; + det->hbackporch = htotal - video->frame_right; det->hsync = sync & VE_SYNC_STATUS_HSYNC; if (video->frame_left > video->frame_right) continue; @@ -1315,7 +1320,6 @@ struct delayed_work *dwork = to_delayed_work(work); struct aspeed_video *video = container_of(dwork, struct aspeed_video, res_work); - u32 input_status = video->v4l2_input_status; aspeed_video_on(video); @@ -1328,8 +1332,7 @@ aspeed_video_get_resolution(video); if (video->detected_timings.width != video->active_timings.width || - video->detected_timings.height != video->active_timings.height || - input_status != video->v4l2_input_status) { + video->detected_timings.height != video->active_timings.height) { static const struct v4l2_event ev = { .type = V4L2_EVENT_SOURCE_CHANGE, .u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION, @@ -1685,6 +1688,7 @@ rc = aspeed_video_setup_video(video); if (rc) { + aspeed_video_free_buf(video, &video->jpeg); clk_unprepare(video->vclk); clk_unprepare(video->eclk); return rc; @@ -1712,8 +1716,7 @@ v4l2_device_unregister(v4l2_dev); - dma_free_coherent(video->dev, VE_JPEG_HEADER_SIZE, video->jpeg.virt, - video->jpeg.dma); + aspeed_video_free_buf(video, &video->jpeg); of_reserved_mem_device_release(dev); diff -u linux-azure-5.4.0/drivers/media/platform/coda/coda-common.c linux-azure-5.4.0/drivers/media/platform/coda/coda-common.c --- linux-azure-5.4.0/drivers/media/platform/coda/coda-common.c +++ linux-azure-5.4.0/drivers/media/platform/coda/coda-common.c @@ -372,6 +372,7 @@ if (!vdoa_data) vdoa_data = ERR_PTR(-EPROBE_DEFER); + put_device(&vdoa_pdev->dev); out: of_node_put(vdoa_node); @@ -1191,7 +1192,8 @@ struct v4l2_frmivalenum *f) { struct coda_ctx *ctx = fh_to_ctx(fh); - int i; + struct coda_q_data *q_data; + const struct coda_codec *codec; if (f->index) return -EINVAL; @@ -1200,12 +1202,19 @@ if (!ctx->vdoa && f->pixel_format == V4L2_PIX_FMT_YUYV) return -EINVAL; - for (i = 0; i < CODA_MAX_FORMATS; i++) { - if (f->pixel_format == ctx->cvd->src_formats[i] || - f->pixel_format == ctx->cvd->dst_formats[i]) - break; + if (coda_format_normalize_yuv(f->pixel_format) == V4L2_PIX_FMT_YUV420) { + q_data = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); + codec = coda_find_codec(ctx->dev, f->pixel_format, + q_data->fourcc); + } else { + codec = coda_find_codec(ctx->dev, V4L2_PIX_FMT_YUV420, + f->pixel_format); } - if (i == CODA_MAX_FORMATS) + if (!codec) + return -EINVAL; + + if (f->width < MIN_W || f->width > codec->max_w || + f->height < MIN_H || f->height > codec->max_h) return -EINVAL; f->type = V4L2_FRMIVAL_TYPE_CONTINUOUS; @@ -2163,8 +2172,8 @@ V4L2_CID_MPEG_VIDEO_H264_CHROMA_QP_INDEX_OFFSET, -12, 12, 1, 0); v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_PROFILE, - V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE, 0x0, - V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE); + V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE, 0x0, + V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE); if (ctx->dev->devtype->product == CODA_HX4 || ctx->dev->devtype->product == CODA_7541) { v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, @@ -2178,12 +2187,15 @@ if (ctx->dev->devtype->product == CODA_960) { v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_LEVEL, - V4L2_MPEG_VIDEO_H264_LEVEL_4_0, - ~((1 << V4L2_MPEG_VIDEO_H264_LEVEL_2_0) | + V4L2_MPEG_VIDEO_H264_LEVEL_4_2, + ~((1 << V4L2_MPEG_VIDEO_H264_LEVEL_1_0) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_2_0) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_0) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_1) | (1 << V4L2_MPEG_VIDEO_H264_LEVEL_3_2) | - (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_0)), + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_0) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_1) | + (1 << V4L2_MPEG_VIDEO_H264_LEVEL_4_2)), V4L2_MPEG_VIDEO_H264_LEVEL_4_0); } v4l2_ctrl_new_std(&ctx->ctrls, &coda_ctrl_ops, @@ -2245,7 +2257,7 @@ ctx->h264_profile_ctrl = v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops, V4L2_CID_MPEG_VIDEO_H264_PROFILE, V4L2_MPEG_VIDEO_H264_PROFILE_HIGH, - ~((1 << V4L2_MPEG_VIDEO_H264_PROFILE_BASELINE) | + ~((1 << V4L2_MPEG_VIDEO_H264_PROFILE_CONSTRAINED_BASELINE) | (1 << V4L2_MPEG_VIDEO_H264_PROFILE_MAIN) | (1 << V4L2_MPEG_VIDEO_H264_PROFILE_HIGH)), V4L2_MPEG_VIDEO_H264_PROFILE_HIGH); diff -u linux-azure-5.4.0/drivers/media/platform/cros-ec-cec/cros-ec-cec.c linux-azure-5.4.0/drivers/media/platform/cros-ec-cec/cros-ec-cec.c --- linux-azure-5.4.0/drivers/media/platform/cros-ec-cec/cros-ec-cec.c +++ linux-azure-5.4.0/drivers/media/platform/cros-ec-cec/cros-ec-cec.c @@ -45,6 +45,8 @@ uint8_t *cec_message = cros_ec->event_data.data.cec_message; unsigned int len = cros_ec->event_size; + if (len > CEC_MAX_MSG_SIZE) + len = CEC_MAX_MSG_SIZE; cros_ec_cec->rx_msg.len = len; memcpy(cros_ec_cec->rx_msg.msg, cec_message, len); diff -u linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-isp-video.c linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-isp-video.c --- linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-isp-video.c +++ linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-isp-video.c @@ -305,17 +305,20 @@ struct fimc_is_video *ivc = &isp->video_capture; struct media_entity *entity = &ivc->ve.vdev.entity; struct media_device *mdev = entity->graph_obj.mdev; + bool is_singular_file; mutex_lock(&isp->video_lock); - if (v4l2_fh_is_singular_file(file) && ivc->streaming) { + is_singular_file = v4l2_fh_is_singular_file(file); + + if (is_singular_file && ivc->streaming) { media_pipeline_stop(entity); ivc->streaming = 0; } _vb2_fop_release(file, NULL); - if (v4l2_fh_is_singular_file(file)) { + if (is_singular_file) { fimc_pipeline_call(&ivc->ve, close); mutex_lock(&mdev->graph_mutex); diff -u linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c --- linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c +++ linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c @@ -89,13 +89,15 @@ put_device(dev->pm.larbvdec); } -void mtk_vcodec_dec_pw_on(struct mtk_vcodec_pm *pm) +int mtk_vcodec_dec_pw_on(struct mtk_vcodec_pm *pm) { int ret; - ret = pm_runtime_get_sync(pm->dev); + ret = pm_runtime_resume_and_get(pm->dev); if (ret) - mtk_v4l2_err("pm_runtime_get_sync fail %d", ret); + mtk_v4l2_err("pm_runtime_resume_and_get fail %d", ret); + + return ret; } void mtk_vcodec_dec_pw_off(struct mtk_vcodec_pm *pm) diff -u linux-azure-5.4.0/drivers/media/platform/qcom/venus/core.c linux-azure-5.4.0/drivers/media/platform/qcom/venus/core.c --- linux-azure-5.4.0/drivers/media/platform/qcom/venus/core.c +++ linux-azure-5.4.0/drivers/media/platform/qcom/venus/core.c @@ -289,11 +289,11 @@ ret = venus_firmware_init(core); if (ret) - goto err_runtime_disable; + goto err_of_depopulate; ret = venus_boot(core); if (ret) - goto err_runtime_disable; + goto err_firmware_deinit; ret = hfi_core_resume(core, true); if (ret) @@ -329,6 +329,10 @@ hfi_core_deinit(core, false); err_venus_shutdown: venus_shutdown(core); +err_firmware_deinit: + venus_firmware_deinit(core); +err_of_depopulate: + of_platform_depopulate(dev); err_runtime_disable: pm_runtime_put_noidle(dev); pm_runtime_set_suspended(dev); diff -u linux-azure-5.4.0/drivers/media/platform/qcom/venus/vdec.c linux-azure-5.4.0/drivers/media/platform/qcom/venus/vdec.c --- linux-azure-5.4.0/drivers/media/platform/qcom/venus/vdec.c +++ linux-azure-5.4.0/drivers/media/platform/qcom/venus/vdec.c @@ -157,6 +157,8 @@ else return NULL; fmt = find_format(inst, pixmp->pixelformat, f->type); + if (!fmt) + return NULL; } pixmp->width = clamp(pixmp->width, frame_width_min(inst), diff -u linux-azure-5.4.0/drivers/media/platform/qcom/venus/venc.c linux-azure-5.4.0/drivers/media/platform/qcom/venus/venc.c --- linux-azure-5.4.0/drivers/media/platform/qcom/venus/venc.c +++ linux-azure-5.4.0/drivers/media/platform/qcom/venus/venc.c @@ -308,6 +308,8 @@ else return NULL; fmt = find_format(inst, pixmp->pixelformat, f->type); + if (!fmt) + return NULL; } pixmp->width = clamp(pixmp->width, frame_width_min(inst), diff -u linux-azure-5.4.0/drivers/media/platform/rcar-vin/rcar-csi2.c linux-azure-5.4.0/drivers/media/platform/rcar-vin/rcar-csi2.c --- linux-azure-5.4.0/drivers/media/platform/rcar-vin/rcar-csi2.c +++ linux-azure-5.4.0/drivers/media/platform/rcar-vin/rcar-csi2.c @@ -430,16 +430,23 @@ static int rcsi2_set_phypll(struct rcar_csi2 *priv, unsigned int mbps) { const struct rcsi2_mbps_reg *hsfreq; + const struct rcsi2_mbps_reg *hsfreq_prev = NULL; - for (hsfreq = priv->info->hsfreqrange; hsfreq->mbps != 0; hsfreq++) + for (hsfreq = priv->info->hsfreqrange; hsfreq->mbps != 0; hsfreq++) { if (hsfreq->mbps >= mbps) break; + hsfreq_prev = hsfreq; + } if (!hsfreq->mbps) { dev_err(priv->dev, "Unsupported PHY speed (%u Mbps)", mbps); return -ERANGE; } + if (hsfreq_prev && + ((mbps - hsfreq_prev->mbps) <= (hsfreq->mbps - mbps))) + hsfreq = hsfreq_prev; + rcsi2_write(priv, PHYPLL_REG, PHYPLL_HSFREQRANGE(hsfreq->reg)); return 0; @@ -488,6 +495,8 @@ /* Code is validated in set_fmt. */ format = rcsi2_code_to_fmt(priv->mf.code); + if (!format) + return -EINVAL; /* * Enable all supported CSI-2 channels with virtual channel and @@ -902,10 +911,17 @@ const struct rcsi2_mbps_reg *values, u16 code) { const struct rcsi2_mbps_reg *value; + const struct rcsi2_mbps_reg *prev_value = NULL; - for (value = values; value->mbps; value++) + for (value = values; value->mbps; value++) { if (value->mbps >= mbps) break; + prev_value = value; + } + + if (prev_value && + ((mbps - prev_value->mbps) <= (value->mbps - mbps))) + value = prev_value; if (!value->mbps) { dev_err(priv->dev, "Unsupported PHY speed (%u Mbps)", mbps); diff -u linux-azure-5.4.0/drivers/media/platform/sti/bdisp/bdisp-v4l2.c linux-azure-5.4.0/drivers/media/platform/sti/bdisp/bdisp-v4l2.c --- linux-azure-5.4.0/drivers/media/platform/sti/bdisp/bdisp-v4l2.c +++ linux-azure-5.4.0/drivers/media/platform/sti/bdisp/bdisp-v4l2.c @@ -499,7 +499,7 @@ { struct bdisp_ctx *ctx = q->drv_priv; struct vb2_v4l2_buffer *buf; - int ret = pm_runtime_get_sync(ctx->bdisp_dev->dev); + int ret = pm_runtime_resume_and_get(ctx->bdisp_dev->dev); if (ret < 0) { dev_err(ctx->bdisp_dev->dev, "failed to set runtime PM\n"); @@ -1364,10 +1364,10 @@ /* Power management */ pm_runtime_enable(dev); - ret = pm_runtime_get_sync(dev); + ret = pm_runtime_resume_and_get(dev); if (ret < 0) { dev_err(dev, "failed to set PM\n"); - goto err_pm; + goto err_remove; } /* Filters */ @@ -1395,6 +1395,7 @@ bdisp_hw_free_filters(bdisp->dev); err_pm: pm_runtime_put(dev); +err_remove: bdisp_debugfs_remove(bdisp); err_v4l2: v4l2_device_unregister(&bdisp->v4l2_dev); diff -u linux-azure-5.4.0/drivers/media/platform/sti/delta/delta-v4l2.c linux-azure-5.4.0/drivers/media/platform/sti/delta/delta-v4l2.c --- linux-azure-5.4.0/drivers/media/platform/sti/delta/delta-v4l2.c +++ linux-azure-5.4.0/drivers/media/platform/sti/delta/delta-v4l2.c @@ -1862,7 +1862,7 @@ if (ret) { dev_err(delta->dev, "%s failed to initialize firmware ipc channel\n", DELTA_PREFIX); - goto err; + goto err_pm_disable; } /* register all available decoders */ @@ -1876,7 +1876,7 @@ if (ret) { dev_err(delta->dev, "%s failed to register V4L2 device\n", DELTA_PREFIX); - goto err; + goto err_pm_disable; } delta->work_queue = create_workqueue(DELTA_NAME); @@ -1901,6 +1901,8 @@ destroy_workqueue(delta->work_queue); err_v4l2: v4l2_device_unregister(&delta->v4l2_dev); +err_pm_disable: + pm_runtime_disable(dev); err: return ret; } diff -u linux-azure-5.4.0/drivers/media/platform/sti/hva/hva-hw.c linux-azure-5.4.0/drivers/media/platform/sti/hva/hva-hw.c --- linux-azure-5.4.0/drivers/media/platform/sti/hva/hva-hw.c +++ linux-azure-5.4.0/drivers/media/platform/sti/hva/hva-hw.c @@ -130,8 +130,7 @@ ctx_id = (hva->sts_reg & 0xFF00) >> 8; if (ctx_id >= HVA_MAX_INSTANCES) { dev_err(dev, "%s %s: bad context identifier: %d\n", - ctx->name, __func__, ctx_id); - ctx->hw_err = true; + HVA_PREFIX, __func__, ctx_id); goto out; } diff -u linux-azure-5.4.0/drivers/media/platform/stm32/stm32-dcmi.c linux-azure-5.4.0/drivers/media/platform/stm32/stm32-dcmi.c --- linux-azure-5.4.0/drivers/media/platform/stm32/stm32-dcmi.c +++ linux-azure-5.4.0/drivers/media/platform/stm32/stm32-dcmi.c @@ -135,6 +135,7 @@ int sequence; struct list_head buffers; struct dcmi_buf *active; + int irq; struct v4l2_device v4l2_dev; struct video_device *vdev; @@ -1720,6 +1721,14 @@ return ret; } + ret = devm_request_threaded_irq(dcmi->dev, dcmi->irq, dcmi_irq_callback, + dcmi_irq_thread, IRQF_ONESHOT, + dev_name(dcmi->dev), dcmi); + if (ret) { + dev_err(dcmi->dev, "Unable to request irq %d\n", dcmi->irq); + return ret; + } + return 0; } @@ -1881,6 +1890,8 @@ if (irq <= 0) return irq ? irq : -ENXIO; + dcmi->irq = irq; + dcmi->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!dcmi->res) { dev_err(&pdev->dev, "Could not get resource\n"); @@ -1893,14 +1904,6 @@ return PTR_ERR(dcmi->regs); } - ret = devm_request_threaded_irq(&pdev->dev, irq, dcmi_irq_callback, - dcmi_irq_thread, IRQF_ONESHOT, - dev_name(&pdev->dev), dcmi); - if (ret) { - dev_err(&pdev->dev, "Unable to request irq %d\n", irq); - return ret; - } - mclk = devm_clk_get(&pdev->dev, "mclk"); if (IS_ERR(mclk)) { if (PTR_ERR(mclk) != -EPROBE_DEFER) diff -u linux-azure-5.4.0/drivers/media/platform/vim2m.c linux-azure-5.4.0/drivers/media/platform/vim2m.c --- linux-azure-5.4.0/drivers/media/platform/vim2m.c +++ linux-azure-5.4.0/drivers/media/platform/vim2m.c @@ -1333,12 +1333,6 @@ vfd->lock = &dev->dev_mutex; vfd->v4l2_dev = &dev->v4l2_dev; - ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); - if (ret) { - v4l2_err(&dev->v4l2_dev, "Failed to register video device\n"); - goto error_v4l2; - } - video_set_drvdata(vfd, dev); v4l2_info(&dev->v4l2_dev, "Device registered as /dev/video%d\n", vfd->num); @@ -1361,12 +1355,20 @@ media_device_init(&dev->mdev); dev->mdev.ops = &m2m_media_ops; dev->v4l2_dev.mdev = &dev->mdev; +#endif + + ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); + if (ret) { + v4l2_err(&dev->v4l2_dev, "Failed to register video device\n"); + goto error_m2m; + } +#ifdef CONFIG_MEDIA_CONTROLLER ret = v4l2_m2m_register_media_controller(dev->m2m_dev, vfd, MEDIA_ENT_F_PROC_VIDEO_SCALER); if (ret) { v4l2_err(&dev->v4l2_dev, "Failed to init mem2mem media controller\n"); - goto error_dev; + goto error_v4l2; } ret = media_device_register(&dev->mdev); @@ -1381,11 +1383,13 @@ error_m2m_mc: v4l2_m2m_unregister_media_controller(dev->m2m_dev); #endif -error_dev: +error_v4l2: video_unregister_device(&dev->vfd); /* vim2m_device_release called by video_unregister_device to release various objects */ return ret; -error_v4l2: +error_m2m: + v4l2_m2m_release(dev->m2m_dev); +error_dev: v4l2_device_unregister(&dev->v4l2_dev); error_free: kfree(dev); diff -u linux-azure-5.4.0/drivers/media/platform/vivid/vivid-core.c linux-azure-5.4.0/drivers/media/platform/vivid/vivid-core.c --- linux-azure-5.4.0/drivers/media/platform/vivid/vivid-core.c +++ linux-azure-5.4.0/drivers/media/platform/vivid/vivid-core.c @@ -297,6 +297,28 @@ return vivid_vid_out_g_fbuf(file, fh, a); } +/* + * Only support the framebuffer of one of the vivid instances. + * Anything else is rejected. + */ +bool vivid_validate_fb(const struct v4l2_framebuffer *a) +{ + struct vivid_dev *dev; + int i; + + for (i = 0; i < n_devs; i++) { + dev = vivid_devs[i]; + if (!dev || !dev->video_pbase) + continue; + if ((unsigned long)a->base == dev->video_pbase && + a->fmt.width <= dev->display_width && + a->fmt.height <= dev->display_height && + a->fmt.bytesperline <= dev->display_byte_stride) + return true; + } + return false; +} + static int vidioc_s_fbuf(struct file *file, void *fh, const struct v4l2_framebuffer *a) { struct video_device *vdev = video_devdata(file); diff -u linux-azure-5.4.0/drivers/media/platform/vivid/vivid-vid-cap.c linux-azure-5.4.0/drivers/media/platform/vivid/vivid-vid-cap.c --- linux-azure-5.4.0/drivers/media/platform/vivid/vivid-vid-cap.c +++ linux-azure-5.4.0/drivers/media/platform/vivid/vivid-vid-cap.c @@ -452,6 +452,12 @@ tpg_reset_source(&dev->tpg, dev->src_rect.width, dev->src_rect.height, dev->field_cap); dev->crop_cap = dev->src_rect; dev->crop_bounds_cap = dev->src_rect; + if (dev->bitmap_cap && + (dev->compose_cap.width != dev->crop_cap.width || + dev->compose_cap.height != dev->crop_cap.height)) { + vfree(dev->bitmap_cap); + dev->bitmap_cap = NULL; + } dev->compose_cap = dev->crop_cap; if (V4L2_FIELD_HAS_T_OR_B(dev->field_cap)) dev->compose_cap.height /= 2; @@ -883,6 +889,8 @@ struct vivid_dev *dev = video_drvdata(file); struct v4l2_rect *crop = &dev->crop_cap; struct v4l2_rect *compose = &dev->compose_cap; + unsigned orig_compose_w = compose->width; + unsigned orig_compose_h = compose->height; unsigned factor = V4L2_FIELD_HAS_T_OR_B(dev->field_cap) ? 2 : 1; int ret; @@ -999,17 +1007,17 @@ s->r.height /= factor; } v4l2_rect_map_inside(&s->r, &dev->fmt_cap_rect); - if (dev->bitmap_cap && (compose->width != s->r.width || - compose->height != s->r.height)) { - vfree(dev->bitmap_cap); - dev->bitmap_cap = NULL; - } *compose = s->r; break; default: return -EINVAL; } + if (dev->bitmap_cap && (compose->width != orig_compose_w || + compose->height != orig_compose_h)) { + vfree(dev->bitmap_cap); + dev->bitmap_cap = NULL; + } tpg_s_crop_compose(&dev->tpg, crop, compose); return 0; } @@ -1250,7 +1258,14 @@ return -EINVAL; if (a->fmt.bytesperline < (a->fmt.width * fmt->bit_depth[0]) / 8) return -EINVAL; - if (a->fmt.height * a->fmt.bytesperline < a->fmt.sizeimage) + if (a->fmt.bytesperline > a->fmt.sizeimage / a->fmt.height) + return -EINVAL; + + /* + * Only support the framebuffer of one of the vivid instances. + * Anything else is rejected. + */ + if (!vivid_validate_fb(a)) return -EINVAL; dev->fb_vbase_cap = phys_to_virt((unsigned long)a->base); diff -u linux-azure-5.4.0/drivers/media/radio/radio-wl1273.c linux-azure-5.4.0/drivers/media/radio/radio-wl1273.c --- linux-azure-5.4.0/drivers/media/radio/radio-wl1273.c +++ linux-azure-5.4.0/drivers/media/radio/radio-wl1273.c @@ -1279,7 +1279,7 @@ strscpy(capability->driver, WL1273_FM_DRIVER_NAME, sizeof(capability->driver)); - strscpy(capability->card, "Texas Instruments Wl1273 FM Radio", + strscpy(capability->card, "TI Wl1273 FM Radio", sizeof(capability->card)); strscpy(capability->bus_info, radio->bus_type, sizeof(capability->bus_info)); diff -u linux-azure-5.4.0/drivers/media/radio/si470x/radio-si470x-i2c.c linux-azure-5.4.0/drivers/media/radio/si470x/radio-si470x-i2c.c --- linux-azure-5.4.0/drivers/media/radio/si470x/radio-si470x-i2c.c +++ linux-azure-5.4.0/drivers/media/radio/si470x/radio-si470x-i2c.c @@ -11,7 +11,7 @@ /* driver definitions */ #define DRIVER_AUTHOR "Joonyoung Shim "; -#define DRIVER_CARD "Silicon Labs Si470x FM Radio Receiver" +#define DRIVER_CARD "Silicon Labs Si470x FM Radio" #define DRIVER_DESC "I2C radio driver for Si470x FM Radio Receivers" #define DRIVER_VERSION "1.0.2" @@ -368,7 +368,7 @@ if (radio->hdl.error) { retval = radio->hdl.error; dev_err(&client->dev, "couldn't register control\n"); - goto err_dev; + goto err_all; } /* video device initialization */ @@ -463,7 +463,6 @@ return 0; err_all: v4l2_ctrl_handler_free(&radio->hdl); -err_dev: v4l2_device_unregister(&radio->v4l2_dev); err_initial: return retval; diff -u linux-azure-5.4.0/drivers/media/rc/ite-cir.c linux-azure-5.4.0/drivers/media/rc/ite-cir.c --- linux-azure-5.4.0/drivers/media/rc/ite-cir.c +++ linux-azure-5.4.0/drivers/media/rc/ite-cir.c @@ -283,7 +283,7 @@ } /* check for the receive interrupt */ - if (iflags & ITE_IRQ_RX_FIFO) { + if (iflags & (ITE_IRQ_RX_FIFO | ITE_IRQ_RX_FIFO_OVERRUN)) { /* read the FIFO bytes */ rx_bytes = dev->params.get_rx_bytes(dev, rx_buf, diff -u linux-azure-5.4.0/drivers/media/rc/mceusb.c linux-azure-5.4.0/drivers/media/rc/mceusb.c --- linux-azure-5.4.0/drivers/media/rc/mceusb.c +++ linux-azure-5.4.0/drivers/media/rc/mceusb.c @@ -1386,6 +1386,7 @@ case -ECONNRESET: case -ENOENT: case -EILSEQ: + case -EPROTO: case -ESHUTDOWN: usb_unlink_urb(urb); return; @@ -1429,7 +1430,7 @@ */ ret = usb_control_msg(ir->usbdev, usb_rcvctrlpipe(ir->usbdev, 0), USB_REQ_SET_ADDRESS, USB_TYPE_VENDOR, 0, 0, - data, USB_CTRL_MSG_SZ, HZ * 3); + data, USB_CTRL_MSG_SZ, 3000); dev_dbg(dev, "set address - ret = %d", ret); dev_dbg(dev, "set address - data[0] = %d, data[1] = %d", data[0], data[1]); @@ -1437,20 +1438,20 @@ /* set feature: bit rate 38400 bps */ ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), USB_REQ_SET_FEATURE, USB_TYPE_VENDOR, - 0xc04e, 0x0000, NULL, 0, HZ * 3); + 0xc04e, 0x0000, NULL, 0, 3000); dev_dbg(dev, "set feature - ret = %d", ret); /* bRequest 4: set char length to 8 bits */ ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), 4, USB_TYPE_VENDOR, - 0x0808, 0x0000, NULL, 0, HZ * 3); + 0x0808, 0x0000, NULL, 0, 3000); dev_dbg(dev, "set char length - retB = %d", ret); /* bRequest 2: set handshaking to use DTR/DSR */ ret = usb_control_msg(ir->usbdev, usb_sndctrlpipe(ir->usbdev, 0), 2, USB_TYPE_VENDOR, - 0x0000, 0x0100, NULL, 0, HZ * 3); + 0x0000, 0x0100, NULL, 0, 3000); dev_dbg(dev, "set handshake - retC = %d", ret); /* device resume */ diff -u linux-azure-5.4.0/drivers/media/tuners/si2157.c linux-azure-5.4.0/drivers/media/tuners/si2157.c --- linux-azure-5.4.0/drivers/media/tuners/si2157.c +++ linux-azure-5.4.0/drivers/media/tuners/si2157.c @@ -80,7 +80,7 @@ dev_dbg(&client->dev, "\n"); /* Try to get Xtal trim property, to verify tuner still running */ - memcpy(cmd.args, "\x15\x00\x04\x02", 4); + memcpy(cmd.args, "\x15\x00\x02\x04", 4); cmd.wlen = 4; cmd.rlen = 4; ret = si2157_cmd_execute(client, &cmd); diff -u linux-azure-5.4.0/drivers/media/usb/b2c2/flexcop-usb.c linux-azure-5.4.0/drivers/media/usb/b2c2/flexcop-usb.c --- linux-azure-5.4.0/drivers/media/usb/b2c2/flexcop-usb.c +++ linux-azure-5.4.0/drivers/media/usb/b2c2/flexcop-usb.c @@ -87,7 +87,7 @@ 0, fc_usb->data, sizeof(u32), - B2C2_WAIT_FOR_OPERATION_RDW * HZ); + B2C2_WAIT_FOR_OPERATION_RDW); if (ret != sizeof(u32)) { err("error while %s dword from %d (%d).", read ? "reading" : @@ -155,7 +155,7 @@ wIndex, fc_usb->data, buflen, - nWaitTime * HZ); + nWaitTime); if (ret != buflen) ret = -EIO; @@ -249,13 +249,13 @@ /* DKT 020208 - add this to support special case of DiSEqC */ case USB_FUNC_I2C_CHECKWRITE: pipe = B2C2_USB_CTRL_PIPE_OUT; - nWaitTime = 2; + nWaitTime = 2000; request_type |= USB_DIR_OUT; break; case USB_FUNC_I2C_READ: case USB_FUNC_I2C_REPEATREAD: pipe = B2C2_USB_CTRL_PIPE_IN; - nWaitTime = 2; + nWaitTime = 2000; request_type |= USB_DIR_IN; break; default: @@ -282,7 +282,7 @@ wIndex, fc_usb->data, buflen, - nWaitTime * HZ); + nWaitTime); if (ret != buflen) ret = -EIO; diff -u linux-azure-5.4.0/drivers/media/usb/dvb-usb/cxusb.c linux-azure-5.4.0/drivers/media/usb/dvb-usb/cxusb.c --- linux-azure-5.4.0/drivers/media/usb/dvb-usb/cxusb.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/cxusb.c @@ -1950,7 +1950,7 @@ .size_of_priv = sizeof(struct cxusb_state), - .num_adapters = 2, + .num_adapters = 1, .adapter = { { .num_frontends = 1, diff -u linux-azure-5.4.0/drivers/media/usb/dvb-usb/dib0700_core.c linux-azure-5.4.0/drivers/media/usb/dvb-usb/dib0700_core.c --- linux-azure-5.4.0/drivers/media/usb/dvb-usb/dib0700_core.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dib0700_core.c @@ -616,8 +616,6 @@ deb_info("the endpoint number (%i) is not correct, use the adapter id instead", adap->fe_adap[0].stream.props.endpoint); if (onoff) st->channel_state |= 1 << (adap->id); - else - st->channel_state |= 1 << ~(adap->id); } else { if (onoff) st->channel_state |= 1 << (adap->fe_adap[0].stream.props.endpoint-2); diff -u linux-azure-5.4.0/drivers/media/usb/dvb-usb/dvb-usb-init.c linux-azure-5.4.0/drivers/media/usb/dvb-usb/dvb-usb-init.c --- linux-azure-5.4.0/drivers/media/usb/dvb-usb/dvb-usb-init.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dvb-usb-init.c @@ -194,8 +194,8 @@ err_adapter_init: dvb_usb_adapter_exit(d); -err_i2c_init: dvb_usb_i2c_exit(d); +err_i2c_init: if (d->priv && d->props.priv_destroy) d->props.priv_destroy(d); err_priv_init: diff -u linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-core.c linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-core.c --- linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-core.c +++ linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-core.c @@ -89,7 +89,7 @@ mutex_lock(&dev->ctrl_urb_lock); ret = usb_control_msg(udev, pipe, req, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x0000, reg, dev->urb_buf, len, HZ); + 0x0000, reg, dev->urb_buf, len, 1000); if (ret < 0) { em28xx_regdbg("(pipe 0x%08x): IN: %02x %02x %02x %02x %02x %02x %02x %02x failed with error %i\n", pipe, @@ -158,7 +158,7 @@ memcpy(dev->urb_buf, buf, len); ret = usb_control_msg(udev, pipe, req, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x0000, reg, dev->urb_buf, len, HZ); + 0x0000, reg, dev->urb_buf, len, 1000); mutex_unlock(&dev->ctrl_urb_lock); if (ret < 0) { @@ -1152,8 +1152,9 @@ dev_info(&dev->intf->dev, "Suspending extensions\n"); mutex_lock(&em28xx_devlist_mutex); list_for_each_entry(ops, &em28xx_extension_devlist, next) { - if (ops->suspend) - ops->suspend(dev); + if (!ops->suspend) + continue; + ops->suspend(dev); if (dev->dev_next) ops->suspend(dev->dev_next); } diff -u linux-azure-5.4.0/drivers/media/usb/gspca/sq905.c linux-azure-5.4.0/drivers/media/usb/gspca/sq905.c --- linux-azure-5.4.0/drivers/media/usb/gspca/sq905.c +++ linux-azure-5.4.0/drivers/media/usb/gspca/sq905.c @@ -116,7 +116,7 @@ } ret = usb_control_msg(gspca_dev->dev, - usb_sndctrlpipe(gspca_dev->dev, 0), + usb_rcvctrlpipe(gspca_dev->dev, 0), USB_REQ_SYNCH_FRAME, /* request */ USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, SQ905_PING, 0, gspca_dev->usb_buf, 1, diff -u linux-azure-5.4.0/drivers/media/usb/tm6000/tm6000-video.c linux-azure-5.4.0/drivers/media/usb/tm6000/tm6000-video.c --- linux-azure-5.4.0/drivers/media/usb/tm6000/tm6000-video.c +++ linux-azure-5.4.0/drivers/media/usb/tm6000/tm6000-video.c @@ -854,8 +854,7 @@ struct tm6000_core *dev = ((struct tm6000_fh *)priv)->dev; strscpy(cap->driver, "tm6000", sizeof(cap->driver)); - strscpy(cap->card, "Trident TVMaster TM5600/6000/6010", - sizeof(cap->card)); + strscpy(cap->card, "Trident TM5600/6000/6010", sizeof(cap->card)); usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info)); cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE | V4L2_CAP_DEVICE_CAPS; diff -u linux-azure-5.4.0/drivers/media/usb/uvc/uvc_v4l2.c linux-azure-5.4.0/drivers/media/usb/uvc/uvc_v4l2.c --- linux-azure-5.4.0/drivers/media/usb/uvc/uvc_v4l2.c +++ linux-azure-5.4.0/drivers/media/usb/uvc/uvc_v4l2.c @@ -467,10 +467,13 @@ uvc_simplify_fraction(&timeperframe.numerator, &timeperframe.denominator, 8, 333); - if (parm->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) + if (parm->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) { parm->parm.capture.timeperframe = timeperframe; - else + parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME; + } else { parm->parm.output.timeperframe = timeperframe; + parm->parm.output.capability = V4L2_CAP_TIMEPERFRAME; + } return 0; } @@ -856,29 +859,31 @@ struct uvc_video_chain *chain = handle->chain; const struct uvc_entity *selector = chain->selector; struct uvc_entity *iterm = NULL; + struct uvc_entity *it; u32 index = input->index; - int pin = 0; if (selector == NULL || (chain->dev->quirks & UVC_QUIRK_IGNORE_SELECTOR_UNIT)) { if (index != 0) return -EINVAL; - list_for_each_entry(iterm, &chain->entities, chain) { - if (UVC_ENTITY_IS_ITERM(iterm)) + list_for_each_entry(it, &chain->entities, chain) { + if (UVC_ENTITY_IS_ITERM(it)) { + iterm = it; break; + } } - pin = iterm->id; } else if (index < selector->bNrInPins) { - pin = selector->baSourceID[index]; - list_for_each_entry(iterm, &chain->entities, chain) { - if (!UVC_ENTITY_IS_ITERM(iterm)) + list_for_each_entry(it, &chain->entities, chain) { + if (!UVC_ENTITY_IS_ITERM(it)) continue; - if (iterm->id == pin) + if (it->id == selector->baSourceID[index]) { + iterm = it; break; + } } } - if (iterm == NULL || iterm->id != pin) + if (iterm == NULL) return -EINVAL; memset(input, 0, sizeof(*input)); @@ -894,8 +899,8 @@ { struct uvc_fh *handle = fh; struct uvc_video_chain *chain = handle->chain; + u8 *buf; int ret; - u8 i; if (chain->selector == NULL || (chain->dev->quirks & UVC_QUIRK_IGNORE_SELECTOR_UNIT)) { @@ -903,22 +908,27 @@ return 0; } + buf = kmalloc(1, GFP_KERNEL); + if (!buf) + return -ENOMEM; + ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR, chain->selector->id, chain->dev->intfnum, UVC_SU_INPUT_SELECT_CONTROL, - &i, 1); - if (ret < 0) - return ret; + buf, 1); + if (!ret) + *input = *buf - 1; - *input = i - 1; - return 0; + kfree(buf); + + return ret; } static int uvc_ioctl_s_input(struct file *file, void *fh, unsigned int input) { struct uvc_fh *handle = fh; struct uvc_video_chain *chain = handle->chain; + u8 *buf; int ret; - u32 i; ret = uvc_acquire_privileges(handle); if (ret < 0) @@ -934,10 +944,17 @@ if (input >= chain->selector->bNrInPins) return -EINVAL; - i = input + 1; - return uvc_query_ctrl(chain->dev, UVC_SET_CUR, chain->selector->id, - chain->dev->intfnum, UVC_SU_INPUT_SELECT_CONTROL, - &i, 1); + buf = kmalloc(1, GFP_KERNEL); + if (!buf) + return -ENOMEM; + + *buf = input + 1; + ret = uvc_query_ctrl(chain->dev, UVC_SET_CUR, chain->selector->id, + chain->dev->intfnum, UVC_SU_INPUT_SELECT_CONTROL, + buf, 1); + kfree(buf); + + return ret; } static int uvc_ioctl_queryctrl(struct file *file, void *fh, diff -u linux-azure-5.4.0/drivers/media/usb/uvc/uvcvideo.h linux-azure-5.4.0/drivers/media/usb/uvc/uvcvideo.h --- linux-azure-5.4.0/drivers/media/usb/uvc/uvcvideo.h +++ linux-azure-5.4.0/drivers/media/usb/uvc/uvcvideo.h @@ -183,7 +183,7 @@ /* Maximum status buffer size in bytes of interrupt URB. */ #define UVC_MAX_STATUS_SIZE 16 -#define UVC_CTRL_CONTROL_TIMEOUT 500 +#define UVC_CTRL_CONTROL_TIMEOUT 5000 #define UVC_CTRL_STREAMING_TIMEOUT 5000 /* Maximum allowed number of control mappings per device */ diff -u linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-ioctl.c linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-ioctl.c --- linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-ioctl.c +++ linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-ioctl.c @@ -902,7 +902,7 @@ pr_cont("driver-specific ioctl\n"); } -static int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv) +static bool check_ext_ctrls(struct v4l2_ext_controls *c, unsigned long ioctl) { __u32 i; @@ -911,23 +911,41 @@ for (i = 0; i < c->count; i++) c->controls[i].reserved2[0] = 0; - /* V4L2_CID_PRIVATE_BASE cannot be used as control class - when using extended controls. - Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL - is it allowed for backwards compatibility. - */ - if (!allow_priv && c->which == V4L2_CID_PRIVATE_BASE) - return 0; - if (!c->which) - return 1; + switch (c->which) { + case V4L2_CID_PRIVATE_BASE: + /* + * V4L2_CID_PRIVATE_BASE cannot be used as control class + * when using extended controls. + * Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL + * is it allowed for backwards compatibility. + */ + if (ioctl == VIDIOC_G_CTRL || ioctl == VIDIOC_S_CTRL) + return false; + break; + case V4L2_CTRL_WHICH_DEF_VAL: + /* Default value cannot be changed */ + if (ioctl == VIDIOC_S_EXT_CTRLS || + ioctl == VIDIOC_TRY_EXT_CTRLS) { + c->error_idx = c->count; + return false; + } + return true; + case V4L2_CTRL_WHICH_CUR_VAL: + return true; + case V4L2_CTRL_WHICH_REQUEST_VAL: + c->error_idx = c->count; + return false; + } + /* Check that all controls are from the same control class. */ for (i = 0; i < c->count; i++) { if (V4L2_CTRL_ID2WHICH(c->controls[i].id) != c->which) { - c->error_idx = i; - return 0; + c->error_idx = ioctl == VIDIOC_TRY_EXT_CTRLS ? i : + c->count; + return false; } } - return 1; + return true; } static int check_fmt(struct file *file, enum v4l2_buf_type type) @@ -2028,6 +2046,7 @@ static int v4l_g_parm(const struct v4l2_ioctl_ops *ops, struct file *file, void *fh, void *arg) { + struct video_device *vfd = video_devdata(file); struct v4l2_streamparm *p = arg; v4l2_std_id std; int ret = check_fmt(file, p->type); @@ -2039,7 +2058,8 @@ if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE && p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) return -EINVAL; - p->parm.capture.readbuffers = 2; + if (vfd->device_caps & V4L2_CAP_READWRITE) + p->parm.capture.readbuffers = 2; ret = ops->vidioc_g_std(file, fh, &std); if (ret == 0) v4l2_video_std_frame_period(std, &p->parm.capture.timeperframe); @@ -2145,7 +2165,7 @@ ctrls.controls = &ctrl; ctrl.id = p->id; ctrl.value = p->value; - if (check_ext_ctrls(&ctrls, 1)) { + if (check_ext_ctrls(&ctrls, VIDIOC_G_CTRL)) { int ret = ops->vidioc_g_ext_ctrls(file, fh, &ctrls); if (ret == 0) @@ -2179,7 +2199,7 @@ ctrls.controls = &ctrl; ctrl.id = p->id; ctrl.value = p->value; - if (check_ext_ctrls(&ctrls, 1)) + if (check_ext_ctrls(&ctrls, VIDIOC_S_CTRL)) return ops->vidioc_s_ext_ctrls(file, fh, &ctrls); return -EINVAL; } @@ -2201,8 +2221,8 @@ vfd, vfd->v4l2_dev->mdev, p); if (ops->vidioc_g_ext_ctrls == NULL) return -ENOTTY; - return check_ext_ctrls(p, 0) ? ops->vidioc_g_ext_ctrls(file, fh, p) : - -EINVAL; + return check_ext_ctrls(p, VIDIOC_G_EXT_CTRLS) ? + ops->vidioc_g_ext_ctrls(file, fh, p) : -EINVAL; } static int v4l_s_ext_ctrls(const struct v4l2_ioctl_ops *ops, @@ -2222,8 +2242,8 @@ vfd, vfd->v4l2_dev->mdev, p); if (ops->vidioc_s_ext_ctrls == NULL) return -ENOTTY; - return check_ext_ctrls(p, 0) ? ops->vidioc_s_ext_ctrls(file, fh, p) : - -EINVAL; + return check_ext_ctrls(p, VIDIOC_S_EXT_CTRLS) ? + ops->vidioc_s_ext_ctrls(file, fh, p) : -EINVAL; } static int v4l_try_ext_ctrls(const struct v4l2_ioctl_ops *ops, @@ -2243,8 +2263,8 @@ vfd, vfd->v4l2_dev->mdev, p); if (ops->vidioc_try_ext_ctrls == NULL) return -ENOTTY; - return check_ext_ctrls(p, 0) ? ops->vidioc_try_ext_ctrls(file, fh, p) : - -EINVAL; + return check_ext_ctrls(p, VIDIOC_TRY_EXT_CTRLS) ? + ops->vidioc_try_ext_ctrls(file, fh, p) : -EINVAL; } /* diff -u linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-mem2mem.c linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-mem2mem.c --- linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-mem2mem.c +++ linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-mem2mem.c @@ -460,19 +460,14 @@ } EXPORT_SYMBOL_GPL(v4l2_m2m_reqbufs); -int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, - struct v4l2_buffer *buf) +static void v4l2_m2m_adjust_mem_offset(struct vb2_queue *vq, + struct v4l2_buffer *buf) { - struct vb2_queue *vq; - int ret = 0; - unsigned int i; - - vq = v4l2_m2m_get_vq(m2m_ctx, buf->type); - ret = vb2_querybuf(vq, buf); - /* Adjust MMAP memory offsets for the CAPTURE queue */ if (buf->memory == V4L2_MEMORY_MMAP && !V4L2_TYPE_IS_OUTPUT(vq->type)) { if (V4L2_TYPE_IS_MULTIPLANAR(vq->type)) { + unsigned int i; + for (i = 0; i < buf->length; ++i) buf->m.planes[i].m.mem_offset += DST_QUEUE_OFF_BASE; @@ -480,8 +475,23 @@ buf->m.offset += DST_QUEUE_OFF_BASE; } } +} - return ret; +int v4l2_m2m_querybuf(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, + struct v4l2_buffer *buf) +{ + struct vb2_queue *vq; + int ret; + + vq = v4l2_m2m_get_vq(m2m_ctx, buf->type); + ret = vb2_querybuf(vq, buf); + if (ret) + return ret; + + /* Adjust MMAP memory offsets for the CAPTURE queue */ + v4l2_m2m_adjust_mem_offset(vq, buf); + + return 0; } EXPORT_SYMBOL_GPL(v4l2_m2m_querybuf); @@ -500,10 +510,16 @@ return -EPERM; } ret = vb2_qbuf(vq, vdev->v4l2_dev->mdev, buf); - if (!ret && !(buf->flags & V4L2_BUF_FLAG_IN_REQUEST)) + if (ret) + return ret; + + /* Adjust MMAP memory offsets for the CAPTURE queue */ + v4l2_m2m_adjust_mem_offset(vq, buf); + + if (!(buf->flags & V4L2_BUF_FLAG_IN_REQUEST)) v4l2_m2m_try_schedule(m2m_ctx); - return ret; + return 0; } EXPORT_SYMBOL_GPL(v4l2_m2m_qbuf); @@ -511,9 +527,17 @@ struct v4l2_buffer *buf) { struct vb2_queue *vq; + int ret; vq = v4l2_m2m_get_vq(m2m_ctx, buf->type); - return vb2_dqbuf(vq, buf, file->f_flags & O_NONBLOCK); + ret = vb2_dqbuf(vq, buf, file->f_flags & O_NONBLOCK); + if (ret) + return ret; + + /* Adjust MMAP memory offsets for the CAPTURE queue */ + v4l2_m2m_adjust_mem_offset(vq, buf); + + return 0; } EXPORT_SYMBOL_GPL(v4l2_m2m_dqbuf); @@ -522,9 +546,17 @@ { struct video_device *vdev = video_devdata(file); struct vb2_queue *vq; + int ret; vq = v4l2_m2m_get_vq(m2m_ctx, buf->type); - return vb2_prepare_buf(vq, vdev->v4l2_dev->mdev, buf); + ret = vb2_prepare_buf(vq, vdev->v4l2_dev->mdev, buf); + if (ret) + return ret; + + /* Adjust MMAP memory offsets for the CAPTURE queue */ + v4l2_m2m_adjust_mem_offset(vq, buf); + + return 0; } EXPORT_SYMBOL_GPL(v4l2_m2m_prepare_buf); @@ -635,10 +667,8 @@ * If the last buffer was dequeued from the capture queue, * return immediately. DQBUF will return -EPIPE. */ - if (dst_q->last_buffer_dequeued) { - spin_unlock_irqrestore(&dst_q->done_lock, flags); - return EPOLLIN | EPOLLRDNORM; - } + if (dst_q->last_buffer_dequeued) + rc |= EPOLLIN | EPOLLRDNORM; } spin_unlock_irqrestore(&dst_q->done_lock, flags); diff -u linux-azure-5.4.0/drivers/memory/emif.c linux-azure-5.4.0/drivers/memory/emif.c --- linux-azure-5.4.0/drivers/memory/emif.c +++ linux-azure-5.4.0/drivers/memory/emif.c @@ -1423,7 +1423,7 @@ temp = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL); dev_info = devm_kzalloc(dev, sizeof(*dev_info), GFP_KERNEL); - if (!emif || !pd || !dev_info) { + if (!emif || !temp || !dev_info) { dev_err(dev, "%s:%d: allocation error\n", __func__, __LINE__); goto error; } @@ -1515,7 +1515,7 @@ { struct emif_data *emif; struct resource *res; - int irq; + int irq, ret; if (pdev->dev.of_node) emif = of_get_memory_device_details(pdev->dev.of_node, &pdev->dev); @@ -1549,7 +1549,9 @@ emif_onetime_settings(emif); emif_debugfs_init(emif); disable_and_clear_all_interrupts(emif); - setup_interrupts(emif, irq); + ret = setup_interrupts(emif, irq); + if (ret) + goto error; /* One-time actions taken on probing the first device */ if (!emif1) { diff -u linux-azure-5.4.0/drivers/memory/pl353-smc.c linux-azure-5.4.0/drivers/memory/pl353-smc.c --- linux-azure-5.4.0/drivers/memory/pl353-smc.c +++ linux-azure-5.4.0/drivers/memory/pl353-smc.c @@ -407,6 +407,7 @@ break; } if (!match) { + err = -ENODEV; dev_err(&adev->dev, "no matching children\n"); goto out_clk_disable; } @@ -415,6 +416,7 @@ if (init) init(adev, child); of_platform_device_create(child, NULL, &adev->dev); + of_node_put(child); return 0; diff -u linux-azure-5.4.0/drivers/memstick/host/r592.c linux-azure-5.4.0/drivers/memstick/host/r592.c --- linux-azure-5.4.0/drivers/memstick/host/r592.c +++ linux-azure-5.4.0/drivers/memstick/host/r592.c @@ -837,15 +837,15 @@ } memstick_remove_host(dev->host); + if (dev->dummy_dma_page) + dma_free_coherent(&pdev->dev, PAGE_SIZE, dev->dummy_dma_page, + dev->dummy_dma_page_physical_address); + free_irq(dev->irq, dev); iounmap(dev->mmio); pci_release_regions(pdev); pci_disable_device(pdev); memstick_free_host(dev->host); - - if (dev->dummy_dma_page) - dma_free_coherent(&pdev->dev, PAGE_SIZE, dev->dummy_dma_page, - dev->dummy_dma_page_physical_address); } #ifdef CONFIG_PM_SLEEP diff -u linux-azure-5.4.0/drivers/mfd/axp20x.c linux-azure-5.4.0/drivers/mfd/axp20x.c --- linux-azure-5.4.0/drivers/mfd/axp20x.c +++ linux-azure-5.4.0/drivers/mfd/axp20x.c @@ -125,12 +125,13 @@ static const struct regmap_range axp288_volatile_ranges[] = { regmap_reg_range(AXP20X_PWR_INPUT_STATUS, AXP288_POWER_REASON), + regmap_reg_range(AXP22X_PWR_OUT_CTRL1, AXP22X_ALDO3_V_OUT), regmap_reg_range(AXP288_BC_GLOBAL, AXP288_BC_GLOBAL), regmap_reg_range(AXP288_BC_DET_STAT, AXP20X_VBUS_IPSOUT_MGMT), regmap_reg_range(AXP20X_CHRG_BAK_CTRL, AXP20X_CHRG_BAK_CTRL), regmap_reg_range(AXP20X_IRQ1_EN, AXP20X_IPSOUT_V_HIGH_L), regmap_reg_range(AXP20X_TIMER_CTRL, AXP20X_TIMER_CTRL), - regmap_reg_range(AXP22X_GPIO_STATE, AXP22X_GPIO_STATE), + regmap_reg_range(AXP20X_GPIO1_CTRL, AXP22X_GPIO_STATE), regmap_reg_range(AXP288_RT_BATT_V_H, AXP288_RT_BATT_V_L), regmap_reg_range(AXP20X_FG_RES, AXP288_FG_CC_CAP_REG), }; diff -u linux-azure-5.4.0/drivers/mfd/sm501.c linux-azure-5.4.0/drivers/mfd/sm501.c --- linux-azure-5.4.0/drivers/mfd/sm501.c +++ linux-azure-5.4.0/drivers/mfd/sm501.c @@ -1733,7 +1733,12 @@ static int __init sm501_base_init(void) { - platform_driver_register(&sm501_plat_driver); + int ret; + + ret = platform_driver_register(&sm501_plat_driver); + if (ret < 0) + return ret; + return pci_register_driver(&sm501_pci_driver); } diff -u linux-azure-5.4.0/drivers/misc/atmel-ssc.c linux-azure-5.4.0/drivers/misc/atmel-ssc.c --- linux-azure-5.4.0/drivers/misc/atmel-ssc.c +++ linux-azure-5.4.0/drivers/misc/atmel-ssc.c @@ -232,9 +232,9 @@ clk_disable_unprepare(ssc->clk); ssc->irq = platform_get_irq(pdev, 0); - if (!ssc->irq) { + if (ssc->irq < 0) { dev_dbg(&pdev->dev, "could not get irq\n"); - return -ENXIO; + return ssc->irq; } mutex_lock(&user_lock); diff -u linux-azure-5.4.0/drivers/misc/cardreader/rtsx_pcr.c linux-azure-5.4.0/drivers/misc/cardreader/rtsx_pcr.c --- linux-azure-5.4.0/drivers/misc/cardreader/rtsx_pcr.c +++ linux-azure-5.4.0/drivers/misc/cardreader/rtsx_pcr.c @@ -1485,7 +1485,7 @@ pcr->remap_addr = ioremap_nocache(base, len); if (!pcr->remap_addr) { ret = -ENOMEM; - goto free_handle; + goto free_idr; } pcr->rtsx_resv_buf = dma_alloc_coherent(&(pcidev->dev), @@ -1547,6 +1547,10 @@ pcr->rtsx_resv_buf, pcr->rtsx_resv_buf_addr); unmap: iounmap(pcr->remap_addr); +free_idr: + spin_lock(&rtsx_pci_lock); + idr_remove(&rtsx_pci_idr, pcr->id); + spin_unlock(&rtsx_pci_lock); free_handle: kfree(handle); free_pcr: diff -u linux-azure-5.4.0/drivers/misc/fastrpc.c linux-azure-5.4.0/drivers/misc/fastrpc.c --- linux-azure-5.4.0/drivers/misc/fastrpc.c +++ linux-azure-5.4.0/drivers/misc/fastrpc.c @@ -693,16 +693,18 @@ static u64 fastrpc_get_payload_size(struct fastrpc_invoke_ctx *ctx, int metalen) { u64 size = 0; - int i; + int oix; size = ALIGN(metalen, FASTRPC_ALIGN); - for (i = 0; i < ctx->nscalars; i++) { + for (oix = 0; oix < ctx->nbufs; oix++) { + int i = ctx->olaps[oix].raix; + if (ctx->args[i].fd == 0 || ctx->args[i].fd == -1) { - if (ctx->olaps[i].offset == 0) + if (ctx->olaps[oix].offset == 0) size = ALIGN(size, FASTRPC_ALIGN); - size += (ctx->olaps[i].mend - ctx->olaps[i].mstart); + size += (ctx->olaps[oix].mend - ctx->olaps[oix].mstart); } } @@ -1243,7 +1245,14 @@ } if (copy_to_user(argp, &bp, sizeof(bp))) { - dma_buf_put(buf->dmabuf); + /* + * The usercopy failed, but we can't do much about it, as + * dma_buf_fd() already called fd_install() and made the + * file descriptor accessible for the current process. It + * might already be closed and dmabuf no longer valid when + * we reach this point. Therefore "leak" the fd and rely on + * the process exit path to do any required cleanup. + */ return -EFAULT; } @@ -1348,7 +1357,12 @@ of_property_read_u32(dev->of_node, "qcom,nsessions", &sessions); spin_lock_irqsave(&cctx->lock, flags); - sess = &cctx->session[cctx->sesscount]; + if (cctx->sesscount >= FASTRPC_MAX_SESSIONS) { + dev_err(&pdev->dev, "too many sessions\n"); + spin_unlock_irqrestore(&cctx->lock, flags); + return -ENOSPC; + } + sess = &cctx->session[cctx->sesscount++]; sess->used = false; sess->valid = true; sess->dev = dev; @@ -1361,13 +1375,12 @@ struct fastrpc_session_ctx *dup_sess; for (i = 1; i < sessions; i++) { - if (cctx->sesscount++ >= FASTRPC_MAX_SESSIONS) + if (cctx->sesscount >= FASTRPC_MAX_SESSIONS) break; - dup_sess = &cctx->session[cctx->sesscount]; + dup_sess = &cctx->session[cctx->sesscount++]; memcpy(dup_sess, sess, sizeof(*dup_sess)); } } - cctx->sesscount++; spin_unlock_irqrestore(&cctx->lock, flags); rc = dma_set_mask(dev, DMA_BIT_MASK(32)); if (rc) { diff -u linux-azure-5.4.0/drivers/misc/kgdbts.c linux-azure-5.4.0/drivers/misc/kgdbts.c --- linux-azure-5.4.0/drivers/misc/kgdbts.c +++ linux-azure-5.4.0/drivers/misc/kgdbts.c @@ -1060,10 +1060,10 @@ { if (strlen(opt) >= MAX_CONFIG_LEN) { printk(KERN_ERR "kgdbts: config string too long\n"); - return -ENOSPC; + return 1; } strcpy(config, opt); - return 0; + return 1; } __setup("kgdbts=", kgdbts_option_setup); diff -u linux-azure-5.4.0/drivers/misc/lkdtm/Makefile linux-azure-5.4.0/drivers/misc/lkdtm/Makefile --- linux-azure-5.4.0/drivers/misc/lkdtm/Makefile +++ linux-azure-5.4.0/drivers/misc/lkdtm/Makefile @@ -16,7 +16,7 @@ OBJCOPYFLAGS := OBJCOPYFLAGS_rodata_objcopy.o := \ - --rename-section .noinstr.text=.rodata,alloc,readonly,load + --rename-section .noinstr.text=.rodata,alloc,readonly,load,contents targets += rodata.o rodata_objcopy.o $(obj)/rodata_objcopy.o: $(obj)/rodata.o FORCE $(call if_changed,objcopy) diff -u linux-azure-5.4.0/drivers/misc/mei/hw-me-regs.h linux-azure-5.4.0/drivers/misc/mei/hw-me-regs.h --- linux-azure-5.4.0/drivers/misc/mei/hw-me-regs.h +++ linux-azure-5.4.0/drivers/misc/mei/hw-me-regs.h @@ -90,6 +90,7 @@ #define MEI_DEV_ID_CDF 0x18D3 /* Cedar Fork */ #define MEI_DEV_ID_ICP_LP 0x34E0 /* Ice Lake Point LP */ +#define MEI_DEV_ID_ICP_N 0x38E0 /* Ice Lake Point N */ #define MEI_DEV_ID_TGP_LP 0xA0E0 /* Tiger Lake Point LP */ diff -u linux-azure-5.4.0/drivers/misc/mei/pci-me.c linux-azure-5.4.0/drivers/misc/mei/pci-me.c --- linux-azure-5.4.0/drivers/misc/mei/pci-me.c +++ linux-azure-5.4.0/drivers/misc/mei/pci-me.c @@ -106,6 +106,7 @@ {MEI_PCI_DEVICE(MEI_DEV_ID_CMP_H_3, MEI_ME_PCH8_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_ICP_LP, MEI_ME_PCH12_CFG)}, + {MEI_PCI_DEVICE(MEI_DEV_ID_ICP_N, MEI_ME_PCH12_CFG)}, {MEI_PCI_DEVICE(MEI_DEV_ID_TGP_LP, MEI_ME_PCH12_CFG)}, diff -u linux-azure-5.4.0/drivers/misc/ocxl/file.c linux-azure-5.4.0/drivers/misc/ocxl/file.c --- linux-azure-5.4.0/drivers/misc/ocxl/file.c +++ linux-azure-5.4.0/drivers/misc/ocxl/file.c @@ -259,6 +259,8 @@ if (IS_ERR(ev_ctx)) return PTR_ERR(ev_ctx); rc = ocxl_irq_set_handler(ctx, irq_id, irq_handler, irq_free, ev_ctx); + if (rc) + eventfd_ctx_put(ev_ctx); break; case OCXL_IOCTL_GET_METADATA: @@ -558,7 +560,9 @@ err_unregister: ocxl_sysfs_unregister_afu(info); // safe to call even if register failed + free_minor(info); device_unregister(&info->dev); + return rc; err_put: ocxl_afu_put(afu); free_minor(info); diff -u linux-azure-5.4.0/drivers/misc/vmw_vmci/vmci_queue_pair.c linux-azure-5.4.0/drivers/misc/vmw_vmci/vmci_queue_pair.c --- linux-azure-5.4.0/drivers/misc/vmw_vmci/vmci_queue_pair.c +++ linux-azure-5.4.0/drivers/misc/vmw_vmci/vmci_queue_pair.c @@ -2238,7 +2238,8 @@ result = VMCI_SUCCESS; - if (context_id != VMCI_HOST_CONTEXT_ID) { + if (context_id != VMCI_HOST_CONTEXT_ID && + !QPBROKERSTATE_HAS_MEM(entry)) { struct vmci_qp_page_store page_store; page_store.pages = guest_mem; @@ -2345,7 +2346,8 @@ goto out; } - if (context_id != VMCI_HOST_CONTEXT_ID) { + if (context_id != VMCI_HOST_CONTEXT_ID && + QPBROKERSTATE_HAS_MEM(entry)) { qp_acquire_queue_mutex(entry->produce_q); result = qp_save_headers(entry); if (result < VMCI_SUCCESS) diff -u linux-azure-5.4.0/drivers/mmc/core/block.c linux-azure-5.4.0/drivers/mmc/core/block.c --- linux-azure-5.4.0/drivers/mmc/core/block.c +++ linux-azure-5.4.0/drivers/mmc/core/block.c @@ -591,6 +591,7 @@ } mmc_wait_for_req(card->host, &mrq); + memcpy(&idata->ic.response, cmd.resp, sizeof(cmd.resp)); if (cmd.error) { dev_err(mmc_dev(card->host), "%s: cmd error %d\n", @@ -640,8 +641,6 @@ if (idata->ic.postsleep_min_us) usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us); - memcpy(&(idata->ic.response), cmd.resp, sizeof(cmd.resp)); - if (idata->rpmb || (cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) { /* * Ensure RPMB/R1B command has completed by polling CMD13 @@ -1053,6 +1052,12 @@ switch (mq_rq->drv_op) { case MMC_DRV_OP_IOCTL: + if (card->ext_csd.cmdq_en) { + ret = mmc_cmdq_disable(card); + if (ret) + break; + } + fallthrough; case MMC_DRV_OP_IOCTL_RPMB: idata = mq_rq->drv_op_data; for (i = 0, ret = 0; i < mq_rq->ioc_count; i++) { @@ -1063,6 +1068,8 @@ /* Always switch back to main area after RPMB access */ if (rpmb_ioctl) mmc_blk_part_switch(card, 0); + else if (card->reenable_cmdq && !card->ext_csd.cmdq_en) + mmc_cmdq_enable(card); break; case MMC_DRV_OP_BOOT_WP: ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP, @@ -1119,7 +1126,7 @@ card->erase_arg == MMC_TRIM_ARG ? INAND_CMD38_ARG_TRIM : INAND_CMD38_ARG_ERASE, - 0); + card->ext_csd.generic_cmd6_time); } if (!err) err = mmc_erase(card, from, nr, card->erase_arg); @@ -1161,7 +1168,7 @@ arg == MMC_SECURE_TRIM1_ARG ? INAND_CMD38_ARG_SECTRIM1 : INAND_CMD38_ARG_SECERASE, - 0); + card->ext_csd.generic_cmd6_time); if (err) goto out_retry; } @@ -1179,7 +1186,7 @@ err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, INAND_CMD38_ARG_EXT_CSD, INAND_CMD38_ARG_SECTRIM2, - 0); + card->ext_csd.generic_cmd6_time); if (err) goto out_retry; } @@ -1485,8 +1492,7 @@ err = mmc_cqe_recovery(host); if (err) mmc_blk_reset(mq->blkdata, host, MMC_BLK_CQE_RECOVERY); - else - mmc_blk_reset_success(mq->blkdata, MMC_BLK_CQE_RECOVERY); + mmc_blk_reset_success(mq->blkdata, MMC_BLK_CQE_RECOVERY); pr_debug("%s: CQE recovery done\n", mmc_hostname(host)); } @@ -1505,7 +1511,7 @@ */ if (mq->in_recovery) mmc_blk_cqe_complete_rq(mq, req); - else + else if (likely(!blk_should_fake_timeout(req->q))) blk_mq_complete_request(req); } @@ -1664,31 +1670,31 @@ struct mmc_card *card = mq->card; struct mmc_host *host = card->host; blk_status_t error = BLK_STS_OK; - int retries = 0; do { u32 status; int err; + int retries = 0; - mmc_blk_rw_rq_prep(mqrq, card, 1, mq); - - mmc_wait_for_req(host, mrq); + while (retries++ <= MMC_READ_SINGLE_RETRIES) { + mmc_blk_rw_rq_prep(mqrq, card, 1, mq); - err = mmc_send_status(card, &status); - if (err) - goto error_exit; + mmc_wait_for_req(host, mrq); - if (!mmc_host_is_spi(host) && - !mmc_blk_in_tran_state(status)) { - err = mmc_blk_fix_state(card, req); + err = mmc_send_status(card, &status); if (err) goto error_exit; - } - if (mrq->cmd->error && retries++ < MMC_READ_SINGLE_RETRIES) - continue; + if (!mmc_host_is_spi(host) && + !mmc_blk_in_tran_state(status)) { + err = mmc_blk_fix_state(card, req); + if (err) + goto error_exit; + } - retries = 0; + if (!mrq->cmd->error) + break; + } if (mrq->cmd->error || mrq->data->error || @@ -1939,7 +1945,7 @@ if (mq->use_cqe) mmc_blk_cqe_complete_rq(mq, req); - else + else if (likely(!blk_should_fake_timeout(req->q))) mmc_blk_mq_complete_rq(mq, req); } @@ -1991,7 +1997,7 @@ */ if (mq->in_recovery) mmc_blk_mq_complete_rq(mq, req); - else + else if (likely(!blk_should_fake_timeout(req->q))) blk_mq_complete_request(req); mmc_blk_mq_dec_in_flight(mq, req); diff -u linux-azure-5.4.0/drivers/mmc/core/core.c linux-azure-5.4.0/drivers/mmc/core/core.c --- linux-azure-5.4.0/drivers/mmc/core/core.c +++ linux-azure-5.4.0/drivers/mmc/core/core.c @@ -953,11 +953,14 @@ err = host->ops->execute_tuning(host, opcode); - if (err) + if (err) { pr_err("%s: tuning execution failed: %d\n", mmc_hostname(host), err); - else + } else { + host->retune_now = 0; + host->need_retune = 0; mmc_retune_enable(host); + } return err; } @@ -2361,7 +2364,7 @@ _mmc_detect_change(host, 0, false); } -void mmc_stop_host(struct mmc_host *host) +void __mmc_stop_host(struct mmc_host *host) { if (host->slot.cd_irq >= 0) { mmc_gpio_set_cd_wake(host, false); @@ -2370,6 +2373,11 @@ host->rescan_disable = 1; cancel_delayed_work_sync(&host->detect); +} + +void mmc_stop_host(struct mmc_host *host) +{ + __mmc_stop_host(host); /* clear pm flags now and let card drivers set them as needed */ host->pm_flags = 0; diff -u linux-azure-5.4.0/drivers/mmc/core/core.h linux-azure-5.4.0/drivers/mmc/core/core.h --- linux-azure-5.4.0/drivers/mmc/core/core.h +++ linux-azure-5.4.0/drivers/mmc/core/core.h @@ -69,6 +69,7 @@ void mmc_rescan(struct work_struct *work); void mmc_start_host(struct mmc_host *host); +void __mmc_stop_host(struct mmc_host *host); void mmc_stop_host(struct mmc_host *host); void _mmc_detect_change(struct mmc_host *host, unsigned long delay, diff -u linux-azure-5.4.0/drivers/mmc/core/host.c linux-azure-5.4.0/drivers/mmc/core/host.c --- linux-azure-5.4.0/drivers/mmc/core/host.c +++ linux-azure-5.4.0/drivers/mmc/core/host.c @@ -76,9 +76,18 @@ kfree(host); } +static int mmc_host_classdev_shutdown(struct device *dev) +{ + struct mmc_host *host = cls_dev_to_mmc_host(dev); + + __mmc_stop_host(host); + return 0; +} + static struct class mmc_host_class = { .name = "mmc_host", .dev_release = mmc_host_classdev_release, + .shutdown_pre = mmc_host_classdev_shutdown, .pm = MMC_HOST_CLASS_DEV_PM_OPS, }; @@ -488,6 +497,16 @@ EXPORT_SYMBOL(mmc_alloc_host); +static int mmc_validate_host_caps(struct mmc_host *host) +{ + if (host->caps & MMC_CAP_SDIO_IRQ && !host->ops->enable_sdio_irq) { + dev_warn(host->parent, "missing ->enable_sdio_irq() ops\n"); + return -EINVAL; + } + + return 0; +} + /** * mmc_add_host - initialise host hardware * @host: mmc host @@ -500,8 +519,9 @@ { int err; - WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) && - !host->ops->enable_sdio_irq); + err = mmc_validate_host_caps(host); + if (err) + return err; err = device_add(&host->class_dev); if (err) diff -u linux-azure-5.4.0/drivers/mmc/core/mmc_ops.c linux-azure-5.4.0/drivers/mmc/core/mmc_ops.c --- linux-azure-5.4.0/drivers/mmc/core/mmc_ops.c +++ linux-azure-5.4.0/drivers/mmc/core/mmc_ops.c @@ -19,7 +19,9 @@ #include "host.h" #include "mmc_ops.h" -#define MMC_OPS_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */ +#define MMC_OPS_TIMEOUT_MS (10 * 60 * 1000) /* 10min*/ +#define MMC_BKOPS_TIMEOUT_MS (120 * 1000) /* 120s */ +#define MMC_CACHE_FLUSH_TIMEOUT_MS (30 * 1000) /* 30s */ static const u8 tuning_blk_pattern_4bit[] = { 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc, @@ -458,10 +460,6 @@ bool expired = false; bool busy = false; - /* We have an unspecified cmd timeout, use the fallback value. */ - if (!timeout_ms) - timeout_ms = MMC_OPS_TIMEOUT_MS; - /* * In cases when not allowed to poll by using CMD13 or because we aren't * capable of polling by using ->card_busy(), then rely on waiting the @@ -534,6 +532,12 @@ mmc_retune_hold(host); + if (!timeout_ms) { + pr_warn("%s: unspecified timeout for CMD6 - use generic\n", + mmc_hostname(host)); + timeout_ms = card->ext_csd.generic_cmd6_time; + } + /* * If the cmd timeout and the max_busy_timeout of the host are both * specified, let's validate them. A failure means we need to prevent @@ -542,7 +546,7 @@ * which also means they are on their own when it comes to deal with the * busy timeout. */ - if (!(host->caps & MMC_CAP_NEED_RSP_BUSY) && timeout_ms && + if (!(host->caps & MMC_CAP_NEED_RSP_BUSY) && host->max_busy_timeout && (timeout_ms > host->max_busy_timeout)) use_r1b_resp = false; @@ -554,10 +558,6 @@ cmd.flags = MMC_CMD_AC; if (use_r1b_resp) { cmd.flags |= MMC_RSP_SPI_R1B | MMC_RSP_R1B; - /* - * A busy_timeout of zero means the host can decide to use - * whatever value it finds suitable. - */ cmd.busy_timeout = timeout_ms; } else { cmd.flags |= MMC_RSP_SPI_R1 | MMC_RSP_R1; @@ -943,7 +943,7 @@ * urgent levels by using an asynchronous background task, when idle. */ err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, - EXT_CSD_BKOPS_START, 1, MMC_OPS_TIMEOUT_MS); + EXT_CSD_BKOPS_START, 1, MMC_BKOPS_TIMEOUT_MS); if (err) pr_warn("%s: Error %d starting bkops\n", mmc_hostname(card->host), err); @@ -961,7 +961,8 @@ if (mmc_cache_enabled(card->host)) { err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, - EXT_CSD_FLUSH_CACHE, 1, 0); + EXT_CSD_FLUSH_CACHE, 1, + MMC_CACHE_FLUSH_TIMEOUT_MS); if (err) pr_err("%s: cache flush error %d\n", mmc_hostname(card->host), err); diff -u linux-azure-5.4.0/drivers/mmc/core/sd.c linux-azure-5.4.0/drivers/mmc/core/sd.c --- linux-azure-5.4.0/drivers/mmc/core/sd.c +++ linux-azure-5.4.0/drivers/mmc/core/sd.c @@ -793,11 +793,14 @@ return err; /* - * In case CCS and S18A in the response is set, start Signal Voltage - * Switch procedure. SPI mode doesn't support CMD11. + * In case the S18A bit is set in the response, let's start the signal + * voltage switch procedure. SPI mode doesn't support CMD11. + * Note that, according to the spec, the S18A bit is not valid unless + * the CCS bit is set as well. We deliberately deviate from the spec in + * regards to this, which allows UHS-I to be supported for SDSC cards. */ - if (!mmc_host_is_spi(host) && rocr && - ((*rocr & 0x41000000) == 0x41000000)) { + if (!mmc_host_is_spi(host) && (ocr & SD_OCR_S18R) && + rocr && (*rocr & SD_ROCR_S18A)) { err = mmc_set_uhs_voltage(host, pocr); if (err == -EAGAIN) { retries--; diff -u linux-azure-5.4.0/drivers/mmc/core/sdio.c linux-azure-5.4.0/drivers/mmc/core/sdio.c --- linux-azure-5.4.0/drivers/mmc/core/sdio.c +++ linux-azure-5.4.0/drivers/mmc/core/sdio.c @@ -626,6 +626,8 @@ if (host->ops->init_card) host->ops->init_card(host, card); + card->ocr = ocr_card; + /* * If the host and card support UHS-I mode request the card * to switch to 1.8V signaling level. No 1.8v signalling if @@ -738,7 +740,7 @@ goto mismatch; } } - card->ocr = ocr_card; + mmc_fixup_device(card, sdio_fixup_methods); if (card->type == MMC_TYPE_SD_COMBO) { diff -u linux-azure-5.4.0/drivers/mmc/core/sdio_bus.c linux-azure-5.4.0/drivers/mmc/core/sdio_bus.c --- linux-azure-5.4.0/drivers/mmc/core/sdio_bus.c +++ linux-azure-5.4.0/drivers/mmc/core/sdio_bus.c @@ -266,7 +266,8 @@ { struct sdio_func *func = dev_to_sdio_func(dev); - sdio_free_func_cis(func); + if (!(func->card->quirks & MMC_QUIRK_NONSTD_SDIO)) + sdio_free_func_cis(func); kfree(func->info); kfree(func->tmpbuf); diff -u linux-azure-5.4.0/drivers/mmc/host/cqhci.c linux-azure-5.4.0/drivers/mmc/host/cqhci.c --- linux-azure-5.4.0/drivers/mmc/host/cqhci.c +++ linux-azure-5.4.0/drivers/mmc/host/cqhci.c @@ -273,6 +273,9 @@ cqhci_writel(cq_host, cqcfg, CQHCI_CFG); + if (cqhci_readl(cq_host, CQHCI_CTL) & CQHCI_HALT) + cqhci_writel(cq_host, 0, CQHCI_CTL); + mmc->cqe_on = true; if (cq_host->ops->enable) diff -u linux-azure-5.4.0/drivers/mmc/host/meson-gx-mmc.c linux-azure-5.4.0/drivers/mmc/host/meson-gx-mmc.c --- linux-azure-5.4.0/drivers/mmc/host/meson-gx-mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/meson-gx-mmc.c @@ -166,6 +166,7 @@ unsigned int bounce_buf_size; void *bounce_buf; + void __iomem *bounce_iomem_buf; dma_addr_t bounce_dma_addr; struct sd_emmc_desc *descs; dma_addr_t descs_dma_addr; @@ -173,6 +174,8 @@ int irq; bool vqmmc_enabled; + bool needs_pre_post_req; + }; #define CMD_CFG_LENGTH_MASK GENMASK(8, 0) @@ -654,6 +657,8 @@ struct meson_host *host = mmc_priv(mmc); host->cmd = NULL; + if (host->needs_pre_post_req) + meson_mmc_post_req(mmc, mrq, 0); mmc_request_done(host->mmc, mrq); } @@ -737,6 +742,53 @@ writel(start, host->regs + SD_EMMC_START); } +/* local sg copy for dram_access_quirk */ +static void meson_mmc_copy_buffer(struct meson_host *host, struct mmc_data *data, + size_t buflen, bool to_buffer) +{ + unsigned int sg_flags = SG_MITER_ATOMIC; + struct scatterlist *sgl = data->sg; + unsigned int nents = data->sg_len; + struct sg_mapping_iter miter; + unsigned int offset = 0; + + if (to_buffer) + sg_flags |= SG_MITER_FROM_SG; + else + sg_flags |= SG_MITER_TO_SG; + + sg_miter_start(&miter, sgl, nents, sg_flags); + + while ((offset < buflen) && sg_miter_next(&miter)) { + unsigned int buf_offset = 0; + unsigned int len, left; + u32 *buf = miter.addr; + + len = min(miter.length, buflen - offset); + left = len; + + if (to_buffer) { + do { + writel(*buf++, host->bounce_iomem_buf + offset + buf_offset); + + buf_offset += 4; + left -= 4; + } while (left); + } else { + do { + *buf++ = readl(host->bounce_iomem_buf + offset + buf_offset); + + buf_offset += 4; + left -= 4; + } while (left); + } + + offset += len; + } + + sg_miter_stop(&miter); +} + static void meson_mmc_start_cmd(struct mmc_host *mmc, struct mmc_command *cmd) { struct meson_host *host = mmc_priv(mmc); @@ -780,8 +832,11 @@ if (data->flags & MMC_DATA_WRITE) { cmd_cfg |= CMD_CFG_DATA_WR; WARN_ON(xfer_bytes > host->bounce_buf_size); - sg_copy_to_buffer(data->sg, data->sg_len, - host->bounce_buf, xfer_bytes); + if (host->dram_access_quirk) + meson_mmc_copy_buffer(host, data, xfer_bytes, true); + else + sg_copy_to_buffer(data->sg, data->sg_len, + host->bounce_buf, xfer_bytes); dma_wmb(); } @@ -800,28 +855,56 @@ writel(cmd->arg, host->regs + SD_EMMC_CMD_ARG); } +static int meson_mmc_validate_dram_access(struct mmc_host *mmc, struct mmc_data *data) +{ + struct scatterlist *sg; + int i; + + /* Reject request if any element offset or size is not 32bit aligned */ + for_each_sg(data->sg, sg, data->sg_len, i) { + if (!IS_ALIGNED(sg->offset, sizeof(u32)) || + !IS_ALIGNED(sg->length, sizeof(u32))) { + dev_err(mmc_dev(mmc), "unaligned sg offset %u len %u\n", + data->sg->offset, data->sg->length); + return -EINVAL; + } + } + + return 0; +} + static void meson_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq) { struct meson_host *host = mmc_priv(mmc); - bool needs_pre_post_req = mrq->data && + host->needs_pre_post_req = mrq->data && !(mrq->data->host_cookie & SD_EMMC_PRE_REQ_DONE); - if (needs_pre_post_req) { + /* + * The memory at the end of the controller used as bounce buffer for + * the dram_access_quirk only accepts 32bit read/write access, + * check the aligment and length of the data before starting the request. + */ + if (host->dram_access_quirk && mrq->data) { + mrq->cmd->error = meson_mmc_validate_dram_access(mmc, mrq->data); + if (mrq->cmd->error) { + mmc_request_done(mmc, mrq); + return; + } + } + + if (host->needs_pre_post_req) { meson_mmc_get_transfer_mode(mmc, mrq); if (!meson_mmc_desc_chain_mode(mrq->data)) - needs_pre_post_req = false; + host->needs_pre_post_req = false; } - if (needs_pre_post_req) + if (host->needs_pre_post_req) meson_mmc_pre_req(mmc, mrq); /* Stop execution */ writel(0, host->regs + SD_EMMC_START); meson_mmc_start_cmd(mmc, mrq->sbc ?: mrq->cmd); - - if (needs_pre_post_req) - meson_mmc_post_req(mmc, mrq, 0); } static void meson_mmc_read_resp(struct mmc_host *mmc, struct mmc_command *cmd) @@ -950,8 +1033,11 @@ if (meson_mmc_bounce_buf_read(data)) { xfer_bytes = data->blksz * data->blocks; WARN_ON(xfer_bytes > host->bounce_buf_size); - sg_copy_from_buffer(data->sg, data->sg_len, - host->bounce_buf, xfer_bytes); + if (host->dram_access_quirk) + meson_mmc_copy_buffer(host, data, xfer_bytes, false); + else + sg_copy_from_buffer(data->sg, data->sg_len, + host->bounce_buf, xfer_bytes); } next_cmd = meson_mmc_get_next_command(cmd); @@ -1179,7 +1265,7 @@ * instead of the DDR memory */ host->bounce_buf_size = SD_EMMC_SRAM_DATA_BUF_LEN; - host->bounce_buf = host->regs + SD_EMMC_SRAM_DATA_BUF_OFF; + host->bounce_iomem_buf = host->regs + SD_EMMC_SRAM_DATA_BUF_OFF; host->bounce_dma_addr = res->start + SD_EMMC_SRAM_DATA_BUF_OFF; } else { /* data bounce buffer */ diff -u linux-azure-5.4.0/drivers/mmc/host/meson-mx-sdio.c linux-azure-5.4.0/drivers/mmc/host/meson-mx-sdio.c --- linux-azure-5.4.0/drivers/mmc/host/meson-mx-sdio.c +++ linux-azure-5.4.0/drivers/mmc/host/meson-mx-sdio.c @@ -665,6 +665,11 @@ } irq = platform_get_irq(pdev, 0); + if (irq < 0) { + ret = irq; + goto error_free_mmc; + } + ret = devm_request_threaded_irq(host->controller_dev, irq, meson_mx_mmc_irq, meson_mx_mmc_irq_thread, IRQF_ONESHOT, diff -u linux-azure-5.4.0/drivers/mmc/host/mmci_stm32_sdmmc.c linux-azure-5.4.0/drivers/mmc/host/mmci_stm32_sdmmc.c --- linux-azure-5.4.0/drivers/mmc/host/mmci_stm32_sdmmc.c +++ linux-azure-5.4.0/drivers/mmc/host/mmci_stm32_sdmmc.c @@ -36,8 +36,8 @@ * excepted the last element which has no constraint on idmasize */ for_each_sg(data->sg, sg, data->sg_len - 1, i) { - if (!IS_ALIGNED(sg_dma_address(data->sg), sizeof(u32)) || - !IS_ALIGNED(sg_dma_len(data->sg), SDMMC_IDMA_BURST)) { + if (!IS_ALIGNED(sg->offset, sizeof(u32)) || + !IS_ALIGNED(sg->length, SDMMC_IDMA_BURST)) { dev_err(mmc_dev(host->mmc), "unaligned scatterlist: ofst:%x length:%d\n", data->sg->offset, data->sg->length); @@ -45,7 +45,7 @@ } } - if (!IS_ALIGNED(sg_dma_address(data->sg), sizeof(u32))) { + if (!IS_ALIGNED(sg->offset, sizeof(u32))) { dev_err(mmc_dev(host->mmc), "unaligned last scatterlist: ofst:%x length:%d\n", data->sg->offset, data->sg->length); diff -u linux-azure-5.4.0/drivers/mmc/host/mxs-mmc.c linux-azure-5.4.0/drivers/mmc/host/mxs-mmc.c --- linux-azure-5.4.0/drivers/mmc/host/mxs-mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/mxs-mmc.c @@ -565,6 +565,11 @@ }; MODULE_DEVICE_TABLE(of, mxs_mmc_dt_ids); +static void mxs_mmc_regulator_disable(void *regulator) +{ + regulator_disable(regulator); +} + static int mxs_mmc_probe(struct platform_device *pdev) { const struct of_device_id *of_id = @@ -606,6 +611,11 @@ "Failed to enable vmmc regulator: %d\n", ret); goto out_mmc_free; } + + ret = devm_add_action_or_reset(&pdev->dev, mxs_mmc_regulator_disable, + reg_vmmc); + if (ret) + goto out_mmc_free; } ssp->clk = devm_clk_get(&pdev->dev, NULL); diff -u linux-azure-5.4.0/drivers/mmc/host/pxamci.c linux-azure-5.4.0/drivers/mmc/host/pxamci.c --- linux-azure-5.4.0/drivers/mmc/host/pxamci.c +++ linux-azure-5.4.0/drivers/mmc/host/pxamci.c @@ -648,7 +648,7 @@ ret = pxamci_of_init(pdev, mmc); if (ret) - return ret; + goto out; host = mmc_priv(mmc); host->mmc = mmc; @@ -672,7 +672,7 @@ ret = pxamci_init_ocr(host); if (ret < 0) - return ret; + goto out; mmc->caps = 0; host->cmdat = 0; diff -u linux-azure-5.4.0/drivers/mmc/host/renesas_sdhi_core.c linux-azure-5.4.0/drivers/mmc/host/renesas_sdhi_core.c --- linux-azure-5.4.0/drivers/mmc/host/renesas_sdhi_core.c +++ linux-azure-5.4.0/drivers/mmc/host/renesas_sdhi_core.c @@ -349,10 +349,10 @@ SH_MOBILE_SDHI_SCC_TMPPORT2_HS400OSEL) | sd_scc_read32(host, priv, SH_MOBILE_SDHI_SCC_TMPPORT2)); - /* Set the sampling clock selection range of HS400 mode */ sd_scc_write32(host, priv, SH_MOBILE_SDHI_SCC_DTCNTL, SH_MOBILE_SDHI_SCC_DTCNTL_TAPEN | - 0x4 << SH_MOBILE_SDHI_SCC_DTCNTL_TAPNUM_SHIFT); + sd_scc_read32(host, priv, + SH_MOBILE_SDHI_SCC_DTCNTL)); if (host->pdata->flags & TMIO_MMC_HAVE_4TAP_HS400) diff -u linux-azure-5.4.0/drivers/mmc/host/rtsx_pci_sdmmc.c linux-azure-5.4.0/drivers/mmc/host/rtsx_pci_sdmmc.c --- linux-azure-5.4.0/drivers/mmc/host/rtsx_pci_sdmmc.c +++ linux-azure-5.4.0/drivers/mmc/host/rtsx_pci_sdmmc.c @@ -37,10 +37,7 @@ bool double_clk; bool eject; bool initial_mode; - int power_state; -#define SDMMC_POWER_ON 1 -#define SDMMC_POWER_OFF 0 - + int prev_power_state; int sg_count; s32 cookie; int cookie_sg_count; @@ -539,9 +536,22 @@ return 0; } +static inline void sd_enable_initial_mode(struct realtek_pci_sdmmc *host) +{ + rtsx_pci_write_register(host->pcr, SD_CFG1, + SD_CLK_DIVIDE_MASK, SD_CLK_DIVIDE_128); +} + +static inline void sd_disable_initial_mode(struct realtek_pci_sdmmc *host) +{ + rtsx_pci_write_register(host->pcr, SD_CFG1, + SD_CLK_DIVIDE_MASK, SD_CLK_DIVIDE_0); +} + static int sd_rw_multi(struct realtek_pci_sdmmc *host, struct mmc_request *mrq) { struct mmc_data *data = mrq->data; + int err; if (host->sg_count < 0) { data->error = host->sg_count; @@ -550,22 +560,19 @@ return data->error; } - if (data->flags & MMC_DATA_READ) - return sd_read_long_data(host, mrq); + if (data->flags & MMC_DATA_READ) { + if (host->initial_mode) + sd_disable_initial_mode(host); - return sd_write_long_data(host, mrq); -} + err = sd_read_long_data(host, mrq); -static inline void sd_enable_initial_mode(struct realtek_pci_sdmmc *host) -{ - rtsx_pci_write_register(host->pcr, SD_CFG1, - SD_CLK_DIVIDE_MASK, SD_CLK_DIVIDE_128); -} + if (host->initial_mode) + sd_enable_initial_mode(host); -static inline void sd_disable_initial_mode(struct realtek_pci_sdmmc *host) -{ - rtsx_pci_write_register(host->pcr, SD_CFG1, - SD_CLK_DIVIDE_MASK, SD_CLK_DIVIDE_0); + return err; + } + + return sd_write_long_data(host, mrq); } static void sd_normal_rw(struct realtek_pci_sdmmc *host, @@ -892,14 +899,21 @@ return err; } -static int sd_power_on(struct realtek_pci_sdmmc *host) +static int sd_power_on(struct realtek_pci_sdmmc *host, unsigned char power_mode) { struct rtsx_pcr *pcr = host->pcr; int err; - if (host->power_state == SDMMC_POWER_ON) + if (host->prev_power_state == MMC_POWER_ON) return 0; + if (host->prev_power_state == MMC_POWER_UP) { + rtsx_pci_write_register(pcr, SD_BUS_STAT, SD_CLK_TOGGLE_EN, 0); + goto finish; + } + + msleep(100); + rtsx_pci_init_cmd(pcr); rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CARD_SELECT, 0x07, SD_MOD_SEL); rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CARD_SHARE_MODE, @@ -918,11 +932,17 @@ if (err < 0) return err; + mdelay(1); + err = rtsx_pci_write_register(pcr, CARD_OE, SD_OUTPUT_EN, SD_OUTPUT_EN); if (err < 0) return err; - host->power_state = SDMMC_POWER_ON; + /* send at least 74 clocks */ + rtsx_pci_write_register(pcr, SD_BUS_STAT, SD_CLK_TOGGLE_EN, SD_CLK_TOGGLE_EN); + +finish: + host->prev_power_state = power_mode; return 0; } @@ -931,7 +951,7 @@ struct rtsx_pcr *pcr = host->pcr; int err; - host->power_state = SDMMC_POWER_OFF; + host->prev_power_state = MMC_POWER_OFF; rtsx_pci_init_cmd(pcr); @@ -957,7 +977,7 @@ if (power_mode == MMC_POWER_OFF) err = sd_power_off(host); else - err = sd_power_on(host); + err = sd_power_on(host, power_mode); return err; } @@ -1392,10 +1412,11 @@ host = mmc_priv(mmc); host->pcr = pcr; + mmc->ios.power_delay_ms = 5; host->mmc = mmc; host->pdev = pdev; host->cookie = -1; - host->power_state = SDMMC_POWER_OFF; + host->prev_power_state = MMC_POWER_OFF; INIT_WORK(&host->work, sd_request); platform_set_drvdata(pdev, host); pcr->slots[RTSX_SD_CARD].p_dev = pdev; diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-esdhc-imx.c linux-azure-5.4.0/drivers/mmc/host/sdhci-esdhc-imx.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-esdhc-imx.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-esdhc-imx.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "sdhci-pltfm.h" #include "sdhci-esdhc.h" #include "cqhci.h" @@ -217,8 +218,7 @@ static struct esdhc_soc_data usdhc_imx8qxp_data = { .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 - | ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES - | ESDHC_FLAG_CQHCI, + | ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES, }; struct pltfm_imx_data { @@ -1022,6 +1022,7 @@ struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); struct pltfm_imx_data *imx_data = sdhci_pltfm_priv(pltfm_host); u32 ctrl; + int ret; /* Reset the tuning circuit */ if (esdhc_is_usdhc(imx_data)) { @@ -1034,7 +1035,22 @@ } else if (imx_data->socdata->flags & ESDHC_FLAG_STD_TUNING) { ctrl = readl(host->ioaddr + SDHCI_AUTO_CMD_STATUS); ctrl &= ~ESDHC_MIX_CTRL_SMPCLK_SEL; + ctrl &= ~ESDHC_MIX_CTRL_EXE_TUNE; writel(ctrl, host->ioaddr + SDHCI_AUTO_CMD_STATUS); + /* Make sure ESDHC_MIX_CTRL_EXE_TUNE cleared */ + ret = readl_poll_timeout(host->ioaddr + SDHCI_AUTO_CMD_STATUS, + ctrl, !(ctrl & ESDHC_MIX_CTRL_EXE_TUNE), 1, 50); + if (ret == -ETIMEDOUT) + dev_warn(mmc_dev(host->mmc), + "Warning! clear execute tuning bit failed\n"); + /* + * SDHCI_INT_DATA_AVAIL is W1C bit, set this bit will clear the + * usdhc IP internal logic flag execute_tuning_with_clr_buf, which + * will finally make sure the normal data transfer logic correct. + */ + ctrl = readl(host->ioaddr + SDHCI_INT_STATUS); + ctrl |= SDHCI_INT_DATA_AVAIL; + writel(ctrl, host->ioaddr + SDHCI_INT_STATUS); } } } diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-msm.c linux-azure-5.4.0/drivers/mmc/host/sdhci-msm.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-msm.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-msm.c @@ -1589,6 +1589,23 @@ __sdhci_msm_set_clock(host, clock); } +static void sdhci_msm_set_timeout(struct sdhci_host *host, struct mmc_command *cmd) +{ + u32 count, start = 15; + + __sdhci_set_timeout(host, cmd); + count = sdhci_readb(host, SDHCI_TIMEOUT_CONTROL); + /* + * Update software timeout value if its value is less than hardware data + * timeout value. Qcom SoC hardware data timeout value was calculated + * using 4 * MCLK * 2^(count + 13). where MCLK = 1 / host->clock. + */ + if (cmd && cmd->data && host->clock > 400000 && + host->clock <= 50000000 && + ((1 << (count + start)) > (10 * host->clock))) + host->data_timeout = 22LL * NSEC_PER_SEC; +} + /* * Platform specific register write functions. This is so that, if any * register write needs to be followed up by platform specific actions, @@ -1738,6 +1755,7 @@ static const struct of_device_id sdhci_msm_dt_match[] = { {.compatible = "qcom,sdhci-msm-v4", .data = &sdhci_msm_mci_var}, {.compatible = "qcom,sdhci-msm-v5", .data = &sdhci_msm_v5_var}, + {.compatible = "qcom,sdm670-sdhci", .data = &sdm845_sdhci_var}, {.compatible = "qcom,sdm845-sdhci", .data = &sdm845_sdhci_var}, {}, }; @@ -1753,6 +1771,7 @@ .set_uhs_signaling = sdhci_msm_set_uhs_signaling, .write_w = sdhci_msm_writew, .write_b = sdhci_msm_writeb, + .set_timeout = sdhci_msm_set_timeout, }; static const struct sdhci_pltfm_data sdhci_msm_pdata = { diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-of-at91.c linux-azure-5.4.0/drivers/mmc/host/sdhci-of-at91.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-of-at91.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-of-at91.c @@ -109,8 +109,13 @@ static void sdhci_at91_set_uhs_signaling(struct sdhci_host *host, unsigned int timing) { - if (timing == MMC_TIMING_MMC_DDR52) - sdhci_writeb(host, SDMMC_MC1R_DDR, SDMMC_MC1R); + u8 mc1r; + + if (timing == MMC_TIMING_MMC_DDR52) { + mc1r = sdhci_readb(host, SDMMC_MC1R); + mc1r |= SDMMC_MC1R_DDR; + sdhci_writeb(host, mc1r, SDMMC_MC1R); + } sdhci_set_uhs_signaling(host, timing); } diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-of-esdhc.c linux-azure-5.4.0/drivers/mmc/host/sdhci-of-esdhc.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-of-esdhc.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-of-esdhc.c @@ -519,12 +519,16 @@ static int esdhc_of_enable_dma(struct sdhci_host *host) { + int ret; u32 value; struct device *dev = mmc_dev(host->mmc); if (of_device_is_compatible(dev->of_node, "fsl,ls1043a-esdhc") || - of_device_is_compatible(dev->of_node, "fsl,ls1046a-esdhc")) - dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40)); + of_device_is_compatible(dev->of_node, "fsl,ls1046a-esdhc")) { + ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40)); + if (ret) + return ret; + } value = sdhci_readl(host, ESDHC_DMA_SYSCTL); @@ -840,6 +844,7 @@ scfg_node = of_find_matching_node(NULL, scfg_device_ids); if (scfg_node) scfg_base = of_iomap(scfg_node, 0); + of_node_put(scfg_node); if (scfg_base) { sdhciovselcr = SDHCIOVSELCR_TGLEN | SDHCIOVSELCR_VSELVAL; diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-omap.c linux-azure-5.4.0/drivers/mmc/host/sdhci-omap.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-omap.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-omap.c @@ -675,7 +675,8 @@ { struct mmc_host *mmc = host->mmc; - mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd); + if (!IS_ERR(mmc->supply.vmmc)) + mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd); } static int sdhci_omap_enable_dma(struct sdhci_host *host) diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-core.c linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-core.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-core.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-core.c @@ -1936,6 +1936,7 @@ SDHCI_PCI_DEVICE(INTEL, JSL_SD, intel_byt_sd), SDHCI_PCI_DEVICE(INTEL, LKF_EMMC, intel_glk_emmc), SDHCI_PCI_DEVICE(INTEL, LKF_SD, intel_byt_sd), + SDHCI_PCI_DEVICE(INTEL, ADL_EMMC, intel_glk_emmc), SDHCI_PCI_DEVICE(O2, 8120, o2), SDHCI_PCI_DEVICE(O2, 8220, o2), SDHCI_PCI_DEVICE(O2, 8221, o2), diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-o2micro.c linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-o2micro.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-o2micro.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-pci-o2micro.c @@ -145,6 +145,8 @@ if (!(sdhci_readw(host, O2_PLL_DLL_WDT_CONTROL1) & O2_PLL_LOCK_STATUS)) sdhci_o2_enable_internal_clock(host); + else + sdhci_o2_wait_card_detect_stable(host); return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT); } diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-pci.h linux-azure-5.4.0/drivers/mmc/host/sdhci-pci.h --- linux-azure-5.4.0/drivers/mmc/host/sdhci-pci.h +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-pci.h @@ -59,6 +59,7 @@ #define PCI_DEVICE_ID_INTEL_JSL_SD 0x4df8 #define PCI_DEVICE_ID_INTEL_LKF_EMMC 0x98c4 #define PCI_DEVICE_ID_INTEL_LKF_SD 0x98f8 +#define PCI_DEVICE_ID_INTEL_ADL_EMMC 0x54c4 #define PCI_DEVICE_ID_SYSKONNECT_8000 0x8000 #define PCI_DEVICE_ID_VIA_95D0 0x95d0 diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-sprd.c linux-azure-5.4.0/drivers/mmc/host/sdhci-sprd.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-sprd.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-sprd.c @@ -295,7 +295,7 @@ static unsigned int sdhci_sprd_get_min_clock(struct sdhci_host *host) { - return 400000; + return 100000; } static void sdhci_sprd_set_uhs_signaling(struct sdhci_host *host, @@ -382,6 +382,7 @@ static struct sdhci_ops sdhci_sprd_ops = { .read_l = sdhci_sprd_readl, .write_l = sdhci_sprd_writel, + .write_w = sdhci_sprd_writew, .write_b = sdhci_sprd_writeb, .set_clock = sdhci_sprd_set_clock, .get_max_clock = sdhci_sprd_get_max_clock, diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-tegra.c linux-azure-5.4.0/drivers/mmc/host/sdhci-tegra.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-tegra.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-tegra.c @@ -340,23 +340,6 @@ } } -static void tegra_sdhci_hs400_enhanced_strobe(struct mmc_host *mmc, - struct mmc_ios *ios) -{ - struct sdhci_host *host = mmc_priv(mmc); - u32 val; - - val = sdhci_readl(host, SDHCI_TEGRA_VENDOR_SYS_SW_CTRL); - - if (ios->enhanced_strobe) - val |= SDHCI_TEGRA_SYS_SW_CTRL_ENHANCED_STROBE; - else - val &= ~SDHCI_TEGRA_SYS_SW_CTRL_ENHANCED_STROBE; - - sdhci_writel(host, val, SDHCI_TEGRA_VENDOR_SYS_SW_CTRL); - -} - static void tegra_sdhci_reset(struct sdhci_host *host, u8 mask) { struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); @@ -768,6 +751,32 @@ } } +static void tegra_sdhci_hs400_enhanced_strobe(struct mmc_host *mmc, + struct mmc_ios *ios) +{ + struct sdhci_host *host = mmc_priv(mmc); + u32 val; + + val = sdhci_readl(host, SDHCI_TEGRA_VENDOR_SYS_SW_CTRL); + + if (ios->enhanced_strobe) { + val |= SDHCI_TEGRA_SYS_SW_CTRL_ENHANCED_STROBE; + /* + * When CMD13 is sent from mmc_select_hs400es() after + * switching to HS400ES mode, the bus is operating at + * either MMC_HIGH_26_MAX_DTR or MMC_HIGH_52_MAX_DTR. + * To meet Tegra SDHCI requirement at HS400ES mode, force SDHCI + * interface clock to MMC_HS200_MAX_DTR (200 MHz) so that host + * controller CAR clock and the interface clock are rate matched. + */ + tegra_sdhci_set_clock(host, MMC_HS200_MAX_DTR); + } else { + val &= ~SDHCI_TEGRA_SYS_SW_CTRL_ENHANCED_STROBE; + } + + sdhci_writel(host, val, SDHCI_TEGRA_VENDOR_SYS_SW_CTRL); +} + static unsigned int tegra_sdhci_get_max_clock(struct sdhci_host *host) { struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci-xenon.c linux-azure-5.4.0/drivers/mmc/host/sdhci-xenon.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci-xenon.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-xenon.c @@ -240,16 +240,6 @@ { /* Wait for 5ms after set 1.8V signal enable bit */ usleep_range(5000, 5500); - - /* - * For some reason the controller's Host Control2 register reports - * the bit representing 1.8V signaling as 0 when read after it was - * written as 1. Subsequent read reports 1. - * - * Since this may cause some issues, do an empty read of the Host - * Control2 register here to circumvent this. - */ - sdhci_readw(host, SDHCI_HOST_CONTROL2); } static const struct sdhci_ops sdhci_xenon_ops = { diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci.c linux-azure-5.4.0/drivers/mmc/host/sdhci.c --- linux-azure-5.4.0/drivers/mmc/host/sdhci.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci.c @@ -749,7 +749,19 @@ len -= offset; } - BUG_ON(len > 65536); + /* + * The block layer forces a minimum segment size of PAGE_SIZE, + * so 'len' can be too big here if PAGE_SIZE >= 64KiB. Write + * multiple descriptors, noting that the ADMA table is sized + * for 4KiB chunks anyway, so it will be big enough. + */ + while (len > host->max_adma) { + int n = 32 * 1024; /* 32KiB*/ + + __sdhci_adma_write_desc(host, &desc, addr, n, ADMA2_TRAN_VALID); + addr += n; + len -= n; + } /* tran, valid */ if (len) @@ -1511,6 +1523,10 @@ u16 preset = 0; switch (host->timing) { + case MMC_TIMING_MMC_HS: + case MMC_TIMING_SD_HS: + preset = sdhci_readw(host, SDHCI_PRESET_FOR_HIGH_SPEED); + break; case MMC_TIMING_UHS_SDR12: preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12); break; @@ -1737,6 +1753,12 @@ break; case MMC_VDD_32_33: case MMC_VDD_33_34: + /* + * 3.4 ~ 3.6V are valid only for those platforms where it's + * known that the voltage range is supported by hardware. + */ + case MMC_VDD_34_35: + case MMC_VDD_35_36: pwr = SDHCI_POWER_330; break; default: @@ -3558,6 +3580,7 @@ * descriptor for each segment, plus 1 for a nop end descriptor. */ host->adma_table_cnt = SDHCI_MAX_SEGS * 2 + 1; + host->max_adma = 65536; return host; } @@ -4211,10 +4234,12 @@ * be larger than 64 KiB though. */ if (host->flags & SDHCI_USE_ADMA) { - if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC) + if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC) { + host->max_adma = 65532; /* 32-bit alignment */ mmc->max_seg_size = 65535; - else + } else { mmc->max_seg_size = 65536; + } } else { mmc->max_seg_size = mmc->max_req_size; } diff -u linux-azure-5.4.0/drivers/mmc/host/sdhci.h linux-azure-5.4.0/drivers/mmc/host/sdhci.h --- linux-azure-5.4.0/drivers/mmc/host/sdhci.h +++ linux-azure-5.4.0/drivers/mmc/host/sdhci.h @@ -261,6 +261,7 @@ /* 60-FB reserved */ +#define SDHCI_PRESET_FOR_HIGH_SPEED 0x64 #define SDHCI_PRESET_FOR_SDR12 0x66 #define SDHCI_PRESET_FOR_SDR25 0x68 #define SDHCI_PRESET_FOR_SDR50 0x6A @@ -348,7 +349,8 @@ /* * Maximum segments assuming a 512KiB maximum requisition size and a minimum - * 4KiB page size. + * 4KiB page size. Note this also allows enough for multiple descriptors in + * case of PAGE_SIZE >= 64KiB. */ #define SDHCI_MAX_SEGS 128 @@ -546,6 +548,7 @@ unsigned int blocks; /* remaining PIO blocks */ int sg_count; /* Mapped sg entries */ + int max_adma; /* Max. length in ADMA descriptor */ void *adma_table; /* ADMA descriptor table */ void *align_buffer; /* Bounce buffer */ diff -u linux-azure-5.4.0/drivers/mmc/host/usdhi6rol0.c linux-azure-5.4.0/drivers/mmc/host/usdhi6rol0.c --- linux-azure-5.4.0/drivers/mmc/host/usdhi6rol0.c +++ linux-azure-5.4.0/drivers/mmc/host/usdhi6rol0.c @@ -1803,6 +1803,7 @@ version = usdhi6_read(host, USDHI6_VERSION); if ((version & 0xfff) != 0xa0d) { + ret = -EPERM; dev_err(dev, "Version not recognized %x\n", version); goto e_clk_off; } diff -u linux-azure-5.4.0/drivers/mmc/host/via-sdmmc.c linux-azure-5.4.0/drivers/mmc/host/via-sdmmc.c --- linux-azure-5.4.0/drivers/mmc/host/via-sdmmc.c +++ linux-azure-5.4.0/drivers/mmc/host/via-sdmmc.c @@ -857,6 +857,9 @@ { BUG_ON(intmask == 0); + if (!host->data) + return; + if (intmask & VIA_CRDR_SDSTS_DT) host->data->error = -ETIMEDOUT; else if (intmask & (VIA_CRDR_SDSTS_RC | VIA_CRDR_SDSTS_WC)) diff -u linux-azure-5.4.0/drivers/mtd/chips/cfi_cmdset_0002.c linux-azure-5.4.0/drivers/mtd/chips/cfi_cmdset_0002.c --- linux-azure-5.4.0/drivers/mtd/chips/cfi_cmdset_0002.c +++ linux-azure-5.4.0/drivers/mtd/chips/cfi_cmdset_0002.c @@ -59,6 +59,10 @@ #define CFI_SR_WBASB BIT(3) #define CFI_SR_SLSB BIT(1) +enum cfi_quirks { + CFI_QUIRK_DQ_TRUE_DATA = BIT(0), +}; + static int cfi_amdstd_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *); static int cfi_amdstd_write_words(struct mtd_info *, loff_t, size_t, size_t *, const u_char *); #if !FORCE_WORD_WRITE @@ -119,7 +123,7 @@ struct cfi_pri_amdstd *extp = cfi->cmdset_priv; u8 poll_mask = CFI_POLL_STATUS_REG | CFI_POLL_DQ; - return extp->MinorVersion >= '5' && + return extp && extp->MinorVersion >= '5' && (extp->SoftwareFeatures & poll_mask) == CFI_POLL_STATUS_REG; } @@ -432,6 +436,15 @@ mtd->name); } +static void fixup_quirks(struct mtd_info *mtd) +{ + struct map_info *map = mtd->priv; + struct cfi_private *cfi = map->fldrv_priv; + + if (cfi->mfr == CFI_MFR_AMD && cfi->id == 0x0c01) + cfi->quirks |= CFI_QUIRK_DQ_TRUE_DATA; +} + /* Used to fix CFI-Tables of chips without Extended Query Tables */ static struct cfi_fixup cfi_nopri_fixup_table[] = { { CFI_MFR_SST, 0x234a, fixup_sst39vf }, /* SST39VF1602 */ @@ -470,6 +483,7 @@ #if !FORCE_WORD_WRITE { CFI_MFR_ANY, CFI_ID_ANY, fixup_use_write_buffers }, #endif + { CFI_MFR_ANY, CFI_ID_ANY, fixup_quirks }, { 0, 0, NULL } }; static struct cfi_fixup jedec_fixup_table[] = { @@ -798,21 +812,25 @@ } /* - * Return true if the chip is ready. + * Return true if the chip is ready and has the correct value. * * Ready is one of: read mode, query mode, erase-suspend-read mode (in any * non-suspended sector) and is indicated by no toggle bits toggling. * + * Error are indicated by toggling bits or bits held with the wrong value, + * or with bits toggling. + * * Note that anything more complicated than checking if no bits are toggling * (including checking DQ5 for an error status) is tricky to get working * correctly and is therefore not done (particularly with interleaved chips * as each chip must be checked independently of the others). */ static int __xipram chip_ready(struct map_info *map, struct flchip *chip, - unsigned long addr) + unsigned long addr, map_word *expected) { struct cfi_private *cfi = map->fldrv_priv; map_word d, t; + int ret; if (cfi_use_status_reg(cfi)) { map_word ready = CMD(CFI_SR_DRB); @@ -822,57 +840,32 @@ */ cfi_send_gen_cmd(0x70, cfi->addr_unlock1, chip->start, map, cfi, cfi->device_type, NULL); - d = map_read(map, addr); + t = map_read(map, addr); - return map_word_andequal(map, d, ready, ready); + return map_word_andequal(map, t, ready, ready); } d = map_read(map, addr); t = map_read(map, addr); - return map_word_equal(map, d, t); + ret = map_word_equal(map, d, t); + + if (!ret || !expected) + return ret; + + return map_word_equal(map, t, *expected); } -/* - * Return true if the chip is ready and has the correct value. - * - * Ready is one of: read mode, query mode, erase-suspend-read mode (in any - * non-suspended sector) and it is indicated by no bits toggling. - * - * Error are indicated by toggling bits or bits held with the wrong value, - * or with bits toggling. - * - * Note that anything more complicated than checking if no bits are toggling - * (including checking DQ5 for an error status) is tricky to get working - * correctly and is therefore not done (particularly with interleaved chips - * as each chip must be checked independently of the others). - * - */ static int __xipram chip_good(struct map_info *map, struct flchip *chip, - unsigned long addr, map_word expected) + unsigned long addr, map_word *expected) { struct cfi_private *cfi = map->fldrv_priv; - map_word oldd, curd; - - if (cfi_use_status_reg(cfi)) { - map_word ready = CMD(CFI_SR_DRB); - - /* - * For chips that support status register, check device - * ready bit - */ - cfi_send_gen_cmd(0x70, cfi->addr_unlock1, chip->start, map, cfi, - cfi->device_type, NULL); - curd = map_read(map, addr); - - return map_word_andequal(map, curd, ready, ready); - } + map_word *datum = expected; - oldd = map_read(map, addr); - curd = map_read(map, addr); + if (cfi->quirks & CFI_QUIRK_DQ_TRUE_DATA) + datum = NULL; - return map_word_equal(map, oldd, curd) && - map_word_equal(map, curd, expected); + return chip_ready(map, chip, addr, datum); } static int get_chip(struct map_info *map, struct flchip *chip, unsigned long adr, int mode) @@ -889,7 +882,7 @@ case FL_STATUS: for (;;) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) break; if (time_after(jiffies, timeo)) { @@ -927,7 +920,7 @@ chip->state = FL_ERASE_SUSPENDING; chip->erase_suspended = 1; for (;;) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) break; if (time_after(jiffies, timeo)) { @@ -1459,7 +1452,7 @@ /* wait for chip to become ready */ timeo = jiffies + msecs_to_jiffies(2); for (;;) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) break; if (time_after(jiffies, timeo)) { @@ -1695,7 +1688,7 @@ * "chip_good" to avoid the failure due to scheduling. */ if (time_after(jiffies, timeo) && - !chip_good(map, chip, adr, datum)) { + !chip_good(map, chip, adr, &datum)) { xip_enable(map, chip, adr); printk(KERN_WARNING "MTD %s(): software timeout\n", __func__); xip_disable(map, chip, adr); @@ -1703,7 +1696,7 @@ break; } - if (chip_good(map, chip, adr, datum)) { + if (chip_good(map, chip, adr, &datum)) { if (cfi_check_err_status(map, chip, adr)) ret = -EIO; break; @@ -1975,14 +1968,14 @@ * "chip_good" to avoid the failure due to scheduling. */ if (time_after(jiffies, timeo) && - !chip_good(map, chip, adr, datum)) { + !chip_good(map, chip, adr, &datum)) { pr_err("MTD %s(): software timeout, address:0x%.8lx.\n", __func__, adr); ret = -EIO; break; } - if (chip_good(map, chip, adr, datum)) { + if (chip_good(map, chip, adr, &datum)) { if (cfi_check_err_status(map, chip, adr)) ret = -EIO; break; @@ -2191,7 +2184,7 @@ * If the driver thinks the chip is idle, and no toggle bits * are changing, then the chip is actually idle for sure. */ - if (chip->state == FL_READY && chip_ready(map, chip, adr)) + if (chip->state == FL_READY && chip_ready(map, chip, adr, NULL)) return 0; /* @@ -2208,7 +2201,7 @@ /* wait for the chip to become ready */ for (i = 0; i < jiffies_to_usecs(timeo); i++) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) return 0; udelay(1); @@ -2272,13 +2265,13 @@ map_write(map, datum, adr); for (i = 0; i < jiffies_to_usecs(uWriteTimeout); i++) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) break; udelay(1); } - if (!chip_good(map, chip, adr, datum) || + if (!chip_ready(map, chip, adr, &datum) || cfi_check_err_status(map, chip, adr)) { /* reset on all failures. */ map_write(map, CMD(0xF0), chip->start); @@ -2420,6 +2413,7 @@ DECLARE_WAITQUEUE(wait, current); int ret = 0; int retry_cnt = 0; + map_word datum = map_word_ff(map); adr = cfi->addr_unlock1; @@ -2474,7 +2468,7 @@ chip->erase_suspended = 0; } - if (chip_good(map, chip, adr, map_word_ff(map))) { + if (chip_ready(map, chip, adr, &datum)) { if (cfi_check_err_status(map, chip, adr)) ret = -EIO; break; @@ -2519,6 +2513,7 @@ DECLARE_WAITQUEUE(wait, current); int ret = 0; int retry_cnt = 0; + map_word datum = map_word_ff(map); adr += chip->start; @@ -2573,7 +2568,7 @@ chip->erase_suspended = 0; } - if (chip_good(map, chip, adr, map_word_ff(map))) { + if (chip_ready(map, chip, adr, &datum)) { if (cfi_check_err_status(map, chip, adr)) ret = -EIO; break; @@ -2767,7 +2762,7 @@ */ timeo = jiffies + msecs_to_jiffies(2000); /* 2s max (un)locking */ for (;;) { - if (chip_ready(map, chip, adr)) + if (chip_ready(map, chip, adr, NULL)) break; if (time_after(jiffies, timeo)) { diff -u linux-azure-5.4.0/drivers/mtd/mtdcore.c linux-azure-5.4.0/drivers/mtd/mtdcore.c --- linux-azure-5.4.0/drivers/mtd/mtdcore.c +++ linux-azure-5.4.0/drivers/mtd/mtdcore.c @@ -727,8 +727,6 @@ mutex_lock(&mtd_table_mutex); - debugfs_remove_recursive(mtd->dbg.dfs_dir); - if (idr_find(&mtd_idr, mtd->index) != mtd) { ret = -ENODEV; goto out_error; @@ -744,6 +742,8 @@ mtd->index, mtd->name, mtd->usecount); ret = -EBUSY; } else { + debugfs_remove_recursive(mtd->dbg.dfs_dir); + /* Try to remove the NVMEM provider */ if (mtd->nvmem) nvmem_unregister(mtd->nvmem); diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/atmel/nand-controller.c linux-azure-5.4.0/drivers/mtd/nand/raw/atmel/nand-controller.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/atmel/nand-controller.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/atmel/nand-controller.c @@ -402,6 +402,7 @@ dma_async_issue_pending(nc->dmac); wait_for_completion(&finished); + dma_unmap_single(nc->dev, buf_dma, len, dir); return 0; @@ -2004,13 +2005,15 @@ nc->mck = of_clk_get(dev->parent->of_node, 0); if (IS_ERR(nc->mck)) { dev_err(dev, "Failed to retrieve MCK clk\n"); - return PTR_ERR(nc->mck); + ret = PTR_ERR(nc->mck); + goto out_release_dma; } np = of_parse_phandle(dev->parent->of_node, "atmel,smc", 0); if (!np) { dev_err(dev, "Missing or invalid atmel,smc property\n"); - return -EINVAL; + ret = -EINVAL; + goto out_release_dma; } nc->smc = syscon_node_to_regmap(np); @@ -2018,10 +2021,16 @@ if (IS_ERR(nc->smc)) { ret = PTR_ERR(nc->smc); dev_err(dev, "Could not get SMC regmap (err = %d)\n", ret); - return ret; + goto out_release_dma; } return 0; + +out_release_dma: + if (nc->dmac) + dma_release_channel(nc->dmac); + + return ret; } static int diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c linux-azure-5.4.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c @@ -1756,7 +1756,7 @@ mtd->oobsize / trans, host->hwcfg.sector_size_1k); - if (!ret) { + if (ret != -EBADMSG) { *err_addr = brcmnand_get_uncorrecc_addr(ctrl); if (*err_addr) diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/fsmc_nand.c linux-azure-5.4.0/drivers/mtd/nand/raw/fsmc_nand.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/fsmc_nand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/fsmc_nand.c @@ -15,6 +15,7 @@ #include #include +#include #include #include #include @@ -93,6 +94,14 @@ #define FSMC_BUSY_WAIT_TIMEOUT (1 * HZ) +/* + * According to SPEAr300 Reference Manual (RM0082) + * TOUDEL = 7ns (Output delay from the flip-flops to the board) + * TINDEL = 5ns (Input delay from the board to the flipflop) + */ +#define TOUTDEL 7000 +#define TINDEL 5000 + struct fsmc_nand_timings { u8 tclr; u8 tar; @@ -277,7 +286,7 @@ { unsigned long hclk = clk_get_rate(host->clk); unsigned long hclkn = NSEC_PER_SEC / hclk; - u32 thiz, thold, twait, tset; + u32 thiz, thold, twait, tset, twait_min; if (sdrt->tRC_min < 30000) return -EOPNOTSUPP; @@ -309,13 +318,6 @@ else if (tims->thold > FSMC_THOLD_MASK) tims->thold = FSMC_THOLD_MASK; - twait = max(sdrt->tRP_min, sdrt->tWP_min); - tims->twait = DIV_ROUND_UP(twait / 1000, hclkn) - 1; - if (tims->twait == 0) - tims->twait = 1; - else if (tims->twait > FSMC_TWAIT_MASK) - tims->twait = FSMC_TWAIT_MASK; - tset = max(sdrt->tCS_min - sdrt->tWP_min, sdrt->tCEA_max - sdrt->tREA_max); tims->tset = DIV_ROUND_UP(tset / 1000, hclkn) - 1; @@ -324,6 +326,21 @@ else if (tims->tset > FSMC_TSET_MASK) tims->tset = FSMC_TSET_MASK; + /* + * According to SPEAr300 Reference Manual (RM0082) which gives more + * information related to FSMSC timings than the SPEAr600 one (RM0305), + * twait >= tCEA - (tset * TCLK) + TOUTDEL + TINDEL + */ + twait_min = sdrt->tCEA_max - ((tims->tset + 1) * hclkn * 1000) + + TOUTDEL + TINDEL; + twait = max3(sdrt->tRP_min, sdrt->tWP_min, twait_min); + + tims->twait = DIV_ROUND_UP(twait / 1000, hclkn) - 1; + if (tims->twait == 0) + tims->twait = 1; + else if (tims->twait > FSMC_TWAIT_MASK) + tims->twait = FSMC_TWAIT_MASK; + return 0; } @@ -650,6 +667,9 @@ instr->ctx.waitrdy.timeout_ms); break; } + + if (instr->delay_ns) + ndelay(instr->delay_ns); } return ret; diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c linux-azure-5.4.0/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c @@ -645,14 +645,16 @@ const struct nand_sdr_timings *sdr) { struct gpmi_nfc_hardware_timing *hw = &this->hw; + struct resources *r = &this->resources; unsigned int dll_threshold_ps = this->devdata->max_chain_delay; unsigned int period_ps, reference_period_ps; unsigned int data_setup_cycles, data_hold_cycles, addr_setup_cycles; unsigned int tRP_ps; bool use_half_period; int sample_delay_ps, sample_delay_factor; - u16 busy_timeout_cycles; + unsigned int busy_timeout_cycles; u8 wrn_dly_sel; + u64 busy_timeout_ps; if (sdr->tRC_min >= 30000) { /* ONFI non-EDO modes [0-3] */ @@ -668,13 +670,16 @@ wrn_dly_sel = BV_GPMI_CTRL1_WRN_DLY_SEL_NO_DELAY; } + hw->clk_rate = clk_round_rate(r->clock[0], hw->clk_rate); + /* SDR core timings are given in picoseconds */ period_ps = div_u64((u64)NSEC_PER_SEC * 1000, hw->clk_rate); addr_setup_cycles = TO_CYCLES(sdr->tALS_min, period_ps); data_setup_cycles = TO_CYCLES(sdr->tDS_min, period_ps); data_hold_cycles = TO_CYCLES(sdr->tDH_min, period_ps); - busy_timeout_cycles = TO_CYCLES(sdr->tWB_max + sdr->tR_max, period_ps); + busy_timeout_ps = max(sdr->tBERS_max, sdr->tPROG_max); + busy_timeout_cycles = TO_CYCLES(busy_timeout_ps, period_ps); hw->timing0 = BF_GPMI_TIMING0_ADDRESS_SETUP(addr_setup_cycles) | BF_GPMI_TIMING0_DATA_HOLD(data_hold_cycles) | @@ -710,14 +715,32 @@ (use_half_period ? BM_GPMI_CTRL1_HALF_PERIOD : 0); } -static void gpmi_nfc_apply_timings(struct gpmi_nand_data *this) +static int gpmi_nfc_apply_timings(struct gpmi_nand_data *this) { struct gpmi_nfc_hardware_timing *hw = &this->hw; struct resources *r = &this->resources; void __iomem *gpmi_regs = r->gpmi_regs; unsigned int dll_wait_time_us; + int ret; + + /* Clock dividers do NOT guarantee a clean clock signal on its output + * during the change of the divide factor on i.MX6Q/UL/SX. On i.MX7/8, + * all clock dividers provide these guarantee. + */ + if (GPMI_IS_MX6Q(this) || GPMI_IS_MX6SX(this)) + clk_disable_unprepare(r->clock[0]); - clk_set_rate(r->clock[0], hw->clk_rate); + ret = clk_set_rate(r->clock[0], hw->clk_rate); + if (ret) { + dev_err(this->dev, "cannot set clock rate to %lu Hz: %d\n", hw->clk_rate, ret); + return ret; + } + + if (GPMI_IS_MX6Q(this) || GPMI_IS_MX6SX(this)) { + ret = clk_prepare_enable(r->clock[0]); + if (ret) + return ret; + } writel(hw->timing0, gpmi_regs + HW_GPMI_TIMING0); writel(hw->timing1, gpmi_regs + HW_GPMI_TIMING1); @@ -736,6 +759,8 @@ /* Wait for the DLL to settle. */ udelay(dll_wait_time_us); + + return 0; } static int gpmi_setup_data_interface(struct nand_chip *chip, int chipnr, @@ -1184,15 +1209,6 @@ r->clock[i] = clk; } - if (GPMI_IS_MX6(this)) - /* - * Set the default value for the gpmi clock. - * - * If you want to use the ONFI nand which is in the - * Synchronous Mode, you should change the clock as you need. - */ - clk_set_rate(r->clock[0], 22000000); - return 0; err_clock: @@ -2429,7 +2445,9 @@ */ if (this->hw.must_apply_timings) { this->hw.must_apply_timings = false; - gpmi_nfc_apply_timings(this); + ret = gpmi_nfc_apply_timings(this); + if (ret) + goto out_pm; } dev_dbg(this->dev, "%s: %d instructions\n", __func__, op->ninstrs); @@ -2558,6 +2576,7 @@ this->bch = false; +out_pm: pm_runtime_mark_last_busy(this->dev); pm_runtime_put_autosuspend(this->dev); diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/marvell_nand.c linux-azure-5.4.0/drivers/mtd/nand/raw/marvell_nand.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/marvell_nand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/marvell_nand.c @@ -2630,7 +2630,7 @@ chip->controller = &nfc->controller; nand_set_flash_node(chip, np); - if (!of_property_read_bool(np, "marvell,nand-keep-config")) + if (of_property_read_bool(np, "marvell,nand-keep-config")) chip->options |= NAND_KEEP_TIMINGS; mtd = nand_to_mtd(chip); @@ -2980,8 +2980,10 @@ return ret; ret = clk_prepare_enable(nfc->reg_clk); - if (ret < 0) + if (ret < 0) { + clk_disable_unprepare(nfc->core_clk); return ret; + } /* * Reset nfc->selected_chip so the next command will cause the timing diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/meson_nand.c linux-azure-5.4.0/drivers/mtd/nand/raw/meson_nand.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/meson_nand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/meson_nand.c @@ -454,7 +454,7 @@ if (ECC_ERR_CNT(*info) != ECC_UNCORRECTABLE) { mtd->ecc_stats.corrected += ECC_ERR_CNT(*info); *bitflips = max_t(u32, *bitflips, ECC_ERR_CNT(*info)); - *correct_bitmap |= 1 >> i; + *correct_bitmap |= BIT_ULL(i); continue; } if ((nand->options & NAND_NEED_SCRAMBLING) && @@ -800,7 +800,7 @@ u8 *data = buf + i * ecc->size; u8 *oob = nand->oob_poi + i * (ecc->bytes + 2); - if (correct_bitmap & (1 << i)) + if (correct_bitmap & BIT_ULL(i)) continue; ret = nand_check_erased_ecc_chunk(data, ecc->size, oob, ecc->bytes + 2, @@ -1304,7 +1304,6 @@ if (ret) return ret; - meson_nfc_free_buffer(&meson_chip->nand); nand_cleanup(&meson_chip->nand); list_del(&meson_chip->node); } diff -u linux-azure-5.4.0/drivers/mtd/nand/raw/qcom_nandc.c linux-azure-5.4.0/drivers/mtd/nand/raw/qcom_nandc.c --- linux-azure-5.4.0/drivers/mtd/nand/raw/qcom_nandc.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/qcom_nandc.c @@ -2,7 +2,6 @@ /* * Copyright (c) 2016, The Linux Foundation. All rights reserved. */ - #include #include #include @@ -2944,10 +2943,6 @@ if (!nandc->base_dma) return -ENXIO; - ret = qcom_nandc_alloc(nandc); - if (ret) - goto err_nandc_alloc; - ret = clk_prepare_enable(nandc->core_clk); if (ret) goto err_core_clk; @@ -2956,6 +2951,10 @@ if (ret) goto err_aon_clk; + ret = qcom_nandc_alloc(nandc); + if (ret) + goto err_nandc_alloc; + ret = qcom_nandc_setup(nandc); if (ret) goto err_setup; @@ -2967,15 +2966,14 @@ return 0; err_setup: + qcom_nandc_unalloc(nandc); +err_nandc_alloc: clk_disable_unprepare(nandc->aon_clk); err_aon_clk: clk_disable_unprepare(nandc->core_clk); err_core_clk: - qcom_nandc_unalloc(nandc); -err_nandc_alloc: dma_unmap_resource(dev, res->start, resource_size(res), DMA_BIDIRECTIONAL, 0); - return ret; } diff -u linux-azure-5.4.0/drivers/mtd/spi-nor/hisi-sfc.c linux-azure-5.4.0/drivers/mtd/spi-nor/hisi-sfc.c --- linux-azure-5.4.0/drivers/mtd/spi-nor/hisi-sfc.c +++ linux-azure-5.4.0/drivers/mtd/spi-nor/hisi-sfc.c @@ -474,7 +474,6 @@ hisi_spi_nor_unregister_all(host); mutex_destroy(&host->lock); - clk_disable_unprepare(host->clk); return 0; } diff -u linux-azure-5.4.0/drivers/mtd/ubi/fastmap.c linux-azure-5.4.0/drivers/mtd/ubi/fastmap.c --- linux-azure-5.4.0/drivers/mtd/ubi/fastmap.c +++ linux-azure-5.4.0/drivers/mtd/ubi/fastmap.c @@ -468,7 +468,9 @@ if (err == UBI_IO_FF_BITFLIPS) scrub = 1; - add_aeb(ai, free, pnum, ec, scrub); + ret = add_aeb(ai, free, pnum, ec, scrub); + if (ret) + goto out; continue; } else if (err == 0 || err == UBI_IO_BITFLIPS) { dbg_bld("Found non empty PEB:%i in pool", pnum); @@ -638,8 +640,10 @@ if (fm_pos >= fm_size) goto fail_bad; - add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum), - be32_to_cpu(fmec->ec), 0); + ret = add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum), + be32_to_cpu(fmec->ec), 0); + if (ret) + goto fail; } /* read EC values from used list */ @@ -649,8 +653,10 @@ if (fm_pos >= fm_size) goto fail_bad; - add_aeb(ai, &used, be32_to_cpu(fmec->pnum), - be32_to_cpu(fmec->ec), 0); + ret = add_aeb(ai, &used, be32_to_cpu(fmec->pnum), + be32_to_cpu(fmec->ec), 0); + if (ret) + goto fail; } /* read EC values from scrub list */ @@ -660,8 +666,10 @@ if (fm_pos >= fm_size) goto fail_bad; - add_aeb(ai, &used, be32_to_cpu(fmec->pnum), - be32_to_cpu(fmec->ec), 1); + ret = add_aeb(ai, &used, be32_to_cpu(fmec->pnum), + be32_to_cpu(fmec->ec), 1); + if (ret) + goto fail; } /* read EC values from erase list */ @@ -671,8 +679,10 @@ if (fm_pos >= fm_size) goto fail_bad; - add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum), - be32_to_cpu(fmec->ec), 1); + ret = add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum), + be32_to_cpu(fmec->ec), 1); + if (ret) + goto fail; } ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count); diff -u linux-azure-5.4.0/drivers/net/bonding/bond_alb.c linux-azure-5.4.0/drivers/net/bonding/bond_alb.c --- linux-azure-5.4.0/drivers/net/bonding/bond_alb.c +++ linux-azure-5.4.0/drivers/net/bonding/bond_alb.c @@ -1276,12 +1276,12 @@ return res; if (rlb_enabled) { - bond->alb_info.rlb_enabled = 1; res = rlb_initialize(bond); if (res) { tlb_deinitialize(bond); return res; } + bond->alb_info.rlb_enabled = 1; } else { bond->alb_info.rlb_enabled = 0; } @@ -1514,14 +1514,14 @@ struct slave *slave; if (!bond_has_slaves(bond)) { - bond_info->tx_rebalance_counter = 0; + atomic_set(&bond_info->tx_rebalance_counter, 0); bond_info->lp_counter = 0; goto re_arm; } rcu_read_lock(); - bond_info->tx_rebalance_counter++; + atomic_inc(&bond_info->tx_rebalance_counter); bond_info->lp_counter++; /* send learning packets */ @@ -1543,7 +1543,7 @@ } /* rebalance tx traffic */ - if (bond_info->tx_rebalance_counter >= BOND_TLB_REBALANCE_TICKS) { + if (atomic_read(&bond_info->tx_rebalance_counter) >= BOND_TLB_REBALANCE_TICKS) { bond_for_each_slave_rcu(bond, slave, iter) { tlb_clear_slave(bond, slave, 1); if (slave == rcu_access_pointer(bond->curr_active_slave)) { @@ -1553,7 +1553,7 @@ bond_info->unbalanced_load = 0; } } - bond_info->tx_rebalance_counter = 0; + atomic_set(&bond_info->tx_rebalance_counter, 0); } if (bond_info->rlb_enabled) { @@ -1623,7 +1623,8 @@ tlb_init_slave(slave); /* order a rebalance ASAP */ - bond->alb_info.tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS; + atomic_set(&bond->alb_info.tx_rebalance_counter, + BOND_TLB_REBALANCE_TICKS); if (bond->alb_info.rlb_enabled) bond->alb_info.rlb_rebalance = 1; @@ -1660,7 +1661,8 @@ rlb_clear_slave(bond, slave); } else if (link == BOND_LINK_UP) { /* order a rebalance ASAP */ - bond_info->tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS; + atomic_set(&bond_info->tx_rebalance_counter, + BOND_TLB_REBALANCE_TICKS); if (bond->alb_info.rlb_enabled) { bond->alb_info.rlb_rebalance = 1; /* If the updelay module parameter is smaller than the diff -u linux-azure-5.4.0/drivers/net/bonding/bond_main.c linux-azure-5.4.0/drivers/net/bonding/bond_main.c --- linux-azure-5.4.0/drivers/net/bonding/bond_main.c +++ linux-azure-5.4.0/drivers/net/bonding/bond_main.c @@ -792,9 +792,6 @@ slave = rcu_dereference(bond->curr_active_slave); rcu_read_unlock(); - netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n", - slave ? slave->dev->name : "NULL"); - if (!slave || !bond->send_peer_notif || bond->send_peer_notif % max(1, bond->params.peer_notif_delay) != 0 || @@ -802,6 +799,9 @@ test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state)) return false; + netdev_dbg(bond->dev, "bond_should_notify_peers: slave %s\n", + slave ? slave->dev->name : "NULL"); + return true; } @@ -1219,7 +1219,7 @@ skb->dev = bond->dev; if (BOND_MODE(bond) == BOND_MODE_ALB && - bond->dev->priv_flags & IFF_BRIDGE_PORT && + netif_is_bridge_port(bond->dev) && skb->pkt_type == PACKET_HOST) { if (unlikely(skb_cow_head(skb, @@ -1335,6 +1335,7 @@ slave->bond = bond; slave->dev = slave_dev; + INIT_DELAYED_WORK(&slave->notify_work, bond_netdev_notify_work); if (bond_kobj_init(slave)) return NULL; @@ -1347,7 +1348,6 @@ return NULL; } } - INIT_DELAYED_WORK(&slave->notify_work, bond_netdev_notify_work); return slave; } @@ -1926,7 +1926,6 @@ /* recompute stats just before removing the slave */ bond_get_stats(bond->dev, &bond->bond_stats); - bond_upper_dev_unlink(bond, slave); /* unregister rx_handler early so bond_handle_frame wouldn't be called * for this slave anymore. */ @@ -1935,6 +1934,8 @@ if (BOND_MODE(bond) == BOND_MODE_8023AD) bond_3ad_unbind_slave(slave); + bond_upper_dev_unlink(bond, slave); + if (bond_mode_can_use_xmit_hash(bond)) bond_update_slave_arr(bond, slave); @@ -1978,10 +1979,9 @@ bond_select_active_slave(bond); } - if (!bond_has_slaves(bond)) { - bond_set_carrier(bond); + bond_set_carrier(bond); + if (!bond_has_slaves(bond)) eth_hw_addr_random(bond_dev); - } unblock_netpoll_tx(); synchronize_rcu(); @@ -3071,9 +3071,11 @@ if (!rtnl_trylock()) return; - if (should_notify_peers) + if (should_notify_peers) { + bond->send_peer_notif--; call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, bond->dev); + } if (should_notify_rtnl) { bond_slave_state_notify(bond); bond_slave_link_notify(bond); diff -u linux-azure-5.4.0/drivers/net/bonding/bond_options.c linux-azure-5.4.0/drivers/net/bonding/bond_options.c --- linux-azure-5.4.0/drivers/net/bonding/bond_options.c +++ linux-azure-5.4.0/drivers/net/bonding/bond_options.c @@ -1452,7 +1452,7 @@ mac = (u8 *)&newval->value; } - if (!is_valid_ether_addr(mac)) + if (is_multicast_ether_addr(mac)) goto err; netdev_dbg(bond->dev, "Setting ad_actor_system to %pM\n", mac); diff -u linux-azure-5.4.0/drivers/net/bonding/bond_sysfs_slave.c linux-azure-5.4.0/drivers/net/bonding/bond_sysfs_slave.c --- linux-azure-5.4.0/drivers/net/bonding/bond_sysfs_slave.c +++ linux-azure-5.4.0/drivers/net/bonding/bond_sysfs_slave.c @@ -108,15 +108,15 @@ } static SLAVE_ATTR_RO(ad_partner_oper_port_state); -static const struct slave_attribute *slave_attrs[] = { - &slave_attr_state, - &slave_attr_mii_status, - &slave_attr_link_failure_count, - &slave_attr_perm_hwaddr, - &slave_attr_queue_id, - &slave_attr_ad_aggregator_id, - &slave_attr_ad_actor_oper_port_state, - &slave_attr_ad_partner_oper_port_state, +static const struct attribute *slave_attrs[] = { + &slave_attr_state.attr, + &slave_attr_mii_status.attr, + &slave_attr_link_failure_count.attr, + &slave_attr_perm_hwaddr.attr, + &slave_attr_queue_id.attr, + &slave_attr_ad_aggregator_id.attr, + &slave_attr_ad_actor_oper_port_state.attr, + &slave_attr_ad_partner_oper_port_state.attr, NULL }; @@ -139,22 +139,8 @@ { - const struct slave_attribute **a; - int err; - - for (a = slave_attrs; *a; ++a) { - err = sysfs_create_file(&slave->kobj, &((*a)->attr)); - if (err) { - kobject_put(&slave->kobj); - return err; - } - } - - return 0; + return sysfs_create_files(&slave->kobj, slave_attrs); } void bond_sysfs_slave_del(struct slave *slave) { - const struct slave_attribute **a; - - for (a = slave_attrs; *a; ++a) - sysfs_remove_file(&slave->kobj, &((*a)->attr)); + sysfs_remove_files(&slave->kobj, slave_attrs); } diff -u linux-azure-5.4.0/drivers/net/caif/caif_serial.c linux-azure-5.4.0/drivers/net/caif/caif_serial.c --- linux-azure-5.4.0/drivers/net/caif/caif_serial.c +++ linux-azure-5.4.0/drivers/net/caif/caif_serial.c @@ -351,6 +351,7 @@ rtnl_lock(); result = register_netdevice(dev); if (result) { + tty_kref_put(tty); rtnl_unlock(); free_netdev(dev); return -ENODEV; diff -u linux-azure-5.4.0/drivers/net/can/kvaser_pciefd.c linux-azure-5.4.0/drivers/net/can/kvaser_pciefd.c --- linux-azure-5.4.0/drivers/net/can/kvaser_pciefd.c +++ linux-azure-5.4.0/drivers/net/can/kvaser_pciefd.c @@ -248,6 +248,9 @@ #define KVASER_PCIEFD_SPACK_EWLR BIT(23) #define KVASER_PCIEFD_SPACK_EPLR BIT(24) +/* Kvaser KCAN_EPACK second word */ +#define KVASER_PCIEFD_EPACK_DIR_TX BIT(0) + struct kvaser_pciefd; struct kvaser_pciefd_can { @@ -1283,7 +1286,10 @@ can->err_rep_cnt++; can->can.can_stats.bus_error++; - stats->rx_errors++; + if (p->header[1] & KVASER_PCIEFD_EPACK_DIR_TX) + stats->tx_errors++; + else + stats->rx_errors++; can->bec.txerr = bec.txerr; can->bec.rxerr = bec.rxerr; diff -u linux-azure-5.4.0/drivers/net/can/m_can/m_can.c linux-azure-5.4.0/drivers/net/can/m_can/m_can.c --- linux-azure-5.4.0/drivers/net/can/m_can/m_can.c +++ linux-azure-5.4.0/drivers/net/can/m_can/m_can.c @@ -206,15 +206,15 @@ /* Interrupts for version 3.0.x */ #define IR_ERR_LEC_30X (IR_STE | IR_FOE | IR_ACKE | IR_BE | IR_CRCE) -#define IR_ERR_BUS_30X (IR_ERR_LEC_30X | IR_WDI | IR_ELO | IR_BEU | \ - IR_BEC | IR_TOO | IR_MRAF | IR_TSW | IR_TEFL | \ - IR_RF1L | IR_RF0L) +#define IR_ERR_BUS_30X (IR_ERR_LEC_30X | IR_WDI | IR_BEU | IR_BEC | \ + IR_TOO | IR_MRAF | IR_TSW | IR_TEFL | IR_RF1L | \ + IR_RF0L) #define IR_ERR_ALL_30X (IR_ERR_STATE | IR_ERR_BUS_30X) /* Interrupts for version >= 3.1.x */ #define IR_ERR_LEC_31X (IR_PED | IR_PEA) -#define IR_ERR_BUS_31X (IR_ERR_LEC_31X | IR_WDI | IR_ELO | IR_BEU | \ - IR_BEC | IR_TOO | IR_MRAF | IR_TSW | IR_TEFL | \ - IR_RF1L | IR_RF0L) +#define IR_ERR_BUS_31X (IR_ERR_LEC_31X | IR_WDI | IR_BEU | IR_BEC | \ + IR_TOO | IR_MRAF | IR_TSW | IR_TEFL | IR_RF1L | \ + IR_RF0L) #define IR_ERR_ALL_31X (IR_ERR_STATE | IR_ERR_BUS_31X) /* Interrupt Line Select (ILS) */ @@ -751,8 +751,6 @@ { if (irqstatus & IR_WDI) netdev_err(dev, "Message RAM Watchdog event due to missing READY\n"); - if (irqstatus & IR_ELO) - netdev_err(dev, "Error Logging Overflow\n"); if (irqstatus & IR_BEU) netdev_err(dev, "Bit Error Uncorrected\n"); if (irqstatus & IR_BEC) @@ -1445,8 +1443,6 @@ M_CAN_FIFO_DATA(i / 4), *(u32 *)(cf->data + i)); - can_put_echo_skb(skb, dev, 0); - if (cdev->can.ctrlmode & CAN_CTRLMODE_FD) { cccr = m_can_read(cdev, M_CAN_CCCR); cccr &= ~(CCCR_CMR_MASK << CCCR_CMR_SHIFT); @@ -1463,6 +1459,9 @@ m_can_write(cdev, M_CAN_CCCR, cccr); } m_can_write(cdev, M_CAN_TXBTIE, 0x1); + + can_put_echo_skb(skb, dev, 0); + m_can_write(cdev, M_CAN_TXBAR, 0x1); /* End of xmit function for version 3.0.x */ } else { diff -u linux-azure-5.4.0/drivers/net/can/peak_canfd/peak_canfd.c linux-azure-5.4.0/drivers/net/can/peak_canfd/peak_canfd.c --- linux-azure-5.4.0/drivers/net/can/peak_canfd/peak_canfd.c +++ linux-azure-5.4.0/drivers/net/can/peak_canfd/peak_canfd.c @@ -352,8 +352,8 @@ return err; } - /* start network queue (echo_skb array is empty) */ - netif_start_queue(ndev); + /* wake network queue up (echo_skb array is empty) */ + netif_wake_queue(ndev); return 0; } diff -u linux-azure-5.4.0/drivers/net/can/usb/gs_usb.c linux-azure-5.4.0/drivers/net/can/usb/gs_usb.c --- linux-azure-5.4.0/drivers/net/can/usb/gs_usb.c +++ linux-azure-5.4.0/drivers/net/can/usb/gs_usb.c @@ -184,14 +184,16 @@ struct usb_anchor tx_submitted; atomic_t active_tx_urbs; + void *rxbuf[GS_MAX_RX_URBS]; + dma_addr_t rxbuf_dma[GS_MAX_RX_URBS]; }; /* usb interface struct */ struct gs_usb { struct gs_can *canch[GS_MAX_INTF]; struct usb_anchor rx_submitted; - atomic_t active_channels; struct usb_device *udev; + u8 active_channels; }; /* 'allocate' a tx context. @@ -320,7 +322,7 @@ /* device reports out of range channel id */ if (hf->channel >= GS_MAX_INTF) - goto resubmit_urb; + goto device_detach; dev = usbcan->canch[hf->channel]; @@ -405,6 +407,7 @@ /* USB failure take down all interfaces */ if (rc == -ENODEV) { + device_detach: for (rc = 0; rc < GS_MAX_INTF; rc++) { if (usbcan->canch[rc]) netif_device_detach(usbcan->canch[rc]->netdev); @@ -506,6 +509,8 @@ hf->echo_id = idx; hf->channel = dev->channel; + hf->flags = 0; + hf->reserved = 0; cf = (struct can_frame *)skb->data; @@ -585,10 +590,11 @@ if (rc) return rc; - if (atomic_add_return(1, &parent->active_channels) == 1) { + if (!parent->active_channels) { for (i = 0; i < GS_MAX_RX_URBS; i++) { struct urb *urb; u8 *buf; + dma_addr_t buf_dma; /* alloc rx urb */ urb = usb_alloc_urb(0, GFP_KERNEL); @@ -599,7 +605,7 @@ buf = usb_alloc_coherent(dev->udev, sizeof(struct gs_host_frame), GFP_KERNEL, - &urb->transfer_dma); + &buf_dma); if (!buf) { netdev_err(netdev, "No memory left for USB buffer\n"); @@ -607,6 +613,8 @@ return -ENOMEM; } + urb->transfer_dma = buf_dma; + /* fill, anchor, and submit rx urb */ usb_fill_bulk_urb(urb, dev->udev, @@ -630,10 +638,17 @@ rc); usb_unanchor_urb(urb); + usb_free_coherent(dev->udev, + sizeof(struct gs_host_frame), + buf, + buf_dma); usb_free_urb(urb); break; } + dev->rxbuf[i] = buf; + dev->rxbuf_dma[i] = buf_dma; + /* Drop reference, * USB core will take care of freeing it */ @@ -663,6 +678,7 @@ flags |= GS_CAN_MODE_TRIPLE_SAMPLE; /* finally start device */ + dev->can.state = CAN_STATE_ERROR_ACTIVE; dm->mode = cpu_to_le32(GS_CAN_MODE_START); dm->flags = cpu_to_le32(flags); rc = usb_control_msg(interface_to_usbdev(dev->iface), @@ -679,13 +695,13 @@ if (rc < 0) { netdev_err(netdev, "Couldn't start device (err=%d)\n", rc); kfree(dm); + dev->can.state = CAN_STATE_STOPPED; return rc; } kfree(dm); - dev->can.state = CAN_STATE_ERROR_ACTIVE; - + parent->active_channels++; if (!(dev->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)) netif_start_queue(netdev); @@ -697,12 +713,20 @@ int rc; struct gs_can *dev = netdev_priv(netdev); struct gs_usb *parent = dev->parent; + unsigned int i; netif_stop_queue(netdev); /* Stop polling */ - if (atomic_dec_and_test(&parent->active_channels)) + parent->active_channels--; + if (!parent->active_channels) { usb_kill_anchored_urbs(&parent->rx_submitted); + for (i = 0; i < GS_MAX_RX_URBS; i++) + usb_free_coherent(dev->udev, + sizeof(struct gs_host_frame), + dev->rxbuf[i], + dev->rxbuf_dma[i]); + } /* Stop sending URBs */ usb_kill_anchored_urbs(&dev->tx_submitted); @@ -980,8 +1004,6 @@ init_usb_anchor(&dev->rx_submitted); - atomic_set(&dev->active_channels, 0); - usb_set_intfdata(intf, dev); dev->udev = interface_to_usbdev(intf); diff -u linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c --- linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c +++ linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c @@ -371,7 +371,7 @@ .brp_inc = 1, }; -static const struct can_bittiming_const kvaser_usb_hydra_flexc_bittiming_c = { +const struct can_bittiming_const kvaser_usb_flexc_bittiming_const = { .name = "kvaser_usb_flex", .tseg1_min = 4, .tseg1_max = 16, @@ -890,8 +890,10 @@ new_state < CAN_STATE_BUS_OFF) priv->can.can_stats.restarts++; - cf->data[6] = bec->txerr; - cf->data[7] = bec->rxerr; + if (new_state != CAN_STATE_BUS_OFF) { + cf->data[6] = bec->txerr; + cf->data[7] = bec->rxerr; + } stats = &netdev->stats; stats->rx_packets++; @@ -1045,8 +1047,10 @@ shhwtstamps->hwtstamp = hwtstamp; cf->can_id |= CAN_ERR_BUSERROR; - cf->data[6] = bec.txerr; - cf->data[7] = bec.rxerr; + if (new_state != CAN_STATE_BUS_OFF) { + cf->data[6] = bec.txerr; + cf->data[7] = bec.rxerr; + } stats->rx_packets++; stats->rx_bytes += cf->can_dlc; @@ -1841,7 +1845,7 @@ { int err; - init_completion(&priv->start_comp); + reinit_completion(&priv->start_comp); err = kvaser_usb_hydra_send_simple_cmd(priv->dev, CMD_START_CHIP_REQ, priv->channel); @@ -1859,7 +1863,7 @@ { int err; - init_completion(&priv->stop_comp); + reinit_completion(&priv->stop_comp); /* Make sure we do not report invalid BUS_OFF from CMD_CHIP_STATE_EVENT * see comment in kvaser_usb_hydra_update_state() @@ -1882,7 +1886,7 @@ { int err; - init_completion(&priv->flush_comp); + reinit_completion(&priv->flush_comp); err = kvaser_usb_hydra_send_simple_cmd(priv->dev, CMD_FLUSH_QUEUE, priv->channel); @@ -2026,3 +2030,3 @@ .timestamp_freq = 1, - .bittiming_const = &kvaser_usb_hydra_flexc_bittiming_c, + .bittiming_const = &kvaser_usb_flexc_bittiming_const, }; diff -u linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c --- linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c +++ linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c @@ -28,10 +28,6 @@ #include "kvaser_usb.h" -/* Forward declaration */ -static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_dev_cfg; - -#define CAN_USB_CLOCK 8000000 #define MAX_USBCAN_NET_DEVICES 2 /* Command header size */ @@ -80,6 +76,12 @@ #define CMD_LEAF_LOG_MESSAGE 106 +/* Leaf frequency options */ +#define KVASER_USB_LEAF_SWOPTION_FREQ_MASK 0x60 +#define KVASER_USB_LEAF_SWOPTION_FREQ_16_MHZ_CLK 0 +#define KVASER_USB_LEAF_SWOPTION_FREQ_32_MHZ_CLK BIT(5) +#define KVASER_USB_LEAF_SWOPTION_FREQ_24_MHZ_CLK BIT(6) + /* error factors */ #define M16C_EF_ACKE BIT(0) #define M16C_EF_CRCE BIT(1) @@ -98,16 +100,6 @@ #define USBCAN_ERROR_STATE_RX_ERROR BIT(1) #define USBCAN_ERROR_STATE_BUSERROR BIT(2) -/* bittiming parameters */ -#define KVASER_USB_TSEG1_MIN 1 -#define KVASER_USB_TSEG1_MAX 16 -#define KVASER_USB_TSEG2_MIN 1 -#define KVASER_USB_TSEG2_MAX 8 -#define KVASER_USB_SJW_MAX 4 -#define KVASER_USB_BRP_MIN 1 -#define KVASER_USB_BRP_MAX 64 -#define KVASER_USB_BRP_INC 1 - /* ctrl modes */ #define KVASER_CTRL_MODE_NORMAL 1 #define KVASER_CTRL_MODE_SILENT 2 @@ -317,6 +309,38 @@ } u; } __packed; +#define CMD_SIZE_ANY 0xff +#define kvaser_fsize(field) sizeof_field(struct kvaser_cmd, field) + +static const u8 kvaser_usb_leaf_cmd_sizes_leaf[] = { + [CMD_START_CHIP_REPLY] = kvaser_fsize(u.simple), + [CMD_STOP_CHIP_REPLY] = kvaser_fsize(u.simple), + [CMD_GET_CARD_INFO_REPLY] = kvaser_fsize(u.cardinfo), + [CMD_TX_ACKNOWLEDGE] = kvaser_fsize(u.tx_acknowledge_header), + [CMD_GET_SOFTWARE_INFO_REPLY] = kvaser_fsize(u.leaf.softinfo), + [CMD_RX_STD_MESSAGE] = kvaser_fsize(u.leaf.rx_can), + [CMD_RX_EXT_MESSAGE] = kvaser_fsize(u.leaf.rx_can), + [CMD_LEAF_LOG_MESSAGE] = kvaser_fsize(u.leaf.log_message), + [CMD_CHIP_STATE_EVENT] = kvaser_fsize(u.leaf.chip_state_event), + [CMD_CAN_ERROR_EVENT] = kvaser_fsize(u.leaf.error_event), + /* ignored events: */ + [CMD_FLUSH_QUEUE_REPLY] = CMD_SIZE_ANY, +}; + +static const u8 kvaser_usb_leaf_cmd_sizes_usbcan[] = { + [CMD_START_CHIP_REPLY] = kvaser_fsize(u.simple), + [CMD_STOP_CHIP_REPLY] = kvaser_fsize(u.simple), + [CMD_GET_CARD_INFO_REPLY] = kvaser_fsize(u.cardinfo), + [CMD_TX_ACKNOWLEDGE] = kvaser_fsize(u.tx_acknowledge_header), + [CMD_GET_SOFTWARE_INFO_REPLY] = kvaser_fsize(u.usbcan.softinfo), + [CMD_RX_STD_MESSAGE] = kvaser_fsize(u.usbcan.rx_can), + [CMD_RX_EXT_MESSAGE] = kvaser_fsize(u.usbcan.rx_can), + [CMD_CHIP_STATE_EVENT] = kvaser_fsize(u.usbcan.chip_state_event), + [CMD_CAN_ERROR_EVENT] = kvaser_fsize(u.usbcan.error_event), + /* ignored events: */ + [CMD_USBCAN_CLOCK_OVERFLOW_EVENT] = CMD_SIZE_ANY, +}; + /* Summary of a kvaser error event, for a unified Leaf/Usbcan error * handling. Some discrepancies between the two families exist: * @@ -340,6 +364,107 @@ }; }; +static const struct can_bittiming_const kvaser_usb_leaf_m16c_bittiming_const = { + .name = "kvaser_usb_ucii", + .tseg1_min = 4, + .tseg1_max = 16, + .tseg2_min = 2, + .tseg2_max = 8, + .sjw_max = 4, + .brp_min = 1, + .brp_max = 16, + .brp_inc = 1, +}; + +static const struct can_bittiming_const kvaser_usb_leaf_m32c_bittiming_const = { + .name = "kvaser_usb_leaf", + .tseg1_min = 3, + .tseg1_max = 16, + .tseg2_min = 2, + .tseg2_max = 8, + .sjw_max = 4, + .brp_min = 2, + .brp_max = 128, + .brp_inc = 2, +}; + +static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_usbcan_dev_cfg = { + .clock = { + .freq = 8000000, + }, + .timestamp_freq = 1, + .bittiming_const = &kvaser_usb_leaf_m16c_bittiming_const, +}; + +static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_m32c_dev_cfg = { + .clock = { + .freq = 16000000, + }, + .timestamp_freq = 1, + .bittiming_const = &kvaser_usb_leaf_m32c_bittiming_const, +}; + +static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_imx_dev_cfg_16mhz = { + .clock = { + .freq = 16000000, + }, + .timestamp_freq = 1, + .bittiming_const = &kvaser_usb_flexc_bittiming_const, +}; + +static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_imx_dev_cfg_24mhz = { + .clock = { + .freq = 24000000, + }, + .timestamp_freq = 1, + .bittiming_const = &kvaser_usb_flexc_bittiming_const, +}; + +static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_imx_dev_cfg_32mhz = { + .clock = { + .freq = 32000000, + }, + .timestamp_freq = 1, + .bittiming_const = &kvaser_usb_flexc_bittiming_const, +}; + +static int kvaser_usb_leaf_verify_size(const struct kvaser_usb *dev, + const struct kvaser_cmd *cmd) +{ + /* buffer size >= cmd->len ensured by caller */ + u8 min_size = 0; + + switch (dev->driver_info->family) { + case KVASER_LEAF: + if (cmd->id < ARRAY_SIZE(kvaser_usb_leaf_cmd_sizes_leaf)) + min_size = kvaser_usb_leaf_cmd_sizes_leaf[cmd->id]; + break; + case KVASER_USBCAN: + if (cmd->id < ARRAY_SIZE(kvaser_usb_leaf_cmd_sizes_usbcan)) + min_size = kvaser_usb_leaf_cmd_sizes_usbcan[cmd->id]; + break; + } + + if (min_size == CMD_SIZE_ANY) + return 0; + + if (min_size) { + min_size += CMD_HEADER_LEN; + if (cmd->len >= min_size) + return 0; + + dev_err_ratelimited(&dev->intf->dev, + "Received command %u too short (size %u, needed %u)", + cmd->id, cmd->len, min_size); + return -EIO; + } + + dev_warn_ratelimited(&dev->intf->dev, + "Unhandled command (%d, size %d)\n", + cmd->id, cmd->len); + return -EINVAL; +} + static void * kvaser_usb_leaf_frame_to_cmd(const struct kvaser_usb_net_priv *priv, const struct sk_buff *skb, int *frame_len, @@ -359,7 +484,7 @@ sizeof(struct kvaser_cmd_tx_can); cmd->u.tx_can.channel = priv->channel; - switch (dev->card_data.leaf.family) { + switch (dev->driver_info->family) { case KVASER_LEAF: cmd_tx_can_flags = &cmd->u.tx_can.leaf.flags; break; @@ -447,6 +572,9 @@ end: kfree(buf); + if (err == 0) + err = kvaser_usb_leaf_verify_size(dev, cmd); + return err; } @@ -471,6 +599,34 @@ return rc; } +static void kvaser_usb_leaf_get_software_info_leaf(struct kvaser_usb *dev, + const struct leaf_cmd_softinfo *softinfo) +{ + u32 sw_options = le32_to_cpu(softinfo->sw_options); + + dev->fw_version = le32_to_cpu(softinfo->fw_version); + dev->max_tx_urbs = le16_to_cpu(softinfo->max_outstanding_tx); + + if (dev->driver_info->quirks & KVASER_USB_QUIRK_IGNORE_CLK_FREQ) { + /* Firmware expects bittiming parameters calculated for 16MHz + * clock, regardless of the actual clock + */ + dev->cfg = &kvaser_usb_leaf_m32c_dev_cfg; + } else { + switch (sw_options & KVASER_USB_LEAF_SWOPTION_FREQ_MASK) { + case KVASER_USB_LEAF_SWOPTION_FREQ_16_MHZ_CLK: + dev->cfg = &kvaser_usb_leaf_imx_dev_cfg_16mhz; + break; + case KVASER_USB_LEAF_SWOPTION_FREQ_24_MHZ_CLK: + dev->cfg = &kvaser_usb_leaf_imx_dev_cfg_24mhz; + break; + case KVASER_USB_LEAF_SWOPTION_FREQ_32_MHZ_CLK: + dev->cfg = &kvaser_usb_leaf_imx_dev_cfg_32mhz; + break; + } + } +} + static int kvaser_usb_leaf_get_software_info_inner(struct kvaser_usb *dev) { struct kvaser_cmd cmd; @@ -484,16 +640,15 @@ if (err) return err; - switch (dev->card_data.leaf.family) { + switch (dev->driver_info->family) { case KVASER_LEAF: - dev->fw_version = le32_to_cpu(cmd.u.leaf.softinfo.fw_version); - dev->max_tx_urbs = - le16_to_cpu(cmd.u.leaf.softinfo.max_outstanding_tx); + kvaser_usb_leaf_get_software_info_leaf(dev, &cmd.u.leaf.softinfo); break; case KVASER_USBCAN: dev->fw_version = le32_to_cpu(cmd.u.usbcan.softinfo.fw_version); dev->max_tx_urbs = le16_to_cpu(cmd.u.usbcan.softinfo.max_outstanding_tx); + dev->cfg = &kvaser_usb_leaf_usbcan_dev_cfg; break; } @@ -532,7 +687,7 @@ dev->nchannels = cmd.u.cardinfo.nchannels; if (dev->nchannels > KVASER_USB_MAX_NET_DEVICES || - (dev->card_data.leaf.family == KVASER_USBCAN && + (dev->driver_info->family == KVASER_USBCAN && dev->nchannels > MAX_USBCAN_NET_DEVICES)) return -EINVAL; @@ -668,7 +823,7 @@ new_state < CAN_STATE_BUS_OFF) priv->can.can_stats.restarts++; - switch (dev->card_data.leaf.family) { + switch (dev->driver_info->family) { case KVASER_LEAF: if (es->leaf.error_factor) { priv->can.can_stats.bus_error++; @@ -747,7 +902,7 @@ } } - switch (dev->card_data.leaf.family) { + switch (dev->driver_info->family) { case KVASER_LEAF: if (es->leaf.error_factor) { cf->can_id |= CAN_ERR_BUSERROR | CAN_ERR_PROT; @@ -774,8 +929,10 @@ break; } - cf->data[6] = es->txerr; - cf->data[7] = es->rxerr; + if (new_state != CAN_STATE_BUS_OFF) { + cf->data[6] = es->txerr; + cf->data[7] = es->rxerr; + } stats->rx_packets++; stats->rx_bytes += cf->can_dlc; @@ -939,7 +1096,7 @@ stats = &priv->netdev->stats; if ((cmd->u.rx_can_header.flag & MSG_FLAG_ERROR_FRAME) && - (dev->card_data.leaf.family == KVASER_LEAF && + (dev->driver_info->family == KVASER_LEAF && cmd->id == CMD_LEAF_LOG_MESSAGE)) { kvaser_usb_leaf_leaf_rx_error(dev, cmd); return; @@ -955,7 +1112,7 @@ return; } - switch (dev->card_data.leaf.family) { + switch (dev->driver_info->family) { case KVASER_LEAF: rx_data = cmd->u.leaf.rx_can.data; break; @@ -970,7 +1127,7 @@ return; } - if (dev->card_data.leaf.family == KVASER_LEAF && cmd->id == + if (dev->driver_info->family == KVASER_LEAF && cmd->id == CMD_LEAF_LOG_MESSAGE) { cf->can_id = le32_to_cpu(cmd->u.leaf.log_message.id); if (cf->can_id & KVASER_EXTENDED_FRAME) @@ -1052,6 +1209,9 @@ static void kvaser_usb_leaf_handle_command(const struct kvaser_usb *dev, const struct kvaser_cmd *cmd) { + if (kvaser_usb_leaf_verify_size(dev, cmd) < 0) + return; + switch (cmd->id) { case CMD_START_CHIP_REPLY: kvaser_usb_leaf_start_chip_reply(dev, cmd); @@ -1067,14 +1227,14 @@ break; case CMD_LEAF_LOG_MESSAGE: - if (dev->card_data.leaf.family != KVASER_LEAF) + if (dev->driver_info->family != KVASER_LEAF) goto warn; kvaser_usb_leaf_rx_can_msg(dev, cmd); break; case CMD_CHIP_STATE_EVENT: case CMD_CAN_ERROR_EVENT: - if (dev->card_data.leaf.family == KVASER_LEAF) + if (dev->driver_info->family == KVASER_LEAF) kvaser_usb_leaf_leaf_rx_error(dev, cmd); else kvaser_usb_leaf_usbcan_rx_error(dev, cmd); @@ -1086,12 +1246,12 @@ /* Ignored commands */ case CMD_USBCAN_CLOCK_OVERFLOW_EVENT: - if (dev->card_data.leaf.family != KVASER_USBCAN) + if (dev->driver_info->family != KVASER_USBCAN) goto warn; break; case CMD_FLUSH_QUEUE_REPLY: - if (dev->card_data.leaf.family != KVASER_LEAF) + if (dev->driver_info->family != KVASER_LEAF) goto warn; break; @@ -1164,7 +1324,7 @@ { int err; - init_completion(&priv->start_comp); + reinit_completion(&priv->start_comp); err = kvaser_usb_leaf_send_simple_cmd(priv->dev, CMD_START_CHIP, priv->channel); @@ -1182,7 +1342,7 @@ { int err; - init_completion(&priv->stop_comp); + reinit_completion(&priv->stop_comp); err = kvaser_usb_leaf_send_simple_cmd(priv->dev, CMD_STOP_CHIP, priv->channel); @@ -1225,24 +1385,11 @@ { struct kvaser_usb_dev_card_data *card_data = &dev->card_data; - dev->cfg = &kvaser_usb_leaf_dev_cfg; card_data->ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES; return 0; } -static const struct can_bittiming_const kvaser_usb_leaf_bittiming_const = { - .name = "kvaser_usb", - .tseg1_min = KVASER_USB_TSEG1_MIN, - .tseg1_max = KVASER_USB_TSEG1_MAX, - .tseg2_min = KVASER_USB_TSEG2_MIN, - .tseg2_max = KVASER_USB_TSEG2_MAX, - .sjw_max = KVASER_USB_SJW_MAX, - .brp_min = KVASER_USB_BRP_MIN, - .brp_max = KVASER_USB_BRP_MAX, - .brp_inc = KVASER_USB_BRP_INC, -}; - static int kvaser_usb_leaf_set_bittiming(struct net_device *netdev) { struct kvaser_usb_net_priv *priv = netdev_priv(netdev); @@ -1283,9 +1430,13 @@ switch (mode) { case CAN_MODE_START: + kvaser_usb_unlink_tx_urbs(priv); + err = kvaser_usb_leaf_simple_cmd_async(priv, CMD_START_CHIP); if (err) return err; + + priv->can.state = CAN_STATE_ERROR_ACTIVE; break; default: return -EOPNOTSUPP; @@ -1351,8 +1501,0 @@ - -static const struct kvaser_usb_dev_cfg kvaser_usb_leaf_dev_cfg = { - .clock = { - .freq = CAN_USB_CLOCK, - }, - .timestamp_freq = 1, - .bittiming_const = &kvaser_usb_leaf_bittiming_const, -}; diff -u linux-azure-5.4.0/drivers/net/can/usb/mcba_usb.c linux-azure-5.4.0/drivers/net/can/usb/mcba_usb.c --- linux-azure-5.4.0/drivers/net/can/usb/mcba_usb.c +++ linux-azure-5.4.0/drivers/net/can/usb/mcba_usb.c @@ -33,10 +33,6 @@ #define MCBA_USB_RX_BUFF_SIZE 64 #define MCBA_USB_TX_BUFF_SIZE (sizeof(struct mcba_usb_msg)) -/* MCBA endpoint numbers */ -#define MCBA_USB_EP_IN 1 -#define MCBA_USB_EP_OUT 1 - /* Microchip command id */ #define MBCA_CMD_RECEIVE_MESSAGE 0xE3 #define MBCA_CMD_I_AM_ALIVE_FROM_CAN 0xF5 @@ -82,6 +78,10 @@ bool can_ka_first_pass; bool can_speed_check; atomic_t free_ctx_cnt; + void *rxbuf[MCBA_MAX_RX_URBS]; + dma_addr_t rxbuf_dma[MCBA_MAX_RX_URBS]; + int rx_pipe; + int tx_pipe; }; /* CAN frame */ @@ -270,10 +270,8 @@ memcpy(buf, usb_msg, MCBA_USB_TX_BUFF_SIZE); - usb_fill_bulk_urb(urb, priv->udev, - usb_sndbulkpipe(priv->udev, MCBA_USB_EP_OUT), buf, - MCBA_USB_TX_BUFF_SIZE, mcba_usb_write_bulk_callback, - ctx); + usb_fill_bulk_urb(urb, priv->udev, priv->tx_pipe, buf, MCBA_USB_TX_BUFF_SIZE, + mcba_usb_write_bulk_callback, ctx); urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; usb_anchor_urb(urb, &priv->tx_submitted); @@ -366,7 +364,6 @@ xmit_failed: can_free_echo_skb(priv->netdev, ctx->ndx); mcba_usb_free_ctx(ctx); - dev_kfree_skb(skb); stats->tx_dropped++; return NETDEV_TX_OK; @@ -609,7 +606,7 @@ resubmit_urb: usb_fill_bulk_urb(urb, priv->udev, - usb_rcvbulkpipe(priv->udev, MCBA_USB_EP_OUT), + priv->rx_pipe, urb->transfer_buffer, MCBA_USB_RX_BUFF_SIZE, mcba_usb_read_bulk_callback, priv); @@ -633,6 +630,7 @@ for (i = 0; i < MCBA_MAX_RX_URBS; i++) { struct urb *urb = NULL; u8 *buf; + dma_addr_t buf_dma; /* create a URB, and a buffer for it */ urb = usb_alloc_urb(0, GFP_KERNEL); @@ -642,7 +640,7 @@ } buf = usb_alloc_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE, - GFP_KERNEL, &urb->transfer_dma); + GFP_KERNEL, &buf_dma); if (!buf) { netdev_err(netdev, "No memory left for USB buffer\n"); usb_free_urb(urb); @@ -650,8 +648,10 @@ break; } + urb->transfer_dma = buf_dma; + usb_fill_bulk_urb(urb, priv->udev, - usb_rcvbulkpipe(priv->udev, MCBA_USB_EP_IN), + priv->rx_pipe, buf, MCBA_USB_RX_BUFF_SIZE, mcba_usb_read_bulk_callback, priv); urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; @@ -661,11 +661,14 @@ if (err) { usb_unanchor_urb(urb); usb_free_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE, - buf, urb->transfer_dma); + buf, buf_dma); usb_free_urb(urb); break; } + priv->rxbuf[i] = buf; + priv->rxbuf_dma[i] = buf_dma; + /* Drop reference, USB core will take care of freeing it */ usb_free_urb(urb); } @@ -708,7 +711,14 @@ static void mcba_urb_unlink(struct mcba_priv *priv) { + int i; + usb_kill_anchored_urbs(&priv->rx_submitted); + + for (i = 0; i < MCBA_MAX_RX_URBS; ++i) + usb_free_coherent(priv->udev, MCBA_USB_RX_BUFF_SIZE, + priv->rxbuf[i], priv->rxbuf_dma[i]); + usb_kill_anchored_urbs(&priv->tx_submitted); } @@ -795,6 +805,13 @@ struct mcba_priv *priv; int err = -ENOMEM; struct usb_device *usbdev = interface_to_usbdev(intf); + struct usb_endpoint_descriptor *in, *out; + + err = usb_find_common_endpoints(intf->cur_altsetting, &in, &out, NULL, NULL); + if (err) { + dev_err(&intf->dev, "Can't find endpoints\n"); + return err; + } netdev = alloc_candev(sizeof(struct mcba_priv), MCBA_MAX_TX_URBS); if (!netdev) { @@ -840,6 +857,9 @@ goto cleanup_free_candev; } + priv->rx_pipe = usb_rcvbulkpipe(priv->udev, in->bEndpointAddress); + priv->tx_pipe = usb_sndbulkpipe(priv->udev, out->bEndpointAddress); + devm_can_led_init(netdev); /* Start USB dev only if we have successfully registered CAN device */ diff -u linux-azure-5.4.0/drivers/net/can/usb/peak_usb/pcan_usb_fd.c linux-azure-5.4.0/drivers/net/can/usb/peak_usb/pcan_usb_fd.c --- linux-azure-5.4.0/drivers/net/can/usb/peak_usb/pcan_usb_fd.c +++ linux-azure-5.4.0/drivers/net/can/usb/peak_usb/pcan_usb_fd.c @@ -551,11 +551,10 @@ } else if (sm->channel_p_w_b & PUCAN_BUS_WARNING) { new_state = CAN_STATE_ERROR_WARNING; } else { - /* no error bit (so, no error skb, back to active state) */ - dev->can.state = CAN_STATE_ERROR_ACTIVE; + /* back to (or still in) ERROR_ACTIVE state */ + new_state = CAN_STATE_ERROR_ACTIVE; pdev->bec.txerr = 0; pdev->bec.rxerr = 0; - return 0; } /* state hasn't changed */ diff -u linux-azure-5.4.0/drivers/net/can/vxcan.c linux-azure-5.4.0/drivers/net/can/vxcan.c --- linux-azure-5.4.0/drivers/net/can/vxcan.c +++ linux-azure-5.4.0/drivers/net/can/vxcan.c @@ -148,7 +148,7 @@ dev->hard_header_len = 0; dev->addr_len = 0; dev->tx_queue_len = 0; - dev->flags = (IFF_NOARP|IFF_ECHO); + dev->flags = IFF_NOARP; dev->netdev_ops = &vxcan_netdev_ops; dev->needs_free_netdev = true; diff -u linux-azure-5.4.0/drivers/net/can/xilinx_can.c linux-azure-5.4.0/drivers/net/can/xilinx_can.c --- linux-azure-5.4.0/drivers/net/can/xilinx_can.c +++ linux-azure-5.4.0/drivers/net/can/xilinx_can.c @@ -239,7 +239,7 @@ }; /* AXI CANFD Data Bittiming constants as per AXI CANFD 1.0 specs */ -static struct can_bittiming_const xcan_data_bittiming_const_canfd = { +static const struct can_bittiming_const xcan_data_bittiming_const_canfd = { .name = DRIVER_NAME, .tseg1_min = 1, .tseg1_max = 16, @@ -265,7 +265,7 @@ }; /* AXI CANFD 2.0 Data Bittiming constants as per AXI CANFD 2.0 spec */ -static struct can_bittiming_const xcan_data_bittiming_const_canfd2 = { +static const struct can_bittiming_const xcan_data_bittiming_const_canfd2 = { .name = DRIVER_NAME, .tseg1_min = 1, .tseg1_max = 32, @@ -1753,7 +1753,12 @@ spin_lock_init(&priv->tx_lock); /* Get IRQ for the device */ - ndev->irq = platform_get_irq(pdev, 0); + ret = platform_get_irq(pdev, 0); + if (ret < 0) + goto err_free; + + ndev->irq = ret; + ndev->flags |= IFF_ECHO; /* We support local echo */ platform_set_drvdata(pdev, ndev); diff -u linux-azure-5.4.0/drivers/net/dsa/b53/b53_common.c linux-azure-5.4.0/drivers/net/dsa/b53/b53_common.c --- linux-azure-5.4.0/drivers/net/dsa/b53/b53_common.c +++ linux-azure-5.4.0/drivers/net/dsa/b53/b53_common.c @@ -2353,9 +2353,8 @@ dev->cpu_port = 5; } - /* cpu port is always last */ - dev->num_ports = dev->cpu_port + 1; dev->enabled_ports |= BIT(dev->cpu_port); + dev->num_ports = fls(dev->enabled_ports); /* Include non standard CPU port built-in PHYs to be probed */ if (is539x(dev) || is531x5(dev)) { diff -u linux-azure-5.4.0/drivers/net/dsa/bcm_sf2.c linux-azure-5.4.0/drivers/net/dsa/bcm_sf2.c --- linux-azure-5.4.0/drivers/net/dsa/bcm_sf2.c +++ linux-azure-5.4.0/drivers/net/dsa/bcm_sf2.c @@ -602,6 +602,11 @@ reg |= LINK_STS; if (state->duplex == DUPLEX_FULL) reg |= DUPLX_MODE; + if (state->pause & MLO_PAUSE_TXRX_MASK) { + if (state->pause & MLO_PAUSE_TX) + reg |= TXFLOW_CNTL; + reg |= RXFLOW_CNTL; + } core_writel(priv, reg, offset); } diff -u linux-azure-5.4.0/drivers/net/dsa/bcm_sf2_cfp.c linux-azure-5.4.0/drivers/net/dsa/bcm_sf2_cfp.c --- linux-azure-5.4.0/drivers/net/dsa/bcm_sf2_cfp.c +++ linux-azure-5.4.0/drivers/net/dsa/bcm_sf2_cfp.c @@ -542,14 +542,14 @@ static struct cfp_rule *bcm_sf2_cfp_rule_find(struct bcm_sf2_priv *priv, int port, u32 location) { - struct cfp_rule *rule = NULL; + struct cfp_rule *rule; list_for_each_entry(rule, &priv->cfp.rules_list, next) { if (rule->port == port && rule->fs.location == location) - break; + return rule; } - return rule; + return NULL; } static int bcm_sf2_cfp_rule_cmp(struct bcm_sf2_priv *priv, int port, diff -u linux-azure-5.4.0/drivers/net/dsa/dsa_loop.c linux-azure-5.4.0/drivers/net/dsa/dsa_loop.c --- linux-azure-5.4.0/drivers/net/dsa/dsa_loop.c +++ linux-azure-5.4.0/drivers/net/dsa/dsa_loop.c @@ -329,6 +329,17 @@ #define NUM_FIXED_PHYS (DSA_LOOP_NUM_PORTS - 2) +static void dsa_loop_phydevs_unregister(void) +{ + unsigned int i; + + for (i = 0; i < NUM_FIXED_PHYS; i++) + if (!IS_ERR(phydevs[i])) { + fixed_phy_unregister(phydevs[i]); + phy_device_free(phydevs[i]); + } +} + static int __init dsa_loop_init(void) { struct fixed_phy_status status = { @@ -336,23 +347,23 @@ .speed = SPEED_100, .duplex = DUPLEX_FULL, }; - unsigned int i; + unsigned int i, ret; for (i = 0; i < NUM_FIXED_PHYS; i++) phydevs[i] = fixed_phy_register(PHY_POLL, &status, NULL); - return mdio_driver_register(&dsa_loop_drv); + ret = mdio_driver_register(&dsa_loop_drv); + if (ret) + dsa_loop_phydevs_unregister(); + + return ret; } module_init(dsa_loop_init); static void __exit dsa_loop_exit(void) { - unsigned int i; - mdio_driver_unregister(&dsa_loop_drv); - for (i = 0; i < NUM_FIXED_PHYS; i++) - if (!IS_ERR(phydevs[i])) - fixed_phy_unregister(phydevs[i]); + dsa_loop_phydevs_unregister(); } module_exit(dsa_loop_exit); diff -u linux-azure-5.4.0/drivers/net/dsa/lantiq_gswip.c linux-azure-5.4.0/drivers/net/dsa/lantiq_gswip.c --- linux-azure-5.4.0/drivers/net/dsa/lantiq_gswip.c +++ linux-azure-5.4.0/drivers/net/dsa/lantiq_gswip.c @@ -229,7 +229,7 @@ #define GSWIP_SDMA_PCTRLp(p) (0xBC0 + ((p) * 0x6)) #define GSWIP_SDMA_PCTRL_EN BIT(0) /* SDMA Port Enable */ #define GSWIP_SDMA_PCTRL_FCEN BIT(1) /* Flow Control Enable */ -#define GSWIP_SDMA_PCTRL_PAUFWD BIT(1) /* Pause Frame Forwarding */ +#define GSWIP_SDMA_PCTRL_PAUFWD BIT(3) /* Pause Frame Forwarding */ #define GSWIP_TABLE_ACTIVE_VLAN 0x01 #define GSWIP_TABLE_VLAN_MAPPING 0x02 @@ -837,7 +837,8 @@ gswip_switch_mask(priv, 0, GSWIP_MAC_CTRL_2_MLEN, GSWIP_MAC_CTRL_2p(cpu_port)); - gswip_switch_w(priv, VLAN_ETH_FRAME_LEN + 8, GSWIP_MAC_FLEN); + gswip_switch_w(priv, VLAN_ETH_FRAME_LEN + 8 + ETH_FCS_LEN, + GSWIP_MAC_FLEN); gswip_switch_mask(priv, 0, GSWIP_BM_QUEUE_GCTRL_GL_MOD, GSWIP_BM_QUEUE_GCTRL); @@ -1399,11 +1400,17 @@ addr[1] = mac_bridge.key[2] & 0xff; addr[0] = (mac_bridge.key[2] >> 8) & 0xff; if (mac_bridge.val[1] & GSWIP_TABLE_MAC_BRIDGE_STATIC) { - if (mac_bridge.val[0] & BIT(port)) - cb(addr, 0, true, data); + if (mac_bridge.val[0] & BIT(port)) { + err = cb(addr, 0, true, data); + if (err) + return err; + } } else { - if (((mac_bridge.val[0] & GENMASK(7, 4)) >> 4) == port) - cb(addr, 0, false, data); + if (((mac_bridge.val[0] & GENMASK(7, 4)) >> 4) == port) { + err = cb(addr, 0, false, data); + if (err) + return err; + } } } return 0; @@ -1600,9 +1607,6 @@ break; case PHY_INTERFACE_MODE_RMII: miicfg |= GSWIP_MII_CFG_MODE_RMIIM; - - /* Configure the RMII clock as output: */ - miicfg |= GSWIP_MII_CFG_RMII_CLK; break; case PHY_INTERFACE_MODE_RGMII: case PHY_INTERFACE_MODE_RGMII_ID: @@ -1954,8 +1958,10 @@ for_each_available_child_of_node(gphy_fw_list_np, gphy_fw_np) { err = gswip_gphy_fw_probe(priv, &priv->gphy_fw[i], gphy_fw_np, i); - if (err) + if (err) { + of_node_put(gphy_fw_np); goto remove_gphy; + } i++; } diff -u linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477.c linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477.c --- linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477.c +++ linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477.c @@ -766,6 +766,9 @@ goto exit; } + if (!(ksz_data & ALU_VALID)) + continue; + /* read ALU table */ ksz9477_read_table(dev, alu_table); @@ -1520,6 +1523,7 @@ .num_statics = 16, .cpu_ports = 0x7F, /* can be configured as cpu port */ .port_cnt = 7, /* total physical port count */ + .phy_errata_9477 = true, }, }; diff -u linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477_spi.c linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477_spi.c --- linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477_spi.c +++ linux-azure-5.4.0/drivers/net/dsa/microchip/ksz9477_spi.c @@ -88,12 +88,24 @@ }; MODULE_DEVICE_TABLE(of, ksz9477_dt_ids); +static const struct spi_device_id ksz9477_spi_ids[] = { + { "ksz9477" }, + { "ksz9897" }, + { "ksz9893" }, + { "ksz9563" }, + { "ksz8563" }, + { "ksz9567" }, + { }, +}; +MODULE_DEVICE_TABLE(spi, ksz9477_spi_ids); + static struct spi_driver ksz9477_spi_driver = { .driver = { .name = "ksz9477-switch", .owner = THIS_MODULE, .of_match_table = of_match_ptr(ksz9477_dt_ids), }, + .id_table = ksz9477_spi_ids, .probe = ksz9477_spi_probe, .remove = ksz9477_spi_remove, .shutdown = ksz9477_spi_shutdown, diff -u linux-azure-5.4.0/drivers/net/dsa/microchip/ksz_common.h linux-azure-5.4.0/drivers/net/dsa/microchip/ksz_common.h --- linux-azure-5.4.0/drivers/net/dsa/microchip/ksz_common.h +++ linux-azure-5.4.0/drivers/net/dsa/microchip/ksz_common.h @@ -215,12 +215,8 @@ int ret; ret = regmap_bulk_read(dev->regmap[2], reg, value, 2); - if (!ret) { - /* Ick! ToDo: Add 64bit R/W to regmap on 32bit systems */ - value[0] = swab32(value[0]); - value[1] = swab32(value[1]); - *val = swab64((u64)*value); - } + if (!ret) + *val = (u64)value[0] << 32 | value[1]; return ret; } diff -u linux-azure-5.4.0/drivers/net/dsa/mt7530.c linux-azure-5.4.0/drivers/net/dsa/mt7530.c --- linux-azure-5.4.0/drivers/net/dsa/mt7530.c +++ linux-azure-5.4.0/drivers/net/dsa/mt7530.c @@ -45,6 +45,7 @@ MIB_DESC(2, 0x48, "TxBytes"), MIB_DESC(1, 0x60, "RxDrop"), MIB_DESC(1, 0x64, "RxFiltering"), + MIB_DESC(1, 0x68, "RxUnicast"), MIB_DESC(1, 0x6c, "RxMulticast"), MIB_DESC(1, 0x70, "RxBroadcast"), MIB_DESC(1, 0x74, "RxAlignErr"), @@ -841,11 +842,8 @@ /* Remove this port from the port matrix of the other ports * in the same bridge. If the port is disabled, port matrix * is kept and not being setup until the port becomes enabled. - * And the other port's port matrix cannot be broken when the - * other port is still a VLAN-aware port. */ - if (dsa_is_user_port(ds, i) && i != port && - !dsa_port_is_vlan_filtering(&ds->ports[i])) { + if (dsa_is_user_port(ds, i) && i != port) { if (dsa_to_port(ds, i)->bridge_dev != bridge) continue; if (priv->ports[i].enable) diff -u linux-azure-5.4.0/drivers/net/dsa/mv88e6xxx/chip.c linux-azure-5.4.0/drivers/net/dsa/mv88e6xxx/chip.c --- linux-azure-5.4.0/drivers/net/dsa/mv88e6xxx/chip.c +++ linux-azure-5.4.0/drivers/net/dsa/mv88e6xxx/chip.c @@ -2910,6 +2910,7 @@ */ child = of_get_child_by_name(np, "mdio"); err = mv88e6xxx_mdio_register(chip, child, false); + of_node_put(child); if (err) return err; @@ -3062,6 +3063,7 @@ .port_set_duplex = mv88e6xxx_port_set_duplex, .port_set_speed = mv88e6185_port_set_speed, .port_tag_remap = mv88e6095_port_tag_remap, + .port_set_policy = mv88e6352_port_set_policy, .port_set_frame_mode = mv88e6351_port_set_frame_mode, .port_set_egress_floods = mv88e6352_port_set_egress_floods, .port_set_ether_type = mv88e6351_port_set_ether_type, @@ -3192,7 +3194,7 @@ .port_set_cmode = mv88e6341_port_set_cmode, .port_setup_message_port = mv88e6xxx_setup_message_port, .stats_snapshot = mv88e6390_g1_stats_snapshot, - .stats_set_histogram = mv88e6095_g1_stats_set_histogram, + .stats_set_histogram = mv88e6390_g1_stats_set_histogram, .stats_get_sset_count = mv88e6320_stats_get_sset_count, .stats_get_strings = mv88e6320_stats_get_strings, .stats_get_stats = mv88e6390_stats_get_stats, @@ -3715,6 +3717,7 @@ .port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay, .port_set_speed = mv88e6250_port_set_speed, .port_tag_remap = mv88e6095_port_tag_remap, + .port_set_policy = mv88e6352_port_set_policy, .port_set_frame_mode = mv88e6351_port_set_frame_mode, .port_set_egress_floods = mv88e6352_port_set_egress_floods, .port_set_ether_type = mv88e6351_port_set_ether_type, @@ -3906,7 +3909,7 @@ .port_set_cmode = mv88e6341_port_set_cmode, .port_setup_message_port = mv88e6xxx_setup_message_port, .stats_snapshot = mv88e6390_g1_stats_snapshot, - .stats_set_histogram = mv88e6095_g1_stats_set_histogram, + .stats_set_histogram = mv88e6390_g1_stats_set_histogram, .stats_get_sset_count = mv88e6320_stats_get_sset_count, .stats_get_strings = mv88e6320_stats_get_strings, .stats_get_stats = mv88e6390_stats_get_stats, @@ -3916,6 +3919,7 @@ .mgmt_rsvd2cpu = mv88e6390_g1_mgmt_rsvd2cpu, .pot_clear = mv88e6xxx_g2_pot_clear, .reset = mv88e6352_g1_reset, + .rmu_disable = mv88e6390_g1_rmu_disable, .vtu_getnext = mv88e6352_g1_vtu_getnext, .vtu_loadpurge = mv88e6352_g1_vtu_loadpurge, .serdes_power = mv88e6390_serdes_power, @@ -3982,6 +3986,7 @@ .port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay, .port_set_speed = mv88e6185_port_set_speed, .port_tag_remap = mv88e6095_port_tag_remap, + .port_set_policy = mv88e6352_port_set_policy, .port_set_frame_mode = mv88e6351_port_set_frame_mode, .port_set_egress_floods = mv88e6352_port_set_egress_floods, .port_set_ether_type = mv88e6351_port_set_ether_type, @@ -4004,6 +4009,7 @@ .mgmt_rsvd2cpu = mv88e6352_g2_mgmt_rsvd2cpu, .pot_clear = mv88e6xxx_g2_pot_clear, .reset = mv88e6352_g1_reset, + .rmu_disable = mv88e6390_g1_rmu_disable, .vtu_getnext = mv88e6352_g1_vtu_getnext, .vtu_loadpurge = mv88e6352_g1_vtu_loadpurge, .avb_ops = &mv88e6352_avb_ops, diff -u linux-azure-5.4.0/drivers/net/dsa/rtl8366rb.c linux-azure-5.4.0/drivers/net/dsa/rtl8366rb.c --- linux-azure-5.4.0/drivers/net/dsa/rtl8366rb.c +++ linux-azure-5.4.0/drivers/net/dsa/rtl8366rb.c @@ -1264,7 +1264,7 @@ static bool rtl8366rb_is_vlan_valid(struct realtek_smi *smi, unsigned int vlan) { - unsigned int max = RTL8366RB_NUM_VLANS; + unsigned int max = RTL8366RB_NUM_VLANS - 1; if (smi->vlan4k_enabled) max = RTL8366RB_NUM_VIDS - 1; diff -u linux-azure-5.4.0/drivers/net/dsa/sja1105/sja1105_main.c linux-azure-5.4.0/drivers/net/dsa/sja1105/sja1105_main.c --- linux-azure-5.4.0/drivers/net/dsa/sja1105/sja1105_main.c +++ linux-azure-5.4.0/drivers/net/dsa/sja1105/sja1105_main.c @@ -992,10 +992,11 @@ int sja1105et_fdb_add(struct dsa_switch *ds, int port, const unsigned char *addr, u16 vid) { - struct sja1105_l2_lookup_entry l2_lookup = {0}; + struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp; struct sja1105_private *priv = ds->priv; struct device *dev = ds->dev; int last_unused = -1; + int start, end, i; int bin, way, rc; bin = sja1105et_fdb_hash(priv, addr, vid); @@ -1007,7 +1008,7 @@ * mask? If yes, we need to do nothing. If not, we need * to rewrite the entry by adding this port to it. */ - if (l2_lookup.destports & BIT(port)) + if ((l2_lookup.destports & BIT(port)) && l2_lookup.lockeds) return 0; l2_lookup.destports |= BIT(port); } else { @@ -1038,6 +1039,7 @@ index, NULL, false); } } + l2_lookup.lockeds = true; l2_lookup.index = sja1105et_fdb_index(bin, way); rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, @@ -1046,6 +1048,29 @@ if (rc < 0) return rc; + /* Invalidate a dynamically learned entry if that exists */ + start = sja1105et_fdb_index(bin, 0); + end = sja1105et_fdb_index(bin, way); + + for (i = start; i < end; i++) { + rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, + i, &tmp); + if (rc == -ENOENT) + continue; + if (rc) + return rc; + + if (tmp.macaddr != ether_addr_to_u64(addr) || tmp.vlanid != vid) + continue; + + rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, + i, NULL, false); + if (rc) + return rc; + + break; + } + return sja1105_static_fdb_change(priv, port, &l2_lookup, true); } @@ -1087,7 +1112,7 @@ int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port, const unsigned char *addr, u16 vid) { - struct sja1105_l2_lookup_entry l2_lookup = {0}; + struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp; struct sja1105_private *priv = ds->priv; int rc, i; @@ -1108,10 +1133,10 @@ rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, SJA1105_SEARCH, &l2_lookup); if (rc == 0) { - /* Found and this port is already in the entry's + /* Found a static entry and this port is already in the entry's * port mask => job done */ - if (l2_lookup.destports & BIT(port)) + if ((l2_lookup.destports & BIT(port)) && l2_lookup.lockeds) return 0; /* l2_lookup.index is populated by the switch in case it * found something. @@ -1134,16 +1159,46 @@ dev_err(ds->dev, "FDB is full, cannot add entry.\n"); return -EINVAL; } - l2_lookup.lockeds = true; l2_lookup.index = i; skip_finding_an_index: + l2_lookup.lockeds = true; + rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, l2_lookup.index, &l2_lookup, true); if (rc < 0) return rc; + /* The switch learns dynamic entries and looks up the FDB left to + * right. It is possible that our addition was concurrent with the + * dynamic learning of the same address, so now that the static entry + * has been installed, we are certain that address learning for this + * particular address has been turned off, so the dynamic entry either + * is in the FDB at an index smaller than the static one, or isn't (it + * can also be at a larger index, but in that case it is inactive + * because the static FDB entry will match first, and the dynamic one + * will eventually age out). Search for a dynamically learned address + * prior to our static one and invalidate it. + */ + tmp = l2_lookup; + + rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP, + SJA1105_SEARCH, &tmp); + if (rc < 0) { + dev_err(ds->dev, + "port %d failed to read back entry for %pM vid %d: %pe\n", + port, addr, vid, ERR_PTR(rc)); + return rc; + } + + if (tmp.index < l2_lookup.index) { + rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, + tmp.index, NULL, false); + if (rc < 0) + return rc; + } + return sja1105_static_fdb_change(priv, port, &l2_lookup, true); } @@ -1257,7 +1312,9 @@ /* We need to hide the dsa_8021q VLANs from the user. */ if (!dsa_port_is_vlan_filtering(&ds->ports[port])) l2_lookup.vlanid = 0; - cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data); + rc = cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data); + if (rc) + return rc; } return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/Kconfig linux-azure-5.4.0/drivers/net/ethernet/Kconfig --- linux-azure-5.4.0/drivers/net/ethernet/Kconfig +++ linux-azure-5.4.0/drivers/net/ethernet/Kconfig @@ -101,6 +101,7 @@ config KORINA tristate "Korina (IDT RC32434) Ethernet support" depends on MIKROTIK_RB532 + select CRC32 ---help--- If you have a Mikrotik RouterBoard 500 or IDT RC32434 based system say Y. Otherwise say N. diff -u linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-common.h linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-common.h --- linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-common.h +++ linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-common.h @@ -1331,6 +1331,10 @@ #define MDIO_VEND2_PMA_CDR_CONTROL 0x8056 #endif +#ifndef MDIO_VEND2_PMA_MISC_CTRL0 +#define MDIO_VEND2_PMA_MISC_CTRL0 0x8090 +#endif + #ifndef MDIO_CTRL1_SPEED1G #define MDIO_CTRL1_SPEED1G (MDIO_CTRL1_SPEED10G & ~BMCR_SPEED100) #endif @@ -1389,6 +1393,10 @@ #define XGBE_PMA_RX_RST_0_RESET_ON 0x10 #define XGBE_PMA_RX_RST_0_RESET_OFF 0x00 +#define XGBE_PMA_PLL_CTRL_MASK BIT(15) +#define XGBE_PMA_PLL_CTRL_ENABLE BIT(15) +#define XGBE_PMA_PLL_CTRL_DISABLE 0x0000 + /* Bit setting and getting macros * The get macro will extract the current bit field value from within * the variable diff -u linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c --- linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c +++ linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c @@ -721,7 +721,9 @@ if (!channel->tx_ring) break; + /* Deactivate the Tx timer */ del_timer_sync(&channel->tx_timer); + channel->tx_timer_active = 0; } } @@ -2765,6 +2767,14 @@ buf2_len = xgbe_rx_buf2_len(rdata, packet, len); len += buf2_len; + if (buf2_len > rdata->rx.buf.dma_len) { + /* Hardware inconsistency within the descriptors + * that has resulted in a length underflow. + */ + error = 1; + goto skip_data; + } + if (!skb) { skb = xgbe_create_skb(pdata, napi, rdata, buf1_len); @@ -2794,8 +2804,10 @@ if (!last || context_next) goto read_again; - if (!skb) + if (!skb || error) { + dev_kfree_skb(skb); goto next_packet; + } /* Be sure we don't exceed the configured MTU */ max_len = netdev->mtu + ETH_HLEN; diff -u linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c --- linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c +++ linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c @@ -238,6 +238,7 @@ #define XGBE_SFP_BASE_BR_1GBE_MAX 0x0d #define XGBE_SFP_BASE_BR_10GBE_MIN 0x64 #define XGBE_SFP_BASE_BR_10GBE_MAX 0x68 +#define XGBE_MOLEX_SFP_BASE_BR_10GBE_MAX 0x78 #define XGBE_SFP_BASE_CU_CABLE_LEN 18 @@ -283,6 +284,8 @@ #define XGBE_BEL_FUSE_VENDOR "BEL-FUSE " #define XGBE_BEL_FUSE_PARTNO "1GBT-SFP06 " +#define XGBE_MOLEX_VENDOR "Molex Inc. " + struct xgbe_sfp_ascii { union { char vendor[XGBE_SFP_BASE_VENDOR_NAME_LEN + 1]; @@ -833,7 +836,11 @@ break; case XGBE_SFP_SPEED_10000: min = XGBE_SFP_BASE_BR_10GBE_MIN; - max = XGBE_SFP_BASE_BR_10GBE_MAX; + if (memcmp(&sfp_eeprom->base[XGBE_SFP_BASE_VENDOR_NAME], + XGBE_MOLEX_VENDOR, XGBE_SFP_BASE_VENDOR_NAME_LEN) == 0) + max = XGBE_MOLEX_SFP_BASE_BR_10GBE_MAX; + else + max = XGBE_SFP_BASE_BR_10GBE_MAX; break; default: return false; @@ -1150,7 +1157,10 @@ } /* Determine the type of SFP */ - if (sfp_base[XGBE_SFP_BASE_10GBE_CC] & XGBE_SFP_BASE_10GBE_CC_SR) + if (phy_data->sfp_cable == XGBE_SFP_CABLE_PASSIVE && + xgbe_phy_sfp_bit_rate(sfp_eeprom, XGBE_SFP_SPEED_10000)) + phy_data->sfp_base = XGBE_SFP_BASE_10000_CR; + else if (sfp_base[XGBE_SFP_BASE_10GBE_CC] & XGBE_SFP_BASE_10GBE_CC_SR) phy_data->sfp_base = XGBE_SFP_BASE_10000_SR; else if (sfp_base[XGBE_SFP_BASE_10GBE_CC] & XGBE_SFP_BASE_10GBE_CC_LR) phy_data->sfp_base = XGBE_SFP_BASE_10000_LR; @@ -1166,9 +1176,6 @@ phy_data->sfp_base = XGBE_SFP_BASE_1000_CX; else if (sfp_base[XGBE_SFP_BASE_1GBE_CC] & XGBE_SFP_BASE_1GBE_CC_T) phy_data->sfp_base = XGBE_SFP_BASE_1000_T; - else if ((phy_data->sfp_cable == XGBE_SFP_CABLE_PASSIVE) && - xgbe_phy_sfp_bit_rate(sfp_eeprom, XGBE_SFP_SPEED_10000)) - phy_data->sfp_base = XGBE_SFP_BASE_10000_CR; switch (phy_data->sfp_base) { case XGBE_SFP_BASE_1000_T: @@ -1972,12 +1979,26 @@ } } +static void xgbe_phy_pll_ctrl(struct xgbe_prv_data *pdata, bool enable) +{ + XMDIO_WRITE_BITS(pdata, MDIO_MMD_PMAPMD, MDIO_VEND2_PMA_MISC_CTRL0, + XGBE_PMA_PLL_CTRL_MASK, + enable ? XGBE_PMA_PLL_CTRL_ENABLE + : XGBE_PMA_PLL_CTRL_DISABLE); + + /* Wait for command to complete */ + usleep_range(100, 200); +} + static void xgbe_phy_perform_ratechange(struct xgbe_prv_data *pdata, unsigned int cmd, unsigned int sub_cmd) { unsigned int s0 = 0; unsigned int wait; + /* Disable PLL re-initialization during FW command processing */ + xgbe_phy_pll_ctrl(pdata, false); + /* Log if a previous command did not complete */ if (XP_IOREAD_BITS(pdata, XP_DRIVER_INT_RO, STATUS)) { netif_dbg(pdata, link, pdata->netdev, @@ -1998,7 +2019,7 @@ wait = XGBE_RATECHANGE_COUNT; while (wait--) { if (!XP_IOREAD_BITS(pdata, XP_DRIVER_INT_RO, STATUS)) - return; + goto reenable_pll; usleep_range(1000, 2000); } @@ -2008,6 +2029,10 @@ /* Reset on error */ xgbe_phy_rx_reset(pdata); + +reenable_pll: + /* Enable PLL re-initialization */ + xgbe_phy_pll_ctrl(pdata, true); } static void xgbe_phy_rrc(struct xgbe_prv_data *pdata) diff -u linux-azure-5.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c linux-azure-5.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c --- linux-azure-5.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c @@ -696,6 +696,12 @@ buf_pool->rx_skb[skb_index] = NULL; datalen = xgene_enet_get_data_len(le64_to_cpu(raw_desc->m1)); + + /* strip off CRC as HW isn't doing this */ + nv = GET_VAL(NV, le64_to_cpu(raw_desc->m0)); + if (!nv) + datalen -= 4; + skb_put(skb, datalen); prefetch(skb->data - NET_IP_ALIGN); skb->protocol = eth_type_trans(skb, ndev); @@ -717,12 +723,8 @@ } } - nv = GET_VAL(NV, le64_to_cpu(raw_desc->m0)); - if (!nv) { - /* strip off CRC as HW isn't doing this */ - datalen -= 4; + if (!nv) goto skip_jumbo; - } slots = page_pool->slots - 1; head = page_pool->head; diff -u linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c --- linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c +++ linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c @@ -305,6 +305,10 @@ if (!buff->is_eop) { buff_ = buff; do { + if (buff_->next >= self->size) { + err = -EIO; + goto err_exit; + } next_ = buff_->next, buff_ = &self->buff_ring[next_]; is_rsc_completed = @@ -327,6 +331,10 @@ if (buff->is_error || buff->is_cso_err) { buff_ = buff; do { + if (buff_->next >= self->size) { + err = -EIO; + goto err_exit; + } next_ = buff_->next, buff_ = &self->buff_ring[next_]; diff -u linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c --- linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c +++ linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c @@ -674,6 +674,13 @@ err = -ENXIO; goto err_exit; } + + /* Validate that the new hw_head_ is reasonable. */ + if (hw_head_ >= ring->size) { + err = -ENXIO; + goto err_exit; + } + ring->hw_head = hw_head_; err = aq_hw_err_from_flags(self); diff -u linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c --- linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c +++ linux-azure-5.4.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c @@ -502,6 +502,11 @@ goto err_exit; if (fw.len == 0xFFFFU) { + if (sw.len > sizeof(self->rpc)) { + printk(KERN_INFO "Invalid sw len: %x\n", sw.len); + err = -EINVAL; + goto err_exit; + } err = hw_atl_utils_fw_rpc_call(self, sw.len); if (err < 0) goto err_exit; @@ -510,6 +515,11 @@ if (rpc) { if (fw.len) { + if (fw.len > sizeof(self->rpc)) { + printk(KERN_INFO "Invalid fw len: %x\n", fw.len); + err = -EINVAL; + goto err_exit; + } err = hw_atl_utils_fw_downld_dwords(self, self->rpc_addr, diff -u linux-azure-5.4.0/drivers/net/ethernet/atheros/alx/main.c linux-azure-5.4.0/drivers/net/ethernet/atheros/alx/main.c --- linux-azure-5.4.0/drivers/net/ethernet/atheros/alx/main.c +++ linux-azure-5.4.0/drivers/net/ethernet/atheros/alx/main.c @@ -1920,6 +1920,7 @@ free_netdev(netdev); out_pci_release: pci_release_mem_regions(pdev); + pci_disable_pcie_error_reporting(pdev); out_pci_disable: pci_disable_device(pdev); return err; diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bcmsysport.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bcmsysport.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bcmsysport.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bcmsysport.c @@ -1277,11 +1277,11 @@ struct bcm_sysport_priv *priv = netdev_priv(dev); struct device *kdev = &priv->pdev->dev; struct bcm_sysport_tx_ring *ring; + unsigned long flags, desc_flags; struct bcm_sysport_cb *cb; struct netdev_queue *txq; u32 len_status, addr_lo; unsigned int skb_len; - unsigned long flags; dma_addr_t mapping; u16 queue; int ret; @@ -1339,8 +1339,10 @@ ring->desc_count--; /* Ports are latched, so write upper address first */ + spin_lock_irqsave(&priv->desc_lock, desc_flags); tdma_writel(priv, len_status, TDMA_WRITE_PORT_HI(ring->index)); tdma_writel(priv, addr_lo, TDMA_WRITE_PORT_LO(ring->index)); + spin_unlock_irqrestore(&priv->desc_lock, desc_flags); /* Check ring space and update SW control flow */ if (ring->desc_count == 0) @@ -1970,6 +1972,7 @@ } /* Initialize both hardware and software ring */ + spin_lock_init(&priv->desc_lock); for (i = 0; i < dev->num_tx_queues; i++) { ret = bcm_sysport_init_tx_ring(priv, i); if (ret) { diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c @@ -14267,10 +14267,6 @@ /* Stop Tx */ bnx2x_tx_disable(bp); - /* Delete all NAPI objects */ - bnx2x_del_all_napi(bp); - if (CNIC_LOADED(bp)) - bnx2x_del_all_napi_cnic(bp); netdev_reset_tc(bp->dev); del_timer_sync(&bp->timer); @@ -14375,6 +14371,11 @@ bnx2x_drain_tx_queues(bp); bnx2x_send_unload_req(bp, UNLOAD_RECOVERY); bnx2x_netif_stop(bp, 1); + bnx2x_del_all_napi(bp); + + if (CNIC_LOADED(bp)) + bnx2x_del_all_napi_cnic(bp); + bnx2x_free_irq(bp); /* Report UNLOAD_DONE to MCP */ diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c @@ -1245,8 +1245,10 @@ goto failed; /* SR-IOV capability was enabled but there are no VFs*/ - if (iov->total == 0) + if (iov->total == 0) { + err = 0; goto failed; + } iov->nr_virtfn = min_t(u16, iov->total, num_vfs_param); diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -360,6 +360,26 @@ return md_dst->u.port_info.port_id; } +static bool bnxt_txr_netif_try_stop_queue(struct bnxt *bp, + struct bnxt_tx_ring_info *txr, + struct netdev_queue *txq) +{ + netif_tx_stop_queue(txq); + + /* netif_tx_stop_queue() must be done before checking + * tx index in bnxt_tx_avail() below, because in + * bnxt_tx_int(), we update tx index before checking for + * netif_tx_queue_stopped(). + */ + smp_mb(); + if (bnxt_tx_avail(bp, txr) >= bp->tx_wake_thresh) { + netif_tx_wake_queue(txq); + return false; + } + + return true; +} + static netdev_tx_t bnxt_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct bnxt *bp = netdev_priv(dev); @@ -387,8 +407,8 @@ free_size = bnxt_tx_avail(bp, txr); if (unlikely(free_size < skb_shinfo(skb)->nr_frags + 2)) { - netif_tx_stop_queue(txq); - return NETDEV_TX_BUSY; + if (bnxt_txr_netif_try_stop_queue(bp, txr, txq)) + return NETDEV_TX_BUSY; } length = skb->len; @@ -597,16 +617,7 @@ if (netdev_xmit_more() && !tx_buf->is_push) bnxt_db_write(bp, &txr->tx_db, prod); - netif_tx_stop_queue(txq); - - /* netif_tx_stop_queue() must be done before checking - * tx index in bnxt_tx_avail() below, because in - * bnxt_tx_int(), we update tx index before checking for - * netif_tx_queue_stopped(). - */ - smp_mb(); - if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh) - netif_tx_wake_queue(txq); + bnxt_txr_netif_try_stop_queue(bp, txr, txq); } return NETDEV_TX_OK; @@ -690,14 +701,9 @@ smp_mb(); if (unlikely(netif_tx_queue_stopped(txq)) && - (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)) { - __netif_tx_lock(txq, smp_processor_id()); - if (netif_tx_queue_stopped(txq) && - bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh && - txr->dev_state != BNXT_DEV_STATE_CLOSING) - netif_tx_wake_queue(txq); - __netif_tx_unlock(txq); - } + bnxt_tx_avail(bp, txr) >= bp->tx_wake_thresh && + READ_ONCE(txr->dev_state) != BNXT_DEV_STATE_CLOSING) + netif_tx_wake_queue(txq); } static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping, @@ -1718,6 +1724,10 @@ if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons)) return -EBUSY; + /* The valid test of the entry must be done first before + * reading any further. + */ + dma_rmb(); prod = rxr->rx_prod; if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) { @@ -1912,6 +1922,10 @@ if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons)) return -EBUSY; + /* The valid test of the entry must be done first before + * reading any further. + */ + dma_rmb(); cmp_type = RX_CMP_TYPE(rxcmp); if (cmp_type == CMP_TYPE_RX_L2_CMP) { rxcmp1->rx_cmp_cfa_code_errors_v2 |= @@ -2192,7 +2206,7 @@ if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) { tx_pkts++; /* return full budget so NAPI will complete. */ - if (unlikely(tx_pkts > bp->tx_wake_thresh)) { + if (unlikely(tx_pkts >= bp->tx_wake_thresh)) { rx_pkts = budget; raw_cons = NEXT_RAW_CMP(raw_cons); if (budget) @@ -2308,6 +2322,10 @@ if (!TX_CMP_VALID(txcmp, raw_cons)) break; + /* The valid test of the entry must be done first before + * reading any further. + */ + dma_rmb(); if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) { tmp_raw_cons = NEXT_RAW_CMP(raw_cons); cp_cons = RING_CMP(tmp_raw_cons); @@ -3311,7 +3329,7 @@ u16 i; bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2, - MAX_SKB_FRAGS + 1); + BNXT_MIN_TX_DESC_CNT); for (i = 0; i < bp->tx_nr_rings; i++) { struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; @@ -7003,7 +7021,6 @@ pf->fw_fid = le16_to_cpu(resp->fid); pf->port_id = le16_to_cpu(resp->port_id); - bp->dev->dev_port = pf->port_id; memcpy(pf->mac_addr, resp->mac_address, ETH_ALEN); pf->first_vf_id = le16_to_cpu(resp->first_vf_id); pf->max_vfs = le16_to_cpu(resp->max_vfs); @@ -8341,10 +8358,9 @@ for (i = 0; i < bp->cp_nr_rings; i++) { struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring; + napi_disable(&bp->bnapi[i]->napi); if (bp->bnapi[i]->rx_ring) cancel_work_sync(&cpr->dim.work); - - napi_disable(&bp->bnapi[i]->napi); } } @@ -8372,9 +8388,11 @@ if (bp->tx_ring) { for (i = 0; i < bp->tx_nr_rings; i++) { txr = &bp->tx_ring[i]; - txr->dev_state = BNXT_DEV_STATE_CLOSING; + WRITE_ONCE(txr->dev_state, BNXT_DEV_STATE_CLOSING); } } + /* Make sure napi polls see @dev_state change */ + synchronize_net(); /* Drop carrier first to prevent TX timeout */ netif_carrier_off(bp->dev); /* Stop all TX queues */ @@ -8388,8 +8406,10 @@ for (i = 0; i < bp->tx_nr_rings; i++) { txr = &bp->tx_ring[i]; - txr->dev_state = 0; + WRITE_ONCE(txr->dev_state, 0); } + /* Make sure napi polls see @dev_state change */ + synchronize_net(); netif_tx_wake_all_queues(bp->dev); if (bp->link_info.link_up) netif_carrier_on(bp->dev); @@ -9240,6 +9260,12 @@ { int rc = 0; + if (test_bit(BNXT_STATE_ABORT_ERR, &bp->state)) { + netdev_err(bp->dev, "A previous firmware reset has not completed, aborting half open\n"); + rc = -ENODEV; + goto half_open_err; + } + rc = bnxt_alloc_mem(bp, false); if (rc) { netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc); @@ -9765,7 +9791,7 @@ if (bp->flags & BNXT_FLAG_CHIP_P5) return bnxt_rfs_supported(bp); - if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp)) + if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp) || !bp->rx_nr_rings) return false; vnics = 1 + bp->rx_nr_rings; @@ -9988,12 +10014,15 @@ if (netif_running(bp->dev)) { int rc; - if (!silent) + if (silent) { + bnxt_close_nic(bp, false, false); + bnxt_open_nic(bp, false, false); + } else { bnxt_ulp_stop(bp); - bnxt_close_nic(bp, false, false); - rc = bnxt_open_nic(bp, false, false); - if (!silent && !rc) - bnxt_ulp_start(bp); + bnxt_close_nic(bp, true, false); + rc = bnxt_open_nic(bp, true, false); + bnxt_ulp_start(bp, rc); + } } } @@ -10611,6 +10640,8 @@ bnxt_hwrm_coal_params_qcaps(bp); } +static int bnxt_probe_phy(struct bnxt *bp, bool fw_dflt); + static int bnxt_fw_init_one(struct bnxt *bp) { int rc; @@ -10625,6 +10656,9 @@ netdev_err(bp->dev, "Firmware init phase 2 failed\n"); return rc; } + rc = bnxt_probe_phy(bp, false); + if (rc) + return rc; rc = bnxt_approve_mac(bp, bp->dev->dev_addr, false); if (rc) return rc; @@ -10728,6 +10762,10 @@ } bp->fw_reset_timestamp = jiffies; rtnl_lock(); + if (test_bit(BNXT_STATE_ABORT_ERR, &bp->state)) { + rtnl_unlock(); + goto fw_reset_abort; + } bnxt_fw_reset_close(bp); if (bp->fw_cap & BNXT_FW_CAP_ERR_RECOVER_RELOAD) { bp->fw_reset_state = BNXT_FW_RESET_STATE_POLL_FW_DOWN; @@ -11687,10 +11725,9 @@ goto init_dflt_ring_err; bp->tx_nr_rings_per_tc = bp->tx_nr_rings; - if (bnxt_rfs_supported(bp) && bnxt_rfs_capable(bp)) { - bp->flags |= BNXT_FLAG_RFS; - bp->dev->features |= NETIF_F_NTUPLE; - } + + bnxt_set_dflt_rfs(bp); + init_dflt_ring_err: bnxt_ulp_irq_restart(bp, rc); return rc; @@ -11959,6 +11996,7 @@ init_err_pci_clean: bnxt_free_hwrm_short_cmd_req(bp); bnxt_free_hwrm_resources(bp); + bnxt_ethtool_free(bp); kfree(bp->fw_health); bp->fw_health = NULL; bnxt_cleanup_pci(bp); @@ -12139,10 +12177,9 @@ if (!err && netif_running(netdev)) err = bnxt_open(netdev); - if (!err) { + if (!err) result = PCI_ERS_RESULT_RECOVERED; - bnxt_ulp_start(bp); - } + bnxt_ulp_start(bp, err); } if (result != PCI_ERS_RESULT_RECOVERED) { diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.h linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.h --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.h +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt.h @@ -559,7 +559,8 @@ #define BNXT_MAX_MTU 9500 #define BNXT_MAX_PAGE_MODE_MTU \ ((unsigned int)PAGE_SIZE - VLAN_ETH_HLEN - NET_IP_ALIGN - \ - XDP_PACKET_HEADROOM) + XDP_PACKET_HEADROOM - \ + SKB_DATA_ALIGN((unsigned int)sizeof(struct skb_shared_info))) #define BNXT_MIN_PKT_SIZE 52 @@ -601,6 +602,11 @@ #define BNXT_MAX_RX_JUM_DESC_CNT (RX_DESC_CNT * MAX_RX_AGG_PAGES - 1) #define BNXT_MAX_TX_DESC_CNT (TX_DESC_CNT * MAX_TX_PAGES - 1) +/* Minimum TX BDs for a TX packet with MAX_SKB_FRAGS + 1. We need one extra + * BD because the first TX BD is always a long BD. + */ +#define BNXT_MIN_TX_DESC_CNT (MAX_SKB_FRAGS + 2) + #define RX_RING(x) (((x) & ~(RX_DESC_CNT - 1)) >> (BNXT_PAGE_SHIFT - 4)) #define RX_IDX(x) ((x) & (RX_DESC_CNT - 1)) diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c @@ -744,7 +744,7 @@ if ((ering->rx_pending > BNXT_MAX_RX_DESC_CNT) || (ering->tx_pending > BNXT_MAX_TX_DESC_CNT) || - (ering->tx_pending <= MAX_SKB_FRAGS)) + (ering->tx_pending < BNXT_MIN_TX_DESC_CNT)) return -EINVAL; if (netif_running(dev)) @@ -1673,9 +1673,7 @@ } link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL; - if (bp->hwrm_spec_code >= 0x10201) - link_info->req_flow_ctrl = - PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE; + link_info->req_flow_ctrl = 0; } else { /* when transition from auto pause to force pause, * force a link change diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c @@ -597,7 +597,7 @@ hw_resc->max_stat_ctxs -= le16_to_cpu(req.min_stat_ctx) * n; hw_resc->max_vnics -= le16_to_cpu(req.min_vnics) * n; if (bp->flags & BNXT_FLAG_CHIP_P5) - hw_resc->max_irqs -= vf_msix * n; + hw_resc->max_nqs -= vf_msix; rc = pf->active_vfs; } diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c @@ -186,7 +186,7 @@ edev->ulp_tbl[ulp_id].msix_requested = 0; edev->flags &= ~BNXT_EN_FLAG_MSIX_REQUESTED; - if (netif_running(dev)) { + if (netif_running(dev) && !(edev->flags & BNXT_EN_FLAG_ULP_STOPPED)) { bnxt_close_nic(bp, true, false); bnxt_open_nic(bp, true, false); } @@ -274,6 +274,7 @@ if (!edev) return; + edev->flags |= BNXT_EN_FLAG_ULP_STOPPED; for (i = 0; i < BNXT_MAX_ULP; i++) { struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; @@ -284,7 +285,7 @@ } } -void bnxt_ulp_start(struct bnxt *bp) +void bnxt_ulp_start(struct bnxt *bp, int err) { struct bnxt_en_dev *edev = bp->edev; struct bnxt_ulp_ops *ops; @@ -293,6 +294,11 @@ if (!edev) return; + edev->flags &= ~BNXT_EN_FLAG_ULP_STOPPED; + + if (err) + return; + for (i = 0; i < BNXT_MAX_ULP; i++) { struct bnxt_ulp *ulp = &edev->ulp_tbl[i]; @@ -468,12 +474,13 @@ return ERR_PTR(-ENOMEM); edev->en_ops = &bnxt_en_ops_tbl; - if (bp->flags & BNXT_FLAG_ROCEV1_CAP) - edev->flags |= BNXT_EN_FLAG_ROCEV1_CAP; - if (bp->flags & BNXT_FLAG_ROCEV2_CAP) - edev->flags |= BNXT_EN_FLAG_ROCEV2_CAP; edev->net = dev; edev->pdev = bp->pdev; bp->edev = edev; } + edev->flags &= ~BNXT_EN_FLAG_ROCE_CAP; + if (bp->flags & BNXT_FLAG_ROCEV1_CAP) + edev->flags |= BNXT_EN_FLAG_ROCEV1_CAP; + if (bp->flags & BNXT_FLAG_ROCEV2_CAP) + edev->flags |= BNXT_EN_FLAG_ROCEV2_CAP; return bp->edev; } diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -1187,7 +1187,8 @@ switch (mode) { case GENET_POWER_PASSIVE: - reg &= ~(EXT_PWR_DOWN_DLL | EXT_PWR_DOWN_BIAS); + reg &= ~(EXT_PWR_DOWN_DLL | EXT_PWR_DOWN_BIAS | + EXT_ENERGY_DET_MASK); if (GENET_IS_V5(priv)) { reg &= ~(EXT_PWR_DOWN_PHY_EN | EXT_PWR_DOWN_PHY_RD | @@ -1546,6 +1547,11 @@ return skb; } +static void bcmgenet_hide_tsb(struct sk_buff *skb) +{ + __skb_pull(skb, sizeof(struct status_64)); +} + static netdev_tx_t bcmgenet_xmit(struct sk_buff *skb, struct net_device *dev) { struct bcmgenet_priv *priv = netdev_priv(dev); @@ -1654,6 +1660,8 @@ } GENET_CB(skb)->last_cb = tx_cb_ptr; + + bcmgenet_hide_tsb(skb); skb_tx_timestamp(skb); /* Decrement total BD count and advance our write pointer */ @@ -2783,15 +2791,21 @@ /* Returns a reusable dma control register value */ static u32 bcmgenet_dma_disable(struct bcmgenet_priv *priv) { + unsigned int i; u32 reg; u32 dma_ctrl; /* disable DMA */ dma_ctrl = 1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT) | DMA_EN; + for (i = 0; i < priv->hw_params->tx_queues; i++) + dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT)); reg = bcmgenet_tdma_readl(priv, DMA_CTRL); reg &= ~dma_ctrl; bcmgenet_tdma_writel(priv, reg, DMA_CTRL); + dma_ctrl = 1 << (DESC_INDEX + DMA_RING_BUF_EN_SHIFT) | DMA_EN; + for (i = 0; i < priv->hw_params->rx_queues; i++) + dma_ctrl |= (1 << (i + DMA_RING_BUF_EN_SHIFT)); reg = bcmgenet_rdma_readl(priv, DMA_CTRL); reg &= ~dma_ctrl; bcmgenet_rdma_writel(priv, reg, DMA_CTRL); @@ -2895,12 +2909,6 @@ bcmgenet_set_hw_addr(priv, dev->dev_addr); - if (priv->internal_phy) { - reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT); - reg |= EXT_ENERGY_DET_MASK; - bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT); - } - /* Disable RX/TX DMA and flush TX queues */ dma_ctrl = bcmgenet_dma_disable(priv); @@ -3506,10 +3514,12 @@ /* Request the WOL interrupt and advertise suspend if available */ priv->wol_irq_disabled = true; - err = devm_request_irq(&pdev->dev, priv->wol_irq, bcmgenet_wol_isr, 0, - dev->name, priv); - if (!err) - device_set_wakeup_capable(&pdev->dev, 1); + if (priv->wol_irq > 0) { + err = devm_request_irq(&pdev->dev, priv->wol_irq, + bcmgenet_wol_isr, 0, dev->name, priv); + if (!err) + device_set_wakeup_capable(&pdev->dev, 1); + } /* Set the needed headroom to account for any possible * features enabling/disabling at runtime @@ -3617,7 +3627,6 @@ struct bcmgenet_priv *priv = netdev_priv(dev); unsigned long dma_ctrl; int ret; - u32 reg; if (!netif_running(dev)) return 0; @@ -3649,12 +3658,6 @@ bcmgenet_set_hw_addr(priv, dev->dev_addr); - if (priv->internal_phy) { - reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT); - reg |= EXT_ENERGY_DET_MASK; - bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT); - } - if (priv->wolopts) bcmgenet_power_up(priv, GENET_POWER_WOL_MAGIC); @@ -3743,0 +3747 @@ +MODULE_SOFTDEP("pre: mdio-bcm-unimac"); diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c @@ -41,6 +41,13 @@ void bcmgenet_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) { struct bcmgenet_priv *priv = netdev_priv(dev); + struct device *kdev = &priv->pdev->dev; + + if (!device_can_wakeup(kdev)) { + wol->supported = 0; + wol->wolopts = 0; + return; + } wol->supported = WAKE_MAGIC | WAKE_MAGICSECURE; wol->wolopts = priv->wolopts; @@ -160,12 +167,6 @@ reg |= CMD_RX_EN; bcmgenet_umac_writel(priv, reg, UMAC_CMD); - if (priv->hw_params->flags & GENET_HAS_EXT) { - reg = bcmgenet_ext_readl(priv, EXT_EXT_PWR_MGMT); - reg &= ~EXT_ENERGY_DET_MASK; - bcmgenet_ext_writel(priv, reg, EXT_EXT_PWR_MGMT); - } - return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/broadcom/tg3.c linux-azure-5.4.0/drivers/net/ethernet/broadcom/tg3.c --- linux-azure-5.4.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/tg3.c @@ -18154,16 +18154,20 @@ struct net_device *dev = pci_get_drvdata(pdev); struct tg3 *tp = netdev_priv(dev); + tg3_reset_task_cancel(tp); + rtnl_lock(); + netif_device_detach(dev); if (netif_running(dev)) dev_close(dev); - if (system_state == SYSTEM_POWER_OFF) - tg3_power_down(tp); + tg3_power_down(tp); rtnl_unlock(); + + pci_disable_device(pdev); } /** diff -u linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_main.c linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_main.c --- linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_main.c @@ -927,7 +927,6 @@ /* Make hw descriptor updates visible to CPU */ rmb(); - queue->rx_prepared_head++; desc = macb_rx_desc(queue, entry); if (!queue->rx_skbuff[entry]) { @@ -966,6 +965,7 @@ dma_wmb(); desc->addr &= ~MACB_BIT(RX_USED); } + queue->rx_prepared_head++; } /* Make descriptor updates visible to hardware */ @@ -1283,7 +1283,14 @@ if (work_done < budget) { napi_complete_done(napi, work_done); - /* Packets received while interrupts were disabled */ + /* RSR bits only seem to propagate to raise interrupts when + * interrupts are enabled at the time, so if bits are already + * set due to packets received while interrupts were disabled, + * they will not cause another interrupt to be generated when + * interrupts are re-enabled. + * Check for this case here. This has been seen to happen + * around 30% of the time under heavy network load. + */ status = macb_readl(bp, RSR); if (status) { if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) @@ -1291,6 +1298,22 @@ napi_reschedule(napi); } else { queue_writel(queue, IER, bp->rx_intr_mask); + + /* In rare cases, packets could have been received in + * the window between the check above and re-enabling + * interrupts. Therefore, a double-check is required + * to avoid losing a wakeup. This can potentially race + * with the interrupt handler doing the same actions + * if an interrupt is raised just after enabling them, + * but this should be harmless. + */ + status = macb_readl(bp, RSR); + if (unlikely(status)) { + queue_writel(queue, IDR, bp->rx_intr_mask); + if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) + queue_writel(queue, ISR, MACB_BIT(RCOMP)); + napi_schedule(napi); + } } } @@ -1355,6 +1378,7 @@ unsigned int head = queue->tx_head; unsigned int tail = queue->tx_tail; struct macb *bp = queue->bp; + unsigned int head_idx, tbqp; if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) queue_writel(queue, ISR, MACB_BIT(TXUBR)); @@ -1362,6 +1386,13 @@ if (head == tail) return; + tbqp = queue_readl(queue, TBQP) / macb_dma_desc_get_size(bp); + tbqp = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, tbqp)); + head_idx = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, head)); + + if (tbqp == head_idx) + return; + macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART)); } @@ -2536,6 +2567,9 @@ struct gem_stats *hwstat = &bp->hw_stats.gem; struct net_device_stats *nstat = &bp->dev->stats; + if (!netif_running(bp->dev)) + return nstat; + gem_update_stats(bp); nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors + @@ -4281,7 +4315,7 @@ #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) { - dma_set_mask(&pdev->dev, DMA_BIT_MASK(44)); + dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(44)); bp->hw_dma_cap |= HW_DMA_CAP_64B; } #endif diff -u linux-azure-5.4.0/drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c linux-azure-5.4.0/drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c --- linux-azure-5.4.0/drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c +++ linux-azure-5.4.0/drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c @@ -420,7 +420,7 @@ * bits 32:47 indicate the PVF num. */ for (q_no = 0; q_no < ern; q_no++) { - reg_val = oct->pcie_port << CN23XX_PKT_INPUT_CTL_MAC_NUM_POS; + reg_val = (u64)oct->pcie_port << CN23XX_PKT_INPUT_CTL_MAC_NUM_POS; /* for VF assigned queues. */ if (q_no < oct->sriov_info.pf_srn) { diff -u linux-azure-5.4.0/drivers/net/ethernet/cavium/thunder/nicvf_main.c linux-azure-5.4.0/drivers/net/ethernet/cavium/thunder/nicvf_main.c --- linux-azure-5.4.0/drivers/net/ethernet/cavium/thunder/nicvf_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/cavium/thunder/nicvf_main.c @@ -1226,7 +1226,7 @@ if (ret < 0) { netdev_err(nic->netdev, "Req for #%d msix vectors failed\n", nic->num_vec); - return 1; + return ret; } sprintf(nic->irq_name[irq], "%s Mbox", "NICVF"); @@ -1245,7 +1245,7 @@ if (!nicvf_check_pf_ready(nic)) { nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0); nicvf_unregister_interrupts(nic); - return 1; + return -EIO; } return 0; diff -u linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c @@ -1466,12 +1466,15 @@ if (ret) return ret; - if (!sff8472_comp || (sff_diag_type & 4)) { + if (!sff8472_comp || (sff_diag_type & SFP_DIAG_ADDRMODE)) { modinfo->type = ETH_MODULE_SFF_8079; modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN; } else { modinfo->type = ETH_MODULE_SFF_8472; - modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN; + if (sff_diag_type & SFP_DIAG_IMPLEMENTED) + modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN; + else + modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN / 2; } break; diff -u linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c --- linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c @@ -198,7 +198,7 @@ WORD_MASK, f->fs.nat_lip[3] | f->fs.nat_lip[2] << 8 | f->fs.nat_lip[1] << 16 | - (u64)f->fs.nat_lip[0] << 25, 1); + (u64)f->fs.nat_lip[0] << 24, 1); } } diff -u linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c --- linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c @@ -2245,6 +2245,9 @@ { unsigned int i; + if (!is_uld(adap)) + return; + mutex_lock(&uld_mutex); list_del(&adap->list_node); @@ -6152,10 +6155,13 @@ */ destroy_workqueue(adapter->workq); - if (is_uld(adapter)) { - detach_ulds(adapter); - t4_uld_clean_up(adapter); - } + detach_ulds(adapter); + + for_each_port(adapter, i) + if (adapter->port[i]->reg_state == NETREG_REGISTERED) + unregister_netdev(adapter->port[i]); + + t4_uld_clean_up(adapter); adap_free_hma_mem(adapter); @@ -6163,10 +6169,6 @@ cxgb4_free_mps_ref_entries(adapter); - for_each_port(adapter, i) - if (adapter->port[i]->reg_state == NETREG_REGISTERED) - unregister_netdev(adapter->port[i]); - debugfs_remove_recursive(adapter->debugfs_root); if (!is_t4(adapter->params.chip)) diff -u linux-azure-5.4.0/drivers/net/ethernet/cortina/gemini.c linux-azure-5.4.0/drivers/net/ethernet/cortina/gemini.c --- linux-azure-5.4.0/drivers/net/ethernet/cortina/gemini.c +++ linux-azure-5.4.0/drivers/net/ethernet/cortina/gemini.c @@ -304,21 +304,21 @@ switch (phydev->speed) { case 1000: status.bits.speed = GMAC_SPEED_1000; - if (phydev->interface == PHY_INTERFACE_MODE_RGMII) + if (phy_interface_mode_is_rgmii(phydev->interface)) status.bits.mii_rmii = GMAC_PHY_RGMII_1000; netdev_dbg(netdev, "connect %s to RGMII @ 1Gbit\n", phydev_name(phydev)); break; case 100: status.bits.speed = GMAC_SPEED_100; - if (phydev->interface == PHY_INTERFACE_MODE_RGMII) + if (phy_interface_mode_is_rgmii(phydev->interface)) status.bits.mii_rmii = GMAC_PHY_RGMII_100_10; netdev_dbg(netdev, "connect %s to RGMII @ 100 Mbit\n", phydev_name(phydev)); break; case 10: status.bits.speed = GMAC_SPEED_10; - if (phydev->interface == PHY_INTERFACE_MODE_RGMII) + if (phy_interface_mode_is_rgmii(phydev->interface)) status.bits.mii_rmii = GMAC_PHY_RGMII_100_10; netdev_dbg(netdev, "connect %s to RGMII @ 10 Mbit\n", phydev_name(phydev)); @@ -388,6 +388,9 @@ status.bits.mii_rmii = GMAC_PHY_GMII; break; case PHY_INTERFACE_MODE_RGMII: + case PHY_INTERFACE_MODE_RGMII_ID: + case PHY_INTERFACE_MODE_RGMII_TXID: + case PHY_INTERFACE_MODE_RGMII_RXID: netdev_dbg(netdev, "RGMII: set GMAC0 and GMAC1 to MII/RGMII mode\n"); status.bits.mii_rmii = GMAC_PHY_RGMII_100_10; diff -u linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/de4x5.c linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/de4x5.c --- linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/de4x5.c +++ linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/de4x5.c @@ -4708,6 +4708,10 @@ lp->ibn = 3; lp->active = *p++; if (MOTO_SROM_BUG) lp->active = 0; + /* if (MOTO_SROM_BUG) statement indicates lp->active could + * be 8 (i.e. the size of array lp->phy) */ + if (WARN_ON(lp->active >= ARRAY_SIZE(lp->phy))) + return -EINVAL; lp->phy[lp->active].gep = (*p ? p : NULL); p += (2 * (*p) + 1); lp->phy[lp->active].rst = (*p ? p : NULL); p += (2 * (*p) + 1); lp->phy[lp->active].mc = get_unaligned_le16(p); p += 2; @@ -4999,19 +5003,23 @@ } if ((j == limit) && (i < DE4X5_MAX_MII)) { for (k=0; k < DE4X5_MAX_PHY && lp->phy[k].id; k++); - lp->phy[k].addr = i; - lp->phy[k].id = id; - lp->phy[k].spd.reg = GENERIC_REG; /* ANLPA register */ - lp->phy[k].spd.mask = GENERIC_MASK; /* 100Mb/s technologies */ - lp->phy[k].spd.value = GENERIC_VALUE; /* TX & T4, H/F Duplex */ - lp->mii_cnt++; - lp->active++; - printk("%s: Using generic MII device control. If the board doesn't operate,\nplease mail the following dump to the author:\n", dev->name); - j = de4x5_debug; - de4x5_debug |= DEBUG_MII; - de4x5_dbg_mii(dev, k); - de4x5_debug = j; - printk("\n"); + if (k < DE4X5_MAX_PHY) { + lp->phy[k].addr = i; + lp->phy[k].id = id; + lp->phy[k].spd.reg = GENERIC_REG; /* ANLPA register */ + lp->phy[k].spd.mask = GENERIC_MASK; /* 100Mb/s technologies */ + lp->phy[k].spd.value = GENERIC_VALUE; /* TX & T4, H/F Duplex */ + lp->mii_cnt++; + lp->active++; + printk("%s: Using generic MII device control. If the board doesn't operate,\nplease mail the following dump to the author:\n", dev->name); + j = de4x5_debug; + de4x5_debug |= DEBUG_MII; + de4x5_dbg_mii(dev, k); + de4x5_debug = j; + printk("\n"); + } else { + goto purgatory; + } } } purgatory: diff -u linux-azure-5.4.0/drivers/net/ethernet/faraday/ftgmac100.c linux-azure-5.4.0/drivers/net/ethernet/faraday/ftgmac100.c --- linux-azure-5.4.0/drivers/net/ethernet/faraday/ftgmac100.c +++ linux-azure-5.4.0/drivers/net/ethernet/faraday/ftgmac100.c @@ -1734,6 +1734,19 @@ FTGMAC_100MHZ); } +static bool ftgmac100_has_child_node(struct device_node *np, const char *name) +{ + struct device_node *child_np = of_get_child_by_name(np, name); + bool ret = false; + + if (child_np) { + ret = true; + of_node_put(child_np); + } + + return ret; +} + static int ftgmac100_probe(struct platform_device *pdev) { struct resource *res; @@ -1821,14 +1834,17 @@ if (np && of_get_property(np, "use-ncsi", NULL)) { if (!IS_ENABLED(CONFIG_NET_NCSI)) { dev_err(&pdev->dev, "NCSI stack not enabled\n"); + err = -EINVAL; goto err_ncsi_dev; } dev_info(&pdev->dev, "Using NCSI interface\n"); priv->use_ncsi = true; priv->ndev = ncsi_register_dev(netdev, ftgmac100_ncsi_handler); - if (!priv->ndev) + if (!priv->ndev) { + err = -EINVAL; goto err_ncsi_dev; + } } else if (np && of_get_property(np, "phy-handle", NULL)) { struct phy_device *phy; @@ -1836,6 +1852,7 @@ &ftgmac100_adjust_link); if (!phy) { dev_err(&pdev->dev, "Failed to connect to phy\n"); + err = -EINVAL; goto err_setup_mdio; } @@ -1846,7 +1863,7 @@ /* Display what we found */ phy_attached_info(phy); - } else if (np && !of_get_child_by_name(np, "mdio")) { + } else if (np && !ftgmac100_has_child_node(np, "mdio")) { /* Support legacy ASPEED devicetree descriptions that decribe a * MAC with an embedded MDIO controller but have no "mdio" * child node. Automatically scan the MDIO bus for available @@ -1876,6 +1893,11 @@ /* AST2400 doesn't have working HW checksum generation */ if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac"))) netdev->hw_features &= ~NETIF_F_HW_CSUM; + + /* AST2600 tx checksum with NCSI is broken */ + if (priv->use_ncsi && of_device_is_compatible(np, "aspeed,ast2600-mac")) + netdev->hw_features &= ~NETIF_F_HW_CSUM; + if (np && of_get_property(np, "no-hw-checksum", NULL)) netdev->hw_features &= ~(NETIF_F_HW_CSUM | NETIF_F_RXCSUM); netdev->features |= netdev->hw_features; diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c @@ -971,8 +971,8 @@ buf_array[i] = addr; /* tracing point */ - trace_dpaa2_eth_buf_seed(priv->net_dev, - page, DPAA2_ETH_RX_BUF_RAW_SIZE, + trace_dpaa2_eth_buf_seed(priv->net_dev, page_address(page), + DPAA2_ETH_RX_BUF_RAW_SIZE, addr, priv->rx_buf_size, bpid); } @@ -3616,10 +3616,10 @@ fsl_mc_portal_free(priv->mc_io); - free_netdev(net_dev); - dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name); + free_netdev(net_dev); + return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c @@ -148,7 +148,7 @@ base = of_iomap(node, 0); if (!base) { err = -ENOMEM; - goto err_close; + goto err_put; } err = fsl_mc_allocate_irqs(mc_dev); @@ -191,6 +191,8 @@ fsl_mc_free_irqs(mc_dev); err_unmap: iounmap(base); +err_put: + of_node_put(node); err_close: dprtc_close(mc_dev->mc_io, 0, mc_dev->mc_handle); err_free_mcp: diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc.c linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc.c @@ -1146,7 +1146,12 @@ enetc_rxbdr_wr(hw, idx, ENETC_RBBSR, ENETC_RXB_DMA_SIZE); + /* Also prepare the consumer index in case page allocation never + * succeeds. In that case, hardware will never advance producer index + * to match consumer index, and will drop all frames. + */ enetc_rxbdr_wr(hw, idx, ENETC_RBPIR, 0); + enetc_rxbdr_wr(hw, idx, ENETC_RBCIR, 1); /* enable Rx ints by setting pkt thr to 1 */ enetc_rxbdr_wr(hw, idx, ENETC_RBICIR0, ENETC_RBICIR0_ICEN | 0x1); @@ -1222,7 +1227,6 @@ static int enetc_setup_irqs(struct enetc_ndev_priv *priv) { struct pci_dev *pdev = priv->si->pdev; - cpumask_t cpu_mask; int i, j, err; for (i = 0; i < priv->bdr_int_num; i++) { @@ -1249,9 +1253,7 @@ enetc_wr(hw, ENETC_SIMSITRV(idx), entry); } - cpumask_clear(&cpu_mask); - cpumask_set_cpu(i % num_online_cpus(), &cpu_mask); - irq_set_affinity_hint(irq, &cpu_mask); + irq_set_affinity_hint(irq, get_cpu_mask(i % num_online_cpus())); } return 0; diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/enetc/enetc_ethtool.c @@ -155,7 +155,7 @@ { ENETC_PM0_TFRM, "MAC tx frames" }, { ENETC_PM0_TFCS, "MAC tx fcs errors" }, { ENETC_PM0_TVLAN, "MAC tx VLAN frames" }, - { ENETC_PM0_TERR, "MAC tx frames" }, + { ENETC_PM0_TERR, "MAC tx frame errors" }, { ENETC_PM0_TUCA, "MAC tx unicast frames" }, { ENETC_PM0_TMCA, "MAC tx multicast frames" }, { ENETC_PM0_TBCA, "MAC tx broadcast frames" }, diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/fec.h linux-azure-5.4.0/drivers/net/ethernet/freescale/fec.h --- linux-azure-5.4.0/drivers/net/ethernet/freescale/fec.h +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fec.h @@ -373,6 +373,9 @@ #define FEC_ENET_WAKEUP ((uint)0x00020000) /* Wakeup request */ #define FEC_ENET_TXF (FEC_ENET_TXF_0 | FEC_ENET_TXF_1 | FEC_ENET_TXF_2) #define FEC_ENET_RXF (FEC_ENET_RXF_0 | FEC_ENET_RXF_1 | FEC_ENET_RXF_2) +#define FEC_ENET_RXF_GET(X) (((X) == 0) ? FEC_ENET_RXF_0 : \ + (((X) == 1) ? FEC_ENET_RXF_1 : \ + FEC_ENET_RXF_2)) #define FEC_ENET_TS_AVAIL ((uint)0x00010000) #define FEC_ENET_TS_TIMER ((uint)0x00008000) diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_main.c linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_main.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_main.c @@ -626,7 +626,7 @@ dev_kfree_skb_any(skb); if (net_ratelimit()) netdev_err(ndev, "Tx DMA memory map failed\n"); - return NETDEV_TX_BUSY; + return NETDEV_TX_OK; } bdp->cbd_datlen = cpu_to_fec16(size); @@ -688,7 +688,7 @@ dev_kfree_skb_any(skb); if (net_ratelimit()) netdev_err(ndev, "Tx DMA memory map failed\n"); - return NETDEV_TX_BUSY; + return NETDEV_TX_OK; } } @@ -1444,7 +1444,7 @@ break; pkt_received++; - writel(FEC_ENET_RXF, fep->hwp + FEC_IEVENT); + writel(FEC_ENET_RXF_GET(queue_id), fep->hwp + FEC_IEVENT); /* Check for errors. */ status ^= BD_ENET_RX_LAST; @@ -3781,13 +3781,13 @@ if (of_phy_is_fixed_link(np)) of_phy_deregister_fixed_link(np); of_node_put(fep->phy_node); - free_netdev(ndev); clk_disable_unprepare(fep->clk_ahb); clk_disable_unprepare(fep->clk_ipg); pm_runtime_put_noidle(&pdev->dev); pm_runtime_disable(&pdev->dev); + free_netdev(ndev); return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_ptp.c linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_ptp.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_ptp.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fec_ptp.c @@ -141,11 +141,7 @@ * NSEC_PER_SEC - ts.tv_nsec. Add the remaining nanoseconds * to current timer would be next second. */ - tempval = readl(fep->hwp + FEC_ATIME_CTRL); - tempval |= FEC_T_CTRL_CAPTURE; - writel(tempval, fep->hwp + FEC_ATIME_CTRL); - - tempval = readl(fep->hwp + FEC_ATIME); + tempval = fep->cc.read(&fep->cc); /* Convert the ptp local counter to 1588 timestamp */ ns = timecounter_cyc2time(&fep->tc, tempval); ts = ns_to_timespec64(ns); @@ -220,15 +216,13 @@ { struct fec_enet_private *fep = container_of(cc, struct fec_enet_private, cc); - const struct platform_device_id *id_entry = - platform_get_device_id(fep->pdev); u32 tempval; tempval = readl(fep->hwp + FEC_ATIME_CTRL); tempval |= FEC_T_CTRL_CAPTURE; writel(tempval, fep->hwp + FEC_ATIME_CTRL); - if (id_entry->driver_data & FEC_QUIRK_BUG_CAPTURE) + if (fep->quirks & FEC_QUIRK_BUG_CAPTURE) udelay(1); return readl(fep->hwp + FEC_ATIME); @@ -599,6 +593,10 @@ fep->ptp_caps.enable = fec_ptp_enable; fep->cycle_speed = clk_get_rate(fep->clk_ptp); + if (!fep->cycle_speed) { + fep->cycle_speed = NSEC_PER_SEC; + dev_err(&fep->pdev->dev, "clk_ptp clock rate is zero\n"); + } fep->ptp_inc = NSEC_PER_SEC / fep->cycle_speed; spin_lock_init(&fep->tmreg_lock); diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/fman/fman_port.c linux-azure-5.4.0/drivers/net/ethernet/freescale/fman/fman_port.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/fman/fman_port.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fman/fman_port.c @@ -1791,7 +1791,7 @@ fman = dev_get_drvdata(&fm_pdev->dev); if (!fman) { err = -EINVAL; - goto return_err; + goto put_device; } err = of_property_read_u32(port_node, "cell-index", &val); @@ -1799,7 +1799,7 @@ dev_err(port->dev, "%s: reading cell-index for %pOF failed\n", __func__, port_node); err = -EINVAL; - goto return_err; + goto put_device; } port_id = (u8)val; port->dts_params.id = port_id; @@ -1833,7 +1833,7 @@ } else { dev_err(port->dev, "%s: Illegal port type\n", __func__); err = -EINVAL; - goto return_err; + goto put_device; } port->dts_params.type = port_type; @@ -1847,7 +1847,7 @@ dev_err(port->dev, "%s: incorrect qman-channel-id\n", __func__); err = -EINVAL; - goto return_err; + goto put_device; } port->dts_params.qman_channel_id = qman_channel_id; } @@ -1857,7 +1857,7 @@ dev_err(port->dev, "%s: of_address_to_resource() failed\n", __func__); err = -ENOMEM; - goto return_err; + goto put_device; } port->dts_params.fman = fman; @@ -1882,6 +1882,8 @@ return 0; +put_device: + put_device(&fm_pdev->dev); return_err: of_node_put(port_node); free_port: diff -u linux-azure-5.4.0/drivers/net/ethernet/freescale/xgmac_mdio.c linux-azure-5.4.0/drivers/net/ethernet/freescale/xgmac_mdio.c --- linux-azure-5.4.0/drivers/net/ethernet/freescale/xgmac_mdio.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/xgmac_mdio.c @@ -301,9 +301,10 @@ static int xgmac_mdio_remove(struct platform_device *pdev) { struct mii_bus *bus = platform_get_drvdata(pdev); + struct mdio_fsl_priv *priv = bus->priv; mdiobus_unregister(bus); - iounmap(bus->priv); + iounmap(priv->mdio_base); mdiobus_free(bus); return 0; diff -u linux-azure-5.4.0/drivers/net/ethernet/google/gve/gve_main.c linux-azure-5.4.0/drivers/net/ethernet/google/gve/gve_main.c --- linux-azure-5.4.0/drivers/net/ethernet/google/gve/gve_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/google/gve/gve_main.c @@ -30,6 +30,7 @@ { struct gve_priv *priv = netdev_priv(dev); unsigned int start; + u64 packets, bytes; int ring; if (priv->rx) { @@ -37,10 +38,12 @@ do { start = u64_stats_fetch_begin(&priv->rx[ring].statss); - s->rx_packets += priv->rx[ring].rpackets; - s->rx_bytes += priv->rx[ring].rbytes; + packets = priv->rx[ring].rpackets; + bytes = priv->rx[ring].rbytes; } while (u64_stats_fetch_retry(&priv->rx[ring].statss, start)); + s->rx_packets += packets; + s->rx_bytes += bytes; } } if (priv->tx) { @@ -48,10 +51,12 @@ do { start = u64_stats_fetch_begin(&priv->tx[ring].statss); - s->tx_packets += priv->tx[ring].pkt_done; - s->tx_bytes += priv->tx[ring].bytes_done; + packets = priv->tx[ring].pkt_done; + bytes = priv->tx[ring].bytes_done; } while (u64_stats_fetch_retry(&priv->tx[ring].statss, start)); + s->tx_packets += packets; + s->tx_bytes += bytes; } } } @@ -1118,8 +1123,8 @@ gve_write_version(®_bar->driver_version); /* Get max queues to alloc etherdev */ - max_rx_queues = ioread32be(®_bar->max_tx_queues); - max_tx_queues = ioread32be(®_bar->max_rx_queues); + max_tx_queues = ioread32be(®_bar->max_tx_queues); + max_rx_queues = ioread32be(®_bar->max_rx_queues); /* Alloc and setup the netdev and priv */ dev = alloc_etherdev_mqs(sizeof(*priv), max_tx_queues, max_rx_queues); if (!dev) { @@ -1170,13 +1175,16 @@ err = register_netdev(dev); if (err) - goto abort_with_wq; + goto abort_with_gve_init; dev_info(&pdev->dev, "GVE version %s\n", gve_version_str); gve_clear_probe_in_progress(priv); queue_work(priv->gve_wq, &priv->service_task); return 0; +abort_with_gve_init: + gve_teardown_priv_resources(priv); + abort_with_wq: destroy_workqueue(priv->gve_wq); diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hip04_eth.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hip04_eth.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hip04_eth.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hip04_eth.c @@ -131,7 +131,7 @@ /* buf unit size is cache_line_size, which is 64, so the shift is 6 */ #define PPE_BUF_SIZE_SHIFT 6 #define PPE_TX_BUF_HOLD BIT(31) -#define CACHE_LINE_MASK 0x3F +#define SOC_CACHE_LINE_MASK 0x3F #else #define PPE_CFG_QOS_VMID_GRP_SHIFT 8 #define PPE_CFG_RX_CTRL_ALIGN_SHIFT 11 @@ -531,8 +531,8 @@ #if defined(CONFIG_HI13X1_GMAC) desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV | TX_RELEASE_TO_PPE | priv->port << TX_POOL_SHIFT); - desc->data_offset = (__force u32)cpu_to_be32(phys & CACHE_LINE_MASK); - desc->send_addr = (__force u32)cpu_to_be32(phys & ~CACHE_LINE_MASK); + desc->data_offset = (__force u32)cpu_to_be32(phys & SOC_CACHE_LINE_MASK); + desc->send_addr = (__force u32)cpu_to_be32(phys & ~SOC_CACHE_LINE_MASK); #else desc->cfg = (__force u32)cpu_to_be32(TX_CLEAR_WB | TX_FINISH_CACHE_INV); desc->send_addr = (__force u32)cpu_to_be32(phys); diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.c @@ -10,6 +10,27 @@ static LIST_HEAD(hnae3_client_list); static LIST_HEAD(hnae3_ae_dev_list); +void hnae3_unregister_ae_algo_prepare(struct hnae3_ae_algo *ae_algo) +{ + const struct pci_device_id *pci_id; + struct hnae3_ae_dev *ae_dev; + + if (!ae_algo) + return; + + list_for_each_entry(ae_dev, &hnae3_ae_dev_list, node) { + if (!hnae3_get_bit(ae_dev->flag, HNAE3_DEV_INITED_B)) + continue; + + pci_id = pci_match_id(ae_algo->pdev_id_table, ae_dev->pdev); + if (!pci_id) + continue; + if (IS_ENABLED(CONFIG_PCI_IOV)) + pci_disable_sriov(ae_dev->pdev); + } +} +EXPORT_SYMBOL(hnae3_unregister_ae_algo_prepare); + /* we are keeping things simple and using single lock for all the * list. This is a non-critical code so other updations, if happen * in parallel, can wait. diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h @@ -684,6 +684,7 @@ int hnae3_register_ae_dev(struct hnae3_ae_dev *ae_dev); void hnae3_unregister_ae_dev(struct hnae3_ae_dev *ae_dev); +void hnae3_unregister_ae_algo_prepare(struct hnae3_ae_algo *ae_algo); void hnae3_unregister_ae_algo(struct hnae3_ae_algo *ae_algo); void hnae3_register_ae_algo(struct hnae3_ae_algo *ae_algo); diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -62,6 +62,7 @@ #define HNS3_OUTER_VLAN_TAG 2 #define HNS3_MIN_TX_LEN 33U +#define HNS3_MIN_TUN_PKT_LEN 65U /* hns3_pci_tbl - PCI Device ID Table * @@ -444,6 +445,11 @@ if (hns3_nic_resetting(netdev)) return -EBUSY; + if (!test_bit(HNS3_NIC_STATE_DOWN, &priv->state)) { + netdev_warn(netdev, "net open repeatedly!\n"); + return 0; + } + netif_carrier_off(netdev); ret = hns3_nic_set_real_num_queue(netdev); @@ -921,8 +927,11 @@ l4.tcp->doff); break; case IPPROTO_UDP: - if (hns3_tunnel_csum_bug(skb)) - return skb_checksum_help(skb); + if (hns3_tunnel_csum_bug(skb)) { + int ret = skb_put_padto(skb, HNS3_MIN_TUN_PKT_LEN); + + return ret ? ret : skb_checksum_help(skb); + } hns3_set_field(*type_cs_vlan_tso, HNS3_TXD_L4CS_B, 1); hns3_set_field(*type_cs_vlan_tso, HNS3_TXD_L4T_S, diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h @@ -261,6 +261,9 @@ /* Led command */ HCLGE_OPC_LED_STATUS_CFG = 0xB000, + /* clear hardware resource command */ + HCLGE_OPC_CLEAR_HW_RESOURCE = 0x700B, + /* NCL config command */ HCLGE_OPC_QUERY_NCL_CONFIG = 0x7011, diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c @@ -124,7 +124,7 @@ if (ret) return ret; - for (i = 0; i < hdev->tc_max; i++) { + for (i = 0; i < HNAE3_MAX_TC; i++) { switch (ets->tc_tsa[i]) { case IEEE_8021QAZ_TSA_STRICT: if (hdev->tm_info.tc_info[i].tc_sch_mode != @@ -132,6 +132,15 @@ *changed = true; break; case IEEE_8021QAZ_TSA_ETS: + /* The hardware will switch to sp mode if bandwidth is + * 0, so limit ets bandwidth must be greater than 0. + */ + if (!ets->tc_tx_bw[i]) { + dev_err(&hdev->pdev->dev, + "tc%u ets bw cannot be 0\n", i); + return -EINVAL; + } + if (hdev->tm_info.tc_info[i].tc_sch_mode != HCLGE_SCH_MODE_DWRR) *changed = true; @@ -281,21 +290,12 @@ u64 requests[HNAE3_MAX_TC], indications[HNAE3_MAX_TC]; struct hclge_vport *vport = hclge_get_vport(h); struct hclge_dev *hdev = vport->back; - u8 i, j, pfc_map, *prio_tc; int ret; + u8 i; memset(pfc, 0, sizeof(*pfc)); pfc->pfc_cap = hdev->pfc_max; - prio_tc = hdev->tm_info.prio_tc; - pfc_map = hdev->tm_info.hw_pfc_map; - - /* Pfc setting is based on TC */ - for (i = 0; i < hdev->tm_info.num_tc; i++) { - for (j = 0; j < HNAE3_MAX_USER_PRIO; j++) { - if ((prio_tc[j] == i) && (pfc_map & BIT(i))) - pfc->pfc_en |= BIT(j); - } - } + pfc->pfc_en = hdev->tm_info.pfc_en; ret = hclge_pfc_tx_stats_get(hdev, requests); if (ret) diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -1363,9 +1363,10 @@ static int hclge_configure(struct hclge_dev *hdev) { + const struct cpumask *cpumask = cpu_online_mask; struct hclge_cfg cfg; unsigned int i; - int ret; + int node, ret; ret = hclge_get_cfg(hdev, &cfg); if (ret) { @@ -1427,11 +1428,12 @@ hclge_init_kdump_kernel_config(hdev); - /* Set the init affinity based on pci func number */ - i = cpumask_weight(cpumask_of_node(dev_to_node(&hdev->pdev->dev))); - i = i ? PCI_FUNC(hdev->pdev->devfn) % i : 0; - cpumask_set_cpu(cpumask_local_spread(i, dev_to_node(&hdev->pdev->dev)), - &hdev->affinity_mask); + /* Set the affinity based on numa node */ + node = dev_to_node(&hdev->pdev->dev); + if (node != NUMA_NO_NODE) + cpumask = cpumask_of_node(node); + + cpumask_copy(&hdev->affinity_mask, cpumask); return ret; } @@ -6824,11 +6826,12 @@ hclge_clear_arfs_rules(handle); spin_unlock_bh(&hdev->fd_rule_lock); - /* If it is not PF reset, the firmware will disable the MAC, + /* If it is not PF reset or FLR, the firmware will disable the MAC, * so it only need to stop phy here. */ if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) && - hdev->reset_type != HNAE3_FUNC_RESET) { + hdev->reset_type != HNAE3_FUNC_RESET && + hdev->reset_type != HNAE3_FLR_RESET) { hclge_mac_stop_phy(hdev); hclge_update_link_status(hdev); return; @@ -8230,7 +8233,11 @@ static void hclge_add_vport_vlan_table(struct hclge_vport *vport, u16 vlan_id, bool writen_to_tbl) { - struct hclge_vport_vlan_cfg *vlan; + struct hclge_vport_vlan_cfg *vlan, *tmp; + + list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) + if (vlan->vlan_id == vlan_id) + return; vlan = kzalloc(sizeof(*vlan), GFP_KERNEL); if (!vlan) @@ -8576,11 +8583,11 @@ } if (!ret) { - if (is_kill) - hclge_rm_vport_vlan_table(vport, vlan_id, false); - else + if (!is_kill) hclge_add_vport_vlan_table(vport, vlan_id, writen_to_tbl); + else if (is_kill && vlan_id != 0) + hclge_rm_vport_vlan_table(vport, vlan_id, false); } else if (is_kill) { /* when remove hw vlan filter failed, record the vlan id, * and try to remove it from hw later, to be consistence @@ -9423,6 +9430,28 @@ } } +static int hclge_clear_hw_resource(struct hclge_dev *hdev) +{ + struct hclge_desc desc; + int ret; + + hclge_cmd_setup_basic_desc(&desc, HCLGE_OPC_CLEAR_HW_RESOURCE, false); + + ret = hclge_cmd_send(&hdev->hw, &desc, 1); + /* This new command is only supported by new firmware, it will + * fail with older firmware. Error value -EOPNOSUPP can only be + * returned by older firmware running this command, to keep code + * backward compatible we will override this value and return + * success. + */ + if (ret && ret != -EOPNOTSUPP) { + dev_err(&hdev->pdev->dev, + "failed to clear hw resource, ret = %d\n", ret); + return ret; + } + return 0; +} + static int hclge_init_ae_dev(struct hnae3_ae_dev *ae_dev) { struct pci_dev *pdev = ae_dev->pdev; @@ -9466,6 +9495,10 @@ if (ret) goto err_cmd_uninit; + ret = hclge_clear_hw_resource(hdev); + if (ret) + goto err_cmd_uninit; + ret = hclge_get_cap(hdev); if (ret) { dev_err(&pdev->dev, "get hw capability error, ret = %d.\n", @@ -10731,6 +10764,7 @@ static void hclge_exit(void) { + hnae3_unregister_ae_algo_prepare(&ae_algo); hnae3_unregister_ae_algo(&ae_algo); destroy_workqueue(hclge_wq); } diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c @@ -64,6 +64,13 @@ enum hclge_cmd_status status; struct hclge_desc desc; + if (msg_len > HCLGE_MBX_MAX_MSG_SIZE) { + dev_err(&hdev->pdev->dev, + "msg data length(=%u) exceeds maximum(=%u)\n", + msg_len, HCLGE_MBX_MAX_MSG_SIZE); + return -EMSGSIZE; + } + resp_pf_to_vf = (struct hclge_mbx_pf_to_vf_cmd *)desc.data; hclge_cmd_setup_basic_desc(&desc, HCLGEVF_OPC_MBX_PF_TO_VF, false); diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c @@ -676,6 +676,8 @@ hdev->tm_info.pg_info[i].tc_bit_map = hdev->hw_tc_map; for (k = 0; k < hdev->tm_info.num_tc; k++) hdev->tm_info.pg_info[i].tc_dwrr[k] = BW_PERCENT; + for (; k < HNAE3_MAX_TC; k++) + hdev->tm_info.pg_info[i].tc_dwrr[k] = 0; } } @@ -1015,7 +1017,6 @@ static int hclge_tm_ets_tc_dwrr_cfg(struct hclge_dev *hdev) { -#define DEFAULT_TC_WEIGHT 1 #define DEFAULT_TC_OFFSET 14 struct hclge_ets_tc_weight_cmd *ets_weight; @@ -1028,13 +1029,7 @@ for (i = 0; i < HNAE3_MAX_TC; i++) { struct hclge_pg_info *pg_info; - ets_weight->tc_weight[i] = DEFAULT_TC_WEIGHT; - - if (!(hdev->hw_tc_map & BIT(i))) - continue; - - pg_info = - &hdev->tm_info.pg_info[hdev->tm_info.tc_info[i].pgid]; + pg_info = &hdev->tm_info.pg_info[hdev->tm_info.tc_info[i].pgid]; ets_weight->tc_weight[i] = pg_info->tc_dwrr[i]; } diff -u linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c --- linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -651,9 +651,9 @@ roundup_size = ilog2(roundup_size); for (i = 0; i < HCLGEVF_MAX_TC_NUM; i++) { - tc_valid[i] = !!(hdev->hw_tc_map & BIT(i)); + tc_valid[i] = 1; tc_size[i] = roundup_size; - tc_offset[i] = rss_size * i; + tc_offset[i] = (hdev->hw_tc_map & BIT(i)) ? rss_size * i : 0; } hclgevf_cmd_setup_basic_desc(&desc, HCLGEVF_OPC_RSS_TC_MODE, false); @@ -2018,6 +2018,8 @@ hclgevf_enable_vector(&hdev->misc_vector, false); event_cause = hclgevf_check_evt_cause(hdev, &clearval); + if (event_cause != HCLGEVF_VECTOR0_EVENT_OTHER) + hclgevf_clear_event_cause(hdev, clearval); switch (event_cause) { case HCLGEVF_VECTOR0_EVENT_RST: @@ -2030,10 +2032,7 @@ break; } - if (event_cause != HCLGEVF_VECTOR0_EVENT_OTHER) { - hclgevf_clear_event_cause(hdev, clearval); - hclgevf_enable_vector(&hdev->misc_vector, true); - } + hclgevf_enable_vector(&hdev->misc_vector, true); return IRQ_HANDLED; } @@ -2180,6 +2179,16 @@ static int hclgevf_init_vlan_config(struct hclgevf_dev *hdev) { + struct hnae3_handle *nic = &hdev->nic; + int ret; + + ret = hclgevf_en_hw_strip_rxvtag(nic, true); + if (ret) { + dev_err(&hdev->pdev->dev, + "failed to enable rx vlan offload, ret = %d\n", ret); + return ret; + } + return hclgevf_set_vlan_filter(&hdev->nic, htons(ETH_P_8021Q), 0, false); } diff -u linux-azure-5.4.0/drivers/net/ethernet/ibm/ibmvnic.c linux-azure-5.4.0/drivers/net/ethernet/ibm/ibmvnic.c --- linux-azure-5.4.0/drivers/net/ethernet/ibm/ibmvnic.c +++ linux-azure-5.4.0/drivers/net/ethernet/ibm/ibmvnic.c @@ -694,8 +694,11 @@ adapter->tso_pool = kcalloc(tx_subcrqs, sizeof(struct ibmvnic_tx_pool), GFP_KERNEL); - if (!adapter->tso_pool) + if (!adapter->tso_pool) { + kfree(adapter->tx_pool); + adapter->tx_pool = NULL; return -1; + } adapter->num_active_tx_pools = tx_subcrqs; @@ -1088,6 +1091,11 @@ netif_tx_start_all_queues(netdev); + if (prev_state == VNIC_CLOSED) { + for (i = 0; i < adapter->req_rx_queues; i++) + napi_schedule(&adapter->napi[i]); + } + adapter->state = VNIC_OPEN; return rc; } @@ -1454,8 +1462,6 @@ netdev_tx_t ret = NETDEV_TX_OK; if (test_bit(0, &adapter->resetting)) { - if (!netif_subqueue_stopped(netdev, skb)) - netif_stop_subqueue(netdev, queue_num); dev_kfree_skb_any(skb); tx_send_failed++; @@ -2242,8 +2248,10 @@ * flush reset queue and process this reset */ if (adapter->force_reset_recovery && !list_empty(&adapter->rwi_list)) { - list_for_each_safe(entry, tmp_entry, &adapter->rwi_list) + list_for_each_safe(entry, tmp_entry, &adapter->rwi_list) { list_del(entry); + kfree(list_entry(entry, struct ibmvnic_rwi, list)); + } } rwi->reset_reason = reason; list_add_tail(&rwi->list, &adapter->rwi_list); @@ -3252,11 +3260,25 @@ struct device *dev = &adapter->vdev->dev; union ibmvnic_crq crq; int max_entries; + int cap_reqs; + + /* We send out 6 or 7 REQUEST_CAPABILITY CRQs below (depending on + * the PROMISC flag). Initialize this count upfront. When the tasklet + * receives a response to all of these, it will send the next protocol + * message (QUERY_IP_OFFLOAD). + */ + if (!(adapter->netdev->flags & IFF_PROMISC) || + adapter->promisc_supported) + cap_reqs = 7; + else + cap_reqs = 6; if (!retry) { /* Sub-CRQ entries are 32 byte long */ int entries_page = 4 * PAGE_SIZE / (sizeof(u64) * 4); + atomic_set(&adapter->running_cap_crqs, cap_reqs); + if (adapter->min_tx_entries_per_subcrq > entries_page || adapter->min_rx_add_entries_per_subcrq > entries_page) { dev_err(dev, "Fatal, invalid entries per sub-crq\n"); @@ -3317,44 +3339,45 @@ adapter->opt_rx_comp_queues; adapter->req_rx_add_queues = adapter->max_rx_add_queues; + } else { + atomic_add(cap_reqs, &adapter->running_cap_crqs); } - memset(&crq, 0, sizeof(crq)); crq.request_capability.first = IBMVNIC_CRQ_CMD; crq.request_capability.cmd = REQUEST_CAPABILITY; crq.request_capability.capability = cpu_to_be16(REQ_TX_QUEUES); crq.request_capability.number = cpu_to_be64(adapter->req_tx_queues); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); crq.request_capability.capability = cpu_to_be16(REQ_RX_QUEUES); crq.request_capability.number = cpu_to_be64(adapter->req_rx_queues); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); crq.request_capability.capability = cpu_to_be16(REQ_RX_ADD_QUEUES); crq.request_capability.number = cpu_to_be64(adapter->req_rx_add_queues); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); crq.request_capability.capability = cpu_to_be16(REQ_TX_ENTRIES_PER_SUBCRQ); crq.request_capability.number = cpu_to_be64(adapter->req_tx_entries_per_subcrq); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); crq.request_capability.capability = cpu_to_be16(REQ_RX_ADD_ENTRIES_PER_SUBCRQ); crq.request_capability.number = cpu_to_be64(adapter->req_rx_add_entries_per_subcrq); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); crq.request_capability.capability = cpu_to_be16(REQ_MTU); crq.request_capability.number = cpu_to_be64(adapter->req_mtu); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); if (adapter->netdev->flags & IFF_PROMISC) { @@ -3362,16 +3385,21 @@ crq.request_capability.capability = cpu_to_be16(PROMISC_REQUESTED); crq.request_capability.number = cpu_to_be64(1); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); } } else { crq.request_capability.capability = cpu_to_be16(PROMISC_REQUESTED); crq.request_capability.number = cpu_to_be64(0); - atomic_inc(&adapter->running_cap_crqs); + cap_reqs--; ibmvnic_send_crq(adapter, &crq); } + + /* Keep at end to catch any discrepancy between expected and actual + * CRQs sent. + */ + WARN_ON(cap_reqs != 0); } static int pending_scrq(struct ibmvnic_adapter *adapter, @@ -3776,118 +3804,132 @@ static void send_cap_queries(struct ibmvnic_adapter *adapter) { union ibmvnic_crq crq; + int cap_reqs; + + /* We send out 25 QUERY_CAPABILITY CRQs below. Initialize this count + * upfront. When the tasklet receives a response to all of these, it + * can send out the next protocol messaage (REQUEST_CAPABILITY). + */ + cap_reqs = 25; + + atomic_set(&adapter->running_cap_crqs, cap_reqs); - atomic_set(&adapter->running_cap_crqs, 0); memset(&crq, 0, sizeof(crq)); crq.query_capability.first = IBMVNIC_CRQ_CMD; crq.query_capability.cmd = QUERY_CAPABILITY; crq.query_capability.capability = cpu_to_be16(MIN_TX_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MIN_RX_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MIN_RX_ADD_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_TX_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_RX_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_RX_ADD_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MIN_TX_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MIN_RX_ADD_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_TX_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_RX_ADD_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(TCP_IP_OFFLOAD); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(PROMISC_SUPPORTED); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MIN_MTU); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_MTU); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_MULTICAST_FILTERS); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(VLAN_HEADER_INSERTION); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(RX_VLAN_HEADER_INSERTION); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(MAX_TX_SG_ENTRIES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(RX_SG_SUPPORTED); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(OPT_TX_COMP_SUB_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(OPT_RX_COMP_QUEUES); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(OPT_RX_BUFADD_Q_PER_RX_COMP_Q); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(OPT_TX_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(OPT_RXBA_ENTRIES_PER_SUBCRQ); - atomic_inc(&adapter->running_cap_crqs); ibmvnic_send_crq(adapter, &crq); + cap_reqs--; crq.query_capability.capability = cpu_to_be16(TX_RX_DESC_REQ); - atomic_inc(&adapter->running_cap_crqs); + ibmvnic_send_crq(adapter, &crq); + cap_reqs--; + + /* Keep at end to catch any discrepancy between expected and actual + * CRQs sent. + */ + WARN_ON(cap_reqs != 0); } static void handle_vpd_size_rsp(union ibmvnic_crq *crq, @@ -4154,6 +4196,8 @@ char *name; atomic_dec(&adapter->running_cap_crqs); + netdev_dbg(adapter->netdev, "Outstanding request-caps: %d\n", + atomic_read(&adapter->running_cap_crqs)); switch (be16_to_cpu(crq->request_capability_rsp.capability)) { case REQ_TX_QUEUES: req_value = &adapter->req_tx_queues; @@ -4269,6 +4313,14 @@ return 0; } + if (adapter->failover_pending) { + adapter->init_done_rc = -EAGAIN; + netdev_dbg(netdev, "Failover pending, ignoring login response\n"); + complete(&adapter->init_done); + /* login response buffer will be released on reset */ + return 0; + } + netdev->mtu = adapter->req_mtu - ETH_HLEN; netdev_dbg(adapter->netdev, "Login Response Buffer:\n"); @@ -4773,12 +4825,6 @@ ibmvnic_handle_crq(crq, adapter); crq->generic.first = 0; } - - /* remain in tasklet until all - * capabilities responses are received - */ - if (!adapter->wait_capability) - done = true; } /* if capabilities CRQ's were sent in this tasklet, the following * tasklet must wait until all responses are received @@ -4920,6 +4966,9 @@ crq->cur = 0; spin_lock_init(&crq->lock); + /* process any CRQs that were queued before we enabled interrupts */ + tasklet_schedule(&adapter->tasklet); + return retrc; req_irq_failed: @@ -4973,6 +5022,15 @@ release_sub_crqs(adapter, 0); rc = init_sub_crqs(adapter); } else { + /* no need to reinitialize completely, but we do + * need to clean up transmits that were in flight + * when we processed the reset. Failure to do so + * will confound the upper layer, usually TCP, by + * creating the illusion of transmits that are + * awaiting completion. + */ + clean_tx_pools(adapter); + rc = reset_sub_crq_queues(adapter); } } else { diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/ich8lan.c linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/ich8lan.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/ich8lan.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/ich8lan.c @@ -995,6 +995,8 @@ { u32 reg = link << (E1000_LTRV_REQ_SHIFT + E1000_LTRV_NOSNOOP_SHIFT) | link << E1000_LTRV_REQ_SHIFT | E1000_LTRV_SEND; + u32 max_ltr_enc_d = 0; /* maximum LTR decoded by platform */ + u32 lat_enc_d = 0; /* latency decoded */ u16 lat_enc = 0; /* latency encoded */ if (link) { @@ -1048,7 +1050,17 @@ E1000_PCI_LTR_CAP_LPT + 2, &max_nosnoop); max_ltr_enc = max_t(u16, max_snoop, max_nosnoop); - if (lat_enc > max_ltr_enc) + lat_enc_d = (lat_enc & E1000_LTRV_VALUE_MASK) * + (1U << (E1000_LTRV_SCALE_FACTOR * + ((lat_enc & E1000_LTRV_SCALE_MASK) + >> E1000_LTRV_SCALE_SHIFT))); + + max_ltr_enc_d = (max_ltr_enc & E1000_LTRV_VALUE_MASK) * + (1U << (E1000_LTRV_SCALE_FACTOR * + ((max_ltr_enc & E1000_LTRV_SCALE_MASK) + >> E1000_LTRV_SCALE_SHIFT))); + + if (lat_enc_d > max_ltr_enc_d) lat_enc = max_ltr_enc; } @@ -4087,13 +4099,17 @@ return ret_val; if (!(data & valid_csum_mask)) { - data |= valid_csum_mask; - ret_val = e1000_write_nvm(hw, word, 1, &data); - if (ret_val) - return ret_val; - ret_val = e1000e_update_nvm_checksum(hw); - if (ret_val) - return ret_val; + e_dbg("NVM Checksum Invalid\n"); + + if (hw->mac.type < e1000_pch_cnp) { + data |= valid_csum_mask; + ret_val = e1000_write_nvm(hw, word, 1, &data); + if (ret_val) + return ret_val; + ret_val = e1000e_update_nvm_checksum(hw); + if (ret_val) + return ret_val; + } } return e1000e_validate_nvm_checksum_generic(hw); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/netdev.c linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/netdev.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/netdev.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/netdev.c @@ -5199,18 +5199,20 @@ pm_runtime_resume(netdev->dev.parent); /* Checking if MAC is in DMoff state*/ - pcim_state = er32(STATUS); - while (pcim_state & E1000_STATUS_PCIM_STATE) { - if (tries++ == dmoff_exit_timeout) { - e_dbg("Error in exiting dmoff\n"); - break; - } - usleep_range(10000, 20000); + if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID) { pcim_state = er32(STATUS); - - /* Checking if MAC exited DMoff state */ - if (!(pcim_state & E1000_STATUS_PCIM_STATE)) - e1000_phy_hw_reset(&adapter->hw); + while (pcim_state & E1000_STATUS_PCIM_STATE) { + if (tries++ == dmoff_exit_timeout) { + e_dbg("Error in exiting dmoff\n"); + break; + } + usleep_range(10000, 20000); + pcim_state = er32(STATUS); + + /* Checking if MAC exited DMoff state */ + if (!(pcim_state & E1000_STATUS_PCIM_STATE)) + e1000_phy_hw_reset(&adapter->hw); + } } /* update snapshot of PHY registers on LSC */ @@ -7581,6 +7583,7 @@ err_ioremap: free_netdev(netdev); err_alloc_etherdev: + pci_disable_pcie_error_reporting(pdev); pci_release_mem_regions(pdev); err_pci_reg: err_dma: diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e.h linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e.h @@ -169,6 +169,7 @@ __I40E_VSI_OVERFLOW_PROMISC, __I40E_VSI_REINIT_REQUESTED, __I40E_VSI_DOWN_REQUESTED, + __I40E_VSI_RELEASING, /* This must be last as it determines the size of the BITMAP */ __I40E_VSI_STATE_SIZE__, }; @@ -181,7 +182,6 @@ struct i40e_lump_tracking { u16 num_entries; - u16 search_hint; u16 list[0]; #define I40E_PILE_VALID_BIT 0x8000 #define I40E_IWARP_IRQ_PILE_ID (I40E_PILE_VALID_BIT - 2) @@ -756,12 +756,12 @@ struct rtnl_link_stats64 net_stats_offsets; struct i40e_eth_stats eth_stats; struct i40e_eth_stats eth_stats_offsets; - u32 tx_restart; - u32 tx_busy; + u64 tx_restart; + u64 tx_busy; u64 tx_linearize; u64 tx_force_wb; - u32 rx_buf_failed; - u32 rx_page_failed; + u64 rx_buf_failed; + u64 rx_page_failed; /* These are containers of ring pointers, allocated at run-time */ struct i40e_ring **rx_rings; @@ -1146,6 +1146,7 @@ void i40e_ptp_restore_hw_time(struct i40e_pf *pf); void i40e_ptp_init(struct i40e_pf *pf); void i40e_ptp_stop(struct i40e_pf *pf); +int i40e_update_adq_vsi_queues(struct i40e_vsi *vsi, int vsi_offset); int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi); i40e_status i40e_get_partition_bw_setting(struct i40e_pf *pf); i40e_status i40e_set_partition_bw_setting(struct i40e_pf *pf); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_client.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_client.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_client.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_client.c @@ -178,6 +178,10 @@ "Cannot locate client instance close routine\n"); return; } + if (!test_bit(__I40E_CLIENT_INSTANCE_OPENED, &cdev->state)) { + dev_dbg(&pf->pdev->dev, "Client is not open, abort close\n"); + return; + } cdev->client->ops->close(&cdev->lan_info, cdev->client, reset); clear_bit(__I40E_CLIENT_INSTANCE_OPENED, &cdev->state); i40e_client_release_qvlist(&cdev->lan_info); @@ -376,7 +380,6 @@ /* Remove failed client instance */ clear_bit(__I40E_CLIENT_INSTANCE_OPENED, &cdev->state); - i40e_client_del_instance(pf); return; } } diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_ethtool.c @@ -977,7 +977,7 @@ default: /* if we got here and link is up something bad is afoot */ netdev_info(netdev, - "WARNING: Link is up but PHY type 0x%x is not recognized.\n", + "WARNING: Link is up but PHY type 0x%x is not recognized, or incorrect cable is in use\n", hw_link_info->phy_type); } @@ -1259,8 +1259,7 @@ if (ethtool_link_ksettings_test_link_mode(&safe_ks, supported, Autoneg) && - hw->phy.link_info.phy_type != - I40E_PHY_TYPE_10GBASE_T) { + hw->phy.media_type != I40E_MEDIA_TYPE_BASET) { netdev_info(netdev, "Autoneg cannot be disabled on this phy\n"); err = -EINVAL; goto done; @@ -2579,15 +2578,16 @@ set_bit(__I40E_TESTING, pf->state); + if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || + test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) { + dev_warn(&pf->pdev->dev, + "Cannot start offline testing when PF is in reset state.\n"); + goto skip_ol_tests; + } + if (i40e_active_vfs(pf) || i40e_active_vmdqs(pf)) { dev_warn(&pf->pdev->dev, "Please take active VFs and Netqueues offline and restart the adapter before running NIC diagnostics\n"); - data[I40E_ETH_TEST_REG] = 1; - data[I40E_ETH_TEST_EEPROM] = 1; - data[I40E_ETH_TEST_INTR] = 1; - data[I40E_ETH_TEST_LINK] = 1; - eth_test->flags |= ETH_TEST_FL_FAILED; - clear_bit(__I40E_TESTING, pf->state); goto skip_ol_tests; } @@ -2634,9 +2634,17 @@ data[I40E_ETH_TEST_INTR] = 0; } -skip_ol_tests: - netif_info(pf, drv, netdev, "testing finished\n"); + return; + +skip_ol_tests: + data[I40E_ETH_TEST_REG] = 1; + data[I40E_ETH_TEST_EEPROM] = 1; + data[I40E_ETH_TEST_INTR] = 1; + data[I40E_ETH_TEST_LINK] = 1; + eth_test->flags |= ETH_TEST_FL_FAILED; + clear_bit(__I40E_TESTING, pf->state); + netif_info(pf, drv, netdev, "testing failed\n"); } static void i40e_get_wol(struct net_device *netdev, @@ -3074,10 +3082,17 @@ if (cmd->flow_type == TCP_V4_FLOW || cmd->flow_type == UDP_V4_FLOW) { - if (i_set & I40E_L3_SRC_MASK) - cmd->data |= RXH_IP_SRC; - if (i_set & I40E_L3_DST_MASK) - cmd->data |= RXH_IP_DST; + if (hw->mac.type == I40E_MAC_X722) { + if (i_set & I40E_X722_L3_SRC_MASK) + cmd->data |= RXH_IP_SRC; + if (i_set & I40E_X722_L3_DST_MASK) + cmd->data |= RXH_IP_DST; + } else { + if (i_set & I40E_L3_SRC_MASK) + cmd->data |= RXH_IP_SRC; + if (i_set & I40E_L3_DST_MASK) + cmd->data |= RXH_IP_DST; + } } else if (cmd->flow_type == TCP_V6_FLOW || cmd->flow_type == UDP_V6_FLOW) { if (i_set & I40E_L3_V6_SRC_MASK) @@ -3384,12 +3399,15 @@ /** * i40e_get_rss_hash_bits - Read RSS Hash bits from register + * @hw: hw structure * @nfc: pointer to user request * @i_setc: bits currently set * * Returns value of bits to be set per user request **/ -static u64 i40e_get_rss_hash_bits(struct ethtool_rxnfc *nfc, u64 i_setc) +static u64 i40e_get_rss_hash_bits(struct i40e_hw *hw, + struct ethtool_rxnfc *nfc, + u64 i_setc) { u64 i_set = i_setc; u64 src_l3 = 0, dst_l3 = 0; @@ -3408,8 +3426,13 @@ dst_l3 = I40E_L3_V6_DST_MASK; } else if (nfc->flow_type == TCP_V4_FLOW || nfc->flow_type == UDP_V4_FLOW) { - src_l3 = I40E_L3_SRC_MASK; - dst_l3 = I40E_L3_DST_MASK; + if (hw->mac.type == I40E_MAC_X722) { + src_l3 = I40E_X722_L3_SRC_MASK; + dst_l3 = I40E_X722_L3_DST_MASK; + } else { + src_l3 = I40E_L3_SRC_MASK; + dst_l3 = I40E_L3_DST_MASK; + } } else { /* Any other flow type are not supported here */ return i_set; @@ -3427,6 +3450,7 @@ return i_set; } +#define FLOW_PCTYPES_SIZE 64 /** * i40e_set_rss_hash_opt - Enable/Disable flow types for RSS hash * @pf: pointer to the physical function struct @@ -3439,9 +3463,11 @@ struct i40e_hw *hw = &pf->hw; u64 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) | ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32); - u8 flow_pctype = 0; + DECLARE_BITMAP(flow_pctypes, FLOW_PCTYPES_SIZE); u64 i_set, i_setc; + bitmap_zero(flow_pctypes, FLOW_PCTYPES_SIZE); + if (pf->flags & I40E_FLAG_MFP_ENABLED) { dev_err(&pf->pdev->dev, "Change of RSS hash input set is not supported when MFP mode is enabled\n"); @@ -3457,36 +3483,35 @@ switch (nfc->flow_type) { case TCP_V4_FLOW: - flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; + set_bit(I40E_FILTER_PCTYPE_NONF_IPV4_TCP, flow_pctypes); if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) - hena |= - BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK); + set_bit(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK, + flow_pctypes); break; case TCP_V6_FLOW: - flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP; + set_bit(I40E_FILTER_PCTYPE_NONF_IPV6_TCP, flow_pctypes); if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) - hena |= - BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK); - if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) - hena |= - BIT_ULL(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK); + set_bit(I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK, + flow_pctypes); break; case UDP_V4_FLOW: - flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; - if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) - hena |= - BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | - BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP); - + set_bit(I40E_FILTER_PCTYPE_NONF_IPV4_UDP, flow_pctypes); + if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) { + set_bit(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP, + flow_pctypes); + set_bit(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP, + flow_pctypes); + } hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV4); break; case UDP_V6_FLOW: - flow_pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP; - if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) - hena |= - BIT_ULL(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | - BIT_ULL(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP); - + set_bit(I40E_FILTER_PCTYPE_NONF_IPV6_UDP, flow_pctypes); + if (pf->hw_features & I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE) { + set_bit(I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP, + flow_pctypes); + set_bit(I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP, + flow_pctypes); + } hena |= BIT_ULL(I40E_FILTER_PCTYPE_FRAG_IPV6); break; case AH_ESP_V4_FLOW: @@ -3519,17 +3544,20 @@ return -EINVAL; } - if (flow_pctype) { - i_setc = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, - flow_pctype)) | - ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, - flow_pctype)) << 32); - i_set = i40e_get_rss_hash_bits(nfc, i_setc); - i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, flow_pctype), - (u32)i_set); - i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, flow_pctype), - (u32)(i_set >> 32)); - hena |= BIT_ULL(flow_pctype); + if (bitmap_weight(flow_pctypes, FLOW_PCTYPES_SIZE)) { + u8 flow_id; + + for_each_set_bit(flow_id, flow_pctypes, FLOW_PCTYPES_SIZE) { + i_setc = (u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, flow_id)) | + ((u64)i40e_read_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, flow_id)) << 32); + i_set = i40e_get_rss_hash_bits(&pf->hw, nfc, i_setc); + + i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(0, flow_id), + (u32)i_set); + i40e_write_rx_ctl(hw, I40E_GLQF_HASH_INSET(1, flow_id), + (u32)(i_set >> 32)); + hena |= BIT_ULL(flow_id); + } } i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena); @@ -5088,6 +5116,10 @@ dev_warn(&pf->pdev->dev, "Device configuration forbids SW from starting the LLDP agent.\n"); return -EINVAL; + case I40E_AQ_RC_EAGAIN: + dev_warn(&pf->pdev->dev, + "Stop FW LLDP agent command is still being processed, please try again in a second.\n"); + return -EBUSY; default: dev_warn(&pf->pdev->dev, "Starting FW LLDP agent failed: error: %s, %s\n", diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -107,6 +107,24 @@ static struct workqueue_struct *i40e_wq; +static void netdev_hw_addr_refcnt(struct i40e_mac_filter *f, + struct net_device *netdev, int delta) +{ + struct netdev_hw_addr *ha; + + if (!f || !netdev) + return; + + netdev_for_each_mc_addr(ha, netdev) { + if (ether_addr_equal(ha->addr, f->macaddr)) { + ha->refcount += delta; + if (ha->refcount <= 0) + ha->refcount = 1; + break; + } + } +} + /** * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code * @hw: pointer to the HW structure @@ -186,10 +204,6 @@ * @id: an owner id to stick on the items assigned * * Returns the base item index of the lump, or negative for error - * - * The search_hint trick and lack of advanced fit-finding only work - * because we're highly likely to have all the same size lump requests. - * Linear search time and any fragmentation should be minimal. **/ static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile, u16 needed, u16 id) @@ -204,8 +218,21 @@ return -EINVAL; } - /* start the linear search with an imperfect hint */ - i = pile->search_hint; + /* Allocate last queue in the pile for FDIR VSI queue + * so it doesn't fragment the qp_pile + */ + if (pile == pf->qp_pile && pf->vsi[id]->type == I40E_VSI_FDIR) { + if (pile->list[pile->num_entries - 1] & I40E_PILE_VALID_BIT) { + dev_err(&pf->pdev->dev, + "Cannot allocate queue %d for I40E_VSI_FDIR\n", + pile->num_entries - 1); + return -ENOMEM; + } + pile->list[pile->num_entries - 1] = id | I40E_PILE_VALID_BIT; + return pile->num_entries - 1; + } + + i = 0; while (i < pile->num_entries) { /* skip already allocated entries */ if (pile->list[i] & I40E_PILE_VALID_BIT) { @@ -224,7 +251,6 @@ for (j = 0; j < needed; j++) pile->list[i+j] = id | I40E_PILE_VALID_BIT; ret = i; - pile->search_hint = i + j; break; } @@ -247,7 +273,7 @@ { int valid_id = (id | I40E_PILE_VALID_BIT); int count = 0; - int i; + u16 i; if (!pile || index >= pile->num_entries) return -EINVAL; @@ -259,8 +285,6 @@ count++; } - if (count && index < pile->search_hint) - pile->search_hint = index; return count; } @@ -385,7 +409,9 @@ set_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state); break; default: - netdev_err(netdev, "tx_timeout recovery unsuccessful\n"); + netdev_err(netdev, "tx_timeout recovery unsuccessful, device is in non-recoverable state.\n"); + set_bit(__I40E_DOWN_REQUESTED, pf->state); + set_bit(__I40E_VSI_DOWN_REQUESTED, vsi->state); break; } @@ -780,9 +806,9 @@ struct rtnl_link_stats64 *ns; /* netdev stats */ struct i40e_eth_stats *oes; struct i40e_eth_stats *es; /* device's eth stats */ - u32 tx_restart, tx_busy; + u64 tx_restart, tx_busy; struct i40e_ring *p; - u32 rx_page, rx_buf; + u64 rx_page, rx_buf; u64 bytes, packets; unsigned int start; u64 tx_linearize; @@ -1776,6 +1802,7 @@ bool is_add) { struct i40e_pf *pf = vsi->back; + u16 num_tc_qps = 0; u16 sections = 0; u8 netdev_tc = 0; u16 numtc = 1; @@ -1783,13 +1810,37 @@ u8 offset; u16 qmap; int i; - u16 num_tc_qps = 0; sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID; offset = 0; + /* zero out queue mapping, it will get updated on the end of the function */ + memset(ctxt->info.queue_mapping, 0, sizeof(ctxt->info.queue_mapping)); + + if (vsi->type == I40E_VSI_MAIN) { + /* This code helps add more queue to the VSI if we have + * more cores than RSS can support, the higher cores will + * be served by ATR or other filters. Furthermore, the + * non-zero req_queue_pairs says that user requested a new + * queue count via ethtool's set_channels, so use this + * value for queues distribution across traffic classes + * We need at least one queue pair for the interface + * to be usable as we see in else statement. + */ + if (vsi->req_queue_pairs > 0) + vsi->num_queue_pairs = vsi->req_queue_pairs; + else if (pf->flags & I40E_FLAG_MSIX_ENABLED) + vsi->num_queue_pairs = pf->num_lan_msix; + else + vsi->num_queue_pairs = 1; + } /* Number of queues per enabled TC */ - num_tc_qps = vsi->alloc_queue_pairs; + if (vsi->type == I40E_VSI_MAIN || + (vsi->type == I40E_VSI_SRIOV && vsi->num_queue_pairs != 0)) + num_tc_qps = vsi->num_queue_pairs; + else + num_tc_qps = vsi->alloc_queue_pairs; + if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) { /* Find numtc from enabled TC bitmap */ for (i = 0, numtc = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { @@ -1867,15 +1918,11 @@ } ctxt->info.tc_mapping[i] = cpu_to_le16(qmap); } - - /* Set actual Tx/Rx queue pairs */ - vsi->num_queue_pairs = offset; - if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) { - if (vsi->req_queue_pairs > 0) - vsi->num_queue_pairs = vsi->req_queue_pairs; - else if (pf->flags & I40E_FLAG_MSIX_ENABLED) - vsi->num_queue_pairs = pf->num_lan_msix; - } + /* Do not change previously set num_queue_pairs for PFs and VFs*/ + if ((vsi->type == I40E_VSI_MAIN && numtc != 1) || + (vsi->type == I40E_VSI_SRIOV && vsi->num_queue_pairs == 0) || + (vsi->type != I40E_VSI_MAIN && vsi->type != I40E_VSI_SRIOV)) + vsi->num_queue_pairs = offset; /* Scheduler section valid can only be set for ADD VSI */ if (is_add) { @@ -2005,6 +2052,7 @@ hlist_for_each_entry_safe(new, h, from, hlist) { /* We can simply free the wrapper structure */ hlist_del(&new->hlist); + netdev_hw_addr_refcnt(new->f, vsi->netdev, -1); kfree(new); } } @@ -2352,6 +2400,10 @@ &tmp_add_list, &tmp_del_list, vlan_filters); + + hlist_for_each_entry(new, &tmp_add_list, hlist) + netdev_hw_addr_refcnt(new->f, vsi->netdev, 1); + if (retval) goto err_no_memory_locked; @@ -2484,6 +2536,7 @@ if (new->f->state == I40E_FILTER_NEW) new->f->state = new->state; hlist_del(&new->hlist); + netdev_hw_addr_refcnt(new->f, vsi->netdev, -1); kfree(new); } spin_unlock_bh(&vsi->mac_filter_hash_lock); @@ -2609,7 +2662,8 @@ for (v = 0; v < pf->num_alloc_vsi; v++) { if (pf->vsi[v] && - (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) { + (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED) && + !test_bit(__I40E_VSI_RELEASING, pf->vsi[v]->state)) { int ret = i40e_sync_vsi_filters(pf->vsi[v]); if (ret) { @@ -4403,11 +4457,10 @@ } /** - * i40e_vsi_control_tx - Start or stop a VSI's rings + * i40e_vsi_enable_tx - Start a VSI's rings * @vsi: the VSI being configured - * @enable: start or stop the rings **/ -static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable) +static int i40e_vsi_enable_tx(struct i40e_vsi *vsi) { struct i40e_pf *pf = vsi->back; int i, pf_q, ret = 0; @@ -4416,7 +4469,7 @@ for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) { ret = i40e_control_wait_tx_q(vsi->seid, pf, pf_q, - false /*is xdp*/, enable); + false /*is xdp*/, true); if (ret) break; @@ -4425,7 +4478,7 @@ ret = i40e_control_wait_tx_q(vsi->seid, pf, pf_q + vsi->alloc_queue_pairs, - true /*is xdp*/, enable); + true /*is xdp*/, true); if (ret) break; } @@ -4523,32 +4576,25 @@ } /** - * i40e_vsi_control_rx - Start or stop a VSI's rings + * i40e_vsi_enable_rx - Start a VSI's rings * @vsi: the VSI being configured - * @enable: start or stop the rings **/ -static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable) +static int i40e_vsi_enable_rx(struct i40e_vsi *vsi) { struct i40e_pf *pf = vsi->back; int i, pf_q, ret = 0; pf_q = vsi->base_queue; for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) { - ret = i40e_control_wait_rx_q(pf, pf_q, enable); + ret = i40e_control_wait_rx_q(pf, pf_q, true); if (ret) { dev_info(&pf->pdev->dev, - "VSI seid %d Rx ring %d %sable timeout\n", - vsi->seid, pf_q, (enable ? "en" : "dis")); + "VSI seid %d Rx ring %d enable timeout\n", + vsi->seid, pf_q); break; } } - /* Due to HW errata, on Rx disable only, the register can indicate done - * before it really is. Needs 50ms to be sure - */ - if (!enable) - mdelay(50); - return ret; } @@ -4561,29 +4607,47 @@ int ret = 0; /* do rx first for enable and last for disable */ - ret = i40e_vsi_control_rx(vsi, true); + ret = i40e_vsi_enable_rx(vsi); if (ret) return ret; - ret = i40e_vsi_control_tx(vsi, true); + ret = i40e_vsi_enable_tx(vsi); return ret; } +#define I40E_DISABLE_TX_GAP_MSEC 50 + /** * i40e_vsi_stop_rings - Stop a VSI's rings * @vsi: the VSI being configured **/ void i40e_vsi_stop_rings(struct i40e_vsi *vsi) { + struct i40e_pf *pf = vsi->back; + int pf_q, err, q_end; + /* When port TX is suspended, don't wait */ if (test_bit(__I40E_PORT_SUSPENDED, vsi->back->state)) return i40e_vsi_stop_rings_no_wait(vsi); - /* do rx first for enable and last for disable - * Ignore return value, we need to shutdown whatever we can - */ - i40e_vsi_control_tx(vsi, false); - i40e_vsi_control_rx(vsi, false); + q_end = vsi->base_queue + vsi->num_queue_pairs; + for (pf_q = vsi->base_queue; pf_q < q_end; pf_q++) + i40e_pre_tx_queue_cfg(&pf->hw, (u32)pf_q, false); + + for (pf_q = vsi->base_queue; pf_q < q_end; pf_q++) { + err = i40e_control_wait_rx_q(pf, pf_q, false); + if (err) + dev_info(&pf->pdev->dev, + "VSI seid %d Rx ring %d dissable timeout\n", + vsi->seid, pf_q); + } + + msleep(I40E_DISABLE_TX_GAP_MSEC); + pf_q = vsi->base_queue; + for (pf_q = vsi->base_queue; pf_q < q_end; pf_q++) + wr32(&pf->hw, I40E_QTX_ENA(pf_q), 0); + + i40e_vsi_wait_queues_disabled(vsi); } /** @@ -4807,7 +4871,8 @@ { int i; - i40e_free_misc_vector(pf); + if (test_bit(__I40E_MISC_IRQ_REQUESTED, pf->state)) + i40e_free_misc_vector(pf); i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector, I40E_IWARP_IRQ_PILE_ID); @@ -5361,6 +5426,58 @@ } /** + * i40e_update_adq_vsi_queues - update queue mapping for ADq VSI + * @vsi: the VSI being reconfigured + * @vsi_offset: offset from main VF VSI + */ +int i40e_update_adq_vsi_queues(struct i40e_vsi *vsi, int vsi_offset) +{ + struct i40e_vsi_context ctxt = {}; + struct i40e_pf *pf; + struct i40e_hw *hw; + int ret; + + if (!vsi) + return I40E_ERR_PARAM; + pf = vsi->back; + hw = &pf->hw; + + ctxt.seid = vsi->seid; + ctxt.pf_num = hw->pf_id; + ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id + vsi_offset; + ctxt.uplink_seid = vsi->uplink_seid; + ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL; + ctxt.flags = I40E_AQ_VSI_TYPE_VF; + ctxt.info = vsi->info; + + i40e_vsi_setup_queue_map(vsi, &ctxt, vsi->tc_config.enabled_tc, + false); + if (vsi->reconfig_rss) { + vsi->rss_size = min_t(int, pf->alloc_rss_size, + vsi->num_queue_pairs); + ret = i40e_vsi_config_rss(vsi); + if (ret) { + dev_info(&pf->pdev->dev, "Failed to reconfig rss for num_queues\n"); + return ret; + } + vsi->reconfig_rss = false; + } + + ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL); + if (ret) { + dev_info(&pf->pdev->dev, "Update vsi config failed, err %s aq_err %s\n", + i40e_stat_str(hw, ret), + i40e_aq_str(hw, hw->aq.asq_last_status)); + return ret; + } + /* update the local VSI info with updated queue map */ + i40e_vsi_update_queue_map(vsi, &ctxt); + vsi->info.valid_sections = 0; + + return ret; +} + +/** * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map * @vsi: VSI to be configured * @enabled_tc: TC bitmap @@ -5522,6 +5639,26 @@ } /** + * i40e_bw_bytes_to_mbits - Convert max_tx_rate from bytes to mbits + * @vsi: Pointer to vsi structure + * @max_tx_rate: max TX rate in bytes to be converted into Mbits + * + * Helper function to convert units before send to set BW limit + **/ +static u64 i40e_bw_bytes_to_mbits(struct i40e_vsi *vsi, u64 max_tx_rate) +{ + if (max_tx_rate < I40E_BW_MBPS_DIVISOR) { + dev_warn(&vsi->back->pdev->dev, + "Setting max tx rate to minimum usable value of 50Mbps.\n"); + max_tx_rate = I40E_BW_CREDIT_DIVISOR; + } else { + do_div(max_tx_rate, I40E_BW_MBPS_DIVISOR); + } + + return max_tx_rate; +} + +/** * i40e_set_bw_limit - setup BW limit for Tx traffic based on max_tx_rate * @vsi: VSI to be configured * @seid: seid of the channel/VSI @@ -5543,10 +5680,10 @@ max_tx_rate, seid); return -EINVAL; } - if (max_tx_rate && max_tx_rate < 50) { + if (max_tx_rate && max_tx_rate < I40E_BW_CREDIT_DIVISOR) { dev_warn(&pf->pdev->dev, "Setting max tx rate to minimum usable value of 50Mbps.\n"); - max_tx_rate = 50; + max_tx_rate = I40E_BW_CREDIT_DIVISOR; } /* Tx rate credits are in values of 50Mbps, 0 is disabled */ @@ -5651,24 +5788,6 @@ } /** - * i40e_is_any_channel - channel exist or not - * @vsi: ptr to VSI to which channels are associated with - * - * Returns true or false if channel(s) exist for associated VSI or not - **/ -static bool i40e_is_any_channel(struct i40e_vsi *vsi) -{ - struct i40e_channel *ch, *ch_tmp; - - list_for_each_entry_safe(ch, ch_tmp, &vsi->ch_list, list) { - if (ch->initialized) - return true; - } - - return false; -} - -/** * i40e_get_max_queues_for_channel * @vsi: ptr to VSI to which channels are associated with * @@ -6175,26 +6294,15 @@ /* By default we are in VEPA mode, if this is the first VF/VMDq * VSI to be added switch to VEB mode. */ - if ((!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) || - (!i40e_is_any_channel(vsi))) { - if (!is_power_of_2(vsi->tc_config.tc_info[0].qcount)) { - dev_dbg(&pf->pdev->dev, - "Failed to create channel. Override queues (%u) not power of 2\n", - vsi->tc_config.tc_info[0].qcount); - return -EINVAL; - } - if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) { - pf->flags |= I40E_FLAG_VEB_MODE_ENABLED; + if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) { + pf->flags |= I40E_FLAG_VEB_MODE_ENABLED; - if (vsi->type == I40E_VSI_MAIN) { - if (pf->flags & I40E_FLAG_TC_MQPRIO) - i40e_do_reset(pf, I40E_PF_RESET_FLAG, - true); - else - i40e_do_reset_safe(pf, - I40E_PF_RESET_FLAG); - } + if (vsi->type == I40E_VSI_MAIN) { + if (pf->flags & I40E_FLAG_TC_MQPRIO) + i40e_do_reset(pf, I40E_PF_RESET_FLAG, true); + else + i40e_do_reset_safe(pf, I40E_PF_RESET_FLAG); } /* now onwards for main VSI, number of queues will be value * of TC0's queue count @@ -6868,6 +6976,8 @@ } if (vsi->num_queue_pairs < (mqprio_qopt->qopt.offset[i] + mqprio_qopt->qopt.count[i])) { + dev_err(&vsi->back->pdev->dev, + "Failed to create traffic channel, insufficient number of queues.\n"); return -EINVAL; } if (sum_max_rate > i40e_get_link_speed(vsi)) { @@ -7036,42 +7146,43 @@ static int i40e_fwd_ring_up(struct i40e_vsi *vsi, struct net_device *vdev, struct i40e_fwd_adapter *fwd) { + struct i40e_channel *ch = NULL, *ch_tmp, *iter; int ret = 0, num_tc = 1, i, aq_err; - struct i40e_channel *ch, *ch_tmp; struct i40e_pf *pf = vsi->back; struct i40e_hw *hw = &pf->hw; - if (list_empty(&vsi->macvlan_list)) - return -EINVAL; - /* Go through the list and find an available channel */ - list_for_each_entry_safe(ch, ch_tmp, &vsi->macvlan_list, list) { - if (!i40e_is_channel_macvlan(ch)) { - ch->fwd = fwd; + list_for_each_entry_safe(iter, ch_tmp, &vsi->macvlan_list, list) { + if (!i40e_is_channel_macvlan(iter)) { + iter->fwd = fwd; /* record configuration for macvlan interface in vdev */ for (i = 0; i < num_tc; i++) netdev_bind_sb_channel_queue(vsi->netdev, vdev, i, - ch->num_queue_pairs, - ch->base_queue); - for (i = 0; i < ch->num_queue_pairs; i++) { + iter->num_queue_pairs, + iter->base_queue); + for (i = 0; i < iter->num_queue_pairs; i++) { struct i40e_ring *tx_ring, *rx_ring; u16 pf_q; - pf_q = ch->base_queue + i; + pf_q = iter->base_queue + i; /* Get to TX ring ptr */ tx_ring = vsi->tx_rings[pf_q]; - tx_ring->ch = ch; + tx_ring->ch = iter; /* Get the RX ring ptr */ rx_ring = vsi->rx_rings[pf_q]; - rx_ring->ch = ch; + rx_ring->ch = iter; } + ch = iter; break; } } + if (!ch) + return -EINVAL; + /* Guarantee all rings are updated before we update the * MAC address filter. */ @@ -7484,17 +7595,25 @@ vsi->seid); need_reset = true; goto exit; - } else { - dev_info(&vsi->back->pdev->dev, - "Setup channel (id:%u) utilizing num_queues %d\n", - vsi->seid, vsi->tc_config.tc_info[0].qcount); + } else if (enabled_tc && + (!is_power_of_2(vsi->tc_config.tc_info[0].qcount))) { + netdev_info(netdev, + "Failed to create channel. Override queues (%u) not power of 2\n", + vsi->tc_config.tc_info[0].qcount); + ret = -EINVAL; + need_reset = true; + goto exit; } + dev_info(&vsi->back->pdev->dev, + "Setup channel (id:%u) utilizing num_queues %d\n", + vsi->seid, vsi->tc_config.tc_info[0].qcount); + if (pf->flags & I40E_FLAG_TC_MQPRIO) { if (vsi->mqprio_qopt.max_rate[0]) { - u64 max_tx_rate = vsi->mqprio_qopt.max_rate[0]; + u64 max_tx_rate = i40e_bw_bytes_to_mbits(vsi, + vsi->mqprio_qopt.max_rate[0]); - do_div(max_tx_rate, I40E_BW_MBPS_DIVISOR); ret = i40e_set_bw_limit(vsi, vsi->seid, max_tx_rate); if (!ret) { u64 credits = max_tx_rate; @@ -8015,6 +8134,11 @@ return -EOPNOTSUPP; } + if (!tc) { + dev_err(&pf->pdev->dev, "Unable to add filter because of invalid destination"); + return -EINVAL; + } + if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state) || test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) return -EBUSY; @@ -8054,9 +8178,8 @@ err = i40e_add_del_cloud_filter(vsi, filter, true); if (err) { - dev_err(&pf->pdev->dev, - "Failed to add cloud filter, err %s\n", - i40e_stat_str(&pf->hw, err)); + dev_err(&pf->pdev->dev, "Failed to add cloud filter, err %d\n", + err); goto err; } @@ -8242,6 +8365,27 @@ } /** + * i40e_netif_set_realnum_tx_rx_queues - Update number of tx/rx queues + * @vsi: vsi structure + * + * This updates netdev's number of tx/rx queues + * + * Returns status of setting tx/rx queues + **/ +static int i40e_netif_set_realnum_tx_rx_queues(struct i40e_vsi *vsi) +{ + int ret; + + ret = netif_set_real_num_rx_queues(vsi->netdev, + vsi->num_queue_pairs); + if (ret) + return ret; + + return netif_set_real_num_tx_queues(vsi->netdev, + vsi->num_queue_pairs); +} + +/** * i40e_vsi_open - * @vsi: the VSI to open * @@ -8277,13 +8421,7 @@ goto err_setup_rx; /* Notify the stack of the actual queue counts. */ - err = netif_set_real_num_tx_queues(vsi->netdev, - vsi->num_queue_pairs); - if (err) - goto err_set_queues; - - err = netif_set_real_num_rx_queues(vsi->netdev, - vsi->num_queue_pairs); + err = i40e_netif_set_realnum_tx_rx_queues(vsi); if (err) goto err_set_queues; @@ -8292,6 +8430,8 @@ dev_driver_string(&pf->pdev->dev), dev_name(&pf->pdev->dev)); err = i40e_vsi_request_irq(vsi, int_name); + if (err) + goto err_setup_rx; } else { err = -EINVAL; @@ -9602,7 +9742,7 @@ if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) { /* retry with a larger buffer */ buf_len = data_size; - } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) { + } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK || err) { dev_info(&pf->pdev->dev, "capability discovery failed, err %s aq_err %s\n", i40e_stat_str(&pf->hw, err), @@ -9954,7 +10094,7 @@ **/ static void i40e_rebuild(struct i40e_pf *pf, bool reinit, bool lock_acquired) { - int old_recovery_mode_bit = test_bit(__I40E_RECOVERY_MODE, pf->state); + const bool is_recovery_mode_reported = i40e_check_recovery_mode(pf); struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; struct i40e_hw *hw = &pf->hw; i40e_status ret; @@ -9962,13 +10102,11 @@ int v; if (test_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state) && - i40e_check_recovery_mode(pf)) { + is_recovery_mode_reported) i40e_set_ethtool_ops(pf->vsi[pf->lan_vsi]->netdev); - } if (test_bit(__I40E_DOWN, pf->state) && - !test_bit(__I40E_RECOVERY_MODE, pf->state) && - !old_recovery_mode_bit) + !test_bit(__I40E_RECOVERY_MODE, pf->state)) goto clear_recovery; dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n"); @@ -9982,15 +10120,9 @@ } i40e_get_oem_version(&pf->hw); - if (test_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state) && - ((hw->aq.fw_maj_ver == 4 && hw->aq.fw_min_ver <= 33) || - hw->aq.fw_maj_ver < 4) && hw->mac.type == I40E_MAC_XL710) { - /* The following delay is necessary for 4.33 firmware and older - * to recover after EMP reset. 200 ms should suffice but we - * put here 300 ms to be sure that FW is ready to operate - * after reset. - */ - mdelay(300); + if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state)) { + /* The following delay is necessary for firmware update. */ + mdelay(1000); } /* re-verify the eeprom if we just had an EMP reset */ @@ -10001,13 +10133,12 @@ * accordingly with regard to resources initialization * and deinitialization */ - if (test_bit(__I40E_RECOVERY_MODE, pf->state) || - old_recovery_mode_bit) { + if (test_bit(__I40E_RECOVERY_MODE, pf->state)) { if (i40e_get_capabilities(pf, i40e_aqc_opc_list_func_capabilities)) goto end_unlock; - if (test_bit(__I40E_RECOVERY_MODE, pf->state)) { + if (is_recovery_mode_reported) { /* we're staying in recovery mode so we'll reinitialize * misc vector here */ @@ -10136,10 +10267,10 @@ } if (vsi->mqprio_qopt.max_rate[0]) { - u64 max_tx_rate = vsi->mqprio_qopt.max_rate[0]; + u64 max_tx_rate = i40e_bw_bytes_to_mbits(vsi, + vsi->mqprio_qopt.max_rate[0]); u64 credits = 0; - do_div(max_tx_rate, I40E_BW_MBPS_DIVISOR); ret = i40e_set_bw_limit(vsi, vsi->seid, max_tx_rate); if (ret) goto end_unlock; @@ -11286,7 +11417,6 @@ return -ENOMEM; pf->irq_pile->num_entries = vectors; - pf->irq_pile->search_hint = 0; /* track first vector for misc interrupts, ignore return */ (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1); @@ -12037,7 +12167,6 @@ goto sw_init_done; } pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp; - pf->qp_pile->search_hint = 0; pf->tx_timeout_recovery_level = 1; @@ -12881,6 +13010,7 @@ .ndo_poll_controller = i40e_netpoll, #endif .ndo_setup_tc = __i40e_setup_tc, + .ndo_select_queue = i40e_lan_select_queue, .ndo_set_features = i40e_set_features, .ndo_set_vf_mac = i40e_ndo_set_vf_mac, .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan, @@ -13372,7 +13502,7 @@ dev_info(&pf->pdev->dev, "Can't remove PF VSI\n"); return -ENODEV; } - + set_bit(__I40E_VSI_RELEASING, vsi->state); uplink_seid = vsi->uplink_seid; if (vsi->type != I40E_VSI_SRIOV) { if (vsi->netdev_registered) { @@ -13704,6 +13834,9 @@ ret = i40e_config_netdev(vsi); if (ret) goto err_netdev; + ret = i40e_netif_set_realnum_tx_rx_queues(vsi); + if (ret) + goto err_netdev; ret = register_netdev(vsi->netdev); if (ret) goto err_netdev; @@ -14948,8 +15081,8 @@ if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR && hw->aq.api_min_ver > I40E_FW_MINOR_VERSION(hw)) - dev_info(&pdev->dev, - "The driver for the device detected a newer version of the NVM image v%u.%u than expected v%u.%u. Please install the most recent version of the network driver.\n", + dev_dbg(&pdev->dev, + "The driver for the device detected a newer version of the NVM image v%u.%u than v%u.%u.\n", hw->aq.api_maj_ver, hw->aq.api_min_ver, I40E_FW_API_VERSION_MAJOR, diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c @@ -2233,15 +2233,20 @@ case XDP_TX: xdp_ring = rx_ring->vsi->xdp_rings[rx_ring->queue_index]; result = i40e_xmit_xdp_tx_ring(xdp, xdp_ring); + if (result == I40E_XDP_CONSUMED) + goto out_failure; break; case XDP_REDIRECT: err = xdp_do_redirect(rx_ring->netdev, xdp, xdp_prog); - result = !err ? I40E_XDP_REDIR : I40E_XDP_CONSUMED; + if (err) + goto out_failure; + result = I40E_XDP_REDIR; break; default: bpf_warn_invalid_xdp_action(act); /* fall through */ case XDP_ABORTED: +out_failure: trace_xdp_exception(rx_ring->netdev, xdp_prog, act); /* fall through -- handle aborts by dropping packet */ case XDP_DROP: @@ -3516,6 +3521,55 @@ return -1; } +static u16 i40e_swdcb_skb_tx_hash(struct net_device *dev, + const struct sk_buff *skb, + u16 num_tx_queues) +{ + u32 jhash_initval_salt = 0xd631614b; + u32 hash; + + if (skb->sk && skb->sk->sk_hash) + hash = skb->sk->sk_hash; + else + hash = (__force u16)skb->protocol ^ skb->hash; + + hash = jhash_1word(hash, jhash_initval_salt); + + return (u16)(((u64)hash * num_tx_queues) >> 32); +} + +u16 i40e_lan_select_queue(struct net_device *netdev, + struct sk_buff *skb, + struct net_device __always_unused *sb_dev) +{ + struct i40e_netdev_priv *np = netdev_priv(netdev); + struct i40e_vsi *vsi = np->vsi; + struct i40e_hw *hw; + u16 qoffset; + u16 qcount; + u8 tclass; + u16 hash; + u8 prio; + + /* is DCB enabled at all? */ + if (vsi->tc_config.numtc == 1) + return netdev_pick_tx(netdev, skb, sb_dev); + + prio = skb->priority; + hw = &vsi->back->hw; + tclass = hw->local_dcbx_config.etscfg.prioritytable[prio]; + /* sanity check */ + if (unlikely(!(vsi->tc_config.enabled_tc & BIT(tclass)))) + tclass = 0; + + /* select a queue assigned for the given TC */ + qcount = vsi->tc_config.tc_info[tclass].qcount; + hash = i40e_swdcb_skb_tx_hash(netdev, skb, qcount); + + qoffset = vsi->tc_config.tc_info[tclass].qoffset; + return qoffset + hash; +} + /** * i40e_xmit_xdp_ring - transmits an XDP buffer to an XDP Tx ring * @xdp: data to transmit diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_type.h linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_type.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_type.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_type.h @@ -1470,6 +1470,10 @@ #define I40E_PFQF_CTL_0_HASHLUTSIZE_512 0x00010000 /* INPUT SET MASK for RSS, flow director, and flexible payload */ +#define I40E_X722_L3_SRC_SHIFT 49 +#define I40E_X722_L3_SRC_MASK (0x3ULL << I40E_X722_L3_SRC_SHIFT) +#define I40E_X722_L3_DST_SHIFT 41 +#define I40E_X722_L3_DST_MASK (0x3ULL << I40E_X722_L3_DST_SHIFT) #define I40E_L3_SRC_SHIFT 47 #define I40E_L3_SRC_MASK (0x3ULL << I40E_L3_SRC_SHIFT) #define I40E_L3_V6_SRC_SHIFT 43 diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c @@ -621,14 +621,13 @@ u16 vsi_queue_id, struct virtchnl_rxq_info *info) { + u16 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id); struct i40e_pf *pf = vf->pf; + struct i40e_vsi *vsi = pf->vsi[vf->lan_vsi_idx]; struct i40e_hw *hw = &pf->hw; struct i40e_hmc_obj_rxq rx_ctx; - u16 pf_queue_id; int ret = 0; - pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id); - /* clear the context structure first */ memset(&rx_ctx, 0, sizeof(struct i40e_hmc_obj_rxq)); @@ -666,6 +665,10 @@ } rx_ctx.rxmax = info->max_pkt_size; + /* if port VLAN is configured increase the max packet size */ + if (vsi->info.pvid) + rx_ctx.rxmax += VLAN_HLEN; + /* enable 32bytes desc always */ rx_ctx.dsize = 1; @@ -1352,10 +1355,12 @@ if (test_bit(__I40E_VF_RESETS_DISABLED, pf->state)) return true; - /* If the VFs have been disabled, this means something else is - * resetting the VF, so we shouldn't continue. - */ - if (test_and_set_bit(__I40E_VF_DISABLE, pf->state)) + /* Bail out if VFs are disabled. */ + if (test_bit(__I40E_VF_DISABLE, pf->state)) + return true; + + /* If VF is being reset already we don't need to continue. */ + if (test_and_set_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) return true; i40e_trigger_vf_reset(vf, flr); @@ -1392,7 +1397,7 @@ i40e_cleanup_reset_vf(vf); i40e_flush(hw); - clear_bit(__I40E_VF_DISABLE, pf->state); + clear_bit(I40E_VF_STATE_RESETTING, &vf->vf_states); return true; } @@ -1425,8 +1430,12 @@ return false; /* Begin reset on all VFs at once */ - for (v = 0; v < pf->num_alloc_vfs; v++) - i40e_trigger_vf_reset(&pf->vf[v], flr); + for (v = 0; v < pf->num_alloc_vfs; v++) { + vf = &pf->vf[v]; + /* If VF is being reset no need to trigger reset again */ + if (!test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) + i40e_trigger_vf_reset(&pf->vf[v], flr); + } /* HW requires some time to make sure it can flush the FIFO for a VF * when it resets it. Poll the VPGEN_VFRSTAT register for each VF in @@ -1442,9 +1451,11 @@ */ while (v < pf->num_alloc_vfs) { vf = &pf->vf[v]; - reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id)); - if (!(reg & I40E_VPGEN_VFRSTAT_VFRD_MASK)) - break; + if (!test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) { + reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id)); + if (!(reg & I40E_VPGEN_VFRSTAT_VFRD_MASK)) + break; + } /* If the current VF has finished resetting, move on * to the next VF in sequence. @@ -1472,6 +1483,10 @@ if (pf->vf[v].lan_vsi_idx == 0) continue; + /* If VF is reset in another thread just continue */ + if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) + continue; + i40e_vsi_stop_rings_no_wait(pf->vsi[pf->vf[v].lan_vsi_idx]); } @@ -1483,6 +1498,10 @@ if (pf->vf[v].lan_vsi_idx == 0) continue; + /* If VF is reset in another thread just continue */ + if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) + continue; + i40e_vsi_wait_queues_disabled(pf->vsi[pf->vf[v].lan_vsi_idx]); } @@ -1492,8 +1511,13 @@ mdelay(50); /* Finish the reset on each VF */ - for (v = 0; v < pf->num_alloc_vfs; v++) + for (v = 0; v < pf->num_alloc_vfs; v++) { + /* If VF is reset in another thread just continue */ + if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) + continue; + i40e_cleanup_reset_vf(&pf->vf[v]); + } i40e_flush(hw); clear_bit(__I40E_VF_DISABLE, pf->state); @@ -1805,6 +1829,32 @@ } /** + * i40e_sync_vf_state + * @vf: pointer to the VF info + * @state: VF state + * + * Called from a VF message to synchronize the service with a potential + * VF reset state + **/ +static bool i40e_sync_vf_state(struct i40e_vf *vf, enum i40e_vf_states state) +{ + int i; + + /* When handling some messages, it needs VF state to be set. + * It is possible that this flag is cleared during VF reset, + * so there is a need to wait until the end of the reset to + * handle the request message correctly. + */ + for (i = 0; i < I40E_VF_STATE_WAIT_COUNT; i++) { + if (test_bit(state, &vf->vf_states)) + return true; + usleep_range(10000, 20000); + } + + return test_bit(state, &vf->vf_states); +} + +/** * i40e_vc_get_version_msg * @vf: pointer to the VF info * @msg: pointer to the msg buffer @@ -1848,6 +1898,25 @@ } /** + * i40e_vc_get_max_frame_size + * @vf: pointer to the VF + * + * Max frame size is determined based on the current port's max frame size and + * whether a port VLAN is configured on this VF. The VF is not aware whether + * it's in a port VLAN so the PF needs to account for this in max frame size + * checks and sending the max frame size to the VF. + **/ +static u16 i40e_vc_get_max_frame_size(struct i40e_vf *vf) +{ + u16 max_frame_size = vf->pf->hw.phy.link_info.max_frame_size; + + if (vf->port_vlan_id) + max_frame_size -= VLAN_HLEN; + + return max_frame_size; +} + +/** * i40e_vc_get_vf_resources_msg * @vf: pointer to the VF info * @msg: pointer to the msg buffer @@ -1864,7 +1933,7 @@ size_t len = 0; int ret; - if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_INIT)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -1947,6 +2016,7 @@ vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf; vfres->rss_key_size = I40E_HKEY_ARRAY_SIZE; vfres->rss_lut_size = I40E_VF_HLUT_ARRAY_SIZE; + vfres->max_mtu = i40e_vc_get_max_frame_size(vf); if (vf->lan_vsi_idx) { vfres->vsi_res[0].vsi_id = vf->lan_vsi_id; @@ -2019,7 +2089,7 @@ bool allmulti = false; bool alluni = false; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err_out; } @@ -2100,13 +2170,14 @@ struct virtchnl_vsi_queue_config_info *qci = (struct virtchnl_vsi_queue_config_info *)msg; struct virtchnl_queue_pair_info *qpi; - struct i40e_pf *pf = vf->pf; u16 vsi_id, vsi_queue_id = 0; - u16 num_qps_all = 0; + struct i40e_pf *pf = vf->pf; i40e_status aq_ret = 0; int i, j = 0, idx = 0; + struct i40e_vsi *vsi; + u16 num_qps_all = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto error_param; } @@ -2122,7 +2193,7 @@ } if (vf->adq_enabled) { - for (i = 0; i < I40E_MAX_VF_VSI; i++) + for (i = 0; i < vf->num_tc; i++) num_qps_all += vf->ch[i].num_qps; if (num_qps_all != qci->num_queue_pairs) { aq_ret = I40E_ERR_PARAM; @@ -2193,9 +2264,15 @@ pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs; } else { - for (i = 0; i < vf->num_tc; i++) - pf->vsi[vf->ch[i].vsi_idx]->num_queue_pairs = - vf->ch[i].num_qps; + for (i = 0; i < vf->num_tc; i++) { + vsi = pf->vsi[vf->ch[i].vsi_idx]; + vsi->num_queue_pairs = vf->ch[i].num_qps; + + if (i40e_update_adq_vsi_queues(vsi, i)) { + aq_ret = I40E_ERR_CONFIG; + goto error_param; + } + } } error_param: @@ -2248,7 +2325,7 @@ i40e_status aq_ret = 0; int i; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto error_param; } @@ -2420,7 +2497,7 @@ struct i40e_pf *pf = vf->pf; i40e_status aq_ret = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto error_param; } @@ -2453,6 +2530,59 @@ } /** + * i40e_check_enough_queue - find big enough queue number + * @vf: pointer to the VF info + * @needed: the number of items needed + * + * Returns the base item index of the queue, or negative for error + **/ +static int i40e_check_enough_queue(struct i40e_vf *vf, u16 needed) +{ + unsigned int i, cur_queues, more, pool_size; + struct i40e_lump_tracking *pile; + struct i40e_pf *pf = vf->pf; + struct i40e_vsi *vsi; + + vsi = pf->vsi[vf->lan_vsi_idx]; + cur_queues = vsi->alloc_queue_pairs; + + /* if current allocated queues are enough for need */ + if (cur_queues >= needed) + return vsi->base_queue; + + pile = pf->qp_pile; + if (cur_queues > 0) { + /* if the allocated queues are not zero + * just check if there are enough queues for more + * behind the allocated queues. + */ + more = needed - cur_queues; + for (i = vsi->base_queue + cur_queues; + i < pile->num_entries; i++) { + if (pile->list[i] & I40E_PILE_VALID_BIT) + break; + + if (more-- == 1) + /* there is enough */ + return vsi->base_queue; + } + } + + pool_size = 0; + for (i = 0; i < pile->num_entries; i++) { + if (pile->list[i] & I40E_PILE_VALID_BIT) { + pool_size = 0; + continue; + } + if (needed <= ++pool_size) + /* there is enough */ + return i; + } + + return -ENOMEM; +} + +/** * i40e_vc_request_queues_msg * @vf: pointer to the VF info * @msg: pointer to the msg buffer @@ -2470,7 +2600,7 @@ u8 cur_pairs = vf->num_queue_pairs; struct i40e_pf *pf = vf->pf; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) return -EINVAL; if (req_pairs > I40E_MAX_VF_QUEUES) { @@ -2486,6 +2616,12 @@ req_pairs - cur_pairs, pf->queues_left); vfres->num_queue_pairs = pf->queues_left + cur_pairs; + } else if (i40e_check_enough_queue(vf, req_pairs) < 0) { + dev_warn(&pf->pdev->dev, + "VF %d requested %d more queues, but there is not enough for it.\n", + vf->vf_id, + req_pairs - cur_pairs); + vfres->num_queue_pairs = cur_pairs; } else { /* successful request */ vf->num_req_queues = req_pairs; @@ -2516,7 +2652,7 @@ memset(&stats, 0, sizeof(struct i40e_eth_stats)); - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto error_param; } @@ -2625,7 +2761,7 @@ i40e_status ret = 0; int i; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) || !i40e_vc_isvalid_vsi_id(vf, al->vsi_id)) { ret = I40E_ERR_PARAM; goto error_param; @@ -2694,7 +2830,7 @@ i40e_status ret = 0; int i; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) || !i40e_vc_isvalid_vsi_id(vf, al->vsi_id)) { ret = I40E_ERR_PARAM; goto error_param; @@ -2833,7 +2969,7 @@ i40e_status aq_ret = 0; int i; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) || !i40e_vc_isvalid_vsi_id(vf, vfl->vsi_id)) { aq_ret = I40E_ERR_PARAM; goto error_param; @@ -2953,9 +3089,9 @@ struct i40e_vsi *vsi = NULL; i40e_status aq_ret = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) || !i40e_vc_isvalid_vsi_id(vf, vrk->vsi_id) || - (vrk->key_len != I40E_HKEY_ARRAY_SIZE)) { + vrk->key_len != I40E_HKEY_ARRAY_SIZE) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -2984,9 +3120,9 @@ i40e_status aq_ret = 0; u16 i; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) || !i40e_vc_isvalid_vsi_id(vf, vrl->vsi_id) || - (vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE)) { + vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3019,7 +3155,7 @@ i40e_status aq_ret = 0; int len = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3055,7 +3191,7 @@ struct i40e_hw *hw = &pf->hw; i40e_status aq_ret = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3080,7 +3216,7 @@ i40e_status aq_ret = 0; struct i40e_vsi *vsi; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3106,7 +3242,7 @@ i40e_status aq_ret = 0; struct i40e_vsi *vsi; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3333,7 +3469,7 @@ i40e_status aq_ret = 0; int i, ret; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3464,7 +3600,7 @@ i40e_status aq_ret = 0; int i, ret; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err_out; } @@ -3573,7 +3709,7 @@ i40e_status aq_ret = 0; u64 speed = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -3680,11 +3816,6 @@ /* set this flag only after making sure all inputs are sane */ vf->adq_enabled = true; - /* num_req_queues is set when user changes number of queues via ethtool - * and this causes issue for default VSI(which depends on this variable) - * when ADq is enabled, hence reset it. - */ - vf->num_req_queues = 0; /* reset the VF in order to allocate resources */ i40e_vc_notify_vf_reset(vf); @@ -3708,7 +3839,7 @@ struct i40e_pf *pf = vf->pf; i40e_status aq_ret = 0; - if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { + if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) { aq_ret = I40E_ERR_PARAM; goto err; } @@ -4054,34 +4185,6 @@ } /** - * i40e_vsi_has_vlans - True if VSI has configured VLANs - * @vsi: pointer to the vsi - * - * Check if a VSI has configured any VLANs. False if we have a port VLAN or if - * we have no configured VLANs. Do not call while holding the - * mac_filter_hash_lock. - */ -static bool i40e_vsi_has_vlans(struct i40e_vsi *vsi) -{ - bool have_vlans; - - /* If we have a port VLAN, then the VSI cannot have any VLANs - * configured, as all MAC/VLAN filters will be assigned to the PVID. - */ - if (vsi->info.pvid) - return false; - - /* Since we don't have a PVID, we know that if the device is in VLAN - * mode it must be because of a VLAN filter configured on this VSI. - */ - spin_lock_bh(&vsi->mac_filter_hash_lock); - have_vlans = i40e_is_vsi_in_vlan(vsi); - spin_unlock_bh(&vsi->mac_filter_hash_lock); - - return have_vlans; -} - -/** * i40e_ndo_set_vf_port_vlan * @netdev: network interface device structure * @vf_id: VF identifier @@ -4137,19 +4240,9 @@ /* duplicate request, so just return success */ goto error_pvid; - if (i40e_vsi_has_vlans(vsi)) { - dev_err(&pf->pdev->dev, - "VF %d has already configured VLAN filters and the administrator is requesting a port VLAN override.\nPlease unload and reload the VF driver for this change to take effect.\n", - vf_id); - /* Administrator Error - knock the VF offline until he does - * the right thing by reconfiguring his network correctly - * and then reloading the VF driver. - */ - i40e_vc_disable_vf(vf); - /* During reset the VF got a new VSI, so refresh the pointer. */ - vsi = pf->vsi[vf->lan_vsi_idx]; - } - + i40e_vc_disable_vf(vf); + /* During reset the VF got a new VSI, so refresh a pointer. */ + vsi = pf->vsi[vf->lan_vsi_idx]; /* Locked once because multiple functions below iterate list */ spin_lock_bh(&vsi->mac_filter_hash_lock); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h @@ -19,6 +19,8 @@ #define I40E_MAX_VF_PROMISC_FLAGS 3 +#define I40E_VF_STATE_WAIT_COUNT 20 + /* Various queue ctrls */ enum i40e_queue_ctrl { I40E_QUEUE_CTRL_UNKNOWN = 0, @@ -39,6 +41,7 @@ I40E_VF_STATE_MC_PROMISC, I40E_VF_STATE_UC_PROMISC, I40E_VF_STATE_PRE_ENABLE, + I40E_VF_STATE_RESETTING }; /* VF capabilities */ diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_xsk.c linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_xsk.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_xsk.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_xsk.c @@ -212,21 +212,28 @@ xdp->handle = xsk_umem_adjust_offset(umem, xdp->handle, offset); + if (likely(act == XDP_REDIRECT)) { + err = xdp_do_redirect(rx_ring->netdev, xdp, xdp_prog); + if (err) + goto out_failure; + rcu_read_unlock(); + return I40E_XDP_REDIR; + } + switch (act) { case XDP_PASS: break; case XDP_TX: xdp_ring = rx_ring->vsi->xdp_rings[rx_ring->queue_index]; result = i40e_xmit_xdp_tx_ring(xdp, xdp_ring); - break; - case XDP_REDIRECT: - err = xdp_do_redirect(rx_ring->netdev, xdp, xdp_prog); - result = !err ? I40E_XDP_REDIR : I40E_XDP_CONSUMED; + if (result == I40E_XDP_CONSUMED) + goto out_failure; break; default: bpf_warn_invalid_xdp_action(act); /* fall through */ case XDP_ABORTED: +out_failure: trace_xdp_exception(rx_ring->netdev, xdp_prog, act); /* fallthrough -- handle aborts by dropping packet */ case XDP_DROP: @@ -498,13 +505,11 @@ struct sk_buff *skb; /* allocate a skb to store the frags */ - skb = __napi_alloc_skb(&rx_ring->q_vector->napi, - xdp->data_end - xdp->data_hard_start, + skb = __napi_alloc_skb(&rx_ring->q_vector->napi, datasize, GFP_ATOMIC | __GFP_NOWARN); if (unlikely(!skb)) return NULL; - skb_reserve(skb, xdp->data - xdp->data_hard_start); memcpy(__skb_put(skb, datasize), xdp->data, datasize); if (metasize) skb_metadata_set(skb, metasize); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf.h linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf.h @@ -86,6 +86,7 @@ #define IAVF_HKEY_ARRAY_SIZE ((IAVF_VFQF_HKEY_MAX_INDEX + 1) * 4) #define IAVF_HLUT_ARRAY_SIZE ((IAVF_VFQF_HLUT_MAX_INDEX + 1) * 4) #define IAVF_MBPS_DIVISOR 125000 /* divisor to convert to Mbps */ +#define IAVF_MBPS_QUANTA 50 #define IAVF_VIRTCHNL_VF_RESOURCE_SIZE (sizeof(struct virtchnl_vf_resource) + \ (IAVF_MAX_VF_VSI * \ @@ -134,6 +135,7 @@ struct iavf_mac_filter { struct list_head list; u8 macaddr[ETH_ALEN]; + bool is_new_mac; /* filter is new, wait for PF decision */ bool remove; /* filter needs to be removed */ bool add; /* filter needs to be added */ }; diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_ethtool.c @@ -612,23 +612,44 @@ if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) return -EINVAL; - new_tx_count = clamp_t(u32, ring->tx_pending, - IAVF_MIN_TXD, - IAVF_MAX_TXD); - new_tx_count = ALIGN(new_tx_count, IAVF_REQ_DESCRIPTOR_MULTIPLE); - - new_rx_count = clamp_t(u32, ring->rx_pending, - IAVF_MIN_RXD, - IAVF_MAX_RXD); - new_rx_count = ALIGN(new_rx_count, IAVF_REQ_DESCRIPTOR_MULTIPLE); + if (ring->tx_pending > IAVF_MAX_TXD || + ring->tx_pending < IAVF_MIN_TXD || + ring->rx_pending > IAVF_MAX_RXD || + ring->rx_pending < IAVF_MIN_RXD) { + netdev_err(netdev, "Descriptors requested (Tx: %d / Rx: %d) out of range [%d-%d] (increment %d)\n", + ring->tx_pending, ring->rx_pending, IAVF_MIN_TXD, + IAVF_MAX_RXD, IAVF_REQ_DESCRIPTOR_MULTIPLE); + return -EINVAL; + } + + new_tx_count = ALIGN(ring->tx_pending, IAVF_REQ_DESCRIPTOR_MULTIPLE); + if (new_tx_count != ring->tx_pending) + netdev_info(netdev, "Requested Tx descriptor count rounded up to %d\n", + new_tx_count); + + new_rx_count = ALIGN(ring->rx_pending, IAVF_REQ_DESCRIPTOR_MULTIPLE); + if (new_rx_count != ring->rx_pending) + netdev_info(netdev, "Requested Rx descriptor count rounded up to %d\n", + new_rx_count); /* if nothing to do return success */ if ((new_tx_count == adapter->tx_desc_count) && - (new_rx_count == adapter->rx_desc_count)) + (new_rx_count == adapter->rx_desc_count)) { + netdev_dbg(netdev, "Nothing to change, descriptor count is same as requested\n"); return 0; + } - adapter->tx_desc_count = new_tx_count; - adapter->rx_desc_count = new_rx_count; + if (new_tx_count != adapter->tx_desc_count) { + netdev_dbg(netdev, "Changing Tx descriptor count from %d to %d\n", + adapter->tx_desc_count, new_tx_count); + adapter->tx_desc_count = new_tx_count; + } + + if (new_rx_count != adapter->rx_desc_count) { + netdev_dbg(netdev, "Changing Rx descriptor count from %d to %d\n", + adapter->rx_desc_count, new_rx_count); + adapter->rx_desc_count = new_rx_count; + } if (netif_running(netdev)) { adapter->flags |= IAVF_FLAG_RESET_NEEDED; @@ -719,12 +740,31 @@ * * Change the ITR settings for a specific queue. **/ -static void iavf_set_itr_per_queue(struct iavf_adapter *adapter, - struct ethtool_coalesce *ec, int queue) +static int iavf_set_itr_per_queue(struct iavf_adapter *adapter, + struct ethtool_coalesce *ec, int queue) { struct iavf_ring *rx_ring = &adapter->rx_rings[queue]; struct iavf_ring *tx_ring = &adapter->tx_rings[queue]; struct iavf_q_vector *q_vector; + u16 itr_setting; + + itr_setting = rx_ring->itr_setting & ~IAVF_ITR_DYNAMIC; + + if (ec->rx_coalesce_usecs != itr_setting && + ec->use_adaptive_rx_coalesce) { + netif_info(adapter, drv, adapter->netdev, + "Rx interrupt throttling cannot be changed if adaptive-rx is enabled\n"); + return -EINVAL; + } + + itr_setting = tx_ring->itr_setting & ~IAVF_ITR_DYNAMIC; + + if (ec->tx_coalesce_usecs != itr_setting && + ec->use_adaptive_tx_coalesce) { + netif_info(adapter, drv, adapter->netdev, + "Tx interrupt throttling cannot be changed if adaptive-tx is enabled\n"); + return -EINVAL; + } rx_ring->itr_setting = ITR_REG_ALIGN(ec->rx_coalesce_usecs); tx_ring->itr_setting = ITR_REG_ALIGN(ec->tx_coalesce_usecs); @@ -747,6 +787,7 @@ * the Tx and Rx ITR values based on the values we have entered * into the q_vector, no need to write the values now. */ + return 0; } /** @@ -788,9 +829,11 @@ */ if (queue < 0) { for (i = 0; i < adapter->num_active_queues; i++) - iavf_set_itr_per_queue(adapter, ec, i); + if (iavf_set_itr_per_queue(adapter, ec, i)) + return -EINVAL; } else if (queue < adapter->num_active_queues) { - iavf_set_itr_per_queue(adapter, ec, queue); + if (iavf_set_itr_per_queue(adapter, ec, queue)) + return -EINVAL; } else { netif_info(adapter, drv, netdev, "Invalid queue value, queue range is 0 - %d\n", adapter->num_active_queues - 1); @@ -962,14 +1005,13 @@ if (hfunc) *hfunc = ETH_RSS_HASH_TOP; - if (!indir) - return 0; - - memcpy(key, adapter->rss_key, adapter->rss_key_size); + if (key) + memcpy(key, adapter->rss_key, adapter->rss_key_size); - /* Each 32 bits pointed by 'indir' is stored with a lut entry */ - for (i = 0; i < adapter->rss_lut_size; i++) - indir[i] = (u32)adapter->rss_lut[i]; + if (indir) + /* Each 32 bits pointed by 'indir' is stored with a lut entry */ + for (i = 0; i < adapter->rss_lut_size; i++) + indir[i] = (u32)adapter->rss_lut[i]; return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_main.c @@ -143,6 +143,30 @@ } /** + * iavf_lock_timeout - try to set bit but give up after timeout + * @adapter: board private structure + * @bit: bit to set + * @msecs: timeout in msecs + * + * Returns 0 on success, negative on failure + **/ +static int iavf_lock_timeout(struct iavf_adapter *adapter, + enum iavf_critical_section_t bit, + unsigned int msecs) +{ + unsigned int wait, delay = 10; + + for (wait = 0; wait < msecs; wait += delay) { + if (!test_and_set_bit(bit, &adapter->crit_section)) + return 0; + + msleep(delay); + } + + return -1; +} + +/** * iavf_schedule_reset - Set the flags and schedule a reset event * @adapter: board private structure **/ @@ -761,6 +785,7 @@ list_add_tail(&f->list, &adapter->mac_filter_list); f->add = true; + f->is_new_mac = true; adapter->aq_required |= IAVF_FLAG_AQ_ADD_MAC_FILTER; } else { f->remove = false; @@ -1499,11 +1524,6 @@ set_bit(__IAVF_VSI_DOWN, adapter->vsi.state); iavf_map_rings_to_vectors(adapter); - - if (RSS_AQ(adapter)) - adapter->aq_required |= IAVF_FLAG_AQ_CONFIGURE_RSS; - else - err = iavf_init_rss(adapter); err: return err; } @@ -1606,8 +1626,7 @@ iavf_set_promiscuous(adapter, FLAG_VF_MULTICAST_PROMISC); return 0; } - - if ((adapter->aq_required & IAVF_FLAG_AQ_RELEASE_PROMISC) && + if ((adapter->aq_required & IAVF_FLAG_AQ_RELEASE_PROMISC) || (adapter->aq_required & IAVF_FLAG_AQ_RELEASE_ALLMULTI)) { iavf_set_promiscuous(adapter, 0); return 0; @@ -1965,7 +1984,6 @@ /* check for hw reset */ reg_val = rd32(hw, IAVF_VF_ARQLEN1) & IAVF_VF_ARQLEN1_ARQENABLE_MASK; if (!reg_val) { - adapter->state = __IAVF_RESETTING; adapter->flags |= IAVF_FLAG_RESET_PENDING; adapter->aq_required = 0; adapter->current_op = VIRTCHNL_OP_UNKNOWN; @@ -2038,8 +2056,8 @@ iavf_free_misc_irq(adapter); iavf_reset_interrupt_capability(adapter); - iavf_free_queues(adapter); iavf_free_q_vectors(adapter); + iavf_free_queues(adapter); memset(adapter->vf_res, 0, IAVF_VIRTCHNL_VF_RESOURCE_SIZE); iavf_shutdown_adminq(&adapter->hw); adapter->netdev->flags &= ~IFF_UP; @@ -2081,6 +2099,10 @@ if (test_bit(__IAVF_IN_REMOVE_TASK, &adapter->crit_section)) return; + if (iavf_lock_timeout(adapter, __IAVF_IN_CRITICAL_TASK, 200)) { + schedule_work(&adapter->reset_task); + return; + } while (test_and_set_bit(__IAVF_IN_CLIENT_TASK, &adapter->crit_section)) usleep_range(500, 1000); @@ -2129,6 +2151,7 @@ } pci_set_master(adapter->pdev); + pci_restore_msi_state(adapter->pdev); if (i == IAVF_RESET_WAIT_COUNT) { dev_err(&adapter->pdev->dev, "Reset never finished (%x)\n", @@ -2179,6 +2202,14 @@ goto reset_err; } + if (RSS_AQ(adapter)) { + adapter->aq_required |= IAVF_FLAG_AQ_CONFIGURE_RSS; + } else { + err = iavf_init_rss(adapter); + if (err) + goto reset_err; + } + adapter->aq_required |= IAVF_FLAG_AQ_GET_CONFIG; adapter->aq_required |= IAVF_FLAG_AQ_MAP_VECTORS; @@ -2287,6 +2318,8 @@ if (!event.msg_buf) goto out; + if (iavf_lock_timeout(adapter, __IAVF_IN_CRITICAL_TASK, 200)) + goto freedom; do { ret = iavf_clean_arq_element(hw, &event, &pending); v_op = (enum virtchnl_ops)le32_to_cpu(event.desc.cookie_high); @@ -2300,6 +2333,7 @@ if (pending != 0) memset(event.msg_buf, 0, IAVF_MAX_AQ_BUF_SIZE); } while (pending); + clear_bit(__IAVF_IN_CRITICAL_TASK, &adapter->crit_section); if ((adapter->flags & (IAVF_FLAG_RESET_PENDING | IAVF_FLAG_RESET_NEEDED)) || @@ -2308,7 +2342,7 @@ /* check for error indications */ val = rd32(hw, hw->aq.arq.len); - if (val == 0xdeadbeef) /* indicates device in reset */ + if (val == 0xdeadbeef || val == 0xffffffff) /* device in reset */ goto freedom; oldval = val; if (val & IAVF_VF_ARQLEN1_ARQVFE_MASK) { @@ -2547,6 +2581,7 @@ struct tc_mqprio_qopt_offload *mqprio_qopt) { u64 total_max_rate = 0; + u32 tx_rate_rem = 0; int i, num_qps = 0; u64 tx_rate = 0; int ret = 0; @@ -2561,17 +2596,40 @@ return -EINVAL; if (mqprio_qopt->min_rate[i]) { dev_err(&adapter->pdev->dev, - "Invalid min tx rate (greater than 0) specified\n"); + "Invalid min tx rate (greater than 0) specified for TC%d\n", + i); return -EINVAL; } - /*convert to Mbps */ + + /* convert to Mbps */ tx_rate = div_u64(mqprio_qopt->max_rate[i], IAVF_MBPS_DIVISOR); + + if (mqprio_qopt->max_rate[i] && + tx_rate < IAVF_MBPS_QUANTA) { + dev_err(&adapter->pdev->dev, + "Invalid max tx rate for TC%d, minimum %dMbps\n", + i, IAVF_MBPS_QUANTA); + return -EINVAL; + } + + (void)div_u64_rem(tx_rate, IAVF_MBPS_QUANTA, &tx_rate_rem); + + if (tx_rate_rem != 0) { + dev_err(&adapter->pdev->dev, + "Invalid max tx rate for TC%d, not divisible by %d\n", + i, IAVF_MBPS_QUANTA); + return -EINVAL; + } + total_max_rate += tx_rate; num_qps += mqprio_qopt->qopt.count[i]; } - if (num_qps > IAVF_MAX_REQ_QUEUES) + if (num_qps > adapter->num_active_queues) { + dev_err(&adapter->pdev->dev, + "Cannot support requested number of queues\n"); return -EINVAL; + } ret = iavf_validate_tx_bandwidth(adapter, total_max_rate); return ret; @@ -3000,11 +3058,11 @@ /* start out with flow type and eth type IPv4 to begin with */ filter->f.flow_type = VIRTCHNL_TCP_V4_FLOW; err = iavf_parse_cls_flower(adapter, cls_flower, filter); - if (err < 0) + if (err) goto err; err = iavf_handle_tclass(adapter, tc, filter); - if (err < 0) + if (err) goto err; /* add filter to the list */ @@ -3286,8 +3344,11 @@ iavf_notify_client_l2_params(&adapter->vsi); adapter->flags |= IAVF_FLAG_SERVICE_CLIENT_REQUESTED; } - adapter->flags |= IAVF_FLAG_RESET_NEEDED; - queue_work(iavf_wq, &adapter->reset_task); + + if (netif_running(netdev)) { + adapter->flags |= IAVF_FLAG_RESET_NEEDED; + queue_work(iavf_wq, &adapter->reset_task); + } return 0; } @@ -3391,7 +3452,8 @@ { struct iavf_adapter *adapter = netdev_priv(netdev); - if (!(adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)) + if (adapter->vf_res && + !(adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)) features &= ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_FILTER); @@ -3596,6 +3658,10 @@ init_task.work); struct iavf_hw *hw = &adapter->hw; + if (iavf_lock_timeout(adapter, __IAVF_IN_CRITICAL_TASK, 5000)) { + dev_warn(&adapter->pdev->dev, "failed to set __IAVF_IN_CRITICAL_TASK in %s\n", __FUNCTION__); + return; + } switch (adapter->state) { case __IAVF_STARTUP: if (iavf_startup(adapter) < 0) @@ -3608,14 +3674,14 @@ case __IAVF_INIT_GET_RESOURCES: if (iavf_init_get_resources(adapter) < 0) goto init_failed; - return; + goto out; default: goto init_failed; } queue_delayed_work(iavf_wq, &adapter->init_task, msecs_to_jiffies(30)); - return; + goto out; init_failed: if (++adapter->aq_wait_count > IAVF_AQ_MAX_ERR) { dev_err(&adapter->pdev->dev, @@ -3624,9 +3690,11 @@ iavf_shutdown_adminq(hw); adapter->state = __IAVF_STARTUP; queue_delayed_work(iavf_wq, &adapter->init_task, HZ * 5); - return; + goto out; } queue_delayed_work(iavf_wq, &adapter->init_task, HZ); +out: + clear_bit(__IAVF_IN_CRITICAL_TASK, &adapter->crit_section); } /** @@ -3643,9 +3711,12 @@ if (netif_running(netdev)) iavf_close(netdev); + if (iavf_lock_timeout(adapter, __IAVF_IN_CRITICAL_TASK, 5000)) + dev_warn(&adapter->pdev->dev, "failed to set __IAVF_IN_CRITICAL_TASK in %s\n", __FUNCTION__); /* Prevent the watchdog from running. */ adapter->state = __IAVF_REMOVE; adapter->aq_required = 0; + clear_bit(__IAVF_IN_CRITICAL_TASK, &adapter->crit_section); #ifdef CONFIG_PM pci_save_state(pdev); @@ -3765,6 +3836,7 @@ err_ioremap: free_netdev(netdev); err_alloc_etherdev: + pci_disable_pcie_error_reporting(pdev); pci_release_regions(pdev); err_pci_reg: err_dma: @@ -3873,10 +3945,6 @@ err); } - /* Shut down all the garbage mashers on the detention level */ - adapter->state = __IAVF_REMOVE; - adapter->aq_required = 0; - adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED; iavf_request_reset(adapter); msleep(50); /* If the FW isn't responding, kick it once, but only once. */ @@ -3884,6 +3952,13 @@ iavf_request_reset(adapter); msleep(50); } + if (iavf_lock_timeout(adapter, __IAVF_IN_CRITICAL_TASK, 5000)) + dev_warn(&adapter->pdev->dev, "failed to set __IAVF_IN_CRITICAL_TASK in %s\n", __FUNCTION__); + + /* Shut down all the garbage mashers on the detention level */ + adapter->state = __IAVF_REMOVE; + adapter->aq_required = 0; + adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED; iavf_free_all_tx_resources(adapter); iavf_free_all_rx_resources(adapter); iavf_misc_irq_disable(adapter); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -241,11 +241,14 @@ void iavf_configure_queues(struct iavf_adapter *adapter) { struct virtchnl_vsi_queue_config_info *vqci; - struct virtchnl_queue_pair_info *vqpi; + int i, max_frame = adapter->vf_res->max_mtu; int pairs = adapter->num_active_queues; - int i, max_frame = IAVF_MAX_RXBUFFER; + struct virtchnl_queue_pair_info *vqpi; size_t len; + if (max_frame > IAVF_MAX_RXBUFFER || !max_frame) + max_frame = IAVF_MAX_RXBUFFER; + if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) { /* bail because we already have a command pending */ dev_err(&adapter->pdev->dev, "Cannot configure queues, command %d pending\n", @@ -565,6 +568,47 @@ } /** + * iavf_mac_add_ok + * @adapter: adapter structure + * + * Submit list of filters based on PF response. + **/ +static void iavf_mac_add_ok(struct iavf_adapter *adapter) +{ + struct iavf_mac_filter *f, *ftmp; + + spin_lock_bh(&adapter->mac_vlan_list_lock); + list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { + f->is_new_mac = false; + } + spin_unlock_bh(&adapter->mac_vlan_list_lock); +} + +/** + * iavf_mac_add_reject + * @adapter: adapter structure + * + * Remove filters from list based on PF response. + **/ +static void iavf_mac_add_reject(struct iavf_adapter *adapter) +{ + struct net_device *netdev = adapter->netdev; + struct iavf_mac_filter *f, *ftmp; + + spin_lock_bh(&adapter->mac_vlan_list_lock); + list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) { + if (f->remove && ether_addr_equal(f->macaddr, netdev->dev_addr)) + f->remove = false; + + if (f->is_new_mac) { + list_del(&f->list); + kfree(f); + } + } + spin_unlock_bh(&adapter->mac_vlan_list_lock); +} + +/** * iavf_add_vlans * @adapter: adapter structure * @@ -1316,6 +1360,7 @@ case VIRTCHNL_OP_ADD_ETH_ADDR: dev_err(&adapter->pdev->dev, "Failed to add MAC filter, error %s\n", iavf_stat_str(&adapter->hw, v_retval)); + iavf_mac_add_reject(adapter); /* restore administratively set MAC address */ ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr); break; @@ -1385,10 +1430,11 @@ } } switch (v_opcode) { - case VIRTCHNL_OP_ADD_ETH_ADDR: { + case VIRTCHNL_OP_ADD_ETH_ADDR: + if (!v_retval) + iavf_mac_add_ok(adapter); if (!ether_addr_equal(netdev->dev_addr, adapter->hw.mac.addr)) ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr); - } break; case VIRTCHNL_OP_GET_STATS: { struct iavf_eth_stats *stats = diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_ethtool.c @@ -138,9 +138,6 @@ QINT_RQCTL(0), PFINT_OICR_ENA, QRX_ITR(0), - PF0INT_ITR_0(0), - PF0INT_ITR_1(0), - PF0INT_ITR_2(0), }; struct ice_priv_flag { @@ -619,7 +616,8 @@ rx_desc = ICE_RX_DESC(rx_ring, i); if (!(rx_desc->wb.status_error0 & - cpu_to_le16(ICE_TX_DESC_CMD_EOP | ICE_TX_DESC_CMD_RS))) + (cpu_to_le16(BIT(ICE_RX_FLEX_DESC_STATUS0_DD_S)) | + cpu_to_le16(BIT(ICE_RX_FLEX_DESC_STATUS0_EOF_S))))) continue; rx_buf = &rx_ring->rx_buf[i]; @@ -2338,6 +2336,42 @@ } /** + * ice_set_phy_type_from_speed - set phy_types based on speeds + * and advertised modes + * @ks: ethtool link ksettings struct + * @phy_type_low: pointer to the lower part of phy_type + * @phy_type_high: pointer to the higher part of phy_type + * @adv_link_speed: targeted link speeds bitmap + */ +static void +ice_set_phy_type_from_speed(const struct ethtool_link_ksettings *ks, + u64 *phy_type_low, u64 *phy_type_high, + u16 adv_link_speed) +{ + /* Handle 1000M speed in a special way because ice_update_phy_type + * enables all link modes, but having mixed copper and optical + * standards is not supported. + */ + adv_link_speed &= ~ICE_AQ_LINK_SPEED_1000MB; + + if (ethtool_link_ksettings_test_link_mode(ks, advertising, + 1000baseT_Full)) + *phy_type_low |= ICE_PHY_TYPE_LOW_1000BASE_T | + ICE_PHY_TYPE_LOW_1G_SGMII; + + if (ethtool_link_ksettings_test_link_mode(ks, advertising, + 1000baseKX_Full)) + *phy_type_low |= ICE_PHY_TYPE_LOW_1000BASE_KX; + + if (ethtool_link_ksettings_test_link_mode(ks, advertising, + 1000baseX_Full)) + *phy_type_low |= ICE_PHY_TYPE_LOW_1000BASE_SX | + ICE_PHY_TYPE_LOW_1000BASE_LX; + + ice_update_phy_type(phy_type_low, phy_type_high, adv_link_speed); +} + +/** * ice_set_link_ksettings - Set Speed and Duplex * @netdev: network interface device structure * @ks: ethtool ksettings @@ -2472,7 +2506,8 @@ adv_link_speed = curr_link_speed; /* Convert the advertise link speeds to their corresponded PHY_TYPE */ - ice_update_phy_type(&phy_type_low, &phy_type_high, adv_link_speed); + ice_set_phy_type_from_speed(ks, &phy_type_low, &phy_type_high, + adv_link_speed); if (!autoneg_changed && adv_link_speed == curr_link_speed) { netdev_info(netdev, "Nothing changed, exiting without setting anything.\n"); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_hw_autogen.h linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_hw_autogen.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_hw_autogen.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_hw_autogen.h @@ -6,9 +6,6 @@ #ifndef _ICE_HW_AUTOGEN_H_ #define _ICE_HW_AUTOGEN_H_ -#define PF0INT_ITR_0(_i) (0x03000004 + ((_i) * 4096)) -#define PF0INT_ITR_1(_i) (0x03000008 + ((_i) * 4096)) -#define PF0INT_ITR_2(_i) (0x0300000C + ((_i) * 4096)) #define QTX_COMM_DBELL(_DBQM) (0x002C0000 + ((_DBQM) * 4)) #define QTX_COMM_HEAD(_DBQM) (0x000E0000 + ((_DBQM) * 4)) #define QTX_COMM_HEAD_HEAD_S 0 @@ -34,6 +31,7 @@ #define PF_FW_ATQLEN_ATQOVFL_M BIT(29) #define PF_FW_ATQLEN_ATQCRIT_M BIT(30) #define VF_MBX_ARQLEN(_VF) (0x0022BC00 + ((_VF) * 4)) +#define VF_MBX_ATQLEN(_VF) (0x0022A800 + ((_VF) * 4)) #define PF_FW_ATQLEN_ATQENABLE_M BIT(31) #define PF_FW_ATQT 0x00080400 #define PF_MBX_ARQBAH 0x0022E400 diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_main.c @@ -3005,9 +3005,6 @@ struct ice_pf *pf = pci_get_drvdata(pdev); int i; - if (!pf) - return; - for (i = 0; i < ICE_MAX_RESET_WAIT; i++) { if (!ice_is_reset_in_progress(pf->state)) break; @@ -3499,10 +3496,12 @@ if (vsi->netdev) { ice_set_rx_mode(vsi->netdev); - err = ice_vsi_vlan_setup(vsi); + if (vsi->type != ICE_VSI_LB) { + err = ice_vsi_vlan_setup(vsi); - if (err) - return err; + if (err) + return err; + } } ice_vsi_cfg_dcb_rings(vsi); @@ -3565,6 +3564,10 @@ netif_carrier_on(vsi->netdev); } + /* Perform an initial read of the statistics registers now to + * set the baseline so counters are ready when interface is up + */ + ice_update_eth_stats(vsi); ice_service_task_schedule(pf); return 0; diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_switch.c linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_switch.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_switch.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_switch.c @@ -2627,7 +2627,7 @@ else status = ice_set_vsi_promisc(hw, vsi_handle, promisc_mask, vlan_id); - if (status) + if (status && status != -EEXIST) break; } diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c @@ -384,13 +384,15 @@ */ clear_bit(ICE_VF_STATE_INIT, vf->vf_states); - /* VF_MBX_ARQLEN is cleared by PFR, so the driver needs to clear it - * in the case of VFR. If this is done for PFR, it can mess up VF - * resets because the VF driver may already have started cleanup - * by the time we get here. + /* VF_MBX_ARQLEN and VF_MBX_ATQLEN are cleared by PFR, so the driver + * needs to clear them in the case of VFR/VFLR. If this is done for + * PFR, it can mess up VF resets because the VF driver may already + * have started cleanup by the time we get here. */ - if (!is_pfr) - wr32(hw, VF_MBX_ARQLEN(vf_abs_id), 0); + if (!is_pfr) { + wr32(hw, VF_MBX_ARQLEN(vf->vf_id), 0); + wr32(hw, VF_MBX_ATQLEN(vf->vf_id), 0); + } /* In the case of a VFLR, the HW has already reset the VF and we * just need to clean up, so don't hit the VFRTRIG register. diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/igb/igb_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igb/igb_main.c @@ -940,6 +940,7 @@ **/ static int igb_request_msix(struct igb_adapter *adapter) { + unsigned int num_q_vectors = adapter->num_q_vectors; struct net_device *netdev = adapter->netdev; int i, err = 0, vector = 0, free_vector = 0; @@ -948,7 +949,13 @@ if (err) goto err_out; - for (i = 0; i < adapter->num_q_vectors; i++) { + if (num_q_vectors > MAX_Q_VECTORS) { + num_q_vectors = MAX_Q_VECTORS; + dev_warn(&adapter->pdev->dev, + "The number of queue vectors (%d) is higher than max allowed (%d)\n", + adapter->num_q_vectors, MAX_Q_VECTORS); + } + for (i = 0; i < num_q_vectors; i++) { struct igb_q_vector *q_vector = adapter->q_vector[i]; vector++; @@ -1687,14 +1694,15 @@ **/ static void igb_config_tx_modes(struct igb_adapter *adapter, int queue) { - struct igb_ring *ring = adapter->tx_ring[queue]; struct net_device *netdev = adapter->netdev; struct e1000_hw *hw = &adapter->hw; + struct igb_ring *ring; u32 tqavcc, tqavctrl; u16 value; WARN_ON(hw->mac.type != e1000_i210); WARN_ON(queue < 0 || queue > 1); + ring = adapter->tx_ring[queue]; /* If any of the Qav features is enabled, configure queues as SR and * with HIGH PRIO. If none is, then configure them with LOW PRIO and @@ -2651,7 +2659,8 @@ } input->filter.match_flags |= IGB_FILTER_FLAG_VLAN_TCI; - input->filter.vlan_tci = match.key->vlan_priority; + input->filter.vlan_tci = + (__force __be16)match.key->vlan_priority; } } @@ -3468,6 +3477,7 @@ err_ioremap: free_netdev(netdev); err_alloc_etherdev: + pci_disable_pcie_error_reporting(pdev); pci_release_mem_regions(pdev); err_pci_reg: err_dma: @@ -3481,6 +3491,7 @@ struct net_device *netdev = pci_get_drvdata(pdev); struct igb_adapter *adapter = netdev_priv(netdev); struct e1000_hw *hw = &adapter->hw; + unsigned long flags; /* reclaim resources allocated to VFs */ if (adapter->vf_data) { @@ -3493,12 +3504,13 @@ pci_disable_sriov(pdev); msleep(500); } - + spin_lock_irqsave(&adapter->vfs_lock, flags); kfree(adapter->vf_mac_list); adapter->vf_mac_list = NULL; kfree(adapter->vf_data); adapter->vf_data = NULL; adapter->vfs_allocated_count = 0; + spin_unlock_irqrestore(&adapter->vfs_lock, flags); wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); wrfl(); msleep(100); @@ -3658,7 +3670,9 @@ igb_release_hw_control(adapter); #ifdef CONFIG_PCI_IOV + rtnl_lock(); igb_disable_sriov(pdev); + rtnl_unlock(); #endif unregister_netdev(netdev); @@ -3819,6 +3833,9 @@ spin_lock_init(&adapter->nfc_lock); spin_lock_init(&adapter->stats64_lock); + + /* init spinlock to avoid concurrency of VF resources */ + spin_lock_init(&adapter->vfs_lock); #ifdef CONFIG_PCI_IOV switch (hw->mac.type) { case e1000_82576: @@ -4656,6 +4673,8 @@ DMA_TO_DEVICE); } + tx_buffer->next_to_watch = NULL; + /* move us one more past the eop_desc for start of next pkt */ tx_buffer++; i++; @@ -5306,7 +5325,8 @@ break; } - if (adapter->link_speed != SPEED_1000) + if (adapter->link_speed != SPEED_1000 || + !hw->phy.ops.read_reg) goto no_wait; /* wait for Remote receiver status OK */ @@ -7362,6 +7382,20 @@ struct vf_mac_filter *entry = NULL; int ret = 0; + if ((vf_data->flags & IGB_VF_FLAG_PF_SET_MAC) && + !vf_data->trusted) { + dev_warn(&pdev->dev, + "VF %d requested MAC filter but is administratively denied\n", + vf); + return -EINVAL; + } + if (!is_valid_ether_addr(addr)) { + dev_warn(&pdev->dev, + "VF %d attempted to set invalid MAC filter\n", + vf); + return -EINVAL; + } + switch (info) { case E1000_VF_MAC_FILTER_CLR: /* remove all unicast MAC filters related to the current VF */ @@ -7375,20 +7409,6 @@ } break; case E1000_VF_MAC_FILTER_ADD: - if ((vf_data->flags & IGB_VF_FLAG_PF_SET_MAC) && - !vf_data->trusted) { - dev_warn(&pdev->dev, - "VF %d requested MAC filter but is administratively denied\n", - vf); - return -EINVAL; - } - if (!is_valid_ether_addr(addr)) { - dev_warn(&pdev->dev, - "VF %d attempted to set invalid MAC filter\n", - vf); - return -EINVAL; - } - /* try to find empty slot in the list */ list_for_each(pos, &adapter->vf_macs.l) { entry = list_entry(pos, struct vf_mac_filter, l); @@ -7556,8 +7576,10 @@ static void igb_msg_task(struct igb_adapter *adapter) { struct e1000_hw *hw = &adapter->hw; + unsigned long flags; u32 vf; + spin_lock_irqsave(&adapter->vfs_lock, flags); for (vf = 0; vf < adapter->vfs_allocated_count; vf++) { /* process any reset requests */ if (!igb_check_for_rst(hw, vf)) @@ -7571,6 +7593,7 @@ if (!igb_check_for_ack(hw, vf)) igb_rcv_ack_from_vf(adapter, vf); } + spin_unlock_irqrestore(&adapter->vfs_lock, flags); } /** @@ -7740,7 +7763,7 @@ if (likely(napi_complete_done(napi, work_done))) igb_ring_irq_enable(q_vector); - return min(work_done, budget - 1); + return work_done; } /** @@ -8255,7 +8278,7 @@ if (igb_test_staterr(rx_desc, E1000_RXDEXT_STATERR_LB) && test_bit(IGB_RING_FLAG_RX_LB_VLAN_BSWAP, &rx_ring->flags)) - vid = be16_to_cpu(rx_desc->wb.upper.vlan); + vid = be16_to_cpu((__force __be16)rx_desc->wb.upper.vlan); else vid = le16_to_cpu(rx_desc->wb.upper.vlan); @@ -9391,11 +9414,10 @@ struct e1000_hw *hw = &adapter->hw; u32 dmac_thr; u16 hwm; + u32 reg; if (hw->mac.type > e1000_82580) { if (adapter->flags & IGB_FLAG_DMAC) { - u32 reg; - /* force threshold to 0. */ wr32(E1000_DMCTXTH, 0); @@ -9428,7 +9450,6 @@ /* Disable BMC-to-OS Watchdog Enable */ if (hw->mac.type != e1000_i354) reg &= ~E1000_DMACR_DC_BMC2OSW_EN; - wr32(E1000_DMACR, reg); /* no lower threshold to disable @@ -9445,12 +9466,12 @@ */ wr32(E1000_DMCTXTH, (IGB_MIN_TXPBSIZE - (IGB_TX_BUF_4096 + adapter->max_frame_size)) >> 6); + } - /* make low power state decision controlled - * by DMA coal - */ + if (hw->mac.type >= e1000_i210 || + (adapter->flags & IGB_FLAG_DMAC)) { reg = rd32(E1000_PCIEMISC); - reg &= ~E1000_PCIEMISC_LX_DECISION; + reg |= E1000_PCIEMISC_LX_DECISION; wr32(E1000_PCIEMISC, reg); } /* endif adapter->dmac is not disabled */ } else if (hw->mac.type == e1000_82580) { diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_i225.c linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_i225.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_i225.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_i225.c @@ -156,8 +156,15 @@ { u32 swfw_sync; - while (igc_get_hw_semaphore_i225(hw)) - ; /* Empty */ + /* Releasing the resource requires first getting the HW semaphore. + * If we fail to get the semaphore, there is nothing we can do, + * except log an error and quit. We are not allowed to hang here + * indefinitely, as it may cause denial of service or system crash. + */ + if (igc_get_hw_semaphore_i225(hw)) { + hw_dbg("Failed to release SW_FW_SYNC.\n"); + return; + } swfw_sync = rd32(IGC_SW_FW_SYNC); swfw_sync &= ~mask; diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_main.c @@ -256,6 +256,8 @@ DMA_TO_DEVICE); } + tx_buffer->next_to_watch = NULL; + /* move us one more past the eop_desc for start of next pkt */ tx_buffer++; i++; @@ -2691,6 +2693,7 @@ */ static int igc_request_msix(struct igc_adapter *adapter) { + unsigned int num_q_vectors = adapter->num_q_vectors; int i = 0, err = 0, vector = 0, free_vector = 0; struct net_device *netdev = adapter->netdev; @@ -2699,7 +2702,13 @@ if (err) goto err_out; - for (i = 0; i < adapter->num_q_vectors; i++) { + if (num_q_vectors > MAX_Q_VECTORS) { + num_q_vectors = MAX_Q_VECTORS; + dev_warn(&adapter->pdev->dev, + "The number of queue vectors (%d) is higher than max allowed (%d)\n", + adapter->num_q_vectors, MAX_Q_VECTORS); + } + for (i = 0; i < num_q_vectors; i++) { struct igc_q_vector *q_vector = adapter->q_vector[i]; vector++; @@ -2875,8 +2884,7 @@ break; } - if (hw->mac.type == igc_i225 && - hw->phy.id == I225_I_PHY_ID) { + if (hw->mac.type == igc_i225) { if (!netif_carrier_ok(adapter->netdev)) { adapter->flags &= ~IGC_FLAG_NEED_LINK_UPDATE; } else if (!(adapter->flags & IGC_FLAG_NEED_LINK_UPDATE)) { @@ -4310,8 +4318,8 @@ err_ioremap: free_netdev(netdev); err_alloc_etherdev: - pci_release_selected_regions(pdev, - pci_select_bars(pdev, IORESOURCE_MEM)); + pci_disable_pcie_error_reporting(pdev); + pci_release_mem_regions(pdev); err_pci_reg: err_dma: pci_disable_device(pdev); diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_phy.c linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_phy.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_phy.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_phy.c @@ -249,8 +249,7 @@ return ret_val; } - if ((phy->autoneg_mask & ADVERTISE_2500_FULL) && - hw->phy.id == I225_I_PHY_ID) { + if (phy->autoneg_mask & ADVERTISE_2500_FULL) { /* Read the MULTI GBT AN Control Register - reg 7.32 */ ret_val = phy->ops.read_reg(hw, (STANDARD_AN_REG_MASK << MMD_DEVADDR_SHIFT) | @@ -390,8 +389,7 @@ ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, mii_1000t_ctrl_reg); - if ((phy->autoneg_mask & ADVERTISE_2500_FULL) && - hw->phy.id == I225_I_PHY_ID) + if (phy->autoneg_mask & ADVERTISE_2500_FULL) ret_val = phy->ops.write_reg(hw, (STANDARD_AN_REG_MASK << MMD_DEVADDR_SHIFT) | @@ -583,7 +581,7 @@ * the lower time out */ for (i = 0; i < IGC_GEN_POLL_TIMEOUT; i++) { - usleep_range(500, 1000); + udelay(50); mdic = rd32(IGC_MDIC); if (mdic & IGC_MDIC_READY) break; @@ -640,7 +638,7 @@ * the lower time out */ for (i = 0; i < IGC_GEN_POLL_TIMEOUT; i++) { - usleep_range(500, 1000); + udelay(50); mdic = rd32(IGC_MDIC); if (mdic & IGC_MDIC_READY) break; @@ -748,8 +746,6 @@ if (ret_val) return ret_val; ret_val = igc_write_phy_reg_mdic(hw, offset, data); - if (ret_val) - return ret_val; hw->phy.ops.release(hw); } else { ret_val = igc_write_xmdio_reg(hw, (u16)offset, dev_addr, @@ -781,8 +777,6 @@ if (ret_val) return ret_val; ret_val = igc_read_phy_reg_mdic(hw, offset, data); - if (ret_val) - return ret_val; hw->phy.ops.release(hw); } else { ret_val = igc_read_xmdio_reg(hw, (u16)offset, dev_addr, diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_regs.h linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_regs.h --- linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_regs.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_regs.h @@ -239,2 +239,4 @@ +#define IGC_REMOVED(h) unlikely(!(h)) + #endif diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c @@ -903,7 +903,8 @@ /* Tx IPsec offload doesn't seem to work on this * device, so block these requests for now. */ - if (!(sam->flags & XFRM_OFFLOAD_INBOUND)) { + sam->flags = sam->flags & ~XFRM_OFFLOAD_IPV6; + if (sam->flags != XFRM_OFFLOAD_INBOUND) { err = -EOPNOTSUPP; goto err_out; } diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -1827,7 +1827,8 @@ struct sk_buff *skb) { if (ring_uses_build_skb(rx_ring)) { - unsigned long offset = (unsigned long)(skb->data) & ~PAGE_MASK; + unsigned long mask = (unsigned long)ixgbe_rx_pg_size(rx_ring) - 1; + unsigned long offset = (unsigned long)(skb->data) & mask; dma_sync_single_range_for_cpu(rx_ring->dev, IXGBE_CB(skb)->dma, @@ -5678,6 +5679,9 @@ ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD; IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); + + /* update setting rx tx for all active vfs */ + ixgbe_set_all_vfs(adapter); } void ixgbe_reinit_locked(struct ixgbe_adapter *adapter) @@ -6136,11 +6140,8 @@ for (i = 0 ; i < adapter->num_vfs; i++) adapter->vfinfo[i].clear_to_send = false; - /* ping all the active vfs to let them know we are going down */ - ixgbe_ping_all_vfs(adapter); - - /* Disable all VFTE/VFRE TX/RX */ - ixgbe_disable_tx_rx(adapter); + /* update setting rx tx for all active vfs */ + ixgbe_set_all_vfs(adapter); } /* disable transmits in the hardware now that interrupts are off */ @@ -6395,6 +6396,9 @@ /* n-tuple support exists, always init our spinlock */ spin_lock_init(&adapter->fdir_perfect_lock); + /* init spinlock to avoid concurrency of VF resources */ + spin_lock_init(&adapter->vfs_lock); + #ifdef CONFIG_IXGBE_DCB ixgbe_init_dcb(adapter); #endif @@ -7624,6 +7628,27 @@ } #ifdef CONFIG_PCI_IOV +static void ixgbe_bad_vf_abort(struct ixgbe_adapter *adapter, u32 vf) +{ + struct ixgbe_hw *hw = &adapter->hw; + + if (adapter->hw.mac.type == ixgbe_mac_82599EB && + adapter->flags2 & IXGBE_FLAG2_AUTO_DISABLE_VF) { + adapter->vfinfo[vf].primary_abort_count++; + if (adapter->vfinfo[vf].primary_abort_count == + IXGBE_PRIMARY_ABORT_LIMIT) { + ixgbe_set_vf_link_state(adapter, vf, + IFLA_VF_LINK_STATE_DISABLE); + adapter->vfinfo[vf].primary_abort_count = 0; + + e_info(drv, + "Malicious Driver Detection event detected on PF %d VF %d MAC: %pM mdd-disable-vf=on", + hw->bus.func, vf, + adapter->vfinfo[vf].vf_mac_addresses); + } + } +} + static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter) { struct ixgbe_hw *hw = &adapter->hw; @@ -7655,8 +7680,10 @@ continue; pci_read_config_word(vfdev, PCI_STATUS, &status_reg); if (status_reg != IXGBE_FAILED_READ_CFG_WORD && - status_reg & PCI_STATUS_REC_MASTER_ABORT) + status_reg & PCI_STATUS_REC_MASTER_ABORT) { + ixgbe_bad_vf_abort(adapter, vf); pcie_flr(vfdev); + } } } @@ -10405,6 +10432,7 @@ .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan, .ndo_set_vf_rate = ixgbe_ndo_set_vf_bw, .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk, + .ndo_set_vf_link_state = ixgbe_ndo_set_vf_link_state, .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en, .ndo_set_vf_trust = ixgbe_ndo_set_vf_trust, .ndo_get_vf_config = ixgbe_ndo_get_vf_config, @@ -10873,6 +10901,9 @@ if (err) goto err_sw_init; + if (adapter->hw.mac.type == ixgbe_mac_82599EB) + adapter->flags2 |= IXGBE_FLAG2_AUTO_DISABLE_VF; + /* Make sure the SWFW semaphore is in a valid state */ if (hw->mac.ops.init_swfw_sync) hw->mac.ops.init_swfw_sync(hw); @@ -11207,6 +11238,7 @@ disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state); free_netdev(netdev); err_alloc_etherdev: + pci_disable_pcie_error_reporting(pdev); pci_release_mem_regions(pdev); err_pci_reg: err_dma: diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c @@ -96,6 +96,7 @@ for (i = 0; i < num_vfs; i++) { /* enable spoof checking for all VFs */ adapter->vfinfo[i].spoofchk_enabled = true; + adapter->vfinfo[i].link_enable = true; /* We support VF RSS querying only for 82599 and x540 * devices at the moment. These devices share RSS @@ -204,10 +205,13 @@ int ixgbe_disable_sriov(struct ixgbe_adapter *adapter) { unsigned int num_vfs = adapter->num_vfs, vf; + unsigned long flags; int rss; + spin_lock_irqsave(&adapter->vfs_lock, flags); /* set num VFs to 0 to prevent access to vfinfo */ adapter->num_vfs = 0; + spin_unlock_irqrestore(&adapter->vfs_lock, flags); /* put the reference to all of the vf devices */ for (vf = 0; vf < num_vfs; ++vf) { @@ -820,6 +824,57 @@ } } +/** + * ixgbe_set_vf_rx_tx - Set VF rx tx + * @adapter: Pointer to adapter struct + * @vf: VF identifier + * + * Set or reset correct transmit and receive for vf + **/ +static void ixgbe_set_vf_rx_tx(struct ixgbe_adapter *adapter, int vf) +{ + u32 reg_cur_tx, reg_cur_rx, reg_req_tx, reg_req_rx; + struct ixgbe_hw *hw = &adapter->hw; + u32 reg_offset, vf_shift; + + vf_shift = vf % 32; + reg_offset = vf / 32; + + reg_cur_tx = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset)); + reg_cur_rx = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); + + if (adapter->vfinfo[vf].link_enable) { + reg_req_tx = reg_cur_tx | 1 << vf_shift; + reg_req_rx = reg_cur_rx | 1 << vf_shift; + } else { + reg_req_tx = reg_cur_tx & ~(1 << vf_shift); + reg_req_rx = reg_cur_rx & ~(1 << vf_shift); + } + + /* The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs. + * For more info take a look at ixgbe_set_vf_lpe + */ + if (adapter->hw.mac.type == ixgbe_mac_82599EB) { + struct net_device *dev = adapter->netdev; + int pf_max_frame = dev->mtu + ETH_HLEN; + +#if IS_ENABLED(CONFIG_FCOE) + if (dev->features & NETIF_F_FCOE_MTU) + pf_max_frame = max_t(int, pf_max_frame, + IXGBE_FCOE_JUMBO_FRAME_SIZE); +#endif /* CONFIG_FCOE */ + + if (pf_max_frame > ETH_FRAME_LEN) + reg_req_rx = reg_cur_rx & ~(1 << vf_shift); + } + + /* Enable/Disable particular VF */ + if (reg_cur_tx != reg_req_tx) + IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg_req_tx); + if (reg_cur_rx != reg_req_rx) + IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg_req_rx); +} + static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf) { struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; @@ -845,11 +900,6 @@ vf_shift = vf % 32; reg_offset = vf / 32; - /* enable transmit for vf */ - reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset)); - reg |= BIT(vf_shift); - IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg); - /* force drop enable for all VF Rx queues */ reg = IXGBE_QDE_ENABLE; if (adapter->vfinfo[vf].pf_vlan) @@ -857,27 +907,7 @@ ixgbe_write_qde(adapter, vf, reg); - /* enable receive for vf */ - reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); - reg |= BIT(vf_shift); - /* - * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs. - * For more info take a look at ixgbe_set_vf_lpe - */ - if (adapter->hw.mac.type == ixgbe_mac_82599EB) { - struct net_device *dev = adapter->netdev; - int pf_max_frame = dev->mtu + ETH_HLEN; - -#ifdef CONFIG_FCOE - if (dev->features & NETIF_F_FCOE_MTU) - pf_max_frame = max_t(int, pf_max_frame, - IXGBE_FCOE_JUMBO_FRAME_SIZE); - -#endif /* CONFIG_FCOE */ - if (pf_max_frame > ETH_FRAME_LEN) - reg &= ~BIT(vf_shift); - } - IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg); + ixgbe_set_vf_rx_tx(adapter, vf); /* enable VF mailbox for further messages */ adapter->vfinfo[vf].clear_to_send = true; @@ -1157,9 +1187,9 @@ switch (xcast_mode) { case IXGBEVF_XCAST_MODE_NONE: - disable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | + disable = IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE; - enable = 0; + enable = IXGBE_VMOLR_BAM; break; case IXGBEVF_XCAST_MODE_MULTI: disable = IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE; @@ -1181,9 +1211,9 @@ return -EPERM; } - disable = 0; + disable = IXGBE_VMOLR_VPE; enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | - IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE; + IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE; break; default: return -EOPNOTSUPP; @@ -1202,6 +1232,26 @@ return 0; } +static int ixgbe_get_vf_link_state(struct ixgbe_adapter *adapter, + u32 *msgbuf, u32 vf) +{ + u32 *link_state = &msgbuf[1]; + + /* verify the PF is supporting the correct API */ + switch (adapter->vfinfo[vf].vf_api) { + case ixgbe_mbox_api_12: + case ixgbe_mbox_api_13: + case ixgbe_mbox_api_14: + break; + default: + return -EOPNOTSUPP; + } + + *link_state = adapter->vfinfo[vf].link_enable; + + return 0; +} + static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf) { u32 mbx_size = IXGBE_VFMAILBOX_SIZE; @@ -1267,6 +1317,9 @@ case IXGBE_VF_UPDATE_XCAST_MODE: retval = ixgbe_update_vf_xcast_mode(adapter, msgbuf, vf); break; + case IXGBE_VF_GET_LINK_STATE: + retval = ixgbe_get_vf_link_state(adapter, msgbuf, vf); + break; case IXGBE_VF_IPSEC_ADD: retval = ixgbe_ipsec_vf_add_sa(adapter, msgbuf, vf); break; @@ -1305,8 +1358,10 @@ void ixgbe_msg_task(struct ixgbe_adapter *adapter) { struct ixgbe_hw *hw = &adapter->hw; + unsigned long flags; u32 vf; + spin_lock_irqsave(&adapter->vfs_lock, flags); for (vf = 0; vf < adapter->num_vfs; vf++) { /* process any reset requests */ if (!ixgbe_check_for_rst(hw, vf)) @@ -1320,18 +1375,7 @@ if (!ixgbe_check_for_ack(hw, vf)) ixgbe_rcv_ack_from_vf(adapter, vf); } -} - -void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter) -{ - struct ixgbe_hw *hw = &adapter->hw; - - /* disable transmit and receive for all vfs */ - IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0); - IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0); - - IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0); - IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0); + spin_unlock_irqrestore(&adapter->vfs_lock, flags); } static inline void ixgbe_ping_vf(struct ixgbe_adapter *adapter, int vf) @@ -1359,6 +1403,21 @@ } } +/** + * ixgbe_set_all_vfs - update vfs queues + * @adapter: Pointer to adapter struct + * + * Update setting transmit and receive queues for all vfs + **/ +void ixgbe_set_all_vfs(struct ixgbe_adapter *adapter) +{ + int i; + + for (i = 0 ; i < adapter->num_vfs; i++) + ixgbe_set_vf_link_state(adapter, i, + adapter->vfinfo[i].link_state); +} + int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) { struct ixgbe_adapter *adapter = netdev_priv(netdev); @@ -1656,6 +1715,84 @@ return 0; } +/** + * ixgbe_set_vf_link_state - Set link state + * @adapter: Pointer to adapter struct + * @vf: VF identifier + * @state: required link state + * + * Set a link force state on/off a single vf + **/ +void ixgbe_set_vf_link_state(struct ixgbe_adapter *adapter, int vf, int state) +{ + adapter->vfinfo[vf].link_state = state; + + switch (state) { + case IFLA_VF_LINK_STATE_AUTO: + if (test_bit(__IXGBE_DOWN, &adapter->state)) + adapter->vfinfo[vf].link_enable = false; + else + adapter->vfinfo[vf].link_enable = true; + break; + case IFLA_VF_LINK_STATE_ENABLE: + adapter->vfinfo[vf].link_enable = true; + break; + case IFLA_VF_LINK_STATE_DISABLE: + adapter->vfinfo[vf].link_enable = false; + break; + } + + ixgbe_set_vf_rx_tx(adapter, vf); + + /* restart the VF */ + adapter->vfinfo[vf].clear_to_send = false; + ixgbe_ping_vf(adapter, vf); +} + +/** + * ixgbe_ndo_set_vf_link_state - Set link state + * @netdev: network interface device structure + * @vf: VF identifier + * @state: required link state + * + * Set the link state of a specified VF, regardless of physical link state + **/ +int ixgbe_ndo_set_vf_link_state(struct net_device *netdev, int vf, int state) +{ + struct ixgbe_adapter *adapter = netdev_priv(netdev); + int ret = 0; + + if (vf < 0 || vf >= adapter->num_vfs) { + dev_err(&adapter->pdev->dev, + "NDO set VF link - invalid VF identifier %d\n", vf); + return -EINVAL; + } + + switch (state) { + case IFLA_VF_LINK_STATE_ENABLE: + dev_info(&adapter->pdev->dev, + "NDO set VF %d link state %d - not supported\n", + vf, state); + break; + case IFLA_VF_LINK_STATE_DISABLE: + dev_info(&adapter->pdev->dev, + "NDO set VF %d link state disable\n", vf); + ixgbe_set_vf_link_state(adapter, vf, state); + break; + case IFLA_VF_LINK_STATE_AUTO: + dev_info(&adapter->pdev->dev, + "NDO set VF %d link state auto\n", vf); + ixgbe_set_vf_link_state(adapter, vf, state); + break; + default: + dev_err(&adapter->pdev->dev, + "NDO set VF %d - invalid link state %d\n", vf, state); + ret = -EINVAL; + } + + return ret; +} + int ixgbe_ndo_set_vf_rss_query_en(struct net_device *netdev, int vf, bool setting) { diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c @@ -583,12 +583,14 @@ u32 cmd_type; while (budget-- > 0) { - if (unlikely(!ixgbe_desc_unused(xdp_ring)) || - !netif_carrier_ok(xdp_ring->netdev)) { + if (unlikely(!ixgbe_desc_unused(xdp_ring))) { work_done = false; break; } + if (!netif_carrier_ok(xdp_ring->netdev)) + break; + if (!xsk_umem_consume_tx(xdp_ring->xsk_umem, &desc)) break; diff -u linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c --- linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c @@ -1079,11 +1079,14 @@ case XDP_TX: xdp_ring = adapter->xdp_ring[rx_ring->queue_index]; result = ixgbevf_xmit_xdp_ring(xdp_ring, xdp); + if (result == IXGBEVF_XDP_CONSUMED) + goto out_failure; break; default: bpf_warn_invalid_xdp_action(act); /* fallthrough */ case XDP_ABORTED: +out_failure: trace_xdp_exception(rx_ring->netdev, xdp_prog, act); /* fallthrough -- handle aborts by dropping packet */ case XDP_DROP: @@ -1976,14 +1979,15 @@ if (adapter->flags & IXGBEVF_FLAGS_LEGACY_RX) return; - set_ring_build_skb_enabled(rx_ring); + if (PAGE_SIZE < 8192) + if (max_frame > IXGBEVF_MAX_FRAME_BUILD_SKB) + set_ring_uses_large_buffer(rx_ring); - if (PAGE_SIZE < 8192) { - if (max_frame <= IXGBEVF_MAX_FRAME_BUILD_SKB) - return; + /* 82599 can't rely on RXDCTL.RLPML to restrict the size of the frame */ + if (adapter->hw.mac.type == ixgbe_mac_82599_vf && !ring_uses_large_buffer(rx_ring)) + return; - set_ring_uses_large_buffer(rx_ring); - } + set_ring_build_skb_enabled(rx_ring); } /** @@ -2282,7 +2286,9 @@ static void ixgbevf_up_complete(struct ixgbevf_adapter *adapter) { struct net_device *netdev = adapter->netdev; + struct pci_dev *pdev = adapter->pdev; struct ixgbe_hw *hw = &adapter->hw; + bool state; ixgbevf_configure_msix(adapter); @@ -2295,6 +2301,11 @@ spin_unlock_bh(&adapter->mbx_lock); + state = adapter->link_state; + hw->mac.ops.get_link_state(hw, &adapter->link_state); + if (state && state != adapter->link_state) + dev_info(&pdev->dev, "VF is administratively disabled\n"); + smp_mb__before_atomic(); clear_bit(__IXGBEVF_DOWN, &adapter->state); ixgbevf_napi_enable_all(adapter); @@ -3065,6 +3076,8 @@ adapter->tx_ring_count = IXGBEVF_DEFAULT_TXD; adapter->rx_ring_count = IXGBEVF_DEFAULT_RXD; + adapter->link_state = true; + set_bit(__IXGBEVF_DOWN, &adapter->state); return 0; @@ -3297,7 +3310,7 @@ ixgbevf_watchdog_update_link(adapter); - if (adapter->link_up) + if (adapter->link_up && adapter->link_state) ixgbevf_watchdog_link_is_up(adapter); else ixgbevf_watchdog_link_is_down(adapter); diff -u linux-azure-5.4.0/drivers/net/ethernet/lantiq_xrx200.c linux-azure-5.4.0/drivers/net/ethernet/lantiq_xrx200.c --- linux-azure-5.4.0/drivers/net/ethernet/lantiq_xrx200.c +++ linux-azure-5.4.0/drivers/net/ethernet/lantiq_xrx200.c @@ -154,6 +154,7 @@ static int xrx200_alloc_skb(struct xrx200_chan *ch) { + struct sk_buff *skb = ch->skb[ch->dma.desc]; dma_addr_t mapping; int ret = 0; @@ -168,6 +169,7 @@ XRX200_DMA_DATA_LEN, DMA_FROM_DEVICE); if (unlikely(dma_mapping_error(ch->priv->dev, mapping))) { dev_kfree_skb_any(ch->skb[ch->dma.desc]); + ch->skb[ch->dma.desc] = skb; ret = -ENOMEM; goto skip; } @@ -198,7 +200,6 @@ ch->dma.desc %= LTQ_DESC_NUM; if (ret) { - ch->skb[ch->dma.desc] = skb; net_dev->stats.rx_dropped++; netdev_err(net_dev, "failed to allocate new rx buffer\n"); return ret; @@ -208,7 +209,7 @@ skb->protocol = eth_type_trans(skb, net_dev); netif_receive_skb(skb); net_dev->stats.rx_packets++; - net_dev->stats.rx_bytes += len - ETH_FCS_LEN; + net_dev->stats.rx_bytes += len; return 0; } @@ -351,8 +352,8 @@ struct xrx200_chan *ch = ptr; if (napi_schedule_prep(&ch->napi)) { - __napi_schedule(&ch->napi); ltq_dma_disable_irq(&ch->dma); + __napi_schedule(&ch->napi); } ltq_dma_ack_irq(&ch->dma); diff -u linux-azure-5.4.0/drivers/net/ethernet/marvell/mvneta.c linux-azure-5.4.0/drivers/net/ethernet/marvell/mvneta.c --- linux-azure-5.4.0/drivers/net/ethernet/marvell/mvneta.c +++ linux-azure-5.4.0/drivers/net/ethernet/marvell/mvneta.c @@ -101,7 +101,7 @@ #define MVNETA_DESC_SWAP BIT(6) #define MVNETA_TX_BRST_SZ_MASK(burst) ((burst) << 22) #define MVNETA_PORT_STATUS 0x2444 -#define MVNETA_TX_IN_PRGRS BIT(1) +#define MVNETA_TX_IN_PRGRS BIT(0) #define MVNETA_TX_FIFO_EMPTY BIT(8) #define MVNETA_RX_MIN_FRAME_SIZE 0x247c /* Only exists on Armada XP and Armada 370 */ diff -u linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c --- linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c @@ -4545,7 +4545,7 @@ struct mvpp2 *priv = port->priv; struct mvpp2_txq_pcpu *txq_pcpu; unsigned int thread; - int queue, err, val; + int queue, err; /* Checks for hardware constraints */ if (port->first_rxq + port->nrxqs > @@ -4559,18 +4559,6 @@ mvpp2_egress_disable(port); mvpp2_port_disable(port); - if (mvpp2_is_xlg(port->phy_interface)) { - val = readl(port->base + MVPP22_XLG_CTRL0_REG); - val &= ~MVPP22_XLG_CTRL0_FORCE_LINK_PASS; - val |= MVPP22_XLG_CTRL0_FORCE_LINK_DOWN; - writel(val, port->base + MVPP22_XLG_CTRL0_REG); - } else { - val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG); - val &= ~MVPP2_GMAC_FORCE_LINK_PASS; - val |= MVPP2_GMAC_FORCE_LINK_DOWN; - writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG); - } - port->tx_time_coal = MVPP2_TXDONE_COAL_USEC; port->txqs = devm_kcalloc(dev, port->ntxqs, sizeof(*port->txqs), @@ -5740,6 +5728,10 @@ return PTR_ERR(priv->lms_base); } else { res = platform_get_resource(pdev, IORESOURCE_MEM, 1); + if (!res) { + dev_err(&pdev->dev, "Invalid resource\n"); + return -EINVAL; + } if (has_acpi_companion(&pdev->dev)) { /* In case the MDIO memory region is declared in * the ACPI, it can already appear as 'in-use' @@ -5781,7 +5773,7 @@ shared = num_present_cpus() - priv->nthreads; if (shared > 0) - bitmap_fill(&priv->lock_map, + bitmap_set(&priv->lock_map, 0, min_t(int, shared, MVPP2_MAX_THREADS)); for (i = 0; i < MVPP2_MAX_THREADS; i++) { @@ -5910,6 +5902,8 @@ return 0; err_port_probe: + fwnode_handle_put(port_fwnode); + i = 0; fwnode_for_each_available_child_node(fwnode, port_fwnode) { if (priv->port_list[i]) @@ -6010,7 +6004,18 @@ }, }; -module_platform_driver(mvpp2_driver); +static int __init mvpp2_driver_init(void) +{ + return platform_driver_register(&mvpp2_driver); +} +module_init(mvpp2_driver_init); + +static void __exit mvpp2_driver_exit(void) +{ + platform_driver_unregister(&mvpp2_driver); + mvpp2_dbgfs_exit(); +} +module_exit(mvpp2_driver_exit); MODULE_DESCRIPTION("Marvell PPv2 Ethernet Driver - www.marvell.com"); MODULE_AUTHOR("Marcin Wojtas "); diff -u linux-azure-5.4.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c linux-azure-5.4.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c --- linux-azure-5.4.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c +++ linux-azure-5.4.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c @@ -2013,10 +2013,11 @@ index = find_next_bit(mcam->bmap, mcam->bmap_entries, entry); if (index >= mcam->bmap_entries) break; + entry = index + 1; + if (mcam->entry2cntr_map[index] != req->cntr) continue; - entry = index + 1; npc_unmap_mcam_entry_and_cntr(rvu, mcam, blkaddr, index, req->cntr); } diff -u linux-azure-5.4.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c linux-azure-5.4.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c --- linux-azure-5.4.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ linux-azure-5.4.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -215,7 +215,7 @@ phylink_config); struct mtk_eth *eth = mac->hw; u32 mcr_cur, mcr_new, sid, i; - int val, ge_mode, err; + int val, ge_mode, err = 0; /* MT76x8 has no hardware settings between for the MAC */ if (!MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628) && @@ -802,6 +802,17 @@ rxd->rxd4 = READ_ONCE(dma_rxd->rxd4); } +static void *mtk_max_lro_buf_alloc(gfp_t gfp_mask) +{ + unsigned int size = mtk_max_frag_size(MTK_MAX_LRO_RX_LENGTH); + unsigned long data; + + data = __get_free_pages(gfp_mask | __GFP_COMP | __GFP_NOWARN, + get_order(size)); + + return (void *)data; +} + /* the qdma core needs scratch memory to be setup */ static int mtk_init_fq_dma(struct mtk_eth *eth) { @@ -1299,7 +1310,10 @@ goto release_desc; /* alloc new buffer */ - new_data = napi_alloc_frag(ring->frag_size); + if (ring->frag_size <= PAGE_SIZE) + new_data = napi_alloc_frag(ring->frag_size); + else + new_data = mtk_max_lro_buf_alloc(GFP_ATOMIC); if (unlikely(!new_data)) { netdev->stats.rx_dropped++; goto release_desc; @@ -1696,7 +1710,10 @@ return -ENOMEM; for (i = 0; i < rx_dma_size; i++) { - ring->data[i] = netdev_alloc_frag(ring->frag_size); + if (ring->frag_size <= PAGE_SIZE) + ring->data[i] = netdev_alloc_frag(ring->frag_size); + else + ring->data[i] = mtk_max_lro_buf_alloc(GFP_KERNEL); if (!ring->data[i]) return -ENOMEM; } @@ -1962,6 +1979,9 @@ struct ethtool_rx_flow_spec *fsp = (struct ethtool_rx_flow_spec *)&cmd->fs; + if (fsp->location >= ARRAY_SIZE(mac->hwlro_ip)) + return -EINVAL; + /* only tcp dst ipv4 is meaningful, others are meaningless */ fsp->flow_type = TCP_V4_FLOW; fsp->h_u.tcp_ip4_spec.ip4dst = ntohl(mac->hwlro_ip[fsp->location]); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c @@ -663,7 +663,7 @@ MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_T, SPEED_1000, ETHTOOL_LINK_MODE_1000baseT_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_CX_SGMII, SPEED_1000, - ETHTOOL_LINK_MODE_1000baseKX_Full_BIT); + ETHTOOL_LINK_MODE_1000baseX_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_KX, SPEED_1000, ETHTOOL_LINK_MODE_1000baseKX_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_T, SPEED_10000, @@ -675,9 +675,9 @@ MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_KR, SPEED_10000, ETHTOOL_LINK_MODE_10000baseKR_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_CR, SPEED_10000, - ETHTOOL_LINK_MODE_10000baseKR_Full_BIT); + ETHTOOL_LINK_MODE_10000baseCR_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_SR, SPEED_10000, - ETHTOOL_LINK_MODE_10000baseKR_Full_BIT); + ETHTOOL_LINK_MODE_10000baseSR_Full_BIT); MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_20GBASE_KR2, SPEED_20000, ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT, ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT); @@ -2083,7 +2083,7 @@ en_err(priv, "mlx4_get_module_info i(%d) offset(%d) bytes_to_read(%d) - FAILED (0x%x)\n", i, offset, ee->len - i, ret); - return 0; + return ret; } i += ret; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_netdev.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_netdev.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_netdev.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/en_netdev.c @@ -371,6 +371,9 @@ int nhoff = skb_network_offset(skb); int ret = 0; + if (skb->encapsulation) + return -EPROTONOSUPPORT; + if (skb->protocol != htons(ETH_P_IP)) return -EPROTONOSUPPORT; @@ -2278,9 +2281,14 @@ bool carry_xdp_prog) { struct bpf_prog *xdp_prog; - int i, t; + int i, t, ret; - mlx4_en_copy_priv(tmp, priv, prof); + ret = mlx4_en_copy_priv(tmp, priv, prof); + if (ret) { + en_warn(priv, "%s: mlx4_en_copy_priv() failed, return\n", + __func__); + return ret; + } if (mlx4_en_alloc_resources(tmp)) { en_warn(priv, diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.c @@ -823,6 +823,7 @@ #define QUERY_DEV_CAP_MAD_DEMUX_OFFSET 0xb0 #define QUERY_DEV_CAP_DMFS_HIGH_RATE_QPN_BASE_OFFSET 0xa8 #define QUERY_DEV_CAP_DMFS_HIGH_RATE_QPN_RANGE_OFFSET 0xac +#define QUERY_DEV_CAP_MAP_CLOCK_TO_USER 0xc1 #define QUERY_DEV_CAP_QP_RATE_LIMIT_NUM_OFFSET 0xcc #define QUERY_DEV_CAP_QP_RATE_LIMIT_MAX_OFFSET 0xd0 #define QUERY_DEV_CAP_QP_RATE_LIMIT_MIN_OFFSET 0xd2 @@ -841,6 +842,8 @@ if (mlx4_is_mfunc(dev)) disable_unsupported_roce_caps(outbox); + MLX4_GET(field, outbox, QUERY_DEV_CAP_MAP_CLOCK_TO_USER); + dev_cap->map_clock_to_user = field & 0x80; MLX4_GET(field, outbox, QUERY_DEV_CAP_RSVD_QP_OFFSET); dev_cap->reserved_qps = 1 << (field & 0xf); MLX4_GET(field, outbox, QUERY_DEV_CAP_MAX_QP_OFFSET); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.h linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.h --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.h +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/fw.h @@ -131,6 +131,7 @@ u32 health_buffer_addrs; struct mlx4_port_cap port_cap[MLX4_MAX_PORTS + 1]; bool wol_port[MLX4_MAX_PORTS + 1]; + bool map_clock_to_user; }; struct mlx4_func_cap { diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/main.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/main.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/main.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx4/main.c @@ -498,6 +498,7 @@ } } + dev->caps.map_clock_to_user = dev_cap->map_clock_to_user; dev->caps.uar_page_size = PAGE_SIZE; dev->caps.num_uars = dev_cap->uar_size / PAGE_SIZE; dev->caps.local_ca_ack_delay = dev_cap->local_ca_ack_delay; @@ -1948,6 +1949,11 @@ if (mlx4_is_slave(dev)) return -EOPNOTSUPP; + if (!dev->caps.map_clock_to_user) { + mlx4_dbg(dev, "Map clock to user is not supported.\n"); + return -EOPNOTSUPP; + } + if (!params) return -EINVAL; @@ -3520,6 +3526,7 @@ if (!SRIOV_VALID_STATE(dev->flags)) { mlx4_err(dev, "Invalid SRIOV state\n"); + err = -EINVAL; goto err_close; } } diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c @@ -130,11 +130,8 @@ static void cmd_free_index(struct mlx5_cmd *cmd, int idx) { - unsigned long flags; - - spin_lock_irqsave(&cmd->alloc_lock, flags); + lockdep_assert_held(&cmd->alloc_lock); set_bit(idx, &cmd->bitmask); - spin_unlock_irqrestore(&cmd->alloc_lock, flags); } static void cmd_ent_get(struct mlx5_cmd_work_ent *ent) @@ -144,13 +141,21 @@ static void cmd_ent_put(struct mlx5_cmd_work_ent *ent) { + struct mlx5_cmd *cmd = ent->cmd; + unsigned long flags; + + spin_lock_irqsave(&cmd->alloc_lock, flags); if (!refcount_dec_and_test(&ent->refcnt)) - return; + goto out; - if (ent->idx >= 0) - cmd_free_index(ent->cmd, ent->idx); + if (ent->idx >= 0) { + cmd_free_index(cmd, ent->idx); + up(ent->page_queue ? &cmd->pages_sem : &cmd->sem); + } cmd_free_ent(ent); +out: + spin_unlock_irqrestore(&cmd->alloc_lock, flags); } static struct mlx5_cmd_layout *get_inst(struct mlx5_cmd *cmd, int idx) @@ -865,7 +870,7 @@ ent->ret = -ETIMEDOUT; mlx5_core_warn(dev, "cmd[%d]: %s(0x%x) Async, timeout. Will cause a leak of a command resource\n", ent->idx, mlx5_command_str(msg_to_opcode(ent->in)), msg_to_opcode(ent->in)); - mlx5_cmd_comp_handler(dev, 1UL << ent->idx, true); + mlx5_cmd_comp_handler(dev, 1ULL << ent->idx, true); out: cmd_ent_put(ent); /* for the cmd_ent_get() took on schedule delayed work */ @@ -883,25 +888,6 @@ return cmd->allowed_opcode == opcode; } -static int cmd_alloc_index_retry(struct mlx5_cmd *cmd) -{ - unsigned long alloc_end = jiffies + msecs_to_jiffies(1000); - int idx; - -retry: - idx = cmd_alloc_index(cmd); - if (idx < 0 && time_before(jiffies, alloc_end)) { - /* Index allocation can fail on heavy load of commands. This is a temporary - * situation as the current command already holds the semaphore, meaning that - * another command completion is being handled and it is expected to release - * the entry index soon. - */ - cpu_relax(); - goto retry; - } - return idx; -} - static void cmd_work_handler(struct work_struct *work) { struct mlx5_cmd_work_ent *ent = container_of(work, struct mlx5_cmd_work_ent, work); @@ -919,7 +905,7 @@ sem = ent->page_queue ? &cmd->pages_sem : &cmd->sem; down(sem); if (!ent->page_queue) { - alloc_ret = cmd_alloc_index_retry(cmd); + alloc_ret = cmd_alloc_index(cmd); if (alloc_ret < 0) { mlx5_core_err(dev, "failed to allocate command entry\n"); if (ent->callback) { @@ -969,6 +955,7 @@ /* Skip sending command to fw if internal error */ if (pci_channel_offline(dev->pdev) || dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR || + cmd->state != MLX5_CMDIF_STATE_UP || !opcode_allowed(&dev->cmd, ent->op)) { u8 status = 0; u32 drv_synd; @@ -977,7 +964,7 @@ MLX5_SET(mbox_out, ent->out, status, status); MLX5_SET(mbox_out, ent->out, syndrome, drv_synd); - mlx5_cmd_comp_handler(dev, 1UL << ent->idx, true); + mlx5_cmd_comp_handler(dev, 1ULL << ent->idx, true); return; } @@ -991,7 +978,7 @@ poll_timeout(ent); /* make sure we read the descriptor after ownership is SW */ rmb(); - mlx5_cmd_comp_handler(dev, 1UL << ent->idx, (ent->ret == -ETIMEDOUT)); + mlx5_cmd_comp_handler(dev, 1ULL << ent->idx, (ent->ret == -ETIMEDOUT)); } } @@ -1051,7 +1038,7 @@ mlx5_command_str(msg_to_opcode(ent->in)), msg_to_opcode(ent->in)); ent->ret = -ETIMEDOUT; - mlx5_cmd_comp_handler(dev, 1UL << ent->idx, true); + mlx5_cmd_comp_handler(dev, 1ULL << ent->idx, true); } static int wait_func(struct mlx5_core_dev *dev, struct mlx5_cmd_work_ent *ent) @@ -1577,8 +1564,6 @@ vector = vec & 0xffffffff; for (i = 0; i < (1 << cmd->log_sz); i++) { if (test_bit(i, &vector)) { - struct semaphore *sem; - ent = cmd->ent_arr[i]; /* if we already completed the command, ignore it */ @@ -1601,10 +1586,6 @@ dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) cmd_ent_put(ent); - if (ent->page_queue) - sem = &cmd->pages_sem; - else - sem = &cmd->sem; ent->ts2 = ktime_get_ns(); memcpy(ent->out->first.data, ent->lay->out, sizeof(ent->lay->out)); dump_command(dev, ent, 0); @@ -1658,7 +1639,6 @@ */ complete(&ent->done); } - up(sem); } } } @@ -1801,6 +1781,7 @@ opcode = MLX5_GET(mbox_in, in, opcode); if (pci_channel_offline(dev->pdev) || dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR || + dev->cmd.state != MLX5_CMDIF_STATE_UP || !opcode_allowed(&dev->cmd, opcode)) { err = mlx5_internal_err_ret_value(dev, opcode, &drv_synd, &status); MLX5_SET(mbox_out, out, status, status); @@ -1871,7 +1852,7 @@ ctx->dev = dev; /* Starts at 1 to avoid doing wake_up if we are not cleaning up */ atomic_set(&ctx->num_inflight, 1); - init_waitqueue_head(&ctx->wait); + init_completion(&ctx->inflight_done); } EXPORT_SYMBOL(mlx5_cmd_init_async_ctx); @@ -1885,8 +1866,8 @@ */ void mlx5_cmd_cleanup_async_ctx(struct mlx5_async_ctx *ctx) { - atomic_dec(&ctx->num_inflight); - wait_event(ctx->wait, atomic_read(&ctx->num_inflight) == 0); + if (!atomic_dec_and_test(&ctx->num_inflight)) + wait_for_completion(&ctx->inflight_done); } EXPORT_SYMBOL(mlx5_cmd_cleanup_async_ctx); @@ -1897,7 +1878,7 @@ work->user_callback(status, work); if (atomic_dec_and_test(&ctx->num_inflight)) - wake_up(&ctx->wait); + complete(&ctx->inflight_done); } int mlx5_cmd_exec_cb(struct mlx5_async_ctx *ctx, void *in, int in_size, @@ -1913,7 +1894,7 @@ ret = cmd_exec(ctx->dev, in, in_size, out, out_size, mlx5_cmd_exec_cb_handler, work, false); if (ret && atomic_dec_and_test(&ctx->num_inflight)) - wake_up(&ctx->wait); + complete(&ctx->inflight_done); return ret; } @@ -2066,6 +2047,7 @@ goto err_free_page; } + cmd->state = MLX5_CMDIF_STATE_DOWN; cmd->checksum_disabled = 1; cmd->max_reg_cmds = (1 << cmd->log_sz) - 1; cmd->bitmask = (1UL << cmd->max_reg_cmds) - 1; @@ -2145,0 +2128,7 @@ + +void mlx5_cmd_set_state(struct mlx5_core_dev *dev, + enum mlx5_cmdif_state cmdif_state) +{ + dev->cmd.state = cmdif_state; +} +EXPORT_SYMBOL(mlx5_cmd_set_state); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c @@ -673,6 +673,9 @@ if (!tracer->owner) return; + if (unlikely(!tracer->str_db.loaded)) + goto arm; + block_count = tracer->buff.size / TRACER_BLOCK_SIZE_BYTE; start_offset = tracer->buff.consumer_index * TRACER_BLOCK_SIZE_BYTE; @@ -730,6 +733,7 @@ &tmp_trace_block[TRACES_PER_BLOCK - 1]); } +arm: mlx5_fw_tracer_arm(dev); } @@ -1005,7 +1009,7 @@ err = mlx5_core_alloc_pd(dev, &tracer->buff.pdn); if (err) { mlx5_core_warn(dev, "FWTracer: Failed to allocate PD %d\n", err); - return err; + goto err_cancel_work; } err = mlx5_fw_tracer_create_mkey(tracer); @@ -1017,12 +1021,20 @@ MLX5_NB_INIT(&tracer->nb, fw_tracer_event, DEVICE_TRACER); mlx5_eq_notifier_register(dev, &tracer->nb); - mlx5_fw_tracer_start(tracer); - + err = mlx5_fw_tracer_start(tracer); + if (err) { + mlx5_core_warn(dev, "FWTracer: Failed to start tracer %d\n", err); + goto err_notifier_unregister; + } return 0; +err_notifier_unregister: + mlx5_eq_notifier_unregister(dev, &tracer->nb); + mlx5_core_destroy_mkey(dev, &tracer->buff.mkey); err_dealloc_pd: mlx5_core_dealloc_pd(dev, tracer->buff.pdn); +err_cancel_work: + cancel_work_sync(&tracer->read_fw_strings_work); return err; } @@ -1076,8 +1088,7 @@ queue_work(tracer->work_queue, &tracer->ownership_change_work); break; case MLX5_TRACER_SUBTYPE_TRACES_AVAILABLE: - if (likely(tracer->str_db.loaded)) - queue_work(tracer->work_queue, &tracer->handle_traces_work); + queue_work(tracer->work_queue, &tracer->handle_traces_work); break; default: mlx5_core_dbg(dev, "FWTracer: Event with unrecognized subtype: sub_type %d\n", diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en.h linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en.h --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en.h +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en.h @@ -101,7 +101,7 @@ #define MLX5E_LOG_ALIGNED_MPWQE_PPW (ilog2(MLX5E_REQUIRED_WQE_MTTS)) #define MLX5E_REQUIRED_MTTS(wqes) (wqes * MLX5E_REQUIRED_WQE_MTTS) #define MLX5E_MAX_RQ_NUM_MTTS \ - ((1 << 16) * 2) /* So that MLX5_MTT_OCTW(num_mtts) fits into u16 */ + (ALIGN_DOWN(U16_MAX, 4) * 2) /* So that MLX5_MTT_OCTW(num_mtts) fits into u16 */ #define MLX5E_ORDER2_MAX_PACKET_MTU (order_base_2(10 * 1024)) #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW \ (ilog2(MLX5E_MAX_RQ_NUM_MTTS / MLX5E_REQUIRED_WQE_MTTS)) diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en/fs.h linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en/fs.h --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en/fs.h +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en/fs.h @@ -234,18 +234,12 @@ void mlx5e_set_ttc_basic_params(struct mlx5e_priv *priv, struct ttc_params *ttc_params); void mlx5e_set_ttc_ft_params(struct ttc_params *ttc_params); -void mlx5e_set_inner_ttc_ft_params(struct ttc_params *ttc_params); int mlx5e_create_ttc_table(struct mlx5e_priv *priv, struct ttc_params *params, struct mlx5e_ttc_table *ttc); void mlx5e_destroy_ttc_table(struct mlx5e_priv *priv, struct mlx5e_ttc_table *ttc); -int mlx5e_create_inner_ttc_table(struct mlx5e_priv *priv, struct ttc_params *params, - struct mlx5e_ttc_table *ttc); -void mlx5e_destroy_inner_ttc_table(struct mlx5e_priv *priv, - struct mlx5e_ttc_table *ttc); - void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft); void mlx5e_enable_cvlan_filter(struct mlx5e_priv *priv); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c @@ -1689,7 +1689,7 @@ if (size_read < 0) { netdev_err(priv->netdev, "%s: mlx5_query_eeprom failed:0x%x\n", __func__, size_read); - return 0; + return size_read; } i += size_read; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c @@ -1123,7 +1123,7 @@ ttc_params->inner_ttc = &priv->fs.inner_ttc; } -void mlx5e_set_inner_ttc_ft_params(struct ttc_params *ttc_params) +static void mlx5e_set_inner_ttc_ft_params(struct ttc_params *ttc_params) { struct mlx5_flow_table_attr *ft_attr = &ttc_params->ft_attr; @@ -1142,8 +1142,8 @@ ft_attr->prio = MLX5E_NIC_PRIO; } -int mlx5e_create_inner_ttc_table(struct mlx5e_priv *priv, struct ttc_params *params, - struct mlx5e_ttc_table *ttc) +static int mlx5e_create_inner_ttc_table(struct mlx5e_priv *priv, struct ttc_params *params, + struct mlx5e_ttc_table *ttc) { struct mlx5e_flow_table *ft = &ttc->ft; int err; @@ -1173,8 +1173,8 @@ return err; } -void mlx5e_destroy_inner_ttc_table(struct mlx5e_priv *priv, - struct mlx5e_ttc_table *ttc) +static void mlx5e_destroy_inner_ttc_table(struct mlx5e_priv *priv, + struct mlx5e_ttc_table *ttc) { if (!mlx5e_tunnel_inner_ft_supported(priv->mdev)) return; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c @@ -3800,20 +3800,67 @@ return mlx5_set_port_fcs(mdev, !enable); } +static int mlx5e_set_rx_port_ts(struct mlx5_core_dev *mdev, bool enable) +{ + u32 in[MLX5_ST_SZ_DW(pcmr_reg)] = {}; + bool supported, curr_state; + int err; + + if (!MLX5_CAP_GEN(mdev, ports_check)) + return 0; + + err = mlx5_query_ports_check(mdev, in, sizeof(in)); + if (err) + return err; + + supported = MLX5_GET(pcmr_reg, in, rx_ts_over_crc_cap); + curr_state = MLX5_GET(pcmr_reg, in, rx_ts_over_crc); + + if (!supported || enable == curr_state) + return 0; + + MLX5_SET(pcmr_reg, in, local_port, 1); + MLX5_SET(pcmr_reg, in, rx_ts_over_crc, enable); + + return mlx5_set_ports_check(mdev, in, sizeof(in)); +} + static int set_feature_rx_fcs(struct net_device *netdev, bool enable) { struct mlx5e_priv *priv = netdev_priv(netdev); + struct mlx5e_channels *chs = &priv->channels; + struct mlx5_core_dev *mdev = priv->mdev; int err; mutex_lock(&priv->state_lock); - priv->channels.params.scatter_fcs_en = enable; - err = mlx5e_modify_channels_scatter_fcs(&priv->channels, enable); - if (err) - priv->channels.params.scatter_fcs_en = !enable; + if (enable) { + err = mlx5e_set_rx_port_ts(mdev, false); + if (err) + goto out; - mutex_unlock(&priv->state_lock); + chs->params.scatter_fcs_en = true; + err = mlx5e_modify_channels_scatter_fcs(chs, true); + if (err) { + chs->params.scatter_fcs_en = false; + mlx5e_set_rx_port_ts(mdev, true); + } + } else { + chs->params.scatter_fcs_en = false; + err = mlx5e_modify_channels_scatter_fcs(chs, false); + if (err) { + chs->params.scatter_fcs_en = true; + goto out; + } + err = mlx5e_set_rx_port_ts(mdev, true); + if (err) { + mlx5_core_warn(mdev, "Failed to set RX port timestamp %d\n", err); + err = 0; + } + } +out: + mutex_unlock(&priv->state_lock); return err; } @@ -3855,12 +3902,11 @@ static int mlx5e_handle_feature(struct net_device *netdev, netdev_features_t *features, - netdev_features_t wanted_features, netdev_features_t feature, mlx5e_feature_handler feature_handler) { - netdev_features_t changes = wanted_features ^ netdev->features; - bool enable = !!(wanted_features & feature); + netdev_features_t changes = *features ^ netdev->features; + bool enable = !!(*features & feature); int err; if (!(changes & feature)) @@ -3868,22 +3914,22 @@ err = feature_handler(netdev, enable); if (err) { + MLX5E_SET_FEATURE(features, feature, !enable); netdev_err(netdev, "%s feature %pNF failed, err %d\n", enable ? "Enable" : "Disable", &feature, err); return err; } - MLX5E_SET_FEATURE(features, feature, enable); return 0; } int mlx5e_set_features(struct net_device *netdev, netdev_features_t features) { - netdev_features_t oper_features = netdev->features; + netdev_features_t oper_features = features; int err = 0; #define MLX5E_HANDLE_FEATURE(feature, handler) \ - mlx5e_handle_feature(netdev, &oper_features, features, feature, handler) + mlx5e_handle_feature(netdev, &oper_features, feature, handler) err |= MLX5E_HANDLE_FEATURE(NETIF_F_LRO, set_feature_lro); err |= MLX5E_HANDLE_FEATURE(NETIF_F_HW_VLAN_CTAG_FILTER, @@ -3929,6 +3975,13 @@ } } + if (params->xdp_prog) { + if (features & NETIF_F_LRO) { + netdev_warn(netdev, "LRO is incompatible with XDP\n"); + features &= ~NETIF_F_LRO; + } + } + if (MLX5E_GET_PFLAG(params, MLX5E_PFLAG_RX_CQE_COMPRESS)) { features &= ~NETIF_F_RXHASH; if (netdev->features & NETIF_F_RXHASH) @@ -4580,6 +4633,11 @@ unlock: mutex_unlock(&priv->state_lock); + + /* Need to fix some features. */ + if (!err) + netdev_update_features(netdev); + return err; } @@ -5007,6 +5065,8 @@ netdev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_UDP_TUNNEL_CSUM; netdev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM; + netdev->vlan_features |= NETIF_F_GSO_UDP_TUNNEL | + NETIF_F_GSO_UDP_TUNNEL_CSUM; } if (mlx5e_tunnel_proto_supported(mdev, IPPROTO_GRE)) { diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c @@ -1434,6 +1434,8 @@ params->num_tc = 1; params->tunneled_offload_en = false; + if (rep->vport != MLX5_VPORT_UPLINK) + params->vlan_strip_disable = true; mlx5_query_min_inline(mdev, ¶ms->tx_min_inline_mode); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_rx.c @@ -248,8 +248,8 @@ if (unlikely(!dma_info->page)) return -ENOMEM; - dma_info->addr = dma_map_page(rq->pdev, dma_info->page, 0, - PAGE_SIZE, rq->buff.map_dir); + dma_info->addr = dma_map_page_attrs(rq->pdev, dma_info->page, 0, PAGE_SIZE, + rq->buff.map_dir, DMA_ATTR_SKIP_CPU_SYNC); if (unlikely(dma_mapping_error(rq->pdev, dma_info->addr))) { page_pool_recycle_direct(rq->page_pool, dma_info->page); dma_info->page = NULL; @@ -270,7 +270,8 @@ void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info) { - dma_unmap_page(rq->pdev, dma_info->addr, PAGE_SIZE, rq->buff.map_dir); + dma_unmap_page_attrs(rq->pdev, dma_info->addr, PAGE_SIZE, rq->buff.map_dir, + DMA_ATTR_SKIP_CPU_SYNC); } void mlx5e_page_release_dynamic(struct mlx5e_rq *rq, diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c @@ -444,12 +444,32 @@ static struct mlx5_core_dev *mlx5e_hairpin_get_mdev(struct net *net, int ifindex) { + struct mlx5_core_dev *mdev; struct net_device *netdev; struct mlx5e_priv *priv; - netdev = __dev_get_by_index(net, ifindex); + netdev = dev_get_by_index(net, ifindex); + if (!netdev) + return ERR_PTR(-ENODEV); + priv = netdev_priv(netdev); - return priv->mdev; + mdev = priv->mdev; + dev_put(netdev); + + /* Mirred tc action holds a refcount on the ifindex net_device (see + * net/sched/act_mirred.c:tcf_mirred_get_dev). So, it's okay to continue using mdev + * after dev_put(netdev), while we're in the context of adding a tc flow. + * + * The mdev pointer corresponds to the peer/out net_device of a hairpin. It is then + * stored in a hairpin object, which exists until all flows, that refer to it, get + * removed. + * + * On the other hand, after a hairpin object has been created, the peer net_device may + * be removed/unbound while there are still some hairpin flows that are using it. This + * case is handled by mlx5e_tc_hairpin_update_dead_peer, which is hooked to + * NETDEV_UNREGISTER event of the peer net_device. + */ + return mdev; } static int mlx5e_hairpin_create_transport(struct mlx5e_hairpin *hp) @@ -648,6 +668,10 @@ func_mdev = priv->mdev; peer_mdev = mlx5e_hairpin_get_mdev(dev_net(priv->netdev), peer_ifindex); + if (IS_ERR(peer_mdev)) { + err = PTR_ERR(peer_mdev); + goto create_pair_err; + } pair = mlx5_core_hairpin_create(func_mdev, peer_mdev, params); if (IS_ERR(pair)) { @@ -786,6 +810,11 @@ int err; peer_mdev = mlx5e_hairpin_get_mdev(dev_net(priv->netdev), peer_ifindex); + if (IS_ERR(peer_mdev)) { + NL_SET_ERR_MSG_MOD(extack, "invalid ifindex of mirred device"); + return PTR_ERR(peer_mdev); + } + if (!MLX5_CAP_GEN(priv->mdev, hairpin) || !MLX5_CAP_GEN(peer_mdev, hairpin)) { NL_SET_ERR_MSG_MOD(extack, "hairpin is not supported"); return -EOPNOTSUPP; @@ -4080,7 +4109,7 @@ list_for_each_entry_safe(hpe, tmp, &init_wait_list, dead_peer_wait_list) { wait_for_completion(&hpe->res_ready); if (!IS_ERR_OR_NULL(hpe->hp) && hpe->peer_vhca_id == peer_vhca_id) - hpe->hp->pair->peer_gone = true; + mlx5_core_hairpin_clear_dead_peer(hpe->hp->pair); mlx5e_hairpin_put(priv, hpe); } diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c @@ -2187,7 +2187,7 @@ int err; if (!ESW_ALLOWED(esw)) - return -EPERM; + return vlan ? -EPERM : 0; if (vlan || qos) set_flags = SET_VLAN_STRIP | SET_VLAN_INSERT; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c @@ -1977,10 +1977,6 @@ if (!MLX5_CAP_ESW_FLOWTABLE(esw->dev, flow_source)) return false; - if (mlx5_core_is_ecpf_esw_manager(esw->dev) || - mlx5_ecpf_vport_exists(esw->dev)) - return false; - return true; } diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/fs_core.c @@ -968,17 +968,19 @@ static int connect_flow_table(struct mlx5_core_dev *dev, struct mlx5_flow_table *ft, struct fs_prio *prio) { - struct mlx5_flow_table *next_ft; + struct mlx5_flow_table *next_ft, *first_ft; int err = 0; /* Connect_prev_fts and update_root_ft_create are mutually exclusive */ - if (list_empty(&prio->node.children)) { + first_ft = list_first_entry_or_null(&prio->node.children, + struct mlx5_flow_table, node.list); + if (!first_ft || first_ft->level > ft->level) { err = connect_prev_fts(dev, ft, prio); if (err) return err; - next_ft = find_next_chained_ft(prio); + next_ft = first_ft ? first_ft : find_next_chained_ft(prio); err = connect_fwd_rules(dev, ft, next_ft); if (err) return err; @@ -1448,9 +1450,22 @@ return NULL; } -static bool check_conflicting_actions(u32 action1, u32 action2) +static bool check_conflicting_actions_vlan(const struct mlx5_fs_vlan *vlan0, + const struct mlx5_fs_vlan *vlan1) { - u32 xored_actions = action1 ^ action2; + return vlan0->ethtype != vlan1->ethtype || + vlan0->vid != vlan1->vid || + vlan0->prio != vlan1->prio; +} + +static bool check_conflicting_actions(const struct mlx5_flow_act *act1, + const struct mlx5_flow_act *act2) +{ + u32 action1 = act1->action; + u32 action2 = act2->action; + u32 xored_actions; + + xored_actions = action1 ^ action2; /* if one rule only wants to count, it's ok */ if (action1 == MLX5_FLOW_CONTEXT_ACTION_COUNT || @@ -1467,6 +1482,22 @@ MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2)) return true; + if (action1 & MLX5_FLOW_CONTEXT_ACTION_PACKET_REFORMAT && + act1->pkt_reformat != act2->pkt_reformat) + return true; + + if (action1 & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR && + act1->modify_hdr != act2->modify_hdr) + return true; + + if (action1 & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH && + check_conflicting_actions_vlan(&act1->vlan[0], &act2->vlan[0])) + return true; + + if (action1 & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH_2 && + check_conflicting_actions_vlan(&act1->vlan[1], &act2->vlan[1])) + return true; + return false; } @@ -1474,7 +1505,7 @@ const struct mlx5_flow_context *flow_context, const struct mlx5_flow_act *flow_act) { - if (check_conflicting_actions(flow_act->action, fte->action.action)) { + if (check_conflicting_actions(flow_act, &fte->action)) { mlx5_core_warn(get_dev(&fte->node), "Found two FTEs with conflicting actions\n"); return -EEXIST; @@ -1604,9 +1635,9 @@ curr_match = kmalloc(sizeof(*curr_match), GFP_ATOMIC); if (!curr_match) { + rcu_read_unlock(); free_match_list(match_head, ft_locked); - err = -ENOMEM; - goto out; + return -ENOMEM; } if (!tree_get_node(&g->node)) { kfree(curr_match); @@ -1615,7 +1646,6 @@ curr_match->g = g; list_add_tail(&curr_match->list, &match_head->list); } -out: rcu_read_unlock(); return err; } @@ -1936,16 +1966,18 @@ down_write_ref_node(&fte->node, false); for (i = handle->num_rules - 1; i >= 0; i--) tree_remove_node(&handle->rule[i]->node, true); - if (fte->dests_size) { - if (fte->modify_mask) - modify_fte(fte); - up_write_ref_node(&fte->node, false); - } else if (list_empty(&fte->node.children)) { + if (list_empty(&fte->node.children)) { del_hw_fte(&fte->node); /* Avoid double call to del_hw_fte */ fte->node.del_hw_func = NULL; up_write_ref_node(&fte->node, false); tree_put_node(&fte->node, false); + } else if (fte->dests_size) { + if (fte->modify_mask) + modify_fte(fte); + up_write_ref_node(&fte->node, false); + } else { + up_write_ref_node(&fte->node, false); } kfree(handle); } @@ -2026,7 +2058,7 @@ node.list) == ft)) return 0; - next_ft = find_next_chained_ft(prio); + next_ft = find_next_ft(ft); err = connect_fwd_rules(dev, next_ft, ft); if (err) return err; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c @@ -319,17 +319,6 @@ } mlx5e_set_ttc_basic_params(priv, &ttc_params); - mlx5e_set_inner_ttc_ft_params(&ttc_params); - for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) - ttc_params.indir_tirn[tt] = priv->inner_indir_tir[tt].tirn; - - err = mlx5e_create_inner_ttc_table(priv, &ttc_params, &priv->fs.inner_ttc); - if (err) { - netdev_err(priv->netdev, "Failed to create inner ttc table, err=%d\n", - err); - goto err_destroy_arfs_tables; - } - mlx5e_set_ttc_ft_params(&ttc_params); for (tt = 0; tt < MLX5E_NUM_INDIR_TIRS; tt++) ttc_params.indir_tirn[tt] = priv->indir_tir[tt].tirn; @@ -338,13 +327,11 @@ if (err) { netdev_err(priv->netdev, "Failed to create ttc table, err=%d\n", err); - goto err_destroy_inner_ttc_table; + goto err_destroy_arfs_tables; } return 0; -err_destroy_inner_ttc_table: - mlx5e_destroy_inner_ttc_table(priv, &priv->fs.inner_ttc); err_destroy_arfs_tables: mlx5e_arfs_destroy_tables(priv); @@ -354,7 +341,6 @@ static void mlx5i_destroy_flow_steering(struct mlx5e_priv *priv) { mlx5e_destroy_ttc_table(priv, &priv->fs.ttc); - mlx5e_destroy_inner_ttc_table(priv, &priv->fs.inner_ttc); mlx5e_arfs_destroy_tables(priv); } @@ -379,7 +365,7 @@ if (err) goto err_destroy_indirect_rqts; - err = mlx5e_create_indirect_tirs(priv, true); + err = mlx5e_create_indirect_tirs(priv, false); if (err) goto err_destroy_direct_rqts; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c @@ -265,10 +265,8 @@ fen_info = container_of(info, struct fib_entry_notifier_info, info); fi = fen_info->fi; - if (fi->nh) { - NL_SET_ERR_MSG_MOD(info->extack, "IPv4 route with nexthop objects is not supported"); - return notifier_from_errno(-EINVAL); - } + if (fi->nh) + return NOTIFY_DONE; fib_dev = fib_info_nh(fen_info->fi, 0)->fib_nh_dev; if (fib_dev != ldev->pf[0].netdev && fib_dev != ldev->pf[1].netdev) { diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/main.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/main.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -975,6 +975,8 @@ goto err_cmd_cleanup; } + mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_UP); + err = mlx5_core_enable_hca(dev, 0); if (err) { mlx5_core_err(dev, "enable hca failed\n"); @@ -1036,6 +1038,7 @@ err_disable_hca: mlx5_core_disable_hca(dev, 0); err_cmd_cleanup: + mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_DOWN); mlx5_cmd_cleanup(dev); return err; @@ -1053,6 +1056,7 @@ } mlx5_reclaim_startup_pages(dev); mlx5_core_disable_hca(dev, 0); + mlx5_cmd_set_state(dev, MLX5_CMDIF_STATE_DOWN); mlx5_cmd_cleanup(dev); return 0; diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/rdma.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/rdma.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/rdma.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/rdma.c @@ -156,6 +156,9 @@ { int err; + if (!MLX5_CAP_GEN(dev, roce)) + return; + err = mlx5_nic_vport_enable_roce(dev); if (err) { mlx5_core_err(dev, "Failed to enable RoCE: %d\n", err); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c @@ -2,6 +2,7 @@ /* Copyright (c) 2019 Mellanox Technologies. */ #include +#include #include "dr_types.h" static int dr_domain_init_cache(struct mlx5dr_domain *dmn) @@ -64,9 +65,9 @@ } dmn->uar = mlx5_get_uars_page(dmn->mdev); - if (!dmn->uar) { + if (IS_ERR(dmn->uar)) { mlx5dr_err(dmn, "Couldn't allocate UAR\n"); - ret = -ENOMEM; + ret = PTR_ERR(dmn->uar); goto clean_pd; } diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c @@ -603,6 +603,7 @@ MLX5_SET(qpc, qpc, log_ack_req_freq, 0); MLX5_SET(qpc, qpc, retry_count, attr->retry_cnt); MLX5_SET(qpc, qpc, rnr_retry, attr->rnr_retry); + MLX5_SET(qpc, qpc, primary_address_path.ack_timeout, 0x8); /* ~1ms */ return mlx5_core_qp_modify(mdev, MLX5_CMD_OP_RTR2RTS_QP, 0, qpc, &dr_qp->mqp); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c @@ -43,11 +43,10 @@ err = mlx5dr_table_set_miss_action(ft->fs_dr_table.dr_table, action); if (err && action) { err = mlx5dr_action_destroy(action); - if (err) { - action = NULL; - mlx5_core_err(ns->dev, "Failed to destroy action (%d)\n", - err); - } + if (err) + mlx5_core_err(ns->dev, + "Failed to destroy action (%d)\n", err); + action = NULL; } ft->fs_dr_table.miss_action = action; if (old_miss_action) { diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c @@ -25,16 +25,8 @@ #define MLXSW_THERMAL_ZONE_MAX_NAME 16 #define MLXSW_THERMAL_TEMP_SCORE_MAX GENMASK(31, 0) #define MLXSW_THERMAL_MAX_STATE 10 +#define MLXSW_THERMAL_MIN_STATE 2 #define MLXSW_THERMAL_MAX_DUTY 255 -/* Minimum and maximum fan allowed speed in percent: from 20% to 100%. Values - * MLXSW_THERMAL_MAX_STATE + x, where x is between 2 and 10 are used for - * setting fan speed dynamic minimum. For example, if value is set to 14 (40%) - * cooling levels vector will be set to 4, 4, 4, 4, 4, 5, 6, 7, 8, 9, 10 to - * introduce PWM speed in percent: 40, 40, 40, 40, 40, 50, 60. 70, 80, 90, 100. - */ -#define MLXSW_THERMAL_SPEED_MIN (MLXSW_THERMAL_MAX_STATE + 2) -#define MLXSW_THERMAL_SPEED_MAX (MLXSW_THERMAL_MAX_STATE * 2) -#define MLXSW_THERMAL_SPEED_MIN_LEVEL 2 /* 20% */ /* External cooling devices, allowed for binding to mlxsw thermal zones. */ static char * const mlxsw_thermal_external_allowed_cdev[] = { @@ -703,49 +695,16 @@ struct mlxsw_thermal *thermal = cdev->devdata; struct device *dev = thermal->bus_info->dev; char mfsc_pl[MLXSW_REG_MFSC_LEN]; - unsigned long cur_state, i; int idx; - u8 duty; int err; + if (state > MLXSW_THERMAL_MAX_STATE) + return -EINVAL; + idx = mlxsw_get_cooling_device_idx(thermal, cdev); if (idx < 0) return idx; - /* Verify if this request is for changing allowed fan dynamical - * minimum. If it is - update cooling levels accordingly and update - * state, if current state is below the newly requested minimum state. - * For example, if current state is 5, and minimal state is to be - * changed from 4 to 6, thermal->cooling_levels[0 to 5] will be changed - * all from 4 to 6. And state 5 (thermal->cooling_levels[4]) should be - * overwritten. - */ - if (state >= MLXSW_THERMAL_SPEED_MIN && - state <= MLXSW_THERMAL_SPEED_MAX) { - state -= MLXSW_THERMAL_MAX_STATE; - for (i = 0; i <= MLXSW_THERMAL_MAX_STATE; i++) - thermal->cooling_levels[i] = max(state, i); - - mlxsw_reg_mfsc_pack(mfsc_pl, idx, 0); - err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfsc), mfsc_pl); - if (err) - return err; - - duty = mlxsw_reg_mfsc_pwm_duty_cycle_get(mfsc_pl); - cur_state = mlxsw_duty_to_state(duty); - - /* If current fan state is lower than requested dynamical - * minimum, increase fan speed up to dynamical minimum. - */ - if (state < cur_state) - return 0; - - state = cur_state; - } - - if (state > MLXSW_THERMAL_MAX_STATE) - return -EINVAL; - /* Normalize the state to the valid speed range. */ state = thermal->cooling_levels[state]; mlxsw_reg_mfsc_pack(mfsc_pl, idx, mlxsw_state_to_duty(state)); @@ -1040,8 +999,7 @@ /* Initialize cooling levels per PWM state. */ for (i = 0; i < MLXSW_THERMAL_MAX_STATE; i++) - thermal->cooling_levels[i] = max(MLXSW_THERMAL_SPEED_MIN_LEVEL, - i); + thermal->cooling_levels[i] = max(MLXSW_THERMAL_MIN_STATE, i); thermal->polling_delay = bus_info->low_frequency ? MLXSW_THERMAL_SLOW_POLL_INT : diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/pci.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/pci.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/pci.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/pci.c @@ -1876,6 +1876,7 @@ { pci_driver->probe = mlxsw_pci_probe; pci_driver->remove = mlxsw_pci_remove; + pci_driver->shutdown = mlxsw_pci_remove; return pci_register_driver(pci_driver); } EXPORT_SYMBOL(mlxsw_pci_driver_register); diff -u linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c --- linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c @@ -3871,7 +3871,7 @@ { const struct fib_nh *nh = fib_info_nh(fi, 0); - return nh->fib_nh_scope == RT_SCOPE_LINK || + return nh->fib_nh_gw_family || mlxsw_sp_nexthop4_ipip_type(mlxsw_sp, nh, NULL); } diff -u linux-azure-5.4.0/drivers/net/ethernet/micrel/ksz884x.c linux-azure-5.4.0/drivers/net/ethernet/micrel/ksz884x.c --- linux-azure-5.4.0/drivers/net/ethernet/micrel/ksz884x.c +++ linux-azure-5.4.0/drivers/net/ethernet/micrel/ksz884x.c @@ -5693,7 +5693,7 @@ * from the bridge. */ if ((hw->features & STP_SUPPORT) && !promiscuous && - (dev->priv_flags & IFF_BRIDGE_PORT)) { + netif_is_bridge_port(dev)) { struct ksz_switch *sw = hw->ksz_switch; int port = priv->port.first_port; @@ -6928,7 +6928,7 @@ char banner[sizeof(version)]; struct ksz_switch *sw = NULL; - result = pci_enable_device(pdev); + result = pcim_enable_device(pdev); if (result) return result; diff -u linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600.c linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600.c --- linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600.c +++ linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600.c @@ -1027,10 +1027,13 @@ priv->speed = SPEED_100; priv->ctx.spi = spi; - devm_regmap_init_encx24j600(&spi->dev, &priv->ctx); ndev->irq = spi->irq; ndev->netdev_ops = &encx24j600_netdev_ops; + ret = devm_regmap_init_encx24j600(&spi->dev, &priv->ctx); + if (ret) + goto out_free; + mutex_init(&priv->lock); /* Reset device and check if it is connected */ diff -u linux-azure-5.4.0/drivers/net/ethernet/microchip/lan743x_main.c linux-azure-5.4.0/drivers/net/ethernet/microchip/lan743x_main.c --- linux-azure-5.4.0/drivers/net/ethernet/microchip/lan743x_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/microchip/lan743x_main.c @@ -916,8 +916,7 @@ } static void lan743x_phy_update_flowcontrol(struct lan743x_adapter *adapter, - u8 duplex, u16 local_adv, - u16 remote_adv) + u16 local_adv, u16 remote_adv) { struct lan743x_phy *phy = &adapter->phy; u8 cap; @@ -944,22 +943,17 @@ phy_print_status(phydev); if (phydev->state == PHY_RUNNING) { - struct ethtool_link_ksettings ksettings; int remote_advertisement = 0; int local_advertisement = 0; - memset(&ksettings, 0, sizeof(ksettings)); - phy_ethtool_get_link_ksettings(netdev, &ksettings); local_advertisement = linkmode_adv_to_mii_adv_t(phydev->advertising); remote_advertisement = linkmode_adv_to_mii_adv_t(phydev->lp_advertising); - lan743x_phy_update_flowcontrol(adapter, - ksettings.base.duplex, - local_advertisement, + lan743x_phy_update_flowcontrol(adapter, local_advertisement, remote_advertisement); - lan743x_ptp_update_latency(adapter, ksettings.base.speed); + lan743x_ptp_update_latency(adapter, phydev->speed); } } @@ -1706,6 +1700,16 @@ ret = -EINVAL; goto cleanup; } + if (dma_set_mask_and_coherent(&tx->adapter->pdev->dev, + DMA_BIT_MASK(64))) { + if (dma_set_mask_and_coherent(&tx->adapter->pdev->dev, + DMA_BIT_MASK(32))) { + dev_warn(&tx->adapter->pdev->dev, + "lan743x_: No suitable DMA available\n"); + ret = -ENOMEM; + goto cleanup; + } + } ring_allocation_size = ALIGN(tx->ring_size * sizeof(struct lan743x_tx_descriptor), PAGE_SIZE); @@ -1888,13 +1892,13 @@ return ((++index) % rx->ring_size); } -static struct sk_buff *lan743x_rx_allocate_skb(struct lan743x_rx *rx) +static struct sk_buff *lan743x_rx_allocate_skb(struct lan743x_rx *rx, gfp_t gfp) { int length = 0; length = (LAN743X_MAX_FRAME_SIZE + ETH_HLEN + 4 + RX_HEAD_PADDING); return __netdev_alloc_skb(rx->adapter->netdev, - length, GFP_ATOMIC | GFP_DMA); + length, gfp); } static void lan743x_rx_update_tail(struct lan743x_rx *rx, int index) @@ -2067,7 +2071,8 @@ struct sk_buff *new_skb = NULL; int packet_length; - new_skb = lan743x_rx_allocate_skb(rx); + new_skb = lan743x_rx_allocate_skb(rx, + GFP_ATOMIC | GFP_DMA); if (!new_skb) { /* failed to allocate next skb. * Memory is very low. @@ -2256,6 +2261,16 @@ ret = -EINVAL; goto cleanup; } + if (dma_set_mask_and_coherent(&rx->adapter->pdev->dev, + DMA_BIT_MASK(64))) { + if (dma_set_mask_and_coherent(&rx->adapter->pdev->dev, + DMA_BIT_MASK(32))) { + dev_warn(&rx->adapter->pdev->dev, + "lan743x_: No suitable DMA available\n"); + ret = -ENOMEM; + goto cleanup; + } + } ring_allocation_size = ALIGN(rx->ring_size * sizeof(struct lan743x_rx_descriptor), PAGE_SIZE); @@ -2294,7 +2309,8 @@ rx->last_head = 0; for (index = 0; index < rx->ring_size; index++) { - struct sk_buff *new_skb = lan743x_rx_allocate_skb(rx); + struct sk_buff *new_skb = lan743x_rx_allocate_skb(rx, + GFP_KERNEL); ret = lan743x_rx_init_ring_element(rx, index, new_skb); if (ret) @@ -3001,6 +3017,8 @@ if (ret) { netif_err(adapter, probe, adapter->netdev, "lan743x_hardware_init returned %d\n", ret); + lan743x_pci_cleanup(adapter); + return ret; } /* open netdev when netdev is at running state while resume. diff -u linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/gdma_main.c linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/gdma_main.c --- linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/gdma_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/gdma_main.c @@ -365,6 +365,11 @@ break; } + /* Per GDMA spec, rmb is necessary after checking owner_bits, before + * reading eqe. + */ + rmb(); + mana_gd_process_eqe(eq); eq->head++; @@ -1131,6 +1136,11 @@ if (owner_bits != new_bits) return -1; + /* Per GDMA spec, rmb is necessary after checking owner_bits, before + * reading completion info + */ + rmb(); + comp->wq_num = cqe->cqe_info.wq_num; comp->is_sq = cqe->cqe_info.is_sq; memcpy(comp->cqe_data, cqe->cqe_data, GDMA_COMP_DATA_SIZE); diff -u linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/mana_en.c linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/mana_en.c --- linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/mana_en.c +++ linux-azure-5.4.0/drivers/net/ethernet/microsoft/mana/mana_en.c @@ -991,8 +991,10 @@ break; case CQE_RX_TRUNCATED: - netdev_err(ndev, "Dropped a truncated packet\n"); - return; + ++ndev->stats.rx_dropped; + rxbuf_oob = &rxq->rx_oobs[rxq->buf_index]; + netdev_warn_once(ndev, "Dropped a truncated packet\n"); + goto drop; case CQE_RX_COALESCED_4: netdev_err(ndev, "RX coalescing is unsupported\n"); @@ -1008,9 +1010,6 @@ return; } - if (oob->cqe_hdr.cqe_type != CQE_RX_OKAY) - return; - pktlen = oob->ppi[0].pkt_len; if (pktlen == 0) { @@ -1054,6 +1053,7 @@ mana_rx_skb(old_buf, oob, rxq); +drop: mana_move_wq_tail(rxq->gdma_rq, rxbuf_oob->wqe_inf.wqe_size_in_bu); mana_post_pkt_rxq(rxq); diff -u linux-azure-5.4.0/drivers/net/ethernet/moxa/moxart_ether.c linux-azure-5.4.0/drivers/net/ethernet/moxa/moxart_ether.c --- linux-azure-5.4.0/drivers/net/ethernet/moxa/moxart_ether.c +++ linux-azure-5.4.0/drivers/net/ethernet/moxa/moxart_ether.c @@ -74,11 +74,6 @@ static void moxart_mac_free_memory(struct net_device *ndev) { struct moxart_mac_priv_t *priv = netdev_priv(ndev); - int i; - - for (i = 0; i < RX_DESC_NUM; i++) - dma_unmap_single(&ndev->dev, priv->rx_mapping[i], - priv->rx_buf_size, DMA_FROM_DEVICE); if (priv->tx_desc_base) dma_free_coherent(&priv->pdev->dev, @@ -147,11 +142,11 @@ desc + RX_REG_OFFSET_DESC1); priv->rx_buf[i] = priv->rx_buf_base + priv->rx_buf_size * i; - priv->rx_mapping[i] = dma_map_single(&ndev->dev, + priv->rx_mapping[i] = dma_map_single(&priv->pdev->dev, priv->rx_buf[i], priv->rx_buf_size, DMA_FROM_DEVICE); - if (dma_mapping_error(&ndev->dev, priv->rx_mapping[i])) + if (dma_mapping_error(&priv->pdev->dev, priv->rx_mapping[i])) netdev_err(ndev, "DMA mapping error\n"); moxart_desc_write(priv->rx_mapping[i], @@ -193,6 +188,7 @@ static int moxart_mac_stop(struct net_device *ndev) { struct moxart_mac_priv_t *priv = netdev_priv(ndev); + int i; napi_disable(&priv->napi); @@ -204,6 +200,11 @@ /* disable all functions */ writel(0, priv->base + REG_MAC_CTRL); + /* unmap areas mapped in moxart_mac_setup_desc_ring() */ + for (i = 0; i < RX_DESC_NUM; i++) + dma_unmap_single(&priv->pdev->dev, priv->rx_mapping[i], + priv->rx_buf_size, DMA_FROM_DEVICE); + return 0; } @@ -240,7 +241,7 @@ if (len > RX_BUF_SIZE) len = RX_BUF_SIZE; - dma_sync_single_for_cpu(&ndev->dev, + dma_sync_single_for_cpu(&priv->pdev->dev, priv->rx_mapping[rx_head], priv->rx_buf_size, DMA_FROM_DEVICE); skb = netdev_alloc_skb_ip_align(ndev, len); @@ -294,7 +295,7 @@ unsigned int tx_tail = priv->tx_tail; while (tx_tail != tx_head) { - dma_unmap_single(&ndev->dev, priv->tx_mapping[tx_tail], + dma_unmap_single(&priv->pdev->dev, priv->tx_mapping[tx_tail], priv->tx_len[tx_tail], DMA_TO_DEVICE); ndev->stats.tx_packets++; @@ -357,9 +358,9 @@ len = skb->len > TX_BUF_SIZE ? TX_BUF_SIZE : skb->len; - priv->tx_mapping[tx_head] = dma_map_single(&ndev->dev, skb->data, + priv->tx_mapping[tx_head] = dma_map_single(&priv->pdev->dev, skb->data, len, DMA_TO_DEVICE); - if (dma_mapping_error(&ndev->dev, priv->tx_mapping[tx_head])) { + if (dma_mapping_error(&priv->pdev->dev, priv->tx_mapping[tx_head])) { netdev_err(ndev, "DMA mapping error\n"); goto out_unlock; } @@ -378,7 +379,7 @@ len = ETH_ZLEN; } - dma_sync_single_for_device(&ndev->dev, priv->tx_mapping[tx_head], + dma_sync_single_for_device(&priv->pdev->dev, priv->tx_mapping[tx_head], priv->tx_buf_size, DMA_TO_DEVICE); txdes1 = TX_DESC1_LTS | TX_DESC1_FTS | (len & TX_DESC1_BUF_SIZE_MASK); @@ -481,6 +482,10 @@ priv->pdev = pdev; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) { + ret = -EINVAL; + goto init_fail; + } ndev->base_addr = res->start; priv->base = devm_ioremap_resource(p_dev, res); if (IS_ERR(priv->base)) { @@ -494,7 +499,7 @@ priv->tx_buf_size = TX_BUF_SIZE; priv->rx_buf_size = RX_BUF_SIZE; - priv->tx_desc_base = dma_alloc_coherent(&pdev->dev, TX_REG_DESC_SIZE * + priv->tx_desc_base = dma_alloc_coherent(p_dev, TX_REG_DESC_SIZE * TX_DESC_NUM, &priv->tx_base, GFP_DMA | GFP_KERNEL); if (!priv->tx_desc_base) { @@ -502,7 +507,7 @@ goto init_fail; } - priv->rx_desc_base = dma_alloc_coherent(&pdev->dev, RX_REG_DESC_SIZE * + priv->rx_desc_base = dma_alloc_coherent(p_dev, RX_REG_DESC_SIZE * RX_DESC_NUM, &priv->rx_base, GFP_DMA | GFP_KERNEL); if (!priv->rx_desc_base) { @@ -541,10 +546,8 @@ SET_NETDEV_DEV(ndev, &pdev->dev); ret = register_netdev(ndev); - if (ret) { - free_netdev(ndev); + if (ret) goto init_fail; - } netdev_dbg(ndev, "%s: IRQ=%d address=%pM\n", __func__, ndev->irq, ndev->dev_addr); diff -u linux-azure-5.4.0/drivers/net/ethernet/mscc/ocelot.c linux-azure-5.4.0/drivers/net/ethernet/mscc/ocelot.c --- linux-azure-5.4.0/drivers/net/ethernet/mscc/ocelot.c +++ linux-azure-5.4.0/drivers/net/ethernet/mscc/ocelot.c @@ -1024,12 +1024,6 @@ switch (cfg.rx_filter) { case HWTSTAMP_FILTER_NONE: break; - case HWTSTAMP_FILTER_ALL: - case HWTSTAMP_FILTER_SOME: - case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: - case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: - case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: - case HWTSTAMP_FILTER_NTP_ALL: case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: @@ -1189,7 +1183,10 @@ SOF_TIMESTAMPING_RAW_HARDWARE; info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) | BIT(HWTSTAMP_TX_ONESTEP_SYNC); - info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL); + info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | + BIT(HWTSTAMP_FILTER_PTP_V2_EVENT) | + BIT(HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | + BIT(HWTSTAMP_FILTER_PTP_V2_L4_EVENT); return 0; } @@ -2156,8 +2153,12 @@ ocelot_write_rix(ocelot, ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), ANA_PGID_PGID, PGID_MC); - ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4); - ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6); + ocelot_write_rix(ocelot, + ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), + ANA_PGID_PGID, PGID_MCIPV4); + ocelot_write_rix(ocelot, + ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), + ANA_PGID_PGID, PGID_MCIPV6); /* CPU port Injection/Extraction configuration */ ocelot_write_rix(ocelot, QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE | diff -u linux-azure-5.4.0/drivers/net/ethernet/natsemi/xtsonic.c linux-azure-5.4.0/drivers/net/ethernet/natsemi/xtsonic.c --- linux-azure-5.4.0/drivers/net/ethernet/natsemi/xtsonic.c +++ linux-azure-5.4.0/drivers/net/ethernet/natsemi/xtsonic.c @@ -120,7 +120,7 @@ .ndo_set_mac_address = eth_mac_addr, }; -static int __init sonic_probe1(struct net_device *dev) +static int sonic_probe1(struct net_device *dev) { unsigned int silicon_revision; struct sonic_local *lp = netdev_priv(dev); diff -u linux-azure-5.4.0/drivers/net/ethernet/neterion/vxge/vxge-main.c linux-azure-5.4.0/drivers/net/ethernet/neterion/vxge/vxge-main.c --- linux-azure-5.4.0/drivers/net/ethernet/neterion/vxge/vxge-main.c +++ linux-azure-5.4.0/drivers/net/ethernet/neterion/vxge/vxge-main.c @@ -3524,13 +3524,13 @@ kfree(vdev->vpaths); - /* we are safe to free it now */ - free_netdev(dev); - vxge_debug_init(vdev->level_trace, "%s: ethernet device unregistered", buf); vxge_debug_entryexit(vdev->level_trace, "%s: %s:%d Exiting...", buf, __func__, __LINE__); + + /* we are safe to free it now */ + free_netdev(dev); } /* diff -u linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c @@ -273,6 +273,8 @@ port = nfp_port_from_netdev(netdev); eth_port = nfp_port_get_eth_port(port); if (eth_port) { + ethtool_link_ksettings_add_link_mode(cmd, supported, Pause); + ethtool_link_ksettings_add_link_mode(cmd, advertising, Pause); cmd->base.autoneg = eth_port->aneg != NFP_ANEG_DISABLED ? AUTONEG_ENABLE : AUTONEG_DISABLE; nfp_net_set_fec_link_mode(eth_port, cmd); @@ -1125,6 +1127,8 @@ u8 data; port = nfp_port_from_netdev(netdev); + /* update port state to get latest interface */ + set_bit(NFP_PORT_CHANGED, &port->flags); eth_port = nfp_port_get_eth_port(port); if (!eth_port) return -EOPNOTSUPP; @@ -1267,7 +1271,7 @@ * ME timestamp ticks. There are 16 ME clock cycles for each timestamp * count. */ - factor = nn->me_freq_mhz / 16; + factor = nn->tlv_caps.me_freq_mhz / 16; /* Each pair of (usecs, max_frames) fields specifies that interrupts * should be coalesced until diff -u linux-azure-5.4.0/drivers/net/ethernet/nxp/lpc_eth.c linux-azure-5.4.0/drivers/net/ethernet/nxp/lpc_eth.c --- linux-azure-5.4.0/drivers/net/ethernet/nxp/lpc_eth.c +++ linux-azure-5.4.0/drivers/net/ethernet/nxp/lpc_eth.c @@ -1007,9 +1007,6 @@ napi_disable(&pldat->napi); netif_stop_queue(ndev); - if (ndev->phydev) - phy_stop(ndev->phydev); - spin_lock_irqsave(&pldat->lock, flags); __lpc_eth_reset(pldat); netif_carrier_off(ndev); @@ -1017,6 +1014,8 @@ writel(0, LPC_ENET_MAC2(pldat->net_base)); spin_unlock_irqrestore(&pldat->lock, flags); + if (ndev->phydev) + phy_stop(ndev->phydev); clk_disable_unprepare(pldat->clk); return 0; @@ -1471,6 +1470,7 @@ { struct net_device *ndev = platform_get_drvdata(pdev); struct netdata_local *pldat; + int ret; if (device_may_wakeup(&pdev->dev)) disable_irq_wake(ndev->irq); @@ -1480,7 +1480,9 @@ pldat = netdev_priv(ndev); /* Enable interface clock */ - clk_enable(pldat->clk); + ret = clk_enable(pldat->clk); + if (ret) + return ret; /* Reset and initialize */ __lpc_eth_reset(pldat); diff -u linux-azure-5.4.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c linux-azure-5.4.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c --- linux-azure-5.4.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c +++ linux-azure-5.4.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c @@ -912,6 +912,10 @@ static int ionic_addr_del(struct net_device *netdev, const u8 *addr) { + /* Don't delete our own address from the uc list */ + if (ether_addr_equal(addr, netdev->dev_addr)) + return 0; + return ionic_lif_addr(netdev_priv(netdev), addr, false); } @@ -1991,7 +1995,7 @@ return -EINVAL; } - lif->dbid_inuse = bitmap_alloc(lif->dbid_count, GFP_KERNEL); + lif->dbid_inuse = bitmap_zalloc(lif->dbid_count, GFP_KERNEL); if (!lif->dbid_inuse) { dev_err(dev, "Failed alloc doorbell id bitmap, aborting\n"); return -ENOMEM; diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c @@ -1602,6 +1602,8 @@ free_netdev(netdev); err_out_free_res: + if (NX_IS_REVISION_P3(pdev->revision)) + pci_disable_pcie_error_reporting(pdev); pci_release_regions(pdev); err_out_disable_pdev: diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_iwarp.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_iwarp.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_iwarp.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_iwarp.c @@ -1307,6 +1307,14 @@ prev_weight = weight; while (weight) { + /* If the HW device is during recovery, all resources are + * immediately reset without receiving a per-cid indication + * from HW. In this case we don't expect the cid_map to be + * cleared. + */ + if (p_hwfn->cdev->recov_in_prog) + return 0; + msleep(QED_IWARP_MAX_CID_CLEAN_TIME); weight = bitmap_weight(bmap->bitmap, bmap->max_count); diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_main.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_main.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_main.c @@ -559,7 +559,12 @@ rc = cnt; } - if (rc > 0) { + /* For VFs, we should return with an error in case we didn't get the + * exact number of msix vectors as we requested. + * Not doing that will lead to a crash when starting queues for + * this VF. + */ + if ((IS_PF(cdev) && rc > 0) || (IS_VF(cdev) && rc == cnt)) { /* MSI-x configuration was achieved */ int_params->out.int_mode = QED_INT_MODE_MSIX; int_params->out.num_vectors = rc; @@ -1233,6 +1238,7 @@ } else { DP_NOTICE(cdev, "Failed to acquire PTT for aRFS\n"); + rc = -EINVAL; goto err; } } diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_mcp.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_mcp.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_mcp.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_mcp.c @@ -498,14 +498,18 @@ spin_lock_bh(&p_hwfn->mcp_info->cmd_lock); - if (!qed_mcp_has_pending_cmd(p_hwfn)) + if (!qed_mcp_has_pending_cmd(p_hwfn)) { + spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); break; + } rc = qed_mcp_update_pending_cmd(p_hwfn, p_ptt); - if (!rc) + if (!rc) { + spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); break; - else if (rc != -EAGAIN) + } else if (rc != -EAGAIN) { goto err; + } spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); @@ -522,6 +526,8 @@ return -EAGAIN; } + spin_lock_bh(&p_hwfn->mcp_info->cmd_lock); + /* Send the mailbox command */ qed_mcp_reread_offsets(p_hwfn, p_ptt); seq_num = ++p_hwfn->mcp_info->drv_mb_seq; @@ -548,14 +554,18 @@ spin_lock_bh(&p_hwfn->mcp_info->cmd_lock); - if (p_cmd_elem->b_is_completed) + if (p_cmd_elem->b_is_completed) { + spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); break; + } rc = qed_mcp_update_pending_cmd(p_hwfn, p_ptt); - if (!rc) + if (!rc) { + spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); break; - else if (rc != -EAGAIN) + } else if (rc != -EAGAIN) { goto err; + } spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); } while (++cnt < max_retries); @@ -576,6 +586,7 @@ return -EAGAIN; } + spin_lock_bh(&p_hwfn->mcp_info->cmd_lock); qed_mcp_cmd_del_elem(p_hwfn, p_cmd_elem); spin_unlock_bh(&p_hwfn->mcp_info->cmd_lock); @@ -3162,6 +3173,7 @@ struct qed_nvm_image_att *p_image_att) { enum nvm_image_type type; + int rc; u32 i; /* Translate image_id into MFW definitions */ @@ -3187,7 +3199,10 @@ return -EINVAL; } - qed_mcp_nvm_info_populate(p_hwfn); + rc = qed_mcp_nvm_info_populate(p_hwfn); + if (rc) + return rc; + for (i = 0; i < p_hwfn->nvm_info.num_images; i++) if (type == p_hwfn->nvm_info.image_att[i].image_type) break; diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_roce.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_roce.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_roce.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_roce.c @@ -107,6 +107,14 @@ * Beyond the added delay we clear the bitmap anyway. */ while (bitmap_weight(rcid_map->bitmap, rcid_map->max_count)) { + /* If the HW device is during recovery, all resources are + * immediately reset without receiving a per-cid indication + * from HW. In this case we don't expect the cid bitmap to be + * cleared. + */ + if (p_hwfn->cdev->recov_in_prog) + return; + msleep(100); if (wait_count++ > 20) { DP_NOTICE(p_hwfn, "cid bitmap wait timed out\n"); diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_sriov.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_sriov.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_sriov.c @@ -3003,12 +3003,16 @@ u8 mask = QED_ACCEPT_UCAST_UNMATCHED | QED_ACCEPT_MCAST_UNMATCHED; struct qed_filter_accept_flags *flags = ¶ms->accept_flags; struct qed_public_vf_info *vf_info; + u16 tlv_mask; + + tlv_mask = BIT(QED_IOV_VP_UPDATE_ACCEPT_PARAM) | + BIT(QED_IOV_VP_UPDATE_ACCEPT_ANY_VLAN); /* Untrusted VFs can't even be trusted to know that fact. * Simply indicate everything is configured fine, and trace * configuration 'behind their back'. */ - if (!(*tlvs & BIT(QED_IOV_VP_UPDATE_ACCEPT_PARAM))) + if (!(*tlvs & tlv_mask)) return 0; vf_info = qed_iov_get_public_vf_info(hwfn, vfid, true); @@ -3025,6 +3029,13 @@ flags->tx_accept_filter &= ~mask; } + if (params->update_accept_any_vlan_flg) { + vf_info->accept_any_vlan = params->accept_any_vlan; + + if (vf_info->forced_vlan && !vf_info->is_trusted_configured) + params->accept_any_vlan = false; + } + return 0; } @@ -3801,11 +3812,11 @@ return found; } -static void qed_iov_get_link(struct qed_hwfn *p_hwfn, - u16 vfid, - struct qed_mcp_link_params *p_params, - struct qed_mcp_link_state *p_link, - struct qed_mcp_link_capabilities *p_caps) +static int qed_iov_get_link(struct qed_hwfn *p_hwfn, + u16 vfid, + struct qed_mcp_link_params *p_params, + struct qed_mcp_link_state *p_link, + struct qed_mcp_link_capabilities *p_caps) { struct qed_vf_info *p_vf = qed_iov_get_vf_info(p_hwfn, vfid, @@ -3813,7 +3824,7 @@ struct qed_bulletin_content *p_bulletin; if (!p_vf) - return; + return -EINVAL; p_bulletin = p_vf->bulletin.p_virt; @@ -3823,6 +3834,7 @@ __qed_vf_get_link_state(p_hwfn, p_link, p_bulletin); if (p_caps) __qed_vf_get_link_caps(p_hwfn, p_caps, p_bulletin); + return 0; } static int @@ -4684,6 +4696,7 @@ struct qed_public_vf_info *vf_info; struct qed_mcp_link_state link; u32 tx_rate; + int ret; /* Sanitize request */ if (IS_VF(cdev)) @@ -4697,7 +4710,9 @@ vf_info = qed_iov_get_public_vf_info(hwfn, vf_id, true); - qed_iov_get_link(hwfn, vf_id, NULL, &link, NULL); + ret = qed_iov_get_link(hwfn, vf_id, NULL, &link, NULL); + if (ret) + return ret; /* Fill information about VF */ ivi->vf = vf_id; @@ -4713,6 +4728,7 @@ tx_rate = vf_info->tx_rate; ivi->max_tx_rate = tx_rate ? tx_rate : link.speed; ivi->min_tx_rate = qed_iov_get_vf_min_rate(hwfn, vf_id); + ivi->trusted = vf_info->is_trusted_request; return 0; } @@ -5143,6 +5159,12 @@ params.update_ctl_frame_check = 1; params.mac_chk_en = !vf_info->is_trusted_configured; + params.update_accept_any_vlan_flg = 0; + + if (vf_info->accept_any_vlan && vf_info->forced_vlan) { + params.update_accept_any_vlan_flg = 1; + params.accept_any_vlan = vf_info->accept_any_vlan; + } if (vf_info->rx_accept_mode & mask) { flags->update_rx_mode_config = 1; @@ -5158,13 +5180,20 @@ if (!vf_info->is_trusted_configured) { flags->rx_accept_filter &= ~mask; flags->tx_accept_filter &= ~mask; + params.accept_any_vlan = false; } if (flags->update_rx_mode_config || flags->update_tx_mode_config || - params.update_ctl_frame_check) + params.update_ctl_frame_check || + params.update_accept_any_vlan_flg) { + DP_VERBOSE(hwfn, QED_MSG_IOV, + "vport update config for %s VF[abs 0x%x rel 0x%x]\n", + vf_info->is_trusted_configured ? "trusted" : "untrusted", + vf->abs_vf_id, vf->relative_vf_id); qed_sp_vport_update(hwfn, ¶ms, QED_SPQ_MODE_EBLOCK, NULL); + } } } diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_vf.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_vf.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_vf.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_vf.c @@ -539,6 +539,9 @@ p_iov->bulletin.size, &p_iov->bulletin.phys, GFP_KERNEL); + if (!p_iov->bulletin.p_virt) + goto free_pf2vf_reply; + DP_VERBOSE(p_hwfn, QED_MSG_IOV, "VF's bulletin Board [%p virt 0x%llx phys 0x%08x bytes]\n", p_iov->bulletin.p_virt, @@ -578,6 +581,10 @@ return rc; +free_pf2vf_reply: + dma_free_coherent(&p_hwfn->cdev->pdev->dev, + sizeof(union pfvf_tlvs), + p_iov->pf2vf_reply, p_iov->pf2vf_reply_phys); free_vf2pf_request: dma_free_coherent(&p_hwfn->cdev->pdev->dev, sizeof(union vfpf_tlvs), diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_fp.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_fp.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_fp.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_fp.c @@ -723,6 +723,9 @@ buf = page_address(bd->data) + bd->page_offset; skb = build_skb(buf, rxq->rx_buf_seg_size); + if (unlikely(!skb)) + return NULL; + skb_reserve(skb, pad); skb_put(skb, len); @@ -1597,6 +1600,13 @@ data_split = true; } } else { + if (unlikely(skb->len > ETH_TX_MAX_NON_LSO_PKT_LEN)) { + DP_ERR(edev, "Unexpected non LSO skb length = 0x%x\n", skb->len); + qede_free_failed_tx_pkt(txq, first_bd, 0, false); + qede_update_tx_producer(txq); + return NETDEV_TX_OK; + } + val |= ((skb->len & ETH_TX_DATA_1ST_BD_PKT_LEN_MASK) << ETH_TX_DATA_1ST_BD_PKT_LEN_SHIFT); } diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_main.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_main.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qede/qede_main.c @@ -1773,6 +1773,7 @@ } edev->int_info.used_cnt = 0; + edev->int_info.msix_cnt = 0; } static int qede_req_msix_irqs(struct qede_dev *edev) @@ -2317,7 +2318,6 @@ goto out; err4: qede_sync_free_irqs(edev); - memset(&edev->int_info.msix_cnt, 0, sizeof(struct qed_int_info)); err3: qede_napi_disable_remove(edev); err2: diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qla3xxx.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qla3xxx.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qla3xxx.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qla3xxx.c @@ -115,7 +115,7 @@ value = readl(&port_regs->CommonRegs.semaphoreReg); if ((value & (sem_mask >> 16)) == sem_bits) return 0; - ssleep(1); + mdelay(1000); } while (--seconds); return -1; } @@ -155,7 +155,7 @@ "driver lock acquired\n"); return 1; } - ssleep(1); + mdelay(1000); } while (++i < 10); netdev_err(qdev->ndev, "Timed out waiting for driver lock...\n"); @@ -3291,7 +3291,7 @@ if ((value & ISP_CONTROL_SR) == 0) break; - ssleep(1); + mdelay(1000); } while ((--max_wait_time)); /* @@ -3327,7 +3327,7 @@ ispControlStatus); if ((value & ISP_CONTROL_FSR) == 0) break; - ssleep(1); + mdelay(1000); } while ((--max_wait_time)); } if (max_wait_time == 0) @@ -3495,20 +3495,19 @@ spin_lock_irqsave(&qdev->hw_lock, hw_flags); - err = ql_wait_for_drvr_lock(qdev); - if (err) { - err = ql_adapter_initialize(qdev); - if (err) { - netdev_err(ndev, "Unable to initialize adapter\n"); - goto err_init; - } - netdev_err(ndev, "Releasing driver lock\n"); - ql_sem_unlock(qdev, QL_DRVR_SEM_MASK); - } else { + if (!ql_wait_for_drvr_lock(qdev)) { netdev_err(ndev, "Could not acquire driver lock\n"); + err = -ENODEV; goto err_lock; } + err = ql_adapter_initialize(qdev); + if (err) { + netdev_err(ndev, "Unable to initialize adapter\n"); + goto err_init; + } + ql_sem_unlock(qdev, QL_DRVR_SEM_MASK); + spin_unlock_irqrestore(&qdev->hw_lock, hw_flags); set_bit(QL_ADAPTER_UP, &qdev->flags); @@ -3630,7 +3629,8 @@ qdev->mem_map_registers; unsigned long hw_flags; - if (test_bit((QL_RESET_PER_SCSI | QL_RESET_START), &qdev->flags)) { + if (test_bit(QL_RESET_PER_SCSI, &qdev->flags) || + test_bit(QL_RESET_START, &qdev->flags)) { clear_bit(QL_LINK_MASTER, &qdev->flags); /* diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c @@ -1079,8 +1079,14 @@ sds_mbx_size = sizeof(struct qlcnic_sds_mbx); context_id = recv_ctx->context_id; num_sds = adapter->drv_sds_rings - QLCNIC_MAX_SDS_RINGS; - ahw->hw_ops->alloc_mbx_args(&cmd, adapter, - QLCNIC_CMD_ADD_RCV_RINGS); + err = ahw->hw_ops->alloc_mbx_args(&cmd, adapter, + QLCNIC_CMD_ADD_RCV_RINGS); + if (err) { + dev_err(&adapter->pdev->dev, + "Failed to alloc mbx args %d\n", err); + return err; + } + cmd.req.arg[1] = 0 | (num_sds << 8) | (context_id << 16); /* set up status rings, mbx 2-81 */ @@ -3158,8 +3164,10 @@ indirect_addr = QLC_83XX_FLASH_DIRECT_DATA(addr); ret = QLCRD32(adapter, indirect_addr, &err); - if (err == -EIO) + if (err == -EIO) { + qlcnic_83xx_unlock_flash(adapter); return err; + } word = ret; *(u32 *)p_data = word; diff -u linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c --- linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c @@ -2709,6 +2709,7 @@ kfree(ahw); err_out_free_res: + pci_disable_pcie_error_reporting(pdev); pci_release_regions(pdev); err_out_disable_pdev: diff -u linux-azure-5.4.0/drivers/net/ethernet/qualcomm/emac/emac.c linux-azure-5.4.0/drivers/net/ethernet/qualcomm/emac/emac.c --- linux-azure-5.4.0/drivers/net/ethernet/qualcomm/emac/emac.c +++ linux-azure-5.4.0/drivers/net/ethernet/qualcomm/emac/emac.c @@ -745,12 +745,13 @@ put_device(&adpt->phydev->mdio.dev); mdiobus_unregister(adpt->mii_bus); - free_netdev(netdev); if (adpt->phy.digital) iounmap(adpt->phy.digital); iounmap(adpt->phy.base); + free_netdev(netdev); + return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/realtek/r8169_main.c linux-azure-5.4.0/drivers/net/ethernet/realtek/r8169_main.c --- linux-azure-5.4.0/drivers/net/ethernet/realtek/r8169_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/realtek/r8169_main.c @@ -215,6 +215,7 @@ { PCI_VDEVICE(REALTEK, 0x8129) }, { PCI_VDEVICE(REALTEK, 0x8136), RTL_CFG_NO_GBIT }, { PCI_VDEVICE(REALTEK, 0x8161) }, + { PCI_VDEVICE(REALTEK, 0x8162) }, { PCI_VDEVICE(REALTEK, 0x8167) }, { PCI_VDEVICE(REALTEK, 0x8168) }, { PCI_VDEVICE(NCUBE, 0x8168) }, @@ -1823,7 +1824,7 @@ { switch(stringset) { case ETH_SS_STATS: - memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings)); + memcpy(data, rtl8169_gstrings, sizeof(rtl8169_gstrings)); break; } } @@ -4684,6 +4685,7 @@ rtl_eri_clear_bits(tp, 0x1b0, ERIAR_MASK_0011, BIT(12)); rtl_pcie_state_l2l3_disable(tp); + rtl_hw_aspm_clkreq_enable(tp, true); } static void rtl_hw_start_8168g_1(struct rtl8169_private *tp) @@ -5226,7 +5228,6 @@ RTL_W8(tp, DLLPR, RTL_R8(tp, DLLPR) & ~PFM_EN); rtl_pcie_state_l2l3_disable(tp); - rtl_hw_aspm_clkreq_enable(tp, true); } DECLARE_RTL_COND(rtl_mac_ocp_e00e_cond) @@ -6888,7 +6889,8 @@ new_bus->priv = tp; new_bus->parent = &pdev->dev; new_bus->irq[0] = PHY_IGNORE_INTERRUPT; - snprintf(new_bus->id, MII_BUS_ID_SIZE, "r8169-%x", pci_dev_id(pdev)); + snprintf(new_bus->id, MII_BUS_ID_SIZE, "r8169-%x-%x", + pci_domain_nr(pdev->bus), pci_dev_id(pdev)); new_bus->read = r8169_mdio_read_reg; new_bus->write = r8169_mdio_write_reg; diff -u linux-azure-5.4.0/drivers/net/ethernet/renesas/sh_eth.c linux-azure-5.4.0/drivers/net/ethernet/renesas/sh_eth.c --- linux-azure-5.4.0/drivers/net/ethernet/renesas/sh_eth.c +++ linux-azure-5.4.0/drivers/net/ethernet/renesas/sh_eth.c @@ -2322,7 +2322,7 @@ { switch (stringset) { case ETH_SS_STATS: - memcpy(data, *sh_eth_gstrings_stats, + memcpy(data, sh_eth_gstrings_stats, sizeof(sh_eth_gstrings_stats)); break; } @@ -2567,6 +2567,7 @@ else txdesc->status |= cpu_to_le32(TD_TACT); + wmb(); /* cur_tx must be incremented after TACT bit was set */ mdp->cur_tx++; if (!(sh_eth_read(ndev, EDTRR) & mdp->cd->edtrr_trns)) diff -u linux-azure-5.4.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c linux-azure-5.4.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c --- linux-azure-5.4.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c @@ -2277,18 +2277,18 @@ char *opt; if (!str || !*str) - return -EINVAL; + return 1; while ((opt = strsep(&str, ",")) != NULL) { if (!strncmp(opt, "eee_timer:", 10)) { if (kstrtoint(opt + 10, 0, &eee_timer)) goto err; } } - return 0; + return 1; err: pr_err("%s: ERROR broken module parameter conversion\n", __func__); - return -EINVAL; + return 1; } __setup("sxgbeeth=", sxgbe_cmdline_opt); diff -u linux-azure-5.4.0/drivers/net/ethernet/sfc/ptp.c linux-azure-5.4.0/drivers/net/ethernet/sfc/ptp.c --- linux-azure-5.4.0/drivers/net/ethernet/sfc/ptp.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/ptp.c @@ -648,7 +648,7 @@ } else if (rc == -EINVAL) { fmt = MC_CMD_PTP_OUT_GET_ATTRIBUTES_SECONDS_NANOSECONDS; } else if (rc == -EPERM) { - netif_info(efx, probe, efx->net_dev, "no PTP support\n"); + pci_info(efx->pci_dev, "no PTP support\n"); return rc; } else { efx_mcdi_display_error(efx, MC_CMD_PTP, sizeof(inbuf), @@ -824,7 +824,7 @@ * should only have been called during probe. */ if (rc == -ENOSYS || rc == -EPERM) - netif_info(efx, probe, efx->net_dev, "no PTP support\n"); + pci_info(efx->pci_dev, "no PTP support\n"); else if (rc) efx_mcdi_display_error(efx, MC_CMD_PTP, MC_CMD_PTP_IN_DISABLE_LEN, @@ -1093,7 +1093,29 @@ tx_queue = &ptp_data->channel->tx_queue[type]; if (tx_queue && tx_queue->timestamping) { + /* This code invokes normal driver TX code which is always + * protected from softirqs when called from generic TX code, + * which in turn disables preemption. Look at __dev_queue_xmit + * which uses rcu_read_lock_bh disabling preemption for RCU + * plus disabling softirqs. We do not need RCU reader + * protection here. + * + * Although it is theoretically safe for current PTP TX/RX code + * running without disabling softirqs, there are three good + * reasond for doing so: + * + * 1) The code invoked is mainly implemented for non-PTP + * packets and it is always executed with softirqs + * disabled. + * 2) This being a single PTP packet, better to not + * interrupt its processing by softirqs which can lead + * to high latencies. + * 3) netdev_xmit_more checks preemption is disabled and + * triggers a BUG_ON if not. + */ + local_bh_disable(); efx_enqueue_skb(tx_queue, skb); + local_bh_enable(); } else { WARN_ONCE(1, "PTP channel has no timestamped tx queue\n"); dev_kfree_skb_any(skb); diff -u linux-azure-5.4.0/drivers/net/ethernet/sis/sis900.c linux-azure-5.4.0/drivers/net/ethernet/sis/sis900.c --- linux-azure-5.4.0/drivers/net/ethernet/sis/sis900.c +++ linux-azure-5.4.0/drivers/net/ethernet/sis/sis900.c @@ -443,7 +443,7 @@ #endif /* setup various bits in PCI command register */ - ret = pci_enable_device(pci_dev); + ret = pcim_enable_device(pci_dev); if(ret) return ret; i = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32)); @@ -469,7 +469,7 @@ ioaddr = pci_iomap(pci_dev, 0, 0); if (!ioaddr) { ret = -ENOMEM; - goto err_out_cleardev; + goto err_out; } sis_priv = netdev_priv(net_dev); @@ -579,8 +579,6 @@ sis_priv->tx_ring_dma); err_out_unmap: pci_iounmap(pci_dev, ioaddr); -err_out_cleardev: - pci_release_regions(pci_dev); err_out: free_netdev(net_dev); return ret; @@ -2489,7 +2487,6 @@ sis_priv->tx_ring_dma); pci_iounmap(pci_dev, sis_priv->ioaddr); free_netdev(net_dev); - pci_release_regions(pci_dev); } #ifdef CONFIG_PM diff -u linux-azure-5.4.0/drivers/net/ethernet/smsc/smc911x.c linux-azure-5.4.0/drivers/net/ethernet/smsc/smc911x.c --- linux-azure-5.4.0/drivers/net/ethernet/smsc/smc911x.c +++ linux-azure-5.4.0/drivers/net/ethernet/smsc/smc911x.c @@ -2069,6 +2069,11 @@ ndev->dma = (unsigned char)-1; ndev->irq = platform_get_irq(pdev, 0); + if (ndev->irq < 0) { + ret = ndev->irq; + goto release_both; + } + lp = netdev_priv(ndev); lp->netdev = ndev; #ifdef SMC_DYNAMIC_BUS_CONFIG diff -u linux-azure-5.4.0/drivers/net/ethernet/smsc/smsc911x.c linux-azure-5.4.0/drivers/net/ethernet/smsc/smsc911x.c --- linux-azure-5.4.0/drivers/net/ethernet/smsc/smsc911x.c +++ linux-azure-5.4.0/drivers/net/ethernet/smsc/smsc911x.c @@ -2433,7 +2433,7 @@ if (irq == -EPROBE_DEFER) { retval = -EPROBE_DEFER; goto out_0; - } else if (irq <= 0) { + } else if (irq < 0) { pr_warn("Could not allocate irq resource\n"); retval = -ENODEV; goto out_0; diff -u linux-azure-5.4.0/drivers/net/ethernet/socionext/netsec.c linux-azure-5.4.0/drivers/net/ethernet/socionext/netsec.c --- linux-azure-5.4.0/drivers/net/ethernet/socionext/netsec.c +++ linux-azure-5.4.0/drivers/net/ethernet/socionext/netsec.c @@ -1936,11 +1936,13 @@ ret = PTR_ERR(priv->phydev); dev_err(priv->dev, "get_phy_device err(%d)\n", ret); priv->phydev = NULL; + mdiobus_unregister(bus); return -ENODEV; } ret = phy_device_register(priv->phydev); if (ret) { + phy_device_free(priv->phydev); mdiobus_unregister(bus); dev_err(priv->dev, "phy_device_register err(%d)\n", ret); diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c @@ -288,10 +288,7 @@ val &= ~NSS_COMMON_GMAC_CTL_PHY_IFACE_SEL; break; default: - dev_err(&pdev->dev, "Unsupported PHY mode: \"%s\"\n", - phy_modes(gmac->phy_mode)); - err = -EINVAL; - goto err_remove_config_dt; + goto err_unsupported_phy; } regmap_write(gmac->nss_common, NSS_COMMON_GMAC_CTL(gmac->id), val); @@ -308,10 +305,7 @@ NSS_COMMON_CLK_SRC_CTRL_OFFSET(gmac->id); break; default: - dev_err(&pdev->dev, "Unsupported PHY mode: \"%s\"\n", - phy_modes(gmac->phy_mode)); - err = -EINVAL; - goto err_remove_config_dt; + goto err_unsupported_phy; } regmap_write(gmac->nss_common, NSS_COMMON_CLK_SRC_CTRL, val); @@ -328,8 +322,7 @@ NSS_COMMON_CLK_GATE_GMII_TX_EN(gmac->id); break; default: - /* We don't get here; the switch above will have errored out */ - unreachable(); + goto err_unsupported_phy; } regmap_write(gmac->nss_common, NSS_COMMON_CLK_GATE, val); @@ -360,6 +353,11 @@ return 0; +err_unsupported_phy: + dev_err(&pdev->dev, "Unsupported PHY mode: \"%s\"\n", + phy_modes(gmac->phy_mode)); + err = -EINVAL; + err_remove_config_dt: stmmac_remove_config_dt(pdev, plat_dat); diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c @@ -18,9 +18,6 @@ #include "altr_tse_pcs.h" -#define SGMII_ADAPTER_CTRL_REG 0x00 -#define SGMII_ADAPTER_DISABLE 0x0001 - #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII 0x0 #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII 0x1 #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RMII 0x2 @@ -62,14 +59,13 @@ { struct socfpga_dwmac *dwmac = (struct socfpga_dwmac *)priv; void __iomem *splitter_base = dwmac->splitter_base; - void __iomem *tse_pcs_base = dwmac->pcs.tse_pcs_base; void __iomem *sgmii_adapter_base = dwmac->pcs.sgmii_adapter_base; struct device *dev = dwmac->dev; struct net_device *ndev = dev_get_drvdata(dev); struct phy_device *phy_dev = ndev->phydev; u32 val; - if ((tse_pcs_base) && (sgmii_adapter_base)) + if (sgmii_adapter_base) writew(SGMII_ADAPTER_DISABLE, sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); @@ -93,8 +89,11 @@ writel(val, splitter_base + EMAC_SPLITTER_CTRL_REG); } - if (tse_pcs_base && sgmii_adapter_base) + if (phy_dev && sgmii_adapter_base) { + writew(SGMII_ADAPTER_ENABLE, + sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); tse_pcs_fix_mac_speed(&dwmac->pcs, phy_dev, speed); + } } static int socfpga_dwmac_parse_data(struct socfpga_dwmac *dwmac, struct device *dev) diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c @@ -718,7 +718,7 @@ if (err) { dev_err(priv->device, "EMAC reset timeout\n"); - return -EFAULT; + return err; } return 0; } @@ -879,6 +879,7 @@ ret = mdio_mux_init(priv->device, mdio_mux, mdio_mux_syscon_switch_fn, &gmac->mux_handle, priv, priv->mii); + of_node_put(mdio_mux); return ret; } diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c @@ -336,8 +336,8 @@ writel(mtl_tx_op, ioaddr + MTL_CHAN_TX_OP_MODE(channel)); } -static void dwmac4_get_hw_feature(void __iomem *ioaddr, - struct dma_features *dma_cap) +static int dwmac4_get_hw_feature(void __iomem *ioaddr, + struct dma_features *dma_cap) { u32 hw_cap = readl(ioaddr + GMAC_HW_FEATURE0); @@ -400,6 +400,8 @@ dma_cap->frpbs = (hw_cap & GMAC_HW_FEAT_FRPBS) >> 11; dma_cap->frpsel = (hw_cap & GMAC_HW_FEAT_FRPSEL) >> 10; dma_cap->dvlan = (hw_cap & GMAC_HW_FEAT_DVLAN) >> 5; + + return 0; } /* Enable/disable TSO feature and set MSS */ diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c @@ -356,8 +356,8 @@ return ret; } -static void dwxgmac2_get_hw_feature(void __iomem *ioaddr, - struct dma_features *dma_cap) +static int dwxgmac2_get_hw_feature(void __iomem *ioaddr, + struct dma_features *dma_cap) { u32 hw_cap; @@ -425,6 +425,8 @@ dma_cap->frpes = (hw_cap & XGMAC_HWFEAT_FRPES) >> 11; dma_cap->frpbs = (hw_cap & XGMAC_HWFEAT_FRPPB) >> 9; dma_cap->frpsel = (hw_cap & XGMAC_HWFEAT_FRPSEL) >> 3; + + return 0; } static void dwxgmac2_rx_watchdog(void __iomem *ioaddr, u32 riwt, u32 nchan) diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c @@ -21,10 +21,18 @@ #include "dwxgmac2.h" #define REG_SPACE_SIZE 0x1060 +#define GMAC4_REG_SPACE_SIZE 0x116C #define MAC100_ETHTOOL_NAME "st_mac100" #define GMAC_ETHTOOL_NAME "st_gmac" #define XGMAC_ETHTOOL_NAME "st_xgmac" +/* Same as DMA_CHAN_BASE_ADDR defined in dwmac4_dma.h + * + * It is here because dwmac_dma.h and dwmac4_dam.h can not be included at the + * same time due to the conflicting macro names. + */ +#define GMAC4_DMA_CHAN_BASE_ADDR 0x00001100 + #define ETHTOOL_DMA_OFFSET 55 struct stmmac_stats { @@ -413,6 +421,8 @@ if (priv->plat->has_xgmac) return XGMAC_REGSIZE * 4; + else if (priv->plat->has_gmac4) + return GMAC4_REG_SPACE_SIZE; return REG_SPACE_SIZE; } @@ -425,8 +435,13 @@ stmmac_dump_mac_regs(priv, priv->hw, reg_space); stmmac_dump_dma_regs(priv, priv->ioaddr, reg_space); - if (!priv->plat->has_xgmac) { - /* Copy DMA registers to where ethtool expects them */ + /* Copy DMA registers to where ethtool expects them */ + if (priv->plat->has_gmac4) { + /* GMAC4 dumps its DMA registers at its DMA_CHAN_BASE_ADDR */ + memcpy(®_space[ETHTOOL_DMA_OFFSET], + ®_space[GMAC4_DMA_CHAN_BASE_ADDR / 4], + NUM_DWMAC4_DMA_REGS * 4); + } else if (!priv->plat->has_xgmac) { memcpy(®_space[ETHTOOL_DMA_OFFSET], ®_space[DMA_BUS_MODE / 4], NUM_DWMAC1000_DMA_REGS * 4); diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c @@ -149,15 +149,20 @@ static void get_systime(void __iomem *ioaddr, u64 *systime) { - u64 ns; + u64 ns, sec0, sec1; - /* Get the TSSS value */ - ns = readl(ioaddr + PTP_STNSR); - /* Get the TSS and convert sec time value to nanosecond */ - ns += readl(ioaddr + PTP_STSR) * 1000000000ULL; + /* Get the TSS value */ + sec1 = readl_relaxed(ioaddr + PTP_STSR); + do { + sec0 = sec1; + /* Get the TSSS value */ + ns = readl_relaxed(ioaddr + PTP_STNSR); + /* Get the TSS value */ + sec1 = readl_relaxed(ioaddr + PTP_STSR); + } while (sec0 != sec1); if (systime) - *systime = ns; + *systime = ns + (sec1 * 1000000000ULL); } const struct stmmac_hwtimestamp stmmac_ptp = { diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -225,7 +225,7 @@ priv->clk_csr = STMMAC_CSR_100_150M; else if ((clk_rate >= CSR_F_150M) && (clk_rate < CSR_F_250M)) priv->clk_csr = STMMAC_CSR_150_250M; - else if ((clk_rate >= CSR_F_250M) && (clk_rate < CSR_F_300M)) + else if ((clk_rate >= CSR_F_250M) && (clk_rate <= CSR_F_300M)) priv->clk_csr = STMMAC_CSR_250_300M; } @@ -604,7 +604,7 @@ config.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; ptp_v2 = PTP_TCR_TSVER2ENA; snap_type_sel = PTP_TCR_SNAPTYPSEL_1; - if (priv->synopsys_id != DWMAC_CORE_5_10) + if (priv->synopsys_id < DWMAC_CORE_4_10) ts_event_en = PTP_TCR_TSEVNTENA; ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA; ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA; @@ -1987,6 +1987,8 @@ tx_q->cur_tx = 0; tx_q->mss = 0; netdev_tx_reset_queue(netdev_get_tx_queue(priv->dev, chan)); + stmmac_init_tx_chan(priv, priv->ioaddr, priv->plat->dma_cfg, + tx_q->dma_tx_phy, chan); stmmac_start_tx_dma(priv, chan); priv->dev->stats.tx_errors++; @@ -4529,7 +4531,7 @@ dev_info(priv->device, "TSO feature enabled\n"); } - if (priv->dma_cap.sphen) { + if (priv->dma_cap.sphen && !priv->plat->sph_disable) { ndev->hw_features |= NETIF_F_GRO; priv->sph = true; dev_info(priv->device, "SPH feature enabled\n"); @@ -4853,8 +4855,6 @@ stmmac_mdio_reset(priv->mii); } - netif_device_attach(ndev); - mutex_lock(&priv->lock); stmmac_reset_queues_param(priv); @@ -4878,6 +4878,8 @@ phylink_mac_change(priv->phylink, true); + netif_device_attach(ndev); + return 0; } EXPORT_SYMBOL_GPL(stmmac_resume); @@ -4888,7 +4890,7 @@ char *opt; if (!str || !*str) - return -EINVAL; + return 1; while ((opt = strsep(&str, ",")) != NULL) { if (!strncmp(opt, "debug:", 6)) { if (kstrtoint(opt + 6, 0, &debug)) @@ -4919,11 +4921,11 @@ goto err; } } - return 0; + return 1; err: pr_err("%s: ERROR broken module parameter conversion", __func__); - return -EINVAL; + return 1; } __setup("stmmaceth=", stmmac_cmdline_opt); diff -u linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c --- linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c @@ -428,8 +428,7 @@ plat->phylink_node = np; /* Get max speed of operation from device tree */ - if (of_property_read_u32(np, "max-speed", &plat->max_speed)) - plat->max_speed = -1; + of_property_read_u32(np, "max-speed", &plat->max_speed); plat->bus_id = of_alias_get_id(np, "ethernet"); if (plat->bus_id < 0) @@ -505,6 +504,14 @@ plat->pmt = 1; } + if (of_device_is_compatible(np, "snps,dwmac-3.40a")) { + plat->has_gmac = 1; + plat->enh_desc = 1; + plat->tx_coe = 1; + plat->bugged_jumbo = 1; + plat->pmt = 1; + } + if (of_device_is_compatible(np, "snps,dwmac-4.00") || of_device_is_compatible(np, "snps,dwmac-4.10a") || of_device_is_compatible(np, "snps,dwmac-4.20a")) { @@ -624,6 +631,8 @@ void stmmac_remove_config_dt(struct platform_device *pdev, struct plat_stmmacenet_data *plat) { + clk_disable_unprepare(plat->stmmac_clk); + clk_disable_unprepare(plat->pclk); of_node_put(plat->phy_node); of_node_put(plat->mdio_node); } diff -u linux-azure-5.4.0/drivers/net/ethernet/sun/niu.c linux-azure-5.4.0/drivers/net/ethernet/sun/niu.c --- linux-azure-5.4.0/drivers/net/ethernet/sun/niu.c +++ linux-azure-5.4.0/drivers/net/ethernet/sun/niu.c @@ -8191,8 +8191,9 @@ err = niu_pci_vpd_scan_props(np, here, end); if (err < 0) return err; + /* ret == 1 is not an error */ if (err == 1) - return -EINVAL; + return 0; } return 0; } diff -u linux-azure-5.4.0/drivers/net/ethernet/ti/cpts.c linux-azure-5.4.0/drivers/net/ethernet/ti/cpts.c --- linux-azure-5.4.0/drivers/net/ethernet/ti/cpts.c +++ linux-azure-5.4.0/drivers/net/ethernet/ti/cpts.c @@ -454,7 +454,9 @@ for (i = 0; i < CPTS_MAX_EVENTS; i++) list_add(&cpts->pool_data[i].list, &cpts->pool); - clk_enable(cpts->refclk); + err = clk_enable(cpts->refclk); + if (err) + return err; cpts_write32(cpts, CPTS_EN, control); cpts_write32(cpts, TS_PEND_EN, int_enable); diff -u linux-azure-5.4.0/drivers/net/ethernet/ti/davinci_emac.c linux-azure-5.4.0/drivers/net/ethernet/ti/davinci_emac.c --- linux-azure-5.4.0/drivers/net/ethernet/ti/davinci_emac.c +++ linux-azure-5.4.0/drivers/net/ethernet/ti/davinci_emac.c @@ -412,8 +412,20 @@ u32 int_ctrl, num_interrupts = 0; u32 prescale = 0, addnl_dvdr = 1, coal_intvl = 0; - if (!coal->rx_coalesce_usecs) - return -EINVAL; + if (!coal->rx_coalesce_usecs) { + priv->coal_intvl = 0; + + switch (priv->version) { + case EMAC_VERSION_2: + emac_ctrl_write(EMAC_DM646X_CMINTCTRL, 0); + break; + default: + emac_ctrl_write(EMAC_CTRL_EWINTTCNT, 0); + break; + } + + return 0; + } coal_intvl = coal->rx_coalesce_usecs; diff -u linux-azure-5.4.0/drivers/net/ethernet/ti/tlan.c linux-azure-5.4.0/drivers/net/ethernet/ti/tlan.c --- linux-azure-5.4.0/drivers/net/ethernet/ti/tlan.c +++ linux-azure-5.4.0/drivers/net/ethernet/ti/tlan.c @@ -314,9 +314,8 @@ pci_release_regions(pdev); #endif - free_netdev(dev); - cancel_work_sync(&priv->tlan_tqueue); + free_netdev(dev); } static void tlan_start(struct net_device *dev) diff -u linux-azure-5.4.0/drivers/net/ethernet/xilinx/ll_temac_main.c linux-azure-5.4.0/drivers/net/ethernet/xilinx/ll_temac_main.c --- linux-azure-5.4.0/drivers/net/ethernet/xilinx/ll_temac_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/xilinx/ll_temac_main.c @@ -770,12 +770,15 @@ stat = be32_to_cpu(cur_p->app0); while (stat & STS_CTRL_APP0_CMPLT) { + /* Make sure that the other fields are read after bd is + * released by dma + */ + rmb(); dma_unmap_single(ndev->dev.parent, be32_to_cpu(cur_p->phys), be32_to_cpu(cur_p->len), DMA_TO_DEVICE); skb = (struct sk_buff *)ptr_from_txbd(cur_p); if (skb) dev_consume_skb_irq(skb); - cur_p->app0 = 0; cur_p->app1 = 0; cur_p->app2 = 0; cur_p->app3 = 0; @@ -784,6 +787,12 @@ ndev->stats.tx_packets++; ndev->stats.tx_bytes += be32_to_cpu(cur_p->len); + /* app0 must be visible last, as it is used to flag + * availability of the bd + */ + smp_mb(); + cur_p->app0 = 0; + lp->tx_bd_ci++; if (lp->tx_bd_ci >= TX_BD_NUM) lp->tx_bd_ci = 0; @@ -810,6 +819,9 @@ if (cur_p->app0) return NETDEV_TX_BUSY; + /* Make sure to read next bd app0 after this one */ + rmb(); + tail++; if (tail >= TX_BD_NUM) tail = 0; @@ -846,7 +858,7 @@ smp_mb(); /* Space might have just been freed - check again */ - if (temac_check_tx_bd_space(lp, num_frag)) + if (temac_check_tx_bd_space(lp, num_frag + 1)) return NETDEV_TX_BUSY; netif_wake_queue(ndev); @@ -873,7 +885,6 @@ return NETDEV_TX_OK; } cur_p->phys = cpu_to_be32(skb_dma_addr); - ptr_to_txbd((void *)skb, cur_p); for (ii = 0; ii < num_frag; ii++) { if (++lp->tx_bd_tail >= TX_BD_NUM) @@ -912,6 +923,11 @@ } cur_p->app0 |= cpu_to_be32(STS_CTRL_APP0_EOP); + /* Mark last fragment with skb address, so it can be consumed + * in temac_start_xmit_done() + */ + ptr_to_txbd((void *)skb, cur_p); + tail_p = lp->tx_bd_p + sizeof(*lp->tx_bd_v) * lp->tx_bd_tail; lp->tx_bd_tail++; if (lp->tx_bd_tail >= TX_BD_NUM) @@ -923,6 +939,9 @@ wmb(); lp->dma_out(lp, TX_TAILDESC_PTR, tail_p); /* DMA start */ + if (temac_check_tx_bd_space(lp, MAX_SKB_FRAGS + 1)) + netif_stop_queue(ndev); + return NETDEV_TX_OK; } @@ -1326,6 +1345,8 @@ lp->indirect_lock = devm_kmalloc(&pdev->dev, sizeof(*lp->indirect_lock), GFP_KERNEL); + if (!lp->indirect_lock) + return -ENOMEM; spin_lock_init(lp->indirect_lock); } diff -u linux-azure-5.4.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c linux-azure-5.4.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c --- linux-azure-5.4.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c @@ -41,8 +41,9 @@ #include "xilinx_axienet.h" /* Descriptors defines for Tx and Rx DMA */ -#define TX_BD_NUM_DEFAULT 64 +#define TX_BD_NUM_DEFAULT 128 #define RX_BD_NUM_DEFAULT 1024 +#define TX_BD_NUM_MIN (MAX_SKB_FRAGS + 1) #define TX_BD_NUM_MAX 4096 #define RX_BD_NUM_MAX 4096 @@ -635,7 +636,7 @@ num_frag = skb_shinfo(skb)->nr_frags; cur_p = &lp->tx_bd_v[lp->tx_bd_tail]; - if (axienet_check_tx_bd_space(lp, num_frag)) { + if (axienet_check_tx_bd_space(lp, num_frag + 1)) { if (netif_queue_stopped(ndev)) return NETDEV_TX_BUSY; @@ -645,7 +646,7 @@ smp_mb(); /* Space might have just been freed - check again */ - if (axienet_check_tx_bd_space(lp, num_frag)) + if (axienet_check_tx_bd_space(lp, num_frag + 1)) return NETDEV_TX_BUSY; netif_wake_queue(ndev); @@ -1223,7 +1224,8 @@ if (ering->rx_pending > RX_BD_NUM_MAX || ering->rx_mini_pending || ering->rx_jumbo_pending || - ering->rx_pending > TX_BD_NUM_MAX) + ering->tx_pending < TX_BD_NUM_MIN || + ering->tx_pending > TX_BD_NUM_MAX) return -EINVAL; if (netif_running(ndev)) diff -u linux-azure-5.4.0/drivers/net/fjes/fjes_main.c linux-azure-5.4.0/drivers/net/fjes/fjes_main.c --- linux-azure-5.4.0/drivers/net/fjes/fjes_main.c +++ linux-azure-5.4.0/drivers/net/fjes/fjes_main.c @@ -1262,9 +1262,18 @@ adapter->interrupt_watch_enable = false; res = platform_get_resource(plat_dev, IORESOURCE_MEM, 0); + if (!res) { + err = -EINVAL; + goto err_free_control_wq; + } hw->hw_res.start = res->start; hw->hw_res.size = resource_size(res); hw->hw_res.irq = platform_get_irq(plat_dev, 0); + if (hw->hw_res.irq < 0) { + err = hw->hw_res.irq; + goto err_free_control_wq; + } + err = fjes_hw_init(&adapter->hw); if (err) goto err_free_control_wq; diff -u linux-azure-5.4.0/drivers/net/geneve.c linux-azure-5.4.0/drivers/net/geneve.c --- linux-azure-5.4.0/drivers/net/geneve.c +++ linux-azure-5.4.0/drivers/net/geneve.c @@ -851,8 +851,7 @@ use_cache = false; } - fl6->flowlabel = ip6_make_flowinfo(RT_TOS(prio), - info->key.label); + fl6->flowlabel = ip6_make_flowinfo(prio, info->key.label); dst_cache = (struct dst_cache *)&info->dst_cache; if (use_cache) { dst = dst_cache_get_ip6(dst_cache, &fl6->saddr); diff -u linux-azure-5.4.0/drivers/net/hamradio/6pack.c linux-azure-5.4.0/drivers/net/hamradio/6pack.c --- linux-azure-5.4.0/drivers/net/hamradio/6pack.c +++ linux-azure-5.4.0/drivers/net/hamradio/6pack.c @@ -68,9 +68,9 @@ #define SIXP_DAMA_OFF 0 /* default level 2 parameters */ -#define SIXP_TXDELAY (HZ/4) /* in 1 s */ +#define SIXP_TXDELAY 25 /* 250 ms */ #define SIXP_PERSIST 50 /* in 256ths */ -#define SIXP_SLOTTIME (HZ/10) /* in 1 s */ +#define SIXP_SLOTTIME 10 /* 100 ms */ #define SIXP_INIT_RESYNC_TIMEOUT (3*HZ/2) /* in 1 s */ #define SIXP_RESYNC_TIMEOUT 5*HZ /* in 1 s */ @@ -311,7 +311,6 @@ { /* Finish setting up the DEVICE info. */ dev->netdev_ops = &sp_netdev_ops; - dev->needs_free_netdev = true; dev->mtu = SIXP_MTU; dev->hard_header_len = AX25_MAX_HEADER_LEN; dev->header_ops = &ax25_header_ops; @@ -674,14 +673,16 @@ */ netif_stop_queue(sp->dev); + unregister_netdev(sp->dev); + del_timer_sync(&sp->tx_t); del_timer_sync(&sp->resync_t); - /* Free all 6pack frame buffers. */ + /* Free all 6pack frame buffers after unreg. */ kfree(sp->rbuff); kfree(sp->xbuff); - unregister_netdev(sp->dev); + free_netdev(sp->dev); } /* Perform I/O control on an active 6pack channel. */ @@ -839,6 +840,12 @@ return; } + if (sp->rx_count_cooked + 2 >= sizeof(sp->cooked_buf)) { + pr_err("6pack: cooked buffer overrun, data loss\n"); + sp->rx_count = 0; + return; + } + buf = sp->raw_buf; sp->cooked_buf[sp->rx_count_cooked++] = buf[0] | ((buf[1] << 2) & 0xc0); diff -u linux-azure-5.4.0/drivers/net/hamradio/mkiss.c linux-azure-5.4.0/drivers/net/hamradio/mkiss.c --- linux-azure-5.4.0/drivers/net/hamradio/mkiss.c +++ linux-azure-5.4.0/drivers/net/hamradio/mkiss.c @@ -31,6 +31,8 @@ #define AX_MTU 236 +/* some arch define END as assembly function ending, just undef it */ +#undef END /* SLIP/KISS protocol characters. */ #define END 0300 /* indicates end of frame */ #define ESC 0333 /* indicates byte stuffing */ @@ -793,13 +795,15 @@ */ netif_stop_queue(ax->dev); - /* Free all AX25 frame buffers. */ + unregister_netdev(ax->dev); + + /* Free all AX25 frame buffers after unreg. */ kfree(ax->rbuff); kfree(ax->xbuff); ax->tty = NULL; - unregister_netdev(ax->dev); + free_netdev(ax->dev); } /* Perform I/O control on an active ax25 channel. */ diff -u linux-azure-5.4.0/drivers/net/hamradio/yam.c linux-azure-5.4.0/drivers/net/hamradio/yam.c --- linux-azure-5.4.0/drivers/net/hamradio/yam.c +++ linux-azure-5.4.0/drivers/net/hamradio/yam.c @@ -951,9 +951,7 @@ sizeof(struct yamdrv_ioctl_mcs)); if (IS_ERR(ym)) return PTR_ERR(ym); - if (ym->cmd != SIOCYAMSMCS) - return -EINVAL; - if (ym->bitrate > YAM_MAXBITRATE) { + if (ym->cmd != SIOCYAMSMCS || ym->bitrate > YAM_MAXBITRATE) { kfree(ym); return -EINVAL; } diff -u linux-azure-5.4.0/drivers/net/hippi/rrunner.c linux-azure-5.4.0/drivers/net/hippi/rrunner.c --- linux-azure-5.4.0/drivers/net/hippi/rrunner.c +++ linux-azure-5.4.0/drivers/net/hippi/rrunner.c @@ -1346,7 +1346,9 @@ rrpriv->fw_running = 0; + spin_unlock_irqrestore(&rrpriv->lock, flags); del_timer_sync(&rrpriv->timer); + spin_lock_irqsave(&rrpriv->lock, flags); writel(0, ®s->TxPi); writel(0, ®s->IpRxPi); diff -u linux-azure-5.4.0/drivers/net/hyperv/hyperv_net.h linux-azure-5.4.0/drivers/net/hyperv/hyperv_net.h --- linux-azure-5.4.0/drivers/net/hyperv/hyperv_net.h +++ linux-azure-5.4.0/drivers/net/hyperv/hyperv_net.h @@ -976,6 +976,9 @@ /* Serial number of the VF to team with */ u32 vf_serial; + /* completion variable to confirm vf association */ + struct completion vf_add; + /* Used to temporarily save the config info across hibernation */ struct netvsc_device_info *saved_netvsc_dev_info; }; diff -u linux-azure-5.4.0/drivers/net/hyperv/netvsc.c linux-azure-5.4.0/drivers/net/hyperv/netvsc.c --- linux-azure-5.4.0/drivers/net/hyperv/netvsc.c +++ linux-azure-5.4.0/drivers/net/hyperv/netvsc.c @@ -635,9 +635,12 @@ RCU_INIT_POINTER(net_device_ctx->nvdev, NULL); - /* And disassociate NAPI context from device */ - for (i = 0; i < net_device->num_chn; i++) + /* Disable NAPI and disassociate its context from the device. */ + for (i = 0; i < net_device->num_chn; i++) { + /* See also vmbus_reset_channel_cb(). */ + napi_disable(&net_device->chan_table[i].napi); netif_napi_del(&net_device->chan_table[i].napi); + } /* * At this point, no one should be accessing net_device @@ -790,7 +793,7 @@ } for (i = 0; i < page_count; i++) { - char *src = phys_to_virt(pb[i].pfn << PAGE_SHIFT); + char *src = phys_to_virt(pb[i].pfn << HV_HYP_PAGE_SHIFT); u32 offset = pb[i].offset; u32 len = pb[i].len; @@ -1227,6 +1230,10 @@ net_device_ctx->vf_alloc = nvmsg->msg.v4_msg.vf_assoc.allocated; net_device_ctx->vf_serial = nvmsg->msg.v4_msg.vf_assoc.serial; + + if (net_device_ctx->vf_alloc) + complete(&net_device_ctx->vf_add); + netdev_info(ndev, "VF slot %u %s\n", net_device_ctx->vf_serial, net_device_ctx->vf_alloc ? "added" : "removed"); diff -u linux-azure-5.4.0/drivers/net/hyperv/netvsc_drv.c linux-azure-5.4.0/drivers/net/hyperv/netvsc_drv.c --- linux-azure-5.4.0/drivers/net/hyperv/netvsc_drv.c +++ linux-azure-5.4.0/drivers/net/hyperv/netvsc_drv.c @@ -373,32 +373,29 @@ return txq; } -static u32 fill_pg_buf(struct page *page, u32 offset, u32 len, +static u32 fill_pg_buf(unsigned long hvpfn, u32 offset, u32 len, struct hv_page_buffer *pb) { int j = 0; - /* Deal with compound pages by ignoring unused part - * of the page. - */ - page += (offset >> PAGE_SHIFT); - offset &= ~PAGE_MASK; + hvpfn += offset >> HV_HYP_PAGE_SHIFT; + offset = offset & ~HV_HYP_PAGE_MASK; while (len > 0) { unsigned long bytes; - bytes = PAGE_SIZE - offset; + bytes = HV_HYP_PAGE_SIZE - offset; if (bytes > len) bytes = len; - pb[j].pfn = page_to_pfn(page); + pb[j].pfn = hvpfn; pb[j].offset = offset; pb[j].len = bytes; offset += bytes; len -= bytes; - if (offset == PAGE_SIZE && len) { - page++; + if (offset == HV_HYP_PAGE_SIZE && len) { + hvpfn++; offset = 0; j++; } @@ -421,23 +418,26 @@ * 2. skb linear data * 3. skb fragment data */ - slots_used += fill_pg_buf(virt_to_page(hdr), - offset_in_page(hdr), - len, &pb[slots_used]); + slots_used += fill_pg_buf(virt_to_hvpfn(hdr), + offset_in_hvpage(hdr), + len, + &pb[slots_used]); packet->rmsg_size = len; packet->rmsg_pgcnt = slots_used; - slots_used += fill_pg_buf(virt_to_page(data), - offset_in_page(data), - skb_headlen(skb), &pb[slots_used]); + slots_used += fill_pg_buf(virt_to_hvpfn(data), + offset_in_hvpage(data), + skb_headlen(skb), + &pb[slots_used]); for (i = 0; i < frags; i++) { skb_frag_t *frag = skb_shinfo(skb)->frags + i; - slots_used += fill_pg_buf(skb_frag_page(frag), - skb_frag_off(frag), - skb_frag_size(frag), &pb[slots_used]); + slots_used += fill_pg_buf(page_to_hvpfn(skb_frag_page(frag)), + skb_frag_off(frag), + skb_frag_size(frag), + &pb[slots_used]); } return slots_used; } @@ -453,8 +453,8 @@ unsigned long offset = skb_frag_off(frag); /* Skip unused frames from start of page */ - offset &= ~PAGE_MASK; - pages += PFN_UP(offset + size); + offset &= ~HV_HYP_PAGE_MASK; + pages += HVPFN_UP(offset + size); } return pages; } @@ -462,12 +462,12 @@ static int netvsc_get_slots(struct sk_buff *skb) { char *data = skb->data; - unsigned int offset = offset_in_page(data); + unsigned int offset = offset_in_hvpage(data); unsigned int len = skb_headlen(skb); int slots; int frag_slots; - slots = DIV_ROUND_UP(offset + len, PAGE_SIZE); + slots = DIV_ROUND_UP(offset + len, HV_HYP_PAGE_SIZE); frag_slots = count_skb_frag_slots(skb); return slots + frag_slots; } @@ -1544,6 +1544,9 @@ pcpu_sum = kvmalloc_array(num_possible_cpus(), sizeof(struct netvsc_ethtool_pcpu_stats), GFP_KERNEL); + if (!pcpu_sum) + return; + netvsc_get_pcpu_stats(dev, pcpu_sum); for_each_present_cpu(cpu) { struct netvsc_ethtool_pcpu_stats *this_sum = &pcpu_sum[cpu]; @@ -2288,2 +2291,14 @@ + /* Fallback path to check synthetic vf with + * help of mac addr + */ + list_for_each_entry(ndev_ctx, &netvsc_dev_list, list) { + ndev = hv_get_drvdata(ndev_ctx->device_ctx); + if (ether_addr_equal(vf_netdev->perm_addr, ndev->perm_addr)) { + netdev_notice(vf_netdev, + "falling back to mac addr based matching\n"); + return ndev; + } + } + netdev_notice(vf_netdev, @@ -2363,6 +2378,11 @@ if (!netvsc_dev) return NOTIFY_DONE; + if (vf_is_up && !net_device_ctx->vf_alloc) { + netdev_info(ndev, "Waiting for the VF association from host\n"); + wait_for_completion(&net_device_ctx->vf_add); + } + netvsc_switch_datapath(ndev, vf_is_up); netdev_info(ndev, "Data path switched %s VF: %s\n", vf_is_up ? "to" : "from", vf_netdev->name); @@ -2384,8 +2404,11 @@ netdev_info(ndev, "VF unregistering: %s\n", vf_netdev->name); + reinit_completion(&net_device_ctx->vf_add); + netvsc_vf_setxdp(vf_netdev, NULL); + reinit_completion(&net_device_ctx->vf_add); netdev_rx_handler_unregister(vf_netdev); netdev_upper_dev_unlink(vf_netdev, ndev); RCU_INIT_POINTER(net_device_ctx->vf_netdev, NULL); @@ -2423,6 +2446,7 @@ INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change); + init_completion(&net_device_ctx->vf_add); spin_lock_init(&net_device_ctx->lock); INIT_LIST_HEAD(&net_device_ctx->reconfig_events); INIT_DELAYED_WORK(&net_device_ctx->vf_takeover, netvsc_vf_setup); diff -u linux-azure-5.4.0/drivers/net/hyperv/rndis_filter.c linux-azure-5.4.0/drivers/net/hyperv/rndis_filter.c --- linux-azure-5.4.0/drivers/net/hyperv/rndis_filter.c +++ linux-azure-5.4.0/drivers/net/hyperv/rndis_filter.c @@ -25,7 +25,7 @@ static void rndis_set_multicast(struct work_struct *w); -#define RNDIS_EXT_LEN PAGE_SIZE +#define RNDIS_EXT_LEN HV_HYP_PAGE_SIZE struct rndis_request { struct list_head list_ent; struct completion wait_event; @@ -215,18 +215,17 @@ packet->page_buf_cnt = 1; pb[0].pfn = virt_to_phys(&req->request_msg) >> - PAGE_SHIFT; + HV_HYP_PAGE_SHIFT; pb[0].len = req->request_msg.msg_len; - pb[0].offset = - (unsigned long)&req->request_msg & (PAGE_SIZE - 1); + pb[0].offset = offset_in_hvpage(&req->request_msg); /* Add one page_buf when request_msg crossing page boundary */ - if (pb[0].offset + pb[0].len > PAGE_SIZE) { + if (pb[0].offset + pb[0].len > HV_HYP_PAGE_SIZE) { packet->page_buf_cnt++; - pb[0].len = PAGE_SIZE - + pb[0].len = HV_HYP_PAGE_SIZE - pb[0].offset; pb[1].pfn = virt_to_phys((void *)&req->request_msg - + pb[0].len) >> PAGE_SHIFT; + + pb[0].len) >> HV_HYP_PAGE_SHIFT; pb[1].offset = 0; pb[1].len = req->request_msg.msg_len - pb[0].len; diff -u linux-azure-5.4.0/drivers/net/ieee802154/adf7242.c linux-azure-5.4.0/drivers/net/ieee802154/adf7242.c --- linux-azure-5.4.0/drivers/net/ieee802154/adf7242.c +++ linux-azure-5.4.0/drivers/net/ieee802154/adf7242.c @@ -1310,10 +1310,11 @@ debugfs_remove_recursive(lp->debugfs_root); + ieee802154_unregister_hw(lp->hw); + cancel_delayed_work_sync(&lp->work); destroy_workqueue(lp->wqueue); - ieee802154_unregister_hw(lp->hw); mutex_destroy(&lp->bmux); ieee802154_free_hw(lp->hw); diff -u linux-azure-5.4.0/drivers/net/ieee802154/atusb.c linux-azure-5.4.0/drivers/net/ieee802154/atusb.c --- linux-azure-5.4.0/drivers/net/ieee802154/atusb.c +++ linux-azure-5.4.0/drivers/net/ieee802154/atusb.c @@ -93,7 +93,9 @@ ret = usb_control_msg(usb_dev, pipe, request, requesttype, value, index, data, size, timeout); - if (ret < 0) { + if (ret < size) { + ret = ret < 0 ? ret : -ENODATA; + atusb->err = ret; dev_err(&usb_dev->dev, "%s: req 0x%02x val 0x%x idx 0x%x, error %d\n", @@ -861,9 +863,9 @@ if (!build) return -ENOMEM; - ret = atusb_control_msg(atusb, usb_rcvctrlpipe(usb_dev, 0), - ATUSB_BUILD, ATUSB_REQ_FROM_DEV, 0, 0, - build, ATUSB_BUILD_SIZE, 1000); + /* We cannot call atusb_control_msg() here, since this request may read various length data */ + ret = usb_control_msg(atusb->usb_dev, usb_rcvctrlpipe(usb_dev, 0), ATUSB_BUILD, + ATUSB_REQ_FROM_DEV, 0, 0, build, ATUSB_BUILD_SIZE, 1000); if (ret >= 0) { build[ret] = 0; dev_info(&usb_dev->dev, "Firmware: build %s\n", build); diff -u linux-azure-5.4.0/drivers/net/ieee802154/ca8210.c linux-azure-5.4.0/drivers/net/ieee802154/ca8210.c --- linux-azure-5.4.0/drivers/net/ieee802154/ca8210.c +++ linux-azure-5.4.0/drivers/net/ieee802154/ca8210.c @@ -1770,6 +1770,7 @@ status ); if (status != MAC_TRANSACTION_OVERFLOW) { + dev_kfree_skb_any(priv->tx_skb); ieee802154_wake_queue(priv->hw); return 0; } @@ -2975,8 +2976,8 @@ ca8210_hw->phy->cca.opt = NL802154_CCA_OPT_ENERGY_CARRIER_AND; ca8210_hw->phy->cca_ed_level = -9800; ca8210_hw->phy->symbol_duration = 16; - ca8210_hw->phy->lifs_period = 40; - ca8210_hw->phy->sifs_period = 12; + ca8210_hw->phy->lifs_period = 40 * ca8210_hw->phy->symbol_duration; + ca8210_hw->phy->sifs_period = 12 * ca8210_hw->phy->symbol_duration; ca8210_hw->flags = IEEE802154_HW_AFILT | IEEE802154_HW_OMIT_CKSUM | diff -u linux-azure-5.4.0/drivers/net/ipvlan/ipvlan_core.c linux-azure-5.4.0/drivers/net/ipvlan/ipvlan_core.c --- linux-azure-5.4.0/drivers/net/ipvlan/ipvlan_core.c +++ linux-azure-5.4.0/drivers/net/ipvlan/ipvlan_core.c @@ -496,7 +496,6 @@ static int ipvlan_process_outbound(struct sk_buff *skb) { - struct ethhdr *ethh = eth_hdr(skb); int ret = NET_XMIT_DROP; /* The ipvlan is a pseudo-L2 device, so the packets that we receive @@ -506,6 +505,8 @@ if (skb_mac_header_was_set(skb)) { /* In this mode we dont care about * multicast and broadcast traffic */ + struct ethhdr *ethh = eth_hdr(skb); + if (is_multicast_ether_addr(ethh->h_dest)) { pr_debug_ratelimited( "Dropped {multi|broad}cast of type=[%x]\n", @@ -590,7 +591,7 @@ static int ipvlan_xmit_mode_l2(struct sk_buff *skb, struct net_device *dev) { const struct ipvl_dev *ipvlan = netdev_priv(dev); - struct ethhdr *eth = eth_hdr(skb); + struct ethhdr *eth = skb_eth_hdr(skb); struct ipvl_addr *addr; void *lyr3h; int addr_type; @@ -620,6 +621,7 @@ return dev_forward_skb(ipvlan->phy_dev, skb); } else if (is_multicast_ether_addr(eth->h_dest)) { + skb_reset_mac_header(skb); ipvlan_skb_crossing_ns(skb, NULL); ipvlan_multicast_enqueue(ipvlan->port, skb, true); return NET_XMIT_SUCCESS; diff -u linux-azure-5.4.0/drivers/net/macsec.c linux-azure-5.4.0/drivers/net/macsec.c --- linux-azure-5.4.0/drivers/net/macsec.c +++ linux-azure-5.4.0/drivers/net/macsec.c @@ -3247,6 +3247,15 @@ macsec->real_dev = real_dev; + /* send_sci must be set to true when transmit sci explicitly is set */ + if ((data && data[IFLA_MACSEC_SCI]) && + (data && data[IFLA_MACSEC_INC_SCI])) { + u8 send_sci = !!nla_get_u8(data[IFLA_MACSEC_INC_SCI]); + + if (!send_sci) + return -EINVAL; + } + if (data && data[IFLA_MACSEC_ICV_LEN]) icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]); mtu = real_dev->mtu - icv_len - macsec_extra_len(true); diff -u linux-azure-5.4.0/drivers/net/phy/aquantia_main.c linux-azure-5.4.0/drivers/net/phy/aquantia_main.c --- linux-azure-5.4.0/drivers/net/phy/aquantia_main.c +++ linux-azure-5.4.0/drivers/net/phy/aquantia_main.c @@ -34,6 +34,8 @@ #define MDIO_AN_VEND_PROV 0xc400 #define MDIO_AN_VEND_PROV_1000BASET_FULL BIT(15) #define MDIO_AN_VEND_PROV_1000BASET_HALF BIT(14) +#define MDIO_AN_VEND_PROV_5000BASET_FULL BIT(11) +#define MDIO_AN_VEND_PROV_2500BASET_FULL BIT(10) #define MDIO_AN_VEND_PROV_DOWNSHIFT_EN BIT(4) #define MDIO_AN_VEND_PROV_DOWNSHIFT_MASK GENMASK(3, 0) #define MDIO_AN_VEND_PROV_DOWNSHIFT_DFLT 4 @@ -230,9 +232,20 @@ phydev->advertising)) reg |= MDIO_AN_VEND_PROV_1000BASET_HALF; + /* Handle the case when the 2.5G and 5G speeds are not advertised */ + if (linkmode_test_bit(ETHTOOL_LINK_MODE_2500baseT_Full_BIT, + phydev->advertising)) + reg |= MDIO_AN_VEND_PROV_2500BASET_FULL; + + if (linkmode_test_bit(ETHTOOL_LINK_MODE_5000baseT_Full_BIT, + phydev->advertising)) + reg |= MDIO_AN_VEND_PROV_5000BASET_FULL; + ret = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_VEND_PROV, MDIO_AN_VEND_PROV_1000BASET_HALF | - MDIO_AN_VEND_PROV_1000BASET_FULL, reg); + MDIO_AN_VEND_PROV_1000BASET_FULL | + MDIO_AN_VEND_PROV_2500BASET_FULL | + MDIO_AN_VEND_PROV_5000BASET_FULL, reg); if (ret < 0) return ret; if (ret > 0) diff -u linux-azure-5.4.0/drivers/net/phy/broadcom.c linux-azure-5.4.0/drivers/net/phy/broadcom.c --- linux-azure-5.4.0/drivers/net/phy/broadcom.c +++ linux-azure-5.4.0/drivers/net/phy/broadcom.c @@ -11,6 +11,7 @@ */ #include "bcm-phy-lib.h" +#include #include #include #include @@ -479,6 +480,26 @@ if (err < 0) return err; + /* The datasheet indicates the PHY needs up to 1us to complete a reset, + * build some slack here. + */ + usleep_range(1000, 2000); + + /* The PHY requires 65 MDC clock cycles to complete a write operation + * and turnaround the line properly. + * + * We ignore -EIO here as the MDIO controller (e.g.: mdio-bcm-unimac) + * may flag the lack of turn-around as a read failure. This is + * particularly true with this combination since the MDIO controller + * only used 64 MDC cycles. This is not a critical failure in this + * specific case and it has no functional impact otherwise, so we let + * that one go through. If there is a genuine bus error, the next read + * of MII_BRCM_FET_INTREG will error out. + */ + err = phy_read(phydev, MII_BMCR); + if (err < 0 && err != -EIO) + return err; + reg = phy_read(phydev, MII_BRCM_FET_INTREG); if (reg < 0) return reg; @@ -646,6 +667,7 @@ .phy_id_mask = 0xfffffff0, .name = "Broadcom BCM54616S", /* PHY_GBIT_FEATURES */ + .soft_reset = genphy_soft_reset, .config_init = bcm54xx_config_init, .config_aneg = bcm54616s_config_aneg, .ack_interrupt = bcm_phy_ack_intr, diff -u linux-azure-5.4.0/drivers/net/phy/dp83867.c linux-azure-5.4.0/drivers/net/phy/dp83867.c --- linux-azure-5.4.0/drivers/net/phy/dp83867.c +++ linux-azure-5.4.0/drivers/net/phy/dp83867.c @@ -432,6 +432,14 @@ else val &= ~DP83867_SGMII_TYPE; phy_write_mmd(phydev, DP83867_DEVADDR, DP83867_SGMIICTL, val); + + /* This is a SW workaround for link instability if RX_CTRL is + * not strapped to mode 3 or 4 in HW. This is required for SGMII + * in addition to clearing bit 7, handled above. + */ + if (dp83867->rxctrl_strap_quirk) + phy_set_bits_mmd(phydev, DP83867_DEVADDR, DP83867_CFG4, + BIT(8)); } val = phy_read(phydev, DP83867_CFG3); @@ -468,16 +476,12 @@ { int err; - err = phy_write(phydev, DP83867_CTRL, DP83867_SW_RESET); + err = phy_write(phydev, DP83867_CTRL, DP83867_SW_RESTART); if (err < 0) return err; usleep_range(10, 20); - /* After reset FORCE_LINK_GOOD bit is set. Although the - * default value should be unset. Disable FORCE_LINK_GOOD - * for the phy to work properly. - */ return phy_modify(phydev, MII_DP83867_PHYCTRL, DP83867_PHYCR_FORCE_LINK_GOOD, 0); } diff -u linux-azure-5.4.0/drivers/net/phy/marvell.c linux-azure-5.4.0/drivers/net/phy/marvell.c --- linux-azure-5.4.0/drivers/net/phy/marvell.c +++ linux-azure-5.4.0/drivers/net/phy/marvell.c @@ -444,9 +444,9 @@ else mscr = 0; - return phy_modify_paged(phydev, MII_MARVELL_MSCR_PAGE, - MII_88E1121_PHY_MSCR_REG, - MII_88E1121_PHY_MSCR_DELAY_MASK, mscr); + return phy_modify_paged_changed(phydev, MII_MARVELL_MSCR_PAGE, + MII_88E1121_PHY_MSCR_REG, + MII_88E1121_PHY_MSCR_DELAY_MASK, mscr); } static int m88e1121_config_aneg(struct phy_device *phydev) @@ -460,11 +460,13 @@ return err; } + changed = err; + err = marvell_set_polarity(phydev, phydev->mdix_ctrl); if (err < 0) return err; - changed = err; + changed |= err; err = genphy_config_aneg(phydev); if (err < 0) @@ -886,16 +888,15 @@ { int err; - err = genphy_soft_reset(phydev); + err = marvell_set_polarity(phydev, phydev->mdix_ctrl); if (err < 0) return err; - err = marvell_set_polarity(phydev, phydev->mdix_ctrl); + err = genphy_config_aneg(phydev); if (err < 0) return err; - err = genphy_config_aneg(phydev); - return 0; + return genphy_soft_reset(phydev); } static int m88e1118_config_init(struct phy_device *phydev) @@ -917,6 +918,12 @@ if (err < 0) return err; + if (phy_interface_is_rgmii(phydev)) { + err = m88e1121_config_aneg_rgmii_delays(phydev); + if (err < 0) + return err; + } + /* Adjust LED Control */ if (phydev->dev_flags & MARVELL_PHY_M1118_DNS323_LEDS) err = phy_write(phydev, 0x10, 0x1100); @@ -1401,8 +1408,8 @@ int err; /* Suspend the fiber mode first */ - if (!linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, - phydev->supported)) { + if (linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, + phydev->supported)) { err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE); if (err < 0) goto error; @@ -1436,8 +1443,8 @@ int err; /* Resume the fiber mode first */ - if (!linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, - phydev->supported)) { + if (linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, + phydev->supported)) { err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE); if (err < 0) goto error; diff -u linux-azure-5.4.0/drivers/net/phy/mdio_bus.c linux-azure-5.4.0/drivers/net/phy/mdio_bus.c --- linux-azure-5.4.0/drivers/net/phy/mdio_bus.c +++ linux-azure-5.4.0/drivers/net/phy/mdio_bus.c @@ -385,6 +385,13 @@ bus->dev.groups = NULL; dev_set_name(&bus->dev, "%s", bus->id); + /* We need to set state to MDIOBUS_UNREGISTERED to correctly release + * the device in mdiobus_free() + * + * State will be updated later in this function in case of success + */ + bus->state = MDIOBUS_UNREGISTERED; + err = device_register(&bus->dev); if (err) { pr_err("mii_bus %s failed to register\n", bus->id); @@ -412,7 +419,7 @@ bus->reset(bus); for (i = 0; i < PHY_MAX_ADDR; i++) { - if ((bus->phy_mask & (1 << i)) == 0) { + if ((bus->phy_mask & BIT(i)) == 0) { struct phy_device *phydev; phydev = mdiobus_scan(bus, i); @@ -426,7 +433,7 @@ mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device); bus->state = MDIOBUS_REGISTERED; - pr_info("%s: probed\n", bus->name); + dev_dbg(&bus->dev, "probed\n"); return 0; error: @@ -453,7 +460,8 @@ struct mdio_device *mdiodev; int i; - BUG_ON(bus->state != MDIOBUS_REGISTERED); + if (WARN_ON_ONCE(bus->state != MDIOBUS_REGISTERED)) + return; bus->state = MDIOBUS_UNREGISTERED; for (i = 0; i < PHY_MAX_ADDR; i++) { @@ -745,7 +753,6 @@ return ret; } -EXPORT_SYMBOL_GPL(mdio_bus_init); #if IS_ENABLED(CONFIG_PHYLIB) void mdio_bus_exit(void) diff -u linux-azure-5.4.0/drivers/net/phy/micrel.c linux-azure-5.4.0/drivers/net/phy/micrel.c --- linux-azure-5.4.0/drivers/net/phy/micrel.c +++ linux-azure-5.4.0/drivers/net/phy/micrel.c @@ -282,7 +282,7 @@ } } - if (priv->led_mode >= 0) + if (priv->type && priv->led_mode >= 0) kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode); return 0; @@ -298,10 +298,10 @@ type = priv->type; - if (type->has_broadcast_disable) + if (type && type->has_broadcast_disable) kszphy_broadcast_disable(phydev); - if (type->has_nand_tree_disable) + if (type && type->has_nand_tree_disable) kszphy_nand_tree_disable(phydev); return kszphy_config_reset(phydev); @@ -343,11 +343,11 @@ } static int ksz8051_ksz8795_match_phy_device(struct phy_device *phydev, - const u32 ksz_phy_id) + const bool ksz_8051) { int ret; - if ((phydev->phy_id & MICREL_PHY_ID_MASK) != ksz_phy_id) + if ((phydev->phy_id & MICREL_PHY_ID_MASK) != PHY_ID_KSZ8051) return 0; ret = phy_read(phydev, MII_BMSR); @@ -360,7 +360,7 @@ * the switch does not. */ ret &= BMSR_ERCAP; - if (ksz_phy_id == PHY_ID_KSZ8051) + if (ksz_8051) return ret; else return !ret; @@ -368,7 +368,7 @@ static int ksz8051_match_phy_device(struct phy_device *phydev) { - return ksz8051_ksz8795_match_phy_device(phydev, PHY_ID_KSZ8051); + return ksz8051_ksz8795_match_phy_device(phydev, true); } static int ksz8081_config_init(struct phy_device *phydev) @@ -396,7 +396,7 @@ static int ksz8795_match_phy_device(struct phy_device *phydev) { - return ksz8051_ksz8795_match_phy_device(phydev, PHY_ID_KSZ87XX); + return ksz8051_ksz8795_match_phy_device(phydev, false); } static int ksz9021_load_values_from_of(struct phy_device *phydev, @@ -939,7 +939,7 @@ priv->type = type; - if (type->led_mode_reg) { + if (type && type->led_mode_reg) { ret = of_property_read_u32(np, "micrel,led-mode", &priv->led_mode); if (ret) @@ -960,7 +960,8 @@ unsigned long rate = clk_get_rate(clk); bool rmii_ref_clk_sel_25_mhz; - priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel; + if (type) + priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel; rmii_ref_clk_sel_25_mhz = of_property_read_bool(np, "micrel,rmii-reference-clock-select-25-mhz"); @@ -1040,8 +1041,9 @@ .get_sset_count = kszphy_get_sset_count, .get_strings = kszphy_get_strings, .get_stats = kszphy_get_stats, - .suspend = genphy_suspend, - .resume = genphy_resume, + /* No suspend/resume callbacks because of errata DS80000700A, + * receiver error following software power down. + */ }, { .phy_id = PHY_ID_KSZ8041RNLI, .phy_id_mask = MICREL_PHY_ID_MASK, @@ -1095,6 +1097,7 @@ .probe = kszphy_probe, .config_init = ksz8081_config_init, .ack_interrupt = kszphy_ack_interrupt, + .soft_reset = genphy_soft_reset, .config_intr = kszphy_config_intr, .get_sset_count = kszphy_get_sset_count, .get_strings = kszphy_get_strings, @@ -1184,8 +1187,6 @@ .name = "Micrel KSZ87XX Switch", /* PHY_BASIC_FEATURES */ .config_init = kszphy_config_init, - .config_aneg = ksz8873mll_config_aneg, - .read_status = ksz8873mll_read_status, .match_phy_device = ksz8795_match_phy_device, .suspend = genphy_suspend, .resume = genphy_resume, diff -u linux-azure-5.4.0/drivers/net/phy/phy.c linux-azure-5.4.0/drivers/net/phy/phy.c --- linux-azure-5.4.0/drivers/net/phy/phy.c +++ linux-azure-5.4.0/drivers/net/phy/phy.c @@ -116,10 +116,15 @@ */ static int phy_clear_interrupt(struct phy_device *phydev) { - if (phydev->drv->ack_interrupt) - return phydev->drv->ack_interrupt(phydev); + int ret = 0; - return 0; + if (phydev->drv->ack_interrupt) { + mutex_lock(&phydev->lock); + ret = phydev->drv->ack_interrupt(phydev); + mutex_unlock(&phydev->lock); + } + + return ret; } /** @@ -367,6 +372,7 @@ void phy_ethtool_ksettings_get(struct phy_device *phydev, struct ethtool_link_ksettings *cmd) { + mutex_lock(&phydev->lock); linkmode_copy(cmd->link_modes.supported, phydev->supported); linkmode_copy(cmd->link_modes.advertising, phydev->advertising); linkmode_copy(cmd->link_modes.lp_advertising, phydev->lp_advertising); @@ -383,6 +389,7 @@ cmd->base.autoneg = phydev->autoneg; cmd->base.eth_tp_mdix_ctrl = phydev->mdix_ctrl; cmd->base.eth_tp_mdix = phydev->mdix; + mutex_unlock(&phydev->lock); } EXPORT_SYMBOL(phy_ethtool_ksettings_get); @@ -553,7 +560,7 @@ } /** - * phy_start_aneg - start auto-negotiation for this PHY device + * _phy_start_aneg - start auto-negotiation for this PHY device * @phydev: the phy_device struct * * Description: Sanitizes the settings (if we're not autonegotiating @@ -561,25 +568,43 @@ * If the PHYCONTROL Layer is operating, we change the state to * reflect the beginning of Auto-negotiation or forcing. */ -int phy_start_aneg(struct phy_device *phydev) +static int _phy_start_aneg(struct phy_device *phydev) { int err; + lockdep_assert_held(&phydev->lock); + if (!phydev->drv) return -EIO; - mutex_lock(&phydev->lock); - if (AUTONEG_DISABLE == phydev->autoneg) phy_sanitize_settings(phydev); err = phy_config_aneg(phydev); if (err < 0) - goto out_unlock; + return err; if (phy_is_started(phydev)) err = phy_check_link_status(phydev); -out_unlock: + + return err; +} + +/** + * phy_start_aneg - start auto-negotiation for this PHY device + * @phydev: the phy_device struct + * + * Description: Sanitizes the settings (if we're not autonegotiating + * them), and then calls the driver's config_aneg function. + * If the PHYCONTROL Layer is operating, we change the state to + * reflect the beginning of Auto-negotiation or forcing. + */ +int phy_start_aneg(struct phy_device *phydev) +{ + int err; + + mutex_lock(&phydev->lock); + err = _phy_start_aneg(phydev); mutex_unlock(&phydev->lock); return err; @@ -741,6 +766,36 @@ } /** + * phy_did_interrupt - Checks if the PHY generated an interrupt + * @phydev: target phy_device struct + */ +static int phy_did_interrupt(struct phy_device *phydev) +{ + int ret; + + mutex_lock(&phydev->lock); + ret = phydev->drv->did_interrupt(phydev); + mutex_unlock(&phydev->lock); + + return ret; +} + +/** + * phy_handle_interrupt - PHY specific interrupt handler + * @phydev: target phy_device struct + */ +static int phy_handle_interrupt(struct phy_device *phydev) +{ + int ret; + + mutex_lock(&phydev->lock); + ret = phydev->drv->handle_interrupt(phydev); + mutex_unlock(&phydev->lock); + + return ret; +} + +/** * phy_interrupt - PHY interrupt handler * @irq: interrupt line * @phy_dat: phy_device pointer @@ -751,11 +806,11 @@ { struct phy_device *phydev = phy_dat; - if (phydev->drv->did_interrupt && !phydev->drv->did_interrupt(phydev)) + if (phydev->drv->did_interrupt && !phy_did_interrupt(phydev)) return IRQ_NONE; if (phydev->drv->handle_interrupt) { - if (phydev->drv->handle_interrupt(phydev)) + if (phy_handle_interrupt(phydev)) goto phy_err; } else { /* reschedule state queue work to run as soon as possible */ diff -u linux-azure-5.4.0/drivers/net/phy/phy_device.c linux-azure-5.4.0/drivers/net/phy/phy_device.c --- linux-azure-5.4.0/drivers/net/phy/phy_device.c +++ linux-azure-5.4.0/drivers/net/phy/phy_device.c @@ -1433,6 +1433,9 @@ phy_driver_is_genphy_10g(phydev)) device_release_driver(&phydev->mdio.dev); + /* Assert the reset signal */ + phy_device_reset(phydev, 1); + /* * The phydev might go away on the put_device() below, so avoid * a use-after-free bug by reading the underlying bus first. @@ -1444,9 +1447,6 @@ ndev_owner = dev->dev.parent->driver->owner; if (ndev_owner != bus->owner) module_put(bus->owner); - - /* Assert the reset signal */ - phy_device_reset(phydev, 1); } EXPORT_SYMBOL(phy_detach); @@ -1766,9 +1766,10 @@ /* The link state is latched low so that momentary link * drops can be detected. Do not double-read the status - * in polling mode to detect such short link drops. + * in polling mode to detect such short link drops except + * the link was already down. */ - if (!phy_polling_mode(phydev)) { + if (!phy_polling_mode(phydev) || !phydev->link) { status = phy_read(phydev, MII_BMSR); if (status < 0) return status; diff -u linux-azure-5.4.0/drivers/net/phy/phylink.c linux-azure-5.4.0/drivers/net/phy/phylink.c --- linux-azure-5.4.0/drivers/net/phy/phylink.c +++ linux-azure-5.4.0/drivers/net/phy/phylink.c @@ -582,6 +582,11 @@ return ret; } + if (!fwnode_device_is_available(ref.fwnode)) { + fwnode_handle_put(ref.fwnode); + return 0; + } + pl->sfp_bus = sfp_register_upstream(ref.fwnode, pl, &sfp_phylink_ops); if (!pl->sfp_bus) return -ENOMEM; @@ -1331,7 +1336,7 @@ return -EOPNOTSUPP; if (!phylink_test(pl->supported, Asym_Pause) && - !pause->autoneg && pause->rx_pause != pause->tx_pause) + pause->rx_pause != pause->tx_pause) return -EINVAL; config->pause &= ~(MLO_PAUSE_AN | MLO_PAUSE_TXRX_MASK); diff -u linux-azure-5.4.0/drivers/net/phy/sfp.c linux-azure-5.4.0/drivers/net/phy/sfp.c --- linux-azure-5.4.0/drivers/net/phy/sfp.c +++ linux-azure-5.4.0/drivers/net/phy/sfp.c @@ -115,7 +115,7 @@ [SFP_S_LINK_UP] = "link_up", [SFP_S_TX_FAULT] = "tx_fault", [SFP_S_REINIT] = "reinit", - [SFP_S_TX_DISABLE] = "rx_disable", + [SFP_S_TX_DISABLE] = "tx_disable", }; static const char *sm_state_to_str(unsigned short sm_state) @@ -1878,7 +1878,7 @@ platform_set_drvdata(pdev, sfp); - err = devm_add_action(sfp->dev, sfp_cleanup, sfp); + err = devm_add_action_or_reset(sfp->dev, sfp_cleanup, sfp); if (err < 0) return err; diff -u linux-azure-5.4.0/drivers/net/slip/slip.c linux-azure-5.4.0/drivers/net/slip/slip.c --- linux-azure-5.4.0/drivers/net/slip/slip.c +++ linux-azure-5.4.0/drivers/net/slip/slip.c @@ -471,7 +471,7 @@ spin_lock(&sl->lock); if (netif_queue_stopped(dev)) { - if (!netif_running(dev)) + if (!netif_running(dev) || !sl->tty) goto out; /* May be we must check transmitter timeout here ? diff -u linux-azure-5.4.0/drivers/net/tap.c linux-azure-5.4.0/drivers/net/tap.c --- linux-azure-5.4.0/drivers/net/tap.c +++ linux-azure-5.4.0/drivers/net/tap.c @@ -1214,7 +1214,8 @@ struct xdp_buff *xdp; int i; - if (ctl && (ctl->type == TUN_MSG_PTR)) { + if (m->msg_controllen == sizeof(struct tun_msg_ctl) && + ctl && ctl->type == TUN_MSG_PTR) { for (i = 0; i < ctl->num; i++) { xdp = &((struct xdp_buff *)ctl->ptr)[i]; tap_get_user_xdp(q, xdp); diff -u linux-azure-5.4.0/drivers/net/team/team.c linux-azure-5.4.0/drivers/net/team/team.c --- linux-azure-5.4.0/drivers/net/team/team.c +++ linux-azure-5.4.0/drivers/net/team/team.c @@ -1270,10 +1270,12 @@ } } - netif_addr_lock_bh(dev); - dev_uc_sync_multiple(port_dev, dev); - dev_mc_sync_multiple(port_dev, dev); - netif_addr_unlock_bh(dev); + if (dev->flags & IFF_UP) { + netif_addr_lock_bh(dev); + dev_uc_sync_multiple(port_dev, dev); + dev_mc_sync_multiple(port_dev, dev); + netif_addr_unlock_bh(dev); + } port->index = -1; list_add_tail_rcu(&port->list, &team->port_list); @@ -1344,8 +1346,10 @@ netdev_rx_handler_unregister(port_dev); team_port_disable_netpoll(port); vlan_vids_del_by_dev(port_dev, dev); - dev_uc_unsync(port_dev, dev); - dev_mc_unsync(port_dev, dev); + if (dev->flags & IFF_UP) { + dev_uc_unsync(port_dev, dev); + dev_mc_unsync(port_dev, dev); + } dev_close(port_dev); team_port_leave(team, port); @@ -1694,6 +1698,14 @@ static int team_close(struct net_device *dev) { + struct team *team = netdev_priv(dev); + struct team_port *port; + + list_for_each_entry(port, &team->port_list, list) { + dev_uc_unsync(port->dev, dev); + dev_mc_unsync(port->dev, dev); + } + return 0; } diff -u linux-azure-5.4.0/drivers/net/tun.c linux-azure-5.4.0/drivers/net/tun.c --- linux-azure-5.4.0/drivers/net/tun.c +++ linux-azure-5.4.0/drivers/net/tun.c @@ -327,6 +327,12 @@ } } +static void tun_napi_enable(struct tun_file *tfile) +{ + if (tfile->napi_enabled) + napi_enable(&tfile->napi); +} + static void tun_napi_disable(struct tun_file *tfile) { if (tfile->napi_enabled) @@ -690,7 +696,8 @@ tun = rtnl_dereference(tfile->tun); if (tun && clean) { - tun_napi_disable(tfile); + if (!tfile->detached) + tun_napi_disable(tfile); tun_napi_del(tfile); } @@ -709,8 +716,10 @@ if (clean) { RCU_INIT_POINTER(tfile->tun, NULL); sock_put(&tfile->sk); - } else + } else { tun_disable_queue(tun, tfile); + tun_napi_disable(tfile); + } synchronize_net(); tun_flow_delete_by_queue(tun, tun->numqueues + 1); @@ -783,6 +792,7 @@ sock_put(&tfile->sk); } list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) { + tun_napi_del(tfile); tun_enable_queue(tfile); tun_queue_purge(tfile); xdp_rxq_info_unreg(&tfile->xdp_rxq); @@ -863,6 +873,7 @@ if (tfile->detached) { tun_enable_queue(tfile); + tun_napi_enable(tfile); } else { sock_hold(&tfile->sk); tun_napi_init(tun, tfile, napi, napi_frags); @@ -1071,6 +1082,7 @@ { struct tun_struct *tun = netdev_priv(dev); int txq = skb->queue_mapping; + struct netdev_queue *queue; struct tun_file *tfile; int len = skb->len; @@ -1117,6 +1129,10 @@ if (ptr_ring_produce(&tfile->tx_ring, skb)) goto drop; + /* NETIF_F_LLTX requires to do our own update of trans_start */ + queue = netdev_get_tx_queue(dev, txq); + queue->trans_start = jiffies; + /* Notify and wake up reader process */ if (tfile->flags & TUN_FASYNC) kill_fasync(&tfile->fasync, SIGIO, POLL_IN); @@ -1476,7 +1492,8 @@ int err; int i; - if (it->nr_segs > MAX_SKB_FRAGS + 1) + if (it->nr_segs > MAX_SKB_FRAGS + 1 || + len > (ETH_MAX_MTU - NET_SKB_PAD - NET_IP_ALIGN)) return ERR_PTR(-EMSGSIZE); local_bh_disable(); @@ -2556,7 +2573,8 @@ if (!tun) return -EBADFD; - if (ctl && (ctl->type == TUN_MSG_PTR)) { + if (m->msg_controllen == sizeof(struct tun_msg_ctl) && + ctl && ctl->type == TUN_MSG_PTR) { struct tun_page tpage; int n = ctl->num; int flush = 0; diff -u linux-azure-5.4.0/drivers/net/usb/ax88179_178a.c linux-azure-5.4.0/drivers/net/usb/ax88179_178a.c --- linux-azure-5.4.0/drivers/net/usb/ax88179_178a.c +++ linux-azure-5.4.0/drivers/net/usb/ax88179_178a.c @@ -1361,58 +1361,119 @@ u16 hdr_off; u32 *pkt_hdr; - /* This check is no longer done by usbnet */ - if (skb->len < dev->net->hard_header_len) - return 0; + /* At the end of the SKB, there's a header telling us how many packets + * are bundled into this buffer and where we can find an array of + * per-packet metadata (which contains elements encoded into u16). + */ + + /* SKB contents for current firmware: + * + * ... + * + * + * ... + * + * + * + * where: + * contains pkt_len bytes: + * 2 bytes of IP alignment pseudo header + * packet received + * contains 4 bytes: + * pkt_len and fields AX_RXHDR_* + * 0-7 bytes to terminate at + * 8 bytes boundary (64-bit). + * 4 bytes to make rx_hdr terminate at + * 8 bytes boundary (64-bit) + * contains 4 bytes: + * pkt_len=0 and AX_RXHDR_DROP_ERR + * contains 4 bytes: + * pkt_cnt and hdr_off (offset of + * ) + * + * pkt_cnt is number of entrys in the per-packet metadata. + * In current firmware there is 2 entrys per packet. + * The first points to the packet and the + * second is a dummy header. + * This was done probably to align fields in 64-bit and + * maintain compatibility with old firmware. + * This code assumes that and are + * optional. + */ + if (skb->len < 4) + return 0; skb_trim(skb, skb->len - 4); rx_hdr = get_unaligned_le32(skb_tail_pointer(skb)); - pkt_cnt = (u16)rx_hdr; hdr_off = (u16)(rx_hdr >> 16); + + if (pkt_cnt == 0) + return 0; + + /* Make sure that the bounds of the metadata array are inside the SKB + * (and in front of the counter at the end). + */ + if (pkt_cnt * 4 + hdr_off > skb->len) + return 0; pkt_hdr = (u32 *)(skb->data + hdr_off); - while (pkt_cnt--) { + /* Packets must not overlap the metadata array */ + skb_trim(skb, hdr_off); + + for (; pkt_cnt > 0; pkt_cnt--, pkt_hdr++) { + u16 pkt_len_plus_padd; u16 pkt_len; le32_to_cpus(pkt_hdr); pkt_len = (*pkt_hdr >> 16) & 0x1fff; + pkt_len_plus_padd = (pkt_len + 7) & 0xfff8; + + /* Skip dummy header used for alignment + */ + if (pkt_len == 0) + continue; + + if (pkt_len_plus_padd > skb->len) + return 0; /* Check CRC or runt packet */ - if ((*pkt_hdr & AX_RXHDR_CRC_ERR) || - (*pkt_hdr & AX_RXHDR_DROP_ERR)) { - skb_pull(skb, (pkt_len + 7) & 0xFFF8); - pkt_hdr++; + if ((*pkt_hdr & (AX_RXHDR_CRC_ERR | AX_RXHDR_DROP_ERR)) || + pkt_len < 2 + ETH_HLEN) { + dev->net->stats.rx_errors++; + skb_pull(skb, pkt_len_plus_padd); continue; } - if (pkt_cnt == 0) { - skb->len = pkt_len; + /* last packet */ + if (pkt_len_plus_padd == skb->len) { + skb_trim(skb, pkt_len); + /* Skip IP alignment pseudo header */ skb_pull(skb, 2); - skb_set_tail_pointer(skb, skb->len); - skb->truesize = pkt_len + sizeof(struct sk_buff); + + skb->truesize = SKB_TRUESIZE(pkt_len_plus_padd); ax88179_rx_checksum(skb, pkt_hdr); return 1; } ax_skb = skb_clone(skb, GFP_ATOMIC); - if (ax_skb) { - ax_skb->len = pkt_len; - /* Skip IP alignment pseudo header */ - skb_pull(ax_skb, 2); - skb_set_tail_pointer(ax_skb, ax_skb->len); - ax_skb->truesize = pkt_len + sizeof(struct sk_buff); - ax88179_rx_checksum(ax_skb, pkt_hdr); - usbnet_skb_return(dev, ax_skb); - } else { + if (!ax_skb) return 0; - } + skb_trim(ax_skb, pkt_len); + + /* Skip IP alignment pseudo header */ + skb_pull(ax_skb, 2); - skb_pull(skb, (pkt_len + 7) & 0xFFF8); - pkt_hdr++; + skb->truesize = pkt_len_plus_padd + + SKB_DATA_ALIGN(sizeof(struct sk_buff)); + ax88179_rx_checksum(ax_skb, pkt_hdr); + usbnet_skb_return(dev, ax_skb); + + skb_pull(skb, pkt_len_plus_padd); } - return 1; + + return 0; } static struct sk_buff * diff -u linux-azure-5.4.0/drivers/net/usb/cdc_ether.c linux-azure-5.4.0/drivers/net/usb/cdc_ether.c --- linux-azure-5.4.0/drivers/net/usb/cdc_ether.c +++ linux-azure-5.4.0/drivers/net/usb/cdc_ether.c @@ -571,6 +571,11 @@ .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \ .bInterfaceProtocol = USB_CDC_PROTO_NONE +#define ZAURUS_FAKE_INTERFACE \ + .bInterfaceClass = USB_CLASS_COMM, \ + .bInterfaceSubClass = USB_CDC_SUBCLASS_MDLM, \ + .bInterfaceProtocol = USB_CDC_PROTO_NONE + /* SA-1100 based Sharp Zaurus ("collie"), or compatible; * wire-incompatible with true CDC Ethernet implementations. * (And, it seems, needlessly so...) @@ -628,6 +633,13 @@ .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | USB_DEVICE_ID_MATCH_DEVICE, .idVendor = 0x04DD, + .idProduct = 0x9032, /* SL-6000 */ + ZAURUS_FAKE_INTERFACE, + .driver_info = 0, +}, { + .match_flags = USB_DEVICE_ID_MATCH_INT_INFO + | USB_DEVICE_ID_MATCH_DEVICE, + .idVendor = 0x04DD, /* reported with some C860 units */ .idProduct = 0x9050, /* C-860 */ ZAURUS_MASTER_INTERFACE, @@ -752,6 +764,13 @@ }, #endif +/* Lenovo ThinkPad OneLink+ Dock (based on Realtek RTL8153) */ +{ + USB_DEVICE_AND_INTERFACE_INFO(LENOVO_VENDOR_ID, 0x3054, USB_CLASS_COMM, + USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE), + .driver_info = 0, +}, + /* ThinkPad USB-C Dock (based on Realtek RTL8153) */ { USB_DEVICE_AND_INTERFACE_INFO(LENOVO_VENDOR_ID, 0x3062, USB_CLASS_COMM, diff -u linux-azure-5.4.0/drivers/net/usb/cdc_ncm.c linux-azure-5.4.0/drivers/net/usb/cdc_ncm.c --- linux-azure-5.4.0/drivers/net/usb/cdc_ncm.c +++ linux-azure-5.4.0/drivers/net/usb/cdc_ncm.c @@ -177,6 +177,8 @@ /* clamp new_tx to sane values */ min = ctx->max_datagram_size + ctx->max_ndp_size + sizeof(struct usb_cdc_ncm_nth16); max = min_t(u32, CDC_NCM_NTB_MAX_SIZE_TX, le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize)); + if (max == 0) + max = CDC_NCM_NTB_MAX_SIZE_TX; /* dwNtbOutMaxSize not set */ /* some devices set dwNtbOutMaxSize too low for the above default */ min = min(min, max); @@ -1589,6 +1591,15 @@ uint32_t rx_speed = le32_to_cpu(data->DLBitRRate); uint32_t tx_speed = le32_to_cpu(data->ULBitRate); + /* if the speed hasn't changed, don't report it. + * RTL8156 shipped before 2021 sends notification about every 32ms. + */ + if (dev->rx_speed == rx_speed && dev->tx_speed == tx_speed) + return; + + dev->rx_speed = rx_speed; + dev->tx_speed = tx_speed; + /* * Currently the USB-NET API does not support reporting the actual * device speed. Do print it instead. @@ -1629,7 +1640,8 @@ * USB_CDC_NOTIFY_NETWORK_CONNECTION notification shall be * sent by device after USB_CDC_NOTIFY_SPEED_CHANGE. */ - usbnet_link_change(dev, !!event->wValue, 0); + if (netif_carrier_ok(dev->net) != !!event->wValue) + usbnet_link_change(dev, !!event->wValue, 0); break; case USB_CDC_NOTIFY_SPEED_CHANGE: @@ -1652,7 +1664,7 @@ static const struct driver_info cdc_ncm_info = { .description = "CDC NCM", .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET - | FLAG_LINK_INTR, + | FLAG_LINK_INTR | FLAG_ETHER, .bind = cdc_ncm_bind, .unbind = cdc_ncm_unbind, .manage_power = usbnet_manage_power, diff -u linux-azure-5.4.0/drivers/net/usb/hso.c linux-azure-5.4.0/drivers/net/usb/hso.c --- linux-azure-5.4.0/drivers/net/usb/hso.c +++ linux-azure-5.4.0/drivers/net/usb/hso.c @@ -2497,7 +2497,7 @@ hso_net_init); if (!net) { dev_err(&interface->dev, "Unable to create ethernet device\n"); - goto exit; + goto err_hso_dev; } hso_net = netdev_priv(net); @@ -2510,13 +2510,13 @@ USB_DIR_IN); if (!hso_net->in_endp) { dev_err(&interface->dev, "Can't find BULK IN endpoint\n"); - goto exit; + goto err_net; } hso_net->out_endp = hso_get_ep(interface, USB_ENDPOINT_XFER_BULK, USB_DIR_OUT); if (!hso_net->out_endp) { dev_err(&interface->dev, "Can't find BULK OUT endpoint\n"); - goto exit; + goto err_net; } SET_NETDEV_DEV(net, &interface->dev); SET_NETDEV_DEVTYPE(net, &hso_type); @@ -2525,18 +2525,18 @@ for (i = 0; i < MUX_BULK_RX_BUF_COUNT; i++) { hso_net->mux_bulk_rx_urb_pool[i] = usb_alloc_urb(0, GFP_KERNEL); if (!hso_net->mux_bulk_rx_urb_pool[i]) - goto exit; + goto err_mux_bulk_rx; hso_net->mux_bulk_rx_buf_pool[i] = kzalloc(MUX_BULK_RX_BUF_SIZE, GFP_KERNEL); if (!hso_net->mux_bulk_rx_buf_pool[i]) - goto exit; + goto err_mux_bulk_rx; } hso_net->mux_bulk_tx_urb = usb_alloc_urb(0, GFP_KERNEL); if (!hso_net->mux_bulk_tx_urb) - goto exit; + goto err_mux_bulk_rx; hso_net->mux_bulk_tx_buf = kzalloc(MUX_BULK_TX_BUF_SIZE, GFP_KERNEL); if (!hso_net->mux_bulk_tx_buf) - goto exit; + goto err_free_tx_urb; add_net_device(hso_dev); @@ -2544,7 +2544,7 @@ result = register_netdev(net); if (result) { dev_err(&interface->dev, "Failed to register device\n"); - goto exit; + goto err_free_tx_buf; } hso_log_port(hso_dev); @@ -2552,8 +2552,21 @@ hso_create_rfkill(hso_dev, interface); return hso_dev; -exit: - hso_free_net_device(hso_dev); + +err_free_tx_buf: + remove_net_device(hso_dev); + kfree(hso_net->mux_bulk_tx_buf); +err_free_tx_urb: + usb_free_urb(hso_net->mux_bulk_tx_urb); +err_mux_bulk_rx: + for (i = 0; i < MUX_BULK_RX_BUF_COUNT; i++) { + usb_free_urb(hso_net->mux_bulk_rx_urb_pool[i]); + kfree(hso_net->mux_bulk_rx_buf_pool[i]); + } +err_net: + free_netdev(net); +err_hso_dev: + kfree(hso_dev); return NULL; } @@ -2704,14 +2717,14 @@ serial = kzalloc(sizeof(*serial), GFP_KERNEL); if (!serial) - goto exit; + goto err_free_dev; hso_dev->port_data.dev_serial = serial; serial->parent = hso_dev; if (hso_serial_common_create (serial, 1, CTRL_URB_RX_SIZE, CTRL_URB_TX_SIZE)) - goto exit; + goto err_free_serial; serial->tx_data_length--; serial->write_data = hso_mux_serial_write_data; @@ -2727,11 +2740,9 @@ /* done, return it */ return hso_dev; -exit: - if (serial) { - tty_unregister_device(tty_drv, serial->minor); - kfree(serial); - } +err_free_serial: + kfree(serial); +err_free_dev: kfree(hso_dev); return NULL; diff -u linux-azure-5.4.0/drivers/net/usb/ipheth.c linux-azure-5.4.0/drivers/net/usb/ipheth.c --- linux-azure-5.4.0/drivers/net/usb/ipheth.c +++ linux-azure-5.4.0/drivers/net/usb/ipheth.c @@ -121,7 +121,7 @@ if (tx_buf == NULL) goto free_rx_urb; - rx_buf = usb_alloc_coherent(iphone->udev, IPHETH_BUF_SIZE, + rx_buf = usb_alloc_coherent(iphone->udev, IPHETH_BUF_SIZE + IPHETH_IP_ALIGN, GFP_KERNEL, &rx_urb->transfer_dma); if (rx_buf == NULL) goto free_tx_buf; @@ -146,7 +146,7 @@ static void ipheth_free_urbs(struct ipheth_device *iphone) { - usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->rx_buf, + usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE + IPHETH_IP_ALIGN, iphone->rx_buf, iphone->rx_urb->transfer_dma); usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->tx_buf, iphone->tx_urb->transfer_dma); @@ -317,7 +317,7 @@ usb_fill_bulk_urb(dev->rx_urb, udev, usb_rcvbulkpipe(udev, dev->bulk_in), - dev->rx_buf, IPHETH_BUF_SIZE, + dev->rx_buf, IPHETH_BUF_SIZE + IPHETH_IP_ALIGN, ipheth_rcvbulk_callback, dev); dev->rx_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; diff -u linux-azure-5.4.0/drivers/net/usb/lan78xx.c linux-azure-5.4.0/drivers/net/usb/lan78xx.c --- linux-azure-5.4.0/drivers/net/usb/lan78xx.c +++ linux-azure-5.4.0/drivers/net/usb/lan78xx.c @@ -64,6 +64,8 @@ #define LAN7801_USB_PRODUCT_ID (0x7801) #define LAN78XX_EEPROM_MAGIC (0x78A5) #define LAN78XX_OTP_MAGIC (0x78F3) +#define AT29M2AF_USB_VENDOR_ID (0x07C9) +#define AT29M2AF_USB_PRODUCT_ID (0x0012) #define MII_READ 1 #define MII_WRITE 0 @@ -1159,7 +1161,7 @@ { struct phy_device *phydev = dev->net->phydev; struct ethtool_link_ksettings ecmd; - int ladv, radv, ret; + int ladv, radv, ret, link; u32 buf; /* clear LAN78xx interrupt status */ @@ -1167,9 +1169,12 @@ if (unlikely(ret < 0)) return -EIO; + mutex_lock(&phydev->lock); phy_read_status(phydev); + link = phydev->link; + mutex_unlock(&phydev->lock); - if (!phydev->link && dev->link_on) { + if (!link && dev->link_on) { dev->link_on = false; /* reset MAC */ @@ -1182,7 +1187,7 @@ return -EIO; del_timer(&dev->stat_monitor); - } else if (phydev->link && !dev->link_on) { + } else if (link && !dev->link_on) { dev->link_on = true; phy_ethtool_ksettings_get(phydev, &ecmd); @@ -1471,9 +1476,14 @@ static u32 lan78xx_get_link(struct net_device *net) { + u32 link; + + mutex_lock(&net->phydev->lock); phy_read_status(net->phydev); + link = net->phydev->link; + mutex_unlock(&net->phydev->lock); - return net->phydev->link; + return link; } static void lan78xx_get_drvinfo(struct net_device *net, @@ -2128,7 +2138,7 @@ if (dev->domain_data.phyirq > 0) phydev->irq = dev->domain_data.phyirq; else - phydev->irq = 0; + phydev->irq = PHY_POLL; netdev_dbg(dev->net, "phydev->irq = %d\n", phydev->irq); /* set to AUTOMDIX */ @@ -3745,6 +3755,12 @@ dev->maxpacket = usb_maxpacket(dev->udev, dev->pipe_out, 1); + /* Reject broken descriptors. */ + if (dev->maxpacket == 0) { + ret = -ENODEV; + goto out4; + } + /* driver requires remote-wakeup capability during autosuspend. */ intf->needs_remote_wakeup = 1; @@ -4139,6 +4155,10 @@ /* LAN7801 USB Gigabit Ethernet Device */ USB_DEVICE(LAN78XX_USB_VENDOR_ID, LAN7801_USB_PRODUCT_ID), }, + { + /* ATM2-AF USB Gigabit Ethernet Device */ + USB_DEVICE(AT29M2AF_USB_VENDOR_ID, AT29M2AF_USB_PRODUCT_ID), + }, {}, }; MODULE_DEVICE_TABLE(usb, products); diff -u linux-azure-5.4.0/drivers/net/usb/qmi_wwan.c linux-azure-5.4.0/drivers/net/usb/qmi_wwan.c --- linux-azure-5.4.0/drivers/net/usb/qmi_wwan.c +++ linux-azure-5.4.0/drivers/net/usb/qmi_wwan.c @@ -1046,6 +1046,7 @@ {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0512)}, /* Quectel EG12/EM12 */ {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0620)}, /* Quectel EM160R-GL */ {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0800)}, /* Quectel RM500Q-GL */ + {QMI_MATCH_FF_FF_FF(0x2c7c, 0x0801)}, /* Quectel RM520N */ /* 3. Combined interface devices matching on interface number */ {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */ @@ -1315,6 +1316,8 @@ {QMI_QUIRK_SET_DTR(0x1bc7, 0x1031, 3)}, /* Telit LE910C1-EUX */ {QMI_QUIRK_SET_DTR(0x1bc7, 0x1040, 2)}, /* Telit LE922A */ {QMI_QUIRK_SET_DTR(0x1bc7, 0x1050, 2)}, /* Telit FN980 */ + {QMI_QUIRK_SET_DTR(0x1bc7, 0x1060, 2)}, /* Telit LN920 */ + {QMI_QUIRK_SET_DTR(0x1bc7, 0x1070, 2)}, /* Telit FN990 */ {QMI_FIXED_INTF(0x1bc7, 0x1100, 3)}, /* Telit ME910 */ {QMI_FIXED_INTF(0x1bc7, 0x1101, 3)}, /* Telit ME910 dual modem */ {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */ @@ -1351,10 +1354,13 @@ {QMI_FIXED_INTF(0x413c, 0x81b3, 8)}, /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card (rev3) */ {QMI_FIXED_INTF(0x413c, 0x81b6, 8)}, /* Dell Wireless 5811e */ {QMI_FIXED_INTF(0x413c, 0x81b6, 10)}, /* Dell Wireless 5811e */ + {QMI_FIXED_INTF(0x413c, 0x81c2, 8)}, /* Dell Wireless 5811e */ {QMI_FIXED_INTF(0x413c, 0x81cc, 8)}, /* Dell Wireless 5816e */ {QMI_FIXED_INTF(0x413c, 0x81d7, 0)}, /* Dell Wireless 5821e */ {QMI_FIXED_INTF(0x413c, 0x81d7, 1)}, /* Dell Wireless 5821e preproduction config */ {QMI_FIXED_INTF(0x413c, 0x81e0, 0)}, /* Dell Wireless 5821e with eSIM support*/ + {QMI_FIXED_INTF(0x413c, 0x81e4, 0)}, /* Dell Wireless 5829e with eSIM support*/ + {QMI_FIXED_INTF(0x413c, 0x81e6, 0)}, /* Dell Wireless 5829e */ {QMI_FIXED_INTF(0x03f0, 0x4e1d, 8)}, /* HP lt4111 LTE/EV-DO/HSPA+ Gobi 4G Module */ {QMI_FIXED_INTF(0x03f0, 0x9d1d, 1)}, /* HP lt4120 Snapdragon X5 LTE */ {QMI_FIXED_INTF(0x22de, 0x9061, 3)}, /* WeTelecom WPD-600N */ diff -u linux-azure-5.4.0/drivers/net/usb/r8152.c linux-azure-5.4.0/drivers/net/usb/r8152.c --- linux-azure-5.4.0/drivers/net/usb/r8152.c +++ linux-azure-5.4.0/drivers/net/usb/r8152.c @@ -1494,7 +1494,9 @@ "Stop submitting intr, status %d\n", status); return; case -EOVERFLOW: - netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n"); + if (net_ratelimit()) + netif_info(tp, intr, tp->netdev, + "intr status -EOVERFLOW\n"); goto resubmit; /* -EPIPE: should clear the halt */ default: @@ -4332,9 +4334,10 @@ tp->rtl_ops.down(tp); mutex_unlock(&tp->control); + } + if (!res) usb_autopm_put_interface(tp->intf); - } free_all_mem(tp); @@ -5080,7 +5083,7 @@ { switch (stringset) { case ETH_SS_STATS: - memcpy(data, *rtl8152_gstrings, sizeof(rtl8152_gstrings)); + memcpy(data, rtl8152_gstrings, sizeof(rtl8152_gstrings)); break; } } @@ -5839,6 +5842,7 @@ {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927)}, {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)}, {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)}, + {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3054)}, {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3062)}, {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3069)}, {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3082)}, diff -u linux-azure-5.4.0/drivers/net/usb/rndis_host.c linux-azure-5.4.0/drivers/net/usb/rndis_host.c --- linux-azure-5.4.0/drivers/net/usb/rndis_host.c +++ linux-azure-5.4.0/drivers/net/usb/rndis_host.c @@ -609,6 +609,11 @@ USB_CLASS_COMM, 2 /* ACM */, 0x0ff), .driver_info = (unsigned long) &rndis_poll_status_info, }, { + /* Hytera Communications DMR radios' "Radio to PC Network" */ + USB_VENDOR_AND_INTERFACE_INFO(0x238b, + USB_CLASS_COMM, 2 /* ACM */, 0x0ff), + .driver_info = (unsigned long)&rndis_info, +}, { /* RNDIS is MSFT's un-official variant of CDC ACM */ USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff), .driver_info = (unsigned long) &rndis_info, diff -u linux-azure-5.4.0/drivers/net/usb/smsc75xx.c linux-azure-5.4.0/drivers/net/usb/smsc75xx.c --- linux-azure-5.4.0/drivers/net/usb/smsc75xx.c +++ linux-azure-5.4.0/drivers/net/usb/smsc75xx.c @@ -1482,7 +1482,7 @@ ret = smsc75xx_wait_ready(dev, 0); if (ret < 0) { netdev_warn(dev->net, "device not ready in smsc75xx_bind\n"); - goto err; + goto free_pdata; } smsc75xx_init_mac_address(dev); @@ -1491,7 +1491,7 @@ ret = smsc75xx_reset(dev); if (ret < 0) { netdev_warn(dev->net, "smsc75xx_reset error %d\n", ret); - goto err; + goto cancel_work; } dev->net->netdev_ops = &smsc75xx_netdev_ops; @@ -1502,8 +1502,11 @@ dev->net->max_mtu = MAX_SINGLE_PACKET_SIZE; return 0; -err: +cancel_work: + cancel_work_sync(&pdata->set_multicast); +free_pdata: kfree(pdata); + dev->data[0] = 0; return ret; } @@ -1514,7 +1517,6 @@ cancel_work_sync(&pdata->set_multicast); netif_dbg(dev, ifdown, dev->net, "free pdata\n"); kfree(pdata); - pdata = NULL; dev->data[0] = 0; } } diff -u linux-azure-5.4.0/drivers/net/veth.c linux-azure-5.4.0/drivers/net/veth.c --- linux-azure-5.4.0/drivers/net/veth.c +++ linux-azure-5.4.0/drivers/net/veth.c @@ -209,9 +209,10 @@ { /* Write ptr_ring before reading rx_notify_masked */ smp_mb(); - if (!rq->rx_notify_masked) { - rq->rx_notify_masked = true; - napi_schedule(&rq->xdp_napi); + if (!READ_ONCE(rq->rx_notify_masked) && + napi_schedule_prep(&rq->xdp_napi)) { + WRITE_ONCE(rq->rx_notify_masked, true); + __napi_schedule(&rq->xdp_napi); } } @@ -244,7 +245,7 @@ rcu_read_lock(); rcv = rcu_dereference(priv->peer); - if (unlikely(!rcv)) { + if (unlikely(!rcv) || !pskb_may_pull(skb, ETH_HLEN)) { kfree_skb(skb); goto drop; } @@ -254,7 +255,6 @@ if (rxq < rcv->real_num_rx_queues) { rq = &rcv_priv->rq[rxq]; rcv_xdp = rcu_access_pointer(rq->xdp_prog); - skb_record_rx_queue(skb, rxq); } skb_tx_timestamp(skb); @@ -781,8 +781,10 @@ /* Write rx_notify_masked before reading ptr_ring */ smp_store_mb(rq->rx_notify_masked, false); if (unlikely(!__ptr_ring_empty(&rq->xdp_ring))) { - rq->rx_notify_masked = true; - napi_schedule(&rq->xdp_napi); + if (napi_schedule_prep(&rq->xdp_napi)) { + WRITE_ONCE(rq->rx_notify_masked, true); + __napi_schedule(&rq->xdp_napi); + } } } diff -u linux-azure-5.4.0/drivers/net/virtio_net.c linux-azure-5.4.0/drivers/net/virtio_net.c --- linux-azure-5.4.0/drivers/net/virtio_net.c +++ linux-azure-5.4.0/drivers/net/virtio_net.c @@ -63,7 +63,7 @@ VIRTIO_NET_F_GUEST_CSUM }; -#define GUEST_OFFLOAD_LRO_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \ +#define GUEST_OFFLOAD_GRO_HW_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \ (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \ (1ULL << VIRTIO_NET_F_GUEST_ECN) | \ (1ULL << VIRTIO_NET_F_GUEST_UFO)) @@ -195,6 +195,9 @@ /* # of XDP queue pairs currently used by the driver */ u16 xdp_queue_pairs; + /* xdp_queue_pairs may be 0, when xdp is already loaded. So add this. */ + bool xdp_enabled; + /* I like... big packets and I cannot lie! */ bool big_packets; @@ -210,9 +213,15 @@ /* Packet virtio header size */ u8 hdr_len; - /* Work struct for refilling if we run low on memory. */ + /* Work struct for delayed refilling if we run low on memory. */ struct delayed_work refill; + /* Is delayed refill enabled? */ + bool refill_enabled; + + /* The lock to synchronize the access to refill_enabled */ + spinlock_t refill_lock; + /* Work struct for config space updates */ struct work_struct config_work; @@ -316,6 +325,20 @@ return p; } +static void enable_delayed_refill(struct virtnet_info *vi) +{ + spin_lock_bh(&vi->refill_lock); + vi->refill_enabled = true; + spin_unlock_bh(&vi->refill_lock); +} + +static void disable_delayed_refill(struct virtnet_info *vi) +{ + spin_lock_bh(&vi->refill_lock); + vi->refill_enabled = false; + spin_unlock_bh(&vi->refill_lock); +} + static void virtqueue_napi_schedule(struct napi_struct *napi, struct virtqueue *vq) { @@ -485,12 +508,41 @@ return 0; } -static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi) -{ - unsigned int qp; - - qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id(); - return &vi->sq[qp]; +/* when vi->curr_queue_pairs > nr_cpu_ids, the txq/sq is only used for xdp tx on + * the current cpu, so it does not need to be locked. + * + * Here we use marco instead of inline functions because we have to deal with + * three issues at the same time: 1. the choice of sq. 2. judge and execute the + * lock/unlock of txq 3. make sparse happy. It is difficult for two inline + * functions to perfectly solve these three problems at the same time. + */ +#define virtnet_xdp_get_sq(vi) ({ \ + struct netdev_queue *txq; \ + typeof(vi) v = (vi); \ + unsigned int qp; \ + \ + if (v->curr_queue_pairs > nr_cpu_ids) { \ + qp = v->curr_queue_pairs - v->xdp_queue_pairs; \ + qp += smp_processor_id(); \ + txq = netdev_get_tx_queue(v->dev, qp); \ + __netif_tx_acquire(txq); \ + } else { \ + qp = smp_processor_id() % v->curr_queue_pairs; \ + txq = netdev_get_tx_queue(v->dev, qp); \ + __netif_tx_lock(txq, raw_smp_processor_id()); \ + } \ + v->sq + qp; \ +}) + +#define virtnet_xdp_put_sq(vi, q) { \ + struct netdev_queue *txq; \ + typeof(vi) v = (vi); \ + \ + txq = netdev_get_tx_queue(v->dev, (q) - v->sq); \ + if (v->curr_queue_pairs > nr_cpu_ids) \ + __netif_tx_release(txq); \ + else \ + __netif_tx_unlock(txq); \ } static int virtnet_xdp_xmit(struct net_device *dev, @@ -516,7 +568,7 @@ if (!xdp_prog) return -ENXIO; - sq = virtnet_xdp_sq(vi); + sq = virtnet_xdp_get_sq(vi); if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) { ret = -EINVAL; @@ -564,12 +616,13 @@ sq->stats.kicks += kicks; u64_stats_update_end(&sq->stats.syncp); + virtnet_xdp_put_sq(vi, sq); return ret; } static unsigned int virtnet_get_headroom(struct virtnet_info *vi) { - return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0; + return vi->xdp_enabled ? VIRTIO_XDP_HEADROOM : 0; } /* We copy the packet for XDP in the following cases: @@ -1355,8 +1408,12 @@ } if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) { - if (!try_fill_recv(vi, rq, GFP_ATOMIC)) - schedule_delayed_work(&vi->refill, 0); + if (!try_fill_recv(vi, rq, GFP_ATOMIC)) { + spin_lock(&vi->refill_lock); + if (vi->refill_enabled) + schedule_delayed_work(&vi->refill, 0); + spin_unlock(&vi->refill_lock); + } } u64_stats_update_begin(&rq->stats.syncp); @@ -1458,12 +1515,13 @@ xdp_do_flush_map(); if (xdp_xmit & VIRTIO_XDP_TX) { - sq = virtnet_xdp_sq(vi); + sq = virtnet_xdp_get_sq(vi); if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) { u64_stats_update_begin(&sq->stats.syncp); sq->stats.kicks++; u64_stats_update_end(&sq->stats.syncp); } + virtnet_xdp_put_sq(vi, sq); } return received; @@ -1474,6 +1532,8 @@ struct virtnet_info *vi = netdev_priv(dev); int i, err; + enable_delayed_refill(vi); + for (i = 0; i < vi->max_queue_pairs; i++) { if (i < vi->curr_queue_pairs) /* Make sure we have some buffers: if oom use wq. */ @@ -1504,6 +1564,8 @@ struct virtnet_info *vi = sq->vq->vdev->priv; unsigned int index = vq2txq(sq->vq); struct netdev_queue *txq; + int opaque; + bool done; if (unlikely(is_xdp_raw_buffer_queue(vi, index))) { /* We don't need to enable cb for XDP */ @@ -1513,10 +1575,28 @@ txq = netdev_get_tx_queue(vi->dev, index); __netif_tx_lock(txq, raw_smp_processor_id()); + virtqueue_disable_cb(sq->vq); free_old_xmit_skbs(sq, true); + + opaque = virtqueue_enable_cb_prepare(sq->vq); + + done = napi_complete_done(napi, 0); + + if (!done) + virtqueue_disable_cb(sq->vq); + __netif_tx_unlock(txq); - virtqueue_napi_complete(napi, sq->vq, 0); + if (done) { + if (unlikely(virtqueue_poll(sq->vq, opaque))) { + if (napi_schedule_prep(napi)) { + __netif_tx_lock(txq, raw_smp_processor_id()); + virtqueue_disable_cb(sq->vq); + __netif_tx_unlock(txq); + __napi_schedule(napi); + } + } + } if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) netif_tx_wake_queue(txq); @@ -1548,7 +1628,7 @@ if (virtio_net_hdr_from_skb(skb, &hdr->hdr, virtio_is_little_endian(vi->vdev), false, 0)) - BUG(); + return -EPROTO; if (vi->mergeable_rx_bufs) hdr->num_buffers = 0; @@ -1824,6 +1904,8 @@ struct virtnet_info *vi = netdev_priv(dev); int i; + /* Make sure NAPI doesn't schedule refill work */ + disable_delayed_refill(vi); /* Make sure refill_work doesn't re-enable napi! */ cancel_delayed_work_sync(&vi->refill); @@ -2339,7 +2421,6 @@ static void virtnet_freeze_down(struct virtio_device *vdev) { struct virtnet_info *vi = vdev->priv; - int i; /* Make sure no work handler is accessing the device */ flush_work(&vi->config_work); @@ -2347,14 +2428,8 @@ netif_tx_lock_bh(vi->dev); netif_device_detach(vi->dev); netif_tx_unlock_bh(vi->dev); - cancel_delayed_work_sync(&vi->refill); - - if (netif_running(vi->dev)) { - for (i = 0; i < vi->max_queue_pairs; i++) { - napi_disable(&vi->rq[i].napi); - virtnet_napi_tx_disable(&vi->sq[i].napi); - } - } + if (netif_running(vi->dev)) + virtnet_close(vi->dev); } static int init_vqs(struct virtnet_info *vi); @@ -2362,7 +2437,7 @@ static int virtnet_restore_up(struct virtio_device *vdev) { struct virtnet_info *vi = vdev->priv; - int err, i; + int err; err = init_vqs(vi); if (err) @@ -2370,16 +2445,12 @@ virtio_device_ready(vdev); - if (netif_running(vi->dev)) { - for (i = 0; i < vi->curr_queue_pairs; i++) - if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) - schedule_delayed_work(&vi->refill, 0); + enable_delayed_refill(vi); - for (i = 0; i < vi->max_queue_pairs; i++) { - virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); - virtnet_napi_tx_enable(vi, vi->sq[i].vq, - &vi->sq[i].napi); - } + if (netif_running(vi->dev)) { + err = virtnet_open(vi->dev); + if (err) + return err; } netif_tx_lock_bh(vi->dev); @@ -2439,7 +2510,7 @@ virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) || virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) || virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) { - NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO/CSUM, disable LRO/CSUM first"); + NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first"); return -EOPNOTSUPP; } @@ -2460,10 +2531,9 @@ /* XDP requires extra queues for XDP_TX */ if (curr_qp + xdp_qp > vi->max_queue_pairs) { - NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available"); - netdev_warn(dev, "request %i queues but max is %i\n", + netdev_warn(dev, "XDP request %i queues but max is %i. XDP_TX and XDP_REDIRECT will operate in a slower locked tx mode.\n", curr_qp + xdp_qp, vi->max_queue_pairs); - return -ENOMEM; + xdp_qp = 0; } old_prog = rtnl_dereference(vi->rq[0].xdp_prog); @@ -2500,11 +2570,14 @@ vi->xdp_queue_pairs = xdp_qp; if (prog) { + vi->xdp_enabled = true; for (i = 0; i < vi->max_queue_pairs; i++) { rcu_assign_pointer(vi->rq[i].xdp_prog, prog); if (i == 0 && !old_prog) virtnet_clear_guest_offloads(vi); } + } else { + vi->xdp_enabled = false; } for (i = 0; i < vi->max_queue_pairs; i++) { @@ -2588,15 +2661,15 @@ u64 offloads; int err; - if ((dev->features ^ features) & NETIF_F_LRO) { - if (vi->xdp_queue_pairs) + if ((dev->features ^ features) & NETIF_F_GRO_HW) { + if (vi->xdp_enabled) return -EBUSY; - if (features & NETIF_F_LRO) + if (features & NETIF_F_GRO_HW) offloads = vi->guest_offloads_capable; else offloads = vi->guest_offloads_capable & - ~GUEST_OFFLOAD_LRO_MASK; + ~GUEST_OFFLOAD_GRO_HW_MASK; err = virtnet_set_guest_offloads(vi, offloads); if (err) @@ -3072,9 +3145,9 @@ dev->features |= NETIF_F_RXCSUM; if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6)) - dev->features |= NETIF_F_LRO; + dev->features |= NETIF_F_GRO_HW; if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) - dev->hw_features |= NETIF_F_LRO; + dev->hw_features |= NETIF_F_GRO_HW; dev->vlan_features = dev->features; @@ -3097,6 +3170,7 @@ vdev->priv = vi; INIT_WORK(&vi->config_work, virtnet_config_changed_work); + spin_lock_init(&vi->refill_lock); /* If we can receive ANY GSO packets, we must allocate large ones. */ if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) || @@ -3176,14 +3250,20 @@ } } - err = register_netdev(dev); + /* serialize netdev register + virtio_device_ready() with ndo_open() */ + rtnl_lock(); + + err = register_netdevice(dev); if (err) { pr_debug("virtio_net: registering device failed\n"); + rtnl_unlock(); goto free_failover; } virtio_device_ready(vdev); + rtnl_unlock(); + err = virtnet_cpu_notif_add(vi); if (err) { pr_debug("virtio_net: registering cpu notifier failed\n"); @@ -3282,8 +3362,11 @@ virtnet_set_queues(vi, vi->curr_queue_pairs); err = virtnet_cpu_notif_add(vi); - if (err) + if (err) { + virtnet_freeze_down(vdev); + remove_vq_common(vi); return err; + } return 0; } diff -u linux-azure-5.4.0/drivers/net/vmxnet3/vmxnet3_drv.c linux-azure-5.4.0/drivers/net/vmxnet3/vmxnet3_drv.c --- linux-azure-5.4.0/drivers/net/vmxnet3/vmxnet3_drv.c +++ linux-azure-5.4.0/drivers/net/vmxnet3/vmxnet3_drv.c @@ -595,6 +595,7 @@ if (dma_mapping_error(&adapter->pdev->dev, rbi->dma_addr)) { dev_kfree_skb_any(rbi->skb); + rbi->skb = NULL; rq->stats.rx_buf_alloc_failure++; break; } @@ -619,6 +620,7 @@ if (dma_mapping_error(&adapter->pdev->dev, rbi->dma_addr)) { put_page(rbi->page); + rbi->page = NULL; rq->stats.rx_buf_alloc_failure++; break; } @@ -1584,6 +1586,10 @@ u32 i, ring_idx; struct Vmxnet3_RxDesc *rxd; + /* ring has already been cleaned up */ + if (!rq->rx_ring[0].base) + return; + for (ring_idx = 0; ring_idx < 2; ring_idx++) { for (i = 0; i < rq->rx_ring[ring_idx].size; i++) { #ifdef __BIG_ENDIAN_BITFIELD @@ -3634,7 +3640,6 @@ vmxnet3_free_intr_resources(adapter); netif_device_detach(netdev); - netif_tx_stop_all_queues(netdev); /* Create wake-up filters. */ pmConf = adapter->pm_conf; diff -u linux-azure-5.4.0/drivers/net/vrf.c linux-azure-5.4.0/drivers/net/vrf.c --- linux-azure-5.4.0/drivers/net/vrf.c +++ linux-azure-5.4.0/drivers/net/vrf.c @@ -33,6 +33,7 @@ #include #include #include +#include #define DRV_NAME "vrf" #define DRV_VERSION "1.0" @@ -147,12 +148,26 @@ return NETDEV_TX_OK; } +static void vrf_nf_set_untracked(struct sk_buff *skb) +{ + if (skb_get_nfct(skb) == 0) + nf_ct_set(skb, NULL, IP_CT_UNTRACKED); +} + +static void vrf_nf_reset_ct(struct sk_buff *skb) +{ + if (skb_get_nfct(skb) == IP_CT_UNTRACKED) + nf_reset_ct(skb); +} + #if IS_ENABLED(CONFIG_IPV6) static int vrf_ip6_local_out(struct net *net, struct sock *sk, struct sk_buff *skb) { int err; + vrf_nf_reset_ct(skb); + err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk, skb, NULL, skb_dst(skb)->dev, dst_output); @@ -206,6 +221,7 @@ /* strip the ethernet header added for pass through VRF device */ __skb_pull(skb, skb_network_offset(skb)); + memset(IP6CB(skb), 0, sizeof(*IP6CB(skb))); ret = vrf_ip6_local_out(net, skb->sk, skb); if (unlikely(net_xmit_eval(ret))) dev->stats.tx_errors++; @@ -232,6 +248,8 @@ { int err; + vrf_nf_reset_ct(skb); + err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk, skb, NULL, skb_dst(skb)->dev, dst_output); if (likely(err == 1)) @@ -287,6 +305,7 @@ RT_SCOPE_LINK); } + memset(IPCB(skb), 0, sizeof(*IPCB(skb))); ret = vrf_ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb); if (unlikely(net_xmit_eval(ret))) vrf_dev->stats.tx_errors++; @@ -351,8 +370,7 @@ skb_pull(skb, ETH_HLEN); } - /* reset skb device */ - nf_reset_ct(skb); + vrf_nf_reset_ct(skb); } #if IS_ENABLED(CONFIG_IPV6) @@ -366,7 +384,7 @@ struct neighbour *neigh; int ret; - nf_reset_ct(skb); + vrf_nf_reset_ct(skb); skb->protocol = htons(ETH_P_IPV6); skb->dev = dev; @@ -497,6 +515,8 @@ if (rt6_need_strict(&ipv6_hdr(skb)->daddr)) return skb; + vrf_nf_set_untracked(skb); + if (qdisc_tx_is_default(vrf_dev) || IP6CB(skb)->flags & IP6SKB_XFRM_TRANSFORMED) return vrf_ip6_out_direct(vrf_dev, sk, skb); @@ -584,7 +604,7 @@ bool is_v6gw = false; int ret = -EINVAL; - nf_reset_ct(skb); + vrf_nf_reset_ct(skb); /* Be paranoid, rather than too clever. */ if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) { @@ -733,6 +753,8 @@ ipv4_is_lbcast(ip_hdr(skb)->daddr)) return skb; + vrf_nf_set_untracked(skb); + if (qdisc_tx_is_default(vrf_dev) || IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED) return vrf_ip_out_direct(vrf_dev, sk, skb); @@ -908,9 +930,6 @@ dev->flags = IFF_MASTER | IFF_NOARP; - /* MTU is irrelevant for VRF device; set to 64k similar to lo */ - dev->mtu = 64 * 1024; - /* similarly, oper state is irrelevant; set to up to avoid confusion */ dev->operstate = IF_OPER_UP; return 0; @@ -1038,22 +1057,22 @@ int orig_iif = skb->skb_iif; bool need_strict = rt6_need_strict(&ipv6_hdr(skb)->daddr); bool is_ndisc = ipv6_ndisc_frame(skb); - bool is_ll_src; /* loopback, multicast & non-ND link-local traffic; do not push through * packet taps again. Reset pkt_type for upper layers to process skb. - * for packets with lladdr src, however, skip so that the dst can be - * determine at input using original ifindex in the case that daddr - * needs strict + * For strict packets with a source LLA, determine the dst using the + * original ifindex. */ - is_ll_src = ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL; - if (skb->pkt_type == PACKET_LOOPBACK || - (need_strict && !is_ndisc && !is_ll_src)) { + if (skb->pkt_type == PACKET_LOOPBACK || (need_strict && !is_ndisc)) { skb->dev = vrf_dev; skb->skb_iif = vrf_dev->ifindex; IP6CB(skb)->flags |= IP6SKB_L3SLAVE; + if (skb->pkt_type == PACKET_LOOPBACK) skb->pkt_type = PACKET_HOST; + else if (ipv6_addr_type(&ipv6_hdr(skb)->saddr) & IPV6_ADDR_LINKLOCAL) + vrf_ip6_input_dst(skb, vrf_dev, orig_iif); + goto out; } @@ -1343,7 +1362,8 @@ * which breaks networking. */ dev->min_mtu = IPV6_MIN_MTU; - dev->max_mtu = ETH_MAX_MTU; + dev->max_mtu = IP6_MAX_MTU; + dev->mtu = dev->max_mtu; } static int vrf_validate(struct nlattr *tb[], struct nlattr *data[], diff -u linux-azure-5.4.0/drivers/net/vxlan.c linux-azure-5.4.0/drivers/net/vxlan.c --- linux-azure-5.4.0/drivers/net/vxlan.c +++ linux-azure-5.4.0/drivers/net/vxlan.c @@ -841,11 +841,11 @@ rd = kmalloc(sizeof(*rd), GFP_ATOMIC); if (rd == NULL) - return -ENOBUFS; + return -ENOMEM; if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) { kfree(rd); - return -ENOBUFS; + return -ENOMEM; } rd->remote_ip = *ip; @@ -2157,6 +2157,7 @@ struct neighbour *n; struct nd_msg *msg; + rcu_read_lock(); in6_dev = __in6_dev_get(dev); if (!in6_dev) goto out; @@ -2208,6 +2209,7 @@ } out: + rcu_read_unlock(); consume_skb(skb); return NETDEV_TX_OK; } diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ar5523/ar5523.c linux-azure-5.4.0/drivers/net/wireless/ath/ar5523/ar5523.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ar5523/ar5523.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ar5523/ar5523.c @@ -153,6 +153,10 @@ ar5523_err(ar, "Invalid reply to WDCMSG_TARGET_START"); return; } + if (!cmd->odata) { + ar5523_err(ar, "Unexpected WDCMSG_TARGET_START reply"); + return; + } memcpy(cmd->odata, hdr + 1, sizeof(u32)); cmd->olen = sizeof(u32); cmd->res = 0; diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/htt_tx.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/htt_tx.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/htt_tx.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/htt_tx.c @@ -147,6 +147,9 @@ htt->num_pending_tx--; if (htt->num_pending_tx == htt->max_num_pending_tx - 1) ath10k_mac_tx_unlock(htt->ar, ATH10K_TX_PAUSE_Q_FULL); + + if (htt->num_pending_tx == 0) + wake_up(&htt->empty_tx_wq); } int ath10k_htt_tx_inc_pending(struct ath10k_htt *htt) diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/mac.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/mac.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/mac.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/mac.c @@ -857,11 +857,36 @@ return 0; } +static void ath10k_peer_map_cleanup(struct ath10k *ar, struct ath10k_peer *peer) +{ + int peer_id, i; + + lockdep_assert_held(&ar->conf_mutex); + + for_each_set_bit(peer_id, peer->peer_ids, + ATH10K_MAX_NUM_PEER_IDS) { + ar->peer_map[peer_id] = NULL; + } + + /* Double check that peer is properly un-referenced from + * the peer_map + */ + for (i = 0; i < ARRAY_SIZE(ar->peer_map); i++) { + if (ar->peer_map[i] == peer) { + ath10k_warn(ar, "removing stale peer_map entry for %pM (ptr %pK idx %d)\n", + peer->addr, peer, i); + ar->peer_map[i] = NULL; + } + } + + list_del(&peer->list); + kfree(peer); + ar->num_peers--; +} + static void ath10k_peer_cleanup(struct ath10k *ar, u32 vdev_id) { struct ath10k_peer *peer, *tmp; - int peer_id; - int i; lockdep_assert_held(&ar->conf_mutex); @@ -873,25 +898,7 @@ ath10k_warn(ar, "removing stale peer %pM from vdev_id %d\n", peer->addr, vdev_id); - for_each_set_bit(peer_id, peer->peer_ids, - ATH10K_MAX_NUM_PEER_IDS) { - ar->peer_map[peer_id] = NULL; - } - - /* Double check that peer is properly un-referenced from - * the peer_map - */ - for (i = 0; i < ARRAY_SIZE(ar->peer_map); i++) { - if (ar->peer_map[i] == peer) { - ath10k_warn(ar, "removing stale peer_map entry for %pM (ptr %pK idx %d)\n", - peer->addr, peer, i); - ar->peer_map[i] = NULL; - } - } - - list_del(&peer->list); - kfree(peer); - ar->num_peers--; + ath10k_peer_map_cleanup(ar, peer); } spin_unlock_bh(&ar->data_lock); } @@ -986,8 +993,12 @@ ath10k_mac_vif_beacon_free(arvif); if (arvif->beacon_buf) { - dma_free_coherent(ar->dev, IEEE80211_MAX_FRAME_LEN, - arvif->beacon_buf, arvif->beacon_paddr); + if (ar->bus_param.dev_type == ATH10K_DEV_TYPE_HL) + kfree(arvif->beacon_buf); + else + dma_free_coherent(ar->dev, IEEE80211_MAX_FRAME_LEN, + arvif->beacon_buf, + arvif->beacon_paddr); arvif->beacon_buf = NULL; } } @@ -1041,7 +1052,7 @@ arg.channel.min_power = 0; arg.channel.max_power = channel->max_power * 2; arg.channel.max_reg_power = channel->max_reg_power * 2; - arg.channel.max_antenna_gain = channel->max_antenna_gain * 2; + arg.channel.max_antenna_gain = channel->max_antenna_gain; reinit_completion(&ar->vdev_setup_done); reinit_completion(&ar->vdev_delete_done); @@ -1487,7 +1498,7 @@ arg.channel.min_power = 0; arg.channel.max_power = chandef->chan->max_power * 2; arg.channel.max_reg_power = chandef->chan->max_reg_power * 2; - arg.channel.max_antenna_gain = chandef->chan->max_antenna_gain * 2; + arg.channel.max_antenna_gain = chandef->chan->max_antenna_gain; if (arvif->vdev_type == WMI_VDEV_TYPE_AP) { arg.ssid = arvif->u.ap.ssid; @@ -3146,7 +3157,7 @@ ch->min_power = 0; ch->max_power = channel->max_power * 2; ch->max_reg_power = channel->max_reg_power * 2; - ch->max_antenna_gain = channel->max_antenna_gain * 2; + ch->max_antenna_gain = channel->max_antenna_gain; ch->reg_class_id = 0; /* FIXME */ /* FIXME: why use only legacy modes, why not any @@ -5328,10 +5339,25 @@ if (vif->type == NL80211_IFTYPE_ADHOC || vif->type == NL80211_IFTYPE_MESH_POINT || vif->type == NL80211_IFTYPE_AP) { - arvif->beacon_buf = dma_alloc_coherent(ar->dev, - IEEE80211_MAX_FRAME_LEN, - &arvif->beacon_paddr, - GFP_ATOMIC); + if (ar->bus_param.dev_type == ATH10K_DEV_TYPE_HL) { + arvif->beacon_buf = kmalloc(IEEE80211_MAX_FRAME_LEN, + GFP_KERNEL); + + /* Using a kernel pointer in place of a dma_addr_t + * token can lead to undefined behavior if that + * makes it into cache management functions. Use a + * known-invalid address token instead, which + * avoids the warning and makes it easier to catch + * bugs if it does end up getting used. + */ + arvif->beacon_paddr = DMA_MAPPING_ERROR; + } else { + arvif->beacon_buf = + dma_alloc_coherent(ar->dev, + IEEE80211_MAX_FRAME_LEN, + &arvif->beacon_paddr, + GFP_ATOMIC); + } if (!arvif->beacon_buf) { ret = -ENOMEM; ath10k_warn(ar, "failed to allocate beacon buffer: %d\n", @@ -5344,6 +5370,7 @@ if (arvif->nohwcrypt && !test_bit(ATH10K_FLAG_RAW_MODE, &ar->dev_flags)) { + ret = -EINVAL; ath10k_warn(ar, "cryptmode module param needed for sw crypto\n"); goto err; } @@ -5545,8 +5572,12 @@ err: if (arvif->beacon_buf) { - dma_free_coherent(ar->dev, IEEE80211_MAX_FRAME_LEN, - arvif->beacon_buf, arvif->beacon_paddr); + if (ar->bus_param.dev_type == ATH10K_DEV_TYPE_HL) + kfree(arvif->beacon_buf); + else + dma_free_coherent(ar->dev, IEEE80211_MAX_FRAME_LEN, + arvif->beacon_buf, + arvif->beacon_paddr); arvif->beacon_buf = NULL; } @@ -6694,10 +6725,7 @@ /* Clean up the peer object as well since we * must have failed to do this above. */ - list_del(&peer->list); - ar->peer_map[i] = NULL; - kfree(peer); - ar->num_peers--; + ath10k_peer_map_cleanup(ar, peer); } } spin_unlock_bh(&ar->data_lock); diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/pci.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/pci.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/pci.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/pci.c @@ -3647,8 +3647,10 @@ ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS); if (bus_params.chip_id != 0xffffffff) { if (!ath10k_pci_chip_is_supported(pdev->device, - bus_params.chip_id)) + bus_params.chip_id)) { + ret = -ENODEV; goto err_unsupported; + } } } @@ -3659,11 +3661,15 @@ } bus_params.chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS); - if (bus_params.chip_id == 0xffffffff) + if (bus_params.chip_id == 0xffffffff) { + ret = -ENODEV; goto err_unsupported; + } - if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id)) - goto err_free_irq; + if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id)) { + ret = -ENODEV; + goto err_unsupported; + } ret = ath10k_core_register(ar, &bus_params); if (ret) { diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/snoc.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/snoc.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/snoc.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/snoc.c @@ -1192,13 +1192,12 @@ static int ath10k_snoc_request_irq(struct ath10k *ar) { struct ath10k_snoc *ar_snoc = ath10k_snoc_priv(ar); - int irqflags = IRQF_TRIGGER_RISING; int ret, id; for (id = 0; id < CE_COUNT_MAX; id++) { ret = request_irq(ar_snoc->ce_irqs[id].irq_line, - ath10k_snoc_per_engine_handler, - irqflags, ce_name[id], ar); + ath10k_snoc_per_engine_handler, 0, + ce_name[id], ar); if (ret) { ath10k_err(ar, "failed to register IRQ handler for CE %d: %d", diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/txrx.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/txrx.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/txrx.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/txrx.c @@ -80,8 +80,6 @@ ath10k_htt_tx_free_msdu_id(htt, tx_done->msdu_id); ath10k_htt_tx_dec_pending(htt); - if (htt->num_pending_tx == 0) - wake_up(&htt->empty_tx_wq); spin_unlock_bh(&htt->tx_lock); rcu_read_lock(); diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/usb.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/usb.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/usb.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/usb.c @@ -525,7 +525,7 @@ req, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, value, index, buf, - size, 2 * HZ); + size, 2000); if (ret < 0) { ath10k_warn(ar, "Failed to read usb control message: %d\n", @@ -865,6 +865,11 @@ le16_to_cpu(endpoint->wMaxPacketSize), endpoint->bInterval); } + + /* Ignore broken descriptors. */ + if (usb_endpoint_maxp(endpoint) == 0) + continue; + urbcount = 0; pipe_num = diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.c linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.c @@ -2541,6 +2541,10 @@ if (ieee80211_is_beacon(hdr->frame_control)) ath10k_mac_handle_beacon(ar, skb); + if (ieee80211_is_beacon(hdr->frame_control) || + ieee80211_is_probe_resp(hdr->frame_control)) + status->boottime_ns = ktime_get_boottime_ns(); + ath10k_dbg(ar, ATH10K_DBG_MGMT, "event mgmt rx skb %pK len %d ftype %02x stype %02x\n", skb, skb->len, diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.h linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.h --- linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.h +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wmi.h @@ -2045,7 +2045,9 @@ union { __le32 reginfo1; struct { + /* note: power unit is 1 dBm */ u8 antenna_max; + /* note: power unit is 0.5 dBm */ u8 max_tx_power; } __packed; } __packed; @@ -2065,6 +2067,7 @@ u32 min_power; u32 max_power; u32 max_reg_power; + /* note: power unit is 1 dBm */ u32 max_antenna_gain; u32 reg_class_id; enum wmi_phy_mode mode; diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath6kl/wmi.c linux-azure-5.4.0/drivers/net/wireless/ath/ath6kl/wmi.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath6kl/wmi.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath6kl/wmi.c @@ -2510,8 +2510,10 @@ goto free_data_skb; for (index = 0; index < num_pri_streams; index++) { - if (WARN_ON(!data_sync_bufs[index].skb)) + if (WARN_ON(!data_sync_bufs[index].skb)) { + ret = -ENOMEM; goto free_data_skb; + } ep_id = ath6kl_ac2_endpoint_id(wmi->parent_dev, data_sync_bufs[index]. diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c @@ -3351,7 +3351,8 @@ "Found block at %x: code=%d ref=%d length=%d major=%d minor=%d\n", cptr, code, reference, length, major, minor); if ((!AR_SREV_9485(ah) && length >= 1024) || - (AR_SREV_9485(ah) && length > EEPROM_DATA_LEN_9485)) { + (AR_SREV_9485(ah) && length > EEPROM_DATA_LEN_9485) || + (length > cptr)) { ath_dbg(common, EEPROM, "Skipping bad header\n"); cptr -= COMP_HDR_LEN; continue; @@ -5614,7 +5615,7 @@ static u8 ar9003_get_eepmisc(struct ath_hw *ah) { - return ah->eeprom.map4k.baseEepHeader.eepMisc; + return ah->eeprom.ar9300_eep.baseEepHeader.opCapFlags.eepMisc; } const struct eeprom_ops eep_ar9300_ops = { diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hif_usb.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hif_usb.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hif_usb.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hif_usb.c @@ -590,6 +590,13 @@ return; } + if (pkt_len > 2 * MAX_RX_BUF_SIZE) { + dev_err(&hif_dev->udev->dev, + "ath9k_htc: invalid pkt_len (%x)\n", pkt_len); + RX_STAT_INC(skb_dropped); + return; + } + pad_len = 4 - (pkt_len & 0x3); if (pad_len == 4) pad_len = 0; diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_init.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_init.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_init.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_init.c @@ -944,7 +944,6 @@ priv->hw = hw; priv->htc = htc_handle; priv->dev = dev; - htc_handle->drv_priv = priv; SET_IEEE80211_DEV(hw, priv->dev); ret = ath9k_htc_wait_for_target(priv); @@ -965,6 +964,8 @@ if (ret) goto err_init; + htc_handle->drv_priv = priv; + return 0; err_init: diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_main.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_main.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_main.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_main.c @@ -1460,7 +1460,7 @@ } break; case DISABLE_KEY: - ath_key_delete(common, key); + ath_key_delete(common, key->hw_key_idx); break; default: ret = -EINVAL; diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c @@ -1007,0 +1008,8 @@ + if (rxstatus->rs_keyix >= ATH_KEYMAX && + rxstatus->rs_keyix != ATH9K_RXKEYIX_INVALID) { + ath_dbg(common, ANY, + "Invalid keyix, dropping (keyix: %d)\n", + rxstatus->rs_keyix); + goto rx_next; + } + diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_hst.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_hst.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_hst.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc_hst.c @@ -30,6 +30,7 @@ hdr->endpoint_id = epid; hdr->flags = flags; hdr->payload_len = cpu_to_be16(len); + memset(hdr->control, 0, sizeof(hdr->control)); status = target->hif->send(target->hif_dev, endpoint->ul_pipeid, skb); @@ -272,6 +273,10 @@ conn_msg->dl_pipeid = endpoint->dl_pipeid; conn_msg->ul_pipeid = endpoint->ul_pipeid; + /* To prevent infoleak */ + conn_msg->svc_meta_len = 0; + conn_msg->pad = 0; + ret = htc_issue_send(target, skb, skb->len, 0, ENDPOINT0); if (ret) goto err; @@ -359,33 +364,27 @@ } static void ath9k_htc_fw_panic_report(struct htc_target *htc_handle, - struct sk_buff *skb) + struct sk_buff *skb, u32 len) { uint32_t *pattern = (uint32_t *)skb->data; - switch (*pattern) { - case 0x33221199: - { + if (*pattern == 0x33221199 && len >= sizeof(struct htc_panic_bad_vaddr)) { struct htc_panic_bad_vaddr *htc_panic; htc_panic = (struct htc_panic_bad_vaddr *) skb->data; dev_err(htc_handle->dev, "ath: firmware panic! " "exccause: 0x%08x; pc: 0x%08x; badvaddr: 0x%08x.\n", htc_panic->exccause, htc_panic->pc, htc_panic->badvaddr); - break; - } - case 0x33221299: - { + return; + } + if (*pattern == 0x33221299) { struct htc_panic_bad_epid *htc_panic; htc_panic = (struct htc_panic_bad_epid *) skb->data; dev_err(htc_handle->dev, "ath: firmware panic! " "bad epid: 0x%08x\n", htc_panic->epid); - break; - } - default: - dev_err(htc_handle->dev, "ath: unknown panic pattern!\n"); - break; + return; } + dev_err(htc_handle->dev, "ath: unknown panic pattern!\n"); } /* @@ -406,16 +405,26 @@ if (!htc_handle || !skb) return; + /* A valid message requires len >= 8. + * + * sizeof(struct htc_frame_hdr) == 8 + * sizeof(struct htc_ready_msg) == 8 + * sizeof(struct htc_panic_bad_vaddr) == 16 + * sizeof(struct htc_panic_bad_epid) == 8 + */ + if (unlikely(len < sizeof(struct htc_frame_hdr))) + goto invalid; htc_hdr = (struct htc_frame_hdr *) skb->data; epid = htc_hdr->endpoint_id; if (epid == 0x99) { - ath9k_htc_fw_panic_report(htc_handle, skb); + ath9k_htc_fw_panic_report(htc_handle, skb, len); kfree_skb(skb); return; } if (epid < 0 || epid >= ENDPOINT_MAX) { +invalid: if (pipe_id != USB_REG_IN_PIPE) dev_kfree_skb_any(skb); else @@ -427,21 +436,30 @@ /* Handle trailer */ if (htc_hdr->flags & HTC_FLAGS_RECV_TRAILER) { - if (be32_to_cpu(*(__be32 *) skb->data) == 0x00C60000) + if (be32_to_cpu(*(__be32 *) skb->data) == 0x00C60000) { /* Move past the Watchdog pattern */ htc_hdr = (struct htc_frame_hdr *)(skb->data + 4); + len -= 4; + } } /* Get the message ID */ + if (unlikely(len < sizeof(struct htc_frame_hdr) + sizeof(__be16))) + goto invalid; msg_id = (__be16 *) ((void *) htc_hdr + sizeof(struct htc_frame_hdr)); /* Now process HTC messages */ switch (be16_to_cpu(*msg_id)) { case HTC_MSG_READY_ID: + if (unlikely(len < sizeof(struct htc_ready_msg))) + goto invalid; htc_process_target_rdy(htc_handle, htc_hdr); break; case HTC_MSG_CONNECT_SERVICE_RESPONSE_ID: + if (unlikely(len < sizeof(struct htc_frame_hdr) + + sizeof(struct htc_conn_svc_rspmsg))) + goto invalid; htc_process_conn_rsp(htc_handle, htc_hdr); break; default: diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hw.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hw.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hw.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hw.c @@ -1622,7 +1622,6 @@ ath9k_hw_gpio_request_out(ah, i, NULL, AR_GPIO_OUTPUT_MUX_AS_OUTPUT); ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i))); - ath9k_hw_gpio_free(ah, i); } } @@ -2730,14 +2729,17 @@ static void ath9k_hw_gpio_cfg_soc(struct ath_hw *ah, u32 gpio, bool out, const char *label) { + int err; + if (ah->caps.gpio_requested & BIT(gpio)) return; - /* may be requested by BSP, free anyway */ - gpio_free(gpio); - - if (gpio_request_one(gpio, out ? GPIOF_OUT_INIT_LOW : GPIOF_IN, label)) + err = gpio_request_one(gpio, out ? GPIOF_OUT_INIT_LOW : GPIOF_IN, label); + if (err) { + ath_err(ath9k_hw_common(ah), "request GPIO%d failed:%d\n", + gpio, err); return; + } ah->caps.gpio_requested |= BIT(gpio); } diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/main.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/main.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/main.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/main.c @@ -304,6 +304,11 @@ hchan = ah->curchan; } + if (!hchan) { + fastcc = false; + hchan = ath9k_cmn_get_channel(sc->hw, ah, &sc->cur_chan->chandef); + } + if (!ath_prepare_reset(sc)) fastcc = false; @@ -525,8 +530,10 @@ ath9k_debug_sync_cause(sc, sync_cause); status &= ah->imask; /* discard unasked-for bits */ - if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) + if (test_bit(ATH_OP_HW_RESET, &common->op_flags)) { + ath9k_hw_kill_interrupts(sc->sc_ah); return IRQ_HANDLED; + } /* * If there are no status bits set, then this interrupt was not @@ -818,12 +825,80 @@ ieee80211_free_txskb(hw, skb); } +static bool ath9k_txq_list_has_key(struct list_head *txq_list, u32 keyix) +{ + struct ath_buf *bf; + struct ieee80211_tx_info *txinfo; + struct ath_frame_info *fi; + + list_for_each_entry(bf, txq_list, list) { + if (bf->bf_state.stale || !bf->bf_mpdu) + continue; + + txinfo = IEEE80211_SKB_CB(bf->bf_mpdu); + fi = (struct ath_frame_info *)&txinfo->status.status_driver_data[0]; + if (fi->keyix == keyix) + return true; + } + + return false; +} + +static bool ath9k_txq_has_key(struct ath_softc *sc, u32 keyix) +{ + struct ath_hw *ah = sc->sc_ah; + int i; + struct ath_txq *txq; + bool key_in_use = false; + + for (i = 0; !key_in_use && i < ATH9K_NUM_TX_QUEUES; i++) { + if (!ATH_TXQ_SETUP(sc, i)) + continue; + txq = &sc->tx.txq[i]; + if (!txq->axq_depth) + continue; + if (!ath9k_hw_numtxpending(ah, txq->axq_qnum)) + continue; + + ath_txq_lock(sc, txq); + key_in_use = ath9k_txq_list_has_key(&txq->axq_q, keyix); + if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { + int idx = txq->txq_tailidx; + + while (!key_in_use && + !list_empty(&txq->txq_fifo[idx])) { + key_in_use = ath9k_txq_list_has_key( + &txq->txq_fifo[idx], keyix); + INCR(idx, ATH_TXFIFO_DEPTH); + } + } + ath_txq_unlock(sc, txq); + } + + return key_in_use; +} + +static void ath9k_pending_key_del(struct ath_softc *sc, u8 keyix) +{ + struct ath_hw *ah = sc->sc_ah; + struct ath_common *common = ath9k_hw_common(ah); + + if (!test_bit(keyix, ah->pending_del_keymap) || + ath9k_txq_has_key(sc, keyix)) + return; + + /* No more TXQ frames point to this key cache entry, so delete it. */ + clear_bit(keyix, ah->pending_del_keymap); + ath_key_delete(common, keyix); +} + static void ath9k_stop(struct ieee80211_hw *hw) { struct ath_softc *sc = hw->priv; struct ath_hw *ah = sc->sc_ah; struct ath_common *common = ath9k_hw_common(ah); bool prev_idle; + int i; ath9k_deinit_channel_context(sc); @@ -891,6 +966,14 @@ spin_unlock_bh(&sc->sc_pcu_lock); + for (i = 0; i < ATH_KEYMAX; i++) + ath9k_pending_key_del(sc, i); + + /* Clear key cache entries explicitly to get rid of any potentially + * remaining keys. + */ + ath9k_cmn_init_crypto(sc->sc_ah); + ath9k_ps_restore(sc); sc->ps_idle = prev_idle; @@ -1536,12 +1619,11 @@ { struct ath_common *common = ath9k_hw_common(sc->sc_ah); struct ath_node *an = (struct ath_node *) sta->drv_priv; - struct ieee80211_key_conf ps_key = { .hw_key_idx = an->ps_key }; if (!an->ps_key) return; - ath_key_delete(common, &ps_key); + ath_key_delete(common, an->ps_key); an->ps_key = 0; an->key_idx[0] = 0; } @@ -1703,6 +1785,12 @@ if (sta) an = (struct ath_node *)sta->drv_priv; + /* Delete pending key cache entries if no more frames are pointing to + * them in TXQs. + */ + for (i = 0; i < ATH_KEYMAX; i++) + ath9k_pending_key_del(sc, i); + switch (cmd) { case SET_KEY: if (sta) @@ -1732,7 +1820,15 @@ } break; case DISABLE_KEY: - ath_key_delete(common, key); + if (ath9k_txq_has_key(sc, key->hw_key_idx)) { + /* Delay key cache entry deletion until there are no + * remaining TXQ frames pointing to this entry. + */ + set_bit(key->hw_key_idx, sc->sc_ah->pending_del_keymap); + ath_hw_keysetmac(common, key->hw_key_idx, NULL); + } else { + ath_key_delete(common, key->hw_key_idx); + } if (an) { for (i = 0; i < ARRAY_SIZE(an->key_idx); i++) { if (an->key_idx[i] != key->hw_key_idx) diff -u linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/xmit.c linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/xmit.c --- linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/xmit.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/xmit.c @@ -141,8 +141,8 @@ { struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); BUILD_BUG_ON(sizeof(struct ath_frame_info) > - sizeof(tx_info->rate_driver_data)); - return (struct ath_frame_info *) &tx_info->rate_driver_data[0]; + sizeof(tx_info->status.status_driver_data)); + return (struct ath_frame_info *) &tx_info->status.status_driver_data[0]; } static void ath_send_bar(struct ath_atx_tid *tid, u16 seqno) @@ -2498,6 +2498,16 @@ spin_unlock_irqrestore(&sc->tx.txbuflock, flags); } +static void ath_clear_tx_status(struct ieee80211_tx_info *tx_info) +{ + void *ptr = &tx_info->status; + + memset(ptr + sizeof(tx_info->status.rates), 0, + sizeof(tx_info->status) - + sizeof(tx_info->status.rates) - + sizeof(tx_info->status.status_driver_data)); +} + static void ath_tx_rc_status(struct ath_softc *sc, struct ath_buf *bf, struct ath_tx_status *ts, int nframes, int nbad, int txok) @@ -2509,6 +2519,8 @@ struct ath_hw *ah = sc->sc_ah; u8 i, tx_rateindex; + ath_clear_tx_status(tx_info); + if (txok) tx_info->status.ack_signal = ts->ts_rssi; @@ -2523,6 +2535,13 @@ tx_info->status.ampdu_len = nframes; tx_info->status.ampdu_ack_len = nframes - nbad; + tx_info->status.rates[tx_rateindex].count = ts->ts_longretry + 1; + + for (i = tx_rateindex + 1; i < hw->max_rates; i++) { + tx_info->status.rates[i].count = 0; + tx_info->status.rates[i].idx = -1; + } + if ((ts->ts_status & ATH9K_TXERR_FILT) == 0 && (tx_info->flags & IEEE80211_TX_CTL_NO_ACK) == 0) { /* @@ -2544,16 +2563,6 @@ tx_info->status.rates[tx_rateindex].count = hw->max_rate_tries; } - - for (i = tx_rateindex + 1; i < hw->max_rates; i++) { - tx_info->status.rates[i].count = 0; - tx_info->status.rates[i].idx = -1; - } - - tx_info->status.rates[tx_rateindex].count = ts->ts_longretry + 1; - - /* we report airtime in ath_tx_count_airtime(), don't report twice */ - tx_info->status.tx_time = 0; } static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq) diff -u linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/main.c linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/main.c --- linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/main.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/main.c @@ -1916,7 +1916,7 @@ WARN_ON(!(tx_streams >= 1 && tx_streams <= IEEE80211_HT_MCS_TX_MAX_STREAMS)); - tx_params = (tx_streams - 1) << + tx_params |= (tx_streams - 1) << IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; carl9170_band_2GHz.ht_cap.mcs.tx_params |= tx_params; diff -u linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/main.c linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/main.c --- linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/main.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/main.c @@ -134,7 +134,9 @@ .cap = IEEE80211_HT_CAP_GRN_FLD | IEEE80211_HT_CAP_SGI_20 | IEEE80211_HT_CAP_DSSSCCK40 | - IEEE80211_HT_CAP_LSIG_TXOP_PROT, + IEEE80211_HT_CAP_LSIG_TXOP_PROT | + IEEE80211_HT_CAP_SGI_40 | + IEEE80211_HT_CAP_SUP_WIDTH_20_40, .ht_supported = true, .ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K, .ampdu_density = IEEE80211_HT_MPDU_DENSITY_16, @@ -293,23 +295,16 @@ goto out_free_dxe_pool; } - wcn->hal_buf = kmalloc(WCN36XX_HAL_BUF_SIZE, GFP_KERNEL); - if (!wcn->hal_buf) { - wcn36xx_err("Failed to allocate smd buf\n"); - ret = -ENOMEM; - goto out_free_dxe_ctl; - } - ret = wcn36xx_smd_load_nv(wcn); if (ret) { wcn36xx_err("Failed to push NV to chip\n"); - goto out_free_smd_buf; + goto out_free_dxe_ctl; } ret = wcn36xx_smd_start(wcn); if (ret) { wcn36xx_err("Failed to start chip\n"); - goto out_free_smd_buf; + goto out_free_dxe_ctl; } if (!wcn36xx_is_fw_version(wcn, 1, 2, 2, 24)) { @@ -336,8 +331,6 @@ out_smd_stop: wcn36xx_smd_stop(wcn); -out_free_smd_buf: - kfree(wcn->hal_buf); out_free_dxe_ctl: wcn36xx_dxe_free_ctl_blks(wcn); out_free_dxe_pool: @@ -374,8 +367,6 @@ wcn36xx_dxe_free_mem_pools(wcn); wcn36xx_dxe_free_ctl_blks(wcn); - - kfree(wcn->hal_buf); } static int wcn36xx_config(struct ieee80211_hw *hw, u32 changed) @@ -1331,6 +1322,12 @@ mutex_init(&wcn->hal_mutex); mutex_init(&wcn->scan_lock); + wcn->hal_buf = devm_kmalloc(wcn->dev, WCN36XX_HAL_BUF_SIZE, GFP_KERNEL); + if (!wcn->hal_buf) { + ret = -ENOMEM; + goto out_wq; + } + ret = dma_set_mask_and_coherent(wcn->dev, DMA_BIT_MASK(32)); if (ret < 0) { wcn36xx_err("failed to set DMA mask: %d\n", ret); diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/b43/phy_n.c linux-azure-5.4.0/drivers/net/wireless/broadcom/b43/phy_n.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/b43/phy_n.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/b43/phy_n.c @@ -582,7 +582,7 @@ u16 data[4]; s16 gain[2]; u16 minmax[2]; - static const u16 lna_gain[4] = { -2, 10, 19, 25 }; + static const s16 lna_gain[4] = { -2, 10, 19, 25 }; if (nphy->hang_avoid) b43_nphy_stay_in_carrier_search(dev, 1); diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c @@ -2612,8 +2612,9 @@ struct brcmf_sta_info_le sta_info_le; u32 sta_flags; u32 is_tdls_peer; - s32 total_rssi; - s32 count_rssi; + s32 total_rssi_avg = 0; + s32 total_rssi = 0; + s32 count_rssi = 0; int rssi; u32 i; @@ -2679,25 +2680,27 @@ sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_BYTES); sinfo->rx_bytes = le64_to_cpu(sta_info_le.rx_tot_bytes); } - total_rssi = 0; - count_rssi = 0; for (i = 0; i < BRCMF_ANT_MAX; i++) { - if (sta_info_le.rssi[i]) { - sinfo->chain_signal_avg[count_rssi] = - sta_info_le.rssi[i]; - sinfo->chain_signal[count_rssi] = - sta_info_le.rssi[i]; - total_rssi += sta_info_le.rssi[i]; - count_rssi++; - } + if (sta_info_le.rssi[i] == 0 || + sta_info_le.rx_lastpkt_rssi[i] == 0) + continue; + sinfo->chains |= BIT(count_rssi); + sinfo->chain_signal[count_rssi] = + sta_info_le.rx_lastpkt_rssi[i]; + sinfo->chain_signal_avg[count_rssi] = + sta_info_le.rssi[i]; + total_rssi += sta_info_le.rx_lastpkt_rssi[i]; + total_rssi_avg += sta_info_le.rssi[i]; + count_rssi++; } if (count_rssi) { - sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL); - sinfo->chains = count_rssi; - sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL); - total_rssi /= count_rssi; - sinfo->signal = total_rssi; + sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG); + sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL); + sinfo->filled |= + BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG); + sinfo->signal = total_rssi / count_rssi; + sinfo->signal_avg = total_rssi_avg / count_rssi; } else if (test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state)) { memset(&scb_val, 0, sizeof(scb_val)); diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c @@ -290,6 +290,7 @@ struct brcmf_pub *drvr = ifp->drvr; struct ethhdr *eh; int head_delta; + unsigned int tx_bytes = skb->len; brcmf_dbg(DATA, "Enter, bsscfgidx=%d\n", ifp->bsscfgidx); @@ -361,7 +362,7 @@ ndev->stats.tx_dropped++; } else { ndev->stats.tx_packets++; - ndev->stats.tx_bytes += skb->len; + ndev->stats.tx_bytes += tx_bytes; } /* Return ok: we always eat the packet */ diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c @@ -76,6 +76,16 @@ .driver_data = (void *)&acepc_t8_data, }, { + /* Cyberbook T116 rugged tablet */ + .matches = { + DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"), + DMI_EXACT_MATCH(DMI_BOARD_NAME, "Cherry Trail CR"), + DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "20170531"), + }, + /* The factory image nvram file is identical to the ACEPC T8 one */ + .driver_data = (void *)&acepc_t8_data, + }, + { /* Match for the GPDwin which unfortunately uses somewhat * generic dmi strings, which is why we test for 4 strings. * Comparing against 23 other byt/cht boards, board_vendor diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c @@ -228,6 +228,10 @@ brcmf_fweh_event_name(event->code), event->code, event->emsg.ifidx, event->emsg.bsscfgidx, event->emsg.addr); + if (event->emsg.bsscfgidx >= BRCMF_MAX_IFS) { + bphy_err(drvr, "invalid bsscfg index: %u\n", event->emsg.bsscfgidx); + goto event_free; + } /* convert event message */ emsg_be = &event->emsg; diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -445,47 +446,6 @@ static void -brcmf_pcie_copy_mem_todev(struct brcmf_pciedev_info *devinfo, u32 mem_offset, - void *srcaddr, u32 len) -{ - void __iomem *address = devinfo->tcm + mem_offset; - __le32 *src32; - __le16 *src16; - u8 *src8; - - if (((ulong)address & 4) || ((ulong)srcaddr & 4) || (len & 4)) { - if (((ulong)address & 2) || ((ulong)srcaddr & 2) || (len & 2)) { - src8 = (u8 *)srcaddr; - while (len) { - iowrite8(*src8, address); - address++; - src8++; - len--; - } - } else { - len = len / 2; - src16 = (__le16 *)srcaddr; - while (len) { - iowrite16(le16_to_cpu(*src16), address); - address += 2; - src16++; - len--; - } - } - } else { - len = len / 4; - src32 = (__le32 *)srcaddr; - while (len) { - iowrite32(le32_to_cpu(*src32), address); - address += 4; - src32++; - len--; - } - } -} - - -static void brcmf_pcie_copy_dev_tomem(struct brcmf_pciedev_info *devinfo, u32 mem_offset, void *dstaddr, u32 len) { @@ -1346,6 +1306,18 @@ { } +static int brcmf_pcie_preinit(struct device *dev) +{ + struct brcmf_bus *bus_if = dev_get_drvdata(dev); + struct brcmf_pciedev *buspub = bus_if->bus_priv.pcie; + + brcmf_dbg(PCIE, "Enter\n"); + + brcmf_pcie_intr_enable(buspub->devinfo); + brcmf_pcie_hostready(buspub->devinfo); + + return 0; +} static int brcmf_pcie_tx(struct device *dev, struct sk_buff *skb) { @@ -1454,6 +1426,7 @@ } static const struct brcmf_bus_ops brcmf_pcie_bus_ops = { + .preinit = brcmf_pcie_preinit, .txdata = brcmf_pcie_tx, .stop = brcmf_pcie_down, .txctl = brcmf_pcie_tx_ctlpkt, @@ -1561,8 +1534,8 @@ return err; brcmf_dbg(PCIE, "Download FW %s\n", devinfo->fw_name); - brcmf_pcie_copy_mem_todev(devinfo, devinfo->ci->rambase, - (void *)fw->data, fw->size); + memcpy_toio(devinfo->tcm + devinfo->ci->rambase, + (void *)fw->data, fw->size); resetintr = get_unaligned_le32(fw->data); release_firmware(fw); @@ -1576,7 +1549,7 @@ brcmf_dbg(PCIE, "Download NVRAM %s\n", devinfo->nvram_name); address = devinfo->ci->rambase + devinfo->ci->ramsize - nvram_len; - brcmf_pcie_copy_mem_todev(devinfo, address, nvram, nvram_len); + memcpy_toio(devinfo->tcm + address, nvram, nvram_len); brcmf_fw_nvram_free(nvram); } else { brcmf_dbg(PCIE, "No matching NVRAM file found %s\n", @@ -1775,6 +1748,8 @@ ret = brcmf_chip_get_raminfo(devinfo->ci); if (ret) { brcmf_err(bus, "Failed to get RAM info\n"); + release_firmware(fw); + brcmf_fw_nvram_free(nvram); goto fail; } @@ -1824,9 +1799,6 @@ init_waitqueue_head(&devinfo->mbdata_resp_wait); - brcmf_pcie_intr_enable(devinfo); - brcmf_pcie_hostready(devinfo); - ret = brcmf_attach(&devinfo->pdev->dev); if (ret) goto fail; @@ -2073,7 +2045,7 @@ err = brcmf_pcie_probe(pdev, NULL); if (err) - brcmf_err(bus, "probe after resume failed, err=%d\n", err); + __brcmf_err(NULL, __func__, "probe after resume failed, err=%d\n", err); return err; } diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c @@ -550,7 +550,7 @@ BRCMF_SDIO_FT_SUB, }; -#define SDIOD_DRVSTR_KEY(chip, pmu) (((chip) << 16) | (pmu)) +#define SDIOD_DRVSTR_KEY(chip, pmu) (((unsigned int)(chip) << 16) | (pmu)) /* SDIO Pad drive strength to select value mappings */ struct sdiod_drive_str { diff -u linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c --- linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c @@ -1222,6 +1222,7 @@ { struct brcms_info *wl; struct ieee80211_hw *hw; + int ret; dev_info(&pdev->dev, "mfg %x core %x rev %d class %d irq %d\n", pdev->id.manuf, pdev->id.id, pdev->id.rev, pdev->id.class, @@ -1246,11 +1247,16 @@ wl = brcms_attach(pdev); if (!wl) { pr_err("%s: brcms_attach failed!\n", __func__); - return -ENODEV; + ret = -ENODEV; + goto err_free_ieee80211; } brcms_led_register(wl); return 0; + +err_free_ieee80211: + ieee80211_free_hw(hw); + return ret; } static int brcms_suspend(struct bcma_device *pdev) diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlegacy/4965-rs.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlegacy/4965-rs.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlegacy/4965-rs.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlegacy/4965-rs.c @@ -2403,7 +2403,7 @@ /* Repeat initial/next rate. * For legacy IL_NUMBER_TRY == 1, this loop will not execute. * For HT IL_HT_NUMBER_TRY == 3, this executes twice. */ - while (repeat_rate > 0 && idx < LINK_QUAL_MAX_RETRY_NUM) { + while (repeat_rate > 0 && idx < (LINK_QUAL_MAX_RETRY_NUM - 1)) { if (is_legacy(tbl_type.lq_type)) { if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE) ant_toggle_cnt++; diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-drv.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-drv.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-drv.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-drv.c @@ -183,6 +183,9 @@ for (i = 0; i < IWL_UCODE_TYPE_MAX; i++) iwl_free_fw_img(drv, drv->fw.img + i); + + /* clear the data for the aborted load case */ + memset(&drv->fw, 0, sizeof(drv->fw)); } static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc, @@ -1276,23 +1279,31 @@ const struct iwl_op_mode_ops *ops = op->ops; struct dentry *dbgfs_dir = NULL; struct iwl_op_mode *op_mode = NULL; + int retry, max_retry = !!iwlwifi_mod_params.fw_restart * IWL_MAX_INIT_RETRY; + + for (retry = 0; retry <= max_retry; retry++) { #ifdef CONFIG_IWLWIFI_DEBUGFS - drv->dbgfs_op_mode = debugfs_create_dir(op->name, - drv->dbgfs_drv); - dbgfs_dir = drv->dbgfs_op_mode; + drv->dbgfs_op_mode = debugfs_create_dir(op->name, + drv->dbgfs_drv); + dbgfs_dir = drv->dbgfs_op_mode; #endif - op_mode = ops->start(drv->trans, drv->trans->cfg, &drv->fw, dbgfs_dir); + op_mode = ops->start(drv->trans, drv->trans->cfg, + &drv->fw, dbgfs_dir); + + if (op_mode) + return op_mode; + + IWL_ERR(drv, "retry init count %d\n", retry); #ifdef CONFIG_IWLWIFI_DEBUGFS - if (!op_mode) { debugfs_remove_recursive(drv->dbgfs_op_mode); drv->dbgfs_op_mode = NULL; - } #endif + } - return op_mode; + return NULL; } static void _iwl_op_mode_stop(struct iwl_drv *drv) @@ -1330,6 +1341,7 @@ int i; bool load_module = false; bool usniffer_images = false; + bool failure = true; fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH; fw->ucode_capa.standard_phy_calibration_size = @@ -1587,15 +1599,9 @@ * else from proceeding if the module fails to load * or hangs loading. */ - if (load_module) { + if (load_module) request_module("%s", op->name); -#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR - if (err) - IWL_ERR(drv, - "failed to load module %s (error %d), is dynamic loading enabled?\n", - op->name, err); -#endif - } + failure = false; goto free; try_again: @@ -1610,7 +1616,12 @@ out_unbind: complete(&drv->request_firmware_complete); device_release_driver(drv->trans->dev); + /* drv has just been freed by the release */ + failure = false; free: + if (failure) + iwl_dealloc_ucode(drv); + if (pieces) { for (i = 0; i < ARRAY_SIZE(pieces->img); i++) kfree(pieces->img[i].sec); diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c @@ -519,8 +519,7 @@ .has_he = true, .he_cap_elem = { .mac_cap_info[0] = - IEEE80211_HE_MAC_CAP0_HTC_HE | - IEEE80211_HE_MAC_CAP0_TWT_REQ, + IEEE80211_HE_MAC_CAP0_HTC_HE, .mac_cap_info[1] = IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US | IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8, diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c @@ -1417,8 +1417,10 @@ while (!sband && i < NUM_NL80211_BANDS) sband = mvm->hw->wiphy->bands[i++]; - if (WARN_ON_ONCE(!sband)) + if (WARN_ON_ONCE(!sband)) { + ret = -ENODEV; goto error; + } chan = &sband->channels[0]; diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -71,6 +71,7 @@ #include #include +#include "iwl-drv.h" #include "iwl-op-mode.h" #include "iwl-io.h" #include "mvm.h" @@ -342,7 +343,6 @@ [0] = WLAN_EXT_CAPA1_EXT_CHANNEL_SWITCHING, [2] = WLAN_EXT_CAPA3_MULTI_BSSID_SUPPORT, [7] = WLAN_EXT_CAPA8_OPMODE_NOTIF, - [9] = WLAN_EXT_CAPA10_TWT_REQUESTER_SUPPORT, }; const static struct wiphy_iftype_ext_capab he_iftypes_ext_capa[] = { @@ -1129,9 +1129,30 @@ { struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); int ret; + int retry, max_retry = 0; mutex_lock(&mvm->mutex); - ret = __iwl_mvm_mac_start(mvm); + + /* we are starting the mac not in error flow, and restart is enabled */ + if (!test_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, &mvm->status) && + iwlwifi_mod_params.fw_restart) { + max_retry = IWL_MAX_INIT_RETRY; + /* + * This will prevent mac80211 recovery flows to trigger during + * init failures + */ + set_bit(IWL_MVM_STATUS_STARTING, &mvm->status); + } + + for (retry = 0; retry <= max_retry; retry++) { + ret = __iwl_mvm_mac_start(mvm); + if (!ret) + break; + + IWL_ERR(mvm, "mac start retry %d\n", retry); + } + clear_bit(IWL_MVM_STATUS_STARTING, &mvm->status); + mutex_unlock(&mvm->mutex); return ret; @@ -1674,6 +1695,7 @@ struct iwl_mvm_mc_iter_data iter_data = { .mvm = mvm, }; + int ret; lockdep_assert_held(&mvm->mutex); @@ -1683,6 +1705,22 @@ ieee80211_iterate_active_interfaces_atomic( mvm->hw, IEEE80211_IFACE_ITER_NORMAL, iwl_mvm_mc_iface_iterator, &iter_data); + + /* + * Send a (synchronous) ech command so that we wait for the + * multiple asynchronous MCAST_FILTER_CMD commands sent by + * the interface iterator. Otherwise, we might get here over + * and over again (by userspace just sending a lot of these) + * and the CPU can send them faster than the firmware can + * process them. + * Note that the CPU is still faster - but with this we'll + * actually send fewer commands overall because the CPU will + * not schedule the work in mac80211 as frequently if it's + * still running when rescheduled (possibly multiple times). + */ + ret = iwl_mvm_send_cmd_pdu(mvm, ECHO_CMD, 0, 0, NULL); + if (ret) + IWL_ERR(mvm, "Failed to synchronize multicast groups update\n"); } static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw, @@ -2970,16 +3008,20 @@ void *_data) { struct iwl_mvm_he_obss_narrow_bw_ru_data *data = _data; + const struct cfg80211_bss_ies *ies; const struct element *elem; - elem = cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY, bss->ies->data, - bss->ies->len); + rcu_read_lock(); + ies = rcu_dereference(bss->ies); + elem = cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY, ies->data, + ies->len); if (!elem || elem->datalen < 10 || !(elem->data[10] & WLAN_EXT_CAPA10_OBSS_NARROW_BW_RU_TOLERANCE_SUPPORT)) { data->tolerated = false; } + rcu_read_unlock(); } static void iwl_mvm_check_he_obss_narrow_bw_ru(struct ieee80211_hw *hw, @@ -3725,6 +3767,7 @@ struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); struct cfg80211_chan_def chandef; struct iwl_mvm_phy_ctxt *phy_ctxt; + bool band_change_removal; int ret, i; IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value, @@ -3794,19 +3837,30 @@ cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT); /* - * Change the PHY context configuration as it is currently referenced - * only by the P2P Device MAC + * Check if the remain-on-channel is on a different band and that + * requires context removal, see iwl_mvm_phy_ctxt_changed(). If + * so, we'll need to release and then re-configure here, since we + * must not remove a PHY context that's part of a binding. */ - if (mvmvif->phy_ctxt->ref == 1) { + band_change_removal = + fw_has_capa(&mvm->fw->ucode_capa, + IWL_UCODE_TLV_CAPA_BINDING_CDB_SUPPORT) && + mvmvif->phy_ctxt->channel->band != chandef.chan->band; + + if (mvmvif->phy_ctxt->ref == 1 && !band_change_removal) { + /* + * Change the PHY context configuration as it is currently + * referenced only by the P2P Device MAC (and we can modify it) + */ ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt, &chandef, 1, 1); if (ret) goto out_unlock; } else { /* - * The PHY context is shared with other MACs. Need to remove the - * P2P Device from the binding, allocate an new PHY context and - * create a new binding + * The PHY context is shared with other MACs (or we're trying to + * switch bands), so remove the P2P Device from the binding, + * allocate an new PHY context and create a new binding. */ phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm); if (!phy_ctxt) { diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h @@ -1167,6 +1167,8 @@ * @IWL_MVM_STATUS_ROC_AUX_RUNNING: AUX remain-on-channel is running * @IWL_MVM_STATUS_FIRMWARE_RUNNING: firmware is running * @IWL_MVM_STATUS_NEED_FLUSH_P2P: need to flush P2P bcast STA + * @IWL_MVM_STATUS_STARTING: starting mac, + * used to disable restart flow while in STARTING state */ enum iwl_mvm_status { IWL_MVM_STATUS_HW_RFKILL, @@ -1177,6 +1179,7 @@ IWL_MVM_STATUS_ROC_AUX_RUNNING, IWL_MVM_STATUS_FIRMWARE_RUNNING, IWL_MVM_STATUS_NEED_FLUSH_P2P, + IWL_MVM_STATUS_STARTING, }; /* Keep track of completed init configuration */ diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/ops.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/ops.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/ops.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/ops.c @@ -687,10 +687,26 @@ mvm->fw_restart = iwlwifi_mod_params.fw_restart ? -1 : 0; - mvm->aux_queue = IWL_MVM_DQA_AUX_QUEUE; - mvm->snif_queue = IWL_MVM_DQA_INJECT_MONITOR_QUEUE; - mvm->probe_queue = IWL_MVM_DQA_AP_PROBE_RESP_QUEUE; - mvm->p2p_dev_queue = IWL_MVM_DQA_P2P_DEVICE_QUEUE; + if (iwl_mvm_has_new_tx_api(mvm)) { + /* + * If we have the new TX/queue allocation API initialize them + * all to invalid numbers. We'll rewrite the ones that we need + * later, but that doesn't happen for all of them all of the + * time (e.g. P2P Device is optional), and if a dynamic queue + * ends up getting number 2 (IWL_MVM_DQA_P2P_DEVICE_QUEUE) then + * iwl_mvm_is_static_queue() erroneously returns true, and we + * might have things getting stuck. + */ + mvm->aux_queue = IWL_MVM_INVALID_QUEUE; + mvm->snif_queue = IWL_MVM_INVALID_QUEUE; + mvm->probe_queue = IWL_MVM_INVALID_QUEUE; + mvm->p2p_dev_queue = IWL_MVM_INVALID_QUEUE; + } else { + mvm->aux_queue = IWL_MVM_DQA_AUX_QUEUE; + mvm->snif_queue = IWL_MVM_DQA_INJECT_MONITOR_QUEUE; + mvm->probe_queue = IWL_MVM_DQA_AP_PROBE_RESP_QUEUE; + mvm->p2p_dev_queue = IWL_MVM_DQA_P2P_DEVICE_QUEUE; + } mvm->sf_state = SF_UNINIT; if (iwl_mvm_has_unified_ucode(mvm)) @@ -1272,6 +1288,9 @@ */ if (!mvm->fw_restart && fw_error) { iwl_fw_error_collect(&mvm->fwrt); + } else if (test_bit(IWL_MVM_STATUS_STARTING, + &mvm->status)) { + IWL_ERR(mvm, "Starting mac, retry will be triggered anyway\n"); } else if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { struct iwl_mvm_reprobe *reprobe; diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c @@ -177,12 +177,39 @@ struct iwl_rx_mpdu_desc *desc = (void *)pkt->data; unsigned int headlen, fraglen, pad_len = 0; unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control); + u8 mic_crc_len = u8_get_bits(desc->mac_flags1, + IWL_RX_MPDU_MFLG1_MIC_CRC_LEN_MASK) << 1; if (desc->mac_flags2 & IWL_RX_MPDU_MFLG2_PAD) { len -= 2; pad_len = 2; } + /* + * For non monitor interface strip the bytes the RADA might not have + * removed. As monitor interface cannot exist with other interfaces + * this removal is safe. + */ + if (mic_crc_len && !ieee80211_hw_check(mvm->hw, RX_INCLUDES_FCS)) { + u32 pkt_flags = le32_to_cpu(pkt->len_n_flags); + + /* + * If RADA was not enabled then decryption was not performed so + * the MIC cannot be removed. + */ + if (!(pkt_flags & FH_RSCSR_RADA_EN)) { + if (WARN_ON(crypt_len > mic_crc_len)) + return -EINVAL; + + mic_crc_len -= crypt_len; + } + + if (WARN_ON(mic_crc_len > len)) + return -EINVAL; + + len -= mic_crc_len; + } + /* If frame is small enough to fit in skb->head, pull it completely. * If not, only pull ieee80211_hdr (including crypto if present, and * an additional 8 bytes for SNAP/ethertype, see below) so that diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c @@ -1700,7 +1700,7 @@ return -EIO; } -#define SCAN_TIMEOUT 20000 +#define SCAN_TIMEOUT 30000 void iwl_mvm_scan_timeout_wk(struct work_struct *work) { diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/sta.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/sta.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/sta.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/sta.c @@ -346,8 +346,9 @@ } static int iwl_mvm_disable_txq(struct iwl_mvm *mvm, struct ieee80211_sta *sta, - int queue, u8 tid, u8 flags) + u16 *queueptr, u8 tid, u8 flags) { + int queue = *queueptr; struct iwl_scd_txq_cfg_cmd cmd = { .scd_queue = queue, .action = SCD_CFG_DISABLE_QUEUE, @@ -356,6 +357,7 @@ if (iwl_mvm_has_new_tx_api(mvm)) { iwl_trans_txq_free(mvm->trans, queue); + *queueptr = IWL_MVM_INVALID_QUEUE; return 0; } @@ -517,6 +519,7 @@ u8 sta_id, tid; unsigned long disable_agg_tids = 0; bool same_sta; + u16 queue_tmp = queue; int ret; lockdep_assert_held(&mvm->mutex); @@ -539,7 +542,7 @@ iwl_mvm_invalidate_sta_queue(mvm, queue, disable_agg_tids, false); - ret = iwl_mvm_disable_txq(mvm, old_sta, queue, tid, 0); + ret = iwl_mvm_disable_txq(mvm, old_sta, &queue_tmp, tid, 0); if (ret) { IWL_ERR(mvm, "Failed to free inactive queue %d (ret=%d)\n", @@ -1209,6 +1212,7 @@ unsigned int wdg_timeout = iwl_mvm_get_wd_timeout(mvm, mvmsta->vif, false, false); int queue = -1; + u16 queue_tmp; unsigned long disable_agg_tids = 0; enum iwl_mvm_agg_state queue_state; bool shared_queue = false, inc_ssn; @@ -1357,7 +1361,8 @@ return 0; out_err: - iwl_mvm_disable_txq(mvm, sta, queue, tid, 0); + queue_tmp = queue; + iwl_mvm_disable_txq(mvm, sta, &queue_tmp, tid, 0); return ret; } @@ -1795,7 +1800,7 @@ if (mvm_sta->tid_data[i].txq_id == IWL_MVM_INVALID_QUEUE) continue; - iwl_mvm_disable_txq(mvm, sta, mvm_sta->tid_data[i].txq_id, i, + iwl_mvm_disable_txq(mvm, sta, &mvm_sta->tid_data[i].txq_id, i, 0); mvm_sta->tid_data[i].txq_id = IWL_MVM_INVALID_QUEUE; } @@ -1805,6 +1810,7 @@ iwl_mvm_txq_from_mac80211(sta->txq[i]); mvmtxq->txq_id = IWL_MVM_INVALID_QUEUE; + list_del_init(&mvmtxq->list); } } @@ -2005,7 +2011,7 @@ ret = iwl_mvm_add_int_sta_common(mvm, sta, NULL, macidx, maccolor); if (ret) { if (!iwl_mvm_has_new_tx_api(mvm)) - iwl_mvm_disable_txq(mvm, NULL, *queue, + iwl_mvm_disable_txq(mvm, NULL, queue, IWL_MAX_TID_COUNT, 0); return ret; } @@ -2073,7 +2079,7 @@ if (WARN_ON_ONCE(mvm->snif_sta.sta_id == IWL_MVM_INVALID_STA)) return -EINVAL; - iwl_mvm_disable_txq(mvm, NULL, mvm->snif_queue, IWL_MAX_TID_COUNT, 0); + iwl_mvm_disable_txq(mvm, NULL, &mvm->snif_queue, IWL_MAX_TID_COUNT, 0); ret = iwl_mvm_rm_sta_common(mvm, mvm->snif_sta.sta_id); if (ret) IWL_WARN(mvm, "Failed sending remove station\n"); @@ -2090,7 +2096,7 @@ if (WARN_ON_ONCE(mvm->aux_sta.sta_id == IWL_MVM_INVALID_STA)) return -EINVAL; - iwl_mvm_disable_txq(mvm, NULL, mvm->aux_queue, IWL_MAX_TID_COUNT, 0); + iwl_mvm_disable_txq(mvm, NULL, &mvm->aux_queue, IWL_MAX_TID_COUNT, 0); ret = iwl_mvm_rm_sta_common(mvm, mvm->aux_sta.sta_id); if (ret) IWL_WARN(mvm, "Failed sending remove station\n"); @@ -2186,7 +2192,7 @@ struct ieee80211_vif *vif) { struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); - int queue; + u16 *queueptr, queue; lockdep_assert_held(&mvm->mutex); @@ -2195,10 +2201,10 @@ switch (vif->type) { case NL80211_IFTYPE_AP: case NL80211_IFTYPE_ADHOC: - queue = mvm->probe_queue; + queueptr = &mvm->probe_queue; break; case NL80211_IFTYPE_P2P_DEVICE: - queue = mvm->p2p_dev_queue; + queueptr = &mvm->p2p_dev_queue; break; default: WARN(1, "Can't free bcast queue on vif type %d\n", @@ -2206,7 +2212,8 @@ return; } - iwl_mvm_disable_txq(mvm, NULL, queue, IWL_MAX_TID_COUNT, 0); + queue = *queueptr; + iwl_mvm_disable_txq(mvm, NULL, queueptr, IWL_MAX_TID_COUNT, 0); if (iwl_mvm_has_new_tx_api(mvm)) return; @@ -2441,7 +2448,7 @@ iwl_mvm_flush_sta(mvm, &mvmvif->mcast_sta, true, 0); - iwl_mvm_disable_txq(mvm, NULL, mvmvif->cab_queue, 0, 0); + iwl_mvm_disable_txq(mvm, NULL, &mvmvif->cab_queue, 0, 0); ret = iwl_mvm_rm_sta_common(mvm, mvmvif->mcast_sta.sta_id); if (ret) diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c @@ -1091,6 +1091,9 @@ if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA)) return -1; + if (unlikely(ieee80211_is_any_nullfunc(fc)) && sta->he_cap.has_he) + return -1; + if (unlikely(ieee80211_is_probe_resp(fc))) iwl_mvm_probe_resp_set_noa(mvm, skb); diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c @@ -63,7 +63,6 @@ struct iwl_prph_scratch *prph_scratch; struct iwl_prph_scratch_ctrl_cfg *prph_sc_ctrl; struct iwl_prph_info *prph_info; - void *iml_img; u32 control_flags = 0; int ret; int cmdq_size = max_t(u32, IWL_CMD_QUEUE_SIZE, @@ -162,14 +161,15 @@ trans_pcie->prph_scratch = prph_scratch; /* Allocate IML */ - iml_img = dma_alloc_coherent(trans->dev, trans->iml_len, - &trans_pcie->iml_dma_addr, GFP_KERNEL); - if (!iml_img) { + trans_pcie->iml = dma_alloc_coherent(trans->dev, trans->iml_len, + &trans_pcie->iml_dma_addr, + GFP_KERNEL); + if (!trans_pcie->iml) { ret = -ENOMEM; goto err_free_ctxt_info; } - memcpy(iml_img, trans->iml, trans->iml_len); + memcpy(trans_pcie->iml, trans->iml, trans->iml_len); iwl_enable_fw_load_int_ctx_info(trans); @@ -242,6 +242,11 @@ trans_pcie->ctxt_info_dma_addr = 0; trans_pcie->ctxt_info_gen3 = NULL; + dma_free_coherent(trans->dev, trans->iml_len, trans_pcie->iml, + trans_pcie->iml_dma_addr); + trans_pcie->iml_dma_addr = 0; + trans_pcie->iml = NULL; + iwl_pcie_ctxt_info_free_fw_img(trans); dma_free_coherent(trans->dev, sizeof(*trans_pcie->prph_scratch), diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h @@ -475,6 +475,8 @@ * Context information addresses will be taken from here. * This is driver's local copy for keeping track of size and * count for allocating and freeing the memory. + * @iml: image loader image virtual address + * @iml_dma_addr: image loader image DMA address * @trans: pointer to the generic transport area * @scd_base_addr: scheduler sram base address in SRAM * @scd_bc_tbls: pointer to the byte count table of the scheduler @@ -522,6 +524,7 @@ }; struct iwl_prph_info *prph_info; struct iwl_prph_scratch *prph_scratch; + void *iml; dma_addr_t ctxt_info_dma_addr; dma_addr_t prph_info_dma_addr; dma_addr_t prph_scratch_dma_addr; diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c @@ -269,7 +269,8 @@ /* now that we got alive we can free the fw image & the context info. * paging memory cannot be freed included since FW will still use it */ - iwl_pcie_ctxt_info_free(trans); + if (trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_AX210) + iwl_pcie_ctxt_info_free(trans); /* * Re-enable all the interrupts, including the RF-Kill one, now that @@ -291,8 +292,7 @@ /* This may fail if AMT took ownership of the device */ if (iwl_pcie_prepare_card_hw(trans)) { IWL_WARN(trans, "Exit HW not ready\n"); - ret = -EIO; - goto out; + return -EIO; } iwl_enable_rfkill_int(trans); diff -u linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c --- linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c @@ -1312,8 +1312,7 @@ /* This may fail if AMT took ownership of the device */ if (iwl_pcie_prepare_card_hw(trans)) { IWL_WARN(trans, "Exit HW not ready\n"); - ret = -EIO; - goto out; + return -EIO; } iwl_enable_rfkill_int(trans); diff -u linux-azure-5.4.0/drivers/net/wireless/mac80211_hwsim.c linux-azure-5.4.0/drivers/net/wireless/mac80211_hwsim.c --- linux-azure-5.4.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-azure-5.4.0/drivers/net/wireless/mac80211_hwsim.c @@ -527,7 +527,7 @@ bool ps_poll_pending; struct dentry *debugfs; - uintptr_t pending_cookie; + atomic_t pending_cookie; struct sk_buff_head pending; /* packets pending */ /* * Only radios in the same group can communicate together (the @@ -1113,8 +1113,7 @@ goto nla_put_failure; /* We create a cookie to identify this skb */ - data->pending_cookie++; - cookie = data->pending_cookie; + cookie = atomic_inc_return(&data->pending_cookie); info->rate_driver_data[0] = (void *)cookie; if (nla_put_u64_64bit(skb, HWSIM_ATTR_COOKIE, cookie, HWSIM_ATTR_PAD)) goto nla_put_failure; @@ -1458,8 +1457,13 @@ static void mac80211_hwsim_stop(struct ieee80211_hw *hw) { struct mac80211_hwsim_data *data = hw->priv; + data->started = false; hrtimer_cancel(&data->beacon_timer); + + while (!skb_queue_empty(&data->pending)) + ieee80211_free_txskb(hw, skb_dequeue(&data->pending)); + wiphy_dbg(hw->wiphy, "%s\n", __func__); } @@ -1598,8 +1602,8 @@ bcn_int -= data->bcn_delta; data->bcn_delta = 0; } - hrtimer_forward(&data->beacon_timer, hrtimer_get_expires(timer), - ns_to_ktime(bcn_int * NSEC_PER_USEC)); + hrtimer_forward_now(&data->beacon_timer, + ns_to_ktime(bcn_int * NSEC_PER_USEC)); return HRTIMER_RESTART; } @@ -2056,9 +2060,21 @@ if (req->ie_len) skb_put_data(probe, req->ie, req->ie_len); + rcu_read_lock(); + if (!ieee80211_tx_prepare_skb(hwsim->hw, + hwsim->hw_scan_vif, + probe, + hwsim->tmp_chan->band, + NULL)) { + rcu_read_unlock(); + kfree_skb(probe); + continue; + } + local_bh_disable(); mac80211_hwsim_tx_frame(hwsim->hw, probe, hwsim->tmp_chan); + rcu_read_unlock(); local_bh_enable(); } } @@ -3242,6 +3258,7 @@ const u8 *src; unsigned int hwsim_flags; int i; + unsigned long flags; bool found = false; if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] || @@ -3266,18 +3283,20 @@ goto out; /* look for the skb matching the cookie passed back from user */ + spin_lock_irqsave(&data2->pending.lock, flags); skb_queue_walk_safe(&data2->pending, skb, tmp) { - u64 skb_cookie; + uintptr_t skb_cookie; txi = IEEE80211_SKB_CB(skb); - skb_cookie = (u64)(uintptr_t)txi->rate_driver_data[0]; + skb_cookie = (uintptr_t)txi->rate_driver_data[0]; if (skb_cookie == ret_skb_cookie) { - skb_unlink(skb, &data2->pending); + __skb_unlink(skb, &data2->pending); found = true; break; } } + spin_unlock_irqrestore(&data2->pending.lock, flags); /* not found */ if (!found) @@ -3310,6 +3329,10 @@ } txi->flags |= IEEE80211_TX_STAT_ACK; } + + if (hwsim_flags & HWSIM_TX_CTL_NO_ACK) + txi->flags |= IEEE80211_TX_STAT_NOACK_TRANSMITTED; + ieee80211_tx_status_irqsafe(data2->hw, skb); return 0; out: @@ -3387,6 +3410,8 @@ rx_status.band = data2->channel->band; rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]); + if (rx_status.rate_idx >= data2->hw->wiphy->bands[rx_status.band]->n_bitrates) + goto out; rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]); hdr = (void *)skb->data; diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/libertas_tf/if_usb.c linux-azure-5.4.0/drivers/net/wireless/marvell/libertas_tf/if_usb.c --- linux-azure-5.4.0/drivers/net/wireless/marvell/libertas_tf/if_usb.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/libertas_tf/if_usb.c @@ -230,6 +230,7 @@ dealloc: if_usb_free(cardp); + kfree(cardp); error: lbtf_deb_leave(LBTF_DEB_MAIN); return -ENOMEM; @@ -254,6 +255,7 @@ /* Unlink and free urb */ if_usb_free(cardp); + kfree(cardp); usb_set_intfdata(intf, NULL); usb_put_dev(interface_to_usbdev(intf)); diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c --- linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c @@ -912,16 +912,20 @@ switch (type) { case NL80211_IFTYPE_STATION: case NL80211_IFTYPE_ADHOC: - priv->bss_role = MWIFIEX_BSS_ROLE_STA; + priv->bss_role = MWIFIEX_BSS_ROLE_STA; + priv->bss_type = MWIFIEX_BSS_TYPE_STA; break; case NL80211_IFTYPE_P2P_CLIENT: - priv->bss_role = MWIFIEX_BSS_ROLE_STA; + priv->bss_role = MWIFIEX_BSS_ROLE_STA; + priv->bss_type = MWIFIEX_BSS_TYPE_P2P; break; case NL80211_IFTYPE_P2P_GO: - priv->bss_role = MWIFIEX_BSS_ROLE_UAP; + priv->bss_role = MWIFIEX_BSS_ROLE_UAP; + priv->bss_type = MWIFIEX_BSS_TYPE_P2P; break; case NL80211_IFTYPE_AP: priv->bss_role = MWIFIEX_BSS_ROLE_UAP; + priv->bss_type = MWIFIEX_BSS_TYPE_UAP; break; default: mwifiex_dbg(adapter, ERROR, @@ -1233,29 +1237,15 @@ break; case NL80211_IFTYPE_P2P_CLIENT: case NL80211_IFTYPE_P2P_GO: + if (mwifiex_cfg80211_deinit_p2p(priv)) + return -EFAULT; + switch (type) { - case NL80211_IFTYPE_STATION: - if (mwifiex_cfg80211_deinit_p2p(priv)) - return -EFAULT; - priv->adapter->curr_iface_comb.p2p_intf--; - priv->adapter->curr_iface_comb.sta_intf++; - dev->ieee80211_ptr->iftype = type; - if (mwifiex_deinit_priv_params(priv)) - return -1; - if (mwifiex_init_new_priv_params(priv, dev, type)) - return -1; - if (mwifiex_sta_init_cmd(priv, false, false)) - return -1; - break; case NL80211_IFTYPE_ADHOC: - if (mwifiex_cfg80211_deinit_p2p(priv)) - return -EFAULT; + case NL80211_IFTYPE_STATION: return mwifiex_change_vif_to_sta_adhoc(dev, curr_iftype, type, params); - break; case NL80211_IFTYPE_AP: - if (mwifiex_cfg80211_deinit_p2p(priv)) - return -EFAULT; return mwifiex_change_vif_to_ap(dev, curr_iftype, type, params); case NL80211_IFTYPE_UNSPECIFIED: diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/fw.h linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/fw.h --- linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/fw.h +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/fw.h @@ -514,10 +514,10 @@ #define RF_ANTENNA_AUTO 0xFFFF -#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \ - (((seq) & 0x00ff) | \ - (((num) & 0x000f) << 8)) | \ - (((type) & 0x000f) << 12); } +#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) \ + ((((seq) & 0x00ff) | \ + (((num) & 0x000f) << 8)) | \ + (((type) & 0x000f) << 12)) #define HostCmd_GET_SEQ_NO(seq) \ ((seq) & HostCmd_SEQ_NUM_MASK) diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/pcie.c linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/pcie.c --- linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/pcie.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/pcie.c @@ -1090,7 +1090,7 @@ static int mwifiex_pcie_alloc_sleep_cookie_buf(struct mwifiex_adapter *adapter) { struct pcie_service_card *card = adapter->card; - u32 tmp; + u32 *cookie; card->sleep_cookie_vbase = pci_alloc_consistent(card->dev, sizeof(u32), &card->sleep_cookie_pbase); @@ -1099,13 +1099,11 @@ "pci_alloc_consistent failed!\n"); return -ENOMEM; } + cookie = (u32 *)card->sleep_cookie_vbase; /* Init val of Sleep Cookie */ - tmp = FW_AWAKE_COOKIE; - put_unaligned(tmp, card->sleep_cookie_vbase); + *cookie = FW_AWAKE_COOKIE; - mwifiex_dbg(adapter, INFO, - "alloc_scook: sleep cookie=0x%x\n", - get_unaligned(card->sleep_cookie_vbase)); + mwifiex_dbg(adapter, INFO, "alloc_scook: sleep cookie=0x%x\n", *cookie); return 0; } @@ -1338,6 +1336,14 @@ ret = -1; goto done_unmap; } + + /* The firmware (latest version 15.68.19.p21) of the 88W8897 PCIe+USB card + * seems to crash randomly after setting the TX ring write pointer when + * ASPM powersaving is enabled. A workaround seems to be keeping the bus + * busy by reading a random register afterwards. + */ + mwifiex_read_reg(adapter, PCI_VENDOR_ID, &rx_val); + if ((mwifiex_pcie_txbd_not_full(card)) && tx_param->next_pkt_len) { /* have more packets and TxBD still can hold more */ diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/usb.c linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/usb.c --- linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/usb.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/usb.c @@ -130,7 +130,8 @@ default: mwifiex_dbg(adapter, ERROR, "unknown recv_type %#x\n", recv_type); - return -1; + ret = -1; + goto exit_restore_skb; } break; case MWIFIEX_USB_EP_DATA: @@ -505,6 +506,22 @@ } } + switch (card->usb_boot_state) { + case USB8XXX_FW_DNLD: + /* Reject broken descriptors. */ + if (!card->rx_cmd_ep || !card->tx_cmd_ep) + return -ENODEV; + if (card->bulk_out_maxpktsize == 0) + return -ENODEV; + break; + case USB8XXX_FW_READY: + /* Assume the driver can handle missing endpoints for now. */ + break; + default: + WARN_ON(1); + return -ENODEV; + } + usb_set_intfdata(intf, card); ret = mwifiex_add_card(card, &card->fw_done, &usb_ops, diff -u linux-azure-5.4.0/drivers/net/wireless/marvell/mwl8k.c linux-azure-5.4.0/drivers/net/wireless/marvell/mwl8k.c --- linux-azure-5.4.0/drivers/net/wireless/marvell/mwl8k.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwl8k.c @@ -5796,8 +5796,8 @@ fail: priv->fw_state = FW_STATE_ERROR; complete(&priv->firmware_loading_complete); - device_release_driver(&priv->pdev->dev); mwl8k_release_firmware(priv); + device_release_driver(&priv->pdev->dev); } #define MAX_RESTART_ATTEMPTS 1 diff -u linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mac80211.c linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mac80211.c --- linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mac80211.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mac80211.c @@ -103,6 +103,7 @@ if (!of_property_read_u32(np, "led-sources", &led_pin)) dev->led_pin = led_pin; dev->led_al = of_property_read_bool(np, "led-active-low"); + of_node_put(np); } return led_classdev_register(dev->dev, &dev->led_cdev); diff -u linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7603/main.c linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7603/main.c --- linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7603/main.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7603/main.c @@ -606,6 +606,9 @@ struct ieee80211_sta_rates *sta_rates = rcu_dereference(sta->rates); int i; + if (!sta_rates) + return; + spin_lock_bh(&dev->mt76.lock); for (i = 0; i < ARRAY_SIZE(msta->rates); i++) { msta->rates[i].idx = sta_rates->rate[i].idx; diff -u linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/mac.c linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/mac.c --- linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/mac.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/mac.c @@ -840,22 +840,20 @@ int first_idx = 0, last_idx; int i, idx, count; bool fixed_rate, ack_timeout; - bool probe, ampdu, cck = false; + bool ampdu, cck = false; bool rs_idx; u32 rate_set_tsf; u32 final_rate, final_rate_flags, final_nss, txs; - fixed_rate = info->status.rates[0].count; - probe = !!(info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE); - txs = le32_to_cpu(txs_data[1]); - ampdu = !fixed_rate && (txs & MT_TXS1_AMPDU); + ampdu = txs & MT_TXS1_AMPDU; txs = le32_to_cpu(txs_data[3]); count = FIELD_GET(MT_TXS3_TX_COUNT, txs); last_idx = FIELD_GET(MT_TXS3_LAST_TX_RATE, txs); txs = le32_to_cpu(txs_data[0]); + fixed_rate = txs & MT_TXS0_FIXED_RATE; final_rate = FIELD_GET(MT_TXS0_TX_RATE, txs); ack_timeout = txs & MT_TXS0_ACK_TIMEOUT; @@ -877,7 +875,7 @@ first_idx = max_t(int, 0, last_idx - (count + 1) / MT7615_RATE_RETRY); - if (fixed_rate && !probe) { + if (fixed_rate) { info->status.rates[0].count = count; i = 0; goto out; diff -u linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/main.c linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/main.c --- linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/main.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt7615/main.c @@ -385,6 +385,9 @@ struct ieee80211_sta_rates *sta_rates = rcu_dereference(sta->rates); int i; + if (!sta_rates) + return; + spin_lock_bh(&dev->mt76.lock); for (i = 0; i < ARRAY_SIZE(msta->rates); i++) { msta->rates[i].idx = sta_rates->rate[i].idx; diff -u linux-azure-5.4.0/drivers/net/wireless/ralink/rt2x00/rt2800lib.c linux-azure-5.4.0/drivers/net/wireless/ralink/rt2x00/rt2800lib.c --- linux-azure-5.4.0/drivers/net/wireless/ralink/rt2x00/rt2800lib.c +++ linux-azure-5.4.0/drivers/net/wireless/ralink/rt2x00/rt2800lib.c @@ -4154,7 +4154,10 @@ rt2800_bbp_write(rt2x00dev, 62, 0x37 - rt2x00dev->lna_gain); rt2800_bbp_write(rt2x00dev, 63, 0x37 - rt2x00dev->lna_gain); rt2800_bbp_write(rt2x00dev, 64, 0x37 - rt2x00dev->lna_gain); - rt2800_bbp_write(rt2x00dev, 86, 0); + if (rt2x00_rt(rt2x00dev, RT6352)) + rt2800_bbp_write(rt2x00dev, 86, 0x38); + else + rt2800_bbp_write(rt2x00dev, 86, 0); } if (rf->channel <= 14) { @@ -4355,7 +4358,8 @@ reg = (rf->channel <= 14 ? 0x1c : 0x24) + 2*rt2x00dev->lna_gain; rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, reg); - rt2800_iq_calibrate(rt2x00dev, rf->channel); + if (rt2x00_rt(rt2x00dev, RT5592)) + rt2800_iq_calibrate(rt2x00dev, rf->channel); } bbp = rt2800_bbp_read(rt2x00dev, 4); @@ -5628,7 +5632,8 @@ if (qual->vgc_level != vgc_level) { if (rt2x00_rt(rt2x00dev, RT3572) || rt2x00_rt(rt2x00dev, RT3593) || - rt2x00_rt(rt2x00dev, RT3883)) { + rt2x00_rt(rt2x00dev, RT3883) || + rt2x00_rt(rt2x00dev, RT6352)) { rt2800_bbp_write_with_rx_chain(rt2x00dev, 66, vgc_level); } else if (rt2x00_rt(rt2x00dev, RT5592)) { @@ -5851,7 +5856,7 @@ rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000404); } else if (rt2x00_rt(rt2x00dev, RT6352)) { rt2800_register_write(rt2x00dev, TX_SW_CFG0, 0x00000401); - rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x000C0000); + rt2800_register_write(rt2x00dev, TX_SW_CFG1, 0x000C0001); rt2800_register_write(rt2x00dev, TX_SW_CFG2, 0x00000000); rt2800_register_write(rt2x00dev, TX_ALC_VGA3, 0x00000000); rt2800_register_write(rt2x00dev, TX0_BB_GAIN_ATTEN, 0x0); @@ -6113,6 +6118,27 @@ reg = rt2800_register_read(rt2x00dev, US_CYC_CNT); rt2x00_set_field32(®, US_CYC_CNT_CLOCK_CYCLE, 125); rt2800_register_write(rt2x00dev, US_CYC_CNT, reg); + } else if (rt2x00_is_soc(rt2x00dev)) { + struct clk *clk = clk_get_sys("bus", NULL); + int rate; + + if (IS_ERR(clk)) { + clk = clk_get_sys("cpu", NULL); + + if (IS_ERR(clk)) { + rate = 125; + } else { + rate = clk_get_rate(clk) / 3000000; + clk_put(clk); + } + } else { + rate = clk_get_rate(clk) / 1000000; + clk_put(clk); + } + + reg = rt2800_register_read(rt2x00dev, US_CYC_CNT); + rt2x00_set_field32(®, US_CYC_CNT_CLOCK_CYCLE, rate); + rt2800_register_write(rt2x00dev, US_CYC_CNT, reg); } reg = rt2800_register_read(rt2x00dev, HT_FBK_CFG0); diff -u linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h --- linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h @@ -853,15 +853,10 @@ u8 usb_optional_function; u8 res9[2]; u8 mac_addr[ETH_ALEN]; /* 0xd7 */ - u8 res10[2]; - u8 vendor_name[7]; - u8 res11[2]; - u8 device_name[0x0b]; /* 0xe8 */ - u8 res12[2]; - u8 serial[0x0b]; /* 0xf5 */ - u8 res13[0x30]; + u8 device_info[80]; + u8 res11[3]; u8 unknown[0x0d]; /* 0x130 */ - u8 res14[0xc3]; + u8 res12[0xc3]; }; struct rtl8xxxu_reg8val { diff -u linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c --- linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c @@ -1875,13 +1875,6 @@ /* We have 8 bits to indicate validity */ map_addr = offset * 8; - if (map_addr >= EFUSE_MAP_LEN) { - dev_warn(dev, "%s: Illegal map_addr (%04x), " - "efuse corrupt!\n", - __func__, map_addr); - ret = -EINVAL; - goto exit; - } for (i = 0; i < EFUSE_MAX_WORD_UNIT; i++) { /* Check word enable condition in the section */ if (word_mask & BIT(i)) { @@ -1892,6 +1885,13 @@ ret = rtl8xxxu_read_efuse8(priv, efuse_addr++, &val8); if (ret) goto exit; + if (map_addr >= EFUSE_MAP_LEN - 1) { + dev_warn(dev, "%s: Illegal map_addr (%04x), " + "efuse corrupt!\n", + __func__, map_addr); + ret = -EINVAL; + goto exit; + } priv->efuse_wifi.raw[map_addr++] = val8; ret = rtl8xxxu_read_efuse8(priv, efuse_addr++, &val8); @@ -2926,12 +2926,12 @@ } if (!(simubitmap & 0x30) && priv->tx_paths > 1) { - /* path B RX OK */ + /* path B TX OK */ for (i = 4; i < 6; i++) result[3][i] = result[c1][i]; } - if (!(simubitmap & 0x30) && priv->tx_paths > 1) { + if (!(simubitmap & 0xc0) && priv->tx_paths > 1) { /* path B RX OK */ for (i = 6; i < 8; i++) result[3][i] = result[c1][i]; @@ -4981,6 +4981,8 @@ if (control && control->sta) sta = control->sta; + queue = rtl8xxxu_queue_select(hw, skb); + tx_desc = skb_push(skb, tx_desc_size); memset(tx_desc, 0, tx_desc_size); @@ -4993,7 +4995,6 @@ is_broadcast_ether_addr(ieee80211_get_DA(hdr))) tx_desc->txdw0 |= TXDESC_BROADMULTICAST; - queue = rtl8xxxu_queue_select(hw, skb); tx_desc->txdw1 = cpu_to_le32(queue << TXDESC_QUEUE_SHIFT); if (tx_info->control.hw_key) { diff -u linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c --- linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c @@ -1000,6 +1000,7 @@ _initpabias(hw); rtl92c_dm_init(hw); exit: + local_irq_disable(); local_irq_restore(flags); return err; } diff -u linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/usb.c linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/usb.c --- linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/usb.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/usb.c @@ -1013,7 +1013,7 @@ hw = ieee80211_alloc_hw(sizeof(struct rtl_priv) + sizeof(struct rtl_usb_priv), &rtl_ops); if (!hw) { - WARN_ONCE(true, "rtl_usb: ieee80211 alloc failed\n"); + pr_warn("rtl_usb: ieee80211 alloc failed\n"); return -ENOMEM; } rtlpriv = hw->priv; diff -u linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_hal.c linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_hal.c --- linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_hal.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_hal.c @@ -203,7 +203,7 @@ wh->frame_control |= cpu_to_le16(RSI_SET_PS_ENABLE); if ((!(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) && - (common->secinfo.security_enable)) { + tx_params->have_key) { if (rsi_is_cipher_wep(common)) ieee80211_size += 4; else @@ -214,15 +214,17 @@ RSI_WIFI_DATA_Q); data_desc->header_len = ieee80211_size; - if (common->min_rate != RSI_RATE_AUTO) { + if (common->rate_config[common->band].fixed_enabled) { /* Send fixed rate */ + u16 fixed_rate = common->rate_config[common->band].fixed_hw_rate; + data_desc->frame_info = cpu_to_le16(RATE_INFO_ENABLE); - data_desc->rate_info = cpu_to_le16(common->min_rate); + data_desc->rate_info = cpu_to_le16(fixed_rate); if (conf_is_ht40(&common->priv->hw->conf)) data_desc->bbp_info = cpu_to_le16(FULL40M_ENABLE); - if ((common->vif_info[0].sgi) && (common->min_rate & 0x100)) { + if (common->vif_info[0].sgi && (fixed_rate & 0x100)) { /* Only MCS rates */ data_desc->rate_info |= cpu_to_le16(ENABLE_SHORTGI_RATE); @@ -470,9 +472,9 @@ } if (common->band == NL80211_BAND_2GHZ) - bcn_frm->bbp_info |= cpu_to_le16(RSI_RATE_1); + bcn_frm->rate_info |= cpu_to_le16(RSI_RATE_1); else - bcn_frm->bbp_info |= cpu_to_le16(RSI_RATE_6); + bcn_frm->rate_info |= cpu_to_le16(RSI_RATE_6); if (mac_bcn->data[tim_offset + 2] == 0) bcn_frm->frame_info |= cpu_to_le16(RSI_DATA_DESC_DTIM_BEACON); @@ -1038,8 +1040,10 @@ } ta_firmware = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL); - if (!ta_firmware) + if (!ta_firmware) { + status = -ENOMEM; goto fail_release_fw; + } fw_p = ta_firmware; instructions_sz = fw_entry->size; rsi_dbg(INFO_ZONE, "FW Length = %d bytes\n", instructions_sz); diff -u linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mac80211.c linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mac80211.c --- linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mac80211.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mac80211.c @@ -510,7 +510,6 @@ if ((vif->type == NL80211_IFTYPE_AP) || (vif->type == NL80211_IFTYPE_P2P_GO)) { rsi_send_rx_filter_frame(common, DISALLOW_BEACONS); - common->min_rate = RSI_RATE_AUTO; for (i = 0; i < common->max_stations; i++) common->stations[i].sta = NULL; } @@ -1027,7 +1026,6 @@ mutex_lock(&common->mutex); switch (cmd) { case SET_KEY: - secinfo->security_enable = true; status = rsi_hal_key_config(hw, vif, key, sta); if (status) { mutex_unlock(&common->mutex); @@ -1046,8 +1044,6 @@ break; case DISABLE_KEY: - if (vif->type == NL80211_IFTYPE_STATION) - secinfo->security_enable = false; rsi_dbg(ERR_ZONE, "%s: RSI del key\n", __func__); memset(key, 0, sizeof(struct ieee80211_key_conf)); status = rsi_hal_key_config(hw, vif, key, sta); @@ -1213,20 +1209,32 @@ struct ieee80211_vif *vif, const struct cfg80211_bitrate_mask *mask) { + const unsigned int mcs_offset = ARRAY_SIZE(rsi_rates); struct rsi_hw *adapter = hw->priv; struct rsi_common *common = adapter->priv; - enum nl80211_band band = hw->conf.chandef.chan->band; + int i; mutex_lock(&common->mutex); - common->fixedrate_mask[band] = 0; - if (mask->control[band].legacy == 0xfff) { - common->fixedrate_mask[band] = - (mask->control[band].ht_mcs[0] << 12); - } else { - common->fixedrate_mask[band] = - mask->control[band].legacy; + for (i = 0; i < ARRAY_SIZE(common->rate_config); i++) { + struct rsi_rate_config *cfg = &common->rate_config[i]; + u32 bm; + + bm = mask->control[i].legacy | (mask->control[i].ht_mcs[0] << mcs_offset); + if (hweight32(bm) == 1) { /* single rate */ + int rate_index = ffs(bm) - 1; + + if (rate_index < mcs_offset) + cfg->fixed_hw_rate = rsi_rates[rate_index].hw_value; + else + cfg->fixed_hw_rate = rsi_mcsrates[rate_index - mcs_offset]; + cfg->fixed_enabled = true; + } else { + cfg->configured_mask = bm; + cfg->fixed_enabled = false; + } } + mutex_unlock(&common->mutex); return 0; @@ -1362,46 +1370,6 @@ ieee80211_rx_irqsafe(hw, skb); } -static void rsi_set_min_rate(struct ieee80211_hw *hw, - struct ieee80211_sta *sta, - struct rsi_common *common) -{ - u8 band = hw->conf.chandef.chan->band; - u8 ii; - u32 rate_bitmap; - bool matched = false; - - common->bitrate_mask[band] = sta->supp_rates[band]; - - rate_bitmap = (common->fixedrate_mask[band] & sta->supp_rates[band]); - - if (rate_bitmap & 0xfff) { - /* Find out the min rate */ - for (ii = 0; ii < ARRAY_SIZE(rsi_rates); ii++) { - if (rate_bitmap & BIT(ii)) { - common->min_rate = rsi_rates[ii].hw_value; - matched = true; - break; - } - } - } - - common->vif_info[0].is_ht = sta->ht_cap.ht_supported; - - if ((common->vif_info[0].is_ht) && (rate_bitmap >> 12)) { - for (ii = 0; ii < ARRAY_SIZE(rsi_mcsrates); ii++) { - if ((rate_bitmap >> 12) & BIT(ii)) { - common->min_rate = rsi_mcsrates[ii]; - matched = true; - break; - } - } - } - - if (!matched) - common->min_rate = 0xffff; -} - /** * rsi_mac80211_sta_add() - This function notifies driver about a peer getting * connected. @@ -1500,9 +1468,9 @@ if ((vif->type == NL80211_IFTYPE_STATION) || (vif->type == NL80211_IFTYPE_P2P_CLIENT)) { - rsi_set_min_rate(hw, sta, common); + common->bitrate_mask[common->band] = sta->supp_rates[common->band]; + common->vif_info[0].is_ht = sta->ht_cap.ht_supported; if (sta->ht_cap.ht_supported) { - common->vif_info[0].is_ht = true; common->bitrate_mask[NL80211_BAND_2GHZ] = sta->supp_rates[NL80211_BAND_2GHZ]; if ((sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20) || @@ -1576,7 +1544,6 @@ bss->qos = sta->wme; common->bitrate_mask[NL80211_BAND_2GHZ] = 0; common->bitrate_mask[NL80211_BAND_5GHZ] = 0; - common->min_rate = 0xffff; common->vif_info[0].is_ht = false; common->vif_info[0].sgi = false; common->vif_info[0].seq_start = 0; diff -u linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mgmt.c linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mgmt.c --- linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mgmt.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_mgmt.c @@ -276,7 +276,7 @@ common->channel_width = BW_20MHZ; common->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; common->channel = 1; - common->min_rate = 0xffff; + memset(&common->rate_config, 0, sizeof(common->rate_config)); common->fsm_state = FSM_CARD_NOT_READY; common->iface_down = true; common->endpoint = EP_2GHZ_20MHZ; @@ -1304,7 +1304,7 @@ u8 band = hw->conf.chandef.chan->band; u8 num_supported_rates = 0; u8 rate_table_offset, rate_offset = 0; - u32 rate_bitmap; + u32 rate_bitmap, configured_rates; u16 *selected_rates, min_rate; bool is_ht = false, is_sgi = false; u16 frame_len = sizeof(struct rsi_auto_rate); @@ -1354,6 +1354,10 @@ is_sgi = true; } + /* Limit to any rates administratively configured by cfg80211 */ + configured_rates = common->rate_config[band].configured_mask ?: 0xffffffff; + rate_bitmap &= configured_rates; + if (band == NL80211_BAND_2GHZ) { if ((rate_bitmap == 0) && (is_ht)) min_rate = RSI_RATE_MCS0; @@ -1379,10 +1383,13 @@ num_supported_rates = jj; if (is_ht) { - for (ii = 0; ii < ARRAY_SIZE(mcs); ii++) - selected_rates[jj++] = mcs[ii]; - num_supported_rates += ARRAY_SIZE(mcs); - rate_offset += ARRAY_SIZE(mcs); + for (ii = 0; ii < ARRAY_SIZE(mcs); ii++) { + if (configured_rates & BIT(ii + ARRAY_SIZE(rsi_rates))) { + selected_rates[jj++] = mcs[ii]; + num_supported_rates++; + rate_offset++; + } + } } sort(selected_rates, jj, sizeof(u16), &rsi_compare, NULL); @@ -1467,7 +1474,7 @@ qos_enable, aid, sta_id, vif); - if (common->min_rate == 0xffff) + if (!common->rate_config[common->band].fixed_enabled) rsi_send_auto_rate_request(common, sta, sta_id, vif); if (opmode == RSI_OPMODE_STA && !(assoc_cap & WLAN_CAPABILITY_PRIVACY) && @@ -1788,8 +1795,7 @@ RSI_WIFI_MGMT_Q); cmd_frame->desc.desc_dword0.frame_type = WOWLAN_CONFIG_PARAMS; cmd_frame->host_sleep_status = sleep_status; - if (common->secinfo.security_enable && - common->secinfo.gtk_cipher) + if (common->secinfo.gtk_cipher) flags |= RSI_WOW_GTK_REKEY; if (sleep_status) cmd_frame->wow_flags = flags; @@ -2057,6 +2063,9 @@ if (common->reinit_hw) { complete(&common->wlan_init_completion); } else { + if (common->bt_defer_attach) + rsi_attach_bt(common); + return rsi_mac80211_attach(common); } } diff -u linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_sdio.c linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_sdio.c --- linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_sdio.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_sdio.c @@ -24,10 +24,7 @@ /* Default operating mode is wlan STA + BT */ static u16 dev_oper_mode = DEV_OPMODE_STA_BT_DUAL; module_param(dev_oper_mode, ushort, 0444); -MODULE_PARM_DESC(dev_oper_mode, - "1[Wi-Fi], 4[BT], 8[BT LE], 5[Wi-Fi STA + BT classic]\n" - "9[Wi-Fi STA + BT LE], 13[Wi-Fi STA + BT classic + BT LE]\n" - "6[AP + BT classic], 14[AP + BT classic + BT LE]"); +MODULE_PARM_DESC(dev_oper_mode, DEV_OPMODE_PARAM_DESC); /** * rsi_sdio_set_cmd52_arg() - This function prepares cmd 52 read/write arg. diff -u linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_usb.c linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_usb.c --- linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_usb.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_usb.c @@ -25,10 +25,7 @@ /* Default operating mode is wlan STA + BT */ static u16 dev_oper_mode = DEV_OPMODE_STA_BT_DUAL; module_param(dev_oper_mode, ushort, 0444); -MODULE_PARM_DESC(dev_oper_mode, - "1[Wi-Fi], 4[BT], 8[BT LE], 5[Wi-Fi STA + BT classic]\n" - "9[Wi-Fi STA + BT LE], 13[Wi-Fi STA + BT classic + BT LE]\n" - "6[AP + BT classic], 14[AP + BT classic + BT LE]"); +MODULE_PARM_DESC(dev_oper_mode, DEV_OPMODE_PARAM_DESC); static int rsi_rx_urb_submit(struct rsi_hw *adapter, u8 ep_num, gfp_t flags); @@ -61,7 +58,7 @@ (void *)seg, (int)len, &transfer, - HZ * 5); + USB_CTRL_SET_TIMEOUT); if (status < 0) { rsi_dbg(ERR_ZONE, @@ -264,8 +261,12 @@ struct rsi_91x_usbdev *dev = (struct rsi_91x_usbdev *)rx_cb->data; int status = -EINVAL; + if (!rx_cb->rx_skb) + return; + if (urb->status) { dev_kfree_skb(rx_cb->rx_skb); + rx_cb->rx_skb = NULL; return; } @@ -289,8 +290,10 @@ if (rsi_rx_urb_submit(dev->priv, rx_cb->ep_num, GFP_ATOMIC)) rsi_dbg(ERR_ZONE, "%s: Failed in urb submission", __func__); - if (status) + if (status) { dev_kfree_skb(rx_cb->rx_skb); + rx_cb->rx_skb = NULL; + } } static void rsi_rx_urb_kill(struct rsi_hw *adapter, u8 ep_num) @@ -317,7 +320,6 @@ struct sk_buff *skb; u8 dword_align_bytes = 0; -#define RSI_MAX_RX_USB_PKT_SIZE 3000 skb = dev_alloc_skb(RSI_MAX_RX_USB_PKT_SIZE); if (!skb) return -ENOMEM; @@ -806,6 +808,7 @@ } else { rsi_dbg(ERR_ZONE, "%s: Unsupported RSI device id 0x%x\n", __func__, id->idProduct); + status = -ENODEV; goto err1; } diff -u linux-azure-5.4.0/drivers/net/wireless/ti/wl12xx/main.c linux-azure-5.4.0/drivers/net/wireless/ti/wl12xx/main.c --- linux-azure-5.4.0/drivers/net/wireless/ti/wl12xx/main.c +++ linux-azure-5.4.0/drivers/net/wireless/ti/wl12xx/main.c @@ -1503,6 +1503,13 @@ u32 mac1, mac2; int ret; + /* Device may be in ELP from the bootloader or kexec */ + ret = wlcore_write32(wl, WL12XX_WELP_ARM_COMMAND, WELP_ARM_COMMAND_VAL); + if (ret < 0) + goto out; + + usleep_range(500000, 700000); + ret = wlcore_set_partition(wl, &wl->ptable[PART_DRPW]); if (ret < 0) goto out; diff -u linux-azure-5.4.0/drivers/net/wireless/virt_wifi.c linux-azure-5.4.0/drivers/net/wireless/virt_wifi.c --- linux-azure-5.4.0/drivers/net/wireless/virt_wifi.c +++ linux-azure-5.4.0/drivers/net/wireless/virt_wifi.c @@ -136,6 +136,29 @@ /* Assigned at module init. Guaranteed locally-administered and unicast. */ static u8 fake_router_bssid[ETH_ALEN] __ro_after_init = {}; +static void virt_wifi_inform_bss(struct wiphy *wiphy) +{ + u64 tsf = div_u64(ktime_get_boottime_ns(), 1000); + struct cfg80211_bss *informed_bss; + static const struct { + u8 tag; + u8 len; + u8 ssid[8]; + } __packed ssid = { + .tag = WLAN_EID_SSID, + .len = 8, + .ssid = "VirtWifi", + }; + + informed_bss = cfg80211_inform_bss(wiphy, &channel_5ghz, + CFG80211_BSS_FTYPE_PRESP, + fake_router_bssid, tsf, + WLAN_CAPABILITY_ESS, 0, + (void *)&ssid, sizeof(ssid), + DBM_TO_MBM(-50), GFP_KERNEL); + cfg80211_put_bss(wiphy, informed_bss); +} + /* Called with the rtnl lock held. */ static int virt_wifi_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request) @@ -156,28 +179,13 @@ /* Acquires and releases the rdev BSS lock. */ static void virt_wifi_scan_result(struct work_struct *work) { - struct { - u8 tag; - u8 len; - u8 ssid[8]; - } __packed ssid = { - .tag = WLAN_EID_SSID, .len = 8, .ssid = "VirtWifi", - }; - struct cfg80211_bss *informed_bss; struct virt_wifi_wiphy_priv *priv = container_of(work, struct virt_wifi_wiphy_priv, scan_result.work); struct wiphy *wiphy = priv_to_wiphy(priv); struct cfg80211_scan_info scan_info = { .aborted = false }; - u64 tsf = div_u64(ktime_get_boottime_ns(), 1000); - informed_bss = cfg80211_inform_bss(wiphy, &channel_5ghz, - CFG80211_BSS_FTYPE_PRESP, - fake_router_bssid, tsf, - WLAN_CAPABILITY_ESS, 0, - (void *)&ssid, sizeof(ssid), - DBM_TO_MBM(-50), GFP_KERNEL); - cfg80211_put_bss(wiphy, informed_bss); + virt_wifi_inform_bss(wiphy); /* Schedules work which acquires and releases the rtnl lock. */ cfg80211_scan_done(priv->scan_request, &scan_info); @@ -225,10 +233,12 @@ if (!could_schedule) return -EBUSY; - if (sme->bssid) + if (sme->bssid) { ether_addr_copy(priv->connect_requested_bss, sme->bssid); - else + } else { + virt_wifi_inform_bss(wiphy); eth_zero_addr(priv->connect_requested_bss); + } wiphy_debug(wiphy, "connect\n"); @@ -241,11 +251,13 @@ struct virt_wifi_netdev_priv *priv = container_of(work, struct virt_wifi_netdev_priv, connect.work); u8 *requested_bss = priv->connect_requested_bss; - bool has_addr = !is_zero_ether_addr(requested_bss); bool right_addr = ether_addr_equal(requested_bss, fake_router_bssid); u16 status = WLAN_STATUS_SUCCESS; - if (!priv->is_up || (has_addr && !right_addr)) + if (is_zero_ether_addr(requested_bss)) + requested_bss = NULL; + + if (!priv->is_up || (requested_bss && !right_addr)) status = WLAN_STATUS_UNSPECIFIED_FAILURE; else priv->is_connected = true; diff -u linux-azure-5.4.0/drivers/net/xen-netback/common.h linux-azure-5.4.0/drivers/net/xen-netback/common.h --- linux-azure-5.4.0/drivers/net/xen-netback/common.h +++ linux-azure-5.4.0/drivers/net/xen-netback/common.h @@ -203,6 +203,7 @@ unsigned int rx_queue_max; unsigned int rx_queue_len; unsigned long last_rx_time; + unsigned int rx_slots_needed; bool stalled; struct xenvif_copy_state rx_copy; diff -u linux-azure-5.4.0/drivers/net/xen-netback/netback.c linux-azure-5.4.0/drivers/net/xen-netback/netback.c --- linux-azure-5.4.0/drivers/net/xen-netback/netback.c +++ linux-azure-5.4.0/drivers/net/xen-netback/netback.c @@ -323,10 +323,13 @@ struct xenvif_tx_cb { - u16 pending_idx; + u16 copy_pending_idx[XEN_NETBK_LEGACY_SLOTS_MAX + 1]; + u8 copy_count; }; #define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb) +#define copy_pending_idx(skb, i) (XENVIF_TX_CB(skb)->copy_pending_idx[i]) +#define copy_count(skb) (XENVIF_TX_CB(skb)->copy_count) static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue, u16 pending_idx, @@ -361,31 +364,93 @@ return skb; } -static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue, - struct sk_buff *skb, - struct xen_netif_tx_request *txp, - struct gnttab_map_grant_ref *gop, - unsigned int frag_overflow, - struct sk_buff *nskb) +static void xenvif_get_requests(struct xenvif_queue *queue, + struct sk_buff *skb, + struct xen_netif_tx_request *first, + struct xen_netif_tx_request *txfrags, + unsigned *copy_ops, + unsigned *map_ops, + unsigned int frag_overflow, + struct sk_buff *nskb, + unsigned int extra_count, + unsigned int data_len) { struct skb_shared_info *shinfo = skb_shinfo(skb); skb_frag_t *frags = shinfo->frags; - u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx; - int start; + u16 pending_idx; pending_ring_idx_t index; unsigned int nr_slots; + struct gnttab_copy *cop = queue->tx_copy_ops + *copy_ops; + struct gnttab_map_grant_ref *gop = queue->tx_map_ops + *map_ops; + struct xen_netif_tx_request *txp = first; + + nr_slots = shinfo->nr_frags + 1; + + copy_count(skb) = 0; + + /* Create copy ops for exactly data_len bytes into the skb head. */ + __skb_put(skb, data_len); + while (data_len > 0) { + int amount = data_len > txp->size ? txp->size : data_len; + + cop->source.u.ref = txp->gref; + cop->source.domid = queue->vif->domid; + cop->source.offset = txp->offset; + + cop->dest.domid = DOMID_SELF; + cop->dest.offset = (offset_in_page(skb->data + + skb_headlen(skb) - + data_len)) & ~XEN_PAGE_MASK; + cop->dest.u.gmfn = virt_to_gfn(skb->data + skb_headlen(skb) + - data_len); + + cop->len = amount; + cop->flags = GNTCOPY_source_gref; + + index = pending_index(queue->pending_cons); + pending_idx = queue->pending_ring[index]; + callback_param(queue, pending_idx).ctx = NULL; + copy_pending_idx(skb, copy_count(skb)) = pending_idx; + copy_count(skb)++; + + cop++; + data_len -= amount; - nr_slots = shinfo->nr_frags; + if (amount == txp->size) { + /* The copy op covered the full tx_request */ + + memcpy(&queue->pending_tx_info[pending_idx].req, + txp, sizeof(*txp)); + queue->pending_tx_info[pending_idx].extra_count = + (txp == first) ? extra_count : 0; - /* Skip first skb fragment if it is on same page as header fragment. */ - start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx); + if (txp == first) + txp = txfrags; + else + txp++; + queue->pending_cons++; + nr_slots--; + } else { + /* The copy op partially covered the tx_request. + * The remainder will be mapped. + */ + txp->offset += amount; + txp->size -= amount; + } + } - for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots; - shinfo->nr_frags++, txp++, gop++) { + for (shinfo->nr_frags = 0; shinfo->nr_frags < nr_slots; + shinfo->nr_frags++, gop++) { index = pending_index(queue->pending_cons++); pending_idx = queue->pending_ring[index]; - xenvif_tx_create_map_op(queue, pending_idx, txp, 0, gop); + xenvif_tx_create_map_op(queue, pending_idx, txp, + txp == first ? extra_count : 0, gop); frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx); + + if (txp == first) + txp = txfrags; + else + txp++; } if (frag_overflow) { @@ -406,7 +471,8 @@ skb_shinfo(skb)->frag_list = nskb; } - return gop; + (*copy_ops) = cop - queue->tx_copy_ops; + (*map_ops) = gop - queue->tx_map_ops; } static inline void xenvif_grant_handle_set(struct xenvif_queue *queue, @@ -442,7 +508,7 @@ struct gnttab_copy **gopp_copy) { struct gnttab_map_grant_ref *gop_map = *gopp_map; - u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx; + u16 pending_idx; /* This always points to the shinfo of the skb being checked, which * could be either the first or the one on the frag_list */ @@ -453,24 +519,37 @@ struct skb_shared_info *first_shinfo = NULL; int nr_frags = shinfo->nr_frags; const bool sharedslot = nr_frags && - frag_get_pending_idx(&shinfo->frags[0]) == pending_idx; + frag_get_pending_idx(&shinfo->frags[0]) == + copy_pending_idx(skb, copy_count(skb) - 1); int i, err; - /* Check status of header. */ - err = (*gopp_copy)->status; - if (unlikely(err)) { - if (net_ratelimit()) - netdev_dbg(queue->vif->dev, - "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n", - (*gopp_copy)->status, - pending_idx, - (*gopp_copy)->source.u.ref); - /* The first frag might still have this slot mapped */ - if (!sharedslot) - xenvif_idx_release(queue, pending_idx, - XEN_NETIF_RSP_ERROR); + for (i = 0; i < copy_count(skb); i++) { + int newerr; + + /* Check status of header. */ + pending_idx = copy_pending_idx(skb, i); + + newerr = (*gopp_copy)->status; + if (likely(!newerr)) { + /* The first frag might still have this slot mapped */ + if (i < copy_count(skb) - 1 || !sharedslot) + xenvif_idx_release(queue, pending_idx, + XEN_NETIF_RSP_OKAY); + } else { + err = newerr; + if (net_ratelimit()) + netdev_dbg(queue->vif->dev, + "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n", + (*gopp_copy)->status, + pending_idx, + (*gopp_copy)->source.u.ref); + /* The first frag might still have this slot mapped */ + if (i < copy_count(skb) - 1 || !sharedslot) + xenvif_idx_release(queue, pending_idx, + XEN_NETIF_RSP_ERROR); + } + (*gopp_copy)++; } - (*gopp_copy)++; check_frags: for (i = 0; i < nr_frags; i++, gop_map++) { @@ -492,7 +571,7 @@ * the header's copy failed, and they are * sharing a slot, send an error */ - if (i == 0 && sharedslot) + if (i == 0 && !first_shinfo && sharedslot) xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR); else @@ -517,14 +596,6 @@ if (err) continue; - /* First error: if the header haven't shared a slot with the - * first frag, release it as well. - */ - if (!sharedslot) - xenvif_idx_release(queue, - XENVIF_TX_CB(skb)->pending_idx, - XEN_NETIF_RSP_OKAY); - /* Invalidate preceding fragments of this skb. */ for (j = 0; j < i; j++) { pending_idx = frag_get_pending_idx(&shinfo->frags[j]); @@ -794,7 +865,6 @@ unsigned *copy_ops, unsigned *map_ops) { - struct gnttab_map_grant_ref *gop = queue->tx_map_ops; struct sk_buff *skb, *nskb; int ret; unsigned int frag_overflow; @@ -876,8 +946,12 @@ continue; } + data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN) ? + XEN_NETBACK_TX_COPY_LEN : txreq.size; + ret = xenvif_count_requests(queue, &txreq, extra_count, txfrags, work_to_do); + if (unlikely(ret < 0)) break; @@ -903,9 +977,8 @@ index = pending_index(queue->pending_cons); pending_idx = queue->pending_ring[index]; - data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN && - ret < XEN_NETBK_LEGACY_SLOTS_MAX) ? - XEN_NETBACK_TX_COPY_LEN : txreq.size; + if (ret >= XEN_NETBK_LEGACY_SLOTS_MAX - 1 && data_len < txreq.size) + data_len = txreq.size; skb = xenvif_alloc_skb(data_len); if (unlikely(skb == NULL)) { @@ -916,8 +989,6 @@ } skb_shinfo(skb)->nr_frags = ret; - if (data_len < txreq.size) - skb_shinfo(skb)->nr_frags++; /* At this point shinfo->nr_frags is in fact the number of * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX. */ @@ -979,54 +1050,19 @@ type); } - XENVIF_TX_CB(skb)->pending_idx = pending_idx; - - __skb_put(skb, data_len); - queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref; - queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid; - queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset; - - queue->tx_copy_ops[*copy_ops].dest.u.gmfn = - virt_to_gfn(skb->data); - queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF; - queue->tx_copy_ops[*copy_ops].dest.offset = - offset_in_page(skb->data) & ~XEN_PAGE_MASK; - - queue->tx_copy_ops[*copy_ops].len = data_len; - queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref; - - (*copy_ops)++; - - if (data_len < txreq.size) { - frag_set_pending_idx(&skb_shinfo(skb)->frags[0], - pending_idx); - xenvif_tx_create_map_op(queue, pending_idx, &txreq, - extra_count, gop); - gop++; - } else { - frag_set_pending_idx(&skb_shinfo(skb)->frags[0], - INVALID_PENDING_IDX); - memcpy(&queue->pending_tx_info[pending_idx].req, - &txreq, sizeof(txreq)); - queue->pending_tx_info[pending_idx].extra_count = - extra_count; - } - - queue->pending_cons++; - - gop = xenvif_get_requests(queue, skb, txfrags, gop, - frag_overflow, nskb); + xenvif_get_requests(queue, skb, &txreq, txfrags, copy_ops, + map_ops, frag_overflow, nskb, extra_count, + data_len); __skb_queue_tail(&queue->tx_queue, skb); queue->tx.req_cons = idx; - if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) || + if ((*map_ops >= ARRAY_SIZE(queue->tx_map_ops)) || (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops))) break; } - (*map_ops) = gop - queue->tx_map_ops; return; } @@ -1105,9 +1141,8 @@ while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) { struct xen_netif_tx_request *txp; u16 pending_idx; - unsigned data_len; - pending_idx = XENVIF_TX_CB(skb)->pending_idx; + pending_idx = copy_pending_idx(skb, 0); txp = &queue->pending_tx_info[pending_idx].req; /* Check the remap error code. */ @@ -1126,18 +1161,6 @@ continue; } - data_len = skb->len; - callback_param(queue, pending_idx).ctx = NULL; - if (data_len < txp->size) { - /* Append the packet payload as a fragment. */ - txp->offset += data_len; - txp->size -= data_len; - } else { - /* Schedule a response immediately. */ - xenvif_idx_release(queue, pending_idx, - XEN_NETIF_RSP_OKAY); - } - if (txp->flags & XEN_NETTXF_csum_blank) skb->ip_summed = CHECKSUM_PARTIAL; else if (txp->flags & XEN_NETTXF_data_validated) @@ -1323,7 +1346,7 @@ /* Called after netfront has transmitted */ int xenvif_tx_action(struct xenvif_queue *queue, int budget) { - unsigned nr_mops, nr_cops = 0; + unsigned nr_mops = 0, nr_cops = 0; int work_done, ret; if (unlikely(!tx_work_todo(queue))) diff -u linux-azure-5.4.0/drivers/net/xen-netback/rx.c linux-azure-5.4.0/drivers/net/xen-netback/rx.c --- linux-azure-5.4.0/drivers/net/xen-netback/rx.c +++ linux-azure-5.4.0/drivers/net/xen-netback/rx.c @@ -33,28 +33,36 @@ #include #include -static bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue) +/* + * Update the needed ring page slots for the first SKB queued. + * Note that any call sequence outside the RX thread calling this function + * needs to wake up the RX thread via a call of xenvif_kick_thread() + * afterwards in order to avoid a race with putting the thread to sleep. + */ +static void xenvif_update_needed_slots(struct xenvif_queue *queue, + const struct sk_buff *skb) { - RING_IDX prod, cons; - struct sk_buff *skb; - int needed; - unsigned long flags; - - spin_lock_irqsave(&queue->rx_queue.lock, flags); + unsigned int needed = 0; - skb = skb_peek(&queue->rx_queue); - if (!skb) { - spin_unlock_irqrestore(&queue->rx_queue.lock, flags); - return false; + if (skb) { + needed = DIV_ROUND_UP(skb->len, XEN_PAGE_SIZE); + if (skb_is_gso(skb)) + needed++; + if (skb->sw_hash) + needed++; } - needed = DIV_ROUND_UP(skb->len, XEN_PAGE_SIZE); - if (skb_is_gso(skb)) - needed++; - if (skb->sw_hash) - needed++; + WRITE_ONCE(queue->rx_slots_needed, needed); +} - spin_unlock_irqrestore(&queue->rx_queue.lock, flags); +static bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue) +{ + RING_IDX prod, cons; + unsigned int needed; + + needed = READ_ONCE(queue->rx_slots_needed); + if (!needed) + return false; do { prod = queue->rx.sring->req_prod; @@ -80,13 +88,19 @@ spin_lock_irqsave(&queue->rx_queue.lock, flags); - __skb_queue_tail(&queue->rx_queue, skb); - - queue->rx_queue_len += skb->len; - if (queue->rx_queue_len > queue->rx_queue_max) { + if (queue->rx_queue_len >= queue->rx_queue_max) { struct net_device *dev = queue->vif->dev; netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id)); + kfree_skb(skb); + queue->vif->dev->stats.rx_dropped++; + } else { + if (skb_queue_empty(&queue->rx_queue)) + xenvif_update_needed_slots(queue, skb); + + __skb_queue_tail(&queue->rx_queue, skb); + + queue->rx_queue_len += skb->len; } spin_unlock_irqrestore(&queue->rx_queue.lock, flags); @@ -100,6 +114,8 @@ skb = __skb_dequeue(&queue->rx_queue); if (skb) { + xenvif_update_needed_slots(queue, skb_peek(&queue->rx_queue)); + queue->rx_queue_len -= skb->len; if (queue->rx_queue_len < queue->rx_queue_max) { struct netdev_queue *txq; @@ -134,6 +150,7 @@ break; xenvif_rx_dequeue(queue); kfree_skb(skb); + queue->vif->dev->stats.rx_dropped++; } } @@ -465,6 +482,7 @@ queue->rx_copy.completed = &completed_skbs; while (xenvif_rx_ring_slots_available(queue) && + !skb_queue_empty(&queue->rx_queue) && work_done < RX_BATCH_SIZE) { xenvif_rx_skb(queue); work_done++; @@ -474,27 +492,31 @@ xenvif_rx_copy_flush(queue); } -static bool xenvif_rx_queue_stalled(struct xenvif_queue *queue) +static RING_IDX xenvif_rx_queue_slots(const struct xenvif_queue *queue) { RING_IDX prod, cons; prod = queue->rx.sring->req_prod; cons = queue->rx.req_cons; + return prod - cons; +} + +static bool xenvif_rx_queue_stalled(const struct xenvif_queue *queue) +{ + unsigned int needed = READ_ONCE(queue->rx_slots_needed); + return !queue->stalled && - prod - cons < 1 && + xenvif_rx_queue_slots(queue) < needed && time_after(jiffies, queue->last_rx_time + queue->vif->stall_timeout); } static bool xenvif_rx_queue_ready(struct xenvif_queue *queue) { - RING_IDX prod, cons; - - prod = queue->rx.sring->req_prod; - cons = queue->rx.req_cons; + unsigned int needed = READ_ONCE(queue->rx_slots_needed); - return queue->stalled && prod - cons >= 1; + return queue->stalled && xenvif_rx_queue_slots(queue) >= needed; } bool xenvif_have_rx_work(struct xenvif_queue *queue, bool test_kthread) diff -u linux-azure-5.4.0/drivers/net/xen-netback/xenbus.c linux-azure-5.4.0/drivers/net/xen-netback/xenbus.c --- linux-azure-5.4.0/drivers/net/xen-netback/xenbus.c +++ linux-azure-5.4.0/drivers/net/xen-netback/xenbus.c @@ -435,6 +435,7 @@ unsigned int queue_index; xen_unregister_watchers(vif); + xenbus_rm(XBT_NIL, be->dev->nodename, "hotplug-status"); #ifdef CONFIG_DEBUG_FS xenvif_debugfs_delif(vif); #endif /* CONFIG_DEBUG_FS */ @@ -979,15 +980,11 @@ xenvif_carrier_on(be->vif); unregister_hotplug_status_watch(be); - if (xenbus_exists(XBT_NIL, dev->nodename, "hotplug-status")) { - err = xenbus_watch_pathfmt(dev, &be->hotplug_status_watch, - NULL, hotplug_status_changed, - "%s/%s", dev->nodename, - "hotplug-status"); - if (err) - goto err; + err = xenbus_watch_pathfmt(dev, &be->hotplug_status_watch, NULL, + hotplug_status_changed, + "%s/%s", dev->nodename, "hotplug-status"); + if (!err) be->have_hotplug_status_watch = 1; - } netif_tx_wake_all_queues(be->vif->dev); diff -u linux-azure-5.4.0/drivers/net/xen-netfront.c linux-azure-5.4.0/drivers/net/xen-netfront.c --- linux-azure-5.4.0/drivers/net/xen-netfront.c +++ linux-azure-5.4.0/drivers/net/xen-netfront.c @@ -63,6 +63,10 @@ MODULE_PARM_DESC(max_queues, "Maximum number of queues per virtual interface"); +static bool __read_mostly xennet_trusted = true; +module_param_named(trusted, xennet_trusted, bool, 0644); +MODULE_PARM_DESC(trusted, "Is the backend trusted"); + #define XENNET_TIMEOUT (5 * HZ) static const struct ethtool_ops xennet_ethtool_ops; @@ -121,21 +125,17 @@ /* * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries - * are linked from tx_skb_freelist through skb_entry.link. - * - * NB. Freelist index entries are always going to be less than - * PAGE_OFFSET, whereas pointers to skbs will always be equal or - * greater than PAGE_OFFSET: we use this property to distinguish - * them. + * are linked from tx_skb_freelist through tx_link. */ - union skb_entry { - struct sk_buff *skb; - unsigned long link; - } tx_skbs[NET_TX_RING_SIZE]; + struct sk_buff *tx_skbs[NET_TX_RING_SIZE]; + unsigned short tx_link[NET_TX_RING_SIZE]; +#define TX_LINK_NONE 0xffff +#define TX_PENDING 0xfffe grant_ref_t gref_tx_head; grant_ref_t grant_tx_ref[NET_TX_RING_SIZE]; struct page *grant_tx_page[NET_TX_RING_SIZE]; unsigned tx_skb_freelist; + unsigned int tx_pend_queue; spinlock_t rx_lock ____cacheline_aligned_in_smp; struct xen_netif_rx_front_ring rx; @@ -146,6 +146,9 @@ struct sk_buff *rx_skbs[NET_RX_RING_SIZE]; grant_ref_t gref_rx_head; grant_ref_t grant_rx_ref[NET_RX_RING_SIZE]; + + unsigned int rx_rsp_unconsumed; + spinlock_t rx_cons_lock; }; struct netfront_info { @@ -161,6 +164,12 @@ struct netfront_stats __percpu *rx_stats; struct netfront_stats __percpu *tx_stats; + /* Is device behaving sane? */ + bool broken; + + /* Should skbs be bounced into a zeroed buffer? */ + bool bounce; + atomic_t rx_gso_checksum_fixup; }; @@ -169,33 +178,25 @@ struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1]; }; -static void skb_entry_set_link(union skb_entry *list, unsigned short id) -{ - list->link = id; -} - -static int skb_entry_is_link(const union skb_entry *list) -{ - BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link)); - return (unsigned long)list->skb < PAGE_OFFSET; -} - /* * Access macros for acquiring freeing slots in tx_skbs[]. */ -static void add_id_to_freelist(unsigned *head, union skb_entry *list, - unsigned short id) +static void add_id_to_list(unsigned *head, unsigned short *list, + unsigned short id) { - skb_entry_set_link(&list[id], *head); + list[id] = *head; *head = id; } -static unsigned short get_id_from_freelist(unsigned *head, - union skb_entry *list) +static unsigned short get_id_from_list(unsigned *head, unsigned short *list) { unsigned int id = *head; - *head = list[id].link; + + if (id != TX_LINK_NONE) { + *head = list[id]; + list[id] = TX_LINK_NONE; + } return id; } @@ -267,7 +268,7 @@ if (unlikely(!skb)) return NULL; - page = alloc_page(GFP_ATOMIC | __GFP_NOWARN); + page = alloc_page(GFP_ATOMIC | __GFP_NOWARN | __GFP_ZERO); if (!page) { kfree_skb(skb); return NULL; @@ -351,7 +352,7 @@ unsigned int i = 0; struct netfront_queue *queue = NULL; - if (!np->queues) + if (!np->queues || np->broken) return -ENODEV; for (i = 0; i < num_queues; ++i) { @@ -373,41 +374,62 @@ return 0; } -static void xennet_tx_buf_gc(struct netfront_queue *queue) +static bool xennet_tx_buf_gc(struct netfront_queue *queue) { RING_IDX cons, prod; unsigned short id; struct sk_buff *skb; bool more_to_do; + bool work_done = false; + const struct device *dev = &queue->info->netdev->dev; BUG_ON(!netif_carrier_ok(queue->info->netdev)); do { prod = queue->tx.sring->rsp_prod; + if (RING_RESPONSE_PROD_OVERFLOW(&queue->tx, prod)) { + dev_alert(dev, "Illegal number of responses %u\n", + prod - queue->tx.rsp_cons); + goto err; + } rmb(); /* Ensure we see responses up to 'rp'. */ for (cons = queue->tx.rsp_cons; cons != prod; cons++) { - struct xen_netif_tx_response *txrsp; + struct xen_netif_tx_response txrsp; - txrsp = RING_GET_RESPONSE(&queue->tx, cons); - if (txrsp->status == XEN_NETIF_RSP_NULL) + work_done = true; + + RING_COPY_RESPONSE(&queue->tx, cons, &txrsp); + if (txrsp.status == XEN_NETIF_RSP_NULL) continue; - id = txrsp->id; - skb = queue->tx_skbs[id].skb; - if (unlikely(gnttab_query_foreign_access( - queue->grant_tx_ref[id]) != 0)) { - pr_alert("%s: warning -- grant still in use by backend domain\n", - __func__); - BUG(); + id = txrsp.id; + if (id >= RING_SIZE(&queue->tx)) { + dev_alert(dev, + "Response has incorrect id (%u)\n", + id); + goto err; + } + if (queue->tx_link[id] != TX_PENDING) { + dev_alert(dev, + "Response for inactive request\n"); + goto err; + } + + queue->tx_link[id] = TX_LINK_NONE; + skb = queue->tx_skbs[id]; + queue->tx_skbs[id] = NULL; + if (unlikely(!gnttab_end_foreign_access_ref( + queue->grant_tx_ref[id], GNTMAP_readonly))) { + dev_alert(dev, + "Grant still in use by backend domain\n"); + goto err; } - gnttab_end_foreign_access_ref( - queue->grant_tx_ref[id], GNTMAP_readonly); gnttab_release_grant_reference( &queue->gref_tx_head, queue->grant_tx_ref[id]); queue->grant_tx_ref[id] = GRANT_INVALID_REF; queue->grant_tx_page[id] = NULL; - add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, id); + add_id_to_list(&queue->tx_skb_freelist, queue->tx_link, id); dev_kfree_skb_irq(skb); } @@ -417,13 +439,22 @@ } while (more_to_do); xennet_maybe_wake_tx(queue); + + return work_done; + + err: + queue->info->broken = true; + dev_alert(dev, "Disabled for further use\n"); + + return work_done; } struct xennet_gnttab_make_txreq { struct netfront_queue *queue; struct sk_buff *skb; struct page *page; - struct xen_netif_tx_request *tx; /* Last request */ + struct xen_netif_tx_request *tx; /* Last request on ring page */ + struct xen_netif_tx_request tx_local; /* Last request local copy*/ unsigned int size; }; @@ -439,7 +470,7 @@ struct netfront_queue *queue = info->queue; struct sk_buff *skb = info->skb; - id = get_id_from_freelist(&queue->tx_skb_freelist, queue->tx_skbs); + id = get_id_from_list(&queue->tx_skb_freelist, queue->tx_link); tx = RING_GET_REQUEST(&queue->tx, queue->tx.req_prod_pvt++); ref = gnttab_claim_grant_reference(&queue->gref_tx_head); WARN_ON_ONCE(IS_ERR_VALUE((unsigned long)(int)ref)); @@ -447,34 +478,37 @@ gnttab_grant_foreign_access_ref(ref, queue->info->xbdev->otherend_id, gfn, GNTMAP_readonly); - queue->tx_skbs[id].skb = skb; + queue->tx_skbs[id] = skb; queue->grant_tx_page[id] = page; queue->grant_tx_ref[id] = ref; - tx->id = id; - tx->gref = ref; - tx->offset = offset; - tx->size = len; - tx->flags = 0; + info->tx_local.id = id; + info->tx_local.gref = ref; + info->tx_local.offset = offset; + info->tx_local.size = len; + info->tx_local.flags = 0; + + *tx = info->tx_local; + + /* + * Put the request in the pending queue, it will be set to be pending + * when the producer index is about to be raised. + */ + add_id_to_list(&queue->tx_pend_queue, queue->tx_link, id); info->tx = tx; - info->size += tx->size; + info->size += info->tx_local.size; } static struct xen_netif_tx_request *xennet_make_first_txreq( - struct netfront_queue *queue, struct sk_buff *skb, - struct page *page, unsigned int offset, unsigned int len) + struct xennet_gnttab_make_txreq *info, + unsigned int offset, unsigned int len) { - struct xennet_gnttab_make_txreq info = { - .queue = queue, - .skb = skb, - .page = page, - .size = 0, - }; + info->size = 0; - gnttab_for_one_grant(page, offset, len, xennet_tx_setup_grant, &info); + gnttab_for_one_grant(info->page, offset, len, xennet_tx_setup_grant, info); - return info.tx; + return info->tx; } static void xennet_make_one_txreq(unsigned long gfn, unsigned int offset, @@ -487,35 +521,27 @@ xennet_tx_setup_grant(gfn, offset, len, data); } -static struct xen_netif_tx_request *xennet_make_txreqs( - struct netfront_queue *queue, struct xen_netif_tx_request *tx, - struct sk_buff *skb, struct page *page, +static void xennet_make_txreqs( + struct xennet_gnttab_make_txreq *info, + struct page *page, unsigned int offset, unsigned int len) { - struct xennet_gnttab_make_txreq info = { - .queue = queue, - .skb = skb, - .tx = tx, - }; - /* Skip unused frames from start of page */ page += offset >> PAGE_SHIFT; offset &= ~PAGE_MASK; while (len) { - info.page = page; - info.size = 0; + info->page = page; + info->size = 0; gnttab_foreach_grant_in_range(page, offset, len, xennet_make_one_txreq, - &info); + info); page++; offset = 0; - len -= info.size; + len -= info->size; } - - return info.tx; } /* @@ -562,13 +588,50 @@ return queue_idx; } +static void xennet_mark_tx_pending(struct netfront_queue *queue) +{ + unsigned int i; + + while ((i = get_id_from_list(&queue->tx_pend_queue, queue->tx_link)) != + TX_LINK_NONE) + queue->tx_link[i] = TX_PENDING; +} + +struct sk_buff *bounce_skb(const struct sk_buff *skb) +{ + unsigned int headerlen = skb_headroom(skb); + /* Align size to allocate full pages and avoid contiguous data leaks */ + unsigned int size = ALIGN(skb_end_offset(skb) + skb->data_len, + XEN_PAGE_SIZE); + struct sk_buff *n = alloc_skb(size, GFP_ATOMIC | __GFP_ZERO); + + if (!n) + return NULL; + + if (!IS_ALIGNED((uintptr_t)n->head, XEN_PAGE_SIZE)) { + WARN_ONCE(1, "misaligned skb allocated\n"); + kfree_skb(n); + return NULL; + } + + /* Set the data pointer */ + skb_reserve(n, headerlen); + /* Set the tail pointer and length */ + skb_put(n, skb->len); + + BUG_ON(skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len)); + + skb_copy_header(n, skb); + return n; +} + #define MAX_XEN_SKB_FRAGS (65536 / XEN_PAGE_SIZE + 1) static netdev_tx_t xennet_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct netfront_info *np = netdev_priv(dev); struct netfront_stats *tx_stats = this_cpu_ptr(np->tx_stats); - struct xen_netif_tx_request *tx, *first_tx; + struct xen_netif_tx_request *first_tx; unsigned int i; int notify; int slots; @@ -577,6 +640,7 @@ unsigned int len; unsigned long flags; struct netfront_queue *queue = NULL; + struct xennet_gnttab_make_txreq info = { }; unsigned int num_queues = dev->real_num_tx_queues; u16 queue_index; struct sk_buff *nskb; @@ -584,6 +648,8 @@ /* Drop the packet if no queues are set up */ if (num_queues < 1) goto drop; + if (unlikely(np->broken)) + goto drop; /* Determine which queue to transmit this SKB on */ queue_index = skb_get_queue_mapping(skb); queue = &np->queues[queue_index]; @@ -611,9 +677,13 @@ /* The first req should be at least ETH_HLEN size or the packet will be * dropped by netback. + * + * If the backend is not trusted bounce all data to zeroed pages to + * avoid exposing contiguous data on the granted page not belonging to + * the skb. */ - if (unlikely(PAGE_SIZE - offset < ETH_HLEN)) { - nskb = skb_copy(skb, GFP_ATOMIC); + if (np->bounce || unlikely(PAGE_SIZE - offset < ETH_HLEN)) { + nskb = bounce_skb(skb); if (!nskb) goto drop; dev_consume_skb_any(skb); @@ -634,21 +704,24 @@ } /* First request for the linear area. */ - first_tx = tx = xennet_make_first_txreq(queue, skb, - page, offset, len); - offset += tx->size; + info.queue = queue; + info.skb = skb; + info.page = page; + first_tx = xennet_make_first_txreq(&info, offset, len); + offset += info.tx_local.size; if (offset == PAGE_SIZE) { page++; offset = 0; } - len -= tx->size; + len -= info.tx_local.size; if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */ - tx->flags |= XEN_NETTXF_csum_blank | XEN_NETTXF_data_validated; + first_tx->flags |= XEN_NETTXF_csum_blank | + XEN_NETTXF_data_validated; else if (skb->ip_summed == CHECKSUM_UNNECESSARY) /* remote but checksummed. */ - tx->flags |= XEN_NETTXF_data_validated; + first_tx->flags |= XEN_NETTXF_data_validated; /* Optional extra info after the first request. */ if (skb_shinfo(skb)->gso_size) { @@ -657,7 +730,7 @@ gso = (struct xen_netif_extra_info *) RING_GET_REQUEST(&queue->tx, queue->tx.req_prod_pvt++); - tx->flags |= XEN_NETTXF_extra_info; + first_tx->flags |= XEN_NETTXF_extra_info; gso->u.gso.size = skb_shinfo(skb)->gso_size; gso->u.gso.type = (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) ? @@ -671,12 +744,12 @@ } /* Requests for the rest of the linear area. */ - tx = xennet_make_txreqs(queue, tx, skb, page, offset, len); + xennet_make_txreqs(&info, page, offset, len); /* Requests for all the frags. */ for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; - tx = xennet_make_txreqs(queue, tx, skb, skb_frag_page(frag), + xennet_make_txreqs(&info, skb_frag_page(frag), skb_frag_off(frag), skb_frag_size(frag)); } @@ -684,6 +757,8 @@ /* First request has the packet length. */ first_tx->size = skb->len; + xennet_mark_tx_pending(queue); + RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->tx, notify); if (notify) notify_remote_via_irq(queue->tx_irq); @@ -723,6 +798,38 @@ return 0; } +static void xennet_destroy_queues(struct netfront_info *info) +{ + unsigned int i; + + for (i = 0; i < info->netdev->real_num_tx_queues; i++) { + struct netfront_queue *queue = &info->queues[i]; + + if (netif_running(info->netdev)) + napi_disable(&queue->napi); + netif_napi_del(&queue->napi); + } + + kfree(info->queues); + info->queues = NULL; +} + +static void xennet_uninit(struct net_device *dev) +{ + struct netfront_info *np = netdev_priv(dev); + xennet_destroy_queues(np); +} + +static void xennet_set_rx_rsp_cons(struct netfront_queue *queue, RING_IDX val) +{ + unsigned long flags; + + spin_lock_irqsave(&queue->rx_cons_lock, flags); + queue->rx.rsp_cons = val; + queue->rx_rsp_unconsumed = RING_HAS_UNCONSUMED_RESPONSES(&queue->rx); + spin_unlock_irqrestore(&queue->rx_cons_lock, flags); +} + static void xennet_move_rx_slot(struct netfront_queue *queue, struct sk_buff *skb, grant_ref_t ref) { @@ -741,7 +848,7 @@ RING_IDX rp) { - struct xen_netif_extra_info *extra; + struct xen_netif_extra_info extra; struct device *dev = &queue->info->netdev->dev; RING_IDX cons = queue->rx.rsp_cons; int err = 0; @@ -757,26 +864,24 @@ break; } - extra = (struct xen_netif_extra_info *) - RING_GET_RESPONSE(&queue->rx, ++cons); + RING_COPY_RESPONSE(&queue->rx, ++cons, &extra); - if (unlikely(!extra->type || - extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) { + if (unlikely(!extra.type || + extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) { if (net_ratelimit()) dev_warn(dev, "Invalid extra type: %d\n", - extra->type); + extra.type); err = -EINVAL; } else { - memcpy(&extras[extra->type - 1], extra, - sizeof(*extra)); + extras[extra.type - 1] = extra; } skb = xennet_get_rx_skb(queue, cons); ref = xennet_get_rx_ref(queue, cons); xennet_move_rx_slot(queue, skb, ref); - } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE); + } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE); - queue->rx.rsp_cons = cons; + xennet_set_rx_rsp_cons(queue, cons); return err; } @@ -784,7 +889,7 @@ struct netfront_rx_info *rinfo, RING_IDX rp, struct sk_buff_head *list) { - struct xen_netif_rx_response *rx = &rinfo->rx; + struct xen_netif_rx_response *rx = &rinfo->rx, rx_local; struct xen_netif_extra_info *extras = rinfo->extras; struct device *dev = &queue->info->netdev->dev; RING_IDX cons = queue->rx.rsp_cons; @@ -793,7 +898,6 @@ int max = XEN_NETIF_NR_SLOTS_MIN + (rx->status <= RX_COPY_THRESHOLD); int slots = 1; int err = 0; - unsigned long ret; if (rx->flags & XEN_NETRXF_extra_info) { err = xennet_get_extras(queue, extras, rp); @@ -824,8 +928,13 @@ goto next; } - ret = gnttab_end_foreign_access_ref(ref, 0); - BUG_ON(!ret); + if (!gnttab_end_foreign_access_ref(ref, 0)) { + dev_alert(dev, + "Grant still in use by backend domain\n"); + queue->info->broken = true; + dev_alert(dev, "Disabled for further use\n"); + return -EINVAL; + } gnttab_release_grant_reference(&queue->gref_rx_head, ref); @@ -842,7 +951,8 @@ break; } - rx = RING_GET_RESPONSE(&queue->rx, cons + slots); + RING_COPY_RESPONSE(&queue->rx, cons + slots, &rx_local); + rx = &rx_local; skb = xennet_get_rx_skb(queue, cons + slots); ref = xennet_get_rx_ref(queue, cons + slots); slots++; @@ -855,7 +965,7 @@ } if (unlikely(err)) - queue->rx.rsp_cons = cons + slots; + xennet_set_rx_rsp_cons(queue, cons + slots); return err; } @@ -897,10 +1007,11 @@ struct sk_buff *nskb; while ((nskb = __skb_dequeue(list))) { - struct xen_netif_rx_response *rx = - RING_GET_RESPONSE(&queue->rx, ++cons); + struct xen_netif_rx_response rx; skb_frag_t *nfrag = &skb_shinfo(nskb)->frags[0]; + RING_COPY_RESPONSE(&queue->rx, ++cons, &rx); + if (skb_shinfo(skb)->nr_frags == MAX_SKB_FRAGS) { unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to; @@ -908,20 +1019,21 @@ __pskb_pull_tail(skb, pull_to - skb_headlen(skb)); } if (unlikely(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS)) { - queue->rx.rsp_cons = ++cons + skb_queue_len(list); + xennet_set_rx_rsp_cons(queue, + ++cons + skb_queue_len(list)); kfree_skb(nskb); return -ENOENT; } skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, skb_frag_page(nfrag), - rx->offset, rx->status, PAGE_SIZE); + rx.offset, rx.status, PAGE_SIZE); skb_shinfo(nskb)->nr_frags = 0; kfree_skb(nskb); } - queue->rx.rsp_cons = cons; + xennet_set_rx_rsp_cons(queue, cons); return 0; } @@ -1008,17 +1120,28 @@ skb_queue_head_init(&tmpq); rp = queue->rx.sring->rsp_prod; + if (RING_RESPONSE_PROD_OVERFLOW(&queue->rx, rp)) { + dev_alert(&dev->dev, "Illegal number of responses %u\n", + rp - queue->rx.rsp_cons); + queue->info->broken = true; + spin_unlock(&queue->rx_lock); + return 0; + } rmb(); /* Ensure we see queued responses up to 'rp'. */ i = queue->rx.rsp_cons; work_done = 0; while ((i != rp) && (work_done < budget)) { - memcpy(rx, RING_GET_RESPONSE(&queue->rx, i), sizeof(*rx)); + RING_COPY_RESPONSE(&queue->rx, i, rx); memset(extras, 0, sizeof(rinfo.extras)); err = xennet_get_responses(queue, &rinfo, rp, &tmpq); if (unlikely(err)) { + if (queue->info->broken) { + spin_unlock(&queue->rx_lock); + return 0; + } err: while ((skb = __skb_dequeue(&tmpq))) __skb_queue_tail(&errq, skb); @@ -1035,7 +1158,9 @@ if (unlikely(xennet_set_skb_gso(skb, gso))) { __skb_queue_head(&tmpq, skb); - queue->rx.rsp_cons += skb_queue_len(&tmpq); + xennet_set_rx_rsp_cons(queue, + queue->rx.rsp_cons + + skb_queue_len(&tmpq)); goto err; } } @@ -1059,7 +1184,8 @@ __skb_queue_tail(&rxq, skb); - i = ++queue->rx.rsp_cons; + i = queue->rx.rsp_cons + 1; + xennet_set_rx_rsp_cons(queue, i); work_done++; } @@ -1135,17 +1261,18 @@ for (i = 0; i < NET_TX_RING_SIZE; i++) { /* Skip over entries which are actually freelist references */ - if (skb_entry_is_link(&queue->tx_skbs[i])) + if (!queue->tx_skbs[i]) continue; - skb = queue->tx_skbs[i].skb; + skb = queue->tx_skbs[i]; + queue->tx_skbs[i] = NULL; get_page(queue->grant_tx_page[i]); gnttab_end_foreign_access(queue->grant_tx_ref[i], GNTMAP_readonly, (unsigned long)page_address(queue->grant_tx_page[i])); queue->grant_tx_page[i] = NULL; queue->grant_tx_ref[i] = GRANT_INVALID_REF; - add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, i); + add_id_to_list(&queue->tx_skb_freelist, queue->tx_link, i); dev_kfree_skb_irq(skb); } } @@ -1220,34 +1347,79 @@ return 0; } -static irqreturn_t xennet_tx_interrupt(int irq, void *dev_id) +static bool xennet_handle_tx(struct netfront_queue *queue, unsigned int *eoi) { - struct netfront_queue *queue = dev_id; unsigned long flags; + if (unlikely(queue->info->broken)) + return false; + spin_lock_irqsave(&queue->tx_lock, flags); - xennet_tx_buf_gc(queue); + if (xennet_tx_buf_gc(queue)) + *eoi = 0; spin_unlock_irqrestore(&queue->tx_lock, flags); + return true; +} + +static irqreturn_t xennet_tx_interrupt(int irq, void *dev_id) +{ + unsigned int eoiflag = XEN_EOI_FLAG_SPURIOUS; + + if (likely(xennet_handle_tx(dev_id, &eoiflag))) + xen_irq_lateeoi(irq, eoiflag); + return IRQ_HANDLED; } -static irqreturn_t xennet_rx_interrupt(int irq, void *dev_id) +static bool xennet_handle_rx(struct netfront_queue *queue, unsigned int *eoi) { - struct netfront_queue *queue = dev_id; - struct net_device *dev = queue->info->netdev; + unsigned int work_queued; + unsigned long flags; + + if (unlikely(queue->info->broken)) + return false; + + spin_lock_irqsave(&queue->rx_cons_lock, flags); + work_queued = RING_HAS_UNCONSUMED_RESPONSES(&queue->rx); + if (work_queued > queue->rx_rsp_unconsumed) { + queue->rx_rsp_unconsumed = work_queued; + *eoi = 0; + } else if (unlikely(work_queued < queue->rx_rsp_unconsumed)) { + const struct device *dev = &queue->info->netdev->dev; + + spin_unlock_irqrestore(&queue->rx_cons_lock, flags); + dev_alert(dev, "RX producer index going backwards\n"); + dev_alert(dev, "Disabled for further use\n"); + queue->info->broken = true; + return false; + } + spin_unlock_irqrestore(&queue->rx_cons_lock, flags); - if (likely(netif_carrier_ok(dev) && - RING_HAS_UNCONSUMED_RESPONSES(&queue->rx))) + if (likely(netif_carrier_ok(queue->info->netdev) && work_queued)) napi_schedule(&queue->napi); + return true; +} + +static irqreturn_t xennet_rx_interrupt(int irq, void *dev_id) +{ + unsigned int eoiflag = XEN_EOI_FLAG_SPURIOUS; + + if (likely(xennet_handle_rx(dev_id, &eoiflag))) + xen_irq_lateeoi(irq, eoiflag); + return IRQ_HANDLED; } static irqreturn_t xennet_interrupt(int irq, void *dev_id) { - xennet_tx_interrupt(irq, dev_id); - xennet_rx_interrupt(irq, dev_id); + unsigned int eoiflag = XEN_EOI_FLAG_SPURIOUS; + + if (xennet_handle_tx(dev_id, &eoiflag) && + xennet_handle_rx(dev_id, &eoiflag)) + xen_irq_lateeoi(irq, eoiflag); + return IRQ_HANDLED; } @@ -1258,12 +1430,17 @@ struct netfront_info *info = netdev_priv(dev); unsigned int num_queues = dev->real_num_tx_queues; unsigned int i; + + if (info->broken) + return; + for (i = 0; i < num_queues; ++i) xennet_interrupt(0, &info->queues[i]); } #endif static const struct net_device_ops xennet_netdev_ops = { + .ndo_uninit = xennet_uninit, .ndo_open = xennet_open, .ndo_stop = xennet_close, .ndo_start_xmit = xennet_start_xmit, @@ -1439,6 +1616,10 @@ dev_dbg(&dev->dev, "%s\n", dev->nodename); + netif_tx_lock_bh(info->netdev); + netif_device_detach(info->netdev); + netif_tx_unlock_bh(info->netdev); + xennet_disconnect_backend(info); return 0; } @@ -1473,9 +1654,10 @@ if (err < 0) goto fail; - err = bind_evtchn_to_irqhandler(queue->tx_evtchn, - xennet_interrupt, - 0, queue->info->netdev->name, queue); + err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, + xennet_interrupt, 0, + queue->info->netdev->name, + queue); if (err < 0) goto bind_fail; queue->rx_evtchn = queue->tx_evtchn; @@ -1503,18 +1685,18 @@ snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name), "%s-tx", queue->name); - err = bind_evtchn_to_irqhandler(queue->tx_evtchn, - xennet_tx_interrupt, - 0, queue->tx_irq_name, queue); + err = bind_evtchn_to_irqhandler_lateeoi(queue->tx_evtchn, + xennet_tx_interrupt, 0, + queue->tx_irq_name, queue); if (err < 0) goto bind_tx_fail; queue->tx_irq = err; snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name), "%s-rx", queue->name); - err = bind_evtchn_to_irqhandler(queue->rx_evtchn, - xennet_rx_interrupt, - 0, queue->rx_irq_name, queue); + err = bind_evtchn_to_irqhandler_lateeoi(queue->rx_evtchn, + xennet_rx_interrupt, 0, + queue->rx_irq_name, queue); if (err < 0) goto bind_rx_fail; queue->rx_irq = err; @@ -1538,7 +1720,7 @@ struct netfront_queue *queue, unsigned int feature_split_evtchn) { struct xen_netif_tx_sring *txs; - struct xen_netif_rx_sring *rxs; + struct xen_netif_rx_sring *rxs = NULL; grant_ref_t gref; int err; @@ -1558,21 +1740,21 @@ err = xenbus_grant_ring(dev, txs, 1, &gref); if (err < 0) - goto grant_tx_ring_fail; + goto fail; queue->tx_ring_ref = gref; rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH); if (!rxs) { err = -ENOMEM; xenbus_dev_fatal(dev, err, "allocating rx ring page"); - goto alloc_rx_ring_fail; + goto fail; } SHARED_RING_INIT(rxs); FRONT_RING_INIT(&queue->rx, rxs, XEN_PAGE_SIZE); err = xenbus_grant_ring(dev, rxs, 1, &gref); if (err < 0) - goto grant_rx_ring_fail; + goto fail; queue->rx_ring_ref = gref; if (feature_split_evtchn) @@ -1585,22 +1767,28 @@ err = setup_netfront_single(queue); if (err) - goto alloc_evtchn_fail; + goto fail; return 0; /* If we fail to setup netfront, it is safe to just revoke access to * granted pages because backend is not accessing it at this point. */ -alloc_evtchn_fail: - gnttab_end_foreign_access_ref(queue->rx_ring_ref, 0); -grant_rx_ring_fail: - free_page((unsigned long)rxs); -alloc_rx_ring_fail: - gnttab_end_foreign_access_ref(queue->tx_ring_ref, 0); -grant_tx_ring_fail: - free_page((unsigned long)txs); -fail: + fail: + if (queue->rx_ring_ref != GRANT_INVALID_REF) { + gnttab_end_foreign_access(queue->rx_ring_ref, 0, + (unsigned long)rxs); + queue->rx_ring_ref = GRANT_INVALID_REF; + } else { + free_page((unsigned long)rxs); + } + if (queue->tx_ring_ref != GRANT_INVALID_REF) { + gnttab_end_foreign_access(queue->tx_ring_ref, 0, + (unsigned long)txs); + queue->tx_ring_ref = GRANT_INVALID_REF; + } else { + free_page((unsigned long)txs); + } return err; } @@ -1616,6 +1804,7 @@ spin_lock_init(&queue->tx_lock); spin_lock_init(&queue->rx_lock); + spin_lock_init(&queue->rx_cons_lock); timer_setup(&queue->rx_refill_timer, rx_refill_timeout, 0); @@ -1623,13 +1812,15 @@ snprintf(queue->name, sizeof(queue->name), "vif%s-q%u", devid, queue->id); - /* Initialise tx_skbs as a free chain containing every entry. */ + /* Initialise tx_skb_freelist as a free chain containing every entry. */ queue->tx_skb_freelist = 0; + queue->tx_pend_queue = TX_LINK_NONE; for (i = 0; i < NET_TX_RING_SIZE; i++) { - skb_entry_set_link(&queue->tx_skbs[i], i+1); + queue->tx_link[i] = i + 1; queue->grant_tx_ref[i] = GRANT_INVALID_REF; queue->grant_tx_page[i] = NULL; } + queue->tx_link[NET_TX_RING_SIZE - 1] = TX_LINK_NONE; /* Clear out rx_skbs */ for (i = 0; i < NET_RX_RING_SIZE; i++) { @@ -1743,22 +1934,6 @@ return err; } -static void xennet_destroy_queues(struct netfront_info *info) -{ - unsigned int i; - - for (i = 0; i < info->netdev->real_num_tx_queues; i++) { - struct netfront_queue *queue = &info->queues[i]; - - if (netif_running(info->netdev)) - napi_disable(&queue->napi); - netif_napi_del(&queue->napi); - } - - kfree(info->queues); - info->queues = NULL; -} - static int xennet_create_queues(struct netfront_info *info, unsigned int *num_queues) { @@ -1814,6 +1989,10 @@ info->netdev->irq = 0; + /* Check if backend is trusted. */ + info->bounce = !xennet_trusted || + !xenbus_read_unsigned(dev->nodename, "trusted", 1); + /* Check if backend supports multiple queues */ max_queues = xenbus_read_unsigned(info->xbdev->otherend, "multi-queue-max-queues", 1); @@ -1834,6 +2013,9 @@ if (info->queues) xennet_destroy_queues(info); + /* For the case of a reconnect reset the "broken" indicator. */ + info->broken = false; + err = xennet_create_queues(info, &num_queues); if (err < 0) { xenbus_dev_fatal(dev, err, "creating queues"); @@ -1964,6 +2146,9 @@ err = talk_to_netback(np->xbdev, np); if (err) return err; + if (np->bounce) + dev_info(&np->xbdev->dev, + "bouncing transmitted data to zeroed pages\n"); /* talk_to_netback() sets the correct number of queues */ num_queues = dev->real_num_tx_queues; @@ -1987,6 +2172,10 @@ * domain a kick because we've probably just requeued some * packets. */ + netif_tx_lock_bh(np->netdev); + netif_device_attach(np->netdev); + netif_tx_unlock_bh(np->netdev); + netif_carrier_on(np->netdev); for (j = 0; j < num_queues; ++j) { queue = &np->queues[j]; diff -u linux-azure-5.4.0/drivers/nfc/nxp-nci/i2c.c linux-azure-5.4.0/drivers/nfc/nxp-nci/i2c.c --- linux-azure-5.4.0/drivers/nfc/nxp-nci/i2c.c +++ linux-azure-5.4.0/drivers/nfc/nxp-nci/i2c.c @@ -122,7 +122,9 @@ skb_put_data(*skb, &header, NXP_NCI_FW_HDR_LEN); r = i2c_master_recv(client, skb_put(*skb, frame_len), frame_len); - if (r != frame_len) { + if (r < 0) { + goto fw_read_exit_free_skb; + } else if (r != frame_len) { nfc_err(&client->dev, "Invalid frame length: %u (expected %zu)\n", r, frame_len); @@ -162,8 +164,13 @@ skb_put_data(*skb, (void *)&header, NCI_CTRL_HDR_SIZE); + if (!header.plen) + return 0; + r = i2c_master_recv(client, skb_put(*skb, header.plen), header.plen); - if (r != header.plen) { + if (r < 0) { + goto nci_read_exit_free_skb; + } else if (r != header.plen) { nfc_err(&client->dev, "Invalid frame payload length: %u (expected %u)\n", r, header.plen); diff -u linux-azure-5.4.0/drivers/nfc/pn533/pn533.c linux-azure-5.4.0/drivers/nfc/pn533/pn533.c --- linux-azure-5.4.0/drivers/nfc/pn533/pn533.c +++ linux-azure-5.4.0/drivers/nfc/pn533/pn533.c @@ -2072,7 +2072,7 @@ frag = pn533_alloc_skb(dev, frag_size); if (!frag) { skb_queue_purge(&dev->fragment_skb); - break; + return -ENOMEM; } if (!dev->tgt_mode) { @@ -2143,7 +2143,7 @@ /* jumbo frame ? */ if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) { rc = pn533_fill_fragment_skbs(dev, skb); - if (rc <= 0) + if (rc < 0) goto error; skb = skb_dequeue(&dev->fragment_skb); @@ -2215,7 +2215,7 @@ /* let's split in multiple chunks if size's too big */ if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) { rc = pn533_fill_fragment_skbs(dev, skb); - if (rc <= 0) + if (rc < 0) goto error; /* get the first skb */ diff -u linux-azure-5.4.0/drivers/nfc/port100.c linux-azure-5.4.0/drivers/nfc/port100.c --- linux-azure-5.4.0/drivers/nfc/port100.c +++ linux-azure-5.4.0/drivers/nfc/port100.c @@ -1003,11 +1003,11 @@ skb = port100_alloc_skb(dev, 0); if (!skb) - return -ENOMEM; + return 0; resp = port100_send_cmd_sync(dev, PORT100_CMD_GET_COMMAND_TYPE, skb); if (IS_ERR(resp)) - return PTR_ERR(resp); + return 0; if (resp->len < 8) mask = 0; @@ -1609,7 +1609,9 @@ nfc_digital_free_device(dev->nfc_digital_dev); error: + usb_kill_urb(dev->in_urb); usb_free_urb(dev->in_urb); + usb_kill_urb(dev->out_urb); usb_free_urb(dev->out_urb); usb_put_dev(dev->udev); diff -u linux-azure-5.4.0/drivers/nfc/s3fwrn5/core.c linux-azure-5.4.0/drivers/nfc/s3fwrn5/core.c --- linux-azure-5.4.0/drivers/nfc/s3fwrn5/core.c +++ linux-azure-5.4.0/drivers/nfc/s3fwrn5/core.c @@ -97,11 +97,15 @@ } ret = s3fwrn5_write(info, skb); - if (ret < 0) + if (ret < 0) { kfree_skb(skb); + mutex_unlock(&info->mutex); + return ret; + } + consume_skb(skb); mutex_unlock(&info->mutex); - return ret; + return 0; } static int s3fwrn5_nci_post_setup(struct nci_dev *ndev) diff -u linux-azure-5.4.0/drivers/ntb/test/ntb_perf.c linux-azure-5.4.0/drivers/ntb/test/ntb_perf.c --- linux-azure-5.4.0/drivers/ntb/test/ntb_perf.c +++ linux-azure-5.4.0/drivers/ntb/test/ntb_perf.c @@ -597,6 +597,7 @@ return -ENOMEM; } if (!IS_ALIGNED(peer->inbuf_xlat, xlat_align)) { + ret = -EINVAL; dev_err(&perf->ntb->dev, "Unaligned inbuf allocated\n"); goto err_free_inbuf; } diff -u linux-azure-5.4.0/drivers/ntb/test/ntb_tool.c linux-azure-5.4.0/drivers/ntb/test/ntb_tool.c --- linux-azure-5.4.0/drivers/ntb/test/ntb_tool.c +++ linux-azure-5.4.0/drivers/ntb/test/ntb_tool.c @@ -367,14 +367,16 @@ u64 bits; int n; + if (*offp) + return 0; + buf = kmalloc(size + 1, GFP_KERNEL); if (!buf) return -ENOMEM; - ret = simple_write_to_buffer(buf, size, offp, ubuf, size); - if (ret < 0) { + if (copy_from_user(buf, ubuf, size)) { kfree(buf); - return ret; + return -EFAULT; } buf[size] = 0; diff -u linux-azure-5.4.0/drivers/nvdimm/bus.c linux-azure-5.4.0/drivers/nvdimm/bus.c --- linux-azure-5.4.0/drivers/nvdimm/bus.c +++ linux-azure-5.4.0/drivers/nvdimm/bus.c @@ -187,8 +187,8 @@ ndr_end = nd_region->ndr_start + nd_region->ndr_size - 1; /* make sure we are in the region */ - if (ctx->phys < nd_region->ndr_start - || (ctx->phys + ctx->cleared) > ndr_end) + if (ctx->phys < nd_region->ndr_start || + (ctx->phys + ctx->cleared - 1) > ndr_end) return 0; sector = (ctx->phys - nd_region->ndr_start) / 512; diff -u linux-azure-5.4.0/drivers/nvdimm/security.c linux-azure-5.4.0/drivers/nvdimm/security.c --- linux-azure-5.4.0/drivers/nvdimm/security.c +++ linux-azure-5.4.0/drivers/nvdimm/security.c @@ -379,11 +379,6 @@ || !nvdimm->sec.flags) return -EOPNOTSUPP; - if (dev->driver == NULL) { - dev_dbg(dev, "Unable to overwrite while DIMM active.\n"); - return -EINVAL; - } - rc = check_security_state(nvdimm); if (rc) return rc; diff -u linux-azure-5.4.0/drivers/nvme/host/Kconfig linux-azure-5.4.0/drivers/nvme/host/Kconfig --- linux-azure-5.4.0/drivers/nvme/host/Kconfig +++ linux-azure-5.4.0/drivers/nvme/host/Kconfig @@ -62,7 +62,8 @@ config NVME_TCP tristate "NVM Express over Fabrics TCP host driver" depends on INET - depends on BLK_DEV_NVME + depends on BLOCK + select NVME_CORE select NVME_FABRICS select CRYPTO select CRYPTO_CRC32C diff -u linux-azure-5.4.0/drivers/nvme/host/core.c linux-azure-5.4.0/drivers/nvme/host/core.c --- linux-azure-5.4.0/drivers/nvme/host/core.c +++ linux-azure-5.4.0/drivers/nvme/host/core.c @@ -694,7 +694,10 @@ cpu_to_le64(nvme_sect_to_lba(ns, blk_rq_pos(req))); cmnd->write_zeroes.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1); - cmnd->write_zeroes.control = 0; + if (nvme_ns_has_pi(ns)) + cmnd->write_zeroes.control = cpu_to_le16(NVME_RW_PRINFO_PRACT); + else + cmnd->write_zeroes.control = 0; return BLK_STS_OK; } @@ -2015,18 +2018,21 @@ enum pr_type type, bool abort) { u32 cdw10 = nvme_pr_type(type) << 8 | (abort ? 2 : 1); + return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire); } static int nvme_pr_clear(struct block_device *bdev, u64 key) { - u32 cdw10 = 1 | (key ? 1 << 3 : 0); - return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register); + u32 cdw10 = 1 | (key ? 0 : 1 << 3); + + return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release); } static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type) { - u32 cdw10 = nvme_pr_type(type) << 8 | (key ? 1 << 3 : 0); + u32 cdw10 = nvme_pr_type(type) << 8 | (key ? 0 : 1 << 3); + return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release); } @@ -2665,7 +2671,6 @@ nvme_init_subnqn(subsys, ctrl, id); memcpy(subsys->serial, id->sn, sizeof(subsys->serial)); memcpy(subsys->model, id->mn, sizeof(subsys->model)); - memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev)); subsys->vendor_id = le16_to_cpu(id->vid); subsys->cmic = id->cmic; subsys->awupf = le16_to_cpu(id->awupf); @@ -2818,6 +2823,8 @@ ctrl->quirks |= core_quirks[i].quirks; } } + memcpy(ctrl->subsys->firmware_rev, id->fr, + sizeof(ctrl->subsys->firmware_rev)); if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) { dev_warn(ctrl->device, "forcibly allowing all power states due to nvme_core.force_apst -- use at your own risk\n"); @@ -3893,7 +3900,14 @@ container_of(work, struct nvme_ctrl, async_event_work); nvme_aen_uevent(ctrl); - ctrl->ops->submit_async_event(ctrl); + + /* + * The transport drivers must guarantee AER submission here is safe by + * flushing ctrl async_event_work after changing the controller state + * from LIVE and before freeing the admin queue. + */ + if (ctrl->state == NVME_CTRL_LIVE) + ctrl->ops->submit_async_event(ctrl); } static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl) @@ -4024,6 +4038,8 @@ nvme_stop_keep_alive(ctrl); flush_work(&ctrl->async_event_work); cancel_work_sync(&ctrl->fw_act_work); + if (ctrl->ops->stop_ctrl) + ctrl->ops->stop_ctrl(ctrl); } EXPORT_SYMBOL_GPL(nvme_stop_ctrl); @@ -4037,6 +4053,7 @@ if (ctrl->queue_count > 1) { nvme_queue_scan(ctrl); nvme_start_queues(ctrl); + nvme_mpath_update(ctrl); } ctrl->created = true; } diff -u linux-azure-5.4.0/drivers/nvme/host/fabrics.c linux-azure-5.4.0/drivers/nvme/host/fabrics.c --- linux-azure-5.4.0/drivers/nvme/host/fabrics.c +++ linux-azure-5.4.0/drivers/nvme/host/fabrics.c @@ -336,6 +336,11 @@ cmd->connect.recfmt); break; + case NVME_SC_HOST_PATH_ERROR: + dev_err(ctrl->device, + "Connect command failed: host path error\n"); + break; + default: dev_err(ctrl->device, "Connect command failed, error wo/DNR bit: %d\n", diff -u linux-azure-5.4.0/drivers/nvme/host/multipath.c linux-azure-5.4.0/drivers/nvme/host/multipath.c --- linux-azure-5.4.0/drivers/nvme/host/multipath.c +++ linux-azure-5.4.0/drivers/nvme/host/multipath.c @@ -156,13 +156,12 @@ { struct nvme_ns *ns; - mutex_lock(&ctrl->scan_lock); down_read(&ctrl->namespaces_rwsem); - list_for_each_entry(ns, &ctrl->namespaces, list) - if (nvme_mpath_clear_current_path(ns)) - kblockd_schedule_work(&ns->head->requeue_work); + list_for_each_entry(ns, &ctrl->namespaces, list) { + nvme_mpath_clear_current_path(ns); + kblockd_schedule_work(&ns->head->requeue_work); + } up_read(&ctrl->namespaces_rwsem); - mutex_unlock(&ctrl->scan_lock); } static bool nvme_path_is_disabled(struct nvme_ns *ns) @@ -502,8 +501,17 @@ ns->ana_grpid = le32_to_cpu(desc->grpid); ns->ana_state = desc->state; clear_bit(NVME_NS_ANA_PENDING, &ns->flags); - - if (nvme_state_is_live(ns->ana_state)) + /* + * nvme_mpath_set_live() will trigger I/O to the multipath path device + * and in turn to this path device. However we cannot accept this I/O + * if the controller is not live. This may deadlock if called from + * nvme_mpath_init_identify() and the ctrl will never complete + * initialization, preventing I/O from completing. For this case we + * will reprocess the ANA log page in nvme_mpath_update() once the + * controller is ready. + */ + if (nvme_state_is_live(ns->ana_state) && + ns->ctrl->state == NVME_CTRL_LIVE) nvme_mpath_set_live(ns); } @@ -526,14 +534,17 @@ down_read(&ctrl->namespaces_rwsem); list_for_each_entry(ns, &ctrl->namespaces, list) { - unsigned nsid = le32_to_cpu(desc->nsids[n]); - + unsigned nsid; +again: + nsid = le32_to_cpu(desc->nsids[n]); if (ns->head->ns_id < nsid) continue; if (ns->head->ns_id == nsid) nvme_update_ns_ana_state(desc, ns); if (++n == nr_nsids) break; + if (ns->head->ns_id > nsid) + goto again; } up_read(&ctrl->namespaces_rwsem); return 0; @@ -584,6 +595,18 @@ nvme_read_ana_log(ctrl); } +void nvme_mpath_update(struct nvme_ctrl *ctrl) +{ + u32 nr_change_groups = 0; + + if (!ctrl->ana_log_buf) + return; + + mutex_lock(&ctrl->ana_lock); + nvme_parse_ana_log(ctrl, &nr_change_groups, nvme_update_ana_state); + mutex_unlock(&ctrl->ana_lock); +} + static void nvme_anatt_timeout(struct timer_list *t) { struct nvme_ctrl *ctrl = from_timer(ctrl, t, anatt_timer); diff -u linux-azure-5.4.0/drivers/nvme/host/nvme.h linux-azure-5.4.0/drivers/nvme/host/nvme.h --- linux-azure-5.4.0/drivers/nvme/host/nvme.h +++ linux-azure-5.4.0/drivers/nvme/host/nvme.h @@ -402,6 +402,7 @@ void (*free_ctrl)(struct nvme_ctrl *ctrl); void (*submit_async_event)(struct nvme_ctrl *ctrl); void (*delete_ctrl)(struct nvme_ctrl *ctrl); + void (*stop_ctrl)(struct nvme_ctrl *ctrl); int (*get_address)(struct nvme_ctrl *ctrl, char *buf, int size); }; @@ -453,7 +454,8 @@ rq->result = result; /* inject error when permitted by fault injection framework */ nvme_should_fail(req); - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); } static inline void nvme_get_ctrl(struct nvme_ctrl *ctrl) @@ -551,6 +553,7 @@ void nvme_mpath_remove_disk(struct nvme_ns_head *head); int nvme_mpath_init_identify(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id); void nvme_mpath_init_ctrl(struct nvme_ctrl *ctrl); +void nvme_mpath_update(struct nvme_ctrl *ctrl); void nvme_mpath_uninit(struct nvme_ctrl *ctrl); void nvme_mpath_stop(struct nvme_ctrl *ctrl); bool nvme_mpath_clear_current_path(struct nvme_ns *ns); @@ -648,6 +651,9 @@ "Please enable CONFIG_NVME_MULTIPATH for full support of multi-port devices.\n"); return 0; } +static inline void nvme_mpath_update(struct nvme_ctrl *ctrl) +{ +} static inline void nvme_mpath_uninit(struct nvme_ctrl *ctrl) { } diff -u linux-azure-5.4.0/drivers/nvme/host/pci.c linux-azure-5.4.0/drivers/nvme/host/pci.c --- linux-azure-5.4.0/drivers/nvme/host/pci.c +++ linux-azure-5.4.0/drivers/nvme/host/pci.c @@ -1674,6 +1674,7 @@ dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset); if (IS_ERR(dev->ctrl.admin_q)) { blk_mq_free_tag_set(&dev->admin_tagset); + dev->ctrl.admin_q = NULL; return -ENOMEM; } if (!blk_get_queue(dev->ctrl.admin_q)) { @@ -2590,7 +2591,9 @@ bool was_suspend = !!(dev->ctrl.ctrl_config & NVME_CC_SHN_NORMAL); int result; - if (WARN_ON(dev->ctrl.state != NVME_CTRL_RESETTING)) { + if (dev->ctrl.state != NVME_CTRL_RESETTING) { + dev_warn(dev->ctrl.device, "ctrl state %d is not RESETTING\n", + dev->ctrl.state); result = -ENODEV; goto out; } @@ -2954,7 +2957,6 @@ if (!pci_device_is_present(pdev)) { nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD); nvme_dev_disable(dev, true); - nvme_dev_remove_admin(dev); } flush_work(&dev->ctrl.reset_work); diff -u linux-azure-5.4.0/drivers/nvme/host/rdma.c linux-azure-5.4.0/drivers/nvme/host/rdma.c --- linux-azure-5.4.0/drivers/nvme/host/rdma.c +++ linux-azure-5.4.0/drivers/nvme/host/rdma.c @@ -665,13 +665,13 @@ if (ret) return ret; - ctrl->ctrl.queue_count = nr_io_queues + 1; - if (ctrl->ctrl.queue_count < 2) { + if (nr_io_queues == 0) { dev_err(ctrl->ctrl.device, "unable to set any I/O queues\n"); return -ENOMEM; } + ctrl->ctrl.queue_count = nr_io_queues + 1; dev_info(ctrl->ctrl.device, "creating %d I/O queues.\n", nr_io_queues); @@ -973,6 +973,14 @@ } } +static void nvme_rdma_stop_ctrl(struct nvme_ctrl *nctrl) +{ + struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl); + + cancel_work_sync(&ctrl->err_work); + cancel_delayed_work_sync(&ctrl->reconnect_work); +} + static void nvme_rdma_free_ctrl(struct nvme_ctrl *nctrl) { struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl); @@ -1019,11 +1027,13 @@ return ret; if (ctrl->ctrl.icdoff) { + ret = -EOPNOTSUPP; dev_err(ctrl->ctrl.device, "icdoff is not supported!\n"); goto destroy_admin; } if (!(ctrl->ctrl.sgls & (1 << 2))) { + ret = -EOPNOTSUPP; dev_err(ctrl->ctrl.device, "Mandatory keyed sgls are not supported!\n"); goto destroy_admin; @@ -1108,6 +1118,7 @@ struct nvme_rdma_ctrl, err_work); nvme_stop_keep_alive(&ctrl->ctrl); + flush_work(&ctrl->ctrl.async_event_work); nvme_rdma_teardown_io_queues(ctrl, false); nvme_start_queues(&ctrl->ctrl); nvme_rdma_teardown_admin_queue(ctrl, false); @@ -1944,9 +1955,6 @@ static void nvme_rdma_shutdown_ctrl(struct nvme_rdma_ctrl *ctrl, bool shutdown) { - cancel_work_sync(&ctrl->err_work); - cancel_delayed_work_sync(&ctrl->reconnect_work); - nvme_rdma_teardown_io_queues(ctrl, shutdown); blk_mq_quiesce_queue(ctrl->ctrl.admin_q); if (shutdown) @@ -1996,6 +2004,7 @@ .submit_async_event = nvme_rdma_submit_async_event, .delete_ctrl = nvme_rdma_delete_ctrl, .get_address = nvmf_get_address, + .stop_ctrl = nvme_rdma_stop_ctrl, }; /* diff -u linux-azure-5.4.0/drivers/nvme/host/tcp.c linux-azure-5.4.0/drivers/nvme/host/tcp.c --- linux-azure-5.4.0/drivers/nvme/host/tcp.c +++ linux-azure-5.4.0/drivers/nvme/host/tcp.c @@ -642,17 +642,9 @@ unsigned int *offset, size_t *len) { struct nvme_tcp_data_pdu *pdu = (void *)queue->pdu; - struct nvme_tcp_request *req; - struct request *rq; - - rq = blk_mq_tag_to_rq(nvme_tcp_tagset(queue), pdu->command_id); - if (!rq) { - dev_err(queue->ctrl->ctrl.device, - "queue %d tag %#x not found\n", - nvme_tcp_queue_id(queue), pdu->command_id); - return -ENOENT; - } - req = blk_mq_rq_to_pdu(rq); + struct request *rq = + blk_mq_tag_to_rq(nvme_tcp_tagset(queue), pdu->command_id); + struct nvme_tcp_request *req = blk_mq_rq_to_pdu(rq); while (true) { int recv_len, ret; @@ -848,7 +840,15 @@ static void nvme_tcp_fail_request(struct nvme_tcp_request *req) { - nvme_tcp_end_request(blk_mq_rq_from_pdu(req), NVME_SC_HOST_PATH_ERROR); + if (nvme_tcp_async_req(req)) { + union nvme_result res = {}; + + nvme_complete_async_event(&req->queue->ctrl->ctrl, + cpu_to_le16(NVME_SC_HOST_PATH_ERROR), &res); + } else { + nvme_tcp_end_request(blk_mq_rq_from_pdu(req), + NVME_SC_HOST_PATH_ERROR); + } } static int nvme_tcp_try_send_data(struct nvme_tcp_request *req) @@ -970,7 +970,7 @@ int ret; struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_EOR }; struct kvec iov = { - .iov_base = &req->ddgst + req->offset, + .iov_base = (u8 *)&req->ddgst + req->offset, .iov_len = NVME_TCP_DIGEST_LENGTH - req->offset }; @@ -1074,7 +1074,7 @@ if (result > 0) pending = true; - if (!pending) + if (!pending || !queue->rd_enabled) return; } while (!time_after(jiffies, deadline)); /* quota is exhausted */ @@ -1649,13 +1649,13 @@ if (ret) return ret; - ctrl->queue_count = nr_io_queues + 1; - if (ctrl->queue_count < 2) { + if (nr_io_queues == 0) { dev_err(ctrl->device, "unable to set any I/O queues\n"); return -ENOMEM; } + ctrl->queue_count = nr_io_queues + 1; dev_info(ctrl->device, "creating %d I/O queues.\n", nr_io_queues); @@ -1955,6 +1955,7 @@ struct nvme_ctrl *ctrl = &tcp_ctrl->ctrl; nvme_stop_keep_alive(ctrl); + flush_work(&ctrl->async_event_work); nvme_tcp_teardown_io_queues(ctrl, false); /* unquiesce to fail fast pending requests */ nvme_start_queues(ctrl); @@ -1972,9 +1973,6 @@ static void nvme_tcp_teardown_ctrl(struct nvme_ctrl *ctrl, bool shutdown) { - cancel_work_sync(&to_tcp_ctrl(ctrl)->err_work); - cancel_delayed_work_sync(&to_tcp_ctrl(ctrl)->connect_work); - nvme_tcp_teardown_io_queues(ctrl, shutdown); blk_mq_quiesce_queue(ctrl->admin_q); if (shutdown) @@ -2013,6 +2011,12 @@ nvme_tcp_reconnect_or_remove(ctrl); } +static void nvme_tcp_stop_ctrl(struct nvme_ctrl *ctrl) +{ + cancel_work_sync(&to_tcp_ctrl(ctrl)->err_work); + cancel_delayed_work_sync(&to_tcp_ctrl(ctrl)->connect_work); +} + static void nvme_tcp_free_ctrl(struct nvme_ctrl *nctrl) { struct nvme_tcp_ctrl *ctrl = to_tcp_ctrl(nctrl); @@ -2321,6 +2325,7 @@ .submit_async_event = nvme_tcp_submit_async_event, .delete_ctrl = nvme_tcp_delete_ctrl, .get_address = nvmf_get_address, + .stop_ctrl = nvme_tcp_stop_ctrl, }; static bool diff -u linux-azure-5.4.0/drivers/nvme/target/core.c linux-azure-5.4.0/drivers/nvme/target/core.c --- linux-azure-5.4.0/drivers/nvme/target/core.c +++ linux-azure-5.4.0/drivers/nvme/target/core.c @@ -709,6 +709,8 @@ static void __nvmet_req_complete(struct nvmet_req *req, u16 status) { + struct nvmet_ns *ns = req->ns; + if (!req->sq->sqhd_disabled) nvmet_update_sq_head(req); req->cqe->sq_id = cpu_to_le16(req->sq->qid); @@ -719,9 +721,9 @@ trace_nvmet_req_complete(req); - if (req->ns) - nvmet_put_namespace(req->ns); req->ops->queue_response(req); + if (ns) + nvmet_put_namespace(ns); } void nvmet_req_complete(struct nvmet_req *req, u16 status) diff -u linux-azure-5.4.0/drivers/nvme/target/fabrics-cmd.c linux-azure-5.4.0/drivers/nvme/target/fabrics-cmd.c --- linux-azure-5.4.0/drivers/nvme/target/fabrics-cmd.c +++ linux-azure-5.4.0/drivers/nvme/target/fabrics-cmd.c @@ -116,6 +116,7 @@ if (!sqsize) { pr_warn("queue size zero!\n"); req->error_loc = offsetof(struct nvmf_connect_command, sqsize); + req->cqe->result.u32 = IPO_IATTR_CONNECT_SQE(sqsize); ret = NVME_SC_CONNECT_INVALID_PARAM | NVME_SC_DNR; goto err; } @@ -250,11 +251,11 @@ } status = nvmet_install_queue(ctrl, req); - if (status) { - /* pass back cntlid that had the issue of installing queue */ - req->cqe->result.u16 = cpu_to_le16(ctrl->cntlid); + if (status) goto out_ctrl_put; - } + + /* pass back cntlid for successful completion */ + req->cqe->result.u16 = cpu_to_le16(ctrl->cntlid); pr_debug("adding queue %d to ctrl %d.\n", qid, ctrl->cntlid); diff -u linux-azure-5.4.0/drivers/nvme/target/fc.c linux-azure-5.4.0/drivers/nvme/target/fc.c --- linux-azure-5.4.0/drivers/nvme/target/fc.c +++ linux-azure-5.4.0/drivers/nvme/target/fc.c @@ -2155,13 +2155,6 @@ int ret; /* - * if there is no nvmet mapping to the targetport there - * shouldn't be requests. just terminate them. - */ - if (!tgtport->pe) - goto transport_error; - - /* * Fused commands are currently not supported in the linux * implementation. * @@ -2188,7 +2181,8 @@ fod->req.cmd = &fod->cmdiubuf.sqe; fod->req.cqe = &fod->rspiubuf.cqe; - fod->req.port = tgtport->pe->port; + if (tgtport->pe) + fod->req.port = tgtport->pe->port; /* clear any response payload */ memset(&fod->rspiubuf, 0, sizeof(fod->rspiubuf)); diff -u linux-azure-5.4.0/drivers/nvme/target/io-cmd-file.c linux-azure-5.4.0/drivers/nvme/target/io-cmd-file.c --- linux-azure-5.4.0/drivers/nvme/target/io-cmd-file.c +++ linux-azure-5.4.0/drivers/nvme/target/io-cmd-file.c @@ -8,6 +8,7 @@ #include #include #include +#include #include "nvmet.h" #define NVMET_MAX_MPOOL_BVEC 16 @@ -254,7 +255,8 @@ if (req->ns->buffered_io) { if (likely(!req->f.mpool_alloc) && - nvmet_file_execute_io(req, IOCB_NOWAIT)) + (req->ns->file->f_mode & FMODE_NOWAIT) && + nvmet_file_execute_io(req, IOCB_NOWAIT)) return; nvmet_file_submit_buffered_io(req); } else diff -u linux-azure-5.4.0/drivers/nvme/target/loop.c linux-azure-5.4.0/drivers/nvme/target/loop.c --- linux-azure-5.4.0/drivers/nvme/target/loop.c +++ linux-azure-5.4.0/drivers/nvme/target/loop.c @@ -252,7 +252,8 @@ static void nvme_loop_destroy_admin_queue(struct nvme_loop_ctrl *ctrl) { - clear_bit(NVME_LOOP_Q_LIVE, &ctrl->queues[0].flags); + if (!test_and_clear_bit(NVME_LOOP_Q_LIVE, &ctrl->queues[0].flags)) + return; nvmet_sq_destroy(&ctrl->queues[0].nvme_sq); blk_cleanup_queue(ctrl->ctrl.admin_q); blk_cleanup_queue(ctrl->ctrl.fabrics_q); @@ -288,6 +289,7 @@ clear_bit(NVME_LOOP_Q_LIVE, &ctrl->queues[i].flags); nvmet_sq_destroy(&ctrl->queues[i].nvme_sq); } + ctrl->ctrl.queue_count = 1; } static int nvme_loop_init_io_queues(struct nvme_loop_ctrl *ctrl) @@ -394,6 +396,7 @@ return 0; out_cleanup_queue: + clear_bit(NVME_LOOP_Q_LIVE, &ctrl->queues[0].flags); blk_cleanup_queue(ctrl->ctrl.admin_q); out_cleanup_fabrics_q: blk_cleanup_queue(ctrl->ctrl.fabrics_q); diff -u linux-azure-5.4.0/drivers/nvme/target/tcp.c linux-azure-5.4.0/drivers/nvme/target/tcp.c --- linux-azure-5.4.0/drivers/nvme/target/tcp.c +++ linux-azure-5.4.0/drivers/nvme/target/tcp.c @@ -631,10 +631,11 @@ static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd) { struct nvmet_tcp_queue *queue = cmd->queue; + int left = NVME_TCP_DIGEST_LENGTH - cmd->offset; struct msghdr msg = { .msg_flags = MSG_DONTWAIT }; struct kvec iov = { - .iov_base = &cmd->exp_ddgst + cmd->offset, - .iov_len = NVME_TCP_DIGEST_LENGTH - cmd->offset + .iov_base = (u8 *)&cmd->exp_ddgst + cmd->offset, + .iov_len = left }; int ret; @@ -643,6 +644,10 @@ return ret; cmd->offset += ret; + left -= ret; + + if (left) + return -EAGAIN; if (queue->nvme_sq.sqhd_disabled) { cmd->queue->snd_cmd = NULL; @@ -853,10 +858,17 @@ struct nvme_tcp_data_pdu *data = &queue->pdu.data; struct nvmet_tcp_cmd *cmd; - if (likely(queue->nr_cmds)) + if (likely(queue->nr_cmds)) { + if (unlikely(data->ttag >= queue->nr_cmds)) { + pr_err("queue %d: received out of bound ttag %u, nr_cmds %u\n", + queue->idx, data->ttag, queue->nr_cmds); + nvmet_tcp_fatal_error(queue); + return -EPROTO; + } cmd = &queue->cmds[data->ttag]; - else + } else { cmd = &queue->connect; + } if (le32_to_cpu(data->data_offset) != cmd->rbytes_done) { pr_err("ttag %u unexpected data offset %u (expected %u)\n", @@ -1020,7 +1032,7 @@ } if (queue->hdr_digest && - nvmet_tcp_verify_hdgst(queue, &queue->pdu, queue->offset)) { + nvmet_tcp_verify_hdgst(queue, &queue->pdu, hdr->hlen)) { nvmet_tcp_fatal_error(queue); /* fatal */ return -EPROTO; } @@ -1343,6 +1355,7 @@ static void nvmet_tcp_release_queue_work(struct work_struct *w) { + struct page *page; struct nvmet_tcp_queue *queue = container_of(w, struct nvmet_tcp_queue, release_work); @@ -1362,6 +1375,8 @@ nvmet_tcp_free_crypto(queue); ida_simple_remove(&nvmet_tcp_queue_ida, queue->idx); + page = virt_to_head_page(queue->pf_cache.va); + __page_frag_cache_drain(page, queue->pf_cache.pagecnt_bias); kfree(queue); } @@ -1408,11 +1423,13 @@ goto done; switch (sk->sk_state) { + case TCP_FIN_WAIT2: + case TCP_LAST_ACK: + break; case TCP_FIN_WAIT1: case TCP_CLOSE_WAIT: case TCP_CLOSE: /* FALLTHRU */ - sk->sk_user_data = NULL; nvmet_tcp_schedule_release_queue(queue); break; default: @@ -1665,6 +1682,17 @@ return ret; } +static void nvmet_tcp_destroy_port_queues(struct nvmet_tcp_port *port) +{ + struct nvmet_tcp_queue *queue; + + mutex_lock(&nvmet_tcp_queue_mutex); + list_for_each_entry(queue, &nvmet_tcp_queue_list, queue_list) + if (queue->port == port) + kernel_sock_shutdown(queue->sock, SHUT_RDWR); + mutex_unlock(&nvmet_tcp_queue_mutex); +} + static void nvmet_tcp_remove_port(struct nvmet_port *nport) { struct nvmet_tcp_port *port = nport->priv; @@ -1674,6 +1702,11 @@ port->sock->sk->sk_user_data = NULL; write_unlock_bh(&port->sock->sk->sk_callback_lock); cancel_work_sync(&port->accept_work); + /* + * Destroy the remaining queues, which are not belong to any + * controller yet. + */ + nvmet_tcp_destroy_port_queues(port); sock_release(port->sock); kfree(port); @@ -1739,7 +1772,8 @@ { int ret; - nvmet_tcp_wq = alloc_workqueue("nvmet_tcp_wq", WQ_HIGHPRI, 0); + nvmet_tcp_wq = alloc_workqueue("nvmet_tcp_wq", + WQ_MEM_RECLAIM | WQ_HIGHPRI, 0); if (!nvmet_tcp_wq) return -ENOMEM; diff -u linux-azure-5.4.0/drivers/nvmem/core.c linux-azure-5.4.0/drivers/nvmem/core.c --- linux-azure-5.4.0/drivers/nvmem/core.c +++ linux-azure-5.4.0/drivers/nvmem/core.c @@ -318,15 +318,17 @@ continue; if (len < 2 * sizeof(u32)) { dev_err(dev, "nvmem: invalid reg on %pOF\n", child); + of_node_put(child); return -EINVAL; } cell = kzalloc(sizeof(*cell), GFP_KERNEL); - if (!cell) + if (!cell) { + of_node_put(child); return -ENOMEM; + } cell->nvmem = nvmem; - cell->np = of_node_get(child); cell->offset = be32_to_cpup(addr++); cell->bytes = be32_to_cpup(addr); cell->name = kasprintf(GFP_KERNEL, "%pOFn", child); @@ -347,11 +349,12 @@ cell->name, nvmem->stride); /* Cells already added will be freed later. */ kfree_const(cell->name); - of_node_put(cell->np); kfree(cell); + of_node_put(child); return -EINVAL; } + cell->np = of_node_get(child); nvmem_cell_add(cell); } @@ -951,7 +954,8 @@ *p-- = 0; /* clear msb bits if any leftover in the last byte */ - *p &= GENMASK((cell->nbits%BITS_PER_BYTE) - 1, 0); + if (cell->nbits % BITS_PER_BYTE) + *p &= GENMASK((cell->nbits % BITS_PER_BYTE) - 1, 0); } static int __nvmem_cell_read(struct nvmem_device *nvmem, diff -u linux-azure-5.4.0/drivers/of/kobj.c linux-azure-5.4.0/drivers/of/kobj.c --- linux-azure-5.4.0/drivers/of/kobj.c +++ linux-azure-5.4.0/drivers/of/kobj.c @@ -119,7 +119,7 @@ struct property *pp; int rc; - if (!of_kset) + if (!IS_ENABLED(CONFIG_SYSFS) || !of_kset) return 0; np->kobj.kset = of_kset; diff -u linux-azure-5.4.0/drivers/of/of_mdio.c linux-azure-5.4.0/drivers/of/of_mdio.c --- linux-azure-5.4.0/drivers/of/of_mdio.c +++ linux-azure-5.4.0/drivers/of/of_mdio.c @@ -281,6 +281,7 @@ return 0; unregister: + of_node_put(child); mdiobus_unregister(mdio); return rc; } diff -u linux-azure-5.4.0/drivers/of/of_reserved_mem.c linux-azure-5.4.0/drivers/of/of_reserved_mem.c --- linux-azure-5.4.0/drivers/of/of_reserved_mem.c +++ linux-azure-5.4.0/drivers/of/of_reserved_mem.c @@ -134,9 +134,9 @@ ret = early_init_dt_alloc_reserved_memory_arch(size, align, start, end, nomap, &base); if (ret == 0) { - pr_debug("allocated memory for '%s' node: base %pa, size %ld MiB\n", + pr_debug("allocated memory for '%s' node: base %pa, size %lu MiB\n", uname, &base, - (unsigned long)size / SZ_1M); + (unsigned long)(size / SZ_1M)); break; } len -= t_len; @@ -146,8 +146,8 @@ ret = early_init_dt_alloc_reserved_memory_arch(size, align, 0, 0, nomap, &base); if (ret == 0) - pr_debug("allocated memory for '%s' node: base %pa, size %ld MiB\n", - uname, &base, (unsigned long)size / SZ_1M); + pr_debug("allocated memory for '%s' node: base %pa, size %lu MiB\n", + uname, &base, (unsigned long)(size / SZ_1M)); } if (base == 0) { diff -u linux-azure-5.4.0/drivers/of/overlay.c linux-azure-5.4.0/drivers/of/overlay.c --- linux-azure-5.4.0/drivers/of/overlay.c +++ linux-azure-5.4.0/drivers/of/overlay.c @@ -170,9 +170,7 @@ ret = blocking_notifier_call_chain(&overlay_notify_chain, action, &nd); - if (ret == NOTIFY_OK || ret == NOTIFY_STOP) - return 0; - if (ret) { + if (notifier_to_errno(ret)) { ret = notifier_to_errno(ret); pr_err("overlay changeset %s notifier error %d, target: %pOF\n", of_overlay_action_name[action], ret, nd.target); diff -u linux-azure-5.4.0/drivers/opp/core.c linux-azure-5.4.0/drivers/opp/core.c --- linux-azure-5.4.0/drivers/opp/core.c +++ linux-azure-5.4.0/drivers/opp/core.c @@ -1881,8 +1881,8 @@ } virt_dev = dev_pm_domain_attach_by_name(dev, *name); - if (IS_ERR(virt_dev)) { - ret = PTR_ERR(virt_dev); + if (IS_ERR_OR_NULL(virt_dev)) { + ret = PTR_ERR(virt_dev) ? : -ENODEV; dev_err(dev, "Couldn't attach to pm_domain: %d\n", ret); goto err; } diff -u linux-azure-5.4.0/drivers/opp/of.c linux-azure-5.4.0/drivers/opp/of.c --- linux-azure-5.4.0/drivers/opp/of.c +++ linux-azure-5.4.0/drivers/opp/of.c @@ -95,15 +95,7 @@ static struct device_node *of_parse_required_opp(struct device_node *np, int index) { - struct device_node *required_np; - - required_np = of_parse_phandle(np, "required-opps", index); - if (unlikely(!required_np)) { - pr_err("%s: Unable to parse required-opps: %pOF, index: %d\n", - __func__, np, index); - } - - return required_np; + return of_parse_phandle(np, "required-opps", index); } /* The caller must call dev_pm_opp_put_opp_table() after the table is used */ @@ -647,7 +639,7 @@ free_opp: _opp_free(new_opp); - return ERR_PTR(ret); + return ret ? ERR_PTR(ret) : NULL; } /* Initializes OPP tables based on new bindings */ @@ -682,8 +674,9 @@ } } - /* There should be one of more OPP defined */ - if (WARN_ON(!count)) { + /* There should be one or more OPPs defined */ + if (!count) { + dev_err(dev, "%s: no supported OPPs", __func__); ret = -ENOENT; goto remove_static_opp; } @@ -995,7 +988,7 @@ required_np = of_parse_required_opp(np, index); if (!required_np) - return -EINVAL; + return -ENODEV; opp_table = _find_table_of_opp_np(required_np); if (IS_ERR(opp_table)) { diff -u linux-azure-5.4.0/drivers/parisc/sba_iommu.c linux-azure-5.4.0/drivers/parisc/sba_iommu.c --- linux-azure-5.4.0/drivers/parisc/sba_iommu.c +++ linux-azure-5.4.0/drivers/parisc/sba_iommu.c @@ -1047,7 +1047,7 @@ spin_unlock_irqrestore(&ioc->res_lock, flags); #endif - while (sg_dma_len(sglist) && nents--) { + while (nents && sg_dma_len(sglist)) { sba_unmap_page(dev, sg_dma_address(sglist), sg_dma_len(sglist), direction, 0); @@ -1056,6 +1056,7 @@ ioc->usingle_calls--; /* kluge since call is unmap_sg() */ #endif ++sglist; + nents--; } DBG_RUN_SG("%s() DONE (nents %d)\n", __func__, nents); diff -u linux-azure-5.4.0/drivers/pci/access.c linux-azure-5.4.0/drivers/pci/access.c --- linux-azure-5.4.0/drivers/pci/access.c +++ linux-azure-5.4.0/drivers/pci/access.c @@ -160,9 +160,12 @@ * write happen to have any RW1C (write-one-to-clear) bits set, we * just inadvertently cleared something we shouldn't have. */ - dev_warn_ratelimited(&bus->dev, "%d-byte config write to %04x:%02x:%02x.%d offset %#x may corrupt adjacent RW1C bits\n", - size, pci_domain_nr(bus), bus->number, - PCI_SLOT(devfn), PCI_FUNC(devfn), where); + if (!bus->unsafe_warn) { + dev_warn(&bus->dev, "%d-byte config write to %04x:%02x:%02x.%d offset %#x may corrupt adjacent RW1C bits\n", + size, pci_domain_nr(bus), bus->number, + PCI_SLOT(devfn), PCI_FUNC(devfn), where); + bus->unsafe_warn = 1; + } mask = ~(((1 << (size * 8)) - 1) << ((where & 0x3) * 8)); tmp = readl(addr) & mask; diff -u linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-qcom.c linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-qcom.c --- linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-qcom.c +++ linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-qcom.c @@ -1343,22 +1343,21 @@ } ret = phy_init(pcie->phy); - if (ret) { - pm_runtime_disable(&pdev->dev); + if (ret) goto err_pm_runtime_put; - } platform_set_drvdata(pdev, pcie); ret = dw_pcie_host_init(pp); if (ret) { dev_err(dev, "cannot initialize host\n"); - pm_runtime_disable(&pdev->dev); - goto err_pm_runtime_put; + goto err_phy_exit; } return 0; +err_phy_exit: + phy_exit(pcie->phy); err_pm_runtime_put: pm_runtime_put(dev); pm_runtime_disable(dev); diff -u linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-tegra194.c linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-tegra194.c --- linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-tegra194.c +++ linux-azure-5.4.0/drivers/pci/controller/dwc/pcie-tegra194.c @@ -345,15 +345,14 @@ { struct dw_pcie *pci = &pcie->pci; struct pcie_port *pp = &pci->pp; - u32 val, tmp; + u32 val, status_l0, status_l1; u16 val_w; - val = appl_readl(pcie, APPL_INTR_STATUS_L0); - if (val & APPL_INTR_STATUS_L0_LINK_STATE_INT) { - val = appl_readl(pcie, APPL_INTR_STATUS_L1_0_0); - if (val & APPL_INTR_STATUS_L1_0_0_LINK_REQ_RST_NOT_CHGED) { - appl_writel(pcie, val, APPL_INTR_STATUS_L1_0_0); - + status_l0 = appl_readl(pcie, APPL_INTR_STATUS_L0); + if (status_l0 & APPL_INTR_STATUS_L0_LINK_STATE_INT) { + status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_0_0); + appl_writel(pcie, status_l1, APPL_INTR_STATUS_L1_0_0); + if (status_l1 & APPL_INTR_STATUS_L1_0_0_LINK_REQ_RST_NOT_CHGED) { /* SBR & Surprise Link Down WAR */ val = appl_readl(pcie, APPL_CAR_RESET_OVRD); val &= ~APPL_CAR_RESET_OVRD_CYA_OVERRIDE_CORE_RST_N; @@ -369,15 +368,15 @@ } } - if (val & APPL_INTR_STATUS_L0_INT_INT) { - val = appl_readl(pcie, APPL_INTR_STATUS_L1_8_0); - if (val & APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS) { + if (status_l0 & APPL_INTR_STATUS_L0_INT_INT) { + status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_8_0); + if (status_l1 & APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS) { appl_writel(pcie, APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS, APPL_INTR_STATUS_L1_8_0); apply_bad_link_workaround(pp); } - if (val & APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS) { + if (status_l1 & APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS) { appl_writel(pcie, APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS, APPL_INTR_STATUS_L1_8_0); @@ -389,25 +388,24 @@ } } - val = appl_readl(pcie, APPL_INTR_STATUS_L0); - if (val & APPL_INTR_STATUS_L0_CDM_REG_CHK_INT) { - val = appl_readl(pcie, APPL_INTR_STATUS_L1_18); - tmp = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS); - if (val & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMPLT) { + if (status_l0 & APPL_INTR_STATUS_L0_CDM_REG_CHK_INT) { + status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_18); + val = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS); + if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMPLT) { dev_info(pci->dev, "CDM check complete\n"); - tmp |= PCIE_PL_CHK_REG_CHK_REG_COMPLETE; + val |= PCIE_PL_CHK_REG_CHK_REG_COMPLETE; } - if (val & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMP_ERR) { + if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMP_ERR) { dev_err(pci->dev, "CDM comparison mismatch\n"); - tmp |= PCIE_PL_CHK_REG_CHK_REG_COMPARISON_ERROR; + val |= PCIE_PL_CHK_REG_CHK_REG_COMPARISON_ERROR; } - if (val & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_LOGIC_ERR) { + if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_LOGIC_ERR) { dev_err(pci->dev, "CDM Logic error\n"); - tmp |= PCIE_PL_CHK_REG_CHK_REG_LOGIC_ERROR; + val |= PCIE_PL_CHK_REG_CHK_REG_LOGIC_ERROR; } - dw_pcie_writel_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS, tmp); - tmp = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_ERR_ADDR); - dev_err(pci->dev, "CDM Error Address Offset = 0x%08X\n", tmp); + dw_pcie_writel_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS, val); + val = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_ERR_ADDR); + dev_err(pci->dev, "CDM Error Address Offset = 0x%08X\n", val); } return IRQ_HANDLED; @@ -856,7 +854,7 @@ offset = dw_pcie_find_ext_capability(pci, PCI_EXT_CAP_ID_DLF); val = dw_pcie_readl_dbi(pci, offset + PCI_DLF_CAP); val &= ~PCI_DLF_EXCHANGE_ENABLE; - dw_pcie_writel_dbi(pci, offset, val); + dw_pcie_writel_dbi(pci, offset + PCI_DLF_CAP, val); tegra_pcie_prepare_host(pp); diff -u linux-azure-5.4.0/drivers/pci/controller/pci-aardvark.c linux-azure-5.4.0/drivers/pci/controller/pci-aardvark.c --- linux-azure-5.4.0/drivers/pci/controller/pci-aardvark.c +++ linux-azure-5.4.0/drivers/pci/controller/pci-aardvark.c @@ -9,6 +9,7 @@ */ #include +#include #include #include #include @@ -17,6 +18,7 @@ #include #include #include +#include #include #include "../pci.h" @@ -25,21 +27,8 @@ /* PCIe core registers */ #define PCIE_CORE_DEV_ID_REG 0x0 #define PCIE_CORE_CMD_STATUS_REG 0x4 -#define PCIE_CORE_CMD_IO_ACCESS_EN BIT(0) -#define PCIE_CORE_CMD_MEM_ACCESS_EN BIT(1) -#define PCIE_CORE_CMD_MEM_IO_REQ_EN BIT(2) #define PCIE_CORE_DEV_REV_REG 0x8 #define PCIE_CORE_PCIEXP_CAP 0xc0 -#define PCIE_CORE_DEV_CTRL_STATS_REG 0xc8 -#define PCIE_CORE_DEV_CTRL_STATS_RELAX_ORDER_DISABLE (0 << 4) -#define PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SZ_SHIFT 5 -#define PCIE_CORE_DEV_CTRL_STATS_SNOOP_DISABLE (0 << 11) -#define PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE_SHIFT 12 -#define PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SZ 0x2 -#define PCIE_CORE_LINK_CTRL_STAT_REG 0xd0 -#define PCIE_CORE_LINK_L0S_ENTRY BIT(0) -#define PCIE_CORE_LINK_TRAINING BIT(5) -#define PCIE_CORE_LINK_WIDTH_SHIFT 20 #define PCIE_CORE_ERR_CAPCTL_REG 0x118 #define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX BIT(5) #define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN BIT(6) @@ -61,7 +50,8 @@ #define PIO_COMPLETION_STATUS_UR 1 #define PIO_COMPLETION_STATUS_CRS 2 #define PIO_COMPLETION_STATUS_CA 4 -#define PIO_NON_POSTED_REQ BIT(0) +#define PIO_NON_POSTED_REQ BIT(10) +#define PIO_ERR_STATUS BIT(11) #define PIO_ADDR_LS (PIO_BASE_ADDR + 0x8) #define PIO_ADDR_MS (PIO_BASE_ADDR + 0xc) #define PIO_WR_DATA (PIO_BASE_ADDR + 0x10) @@ -107,27 +97,112 @@ #define PCIE_ISR0_MSI_INT_PENDING BIT(24) #define PCIE_ISR0_INTX_ASSERT(val) BIT(16 + (val)) #define PCIE_ISR0_INTX_DEASSERT(val) BIT(20 + (val)) -#define PCIE_ISR0_ALL_MASK GENMASK(26, 0) +#define PCIE_ISR0_ALL_MASK GENMASK(31, 0) #define PCIE_ISR1_REG (CONTROL_BASE_ADDR + 0x48) #define PCIE_ISR1_MASK_REG (CONTROL_BASE_ADDR + 0x4C) #define PCIE_ISR1_POWER_STATE_CHANGE BIT(4) #define PCIE_ISR1_FLUSH BIT(5) #define PCIE_ISR1_INTX_ASSERT(val) BIT(8 + (val)) -#define PCIE_ISR1_ALL_MASK GENMASK(11, 4) +#define PCIE_ISR1_ALL_MASK GENMASK(31, 0) #define PCIE_MSI_ADDR_LOW_REG (CONTROL_BASE_ADDR + 0x50) #define PCIE_MSI_ADDR_HIGH_REG (CONTROL_BASE_ADDR + 0x54) #define PCIE_MSI_STATUS_REG (CONTROL_BASE_ADDR + 0x58) #define PCIE_MSI_MASK_REG (CONTROL_BASE_ADDR + 0x5C) +#define PCIE_MSI_ALL_MASK GENMASK(31, 0) #define PCIE_MSI_PAYLOAD_REG (CONTROL_BASE_ADDR + 0x9C) +#define PCIE_MSI_DATA_MASK GENMASK(15, 0) + +/* PCIe window configuration */ +#define OB_WIN_BASE_ADDR 0x4c00 +#define OB_WIN_BLOCK_SIZE 0x20 +#define OB_WIN_COUNT 8 +#define OB_WIN_REG_ADDR(win, offset) (OB_WIN_BASE_ADDR + \ + OB_WIN_BLOCK_SIZE * (win) + \ + (offset)) +#define OB_WIN_MATCH_LS(win) OB_WIN_REG_ADDR(win, 0x00) +#define OB_WIN_ENABLE BIT(0) +#define OB_WIN_MATCH_MS(win) OB_WIN_REG_ADDR(win, 0x04) +#define OB_WIN_REMAP_LS(win) OB_WIN_REG_ADDR(win, 0x08) +#define OB_WIN_REMAP_MS(win) OB_WIN_REG_ADDR(win, 0x0c) +#define OB_WIN_MASK_LS(win) OB_WIN_REG_ADDR(win, 0x10) +#define OB_WIN_MASK_MS(win) OB_WIN_REG_ADDR(win, 0x14) +#define OB_WIN_ACTIONS(win) OB_WIN_REG_ADDR(win, 0x18) +#define OB_WIN_DEFAULT_ACTIONS (OB_WIN_ACTIONS(OB_WIN_COUNT-1) + 0x4) +#define OB_WIN_FUNC_NUM_MASK GENMASK(31, 24) +#define OB_WIN_FUNC_NUM_SHIFT 24 +#define OB_WIN_FUNC_NUM_ENABLE BIT(23) +#define OB_WIN_BUS_NUM_BITS_MASK GENMASK(22, 20) +#define OB_WIN_BUS_NUM_BITS_SHIFT 20 +#define OB_WIN_MSG_CODE_ENABLE BIT(22) +#define OB_WIN_MSG_CODE_MASK GENMASK(21, 14) +#define OB_WIN_MSG_CODE_SHIFT 14 +#define OB_WIN_MSG_PAYLOAD_LEN BIT(12) +#define OB_WIN_ATTR_ENABLE BIT(11) +#define OB_WIN_ATTR_TC_MASK GENMASK(10, 8) +#define OB_WIN_ATTR_TC_SHIFT 8 +#define OB_WIN_ATTR_RELAXED BIT(7) +#define OB_WIN_ATTR_NOSNOOP BIT(6) +#define OB_WIN_ATTR_POISON BIT(5) +#define OB_WIN_ATTR_IDO BIT(4) +#define OB_WIN_TYPE_MASK GENMASK(3, 0) +#define OB_WIN_TYPE_SHIFT 0 +#define OB_WIN_TYPE_MEM 0x0 +#define OB_WIN_TYPE_IO 0x4 +#define OB_WIN_TYPE_CONFIG_TYPE0 0x8 +#define OB_WIN_TYPE_CONFIG_TYPE1 0x9 +#define OB_WIN_TYPE_MSG 0xc /* LMI registers base address and register offsets */ #define LMI_BASE_ADDR 0x6000 #define CFG_REG (LMI_BASE_ADDR + 0x0) #define LTSSM_SHIFT 24 #define LTSSM_MASK 0x3f -#define LTSSM_L0 0x10 #define RC_BAR_CONFIG 0x300 +/* LTSSM values in CFG_REG */ +enum { + LTSSM_DETECT_QUIET = 0x0, + LTSSM_DETECT_ACTIVE = 0x1, + LTSSM_POLLING_ACTIVE = 0x2, + LTSSM_POLLING_COMPLIANCE = 0x3, + LTSSM_POLLING_CONFIGURATION = 0x4, + LTSSM_CONFIG_LINKWIDTH_START = 0x5, + LTSSM_CONFIG_LINKWIDTH_ACCEPT = 0x6, + LTSSM_CONFIG_LANENUM_ACCEPT = 0x7, + LTSSM_CONFIG_LANENUM_WAIT = 0x8, + LTSSM_CONFIG_COMPLETE = 0x9, + LTSSM_CONFIG_IDLE = 0xa, + LTSSM_RECOVERY_RCVR_LOCK = 0xb, + LTSSM_RECOVERY_SPEED = 0xc, + LTSSM_RECOVERY_RCVR_CFG = 0xd, + LTSSM_RECOVERY_IDLE = 0xe, + LTSSM_L0 = 0x10, + LTSSM_RX_L0S_ENTRY = 0x11, + LTSSM_RX_L0S_IDLE = 0x12, + LTSSM_RX_L0S_FTS = 0x13, + LTSSM_TX_L0S_ENTRY = 0x14, + LTSSM_TX_L0S_IDLE = 0x15, + LTSSM_TX_L0S_FTS = 0x16, + LTSSM_L1_ENTRY = 0x17, + LTSSM_L1_IDLE = 0x18, + LTSSM_L2_IDLE = 0x19, + LTSSM_L2_TRANSMIT_WAKE = 0x1a, + LTSSM_DISABLED = 0x20, + LTSSM_LOOPBACK_ENTRY_MASTER = 0x21, + LTSSM_LOOPBACK_ACTIVE_MASTER = 0x22, + LTSSM_LOOPBACK_EXIT_MASTER = 0x23, + LTSSM_LOOPBACK_ENTRY_SLAVE = 0x24, + LTSSM_LOOPBACK_ACTIVE_SLAVE = 0x25, + LTSSM_LOOPBACK_EXIT_SLAVE = 0x26, + LTSSM_HOT_RESET = 0x27, + LTSSM_RECOVERY_EQUALIZATION_PHASE0 = 0x28, + LTSSM_RECOVERY_EQUALIZATION_PHASE1 = 0x29, + LTSSM_RECOVERY_EQUALIZATION_PHASE2 = 0x2a, + LTSSM_RECOVERY_EQUALIZATION_PHASE3 = 0x2b, +}; + +#define VENDOR_ID_REG (LMI_BASE_ADDR + 0x44) + /* PCIe core controller registers */ #define CTRL_CORE_BASE_ADDR 0x18000 #define CTRL_CONFIG_REG (CTRL_CORE_BASE_ADDR + 0x0) @@ -158,7 +233,7 @@ #define PCIE_IRQ_MSI_INT2_DET BIT(21) #define PCIE_IRQ_RC_DBELL_DET BIT(22) #define PCIE_IRQ_EP_STATUS BIT(23) -#define PCIE_IRQ_ALL_MASK 0xfff0fb +#define PCIE_IRQ_ALL_MASK GENMASK(31, 0) #define PCIE_IRQ_ENABLE_INTS_MASK PCIE_IRQ_CORE_INT /* Transaction types */ @@ -175,7 +250,8 @@ (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \ PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where)) -#define PIO_TIMEOUT_MS 1 +#define PIO_RETRY_CNT 750000 /* 1.5 s */ +#define PIO_RETRY_DELAY 2 /* 2 us*/ #define LINK_WAIT_MAX_RETRIES 10 #define LINK_WAIT_USLEEP_MIN 90000 @@ -185,12 +261,22 @@ #define MSI_IRQ_NUM 32 +#define CFG_RD_CRS_VAL 0xffff0001 + struct advk_pcie { struct platform_device *pdev; void __iomem *base; struct list_head resources; + struct { + phys_addr_t match; + phys_addr_t remap; + phys_addr_t mask; + u32 actions; + } wins[OB_WIN_COUNT]; + u8 wins_count; struct irq_domain *irq_domain; struct irq_chip irq_chip; + raw_spinlock_t irq_lock; struct irq_domain *msi_domain; struct irq_domain *msi_inner_domain; struct irq_chip msi_bottom_irq_chip; @@ -200,7 +286,9 @@ struct mutex msi_used_lock; u16 msi_msg; int root_bus_nr; + int link_gen; struct pci_bridge_emul bridge; + struct gpio_desc *reset_gpio; }; static inline void advk_writel(struct advk_pcie *pcie, u32 val, u64 reg) @@ -213,31 +301,63 @@ return readl(pcie->base + reg); } -static int advk_pcie_link_up(struct advk_pcie *pcie) +static u8 advk_pcie_ltssm_state(struct advk_pcie *pcie) { - u32 val, ltssm_state; + u32 val; + u8 ltssm_state; val = advk_readl(pcie, CFG_REG); ltssm_state = (val >> LTSSM_SHIFT) & LTSSM_MASK; - return ltssm_state >= LTSSM_L0; + return ltssm_state; +} + +static inline bool advk_pcie_link_up(struct advk_pcie *pcie) +{ + /* check if LTSSM is in normal operation - some L* state */ + u8 ltssm_state = advk_pcie_ltssm_state(pcie); + return ltssm_state >= LTSSM_L0 && ltssm_state < LTSSM_DISABLED; +} + +static inline bool advk_pcie_link_active(struct advk_pcie *pcie) +{ + /* + * According to PCIe Base specification 3.0, Table 4-14: Link + * Status Mapped to the LTSSM, and 4.2.6.3.6 Configuration.Idle + * is Link Up mapped to LTSSM Configuration.Idle, Recovery, L0, + * L0s, L1 and L2 states. And according to 3.2.1. Data Link + * Control and Management State Machine Rules is DL Up status + * reported in DL Active state. + */ + u8 ltssm_state = advk_pcie_ltssm_state(pcie); + return ltssm_state >= LTSSM_CONFIG_IDLE && ltssm_state < LTSSM_DISABLED; +} + +static inline bool advk_pcie_link_training(struct advk_pcie *pcie) +{ + /* + * According to PCIe Base specification 3.0, Table 4-14: Link + * Status Mapped to the LTSSM is Link Training mapped to LTSSM + * Configuration and Recovery states. + */ + u8 ltssm_state = advk_pcie_ltssm_state(pcie); + return ((ltssm_state >= LTSSM_CONFIG_LINKWIDTH_START && + ltssm_state < LTSSM_L0) || + (ltssm_state >= LTSSM_RECOVERY_EQUALIZATION_PHASE0 && + ltssm_state <= LTSSM_RECOVERY_EQUALIZATION_PHASE3)); } static int advk_pcie_wait_for_link(struct advk_pcie *pcie) { - struct device *dev = &pcie->pdev->dev; int retries; /* check if the link is up or not */ for (retries = 0; retries < LINK_WAIT_MAX_RETRIES; retries++) { - if (advk_pcie_link_up(pcie)) { - dev_info(dev, "link up\n"); + if (advk_pcie_link_up(pcie)) return 0; - } usleep_range(LINK_WAIT_USLEEP_MIN, LINK_WAIT_USLEEP_MAX); } - dev_err(dev, "link never came up\n"); return -ETIMEDOUT; } @@ -246,15 +366,121 @@ size_t retries; for (retries = 0; retries < RETRAIN_WAIT_MAX_RETRIES; ++retries) { - if (!advk_pcie_link_up(pcie)) + if (advk_pcie_link_training(pcie)) break; udelay(RETRAIN_WAIT_USLEEP_US); } } +static void advk_pcie_issue_perst(struct advk_pcie *pcie) +{ + if (!pcie->reset_gpio) + return; + + /* 10ms delay is needed for some cards */ + dev_info(&pcie->pdev->dev, "issuing PERST via reset GPIO for 10ms\n"); + gpiod_set_value_cansleep(pcie->reset_gpio, 1); + usleep_range(10000, 11000); + gpiod_set_value_cansleep(pcie->reset_gpio, 0); +} + +static void advk_pcie_train_link(struct advk_pcie *pcie) +{ + struct device *dev = &pcie->pdev->dev; + u32 reg; + int ret; + + /* + * Setup PCIe rev / gen compliance based on device tree property + * 'max-link-speed' which also forces maximal link speed. + */ + reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); + reg &= ~PCIE_GEN_SEL_MSK; + if (pcie->link_gen == 3) + reg |= SPEED_GEN_3; + else if (pcie->link_gen == 2) + reg |= SPEED_GEN_2; + else + reg |= SPEED_GEN_1; + advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); + + /* + * Set maximal link speed value also into PCIe Link Control 2 register. + * Armada 3700 Functional Specification says that default value is based + * on SPEED_GEN but tests showed that default value is always 8.0 GT/s. + */ + reg = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL2); + reg &= ~PCI_EXP_LNKCTL2_TLS; + if (pcie->link_gen == 3) + reg |= PCI_EXP_LNKCTL2_TLS_8_0GT; + else if (pcie->link_gen == 2) + reg |= PCI_EXP_LNKCTL2_TLS_5_0GT; + else + reg |= PCI_EXP_LNKCTL2_TLS_2_5GT; + advk_writel(pcie, reg, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL2); + + /* Enable link training after selecting PCIe generation */ + reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); + reg |= LINK_TRAINING_EN; + advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); + + /* + * Reset PCIe card via PERST# signal. Some cards are not detected + * during link training when they are in some non-initial state. + */ + advk_pcie_issue_perst(pcie); + + /* + * PERST# signal could have been asserted by pinctrl subsystem before + * probe() callback has been called or issued explicitly by reset gpio + * function advk_pcie_issue_perst(), making the endpoint going into + * fundamental reset. As required by PCI Express spec (PCI Express + * Base Specification, REV. 4.0 PCI Express, February 19 2014, 6.6.1 + * Conventional Reset) a delay for at least 100ms after such a reset + * before sending a Configuration Request to the device is needed. + * So wait until PCIe link is up. Function advk_pcie_wait_for_link() + * waits for link at least 900ms. + */ + ret = advk_pcie_wait_for_link(pcie); + if (ret < 0) + dev_err(dev, "link never came up\n"); + else + dev_info(dev, "link up\n"); +} + +/* + * Set PCIe address window register which could be used for memory + * mapping. + */ +static void advk_pcie_set_ob_win(struct advk_pcie *pcie, u8 win_num, + phys_addr_t match, phys_addr_t remap, + phys_addr_t mask, u32 actions) +{ + advk_writel(pcie, OB_WIN_ENABLE | + lower_32_bits(match), OB_WIN_MATCH_LS(win_num)); + advk_writel(pcie, upper_32_bits(match), OB_WIN_MATCH_MS(win_num)); + advk_writel(pcie, lower_32_bits(remap), OB_WIN_REMAP_LS(win_num)); + advk_writel(pcie, upper_32_bits(remap), OB_WIN_REMAP_MS(win_num)); + advk_writel(pcie, lower_32_bits(mask), OB_WIN_MASK_LS(win_num)); + advk_writel(pcie, upper_32_bits(mask), OB_WIN_MASK_MS(win_num)); + advk_writel(pcie, actions, OB_WIN_ACTIONS(win_num)); +} + +static void advk_pcie_disable_ob_win(struct advk_pcie *pcie, u8 win_num) +{ + advk_writel(pcie, 0, OB_WIN_MATCH_LS(win_num)); + advk_writel(pcie, 0, OB_WIN_MATCH_MS(win_num)); + advk_writel(pcie, 0, OB_WIN_REMAP_LS(win_num)); + advk_writel(pcie, 0, OB_WIN_REMAP_MS(win_num)); + advk_writel(pcie, 0, OB_WIN_MASK_LS(win_num)); + advk_writel(pcie, 0, OB_WIN_MASK_MS(win_num)); + advk_writel(pcie, 0, OB_WIN_ACTIONS(win_num)); +} + static void advk_pcie_setup_hw(struct advk_pcie *pcie) { u32 reg; + int i; /* Set to Direct mode */ reg = advk_readl(pcie, CTRL_CONFIG_REG); @@ -267,6 +493,41 @@ reg |= (IS_RC_MSK << IS_RC_SHIFT); advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); + /* + * Replace incorrect PCI vendor id value 0x1b4b by correct value 0x11ab. + * VENDOR_ID_REG contains vendor id in low 16 bits and subsystem vendor + * id in high 16 bits. Updating this register changes readback value of + * read-only vendor id bits in PCIE_CORE_DEV_ID_REG register. Workaround + * for erratum 4.1: "The value of device and vendor ID is incorrect". + */ + reg = (PCI_VENDOR_ID_MARVELL << 16) | PCI_VENDOR_ID_MARVELL; + advk_writel(pcie, reg, VENDOR_ID_REG); + + /* + * Change Class Code of PCI Bridge device to PCI Bridge (0x600400), + * because the default value is Mass storage controller (0x010400). + * + * Note that this Aardvark PCI Bridge does not have compliant Type 1 + * Configuration Space and it even cannot be accessed via Aardvark's + * PCI config space access method. Something like config space is + * available in internal Aardvark registers starting at offset 0x0 + * and is reported as Type 0. In range 0x10 - 0x34 it has totally + * different registers. + * + * Therefore driver uses emulation of PCI Bridge which emulates + * access to configuration space via internal Aardvark registers or + * emulated configuration buffer. + */ + reg = advk_readl(pcie, PCIE_CORE_DEV_REV_REG); + reg &= ~0xffffff00; + reg |= (PCI_CLASS_BRIDGE_PCI << 8) << 8; + advk_writel(pcie, reg, PCIE_CORE_DEV_REV_REG); + + /* Disable Root Bridge I/O space, memory space and bus mastering */ + reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG); + reg &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); + advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG); + /* Set Advanced Error Capabilities and Control PF0 register */ reg = PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX | PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN | @@ -274,42 +535,34 @@ PCIE_CORE_ERR_CAPCTL_ECRC_CHCK_RCV; advk_writel(pcie, reg, PCIE_CORE_ERR_CAPCTL_REG); - /* Set PCIe Device Control and Status 1 PF0 register */ - reg = PCIE_CORE_DEV_CTRL_STATS_RELAX_ORDER_DISABLE | - (7 << PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SZ_SHIFT) | - PCIE_CORE_DEV_CTRL_STATS_SNOOP_DISABLE | - (PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SZ << - PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE_SHIFT); - advk_writel(pcie, reg, PCIE_CORE_DEV_CTRL_STATS_REG); + /* Set PCIe Device Control register */ + reg = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + PCI_EXP_DEVCTL); + reg &= ~PCI_EXP_DEVCTL_RELAX_EN; + reg &= ~PCI_EXP_DEVCTL_NOSNOOP_EN; + reg &= ~PCI_EXP_DEVCTL_PAYLOAD; + reg &= ~PCI_EXP_DEVCTL_READRQ; + reg |= PCI_EXP_DEVCTL_PAYLOAD_512B; + reg |= PCI_EXP_DEVCTL_READRQ_512B; + advk_writel(pcie, reg, PCIE_CORE_PCIEXP_CAP + PCI_EXP_DEVCTL); /* Program PCIe Control 2 to disable strict ordering */ reg = PCIE_CORE_CTRL2_RESERVED | PCIE_CORE_CTRL2_TD_ENABLE; advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG); - /* Set GEN2 */ - reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); - reg &= ~PCIE_GEN_SEL_MSK; - reg |= SPEED_GEN_2; - advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); - /* Set lane X1 */ reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); reg &= ~LANE_CNT_MSK; reg |= LANE_COUNT_1; advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); - /* Enable link training */ - reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); - reg |= LINK_TRAINING_EN; - advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); - /* Enable MSI */ reg = advk_readl(pcie, PCIE_CORE_CTRL2_REG); reg |= PCIE_CORE_CTRL2_MSI_ENABLE; advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG); /* Clear all interrupts */ + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_STATUS_REG); advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_REG); advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_REG); advk_writel(pcie, PCIE_IRQ_ALL_MASK, HOST_CTRL_INT_STATUS_REG); @@ -322,93 +575,244 @@ advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_MASK_REG); /* Unmask all MSIs */ - advk_writel(pcie, 0, PCIE_MSI_MASK_REG); + advk_writel(pcie, ~(u32)PCIE_MSI_ALL_MASK, PCIE_MSI_MASK_REG); /* Enable summary interrupt for GIC SPI source */ reg = PCIE_IRQ_ALL_MASK & (~PCIE_IRQ_ENABLE_INTS_MASK); advk_writel(pcie, reg, HOST_CTRL_INT_MASK_REG); + /* + * Enable AXI address window location generation: + * When it is enabled, the default outbound window + * configurations (Default User Field: 0xD0074CFC) + * are used to transparent address translation for + * the outbound transactions. Thus, PCIe address + * windows are not required for transparent memory + * access when default outbound window configuration + * is set for memory access. + */ reg = advk_readl(pcie, PCIE_CORE_CTRL2_REG); reg |= PCIE_CORE_CTRL2_OB_WIN_ENABLE; advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG); - /* Bypass the address window mapping for PIO */ + /* + * Set memory access in Default User Field so it + * is not required to configure PCIe address for + * transparent memory access. + */ + advk_writel(pcie, OB_WIN_TYPE_MEM, OB_WIN_DEFAULT_ACTIONS); + + /* + * Bypass the address window mapping for PIO: + * Since PIO access already contains all required + * info over AXI interface by PIO registers, the + * address window is not required. + */ reg = advk_readl(pcie, PIO_CTRL); reg |= PIO_CTRL_ADDR_WIN_DISABLE; advk_writel(pcie, reg, PIO_CTRL); - /* Start link training */ - reg = advk_readl(pcie, PCIE_CORE_LINK_CTRL_STAT_REG); - reg |= PCIE_CORE_LINK_TRAINING; - advk_writel(pcie, reg, PCIE_CORE_LINK_CTRL_STAT_REG); + /* + * Configure PCIe address windows for non-memory or + * non-transparent access as by default PCIe uses + * transparent memory access. + */ + for (i = 0; i < pcie->wins_count; i++) + advk_pcie_set_ob_win(pcie, i, + pcie->wins[i].match, pcie->wins[i].remap, + pcie->wins[i].mask, pcie->wins[i].actions); + + /* Disable remaining PCIe outbound windows */ + for (i = pcie->wins_count; i < OB_WIN_COUNT; i++) + advk_pcie_disable_ob_win(pcie, i); - advk_pcie_wait_for_link(pcie); - - reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG); - reg |= PCIE_CORE_CMD_MEM_ACCESS_EN | - PCIE_CORE_CMD_IO_ACCESS_EN | - PCIE_CORE_CMD_MEM_IO_REQ_EN; - advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG); + advk_pcie_train_link(pcie); } -static void advk_pcie_check_pio_status(struct advk_pcie *pcie) +static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u32 *val) { struct device *dev = &pcie->pdev->dev; u32 reg; unsigned int status; char *strcomp_status, *str_posted; + int ret; reg = advk_readl(pcie, PIO_STAT); status = (reg & PIO_COMPLETION_STATUS_MASK) >> PIO_COMPLETION_STATUS_SHIFT; - if (!status) - return; - + /* + * According to HW spec, the PIO status check sequence as below: + * 1) even if COMPLETION_STATUS(bit9:7) indicates successful, + * it still needs to check Error Status(bit11), only when this bit + * indicates no error happen, the operation is successful. + * 2) value Unsupported Request(1) of COMPLETION_STATUS(bit9:7) only + * means a PIO write error, and for PIO read it is successful with + * a read value of 0xFFFFFFFF. + * 3) value Completion Retry Status(CRS) of COMPLETION_STATUS(bit9:7) + * only means a PIO write error, and for PIO read it is successful + * with a read value of 0xFFFF0001. + * 4) value Completer Abort (CA) of COMPLETION_STATUS(bit9:7) means + * error for both PIO read and PIO write operation. + * 5) other errors are indicated as 'unknown'. + */ switch (status) { + case PIO_COMPLETION_STATUS_OK: + if (reg & PIO_ERR_STATUS) { + strcomp_status = "COMP_ERR"; + ret = -EFAULT; + break; + } + /* Get the read result */ + if (val) + *val = advk_readl(pcie, PIO_RD_DATA); + /* No error */ + strcomp_status = NULL; + ret = 0; + break; case PIO_COMPLETION_STATUS_UR: strcomp_status = "UR"; + ret = -EOPNOTSUPP; break; case PIO_COMPLETION_STATUS_CRS: + if (allow_crs && val) { + /* PCIe r4.0, sec 2.3.2, says: + * If CRS Software Visibility is enabled: + * For a Configuration Read Request that includes both + * bytes of the Vendor ID field of a device Function's + * Configuration Space Header, the Root Complex must + * complete the Request to the host by returning a + * read-data value of 0001h for the Vendor ID field and + * all '1's for any additional bytes included in the + * request. + * + * So CRS in this case is not an error status. + */ + *val = CFG_RD_CRS_VAL; + strcomp_status = NULL; + ret = 0; + break; + } + /* PCIe r4.0, sec 2.3.2, says: + * If CRS Software Visibility is not enabled, the Root Complex + * must re-issue the Configuration Request as a new Request. + * If CRS Software Visibility is enabled: For a Configuration + * Write Request or for any other Configuration Read Request, + * the Root Complex must re-issue the Configuration Request as + * a new Request. + * A Root Complex implementation may choose to limit the number + * of Configuration Request/CRS Completion Status loops before + * determining that something is wrong with the target of the + * Request and taking appropriate action, e.g., complete the + * Request to the host as a failed transaction. + * + * So return -EAGAIN and caller (pci-aardvark.c driver) will + * re-issue request again up to the PIO_RETRY_CNT retries. + */ strcomp_status = "CRS"; + ret = -EAGAIN; break; case PIO_COMPLETION_STATUS_CA: strcomp_status = "CA"; + ret = -ECANCELED; break; default: strcomp_status = "Unknown"; + ret = -EINVAL; break; } + if (!strcomp_status) + return ret; + if (reg & PIO_NON_POSTED_REQ) str_posted = "Non-posted"; else str_posted = "Posted"; - dev_err(dev, "%s PIO Response Status: %s, %#x @ %#x\n", + dev_dbg(dev, "%s PIO Response Status: %s, %#x @ %#x\n", str_posted, strcomp_status, reg, advk_readl(pcie, PIO_ADDR_LS)); + + return ret; } static int advk_pcie_wait_pio(struct advk_pcie *pcie) { struct device *dev = &pcie->pdev->dev; - unsigned long timeout; - - timeout = jiffies + msecs_to_jiffies(PIO_TIMEOUT_MS); + int i; - while (time_before(jiffies, timeout)) { + for (i = 1; i <= PIO_RETRY_CNT; i++) { u32 start, isr; start = advk_readl(pcie, PIO_START); isr = advk_readl(pcie, PIO_ISR); if (!start && isr) - return 0; + return i; + udelay(PIO_RETRY_DELAY); } - dev_err(dev, "config read/write timed out\n"); + dev_err(dev, "PIO read/write transfer time out\n"); return -ETIMEDOUT; } +static pci_bridge_emul_read_status_t +advk_pci_bridge_emul_base_conf_read(struct pci_bridge_emul *bridge, + int reg, u32 *value) +{ + struct advk_pcie *pcie = bridge->data; + + switch (reg) { + case PCI_COMMAND: + *value = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG); + return PCI_BRIDGE_EMUL_HANDLED; + + case PCI_INTERRUPT_LINE: { + /* + * From the whole 32bit register we support reading from HW only + * one bit: PCI_BRIDGE_CTL_BUS_RESET. + * Other bits are retrieved only from emulated config buffer. + */ + __le32 *cfgspace = (__le32 *)&bridge->conf; + u32 val = le32_to_cpu(cfgspace[PCI_INTERRUPT_LINE / 4]); + if (advk_readl(pcie, PCIE_CORE_CTRL1_REG) & HOT_RESET_GEN) + val |= PCI_BRIDGE_CTL_BUS_RESET << 16; + else + val &= ~(PCI_BRIDGE_CTL_BUS_RESET << 16); + *value = val; + return PCI_BRIDGE_EMUL_HANDLED; + } + + default: + return PCI_BRIDGE_EMUL_NOT_HANDLED; + } +} + +static void +advk_pci_bridge_emul_base_conf_write(struct pci_bridge_emul *bridge, + int reg, u32 old, u32 new, u32 mask) +{ + struct advk_pcie *pcie = bridge->data; + + switch (reg) { + case PCI_COMMAND: + advk_writel(pcie, new, PCIE_CORE_CMD_STATUS_REG); + break; + + case PCI_INTERRUPT_LINE: + if (mask & (PCI_BRIDGE_CTL_BUS_RESET << 16)) { + u32 val = advk_readl(pcie, PCIE_CORE_CTRL1_REG); + if (new & (PCI_BRIDGE_CTL_BUS_RESET << 16)) + val |= HOT_RESET_GEN; + else + val &= ~HOT_RESET_GEN; + advk_writel(pcie, val, PCIE_CORE_CTRL1_REG); + } + break; + + default: + break; + } +} static pci_bridge_emul_read_status_t advk_pci_bridge_emul_pcie_conf_read(struct pci_bridge_emul *bridge, @@ -425,13 +829,29 @@ case PCI_EXP_RTCTL: { u32 val = advk_readl(pcie, PCIE_ISR0_MASK_REG); *value = (val & PCIE_MSG_PM_PME_MASK) ? 0 : PCI_EXP_RTCTL_PMEIE; + *value |= le16_to_cpu(bridge->pcie_conf.rootctl) & PCI_EXP_RTCTL_CRSSVE; + *value |= PCI_EXP_RTCAP_CRSVIS << 16; return PCI_BRIDGE_EMUL_HANDLED; } case PCI_EXP_RTSTA: { u32 isr0 = advk_readl(pcie, PCIE_ISR0_REG); u32 msglog = advk_readl(pcie, PCIE_MSG_LOG_REG); - *value = (isr0 & PCIE_MSG_PM_PME_MASK) << 16 | (msglog >> 16); + *value = msglog >> 16; + if (isr0 & PCIE_MSG_PM_PME_MASK) + *value |= PCI_EXP_RTSTA_PME; + return PCI_BRIDGE_EMUL_HANDLED; + } + + case PCI_EXP_LNKCAP: { + u32 val = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + reg); + /* + * PCI_EXP_LNKCAP_DLLLARC bit is hardwired in aardvark HW to 0. + * But support for PCI_EXP_LNKSTA_DLLLA is emulated via ltssm + * state so explicitly enable PCI_EXP_LNKCAP_DLLLARC flag. + */ + val |= PCI_EXP_LNKCAP_DLLLARC; + *value = val; return PCI_BRIDGE_EMUL_HANDLED; } @@ -439,16 +859,16 @@ /* u32 contains both PCI_EXP_LNKCTL and PCI_EXP_LNKSTA */ u32 val = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + reg) & ~(PCI_EXP_LNKSTA_LT << 16); - if (!advk_pcie_link_up(pcie)) + if (advk_pcie_link_training(pcie)) val |= (PCI_EXP_LNKSTA_LT << 16); + if (advk_pcie_link_active(pcie)) + val |= (PCI_EXP_LNKSTA_DLLLA << 16); *value = val; return PCI_BRIDGE_EMUL_HANDLED; } - case PCI_CAP_LIST_ID: case PCI_EXP_DEVCAP: case PCI_EXP_DEVCTL: - case PCI_EXP_LNKCAP: *value = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + reg); return PCI_BRIDGE_EMUL_HANDLED; default: @@ -495,6 +915,8 @@ } static struct pci_bridge_emul_ops advk_pci_bridge_emul_ops = { + .read_base = advk_pci_bridge_emul_base_conf_read, + .write_base = advk_pci_bridge_emul_base_conf_write, .read_pcie = advk_pci_bridge_emul_pcie_conf_read, .write_pcie = advk_pci_bridge_emul_pcie_conf_write, }; @@ -507,22 +929,30 @@ { struct pci_bridge_emul *bridge = &pcie->bridge; - bridge->conf.vendor = advk_readl(pcie, PCIE_CORE_DEV_ID_REG) & 0xffff; - bridge->conf.device = advk_readl(pcie, PCIE_CORE_DEV_ID_REG) >> 16; + bridge->conf.vendor = + cpu_to_le16(advk_readl(pcie, PCIE_CORE_DEV_ID_REG) & 0xffff); + bridge->conf.device = + cpu_to_le16(advk_readl(pcie, PCIE_CORE_DEV_ID_REG) >> 16); bridge->conf.class_revision = - advk_readl(pcie, PCIE_CORE_DEV_REV_REG) & 0xff; + cpu_to_le32(advk_readl(pcie, PCIE_CORE_DEV_REV_REG) & 0xff); /* Support 32 bits I/O addressing */ bridge->conf.iobase = PCI_IO_RANGE_TYPE_32; bridge->conf.iolimit = PCI_IO_RANGE_TYPE_32; /* Support 64 bits memory pref */ - bridge->conf.pref_mem_base = PCI_PREF_RANGE_TYPE_64; - bridge->conf.pref_mem_limit = PCI_PREF_RANGE_TYPE_64; + bridge->conf.pref_mem_base = cpu_to_le16(PCI_PREF_RANGE_TYPE_64); + bridge->conf.pref_mem_limit = cpu_to_le16(PCI_PREF_RANGE_TYPE_64); /* Support interrupt A for MSI feature */ bridge->conf.intpin = PCIE_CORE_INT_A_ASSERT_ENABLE; + /* Aardvark HW provides PCIe Capability structure in version 2 */ + bridge->pcie_conf.cap = cpu_to_le16(2); + + /* Indicates supports for Completion Retry Status */ + bridge->pcie_conf.rootcap = cpu_to_le16(PCI_EXP_RTCAP_CRSVIS); + bridge->has_pcie = true; bridge->data = pcie; bridge->ops = &advk_pci_bridge_emul_ops; @@ -536,13 +966,51 @@ if ((bus->number == pcie->root_bus_nr) && PCI_SLOT(devfn) != 0) return false; + /* + * If the link goes down after we check for link-up, nothing bad + * happens but the config access times out. + */ + if (bus->number != pcie->root_bus_nr && !advk_pcie_link_up(pcie)) + return false; + return true; } +static bool advk_pcie_pio_is_running(struct advk_pcie *pcie) +{ + struct device *dev = &pcie->pdev->dev; + + /* + * Trying to start a new PIO transfer when previous has not completed + * cause External Abort on CPU which results in kernel panic: + * + * SError Interrupt on CPU0, code 0xbf000002 -- SError + * Kernel panic - not syncing: Asynchronous SError Interrupt + * + * Functions advk_pcie_rd_conf() and advk_pcie_wr_conf() are protected + * by raw_spin_lock_irqsave() at pci_lock_config() level to prevent + * concurrent calls at the same time. But because PIO transfer may take + * about 1.5s when link is down or card is disconnected, it means that + * advk_pcie_wait_pio() does not always have to wait for completion. + * + * Some versions of ARM Trusted Firmware handles this External Abort at + * EL3 level and mask it to prevent kernel panic. Relevant TF-A commit: + * https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/commit/?id=3c7dcdac5c50 + */ + if (advk_readl(pcie, PIO_START)) { + dev_err(dev, "Previous PIO read/write transfer is still running\n"); + return true; + } + + return false; +} + static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) { struct advk_pcie *pcie = bus->sysdata; + int retry_count; + bool allow_crs; u32 reg; int ret; @@ -555,9 +1023,17 @@ return pci_bridge_emul_conf_read(&pcie->bridge, where, size, val); - /* Start PIO */ - advk_writel(pcie, 0, PIO_START); - advk_writel(pcie, 1, PIO_ISR); + /* + * Completion Retry Status is possible to return only when reading all + * 4 bytes from PCI_VENDOR_ID and PCI_DEVICE_ID registers at once and + * CRSSVE flag on Root Bridge is enabled. + */ + allow_crs = (where == PCI_VENDOR_ID) && (size == 4) && + (le16_to_cpu(pcie->bridge.pcie_conf.rootctl) & + PCI_EXP_RTCTL_CRSSVE); + + if (advk_pcie_pio_is_running(pcie)) + goto try_crs; /* Program the control register */ reg = advk_readl(pcie, PIO_CTRL); @@ -576,23 +1052,45 @@ /* Program the data strobe */ advk_writel(pcie, 0xf, PIO_WR_DATA_STRB); - /* Start the transfer */ - advk_writel(pcie, 1, PIO_START); + retry_count = 0; + do { + /* Clear PIO DONE ISR and start the transfer */ + advk_writel(pcie, 1, PIO_ISR); + advk_writel(pcie, 1, PIO_START); + + ret = advk_pcie_wait_pio(pcie); + if (ret < 0) + goto try_crs; + + retry_count += ret; + + /* Check PIO status and get the read result */ + ret = advk_pcie_check_pio_status(pcie, allow_crs, val); + } while (ret == -EAGAIN && retry_count < PIO_RETRY_CNT); - ret = advk_pcie_wait_pio(pcie); if (ret < 0) - return PCIBIOS_SET_FAILED; - - advk_pcie_check_pio_status(pcie); + goto fail; - /* Get the read result */ - *val = advk_readl(pcie, PIO_RD_DATA); if (size == 1) *val = (*val >> (8 * (where & 3))) & 0xff; else if (size == 2) *val = (*val >> (8 * (where & 3))) & 0xffff; return PCIBIOS_SUCCESSFUL; + +try_crs: + /* + * If it is possible, return Completion Retry Status so that caller + * tries to issue the request again instead of failing. + */ + if (allow_crs) { + *val = CFG_RD_CRS_VAL; + return PCIBIOS_SUCCESSFUL; + } + +fail: + *val = 0xffffffff; + return PCIBIOS_SET_FAILED; } static int advk_pcie_wr_conf(struct pci_bus *bus, u32 devfn, @@ -601,6 +1099,7 @@ struct advk_pcie *pcie = bus->sysdata; u32 reg; u32 data_strobe = 0x0; + int retry_count; int offset; int ret; @@ -614,9 +1113,8 @@ if (where % size) return PCIBIOS_SET_FAILED; - /* Start PIO */ - advk_writel(pcie, 0, PIO_START); - advk_writel(pcie, 1, PIO_ISR); + if (advk_pcie_pio_is_running(pcie)) + return PCIBIOS_SET_FAILED; /* Program the control register */ reg = advk_readl(pcie, PIO_CTRL); @@ -643,16 +1141,22 @@ /* Program the data strobe */ advk_writel(pcie, data_strobe, PIO_WR_DATA_STRB); - /* Start the transfer */ - advk_writel(pcie, 1, PIO_START); + retry_count = 0; + do { + /* Clear PIO DONE ISR and start the transfer */ + advk_writel(pcie, 1, PIO_ISR); + advk_writel(pcie, 1, PIO_START); + + ret = advk_pcie_wait_pio(pcie); + if (ret < 0) + return PCIBIOS_SET_FAILED; - ret = advk_pcie_wait_pio(pcie); - if (ret < 0) - return PCIBIOS_SET_FAILED; + retry_count += ret; - advk_pcie_check_pio_status(pcie); + ret = advk_pcie_check_pio_status(pcie, false, NULL); + } while (ret == -EAGAIN && retry_count < PIO_RETRY_CNT); - return PCIBIOS_SUCCESSFUL; + return ret < 0 ? PCIBIOS_SET_FAILED : PCIBIOS_SUCCESSFUL; } static struct pci_ops advk_pcie_ops = { @@ -668,7 +1172,7 @@ msg->address_lo = lower_32_bits(msi_msg); msg->address_hi = upper_32_bits(msi_msg); - msg->data = data->irq; + msg->data = data->hwirq; } static int advk_msi_set_affinity(struct irq_data *irq_data, @@ -685,15 +1189,11 @@ int hwirq, i; mutex_lock(&pcie->msi_used_lock); - hwirq = bitmap_find_next_zero_area(pcie->msi_used, MSI_IRQ_NUM, - 0, nr_irqs, 0); - if (hwirq >= MSI_IRQ_NUM) { - mutex_unlock(&pcie->msi_used_lock); - return -ENOSPC; - } - - bitmap_set(pcie->msi_used, hwirq, nr_irqs); + hwirq = bitmap_find_free_region(pcie->msi_used, MSI_IRQ_NUM, + order_base_2(nr_irqs)); mutex_unlock(&pcie->msi_used_lock); + if (hwirq < 0) + return -ENOSPC; for (i = 0; i < nr_irqs; i++) irq_domain_set_info(domain, virq + i, hwirq + i, @@ -701,7 +1201,7 @@ domain->host_data, handle_simple_irq, NULL, NULL); - return hwirq; + return 0; } static void advk_msi_irq_domain_free(struct irq_domain *domain, @@ -711,7 +1211,7 @@ struct advk_pcie *pcie = domain->host_data; mutex_lock(&pcie->msi_used_lock); - bitmap_clear(pcie->msi_used, d->hwirq, nr_irqs); + bitmap_release_region(pcie->msi_used, d->hwirq, order_base_2(nr_irqs)); mutex_unlock(&pcie->msi_used_lock); } @@ -724,22 +1224,28 @@ { struct advk_pcie *pcie = d->domain->host_data; irq_hw_number_t hwirq = irqd_to_hwirq(d); + unsigned long flags; u32 mask; + raw_spin_lock_irqsave(&pcie->irq_lock, flags); mask = advk_readl(pcie, PCIE_ISR1_MASK_REG); mask |= PCIE_ISR1_INTX_ASSERT(hwirq); advk_writel(pcie, mask, PCIE_ISR1_MASK_REG); + raw_spin_unlock_irqrestore(&pcie->irq_lock, flags); } static void advk_pcie_irq_unmask(struct irq_data *d) { struct advk_pcie *pcie = d->domain->host_data; irq_hw_number_t hwirq = irqd_to_hwirq(d); + unsigned long flags; u32 mask; + raw_spin_lock_irqsave(&pcie->irq_lock, flags); mask = advk_readl(pcie, PCIE_ISR1_MASK_REG); mask &= ~PCIE_ISR1_INTX_ASSERT(hwirq); advk_writel(pcie, mask, PCIE_ISR1_MASK_REG); + raw_spin_unlock_irqrestore(&pcie->irq_lock, flags); } static int advk_pcie_irq_map(struct irq_domain *h, @@ -823,6 +1329,8 @@ struct irq_chip *irq_chip; int ret = 0; + raw_spin_lock_init(&pcie->irq_lock); + pcie_intc_node = of_get_next_child(node, NULL); if (!pcie_intc_node) { dev_err(dev, "No PCIe Intc node found\n"); @@ -864,19 +1372,19 @@ static void advk_pcie_handle_msi(struct advk_pcie *pcie) { u32 msi_val, msi_mask, msi_status, msi_idx; - u16 msi_data; + int virq; msi_mask = advk_readl(pcie, PCIE_MSI_MASK_REG); msi_val = advk_readl(pcie, PCIE_MSI_STATUS_REG); - msi_status = msi_val & ~msi_mask; + msi_status = msi_val & ((~msi_mask) & PCIE_MSI_ALL_MASK); for (msi_idx = 0; msi_idx < MSI_IRQ_NUM; msi_idx++) { if (!(BIT(msi_idx) & msi_status)) continue; advk_writel(pcie, BIT(msi_idx), PCIE_MSI_STATUS_REG); - msi_data = advk_readl(pcie, PCIE_MSI_PAYLOAD_REG) & 0xFF; - generic_handle_irq(msi_data); + virq = irq_find_mapping(pcie->msi_inner_domain, msi_idx); + generic_handle_irq(virq); } advk_writel(pcie, PCIE_ISR0_MSI_INT_PENDING, @@ -897,12 +1405,6 @@ isr1_mask = advk_readl(pcie, PCIE_ISR1_MASK_REG); isr1_status = isr1_val & ((~isr1_mask) & PCIE_ISR1_ALL_MASK); - if (!isr0_status && !isr1_status) { - advk_writel(pcie, isr0_val, PCIE_ISR0_REG); - advk_writel(pcie, isr1_val, PCIE_ISR1_REG); - return; - } - /* Process MSI interrupts */ if (isr0_status & PCIE_ISR0_MSI_INT_PENDING) advk_pcie_handle_msi(pcie); @@ -995,6 +1497,7 @@ struct advk_pcie *pcie; struct resource *res; struct pci_host_bridge *bridge; + struct resource_entry *entry; int ret, irq; bridge = devm_pci_alloc_host_bridge(dev, sizeof(struct advk_pcie)); @@ -1024,6 +1527,102 @@ return ret; } + resource_list_for_each_entry(entry, &pcie->resources) { + resource_size_t start = entry->res->start; + resource_size_t size = resource_size(entry->res); + unsigned long type = resource_type(entry->res); + u64 win_size; + + /* + * Aardvark hardware allows to configure also PCIe window + * for config type 0 and type 1 mapping, but driver uses + * only PIO for issuing configuration transfers which does + * not use PCIe window configuration. + */ + if (type != IORESOURCE_MEM && type != IORESOURCE_MEM_64 && + type != IORESOURCE_IO) + continue; + + /* + * Skip transparent memory resources. Default outbound access + * configuration is set to transparent memory access so it + * does not need window configuration. + */ + if ((type == IORESOURCE_MEM || type == IORESOURCE_MEM_64) && + entry->offset == 0) + continue; + + /* + * The n-th PCIe window is configured by tuple (match, remap, mask) + * and an access to address A uses this window if A matches the + * match with given mask. + * So every PCIe window size must be a power of two and every start + * address must be aligned to window size. Minimal size is 64 KiB + * because lower 16 bits of mask must be zero. Remapped address + * may have set only bits from the mask. + */ + while (pcie->wins_count < OB_WIN_COUNT && size > 0) { + /* Calculate the largest aligned window size */ + win_size = (1ULL << (fls64(size)-1)) | + (start ? (1ULL << __ffs64(start)) : 0); + win_size = 1ULL << __ffs64(win_size); + if (win_size < 0x10000) + break; + + dev_dbg(dev, + "Configuring PCIe window %d: [0x%llx-0x%llx] as %lu\n", + pcie->wins_count, (unsigned long long)start, + (unsigned long long)start + win_size, type); + + if (type == IORESOURCE_IO) { + pcie->wins[pcie->wins_count].actions = OB_WIN_TYPE_IO; + pcie->wins[pcie->wins_count].match = pci_pio_to_address(start); + } else { + pcie->wins[pcie->wins_count].actions = OB_WIN_TYPE_MEM; + pcie->wins[pcie->wins_count].match = start; + } + pcie->wins[pcie->wins_count].remap = start - entry->offset; + pcie->wins[pcie->wins_count].mask = ~(win_size - 1); + + if (pcie->wins[pcie->wins_count].remap & (win_size - 1)) + break; + + start += win_size; + size -= win_size; + pcie->wins_count++; + } + + if (size > 0) { + dev_err(&pcie->pdev->dev, + "Invalid PCIe region [0x%llx-0x%llx]\n", + (unsigned long long)entry->res->start, + (unsigned long long)entry->res->end + 1); + return -EINVAL; + } + } + + pcie->reset_gpio = devm_gpiod_get_from_of_node(dev, dev->of_node, + "reset-gpios", 0, + GPIOD_OUT_LOW, + "pcie1-reset"); + ret = PTR_ERR_OR_ZERO(pcie->reset_gpio); + if (ret) { + if (ret == -ENOENT) { + pcie->reset_gpio = NULL; + } else { + if (ret != -EPROBE_DEFER) + dev_err(dev, "Failed to get reset-gpio: %i\n", + ret); + return ret; + } + } + + ret = of_pci_get_max_link_speed(dev->of_node); + if (ret <= 0 || ret > 3) + pcie->link_gen = 3; + else + pcie->link_gen = ret; + advk_pcie_setup_hw(pcie); ret = advk_sw_pci_bridge_init(pcie); diff -u linux-azure-5.4.0/drivers/pci/controller/pci-hyperv.c linux-azure-5.4.0/drivers/pci/controller/pci-hyperv.c --- linux-azure-5.4.0/drivers/pci/controller/pci-hyperv.c +++ linux-azure-5.4.0/drivers/pci/controller/pci-hyperv.c @@ -40,15 +40,15 @@ #include #include #include +#include #include #include -#include -#include -#include #include #include #include #include +#include +#include #include /* @@ -64,6 +64,7 @@ PCI_PROTOCOL_VERSION_1_1 = PCI_MAKE_VERSION(1, 1), /* Win10 */ PCI_PROTOCOL_VERSION_1_2 = PCI_MAKE_VERSION(1, 2), /* RS1 */ PCI_PROTOCOL_VERSION_1_3 = PCI_MAKE_VERSION(1, 3), /* Vibranium */ + PCI_PROTOCOL_VERSION_1_4 = PCI_MAKE_VERSION(1, 4), /* WS2022 */ }; #define CPU_AFFINITY_ALL -1ULL @@ -73,6 +74,7 @@ * first. */ static enum pci_protocol_version_t pci_protocol_versions[] = { + PCI_PROTOCOL_VERSION_1_4, PCI_PROTOCOL_VERSION_1_3, PCI_PROTOCOL_VERSION_1_2, PCI_PROTOCOL_VERSION_1_1, @@ -127,6 +129,8 @@ PCI_CREATE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x17, PCI_DELETE_INTERRUPT_MESSAGE2 = PCI_MESSAGE_BASE + 0x18, /* unused */ PCI_BUS_RELATIONS2 = PCI_MESSAGE_BASE + 0x19, + PCI_RESOURCES_ASSIGNED3 = PCI_MESSAGE_BASE + 0x1A, + PCI_CREATE_INTERRUPT_MESSAGE3 = PCI_MESSAGE_BASE + 0x1B, PCI_MESSAGE_MAXIMUM }; @@ -240,6 +244,21 @@ u16 processor_array[32]; } __packed; +/* + * struct hv_msi_desc3 - 1.3 version of hv_msi_desc + * Everything is the same as in 'hv_msi_desc2' except that the size of the + * 'vector' field is larger to support bigger vector values. For ex: LPI + * vectors on ARM. + */ +struct hv_msi_desc3 { + u32 vector; + u8 delivery_mode; + u8 reserved; + u16 vector_count; + u16 processor_count; + u16 processor_array[32]; +} __packed; + /** * struct tran_int_desc * @reserved: unused, padding @@ -388,6 +407,12 @@ struct hv_msi_desc2 int_desc; } __packed; +struct pci_create_interrupt3 { + struct pci_message message_type; + union win_slot_encoding wslot; + struct hv_msi_desc3 int_desc; +} __packed; + struct pci_delete_interrupt { struct pci_message message_type; union win_slot_encoding wslot; @@ -441,42 +466,6 @@ static int pci_ring_size = (4 * PAGE_SIZE); /* - * Definitions or interrupt steering hypercall. - */ -#define HV_PARTITION_ID_SELF ((u64)-1) -#define HVCALL_RETARGET_INTERRUPT 0x7e - -struct hv_interrupt_entry { - u32 source; /* 1 for MSI(-X) */ - u32 reserved1; - u32 address; - u32 data; -}; - -/* - * flags for hv_device_interrupt_target.flags - */ -#define HV_DEVICE_INTERRUPT_TARGET_MULTICAST 1 -#define HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET 2 - -struct hv_device_interrupt_target { - u32 vector; - u32 flags; - union { - u64 vp_mask; - struct hv_vpset vp_set; - }; -}; - -struct retarget_msi_interrupt { - u64 partition_id; /* use "self" */ - u64 device_id; - struct hv_interrupt_entry int_entry; - u64 reserved2; - struct hv_device_interrupt_target int_target; -} __packed __aligned(8); - -/* * Driver specific state. */ @@ -485,14 +474,20 @@ hv_pcibus_probed, hv_pcibus_installed, hv_pcibus_removing, - hv_pcibus_removed, hv_pcibus_maximum }; struct hv_pcibus_device { +#ifdef CONFIG_X86 struct pci_sysdata sysdata; +#elif defined(CONFIG_ARM64) + struct pci_config_window sysdata; +#endif + struct pci_host_bridge *bridge; + struct fwnode_handle *fwnode; + /* Protocol version negotiated with the host */ + enum pci_protocol_version_t protocol_version; enum hv_pcibus_state state; - refcount_t remove_lock; struct hv_device *hdev; resource_size_t low_mmio_space; resource_size_t high_mmio_space; @@ -500,19 +495,15 @@ struct resource *low_mmio_res; struct resource *high_mmio_res; struct completion *survey_event; - struct completion remove_event; struct pci_bus *pci_bus; spinlock_t config_lock; /* Avoid two threads writing index page */ spinlock_t device_list_lock; /* Protect lists below */ void __iomem *cfg_addr; - struct list_head resources_for_children; - struct list_head children; struct list_head dr_list; struct msi_domain_info msi_info; - struct msi_controller msi_chip; struct irq_domain *irq_domain; spinlock_t retarget_msi_interrupt_lock; @@ -523,7 +514,7 @@ int wslot_res_allocated; /* hypercall arg, must not cross page boundary */ - struct retarget_msi_interrupt retarget_msi_interrupt_params; + struct hv_retarget_device_interrupt retarget_msi_interrupt_params; /* * Don't put anything here: retarget_msi_interrupt_params must be last @@ -596,6 +587,265 @@ static void hv_pci_onchannelcallback(void *context); +#ifdef CONFIG_X86 +#define DELIVERY_MODE APIC_DELIVERY_MODE_FIXED +#define FLOW_HANDLER handle_edge_irq +#define FLOW_NAME "edge" + +static int hv_pci_irqchip_init(void) +{ + return 0; +} + +static struct irq_domain *hv_pci_get_root_domain(void) +{ + return x86_vector_domain; +} + +static unsigned int hv_msi_get_int_vector(struct irq_data *data) +{ + struct irq_cfg *cfg = irqd_cfg(data); + + return cfg->vector; +} + +static void hv_set_msi_entry_from_desc(union hv_msi_entry *msi_entry, + struct msi_desc *msi_desc) +{ + msi_entry->address.as_uint32 = msi_desc->msg.address_lo; + msi_entry->data.as_uint32 = msi_desc->msg.data; +} + +static int hv_msi_prepare(struct irq_domain *domain, struct device *dev, + int nvec, msi_alloc_info_t *info) +{ + return pci_msi_prepare(domain, dev, nvec, info); +} +#elif defined(CONFIG_ARM64) +/* + * SPI vectors to use for vPCI; arch SPIs range is [32, 1019], but leaving a bit + * of room at the start to allow for SPIs to be specified through ACPI and + * starting with a power of two to satisfy power of 2 multi-MSI requirement. + */ +#define HV_PCI_MSI_SPI_START 64 +#define HV_PCI_MSI_SPI_NR (1020 - HV_PCI_MSI_SPI_START) +#define DELIVERY_MODE 0 +#define FLOW_HANDLER NULL +#define FLOW_NAME NULL +#define hv_msi_prepare NULL + +struct hv_pci_chip_data { + DECLARE_BITMAP(spi_map, HV_PCI_MSI_SPI_NR); + struct mutex map_lock; +}; + +/* Hyper-V vPCI MSI GIC IRQ domain */ +static struct irq_domain *hv_msi_gic_irq_domain; + +/* Hyper-V PCI MSI IRQ chip */ +static struct irq_chip hv_arm64_msi_irq_chip = { + .name = "MSI", + .irq_set_affinity = irq_chip_set_affinity_parent, + .irq_eoi = irq_chip_eoi_parent, + .irq_mask = irq_chip_mask_parent, + .irq_unmask = irq_chip_unmask_parent +}; + +static unsigned int hv_msi_get_int_vector(struct irq_data *irqd) +{ + return irqd->parent_data->hwirq; +} + +static void hv_set_msi_entry_from_desc(union hv_msi_entry *msi_entry, + struct msi_desc *msi_desc) +{ + msi_entry->address = ((u64)msi_desc->msg.address_hi << 32) | + msi_desc->msg.address_lo; + msi_entry->data = msi_desc->msg.data; +} + +/* + * @nr_bm_irqs: Indicates the number of IRQs that were allocated from + * the bitmap. + * @nr_dom_irqs: Indicates the number of IRQs that were allocated from + * the parent domain. + */ +static void hv_pci_vec_irq_free(struct irq_domain *domain, + unsigned int virq, + unsigned int nr_bm_irqs, + unsigned int nr_dom_irqs) +{ + struct hv_pci_chip_data *chip_data = domain->host_data; + struct irq_data *d = irq_domain_get_irq_data(domain, virq); + int first = d->hwirq - HV_PCI_MSI_SPI_START; + int i; + + mutex_lock(&chip_data->map_lock); + bitmap_release_region(chip_data->spi_map, + first, + get_count_order(nr_bm_irqs)); + mutex_unlock(&chip_data->map_lock); + for (i = 0; i < nr_dom_irqs; i++) { + if (i) + d = irq_domain_get_irq_data(domain, virq + i); + irq_domain_reset_irq_data(d); + } + + irq_domain_free_irqs_parent(domain, virq, nr_dom_irqs); +} + +static void hv_pci_vec_irq_domain_free(struct irq_domain *domain, + unsigned int virq, + unsigned int nr_irqs) +{ + hv_pci_vec_irq_free(domain, virq, nr_irqs, nr_irqs); +} + +static int hv_pci_vec_alloc_device_irq(struct irq_domain *domain, + unsigned int nr_irqs, + irq_hw_number_t *hwirq) +{ + struct hv_pci_chip_data *chip_data = domain->host_data; + int index; + + /* Find and allocate region from the SPI bitmap */ + mutex_lock(&chip_data->map_lock); + index = bitmap_find_free_region(chip_data->spi_map, + HV_PCI_MSI_SPI_NR, + get_count_order(nr_irqs)); + mutex_unlock(&chip_data->map_lock); + if (index < 0) + return -ENOSPC; + + *hwirq = index + HV_PCI_MSI_SPI_START; + + return 0; +} + +static int hv_pci_vec_irq_gic_domain_alloc(struct irq_domain *domain, + unsigned int virq, + irq_hw_number_t hwirq) +{ + struct irq_fwspec fwspec; + struct irq_data *d; + int ret; + + fwspec.fwnode = domain->parent->fwnode; + fwspec.param_count = 2; + fwspec.param[0] = hwirq; + fwspec.param[1] = IRQ_TYPE_EDGE_RISING; + + ret = irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec); + if (ret) + return ret; + + /* + * Since the interrupt specifier is not coming from ACPI or DT, the + * trigger type will need to be set explicitly. Otherwise, it will be + * set to whatever is in the GIC configuration. + */ + d = irq_domain_get_irq_data(domain->parent, virq); + + return d->chip->irq_set_type(d, IRQ_TYPE_EDGE_RISING); +} + +static int hv_pci_vec_irq_domain_alloc(struct irq_domain *domain, + unsigned int virq, unsigned int nr_irqs, + void *args) +{ + irq_hw_number_t hwirq; + unsigned int i; + int ret; + + ret = hv_pci_vec_alloc_device_irq(domain, nr_irqs, &hwirq); + if (ret) + return ret; + + for (i = 0; i < nr_irqs; i++) { + ret = hv_pci_vec_irq_gic_domain_alloc(domain, virq + i, + hwirq + i); + if (ret) { + hv_pci_vec_irq_free(domain, virq, nr_irqs, i); + return ret; + } + + irq_domain_set_hwirq_and_chip(domain, virq + i, + hwirq + i, + &hv_arm64_msi_irq_chip, + domain->host_data); + pr_debug("pID:%d vID:%u\n", (int)(hwirq + i), virq + i); + } + + return 0; +} + +/* + * Pick the first cpu as the irq affinity that can be temporarily used for + * composing MSI from the hypervisor. GIC will eventually set the right + * affinity for the irq and the 'unmask' will retarget the interrupt to that + * cpu. + */ +static int hv_pci_vec_irq_domain_activate(struct irq_domain *domain, + struct irq_data *irqd, bool reserve) +{ + int cpu = cpumask_first(cpu_present_mask); + + irq_data_update_effective_affinity(irqd, cpumask_of(cpu)); + + return 0; +} + +static const struct irq_domain_ops hv_pci_domain_ops = { + .alloc = hv_pci_vec_irq_domain_alloc, + .free = hv_pci_vec_irq_domain_free, + .activate = hv_pci_vec_irq_domain_activate, +}; + +static int hv_pci_irqchip_init(void) +{ + static struct hv_pci_chip_data *chip_data; + struct fwnode_handle *fn = NULL; + int ret = -ENOMEM; + + chip_data = kzalloc(sizeof(*chip_data), GFP_KERNEL); + if (!chip_data) + return ret; + + mutex_init(&chip_data->map_lock); + fn = irq_domain_alloc_named_fwnode("hv_vpci_arm64"); + if (!fn) + goto free_chip; + + /* + * IRQ domain once enabled, should not be removed since there is no + * way to ensure that all the corresponding devices are also gone and + * no interrupts will be generated. + */ + hv_msi_gic_irq_domain = acpi_irq_create_hierarchy(0, HV_PCI_MSI_SPI_NR, + fn, &hv_pci_domain_ops, + chip_data); + + if (!hv_msi_gic_irq_domain) { + pr_err("Failed to create Hyper-V arm64 vPCI MSI IRQ domain\n"); + goto free_chip; + } + + return 0; + +free_chip: + kfree(chip_data); + if (fn) + irq_domain_free_fwnode(fn); + + return ret; +} + +static struct irq_domain *hv_pci_get_root_domain(void) +{ + return hv_msi_gic_irq_domain; +} +#endif /* CONFIG_ARM64 */ + /** * hv_pci_generic_compl() - Invoked for a completion packet * @context: Set up by the sender of the packet. @@ -633,9 +883,6 @@ kfree(hpdev); } -static void get_hvpcibus(struct hv_pcibus_device *hv_pcibus); -static void put_hvpcibus(struct hv_pcibus_device *hv_pcibus); - /* * There is no good way to get notified from vmbus_onoffer_rescind(), * so let's use polling here, since this is not a hot path. @@ -1206,17 +1453,11 @@ put_pcichild(hpdev); } -static int hv_set_affinity(struct irq_data *data, const struct cpumask *dest, - bool force) -{ - struct irq_data *parent = data->parent_data; - - return parent->chip->irq_set_affinity(parent, dest, force); -} - static void hv_irq_mask(struct irq_data *data) { pci_msi_mask_irq(data); + if (data->parent_data->chip->irq_mask) + irq_chip_mask_parent(data); } /** @@ -1232,8 +1473,7 @@ static void hv_irq_unmask(struct irq_data *data) { struct msi_desc *msi_desc = irq_data_get_msi_desc(data); - struct irq_cfg *cfg = irqd_cfg(data); - struct retarget_msi_interrupt *params; + struct hv_retarget_device_interrupt *params; struct hv_pcibus_device *hbus; struct cpumask *dest; cpumask_var_t tmp; @@ -1254,18 +1494,17 @@ params = &hbus->retarget_msi_interrupt_params; memset(params, 0, sizeof(*params)); params->partition_id = HV_PARTITION_ID_SELF; - params->int_entry.source = 1; /* MSI(-X) */ - params->int_entry.address = msi_desc->msg.address_lo; - params->int_entry.data = msi_desc->msg.data; + params->int_entry.source = HV_INTERRUPT_SOURCE_MSI; + hv_set_msi_entry_from_desc(¶ms->int_entry.msi_entry, msi_desc); params->device_id = (hbus->hdev->dev_instance.b[5] << 24) | (hbus->hdev->dev_instance.b[4] << 16) | (hbus->hdev->dev_instance.b[7] << 8) | (hbus->hdev->dev_instance.b[6] & 0xf8) | PCI_FUNC(pdev->devfn); - params->int_target.vector = cfg->vector; + params->int_target.vector = hv_msi_get_int_vector(data); /* - * Honoring apic->irq_delivery_mode set to dest_Fixed by + * Honoring apic->delivery_mode set to APIC_DELIVERY_MODE_FIXED by * setting the HV_DEVICE_INTERRUPT_TARGET_MULTICAST flag results in a * spurious interrupt storm. Not doing so does not seem to have a * negative effect (yet?). @@ -1331,10 +1570,12 @@ * resumes, hv_pci_restore_msi_state() is able to correctly restore * the interrupt with the correct affinity. */ - if (res && hbus->state != hv_pcibus_removing) + if (!hv_result_success(res) && hbus->state != hv_pcibus_removing) dev_err(&hbus->hdev->device, "%s() failed: %#llx", __func__, res); + if (data->parent_data->chip->irq_unmask) + irq_chip_unmask_parent(data); pci_msi_unmask_irq(data); } @@ -1363,7 +1604,7 @@ int_pkt->wslot.slot = slot; int_pkt->int_desc.vector = vector; int_pkt->int_desc.vector_count = 1; - int_pkt->int_desc.delivery_mode = dest_Fixed; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; /* * Create MSI w/ dummy vCPU set, overwritten by subsequent retarget in @@ -1374,6 +1615,15 @@ return sizeof(*int_pkt); } +/* + * Create MSI w/ dummy vCPU set targeting just one vCPU, overwritten + * by subsequent retarget in hv_irq_unmask(). + */ +static int hv_compose_msi_req_get_cpu(struct cpumask *affinity) +{ + return cpumask_first_and(affinity, cpu_online_mask); +} + static u32 hv_compose_msi_req_v2( struct pci_create_interrupt2 *int_pkt, struct cpumask *affinity, u32 slot, u8 vector) @@ -1384,13 +1634,28 @@ int_pkt->wslot.slot = slot; int_pkt->int_desc.vector = vector; int_pkt->int_desc.vector_count = 1; - int_pkt->int_desc.delivery_mode = dest_Fixed; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; + cpu = hv_compose_msi_req_get_cpu(affinity); + int_pkt->int_desc.processor_array[0] = + hv_cpu_number_to_vp_number(cpu); + int_pkt->int_desc.processor_count = 1; - /* - * Create MSI w/ dummy vCPU set targeting just one vCPU, overwritten - * by subsequent retarget in hv_irq_unmask(). - */ - cpu = cpumask_first_and(affinity, cpu_online_mask); + return sizeof(*int_pkt); +} + +static u32 hv_compose_msi_req_v3( + struct pci_create_interrupt3 *int_pkt, struct cpumask *affinity, + u32 slot, u32 vector) +{ + int cpu; + + int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE3; + int_pkt->wslot.slot = slot; + int_pkt->int_desc.vector = vector; + int_pkt->int_desc.reserved = 0; + int_pkt->int_desc.vector_count = 1; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; + cpu = hv_compose_msi_req_get_cpu(affinity); int_pkt->int_desc.processor_array[0] = hv_cpu_number_to_vp_number(cpu); int_pkt->int_desc.processor_count = 1; @@ -1411,13 +1676,12 @@ */ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) { - struct irq_cfg *cfg = irqd_cfg(data); struct hv_pcibus_device *hbus; + struct vmbus_channel *channel; struct hv_pci_dev *hpdev; struct pci_bus *pbus; struct pci_dev *pdev; struct cpumask *dest; - unsigned long flags; struct compose_comp_ctxt comp; struct tran_int_desc *int_desc; struct { @@ -1425,6 +1689,7 @@ union { struct pci_create_interrupt v1; struct pci_create_interrupt2 v2; + struct pci_create_interrupt3 v3; } int_pkts; } __packed ctxt; @@ -1435,6 +1700,7 @@ dest = irq_data_get_effective_affinity_mask(data); pbus = pdev->bus; hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata); + channel = hbus->hdev->channel; hpdev = get_pcichild_wslot(hbus, devfn_to_wslot(pdev->devfn)); if (!hpdev) goto return_null_message; @@ -1460,7 +1726,7 @@ size = hv_compose_msi_req_v1(&ctxt.int_pkts.v1, dest, hpdev->desc.win_slot.slot, - cfg->vector); + hv_msi_get_int_vector(data)); break; case PCI_PROTOCOL_VERSION_1_2: @@ -1468,7 +1734,14 @@ size = hv_compose_msi_req_v2(&ctxt.int_pkts.v2, dest, hpdev->desc.win_slot.slot, - cfg->vector); + hv_msi_get_int_vector(data)); + break; + + case PCI_PROTOCOL_VERSION_1_4: + size = hv_compose_msi_req_v3(&ctxt.int_pkts.v3, + dest, + hpdev->desc.win_slot.slot, + hv_msi_get_int_vector(data)); break; default: @@ -1493,42 +1766,51 @@ } /* + * Prevents hv_pci_onchannelcallback() from running concurrently + * in the tasklet. + */ + tasklet_disable(&channel->callback_event); + + /* * Since this function is called with IRQ locks held, can't * do normal wait for completion; instead poll. */ while (!try_wait_for_completion(&comp.comp_pkt.host_event)) { + unsigned long flags; + /* 0xFFFF means an invalid PCI VENDOR ID. */ if (hv_pcifront_get_vendor_id(hpdev) == 0xFFFF) { dev_err_once(&hbus->hdev->device, "the device has gone\n"); - goto free_int_desc; + goto enable_tasklet; } /* - * When the higher level interrupt code calls us with - * interrupt disabled, we must poll the channel by calling - * the channel callback directly when channel->target_cpu is - * the current CPU. When the higher level interrupt code - * calls us with interrupt enabled, let's add the - * local_irq_save()/restore() to avoid race: - * hv_pci_onchannelcallback() can also run in tasklet. + * Make sure that the ring buffer data structure doesn't get + * freed while we dereference the ring buffer pointer. Test + * for the channel's onchannel_callback being NULL within a + * sched_lock critical section. See also the inline comments + * in vmbus_reset_channel_cb(). */ - local_irq_save(flags); - - if (hbus->hdev->channel->target_cpu == smp_processor_id()) - hv_pci_onchannelcallback(hbus); - - local_irq_restore(flags); + spin_lock_irqsave(&channel->sched_lock, flags); + if (unlikely(channel->onchannel_callback == NULL)) { + spin_unlock_irqrestore(&channel->sched_lock, flags); + goto enable_tasklet; + } + hv_pci_onchannelcallback(hbus); + spin_unlock_irqrestore(&channel->sched_lock, flags); if (hpdev->state == hv_pcichild_ejecting) { dev_err_once(&hbus->hdev->device, "the device is being ejected\n"); - goto free_int_desc; + goto enable_tasklet; } udelay(100); } + tasklet_enable(&channel->callback_event); + if (comp.comp_pkt.completion_status < 0) { dev_err(&hbus->hdev->device, "Request for interrupt failed: 0x%x", @@ -1552,6 +1834,8 @@ put_pcichild(hpdev); return; +enable_tasklet: + tasklet_enable(&channel->callback_event); free_int_desc: kfree(int_desc); drop_reference: @@ -1566,22 +1850,30 @@ static struct irq_chip hv_msi_irq_chip = { .name = "Hyper-V PCIe MSI", .irq_compose_msi_msg = hv_compose_msi_msg, - .irq_set_affinity = hv_set_affinity, + .irq_set_affinity = irq_chip_set_affinity_parent, +#ifdef CONFIG_X86 .irq_ack = irq_chip_ack_parent, +#elif defined(CONFIG_ARM64) + .irq_eoi = irq_chip_eoi_parent, +#endif .irq_mask = hv_irq_mask, .irq_unmask = hv_irq_unmask, }; +#ifdef CONFIG_X86 static irq_hw_number_t hv_msi_domain_ops_get_hwirq(struct msi_domain_info *info, - msi_alloc_info_t *arg) + msi_alloc_info_t *arg) { return arg->msi_hwirq; } +#endif static struct msi_domain_ops hv_msi_ops = { - .get_hwirq = hv_msi_domain_ops_get_hwirq, - .msi_prepare = pci_msi_prepare, - .set_desc = pci_msi_set_desc, +#ifdef CONFIG_X86 + .get_hwirq = hv_msi_domain_ops_get_hwirq, + .set_desc = pci_msi_set_desc, +#endif + .msi_prepare = hv_msi_prepare, .msi_free = hv_msi_free, }; @@ -1605,18 +1897,20 @@ hbus->msi_info.flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX); - hbus->msi_info.handler = handle_edge_irq; - hbus->msi_info.handler_name = "edge"; + hbus->msi_info.handler = FLOW_HANDLER; + hbus->msi_info.handler_name = FLOW_NAME; hbus->msi_info.data = hbus; - hbus->irq_domain = pci_msi_create_irq_domain(hbus->sysdata.fwnode, + hbus->irq_domain = pci_msi_create_irq_domain(hbus->fwnode, &hbus->msi_info, - x86_vector_domain); + hv_pci_get_root_domain()); if (!hbus->irq_domain) { dev_err(&hbus->hdev->device, "Failed to build an MSI IRQ domain\n"); return -ENODEV; } + dev_set_msi_domain(&hbus->bridge->dev, hbus->irq_domain); + return 0; } @@ -1801,12 +2095,17 @@ } } if (high_size <= 1 && low_size <= 1) { - /* Set the memory enable bit. */ - _hv_pcifront_read_config(hpdev, PCI_COMMAND, 2, - &command); - command |= PCI_COMMAND_MEMORY; - _hv_pcifront_write_config(hpdev, PCI_COMMAND, 2, - command); + /* + * No need to set the PCI_COMMAND_MEMORY bit as + * the core PCI driver doesn't require the bit + * to be pre-set. Actually here we intentionally + * keep the bit off so that the PCI BAR probing + * in the core PCI driver doesn't cause Hyper-V + * to unnecessarily unmap/map the virtual BARs + * from/to the physical BARs multiple times. + * This reduces the VM boot time significantly + * if the BAR sizes are huge. + */ break; } } @@ -1839,7 +2138,7 @@ slot_nr = PCI_SLOT(wslot_to_devfn(hpdev->desc.win_slot.slot)); snprintf(name, SLOT_NAME_SIZE, "%u", hpdev->desc.ser); - hpdev->pci_slot = pci_create_slot(hbus->pci_bus, slot_nr, + hpdev->pci_slot = pci_create_slot(hbus->bridge->bus, slot_nr, name, NULL); if (IS_ERR(hpdev->pci_slot)) { pr_warn("pci_create slot %s failed\n", name); @@ -1869,7 +2168,7 @@ static void hv_pci_assign_numa_node(struct hv_pcibus_device *hbus) { struct pci_dev *dev; - struct pci_bus *bus = hbus->pci_bus; + struct pci_bus *bus = hbus->bridge->bus; struct hv_pci_dev *hv_dev; list_for_each_entry(dev, &bus->devices, bus_list) { @@ -1892,24 +2191,22 @@ */ static int create_root_hv_pci_bus(struct hv_pcibus_device *hbus) { - /* Register the device */ - hbus->pci_bus = pci_create_root_bus(&hbus->hdev->device, - 0, /* bus number is always zero */ - &hv_pcifront_ops, - &hbus->sysdata, - &hbus->resources_for_children); - if (!hbus->pci_bus) - return -ENODEV; + int error; + struct pci_host_bridge *bridge = hbus->bridge; - hbus->pci_bus->msi = &hbus->msi_chip; - hbus->pci_bus->msi->dev = &hbus->hdev->device; + bridge->dev.parent = &hbus->hdev->device; + bridge->sysdata = &hbus->sysdata; + bridge->ops = &hv_pcifront_ops; + + error = pci_scan_root_bus_bridge(bridge); + if (error) + return error; pci_lock_rescan_remove(); - pci_scan_child_bus(hbus->pci_bus); hv_pci_assign_numa_node(hbus); - pci_bus_assign_resources(hbus->pci_bus); + pci_bus_assign_resources(bridge->bus); hv_pci_assign_slots(hbus); - pci_bus_add_devices(hbus->pci_bus); + pci_bus_add_devices(bridge->bus); pci_unlock_rescan_remove(); hbus->state = hv_pcibus_installed; return 0; @@ -2103,10 +2400,8 @@ } spin_unlock_irqrestore(&hbus->device_list_lock, flags); - if (!dr) { - put_hvpcibus(hbus); + if (!dr) return; - } /* First, mark all existing children as reported missing. */ spin_lock_irqsave(&hbus->device_list_lock, flags); @@ -2174,7 +2469,7 @@ * because there may have been changes. */ pci_lock_rescan_remove(); - pci_scan_child_bus(hbus->pci_bus); + pci_scan_child_bus(hbus->bridge->bus); hv_pci_assign_numa_node(hbus); hv_pci_assign_slots(hbus); pci_unlock_rescan_remove(); @@ -2189,7 +2484,6 @@ break; } - put_hvpcibus(hbus); kfree(dr); } @@ -2230,12 +2524,10 @@ list_add_tail(&dr->list_entry, &hbus->dr_list); spin_unlock_irqrestore(&hbus->device_list_lock, flags); - if (pending_dr) { + if (pending_dr) kfree(dr_wrk); - } else { - get_hvpcibus(hbus); + else queue_work(hbus->wq, &dr_wrk->wrk); - } return 0; } @@ -2349,11 +2641,11 @@ /* * Ejection can come before or after the PCI bus has been set up, so * attempt to find it and tear down the bus state, if it exists. This - * must be done without constructs like pci_domain_nr(hbus->pci_bus) - * because hbus->pci_bus may not exist yet. + * must be done without constructs like pci_domain_nr(hbus->bridge->bus) + * because hbus->bridge->bus may not exist yet. */ wslot = wslot_to_devfn(hpdev->desc.win_slot.slot); - pdev = pci_get_domain_bus_and_slot(hbus->sysdata.domain, 0, wslot); + pdev = pci_get_domain_bus_and_slot(hbus->bridge->domain_nr, 0, wslot); if (pdev) { pci_lock_rescan_remove(); pci_stop_and_remove_bus_device(pdev); @@ -2382,8 +2674,6 @@ put_pcichild(hpdev); put_pcichild(hpdev); /* hpdev has been freed. Do not use it any more. */ - - put_hvpcibus(hbus); } /** @@ -2407,7 +2697,6 @@ hpdev->state = hv_pcichild_ejecting; get_pcichild(hpdev); INIT_WORK(&hpdev->wrk, hv_eject_device_work); - get_hvpcibus(hbus); queue_work(hbus->wq, &hpdev->wrk); } @@ -2717,8 +3006,7 @@ /* Modify this resource to become a bridge window. */ hbus->low_mmio_res->flags |= IORESOURCE_WINDOW; hbus->low_mmio_res->flags &= ~IORESOURCE_BUSY; - pci_add_resource(&hbus->resources_for_children, - hbus->low_mmio_res); + pci_add_resource(&hbus->bridge->windows, hbus->low_mmio_res); } if (hbus->high_mmio_space) { @@ -2737,8 +3025,7 @@ /* Modify this resource to become a bridge window. */ hbus->high_mmio_res->flags |= IORESOURCE_WINDOW; hbus->high_mmio_res->flags &= ~IORESOURCE_BUSY; - pci_add_resource(&hbus->resources_for_children, - hbus->high_mmio_res); + pci_add_resource(&hbus->bridge->windows, hbus->high_mmio_res); } return 0; @@ -3041,13 +3328,2 @@ -static void get_hvpcibus(struct hv_pcibus_device *hbus) -{ - refcount_inc(&hbus->remove_lock); -} - -static void put_hvpcibus(struct hv_pcibus_device *hbus) -{ - if (refcount_dec_and_test(&hbus->remove_lock)) - complete(&hbus->remove_event); -} - #define HVPCI_DOM_MAP_SIZE (64 * 1024) @@ -3102,6 +3378,7 @@ static int hv_pci_probe(struct hv_device *hdev, const struct hv_vmbus_device_id *dev_id) { + struct pci_host_bridge *bridge; struct hv_pcibus_device *hbus; u16 dom_req, dom; char *name; @@ -3111,11 +3388,35 @@ * hv_pcibus_device contains the hypercall arguments for retargeting in * hv_irq_unmask(). Those must not cross a page boundary. */ - BUILD_BUG_ON(sizeof(*hbus) > PAGE_SIZE); + BUILD_BUG_ON(sizeof(*hbus) > HV_HYP_PAGE_SIZE); + + bridge = devm_pci_alloc_host_bridge(&hdev->device, 0); + if (!bridge) + return -ENOMEM; - hbus = (struct hv_pcibus_device *)get_zeroed_page(GFP_KERNEL); + /* + * With the recent 59bb47985c1d ("mm, sl[aou]b: guarantee natural + * alignment for kmalloc(power-of-two)"), kzalloc() is able to allocate + * a 4KB buffer that is guaranteed to be 4KB-aligned. Here the size and + * alignment of hbus is important because hbus's field + * retarget_msi_interrupt_params must not cross a 4KB page boundary. + * + * Here we prefer kzalloc to get_zeroed_page(), because a buffer + * allocated by the latter is not tracked and scanned by kmemleak, and + * hence kmemleak reports the pointer contained in the hbus buffer + * (i.e. the hpdev struct, which is created in new_pcichild_device() and + * is tracked by hbus->children) as memory leak (false positive). + * + * If the kernel doesn't have 59bb47985c1d, get_zeroed_page() *must* be + * used to allocate the hbus buffer and we can avoid the kmemleak false + * positive by using kmemleak_alloc() and kmemleak_free() to ask + * kmemleak to track and scan the hbus buffer. + */ + hbus = (struct hv_pcibus_device *)kzalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL); if (!hbus) return -ENOMEM; + + hbus->bridge = bridge; hbus->state = hv_pcibus_init; hbus->wslot_res_allocated = -1; @@ -3147,19 +3448,28 @@ "PCI dom# 0x%hx has collision, using 0x%hx", dom_req, dom); + hbus->bridge->domain_nr = dom; +#ifdef CONFIG_X86 hbus->sysdata.domain = dom; +#elif defined(CONFIG_ARM64) + /* + * Set the PCI bus parent to be the corresponding VMbus + * device. Then the VMbus device will be assigned as the + * ACPI companion in pcibios_root_bridge_prepare() and + * pci_dma_configure() will propagate device coherence + * information to devices created on the bus. + */ + hbus->sysdata.parent = hdev->device.parent; +#endif hbus->hdev = hdev; - refcount_set(&hbus->remove_lock, 1); INIT_LIST_HEAD(&hbus->children); INIT_LIST_HEAD(&hbus->dr_list); - INIT_LIST_HEAD(&hbus->resources_for_children); spin_lock_init(&hbus->config_lock); spin_lock_init(&hbus->device_list_lock); spin_lock_init(&hbus->retarget_msi_interrupt_lock); - init_completion(&hbus->remove_event); hbus->wq = alloc_ordered_workqueue("hv_pci_%x", 0, - hbus->sysdata.domain); + hbus->bridge->domain_nr); if (!hbus->wq) { ret = -ENOMEM; goto free_dom; @@ -3196,9 +3506,9 @@ goto unmap; } - hbus->sysdata.fwnode = irq_domain_alloc_named_fwnode(name); + hbus->fwnode = irq_domain_alloc_named_fwnode(name); kfree(name); - if (!hbus->sysdata.fwnode) { + if (!hbus->fwnode) { ret = -ENOMEM; goto unmap; } @@ -3240,7 +3550,7 @@ free_irq_domain: irq_domain_remove(hbus->irq_domain); free_fwnode: - irq_domain_free_fwnode(hbus->sysdata.fwnode); + irq_domain_free_fwnode(hbus->fwnode); unmap: iounmap(hbus->cfg_addr); free_config: @@ -3250,9 +3560,9 @@ destroy_wq: destroy_workqueue(hbus->wq); free_dom: - hv_put_dom_num(hbus->sysdata.domain); + hv_put_dom_num(hbus->bridge->domain_nr); free_bus: - free_page((unsigned long)hbus); + kfree(hbus); return ret; } @@ -3263,8 +3573,9 @@ struct pci_packet teardown_packet; u8 buffer[sizeof(struct pci_message)]; } pkt; - struct hv_dr_state *dr; struct hv_pci_compl comp_pkt; + struct hv_pci_dev *hpdev, *tmp; + unsigned long flags; int ret; /* @@ -3276,9 +3587,16 @@ if (!keep_devs) { /* Delete any children which might still exist. */ - dr = kzalloc(sizeof(*dr), GFP_KERNEL); - if (dr && hv_pci_start_relations_work(hbus, dr)) - kfree(dr); + spin_lock_irqsave(&hbus->device_list_lock, flags); + list_for_each_entry_safe(hpdev, tmp, &hbus->children, list_entry) { + list_del(&hpdev->list_entry); + if (hpdev->pci_slot) + pci_destroy_slot(hpdev->pci_slot); + /* For the two refs got in new_pcichild_device() */ + put_pcichild(hpdev); + put_pcichild(hpdev); + } + spin_unlock_irqrestore(&hbus->device_list_lock, flags); } ret = hv_send_resources_released(hdev); @@ -3321,13 +3639,23 @@ hbus = hv_get_drvdata(hdev); if (hbus->state == hv_pcibus_installed) { + tasklet_disable(&hdev->channel->callback_event); + hbus->state = hv_pcibus_removing; + tasklet_enable(&hdev->channel->callback_event); + destroy_workqueue(hbus->wq); + hbus->wq = NULL; + /* + * At this point, no work is running or can be scheduled + * on hbus-wq. We can't race with hv_pci_devices_present() + * or hv_pci_eject_device(), it's safe to proceed. + */ + /* Remove the bus from PCI's point of view. */ pci_lock_rescan_remove(); - pci_stop_root_bus(hbus->pci_bus); + pci_stop_root_bus(hbus->bridge->bus); hv_pci_remove_slots(hbus); - pci_remove_root_bus(hbus->pci_bus); + pci_remove_root_bus(hbus->bridge->bus); pci_unlock_rescan_remove(); - hbus->state = hv_pcibus_removed; } ret = hv_pci_bus_exit(hdev, false); @@ -3336,17 +3664,13 @@ iounmap(hbus->cfg_addr); hv_free_config_window(hbus); - pci_free_resource_list(&hbus->resources_for_children); hv_pci_free_bridge_windows(hbus); irq_domain_remove(hbus->irq_domain); - irq_domain_free_fwnode(hbus->sysdata.fwnode); - put_hvpcibus(hbus); - wait_for_completion(&hbus->remove_event); - destroy_workqueue(hbus->wq); + irq_domain_free_fwnode(hbus->fwnode); - hv_put_dom_num(hbus->sysdata.domain); + hv_put_dom_num(hbus->bridge->domain_nr); - free_page((unsigned long)hbus); + kfree(hbus); return ret; } @@ -3422,7 +3746,7 @@ */ static void hv_pci_restore_msi_state(struct hv_pcibus_device *hbus) { - pci_walk_bus(hbus->pci_bus, hv_pci_restore_msi_msg, NULL); + pci_walk_bus(hbus->bridge->bus, hv_pci_restore_msi_msg, NULL); } static int hv_pci_resume(struct hv_device *hdev) @@ -3496,6 +3820,15 @@ static int __init init_hv_pci_drv(void) { + int ret; + + if (!hv_is_hyperv_initialized()) + return -ENODEV; + + ret = hv_pci_irqchip_init(); + if (ret) + return ret; + /* Set the invalid domain number's bit, so it will not be used */ set_bit(HVPCI_DOM_INVALID, hvpci_dom_map); diff -u linux-azure-5.4.0/drivers/pci/controller/pci-tegra.c linux-azure-5.4.0/drivers/pci/controller/pci-tegra.c --- linux-azure-5.4.0/drivers/pci/controller/pci-tegra.c +++ linux-azure-5.4.0/drivers/pci/controller/pci-tegra.c @@ -2613,6 +2613,7 @@ { .compatible = "nvidia,tegra20-pcie", .data = &tegra20_pcie }, { }, }; +MODULE_DEVICE_TABLE(of, tegra_pcie_of_match); static void *tegra_pcie_ports_seq_start(struct seq_file *s, loff_t *pos) { diff -u linux-azure-5.4.0/drivers/pci/controller/pcie-iproc-msi.c linux-azure-5.4.0/drivers/pci/controller/pcie-iproc-msi.c --- linux-azure-5.4.0/drivers/pci/controller/pcie-iproc-msi.c +++ linux-azure-5.4.0/drivers/pci/controller/pcie-iproc-msi.c @@ -171,7 +171,7 @@ static struct msi_domain_info iproc_msi_domain_info = { .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | - MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX, + MSI_FLAG_PCI_MSIX, .chip = &iproc_msi_irq_chip, }; @@ -250,20 +250,23 @@ struct iproc_msi *msi = domain->host_data; int hwirq, i; + if (msi->nr_cpus > 1 && nr_irqs > 1) + return -EINVAL; + mutex_lock(&msi->bitmap_lock); - /* Allocate 'nr_cpus' number of MSI vectors each time */ - hwirq = bitmap_find_next_zero_area(msi->bitmap, msi->nr_msi_vecs, 0, - msi->nr_cpus, 0); - if (hwirq < msi->nr_msi_vecs) { - bitmap_set(msi->bitmap, hwirq, msi->nr_cpus); - } else { - mutex_unlock(&msi->bitmap_lock); - return -ENOSPC; - } + /* + * Allocate 'nr_irqs' multiplied by 'nr_cpus' number of MSI vectors + * each time + */ + hwirq = bitmap_find_free_region(msi->bitmap, msi->nr_msi_vecs, + order_base_2(msi->nr_cpus * nr_irqs)); mutex_unlock(&msi->bitmap_lock); + if (hwirq < 0) + return -ENOSPC; + for (i = 0; i < nr_irqs; i++) { irq_domain_set_info(domain, virq + i, hwirq + i, &iproc_msi_bottom_irq_chip, @@ -284,7 +287,8 @@ mutex_lock(&msi->bitmap_lock); hwirq = hwirq_to_canonical_hwirq(msi, data->hwirq); - bitmap_clear(msi->bitmap, hwirq, msi->nr_cpus); + bitmap_release_region(msi->bitmap, hwirq, + order_base_2(msi->nr_cpus * nr_irqs)); mutex_unlock(&msi->bitmap_lock); @@ -538,6 +542,9 @@ mutex_init(&msi->bitmap_lock); msi->nr_cpus = num_possible_cpus(); + if (msi->nr_cpus == 1) + iproc_msi_domain_info.flags |= MSI_FLAG_MULTI_PCI_MSI; + msi->nr_irqs = of_irq_count(node); if (!msi->nr_irqs) { dev_err(pcie->dev, "found no MSI GIC interrupt\n"); diff -u linux-azure-5.4.0/drivers/pci/hotplug/pciehp_hpc.c linux-azure-5.4.0/drivers/pci/hotplug/pciehp_hpc.c --- linux-azure-5.4.0/drivers/pci/hotplug/pciehp_hpc.c +++ linux-azure-5.4.0/drivers/pci/hotplug/pciehp_hpc.c @@ -79,6 +79,8 @@ if (slot_status & PCI_EXP_SLTSTA_CC) { pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, PCI_EXP_SLTSTA_CC); + ctrl->cmd_busy = 0; + smp_mb(); return 1; } if (timeout < 0) @@ -577,6 +579,8 @@ */ if (ctrl->power_fault_detected) status &= ~PCI_EXP_SLTSTA_PFD; + else if (status & PCI_EXP_SLTSTA_PFD) + ctrl->power_fault_detected = true; events |= status; if (!events) { @@ -586,7 +590,7 @@ } if (status) { - pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, events); + pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, status); /* * In MSI mode, all event bits must be zero before the port @@ -660,8 +664,7 @@ } /* Check Power Fault Detected */ - if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) { - ctrl->power_fault_detected = 1; + if (events & PCI_EXP_SLTSTA_PFD) { ctrl_err(ctrl, "Slot(%s): Power fault\n", slot_name(ctrl)); pciehp_set_indicators(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF, PCI_EXP_SLTCTL_ATTN_IND_ON); @@ -956,6 +959,8 @@ } DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_INTEL, PCI_ANY_ID, PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl); +DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_QCOM, 0x0110, + PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl); DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_QCOM, 0x0400, PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl); DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_QCOM, 0x0401, diff -u linux-azure-5.4.0/drivers/pci/hotplug/s390_pci_hpc.c linux-azure-5.4.0/drivers/pci/hotplug/s390_pci_hpc.c --- linux-azure-5.4.0/drivers/pci/hotplug/s390_pci_hpc.c +++ linux-azure-5.4.0/drivers/pci/hotplug/s390_pci_hpc.c @@ -93,8 +93,9 @@ pci_dev_put(pdev); return -EBUSY; } + pci_dev_put(pdev); - zpci_remove_device(zdev); + zpci_remove_device(zdev, false); rc = zpci_disable_device(zdev); if (rc) @@ -108,14 +109,7 @@ struct zpci_dev *zdev = container_of(hotplug_slot, struct zpci_dev, hotplug_slot); - switch (zdev->state) { - case ZPCI_FN_STATE_STANDBY: - *value = 0; - break; - default: - *value = 1; - break; - } + *value = zpci_is_device_configured(zdev) ? 1 : 0; return 0; } diff -u linux-azure-5.4.0/drivers/pci/msi.c linux-azure-5.4.0/drivers/pci/msi.c --- linux-azure-5.4.0/drivers/pci/msi.c +++ linux-azure-5.4.0/drivers/pci/msi.c @@ -170,24 +170,25 @@ * reliably as devices without an INTx disable bit will then generate a * level IRQ which will never be cleared. */ -u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag) +void __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag) { - u32 mask_bits = desc->masked; + raw_spinlock_t *lock = &desc->dev->msi_lock; + unsigned long flags; if (pci_msi_ignore_mask || !desc->msi_attrib.maskbit) - return 0; + return; - mask_bits &= ~mask; - mask_bits |= flag; + raw_spin_lock_irqsave(lock, flags); + desc->masked &= ~mask; + desc->masked |= flag; pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos, - mask_bits); - - return mask_bits; + desc->masked); + raw_spin_unlock_irqrestore(lock, flags); } static void msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag) { - desc->masked = __pci_msi_desc_mask_irq(desc, mask, flag); + __pci_msi_desc_mask_irq(desc, mask, flag); } static void __iomem *pci_msix_desc_addr(struct msi_desc *desc) @@ -316,13 +317,31 @@ /* Don't touch the hardware now */ } else if (entry->msi_attrib.is_msix) { void __iomem *base = pci_msix_desc_addr(entry); + bool unmasked = !(entry->masked & PCI_MSIX_ENTRY_CTRL_MASKBIT); if (!base) goto skip; + /* + * The specification mandates that the entry is masked + * when the message is modified: + * + * "If software changes the Address or Data value of an + * entry while the entry is unmasked, the result is + * undefined." + */ + if (unmasked) + __pci_msix_desc_mask_irq(entry, PCI_MSIX_ENTRY_CTRL_MASKBIT); + writel(msg->address_lo, base + PCI_MSIX_ENTRY_LOWER_ADDR); writel(msg->address_hi, base + PCI_MSIX_ENTRY_UPPER_ADDR); writel(msg->data, base + PCI_MSIX_ENTRY_DATA); + + if (unmasked) + __pci_msix_desc_mask_irq(entry, 0); + + /* Ensure that the writes are visible in the device */ + readl(base + PCI_MSIX_ENTRY_DATA); } else { int pos = dev->msi_cap; u16 msgctl; @@ -343,6 +362,8 @@ pci_write_config_word(dev, pos + PCI_MSI_DATA_32, msg->data); } + /* Ensure that the writes are visible in the device */ + pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl); } skip: @@ -374,18 +395,6 @@ for (i = 0; i < entry->nvec_used; i++) BUG_ON(irq_has_action(entry->irq + i)); - pci_msi_teardown_msi_irqs(dev); - - list_for_each_entry_safe(entry, tmp, msi_list, list) { - if (entry->msi_attrib.is_msix) { - if (list_is_last(&entry->list, msi_list)) - iounmap(entry->mask_base); - } - - list_del(&entry->list); - free_msi_entry(entry); - } - if (dev->msi_irq_groups) { sysfs_remove_groups(&dev->dev.kobj, dev->msi_irq_groups); msi_attrs = dev->msi_irq_groups[0]->attrs; @@ -401,6 +410,18 @@ kfree(dev->msi_irq_groups); dev->msi_irq_groups = NULL; } + + pci_msi_teardown_msi_irqs(dev); + + list_for_each_entry_safe(entry, tmp, msi_list, list) { + if (entry->msi_attrib.is_msix) { + if (list_is_last(&entry->list, msi_list)) + iounmap(entry->mask_base); + } + + list_del(&entry->list); + free_msi_entry(entry); + } } static void pci_intx_for_msi(struct pci_dev *dev, int enable) @@ -570,6 +591,9 @@ goto out; pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control); + /* Lies, damned lies, and MSIs */ + if (dev->dev_flags & PCI_DEV_FLAGS_HAS_MSI_MASKING) + control |= PCI_MSI_FLAGS_MASKBIT; entry->msi_attrib.is_msix = 0; entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT); @@ -642,21 +666,21 @@ /* Configure MSI capability structure */ ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSI); if (ret) { - msi_mask_irq(entry, mask, ~mask); + msi_mask_irq(entry, mask, 0); free_msi_irqs(dev); return ret; } ret = msi_verify_entries(dev); if (ret) { - msi_mask_irq(entry, mask, ~mask); + msi_mask_irq(entry, mask, 0); free_msi_irqs(dev); return ret; } ret = populate_msi_sysfs(dev); if (ret) { - msi_mask_irq(entry, mask, ~mask); + msi_mask_irq(entry, mask, 0); free_msi_irqs(dev); return ret; } @@ -697,6 +721,7 @@ { struct irq_affinity_desc *curmsk, *masks = NULL; struct msi_desc *entry; + void __iomem *addr; int ret, i; int vec_count = pci_msix_vec_count(dev); @@ -717,6 +742,7 @@ entry->msi_attrib.is_msix = 1; entry->msi_attrib.is_64 = 1; + if (entries) entry->msi_attrib.entry_nr = entries[i].entry; else @@ -728,6 +754,10 @@ entry->msi_attrib.default_irq = dev->irq; entry->mask_base = base; + addr = pci_msix_desc_addr(entry); + if (addr) + entry->masked = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL); + list_add_tail(&entry->list, dev_to_msi_list(&dev->dev)); if (masks) curmsk++; @@ -738,26 +768,28 @@ return ret; } -static void msix_program_entries(struct pci_dev *dev, - struct msix_entry *entries) +static void msix_update_entries(struct pci_dev *dev, struct msix_entry *entries) { struct msi_desc *entry; - int i = 0; - void __iomem *desc_addr; for_each_pci_msi_entry(entry, dev) { - if (entries) - entries[i++].vector = entry->irq; + if (entries) { + entries->vector = entry->irq; + entries++; + } + } +} - desc_addr = pci_msix_desc_addr(entry); - if (desc_addr) - entry->masked = readl(desc_addr + - PCI_MSIX_ENTRY_VECTOR_CTRL); - else - entry->masked = 0; +static void msix_mask_all(void __iomem *base, int tsize) +{ + u32 ctrl = PCI_MSIX_ENTRY_CTRL_MASKBIT; + int i; - msix_mask_irq(entry, 1); - } + if (pci_msi_ignore_mask) + return; + + for (i = 0; i < tsize; i++, base += PCI_MSIX_ENTRY_SIZE) + writel(ctrl, base + PCI_MSIX_ENTRY_VECTOR_CTRL); } /** @@ -774,22 +806,33 @@ static int msix_capability_init(struct pci_dev *dev, struct msix_entry *entries, int nvec, struct irq_affinity *affd) { - int ret; - u16 control; void __iomem *base; + int ret, tsize; + u16 control; - /* Ensure MSI-X is disabled while it is set up */ - pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0); + /* + * Some devices require MSI-X to be enabled before the MSI-X + * registers can be accessed. Mask all the vectors to prevent + * interrupts coming in before they're fully set up. + */ + pci_msix_clear_and_set_ctrl(dev, 0, PCI_MSIX_FLAGS_MASKALL | + PCI_MSIX_FLAGS_ENABLE); pci_read_config_word(dev, dev->msix_cap + PCI_MSIX_FLAGS, &control); /* Request & Map MSI-X table region */ - base = msix_map_region(dev, msix_table_size(control)); - if (!base) - return -ENOMEM; + tsize = msix_table_size(control); + base = msix_map_region(dev, tsize); + if (!base) { + ret = -ENOMEM; + goto out_disable; + } + + /* Ensure that all table entries are masked. */ + msix_mask_all(base, tsize); ret = msix_setup_entries(dev, base, entries, nvec, affd); if (ret) - return ret; + goto out_disable; ret = pci_msi_setup_msi_irqs(dev, nvec, PCI_CAP_ID_MSIX); if (ret) @@ -800,15 +843,7 @@ if (ret) goto out_free; - /* - * Some devices require MSI-X to be enabled before we can touch the - * MSI-X registers. We need to mask all the vectors to prevent - * interrupts coming in before they're fully set up. - */ - pci_msix_clear_and_set_ctrl(dev, 0, - PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE); - - msix_program_entries(dev, entries); + msix_update_entries(dev, entries); ret = populate_msi_sysfs(dev); if (ret) @@ -842,6 +877,9 @@ out_free: free_msi_irqs(dev); +out_disable: + pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL | PCI_MSIX_FLAGS_ENABLE, 0); + return ret; } @@ -929,8 +967,7 @@ /* Return the device with MSI unmasked as initial states */ mask = msi_mask(desc->msi_attrib.multi_cap); - /* Keep cached state to be restored */ - __pci_msi_desc_mask_irq(desc, mask, ~mask); + msi_mask_irq(desc, mask, 0); /* Restore dev->irq to its default pin-assertion IRQ */ dev->irq = desc->msi_attrib.default_irq; @@ -1015,10 +1052,8 @@ } /* Return the device with MSI-X masked as initial states */ - for_each_pci_msi_entry(entry, dev) { - /* Keep cached states to be restored */ + for_each_pci_msi_entry(entry, dev) __pci_msix_desc_mask_irq(entry, 1); - } pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0); pci_intx_for_msi(dev, 1); @@ -1252,19 +1287,24 @@ /** * pci_irq_vector - return Linux IRQ number of a device vector - * @dev: PCI device to operate on - * @nr: device-relative interrupt vector index (0-based). + * @dev: PCI device to operate on + * @nr: Interrupt vector index (0-based) + * + * @nr has the following meanings depending on the interrupt mode: + * MSI-X: The index in the MSI-X vector table + * MSI: The index of the enabled MSI vectors + * INTx: Must be 0 + * + * Return: The Linux interrupt number or -EINVAl if @nr is out of range. */ int pci_irq_vector(struct pci_dev *dev, unsigned int nr) { if (dev->msix_enabled) { struct msi_desc *entry; - int i = 0; for_each_pci_msi_entry(entry, dev) { - if (i == nr) + if (entry->msi_attrib.entry_nr == nr) return entry->irq; - i++; } WARN_ON_ONCE(1); return -EINVAL; @@ -1288,17 +1328,22 @@ * pci_irq_get_affinity - return the affinity of a particular MSI vector * @dev: PCI device to operate on * @nr: device-relative interrupt vector index (0-based). + * + * @nr has the following meanings depending on the interrupt mode: + * MSI-X: The index in the MSI-X vector table + * MSI: The index of the enabled MSI vectors + * INTx: Must be 0 + * + * Return: A cpumask pointer or NULL if @nr is out of range */ const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr) { if (dev->msix_enabled) { struct msi_desc *entry; - int i = 0; for_each_pci_msi_entry(entry, dev) { - if (i == nr) + if (entry->msi_attrib.entry_nr == nr) return &entry->affinity->mask; - i++; } WARN_ON_ONCE(1); return NULL; diff -u linux-azure-5.4.0/drivers/pci/pci-bridge-emul.c linux-azure-5.4.0/drivers/pci/pci-bridge-emul.c --- linux-azure-5.4.0/drivers/pci/pci-bridge-emul.c +++ linux-azure-5.4.0/drivers/pci/pci-bridge-emul.c @@ -21,8 +21,9 @@ #include "pci-bridge-emul.h" #define PCI_BRIDGE_CONF_END PCI_STD_HEADER_SIZEOF +#define PCI_CAP_PCIE_SIZEOF (PCI_EXP_SLTSTA2 + 2) #define PCI_CAP_PCIE_START PCI_BRIDGE_CONF_END -#define PCI_CAP_PCIE_END (PCI_CAP_PCIE_START + PCI_EXP_SLTSTA2 + 2) +#define PCI_CAP_PCIE_END (PCI_CAP_PCIE_START + PCI_CAP_PCIE_SIZEOF) struct pci_bridge_reg_behavior { /* Read-only bits */ @@ -38,7 +39,8 @@ u32 rsvd; }; -static const struct pci_bridge_reg_behavior pci_regs_behavior[] = { +static const +struct pci_bridge_reg_behavior pci_regs_behavior[PCI_STD_HEADER_SIZEOF / 4] = { [PCI_VENDOR_ID / 4] = { .ro = ~0 }, [PCI_COMMAND / 4] = { .rw = (PCI_COMMAND_IO | PCI_COMMAND_MEMORY | @@ -173,7 +175,8 @@ }, }; -static const struct pci_bridge_reg_behavior pcie_cap_regs_behavior[] = { +static const +struct pci_bridge_reg_behavior pcie_cap_regs_behavior[PCI_CAP_PCIE_SIZEOF / 4] = { [PCI_CAP_LIST_ID / 4] = { /* * Capability ID, Next Capability Pointer and @@ -270,10 +273,12 @@ int pci_bridge_emul_init(struct pci_bridge_emul *bridge, unsigned int flags) { - bridge->conf.class_revision |= PCI_CLASS_BRIDGE_PCI << 16; + BUILD_BUG_ON(sizeof(bridge->conf) != PCI_BRIDGE_CONF_END); + + bridge->conf.class_revision |= cpu_to_le32(PCI_CLASS_BRIDGE_PCI << 16); bridge->conf.header_type = PCI_HEADER_TYPE_BRIDGE; bridge->conf.cache_line_size = 0x10; - bridge->conf.status = PCI_STATUS_CAP_LIST; + bridge->conf.status = cpu_to_le16(PCI_STATUS_CAP_LIST); bridge->pci_regs_behavior = kmemdup(pci_regs_behavior, sizeof(pci_regs_behavior), GFP_KERNEL); @@ -282,10 +287,9 @@ if (bridge->has_pcie) { bridge->conf.capabilities_pointer = PCI_CAP_PCIE_START; + bridge->conf.status |= cpu_to_le16(PCI_STATUS_CAP_LIST); bridge->pcie_conf.cap_id = PCI_CAP_ID_EXP; - /* Set PCIe v2, root port, slot support */ - bridge->pcie_conf.cap = PCI_EXP_TYPE_ROOT_PORT << 4 | 2 | - PCI_EXP_FLAGS_SLOT; + bridge->pcie_conf.cap |= cpu_to_le16(PCI_EXP_TYPE_ROOT_PORT << 4); bridge->pcie_cap_regs_behavior = kmemdup(pcie_cap_regs_behavior, sizeof(pcie_cap_regs_behavior), @@ -294,6 +298,27 @@ kfree(bridge->pci_regs_behavior); return -ENOMEM; } + /* These bits are applicable only for PCI and reserved on PCIe */ + bridge->pci_regs_behavior[PCI_CACHE_LINE_SIZE / 4].ro &= + ~GENMASK(15, 8); + bridge->pci_regs_behavior[PCI_COMMAND / 4].ro &= + ~((PCI_COMMAND_SPECIAL | PCI_COMMAND_INVALIDATE | + PCI_COMMAND_VGA_PALETTE | PCI_COMMAND_WAIT | + PCI_COMMAND_FAST_BACK) | + (PCI_STATUS_66MHZ | PCI_STATUS_FAST_BACK | + PCI_STATUS_DEVSEL_MASK) << 16); + bridge->pci_regs_behavior[PCI_PRIMARY_BUS / 4].ro &= + ~GENMASK(31, 24); + bridge->pci_regs_behavior[PCI_IO_BASE / 4].ro &= + ~((PCI_STATUS_66MHZ | PCI_STATUS_FAST_BACK | + PCI_STATUS_DEVSEL_MASK) << 16); + bridge->pci_regs_behavior[PCI_INTERRUPT_LINE / 4].rw &= + ~((PCI_BRIDGE_CTL_MASTER_ABORT | + BIT(8) | BIT(9) | BIT(11)) << 16); + bridge->pci_regs_behavior[PCI_INTERRUPT_LINE / 4].ro &= + ~((PCI_BRIDGE_CTL_FAST_BACK) << 16); + bridge->pci_regs_behavior[PCI_INTERRUPT_LINE / 4].w1c &= + ~(BIT(10) << 16); } if (flags & PCI_BRIDGE_EMUL_NO_PREFETCHABLE_BAR) { @@ -327,7 +352,7 @@ int reg = where & ~3; pci_bridge_emul_read_status_t (*read_op)(struct pci_bridge_emul *bridge, int reg, u32 *value); - u32 *cfgspace; + __le32 *cfgspace; const struct pci_bridge_reg_behavior *behavior; if (bridge->has_pcie && reg >= PCI_CAP_PCIE_END) { @@ -343,11 +368,11 @@ if (bridge->has_pcie && reg >= PCI_CAP_PCIE_START) { reg -= PCI_CAP_PCIE_START; read_op = bridge->ops->read_pcie; - cfgspace = (u32 *) &bridge->pcie_conf; + cfgspace = (__le32 *) &bridge->pcie_conf; behavior = bridge->pcie_cap_regs_behavior; } else { read_op = bridge->ops->read_base; - cfgspace = (u32 *) &bridge->conf; + cfgspace = (__le32 *) &bridge->conf; behavior = bridge->pci_regs_behavior; } @@ -357,7 +382,7 @@ ret = PCI_BRIDGE_EMUL_NOT_HANDLED; if (ret == PCI_BRIDGE_EMUL_NOT_HANDLED) - *value = cfgspace[reg / 4]; + *value = le32_to_cpu(cfgspace[reg / 4]); /* * Make sure we never return any reserved bit with a value @@ -387,7 +412,7 @@ int mask, ret, old, new, shift; void (*write_op)(struct pci_bridge_emul *bridge, int reg, u32 old, u32 new, u32 mask); - u32 *cfgspace; + __le32 *cfgspace; const struct pci_bridge_reg_behavior *behavior; if (bridge->has_pcie && reg >= PCI_CAP_PCIE_END) @@ -414,11 +439,11 @@ if (bridge->has_pcie && reg >= PCI_CAP_PCIE_START) { reg -= PCI_CAP_PCIE_START; write_op = bridge->ops->write_pcie; - cfgspace = (u32 *) &bridge->pcie_conf; + cfgspace = (__le32 *) &bridge->pcie_conf; behavior = bridge->pcie_cap_regs_behavior; } else { write_op = bridge->ops->write_base; - cfgspace = (u32 *) &bridge->conf; + cfgspace = (__le32 *) &bridge->conf; behavior = bridge->pci_regs_behavior; } @@ -431,7 +456,20 @@ /* Clear the W1C bits */ new &= ~((value << shift) & (behavior[reg / 4].w1c & mask)); - cfgspace[reg / 4] = new; + /* Save the new value with the cleared W1C bits into the cfgspace */ + cfgspace[reg / 4] = cpu_to_le32(new); + + /* + * Clear the W1C bits not specified by the write mask, so that the + * write_op() does not clear them. + */ + new &= ~(behavior[reg / 4].w1c & ~mask); + + /* + * Set the W1C bits specified by the write mask, so that write_op() + * knows about that they are to be cleared. + */ + new |= (value << shift) & (behavior[reg / 4].w1c & mask); if (write_op) write_op(bridge, reg, old, new, mask); diff -u linux-azure-5.4.0/drivers/pci/pci-sysfs.c linux-azure-5.4.0/drivers/pci/pci-sysfs.c --- linux-azure-5.4.0/drivers/pci/pci-sysfs.c +++ linux-azure-5.4.0/drivers/pci/pci-sysfs.c @@ -156,7 +156,8 @@ { struct pci_dev *pdev = to_pci_dev(dev); - return sprintf(buf, "%s\n", PCIE_SPEED2STR(pcie_get_speed_cap(pdev))); + return sprintf(buf, "%s\n", + pci_speed_string(pcie_get_speed_cap(pdev))); } static DEVICE_ATTR_RO(max_link_speed); @@ -175,33 +176,15 @@ struct pci_dev *pci_dev = to_pci_dev(dev); u16 linkstat; int err; - const char *speed; + enum pci_bus_speed speed; err = pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &linkstat); if (err) return -EINVAL; - switch (linkstat & PCI_EXP_LNKSTA_CLS) { - case PCI_EXP_LNKSTA_CLS_32_0GB: - speed = "32 GT/s"; - break; - case PCI_EXP_LNKSTA_CLS_16_0GB: - speed = "16 GT/s"; - break; - case PCI_EXP_LNKSTA_CLS_8_0GB: - speed = "8 GT/s"; - break; - case PCI_EXP_LNKSTA_CLS_5_0GB: - speed = "5 GT/s"; - break; - case PCI_EXP_LNKSTA_CLS_2_5GB: - speed = "2.5 GT/s"; - break; - default: - speed = "Unknown speed"; - } + speed = pcie_link_speed[linkstat & PCI_EXP_LNKSTA_CLS]; - return sprintf(buf, "%s\n", speed); + return sprintf(buf, "%s\n", pci_speed_string(speed)); } static DEVICE_ATTR_RO(current_link_speed); @@ -814,6 +797,29 @@ return count; } +static BIN_ATTR(config, 0644, pci_read_config, pci_write_config, 0); + +static struct bin_attribute *pci_dev_config_attrs[] = { + &bin_attr_config, + NULL, +}; + +static umode_t pci_dev_config_attr_is_visible(struct kobject *kobj, + struct bin_attribute *a, int n) +{ + struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj)); + + a->size = PCI_CFG_SPACE_SIZE; + if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) + a->size = PCI_CFG_SPACE_EXP_SIZE; + + return a->attr.mode; +} + +static const struct attribute_group pci_dev_config_attr_group = { + .bin_attrs = pci_dev_config_attrs, + .is_bin_visible = pci_dev_config_attr_is_visible, +}; #ifdef HAVE_PCI_LEGACY /** @@ -1283,26 +1289,6 @@ return count; } -static const struct bin_attribute pci_config_attr = { - .attr = { - .name = "config", - .mode = 0644, - }, - .size = PCI_CFG_SPACE_SIZE, - .read = pci_read_config, - .write = pci_write_config, -}; - -static const struct bin_attribute pcie_config_attr = { - .attr = { - .name = "config", - .mode = 0644, - }, - .size = PCI_CFG_SPACE_EXP_SIZE, - .read = pci_read_config, - .write = pci_write_config, -}; - static ssize_t reset_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { @@ -1354,16 +1340,9 @@ if (!sysfs_initialized) return -EACCES; - if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) - retval = sysfs_create_bin_file(&pdev->dev.kobj, &pcie_config_attr); - else - retval = sysfs_create_bin_file(&pdev->dev.kobj, &pci_config_attr); - if (retval) - goto err; - retval = pci_create_resource_files(pdev); if (retval) - goto err_config_file; + goto err; /* If the device has a ROM, try to expose it in sysfs. */ rom_size = pci_resource_len(pdev, PCI_ROM_RESOURCE); @@ -1404,11 +1383,6 @@ } err_resource_files: pci_remove_resource_files(pdev); -err_config_file: - if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) - sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); - else - sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); err: return retval; } @@ -1434,12 +1408,6 @@ return; pci_remove_capabilities_sysfs(pdev); - - if (pdev->cfg_size > PCI_CFG_SPACE_SIZE) - sysfs_remove_bin_file(&pdev->dev.kobj, &pcie_config_attr); - else - sysfs_remove_bin_file(&pdev->dev.kobj, &pci_config_attr); - pci_remove_resource_files(pdev); if (pdev->rom_attr) { @@ -1535,6 +1503,7 @@ const struct attribute_group *pci_dev_groups[] = { &pci_dev_group, + &pci_dev_config_attr_group, NULL, }; diff -u linux-azure-5.4.0/drivers/pci/pci.c linux-azure-5.4.0/drivers/pci/pci.c --- linux-azure-5.4.0/drivers/pci/pci.c +++ linux-azure-5.4.0/drivers/pci/pci.c @@ -224,7 +224,7 @@ *endptr = strchrnul(path, ';'); - wpath = kmemdup_nul(path, *endptr - path, GFP_KERNEL); + wpath = kmemdup_nul(path, *endptr - path, GFP_ATOMIC); if (!wpath) return -ENOMEM; @@ -1666,10 +1666,16 @@ int err; int i, bars = 0; - if (atomic_inc_return(&dev->enable_cnt) > 1) { - pci_update_current_state(dev, dev->current_state); + /* + * Power state could be unknown at this point, either due to a fresh + * boot or a device removal call. So get the current power state + * so that things like MSI message writing will behave as expected + * (e.g. if the device really is in D0 at enable time). + */ + pci_update_current_state(dev, dev->current_state); + + if (atomic_inc_return(&dev->enable_cnt) > 1) return 0; /* already enabled */ - } bridge = pci_upstream_bridge(dev); if (bridge) @@ -2243,7 +2249,14 @@ if (enable) { int error; - if (pci_pme_capable(dev, state)) + /* + * Enable PME signaling if the device can signal PME from + * D3cold regardless of whether or not it can signal PME from + * the current target state, because that will allow it to + * signal PME when the hierarchy above it goes into D3cold and + * the device itself ends up in D3cold as a result of that. + */ + if (pci_pme_capable(dev, state) || pci_pme_capable(dev, PCI_D3cold)) pci_pme_active(dev, true); else ret = 1; @@ -2347,16 +2360,20 @@ if (dev->current_state == PCI_D3cold) target_state = PCI_D3cold; - if (wakeup) { + if (wakeup && dev->pme_support) { + pci_power_t state = target_state; + /* * Find the deepest state from which the device can generate * PME#. */ - if (dev->pme_support) { - while (target_state - && !(dev->pme_support & (1 << target_state))) - target_state--; - } + while (state && !(dev->pme_support & (1 << state))) + state--; + + if (state) + return state; + else if (dev->pme_support & 1) + return PCI_D0; } return target_state; @@ -2597,6 +2614,18 @@ DMI_MATCH(DMI_BOARD_NAME, "X299 DESIGNARE EX-CF"), }, }, + { + /* + * Downstream device is not accessible after putting a root port + * into D3cold and back into D0 on Elo i2. + */ + .ident = "Elo i2", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Elo Touch Solutions"), + DMI_MATCH(DMI_PRODUCT_NAME, "Elo i2"), + DMI_MATCH(DMI_PRODUCT_VERSION, "RevB"), + }, + }, #endif { } }; @@ -4888,18 +4917,18 @@ static void pci_dev_lock(struct pci_dev *dev) { - pci_cfg_access_lock(dev); /* block PM suspend, driver probe, etc. */ device_lock(&dev->dev); + pci_cfg_access_lock(dev); } /* Return 1 on successful lock, 0 on contention */ static int pci_dev_trylock(struct pci_dev *dev) { - if (pci_cfg_access_trylock(dev)) { - if (device_trylock(&dev->dev)) + if (device_trylock(&dev->dev)) { + if (pci_cfg_access_trylock(dev)) return 1; - pci_cfg_access_unlock(dev); + device_unlock(&dev->dev); } return 0; @@ -4907,8 +4936,8 @@ static void pci_dev_unlock(struct pci_dev *dev) { - device_unlock(&dev->dev); pci_cfg_access_unlock(dev); + device_unlock(&dev->dev); } static void pci_dev_save_and_disable(struct pci_dev *dev) @@ -5792,19 +5821,10 @@ * where only 2.5 GT/s and 5.0 GT/s speeds were defined. */ pcie_capability_read_dword(dev, PCI_EXP_LNKCAP2, &lnkcap2); - if (lnkcap2) { /* PCIe r3.0-compliant */ - if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_32_0GB) - return PCIE_SPEED_32_0GT; - else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_16_0GB) - return PCIE_SPEED_16_0GT; - else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB) - return PCIE_SPEED_8_0GT; - else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB) - return PCIE_SPEED_5_0GT; - else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB) - return PCIE_SPEED_2_5GT; - return PCI_SPEED_UNKNOWN; - } + + /* PCIe r3.0-compliant */ + if (lnkcap2) + return PCIE_LNKCAP2_SLS2SPEED(lnkcap2); pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &lnkcap); if ((lnkcap & PCI_EXP_LNKCAP_SLS) == PCI_EXP_LNKCAP_SLS_5_0GB) @@ -5880,14 +5900,14 @@ if (bw_avail >= bw_cap && verbose) pci_info(dev, "%u.%03u Gb/s available PCIe bandwidth (%s x%d link)\n", bw_cap / 1000, bw_cap % 1000, - PCIE_SPEED2STR(speed_cap), width_cap); + pci_speed_string(speed_cap), width_cap); else if (bw_avail < bw_cap) pci_info(dev, "%u.%03u Gb/s available PCIe bandwidth, limited by %s x%d link at %s (capable of %u.%03u Gb/s with %s x%d link)\n", bw_avail / 1000, bw_avail % 1000, - PCIE_SPEED2STR(speed), width, + pci_speed_string(speed), width, limiting_dev ? pci_name(limiting_dev) : "", bw_cap / 1000, bw_cap % 1000, - PCIE_SPEED2STR(speed_cap), width_cap); + pci_speed_string(speed_cap), width_cap); } /** diff -u linux-azure-5.4.0/drivers/pci/pci.h linux-azure-5.4.0/drivers/pci/pci.h --- linux-azure-5.4.0/drivers/pci/pci.h +++ linux-azure-5.4.0/drivers/pci/pci.h @@ -290,22 +290,25 @@ struct pci_bus *pci_bus_get(struct pci_bus *bus); void pci_bus_put(struct pci_bus *bus); -/* PCIe link information */ -#define PCIE_SPEED2STR(speed) \ - ((speed) == PCIE_SPEED_16_0GT ? "16 GT/s" : \ - (speed) == PCIE_SPEED_8_0GT ? "8 GT/s" : \ - (speed) == PCIE_SPEED_5_0GT ? "5 GT/s" : \ - (speed) == PCIE_SPEED_2_5GT ? "2.5 GT/s" : \ - "Unknown speed") +/* PCIe link information from Link Capabilities 2 */ +#define PCIE_LNKCAP2_SLS2SPEED(lnkcap2) \ + ((lnkcap2) & PCI_EXP_LNKCAP2_SLS_32_0GB ? PCIE_SPEED_32_0GT : \ + (lnkcap2) & PCI_EXP_LNKCAP2_SLS_16_0GB ? PCIE_SPEED_16_0GT : \ + (lnkcap2) & PCI_EXP_LNKCAP2_SLS_8_0GB ? PCIE_SPEED_8_0GT : \ + (lnkcap2) & PCI_EXP_LNKCAP2_SLS_5_0GB ? PCIE_SPEED_5_0GT : \ + (lnkcap2) & PCI_EXP_LNKCAP2_SLS_2_5GB ? PCIE_SPEED_2_5GT : \ + PCI_SPEED_UNKNOWN) /* PCIe speed to Mb/s reduced by encoding overhead */ #define PCIE_SPEED2MBS_ENC(speed) \ - ((speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \ + ((speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \ + (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \ (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \ (speed) == PCIE_SPEED_5_0GT ? 5000*8/10 : \ (speed) == PCIE_SPEED_2_5GT ? 2500*8/10 : \ 0) +const char *pci_speed_string(enum pci_bus_speed speed); enum pci_bus_speed pcie_get_speed_cap(struct pci_dev *dev); enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev); u32 pcie_bandwidth_capable(struct pci_dev *dev, enum pci_bus_speed *speed, diff -u linux-azure-5.4.0/drivers/pci/pcie/portdrv_core.c linux-azure-5.4.0/drivers/pci/pcie/portdrv_core.c --- linux-azure-5.4.0/drivers/pci/pcie/portdrv_core.c +++ linux-azure-5.4.0/drivers/pci/pcie/portdrv_core.c @@ -260,8 +260,13 @@ services |= PCIE_PORT_SERVICE_DPC; if (pci_pcie_type(dev) == PCI_EXP_TYPE_DOWNSTREAM || - pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) - services |= PCIE_PORT_SERVICE_BWNOTIF; + pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) { + u32 linkcap; + + pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &linkcap); + if (linkcap & PCI_EXP_LNKCAP_LBNC) + services |= PCIE_PORT_SERVICE_BWNOTIF; + } return services; } diff -u linux-azure-5.4.0/drivers/pci/probe.c linux-azure-5.4.0/drivers/pci/probe.c --- linux-azure-5.4.0/drivers/pci/probe.c +++ linux-azure-5.4.0/drivers/pci/probe.c @@ -564,7 +564,7 @@ return b; } -static void devm_pci_release_host_bridge_dev(struct device *dev) +static void pci_release_host_bridge_dev(struct device *dev) { struct pci_host_bridge *bridge = to_pci_host_bridge(dev); @@ -573,12 +573,7 @@ pci_free_resource_list(&bridge->windows); pci_free_resource_list(&bridge->dma_ranges); -} - -static void pci_release_host_bridge_dev(struct device *dev) -{ - devm_pci_release_host_bridge_dev(dev); - kfree(to_pci_host_bridge(dev)); + kfree(bridge); } static void pci_init_host_bridge(struct pci_host_bridge *bridge) @@ -597,6 +592,9 @@ bridge->native_shpc_hotplug = 1; bridge->native_pme = 1; bridge->native_ltr = 1; + bridge->domain_nr = PCI_DOMAIN_NR_NOT_SET; + + device_initialize(&bridge->dev); } struct pci_host_bridge *pci_alloc_host_bridge(size_t priv) @@ -614,17 +612,25 @@ } EXPORT_SYMBOL(pci_alloc_host_bridge); +static void devm_pci_alloc_host_bridge_release(void *data) +{ + pci_free_host_bridge(data); +} + struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev, size_t priv) { + int ret; struct pci_host_bridge *bridge; - bridge = devm_kzalloc(dev, sizeof(*bridge) + priv, GFP_KERNEL); + bridge = pci_alloc_host_bridge(priv); if (!bridge) return NULL; - pci_init_host_bridge(bridge); - bridge->dev.release = devm_pci_release_host_bridge_dev; + ret = devm_add_action_or_reset(dev, devm_pci_alloc_host_bridge_release, + bridge); + if (ret) + return NULL; return bridge; } @@ -632,13 +638,11 @@ void pci_free_host_bridge(struct pci_host_bridge *bridge) { - pci_free_resource_list(&bridge->windows); - pci_free_resource_list(&bridge->dma_ranges); - - kfree(bridge); + put_device(&bridge->dev); } EXPORT_SYMBOL(pci_free_host_bridge); +/* Indexed by PCI_X_SSTATUS_FREQ (secondary bus mode and frequency) */ static const unsigned char pcix_bus_speed[] = { PCI_SPEED_UNKNOWN, /* 0 */ PCI_SPEED_66MHz_PCIX, /* 1 */ @@ -658,6 +662,7 @@ PCI_SPEED_133MHz_PCIX_533 /* F */ }; +/* Indexed by PCI_EXP_LNKCAP_SLS, PCI_EXP_LNKSTA_CLS */ const unsigned char pcie_link_speed[] = { PCI_SPEED_UNKNOWN, /* 0 */ PCIE_SPEED_2_5GT, /* 1 */ @@ -676,6 +681,44 @@ PCI_SPEED_UNKNOWN, /* E */ PCI_SPEED_UNKNOWN /* F */ }; +EXPORT_SYMBOL_GPL(pcie_link_speed); + +const char *pci_speed_string(enum pci_bus_speed speed) +{ + /* Indexed by the pci_bus_speed enum */ + static const char *speed_strings[] = { + "33 MHz PCI", /* 0x00 */ + "66 MHz PCI", /* 0x01 */ + "66 MHz PCI-X", /* 0x02 */ + "100 MHz PCI-X", /* 0x03 */ + "133 MHz PCI-X", /* 0x04 */ + NULL, /* 0x05 */ + NULL, /* 0x06 */ + NULL, /* 0x07 */ + NULL, /* 0x08 */ + "66 MHz PCI-X 266", /* 0x09 */ + "100 MHz PCI-X 266", /* 0x0a */ + "133 MHz PCI-X 266", /* 0x0b */ + "Unknown AGP", /* 0x0c */ + "1x AGP", /* 0x0d */ + "2x AGP", /* 0x0e */ + "4x AGP", /* 0x0f */ + "8x AGP", /* 0x10 */ + "66 MHz PCI-X 533", /* 0x11 */ + "100 MHz PCI-X 533", /* 0x12 */ + "133 MHz PCI-X 533", /* 0x13 */ + "2.5 GT/s PCIe", /* 0x14 */ + "5.0 GT/s PCIe", /* 0x15 */ + "8.0 GT/s PCIe", /* 0x16 */ + "16.0 GT/s PCIe", /* 0x17 */ + "32.0 GT/s PCIe", /* 0x18 */ + }; + + if (speed < ARRAY_SIZE(speed_strings)) + return speed_strings[speed]; + return "Unknown"; +} +EXPORT_SYMBOL_GPL(pci_speed_string); void pcie_update_link_speed(struct pci_bus *bus, u16 linksta) { @@ -777,11 +820,15 @@ { struct irq_domain *d; + /* If the host bridge driver sets a MSI domain of the bridge, use it */ + d = dev_get_msi_domain(bus->bridge); + /* * Any firmware interface that can resolve the msi_domain * should be called from here. */ - d = pci_host_bridge_of_msi_domain(bus); + if (!d) + d = pci_host_bridge_of_msi_domain(bus); if (!d) d = pci_host_bridge_acpi_msi_domain(bus); @@ -848,7 +895,10 @@ bus->ops = bridge->ops; bus->number = bus->busn_res.start = bridge->busnr; #ifdef CONFIG_PCI_DOMAINS_GENERIC - bus->domain_nr = pci_bus_find_domain_nr(bus, parent); + if (bridge->domain_nr == PCI_DOMAIN_NR_NOT_SET) + bus->domain_nr = pci_bus_find_domain_nr(bus, parent); + else + bus->domain_nr = bridge->domain_nr; #endif b = pci_find_bus(pci_domain_nr(bus), bridge->busnr); @@ -866,7 +916,7 @@ if (err) goto free; - err = device_register(&bridge->dev); + err = device_add(&bridge->dev); if (err) { put_device(&bridge->dev); goto free; @@ -933,7 +983,7 @@ unregister: put_device(&bridge->dev); - device_unregister(&bridge->dev); + device_del(&bridge->dev); free: kfree(bus); @@ -2945,7 +2995,7 @@ return bridge->bus; err_out: - kfree(bridge); + put_device(&bridge->dev); return NULL; } EXPORT_SYMBOL_GPL(pci_create_root_bus); diff -u linux-azure-5.4.0/drivers/pci/quirks.c linux-azure-5.4.0/drivers/pci/quirks.c --- linux-azure-5.4.0/drivers/pci/quirks.c +++ linux-azure-5.4.0/drivers/pci/quirks.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include /* isa_dma_bridge_buggy */ #include "pci.h" @@ -1919,6 +1920,7 @@ } DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e0, quirk_ryzen_xhci_d3hot); DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15e1, quirk_ryzen_xhci_d3hot); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x1639, quirk_ryzen_xhci_d3hot); #ifdef CONFIG_X86_IO_APIC static int dmi_disable_ioapicreroute(const struct dmi_system_id *d) @@ -3259,12 +3261,13 @@ { dev->pcie_mpss = 1; /* 256 bytes */ } -DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SOLARFLARE, - PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0, fixup_mpss_256); -DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SOLARFLARE, - PCI_DEVICE_ID_SOLARFLARE_SFC4000A_1, fixup_mpss_256); -DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SOLARFLARE, - PCI_DEVICE_ID_SOLARFLARE_SFC4000B, fixup_mpss_256); +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLARFLARE, + PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0, fixup_mpss_256); +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLARFLARE, + PCI_DEVICE_ID_SOLARFLARE_SFC4000A_1, fixup_mpss_256); +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SOLARFLARE, + PCI_DEVICE_ID_SOLARFLARE_SFC4000B, fixup_mpss_256); +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_ASMEDIA, 0x0612, fixup_mpss_256); /* * Intel 5000 and 5100 Memory controllers have an erratum with read completion @@ -3573,6 +3576,18 @@ } /* + * Some NVIDIA GPU devices do not work with bus reset, SBR needs to be + * prevented for those affected devices. + */ +static void quirk_nvidia_no_bus_reset(struct pci_dev *dev) +{ + if ((dev->device & 0xffc0) == 0x2340) + quirk_no_bus_reset(dev); +} +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID, + quirk_nvidia_no_bus_reset); + +/* * Some Atheros AR9xxx and QCA988x chips do not behave after a bus reset. * The device will throw a Link Down error on AER-capable systems and * regardless of AER, config space of the device is never accessible again @@ -3584,6 +3599,7 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x003c, quirk_no_bus_reset); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x0033, quirk_no_bus_reset); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x0034, quirk_no_bus_reset); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_ATHEROS, 0x003e, quirk_no_bus_reset); /* * Root port on some Cavium CN8xxx chips do not successfully complete a bus @@ -3592,6 +3608,16 @@ */ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_CAVIUM, 0xa100, quirk_no_bus_reset); +/* + * Some TI KeyStone C667X devices do not support bus/hot reset. The PCIESS + * automatically disables LTSSM when Secondary Bus Reset is received and + * the device stops working. Prevent bus reset for these devices. With + * this change, the device can be assigned to VMs with VFIO, but it will + * leak state between VMs. Reference + * https://e2e.ti.com/support/processors/f/791/t/954382 + */ +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TI, 0xb005, quirk_no_bus_reset); + static void quirk_no_pm_reset(struct pci_dev *dev) { /* @@ -3660,6 +3686,16 @@ return; if (pci_pcie_type(dev) != PCI_EXP_TYPE_UPSTREAM) return; + + /* + * SXIO/SXFP/SXLF turns off power to the Thunderbolt controller. + * We don't know how to turn it back on again, but firmware does, + * so we can only use SXIO/SXFP/SXLF if we're suspending via + * firmware. + */ + if (!pm_suspend_via_firmware()) + return; + bridge = ACPI_HANDLE(&dev->dev); if (!bridge) return; @@ -3984,6 +4020,69 @@ return 0; } +#define PCI_DEVICE_ID_HINIC_VF 0x375E +#define HINIC_VF_FLR_TYPE 0x1000 +#define HINIC_VF_FLR_CAP_BIT (1UL << 30) +#define HINIC_VF_OP 0xE80 +#define HINIC_VF_FLR_PROC_BIT (1UL << 18) +#define HINIC_OPERATION_TIMEOUT 15000 /* 15 seconds */ + +/* Device-specific reset method for Huawei Intelligent NIC virtual functions */ +static int reset_hinic_vf_dev(struct pci_dev *pdev, int probe) +{ + unsigned long timeout; + void __iomem *bar; + u32 val; + + if (probe) + return 0; + + bar = pci_iomap(pdev, 0, 0); + if (!bar) + return -ENOTTY; + + /* Get and check firmware capabilities */ + val = ioread32be(bar + HINIC_VF_FLR_TYPE); + if (!(val & HINIC_VF_FLR_CAP_BIT)) { + pci_iounmap(pdev, bar); + return -ENOTTY; + } + + /* Set HINIC_VF_FLR_PROC_BIT for the start of FLR */ + val = ioread32be(bar + HINIC_VF_OP); + val = val | HINIC_VF_FLR_PROC_BIT; + iowrite32be(val, bar + HINIC_VF_OP); + + pcie_flr(pdev); + + /* + * The device must recapture its Bus and Device Numbers after FLR + * in order generate Completions. Issue a config write to let the + * device capture this information. + */ + pci_write_config_word(pdev, PCI_VENDOR_ID, 0); + + /* Firmware clears HINIC_VF_FLR_PROC_BIT when reset is complete */ + timeout = jiffies + msecs_to_jiffies(HINIC_OPERATION_TIMEOUT); + do { + val = ioread32be(bar + HINIC_VF_OP); + if (!(val & HINIC_VF_FLR_PROC_BIT)) + goto reset_complete; + msleep(20); + } while (time_before(jiffies, timeout)); + + val = ioread32be(bar + HINIC_VF_OP); + if (!(val & HINIC_VF_FLR_PROC_BIT)) + goto reset_complete; + + pci_warn(pdev, "Reset dev timeout, FLR ack reg: %#010x\n", val); + +reset_complete: + pci_iounmap(pdev, bar); + + return 0; +} + static const struct pci_dev_reset_methods pci_dev_reset_methods[] = { { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82599_SFP_VF, reset_intel_82599_sfp_virtfn }, @@ -3995,6 +4094,8 @@ { PCI_VENDOR_ID_INTEL, 0x0953, delay_250ms_after_flr }, { PCI_VENDOR_ID_CHELSIO, PCI_ANY_ID, reset_chelsio_generic_dev }, + { PCI_VENDOR_ID_HUAWEI, PCI_DEVICE_ID_HINIC_VF, + reset_hinic_vf_dev }, { 0 } }; @@ -4048,6 +4149,9 @@ quirk_dma_func1_alias); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL_EXT, 0x9123, quirk_dma_func1_alias); +/* https://bugzilla.kernel.org/show_bug.cgi?id=42679#c136 */ +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL_EXT, 0x9125, + quirk_dma_func1_alias); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL_EXT, 0x9128, quirk_dma_func1_alias); /* https://bugzilla.kernel.org/show_bug.cgi?id=42679#c14 */ @@ -4601,2 +4705,14 @@ +/* + * Each of these NXP Root Ports is in a Root Complex with a unique segment + * number and does provide isolation features to disable peer transactions + * and validate bus numbers in requests, but does not provide an ACS + * capability. + */ +static int pci_quirk_nxp_rp_acs(struct pci_dev *dev, u16 acs_flags) +{ + return pci_acs_ctrl_enabled(acs_flags, + PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF); +} + static int pci_quirk_al_acs(struct pci_dev *dev, u16 acs_flags) @@ -4826,6 +4942,10 @@ { 0x10df, 0x720, pci_quirk_mf_endpoint_acs }, /* Emulex Skyhawk-R */ /* Cavium ThunderX */ { PCI_VENDOR_ID_CAVIUM, PCI_ANY_ID, pci_quirk_cavium_acs }, + /* Cavium multi-function devices */ + { PCI_VENDOR_ID_CAVIUM, 0xA026, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_CAVIUM, 0xA059, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_CAVIUM, 0xA060, pci_quirk_mf_endpoint_acs }, /* APM X-Gene */ { PCI_VENDOR_ID_AMCC, 0xE004, pci_quirk_xgene_acs }, /* Ampere Computing */ @@ -4837,6 +4957,11 @@ { PCI_VENDOR_ID_AMPERE, 0xE00A, pci_quirk_xgene_acs }, { PCI_VENDOR_ID_AMPERE, 0xE00B, pci_quirk_xgene_acs }, { PCI_VENDOR_ID_AMPERE, 0xE00C, pci_quirk_xgene_acs }, + /* Broadcom multi-function device */ + { PCI_VENDOR_ID_BROADCOM, 0x16D7, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_BROADCOM, 0x1750, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_BROADCOM, 0x1751, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_BROADCOM, 0x1752, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_BROADCOM, 0xD714, pci_quirk_brcm_acs }, /* Amazon Annapurna Labs */ { PCI_VENDOR_ID_AMAZON_ANNAPURNA_LABS, 0x0031, pci_quirk_al_acs }, @@ -4844,6 +4969,39 @@ { PCI_VENDOR_ID_ZHAOXIN, 0x3038, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_ZHAOXIN, 0x3104, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_ZHAOXIN, 0x9083, pci_quirk_mf_endpoint_acs }, + /* NXP root ports, xx=16, 12, or 08 cores */ + /* LX2xx0A : without security features + CAN-FD */ + { PCI_VENDOR_ID_NXP, 0x8d81, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8da1, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d83, pci_quirk_nxp_rp_acs }, + /* LX2xx0C : security features + CAN-FD */ + { PCI_VENDOR_ID_NXP, 0x8d80, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8da0, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d82, pci_quirk_nxp_rp_acs }, + /* LX2xx0E : security features + CAN */ + { PCI_VENDOR_ID_NXP, 0x8d90, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8db0, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d92, pci_quirk_nxp_rp_acs }, + /* LX2xx0N : without security features + CAN */ + { PCI_VENDOR_ID_NXP, 0x8d91, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8db1, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d93, pci_quirk_nxp_rp_acs }, + /* LX2xx2A : without security features + CAN-FD */ + { PCI_VENDOR_ID_NXP, 0x8d89, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8da9, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d8b, pci_quirk_nxp_rp_acs }, + /* LX2xx2C : security features + CAN-FD */ + { PCI_VENDOR_ID_NXP, 0x8d88, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8da8, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d8a, pci_quirk_nxp_rp_acs }, + /* LX2xx2E : security features + CAN */ + { PCI_VENDOR_ID_NXP, 0x8d98, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8db8, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d9a, pci_quirk_nxp_rp_acs }, + /* LX2xx2N : without security features + CAN */ + { PCI_VENDOR_ID_NXP, 0x8d99, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8db9, pci_quirk_nxp_rp_acs }, + { PCI_VENDOR_ID_NXP, 0x8d9b, pci_quirk_nxp_rp_acs }, /* Zhaoxin Root/Downstream Ports */ { PCI_VENDOR_ID_ZHAOXIN, PCI_ANY_ID, pci_quirk_zhaoxin_pcie_ports_acs }, { 0 } @@ -5249,7 +5407,8 @@ static void quirk_amd_harvest_no_ats(struct pci_dev *pdev) { if ((pdev->device == 0x7312 && pdev->revision != 0x00) || - (pdev->device == 0x7340 && pdev->revision != 0xc5)) + (pdev->device == 0x7340 && pdev->revision != 0xc5) || + (pdev->device == 0x7341 && pdev->revision != 0x00)) return; pci_info(pdev, "disabling ATS\n"); @@ -5264,6 +5423,7 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7312, quirk_amd_harvest_no_ats); /* AMD Navi14 dGPU */ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7340, quirk_amd_harvest_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7341, quirk_amd_harvest_no_ats); #endif /* CONFIG_PCI_ATS */ /* Freescale PCIe doesn't support MSI in RC mode */ @@ -5327,7 +5487,7 @@ PCI_CLASS_MULTIMEDIA_HD_AUDIO, 8, quirk_gpu_hda); /* - * Create device link for NVIDIA GPU with integrated USB xHCI Host + * Create device link for GPUs with integrated USB xHCI Host * controller to VGA. */ static void quirk_gpu_usb(struct pci_dev *usb) @@ -5336,9 +5496,11 @@ } DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID, PCI_CLASS_SERIAL_USB, 8, quirk_gpu_usb); +DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_VENDOR_ID_ATI, PCI_ANY_ID, + PCI_CLASS_SERIAL_USB, 8, quirk_gpu_usb); /* - * Create device link for NVIDIA GPU with integrated Type-C UCSI controller + * Create device link for GPUs with integrated Type-C UCSI controller * to VGA. Currently there is no class code defined for UCSI device over PCI * so using UNKNOWN class for now and it will be updated when UCSI * over PCI gets a class code. @@ -5351,6 +5513,9 @@ DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID, PCI_CLASS_SERIAL_UNKNOWN, 8, quirk_gpu_usb_typec_ucsi); +DECLARE_PCI_FIXUP_CLASS_FINAL(PCI_VENDOR_ID_ATI, PCI_ANY_ID, + PCI_CLASS_SERIAL_UNKNOWN, 8, + quirk_gpu_usb_typec_ucsi); /* * Enable the NVIDIA GPU integrated HDA controller if the BIOS left it @@ -5643,6 +5808,12 @@ DECLARE_PCI_FIXUP_CLASS_HEADER(0x1ac1, 0x089a, PCI_CLASS_NOT_DEFINED, 8, apex_pci_fixup_class); +static void nvidia_ion_ahci_fixup(struct pci_dev *pdev) +{ + pdev->dev_flags |= PCI_DEV_FLAGS_HAS_MSI_MASKING; +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_NVIDIA, 0x0ab8, nvidia_ion_ahci_fixup); + /* * Device [12d8:0x400e] and [12d8:0x400f] * These devices advertise PME# support in all power states but don't diff -u linux-azure-5.4.0/drivers/pci/setup-res.c linux-azure-5.4.0/drivers/pci/setup-res.c --- linux-azure-5.4.0/drivers/pci/setup-res.c +++ linux-azure-5.4.0/drivers/pci/setup-res.c @@ -209,6 +209,17 @@ root = pci_find_parent_resource(dev, res); if (!root) { + /* + * If dev is behind a bridge, accesses will only reach it + * if res is inside the relevant bridge window. + */ + if (pci_upstream_bridge(dev)) + return -ENXIO; + + /* + * On the root bus, assume the host bridge will forward + * everything. + */ if (res->flags & IORESOURCE_IO) root = &ioport_resource; else diff -u linux-azure-5.4.0/drivers/pci/slot.c linux-azure-5.4.0/drivers/pci/slot.c --- linux-azure-5.4.0/drivers/pci/slot.c +++ linux-azure-5.4.0/drivers/pci/slot.c @@ -49,45 +49,9 @@ slot->number); } -/* these strings match up with the values in pci_bus_speed */ -static const char *pci_bus_speed_strings[] = { - "33 MHz PCI", /* 0x00 */ - "66 MHz PCI", /* 0x01 */ - "66 MHz PCI-X", /* 0x02 */ - "100 MHz PCI-X", /* 0x03 */ - "133 MHz PCI-X", /* 0x04 */ - NULL, /* 0x05 */ - NULL, /* 0x06 */ - NULL, /* 0x07 */ - NULL, /* 0x08 */ - "66 MHz PCI-X 266", /* 0x09 */ - "100 MHz PCI-X 266", /* 0x0a */ - "133 MHz PCI-X 266", /* 0x0b */ - "Unknown AGP", /* 0x0c */ - "1x AGP", /* 0x0d */ - "2x AGP", /* 0x0e */ - "4x AGP", /* 0x0f */ - "8x AGP", /* 0x10 */ - "66 MHz PCI-X 533", /* 0x11 */ - "100 MHz PCI-X 533", /* 0x12 */ - "133 MHz PCI-X 533", /* 0x13 */ - "2.5 GT/s PCIe", /* 0x14 */ - "5.0 GT/s PCIe", /* 0x15 */ - "8.0 GT/s PCIe", /* 0x16 */ - "16.0 GT/s PCIe", /* 0x17 */ - "32.0 GT/s PCIe", /* 0x18 */ -}; - static ssize_t bus_speed_read(enum pci_bus_speed speed, char *buf) { - const char *speed_string; - - if (speed < ARRAY_SIZE(pci_bus_speed_strings)) - speed_string = pci_bus_speed_strings[speed]; - else - speed_string = "Unknown"; - - return sprintf(buf, "%s\n", speed_string); + return sprintf(buf, "%s\n", pci_speed_string(speed)); } static ssize_t max_speed_read_file(struct pci_slot *slot, char *buf) diff -u linux-azure-5.4.0/drivers/pci/syscall.c linux-azure-5.4.0/drivers/pci/syscall.c --- linux-azure-5.4.0/drivers/pci/syscall.c +++ linux-azure-5.4.0/drivers/pci/syscall.c @@ -22,8 +22,10 @@ long err; int cfg_ret; + err = -EPERM; + dev = NULL; if (!capable(CAP_SYS_ADMIN)) - return -EPERM; + goto error; err = -ENODEV; dev = pci_get_domain_bus_and_slot(0, bus, dfn); diff -u linux-azure-5.4.0/drivers/perf/arm_pmu_platform.c linux-azure-5.4.0/drivers/perf/arm_pmu_platform.c --- linux-azure-5.4.0/drivers/perf/arm_pmu_platform.c +++ linux-azure-5.4.0/drivers/perf/arm_pmu_platform.c @@ -118,7 +118,7 @@ if (num_irqs == 1) { int irq = platform_get_irq(pdev, 0); - if (irq && irq_is_percpu_devid(irq)) + if ((irq > 0) && irq_is_percpu_devid(irq)) return pmu_parse_percpu_irq(pmu, irq); } diff -u linux-azure-5.4.0/drivers/perf/arm_smmuv3_pmu.c linux-azure-5.4.0/drivers/perf/arm_smmuv3_pmu.c --- linux-azure-5.4.0/drivers/perf/arm_smmuv3_pmu.c +++ linux-azure-5.4.0/drivers/perf/arm_smmuv3_pmu.c @@ -275,7 +275,7 @@ struct perf_event *event, int idx) { u32 span, sid; - unsigned int num_ctrs = smmu_pmu->num_counters; + unsigned int cur_idx, num_ctrs = smmu_pmu->num_counters; bool filter_en = !!get_filter_enable(event); span = filter_en ? get_filter_span(event) : @@ -283,17 +283,19 @@ sid = filter_en ? get_filter_stream_id(event) : SMMU_PMCG_DEFAULT_FILTER_SID; - /* Support individual filter settings */ - if (!smmu_pmu->global_filter) { + cur_idx = find_first_bit(smmu_pmu->used_counters, num_ctrs); + /* + * Per-counter filtering, or scheduling the first globally-filtered + * event into an empty PMU so idx == 0 and it works out equivalent. + */ + if (!smmu_pmu->global_filter || cur_idx == num_ctrs) { smmu_pmu_set_event_filter(event, idx, span, sid); return 0; } - /* Requested settings same as current global settings*/ - idx = find_first_bit(smmu_pmu->used_counters, num_ctrs); - if (idx == num_ctrs || - smmu_pmu_check_global_filter(smmu_pmu->events[idx], event)) { - smmu_pmu_set_event_filter(event, 0, span, sid); + /* Otherwise, must match whatever's currently scheduled */ + if (smmu_pmu_check_global_filter(smmu_pmu->events[cur_idx], event)) { + smmu_pmu_set_evtyper(smmu_pmu, idx, get_event(event)); return 0; } diff -u linux-azure-5.4.0/drivers/perf/fsl_imx8_ddr_perf.c linux-azure-5.4.0/drivers/perf/fsl_imx8_ddr_perf.c --- linux-azure-5.4.0/drivers/perf/fsl_imx8_ddr_perf.c +++ linux-azure-5.4.0/drivers/perf/fsl_imx8_ddr_perf.c @@ -29,7 +29,7 @@ #define CNTL_OVER_MASK 0xFFFFFFFE #define CNTL_CSV_SHIFT 24 -#define CNTL_CSV_MASK (0xFF << CNTL_CSV_SHIFT) +#define CNTL_CSV_MASK (0xFFU << CNTL_CSV_SHIFT) #define EVENT_CYCLES_ID 0 #define EVENT_CYCLES_COUNTER 0 @@ -562,8 +562,10 @@ name = devm_kasprintf(&pdev->dev, GFP_KERNEL, DDR_PERF_DEV_NAME "%d", num); - if (!name) - return -ENOMEM; + if (!name) { + ret = -ENOMEM; + goto cpuhp_state_err; + } pmu->devtype_data = of_device_get_match_data(&pdev->dev); diff -u linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c --- linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c +++ linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c @@ -398,8 +398,9 @@ ret = perf_pmu_register(&ddrc_pmu->pmu, name, -1); if (ret) { dev_err(ddrc_pmu->dev, "DDRC PMU register failed!\n"); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE, - &ddrc_pmu->node); + cpuhp_state_remove_instance_nocalls( + CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE, &ddrc_pmu->node); + irq_set_affinity_hint(ddrc_pmu->irq, NULL); } return ret; @@ -410,8 +411,9 @@ struct hisi_pmu *ddrc_pmu = platform_get_drvdata(pdev); perf_pmu_unregister(&ddrc_pmu->pmu); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE, - &ddrc_pmu->node); + cpuhp_state_remove_instance_nocalls(CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE, + &ddrc_pmu->node); + irq_set_affinity_hint(ddrc_pmu->irq, NULL); return 0; } diff -u linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_hha_pmu.c linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_hha_pmu.c --- linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_hha_pmu.c +++ linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_hha_pmu.c @@ -409,8 +409,9 @@ ret = perf_pmu_register(&hha_pmu->pmu, name, -1); if (ret) { dev_err(hha_pmu->dev, "HHA PMU register failed!\n"); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE, - &hha_pmu->node); + cpuhp_state_remove_instance_nocalls( + CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE, &hha_pmu->node); + irq_set_affinity_hint(hha_pmu->irq, NULL); } return ret; @@ -421,8 +422,9 @@ struct hisi_pmu *hha_pmu = platform_get_drvdata(pdev); perf_pmu_unregister(&hha_pmu->pmu); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE, - &hha_pmu->node); + cpuhp_state_remove_instance_nocalls(CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE, + &hha_pmu->node); + irq_set_affinity_hint(hha_pmu->irq, NULL); return 0; } diff -u linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c --- linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c +++ linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c @@ -399,8 +399,9 @@ ret = perf_pmu_register(&l3c_pmu->pmu, name, -1); if (ret) { dev_err(l3c_pmu->dev, "L3C PMU register failed!\n"); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_L3_ONLINE, - &l3c_pmu->node); + cpuhp_state_remove_instance_nocalls( + CPUHP_AP_PERF_ARM_HISI_L3_ONLINE, &l3c_pmu->node); + irq_set_affinity_hint(l3c_pmu->irq, NULL); } return ret; @@ -411,8 +412,9 @@ struct hisi_pmu *l3c_pmu = platform_get_drvdata(pdev); perf_pmu_unregister(&l3c_pmu->pmu); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_L3_ONLINE, - &l3c_pmu->node); + cpuhp_state_remove_instance_nocalls(CPUHP_AP_PERF_ARM_HISI_L3_ONLINE, + &l3c_pmu->node); + irq_set_affinity_hint(l3c_pmu->irq, NULL); return 0; } diff -u linux-azure-5.4.0/drivers/perf/qcom_l2_pmu.c linux-azure-5.4.0/drivers/perf/qcom_l2_pmu.c --- linux-azure-5.4.0/drivers/perf/qcom_l2_pmu.c +++ linux-azure-5.4.0/drivers/perf/qcom_l2_pmu.c @@ -781,7 +781,7 @@ { u64 mpidr; int cpu_cluster_id; - struct cluster_pmu *cluster = NULL; + struct cluster_pmu *cluster; /* * This assumes that the cluster_id is in MPIDR[aff1] for @@ -803,10 +803,10 @@ cluster->cluster_id); cpumask_set_cpu(cpu, &cluster->cluster_cpus); *per_cpu_ptr(l2cache_pmu->pmu_cluster, cpu) = cluster; - break; + return cluster; } - return cluster; + return NULL; } static int l2cache_pmu_online_cpu(unsigned int cpu, struct hlist_node *node) diff -u linux-azure-5.4.0/drivers/phy/motorola/phy-mapphone-mdm6600.c linux-azure-5.4.0/drivers/phy/motorola/phy-mapphone-mdm6600.c --- linux-azure-5.4.0/drivers/phy/motorola/phy-mapphone-mdm6600.c +++ linux-azure-5.4.0/drivers/phy/motorola/phy-mapphone-mdm6600.c @@ -628,7 +628,8 @@ cleanup: if (error < 0) phy_mdm6600_device_power_off(ddata); - + pm_runtime_disable(ddata->dev); + pm_runtime_dont_use_autosuspend(ddata->dev); return error; } diff -u linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-qmp.c linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-qmp.c --- linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-qmp.c +++ linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-qmp.c @@ -1517,7 +1517,7 @@ qcom_qmp_phy_configure(pcs, cfg->regs, cfg->pcs_tbl, cfg->pcs_tbl_num); ret = reset_control_deassert(qmp->ufs_reset); if (ret) - goto err_lane_rst; + goto err_pcs_ready; /* * Pull out PHY from POWER DOWN state. @@ -1860,6 +1860,11 @@ .owner = THIS_MODULE, }; +static void qcom_qmp_reset_control_put(void *data) +{ + reset_control_put(data); +} + static int qcom_qmp_phy_create(struct device *dev, struct device_node *np, int id) { @@ -1929,7 +1934,7 @@ * all phys that don't need this. */ snprintf(prop_name, sizeof(prop_name), "pipe%d", id); - qphy->pipe_clk = of_clk_get_by_name(np, prop_name); + qphy->pipe_clk = devm_get_clk_from_child(dev, np, prop_name); if (IS_ERR(qphy->pipe_clk)) { if (qmp->cfg->type == PHY_TYPE_PCIE || qmp->cfg->type == PHY_TYPE_USB3) { @@ -1951,6 +1956,10 @@ dev_err(dev, "failed to get lane%d reset\n", id); return PTR_ERR(qphy->lane_rst); } + ret = devm_add_action_or_reset(dev, qcom_qmp_reset_control_put, + qphy->lane_rst); + if (ret) + return ret; } if (qmp->cfg->type == PHY_TYPE_UFS) diff -u linux-azure-5.4.0/drivers/phy/socionext/phy-uniphier-usb3ss.c linux-azure-5.4.0/drivers/phy/socionext/phy-uniphier-usb3ss.c --- linux-azure-5.4.0/drivers/phy/socionext/phy-uniphier-usb3ss.c +++ linux-azure-5.4.0/drivers/phy/socionext/phy-uniphier-usb3ss.c @@ -22,11 +22,13 @@ #include #define SSPHY_TESTI 0x0 -#define SSPHY_TESTO 0x4 #define TESTI_DAT_MASK GENMASK(13, 6) #define TESTI_ADR_MASK GENMASK(5, 1) #define TESTI_WR_EN BIT(0) +#define SSPHY_TESTO 0x4 +#define TESTO_DAT_MASK GENMASK(7, 0) + #define PHY_F(regno, msb, lsb) { (regno), (msb), (lsb) } #define CDR_CPD_TRIM PHY_F(7, 3, 0) /* RxPLL charge pump current */ @@ -84,12 +86,12 @@ val = FIELD_PREP(TESTI_DAT_MASK, 1); val |= FIELD_PREP(TESTI_ADR_MASK, p->field.reg_no); uniphier_u3ssphy_testio_write(priv, val); - val = readl(priv->base + SSPHY_TESTO); + val = readl(priv->base + SSPHY_TESTO) & TESTO_DAT_MASK; /* update value */ - val &= ~FIELD_PREP(TESTI_DAT_MASK, field_mask); + val &= ~field_mask; data = field_mask & (p->value << p->field.lsb); - val = FIELD_PREP(TESTI_DAT_MASK, data); + val = FIELD_PREP(TESTI_DAT_MASK, data | val); val |= FIELD_PREP(TESTI_ADR_MASK, p->field.reg_no); uniphier_u3ssphy_testio_write(priv, val); uniphier_u3ssphy_testio_write(priv, val | TESTI_WR_EN); diff -u linux-azure-5.4.0/drivers/phy/ti/phy-am654-serdes.c linux-azure-5.4.0/drivers/phy/ti/phy-am654-serdes.c --- linux-azure-5.4.0/drivers/phy/ti/phy-am654-serdes.c +++ linux-azure-5.4.0/drivers/phy/ti/phy-am654-serdes.c @@ -641,7 +641,7 @@ clk_err: of_clk_del_provider(node); - + pm_runtime_disable(dev); return ret; } diff -u linux-azure-5.4.0/drivers/pinctrl/core.c linux-azure-5.4.0/drivers/pinctrl/core.c --- linux-azure-5.4.0/drivers/pinctrl/core.c +++ linux-azure-5.4.0/drivers/pinctrl/core.c @@ -2055,6 +2055,8 @@ if (error) { dev_err(pctldev->dev, "could not claim hogs: %i\n", error); + pinctrl_free_pindescs(pctldev, pctldev->desc->pins, + pctldev->desc->npins); mutex_destroy(&pctldev->mutex); kfree(pctldev); diff -u linux-azure-5.4.0/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c linux-azure-5.4.0/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c --- linux-azure-5.4.0/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c +++ linux-azure-5.4.0/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c @@ -166,10 +166,14 @@ PIN_GRP_GPIO("jtag", 20, 5, BIT(0), "jtag"), PIN_GRP_GPIO("sdio0", 8, 3, BIT(1), "sdio"), PIN_GRP_GPIO("emmc_nb", 27, 9, BIT(2), "emmc"), - PIN_GRP_GPIO("pwm0", 11, 1, BIT(3), "pwm"), - PIN_GRP_GPIO("pwm1", 12, 1, BIT(4), "pwm"), - PIN_GRP_GPIO("pwm2", 13, 1, BIT(5), "pwm"), - PIN_GRP_GPIO("pwm3", 14, 1, BIT(6), "pwm"), + PIN_GRP_GPIO_3("pwm0", 11, 1, BIT(3) | BIT(20), 0, BIT(20), BIT(3), + "pwm", "led"), + PIN_GRP_GPIO_3("pwm1", 12, 1, BIT(4) | BIT(21), 0, BIT(21), BIT(4), + "pwm", "led"), + PIN_GRP_GPIO_3("pwm2", 13, 1, BIT(5) | BIT(22), 0, BIT(22), BIT(5), + "pwm", "led"), + PIN_GRP_GPIO_3("pwm3", 14, 1, BIT(6) | BIT(23), 0, BIT(23), BIT(6), + "pwm", "led"), PIN_GRP_GPIO("pmic1", 7, 1, BIT(7), "pmic"), PIN_GRP_GPIO("pmic0", 6, 1, BIT(8), "pmic"), PIN_GRP_GPIO("i2c2", 2, 2, BIT(9), "i2c"), @@ -183,11 +187,6 @@ PIN_GRP_EXTRA("uart2", 9, 2, BIT(1) | BIT(13) | BIT(14) | BIT(19), BIT(1) | BIT(13) | BIT(14), BIT(1) | BIT(19), 18, 2, "gpio", "uart"), - PIN_GRP_GPIO_2("led0_od", 11, 1, BIT(20), BIT(20), 0, "led"), - PIN_GRP_GPIO_2("led1_od", 12, 1, BIT(21), BIT(21), 0, "led"), - PIN_GRP_GPIO_2("led2_od", 13, 1, BIT(22), BIT(22), 0, "led"), - PIN_GRP_GPIO_2("led3_od", 14, 1, BIT(23), BIT(23), 0, "led"), - }; static struct armada_37xx_pin_group armada_37xx_sb_groups[] = { @@ -774,7 +773,7 @@ for (i = 0; i < nr_irq_parent; i++) { int irq = irq_of_parse_and_map(np, i); - if (irq < 0) + if (!irq) continue; gpiochip_set_chained_irqchip(gc, irqchip, irq, diff -u linux-azure-5.4.0/drivers/pinctrl/pinctrl-amd.c linux-azure-5.4.0/drivers/pinctrl/pinctrl-amd.c --- linux-azure-5.4.0/drivers/pinctrl/pinctrl-amd.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-amd.c @@ -793,6 +793,7 @@ { struct amd_gpio *gpio_dev = dev_get_drvdata(dev); struct pinctrl_desc *desc = gpio_dev->pctrl->desc; + unsigned long flags; int i; for (i = 0; i < desc->npins; i++) { @@ -801,7 +802,9 @@ if (!amd_gpio_should_save(gpio_dev, pin)) continue; - gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin*4); + raw_spin_lock_irqsave(&gpio_dev->lock, flags); + gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin * 4) & ~PIN_IRQ_PENDING; + raw_spin_unlock_irqrestore(&gpio_dev->lock, flags); } return 0; @@ -811,6 +814,7 @@ { struct amd_gpio *gpio_dev = dev_get_drvdata(dev); struct pinctrl_desc *desc = gpio_dev->pctrl->desc; + unsigned long flags; int i; for (i = 0; i < desc->npins; i++) { @@ -819,7 +823,10 @@ if (!amd_gpio_should_save(gpio_dev, pin)) continue; - writel(gpio_dev->saved_regs[i], gpio_dev->base + pin*4); + raw_spin_lock_irqsave(&gpio_dev->lock, flags); + gpio_dev->saved_regs[i] |= readl(gpio_dev->base + pin * 4) & PIN_IRQ_PENDING; + writel(gpio_dev->saved_regs[i], gpio_dev->base + pin * 4); + raw_spin_unlock_irqrestore(&gpio_dev->lock, flags); } return 0; @@ -958,6 +965,7 @@ static const struct acpi_device_id amd_gpio_acpi_match[] = { { "AMD0030", 0 }, { "AMDI0030", 0}, + { "AMDI0031", 0}, { }, }; MODULE_DEVICE_TABLE(acpi, amd_gpio_acpi_match); diff -u linux-azure-5.4.0/drivers/pinctrl/pinctrl-ingenic.c linux-azure-5.4.0/drivers/pinctrl/pinctrl-ingenic.c --- linux-azure-5.4.0/drivers/pinctrl/pinctrl-ingenic.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-ingenic.c @@ -348,7 +348,7 @@ }; static const u32 jz4760_pull_ups[6] = { - 0xffffffff, 0xfffcf3ff, 0xffffffff, 0xffffcfff, 0xfffffb7c, 0xfffff00f, + 0xffffffff, 0xfffcf3ff, 0xffffffff, 0xffffcfff, 0xfffffb7c, 0x0000000f, }; static const u32 jz4760_pull_downs[6] = { @@ -611,11 +611,11 @@ }; static const u32 jz4770_pull_ups[6] = { - 0x3fffffff, 0xfff0030c, 0xffffffff, 0xffff4fff, 0xfffffb7c, 0xffa7f00f, + 0x3fffffff, 0xfff0f3fc, 0xffffffff, 0xffff4fff, 0xfffffb7c, 0x0024f00f, }; static const u32 jz4770_pull_downs[6] = { - 0x00000000, 0x000f0c03, 0x00000000, 0x0000b000, 0x00000483, 0x00580ff0, + 0x00000000, 0x000f0c03, 0x00000000, 0x0000b000, 0x00000483, 0x005b0ff0, }; static int jz4770_uart0_data_pins[] = { 0xa0, 0xa3, }; diff -u linux-azure-5.4.0/drivers/pinctrl/pinctrl-mcp23s08.c linux-azure-5.4.0/drivers/pinctrl/pinctrl-mcp23s08.c --- linux-azure-5.4.0/drivers/pinctrl/pinctrl-mcp23s08.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-mcp23s08.c @@ -459,6 +459,11 @@ if (mcp_read(mcp, MCP_INTF, &intf)) goto unlock; + if (intf == 0) { + /* There is no interrupt pending */ + goto unlock; + } + if (mcp_read(mcp, MCP_INTCAP, &intcap)) goto unlock; @@ -476,11 +481,6 @@ mcp->cached_gpio = gpio; mutex_unlock(&mcp->lock); - if (intf == 0) { - /* There is no interrupt pending */ - return IRQ_HANDLED; - } - dev_dbg(mcp->chip.parent, "intcap 0x%04X intf 0x%04X gpio_orig 0x%04X gpio 0x%04X\n", intcap, intf, gpio_orig, gpio); diff -u linux-azure-5.4.0/drivers/pinctrl/pinctrl-rockchip.c linux-azure-5.4.0/drivers/pinctrl/pinctrl-rockchip.c --- linux-azure-5.4.0/drivers/pinctrl/pinctrl-rockchip.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-rockchip.c @@ -3433,6 +3433,7 @@ node = of_parse_phandle(np, "rockchip,grf", 0); if (node) { info->regmap_base = syscon_node_to_regmap(node); + of_node_put(node); if (IS_ERR(info->regmap_base)) return PTR_ERR(info->regmap_base); } else { @@ -3469,6 +3470,7 @@ node = of_parse_phandle(np, "rockchip,pmu", 0); if (node) { info->regmap_pmu = syscon_node_to_regmap(node); + of_node_put(node); if (IS_ERR(info->regmap_pmu)) return PTR_ERR(info->regmap_pmu); } diff -u linux-azure-5.4.0/drivers/pinctrl/pinctrl-single.c linux-azure-5.4.0/drivers/pinctrl/pinctrl-single.c --- linux-azure-5.4.0/drivers/pinctrl/pinctrl-single.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-single.c @@ -1201,6 +1201,7 @@ if (PCS_HAS_PINCONF) { dev_err(pcs->dev, "pinconf not supported\n"); + res = -ENOTSUPP; goto free_pingroups; } diff -u linux-azure-5.4.0/drivers/pinctrl/samsung/pinctrl-samsung.c linux-azure-5.4.0/drivers/pinctrl/samsung/pinctrl-samsung.c --- linux-azure-5.4.0/drivers/pinctrl/samsung/pinctrl-samsung.c +++ linux-azure-5.4.0/drivers/pinctrl/samsung/pinctrl-samsung.c @@ -918,7 +918,7 @@ pin_bank->grange.pin_base = drvdata->pin_base + pin_bank->pin_base; pin_bank->grange.base = pin_bank->grange.pin_base; - pin_bank->grange.npins = pin_bank->gpio_chip.ngpio; + pin_bank->grange.npins = pin_bank->nr_pins; pin_bank->grange.gc = &pin_bank->gpio_chip; pinctrl_add_gpio_range(drvdata->pctl_dev, &pin_bank->grange); } @@ -1002,6 +1002,16 @@ return &(of_data->ctrl[id]); } +static void samsung_banks_of_node_put(struct samsung_pinctrl_drv_data *d) +{ + struct samsung_pin_bank *bank; + unsigned int i; + + bank = d->pin_banks; + for (i = 0; i < d->nr_banks; ++i, ++bank) + of_node_put(bank->of_node); +} + /* retrieve the soc specific data */ static const struct samsung_pin_ctrl * samsung_pinctrl_get_soc_data(struct samsung_pinctrl_drv_data *d, @@ -1116,19 +1126,19 @@ if (ctrl->retention_data) { drvdata->retention_ctrl = ctrl->retention_data->init(drvdata, ctrl->retention_data); - if (IS_ERR(drvdata->retention_ctrl)) - return PTR_ERR(drvdata->retention_ctrl); + if (IS_ERR(drvdata->retention_ctrl)) { + ret = PTR_ERR(drvdata->retention_ctrl); + goto err_put_banks; + } } ret = samsung_pinctrl_register(pdev, drvdata); if (ret) - return ret; + goto err_put_banks; ret = samsung_gpiolib_register(pdev, drvdata); - if (ret) { - samsung_pinctrl_unregister(pdev, drvdata); - return ret; - } + if (ret) + goto err_unregister; if (ctrl->eint_gpio_init) ctrl->eint_gpio_init(drvdata); @@ -1138,6 +1148,12 @@ platform_set_drvdata(pdev, drvdata); return 0; + +err_unregister: + samsung_pinctrl_unregister(pdev, drvdata); +err_put_banks: + samsung_banks_of_node_put(drvdata); + return ret; } /** diff -u linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a77990.c linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a77990.c --- linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a77990.c +++ linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a77990.c @@ -54,10 +54,10 @@ PIN_NOGP_CFG(FSCLKST_N, "FSCLKST_N", fn, CFG_FLAGS), \ PIN_NOGP_CFG(MLB_REF, "MLB_REF", fn, CFG_FLAGS), \ PIN_NOGP_CFG(PRESETOUT_N, "PRESETOUT_N", fn, CFG_FLAGS), \ - PIN_NOGP_CFG(TCK, "TCK", fn, CFG_FLAGS), \ - PIN_NOGP_CFG(TDI, "TDI", fn, CFG_FLAGS), \ - PIN_NOGP_CFG(TMS, "TMS", fn, CFG_FLAGS), \ - PIN_NOGP_CFG(TRST_N, "TRST_N", fn, CFG_FLAGS) + PIN_NOGP_CFG(TCK, "TCK", fn, SH_PFC_PIN_CFG_PULL_UP), \ + PIN_NOGP_CFG(TDI, "TDI", fn, SH_PFC_PIN_CFG_PULL_UP), \ + PIN_NOGP_CFG(TMS, "TMS", fn, SH_PFC_PIN_CFG_PULL_UP), \ + PIN_NOGP_CFG(TRST_N, "TRST_N", fn, SH_PFC_PIN_CFG_PULL_UP) /* * F_() : just information diff -u linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sunxi.c linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sunxi.c --- linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sunxi.c +++ linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sunxi.c @@ -536,6 +536,8 @@ struct sunxi_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev); int i; + pin -= pctl->desc->pin_base; + for (i = 0; i < num_configs; i++) { enum pin_config_param param; unsigned long flags; @@ -614,7 +616,7 @@ unsigned pin, struct regulator *supply) { - unsigned short bank = pin / PINS_PER_BANK; + unsigned short bank; unsigned long flags; u32 val, reg; int uV; @@ -630,6 +632,9 @@ if (uV == 0) return 0; + pin -= pctl->desc->pin_base; + bank = pin / PINS_PER_BANK; + switch (pctl->desc->io_bias_cfg_variant) { case BIAS_VOLTAGE_GRP_CONFIG: /* @@ -647,8 +652,6 @@ else val = 0xD; /* 3.3V */ - pin -= pctl->desc->pin_base; - reg = readl(pctl->membase + sunxi_grp_config_reg(pin)); reg &= ~IO_BIAS_MASK; writel(reg | val, pctl->membase + sunxi_grp_config_reg(pin)); diff -u linux-azure-5.4.0/drivers/platform/olpc/olpc-ec.c linux-azure-5.4.0/drivers/platform/olpc/olpc-ec.c --- linux-azure-5.4.0/drivers/platform/olpc/olpc-ec.c +++ linux-azure-5.4.0/drivers/platform/olpc/olpc-ec.c @@ -265,7 +265,7 @@ int i, m; unsigned char ec_cmd[EC_MAX_CMD_ARGS]; unsigned int ec_cmd_int[EC_MAX_CMD_ARGS]; - char cmdbuf[64]; + char cmdbuf[64] = ""; int ec_cmd_bytes; mutex_lock(&ec_dbgfs_lock); diff -u linux-azure-5.4.0/drivers/platform/x86/acer-wmi.c linux-azure-5.4.0/drivers/platform/x86/acer-wmi.c --- linux-azure-5.4.0/drivers/platform/x86/acer-wmi.c +++ linux-azure-5.4.0/drivers/platform/x86/acer-wmi.c @@ -93,6 +93,7 @@ {KE_KEY, 0x22, {KEY_PROG2} }, /* Arcade */ {KE_KEY, 0x23, {KEY_PROG3} }, /* P_Key */ {KE_KEY, 0x24, {KEY_PROG4} }, /* Social networking_Key */ + {KE_KEY, 0x27, {KEY_HELP} }, {KE_KEY, 0x29, {KEY_PROG3} }, /* P_Key for TM8372 */ {KE_IGNORE, 0x41, {KEY_MUTE} }, {KE_IGNORE, 0x42, {KEY_PREVIOUSSONG} }, @@ -106,7 +107,13 @@ {KE_IGNORE, 0x48, {KEY_VOLUMEUP} }, {KE_IGNORE, 0x49, {KEY_VOLUMEDOWN} }, {KE_IGNORE, 0x4a, {KEY_VOLUMEDOWN} }, - {KE_IGNORE, 0x61, {KEY_SWITCHVIDEOMODE} }, + /* + * 0x61 is KEY_SWITCHVIDEOMODE. Usually this is a duplicate input event + * with the "Video Bus" input device events. But sometimes it is not + * a dup. Map it to KEY_UNKNOWN instead of using KE_IGNORE so that + * udev/hwdb can override it on systems where it is not a dup. + */ + {KE_KEY, 0x61, {KEY_UNKNOWN} }, {KE_IGNORE, 0x62, {KEY_BRIGHTNESSUP} }, {KE_IGNORE, 0x63, {KEY_BRIGHTNESSDOWN} }, {KE_KEY, 0x64, {KEY_SWITCHVIDEOMODE} }, /* Display Switch */ diff -u linux-azure-5.4.0/drivers/platform/x86/dell-smbios-wmi.c linux-azure-5.4.0/drivers/platform/x86/dell-smbios-wmi.c --- linux-azure-5.4.0/drivers/platform/x86/dell-smbios-wmi.c +++ linux-azure-5.4.0/drivers/platform/x86/dell-smbios-wmi.c @@ -69,6 +69,7 @@ if (obj->type == ACPI_TYPE_INTEGER) dev_dbg(&wdev->dev, "SMBIOS call failed: %llu\n", obj->integer.value); + kfree(output.pointer); return -EIO; } memcpy(&priv->buf->std, obj->buffer.pointer, obj->buffer.length); diff -u linux-azure-5.4.0/drivers/platform/x86/hp-wmi.c linux-azure-5.4.0/drivers/platform/x86/hp-wmi.c --- linux-azure-5.4.0/drivers/platform/x86/hp-wmi.c +++ linux-azure-5.4.0/drivers/platform/x86/hp-wmi.c @@ -62,6 +62,7 @@ HPWMI_BACKLIT_KB_BRIGHTNESS = 0x0D, HPWMI_PEAKSHIFT_PERIOD = 0x0F, HPWMI_BATTERY_CHARGE_PERIOD = 0x10, + HPWMI_SANITIZATION_MODE = 0x17, }; struct bios_args { @@ -629,6 +630,8 @@ break; case HPWMI_BATTERY_CHARGE_PERIOD: break; + case HPWMI_SANITIZATION_MODE: + break; default: pr_info("Unknown event_id - %d - 0x%x\n", event_id, event_data); break; @@ -877,8 +880,16 @@ wwan_rfkill = NULL; rfkill2_count = 0; - if (hp_wmi_rfkill_setup(device)) - hp_wmi_rfkill2_setup(device); + /* + * In pre-2009 BIOS, command 1Bh return 0x4 to indicate that + * BIOS no longer controls the power for the wireless + * devices. All features supported by this command will no + * longer be supported. + */ + if (!hp_wmi_bios_2009_later()) { + if (hp_wmi_rfkill_setup(device)) + hp_wmi_rfkill2_setup(device); + } return 0; } diff -u linux-azure-5.4.0/drivers/platform/x86/hp_accel.c linux-azure-5.4.0/drivers/platform/x86/hp_accel.c --- linux-azure-5.4.0/drivers/platform/x86/hp_accel.c +++ linux-azure-5.4.0/drivers/platform/x86/hp_accel.c @@ -372,9 +372,11 @@ INIT_WORK(&hpled_led.work, delayed_set_status_worker); ret = led_classdev_register(NULL, &hpled_led.led_classdev); if (ret) { + i8042_remove_filter(hp_accel_i8042_filter); lis3lv02d_joystick_disable(&lis3_dev); lis3lv02d_poweroff(&lis3_dev); flush_work(&hpled_led.work); + lis3lv02d_remove_fs(&lis3_dev); return ret; } diff -u linux-azure-5.4.0/drivers/platform/x86/intel_punit_ipc.c linux-azure-5.4.0/drivers/platform/x86/intel_punit_ipc.c --- linux-azure-5.4.0/drivers/platform/x86/intel_punit_ipc.c +++ linux-azure-5.4.0/drivers/platform/x86/intel_punit_ipc.c @@ -8,7 +8,6 @@ * which provide mailbox interface for power management usage. */ -#include #include #include #include @@ -335,7 +334,7 @@ .remove = intel_punit_ipc_remove, .driver = { .name = "intel_punit_ipc", - .acpi_match_table = ACPI_PTR(punit_ipc_acpi_ids), + .acpi_match_table = punit_ipc_acpi_ids, }, }; diff -u linux-azure-5.4.0/drivers/platform/x86/intel_scu_ipc.c linux-azure-5.4.0/drivers/platform/x86/intel_scu_ipc.c --- linux-azure-5.4.0/drivers/platform/x86/intel_scu_ipc.c +++ linux-azure-5.4.0/drivers/platform/x86/intel_scu_ipc.c @@ -181,7 +181,7 @@ return 0; } -/* Wait till ipc ioc interrupt is received or timeout in 3 HZ */ +/* Wait till ipc ioc interrupt is received or timeout in 10 HZ */ static inline int ipc_wait_for_interrupt(struct intel_scu_ipc_dev *scu) { int status; diff -u linux-azure-5.4.0/drivers/platform/x86/pcengines-apuv2.c linux-azure-5.4.0/drivers/platform/x86/pcengines-apuv2.c --- linux-azure-5.4.0/drivers/platform/x86/pcengines-apuv2.c +++ linux-azure-5.4.0/drivers/platform/x86/pcengines-apuv2.c @@ -78,7 +78,6 @@ { .name = "apu:green:1" }, { .name = "apu:green:2" }, { .name = "apu:green:3" }, - { .name = "apu:simswap" }, }; static const struct gpio_led_platform_data apu2_leds_pdata = { @@ -95,8 +94,7 @@ NULL, 1, GPIO_ACTIVE_LOW), GPIO_LOOKUP_IDX(AMD_FCH_GPIO_DRIVER_NAME, APU2_GPIO_LINE_LED3, NULL, 2, GPIO_ACTIVE_LOW), - GPIO_LOOKUP_IDX(AMD_FCH_GPIO_DRIVER_NAME, APU2_GPIO_LINE_SIMSWAP, - NULL, 3, GPIO_ACTIVE_LOW), + {} /* Terminating entry */ } }; @@ -126,6 +124,7 @@ .table = { GPIO_LOOKUP_IDX(AMD_FCH_GPIO_DRIVER_NAME, APU2_GPIO_LINE_MODESW, NULL, 0, GPIO_ACTIVE_LOW), + {} /* Terminating entry */ } }; diff -u linux-azure-5.4.0/drivers/platform/x86/pmc_atom.c linux-azure-5.4.0/drivers/platform/x86/pmc_atom.c --- linux-azure-5.4.0/drivers/platform/x86/pmc_atom.c +++ linux-azure-5.4.0/drivers/platform/x86/pmc_atom.c @@ -244,7 +244,7 @@ pm1_cnt_port = acpi_base_addr + PM1_CNT; pm1_cnt_value = inl(pm1_cnt_port); - pm1_cnt_value &= SLEEP_TYPE_MASK; + pm1_cnt_value &= ~SLEEP_TYPE_MASK; pm1_cnt_value |= SLEEP_TYPE_S5; pm1_cnt_value |= SLEEP_ENABLE; diff -u linux-azure-5.4.0/drivers/platform/x86/thinkpad_acpi.c linux-azure-5.4.0/drivers/platform/x86/thinkpad_acpi.c --- linux-azure-5.4.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-azure-5.4.0/drivers/platform/x86/thinkpad_acpi.c @@ -1188,15 +1188,6 @@ return status; } -/* Query FW and update rfkill sw state for all rfkill switches */ -static void tpacpi_rfk_update_swstate_all(void) -{ - unsigned int i; - - for (i = 0; i < TPACPI_RFK_SW_MAX; i++) - tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]); -} - /* * Sync the HW-blocking state of all rfkill switches, * do notice it causes the rfkill core to schedule uevents @@ -3135,9 +3126,6 @@ if (wlsw == TPACPI_RFK_RADIO_OFF) tpacpi_rfk_update_hwblock_state(true); - /* Sync sw blocking state */ - tpacpi_rfk_update_swstate_all(); - /* Sync hw blocking state last if it is hw-unblocked */ if (wlsw == TPACPI_RFK_RADIO_ON) tpacpi_rfk_update_hwblock_state(false); @@ -9089,7 +9077,7 @@ if (strlencmp(cmd, "level auto") == 0) level = TP_EC_FAN_AUTO; - else if ((strlencmp(cmd, "level disengaged") == 0) | + else if ((strlencmp(cmd, "level disengaged") == 0) || (strlencmp(cmd, "level full-speed") == 0)) level = TP_EC_FAN_FULLSPEED; else if (sscanf(cmd, "level %d", &level) != 1) diff -u linux-azure-5.4.0/drivers/platform/x86/toshiba_acpi.c linux-azure-5.4.0/drivers/platform/x86/toshiba_acpi.c --- linux-azure-5.4.0/drivers/platform/x86/toshiba_acpi.c +++ linux-azure-5.4.0/drivers/platform/x86/toshiba_acpi.c @@ -2841,6 +2841,7 @@ if (!dev->info_supported && !dev->system_event_supported) { pr_warn("No hotkey query interface found\n"); + error = -EINVAL; goto err_remove_filter; } diff -u linux-azure-5.4.0/drivers/power/supply/Kconfig linux-azure-5.4.0/drivers/power/supply/Kconfig --- linux-azure-5.4.0/drivers/power/supply/Kconfig +++ linux-azure-5.4.0/drivers/power/supply/Kconfig @@ -643,7 +643,8 @@ config BATTERY_RT5033 tristate "RT5033 fuel gauge support" - depends on MFD_RT5033 + depends on I2C + select REGMAP_I2C help This adds support for battery fuel gauge in Richtek RT5033 PMIC. The fuelgauge calculates and determines the battery state of charge diff -u linux-azure-5.4.0/drivers/power/supply/axp288_charger.c linux-azure-5.4.0/drivers/power/supply/axp288_charger.c --- linux-azure-5.4.0/drivers/power/supply/axp288_charger.c +++ linux-azure-5.4.0/drivers/power/supply/axp288_charger.c @@ -41,11 +41,11 @@ #define VBUS_ISPOUT_CUR_LIM_1500MA 0x1 /* 1500mA */ #define VBUS_ISPOUT_CUR_LIM_2000MA 0x2 /* 2000mA */ #define VBUS_ISPOUT_CUR_NO_LIM 0x3 /* 2500mA */ -#define VBUS_ISPOUT_VHOLD_SET_MASK 0x31 +#define VBUS_ISPOUT_VHOLD_SET_MASK 0x38 #define VBUS_ISPOUT_VHOLD_SET_BIT_POS 0x3 #define VBUS_ISPOUT_VHOLD_SET_OFFSET 4000 /* 4000mV */ #define VBUS_ISPOUT_VHOLD_SET_LSB_RES 100 /* 100mV */ -#define VBUS_ISPOUT_VHOLD_SET_4300MV 0x3 /* 4300mV */ +#define VBUS_ISPOUT_VHOLD_SET_4400MV 0x4 /* 4400mV */ #define VBUS_ISPOUT_VBUS_PATH_DIS BIT(7) #define CHRG_CCCV_CC_MASK 0xf /* 4 bits */ @@ -744,6 +744,16 @@ ret = axp288_charger_vbus_path_select(info, true); if (ret < 0) return ret; + } else { + /* Set Vhold to the factory default / recommended 4.4V */ + val = VBUS_ISPOUT_VHOLD_SET_4400MV << VBUS_ISPOUT_VHOLD_SET_BIT_POS; + ret = regmap_update_bits(info->regmap, AXP20X_VBUS_IPSOUT_MGMT, + VBUS_ISPOUT_VHOLD_SET_MASK, val); + if (ret < 0) { + dev_err(&info->pdev->dev, "register(%x) write error(%d)\n", + AXP20X_VBUS_IPSOUT_MGMT, ret); + return ret; + } } /* Read current charge voltage and current limit */ diff -u linux-azure-5.4.0/drivers/power/supply/axp288_fuel_gauge.c linux-azure-5.4.0/drivers/power/supply/axp288_fuel_gauge.c --- linux-azure-5.4.0/drivers/power/supply/axp288_fuel_gauge.c +++ linux-azure-5.4.0/drivers/power/supply/axp288_fuel_gauge.c @@ -149,7 +149,7 @@ } if (ret < 0) { - dev_err(&info->pdev->dev, "axp288 reg read err:%d\n", ret); + dev_err(&info->pdev->dev, "Error reading reg 0x%02x err: %d\n", reg, ret); return ret; } @@ -163,7 +163,7 @@ ret = regmap_write(info->regmap, reg, (unsigned int)val); if (ret < 0) - dev_err(&info->pdev->dev, "axp288 reg write err:%d\n", ret); + dev_err(&info->pdev->dev, "Error writing reg 0x%02x err: %d\n", reg, ret); return ret; } diff -u linux-azure-5.4.0/drivers/power/supply/bq24190_charger.c linux-azure-5.4.0/drivers/power/supply/bq24190_charger.c --- linux-azure-5.4.0/drivers/power/supply/bq24190_charger.c +++ linux-azure-5.4.0/drivers/power/supply/bq24190_charger.c @@ -41,6 +41,7 @@ #define BQ24190_REG_POC_CHG_CONFIG_DISABLE 0x0 #define BQ24190_REG_POC_CHG_CONFIG_CHARGE 0x1 #define BQ24190_REG_POC_CHG_CONFIG_OTG 0x2 +#define BQ24190_REG_POC_CHG_CONFIG_OTG_ALT 0x3 #define BQ24190_REG_POC_SYS_MIN_MASK (BIT(3) | BIT(2) | BIT(1)) #define BQ24190_REG_POC_SYS_MIN_SHIFT 1 #define BQ24190_REG_POC_SYS_MIN_MIN 3000 @@ -550,7 +551,11 @@ pm_runtime_mark_last_busy(bdi->dev); pm_runtime_put_autosuspend(bdi->dev); - return ret ? ret : val == BQ24190_REG_POC_CHG_CONFIG_OTG; + if (ret) + return ret; + + return (val == BQ24190_REG_POC_CHG_CONFIG_OTG || + val == BQ24190_REG_POC_CHG_CONFIG_OTG_ALT); } static const struct regulator_ops bq24190_vbus_ops = { diff -u linux-azure-5.4.0/drivers/powercap/intel_rapl_common.c linux-azure-5.4.0/drivers/powercap/intel_rapl_common.c --- linux-azure-5.4.0/drivers/powercap/intel_rapl_common.c +++ linux-azure-5.4.0/drivers/powercap/intel_rapl_common.c @@ -885,6 +885,9 @@ y = value & 0x1f; value = (1 << y) * (4 + f) * rp->time_unit / 4; } else { + if (value < rp->time_unit) + return 0; + do_div(value, rp->time_unit); y = ilog2(value); f = div64_u64(4 * (value - (1 << y)), 1 << y); diff -u linux-azure-5.4.0/drivers/ptp/ptp_clock.c linux-azure-5.4.0/drivers/ptp/ptp_clock.c --- linux-azure-5.4.0/drivers/ptp/ptp_clock.c +++ linux-azure-5.4.0/drivers/ptp/ptp_clock.c @@ -63,7 +63,7 @@ spin_unlock_irqrestore(&queue->lock, flags); } -s32 scaled_ppm_to_ppb(long ppm) +long scaled_ppm_to_ppb(long ppm) { /* * The 'freq' field in the 'struct timex' is in parts per @@ -80,7 +80,7 @@ s64 ppb = 1 + ppm; ppb *= 125; ppb >>= 13; - return (s32) ppb; + return (long) ppb; } EXPORT_SYMBOL(scaled_ppm_to_ppb); @@ -138,7 +138,7 @@ delta = ktime_to_ns(kt); err = ops->adjtime(ops, delta); } else if (tx->modes & ADJ_FREQUENCY) { - s32 ppb = scaled_ppm_to_ppb(tx->freq); + long ppb = scaled_ppm_to_ppb(tx->freq); if (ppb > ops->max_adj || ppb < -ops->max_adj) return -ERANGE; if (ops->adjfine) diff -u linux-azure-5.4.0/drivers/pwm/pwm-img.c linux-azure-5.4.0/drivers/pwm/pwm-img.c --- linux-azure-5.4.0/drivers/pwm/pwm-img.c +++ linux-azure-5.4.0/drivers/pwm/pwm-img.c @@ -156,7 +156,7 @@ struct img_pwm_chip *pwm_chip = to_img_pwm_chip(chip); int ret; - ret = pm_runtime_get_sync(chip->dev); + ret = pm_runtime_resume_and_get(chip->dev); if (ret < 0) return ret; @@ -329,23 +329,7 @@ static int img_pwm_remove(struct platform_device *pdev) { struct img_pwm_chip *pwm_chip = platform_get_drvdata(pdev); - u32 val; - unsigned int i; - int ret; - - ret = pm_runtime_get_sync(&pdev->dev); - if (ret < 0) { - pm_runtime_put(&pdev->dev); - return ret; - } - - for (i = 0; i < pwm_chip->chip.npwm; i++) { - val = img_pwm_readl(pwm_chip, PWM_CTRL_CFG); - val &= ~BIT(i); - img_pwm_writel(pwm_chip, PWM_CTRL_CFG, val); - } - pm_runtime_put(&pdev->dev); pm_runtime_disable(&pdev->dev); if (!pm_runtime_status_suspended(&pdev->dev)) img_pwm_runtime_suspend(&pdev->dev); diff -u linux-azure-5.4.0/drivers/pwm/pwm-lp3943.c linux-azure-5.4.0/drivers/pwm/pwm-lp3943.c --- linux-azure-5.4.0/drivers/pwm/pwm-lp3943.c +++ linux-azure-5.4.0/drivers/pwm/pwm-lp3943.c @@ -125,6 +125,7 @@ if (err) return err; + duty_ns = min(duty_ns, period_ns); val = (u8)(duty_ns * LP3943_MAX_DUTY / period_ns); return lp3943_write_byte(lp3943, reg_duty, val); diff -u linux-azure-5.4.0/drivers/pwm/pwm-rockchip.c linux-azure-5.4.0/drivers/pwm/pwm-rockchip.c --- linux-azure-5.4.0/drivers/pwm/pwm-rockchip.c +++ linux-azure-5.4.0/drivers/pwm/pwm-rockchip.c @@ -383,20 +383,6 @@ { struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev); - /* - * Disable the PWM clk before unpreparing it if the PWM device is still - * running. This should only happen when the last PWM user left it - * enabled, or when nobody requested a PWM that was previously enabled - * by the bootloader. - * - * FIXME: Maybe the core should disable all PWM devices in - * pwmchip_remove(). In this case we'd only have to call - * clk_unprepare() after pwmchip_remove(). - * - */ - if (pwm_is_enabled(pc->chip.pwms)) - clk_disable(pc->clk); - clk_unprepare(pc->pclk); clk_unprepare(pc->clk); diff -u linux-azure-5.4.0/drivers/regulator/core.c linux-azure-5.4.0/drivers/regulator/core.c --- linux-azure-5.4.0/drivers/regulator/core.c +++ linux-azure-5.4.0/drivers/regulator/core.c @@ -1381,6 +1381,12 @@ * and we have control then make sure it is enabled. */ if (rdev->constraints->always_on || rdev->constraints->boot_on) { + /* If we want to enable this regulator, make sure that we know + * the supplying regulator. + */ + if (rdev->supply_name && !rdev->supply) + return -EPROBE_DEFER; + if (rdev->supply) { ret = regulator_enable(rdev->supply); if (ret < 0) { @@ -1982,10 +1988,13 @@ rdev->exclusive = 1; ret = _regulator_is_enabled(rdev); - if (ret > 0) + if (ret > 0) { rdev->use_count = 1; - else + regulator->enable_count = 1; + } else { rdev->use_count = 0; + regulator->enable_count = 0; + } } device_link_add(dev, &rdev->dev, DL_FLAG_STATELESS); @@ -2477,13 +2486,18 @@ */ static int _regulator_handle_consumer_enable(struct regulator *regulator) { + int ret; struct regulator_dev *rdev = regulator->rdev; lockdep_assert_held_once(&rdev->mutex.base); regulator->enable_count++; - if (regulator->uA_load && regulator->enable_count == 1) - return drms_uA_update(rdev); + if (regulator->uA_load && regulator->enable_count == 1) { + ret = drms_uA_update(rdev); + if (ret) + regulator->enable_count--; + return ret; + } return 0; } diff -u linux-azure-5.4.0/drivers/regulator/pfuze100-regulator.c linux-azure-5.4.0/drivers/regulator/pfuze100-regulator.c --- linux-azure-5.4.0/drivers/regulator/pfuze100-regulator.c +++ linux-azure-5.4.0/drivers/regulator/pfuze100-regulator.c @@ -528,6 +528,7 @@ parent = of_get_child_by_name(np, "regulators"); if (!parent) { dev_err(dev, "regulators node not found\n"); + of_node_put(np); return -EINVAL; } @@ -557,6 +558,7 @@ } of_node_put(parent); + of_node_put(np); if (ret < 0) { dev_err(dev, "Error parsing regulator init data: %d\n", ret); @@ -786,7 +788,7 @@ ((pfuze_chip->chip_id == PFUZE3000) ? "3000" : "3001")))); memcpy(pfuze_chip->regulator_descs, pfuze_chip->pfuze_regulators, - sizeof(pfuze_chip->regulator_descs)); + regulator_num * sizeof(struct pfuze_regulator)); ret = pfuze_parse_regulators_dt(pfuze_chip); if (ret) diff -u linux-azure-5.4.0/drivers/regulator/s5m8767.c linux-azure-5.4.0/drivers/regulator/s5m8767.c --- linux-azure-5.4.0/drivers/regulator/s5m8767.c +++ linux-azure-5.4.0/drivers/regulator/s5m8767.c @@ -851,18 +851,15 @@ /* DS4 GPIO */ gpio_direction_output(pdata->buck_ds[2], 0x0); - if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs || - pdata->buck4_gpiodvs) { - regmap_update_bits(s5m8767->iodev->regmap_pmic, - S5M8767_REG_BUCK2CTRL, 1 << 1, - (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1)); - regmap_update_bits(s5m8767->iodev->regmap_pmic, - S5M8767_REG_BUCK3CTRL, 1 << 1, - (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1)); - regmap_update_bits(s5m8767->iodev->regmap_pmic, - S5M8767_REG_BUCK4CTRL, 1 << 1, - (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1)); - } + regmap_update_bits(s5m8767->iodev->regmap_pmic, + S5M8767_REG_BUCK2CTRL, 1 << 1, + (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1)); + regmap_update_bits(s5m8767->iodev->regmap_pmic, + S5M8767_REG_BUCK3CTRL, 1 << 1, + (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1)); + regmap_update_bits(s5m8767->iodev->regmap_pmic, + S5M8767_REG_BUCK4CTRL, 1 << 1, + (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1)); /* Initialize GPIO DVS registers */ for (i = 0; i < 8; i++) { diff -u linux-azure-5.4.0/drivers/regulator/vctrl-regulator.c linux-azure-5.4.0/drivers/regulator/vctrl-regulator.c --- linux-azure-5.4.0/drivers/regulator/vctrl-regulator.c +++ linux-azure-5.4.0/drivers/regulator/vctrl-regulator.c @@ -37,7 +37,6 @@ struct vctrl_data { struct regulator_dev *rdev; struct regulator_desc desc; - struct regulator *ctrl_reg; bool enabled; unsigned int min_slew_down_rate; unsigned int ovp_threshold; @@ -82,7 +81,12 @@ static int vctrl_get_voltage(struct regulator_dev *rdev) { struct vctrl_data *vctrl = rdev_get_drvdata(rdev); - int ctrl_uV = regulator_get_voltage_rdev(vctrl->ctrl_reg->rdev); + int ctrl_uV; + + if (!rdev->supply) + return -EPROBE_DEFER; + + ctrl_uV = regulator_get_voltage_rdev(rdev->supply->rdev); return vctrl_calc_output_voltage(vctrl, ctrl_uV); } @@ -92,14 +96,19 @@ unsigned int *selector) { struct vctrl_data *vctrl = rdev_get_drvdata(rdev); - struct regulator *ctrl_reg = vctrl->ctrl_reg; - int orig_ctrl_uV = regulator_get_voltage_rdev(ctrl_reg->rdev); - int uV = vctrl_calc_output_voltage(vctrl, orig_ctrl_uV); + int orig_ctrl_uV; + int uV; int ret; + if (!rdev->supply) + return -EPROBE_DEFER; + + orig_ctrl_uV = regulator_get_voltage_rdev(rdev->supply->rdev); + uV = vctrl_calc_output_voltage(vctrl, orig_ctrl_uV); + if (req_min_uV >= uV || !vctrl->ovp_threshold) /* voltage rising or no OVP */ - return regulator_set_voltage_rdev(ctrl_reg->rdev, + return regulator_set_voltage_rdev(rdev->supply->rdev, vctrl_calc_ctrl_voltage(vctrl, req_min_uV), vctrl_calc_ctrl_voltage(vctrl, req_max_uV), PM_SUSPEND_ON); @@ -117,7 +126,7 @@ next_uV = max_t(int, req_min_uV, uV - max_drop_uV); next_ctrl_uV = vctrl_calc_ctrl_voltage(vctrl, next_uV); - ret = regulator_set_voltage_rdev(ctrl_reg->rdev, + ret = regulator_set_voltage_rdev(rdev->supply->rdev, next_ctrl_uV, next_ctrl_uV, PM_SUSPEND_ON); @@ -134,7 +143,7 @@ err: /* Try to go back to original voltage */ - regulator_set_voltage_rdev(ctrl_reg->rdev, orig_ctrl_uV, orig_ctrl_uV, + regulator_set_voltage_rdev(rdev->supply->rdev, orig_ctrl_uV, orig_ctrl_uV, PM_SUSPEND_ON); return ret; @@ -151,16 +160,18 @@ unsigned int selector) { struct vctrl_data *vctrl = rdev_get_drvdata(rdev); - struct regulator *ctrl_reg = vctrl->ctrl_reg; unsigned int orig_sel = vctrl->sel; int ret; + if (!rdev->supply) + return -EPROBE_DEFER; + if (selector >= rdev->desc->n_voltages) return -EINVAL; if (selector >= vctrl->sel || !vctrl->ovp_threshold) { /* voltage rising or no OVP */ - ret = regulator_set_voltage_rdev(ctrl_reg->rdev, + ret = regulator_set_voltage_rdev(rdev->supply->rdev, vctrl->vtable[selector].ctrl, vctrl->vtable[selector].ctrl, PM_SUSPEND_ON); @@ -179,7 +190,7 @@ else next_sel = vctrl->vtable[vctrl->sel].ovp_min_sel; - ret = regulator_set_voltage_rdev(ctrl_reg->rdev, + ret = regulator_set_voltage_rdev(rdev->supply->rdev, vctrl->vtable[next_sel].ctrl, vctrl->vtable[next_sel].ctrl, PM_SUSPEND_ON); @@ -202,7 +213,7 @@ err: if (vctrl->sel != orig_sel) { /* Try to go back to original voltage */ - if (!regulator_set_voltage_rdev(ctrl_reg->rdev, + if (!regulator_set_voltage_rdev(rdev->supply->rdev, vctrl->vtable[orig_sel].ctrl, vctrl->vtable[orig_sel].ctrl, PM_SUSPEND_ON)) @@ -234,10 +245,6 @@ u32 pval; u32 vrange_ctrl[2]; - vctrl->ctrl_reg = devm_regulator_get(&pdev->dev, "ctrl"); - if (IS_ERR(vctrl->ctrl_reg)) - return PTR_ERR(vctrl->ctrl_reg); - ret = of_property_read_u32(np, "ovp-threshold-percent", &pval); if (!ret) { vctrl->ovp_threshold = pval; @@ -315,11 +322,11 @@ return at->ctrl - bt->ctrl; } -static int vctrl_init_vtable(struct platform_device *pdev) +static int vctrl_init_vtable(struct platform_device *pdev, + struct regulator *ctrl_reg) { struct vctrl_data *vctrl = platform_get_drvdata(pdev); struct regulator_desc *rdesc = &vctrl->desc; - struct regulator *ctrl_reg = vctrl->ctrl_reg; struct vctrl_voltage_range *vrange_ctrl = &vctrl->vrange.ctrl; int n_voltages; int ctrl_uV; @@ -395,23 +402,19 @@ static int vctrl_enable(struct regulator_dev *rdev) { struct vctrl_data *vctrl = rdev_get_drvdata(rdev); - int ret = regulator_enable(vctrl->ctrl_reg); - if (!ret) - vctrl->enabled = true; + vctrl->enabled = true; - return ret; + return 0; } static int vctrl_disable(struct regulator_dev *rdev) { struct vctrl_data *vctrl = rdev_get_drvdata(rdev); - int ret = regulator_disable(vctrl->ctrl_reg); - if (!ret) - vctrl->enabled = false; + vctrl->enabled = false; - return ret; + return 0; } static int vctrl_is_enabled(struct regulator_dev *rdev) @@ -447,6 +450,7 @@ struct regulator_desc *rdesc; struct regulator_config cfg = { }; struct vctrl_voltage_range *vrange_ctrl; + struct regulator *ctrl_reg; int ctrl_uV; int ret; @@ -461,15 +465,20 @@ if (ret) return ret; + ctrl_reg = devm_regulator_get(&pdev->dev, "ctrl"); + if (IS_ERR(ctrl_reg)) + return PTR_ERR(ctrl_reg); + vrange_ctrl = &vctrl->vrange.ctrl; rdesc = &vctrl->desc; rdesc->name = "vctrl"; rdesc->type = REGULATOR_VOLTAGE; rdesc->owner = THIS_MODULE; + rdesc->supply_name = "ctrl"; - if ((regulator_get_linear_step(vctrl->ctrl_reg) == 1) || - (regulator_count_voltages(vctrl->ctrl_reg) == -EINVAL)) { + if ((regulator_get_linear_step(ctrl_reg) == 1) || + (regulator_count_voltages(ctrl_reg) == -EINVAL)) { rdesc->continuous_voltage_range = true; rdesc->ops = &vctrl_ops_cont; } else { @@ -486,11 +495,12 @@ cfg.init_data = init_data; if (!rdesc->continuous_voltage_range) { - ret = vctrl_init_vtable(pdev); + ret = vctrl_init_vtable(pdev, ctrl_reg); if (ret) return ret; - ctrl_uV = regulator_get_voltage_rdev(vctrl->ctrl_reg->rdev); + /* Use locked consumer API when not in regulator framework */ + ctrl_uV = regulator_get_voltage(ctrl_reg); if (ctrl_uV < 0) { dev_err(&pdev->dev, "failed to get control voltage\n"); return ctrl_uV; @@ -513,6 +523,9 @@ } } + /* Drop ctrl-supply here in favor of regulator core managed supply */ + devm_regulator_put(ctrl_reg); + vctrl->rdev = devm_regulator_register(&pdev->dev, rdesc, &cfg); if (IS_ERR(vctrl->rdev)) { ret = PTR_ERR(vctrl->rdev); diff -u linux-azure-5.4.0/drivers/remoteproc/qcom_q6v5_adsp.c linux-azure-5.4.0/drivers/remoteproc/qcom_q6v5_adsp.c --- linux-azure-5.4.0/drivers/remoteproc/qcom_q6v5_adsp.c +++ linux-azure-5.4.0/drivers/remoteproc/qcom_q6v5_adsp.c @@ -389,6 +389,7 @@ } ret = of_address_to_resource(node, 0, &r); + of_node_put(node); if (ret) return ret; diff -u linux-azure-5.4.0/drivers/reset/core.c linux-azure-5.4.0/drivers/reset/core.c --- linux-azure-5.4.0/drivers/reset/core.c +++ linux-azure-5.4.0/drivers/reset/core.c @@ -565,7 +565,10 @@ if (!rstc) return ERR_PTR(-ENOMEM); - try_module_get(rcdev->owner); + if (!try_module_get(rcdev->owner)) { + kfree(rstc); + return ERR_PTR(-ENODEV); + } rstc->rcdev = rcdev; list_add(&rstc->list, &rcdev->reset_control_head); diff -u linux-azure-5.4.0/drivers/reset/reset-brcmstb.c linux-azure-5.4.0/drivers/reset/reset-brcmstb.c --- linux-azure-5.4.0/drivers/reset/reset-brcmstb.c +++ linux-azure-5.4.0/drivers/reset/reset-brcmstb.c @@ -111,6 +111,7 @@ { .compatible = "brcm,brcmstb-reset" }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, brcmstb_reset_of_match); static struct platform_driver brcmstb_reset_driver = { .probe = brcmstb_reset_probe, diff -u linux-azure-5.4.0/drivers/rpmsg/qcom_glink_native.c linux-azure-5.4.0/drivers/rpmsg/qcom_glink_native.c --- linux-azure-5.4.0/drivers/rpmsg/qcom_glink_native.c +++ linux-azure-5.4.0/drivers/rpmsg/qcom_glink_native.c @@ -1472,7 +1472,7 @@ cancel_work_sync(&channel->intent_work); if (channel->rpdev) { - strncpy(chinfo.name, channel->name, sizeof(chinfo.name)); + strscpy_pad(chinfo.name, channel->name, sizeof(chinfo.name)); chinfo.src = RPMSG_ADDR_ANY; chinfo.dst = RPMSG_ADDR_ANY; diff -u linux-azure-5.4.0/drivers/rpmsg/qcom_smd.c linux-azure-5.4.0/drivers/rpmsg/qcom_smd.c --- linux-azure-5.4.0/drivers/rpmsg/qcom_smd.c +++ linux-azure-5.4.0/drivers/rpmsg/qcom_smd.c @@ -1073,7 +1073,7 @@ /* Assign public information to the rpmsg_device */ rpdev = &qsdev->rpdev; - strncpy(rpdev->id.name, channel->name, RPMSG_NAME_SIZE); + strscpy_pad(rpdev->id.name, channel->name, RPMSG_NAME_SIZE); rpdev->src = RPMSG_ADDR_ANY; rpdev->dst = RPMSG_ADDR_ANY; @@ -1304,7 +1304,7 @@ spin_unlock_irqrestore(&edge->channels_lock, flags); - strncpy(chinfo.name, channel->name, sizeof(chinfo.name)); + strscpy_pad(chinfo.name, channel->name, sizeof(chinfo.name)); chinfo.src = RPMSG_ADDR_ANY; chinfo.dst = RPMSG_ADDR_ANY; rpmsg_unregister_device(&edge->dev, &chinfo); @@ -1364,6 +1364,7 @@ } edge->ipc_regmap = syscon_node_to_regmap(syscon_np); + of_node_put(syscon_np); if (IS_ERR(edge->ipc_regmap)) { ret = PTR_ERR(edge->ipc_regmap); goto put_node; @@ -1388,9 +1389,9 @@ edge->name = node->name; irq = irq_of_parse_and_map(node, 0); - if (irq < 0) { + if (!irq) { dev_err(dev, "required smd interrupt missing\n"); - ret = irq; + ret = -EINVAL; goto put_node; } diff -u linux-azure-5.4.0/drivers/rpmsg/rpmsg_char.c linux-azure-5.4.0/drivers/rpmsg/rpmsg_char.c --- linux-azure-5.4.0/drivers/rpmsg/rpmsg_char.c +++ linux-azure-5.4.0/drivers/rpmsg/rpmsg_char.c @@ -92,7 +92,7 @@ /* wake up any blocked readers */ wake_up_interruptible(&eptdev->readq); - device_del(&eptdev->dev); + cdev_device_del(&eptdev->cdev, &eptdev->dev); put_device(&eptdev->dev); return 0; @@ -336,7 +336,6 @@ ida_simple_remove(&rpmsg_ept_ida, dev->id); ida_simple_remove(&rpmsg_minor_ida, MINOR(eptdev->dev.devt)); - cdev_del(&eptdev->cdev); kfree(eptdev); } @@ -381,19 +380,13 @@ dev->id = ret; dev_set_name(dev, "rpmsg%d", ret); - ret = cdev_add(&eptdev->cdev, dev->devt, 1); + ret = cdev_device_add(&eptdev->cdev, &eptdev->dev); if (ret) goto free_ept_ida; /* We can now rely on the release function for cleanup */ dev->release = rpmsg_eptdev_release_device; - ret = device_add(dev); - if (ret) { - dev_err(dev, "device_add failed: %d\n", ret); - put_device(dev); - } - return ret; free_ept_ida: @@ -462,7 +455,6 @@ ida_simple_remove(&rpmsg_ctrl_ida, dev->id); ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt)); - cdev_del(&ctrldev->cdev); kfree(ctrldev); } @@ -497,19 +489,13 @@ dev->id = ret; dev_set_name(&ctrldev->dev, "rpmsg_ctrl%d", ret); - ret = cdev_add(&ctrldev->cdev, dev->devt, 1); + ret = cdev_device_add(&ctrldev->cdev, &ctrldev->dev); if (ret) goto free_ctrl_ida; /* We can now rely on the release function for cleanup */ dev->release = rpmsg_ctrldev_release_device; - ret = device_add(dev); - if (ret) { - dev_err(&rpdev->dev, "device_add failed: %d\n", ret); - put_device(dev); - } - dev_set_drvdata(&rpdev->dev, ctrldev); return ret; @@ -535,7 +521,7 @@ if (ret) dev_warn(&rpdev->dev, "failed to nuke endpoints: %d\n", ret); - device_del(&ctrldev->dev); + cdev_device_del(&ctrldev->cdev, &ctrldev->dev); put_device(&ctrldev->dev); } diff -u linux-azure-5.4.0/drivers/rtc/Kconfig linux-azure-5.4.0/drivers/rtc/Kconfig --- linux-azure-5.4.0/drivers/rtc/Kconfig +++ linux-azure-5.4.0/drivers/rtc/Kconfig @@ -634,6 +634,7 @@ config RTC_DRV_RX8010 tristate "Epson RX8010SJ" + select REGMAP_I2C help If you say yes here you get support for the Epson RX8010SJ RTC chip. diff -u linux-azure-5.4.0/drivers/rtc/interface.c linux-azure-5.4.0/drivers/rtc/interface.c --- linux-azure-5.4.0/drivers/rtc/interface.c +++ linux-azure-5.4.0/drivers/rtc/interface.c @@ -793,9 +793,13 @@ struct timerqueue_node *next = timerqueue_getnext(&rtc->timerqueue); struct rtc_time tm; ktime_t now; + int err; + + err = __rtc_read_time(rtc, &tm); + if (err) + return err; timer->enabled = 1; - __rtc_read_time(rtc, &tm); now = rtc_tm_to_ktime(tm); /* Skip over expired timers */ @@ -809,7 +813,6 @@ trace_rtc_timer_enqueue(timer); if (!next || ktime_before(timer->node.expires, next->expires)) { struct rtc_wkalrm alarm; - int err; alarm.time = rtc_ktime_to_tm(timer->node.expires); alarm.enabled = 1; diff -u linux-azure-5.4.0/drivers/rtc/rtc-cmos.c linux-azure-5.4.0/drivers/rtc/rtc-cmos.c --- linux-azure-5.4.0/drivers/rtc/rtc-cmos.c +++ linux-azure-5.4.0/drivers/rtc/rtc-cmos.c @@ -463,7 +463,10 @@ min = t->time.tm_min; sec = t->time.tm_sec; + spin_lock_irq(&rtc_lock); rtc_control = CMOS_READ(RTC_CONTROL); + spin_unlock_irq(&rtc_lock); + if (!(rtc_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { /* Writing 0xff means "don't care" or "match all". */ mon = (mon <= 12) ? bin2bcd(mon) : 0xff; diff -u linux-azure-5.4.0/drivers/rtc/rtc-mt6397.c linux-azure-5.4.0/drivers/rtc/rtc-mt6397.c --- linux-azure-5.4.0/drivers/rtc/rtc-mt6397.c +++ linux-azure-5.4.0/drivers/rtc/rtc-mt6397.c @@ -331,6 +331,8 @@ return -ENOMEM; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) + return -EINVAL; rtc->addr_base = res->start; rtc->irq = platform_get_irq(pdev, 0); diff -u linux-azure-5.4.0/drivers/s390/block/dasd.c linux-azure-5.4.0/drivers/s390/block/dasd.c --- linux-azure-5.4.0/drivers/s390/block/dasd.c +++ linux-azure-5.4.0/drivers/s390/block/dasd.c @@ -1462,6 +1462,13 @@ if (!cqr->lpm) cqr->lpm = dasd_path_get_opm(device); } + /* + * remember the amount of formatted tracks to prevent double format on + * ESE devices + */ + if (cqr->block) + cqr->trkcount = atomic_read(&cqr->block->trkcount); + if (cqr->cpmode == 1) { rc = ccw_device_tm_start(device->cdev, cqr->cpaddr, (long) cqr, cqr->lpm); @@ -1680,6 +1687,7 @@ unsigned long now; int nrf_suppressed = 0; int fp_suppressed = 0; + struct request *req; u8 *sense = NULL; int expires; @@ -1780,7 +1788,12 @@ } if (dasd_ese_needs_format(cqr->block, irb)) { - if (rq_data_dir((struct request *)cqr->callback_data) == READ) { + req = dasd_get_callback_data(cqr); + if (!req) { + cqr->status = DASD_CQR_ERROR; + return; + } + if (rq_data_dir(req) == READ) { device->discipline->ese_read(cqr, irb); cqr->status = DASD_CQR_SUCCESS; cqr->stopclk = now; @@ -2799,10 +2812,9 @@ * complete a request partially. */ if (proc_bytes) { - blk_update_request(req, BLK_STS_OK, - blk_rq_bytes(req) - proc_bytes); + blk_update_request(req, BLK_STS_OK, proc_bytes); blk_mq_requeue_request(req, true); - } else { + } else if (likely(!blk_should_fake_timeout(req->q))) { blk_mq_complete_request(req); } } diff -u linux-azure-5.4.0/drivers/s390/block/dasd_alias.c linux-azure-5.4.0/drivers/s390/block/dasd_alias.c --- linux-azure-5.4.0/drivers/s390/block/dasd_alias.c +++ linux-azure-5.4.0/drivers/s390/block/dasd_alias.c @@ -675,12 +675,12 @@ struct dasd_device *dasd_alias_get_start_dev(struct dasd_device *base_device) { struct dasd_eckd_private *alias_priv, *private = base_device->private; - struct alias_pav_group *group = private->pavgroup; struct alias_lcu *lcu = private->lcu; struct dasd_device *alias_device; + struct alias_pav_group *group; unsigned long flags; - if (!group || !lcu) + if (!lcu) return NULL; if (lcu->pav == NO_PAV || lcu->flags & (NEED_UAC_UPDATE | UPDATE_PENDING)) @@ -697,6 +697,11 @@ } spin_lock_irqsave(&lcu->lock, flags); + group = private->pavgroup; + if (!group) { + spin_unlock_irqrestore(&lcu->lock, flags); + return NULL; + } alias_device = group->next; if (!alias_device) { if (list_empty(&group->aliaslist)) { diff -u linux-azure-5.4.0/drivers/s390/block/dasd_diag.c linux-azure-5.4.0/drivers/s390/block/dasd_diag.c --- linux-azure-5.4.0/drivers/s390/block/dasd_diag.c +++ linux-azure-5.4.0/drivers/s390/block/dasd_diag.c @@ -58,7 +58,7 @@ struct dasd_diag_req { unsigned int block_count; - struct dasd_diag_bio bio[0]; + struct dasd_diag_bio bio[]; }; static const u8 DASD_DIAG_CMS1[] = { 0xc3, 0xd4, 0xe2, 0xf1 };/* EBCDIC CMS1 */ diff -u linux-azure-5.4.0/drivers/s390/block/dasd_eckd.c linux-azure-5.4.0/drivers/s390/block/dasd_eckd.c --- linux-azure-5.4.0/drivers/s390/block/dasd_eckd.c +++ linux-azure-5.4.0/drivers/s390/block/dasd_eckd.c @@ -3026,13 +3026,24 @@ } static bool test_and_set_format_track(struct dasd_format_entry *to_format, - struct dasd_block *block) + struct dasd_ccw_req *cqr) { + struct dasd_block *block = cqr->block; struct dasd_format_entry *format; unsigned long flags; bool rc = false; spin_lock_irqsave(&block->format_lock, flags); + if (cqr->trkcount != atomic_read(&block->trkcount)) { + /* + * The number of formatted tracks has changed after request + * start and we can not tell if the current track was involved. + * To avoid data corruption treat it as if the current track is + * involved + */ + rc = true; + goto out; + } list_for_each_entry(format, &block->format_list, list) { if (format->track == to_format->track) { rc = true; @@ -3052,6 +3063,7 @@ unsigned long flags; spin_lock_irqsave(&block->format_lock, flags); + atomic_inc(&block->trkcount); list_del_init(&format->list); spin_unlock_irqrestore(&block->format_lock, flags); } @@ -3088,7 +3100,7 @@ sector_t curr_trk; int rc; - req = cqr->callback_data; + req = dasd_get_callback_data(cqr); block = cqr->block; base = block->base; private = base->private; @@ -3113,8 +3125,11 @@ } format->track = curr_trk; /* test if track is already in formatting by another thread */ - if (test_and_set_format_track(format, block)) + if (test_and_set_format_track(format, cqr)) { + /* this is no real error so do not count down retries */ + cqr->retries++; return ERR_PTR(-EEXIST); + } fdata.start_unit = curr_trk; fdata.stop_unit = curr_trk; @@ -3213,12 +3228,11 @@ cqr->proc_bytes = blk_count * blksize; return 0; } - if (dst && !skip_block) { - dst += off; + if (dst && !skip_block) memset(dst, 0, blksize); - } else { + else skip_block--; - } + dst += blksize; blk_count++; } } diff -u linux-azure-5.4.0/drivers/s390/block/dasd_int.h linux-azure-5.4.0/drivers/s390/block/dasd_int.h --- linux-azure-5.4.0/drivers/s390/block/dasd_int.h +++ linux-azure-5.4.0/drivers/s390/block/dasd_int.h @@ -188,6 +188,7 @@ void (*callback)(struct dasd_ccw_req *, void *data); void *callback_data; unsigned int proc_bytes; /* bytes for partial completion */ + unsigned int trkcount; /* count formatted tracks */ }; /* @@ -575,6 +576,7 @@ struct list_head format_list; spinlock_t format_lock; + atomic_t trkcount; }; struct dasd_attention_data { @@ -723,6 +725,18 @@ return 0; } +/* + * return the callback data of the original request in case there are + * ERP requests build on top of it + */ +static inline void *dasd_get_callback_data(struct dasd_ccw_req *cqr) +{ + while (cqr->refers) + cqr = cqr->refers; + + return cqr->callback_data; +} + /* externals in dasd.c */ #define DASD_PROFILE_OFF 0 #define DASD_PROFILE_ON 1 diff -u linux-azure-5.4.0/drivers/s390/cio/css.c linux-azure-5.4.0/drivers/s390/cio/css.c --- linux-azure-5.4.0/drivers/s390/cio/css.c +++ linux-azure-5.4.0/drivers/s390/cio/css.c @@ -426,9 +426,26 @@ } static DEVICE_ATTR_RO(pimpampom); +static ssize_t dev_busid_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct subchannel *sch = to_subchannel(dev); + struct pmcw *pmcw = &sch->schib.pmcw; + + if ((pmcw->st == SUBCHANNEL_TYPE_IO && pmcw->dnv) || + (pmcw->st == SUBCHANNEL_TYPE_MSG && pmcw->w)) + return sysfs_emit(buf, "0.%x.%04x\n", sch->schid.ssid, + pmcw->dev); + else + return sysfs_emit(buf, "none\n"); +} +static DEVICE_ATTR_RO(dev_busid); + static struct attribute *io_subchannel_type_attrs[] = { &dev_attr_chpids.attr, &dev_attr_pimpampom.attr, + &dev_attr_dev_busid.attr, NULL, }; ATTRIBUTE_GROUPS(io_subchannel_type); diff -u linux-azure-5.4.0/drivers/s390/cio/device_ops.c linux-azure-5.4.0/drivers/s390/cio/device_ops.c --- linux-azure-5.4.0/drivers/s390/cio/device_ops.c +++ linux-azure-5.4.0/drivers/s390/cio/device_ops.c @@ -717,13 +717,23 @@ */ void *ccw_device_dma_zalloc(struct ccw_device *cdev, size_t size) { - return cio_gp_dma_zalloc(cdev->private->dma_pool, &cdev->dev, size); + void *addr; + + if (!get_device(&cdev->dev)) + return NULL; + addr = cio_gp_dma_zalloc(cdev->private->dma_pool, &cdev->dev, size); + if (IS_ERR_OR_NULL(addr)) + put_device(&cdev->dev); + return addr; } EXPORT_SYMBOL(ccw_device_dma_zalloc); void ccw_device_dma_free(struct ccw_device *cdev, void *cpu_addr, size_t size) { + if (!cpu_addr) + return; cio_gp_dma_free(cdev->private->dma_pool, cpu_addr, size); + put_device(&cdev->dev); } EXPORT_SYMBOL(ccw_device_dma_free); diff -u linux-azure-5.4.0/drivers/s390/cio/vfio_ccw_drv.c linux-azure-5.4.0/drivers/s390/cio/vfio_ccw_drv.c --- linux-azure-5.4.0/drivers/s390/cio/vfio_ccw_drv.c +++ linux-azure-5.4.0/drivers/s390/cio/vfio_ccw_drv.c @@ -83,6 +83,7 @@ struct vfio_ccw_private *private; struct irb *irb; bool is_final; + bool cp_is_finished = false; private = container_of(work, struct vfio_ccw_private, io_work); irb = &private->irb; @@ -91,14 +92,21 @@ (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT)); if (scsw_is_solicited(&irb->scsw)) { cp_update_scsw(&private->cp, &irb->scsw); - if (is_final && private->state == VFIO_CCW_STATE_CP_PENDING) + if (is_final && private->state == VFIO_CCW_STATE_CP_PENDING) { cp_free(&private->cp); + cp_is_finished = true; + } } mutex_lock(&private->io_mutex); memcpy(private->io_region->irb_area, irb, sizeof(*irb)); mutex_unlock(&private->io_mutex); - if (private->mdev && is_final) + /* + * Reset to IDLE only if processing of a channel program + * has finished. Do not overwrite a possible processing + * state if the final interrupt was for HSCH or CSCH. + */ + if (private->mdev && cp_is_finished) private->state = VFIO_CCW_STATE_IDLE; if (private->io_trigger) @@ -239,19 +247,11 @@ if (work_pending(&sch->todo_work)) goto out_unlock; - if (cio_update_schib(sch)) { - vfio_ccw_fsm_event(private, VFIO_CCW_EVENT_NOT_OPER); - rc = 0; - goto out_unlock; - } - - private = dev_get_drvdata(&sch->dev); - if (private->state == VFIO_CCW_STATE_NOT_OPER) { - private->state = private->mdev ? VFIO_CCW_STATE_IDLE : - VFIO_CCW_STATE_STANDBY; - } rc = 0; + if (cio_update_schib(sch)) + vfio_ccw_fsm_event(private, VFIO_CCW_EVENT_NOT_OPER); + out_unlock: spin_unlock_irqrestore(sch->lock, flags); diff -u linux-azure-5.4.0/drivers/s390/crypto/ap_bus.c linux-azure-5.4.0/drivers/s390/crypto/ap_bus.c --- linux-azure-5.4.0/drivers/s390/crypto/ap_bus.c +++ linux-azure-5.4.0/drivers/s390/crypto/ap_bus.c @@ -18,13 +18,13 @@ #include #include #include +#include #include #include #include #include #include #include -#include #include #include #include @@ -60,10 +60,15 @@ module_param_named(aqmask, aqm_str, charp, 0440); MODULE_PARM_DESC(aqmask, "AP bus domain mask."); +atomic_t ap_max_msg_size = ATOMIC_INIT(AP_DEFAULT_MAX_MSG_SIZE); +EXPORT_SYMBOL(ap_max_msg_size); + static struct device *ap_root_device; -DEFINE_SPINLOCK(ap_list_lock); -LIST_HEAD(ap_card_list); +/* Hashtable of all queue devices on the AP bus */ +DEFINE_HASHTABLE(ap_queues, 8); +/* lock used for the ap_queues hashtable */ +DEFINE_SPINLOCK(ap_queues_lock); /* Default permissions (ioctl, card and domain masking) */ struct ap_perms ap_perms; @@ -71,8 +76,7 @@ DEFINE_MUTEX(ap_perms_mutex); EXPORT_SYMBOL(ap_perms_mutex); -static struct ap_config_info *ap_configuration; -static bool initialised; +static struct ap_config_info *ap_qci_info; /* * AP bus related debug feature things. @@ -103,16 +107,11 @@ */ static unsigned long long poll_timeout = 250000; -/* Suspend flag */ -static int ap_suspend_flag; -/* Maximum domain id */ -static int ap_max_domain_id; -/* - * Flag to check if domain was set through module parameter domain=. This is - * important when supsend and resume is done in a z/VM environment where the - * domain might change. - */ -static int user_set_domain; +/* Maximum domain id, if not given via qci */ +static int ap_max_domain_id = 15; +/* Maximum adapter id, if not given via qci */ +static int ap_max_adapter_id = 63; + static struct bus_type ap_bus_type; /* Adapter interrupt definitions */ @@ -159,12 +158,12 @@ } /** - * ap_configuration_available(): Test if AP configuration - * information is available. + * ap_qci_available(): Test if AP configuration + * information can be queried via QCI subfunction. * - * Returns 1 if AP configuration information is available. + * Returns 1 if subfunction PQAP(QCI) is available. */ -static int ap_configuration_available(void) +static int ap_qci_available(void) { return test_facility(12); } @@ -187,22 +186,22 @@ */ static inline int ap_qact_available(void) { - if (ap_configuration) - return ap_configuration->qact; + if (ap_qci_info) + return ap_qci_info->qact; return 0; } /* - * ap_query_configuration(): Fetch cryptographic config info + * ap_fetch_qci_info(): Fetch cryptographic config info * * Returns the ap configuration info fetched via PQAP(QCI). * On success 0 is returned, on failure a negative errno * is returned, e.g. if the PQAP(QCI) instruction is not * available, the return value will be -EOPNOTSUPP. */ -static inline int ap_query_configuration(struct ap_config_info *info) +static inline int ap_fetch_qci_info(struct ap_config_info *info) { - if (!ap_configuration_available()) + if (!ap_qci_available()) return -EOPNOTSUPP; if (!info) return -EINVAL; @@ -210,21 +209,40 @@ } /** - * ap_init_configuration(): Allocate and query configuration array. + * ap_init_qci_info(): Allocate and query qci config info. + * Does also update the static variables ap_max_domain_id + * and ap_max_adapter_id if this info is available. + */ -static void ap_init_configuration(void) +static void __init ap_init_qci_info(void) { - if (!ap_configuration_available()) + if (!ap_qci_available()) { + AP_DBF_INFO("%s QCI not supported\n", __func__); return; + } - ap_configuration = kzalloc(sizeof(*ap_configuration), GFP_KERNEL); - if (!ap_configuration) + ap_qci_info = kzalloc(sizeof(*ap_qci_info), GFP_KERNEL); + if (!ap_qci_info) return; - if (ap_query_configuration(ap_configuration) != 0) { - kfree(ap_configuration); - ap_configuration = NULL; + if (ap_fetch_qci_info(ap_qci_info) != 0) { + kfree(ap_qci_info); + ap_qci_info = NULL; return; } + AP_DBF_INFO("%s successful fetched initial qci info\n", __func__); + + if (ap_qci_info->apxa) { + if (ap_qci_info->Na) { + ap_max_adapter_id = ap_qci_info->Na; + AP_DBF_INFO("%s new ap_max_adapter_id is %d\n", + __func__, ap_max_adapter_id); + } + if (ap_qci_info->Nd) { + ap_max_domain_id = ap_qci_info->Nd; + AP_DBF_INFO("%s new ap_max_domain_id is %d\n", + __func__, ap_max_domain_id); + } + } } /* @@ -238,7 +256,6 @@ /* * ap_test_config_card_id(): Test, whether an AP card ID is configured. - * @id AP card ID * * Returns 0 if the card is not configured * 1 if the card is configured or @@ -246,16 +263,16 @@ */ static inline int ap_test_config_card_id(unsigned int id) { - if (!ap_configuration) /* QCI not supported */ - /* only ids 0...3F may be probed */ - return id < 0x40 ? 1 : 0; - return ap_test_config(ap_configuration->apm, id); + if (id > ap_max_adapter_id) + return 0; + if (ap_qci_info) + return ap_test_config(ap_qci_info->apm, id); + return 1; } /* * ap_test_config_usage_domain(): Test, whether an AP usage domain * is configured. - * @domain AP usage domain ID * * Returns 0 if the usage domain is not configured * 1 if the usage domain is configured or @@ -263,9 +280,11 @@ */ int ap_test_config_usage_domain(unsigned int domain) { - if (!ap_configuration) /* QCI not supported */ - return domain < 16; - return ap_test_config(ap_configuration->aqm, domain); + if (domain > ap_max_domain_id) + return 0; + if (ap_qci_info) + return ap_test_config(ap_qci_info->aqm, domain); + return 1; } EXPORT_SYMBOL(ap_test_config_usage_domain); @@ -279,43 +298,62 @@ */ int ap_test_config_ctrl_domain(unsigned int domain) { - if (!ap_configuration) /* QCI not supported */ + if (!ap_qci_info || domain > ap_max_domain_id) return 0; - return ap_test_config(ap_configuration->adm, domain); + return ap_test_config(ap_qci_info->adm, domain); } EXPORT_SYMBOL(ap_test_config_ctrl_domain); -/** - * ap_query_queue(): Check if an AP queue is available. - * @qid: The AP queue number - * @queue_depth: Pointer to queue depth value - * @device_type: Pointer to device type value - * @facilities: Pointer to facility indicator +/* + * ap_queue_info(): Check and get AP queue info. + * Returns true if TAPQ succeeded and the info is filled or + * false otherwise. */ -static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type, - unsigned int *facilities) +static bool ap_queue_info(ap_qid_t qid, int *q_type, unsigned int *q_fac, + int *q_depth, int *q_ml, bool *q_decfg) { struct ap_queue_status status; - unsigned long info; - int nd; + union { + unsigned long value; + struct { + unsigned int fac : 32; /* facility bits */ + unsigned int at : 8; /* ap type */ + unsigned int _res1 : 8; + unsigned int _res2 : 4; + unsigned int ml : 4; /* apxl ml */ + unsigned int _res3 : 4; + unsigned int qd : 4; /* queue depth */ + } tapq_gr2; + } tapq_info; + + tapq_info.value = 0; + + /* make sure we don't run into a specifiation exception */ + if (AP_QID_CARD(qid) > ap_max_adapter_id || + AP_QID_QUEUE(qid) > ap_max_domain_id) + return false; - if (!ap_test_config_card_id(AP_QID_CARD(qid))) - return -ENODEV; - - status = ap_test_queue(qid, ap_apft_available(), &info); + /* call TAPQ on this APQN */ + status = ap_test_queue(qid, ap_apft_available(), &tapq_info.value); switch (status.response_code) { case AP_RESPONSE_NORMAL: - *queue_depth = (int)(info & 0xff); - *device_type = (int)((info >> 24) & 0xff); - *facilities = (unsigned int)(info >> 32); - /* Update maximum domain id */ - nd = (info >> 16) & 0xff; - /* if N bit is available, z13 and newer */ - if ((info & (1UL << 57)) && nd > 0) - ap_max_domain_id = nd; - else /* older machine types */ - ap_max_domain_id = 15; - switch (*device_type) { + case AP_RESPONSE_RESET_IN_PROGRESS: + case AP_RESPONSE_DECONFIGURED: + case AP_RESPONSE_CHECKSTOPPED: + case AP_RESPONSE_BUSY: + /* + * According to the architecture in all these cases the + * info should be filled. All bits 0 is not possible as + * there is at least one of the mode bits set. + */ + if (WARN_ON_ONCE(!tapq_info.value)) + return false; + *q_type = tapq_info.tapq_gr2.at; + *q_fac = tapq_info.tapq_gr2.fac; + *q_depth = tapq_info.tapq_gr2.qd; + *q_ml = tapq_info.tapq_gr2.ml; + *q_decfg = status.response_code == AP_RESPONSE_DECONFIGURED; + switch (*q_type) { /* For CEX2 and CEX3 the available functions * are not reflected by the facilities bits. * Instead it is coded into the type. So here @@ -323,45 +361,39 @@ */ case AP_DEVICE_TYPE_CEX2A: case AP_DEVICE_TYPE_CEX3A: - *facilities |= 0x08000000; + *q_fac |= 0x08000000; break; case AP_DEVICE_TYPE_CEX2C: case AP_DEVICE_TYPE_CEX3C: - *facilities |= 0x10000000; + *q_fac |= 0x10000000; break; default: break; } - return 0; - case AP_RESPONSE_Q_NOT_AVAIL: - case AP_RESPONSE_DECONFIGURED: - case AP_RESPONSE_CHECKSTOPPED: - case AP_RESPONSE_INVALID_ADDRESS: - return -ENODEV; - case AP_RESPONSE_RESET_IN_PROGRESS: - case AP_RESPONSE_OTHERWISE_CHANGED: - case AP_RESPONSE_BUSY: - return -EBUSY; + return true; default: - BUG(); + /* + * A response code which indicates, there is no info available. + */ + return false; } } -void ap_wait(enum ap_wait wait) +void ap_wait(enum ap_sm_wait wait) { ktime_t hr_time; switch (wait) { - case AP_WAIT_AGAIN: - case AP_WAIT_INTERRUPT: + case AP_SM_WAIT_AGAIN: + case AP_SM_WAIT_INTERRUPT: if (ap_using_interrupts()) break; if (ap_poll_kthread) { wake_up(&ap_poll_wait); break; } - /* Fall through */ - case AP_WAIT_TIMEOUT: + fallthrough; + case AP_SM_WAIT_TIMEOUT: spin_lock_bh(&ap_poll_timer_lock); if (!hrtimer_is_queued(&ap_poll_timer)) { hr_time = poll_timeout; @@ -370,7 +402,7 @@ } spin_unlock_bh(&ap_poll_timer_lock); break; - case AP_WAIT_NONE: + case AP_SM_WAIT_NONE: default: break; } @@ -386,10 +418,8 @@ { struct ap_queue *aq = from_timer(aq, t, timeout); - if (ap_suspend_flag) - return; spin_lock_bh(&aq->lock); - ap_wait(ap_sm_event(aq, AP_EVENT_TIMEOUT)); + ap_wait(ap_sm_event(aq, AP_SM_EVENT_TIMEOUT)); spin_unlock_bh(&aq->lock); } @@ -401,8 +431,7 @@ */ static enum hrtimer_restart ap_poll_timeout(struct hrtimer *unused) { - if (!ap_suspend_flag) - tasklet_schedule(&ap_tasklet); + tasklet_schedule(&ap_tasklet); return HRTIMER_NORESTART; } @@ -413,8 +442,7 @@ static void ap_interrupt_handler(struct airq_struct *airq, bool floating) { inc_irq_stat(IRQIO_APB); - if (!ap_suspend_flag) - tasklet_schedule(&ap_tasklet); + tasklet_schedule(&ap_tasklet); } /** @@ -425,9 +453,9 @@ */ static void ap_tasklet_fn(unsigned long dummy) { - struct ap_card *ac; + int bkt; struct ap_queue *aq; - enum ap_wait wait = AP_WAIT_NONE; + enum ap_sm_wait wait = AP_SM_WAIT_NONE; /* Reset the indicator if interrupts are used. Thus new interrupts can * be received. Doing it in the beginning of the tasklet is therefor @@ -436,34 +464,30 @@ if (ap_using_interrupts()) xchg(ap_airq.lsi_ptr, 0); - spin_lock_bh(&ap_list_lock); - for_each_ap_card(ac) { - for_each_ap_queue(aq, ac) { - spin_lock_bh(&aq->lock); - wait = min(wait, ap_sm_event_loop(aq, AP_EVENT_POLL)); - spin_unlock_bh(&aq->lock); - } + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) { + spin_lock_bh(&aq->lock); + wait = min(wait, ap_sm_event_loop(aq, AP_SM_EVENT_POLL)); + spin_unlock_bh(&aq->lock); } - spin_unlock_bh(&ap_list_lock); + spin_unlock_bh(&ap_queues_lock); ap_wait(wait); } static int ap_pending_requests(void) { - struct ap_card *ac; + int bkt; struct ap_queue *aq; - spin_lock_bh(&ap_list_lock); - for_each_ap_card(ac) { - for_each_ap_queue(aq, ac) { - if (aq->queue_count == 0) - continue; - spin_unlock_bh(&ap_list_lock); - return 1; - } + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) { + if (aq->queue_count == 0) + continue; + spin_unlock_bh(&ap_queues_lock); + return 1; } - spin_unlock_bh(&ap_list_lock); + spin_unlock_bh(&ap_queues_lock); return 0; } @@ -486,7 +510,7 @@ while (!kthread_should_stop()) { add_wait_queue(&ap_poll_wait, &wait); set_current_state(TASK_INTERRUPTIBLE); - if (ap_suspend_flag || !ap_pending_requests()) { + if (!ap_pending_requests()) { schedule(); try_to_freeze(); } @@ -587,51 +611,6 @@ return retval; } -static int ap_dev_suspend(struct device *dev) -{ - struct ap_device *ap_dev = to_ap_dev(dev); - - if (ap_dev->drv && ap_dev->drv->suspend) - ap_dev->drv->suspend(ap_dev); - return 0; -} - -static int ap_dev_resume(struct device *dev) -{ - struct ap_device *ap_dev = to_ap_dev(dev); - - if (ap_dev->drv && ap_dev->drv->resume) - ap_dev->drv->resume(ap_dev); - return 0; -} - -static void ap_bus_suspend(void) -{ - AP_DBF(DBF_DEBUG, "%s running\n", __func__); - - ap_suspend_flag = 1; - /* - * Disable scanning for devices, thus we do not want to scan - * for them after removing. - */ - flush_work(&ap_scan_work); - tasklet_disable(&ap_tasklet); -} - -static int __ap_card_devices_unregister(struct device *dev, void *dummy) -{ - if (is_card_dev(dev)) - device_unregister(dev); - return 0; -} - -static int __ap_queue_devices_unregister(struct device *dev, void *dummy) -{ - if (is_queue_dev(dev)) - device_unregister(dev); - return 0; -} - static int __ap_queue_devices_with_id_unregister(struct device *dev, void *data) { if (is_queue_dev(dev) && @@ -640,67 +619,10 @@ return 0; } -static void ap_bus_resume(void) -{ - int rc; - - AP_DBF(DBF_DEBUG, "%s running\n", __func__); - - /* remove all queue devices */ - bus_for_each_dev(&ap_bus_type, NULL, NULL, - __ap_queue_devices_unregister); - /* remove all card devices */ - bus_for_each_dev(&ap_bus_type, NULL, NULL, - __ap_card_devices_unregister); - - /* Reset thin interrupt setting */ - if (ap_interrupts_available() && !ap_using_interrupts()) { - rc = register_adapter_interrupt(&ap_airq); - ap_airq_flag = (rc == 0); - } - if (!ap_interrupts_available() && ap_using_interrupts()) { - unregister_adapter_interrupt(&ap_airq); - ap_airq_flag = 0; - } - /* Reset domain */ - if (!user_set_domain) - ap_domain_index = -1; - /* Get things going again */ - ap_suspend_flag = 0; - if (ap_airq_flag) - xchg(ap_airq.lsi_ptr, 0); - tasklet_enable(&ap_tasklet); - queue_work(system_long_wq, &ap_scan_work); -} - -static int ap_power_event(struct notifier_block *this, unsigned long event, - void *ptr) -{ - switch (event) { - case PM_HIBERNATION_PREPARE: - case PM_SUSPEND_PREPARE: - ap_bus_suspend(); - break; - case PM_POST_HIBERNATION: - case PM_POST_SUSPEND: - ap_bus_resume(); - break; - default: - break; - } - return NOTIFY_DONE; -} -static struct notifier_block ap_power_notifier = { - .notifier_call = ap_power_event, -}; - -static SIMPLE_DEV_PM_OPS(ap_bus_pm_ops, ap_dev_suspend, ap_dev_resume); - static struct bus_type ap_bus_type = { .name = "ap", .match = &ap_bus_match, .uevent = &ap_uevent, - .pm = &ap_bus_pm_ops, }; static int __ap_revise_reserved(struct device *dev, void *dummy) @@ -717,8 +639,8 @@ drvres = to_ap_drv(dev->driver)->flags & AP_DRIVER_FLAG_DEFAULT; if (!!devres != !!drvres) { - AP_DBF(DBF_DEBUG, "reprobing queue=%02x.%04x\n", - card, queue); + AP_DBF_DBG("reprobing queue=%02x.%04x\n", + card, queue); rc = device_reprobe(dev); } } @@ -775,7 +697,10 @@ { struct ap_device *ap_dev = to_ap_dev(dev); struct ap_driver *ap_drv = to_ap_drv(dev->driver); - int card, queue, devres, drvres, rc; + int card, queue, devres, drvres, rc = -ENODEV; + + if (!get_device(dev)) + return rc; if (is_queue_dev(dev)) { /* @@ -792,31 +717,30 @@ mutex_unlock(&ap_perms_mutex); drvres = ap_drv->flags & AP_DRIVER_FLAG_DEFAULT; if (!!devres != !!drvres) - return -ENODEV; + goto out; } /* Add queue/card to list of active queues/cards */ - spin_lock_bh(&ap_list_lock); - if (is_card_dev(dev)) - list_add(&to_ap_card(dev)->list, &ap_card_list); - else - list_add(&to_ap_queue(dev)->list, - &to_ap_queue(dev)->card->queues); - spin_unlock_bh(&ap_list_lock); + spin_lock_bh(&ap_queues_lock); + if (is_queue_dev(dev)) + hash_add(ap_queues, &to_ap_queue(dev)->hnode, + to_ap_queue(dev)->qid); + spin_unlock_bh(&ap_queues_lock); ap_dev->drv = ap_drv; rc = ap_drv->probe ? ap_drv->probe(ap_dev) : -ENODEV; if (rc) { - spin_lock_bh(&ap_list_lock); - if (is_card_dev(dev)) - list_del_init(&to_ap_card(dev)->list); - else - list_del_init(&to_ap_queue(dev)->list); - spin_unlock_bh(&ap_list_lock); + spin_lock_bh(&ap_queues_lock); + if (is_queue_dev(dev)) + hash_del(&to_ap_queue(dev)->hnode); + spin_unlock_bh(&ap_queues_lock); ap_dev->drv = NULL; } +out: + if (rc) + put_device(dev); return rc; } @@ -838,24 +762,40 @@ ap_queue_remove(to_ap_queue(dev)); /* Remove queue/card from list of active queues/cards */ - spin_lock_bh(&ap_list_lock); - if (is_card_dev(dev)) - list_del_init(&to_ap_card(dev)->list); - else - list_del_init(&to_ap_queue(dev)->list); - spin_unlock_bh(&ap_list_lock); + spin_lock_bh(&ap_queues_lock); + if (is_queue_dev(dev)) + hash_del(&to_ap_queue(dev)->hnode); + spin_unlock_bh(&ap_queues_lock); + + put_device(dev); return 0; } +struct ap_queue *ap_get_qdev(ap_qid_t qid) +{ + int bkt; + struct ap_queue *aq; + + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) { + if (aq->qid == qid) { + get_device(&aq->ap_dev.device); + spin_unlock_bh(&ap_queues_lock); + return aq; + } + } + spin_unlock_bh(&ap_queues_lock); + + return NULL; +} +EXPORT_SYMBOL(ap_get_qdev); + int ap_driver_register(struct ap_driver *ap_drv, struct module *owner, char *name) { struct device_driver *drv = &ap_drv->driver; - if (!initialised) - return -ENODEV; - drv->bus = &ap_bus_type; drv->probe = ap_device_probe; drv->remove = ap_device_remove; @@ -873,8 +813,6 @@ void ap_bus_force_rescan(void) { - if (ap_suspend_flag) - return; /* processing a asynchronous bus rescan */ del_timer(&ap_config_timer); queue_work(system_long_wq, &ap_scan_work); @@ -887,7 +825,7 @@ */ void ap_bus_cfg_chg(void) { - AP_DBF(DBF_INFO, "%s config change, forcing bus rescan\n", __func__); + AP_DBF_DBG("%s config change, forcing bus rescan\n", __func__); ap_bus_force_rescan(); } @@ -1021,7 +959,7 @@ static ssize_t ap_domain_show(struct bus_type *bus, char *buf) { - return snprintf(buf, PAGE_SIZE, "%d\n", ap_domain_index); + return scnprintf(buf, PAGE_SIZE, "%d\n", ap_domain_index); } static ssize_t ap_domain_store(struct bus_type *bus, @@ -1033,11 +971,12 @@ domain < 0 || domain > ap_max_domain_id || !test_bit_inv(domain, ap_perms.aqm)) return -EINVAL; + spin_lock_bh(&ap_domain_lock); ap_domain_index = domain; spin_unlock_bh(&ap_domain_lock); - AP_DBF(DBF_DEBUG, "stored new default domain=%d\n", domain); + AP_DBF_INFO("stored new default domain=%d\n", domain); return count; } @@ -1046,60 +985,60 @@ static ssize_t ap_control_domain_mask_show(struct bus_type *bus, char *buf) { - if (!ap_configuration) /* QCI not supported */ - return snprintf(buf, PAGE_SIZE, "not supported\n"); + if (!ap_qci_info) /* QCI not supported */ + return scnprintf(buf, PAGE_SIZE, "not supported\n"); - return snprintf(buf, PAGE_SIZE, - "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", - ap_configuration->adm[0], ap_configuration->adm[1], - ap_configuration->adm[2], ap_configuration->adm[3], - ap_configuration->adm[4], ap_configuration->adm[5], - ap_configuration->adm[6], ap_configuration->adm[7]); + return scnprintf(buf, PAGE_SIZE, + "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", + ap_qci_info->adm[0], ap_qci_info->adm[1], + ap_qci_info->adm[2], ap_qci_info->adm[3], + ap_qci_info->adm[4], ap_qci_info->adm[5], + ap_qci_info->adm[6], ap_qci_info->adm[7]); } static BUS_ATTR_RO(ap_control_domain_mask); static ssize_t ap_usage_domain_mask_show(struct bus_type *bus, char *buf) { - if (!ap_configuration) /* QCI not supported */ - return snprintf(buf, PAGE_SIZE, "not supported\n"); + if (!ap_qci_info) /* QCI not supported */ + return scnprintf(buf, PAGE_SIZE, "not supported\n"); - return snprintf(buf, PAGE_SIZE, - "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", - ap_configuration->aqm[0], ap_configuration->aqm[1], - ap_configuration->aqm[2], ap_configuration->aqm[3], - ap_configuration->aqm[4], ap_configuration->aqm[5], - ap_configuration->aqm[6], ap_configuration->aqm[7]); + return scnprintf(buf, PAGE_SIZE, + "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", + ap_qci_info->aqm[0], ap_qci_info->aqm[1], + ap_qci_info->aqm[2], ap_qci_info->aqm[3], + ap_qci_info->aqm[4], ap_qci_info->aqm[5], + ap_qci_info->aqm[6], ap_qci_info->aqm[7]); } static BUS_ATTR_RO(ap_usage_domain_mask); static ssize_t ap_adapter_mask_show(struct bus_type *bus, char *buf) { - if (!ap_configuration) /* QCI not supported */ - return snprintf(buf, PAGE_SIZE, "not supported\n"); + if (!ap_qci_info) /* QCI not supported */ + return scnprintf(buf, PAGE_SIZE, "not supported\n"); - return snprintf(buf, PAGE_SIZE, - "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", - ap_configuration->apm[0], ap_configuration->apm[1], - ap_configuration->apm[2], ap_configuration->apm[3], - ap_configuration->apm[4], ap_configuration->apm[5], - ap_configuration->apm[6], ap_configuration->apm[7]); + return scnprintf(buf, PAGE_SIZE, + "0x%08x%08x%08x%08x%08x%08x%08x%08x\n", + ap_qci_info->apm[0], ap_qci_info->apm[1], + ap_qci_info->apm[2], ap_qci_info->apm[3], + ap_qci_info->apm[4], ap_qci_info->apm[5], + ap_qci_info->apm[6], ap_qci_info->apm[7]); } static BUS_ATTR_RO(ap_adapter_mask); static ssize_t ap_interrupts_show(struct bus_type *bus, char *buf) { - return snprintf(buf, PAGE_SIZE, "%d\n", - ap_using_interrupts() ? 1 : 0); + return scnprintf(buf, PAGE_SIZE, "%d\n", + ap_using_interrupts() ? 1 : 0); } static BUS_ATTR_RO(ap_interrupts); static ssize_t config_time_show(struct bus_type *bus, char *buf) { - return snprintf(buf, PAGE_SIZE, "%d\n", ap_config_time); + return scnprintf(buf, PAGE_SIZE, "%d\n", ap_config_time); } static ssize_t config_time_store(struct bus_type *bus, @@ -1118,7 +1057,7 @@ static ssize_t poll_thread_show(struct bus_type *bus, char *buf) { - return snprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0); + return scnprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0); } static ssize_t poll_thread_store(struct bus_type *bus, @@ -1141,7 +1080,7 @@ static ssize_t poll_timeout_show(struct bus_type *bus, char *buf) { - return snprintf(buf, PAGE_SIZE, "%llu\n", poll_timeout); + return scnprintf(buf, PAGE_SIZE, "%llu\n", poll_timeout); } static ssize_t poll_timeout_store(struct bus_type *bus, const char *buf, @@ -1170,27 +1109,28 @@ static ssize_t ap_max_domain_id_show(struct bus_type *bus, char *buf) { - int max_domain_id; - - if (ap_configuration) - max_domain_id = ap_max_domain_id ? : -1; - else - max_domain_id = 15; - return snprintf(buf, PAGE_SIZE, "%d\n", max_domain_id); + return scnprintf(buf, PAGE_SIZE, "%d\n", ap_max_domain_id); } static BUS_ATTR_RO(ap_max_domain_id); +static ssize_t ap_max_adapter_id_show(struct bus_type *bus, char *buf) +{ + return scnprintf(buf, PAGE_SIZE, "%d\n", ap_max_adapter_id); +} + +static BUS_ATTR_RO(ap_max_adapter_id); + static ssize_t apmask_show(struct bus_type *bus, char *buf) { int rc; if (mutex_lock_interruptible(&ap_perms_mutex)) return -ERESTARTSYS; - rc = snprintf(buf, PAGE_SIZE, - "0x%016lx%016lx%016lx%016lx\n", - ap_perms.apm[0], ap_perms.apm[1], - ap_perms.apm[2], ap_perms.apm[3]); + rc = scnprintf(buf, PAGE_SIZE, + "0x%016lx%016lx%016lx%016lx\n", + ap_perms.apm[0], ap_perms.apm[1], + ap_perms.apm[2], ap_perms.apm[3]); mutex_unlock(&ap_perms_mutex); return rc; @@ -1218,10 +1158,10 @@ if (mutex_lock_interruptible(&ap_perms_mutex)) return -ERESTARTSYS; - rc = snprintf(buf, PAGE_SIZE, - "0x%016lx%016lx%016lx%016lx\n", - ap_perms.aqm[0], ap_perms.aqm[1], - ap_perms.aqm[2], ap_perms.aqm[3]); + rc = scnprintf(buf, PAGE_SIZE, + "0x%016lx%016lx%016lx%016lx\n", + ap_perms.aqm[0], ap_perms.aqm[1], + ap_perms.aqm[2], ap_perms.aqm[3]); mutex_unlock(&ap_perms_mutex); return rc; @@ -1253,6 +1193,7 @@ &bus_attr_ap_interrupts, &bus_attr_poll_timeout, &bus_attr_ap_max_domain_id, + &bus_attr_ap_max_adapter_id, &bus_attr_apmask, &bus_attr_aqmask, NULL, @@ -1264,47 +1205,42 @@ */ static void ap_select_domain(void) { - int count, max_count, best_domain; struct ap_queue_status status; - int i, j; + int card, dom; /* - * We want to use a single domain. Either the one specified with - * the "domain=" parameter or the domain with the maximum number - * of devices. + * Choose the default domain. Either the one specified with + * the "domain=" parameter or the first domain with at least + * one valid APQN. */ spin_lock_bh(&ap_domain_lock); if (ap_domain_index >= 0) { /* Domain has already been selected. */ - spin_unlock_bh(&ap_domain_lock); - return; + goto out; } - best_domain = -1; - max_count = 0; - for (i = 0; i < AP_DOMAINS; i++) { - if (!ap_test_config_usage_domain(i) || - !test_bit_inv(i, ap_perms.aqm)) + for (dom = 0; dom <= ap_max_domain_id; dom++) { + if (!ap_test_config_usage_domain(dom) || + !test_bit_inv(dom, ap_perms.aqm)) continue; - count = 0; - for (j = 0; j < AP_DEVICES; j++) { - if (!ap_test_config_card_id(j)) + for (card = 0; card <= ap_max_adapter_id; card++) { + if (!ap_test_config_card_id(card) || + !test_bit_inv(card, ap_perms.apm)) continue; - status = ap_test_queue(AP_MKQID(j, i), + status = ap_test_queue(AP_MKQID(card, dom), ap_apft_available(), NULL); - if (status.response_code != AP_RESPONSE_NORMAL) - continue; - count++; - } - if (count > max_count) { - max_count = count; - best_domain = i; + if (status.response_code == AP_RESPONSE_NORMAL) + break; } + if (card <= ap_max_adapter_id) + break; } - if (best_domain >= 0) { - ap_domain_index = best_domain; - AP_DBF(DBF_DEBUG, "new ap_domain_index=%d\n", ap_domain_index); + if (dom <= ap_max_domain_id) { + ap_domain_index = dom; + AP_DBF_INFO("%s new default domain is %d\n", + __func__, ap_domain_index); } +out: spin_unlock_bh(&ap_domain_lock); } @@ -1318,8 +1254,11 @@ int comp_type = 0; /* < CEX2A is not supported */ - if (rawtype < AP_DEVICE_TYPE_CEX2A) + if (rawtype < AP_DEVICE_TYPE_CEX2A) { + AP_DBF_WARN("get_comp_type queue=%02x.%04x unsupported type %d\n", + AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype); return 0; + } /* up to CEX7 known and fully supported */ if (rawtype <= AP_DEVICE_TYPE_CEX7) return rawtype; @@ -1341,11 +1280,12 @@ comp_type = apinfo.cat; } if (!comp_type) - AP_DBF(DBF_WARN, "queue=%02x.%04x unable to map type %d\n", - AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype); + AP_DBF_WARN("get_comp_type queue=%02x.%04x unable to map type %d\n", + AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype); else if (comp_type != rawtype) - AP_DBF(DBF_INFO, "queue=%02x.%04x map type %d to %d\n", - AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype, comp_type); + AP_DBF_INFO("get_comp_type queue=%02x.%04x map type %d to %d\n", + AP_QID_CARD(qid), AP_QID_QUEUE(qid), + rawtype, comp_type); return comp_type; } @@ -1379,156 +1319,287 @@ /* * Helper function for ap_scan_bus(). - * Does the scan bus job for the given adapter id. + * Remove card device and associated queue devices. */ -static void _ap_scan_bus_adapter(int id) +static inline void ap_scan_rm_card_dev_and_queue_devs(struct ap_card *ac) { + bus_for_each_dev(&ap_bus_type, NULL, + (void *)(long) ac->id, + __ap_queue_devices_with_id_unregister); + device_unregister(&ac->ap_dev.device); +} + +/* + * Helper function for ap_scan_bus(). + * Does the scan bus job for all the domains within + * a valid adapter given by an ap_card ptr. + */ +static inline void ap_scan_domains(struct ap_card *ac) +{ + bool decfg; ap_qid_t qid; unsigned int func; - struct ap_card *ac; struct device *dev; struct ap_queue *aq; - int rc, dom, depth, type, comp_type, borked; - - /* check if there is a card device registered with this id */ - dev = bus_find_device(&ap_bus_type, NULL, - (void *)(long) id, - __match_card_device_with_id); - ac = dev ? to_ap_card(dev) : NULL; - if (!ap_test_config_card_id(id)) { - if (dev) { - /* Card device has been removed from configuration */ - bus_for_each_dev(&ap_bus_type, NULL, - (void *)(long) id, - __ap_queue_devices_with_id_unregister); - device_unregister(dev); - put_device(dev); - } - return; - } + int rc, dom, depth, type, ml; /* - * This card id is enabled in the configuration. If we already have - * a card device with this id, check if type and functions are still - * the very same. Also verify that at least one queue is available. + * Go through the configuration for the domains and compare them + * to the existing queue devices. Also take care of the config + * and error state for the queue devices. */ - if (ac) { - /* find the first valid queue */ - for (dom = 0; dom < AP_DOMAINS; dom++) { - qid = AP_MKQID(id, dom); - if (ap_query_queue(qid, &depth, &type, &func) == 0) - break; - } - borked = 0; - if (dom >= AP_DOMAINS) { - /* no accessible queue on this card */ - borked = 1; - } else if (ac->raw_hwtype != type) { - /* card type has changed */ - AP_DBF(DBF_INFO, "card=%02x type changed.\n", id); - borked = 1; - } else if (ac->functions != func) { - /* card functions have changed */ - AP_DBF(DBF_INFO, "card=%02x functions changed.\n", id); - borked = 1; - } - if (borked) { - /* unregister card device and associated queues */ - bus_for_each_dev(&ap_bus_type, NULL, - (void *)(long) id, - __ap_queue_devices_with_id_unregister); - device_unregister(dev); - put_device(dev); - /* go back if there is no valid queue on this card */ - if (dom >= AP_DOMAINS) - return; - ac = NULL; - } - } - /* - * Go through all possible queue ids. Check and maybe create or release - * queue devices for this card. If there exists no card device yet, - * create a card device also. - */ - for (dom = 0; dom < AP_DOMAINS; dom++) { - qid = AP_MKQID(id, dom); + for (dom = 0; dom <= ap_max_domain_id; dom++) { + qid = AP_MKQID(ac->id, dom); dev = bus_find_device(&ap_bus_type, NULL, (void *)(long) qid, __match_queue_device_with_qid); aq = dev ? to_ap_queue(dev) : NULL; if (!ap_test_config_usage_domain(dom)) { if (dev) { - /* Queue device exists but has been - * removed from configuration. - */ + AP_DBF_INFO("%s(%d,%d) not in config any more, rm queue device\n", + __func__, ac->id, dom); device_unregister(dev); put_device(dev); } continue; } - /* try to fetch infos about this queue */ - rc = ap_query_queue(qid, &depth, &type, &func); - if (dev) { - if (rc == -ENODEV) - borked = 1; - else { - spin_lock_bh(&aq->lock); - borked = aq->state == AP_STATE_BORKED; - spin_unlock_bh(&aq->lock); - } - if (borked) { - /* Remove broken device */ - AP_DBF(DBF_DEBUG, - "removing broken queue=%02x.%04x\n", - id, dom); + /* domain is valid, get info from this APQN */ + if (!ap_queue_info(qid, &type, &func, &depth, &ml, &decfg)) { + if (aq) { + AP_DBF_INFO( + "%s(%d,%d) ap_queue_info() not successful, rm queue device\n", + __func__, ac->id, dom); device_unregister(dev); + put_device(dev); } - put_device(dev); continue; } - if (rc) - continue; - /* a new queue device is needed, check out comp type */ - comp_type = ap_get_compatible_type(qid, type, func); - if (!comp_type) - continue; - /* maybe a card device needs to be created first */ - if (!ac) { - ac = ap_card_create(id, depth, type, comp_type, func); - if (!ac) + /* if no queue device exists, create a new one */ + if (!aq) { + aq = ap_queue_create(qid, ac->ap_dev.device_type); + if (!aq) { + AP_DBF_WARN("%s(%d,%d) ap_queue_create() failed\n", + __func__, ac->id, dom); continue; - ac->ap_dev.device.bus = &ap_bus_type; - ac->ap_dev.device.parent = ap_root_device; - dev_set_name(&ac->ap_dev.device, "card%02x", id); - /* Register card device with AP bus */ - rc = device_register(&ac->ap_dev.device); + } + aq->card = ac; + aq->config = !decfg; + dev = &aq->ap_dev.device; + dev->bus = &ap_bus_type; + dev->parent = &ac->ap_dev.device; + dev_set_name(dev, "%02x.%04x", ac->id, dom); + /* register queue device */ + rc = device_register(dev); if (rc) { - put_device(&ac->ap_dev.device); - ac = NULL; - break; + AP_DBF_WARN("%s(%d,%d) device_register() failed\n", + __func__, ac->id, dom); + goto put_dev_and_continue; } /* get it and thus adjust reference counter */ - get_device(&ac->ap_dev.device); + get_device(dev); + if (decfg) + AP_DBF_INFO("%s(%d,%d) new (decfg) queue device created\n", + __func__, ac->id, dom); + else + AP_DBF_INFO("%s(%d,%d) new queue device created\n", + __func__, ac->id, dom); + goto put_dev_and_continue; } - /* now create the new queue device */ - aq = ap_queue_create(qid, comp_type); - if (!aq) - continue; - aq->card = ac; - aq->ap_dev.device.bus = &ap_bus_type; - aq->ap_dev.device.parent = &ac->ap_dev.device; - dev_set_name(&aq->ap_dev.device, "%02x.%04x", id, dom); - /* Register queue device */ - rc = device_register(&aq->ap_dev.device); + /* Check config state on the already existing queue device */ + spin_lock_bh(&aq->lock); + if (decfg && aq->config) { + /* config off this queue device */ + aq->config = false; + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) { + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = AP_RESPONSE_DECONFIGURED; + } + spin_unlock_bh(&aq->lock); + AP_DBF_INFO("%s(%d,%d) queue device config off\n", + __func__, ac->id, dom); + /* 'receive' pending messages with -EAGAIN */ + ap_flush_queue(aq); + goto put_dev_and_continue; + } + if (!decfg && !aq->config) { + /* config on this queue device */ + aq->config = true; + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) { + aq->dev_state = AP_DEV_STATE_OPERATING; + aq->sm_state = AP_SM_STATE_RESET_START; + } + spin_unlock_bh(&aq->lock); + AP_DBF_INFO("%s(%d,%d) queue device config on\n", + __func__, ac->id, dom); + goto put_dev_and_continue; + } + /* handle other error states */ + if (!decfg && aq->dev_state == AP_DEV_STATE_ERROR) { + spin_unlock_bh(&aq->lock); + /* 'receive' pending messages with -EAGAIN */ + ap_flush_queue(aq); + /* re-init (with reset) the queue device */ + ap_queue_init_state(aq); + AP_DBF_INFO("%s(%d,%d) queue device reinit enforced\n", + __func__, ac->id, dom); + goto put_dev_and_continue; + } + spin_unlock_bh(&aq->lock); +put_dev_and_continue: + put_device(dev); + } +} + +/* + * Helper function for ap_scan_bus(). + * Does the scan bus job for the given adapter id. + */ +static inline void ap_scan_adapter(int ap) +{ + bool decfg; + ap_qid_t qid; + unsigned int func; + struct device *dev; + struct ap_card *ac; + int rc, dom, depth, type, comp_type, ml; + + /* Is there currently a card device for this adapter ? */ + dev = bus_find_device(&ap_bus_type, NULL, + (void *)(long) ap, + __match_card_device_with_id); + ac = dev ? to_ap_card(dev) : NULL; + + /* Adapter not in configuration ? */ + if (!ap_test_config_card_id(ap)) { + if (ac) { + AP_DBF_INFO("%s(%d) ap not in config any more, rm card and queue devices\n", + __func__, ap); + ap_scan_rm_card_dev_and_queue_devs(ac); + put_device(dev); + } + return; + } + + /* + * Adapter ap is valid in the current configuration. So do some checks: + * If no card device exists, build one. If a card device exists, check + * for type and functions changed. For all this we need to find a valid + * APQN first. + */ + + for (dom = 0; dom <= ap_max_domain_id; dom++) + if (ap_test_config_usage_domain(dom)) { + qid = AP_MKQID(ap, dom); + if (ap_queue_info(qid, &type, &func, + &depth, &ml, &decfg)) + break; + } + if (dom > ap_max_domain_id) { + /* Could not find a valid APQN for this adapter */ + if (ac) { + AP_DBF_INFO( + "%s(%d) no type info (no APQN found), rm card and queue devices\n", + __func__, ap); + ap_scan_rm_card_dev_and_queue_devs(ac); + put_device(dev); + } else { + AP_DBF_DBG("%s(%d) no type info (no APQN found), ignored\n", + __func__, ap); + } + return; + } + if (!type) { + /* No apdater type info available, an unusable adapter */ + if (ac) { + AP_DBF_INFO("%s(%d) no valid type (0) info, rm card and queue devices\n", + __func__, ap); + ap_scan_rm_card_dev_and_queue_devs(ac); + put_device(dev); + } else { + AP_DBF_DBG("%s(%d) no valid type (0) info, ignored\n", + __func__, ap); + } + return; + } + + if (ac) { + /* Check APQN against existing card device for changes */ + if (ac->raw_hwtype != type) { + AP_DBF_INFO("%s(%d) hwtype %d changed, rm card and queue devices\n", + __func__, ap, type); + ap_scan_rm_card_dev_and_queue_devs(ac); + put_device(dev); + ac = NULL; + } else if (ac->functions != func) { + AP_DBF_INFO("%s(%d) functions 0x%08x changed, rm card and queue devices\n", + __func__, ap, type); + ap_scan_rm_card_dev_and_queue_devs(ac); + put_device(dev); + ac = NULL; + } else { + if (decfg && ac->config) { + ac->config = false; + AP_DBF_INFO("%s(%d) card device config off\n", + __func__, ap); + + } + if (!decfg && !ac->config) { + ac->config = true; + AP_DBF_INFO("%s(%d) card device config on\n", + __func__, ap); + } + } + } + + if (!ac) { + /* Build a new card device */ + comp_type = ap_get_compatible_type(qid, type, func); + if (!comp_type) { + AP_DBF_WARN("%s(%d) type %d, can't get compatibility type\n", + __func__, ap, type); + return; + } + ac = ap_card_create(ap, depth, type, comp_type, func, ml); + if (!ac) { + AP_DBF_WARN("%s(%d) ap_card_create() failed\n", + __func__, ap); + return; + } + ac->config = !decfg; + dev = &ac->ap_dev.device; + dev->bus = &ap_bus_type; + dev->parent = ap_root_device; + dev_set_name(dev, "card%02x", ap); + /* maybe enlarge ap_max_msg_size to support this card */ + if (ac->maxmsgsize > atomic_read(&ap_max_msg_size)) { + atomic_set(&ap_max_msg_size, ac->maxmsgsize); + AP_DBF_INFO("%s(%d) ap_max_msg_size update to %d byte\n", + __func__, ap, atomic_read(&ap_max_msg_size)); + } + /* Register the new card device with AP bus */ + rc = device_register(dev); if (rc) { - put_device(&aq->ap_dev.device); - continue; + AP_DBF_WARN("%s(%d) device_register() failed\n", + __func__, ap); + put_device(dev); + return; } - } /* end domain loop */ + /* get it and thus adjust reference counter */ + get_device(dev); + if (decfg) + AP_DBF_INFO("%s(%d) new (decfg) card device type=%d func=0x%08x created\n", + __func__, ap, type, func); + else + AP_DBF_INFO("%s(%d) new card device type=%d func=0x%08x created\n", + __func__, ap, type, func); + } + + /* Verify the domains and the queue devices for this card */ + ap_scan_domains(ac); - if (ac) - put_device(&ac->ap_dev.device); + /* release the card device */ + put_device(&ac->ap_dev.device); } /** @@ -1537,16 +1608,16 @@ */ static void ap_scan_bus(struct work_struct *unused) { - int id; + int ap; - AP_DBF(DBF_DEBUG, "%s running\n", __func__); - - ap_query_configuration(ap_configuration); + ap_fetch_qci_info(ap_qci_info); ap_select_domain(); + AP_DBF_DBG("%s running\n", __func__); + /* loop over all possible adapters */ - for (id = 0; id < AP_DEVICES; id++) - _ap_scan_bus_adapter(id); + for (ap = 0; ap <= ap_max_adapter_id; ap++) + ap_scan_adapter(ap); /* check if there is at least one queue available with default domain */ if (ap_domain_index >= 0) { @@ -1557,9 +1628,8 @@ if (dev) put_device(dev); else - AP_DBF(DBF_INFO, - "no queue device with default domain %d available\n", - ap_domain_index); + AP_DBF_INFO("no queue device with default domain %d available\n", + ap_domain_index); } mod_timer(&ap_config_timer, jiffies + ap_config_time * HZ); @@ -1567,8 +1637,6 @@ static void ap_config_timeout(struct timer_list *unused) { - if (ap_suspend_flag) - return; queue_work(system_long_wq, &ap_scan_work); } @@ -1611,7 +1679,6 @@ */ static int __init ap_module_init(void) { - int max_domain_id; int rc, i; rc = ap_debug_init(); @@ -1623,30 +1690,25 @@ return -ENODEV; } + /* init ap_queue hashtable */ + hash_init(ap_queues); + /* set up the AP permissions (ioctls, ap and aq masks) */ ap_perms_init(); /* Get AP configuration data if available */ - ap_init_configuration(); + ap_init_qci_info(); - if (ap_configuration) - max_domain_id = - ap_max_domain_id ? ap_max_domain_id : AP_DOMAINS - 1; - else - max_domain_id = 15; - if (ap_domain_index < -1 || ap_domain_index > max_domain_id || + /* check default domain setting */ + if (ap_domain_index < -1 || ap_domain_index > ap_max_domain_id || (ap_domain_index >= 0 && !test_bit_inv(ap_domain_index, ap_perms.aqm))) { pr_warn("%d is not a valid cryptographic domain\n", ap_domain_index); ap_domain_index = -1; } - /* In resume callback we need to know if the user had set the domain. - * If so, we can not just reset it. - */ - if (ap_domain_index >= 0) - user_set_domain = 1; + /* enable interrupts if available */ if (ap_interrupts_available()) { rc = register_adapter_interrupt(&ap_airq); ap_airq_flag = (rc == 0); @@ -1677,7 +1739,6 @@ */ if (MACHINE_IS_VM) poll_timeout = 1500000; - spin_lock_init(&ap_poll_timer_lock); hrtimer_init(&ap_poll_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS); ap_poll_timer.function = ap_poll_timeout; @@ -1688,17 +1749,10 @@ goto out_work; } - rc = register_pm_notifier(&ap_power_notifier); - if (rc) - goto out_pm; - queue_work(system_long_wq, &ap_scan_work); - initialised = true; return 0; -out_pm: - ap_poll_thread_stop(); out_work: hrtimer_cancel(&ap_poll_timer); root_device_unregister(ap_root_device); @@ -1709,7 +1763,7 @@ out: if (ap_using_interrupts()) unregister_adapter_interrupt(&ap_airq); - kfree(ap_configuration); + kfree(ap_qci_info); return rc; } device_initcall(ap_module_init); diff -u linux-azure-5.4.0/drivers/s390/crypto/ap_bus.h linux-azure-5.4.0/drivers/s390/crypto/ap_bus.h --- linux-azure-5.4.0/drivers/s390/crypto/ap_bus.h +++ linux-azure-5.4.0/drivers/s390/crypto/ap_bus.h @@ -15,6 +15,7 @@ #include #include +#include #include #include @@ -24,11 +25,14 @@ #define AP_RESET_TIMEOUT (HZ*0.7) /* Time in ticks for reset timeouts. */ #define AP_CONFIG_TIME 30 /* Time in seconds between AP bus rescans. */ #define AP_POLL_TIME 1 /* Time in ticks between receive polls. */ +#define AP_DEFAULT_MAX_MSG_SIZE (12 * 1024) +#define AP_TAPQ_ML_FIELD_CHUNK_SIZE (4096) extern int ap_domain_index; +extern atomic_t ap_max_msg_size; -extern spinlock_t ap_list_lock; -extern struct list_head ap_card_list; +extern DECLARE_HASHTABLE(ap_queues, 8); +extern spinlock_t ap_queues_lock; static inline int ap_test_bit(unsigned int *ptr, unsigned int nr) { @@ -49,6 +53,7 @@ #define AP_RESPONSE_NO_FIRST_PART 0x13 #define AP_RESPONSE_MESSAGE_TOO_BIG 0x15 #define AP_RESPONSE_REQ_FAC_NOT_INST 0x16 +#define AP_RESPONSE_INVALID_DOMAIN 0x42 /* * Known device types @@ -82,40 +87,47 @@ #define AP_INTR_ENABLED 1 /* AP interrupt enabled */ /* - * AP device states + * AP queue state machine states */ -enum ap_state { - AP_STATE_RESET_START, - AP_STATE_RESET_WAIT, - AP_STATE_SETIRQ_WAIT, - AP_STATE_IDLE, - AP_STATE_WORKING, - AP_STATE_QUEUE_FULL, - AP_STATE_SUSPEND_WAIT, - AP_STATE_REMOVE, /* about to be removed from driver */ - AP_STATE_UNBOUND, /* momentary not bound to a driver */ - AP_STATE_BORKED, /* broken */ - NR_AP_STATES +enum ap_sm_state { + AP_SM_STATE_RESET_START = 0, + AP_SM_STATE_RESET_WAIT, + AP_SM_STATE_SETIRQ_WAIT, + AP_SM_STATE_IDLE, + AP_SM_STATE_WORKING, + AP_SM_STATE_QUEUE_FULL, + NR_AP_SM_STATES }; /* - * AP device events + * AP queue state machine events */ -enum ap_event { - AP_EVENT_POLL, - AP_EVENT_TIMEOUT, - NR_AP_EVENTS +enum ap_sm_event { + AP_SM_EVENT_POLL, + AP_SM_EVENT_TIMEOUT, + NR_AP_SM_EVENTS }; /* - * AP wait behaviour + * AP queue state wait behaviour */ -enum ap_wait { - AP_WAIT_AGAIN, /* retry immediately */ - AP_WAIT_TIMEOUT, /* wait for timeout */ - AP_WAIT_INTERRUPT, /* wait for thin interrupt (if available) */ - AP_WAIT_NONE, /* no wait */ - NR_AP_WAIT +enum ap_sm_wait { + AP_SM_WAIT_AGAIN, /* retry immediately */ + AP_SM_WAIT_TIMEOUT, /* wait for timeout */ + AP_SM_WAIT_INTERRUPT, /* wait for thin interrupt (if available) */ + AP_SM_WAIT_NONE, /* no wait */ + NR_AP_SM_WAIT +}; + +/* + * AP queue device states + */ +enum ap_dev_state { + AP_DEV_STATE_UNINITIATED = 0, /* fresh and virgin, not touched */ + AP_DEV_STATE_OPERATING, /* queue dev is working normal */ + AP_DEV_STATE_SHUTDOWN, /* remove/unbind/shutdown in progress */ + AP_DEV_STATE_ERROR, /* device is in error state */ + NR_AP_DEV_STATES }; struct ap_device; @@ -136,8 +148,6 @@ int (*probe)(struct ap_device *); void (*remove)(struct ap_device *); - void (*suspend)(struct ap_device *); - void (*resume)(struct ap_device *); }; #define to_ap_drv(x) container_of((x), struct ap_driver, driver) @@ -155,13 +165,13 @@ struct ap_card { struct ap_device ap_dev; - struct list_head list; /* Private list of AP cards. */ - struct list_head queues; /* List of assoc. AP queues */ void *private; /* ap driver private pointer. */ int raw_hwtype; /* AP raw hardware type. */ unsigned int functions; /* AP device function bitfield. */ int queue_depth; /* AP queue depth.*/ int id; /* AP card number. */ + unsigned int maxmsgsize; /* AP msg limit for this card */ + bool config; /* configured state */ atomic64_t total_request_count; /* # requests ever for this AP device.*/ }; @@ -169,14 +179,15 @@ struct ap_queue { struct ap_device ap_dev; - struct list_head list; /* Private list of AP queues. */ + struct hlist_node hnode; /* Node for the ap_queues hashtable */ struct ap_card *card; /* Ptr to assoc. AP card. */ spinlock_t lock; /* Per device lock. */ void *private; /* ap driver private pointer. */ + enum ap_dev_state dev_state; /* queue device state */ + bool config; /* configured state */ ap_qid_t qid; /* AP queue id. */ int interrupt; /* indicate if interrupts are enabled */ int queue_count; /* # messages currently on AP queue. */ - enum ap_state state; /* State of the AP device. */ int pendingq_count; /* # requests on pendingq list. */ int requestq_count; /* # requests on requestq list. */ u64 total_request_count; /* # requests ever for this AP device.*/ @@ -185,26 +196,55 @@ struct list_head pendingq; /* List of message sent to AP queue. */ struct list_head requestq; /* List of message yet to be sent. */ struct ap_message *reply; /* Per device reply message. */ + enum ap_sm_state sm_state; /* ap queue state machine state */ + int last_err_rc; /* last error state response code */ }; #define to_ap_queue(x) container_of((x), struct ap_queue, ap_dev.device) -typedef enum ap_wait (ap_func_t)(struct ap_queue *queue); +typedef enum ap_sm_wait (ap_func_t)(struct ap_queue *queue); + +/* failure injection cmd struct */ +struct ap_fi { + union { + u16 cmd; /* fi flags + action */ + struct { + u8 flags; /* fi flags only */ + u8 action; /* fi action only */ + }; + }; +}; + +/* all currently known fi actions */ +enum ap_fi_actions { + AP_FI_ACTION_CCA_AGENT_FF = 0x01, + AP_FI_ACTION_CCA_DOM_INVAL = 0x02, + AP_FI_ACTION_NQAP_QID_INVAL = 0x03, +}; + +/* all currently known fi flags */ +enum ap_fi_flags { + AP_FI_FLAG_NO_RETRY = 0x01, + AP_FI_FLAG_TOGGLE_SPECIAL = 0x02, +}; struct ap_message { struct list_head list; /* Request queueing. */ unsigned long long psmid; /* Message id. */ - void *message; /* Pointer to message buffer. */ - size_t length; /* Message length. */ + void *msg; /* Pointer to message buffer. */ + unsigned int len; /* actual msg len in msg buffer */ + unsigned int bufsize; /* allocated msg buffer size */ + u16 flags; /* Flags, see AP_MSG_FLAG_xxx */ + struct ap_fi fi; /* Failure Injection cmd */ int rc; /* Return code for this message */ - void *private; /* ap driver private pointer. */ - unsigned int special:1; /* Used for special commands. */ /* receive is called from tasklet context */ void (*receive)(struct ap_queue *, struct ap_message *, struct ap_message *); }; +#define AP_MSG_FLAG_SPECIAL 1 /* flag msg as 'special' with NQAP */ + /** * ap_init_message() - Initialize ap_message. * Initialize a message before using. Otherwise this might result in @@ -222,16 +262,10 @@ */ static inline void ap_release_message(struct ap_message *ap_msg) { - kzfree(ap_msg->message); + kzfree(ap_msg->msg); kzfree(ap_msg->private); } -#define for_each_ap_card(_ac) \ - list_for_each_entry(_ac, &ap_card_list, list) - -#define for_each_ap_queue(_aq, _ac) \ - list_for_each_entry(_aq, &(_ac)->queues, list) - /* * Note: don't use ap_send/ap_recv after using ap_queue_message * for the first time. Otherwise the ap message queue will get @@ -240,15 +274,15 @@ int ap_send(ap_qid_t, unsigned long long, void *, size_t); int ap_recv(ap_qid_t, unsigned long long *, void *, size_t); -enum ap_wait ap_sm_event(struct ap_queue *aq, enum ap_event event); -enum ap_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_event event); +enum ap_sm_wait ap_sm_event(struct ap_queue *aq, enum ap_sm_event event); +enum ap_sm_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_sm_event event); -void ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg); +int ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg); void ap_cancel_message(struct ap_queue *aq, struct ap_message *ap_msg); void ap_flush_queue(struct ap_queue *aq); void *ap_airq_ptr(void); -void ap_wait(enum ap_wait wait); +void ap_wait(enum ap_sm_wait wait); void ap_request_timeout(struct timer_list *t); void ap_bus_force_rescan(void); @@ -259,12 +293,10 @@ struct ap_queue *ap_queue_create(ap_qid_t qid, int device_type); void ap_queue_prepare_remove(struct ap_queue *aq); void ap_queue_remove(struct ap_queue *aq); -void ap_queue_suspend(struct ap_device *ap_dev); -void ap_queue_resume(struct ap_device *ap_dev); void ap_queue_init_state(struct ap_queue *aq); -struct ap_card *ap_card_create(int id, int queue_depth, int raw_device_type, - int comp_device_type, unsigned int functions); +struct ap_card *ap_card_create(int id, int queue_depth, int raw_type, + int comp_type, unsigned int functions, int ml); struct ap_perms { unsigned long ioctlm[BITS_TO_LONGS(AP_IOCTLS)]; @@ -275,6 +307,16 @@ extern struct mutex ap_perms_mutex; /* + * Get ap_queue device for this qid. + * Returns ptr to the struct ap_queue device or NULL if there + * was no ap_queue device with this qid found. When something is + * found, the reference count of the embedded device is increased. + * So the caller has to decrease the reference count after use + * with a call to put_device(&aq->ap_dev.device). + */ +struct ap_queue *ap_get_qdev(ap_qid_t qid); + +/* * check APQN for owned/reserved by ap bus and default driver(s). * Checks if this APQN is or will be in use by the ap bus * and the default set of drivers. diff -u linux-azure-5.4.0/drivers/s390/crypto/ap_card.c linux-azure-5.4.0/drivers/s390/crypto/ap_card.c --- linux-azure-5.4.0/drivers/s390/crypto/ap_card.c +++ linux-azure-5.4.0/drivers/s390/crypto/ap_card.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "ap_bus.h" @@ -23,7 +24,7 @@ { struct ap_card *ac = to_ap_card(dev); - return snprintf(buf, PAGE_SIZE, "%d\n", ac->ap_dev.device_type); + return scnprintf(buf, PAGE_SIZE, "%d\n", ac->ap_dev.device_type); } static DEVICE_ATTR_RO(hwtype); @@ -33,7 +34,7 @@ { struct ap_card *ac = to_ap_card(dev); - return snprintf(buf, PAGE_SIZE, "%d\n", ac->raw_hwtype); + return scnprintf(buf, PAGE_SIZE, "%d\n", ac->raw_hwtype); } static DEVICE_ATTR_RO(raw_hwtype); @@ -43,7 +44,7 @@ { struct ap_card *ac = to_ap_card(dev); - return snprintf(buf, PAGE_SIZE, "%d\n", ac->queue_depth); + return scnprintf(buf, PAGE_SIZE, "%d\n", ac->queue_depth); } static DEVICE_ATTR_RO(depth); @@ -53,7 +54,7 @@ { struct ap_card *ac = to_ap_card(dev); - return snprintf(buf, PAGE_SIZE, "0x%08X\n", ac->functions); + return scnprintf(buf, PAGE_SIZE, "0x%08X\n", ac->functions); } static DEVICE_ATTR_RO(ap_functions); @@ -66,23 +67,25 @@ u64 req_cnt; req_cnt = 0; - spin_lock_bh(&ap_list_lock); + spin_lock_bh(&ap_queues_lock); req_cnt = atomic64_read(&ac->total_request_count); - spin_unlock_bh(&ap_list_lock); - return snprintf(buf, PAGE_SIZE, "%llu\n", req_cnt); + spin_unlock_bh(&ap_queues_lock); + return scnprintf(buf, PAGE_SIZE, "%llu\n", req_cnt); } static ssize_t request_count_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - struct ap_card *ac = to_ap_card(dev); + int bkt; struct ap_queue *aq; + struct ap_card *ac = to_ap_card(dev); - spin_lock_bh(&ap_list_lock); - for_each_ap_queue(aq, ac) - aq->total_request_count = 0; - spin_unlock_bh(&ap_list_lock); + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) + if (ac == aq->card) + aq->total_request_count = 0; + spin_unlock_bh(&ap_queues_lock); atomic64_set(&ac->total_request_count, 0); return count; @@ -93,16 +96,18 @@ static ssize_t requestq_count_show(struct device *dev, struct device_attribute *attr, char *buf) { - struct ap_card *ac = to_ap_card(dev); + int bkt; struct ap_queue *aq; unsigned int reqq_cnt; + struct ap_card *ac = to_ap_card(dev); reqq_cnt = 0; - spin_lock_bh(&ap_list_lock); - for_each_ap_queue(aq, ac) - reqq_cnt += aq->requestq_count; - spin_unlock_bh(&ap_list_lock); - return snprintf(buf, PAGE_SIZE, "%d\n", reqq_cnt); + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) + if (ac == aq->card) + reqq_cnt += aq->requestq_count; + spin_unlock_bh(&ap_queues_lock); + return scnprintf(buf, PAGE_SIZE, "%d\n", reqq_cnt); } static DEVICE_ATTR_RO(requestq_count); @@ -110,16 +115,18 @@ static ssize_t pendingq_count_show(struct device *dev, struct device_attribute *attr, char *buf) { - struct ap_card *ac = to_ap_card(dev); + int bkt; struct ap_queue *aq; unsigned int penq_cnt; + struct ap_card *ac = to_ap_card(dev); penq_cnt = 0; - spin_lock_bh(&ap_list_lock); - for_each_ap_queue(aq, ac) - penq_cnt += aq->pendingq_count; - spin_unlock_bh(&ap_list_lock); - return snprintf(buf, PAGE_SIZE, "%d\n", penq_cnt); + spin_lock_bh(&ap_queues_lock); + hash_for_each(ap_queues, bkt, aq, hnode) + if (ac == aq->card) + penq_cnt += aq->pendingq_count; + spin_unlock_bh(&ap_queues_lock); + return scnprintf(buf, PAGE_SIZE, "%d\n", penq_cnt); } static DEVICE_ATTR_RO(pendingq_count); @@ -127,11 +134,54 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf) { - return sprintf(buf, "ap:t%02X\n", to_ap_dev(dev)->device_type); + return scnprintf(buf, PAGE_SIZE, "ap:t%02X\n", + to_ap_dev(dev)->device_type); } static DEVICE_ATTR_RO(modalias); +static ssize_t config_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct ap_card *ac = to_ap_card(dev); + + return scnprintf(buf, PAGE_SIZE, "%d\n", ac->config ? 1 : 0); +} + +static ssize_t config_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int rc = 0, cfg; + struct ap_card *ac = to_ap_card(dev); + + if (sscanf(buf, "%d\n", &cfg) != 1 || cfg < 0 || cfg > 1) + return -EINVAL; + + if (cfg && !ac->config) + rc = sclp_ap_configure(ac->id); + else if (!cfg && ac->config) + rc = sclp_ap_deconfigure(ac->id); + if (rc) + return rc; + + ac->config = cfg ? true : false; + + return count; +} + +static DEVICE_ATTR_RW(config); + +static ssize_t max_msg_size_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct ap_card *ac = to_ap_card(dev); + + return scnprintf(buf, PAGE_SIZE, "%u\n", ac->maxmsgsize); +} + +static DEVICE_ATTR_RO(max_msg_size); + static struct attribute *ap_card_dev_attrs[] = { &dev_attr_hwtype.attr, &dev_attr_raw_hwtype.attr, @@ -141,6 +191,8 @@ &dev_attr_requestq_count.attr, &dev_attr_pendingq_count.attr, &dev_attr_modalias.attr, + &dev_attr_config.attr, + &dev_attr_max_msg_size.attr, NULL }; @@ -162,24 +214,17 @@ { struct ap_card *ac = to_ap_card(dev); - if (!list_empty(&ac->list)) { - spin_lock_bh(&ap_list_lock); - list_del_init(&ac->list); - spin_unlock_bh(&ap_list_lock); - } kfree(ac); } struct ap_card *ap_card_create(int id, int queue_depth, int raw_type, - int comp_type, unsigned int functions) + int comp_type, unsigned int functions, int ml) { struct ap_card *ac; ac = kzalloc(sizeof(*ac), GFP_KERNEL); if (!ac) return NULL; - INIT_LIST_HEAD(&ac->list); - INIT_LIST_HEAD(&ac->queues); ac->ap_dev.device.release = ap_card_device_release; ac->ap_dev.device.type = &ap_card_type; ac->ap_dev.device_type = comp_type; @@ -188,4 +233,7 @@ ac->functions = functions; ac->id = id; + ac->maxmsgsize = ml > 0 ? + ml * AP_TAPQ_ML_FIELD_CHUNK_SIZE : AP_DEFAULT_MAX_MSG_SIZE; + return ac; } diff -u linux-azure-5.4.0/drivers/s390/crypto/ap_queue.c linux-azure-5.4.0/drivers/s390/crypto/ap_queue.c --- linux-azure-5.4.0/drivers/s390/crypto/ap_queue.c +++ linux-azure-5.4.0/drivers/s390/crypto/ap_queue.c @@ -69,9 +69,9 @@ */ static inline struct ap_queue_status __ap_send(ap_qid_t qid, unsigned long long psmid, void *msg, size_t length, - unsigned int special) + int special) { - if (special == 1) + if (special) qid |= 0x400000UL; return ap_nqap(qid, psmid, msg, length); } @@ -119,9 +119,9 @@ /* State machine definitions and helpers */ -static enum ap_wait ap_sm_nop(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_nop(struct ap_queue *aq) { - return AP_WAIT_NONE; + return AP_SM_WAIT_NONE; } /** @@ -129,18 +129,19 @@ * not change the state of the device. * @aq: pointer to the AP queue * - * Returns AP_WAIT_NONE, AP_WAIT_AGAIN, or AP_WAIT_INTERRUPT + * Returns AP_SM_WAIT_NONE, AP_SM_WAIT_AGAIN, or AP_SM_WAIT_INTERRUPT */ static struct ap_queue_status ap_sm_recv(struct ap_queue *aq) { struct ap_queue_status status; struct ap_message *ap_msg; + bool found = false; status = ap_dqap(aq->qid, &aq->reply->psmid, - aq->reply->message, aq->reply->length); + aq->reply->msg, aq->reply->bufsize); switch (status.response_code) { case AP_RESPONSE_NORMAL: - aq->queue_count--; + aq->queue_count = max_t(int, 0, aq->queue_count - 1); if (aq->queue_count > 0) mod_timer(&aq->timeout, jiffies + aq->request_timeout); @@ -150,9 +151,15 @@ list_del_init(&ap_msg->list); aq->pendingq_count--; ap_msg->receive(aq, ap_msg, aq->reply); + found = true; break; } - /* fall through */ + if (!found) { + AP_DBF_WARN("%s unassociated reply psmid=0x%016llx on 0x%02x.%04x\n", + __func__, aq->reply->psmid, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + } + fallthrough; case AP_RESPONSE_NO_PENDING_REPLY: if (!status.queue_empty || aq->queue_count <= 0) break; @@ -172,56 +179,35 @@ * ap_sm_read(): Receive pending reply messages from an AP queue. * @aq: pointer to the AP queue * - * Returns AP_WAIT_NONE, AP_WAIT_AGAIN, or AP_WAIT_INTERRUPT + * Returns AP_SM_WAIT_NONE, AP_SM_WAIT_AGAIN, or AP_SM_WAIT_INTERRUPT */ -static enum ap_wait ap_sm_read(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_read(struct ap_queue *aq) { struct ap_queue_status status; if (!aq->reply) - return AP_WAIT_NONE; + return AP_SM_WAIT_NONE; status = ap_sm_recv(aq); switch (status.response_code) { case AP_RESPONSE_NORMAL: if (aq->queue_count > 0) { - aq->state = AP_STATE_WORKING; - return AP_WAIT_AGAIN; + aq->sm_state = AP_SM_STATE_WORKING; + return AP_SM_WAIT_AGAIN; } - aq->state = AP_STATE_IDLE; - return AP_WAIT_NONE; + aq->sm_state = AP_SM_STATE_IDLE; + return AP_SM_WAIT_NONE; case AP_RESPONSE_NO_PENDING_REPLY: if (aq->queue_count > 0) - return AP_WAIT_INTERRUPT; - aq->state = AP_STATE_IDLE; - return AP_WAIT_NONE; - default: - aq->state = AP_STATE_BORKED; - return AP_WAIT_NONE; - } -} - -/** - * ap_sm_suspend_read(): Receive pending reply messages from an AP queue - * without changing the device state in between. In suspend mode we don't - * allow sending new requests, therefore just fetch pending replies. - * @aq: pointer to the AP queue - * - * Returns AP_WAIT_NONE or AP_WAIT_AGAIN - */ -static enum ap_wait ap_sm_suspend_read(struct ap_queue *aq) -{ - struct ap_queue_status status; - - if (!aq->reply) - return AP_WAIT_NONE; - status = ap_sm_recv(aq); - switch (status.response_code) { - case AP_RESPONSE_NORMAL: - if (aq->queue_count > 0) - return AP_WAIT_AGAIN; - /* fall through */ + return AP_SM_WAIT_INTERRUPT; + aq->sm_state = AP_SM_STATE_IDLE; + return AP_SM_WAIT_NONE; default: - return AP_WAIT_NONE; + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = status.response_code; + AP_DBF_WARN("%s RC 0x%02x on 0x%02x.%04x -> AP_DEV_STATE_ERROR\n", + __func__, status.response_code, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + return AP_SM_WAIT_NONE; } } @@ -229,48 +215,64 @@ * ap_sm_write(): Send messages from the request queue to an AP queue. * @aq: pointer to the AP queue * - * Returns AP_WAIT_NONE, AP_WAIT_AGAIN, or AP_WAIT_INTERRUPT + * Returns AP_SM_WAIT_NONE, AP_SM_WAIT_AGAIN, or AP_SM_WAIT_INTERRUPT */ -static enum ap_wait ap_sm_write(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_write(struct ap_queue *aq) { struct ap_queue_status status; struct ap_message *ap_msg; + ap_qid_t qid = aq->qid; if (aq->requestq_count <= 0) - return AP_WAIT_NONE; + return AP_SM_WAIT_NONE; /* Start the next request on the queue. */ ap_msg = list_entry(aq->requestq.next, struct ap_message, list); - status = __ap_send(aq->qid, ap_msg->psmid, - ap_msg->message, ap_msg->length, ap_msg->special); +#ifdef CONFIG_ZCRYPT_DEBUG + if (ap_msg->fi.action == AP_FI_ACTION_NQAP_QID_INVAL) { + AP_DBF_WARN("%s fi cmd 0x%04x: forcing invalid qid 0xFF00\n", + __func__, ap_msg->fi.cmd); + qid = 0xFF00; + } +#endif + status = __ap_send(qid, ap_msg->psmid, + ap_msg->msg, ap_msg->len, + ap_msg->flags & AP_MSG_FLAG_SPECIAL); switch (status.response_code) { case AP_RESPONSE_NORMAL: - aq->queue_count++; + aq->queue_count = max_t(int, 1, aq->queue_count + 1); if (aq->queue_count == 1) mod_timer(&aq->timeout, jiffies + aq->request_timeout); list_move_tail(&ap_msg->list, &aq->pendingq); aq->requestq_count--; aq->pendingq_count++; if (aq->queue_count < aq->card->queue_depth) { - aq->state = AP_STATE_WORKING; - return AP_WAIT_AGAIN; + aq->sm_state = AP_SM_STATE_WORKING; + return AP_SM_WAIT_AGAIN; } - /* fall through */ + fallthrough; case AP_RESPONSE_Q_FULL: - aq->state = AP_STATE_QUEUE_FULL; - return AP_WAIT_INTERRUPT; + aq->sm_state = AP_SM_STATE_QUEUE_FULL; + return AP_SM_WAIT_INTERRUPT; case AP_RESPONSE_RESET_IN_PROGRESS: - aq->state = AP_STATE_RESET_WAIT; - return AP_WAIT_TIMEOUT; + aq->sm_state = AP_SM_STATE_RESET_WAIT; + return AP_SM_WAIT_TIMEOUT; + case AP_RESPONSE_INVALID_DOMAIN: + AP_DBF(DBF_WARN, "AP_RESPONSE_INVALID_DOMAIN on NQAP\n"); + fallthrough; case AP_RESPONSE_MESSAGE_TOO_BIG: case AP_RESPONSE_REQ_FAC_NOT_INST: list_del_init(&ap_msg->list); aq->requestq_count--; ap_msg->rc = -EINVAL; ap_msg->receive(aq, ap_msg, NULL); - return AP_WAIT_AGAIN; + return AP_SM_WAIT_AGAIN; default: - aq->state = AP_STATE_BORKED; - return AP_WAIT_NONE; + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = status.response_code; + AP_DBF_WARN("%s RC 0x%02x on 0x%02x.%04x -> AP_DEV_STATE_ERROR\n", + __func__, status.response_code, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + return AP_SM_WAIT_NONE; } } @@ -278,9 +280,9 @@ * ap_sm_read_write(): Send and receive messages to/from an AP queue. * @aq: pointer to the AP queue * - * Returns AP_WAIT_NONE, AP_WAIT_AGAIN, or AP_WAIT_INTERRUPT + * Returns AP_SM_WAIT_NONE, AP_SM_WAIT_AGAIN, or AP_SM_WAIT_INTERRUPT */ -static enum ap_wait ap_sm_read_write(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_read_write(struct ap_queue *aq) { return min(ap_sm_read(aq), ap_sm_write(aq)); } @@ -291,7 +293,7 @@ * * Submit the Reset command to an AP queue. */ -static enum ap_wait ap_sm_reset(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_reset(struct ap_queue *aq) { struct ap_queue_status status; @@ -299,17 +301,16 @@ switch (status.response_code) { case AP_RESPONSE_NORMAL: case AP_RESPONSE_RESET_IN_PROGRESS: - aq->state = AP_STATE_RESET_WAIT; + aq->sm_state = AP_SM_STATE_RESET_WAIT; aq->interrupt = AP_INTR_DISABLED; - return AP_WAIT_TIMEOUT; - case AP_RESPONSE_BUSY: - return AP_WAIT_TIMEOUT; - case AP_RESPONSE_Q_NOT_AVAIL: - case AP_RESPONSE_DECONFIGURED: - case AP_RESPONSE_CHECKSTOPPED: + return AP_SM_WAIT_TIMEOUT; default: - aq->state = AP_STATE_BORKED; - return AP_WAIT_NONE; + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = status.response_code; + AP_DBF_WARN("%s RC 0x%02x on 0x%02x.%04x -> AP_DEV_STATE_ERROR\n", + __func__, status.response_code, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + return AP_SM_WAIT_NONE; } } @@ -319,7 +320,7 @@ * * Returns AP_POLL_IMMEDIATELY, AP_POLL_AFTER_TIMEROUT or 0. */ -static enum ap_wait ap_sm_reset_wait(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_reset_wait(struct ap_queue *aq) { struct ap_queue_status status; void *lsi_ptr; @@ -335,20 +336,24 @@ case AP_RESPONSE_NORMAL: lsi_ptr = ap_airq_ptr(); if (lsi_ptr && ap_queue_enable_interruption(aq, lsi_ptr) == 0) - aq->state = AP_STATE_SETIRQ_WAIT; + aq->sm_state = AP_SM_STATE_SETIRQ_WAIT; else - aq->state = (aq->queue_count > 0) ? - AP_STATE_WORKING : AP_STATE_IDLE; - return AP_WAIT_AGAIN; + aq->sm_state = (aq->queue_count > 0) ? + AP_SM_STATE_WORKING : AP_SM_STATE_IDLE; + return AP_SM_WAIT_AGAIN; case AP_RESPONSE_BUSY: case AP_RESPONSE_RESET_IN_PROGRESS: - return AP_WAIT_TIMEOUT; + return AP_SM_WAIT_TIMEOUT; case AP_RESPONSE_Q_NOT_AVAIL: case AP_RESPONSE_DECONFIGURED: case AP_RESPONSE_CHECKSTOPPED: default: - aq->state = AP_STATE_BORKED; - return AP_WAIT_NONE; + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = status.response_code; + AP_DBF_WARN("%s RC 0x%02x on 0x%02x.%04x -> AP_DEV_STATE_ERROR\n", + __func__, status.response_code, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + return AP_SM_WAIT_NONE; } } @@ -358,7 +363,7 @@ * * Returns AP_POLL_IMMEDIATELY, AP_POLL_AFTER_TIMEROUT or 0. */ -static enum ap_wait ap_sm_setirq_wait(struct ap_queue *aq) +static enum ap_sm_wait ap_sm_setirq_wait(struct ap_queue *aq) { struct ap_queue_status status; @@ -372,106 +377,75 @@ if (status.irq_enabled == 1) { /* Irqs are now enabled */ aq->interrupt = AP_INTR_ENABLED; - aq->state = (aq->queue_count > 0) ? - AP_STATE_WORKING : AP_STATE_IDLE; + aq->sm_state = (aq->queue_count > 0) ? + AP_SM_STATE_WORKING : AP_SM_STATE_IDLE; } switch (status.response_code) { case AP_RESPONSE_NORMAL: if (aq->queue_count > 0) - return AP_WAIT_AGAIN; - /* fallthrough */ + return AP_SM_WAIT_AGAIN; + fallthrough; case AP_RESPONSE_NO_PENDING_REPLY: - return AP_WAIT_TIMEOUT; + return AP_SM_WAIT_TIMEOUT; default: - aq->state = AP_STATE_BORKED; - return AP_WAIT_NONE; + aq->dev_state = AP_DEV_STATE_ERROR; + aq->last_err_rc = status.response_code; + AP_DBF_WARN("%s RC 0x%02x on 0x%02x.%04x -> AP_DEV_STATE_ERROR\n", + __func__, status.response_code, + AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); + return AP_SM_WAIT_NONE; } } /* * AP state machine jump table */ -static ap_func_t *ap_jumptable[NR_AP_STATES][NR_AP_EVENTS] = { - [AP_STATE_RESET_START] = { - [AP_EVENT_POLL] = ap_sm_reset, - [AP_EVENT_TIMEOUT] = ap_sm_nop, - }, - [AP_STATE_RESET_WAIT] = { - [AP_EVENT_POLL] = ap_sm_reset_wait, - [AP_EVENT_TIMEOUT] = ap_sm_nop, - }, - [AP_STATE_SETIRQ_WAIT] = { - [AP_EVENT_POLL] = ap_sm_setirq_wait, - [AP_EVENT_TIMEOUT] = ap_sm_nop, - }, - [AP_STATE_IDLE] = { - [AP_EVENT_POLL] = ap_sm_write, - [AP_EVENT_TIMEOUT] = ap_sm_nop, - }, - [AP_STATE_WORKING] = { - [AP_EVENT_POLL] = ap_sm_read_write, - [AP_EVENT_TIMEOUT] = ap_sm_reset, +static ap_func_t *ap_jumptable[NR_AP_SM_STATES][NR_AP_SM_EVENTS] = { + [AP_SM_STATE_RESET_START] = { + [AP_SM_EVENT_POLL] = ap_sm_reset, + [AP_SM_EVENT_TIMEOUT] = ap_sm_nop, }, - [AP_STATE_QUEUE_FULL] = { - [AP_EVENT_POLL] = ap_sm_read, - [AP_EVENT_TIMEOUT] = ap_sm_reset, + [AP_SM_STATE_RESET_WAIT] = { + [AP_SM_EVENT_POLL] = ap_sm_reset_wait, + [AP_SM_EVENT_TIMEOUT] = ap_sm_nop, }, - [AP_STATE_SUSPEND_WAIT] = { - [AP_EVENT_POLL] = ap_sm_suspend_read, - [AP_EVENT_TIMEOUT] = ap_sm_nop, + [AP_SM_STATE_SETIRQ_WAIT] = { + [AP_SM_EVENT_POLL] = ap_sm_setirq_wait, + [AP_SM_EVENT_TIMEOUT] = ap_sm_nop, }, - [AP_STATE_REMOVE] = { - [AP_EVENT_POLL] = ap_sm_nop, - [AP_EVENT_TIMEOUT] = ap_sm_nop, + [AP_SM_STATE_IDLE] = { + [AP_SM_EVENT_POLL] = ap_sm_write, + [AP_SM_EVENT_TIMEOUT] = ap_sm_nop, }, - [AP_STATE_UNBOUND] = { - [AP_EVENT_POLL] = ap_sm_nop, - [AP_EVENT_TIMEOUT] = ap_sm_nop, + [AP_SM_STATE_WORKING] = { + [AP_SM_EVENT_POLL] = ap_sm_read_write, + [AP_SM_EVENT_TIMEOUT] = ap_sm_reset, }, - [AP_STATE_BORKED] = { - [AP_EVENT_POLL] = ap_sm_nop, - [AP_EVENT_TIMEOUT] = ap_sm_nop, + [AP_SM_STATE_QUEUE_FULL] = { + [AP_SM_EVENT_POLL] = ap_sm_read, + [AP_SM_EVENT_TIMEOUT] = ap_sm_reset, }, }; -enum ap_wait ap_sm_event(struct ap_queue *aq, enum ap_event event) +enum ap_sm_wait ap_sm_event(struct ap_queue *aq, enum ap_sm_event event) { - return ap_jumptable[aq->state][event](aq); + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) + return ap_jumptable[aq->sm_state][event](aq); + else + return AP_SM_WAIT_NONE; } -enum ap_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_event event) +enum ap_sm_wait ap_sm_event_loop(struct ap_queue *aq, enum ap_sm_event event) { - enum ap_wait wait; + enum ap_sm_wait wait; - while ((wait = ap_sm_event(aq, event)) == AP_WAIT_AGAIN) + while ((wait = ap_sm_event(aq, event)) == AP_SM_WAIT_AGAIN) ; return wait; } /* - * Power management for queue devices - */ -void ap_queue_suspend(struct ap_device *ap_dev) -{ - struct ap_queue *aq = to_ap_queue(&ap_dev->device); - - /* Poll on the device until all requests are finished. */ - spin_lock_bh(&aq->lock); - aq->state = AP_STATE_SUSPEND_WAIT; - while (ap_sm_event(aq, AP_EVENT_POLL) != AP_WAIT_NONE) - ; - aq->state = AP_STATE_BORKED; - spin_unlock_bh(&aq->lock); -} -EXPORT_SYMBOL(ap_queue_suspend); - -void ap_queue_resume(struct ap_device *ap_dev) -{ -} -EXPORT_SYMBOL(ap_queue_resume); - -/* * AP queue related attributes. */ static ssize_t request_count_show(struct device *dev, @@ -479,12 +453,20 @@ char *buf) { struct ap_queue *aq = to_ap_queue(dev); + bool valid = false; u64 req_cnt; spin_lock_bh(&aq->lock); - req_cnt = aq->total_request_count; + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) { + req_cnt = aq->total_request_count; + valid = true; + } spin_unlock_bh(&aq->lock); - return snprintf(buf, PAGE_SIZE, "%llu\n", req_cnt); + + if (valid) + return scnprintf(buf, PAGE_SIZE, "%llu\n", req_cnt); + else + return scnprintf(buf, PAGE_SIZE, "-\n"); } static ssize_t request_count_store(struct device *dev, @@ -509,9 +491,10 @@ unsigned int reqq_cnt = 0; spin_lock_bh(&aq->lock); - reqq_cnt = aq->requestq_count; + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) + reqq_cnt = aq->requestq_count; spin_unlock_bh(&aq->lock); - return snprintf(buf, PAGE_SIZE, "%d\n", reqq_cnt); + return scnprintf(buf, PAGE_SIZE, "%d\n", reqq_cnt); } static DEVICE_ATTR_RO(requestq_count); @@ -523,9 +506,10 @@ unsigned int penq_cnt = 0; spin_lock_bh(&aq->lock); - penq_cnt = aq->pendingq_count; + if (aq->dev_state > AP_DEV_STATE_UNINITIATED) + penq_cnt = aq->pendingq_count; spin_unlock_bh(&aq->lock); - return snprintf(buf, PAGE_SIZE, "%d\n", penq_cnt); + return scnprintf(buf, PAGE_SIZE, "%d\n", penq_cnt); } static DEVICE_ATTR_RO(pendingq_count); @@ -537,17 +521,17 @@ int rc = 0; spin_lock_bh(&aq->lock); - switch (aq->state) { - case AP_STATE_RESET_START: - case AP_STATE_RESET_WAIT: - rc = snprintf(buf, PAGE_SIZE, "Reset in progress.\n"); + switch (aq->sm_state) { + case AP_SM_STATE_RESET_START: + case AP_SM_STATE_RESET_WAIT: + rc = scnprintf(buf, PAGE_SIZE, "Reset in progress.\n"); break; - case AP_STATE_WORKING: - case AP_STATE_QUEUE_FULL: - rc = snprintf(buf, PAGE_SIZE, "Reset Timer armed.\n"); + case AP_SM_STATE_WORKING: + case AP_SM_STATE_QUEUE_FULL: + rc = scnprintf(buf, PAGE_SIZE, "Reset Timer armed.\n"); break; default: - rc = snprintf(buf, PAGE_SIZE, "No Reset Timer set.\n"); + rc = scnprintf(buf, PAGE_SIZE, "No Reset Timer set.\n"); } spin_unlock_bh(&aq->lock); return rc; @@ -561,8 +545,8 @@ spin_lock_bh(&aq->lock); __ap_flush_queue(aq); - aq->state = AP_STATE_RESET_START; - ap_wait(ap_sm_event(aq, AP_EVENT_POLL)); + aq->sm_state = AP_SM_STATE_RESET_START; + ap_wait(ap_sm_event(aq, AP_SM_EVENT_POLL)); spin_unlock_bh(&aq->lock); AP_DBF(DBF_INFO, "reset queue=%02x.%04x triggered by user\n", @@ -580,24 +564,150 @@ int rc = 0; spin_lock_bh(&aq->lock); - if (aq->state == AP_STATE_SETIRQ_WAIT) - rc = snprintf(buf, PAGE_SIZE, "Enable Interrupt pending.\n"); + if (aq->sm_state == AP_SM_STATE_SETIRQ_WAIT) + rc = scnprintf(buf, PAGE_SIZE, "Enable Interrupt pending.\n"); else if (aq->interrupt == AP_INTR_ENABLED) - rc = snprintf(buf, PAGE_SIZE, "Interrupts enabled.\n"); + rc = scnprintf(buf, PAGE_SIZE, "Interrupts enabled.\n"); else - rc = snprintf(buf, PAGE_SIZE, "Interrupts disabled.\n"); + rc = scnprintf(buf, PAGE_SIZE, "Interrupts disabled.\n"); spin_unlock_bh(&aq->lock); return rc; } static DEVICE_ATTR_RO(interrupt); +static ssize_t config_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct ap_queue *aq = to_ap_queue(dev); + int rc; + + spin_lock_bh(&aq->lock); + rc = scnprintf(buf, PAGE_SIZE, "%d\n", aq->config ? 1 : 0); + spin_unlock_bh(&aq->lock); + return rc; +} + +static DEVICE_ATTR_RO(config); + +#ifdef CONFIG_ZCRYPT_DEBUG +static ssize_t states_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct ap_queue *aq = to_ap_queue(dev); + int rc = 0; + + spin_lock_bh(&aq->lock); + /* queue device state */ + switch (aq->dev_state) { + case AP_DEV_STATE_UNINITIATED: + rc = scnprintf(buf, PAGE_SIZE, "UNINITIATED\n"); + break; + case AP_DEV_STATE_OPERATING: + rc = scnprintf(buf, PAGE_SIZE, "OPERATING"); + break; + case AP_DEV_STATE_SHUTDOWN: + rc = scnprintf(buf, PAGE_SIZE, "SHUTDOWN"); + break; + case AP_DEV_STATE_ERROR: + rc = scnprintf(buf, PAGE_SIZE, "ERROR"); + break; + default: + rc = scnprintf(buf, PAGE_SIZE, "UNKNOWN"); + } + /* state machine state */ + if (aq->dev_state) { + switch (aq->sm_state) { + case AP_SM_STATE_RESET_START: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [RESET_START]\n"); + break; + case AP_SM_STATE_RESET_WAIT: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [RESET_WAIT]\n"); + break; + case AP_SM_STATE_SETIRQ_WAIT: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [SETIRQ_WAIT]\n"); + break; + case AP_SM_STATE_IDLE: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [IDLE]\n"); + break; + case AP_SM_STATE_WORKING: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [WORKING]\n"); + break; + case AP_SM_STATE_QUEUE_FULL: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [FULL]\n"); + break; + default: + rc += scnprintf(buf + rc, PAGE_SIZE - rc, + " [UNKNOWN]\n"); + } + } + spin_unlock_bh(&aq->lock); + + return rc; +} +static DEVICE_ATTR_RO(states); + +static ssize_t last_err_rc_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct ap_queue *aq = to_ap_queue(dev); + int rc; + + spin_lock_bh(&aq->lock); + rc = aq->last_err_rc; + spin_unlock_bh(&aq->lock); + + switch (rc) { + case AP_RESPONSE_NORMAL: + return scnprintf(buf, PAGE_SIZE, "NORMAL\n"); + case AP_RESPONSE_Q_NOT_AVAIL: + return scnprintf(buf, PAGE_SIZE, "Q_NOT_AVAIL\n"); + case AP_RESPONSE_RESET_IN_PROGRESS: + return scnprintf(buf, PAGE_SIZE, "RESET_IN_PROGRESS\n"); + case AP_RESPONSE_DECONFIGURED: + return scnprintf(buf, PAGE_SIZE, "DECONFIGURED\n"); + case AP_RESPONSE_CHECKSTOPPED: + return scnprintf(buf, PAGE_SIZE, "CHECKSTOPPED\n"); + case AP_RESPONSE_BUSY: + return scnprintf(buf, PAGE_SIZE, "BUSY\n"); + case AP_RESPONSE_INVALID_ADDRESS: + return scnprintf(buf, PAGE_SIZE, "INVALID_ADDRESS\n"); + case AP_RESPONSE_OTHERWISE_CHANGED: + return scnprintf(buf, PAGE_SIZE, "OTHERWISE_CHANGED\n"); + case AP_RESPONSE_Q_FULL: + return scnprintf(buf, PAGE_SIZE, "Q_FULL/NO_PENDING_REPLY\n"); + case AP_RESPONSE_INDEX_TOO_BIG: + return scnprintf(buf, PAGE_SIZE, "INDEX_TOO_BIG\n"); + case AP_RESPONSE_NO_FIRST_PART: + return scnprintf(buf, PAGE_SIZE, "NO_FIRST_PART\n"); + case AP_RESPONSE_MESSAGE_TOO_BIG: + return scnprintf(buf, PAGE_SIZE, "MESSAGE_TOO_BIG\n"); + case AP_RESPONSE_REQ_FAC_NOT_INST: + return scnprintf(buf, PAGE_SIZE, "REQ_FAC_NOT_INST\n"); + default: + return scnprintf(buf, PAGE_SIZE, "response code %d\n", rc); + } +} +static DEVICE_ATTR_RO(last_err_rc); +#endif + static struct attribute *ap_queue_dev_attrs[] = { &dev_attr_request_count.attr, &dev_attr_requestq_count.attr, &dev_attr_pendingq_count.attr, &dev_attr_reset.attr, &dev_attr_interrupt.attr, + &dev_attr_config.attr, +#ifdef CONFIG_ZCRYPT_DEBUG + &dev_attr_states.attr, + &dev_attr_last_err_rc.attr, +#endif NULL }; @@ -619,11 +729,10 @@ { struct ap_queue *aq = to_ap_queue(dev); - if (!list_empty(&aq->list)) { - spin_lock_bh(&ap_list_lock); - list_del_init(&aq->list); - spin_unlock_bh(&ap_list_lock); - } + spin_lock_bh(&ap_queues_lock); + hash_del(&aq->hnode); + spin_unlock_bh(&ap_queues_lock); + kfree(aq); } @@ -638,10 +747,8 @@ aq->ap_dev.device.type = &ap_queue_type; aq->ap_dev.device_type = device_type; aq->qid = qid; - aq->state = AP_STATE_UNBOUND; aq->interrupt = AP_INTR_DISABLED; spin_lock_init(&aq->lock); - INIT_LIST_HEAD(&aq->list); INIT_LIST_HEAD(&aq->pendingq); INIT_LIST_HEAD(&aq->requestq); timer_setup(&aq->timeout, ap_request_timeout, 0); @@ -654,7 +761,7 @@ aq->reply = reply; spin_lock_bh(&aq->lock); - ap_wait(ap_sm_event(aq, AP_EVENT_POLL)); + ap_wait(ap_sm_event(aq, AP_SM_EVENT_POLL)); spin_unlock_bh(&aq->lock); } EXPORT_SYMBOL(ap_queue_init_reply); @@ -664,22 +771,30 @@ * @aq: The AP device to queue the message to * @ap_msg: The message that is to be added */ -void ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg) +int ap_queue_message(struct ap_queue *aq, struct ap_message *ap_msg) { - /* For asynchronous message handling a valid receive-callback - * is required. - */ + int rc = 0; + + /* msg needs to have a valid receive-callback */ BUG_ON(!ap_msg->receive); spin_lock_bh(&aq->lock); - /* Queue the message. */ - list_add_tail(&ap_msg->list, &aq->requestq); - aq->requestq_count++; - aq->total_request_count++; - atomic64_inc(&aq->card->total_request_count); + + /* only allow to queue new messages if device state is ok */ + if (aq->dev_state == AP_DEV_STATE_OPERATING) { + list_add_tail(&ap_msg->list, &aq->requestq); + aq->requestq_count++; + aq->total_request_count++; + atomic64_inc(&aq->card->total_request_count); + } else + rc = -ENODEV; + /* Send/receive as many request from the queue as possible. */ - ap_wait(ap_sm_event_loop(aq, AP_EVENT_POLL)); + ap_wait(ap_sm_event_loop(aq, AP_SM_EVENT_POLL)); + spin_unlock_bh(&aq->lock); + + return rc; } EXPORT_SYMBOL(ap_queue_message); @@ -750,8 +865,8 @@ spin_lock_bh(&aq->lock); /* flush queue */ __ap_flush_queue(aq); - /* set REMOVE state to prevent new messages are queued in */ - aq->state = AP_STATE_REMOVE; + /* move queue device state to SHUTDOWN in progress */ + aq->dev_state = AP_DEV_STATE_SHUTDOWN; spin_unlock_bh(&aq->lock); del_timer_sync(&aq->timeout); } @@ -759,23 +874,23 @@ void ap_queue_remove(struct ap_queue *aq) { /* - * all messages have been flushed and the state is - * AP_STATE_REMOVE. Now reset with zero which also - * clears the irq registration and move the state - * to AP_STATE_UNBOUND to signal that this queue - * is not used by any driver currently. + * all messages have been flushed and the device state + * is SHUTDOWN. Now reset with zero which also clears + * the irq registration and move the device state + * to the initial value AP_DEV_STATE_UNINITIATED. */ spin_lock_bh(&aq->lock); ap_zapq(aq->qid); - aq->state = AP_STATE_UNBOUND; + aq->dev_state = AP_DEV_STATE_UNINITIATED; spin_unlock_bh(&aq->lock); } void ap_queue_init_state(struct ap_queue *aq) { spin_lock_bh(&aq->lock); - aq->state = AP_STATE_RESET_START; - ap_wait(ap_sm_event(aq, AP_EVENT_POLL)); + aq->dev_state = AP_DEV_STATE_OPERATING; + aq->sm_state = AP_SM_STATE_RESET_START; + ap_wait(ap_sm_event(aq, AP_SM_EVENT_POLL)); spin_unlock_bh(&aq->lock); } EXPORT_SYMBOL(ap_queue_init_state); diff -u linux-azure-5.4.0/drivers/s390/crypto/pkey_api.c linux-azure-5.4.0/drivers/s390/crypto/pkey_api.c --- linux-azure-5.4.0/drivers/s390/crypto/pkey_api.c +++ linux-azure-5.4.0/drivers/s390/crypto/pkey_api.c @@ -77,7 +77,7 @@ u8 res1[3]; u32 keytype; /* key type, one of the PKEY_KEYTYPE values */ u32 len; /* bytes actually stored in clearkey[] */ - u8 clearkey[0]; /* clear key value */ + u8 clearkey[]; /* clear key value */ } __packed; /* @@ -663,13 +663,14 @@ *ksize = (enum pkey_key_size) t->bitsize; rc = cca_findcard2(&_apqns, &_nr_apqns, *cardnr, *domain, - ZCRYPT_CEX3C, t->mkvp, 0, 1); + ZCRYPT_CEX3C, AES_MK_SET, t->mkvp, 0, 1); if (rc == 0 && flags) *flags = PKEY_FLAGS_MATCH_CUR_MKVP; if (rc == -ENODEV) { rc = cca_findcard2(&_apqns, &_nr_apqns, *cardnr, *domain, - ZCRYPT_CEX3C, 0, t->mkvp, 1); + ZCRYPT_CEX3C, AES_MK_SET, + 0, t->mkvp, 1); if (rc == 0 && flags) *flags = PKEY_FLAGS_MATCH_ALT_MKVP; } @@ -699,13 +700,14 @@ } rc = cca_findcard2(&_apqns, &_nr_apqns, *cardnr, *domain, - ZCRYPT_CEX6, t->mkvp0, 0, 1); + ZCRYPT_CEX6, AES_MK_SET, t->mkvp0, 0, 1); if (rc == 0 && flags) *flags = PKEY_FLAGS_MATCH_CUR_MKVP; if (rc == -ENODEV) { rc = cca_findcard2(&_apqns, &_nr_apqns, *cardnr, *domain, - ZCRYPT_CEX6, 0, t->mkvp0, 1); + ZCRYPT_CEX6, AES_MK_SET, + 0, t->mkvp0, 1); if (rc == 0 && flags) *flags = PKEY_FLAGS_MATCH_ALT_MKVP; } @@ -865,7 +867,8 @@ return -EINVAL; } rc = cca_findcard2(&_apqns, &_nr_apqns, 0xFFFF, 0xFFFF, - minhwtype, cur_mkvp, old_mkvp, 1); + minhwtype, AES_MK_SET, + cur_mkvp, old_mkvp, 1); if (rc) goto out; } else @@ -902,7 +905,8 @@ if (ktype == PKEY_TYPE_CCA_CIPHER) minhwtype = ZCRYPT_CEX6; rc = cca_findcard2(&_apqns, &_nr_apqns, 0xFFFF, 0xFFFF, - minhwtype, cur_mkvp, old_mkvp, 1); + minhwtype, AES_MK_SET, + cur_mkvp, old_mkvp, 1); if (rc) goto out; } else if (ktype == PKEY_TYPE_EP11) { @@ -1591,7 +1595,7 @@ /* build a list of apqns able to generate an cipher key */ rc = cca_findcard2(&apqns, &nr_apqns, 0xFFFF, 0xFFFF, - ZCRYPT_CEX6, 0, 0, 0); + ZCRYPT_CEX6, 0, 0, 0, 0); if (rc) return rc; diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #define CREATE_TRACE_POINTS @@ -602,13 +603,13 @@ unsigned int pref_weight) { if (!pref_zc) - return false; + return true; weight += atomic_read(&zc->load); pref_weight += atomic_read(&pref_zc->load); if (weight == pref_weight) - return atomic64_read(&zc->card->total_request_count) > + return atomic64_read(&zc->card->total_request_count) < atomic64_read(&pref_zc->card->total_request_count); - return weight > pref_weight; + return weight < pref_weight; } static inline bool zcrypt_queue_compare(struct zcrypt_queue *zq, @@ -617,30 +618,39 @@ unsigned int pref_weight) { if (!pref_zq) - return false; + return true; weight += atomic_read(&zq->load); pref_weight += atomic_read(&pref_zq->load); if (weight == pref_weight) - return zq->queue->total_request_count > + return zq->queue->total_request_count < pref_zq->queue->total_request_count; - return weight > pref_weight; + return weight < pref_weight; } /* * zcrypt ioctls. */ static long zcrypt_rsa_modexpo(struct ap_perms *perms, + struct zcrypt_track *tr, struct ica_rsa_modexpo *mex) { struct zcrypt_card *zc, *pref_zc; struct zcrypt_queue *zq, *pref_zq; - unsigned int weight, pref_weight; + struct ap_message ap_msg; + unsigned int wgt = 0, pref_wgt = 0; unsigned int func_code; - int qid = 0, rc = -ENODEV; + int cpen, qpen, qid = 0, rc = -ENODEV; struct module *mod; trace_s390_zcrypt_req(mex, TP_ICARSAMODEXPO); + ap_init_message(&ap_msg); + +#ifdef CONFIG_ZCRYPT_DEBUG + if (tr && tr->fi.cmd) + ap_msg.fi.cmd = tr->fi.cmd; +#endif + if (mex->outputdatalength < mex->inputdatalength) { func_code = 0; rc = -EINVAL; @@ -662,8 +672,9 @@ pref_zq = NULL; spin_lock(&zcrypt_list_lock); for_each_zcrypt_card(zc) { - /* Check for online accelarator and CCA cards */ - if (!zc->online || !(zc->card->functions & 0x18000000)) + /* Check for useable accelarator or CCA card */ + if (!zc->online || !zc->card->config || + !(zc->card->functions & 0x18000000)) continue; /* Check for size limits */ if (zc->min_mod_size > mex->inputdatalength || @@ -673,26 +684,35 @@ if (!zcrypt_check_card(perms, zc->card->id)) continue; /* get weight index of the card device */ - weight = zc->speed_rating[func_code]; - if (zcrypt_card_compare(zc, pref_zc, weight, pref_weight)) + wgt = zc->speed_rating[func_code]; + /* penalty if this msg was previously sent via this card */ + cpen = (tr && tr->again_counter && tr->last_qid && + AP_QID_CARD(tr->last_qid) == zc->card->id) ? + TRACK_AGAIN_CARD_WEIGHT_PENALTY : 0; + if (!zcrypt_card_compare(zc, pref_zc, wgt + cpen, pref_wgt)) continue; for_each_zcrypt_queue(zq, zc) { - /* check if device is online and eligible */ - if (!zq->online || !zq->ops->rsa_modexpo) + /* check if device is useable and eligible */ + if (!zq->online || !zq->ops->rsa_modexpo || + !zq->queue->config) continue; /* check if device node has admission for this queue */ if (!zcrypt_check_queue(perms, AP_QID_QUEUE(zq->queue->qid))) continue; - if (zcrypt_queue_compare(zq, pref_zq, - weight, pref_weight)) + /* penalty if the msg was previously sent at this qid */ + qpen = (tr && tr->again_counter && tr->last_qid && + tr->last_qid == zq->queue->qid) ? + TRACK_AGAIN_QUEUE_WEIGHT_PENALTY : 0; + if (!zcrypt_queue_compare(zq, pref_zq, + wgt + cpen + qpen, pref_wgt)) continue; pref_zc = zc; pref_zq = zq; - pref_weight = weight; + pref_wgt = wgt + cpen + qpen; } } - pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, weight); + pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, wgt); spin_unlock(&zcrypt_list_lock); if (!pref_zq) { @@ -701,30 +721,44 @@ } qid = pref_zq->queue->qid; - rc = pref_zq->ops->rsa_modexpo(pref_zq, mex); + rc = pref_zq->ops->rsa_modexpo(pref_zq, mex, &ap_msg); spin_lock(&zcrypt_list_lock); - zcrypt_drop_queue(pref_zc, pref_zq, mod, weight); + zcrypt_drop_queue(pref_zc, pref_zq, mod, wgt); spin_unlock(&zcrypt_list_lock); out: + ap_release_message(&ap_msg); + if (tr) { + tr->last_rc = rc; + tr->last_qid = qid; + } trace_s390_zcrypt_rep(mex, func_code, rc, AP_QID_CARD(qid), AP_QID_QUEUE(qid)); return rc; } static long zcrypt_rsa_crt(struct ap_perms *perms, + struct zcrypt_track *tr, struct ica_rsa_modexpo_crt *crt) { struct zcrypt_card *zc, *pref_zc; struct zcrypt_queue *zq, *pref_zq; - unsigned int weight, pref_weight; + struct ap_message ap_msg; + unsigned int wgt = 0, pref_wgt = 0; unsigned int func_code; - int qid = 0, rc = -ENODEV; + int cpen, qpen, qid = 0, rc = -ENODEV; struct module *mod; trace_s390_zcrypt_req(crt, TP_ICARSACRT); + ap_init_message(&ap_msg); + +#ifdef CONFIG_ZCRYPT_DEBUG + if (tr && tr->fi.cmd) + ap_msg.fi.cmd = tr->fi.cmd; +#endif + if (crt->outputdatalength < crt->inputdatalength) { func_code = 0; rc = -EINVAL; @@ -746,8 +780,9 @@ pref_zq = NULL; spin_lock(&zcrypt_list_lock); for_each_zcrypt_card(zc) { - /* Check for online accelarator and CCA cards */ - if (!zc->online || !(zc->card->functions & 0x18000000)) + /* Check for useable accelarator or CCA card */ + if (!zc->online || !zc->card->config || + !(zc->card->functions & 0x18000000)) continue; /* Check for size limits */ if (zc->min_mod_size > crt->inputdatalength || @@ -757,26 +792,35 @@ if (!zcrypt_check_card(perms, zc->card->id)) continue; /* get weight index of the card device */ - weight = zc->speed_rating[func_code]; - if (zcrypt_card_compare(zc, pref_zc, weight, pref_weight)) + wgt = zc->speed_rating[func_code]; + /* penalty if this msg was previously sent via this card */ + cpen = (tr && tr->again_counter && tr->last_qid && + AP_QID_CARD(tr->last_qid) == zc->card->id) ? + TRACK_AGAIN_CARD_WEIGHT_PENALTY : 0; + if (!zcrypt_card_compare(zc, pref_zc, wgt + cpen, pref_wgt)) continue; for_each_zcrypt_queue(zq, zc) { - /* check if device is online and eligible */ - if (!zq->online || !zq->ops->rsa_modexpo_crt) + /* check if device is useable and eligible */ + if (!zq->online || !zq->ops->rsa_modexpo_crt || + !zq->queue->config) continue; /* check if device node has admission for this queue */ if (!zcrypt_check_queue(perms, AP_QID_QUEUE(zq->queue->qid))) continue; - if (zcrypt_queue_compare(zq, pref_zq, - weight, pref_weight)) + /* penalty if the msg was previously sent at this qid */ + qpen = (tr && tr->again_counter && tr->last_qid && + tr->last_qid == zq->queue->qid) ? + TRACK_AGAIN_QUEUE_WEIGHT_PENALTY : 0; + if (!zcrypt_queue_compare(zq, pref_zq, + wgt + cpen + qpen, pref_wgt)) continue; pref_zc = zc; pref_zq = zq; - pref_weight = weight; + pref_wgt = wgt + cpen + qpen; } } - pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, weight); + pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, wgt); spin_unlock(&zcrypt_list_lock); if (!pref_zq) { @@ -785,35 +829,52 @@ } qid = pref_zq->queue->qid; - rc = pref_zq->ops->rsa_modexpo_crt(pref_zq, crt); + rc = pref_zq->ops->rsa_modexpo_crt(pref_zq, crt, &ap_msg); spin_lock(&zcrypt_list_lock); - zcrypt_drop_queue(pref_zc, pref_zq, mod, weight); + zcrypt_drop_queue(pref_zc, pref_zq, mod, wgt); spin_unlock(&zcrypt_list_lock); out: + ap_release_message(&ap_msg); + if (tr) { + tr->last_rc = rc; + tr->last_qid = qid; + } trace_s390_zcrypt_rep(crt, func_code, rc, AP_QID_CARD(qid), AP_QID_QUEUE(qid)); return rc; } -static long _zcrypt_send_cprb(struct ap_perms *perms, +static long _zcrypt_send_cprb(bool userspace, struct ap_perms *perms, + struct zcrypt_track *tr, struct ica_xcRB *xcRB) { struct zcrypt_card *zc, *pref_zc; struct zcrypt_queue *zq, *pref_zq; struct ap_message ap_msg; - unsigned int weight, pref_weight; + unsigned int wgt = 0, pref_wgt = 0; unsigned int func_code; unsigned short *domain, tdom; - int qid = 0, rc = -ENODEV; + int cpen, qpen, qid = 0, rc = -ENODEV; struct module *mod; trace_s390_zcrypt_req(xcRB, TB_ZSECSENDCPRB); xcRB->status = 0; ap_init_message(&ap_msg); - rc = get_cprb_fc(xcRB, &ap_msg, &func_code, &domain); + +#ifdef CONFIG_ZCRYPT_DEBUG + if (tr && tr->fi.cmd) + ap_msg.fi.cmd = tr->fi.cmd; + if (tr && tr->fi.action == AP_FI_ACTION_CCA_AGENT_FF) { + ZCRYPT_DBF_WARN("%s fi cmd 0x%04x: forcing invalid agent_ID 'FF'\n", + __func__, tr->fi.cmd); + xcRB->agent_ID = 0x4646; + } +#endif + + rc = get_cprb_fc(userspace, xcRB, &ap_msg, &func_code, &domain); if (rc) goto out; @@ -822,7 +883,7 @@ * domain but a control only domain, use the default domain as target. */ tdom = *domain; - if (tdom >= 0 && tdom < AP_DOMAINS && + if (tdom < AP_DOMAINS && !ap_test_config_usage_domain(tdom) && ap_test_config_ctrl_domain(tdom) && ap_domain_index >= 0) @@ -832,24 +893,33 @@ pref_zq = NULL; spin_lock(&zcrypt_list_lock); for_each_zcrypt_card(zc) { - /* Check for online CCA cards */ - if (!zc->online || !(zc->card->functions & 0x10000000)) + /* Check for useable CCA card */ + if (!zc->online || !zc->card->config || + !(zc->card->functions & 0x10000000)) continue; /* Check for user selected CCA card */ if (xcRB->user_defined != AUTOSELECT && xcRB->user_defined != zc->card->id) continue; + /* check if request size exceeds card max msg size */ + if (ap_msg.len > zc->card->maxmsgsize) + continue; /* check if device node has admission for this card */ if (!zcrypt_check_card(perms, zc->card->id)) continue; /* get weight index of the card device */ - weight = speed_idx_cca(func_code) * zc->speed_rating[SECKEY]; - if (zcrypt_card_compare(zc, pref_zc, weight, pref_weight)) + wgt = speed_idx_cca(func_code) * zc->speed_rating[SECKEY]; + /* penalty if this msg was previously sent via this card */ + cpen = (tr && tr->again_counter && tr->last_qid && + AP_QID_CARD(tr->last_qid) == zc->card->id) ? + TRACK_AGAIN_CARD_WEIGHT_PENALTY : 0; + if (!zcrypt_card_compare(zc, pref_zc, wgt + cpen, pref_wgt)) continue; for_each_zcrypt_queue(zq, zc) { - /* check if device is online and eligible */ + /* check for device useable and eligible */ if (!zq->online || !zq->ops->send_cprb || + !zq->queue->config || (tdom != AUTOSEL_DOM && tdom != AP_QID_QUEUE(zq->queue->qid))) continue; @@ -857,15 +927,19 @@ if (!zcrypt_check_queue(perms, AP_QID_QUEUE(zq->queue->qid))) continue; - if (zcrypt_queue_compare(zq, pref_zq, - weight, pref_weight)) + /* penalty if the msg was previously sent at this qid */ + qpen = (tr && tr->again_counter && tr->last_qid && + tr->last_qid == zq->queue->qid) ? + TRACK_AGAIN_QUEUE_WEIGHT_PENALTY : 0; + if (!zcrypt_queue_compare(zq, pref_zq, + wgt + cpen + qpen, pref_wgt)) continue; pref_zc = zc; pref_zq = zq; - pref_weight = weight; + pref_wgt = wgt + cpen + qpen; } } - pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, weight); + pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, wgt); spin_unlock(&zcrypt_list_lock); if (!pref_zq) { @@ -878,14 +952,26 @@ if (*domain == AUTOSEL_DOM) *domain = AP_QID_QUEUE(qid); - rc = pref_zq->ops->send_cprb(pref_zq, xcRB, &ap_msg); +#ifdef CONFIG_ZCRYPT_DEBUG + if (tr && tr->fi.action == AP_FI_ACTION_CCA_DOM_INVAL) { + ZCRYPT_DBF_WARN("%s fi cmd 0x%04x: forcing invalid domain\n", + __func__, tr->fi.cmd); + *domain = 99; + } +#endif + + rc = pref_zq->ops->send_cprb(userspace, pref_zq, xcRB, &ap_msg); spin_lock(&zcrypt_list_lock); - zcrypt_drop_queue(pref_zc, pref_zq, mod, weight); + zcrypt_drop_queue(pref_zc, pref_zq, mod, wgt); spin_unlock(&zcrypt_list_lock); out: ap_release_message(&ap_msg); + if (tr) { + tr->last_rc = rc; + tr->last_qid = qid; + } trace_s390_zcrypt_rep(xcRB, func_code, rc, AP_QID_CARD(qid), AP_QID_QUEUE(qid)); return rc; @@ -893,7 +979,7 @@ long zcrypt_send_cprb(struct ica_xcRB *xcRB) { - return _zcrypt_send_cprb(&ap_perms, xcRB); + return _zcrypt_send_cprb(false, &ap_perms, NULL, xcRB); } EXPORT_SYMBOL(zcrypt_send_cprb); @@ -924,23 +1010,29 @@ return false; } -static long _zcrypt_send_ep11_cprb(struct ap_perms *perms, +static long _zcrypt_send_ep11_cprb(bool userspace, struct ap_perms *perms, + struct zcrypt_track *tr, struct ep11_urb *xcrb) { struct zcrypt_card *zc, *pref_zc; struct zcrypt_queue *zq, *pref_zq; struct ep11_target_dev *targets; unsigned short target_num; - unsigned int weight, pref_weight; + unsigned int wgt = 0, pref_wgt = 0; unsigned int func_code; struct ap_message ap_msg; - int qid = 0, rc = -ENODEV; + int cpen, qpen, qid = 0, rc = -ENODEV; struct module *mod; trace_s390_zcrypt_req(xcrb, TP_ZSENDEP11CPRB); ap_init_message(&ap_msg); +#ifdef CONFIG_ZCRYPT_DEBUG + if (tr && tr->fi.cmd) + ap_msg.fi.cmd = tr->fi.cmd; +#endif + target_num = (unsigned short) xcrb->targets_num; /* empty list indicates autoselect (all available targets) */ @@ -956,7 +1048,7 @@ } uptr = (struct ep11_target_dev __force __user *) xcrb->targets; - if (copy_from_user(targets, uptr, + if (z_copy_from_user(userspace, targets, uptr, target_num * sizeof(*targets))) { func_code = 0; rc = -EFAULT; @@ -964,7 +1056,7 @@ } } - rc = get_ep11cprb_fc(xcrb, &ap_msg, &func_code); + rc = get_ep11cprb_fc(userspace, xcrb, &ap_msg, &func_code); if (rc) goto out_free; @@ -972,24 +1064,33 @@ pref_zq = NULL; spin_lock(&zcrypt_list_lock); for_each_zcrypt_card(zc) { - /* Check for online EP11 cards */ - if (!zc->online || !(zc->card->functions & 0x04000000)) + /* Check for useable EP11 card */ + if (!zc->online || !zc->card->config || + !(zc->card->functions & 0x04000000)) continue; /* Check for user selected EP11 card */ if (targets && !is_desired_ep11_card(zc->card->id, target_num, targets)) continue; + /* check if request size exceeds card max msg size */ + if (ap_msg.len > zc->card->maxmsgsize) + continue; /* check if device node has admission for this card */ if (!zcrypt_check_card(perms, zc->card->id)) continue; /* get weight index of the card device */ - weight = speed_idx_ep11(func_code) * zc->speed_rating[SECKEY]; - if (zcrypt_card_compare(zc, pref_zc, weight, pref_weight)) + wgt = speed_idx_ep11(func_code) * zc->speed_rating[SECKEY]; + /* penalty if this msg was previously sent via this card */ + cpen = (tr && tr->again_counter && tr->last_qid && + AP_QID_CARD(tr->last_qid) == zc->card->id) ? + TRACK_AGAIN_CARD_WEIGHT_PENALTY : 0; + if (!zcrypt_card_compare(zc, pref_zc, wgt + cpen, pref_wgt)) continue; for_each_zcrypt_queue(zq, zc) { - /* check if device is online and eligible */ + /* check if device is useable and eligible */ if (!zq->online || !zq->ops->send_ep11_cprb || + !zq->queue->config || (targets && !is_desired_ep11_queue(zq->queue->qid, target_num, targets))) @@ -998,15 +1099,19 @@ if (!zcrypt_check_queue(perms, AP_QID_QUEUE(zq->queue->qid))) continue; - if (zcrypt_queue_compare(zq, pref_zq, - weight, pref_weight)) + /* penalty if the msg was previously sent at this qid */ + qpen = (tr && tr->again_counter && tr->last_qid && + tr->last_qid == zq->queue->qid) ? + TRACK_AGAIN_QUEUE_WEIGHT_PENALTY : 0; + if (!zcrypt_queue_compare(zq, pref_zq, + wgt + cpen + qpen, pref_wgt)) continue; pref_zc = zc; pref_zq = zq; - pref_weight = weight; + pref_wgt = wgt + cpen + qpen; } } - pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, weight); + pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, wgt); spin_unlock(&zcrypt_list_lock); if (!pref_zq) { @@ -1015,16 +1120,20 @@ } qid = pref_zq->queue->qid; - rc = pref_zq->ops->send_ep11_cprb(pref_zq, xcrb, &ap_msg); + rc = pref_zq->ops->send_ep11_cprb(userspace, pref_zq, xcrb, &ap_msg); spin_lock(&zcrypt_list_lock); - zcrypt_drop_queue(pref_zc, pref_zq, mod, weight); + zcrypt_drop_queue(pref_zc, pref_zq, mod, wgt); spin_unlock(&zcrypt_list_lock); out_free: kfree(targets); out: ap_release_message(&ap_msg); + if (tr) { + tr->last_rc = rc; + tr->last_qid = qid; + } trace_s390_zcrypt_rep(xcrb, func_code, rc, AP_QID_CARD(qid), AP_QID_QUEUE(qid)); return rc; @@ -1032,7 +1141,7 @@ long zcrypt_send_ep11_cprb(struct ep11_urb *xcrb) { - return _zcrypt_send_ep11_cprb(&ap_perms, xcrb); + return _zcrypt_send_ep11_cprb(false, &ap_perms, NULL, xcrb); } EXPORT_SYMBOL(zcrypt_send_ep11_cprb); @@ -1040,7 +1149,7 @@ { struct zcrypt_card *zc, *pref_zc; struct zcrypt_queue *zq, *pref_zq; - unsigned int weight, pref_weight; + unsigned int wgt = 0, pref_wgt = 0; unsigned int func_code; struct ap_message ap_msg; unsigned int domain; @@ -1058,26 +1167,27 @@ pref_zq = NULL; spin_lock(&zcrypt_list_lock); for_each_zcrypt_card(zc) { - /* Check for online CCA cards */ - if (!zc->online || !(zc->card->functions & 0x10000000)) + /* Check for useable CCA card */ + if (!zc->online || !zc->card->config || + !(zc->card->functions & 0x10000000)) continue; /* get weight index of the card device */ - weight = zc->speed_rating[func_code]; - if (zcrypt_card_compare(zc, pref_zc, weight, pref_weight)) + wgt = zc->speed_rating[func_code]; + if (!zcrypt_card_compare(zc, pref_zc, wgt, pref_wgt)) continue; for_each_zcrypt_queue(zq, zc) { - /* check if device is online and eligible */ - if (!zq->online || !zq->ops->rng) + /* check if device is useable and eligible */ + if (!zq->online || !zq->ops->rng || + !zq->queue->config) continue; - if (zcrypt_queue_compare(zq, pref_zq, - weight, pref_weight)) + if (!zcrypt_queue_compare(zq, pref_zq, wgt, pref_wgt)) continue; pref_zc = zc; pref_zq = zq; - pref_weight = weight; + pref_wgt = wgt; } } - pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, weight); + pref_zq = zcrypt_pick_queue(pref_zc, pref_zq, &mod, wgt); spin_unlock(&zcrypt_list_lock); if (!pref_zq) { @@ -1089,7 +1199,7 @@ rc = pref_zq->ops->rng(pref_zq, buffer, &ap_msg); spin_lock(&zcrypt_list_lock); - zcrypt_drop_queue(pref_zc, pref_zq, mod, weight); + zcrypt_drop_queue(pref_zc, pref_zq, mod, wgt); spin_unlock(&zcrypt_list_lock); out: @@ -1298,99 +1408,207 @@ return requestq_count; } -static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd, - unsigned long arg) +static int icarsamodexpo_ioctl(struct ap_perms *perms, unsigned long arg) { int rc; - struct ap_perms *perms = - (struct ap_perms *) filp->private_data; + struct zcrypt_track tr; + struct ica_rsa_modexpo mex; + struct ica_rsa_modexpo __user *umex = (void __user *) arg; - rc = zcrypt_check_ioctl(perms, cmd); - if (rc) - return rc; + memset(&tr, 0, sizeof(tr)); + if (copy_from_user(&mex, umex, sizeof(mex))) + return -EFAULT; - switch (cmd) { - case ICARSAMODEXPO: { - struct ica_rsa_modexpo __user *umex = (void __user *) arg; - struct ica_rsa_modexpo mex; +#ifdef CONFIG_ZCRYPT_DEBUG + if (mex.inputdatalength & (1U << 31)) { + if (!capable(CAP_SYS_ADMIN)) + return -EPERM; + tr.fi.cmd = (u16)(mex.inputdatalength >> 16); + } + mex.inputdatalength &= 0x0000FFFF; +#endif - if (copy_from_user(&mex, umex, sizeof(mex))) - return -EFAULT; + do { + rc = zcrypt_rsa_modexpo(perms, &tr, &mex); + if (rc == -EAGAIN) + tr.again_counter++; +#ifdef CONFIG_ZCRYPT_DEBUG + if (rc == -EAGAIN && (tr.fi.flags & AP_FI_FLAG_NO_RETRY)) + break; +#endif + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + /* on failure: retry once again after a requested rescan */ + if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = zcrypt_rsa_modexpo(perms, &mex); - } while (rc == -EAGAIN); - /* on failure: retry once again after a requested rescan */ - if ((rc == -ENODEV) && (zcrypt_process_rescan())) - do { - rc = zcrypt_rsa_modexpo(perms, &mex); - } while (rc == -EAGAIN); - if (rc) { - ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSAMODEXPO rc=%d\n", rc); - return rc; - } - return put_user(mex.outputdatalength, &umex->outputdatalength); + rc = zcrypt_rsa_modexpo(perms, &tr, &mex); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; + if (rc) { + ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSAMODEXPO rc=%d\n", rc); + return rc; } - case ICARSACRT: { - struct ica_rsa_modexpo_crt __user *ucrt = (void __user *) arg; - struct ica_rsa_modexpo_crt crt; + return put_user(mex.outputdatalength, &umex->outputdatalength); +} - if (copy_from_user(&crt, ucrt, sizeof(crt))) - return -EFAULT; - do { - rc = zcrypt_rsa_crt(perms, &crt); - } while (rc == -EAGAIN); - /* on failure: retry once again after a requested rescan */ - if ((rc == -ENODEV) && (zcrypt_process_rescan())) - do { - rc = zcrypt_rsa_crt(perms, &crt); - } while (rc == -EAGAIN); - if (rc) { - ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSACRT rc=%d\n", rc); - return rc; - } - return put_user(crt.outputdatalength, &ucrt->outputdatalength); +static int icarsacrt_ioctl(struct ap_perms *perms, unsigned long arg) +{ + int rc; + struct zcrypt_track tr; + struct ica_rsa_modexpo_crt crt; + struct ica_rsa_modexpo_crt __user *ucrt = (void __user *) arg; + + memset(&tr, 0, sizeof(tr)); + if (copy_from_user(&crt, ucrt, sizeof(crt))) + return -EFAULT; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (crt.inputdatalength & (1U << 31)) { + if (!capable(CAP_SYS_ADMIN)) + return -EPERM; + tr.fi.cmd = (u16)(crt.inputdatalength >> 16); } - case ZSECSENDCPRB: { - struct ica_xcRB __user *uxcRB = (void __user *) arg; - struct ica_xcRB xcRB; + crt.inputdatalength &= 0x0000FFFF; +#endif - if (copy_from_user(&xcRB, uxcRB, sizeof(xcRB))) - return -EFAULT; + do { + rc = zcrypt_rsa_crt(perms, &tr, &crt); + if (rc == -EAGAIN) + tr.again_counter++; +#ifdef CONFIG_ZCRYPT_DEBUG + if (rc == -EAGAIN && (tr.fi.flags & AP_FI_FLAG_NO_RETRY)) + break; +#endif + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + /* on failure: retry once again after a requested rescan */ + if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = _zcrypt_send_cprb(perms, &xcRB); - } while (rc == -EAGAIN); - /* on failure: retry once again after a requested rescan */ - if ((rc == -ENODEV) && (zcrypt_process_rescan())) - do { - rc = _zcrypt_send_cprb(perms, &xcRB); - } while (rc == -EAGAIN); - if (rc) - ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDCPRB rc=%d status=0x%x\n", - rc, xcRB.status); - if (copy_to_user(uxcRB, &xcRB, sizeof(xcRB))) - return -EFAULT; + rc = zcrypt_rsa_crt(perms, &tr, &crt); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; + if (rc) { + ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSACRT rc=%d\n", rc); return rc; } - case ZSENDEP11CPRB: { - struct ep11_urb __user *uxcrb = (void __user *)arg; - struct ep11_urb xcrb; + return put_user(crt.outputdatalength, &ucrt->outputdatalength); +} + +static int zsecsendcprb_ioctl(struct ap_perms *perms, unsigned long arg) +{ + int rc; + struct ica_xcRB xcRB; + struct zcrypt_track tr; + struct ica_xcRB __user *uxcRB = (void __user *) arg; + + memset(&tr, 0, sizeof(tr)); + if (copy_from_user(&xcRB, uxcRB, sizeof(xcRB))) + return -EFAULT; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (xcRB.status & (1U << 31)) { + if (!capable(CAP_SYS_ADMIN)) + return -EPERM; + tr.fi.cmd = (u16)(xcRB.status >> 16); + } + xcRB.status &= 0x0000FFFF; +#endif - if (copy_from_user(&xcrb, uxcrb, sizeof(xcrb))) - return -EFAULT; + do { + rc = _zcrypt_send_cprb(true, perms, &tr, &xcRB); + if (rc == -EAGAIN) + tr.again_counter++; +#ifdef CONFIG_ZCRYPT_DEBUG + if (rc == -EAGAIN && (tr.fi.flags & AP_FI_FLAG_NO_RETRY)) + break; +#endif + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + /* on failure: retry once again after a requested rescan */ + if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = _zcrypt_send_ep11_cprb(perms, &xcrb); - } while (rc == -EAGAIN); - /* on failure: retry once again after a requested rescan */ - if ((rc == -ENODEV) && (zcrypt_process_rescan())) - do { - rc = _zcrypt_send_ep11_cprb(perms, &xcrb); - } while (rc == -EAGAIN); - if (rc) - ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDEP11CPRB rc=%d\n", rc); - if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb))) - return -EFAULT; - return rc; + rc = _zcrypt_send_cprb(true, perms, &tr, &xcRB); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; + if (rc) + ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDCPRB rc=%d status=0x%x\n", + rc, xcRB.status); + if (copy_to_user(uxcRB, &xcRB, sizeof(xcRB))) + return -EFAULT; + return rc; +} + +static int zsendep11cprb_ioctl(struct ap_perms *perms, unsigned long arg) +{ + int rc; + struct ep11_urb xcrb; + struct zcrypt_track tr; + struct ep11_urb __user *uxcrb = (void __user *)arg; + + memset(&tr, 0, sizeof(tr)); + if (copy_from_user(&xcrb, uxcrb, sizeof(xcrb))) + return -EFAULT; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (xcrb.req_len & (1ULL << 63)) { + if (!capable(CAP_SYS_ADMIN)) + return -EPERM; + tr.fi.cmd = (u16)(xcrb.req_len >> 48); } + xcrb.req_len &= 0x0000FFFFFFFFFFFFULL; +#endif + + do { + rc = _zcrypt_send_ep11_cprb(true, perms, &tr, &xcrb); + if (rc == -EAGAIN) + tr.again_counter++; +#ifdef CONFIG_ZCRYPT_DEBUG + if (rc == -EAGAIN && (tr.fi.flags & AP_FI_FLAG_NO_RETRY)) + break; +#endif + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + /* on failure: retry once again after a requested rescan */ + if ((rc == -ENODEV) && (zcrypt_process_rescan())) + do { + rc = _zcrypt_send_ep11_cprb(true, perms, &tr, &xcrb); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; + if (rc) + ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDEP11CPRB rc=%d\n", rc); + if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb))) + return -EFAULT; + return rc; +} + +static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd, + unsigned long arg) +{ + int rc; + struct ap_perms *perms = + (struct ap_perms *) filp->private_data; + + rc = zcrypt_check_ioctl(perms, cmd); + if (rc) + return rc; + + switch (cmd) { + case ICARSAMODEXPO: + return icarsamodexpo_ioctl(perms, arg); + case ICARSACRT: + return icarsacrt_ioctl(perms, arg); + case ZSECSENDCPRB: + return zsecsendcprb_ioctl(perms, arg); + case ZSENDEP11CPRB: + return zsendep11cprb_ioctl(perms, arg); case ZCRYPT_DEVICE_STATUS: { struct zcrypt_device_status_ext *device_status; size_t total_size = MAX_ZDEV_ENTRIES_EXT @@ -1516,8 +1734,10 @@ struct compat_ica_rsa_modexpo __user *umex32 = compat_ptr(arg); struct compat_ica_rsa_modexpo mex32; struct ica_rsa_modexpo mex64; + struct zcrypt_track tr; long rc; + memset(&tr, 0, sizeof(tr)); if (copy_from_user(&mex32, umex32, sizeof(mex32))) return -EFAULT; mex64.inputdata = compat_ptr(mex32.inputdata); @@ -1527,13 +1747,19 @@ mex64.b_key = compat_ptr(mex32.b_key); mex64.n_modulus = compat_ptr(mex32.n_modulus); do { - rc = zcrypt_rsa_modexpo(perms, &mex64); - } while (rc == -EAGAIN); + rc = zcrypt_rsa_modexpo(perms, &tr, &mex64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); /* on failure: retry once again after a requested rescan */ if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = zcrypt_rsa_modexpo(perms, &mex64); - } while (rc == -EAGAIN); + rc = zcrypt_rsa_modexpo(perms, &tr, &mex64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; if (rc) return rc; return put_user(mex64.outputdatalength, @@ -1558,8 +1784,10 @@ struct compat_ica_rsa_modexpo_crt __user *ucrt32 = compat_ptr(arg); struct compat_ica_rsa_modexpo_crt crt32; struct ica_rsa_modexpo_crt crt64; + struct zcrypt_track tr; long rc; + memset(&tr, 0, sizeof(tr)); if (copy_from_user(&crt32, ucrt32, sizeof(crt32))) return -EFAULT; crt64.inputdata = compat_ptr(crt32.inputdata); @@ -1572,13 +1800,19 @@ crt64.nq_prime = compat_ptr(crt32.nq_prime); crt64.u_mult_inv = compat_ptr(crt32.u_mult_inv); do { - rc = zcrypt_rsa_crt(perms, &crt64); - } while (rc == -EAGAIN); + rc = zcrypt_rsa_crt(perms, &tr, &crt64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); /* on failure: retry once again after a requested rescan */ if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = zcrypt_rsa_crt(perms, &crt64); - } while (rc == -EAGAIN); + rc = zcrypt_rsa_crt(perms, &tr, &crt64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; if (rc) return rc; return put_user(crt64.outputdatalength, @@ -1610,9 +1844,11 @@ { struct compat_ica_xcRB __user *uxcRB32 = compat_ptr(arg); struct compat_ica_xcRB xcRB32; + struct zcrypt_track tr; struct ica_xcRB xcRB64; long rc; + memset(&tr, 0, sizeof(tr)); if (copy_from_user(&xcRB32, uxcRB32, sizeof(xcRB32))) return -EFAULT; xcRB64.agent_ID = xcRB32.agent_ID; @@ -1636,13 +1872,19 @@ xcRB64.priority_window = xcRB32.priority_window; xcRB64.status = xcRB32.status; do { - rc = _zcrypt_send_cprb(perms, &xcRB64); - } while (rc == -EAGAIN); + rc = _zcrypt_send_cprb(true, perms, &tr, &xcRB64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); /* on failure: retry once again after a requested rescan */ if ((rc == -ENODEV) && (zcrypt_process_rescan())) do { - rc = _zcrypt_send_cprb(perms, &xcRB64); - } while (rc == -EAGAIN); + rc = _zcrypt_send_cprb(true, perms, &tr, &xcRB64); + if (rc == -EAGAIN) + tr.again_counter++; + } while (rc == -EAGAIN && tr.again_counter < TRACK_AGAIN_MAX); + if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX) + rc = -EIO; xcRB32.reply_control_blk_length = xcRB64.reply_control_blk_length; xcRB32.reply_data_length = xcRB64.reply_data_length; xcRB32.status = xcRB64.status; diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.h linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.h --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.h +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_api.h @@ -55,13 +55,30 @@ struct zcrypt_queue; +/* struct to hold tracking information for a userspace request/response */ +struct zcrypt_track { + int again_counter; /* retry attempts counter */ + int last_qid; /* last qid used */ + int last_rc; /* last return code */ +#ifdef CONFIG_ZCRYPT_DEBUG + struct ap_fi fi; /* failure injection cmd */ +#endif +}; + +/* defines related to message tracking */ +#define TRACK_AGAIN_MAX 10 +#define TRACK_AGAIN_CARD_WEIGHT_PENALTY 1000 +#define TRACK_AGAIN_QUEUE_WEIGHT_PENALTY 10000 + struct zcrypt_ops { - long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *); + long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *, + struct ap_message *); long (*rsa_modexpo_crt)(struct zcrypt_queue *, - struct ica_rsa_modexpo_crt *); - long (*send_cprb)(struct zcrypt_queue *, struct ica_xcRB *, + struct ica_rsa_modexpo_crt *, + struct ap_message *); + long (*send_cprb)(bool userspace, struct zcrypt_queue *, struct ica_xcRB *, struct ap_message *); - long (*send_ep11_cprb)(struct zcrypt_queue *, struct ep11_urb *, + long (*send_ep11_cprb)(bool userspace, struct zcrypt_queue *, struct ep11_urb *, struct ap_message *); long (*rng)(struct zcrypt_queue *, char *, struct ap_message *); struct list_head list; /* zcrypt ops list. */ @@ -82,7 +99,7 @@ int min_mod_size; /* Min number of bits. */ int max_mod_size; /* Max number of bits. */ int max_exp_bit_length; - int speed_rating[NUM_OPS]; /* Speed idx of crypto ops. */ + const int *speed_rating; /* Speed idx of crypto ops. */ atomic_t load; /* Utilization of the crypto device */ int request_count; /* # current requests. */ @@ -147,2 +164,24 @@ +static inline unsigned long z_copy_from_user(bool userspace, + void *to, + const void __user *from, + unsigned long n) +{ + if (likely(userspace)) + return copy_from_user(to, from, n); + memcpy(to, (void __force *) from, n); + return 0; +} + +static inline unsigned long z_copy_to_user(bool userspace, + void __user *to, + const void *from, + unsigned long n) +{ + if (likely(userspace)) + return copy_to_user(to, from, n); + memcpy((void __force *) to, from, n); + return 0; +} + #endif /* _ZCRYPT_API_H_ */ diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.c @@ -205,9 +205,9 @@ preqcblk->rpl_msgbl = cprbplusparamblen; if (paramblen) { preqcblk->req_parmb = - ((u8 *) preqcblk) + sizeof(struct CPRBX); + ((u8 __user *) preqcblk) + sizeof(struct CPRBX); preqcblk->rpl_parmb = - ((u8 *) prepcblk) + sizeof(struct CPRBX); + ((u8 __user *) prepcblk) + sizeof(struct CPRBX); } *pcprbmem = cprbmem; @@ -249,24 +249,6 @@ } /* - * Helper function which calls zcrypt_send_cprb with - * memory management segment adjusted to kernel space - * so that the copy_from_user called within this - * function do in fact copy from kernel space. - */ -static inline int _zcrypt_send_cprb(struct ica_xcRB *xcrb) -{ - int rc; - mm_segment_t old_fs = get_fs(); - - set_fs(KERNEL_DS); - rc = zcrypt_send_cprb(xcrb); - set_fs(old_fs); - - return rc; -} - -/* * Generate (random) CCA AES DATA secure key. */ int cca_genseckey(u16 cardnr, u16 domain, @@ -274,7 +256,7 @@ { int i, rc, keysize; int seckeysize; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct kgreqparm { @@ -320,7 +302,7 @@ preqcblk->domain = domain; /* fill request cprb param block with KG request */ - preqparm = (struct kgreqparm *) preqcblk->req_parmb; + preqparm = (struct kgreqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "KG", 2); preqparm->rule_array_len = sizeof(preqparm->rule_array_len); preqparm->lv1.len = sizeof(struct lv1); @@ -359,7 +341,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR("%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, errno %d\n", __func__, (int) cardnr, (int) domain, rc); @@ -377,8 +359,9 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct kgrepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct kgrepparm *) ptr; /* check length of the returned secure key token */ seckeysize = prepparm->lv3.keyblock.toklen @@ -415,7 +398,7 @@ const u8 *clrkey, u8 seckey[SECKEYBLOBSIZE]) { int rc, keysize, seckeysize; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct cmreqparm { @@ -460,7 +443,7 @@ preqcblk->domain = domain; /* fill request cprb param block with CM request */ - preqparm = (struct cmreqparm *) preqcblk->req_parmb; + preqparm = (struct cmreqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "CM", 2); memcpy(preqparm->rule_array, "AES ", 8); preqparm->rule_array_len = @@ -496,7 +479,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR("%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", __func__, (int) cardnr, (int) domain, rc); @@ -514,8 +497,9 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct cmrepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct cmrepparm *) ptr; /* check length of the returned secure key token */ seckeysize = prepparm->lv3.keyblock.toklen @@ -554,7 +538,7 @@ u8 *protkey, u32 *protkeylen, u32 *protkeytype) { int rc; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct uskreqparm { @@ -592,7 +576,7 @@ u8 pad2[1]; u8 vptype; u8 vp[32]; /* verification pattern */ - } keyblock; + } ckb; } lv3; } __packed * prepparm; @@ -605,7 +589,7 @@ preqcblk->domain = domain; /* fill request cprb param block with USK request */ - preqparm = (struct uskreqparm *) preqcblk->req_parmb; + preqparm = (struct uskreqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "US", 2); preqparm->rule_array_len = sizeof(preqparm->rule_array_len); preqparm->lv1.len = sizeof(struct lv1); @@ -622,7 +606,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR("%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", __func__, (int) cardnr, (int) domain, rc); @@ -646,19 +630,21 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct uskrepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct uskrepparm *) ptr; /* check the returned keyblock */ - if (prepparm->lv3.keyblock.version != 0x01) { - DEBUG_ERR("%s reply param keyblock version mismatch 0x%02x != 0x01\n", - __func__, (int) prepparm->lv3.keyblock.version); + if (prepparm->lv3.ckb.version != 0x01 && + prepparm->lv3.ckb.version != 0x02) { + DEBUG_ERR("%s reply param keyblock version mismatch 0x%02x\n", + __func__, (int) prepparm->lv3.ckb.version); rc = -EIO; goto out; } /* copy the tanslated protected key */ - switch (prepparm->lv3.keyblock.len) { + switch (prepparm->lv3.ckb.len) { case 16+32: /* AES 128 protected key */ if (protkeytype) @@ -676,13 +662,13 @@ break; default: DEBUG_ERR("%s unknown/unsupported keylen %d\n", - __func__, prepparm->lv3.keyblock.len); + __func__, prepparm->lv3.ckb.len); rc = -EIO; goto out; } - memcpy(protkey, prepparm->lv3.keyblock.key, prepparm->lv3.keyblock.len); + memcpy(protkey, prepparm->lv3.ckb.key, prepparm->lv3.ckb.len); if (protkeylen) - *protkeylen = prepparm->lv3.keyblock.len; + *protkeylen = prepparm->lv3.ckb.len; out: free_cprbmem(mem, PARMBSIZE, 0); @@ -713,7 +699,7 @@ u8 *keybuf, size_t *keybufsize) { int rc; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct gkreqparm { @@ -795,7 +781,7 @@ preqcblk->req_parml = sizeof(struct gkreqparm); /* prepare request param block with GK request */ - preqparm = (struct gkreqparm *) preqcblk->req_parmb; + preqparm = (struct gkreqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "GK", 2); preqparm->rule_array_len = sizeof(uint16_t) + 2 * 8; memcpy(preqparm->rule_array, "AES OP ", 2*8); @@ -846,7 +832,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR( "%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", @@ -866,8 +852,9 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct gkrepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct gkrepparm *) ptr; /* do some plausibility checks on the key block */ if (prepparm->kb.len < 120 + 5 * sizeof(uint16_t) || @@ -916,7 +903,7 @@ int *key_token_size) { int rc, n; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct rule_array_block { @@ -973,7 +960,7 @@ preqcblk->req_parml = 0; /* prepare request param block with IP request */ - preq_ra_block = (struct rule_array_block *) preqcblk->req_parmb; + preq_ra_block = (struct rule_array_block __force *) preqcblk->req_parmb; memcpy(preq_ra_block->subfunc_code, "IP", 2); preq_ra_block->rule_array_len = sizeof(uint16_t) + 2 * 8; memcpy(preq_ra_block->rule_array, rule_array_1, 8); @@ -986,7 +973,7 @@ } /* prepare vud block */ - preq_vud_block = (struct vud_block *) + preq_vud_block = (struct vud_block __force *) (preqcblk->req_parmb + preqcblk->req_parml); n = complete ? 0 : (clr_key_bit_size + 7) / 8; preq_vud_block->len = sizeof(struct vud_block) + n; @@ -1000,7 +987,7 @@ preqcblk->req_parml += preq_vud_block->len; /* prepare key block */ - preq_key_block = (struct key_block *) + preq_key_block = (struct key_block __force *) (preqcblk->req_parmb + preqcblk->req_parml); n = *key_token_size; preq_key_block->len = sizeof(struct key_block) + n; @@ -1013,7 +1000,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR( "%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", @@ -1033,8 +1020,9 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct iprepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct iprepparm *) ptr; /* do some plausibility checks on the key block */ if (prepparm->kb.len < 120 + 3 * sizeof(uint16_t) || @@ -1150,7 +1138,7 @@ u8 *protkey, u32 *protkeylen, u32 *protkeytype) { int rc; - u8 *mem; + u8 *mem, *ptr; struct CPRBX *preqcblk, *prepcblk; struct ica_xcRB xcrb; struct aureqparm { @@ -1207,7 +1195,7 @@ preqcblk->domain = domain; /* fill request cprb param block with AU request */ - preqparm = (struct aureqparm *) preqcblk->req_parmb; + preqparm = (struct aureqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "AU", 2); preqparm->rule_array_len = sizeof(preqparm->rule_array_len) @@ -1229,7 +1217,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR( "%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", @@ -1256,14 +1244,15 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct aurepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct aurepparm *) ptr; /* check the returned keyblock */ - if (prepparm->vud.ckb.version != 0x01) { - DEBUG_ERR( - "%s reply param keyblock version mismatch 0x%02x != 0x01\n", - __func__, (int) prepparm->vud.ckb.version); + if (prepparm->vud.ckb.version != 0x01 && + prepparm->vud.ckb.version != 0x02) { + DEBUG_ERR("%s reply param keyblock version mismatch 0x%02x\n", + __func__, (int) prepparm->vud.ckb.version); rc = -EIO; goto out; } @@ -1346,7 +1335,7 @@ preqcblk->domain = domain; /* fill request cprb param block with FQ request */ - preqparm = (struct fqreqparm *) preqcblk->req_parmb; + preqparm = (struct fqreqparm __force *) preqcblk->req_parmb; memcpy(preqparm->subfunc_code, "FQ", 2); memcpy(preqparm->rule_array, keyword, sizeof(preqparm->rule_array)); preqparm->rule_array_len = @@ -1359,7 +1348,7 @@ prep_xcrb(&xcrb, cardnr, preqcblk, prepcblk); /* forward xcrb with request CPRB and reply CPRB to zcrypt dd */ - rc = _zcrypt_send_cprb(&xcrb); + rc = zcrypt_send_cprb(&xcrb); if (rc) { DEBUG_ERR("%s zcrypt_send_cprb (cardnr=%d domain=%d) failed, rc=%d\n", __func__, (int) cardnr, (int) domain, rc); @@ -1377,8 +1366,9 @@ } /* process response cprb param block */ - prepcblk->rpl_parmb = ((u8 *) prepcblk) + sizeof(struct CPRBX); - prepparm = (struct fqrepparm *) prepcblk->rpl_parmb; + ptr = ((u8 *) prepcblk) + sizeof(struct CPRBX); + prepcblk->rpl_parmb = (u8 __user *) ptr; + prepparm = (struct fqrepparm *) ptr; ptr = prepparm->lvdata; /* check and possibly copy reply rule array */ @@ -1516,21 +1506,38 @@ rarray, &rlen, varray, &vlen); if (rc == 0 && rlen >= 10*8 && vlen >= 204) { memcpy(ci->serial, rarray, 8); - ci->new_mk_state = (char) rarray[7*8]; - ci->cur_mk_state = (char) rarray[8*8]; - ci->old_mk_state = (char) rarray[9*8]; - if (ci->old_mk_state == '2') - memcpy(&ci->old_mkvp, varray + 172, 8); - if (ci->cur_mk_state == '2') - memcpy(&ci->cur_mkvp, varray + 184, 8); - if (ci->new_mk_state == '3') - memcpy(&ci->new_mkvp, varray + 196, 8); - found = 1; + ci->new_aes_mk_state = (char) rarray[7*8]; + ci->cur_aes_mk_state = (char) rarray[8*8]; + ci->old_aes_mk_state = (char) rarray[9*8]; + if (ci->old_aes_mk_state == '2') + memcpy(&ci->old_aes_mkvp, varray + 172, 8); + if (ci->cur_aes_mk_state == '2') + memcpy(&ci->cur_aes_mkvp, varray + 184, 8); + if (ci->new_aes_mk_state == '3') + memcpy(&ci->new_aes_mkvp, varray + 196, 8); + found++; + } + if (!found) + goto out; + rlen = vlen = PAGE_SIZE/2; + rc = cca_query_crypto_facility(cardnr, domain, "STATICSB", + rarray, &rlen, varray, &vlen); + if (rc == 0 && rlen >= 10*8 && vlen >= 240) { + ci->new_apka_mk_state = (char) rarray[7*8]; + ci->cur_apka_mk_state = (char) rarray[8*8]; + ci->old_apka_mk_state = (char) rarray[9*8]; + if (ci->old_apka_mk_state == '2') + memcpy(&ci->old_apka_mkvp, varray + 208, 8); + if (ci->cur_apka_mk_state == '2') + memcpy(&ci->cur_apka_mkvp, varray + 220, 8); + if (ci->new_apka_mk_state == '3') + memcpy(&ci->new_apka_mkvp, varray + 232, 8); + found++; } +out: free_page((unsigned long) pg); - - return found ? 0 : -ENOENT; + return found == 2 ? 0 : -ENOENT; } /* @@ -1568,9 +1575,9 @@ return -EINVAL; /* fetch status of all crypto cards */ - device_status = kmalloc_array(MAX_ZDEV_ENTRIES_EXT, - sizeof(struct zcrypt_device_status_ext), - GFP_KERNEL); + device_status = kvmalloc_array(MAX_ZDEV_ENTRIES_EXT, + sizeof(struct zcrypt_device_status_ext), + GFP_KERNEL); if (!device_status) return -ENOMEM; zcrypt_device_status_mask_ext(device_status); @@ -1584,16 +1591,16 @@ /* enabled CCA card, check current mkvp from cache */ if (cca_info_cache_fetch(card, dom, &ci) == 0 && ci.hwtype >= minhwtype && - ci.cur_mk_state == '2' && - ci.cur_mkvp == mkvp) { + ci.cur_aes_mk_state == '2' && + ci.cur_aes_mkvp == mkvp) { if (!verify) break; /* verify: refresh card info */ if (fetch_cca_info(card, dom, &ci) == 0) { cca_info_cache_update(card, dom, &ci); if (ci.hwtype >= minhwtype && - ci.cur_mk_state == '2' && - ci.cur_mkvp == mkvp) + ci.cur_aes_mk_state == '2' && + ci.cur_aes_mkvp == mkvp) break; } } @@ -1615,12 +1622,12 @@ if (fetch_cca_info(card, dom, &ci) == 0) { cca_info_cache_update(card, dom, &ci); if (ci.hwtype >= minhwtype && - ci.cur_mk_state == '2' && - ci.cur_mkvp == mkvp) + ci.cur_aes_mk_state == '2' && + ci.cur_aes_mkvp == mkvp) break; if (ci.hwtype >= minhwtype && - ci.old_mk_state == '2' && - ci.old_mkvp == mkvp && + ci.old_aes_mk_state == '2' && + ci.old_aes_mkvp == mkvp && oi < 0) oi = i; } @@ -1640,7 +1647,7 @@ } else rc = -ENODEV; - kfree(device_status); + kvfree(device_status); return rc; } @@ -1674,15 +1681,14 @@ EXPORT_SYMBOL(cca_findcard); int cca_findcard2(u32 **apqns, u32 *nr_apqns, u16 cardnr, u16 domain, - int minhwtype, u64 cur_mkvp, u64 old_mkvp, int verify) + int minhwtype, int mktype, u64 cur_mkvp, u64 old_mkvp, + int verify) { struct zcrypt_device_status_ext *device_status; - int i, n, card, dom, curmatch, oldmatch, rc = 0; + u32 *_apqns = NULL, _nr_apqns = 0; + int i, card, dom, curmatch, oldmatch, rc = 0; struct cca_info ci; - *apqns = NULL; - *nr_apqns = 0; - /* fetch status of all crypto cards */ device_status = kvmalloc_array(MAX_ZDEV_ENTRIES_EXT, sizeof(struct zcrypt_device_status_ext), @@ -1691,67 +1697,73 @@ return -ENOMEM; zcrypt_device_status_mask_ext(device_status); - /* loop two times: first gather eligible apqns, then store them */ - while (1) { - n = 0; - /* walk through all the crypto cards */ - for (i = 0; i < MAX_ZDEV_ENTRIES_EXT; i++) { - card = AP_QID_CARD(device_status[i].qid); - dom = AP_QID_QUEUE(device_status[i].qid); - /* check online state */ - if (!device_status[i].online) - continue; - /* check for cca functions */ - if (!(device_status[i].functions & 0x04)) - continue; - /* check cardnr */ - if (cardnr != 0xFFFF && card != cardnr) - continue; - /* check domain */ - if (domain != 0xFFFF && dom != domain) - continue; - /* get cca info on this apqn */ - if (cca_get_info(card, dom, &ci, verify)) - continue; - /* current master key needs to be valid */ - if (ci.cur_mk_state != '2') - continue; - /* check min hardware type */ - if (minhwtype > 0 && minhwtype > ci.hwtype) - continue; - if (cur_mkvp || old_mkvp) { - /* check mkvps */ - curmatch = oldmatch = 0; - if (cur_mkvp && cur_mkvp == ci.cur_mkvp) + /* allocate 1k space for up to 256 apqns */ + _apqns = kmalloc_array(256, sizeof(u32), GFP_KERNEL); + if (!_apqns) { + kvfree(device_status); + return -ENOMEM; + } + + /* walk through all the crypto apqnss */ + for (i = 0; i < MAX_ZDEV_ENTRIES_EXT; i++) { + card = AP_QID_CARD(device_status[i].qid); + dom = AP_QID_QUEUE(device_status[i].qid); + /* check online state */ + if (!device_status[i].online) + continue; + /* check for cca functions */ + if (!(device_status[i].functions & 0x04)) + continue; + /* check cardnr */ + if (cardnr != 0xFFFF && card != cardnr) + continue; + /* check domain */ + if (domain != 0xFFFF && dom != domain) + continue; + /* get cca info on this apqn */ + if (cca_get_info(card, dom, &ci, verify)) + continue; + /* current master key needs to be valid */ + if (mktype == AES_MK_SET && ci.cur_aes_mk_state != '2') + continue; + if (mktype == APKA_MK_SET && ci.cur_apka_mk_state != '2') + continue; + /* check min hardware type */ + if (minhwtype > 0 && minhwtype > ci.hwtype) + continue; + if (cur_mkvp || old_mkvp) { + /* check mkvps */ + curmatch = oldmatch = 0; + if (mktype == AES_MK_SET) { + if (cur_mkvp && cur_mkvp == ci.cur_aes_mkvp) + curmatch = 1; + if (old_mkvp && ci.old_aes_mk_state == '2' && + old_mkvp == ci.old_aes_mkvp) + oldmatch = 1; + } else { + if (cur_mkvp && cur_mkvp == ci.cur_apka_mkvp) curmatch = 1; - if (old_mkvp && ci.old_mk_state == '2' && - old_mkvp == ci.old_mkvp) + if (old_mkvp && ci.old_apka_mk_state == '2' && + old_mkvp == ci.old_apka_mkvp) oldmatch = 1; - if ((cur_mkvp || old_mkvp) && - (curmatch + oldmatch < 1)) - continue; } - /* apqn passed all filtering criterons */ - if (*apqns && n < *nr_apqns) - (*apqns)[n] = (((u16)card) << 16) | ((u16) dom); - n++; - } - /* loop 2nd time: array has been filled */ - if (*apqns) - break; - /* loop 1st time: have # of eligible apqns in n */ - if (!n) { - rc = -ENODEV; /* no eligible apqns found */ - break; - } - *nr_apqns = n; - /* allocate array to store n apqns into */ - *apqns = kmalloc_array(n, sizeof(u32), GFP_KERNEL); - if (!*apqns) { - rc = -ENOMEM; - break; + if (curmatch + oldmatch < 1) + continue; } - verify = 0; + /* apqn passed all filtering criterons, add to the array */ + if (_nr_apqns < 256) + _apqns[_nr_apqns++] = (((u16)card) << 16) | ((u16) dom); + } + + /* nothing found ? */ + if (!_nr_apqns) { + kfree(_apqns); + rc = -ENODEV; + } else { + /* no re-allocation, simple return the _apqns array */ + *apqns = _apqns; + *nr_apqns = _nr_apqns; + rc = 0; } kvfree(device_status); diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.h linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.h --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.h +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ccamisc.h @@ -90,7 +90,7 @@ u16 kmf1; /* key management field 1 */ u16 kmf2; /* key management field 2 */ u16 kmf3; /* key management field 3 */ - u8 vdata[0]; /* variable part data follows */ + u8 vdata[]; /* variable part data follows */ } __packed; /* Some defines for the CCA AES cipherkeytoken kmf1 field */ @@ -186,6 +186,8 @@ * - if verify is enabled and a cur_mkvp and/or old_mkvp * value is given, then refetch the cca_info and make sure the current * cur_mkvp or old_mkvp values of the apqn are used. + * The mktype determines which set of master keys to use: + * 0 = AES_MK_SET - AES MK set, 1 = APKA MK_SET - APKA MK set * The array of apqn entries is allocated with kmalloc and returned in *apqns; * the number of apqns stored into the list is returned in *nr_apqns. One apqn * entry is simple a 32 bit value with 16 bit cardnr and 16 bit domain nr and @@ -194,18 +196,28 @@ * -ENODEV is returned. */ int cca_findcard2(u32 **apqns, u32 *nr_apqns, u16 cardnr, u16 domain, - int minhwtype, u64 cur_mkvp, u64 old_mkvp, int verify); + int minhwtype, int mktype, u64 cur_mkvp, u64 old_mkvp, + int verify); + +#define AES_MK_SET 0 +#define APKA_MK_SET 1 /* struct to hold info for each CCA queue */ struct cca_info { - int hwtype; /* one of the defined AP_DEVICE_TYPE_* */ - char new_mk_state; /* '1' empty, '2' partially full, '3' full */ - char cur_mk_state; /* '1' invalid, '2' valid */ - char old_mk_state; /* '1' invalid, '2' valid */ - u64 new_mkvp; /* truncated sha256 hash of new master key */ - u64 cur_mkvp; /* truncated sha256 hash of current master key */ - u64 old_mkvp; /* truncated sha256 hash of old master key */ - char serial[9]; /* serial number string (8 ascii numbers + 0x00) */ + int hwtype; /* one of the defined AP_DEVICE_TYPE_* */ + char new_aes_mk_state; /* '1' empty, '2' partially full, '3' full */ + char cur_aes_mk_state; /* '1' invalid, '2' valid */ + char old_aes_mk_state; /* '1' invalid, '2' valid */ + char new_apka_mk_state; /* '1' empty, '2' partially full, '3' full */ + char cur_apka_mk_state; /* '1' invalid, '2' valid */ + char old_apka_mk_state; /* '1' invalid, '2' valid */ + u64 new_aes_mkvp; /* truncated sha256 of new aes master key */ + u64 cur_aes_mkvp; /* truncated sha256 of current aes master key */ + u64 old_aes_mkvp; /* truncated sha256 of old aes master key */ + u64 new_apka_mkvp; /* truncated sha256 of new apka master key */ + u64 cur_apka_mkvp; /* truncated sha256 of current apka mk */ + u64 old_apka_mkvp; /* truncated sha256 of old apka mk */ + char serial[9]; /* serial number (8 ascii numbers + 0x00) */ }; /* diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2a.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2a.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2a.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2a.c @@ -94,8 +94,7 @@ if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX2A) { zc->min_mod_size = CEX2A_MIN_MOD_SIZE; zc->max_mod_size = CEX2A_MAX_MOD_SIZE; - memcpy(zc->speed_rating, CEX2A_SPEED_IDX, - sizeof(CEX2A_SPEED_IDX)); + zc->speed_rating = CEX2A_SPEED_IDX; zc->max_exp_bit_length = CEX2A_MAX_MOD_SIZE; zc->type_string = "CEX2A"; zc->user_space_type = ZCRYPT_CEX2A; @@ -108,8 +107,7 @@ zc->max_mod_size = CEX3A_MAX_MOD_SIZE; zc->max_exp_bit_length = CEX3A_MAX_MOD_SIZE; } - memcpy(zc->speed_rating, CEX3A_SPEED_IDX, - sizeof(CEX3A_SPEED_IDX)); + zc->speed_rating = CEX3A_SPEED_IDX; zc->type_string = "CEX3A"; zc->user_space_type = ZCRYPT_CEX3A; } else { @@ -204,8 +202,6 @@ static struct ap_driver zcrypt_cex2a_queue_driver = { .probe = zcrypt_cex2a_queue_probe, .remove = zcrypt_cex2a_queue_remove, - .suspend = ap_queue_suspend, - .resume = ap_queue_resume, .ids = zcrypt_cex2a_queue_ids, .flags = AP_DRIVER_FLAG_DEFAULT, }; diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2c.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2c.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2c.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex2c.c @@ -25,6 +25,7 @@ #include "zcrypt_msgtype6.h" #include "zcrypt_cex2c.h" #include "zcrypt_cca_key.h" +#include "zcrypt_ccamisc.h" #define CEX2C_MIN_MOD_SIZE 16 /* 128 bits */ #define CEX2C_MAX_MOD_SIZE 256 /* 2048 bits */ @@ -58,6 +59,118 @@ MODULE_DEVICE_TABLE(ap, zcrypt_cex2c_queue_ids); +/* + * CCA card additional device attributes + */ +static ssize_t cca_serialnr_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct cca_info ci; + struct ap_card *ac = to_ap_card(dev); + struct zcrypt_card *zc = ac->private; + + memset(&ci, 0, sizeof(ci)); + + if (ap_domain_index >= 0) + cca_get_info(ac->id, ap_domain_index, &ci, zc->online); + + return scnprintf(buf, PAGE_SIZE, "%s\n", ci.serial); +} + +static struct device_attribute dev_attr_cca_serialnr = + __ATTR(serialnr, 0444, cca_serialnr_show, NULL); + +static struct attribute *cca_card_attrs[] = { + &dev_attr_cca_serialnr.attr, + NULL, +}; + +static const struct attribute_group cca_card_attr_grp = { + .attrs = cca_card_attrs, +}; + + /* + * CCA queue additional device attributes + */ +static ssize_t cca_mkvps_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + int n = 0; + struct cca_info ci; + struct zcrypt_queue *zq = to_ap_queue(dev)->private; + static const char * const cao_state[] = { "invalid", "valid" }; + static const char * const new_state[] = { "empty", "partial", "full" }; + + memset(&ci, 0, sizeof(ci)); + + cca_get_info(AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + &ci, zq->online); + + if (ci.new_aes_mk_state >= '1' && ci.new_aes_mk_state <= '3') + n = scnprintf(buf, PAGE_SIZE, "AES NEW: %s 0x%016llx\n", + new_state[ci.new_aes_mk_state - '1'], + ci.new_aes_mkvp); + else + n = scnprintf(buf, PAGE_SIZE, "AES NEW: - -\n"); + + if (ci.cur_aes_mk_state >= '1' && ci.cur_aes_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "AES CUR: %s 0x%016llx\n", + cao_state[ci.cur_aes_mk_state - '1'], + ci.cur_aes_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "AES CUR: - -\n"); + + if (ci.old_aes_mk_state >= '1' && ci.old_aes_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "AES OLD: %s 0x%016llx\n", + cao_state[ci.old_aes_mk_state - '1'], + ci.old_aes_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "AES OLD: - -\n"); + + if (ci.new_apka_mk_state >= '1' && ci.new_apka_mk_state <= '3') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA NEW: %s 0x%016llx\n", + new_state[ci.new_apka_mk_state - '1'], + ci.new_apka_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA NEW: - -\n"); + + if (ci.cur_apka_mk_state >= '1' && ci.cur_apka_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA CUR: %s 0x%016llx\n", + cao_state[ci.cur_apka_mk_state - '1'], + ci.cur_apka_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA CUR: - -\n"); + + if (ci.old_apka_mk_state >= '1' && ci.old_apka_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA OLD: %s 0x%016llx\n", + cao_state[ci.old_apka_mk_state - '1'], + ci.old_apka_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA OLD: - -\n"); + + return n; +} + +static struct device_attribute dev_attr_cca_mkvps = + __ATTR(mkvps, 0444, cca_mkvps_show, NULL); + +static struct attribute *cca_queue_attrs[] = { + &dev_attr_cca_mkvps.attr, + NULL, +}; + +static const struct attribute_group cca_queue_attr_grp = { + .attrs = cca_queue_attrs, +}; + /** * Large random number detection function. Its sends a message to a CEX2C/CEX3C * card to find out if large random numbers are supported. @@ -87,24 +200,23 @@ int rc, i; ap_init_message(&ap_msg); - ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL); - if (!ap_msg.message) + ap_msg.msg = (void *) get_zeroed_page(GFP_KERNEL); + if (!ap_msg.msg) return -ENOMEM; rng_type6CPRB_msgX(&ap_msg, 4, &domain); - msg = ap_msg.message; + msg = ap_msg.msg; msg->cprbx.domain = AP_QID_QUEUE(aq->qid); - rc = ap_send(aq->qid, 0x0102030405060708ULL, ap_msg.message, - ap_msg.length); + rc = ap_send(aq->qid, 0x0102030405060708ULL, ap_msg.msg, ap_msg.len); if (rc) goto out_free; /* Wait for the test message to complete. */ for (i = 0; i < 2 * HZ; i++) { msleep(1000 / HZ); - rc = ap_recv(aq->qid, &psmid, ap_msg.message, 4096); + rc = ap_recv(aq->qid, &psmid, ap_msg.msg, 4096); if (rc == 0 && psmid == 0x0102030405060708ULL) break; } @@ -115,13 +227,13 @@ goto out_free; } - reply = ap_msg.message; + reply = ap_msg.msg; if (reply->cprbx.ccp_rtcode == 0 && reply->cprbx.ccp_rscode == 0) rc = 1; else rc = 0; out_free: - free_page((unsigned long) ap_msg.message); + free_page((unsigned long) ap_msg.msg); return rc; } @@ -154,8 +266,7 @@ case AP_DEVICE_TYPE_CEX2C: zc->user_space_type = ZCRYPT_CEX2C; zc->type_string = "CEX2C"; - memcpy(zc->speed_rating, CEX2C_SPEED_IDX, - sizeof(CEX2C_SPEED_IDX)); + zc->speed_rating = CEX2C_SPEED_IDX; zc->min_mod_size = CEX2C_MIN_MOD_SIZE; zc->max_mod_size = CEX2C_MAX_MOD_SIZE; zc->max_exp_bit_length = CEX2C_MAX_MOD_SIZE; @@ -163,8 +274,7 @@ case AP_DEVICE_TYPE_CEX3C: zc->user_space_type = ZCRYPT_CEX3C; zc->type_string = "CEX3C"; - memcpy(zc->speed_rating, CEX3C_SPEED_IDX, - sizeof(CEX3C_SPEED_IDX)); + zc->speed_rating = CEX3C_SPEED_IDX; zc->min_mod_size = CEX3C_MIN_MOD_SIZE; zc->max_mod_size = CEX3C_MAX_MOD_SIZE; zc->max_exp_bit_length = CEX3C_MAX_MOD_SIZE; @@ -179,6 +289,17 @@ if (rc) { ac->private = NULL; zcrypt_card_free(zc); + return rc; + } + + if (ap_test_bit(&ac->functions, AP_FUNC_COPRO)) { + rc = sysfs_create_group(&ap_dev->device.kobj, + &cca_card_attr_grp); + if (rc) { + zcrypt_card_unregister(zc); + ac->private = NULL; + zcrypt_card_free(zc); + } } return rc; @@ -190,8 +311,11 @@ */ static void zcrypt_cex2c_card_remove(struct ap_device *ap_dev) { + struct ap_card *ac = to_ap_card(&ap_dev->device); struct zcrypt_card *zc = to_ap_card(&ap_dev->device)->private; + if (ap_test_bit(&ac->functions, AP_FUNC_COPRO)) + sysfs_remove_group(&ap_dev->device.kobj, &cca_card_attr_grp); if (zc) zcrypt_card_unregister(zc); } @@ -240,7 +364,19 @@ if (rc) { aq->private = NULL; zcrypt_queue_free(zq); + return rc; + } + + if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) { + rc = sysfs_create_group(&ap_dev->device.kobj, + &cca_queue_attr_grp); + if (rc) { + zcrypt_queue_unregister(zq); + aq->private = NULL; + zcrypt_queue_free(zq); + } } + return rc; } @@ -253,6 +389,8 @@ struct ap_queue *aq = to_ap_queue(&ap_dev->device); struct zcrypt_queue *zq = aq->private; + if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) + sysfs_remove_group(&ap_dev->device.kobj, &cca_queue_attr_grp); if (zq) zcrypt_queue_unregister(zq); } @@ -260,8 +398,6 @@ static struct ap_driver zcrypt_cex2c_queue_driver = { .probe = zcrypt_cex2c_queue_probe, .remove = zcrypt_cex2c_queue_remove, - .suspend = ap_queue_suspend, - .resume = ap_queue_resume, .ids = zcrypt_cex2c_queue_ids, .flags = AP_DRIVER_FLAG_DEFAULT, }; diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex4.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex4.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex4.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_cex4.c @@ -28,9 +28,6 @@ #define CEX4C_MIN_MOD_SIZE 16 /* 256 bits */ #define CEX4C_MAX_MOD_SIZE 512 /* 4096 bits */ -#define CEX4A_MAX_MESSAGE_SIZE MSGTYPE50_CRB3_MAX_MSG_SIZE -#define CEX4C_MAX_MESSAGE_SIZE MSGTYPE06_MAX_MSG_SIZE - /* Waiting time for requests to be processed. * Currently there are some types of request which are not deterministic. * But the maximum time limit managed by the stomper code is set to 60sec. @@ -87,7 +84,7 @@ if (ap_domain_index >= 0) cca_get_info(ac->id, ap_domain_index, &ci, zc->online); - return snprintf(buf, PAGE_SIZE, "%s\n", ci.serial); + return scnprintf(buf, PAGE_SIZE, "%s\n", ci.serial); } static struct device_attribute dev_attr_cca_serialnr = @@ -121,23 +118,52 @@ AP_QID_QUEUE(zq->queue->qid), &ci, zq->online); - if (ci.new_mk_state >= '1' && ci.new_mk_state <= '3') - n = snprintf(buf, PAGE_SIZE, "AES NEW: %s 0x%016llx\n", - new_state[ci.new_mk_state - '1'], ci.new_mkvp); + if (ci.new_aes_mk_state >= '1' && ci.new_aes_mk_state <= '3') + n = scnprintf(buf, PAGE_SIZE, "AES NEW: %s 0x%016llx\n", + new_state[ci.new_aes_mk_state - '1'], + ci.new_aes_mkvp); + else + n = scnprintf(buf, PAGE_SIZE, "AES NEW: - -\n"); + + if (ci.cur_aes_mk_state >= '1' && ci.cur_aes_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "AES CUR: %s 0x%016llx\n", + cao_state[ci.cur_aes_mk_state - '1'], + ci.cur_aes_mkvp); else - n = snprintf(buf, PAGE_SIZE, "AES NEW: - -\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "AES CUR: - -\n"); - if (ci.cur_mk_state >= '1' && ci.cur_mk_state <= '2') - n += snprintf(buf + n, PAGE_SIZE - n, "AES CUR: %s 0x%016llx\n", - cao_state[ci.cur_mk_state - '1'], ci.cur_mkvp); + if (ci.old_aes_mk_state >= '1' && ci.old_aes_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "AES OLD: %s 0x%016llx\n", + cao_state[ci.old_aes_mk_state - '1'], + ci.old_aes_mkvp); else - n += snprintf(buf + n, PAGE_SIZE - n, "AES CUR: - -\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "AES OLD: - -\n"); - if (ci.old_mk_state >= '1' && ci.old_mk_state <= '2') - n += snprintf(buf + n, PAGE_SIZE - n, "AES OLD: %s 0x%016llx\n", - cao_state[ci.old_mk_state - '1'], ci.old_mkvp); + if (ci.new_apka_mk_state >= '1' && ci.new_apka_mk_state <= '3') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA NEW: %s 0x%016llx\n", + new_state[ci.new_apka_mk_state - '1'], + ci.new_apka_mkvp); else - n += snprintf(buf + n, PAGE_SIZE - n, "AES OLD: - -\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA NEW: - -\n"); + + if (ci.cur_apka_mk_state >= '1' && ci.cur_apka_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA CUR: %s 0x%016llx\n", + cao_state[ci.cur_apka_mk_state - '1'], + ci.cur_apka_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA CUR: - -\n"); + + if (ci.old_apka_mk_state >= '1' && ci.old_apka_mk_state <= '2') + n += scnprintf(buf + n, PAGE_SIZE - n, + "APKA OLD: %s 0x%016llx\n", + cao_state[ci.old_apka_mk_state - '1'], + ci.old_apka_mkvp); + else + n += scnprintf(buf + n, PAGE_SIZE - n, "APKA OLD: - -\n"); return n; } @@ -170,9 +196,9 @@ ep11_get_card_info(ac->id, &ci, zc->online); if (ci.API_ord_nr > 0) - return snprintf(buf, PAGE_SIZE, "%u\n", ci.API_ord_nr); + return scnprintf(buf, PAGE_SIZE, "%u\n", ci.API_ord_nr); else - return snprintf(buf, PAGE_SIZE, "\n"); + return scnprintf(buf, PAGE_SIZE, "\n"); } static struct device_attribute dev_attr_ep11_api_ordinalnr = @@ -191,11 +217,11 @@ ep11_get_card_info(ac->id, &ci, zc->online); if (ci.FW_version > 0) - return snprintf(buf, PAGE_SIZE, "%d.%d\n", - (int)(ci.FW_version >> 8), - (int)(ci.FW_version & 0xFF)); + return scnprintf(buf, PAGE_SIZE, "%d.%d\n", + (int)(ci.FW_version >> 8), + (int)(ci.FW_version & 0xFF)); else - return snprintf(buf, PAGE_SIZE, "\n"); + return scnprintf(buf, PAGE_SIZE, "\n"); } static struct device_attribute dev_attr_ep11_fw_version = @@ -214,9 +240,9 @@ ep11_get_card_info(ac->id, &ci, zc->online); if (ci.serial[0]) - return snprintf(buf, PAGE_SIZE, "%16.16s\n", ci.serial); + return scnprintf(buf, PAGE_SIZE, "%16.16s\n", ci.serial); else - return snprintf(buf, PAGE_SIZE, "\n"); + return scnprintf(buf, PAGE_SIZE, "\n"); } static struct device_attribute dev_attr_ep11_serialnr = @@ -248,14 +274,14 @@ ep11_get_card_info(ac->id, &ci, zc->online); for (i = 0; ep11_op_modes[i].mode_txt; i++) { - if (ci.op_mode & (1 << ep11_op_modes[i].mode_bit)) { + if (ci.op_mode & (1ULL << ep11_op_modes[i].mode_bit)) { if (n > 0) buf[n++] = ' '; - n += snprintf(buf + n, PAGE_SIZE - n, - "%s", ep11_op_modes[i].mode_txt); + n += scnprintf(buf + n, PAGE_SIZE - n, + "%s", ep11_op_modes[i].mode_txt); } } - n += snprintf(buf + n, PAGE_SIZE - n, "\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "\n"); return n; } @@ -298,28 +324,28 @@ &di); if (di.cur_wk_state == '0') { - n = snprintf(buf, PAGE_SIZE, "WK CUR: %s -\n", - cwk_state[di.cur_wk_state - '0']); + n = scnprintf(buf, PAGE_SIZE, "WK CUR: %s -\n", + cwk_state[di.cur_wk_state - '0']); } else if (di.cur_wk_state == '1') { - n = snprintf(buf, PAGE_SIZE, "WK CUR: %s 0x", - cwk_state[di.cur_wk_state - '0']); + n = scnprintf(buf, PAGE_SIZE, "WK CUR: %s 0x", + cwk_state[di.cur_wk_state - '0']); bin2hex(buf + n, di.cur_wkvp, sizeof(di.cur_wkvp)); n += 2 * sizeof(di.cur_wkvp); - n += snprintf(buf + n, PAGE_SIZE - n, "\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "\n"); } else - n = snprintf(buf, PAGE_SIZE, "WK CUR: - -\n"); + n = scnprintf(buf, PAGE_SIZE, "WK CUR: - -\n"); if (di.new_wk_state == '0') { - n += snprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s -\n", - nwk_state[di.new_wk_state - '0']); + n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s -\n", + nwk_state[di.new_wk_state - '0']); } else if (di.new_wk_state >= '1' && di.new_wk_state <= '2') { - n += snprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s 0x", - nwk_state[di.new_wk_state - '0']); + n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s 0x", + nwk_state[di.new_wk_state - '0']); bin2hex(buf + n, di.new_wkvp, sizeof(di.new_wkvp)); n += 2 * sizeof(di.new_wkvp); - n += snprintf(buf + n, PAGE_SIZE - n, "\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "\n"); } else - n += snprintf(buf + n, PAGE_SIZE - n, "WK NEW: - -\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: - -\n"); return n; } @@ -343,14 +369,14 @@ &di); for (i = 0; ep11_op_modes[i].mode_txt; i++) { - if (di.op_mode & (1 << ep11_op_modes[i].mode_bit)) { + if (di.op_mode & (1ULL << ep11_op_modes[i].mode_bit)) { if (n > 0) buf[n++] = ' '; - n += snprintf(buf + n, PAGE_SIZE - n, - "%s", ep11_op_modes[i].mode_txt); + n += scnprintf(buf + n, PAGE_SIZE - n, + "%s", ep11_op_modes[i].mode_txt); } } - n += snprintf(buf + n, PAGE_SIZE - n, "\n"); + n += scnprintf(buf + n, PAGE_SIZE - n, "\n"); return n; } @@ -380,31 +406,31 @@ * Normalized speed ratings per crypto adapter * MEX_1k, MEX_2k, MEX_4k, CRT_1k, CRT_2k, CRT_4k, RNG, SECKEY */ - static const int CEX4A_SPEED_IDX[] = { + static const int CEX4A_SPEED_IDX[NUM_OPS] = { 14, 19, 249, 42, 228, 1458, 0, 0}; - static const int CEX5A_SPEED_IDX[] = { + static const int CEX5A_SPEED_IDX[NUM_OPS] = { 8, 9, 20, 18, 66, 458, 0, 0}; - static const int CEX6A_SPEED_IDX[] = { + static const int CEX6A_SPEED_IDX[NUM_OPS] = { 6, 9, 20, 17, 65, 438, 0, 0}; - static const int CEX7A_SPEED_IDX[] = { + static const int CEX7A_SPEED_IDX[NUM_OPS] = { 6, 8, 17, 15, 54, 362, 0, 0}; - static const int CEX4C_SPEED_IDX[] = { + static const int CEX4C_SPEED_IDX[NUM_OPS] = { 59, 69, 308, 83, 278, 2204, 209, 40}; static const int CEX5C_SPEED_IDX[] = { 24, 31, 50, 37, 90, 479, 27, 10}; - static const int CEX6C_SPEED_IDX[] = { + static const int CEX6C_SPEED_IDX[NUM_OPS] = { 16, 20, 32, 27, 77, 455, 24, 9}; - static const int CEX7C_SPEED_IDX[] = { + static const int CEX7C_SPEED_IDX[NUM_OPS] = { 14, 16, 26, 23, 64, 376, 23, 8}; - static const int CEX4P_SPEED_IDX[] = { + static const int CEX4P_SPEED_IDX[NUM_OPS] = { 0, 0, 0, 0, 0, 0, 0, 50}; - static const int CEX5P_SPEED_IDX[] = { + static const int CEX5P_SPEED_IDX[NUM_OPS] = { 0, 0, 0, 0, 0, 0, 0, 10}; - static const int CEX6P_SPEED_IDX[] = { + static const int CEX6P_SPEED_IDX[NUM_OPS] = { 0, 0, 0, 0, 0, 0, 0, 9}; - static const int CEX7P_SPEED_IDX[] = { + static const int CEX7P_SPEED_IDX[NUM_OPS] = { 0, 0, 0, 0, 0, 0, 0, 8}; struct ap_card *ac = to_ap_card(&ap_dev->device); @@ -420,26 +446,22 @@ if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX4) { zc->type_string = "CEX4A"; zc->user_space_type = ZCRYPT_CEX4; - memcpy(zc->speed_rating, CEX4A_SPEED_IDX, - sizeof(CEX4A_SPEED_IDX)); + zc->speed_rating = CEX4A_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) { zc->type_string = "CEX5A"; zc->user_space_type = ZCRYPT_CEX5; - memcpy(zc->speed_rating, CEX5A_SPEED_IDX, - sizeof(CEX5A_SPEED_IDX)); + zc->speed_rating = CEX5A_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) { zc->type_string = "CEX6A"; zc->user_space_type = ZCRYPT_CEX6; - memcpy(zc->speed_rating, CEX6A_SPEED_IDX, - sizeof(CEX6A_SPEED_IDX)); + zc->speed_rating = CEX6A_SPEED_IDX; } else { zc->type_string = "CEX7A"; /* wrong user space type, just for compatibility * with the ZCRYPT_STATUS_MASK ioctl. */ zc->user_space_type = ZCRYPT_CEX6; - memcpy(zc->speed_rating, CEX7A_SPEED_IDX, - sizeof(CEX7A_SPEED_IDX)); + zc->speed_rating = CEX7A_SPEED_IDX; } zc->min_mod_size = CEX4A_MIN_MOD_SIZE; if (ap_test_bit(&ac->functions, AP_FUNC_MEX4K) && @@ -459,32 +481,28 @@ * just keep it for cca compatibility */ zc->user_space_type = ZCRYPT_CEX3C; - memcpy(zc->speed_rating, CEX4C_SPEED_IDX, - sizeof(CEX4C_SPEED_IDX)); + zc->speed_rating = CEX4C_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) { zc->type_string = "CEX5C"; /* wrong user space type, must be CEX5 * just keep it for cca compatibility */ zc->user_space_type = ZCRYPT_CEX3C; - memcpy(zc->speed_rating, CEX5C_SPEED_IDX, - sizeof(CEX5C_SPEED_IDX)); + zc->speed_rating = CEX5C_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) { zc->type_string = "CEX6C"; /* wrong user space type, must be CEX6 * just keep it for cca compatibility */ zc->user_space_type = ZCRYPT_CEX3C; - memcpy(zc->speed_rating, CEX6C_SPEED_IDX, - sizeof(CEX6C_SPEED_IDX)); + zc->speed_rating = CEX6C_SPEED_IDX; } else { zc->type_string = "CEX7C"; /* wrong user space type, must be CEX7 * just keep it for cca compatibility */ zc->user_space_type = ZCRYPT_CEX3C; - memcpy(zc->speed_rating, CEX7C_SPEED_IDX, - sizeof(CEX7C_SPEED_IDX)); + zc->speed_rating = CEX7C_SPEED_IDX; } zc->min_mod_size = CEX4C_MIN_MOD_SIZE; zc->max_mod_size = CEX4C_MAX_MOD_SIZE; @@ -493,26 +511,22 @@ if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX4) { zc->type_string = "CEX4P"; zc->user_space_type = ZCRYPT_CEX4; - memcpy(zc->speed_rating, CEX4P_SPEED_IDX, - sizeof(CEX4P_SPEED_IDX)); + zc->speed_rating = CEX4P_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) { zc->type_string = "CEX5P"; zc->user_space_type = ZCRYPT_CEX5; - memcpy(zc->speed_rating, CEX5P_SPEED_IDX, - sizeof(CEX5P_SPEED_IDX)); + zc->speed_rating = CEX5P_SPEED_IDX; } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) { zc->type_string = "CEX6P"; zc->user_space_type = ZCRYPT_CEX6; - memcpy(zc->speed_rating, CEX6P_SPEED_IDX, - sizeof(CEX6P_SPEED_IDX)); + zc->speed_rating = CEX6P_SPEED_IDX; } else { zc->type_string = "CEX7P"; /* wrong user space type, just for compatibility * with the ZCRYPT_STATUS_MASK ioctl. */ zc->user_space_type = ZCRYPT_CEX6; - memcpy(zc->speed_rating, CEX7P_SPEED_IDX, - sizeof(CEX7P_SPEED_IDX)); + zc->speed_rating = CEX7P_SPEED_IDX; } zc->min_mod_size = CEX4C_MIN_MOD_SIZE; zc->max_mod_size = CEX4C_MAX_MOD_SIZE; @@ -527,22 +541,27 @@ if (rc) { ac->private = NULL; zcrypt_card_free(zc); - goto out; + return rc; } if (ap_test_bit(&ac->functions, AP_FUNC_COPRO)) { rc = sysfs_create_group(&ap_dev->device.kobj, &cca_card_attr_grp); - if (rc) + if (rc) { zcrypt_card_unregister(zc); + ac->private = NULL; + zcrypt_card_free(zc); + } } else if (ap_test_bit(&ac->functions, AP_FUNC_EP11)) { rc = sysfs_create_group(&ap_dev->device.kobj, &ep11_card_attr_grp); - if (rc) + if (rc) { zcrypt_card_unregister(zc); + ac->private = NULL; + zcrypt_card_free(zc); + } } -out: return rc; } @@ -583,19 +602,19 @@ int rc; if (ap_test_bit(&aq->card->functions, AP_FUNC_ACCEL)) { - zq = zcrypt_queue_alloc(CEX4A_MAX_MESSAGE_SIZE); + zq = zcrypt_queue_alloc(aq->card->maxmsgsize); if (!zq) return -ENOMEM; zq->ops = zcrypt_msgtype(MSGTYPE50_NAME, MSGTYPE50_VARIANT_DEFAULT); } else if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) { - zq = zcrypt_queue_alloc(CEX4C_MAX_MESSAGE_SIZE); + zq = zcrypt_queue_alloc(aq->card->maxmsgsize); if (!zq) return -ENOMEM; zq->ops = zcrypt_msgtype(MSGTYPE06_NAME, MSGTYPE06_VARIANT_DEFAULT); } else if (ap_test_bit(&aq->card->functions, AP_FUNC_EP11)) { - zq = zcrypt_queue_alloc(CEX4C_MAX_MESSAGE_SIZE); + zq = zcrypt_queue_alloc(aq->card->maxmsgsize); if (!zq) return -ENOMEM; zq->ops = zcrypt_msgtype(MSGTYPE06_NAME, @@ -615,22 +634,27 @@ if (rc) { aq->private = NULL; zcrypt_queue_free(zq); - goto out; + return rc; } if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) { rc = sysfs_create_group(&ap_dev->device.kobj, &cca_queue_attr_grp); - if (rc) + if (rc) { zcrypt_queue_unregister(zq); + aq->private = NULL; + zcrypt_queue_free(zq); + } } else if (ap_test_bit(&aq->card->functions, AP_FUNC_EP11)) { rc = sysfs_create_group(&ap_dev->device.kobj, &ep11_queue_attr_grp); - if (rc) + if (rc) { zcrypt_queue_unregister(zq); + aq->private = NULL; + zcrypt_queue_free(zq); + } } -out: return rc; } @@ -654,8 +678,6 @@ static struct ap_driver zcrypt_cex4_queue_driver = { .probe = zcrypt_cex4_queue_probe, .remove = zcrypt_cex4_queue_remove, - .suspend = ap_queue_suspend, - .resume = ap_queue_resume, .ids = zcrypt_cex4_queue_ids, .flags = AP_DRIVER_FLAG_DEFAULT, }; diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ep11misc.c linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ep11misc.c --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ep11misc.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_ep11misc.c @@ -170,24 +170,6 @@ EXPORT_SYMBOL(ep11_check_aeskeyblob); /* - * Helper function which calls zcrypt_send_ep11_cprb with - * memory management segment adjusted to kernel space - * so that the copy_from_user called within this - * function do in fact copy from kernel space. - */ -static inline int _zcrypt_send_ep11_cprb(struct ep11_urb *urb) -{ - int rc; - mm_segment_t old_fs = get_fs(); - - set_fs(KERNEL_DS); - rc = zcrypt_send_ep11_cprb(urb); - set_fs(old_fs); - - return rc; -} - -/* * Allocate and prepare ep11 cprb plus additional payload. */ static inline struct ep11_cprb *alloc_cprb(size_t payload_len) @@ -195,11 +177,10 @@ size_t len = sizeof(struct ep11_cprb) + payload_len; struct ep11_cprb *cprb; - cprb = kmalloc(len, GFP_KERNEL); + cprb = kzalloc(len, GFP_KERNEL); if (!cprb) return NULL; - memset(cprb, 0, len); cprb->cprb_len = sizeof(struct ep11_cprb); cprb->cprb_ver_id = 0x04; memcpy(cprb->func_id, "T4", 2); @@ -400,7 +381,7 @@ req, sizeof(*req) + sizeof(*req_pl), rep, sizeof(*rep) + sizeof(*rep_pl) + buflen); - rc = _zcrypt_send_ep11_cprb(urb); + rc = zcrypt_send_ep11_cprb(urb); if (rc) { DEBUG_ERR( "%s zcrypt_send_ep11_cprb(card=%d dom=%d) failed, rc=%d\n", @@ -638,7 +619,7 @@ req, sizeof(*req) + sizeof(*req_pl), rep, sizeof(*rep) + sizeof(*rep_pl)); - rc = _zcrypt_send_ep11_cprb(urb); + rc = zcrypt_send_ep11_cprb(urb); if (rc) { DEBUG_ERR( "%s zcrypt_send_ep11_cprb(card=%d dom=%d) failed, rc=%d\n", @@ -758,7 +739,7 @@ req, sizeof(*req) + req_pl_size, rep, sizeof(*rep) + rep_pl_size); - rc = _zcrypt_send_ep11_cprb(urb); + rc = zcrypt_send_ep11_cprb(urb); if (rc) { DEBUG_ERR( "%s zcrypt_send_ep11_cprb(card=%d dom=%d) failed, rc=%d\n", @@ -906,7 +887,7 @@ req, sizeof(*req) + req_pl_size, rep, sizeof(*rep) + sizeof(*rep_pl)); - rc = _zcrypt_send_ep11_cprb(urb); + rc = zcrypt_send_ep11_cprb(urb); if (rc) { DEBUG_ERR( "%s zcrypt_send_ep11_cprb(card=%d dom=%d) failed, rc=%d\n", @@ -1034,7 +1015,7 @@ req, sizeof(*req) + req_pl_size, rep, sizeof(*rep) + sizeof(*rep_pl)); - rc = _zcrypt_send_ep11_cprb(urb); + rc = zcrypt_send_ep11_cprb(urb); if (rc) { DEBUG_ERR( "%s zcrypt_send_ep11_cprb(card=%d dom=%d) failed, rc=%d\n", @@ -1217,9 +1198,9 @@ struct ep11_card_info eci; /* fetch status of all crypto cards */ - device_status = kmalloc_array(MAX_ZDEV_ENTRIES_EXT, - sizeof(struct zcrypt_device_status_ext), - GFP_KERNEL); + device_status = kvmalloc_array(MAX_ZDEV_ENTRIES_EXT, + sizeof(struct zcrypt_device_status_ext), + GFP_KERNEL); if (!device_status) return -ENOMEM; zcrypt_device_status_mask_ext(device_status); @@ -1227,7 +1208,7 @@ /* allocate 1k space for up to 256 apqns */ _apqns = kmalloc_array(256, sizeof(u32), GFP_KERNEL); if (!_apqns) { - kfree(device_status); + kvfree(device_status); return -ENOMEM; } @@ -1282,7 +1263,7 @@ rc = 0; } - kfree(device_status); + kvfree(device_status); return rc; } EXPORT_SYMBOL(ep11_findcard2); diff -u linux-azure-5.4.0/drivers/s390/crypto/zcrypt_error.h linux-azure-5.4.0/drivers/s390/crypto/zcrypt_error.h --- linux-azure-5.4.0/drivers/s390/crypto/zcrypt_error.h +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_error.h @@ -52,7 +52,6 @@ #define REP82_ERROR_INVALID_COMMAND 0x30 #define REP82_ERROR_MALFORMED_MSG 0x40 #define REP82_ERROR_INVALID_SPECIAL_CMD 0x41 -#define REP82_ERROR_INVALID_DOMAIN_PRECHECK 0x42 #define REP82_ERROR_RESERVED_FIELDO 0x50 /* old value */ #define REP82_ERROR_WORD_ALIGNMENT 0x60 #define REP82_ERROR_MESSAGE_LENGTH 0x80 @@ -67,7 +66,6 @@ #define REP82_ERROR_ZERO_BUFFER_LEN 0xB0 #define REP88_ERROR_MODULE_FAILURE 0x10 - #define REP88_ERROR_MESSAGE_TYPE 0x20 #define REP88_ERROR_MESSAGE_MALFORMD 0x22 #define REP88_ERROR_MESSAGE_LENGTH 0x23 @@ -80,83 +78,61 @@ static inline int convert_error(struct zcrypt_queue *zq, struct ap_message *reply) { - struct error_hdr *ehdr = reply->message; + struct error_hdr *ehdr = reply->msg; int card = AP_QID_CARD(zq->queue->qid); int queue = AP_QID_QUEUE(zq->queue->qid); switch (ehdr->reply_code) { - case REP82_ERROR_OPERAND_INVALID: - case REP82_ERROR_OPERAND_SIZE: - case REP82_ERROR_EVEN_MOD_IN_OPND: - case REP88_ERROR_MESSAGE_MALFORMD: - case REP82_ERROR_INVALID_DOMAIN_PRECHECK: - case REP82_ERROR_INVALID_DOMAIN_PENDING: - case REP82_ERROR_INVALID_SPECIAL_CMD: - case REP82_ERROR_FILTERED_BY_HYPERVISOR: - // REP88_ERROR_INVALID_KEY // '82' CEX2A - // REP88_ERROR_OPERAND // '84' CEX2A - // REP88_ERROR_OPERAND_EVEN_MOD // '85' CEX2A - /* Invalid input data. */ + case REP82_ERROR_INVALID_MSG_LEN: /* 0x23 */ + case REP82_ERROR_RESERVD_FIELD: /* 0x24 */ + case REP82_ERROR_FORMAT_FIELD: /* 0x29 */ + case REP82_ERROR_MALFORMED_MSG: /* 0x40 */ + case REP82_ERROR_INVALID_SPECIAL_CMD: /* 0x41 */ + case REP82_ERROR_MESSAGE_LENGTH: /* 0x80 */ + case REP82_ERROR_OPERAND_INVALID: /* 0x82 */ + case REP82_ERROR_OPERAND_SIZE: /* 0x84 */ + case REP82_ERROR_EVEN_MOD_IN_OPND: /* 0x85 */ + case REP82_ERROR_INVALID_DOMAIN_PENDING: /* 0x8A */ + case REP82_ERROR_FILTERED_BY_HYPERVISOR: /* 0x8B */ + case REP82_ERROR_PACKET_TRUNCATED: /* 0xA0 */ + case REP88_ERROR_MESSAGE_MALFORMD: /* 0x22 */ + case REP88_ERROR_KEY_TYPE: /* 0x34 */ + /* RY indicates malformed request */ ZCRYPT_DBF(DBF_WARN, - "device=%02x.%04x reply=0x%02x => rc=EINVAL\n", + "dev=%02x.%04x RY=0x%02x => rc=EINVAL\n", card, queue, ehdr->reply_code); return -EINVAL; - case REP82_ERROR_MESSAGE_TYPE: - // REP88_ERROR_MESSAGE_TYPE // '20' CEX2A + case REP82_ERROR_MACHINE_FAILURE: /* 0x10 */ + case REP82_ERROR_MESSAGE_TYPE: /* 0x20 */ + case REP82_ERROR_TRANSPORT_FAIL: /* 0x90 */ /* - * To sent a message of the wrong type is a bug in the - * device driver. Send error msg, disable the device - * and then repeat the request. + * Msg to wrong type or card/infrastructure failure. + * Trigger rescan of the ap bus, trigger retry request. */ atomic_set(&zcrypt_rescan_req, 1); - zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", - card, queue); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x reply=0x%02x => online=0 rc=EAGAIN\n", - card, queue, ehdr->reply_code); - return -EAGAIN; - case REP82_ERROR_TRANSPORT_FAIL: - /* Card or infrastructure failure, disable card */ - atomic_set(&zcrypt_rescan_req, 1); - zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", - card, queue); /* For type 86 response show the apfs value (failure reason) */ - if (ehdr->type == TYPE86_RSP_CODE) { + if (ehdr->reply_code == REP82_ERROR_TRANSPORT_FAIL && + ehdr->type == TYPE86_RSP_CODE) { struct { struct type86_hdr hdr; struct type86_fmt2_ext fmt2; - } __packed * head = reply->message; + } __packed * head = reply->msg; unsigned int apfs = *((u32 *)head->fmt2.apfs); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x reply=0x%02x apfs=0x%x => online=0 rc=EAGAIN\n", - card, queue, apfs, ehdr->reply_code); + ZCRYPT_DBF(DBF_WARN, + "dev=%02x.%04x RY=0x%02x apfs=0x%x => bus rescan, rc=EAGAIN\n", + card, queue, ehdr->reply_code, apfs); } else - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x reply=0x%02x => online=0 rc=EAGAIN\n", + ZCRYPT_DBF(DBF_WARN, + "dev=%02x.%04x RY=0x%02x => bus rescan, rc=EAGAIN\n", card, queue, ehdr->reply_code); return -EAGAIN; - case REP82_ERROR_MACHINE_FAILURE: - // REP88_ERROR_MODULE_FAILURE // '10' CEX2A - /* If a card fails disable it and repeat the request. */ - atomic_set(&zcrypt_rescan_req, 1); - zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", - card, queue); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x reply=0x%02x => online=0 rc=EAGAIN\n", - card, queue, ehdr->reply_code); - return -EAGAIN; default: - zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", - card, queue); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x reply=0x%02x => online=0 rc=EAGAIN\n", + /* Assume request is valid and a retry will be worth it */ + ZCRYPT_DBF(DBF_WARN, + "dev=%02x.%04x RY=0x%02x => rc=EAGAIN\n", card, queue, ehdr->reply_code); - return -EAGAIN; /* repeat the request on a different device. */ + return -EAGAIN; } } diff -u linux-azure-5.4.0/drivers/s390/net/qeth_core_main.c linux-azure-5.4.0/drivers/s390/net/qeth_core_main.c --- linux-azure-5.4.0/drivers/s390/net/qeth_core_main.c +++ linux-azure-5.4.0/drivers/s390/net/qeth_core_main.c @@ -227,7 +227,7 @@ return -ENOMEM; } for (j = 0; j < QETH_MAX_BUFFER_ELEMENTS(card); ++j) { - ptr = (void *) __get_free_page(GFP_KERNEL); + ptr = (void *) __get_free_page(GFP_KERNEL|__GFP_MEMALLOC); if (!ptr) { while (j > 0) free_page((unsigned long) @@ -2612,7 +2612,7 @@ struct qeth_buffer_pool_entry, list); for (i = 0; i < QETH_MAX_BUFFER_ELEMENTS(card); ++i) { if (page_count(virt_to_page(entry->elements[i])) > 1) { - page = alloc_page(GFP_ATOMIC); + page = dev_alloc_page(); if (!page) { return NULL; } else { diff -u linux-azure-5.4.0/drivers/s390/scsi/zfcp_fsf.c linux-azure-5.4.0/drivers/s390/scsi/zfcp_fsf.c --- linux-azure-5.4.0/drivers/s390/scsi/zfcp_fsf.c +++ linux-azure-5.4.0/drivers/s390/scsi/zfcp_fsf.c @@ -1883,7 +1883,7 @@ wka_port->status = ZFCP_FC_WKA_PORT_ONLINE; } out: - wake_up(&wka_port->completion_wq); + wake_up(&wka_port->opened); } /** @@ -1942,7 +1942,7 @@ } wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; - wake_up(&wka_port->completion_wq); + wake_up(&wka_port->closed); } /** diff -u linux-azure-5.4.0/drivers/scsi/BusLogic.c linux-azure-5.4.0/drivers/scsi/BusLogic.c --- linux-azure-5.4.0/drivers/scsi/BusLogic.c +++ linux-azure-5.4.0/drivers/scsi/BusLogic.c @@ -3601,7 +3601,7 @@ if (buf[0] != '\n' || len > 1) printk("%sscsi%d: %s", blogic_msglevelmap[msglevel], adapter->host_no, buf); } else - printk("%s", buf); + pr_cont("%s", buf); } else { if (begin) { if (adapter != NULL && adapter->adapter_initd) @@ -3609,7 +3609,7 @@ else printk("%s%s", blogic_msglevelmap[msglevel], buf); } else - printk("%s", buf); + pr_cont("%s", buf); } begin = (buf[len - 1] == '\n'); } diff -u linux-azure-5.4.0/drivers/scsi/aic7xxx/aic7xxx_core.c linux-azure-5.4.0/drivers/scsi/aic7xxx/aic7xxx_core.c --- linux-azure-5.4.0/drivers/scsi/aic7xxx/aic7xxx_core.c +++ linux-azure-5.4.0/drivers/scsi/aic7xxx/aic7xxx_core.c @@ -493,7 +493,7 @@ return ((ahc_inb(ahc, port)) | (ahc_inb(ahc, port+1) << 8) | (ahc_inb(ahc, port+2) << 16) - | (ahc_inb(ahc, port+3) << 24) + | (((uint64_t)ahc_inb(ahc, port+3)) << 24) | (((uint64_t)ahc_inb(ahc, port+4)) << 32) | (((uint64_t)ahc_inb(ahc, port+5)) << 40) | (((uint64_t)ahc_inb(ahc, port+6)) << 48) diff -u linux-azure-5.4.0/drivers/scsi/bfa/bfad_attr.c linux-azure-5.4.0/drivers/scsi/bfa/bfad_attr.c --- linux-azure-5.4.0/drivers/scsi/bfa/bfad_attr.c +++ linux-azure-5.4.0/drivers/scsi/bfa/bfad_attr.c @@ -711,7 +711,7 @@ char serial_num[BFA_ADAPTER_SERIAL_NUM_LEN]; bfa_get_adapter_serial_num(&bfad->bfa, serial_num); - return snprintf(buf, PAGE_SIZE, "%s\n", serial_num); + return sysfs_emit(buf, "%s\n", serial_num); } static ssize_t @@ -725,7 +725,7 @@ char model[BFA_ADAPTER_MODEL_NAME_LEN]; bfa_get_adapter_model(&bfad->bfa, model); - return snprintf(buf, PAGE_SIZE, "%s\n", model); + return sysfs_emit(buf, "%s\n", model); } static ssize_t @@ -805,7 +805,7 @@ snprintf(model_descr, BFA_ADAPTER_MODEL_DESCR_LEN, "Invalid Model"); - return snprintf(buf, PAGE_SIZE, "%s\n", model_descr); + return sysfs_emit(buf, "%s\n", model_descr); } static ssize_t @@ -819,7 +819,7 @@ u64 nwwn; nwwn = bfa_fcs_lport_get_nwwn(port->fcs_port); - return snprintf(buf, PAGE_SIZE, "0x%llx\n", cpu_to_be64(nwwn)); + return sysfs_emit(buf, "0x%llx\n", cpu_to_be64(nwwn)); } static ssize_t @@ -836,7 +836,7 @@ bfa_fcs_lport_get_attr(&bfad->bfa_fcs.fabric.bport, &port_attr); strlcpy(symname, port_attr.port_cfg.sym_name.symname, BFA_SYMNAME_MAXLEN); - return snprintf(buf, PAGE_SIZE, "%s\n", symname); + return sysfs_emit(buf, "%s\n", symname); } static ssize_t @@ -850,14 +850,14 @@ char hw_ver[BFA_VERSION_LEN]; bfa_get_pci_chip_rev(&bfad->bfa, hw_ver); - return snprintf(buf, PAGE_SIZE, "%s\n", hw_ver); + return sysfs_emit(buf, "%s\n", hw_ver); } static ssize_t bfad_im_drv_version_show(struct device *dev, struct device_attribute *attr, char *buf) { - return snprintf(buf, PAGE_SIZE, "%s\n", BFAD_DRIVER_VERSION); + return sysfs_emit(buf, "%s\n", BFAD_DRIVER_VERSION); } static ssize_t @@ -871,7 +871,7 @@ char optrom_ver[BFA_VERSION_LEN]; bfa_get_adapter_optrom_ver(&bfad->bfa, optrom_ver); - return snprintf(buf, PAGE_SIZE, "%s\n", optrom_ver); + return sysfs_emit(buf, "%s\n", optrom_ver); } static ssize_t @@ -885,7 +885,7 @@ char fw_ver[BFA_VERSION_LEN]; bfa_get_adapter_fw_ver(&bfad->bfa, fw_ver); - return snprintf(buf, PAGE_SIZE, "%s\n", fw_ver); + return sysfs_emit(buf, "%s\n", fw_ver); } static ssize_t @@ -897,7 +897,7 @@ (struct bfad_im_port_s *) shost->hostdata[0]; struct bfad_s *bfad = im_port->bfad; - return snprintf(buf, PAGE_SIZE, "%d\n", + return sysfs_emit(buf, "%d\n", bfa_get_nports(&bfad->bfa)); } @@ -905,7 +905,7 @@ bfad_im_drv_name_show(struct device *dev, struct device_attribute *attr, char *buf) { - return snprintf(buf, PAGE_SIZE, "%s\n", BFAD_DRIVER_NAME); + return sysfs_emit(buf, "%s\n", BFAD_DRIVER_NAME); } static ssize_t @@ -924,14 +924,14 @@ rports = kcalloc(nrports, sizeof(struct bfa_rport_qualifier_s), GFP_ATOMIC); if (rports == NULL) - return snprintf(buf, PAGE_SIZE, "Failed\n"); + return sysfs_emit(buf, "Failed\n"); spin_lock_irqsave(&bfad->bfad_lock, flags); bfa_fcs_lport_get_rport_quals(port->fcs_port, rports, &nrports); spin_unlock_irqrestore(&bfad->bfad_lock, flags); kfree(rports); - return snprintf(buf, PAGE_SIZE, "%d\n", nrports); + return sysfs_emit(buf, "%d\n", nrports); } static DEVICE_ATTR(serial_number, S_IRUGO, diff -u linux-azure-5.4.0/drivers/scsi/bnx2i/bnx2i_iscsi.c linux-azure-5.4.0/drivers/scsi/bnx2i/bnx2i_iscsi.c --- linux-azure-5.4.0/drivers/scsi/bnx2i/bnx2i_iscsi.c +++ linux-azure-5.4.0/drivers/scsi/bnx2i/bnx2i_iscsi.c @@ -793,7 +793,7 @@ return NULL; shost->dma_boundary = cnic->pcidev->dma_mask; shost->transportt = bnx2i_scsi_xport_template; - shost->max_id = ISCSI_MAX_CONNS_PER_HBA; + shost->max_id = ISCSI_MAX_CONNS_PER_HBA - 1; shost->max_channel = 0; shost->max_lun = 512; shost->max_cmd_len = 16; diff -u linux-azure-5.4.0/drivers/scsi/csiostor/csio_lnode.c linux-azure-5.4.0/drivers/scsi/csiostor/csio_lnode.c --- linux-azure-5.4.0/drivers/scsi/csiostor/csio_lnode.c +++ linux-azure-5.4.0/drivers/scsi/csiostor/csio_lnode.c @@ -619,7 +619,7 @@ struct fc_els_csp *csp; struct fc_els_cssp *clsp; enum fw_retval retval; - __be32 nport_id; + __be32 nport_id = 0; retval = FW_CMD_RETVAL_G(ntohl(rsp->alloc_to_len16)); if (retval != FW_SUCCESS) { diff -u linux-azure-5.4.0/drivers/scsi/cxgbi/libcxgbi.c linux-azure-5.4.0/drivers/scsi/cxgbi/libcxgbi.c --- linux-azure-5.4.0/drivers/scsi/cxgbi/libcxgbi.c +++ linux-azure-5.4.0/drivers/scsi/cxgbi/libcxgbi.c @@ -337,7 +337,7 @@ EXPORT_SYMBOL_GPL(cxgbi_hbas_remove); int cxgbi_hbas_add(struct cxgbi_device *cdev, u64 max_lun, - unsigned int max_id, struct scsi_host_template *sht, + unsigned int max_conns, struct scsi_host_template *sht, struct scsi_transport_template *stt) { struct cxgbi_hba *chba; @@ -357,7 +357,7 @@ shost->transportt = stt; shost->max_lun = max_lun; - shost->max_id = max_id; + shost->max_id = max_conns - 1; shost->max_channel = 0; shost->max_cmd_len = 16; diff -u linux-azure-5.4.0/drivers/scsi/device_handler/scsi_dh_alua.c linux-azure-5.4.0/drivers/scsi/device_handler/scsi_dh_alua.c --- linux-azure-5.4.0/drivers/scsi/device_handler/scsi_dh_alua.c +++ linux-azure-5.4.0/drivers/scsi/device_handler/scsi_dh_alua.c @@ -508,7 +508,8 @@ struct alua_port_group *tmp_pg; int len, k, off, bufflen = ALUA_RTPG_SIZE; unsigned char *desc, *buff; - unsigned err, retval; + unsigned err; + int retval; unsigned int tpg_desc_tbl_off; unsigned char orig_transition_tmo; unsigned long flags; @@ -548,12 +549,12 @@ kfree(buff); return SCSI_DH_OK; } - if (!scsi_sense_valid(&sense_hdr)) { + if (retval < 0 || !scsi_sense_valid(&sense_hdr)) { sdev_printk(KERN_INFO, sdev, "%s: rtpg failed, result %d\n", ALUA_DH_NAME, retval); kfree(buff); - if (driver_byte(retval) == DRIVER_ERROR) + if (retval < 0) return SCSI_DH_DEV_TEMP_BUSY; return SCSI_DH_IO; } @@ -775,11 +776,11 @@ retval = submit_stpg(sdev, pg->group_id, &sense_hdr); if (retval) { - if (!scsi_sense_valid(&sense_hdr)) { + if (retval < 0 || !scsi_sense_valid(&sense_hdr)) { sdev_printk(KERN_INFO, sdev, "%s: stpg failed, result %d", ALUA_DH_NAME, retval); - if (driver_byte(retval) == DRIVER_ERROR) + if (retval < 0) return SCSI_DH_DEV_TEMP_BUSY; } else { sdev_printk(KERN_INFO, sdev, "%s: stpg failed\n", diff -u linux-azure-5.4.0/drivers/scsi/fcoe/fcoe_ctlr.c linux-azure-5.4.0/drivers/scsi/fcoe/fcoe_ctlr.c --- linux-azure-5.4.0/drivers/scsi/fcoe/fcoe_ctlr.c +++ linux-azure-5.4.0/drivers/scsi/fcoe/fcoe_ctlr.c @@ -1966,7 +1966,7 @@ * * Returns: u64 fc world wide name */ -u64 fcoe_wwn_from_mac(unsigned char mac[MAX_ADDR_LEN], +u64 fcoe_wwn_from_mac(unsigned char mac[ETH_ALEN], unsigned int scheme, unsigned int port) { u64 wwn; diff -u linux-azure-5.4.0/drivers/scsi/fnic/fnic_main.c linux-azure-5.4.0/drivers/scsi/fnic/fnic_main.c --- linux-azure-5.4.0/drivers/scsi/fnic/fnic_main.c +++ linux-azure-5.4.0/drivers/scsi/fnic/fnic_main.c @@ -581,6 +581,8 @@ fnic->lport = lp; fnic->ctlr.lp = lp; + fnic->link_events = 0; + snprintf(fnic->name, sizeof(fnic->name) - 1, "%s%d", DRV_NAME, host->host_no); diff -u linux-azure-5.4.0/drivers/scsi/fnic/fnic_scsi.c linux-azure-5.4.0/drivers/scsi/fnic/fnic_scsi.c --- linux-azure-5.4.0/drivers/scsi/fnic/fnic_scsi.c +++ linux-azure-5.4.0/drivers/scsi/fnic/fnic_scsi.c @@ -920,10 +920,11 @@ case FCPIO_SUCCESS: sc->result = (DID_OK << 16) | icmnd_cmpl->scsi_status; xfer_len = scsi_bufflen(sc); - scsi_set_resid(sc, icmnd_cmpl->residual); - if (icmnd_cmpl->flags & FCPIO_ICMND_CMPL_RESID_UNDER) + if (icmnd_cmpl->flags & FCPIO_ICMND_CMPL_RESID_UNDER) { xfer_len -= icmnd_cmpl->residual; + scsi_set_resid(sc, icmnd_cmpl->residual); + } if (icmnd_cmpl->scsi_status == SAM_STAT_CHECK_CONDITION) atomic64_inc(&fnic_stats->misc_stats.check_condition); @@ -1401,7 +1402,7 @@ } if (!io_req) { spin_unlock_irqrestore(io_lock, flags); - goto cleanup_scsi_cmd; + continue; } CMD_SP(sc) = NULL; @@ -1416,7 +1417,6 @@ fnic_release_ioreq_buf(fnic, io_req, sc); mempool_free(io_req, fnic->io_req_pool); -cleanup_scsi_cmd: sc->result = DID_TRANSPORT_DISRUPTED << 16; FNIC_SCSI_DBG(KERN_DEBUG, fnic->lport->host, "%s: tag:0x%x : sc:0x%p duration = %lu DID_TRANSPORT_DISRUPTED\n", @@ -1734,15 +1734,14 @@ continue; } - cmd_rport = starget_to_rport(scsi_target(sc->device)); - if (rport != cmd_rport) { + io_req = (struct fnic_io_req *)CMD_SP(sc); + if (!io_req) { spin_unlock_irqrestore(io_lock, flags); continue; } - io_req = (struct fnic_io_req *)CMD_SP(sc); - - if (!io_req || rport != cmd_rport) { + cmd_rport = starget_to_rport(scsi_target(sc->device)); + if (rport != cmd_rport) { spin_unlock_irqrestore(io_lock, flags); continue; } @@ -2673,7 +2672,8 @@ /* Issue firmware reset for fnic, wait for reset to complete */ retry_fw_reset: spin_lock_irqsave(&fnic->fnic_lock, flags); - if (unlikely(fnic->state == FNIC_IN_FC_TRANS_ETH_MODE)) { + if (unlikely(fnic->state == FNIC_IN_FC_TRANS_ETH_MODE) && + fnic->link_events) { /* fw reset is in progress, poll for its completion */ spin_unlock_irqrestore(&fnic->fnic_lock, flags); schedule_timeout(msecs_to_jiffies(100)); diff -u linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c --- linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c +++ linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c @@ -1650,7 +1650,7 @@ if (irq < 0) { dev_err(dev, "irq init: fail map phy interrupt %d\n", idx); - return -ENOENT; + return irq; } rc = devm_request_irq(dev, irq, phy_interrupts[j], 0, @@ -1658,7 +1658,7 @@ if (rc) { dev_err(dev, "irq init: could not request phy interrupt %d, rc=%d\n", irq, rc); - return -ENOENT; + return rc; } } } @@ -1669,7 +1669,7 @@ if (irq < 0) { dev_err(dev, "irq init: could not map cq interrupt %d\n", idx); - return -ENOENT; + return irq; } rc = devm_request_irq(dev, irq, cq_interrupt_v1_hw, 0, @@ -1677,7 +1677,7 @@ if (rc) { dev_err(dev, "irq init: could not request cq interrupt %d, rc=%d\n", irq, rc); - return -ENOENT; + return rc; } } @@ -1687,7 +1687,7 @@ if (irq < 0) { dev_err(dev, "irq init: could not map fatal interrupt %d\n", idx); - return -ENOENT; + return irq; } rc = devm_request_irq(dev, irq, fatal_interrupts[i], 0, @@ -1695,7 +1695,7 @@ if (rc) { dev_err(dev, "irq init: could not request fatal interrupt %d, rc=%d\n", irq, rc); - return -ENOENT; + return rc; } } @@ -1770,6 +1770,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = host_attrs_v1_hw, diff -u linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c --- linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c +++ linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c @@ -3546,6 +3546,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = host_attrs_v2_hw, diff -u linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c --- linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c +++ linux-azure-5.4.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c @@ -511,7 +511,7 @@ /* permit overriding the host protection capabilities mask (EEDP/T10 PI) */ static int prot_mask; -module_param(prot_mask, int, 0); +module_param(prot_mask, int, 0444); MODULE_PARM_DESC(prot_mask, " host protection capabilities mask, def=0x0 "); static bool auto_affine_msi_experimental; @@ -3084,6 +3084,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = host_attrs_v3_hw, @@ -3294,14 +3295,14 @@ { int i; - free_irq(pci_irq_vector(pdev, 1), hisi_hba); - free_irq(pci_irq_vector(pdev, 2), hisi_hba); - free_irq(pci_irq_vector(pdev, 11), hisi_hba); + devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 1), hisi_hba); + devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 2), hisi_hba); + devm_free_irq(&pdev->dev, pci_irq_vector(pdev, 11), hisi_hba); for (i = 0; i < hisi_hba->cq_nvecs; i++) { struct hisi_sas_cq *cq = &hisi_hba->cq[i]; int nr = hisi_sas_intr_conv ? 16 : 16 + i; - free_irq(pci_irq_vector(pdev, nr), cq); + devm_free_irq(&pdev->dev, pci_irq_vector(pdev, nr), cq); } pci_free_irq_vectors(pdev); } diff -u linux-azure-5.4.0/drivers/scsi/ipr.c linux-azure-5.4.0/drivers/scsi/ipr.c --- linux-azure-5.4.0/drivers/scsi/ipr.c +++ linux-azure-5.4.0/drivers/scsi/ipr.c @@ -9772,7 +9772,7 @@ GFP_KERNEL); if (!ioa_cfg->hrrq[i].host_rrq) { - while (--i > 0) + while (--i >= 0) dma_free_coherent(&pdev->dev, sizeof(u32) * ioa_cfg->hrrq[i].size, ioa_cfg->hrrq[i].host_rrq, @@ -10045,7 +10045,7 @@ ioa_cfg->vectors_info[i].desc, &ioa_cfg->hrrq[i]); if (rc) { - while (--i >= 0) + while (--i > 0) free_irq(pci_irq_vector(pdev, i), &ioa_cfg->hrrq[i]); return rc; diff -u linux-azure-5.4.0/drivers/scsi/libfc/fc_exch.c linux-azure-5.4.0/drivers/scsi/libfc/fc_exch.c --- linux-azure-5.4.0/drivers/scsi/libfc/fc_exch.c +++ linux-azure-5.4.0/drivers/scsi/libfc/fc_exch.c @@ -1697,6 +1697,7 @@ if (cancel_delayed_work_sync(&ep->timeout_work)) { FC_EXCH_DBG(ep, "Exchange timer canceled due to ABTS response\n"); fc_exch_release(ep); /* release from pending timer hold */ + return; } spin_lock_bh(&ep->ex_lock); diff -u linux-azure-5.4.0/drivers/scsi/libfc/fc_rport.c linux-azure-5.4.0/drivers/scsi/libfc/fc_rport.c --- linux-azure-5.4.0/drivers/scsi/libfc/fc_rport.c +++ linux-azure-5.4.0/drivers/scsi/libfc/fc_rport.c @@ -1160,6 +1160,7 @@ resp_code = (pp->spp.spp_flags & FC_SPP_RESP_MASK); FC_RPORT_DBG(rdata, "PRLI spp_flags = 0x%x spp_type 0x%x\n", pp->spp.spp_flags, pp->spp.spp_type); + rdata->spp_type = pp->spp.spp_type; if (resp_code != FC_SPP_RESP_ACK) { if (resp_code == FC_SPP_RESP_CONF) @@ -1182,11 +1183,13 @@ /* * Call prli provider if we should act as a target */ - prov = fc_passive_prov[rdata->spp_type]; - if (prov) { - memset(&temp_spp, 0, sizeof(temp_spp)); - prov->prli(rdata, pp->prli.prli_spp_len, - &pp->spp, &temp_spp); + if (rdata->spp_type < FC_FC4_PROV_SIZE) { + prov = fc_passive_prov[rdata->spp_type]; + if (prov) { + memset(&temp_spp, 0, sizeof(temp_spp)); + prov->prli(rdata, pp->prli.prli_spp_len, + &pp->spp, &temp_spp); + } } /* * Check if the image pair could be established diff -u linux-azure-5.4.0/drivers/scsi/libiscsi.c linux-azure-5.4.0/drivers/scsi/libiscsi.c --- linux-azure-5.4.0/drivers/scsi/libiscsi.c +++ linux-azure-5.4.0/drivers/scsi/libiscsi.c @@ -230,11 +230,11 @@ */ static int iscsi_check_tmf_restrictions(struct iscsi_task *task, int opcode) { - struct iscsi_conn *conn = task->conn; - struct iscsi_tm *tmf = &conn->tmhdr; + struct iscsi_session *session = task->conn->session; + struct iscsi_tm *tmf = &session->tmhdr; u64 hdr_lun; - if (conn->tmf_state == TMF_INITIAL) + if (session->tmf_state == TMF_INITIAL) return 0; if ((tmf->opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_SCSI_TMFUNC) @@ -254,24 +254,19 @@ * Fail all SCSI cmd PDUs */ if (opcode != ISCSI_OP_SCSI_DATA_OUT) { - iscsi_conn_printk(KERN_INFO, conn, - "task [op %x itt " - "0x%x/0x%x] " - "rejected.\n", - opcode, task->itt, - task->hdr_itt); + iscsi_session_printk(KERN_INFO, session, + "task [op %x itt 0x%x/0x%x] rejected.\n", + opcode, task->itt, task->hdr_itt); return -EACCES; } /* * And also all data-out PDUs in response to R2T * if fast_abort is set. */ - if (conn->session->fast_abort) { - iscsi_conn_printk(KERN_INFO, conn, - "task [op %x itt " - "0x%x/0x%x] fast abort.\n", - opcode, task->itt, - task->hdr_itt); + if (session->fast_abort) { + iscsi_session_printk(KERN_INFO, session, + "task [op %x itt 0x%x/0x%x] fast abort.\n", + opcode, task->itt, task->hdr_itt); return -EACCES; } break; @@ -284,7 +279,7 @@ */ if (opcode == ISCSI_OP_SCSI_DATA_OUT && task->hdr_itt == tmf->rtt) { - ISCSI_DBG_SESSION(conn->session, + ISCSI_DBG_SESSION(session, "Preventing task %x/%x from sending " "data-out due to abort task in " "progress\n", task->itt, @@ -923,20 +918,21 @@ static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr) { struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr; + struct iscsi_session *session = conn->session; conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; conn->tmfrsp_pdus_cnt++; - if (conn->tmf_state != TMF_QUEUED) + if (session->tmf_state != TMF_QUEUED) return; if (tmf->response == ISCSI_TMF_RSP_COMPLETE) - conn->tmf_state = TMF_SUCCESS; + session->tmf_state = TMF_SUCCESS; else if (tmf->response == ISCSI_TMF_RSP_NO_TASK) - conn->tmf_state = TMF_NOT_FOUND; + session->tmf_state = TMF_NOT_FOUND; else - conn->tmf_state = TMF_FAILED; - wake_up(&conn->ehwait); + session->tmf_state = TMF_FAILED; + wake_up(&session->ehwait); } static int iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr) @@ -1348,7 +1344,6 @@ enum iscsi_err err) { struct iscsi_conn *conn; - struct device *dev; spin_lock_bh(&session->frwd_lock); conn = session->leadconn; @@ -1357,10 +1352,8 @@ return; } - dev = get_device(&conn->cls_conn->dev); + iscsi_get_conn(conn->cls_conn); spin_unlock_bh(&session->frwd_lock); - if (!dev) - return; /* * if the host is being removed bypass the connection * recovery initialization because we are going to kill @@ -1370,7 +1363,7 @@ iscsi_conn_error_event(conn->cls_conn, err); else iscsi_conn_failure(conn, err); - put_device(dev); + iscsi_put_conn(conn->cls_conn); } EXPORT_SYMBOL_GPL(iscsi_session_failure); @@ -1787,15 +1780,14 @@ static void iscsi_tmf_timedout(struct timer_list *t) { - struct iscsi_conn *conn = from_timer(conn, t, tmf_timer); - struct iscsi_session *session = conn->session; + struct iscsi_session *session = from_timer(session, t, tmf_timer); spin_lock(&session->frwd_lock); - if (conn->tmf_state == TMF_QUEUED) { - conn->tmf_state = TMF_TIMEDOUT; + if (session->tmf_state == TMF_QUEUED) { + session->tmf_state = TMF_TIMEDOUT; ISCSI_DBG_EH(session, "tmf timedout\n"); /* unblock eh_abort() */ - wake_up(&conn->ehwait); + wake_up(&session->ehwait); } spin_unlock(&session->frwd_lock); } @@ -1818,8 +1810,8 @@ return -EPERM; } conn->tmfcmd_pdus_cnt++; - conn->tmf_timer.expires = timeout * HZ + jiffies; - add_timer(&conn->tmf_timer); + session->tmf_timer.expires = timeout * HZ + jiffies; + add_timer(&session->tmf_timer); ISCSI_DBG_EH(session, "tmf set timeout\n"); spin_unlock_bh(&session->frwd_lock); @@ -1833,12 +1825,12 @@ * 3) session is terminated or restarted or userspace has * given up on recovery */ - wait_event_interruptible(conn->ehwait, age != session->age || + wait_event_interruptible(session->ehwait, age != session->age || session->state != ISCSI_STATE_LOGGED_IN || - conn->tmf_state != TMF_QUEUED); + session->tmf_state != TMF_QUEUED); if (signal_pending(current)) flush_signals(current); - del_timer_sync(&conn->tmf_timer); + del_timer_sync(&session->tmf_timer); mutex_lock(&session->eh_mutex); spin_lock_bh(&session->frwd_lock); @@ -2198,17 +2190,17 @@ } /* only have one tmf outstanding at a time */ - if (conn->tmf_state != TMF_INITIAL) + if (session->tmf_state != TMF_INITIAL) goto failed; - conn->tmf_state = TMF_QUEUED; + session->tmf_state = TMF_QUEUED; - hdr = &conn->tmhdr; + hdr = &session->tmhdr; iscsi_prep_abort_task_pdu(task, hdr); if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) goto failed; - switch (conn->tmf_state) { + switch (session->tmf_state) { case TMF_SUCCESS: spin_unlock_bh(&session->frwd_lock); /* @@ -2223,7 +2215,7 @@ */ spin_lock_bh(&session->frwd_lock); fail_scsi_task(task, DID_ABORT); - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; memset(hdr, 0, sizeof(*hdr)); spin_unlock_bh(&session->frwd_lock); iscsi_start_tx(conn); @@ -2234,7 +2226,7 @@ goto failed_unlocked; case TMF_NOT_FOUND: if (!sc->SCp.ptr) { - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; memset(hdr, 0, sizeof(*hdr)); /* task completed before tmf abort response */ ISCSI_DBG_EH(session, "sc completed while abort in " @@ -2243,7 +2235,7 @@ } /* fall through */ default: - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; goto failed; } @@ -2300,11 +2292,11 @@ conn = session->leadconn; /* only have one tmf outstanding at a time */ - if (conn->tmf_state != TMF_INITIAL) + if (session->tmf_state != TMF_INITIAL) goto unlock; - conn->tmf_state = TMF_QUEUED; + session->tmf_state = TMF_QUEUED; - hdr = &conn->tmhdr; + hdr = &session->tmhdr; iscsi_prep_lun_reset_pdu(sc, hdr); if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age, @@ -2313,7 +2305,7 @@ goto unlock; } - switch (conn->tmf_state) { + switch (session->tmf_state) { case TMF_SUCCESS: break; case TMF_TIMEDOUT: @@ -2321,7 +2313,7 @@ iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); goto done; default: - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; goto unlock; } @@ -2333,7 +2325,7 @@ spin_lock_bh(&session->frwd_lock); memset(hdr, 0, sizeof(*hdr)); fail_scsi_tasks(conn, sc->device->lun, DID_ERROR); - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; spin_unlock_bh(&session->frwd_lock); iscsi_start_tx(conn); @@ -2356,8 +2348,7 @@ spin_lock_bh(&session->frwd_lock); if (session->state != ISCSI_STATE_LOGGED_IN) { session->state = ISCSI_STATE_RECOVERY_FAILED; - if (session->leadconn) - wake_up(&session->leadconn->ehwait); + wake_up(&session->ehwait); } spin_unlock_bh(&session->frwd_lock); } @@ -2402,7 +2393,7 @@ iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); ISCSI_DBG_EH(session, "wait for relogin\n"); - wait_event_interruptible(conn->ehwait, + wait_event_interruptible(session->ehwait, session->state == ISCSI_STATE_TERMINATE || session->state == ISCSI_STATE_LOGGED_IN || session->state == ISCSI_STATE_RECOVERY_FAILED); @@ -2463,11 +2454,11 @@ conn = session->leadconn; /* only have one tmf outstanding at a time */ - if (conn->tmf_state != TMF_INITIAL) + if (session->tmf_state != TMF_INITIAL) goto unlock; - conn->tmf_state = TMF_QUEUED; + session->tmf_state = TMF_QUEUED; - hdr = &conn->tmhdr; + hdr = &session->tmhdr; iscsi_prep_tgt_reset_pdu(sc, hdr); if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age, @@ -2476,7 +2467,7 @@ goto unlock; } - switch (conn->tmf_state) { + switch (session->tmf_state) { case TMF_SUCCESS: break; case TMF_TIMEDOUT: @@ -2484,7 +2475,7 @@ iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST); goto done; default: - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; goto unlock; } @@ -2496,7 +2487,7 @@ spin_lock_bh(&session->frwd_lock); memset(hdr, 0, sizeof(*hdr)); fail_scsi_tasks(conn, -1, DID_ERROR); - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; spin_unlock_bh(&session->frwd_lock); iscsi_start_tx(conn); @@ -2801,7 +2792,10 @@ session->tt = iscsit; session->dd_data = cls_session->dd_data + sizeof(*session); + session->tmf_state = TMF_INITIAL; + timer_setup(&session->tmf_timer, iscsi_tmf_timedout, 0); mutex_init(&session->eh_mutex); + spin_lock_init(&session->frwd_lock); spin_lock_init(&session->back_lock); @@ -2905,7 +2899,6 @@ conn->c_stage = ISCSI_CONN_INITIAL_STAGE; conn->id = conn_idx; conn->exp_statsn = 0; - conn->tmf_state = TMF_INITIAL; timer_setup(&conn->transport_timer, iscsi_check_transport_timeouts, 0); @@ -2931,8 +2924,7 @@ goto login_task_data_alloc_fail; conn->login_task->data = conn->data = data; - timer_setup(&conn->tmf_timer, iscsi_tmf_timedout, 0); - init_waitqueue_head(&conn->ehwait); + init_waitqueue_head(&session->ehwait); return cls_conn; @@ -2956,6 +2948,8 @@ { struct iscsi_conn *conn = cls_conn->dd_data; struct iscsi_session *session = conn->session; + char *tmp_persistent_address = conn->persistent_address; + char *tmp_local_ipaddr = conn->local_ipaddr; del_timer_sync(&conn->transport_timer); @@ -2967,7 +2961,7 @@ * leading connection? then give up on recovery. */ session->state = ISCSI_STATE_TERMINATE; - wake_up(&conn->ehwait); + wake_up(&session->ehwait); } spin_unlock_bh(&session->frwd_lock); @@ -2977,8 +2971,6 @@ spin_lock_bh(&session->frwd_lock); free_pages((unsigned long) conn->data, get_order(ISCSI_DEF_MAX_RECV_SEG_LEN)); - kfree(conn->persistent_address); - kfree(conn->local_ipaddr); /* regular RX path uses back_lock */ spin_lock_bh(&session->back_lock); kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task, @@ -2990,6 +2982,8 @@ mutex_unlock(&session->eh_mutex); iscsi_destroy_conn(cls_conn); + kfree(tmp_persistent_address); + kfree(tmp_local_ipaddr); } EXPORT_SYMBOL_GPL(iscsi_conn_teardown); @@ -3042,7 +3036,7 @@ * commands after successful recovery */ conn->stop_stage = 0; - conn->tmf_state = TMF_INITIAL; + session->tmf_state = TMF_INITIAL; session->age++; if (session->age == 16) session->age = 0; @@ -3056,7 +3050,7 @@ spin_unlock_bh(&session->frwd_lock); iscsi_unblock_session(session->cls_session); - wake_up(&conn->ehwait); + wake_up(&session->ehwait); return 0; } EXPORT_SYMBOL_GPL(iscsi_conn_start); @@ -3143,7 +3137,7 @@ spin_lock_bh(&session->frwd_lock); fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED); fail_mgmt_tasks(session, conn); - memset(&conn->tmhdr, 0, sizeof(conn->tmhdr)); + memset(&session->tmhdr, 0, sizeof(session->tmhdr)); spin_unlock_bh(&session->frwd_lock); mutex_unlock(&session->eh_mutex); } diff -u linux-azure-5.4.0/drivers/scsi/libsas/sas_ata.c linux-azure-5.4.0/drivers/scsi/libsas/sas_ata.c --- linux-azure-5.4.0/drivers/scsi/libsas/sas_ata.c +++ linux-azure-5.4.0/drivers/scsi/libsas/sas_ata.c @@ -201,7 +201,7 @@ task->total_xfer_len = qc->nbytes; task->num_scatter = qc->n_elem; task->data_dir = qc->dma_dir; - } else if (qc->tf.protocol == ATA_PROT_NODATA) { + } else if (!ata_is_data(qc->tf.protocol)) { task->data_dir = DMA_NONE; } else { for_each_sg(qc->sg, sg, qc->n_elem, si) diff -u linux-azure-5.4.0/drivers/scsi/libsas/sas_scsi_host.c linux-azure-5.4.0/drivers/scsi/libsas/sas_scsi_host.c --- linux-azure-5.4.0/drivers/scsi/libsas/sas_scsi_host.c +++ linux-azure-5.4.0/drivers/scsi/libsas/sas_scsi_host.c @@ -914,6 +914,14 @@ blk_abort_request(sc->request); } +int sas_slave_alloc(struct scsi_device *sdev) +{ + if (dev_is_sata(sdev_to_domain_dev(sdev)) && sdev->lun) + return -ENXIO; + + return 0; +} + void sas_target_destroy(struct scsi_target *starget) { struct domain_device *found_dev = starget->hostdata; @@ -961,4 +969,5 @@ EXPORT_SYMBOL_GPL(sas_eh_device_reset_handler); EXPORT_SYMBOL_GPL(sas_eh_target_reset_handler); +EXPORT_SYMBOL_GPL(sas_slave_alloc); EXPORT_SYMBOL_GPL(sas_target_destroy); EXPORT_SYMBOL_GPL(sas_ioctl); diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc.h linux-azure-5.4.0/drivers/scsi/lpfc/lpfc.h --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc.h +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc.h @@ -376,6 +376,7 @@ #define FC_VPORT_LOGO_RCVD 0x200 /* LOGO received on vport */ #define FC_RSCN_DISCOVERY 0x400 /* Auth all devices after RSCN */ #define FC_LOGO_RCVD_DID_CHNG 0x800 /* FDISC on phys port detect DID chng*/ +#define FC_PT2PT_NO_NVME 0x1000 /* Don't send NVME PRLI */ #define FC_SCSI_SCAN_TMO 0x4000 /* scsi scan timer running */ #define FC_ABORT_DISCOVERY 0x8000 /* we want to abort discovery */ #define FC_NDISC_ACTIVE 0x10000 /* NPort discovery active */ @@ -741,7 +742,6 @@ #define HBA_DEVLOSS_TMO 0x2000 /* HBA in devloss timeout */ #define HBA_RRQ_ACTIVE 0x4000 /* process the rrq active list */ #define HBA_IOQ_FLUSH 0x8000 /* FCP/NVME I/O queues being flushed */ -#define HBA_FW_DUMP_OP 0x10000 /* Skips fn reset before FW dump */ #define HBA_RECOVERABLE_UE 0x20000 /* Firmware supports recoverable UE */ #define HBA_FORCED_LINK_SPEED 0x40000 /* * Firmware supports Forced Link Speed @@ -750,6 +750,7 @@ #define HBA_FLOGI_ISSUED 0x100000 /* FLOGI was issued */ #define HBA_DEFER_FLOGI 0x800000 /* Defer FLOGI till read_sparm cmpl */ + struct completion *fw_dump_cmpl; /* cmpl event tracker for fw_dump */ uint32_t fcp_ring_in_use; /* When polling test if intr-hndlr active*/ struct lpfc_dmabuf slim2p; @@ -877,6 +878,16 @@ uint32_t cfg_hostmem_hgp; uint32_t cfg_log_verbose; uint32_t cfg_enable_fc4_type; +#define LPFC_ENABLE_FCP 1 +#define LPFC_ENABLE_NVME 2 +#define LPFC_ENABLE_BOTH 3 +#if (IS_ENABLED(CONFIG_NVME_FC)) +#define LPFC_MAX_ENBL_FC4_TYPE LPFC_ENABLE_BOTH +#define LPFC_DEF_ENBL_FC4_TYPE LPFC_ENABLE_BOTH +#else +#define LPFC_MAX_ENBL_FC4_TYPE LPFC_ENABLE_FCP +#define LPFC_DEF_ENBL_FC4_TYPE LPFC_ENABLE_FCP +#endif uint32_t cfg_aer_support; uint32_t cfg_sriov_nr_virtfn; uint32_t cfg_request_firmware_upgrade; @@ -898,9 +909,6 @@ uint32_t cfg_ras_fwlog_func; uint32_t cfg_enable_bbcr; /* Enable BB Credit Recovery */ uint32_t cfg_enable_dpp; /* Enable Direct Packet Push */ -#define LPFC_ENABLE_FCP 1 -#define LPFC_ENABLE_NVME 2 -#define LPFC_ENABLE_BOTH 3 uint32_t cfg_enable_pbde; struct nvmet_fc_target_port *targetport; lpfc_vpd_t vpd; /* vital product data */ diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_attr.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_attr.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_attr.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_attr.c @@ -1145,6 +1145,9 @@ pmboxq->u.mb.mbxCommand = MBX_DOWN_LINK; pmboxq->u.mb.mbxOwner = OWN_HOST; + if ((vport->fc_flag & FC_PT2PT) && (vport->fc_flag & FC_PT2PT_NO_NVME)) + vport->fc_flag &= ~FC_PT2PT_NO_NVME; + mbxstatus = lpfc_sli_issue_mbox_wait(phba, pmboxq, LPFC_MBOX_TMO * 2); if ((mbxstatus == MBX_SUCCESS) && @@ -1539,25 +1542,25 @@ before_fc_flag = phba->pport->fc_flag; sriov_nr_virtfn = phba->cfg_sriov_nr_virtfn; - /* Disable SR-IOV virtual functions if enabled */ - if (phba->cfg_sriov_nr_virtfn) { - pci_disable_sriov(pdev); - phba->cfg_sriov_nr_virtfn = 0; - } + if (opcode == LPFC_FW_DUMP) { + init_completion(&online_compl); + phba->fw_dump_cmpl = &online_compl; + } else { + /* Disable SR-IOV virtual functions if enabled */ + if (phba->cfg_sriov_nr_virtfn) { + pci_disable_sriov(pdev); + phba->cfg_sriov_nr_virtfn = 0; + } - if (opcode == LPFC_FW_DUMP) - phba->hba_flag |= HBA_FW_DUMP_OP; + status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE); - status = lpfc_do_offline(phba, LPFC_EVT_OFFLINE); + if (status != 0) + return status; - if (status != 0) { - phba->hba_flag &= ~HBA_FW_DUMP_OP; - return status; + /* wait for the device to be quiesced before firmware reset */ + msleep(100); } - /* wait for the device to be quiesced before firmware reset */ - msleep(100); - reg_val = readl(phba->sli4_hba.conf_regs_memmap_p + LPFC_CTL_PDEV_CTL_OFFSET); @@ -1586,24 +1589,42 @@ lpfc_printf_log(phba, KERN_ERR, LOG_SLI, "3153 Fail to perform the requested " "access: x%x\n", reg_val); + if (phba->fw_dump_cmpl) + phba->fw_dump_cmpl = NULL; return rc; } /* keep the original port state */ - if (before_fc_flag & FC_OFFLINE_MODE) - goto out; - - init_completion(&online_compl); - job_posted = lpfc_workq_post_event(phba, &status, &online_compl, - LPFC_EVT_ONLINE); - if (!job_posted) + if (before_fc_flag & FC_OFFLINE_MODE) { + if (phba->fw_dump_cmpl) + phba->fw_dump_cmpl = NULL; goto out; + } - wait_for_completion(&online_compl); + /* Firmware dump will trigger an HA_ERATT event, and + * lpfc_handle_eratt_s4 routine already handles bringing the port back + * online. + */ + if (opcode == LPFC_FW_DUMP) { + wait_for_completion(phba->fw_dump_cmpl); + } else { + init_completion(&online_compl); + job_posted = lpfc_workq_post_event(phba, &status, &online_compl, + LPFC_EVT_ONLINE); + if (!job_posted) + goto out; + wait_for_completion(&online_compl); + } out: /* in any case, restore the virtual functions enabled as before */ if (sriov_nr_virtfn) { + /* If fw_dump was performed, first disable to clean up */ + if (opcode == LPFC_FW_DUMP) { + pci_disable_sriov(pdev); + phba->cfg_sriov_nr_virtfn = 0; + } + sriov_err = lpfc_sli_probe_sriov_nr_virtfn(phba, sriov_nr_virtfn); if (!sriov_err) @@ -3845,8 +3866,8 @@ * 3 - register both FCP and NVME * Supported values are [1,3]. Default value is 3 */ -LPFC_ATTR_R(enable_fc4_type, LPFC_ENABLE_BOTH, - LPFC_ENABLE_FCP, LPFC_ENABLE_BOTH, +LPFC_ATTR_R(enable_fc4_type, LPFC_DEF_ENBL_FC4_TYPE, + LPFC_ENABLE_FCP, LPFC_MAX_ENBL_FC4_TYPE, "Enable FC4 Protocol support - FCP / NVME"); /* @@ -6010,7 +6031,8 @@ len = scnprintf(buf, PAGE_SIZE, "SGL sz: %d total SGEs: %d\n", phba->cfg_sg_dma_buf_size, phba->cfg_total_seg_cnt); - len += scnprintf(buf + len, PAGE_SIZE, "Cfg: %d SCSI: %d NVME: %d\n", + len += scnprintf(buf + len, PAGE_SIZE - len, + "Cfg: %d SCSI: %d NVME: %d\n", phba->cfg_sg_seg_cnt, phba->cfg_scsi_seg_cnt, phba->cfg_nvme_seg_cnt); return len; diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_debugfs.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_debugfs.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_debugfs.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_debugfs.c @@ -2500,8 +2500,8 @@ struct lpfc_sli4_hdw_queue *qp; struct lpfc_multixri_pool *multixri_pool; - if (nbytes > 64) - nbytes = 64; + if (nbytes > sizeof(mybuf) - 1) + nbytes = sizeof(mybuf) - 1; /* Protect copy from user */ if (!access_ok(buf, nbytes)) @@ -2585,8 +2585,8 @@ if (!phba->targetport) return -ENXIO; - if (nbytes > 64) - nbytes = 64; + if (nbytes > sizeof(mybuf) - 1) + nbytes = sizeof(mybuf) - 1; memset(mybuf, 0, sizeof(mybuf)); @@ -2727,8 +2727,8 @@ char mybuf[64]; char *pbuf; - if (nbytes > 64) - nbytes = 64; + if (nbytes > sizeof(mybuf) - 1) + nbytes = sizeof(mybuf) - 1; memset(mybuf, 0, sizeof(mybuf)); @@ -2855,8 +2855,8 @@ char mybuf[64]; char *pbuf; - if (nbytes > 64) - nbytes = 64; + if (nbytes > sizeof(mybuf) - 1) + nbytes = sizeof(mybuf) - 1; memset(mybuf, 0, sizeof(mybuf)); @@ -2961,8 +2961,8 @@ char *pbuf; int i, j; - if (nbytes > 64) - nbytes = 64; + if (nbytes > sizeof(mybuf) - 1) + nbytes = sizeof(mybuf) - 1; memset(mybuf, 0, sizeof(mybuf)); diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_els.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_els.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_els.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_els.c @@ -1066,7 +1066,8 @@ /* FLOGI failed, so there is no fabric */ spin_lock_irq(shost->host_lock); - vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP); + vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP | + FC_PT2PT_NO_NVME); spin_unlock_irq(shost->host_lock); /* If private loop, then allow max outstanding els to be @@ -1179,6 +1180,15 @@ phba->fcf.fcf_redisc_attempted = 0; /* reset */ goto out; } + } else if (vport->port_state > LPFC_FLOGI && + vport->fc_flag & FC_PT2PT) { + /* + * In a p2p topology, it is possible that discovery has + * already progressed, and this completion can be ignored. + * Recheck the indicated topology. + */ + if (!sp->cmn.fPort) + goto out; } flogifail: @@ -3928,6 +3938,23 @@ /* Added for Vendor specifc support * Just keep retrying for these Rsn / Exp codes */ + if ((vport->fc_flag & FC_PT2PT) && + cmd == ELS_CMD_NVMEPRLI) { + switch (stat.un.b.lsRjtRsnCode) { + case LSRJT_UNABLE_TPC: + case LSRJT_INVALID_CMD: + case LSRJT_LOGICAL_ERR: + case LSRJT_CMD_UNSUPPORTED: + lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS, + "0168 NVME PRLI LS_RJT " + "reason %x port doesn't " + "support NVME, disabling NVME\n", + stat.un.b.lsRjtRsnCode); + retry = 0; + vport->fc_flag |= FC_PT2PT_NO_NVME; + goto out_retry; + } + } switch (stat.un.b.lsRjtRsnCode) { case LSRJT_UNABLE_TPC: /* The driver has a VALID PLOGI but the rport has diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hbadisc.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hbadisc.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hbadisc.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hbadisc.c @@ -628,10 +628,16 @@ if (phba->pci_dev_grp == LPFC_PCI_DEV_OC) lpfc_sli4_post_async_mbox(phba); - if (ha_copy & HA_ERATT) + if (ha_copy & HA_ERATT) { /* Handle the error attention event */ lpfc_handle_eratt(phba); + if (phba->fw_dump_cmpl) { + complete(phba->fw_dump_cmpl); + phba->fw_dump_cmpl = NULL; + } + } + if (ha_copy & HA_MBATT) lpfc_sli_handle_mb_event(phba); diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hw4.h linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hw4.h --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hw4.h +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_hw4.h @@ -4278,6 +4278,9 @@ #define wqe_sup_SHIFT 6 #define wqe_sup_MASK 0x00000001 #define wqe_sup_WORD word11 +#define wqe_ffrq_SHIFT 6 +#define wqe_ffrq_MASK 0x00000001 +#define wqe_ffrq_WORD word11 #define wqe_wqec_SHIFT 7 #define wqe_wqec_MASK 0x00000001 #define wqe_wqec_WORD word11 diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_init.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_init.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_init.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_init.c @@ -6565,7 +6565,7 @@ /* Allocate device driver memory */ rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ); if (rc) - return -ENOMEM; + goto out_destroy_workqueue; /* IF Type 2 ports get initialized now. */ if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) >= @@ -6939,6 +6939,9 @@ lpfc_destroy_bootstrap_mbox(phba); out_free_mem: lpfc_mem_free(phba); +out_destroy_workqueue: + destroy_workqueue(phba->wq); + phba->wq = NULL; return rc; } diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nportdisc.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nportdisc.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nportdisc.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nportdisc.c @@ -842,7 +842,8 @@ else lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL); if (ndlp->nlp_DID == Fabric_DID) { - if (vport->port_state <= LPFC_FDISC) + if (vport->port_state <= LPFC_FDISC || + vport->fc_flag & FC_PT2PT) goto out; lpfc_linkdown_port(vport); spin_lock_irq(shost->host_lock); @@ -1987,8 +1988,9 @@ * is configured try it. */ ndlp->nlp_fc4_type |= NLP_FC4_FCP; - if ((vport->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) || - (vport->cfg_enable_fc4_type == LPFC_ENABLE_NVME)) { + if ((!(vport->fc_flag & FC_PT2PT_NO_NVME)) && + (vport->cfg_enable_fc4_type == LPFC_ENABLE_BOTH || + vport->cfg_enable_fc4_type == LPFC_ENABLE_NVME)) { ndlp->nlp_fc4_type |= NLP_FC4_NVME; /* We need to update the localport also */ lpfc_nvme_update_localport(vport); diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nvme.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nvme.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nvme.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_nvme.c @@ -1242,7 +1242,8 @@ { struct lpfc_hba *phba = vport->phba; struct nvmefc_fcp_req *nCmd = lpfc_ncmd->nvmeCmd; - struct lpfc_iocbq *pwqeq = &(lpfc_ncmd->cur_iocbq); + struct nvme_common_command *sqe; + struct lpfc_iocbq *pwqeq = &lpfc_ncmd->cur_iocbq; union lpfc_wqe128 *wqe = &pwqeq->wqe; uint32_t req_len; @@ -1298,8 +1299,14 @@ cstat->control_requests++; } - if (pnode->nlp_nvme_info & NLP_NVME_NSLER) + if (pnode->nlp_nvme_info & NLP_NVME_NSLER) { bf_set(wqe_erp, &wqe->generic.wqe_com, 1); + sqe = &((struct nvme_fc_cmd_iu *) + nCmd->cmdaddr)->sqe.common; + if (sqe->opcode == nvme_admin_async_event) + bf_set(wqe_ffrq, &wqe->generic.wqe_com, 1); + } + /* * Finish initializing those WQE fields that are independent * of the nvme_cmnd request_buffer diff -u linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_sli.c linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_sli.c --- linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_sli.c +++ linux-azure-5.4.0/drivers/scsi/lpfc/lpfc_sli.c @@ -4531,12 +4531,6 @@ phba->fcf.fcf_flag = 0; spin_unlock_irq(&phba->hbalock); - /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */ - if (phba->hba_flag & HBA_FW_DUMP_OP) { - phba->hba_flag &= ~HBA_FW_DUMP_OP; - return rc; - } - /* Now physically reset the device */ lpfc_printf_log(phba, KERN_INFO, LOG_INIT, "0389 Performing PCI function reset!\n"); @@ -7681,7 +7675,7 @@ "0393 Error %d during rpi post operation\n", rc); rc = -ENODEV; - goto out_destroy_queue; + goto out_free_iocblist; } lpfc_sli4_node_prep(phba); @@ -7844,8 +7838,9 @@ out_unset_queue: /* Unset all the queues set up in this routine when error out */ lpfc_sli4_queue_unset(phba); -out_destroy_queue: +out_free_iocblist: lpfc_free_iocb_list(phba); +out_destroy_queue: lpfc_sli4_queue_destroy(phba); out_stop_timers: lpfc_stop_hba_timers(phba); @@ -19786,6 +19781,7 @@ fail_msg, piocbq->iotag, piocbq->sli4_xritag); list_add_tail(&piocbq->list, &completions); + fail_msg = NULL; } spin_unlock_irqrestore(&pring->ring_lock, iflags); } diff -u linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_mm.c linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_mm.c --- linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_mm.c +++ linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_mm.c @@ -239,7 +239,7 @@ mimd_t mimd; uint32_t adapno; int iterator; - + bool is_found; if (copy_from_user(&mimd, umimd, sizeof(mimd_t))) { *rval = -EFAULT; @@ -255,12 +255,16 @@ adapter = NULL; iterator = 0; + is_found = false; list_for_each_entry(adapter, &adapters_list_g, list) { - if (iterator++ == adapno) break; + if (iterator++ == adapno) { + is_found = true; + break; + } } - if (!adapter) { + if (!is_found) { *rval = -ENODEV; return NULL; } @@ -726,6 +730,7 @@ uint32_t adapno; int iterator; mraid_mmadp_t* adapter; + bool is_found; /* * When the kioc returns from driver, make sure it still doesn't @@ -748,19 +753,23 @@ iterator = 0; adapter = NULL; adapno = kioc->adapno; + is_found = false; con_log(CL_ANN, ( KERN_WARNING "megaraid cmm: completed " "ioctl that was timedout before\n")); list_for_each_entry(adapter, &adapters_list_g, list) { - if (iterator++ == adapno) break; + if (iterator++ == adapno) { + is_found = true; + break; + } } kioc->timedout = 0; - if (adapter) { + if (is_found) mraid_mm_dealloc_kioc( adapter, kioc ); - } + } else { wake_up(&wait_q); diff -u linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas.h linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas.h --- linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas.h +++ linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas.h @@ -2259,6 +2259,15 @@ (mode) == MR_LATENCY_PERF_MODE ? "Latency" : \ "Unknown") +enum MEGASAS_LD_TARGET_ID_STATUS { + LD_TARGET_ID_INITIAL, + LD_TARGET_ID_ACTIVE, + LD_TARGET_ID_DELETED, +}; + +#define MEGASAS_TARGET_ID(sdev) \ + (((sdev->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL) + sdev->id) + struct megasas_instance { unsigned int *reply_map; @@ -2323,6 +2332,9 @@ struct megasas_pd_list pd_list[MEGASAS_MAX_PD]; struct megasas_pd_list local_pd_list[MEGASAS_MAX_PD]; u8 ld_ids[MEGASAS_MAX_LD_IDS]; + u8 ld_tgtid_status[MEGASAS_MAX_LD_IDS]; + u8 ld_ids_prev[MEGASAS_MAX_LD_IDS]; + u8 ld_ids_from_raidmap[MEGASAS_MAX_LD_IDS]; s8 init_id; u16 max_num_sge; @@ -2542,6 +2554,9 @@ #define MEGASAS_IS_LOGICAL(sdev) \ ((sdev->channel < MEGASAS_MAX_PD_CHANNELS) ? 0 : 1) +#define MEGASAS_IS_LUN_VALID(sdev) \ + (((sdev)->lun == 0) ? 1 : 0) + #define MEGASAS_DEV_INDEX(scp) \ (((scp->device->channel % 2) * MEGASAS_MAX_DEV_PER_CHANNEL) + \ scp->device->id) diff -u linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_base.c linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_base.c --- linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -127,6 +127,8 @@ u32 seq_num, u32 class_locale_word); static void megasas_get_pd_info(struct megasas_instance *instance, struct scsi_device *sdev); +static void +megasas_set_ld_removed_by_fw(struct megasas_instance *instance); /* * PCI ID table for all supported controllers @@ -425,6 +427,12 @@ (class_locale.members.locale), format_class(class_locale.members.class), evt_detail->description); + + if (megasas_dbg_lvl & LD_PD_DEBUG) + dev_info(&instance->pdev->dev, + "evt_detail.args.ld.target_id/index %d/%d\n", + evt_detail->args.ld.target_id, evt_detail->args.ld.ld_index); + } /** @@ -1757,6 +1765,7 @@ { struct megasas_instance *instance; struct MR_PRIV_DEVICE *mr_device_priv_data; + u32 ld_tgt_id; instance = (struct megasas_instance *) scmd->device->host->hostdata; @@ -1783,17 +1792,21 @@ } } - if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) { + mr_device_priv_data = scmd->device->hostdata; + if (!mr_device_priv_data || + (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR)) { scmd->result = DID_NO_CONNECT << 16; scmd->scsi_done(scmd); return 0; } - mr_device_priv_data = scmd->device->hostdata; - if (!mr_device_priv_data) { - scmd->result = DID_NO_CONNECT << 16; - scmd->scsi_done(scmd); - return 0; + if (MEGASAS_IS_LOGICAL(scmd->device)) { + ld_tgt_id = MEGASAS_TARGET_ID(scmd->device); + if (instance->ld_tgtid_status[ld_tgt_id] == LD_TARGET_ID_DELETED) { + scmd->result = DID_NO_CONNECT << 16; + scmd->scsi_done(scmd); + return 0; + } } if (atomic_read(&instance->adprecovery) != MEGASAS_HBA_OPERATIONAL) @@ -2073,7 +2086,7 @@ static int megasas_slave_alloc(struct scsi_device *sdev) { - u16 pd_index = 0; + u16 pd_index = 0, ld_tgt_id; struct megasas_instance *instance ; struct MR_PRIV_DEVICE *mr_device_priv_data; @@ -2091,6 +2104,9 @@ goto scan_target; } return -ENXIO; + } else if (!MEGASAS_IS_LUN_VALID(sdev)) { + sdev_printk(KERN_INFO, sdev, "%s: invalid LUN\n", __func__); + return -ENXIO; } scan_target: @@ -2098,6 +2114,14 @@ GFP_KERNEL); if (!mr_device_priv_data) return -ENOMEM; + + if (MEGASAS_IS_LOGICAL(sdev)) { + ld_tgt_id = MEGASAS_TARGET_ID(sdev); + instance->ld_tgtid_status[ld_tgt_id] = LD_TARGET_ID_ACTIVE; + if (megasas_dbg_lvl & LD_PD_DEBUG) + sdev_printk(KERN_INFO, sdev, "LD target ID %d created.\n", ld_tgt_id); + } + sdev->hostdata = mr_device_priv_data; atomic_set(&mr_device_priv_data->r1_ldio_hint, @@ -2107,6 +2131,23 @@ static void megasas_slave_destroy(struct scsi_device *sdev) { + u16 ld_tgt_id; + struct megasas_instance *instance; + + instance = megasas_lookup_instance(sdev->host->host_no); + + if (MEGASAS_IS_LOGICAL(sdev)) { + if (!MEGASAS_IS_LUN_VALID(sdev)) { + sdev_printk(KERN_INFO, sdev, "%s: invalid LUN\n", __func__); + return; + } + ld_tgt_id = MEGASAS_TARGET_ID(sdev); + instance->ld_tgtid_status[ld_tgt_id] = LD_TARGET_ID_DELETED; + if (megasas_dbg_lvl & LD_PD_DEBUG) + sdev_printk(KERN_INFO, sdev, + "LD target ID %d removed from OS stack\n", ld_tgt_id); + } + kfree(sdev->hostdata); sdev->hostdata = NULL; } @@ -3467,6 +3508,22 @@ } } +static void +megasas_set_ld_removed_by_fw(struct megasas_instance *instance) +{ + uint i; + + for (i = 0; (i < MEGASAS_MAX_LD_IDS); i++) { + if (instance->ld_ids_prev[i] != 0xff && + instance->ld_ids_from_raidmap[i] == 0xff) { + if (megasas_dbg_lvl & LD_PD_DEBUG) + dev_info(&instance->pdev->dev, + "LD target ID %d removed from RAID map\n", i); + instance->ld_tgtid_status[i] = LD_TARGET_ID_DELETED; + } + } +} + /** * megasas_complete_cmd - Completes a command * @instance: Adapter soft state @@ -3629,9 +3686,13 @@ fusion->fast_path_io = 0; } + if (instance->adapter_type >= INVADER_SERIES) + megasas_set_ld_removed_by_fw(instance); + megasas_sync_map_info(instance); spin_unlock_irqrestore(instance->host->host_lock, flags); + break; } if (opcode == MR_DCMD_CTRL_EVENT_GET_INFO || @@ -7430,11 +7491,16 @@ return 0; fail_start_aen: + instance->unload = 1; + scsi_remove_host(instance->host); fail_io_attach: megasas_mgmt_info.count--; megasas_mgmt_info.max_index--; megasas_mgmt_info.instance[megasas_mgmt_info.max_index] = NULL; + if (instance->requestorId && !instance->skip_heartbeat_timer_del) + del_timer_sync(&instance->sriov_heartbeat_timer); + instance->instancet->disable_intr(instance); megasas_destroy_irqs(instance); @@ -7442,8 +7508,16 @@ megasas_release_fusion(instance); else megasas_release_mfi(instance); + if (instance->msix_vectors) pci_free_irq_vectors(instance->pdev); + instance->msix_vectors = 0; + + if (instance->fw_crash_state != UNAVAILABLE) + megasas_free_host_crash_buffer(instance); + + if (instance->adapter_type != MFI_SERIES) + megasas_fusion_stop_watchdog(instance); fail_init_mfi: scsi_host_put(host); fail_alloc_instance: @@ -8744,8 +8818,10 @@ union megasas_evt_class_locale class_locale; int event_type = 0; u32 seq_num; + u16 ld_target_id; int error; u8 dcmd_ret = DCMD_SUCCESS; + struct scsi_device *sdev1; if (!instance) { printk(KERN_ERR "invalid instance!\n"); @@ -8768,12 +8844,23 @@ break; case MR_EVT_LD_OFFLINE: - case MR_EVT_CFG_CLEARED: case MR_EVT_LD_DELETED: + ld_target_id = instance->evt_detail->args.ld.target_id; + sdev1 = scsi_device_lookup(instance->host, + MEGASAS_MAX_PD_CHANNELS + + (ld_target_id / MEGASAS_MAX_DEV_PER_CHANNEL), + (ld_target_id - MEGASAS_MAX_DEV_PER_CHANNEL), + 0); + if (sdev1) + megasas_remove_scsi_device(sdev1); + + event_type = SCAN_VD_CHANNEL; + break; case MR_EVT_LD_CREATED: event_type = SCAN_VD_CHANNEL; break; + case MR_EVT_CFG_CLEARED: case MR_EVT_CTRL_HOST_BUS_SCAN_REQUESTED: case MR_EVT_FOREIGN_CFG_IMPORTED: case MR_EVT_LD_STATE_CHANGE: diff -u linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fp.c linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fp.c --- linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fp.c +++ linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fp.c @@ -350,6 +350,10 @@ num_lds = le16_to_cpu(drv_map->raidMap.ldCount); + memcpy(instance->ld_ids_prev, + instance->ld_ids_from_raidmap, + sizeof(instance->ld_ids_from_raidmap)); + memset(instance->ld_ids_from_raidmap, 0xff, MEGASAS_MAX_LD_IDS); /*Convert Raid capability values to CPU arch */ for (i = 0; (num_lds > 0) && (i < MAX_LOGICAL_DRIVES_EXT); i++) { ld = MR_TargetIdToLdGet(i, drv_map); @@ -360,7 +364,7 @@ raid = MR_LdRaidGet(ld, drv_map); le32_to_cpus((u32 *)&raid->capability); - + instance->ld_ids_from_raidmap[i] = i; num_lds--; } diff -u linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fusion.c linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fusion.c --- linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fusion.c +++ linux-azure-5.4.0/drivers/scsi/megaraid/megaraid_sas_fusion.c @@ -3726,6 +3726,7 @@ if (irq_ctx->irq_poll_scheduled) { irq_ctx->irq_poll_scheduled = false; enable_irq(irq_ctx->os_irq); + complete_cmd_fusion(instance, irq_ctx->MSIxIndex, irq_ctx); } } } @@ -3757,6 +3758,7 @@ irq_poll_complete(irqpoll); irq_ctx->irq_poll_scheduled = false; enable_irq(irq_ctx->os_irq); + complete_cmd_fusion(instance, irq_ctx->MSIxIndex, irq_ctx); } return num_entries; @@ -3773,6 +3775,7 @@ { struct megasas_instance *instance = (struct megasas_instance *)instance_addr; + struct megasas_irq_context *irq_ctx = NULL; u32 count, MSIxIndex; count = instance->msix_vectors > 0 ? instance->msix_vectors : 1; @@ -3781,8 +3784,10 @@ if (atomic_read(&instance->adprecovery) == MEGASAS_HW_CRITICAL_ERROR) return; - for (MSIxIndex = 0 ; MSIxIndex < count; MSIxIndex++) - complete_cmd_fusion(instance, MSIxIndex, NULL); + for (MSIxIndex = 0 ; MSIxIndex < count; MSIxIndex++) { + irq_ctx = &instance->irq_context[MSIxIndex]; + complete_cmd_fusion(instance, MSIxIndex, irq_ctx); + } } /** diff -u linux-azure-5.4.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c linux-azure-5.4.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c --- linux-azure-5.4.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ linux-azure-5.4.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -3465,6 +3465,7 @@ fw_event = list_first_entry(&ioc->fw_event_list, struct fw_event_work, list); list_del_init(&fw_event->list); + fw_event_work_put(fw_event); } spin_unlock_irqrestore(&ioc->fw_event_lock, flags); @@ -3499,7 +3500,6 @@ if (cancel_work_sync(&fw_event->work)) fw_event_work_put(fw_event); - fw_event_work_put(fw_event); } } @@ -3616,7 +3616,7 @@ shost_for_each_device(sdev, ioc->shost) { sas_device_priv_data = sdev->hostdata; - if (!sas_device_priv_data) + if (!sas_device_priv_data || !sas_device_priv_data->sas_target) continue; if (sas_device_priv_data->sas_target->sas_address != sas_address) @@ -6674,8 +6674,10 @@ handle, parent_handle, (u64)sas_expander->sas_address, sas_expander->num_phys); - if (!sas_expander->num_phys) + if (!sas_expander->num_phys) { + rc = -1; goto out_fail; + } sas_expander->phy = kcalloc(sas_expander->num_phys, sizeof(struct _sas_phy), GFP_KERNEL); if (!sas_expander->phy) { diff -u linux-azure-5.4.0/drivers/scsi/myrs.c linux-azure-5.4.0/drivers/scsi/myrs.c --- linux-azure-5.4.0/drivers/scsi/myrs.c +++ linux-azure-5.4.0/drivers/scsi/myrs.c @@ -2272,7 +2272,8 @@ myrs_unmap(cs); if (cs->mmio_base) { - cs->disable_intr(cs); + if (cs->disable_intr) + cs->disable_intr(cs); iounmap(cs->mmio_base); cs->mmio_base = NULL; } diff -u linux-azure-5.4.0/drivers/scsi/pm8001/pm8001_init.c linux-azure-5.4.0/drivers/scsi/pm8001/pm8001_init.c --- linux-azure-5.4.0/drivers/scsi/pm8001/pm8001_init.c +++ linux-azure-5.4.0/drivers/scsi/pm8001/pm8001_init.c @@ -86,6 +86,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = pm8001_host_attrs, diff -u linux-azure-5.4.0/drivers/scsi/pm8001/pm80xx_hwi.c linux-azure-5.4.0/drivers/scsi/pm8001/pm80xx_hwi.c --- linux-azure-5.4.0/drivers/scsi/pm8001/pm80xx_hwi.c +++ linux-azure-5.4.0/drivers/scsi/pm8001/pm80xx_hwi.c @@ -881,9 +881,11 @@ else page_code = THERMAL_PAGE_CODE_8H; - payload.cfg_pg[0] = (THERMAL_LOG_ENABLE << 9) | - (THERMAL_ENABLE << 8) | page_code; - payload.cfg_pg[1] = (LTEMPHIL << 24) | (RTEMPHIL << 8); + payload.cfg_pg[0] = + cpu_to_le32((THERMAL_LOG_ENABLE << 9) | + (THERMAL_ENABLE << 8) | page_code); + payload.cfg_pg[1] = + cpu_to_le32((LTEMPHIL << 24) | (RTEMPHIL << 8)); rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload, 0); if (rc) @@ -1435,6 +1437,7 @@ ccb->device = pm8001_ha_dev; ccb->ccb_tag = ccb_tag; ccb->task = task; + ccb->n_elem = 0; circularQ = &pm8001_ha->inbnd_q_tbl[0]; @@ -1516,7 +1519,7 @@ sata_cmd.tag = cpu_to_le32(ccb_tag); sata_cmd.device_id = cpu_to_le32(pm8001_ha_dev->device_id); - sata_cmd.ncqtag_atap_dir_m_dad |= ((0x1 << 7) | (0x5 << 9)); + sata_cmd.ncqtag_atap_dir_m_dad = cpu_to_le32(((0x1 << 7) | (0x5 << 9))); memcpy(&sata_cmd.sata_fis, &fis, sizeof(struct host_to_dev_fis)); res = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &sata_cmd, 0); diff -u linux-azure-5.4.0/drivers/scsi/qedf/qedf_main.c linux-azure-5.4.0/drivers/scsi/qedf/qedf_main.c --- linux-azure-5.4.0/drivers/scsi/qedf/qedf_main.c +++ linux-azure-5.4.0/drivers/scsi/qedf/qedf_main.c @@ -1729,22 +1729,20 @@ fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf)); QEDF_WARN(&(base_qedf->dbg_ctx), "Failed to create vport, " "WWPN (0x%s) already exists.\n", buf); - goto err1; + return rc; } if (atomic_read(&base_qedf->link_state) != QEDF_LINK_UP) { QEDF_WARN(&(base_qedf->dbg_ctx), "Cannot create vport " "because link is not up.\n"); - rc = -EIO; - goto err1; + return -EIO; } vn_port = libfc_vport_create(vport, sizeof(struct qedf_ctx)); if (!vn_port) { QEDF_WARN(&(base_qedf->dbg_ctx), "Could not create lport " "for vport.\n"); - rc = -ENOMEM; - goto err1; + return -ENOMEM; } fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf)); @@ -1768,7 +1766,7 @@ if (rc) { QEDF_ERR(&(base_qedf->dbg_ctx), "Could not allocate memory " "for lport stats.\n"); - goto err2; + goto err; } fc_set_wwnn(vn_port, vport->node_name); @@ -1786,7 +1784,7 @@ if (rc) { QEDF_WARN(&base_qedf->dbg_ctx, "Error adding Scsi_Host rc=0x%x.\n", rc); - goto err2; + goto err; } /* Set default dev_loss_tmo based on module parameter */ @@ -1827,9 +1825,10 @@ vport_qedf->dbg_ctx.host_no = vn_port->host->host_no; vport_qedf->dbg_ctx.pdev = base_qedf->pdev; -err2: + return 0; + +err: scsi_host_put(vn_port->host); -err1: return rc; } @@ -1870,8 +1869,7 @@ fc_lport_free_stats(vn_port); /* Release Scsi_Host */ - if (vn_port->host) - scsi_host_put(vn_port->host); + scsi_host_put(vn_port->host); out: return 0; @@ -2896,7 +2894,7 @@ { u32 *list; int i; - int status = 0, rc; + int status; u32 *pbl; dma_addr_t page; int num_pages; @@ -2908,7 +2906,7 @@ */ if (!qedf->num_queues) { QEDF_ERR(&(qedf->dbg_ctx), "No MSI-X vectors available!\n"); - return 1; + return -ENOMEM; } /* @@ -2916,7 +2914,7 @@ * addresses of our queues */ if (!qedf->p_cpuq) { - status = 1; + status = -EINVAL; QEDF_ERR(&qedf->dbg_ctx, "p_cpuq is NULL.\n"); goto mem_alloc_failure; } @@ -2932,8 +2930,8 @@ "qedf->global_queues=%p.\n", qedf->global_queues); /* Allocate DMA coherent buffers for BDQ */ - rc = qedf_alloc_bdq(qedf); - if (rc) { + status = qedf_alloc_bdq(qedf); + if (status) { QEDF_ERR(&qedf->dbg_ctx, "Unable to allocate bdq.\n"); goto mem_alloc_failure; } @@ -3546,11 +3544,6 @@ err1: scsi_host_put(lport->host); err0: - if (qedf) { - QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC, "Probe done.\n"); - - clear_bit(QEDF_PROBING, &qedf->flags); - } return rc; } diff -u linux-azure-5.4.0/drivers/scsi/qedi/qedi_fw.c linux-azure-5.4.0/drivers/scsi/qedi/qedi_fw.c --- linux-azure-5.4.0/drivers/scsi/qedi/qedi_fw.c +++ linux-azure-5.4.0/drivers/scsi/qedi/qedi_fw.c @@ -1451,7 +1451,7 @@ ldel_exit: spin_lock_bh(&qedi_conn->tmf_work_lock); - if (!qedi_cmd->list_tmf_work) { + if (qedi_cmd->list_tmf_work) { list_del_init(&list_work->list); qedi_cmd->list_tmf_work = NULL; kfree(list_work); diff -u linux-azure-5.4.0/drivers/scsi/qedi/qedi_iscsi.c linux-azure-5.4.0/drivers/scsi/qedi/qedi_iscsi.c --- linux-azure-5.4.0/drivers/scsi/qedi/qedi_iscsi.c +++ linux-azure-5.4.0/drivers/scsi/qedi/qedi_iscsi.c @@ -797,6 +797,37 @@ return qedi_iscsi_send_ioreq(task); } +static void qedi_offload_work(struct work_struct *work) +{ + struct qedi_endpoint *qedi_ep = + container_of(work, struct qedi_endpoint, offload_work); + struct qedi_ctx *qedi; + int wait_delay = 5 * HZ; + int ret; + + qedi = qedi_ep->qedi; + + ret = qedi_iscsi_offload_conn(qedi_ep); + if (ret) { + QEDI_ERR(&qedi->dbg_ctx, + "offload error: iscsi_cid=%u, qedi_ep=%p, ret=%d\n", + qedi_ep->iscsi_cid, qedi_ep, ret); + qedi_ep->state = EP_STATE_OFLDCONN_FAILED; + return; + } + + ret = wait_event_interruptible_timeout(qedi_ep->tcp_ofld_wait, + (qedi_ep->state == + EP_STATE_OFLDCONN_COMPL), + wait_delay); + if (ret <= 0 || qedi_ep->state != EP_STATE_OFLDCONN_COMPL) { + qedi_ep->state = EP_STATE_OFLDCONN_FAILED; + QEDI_ERR(&qedi->dbg_ctx, + "Offload conn TIMEOUT iscsi_cid=%u, qedi_ep=%p\n", + qedi_ep->iscsi_cid, qedi_ep); + } +} + static struct iscsi_endpoint * qedi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, int non_blocking) @@ -840,6 +871,7 @@ } qedi_ep = ep->dd_data; memset(qedi_ep, 0, sizeof(struct qedi_endpoint)); + INIT_WORK(&qedi_ep->offload_work, qedi_offload_work); qedi_ep->state = EP_STATE_IDLE; qedi_ep->iscsi_cid = (u32)-1; qedi_ep->qedi = qedi; @@ -996,12 +1028,11 @@ qedi_ep = ep->dd_data; qedi = qedi_ep->qedi; + flush_work(&qedi_ep->offload_work); + if (qedi_ep->state == EP_STATE_OFLDCONN_START) goto ep_exit_recover; - if (qedi_ep->state != EP_STATE_OFLDCONN_NONE) - flush_work(&qedi_ep->offload_work); - if (qedi_ep->conn) { qedi_conn = qedi_ep->conn; conn = qedi_conn->cls_conn->dd_data; @@ -1161,37 +1192,6 @@ return rc; } -static void qedi_offload_work(struct work_struct *work) -{ - struct qedi_endpoint *qedi_ep = - container_of(work, struct qedi_endpoint, offload_work); - struct qedi_ctx *qedi; - int wait_delay = 5 * HZ; - int ret; - - qedi = qedi_ep->qedi; - - ret = qedi_iscsi_offload_conn(qedi_ep); - if (ret) { - QEDI_ERR(&qedi->dbg_ctx, - "offload error: iscsi_cid=%u, qedi_ep=%p, ret=%d\n", - qedi_ep->iscsi_cid, qedi_ep, ret); - qedi_ep->state = EP_STATE_OFLDCONN_FAILED; - return; - } - - ret = wait_event_interruptible_timeout(qedi_ep->tcp_ofld_wait, - (qedi_ep->state == - EP_STATE_OFLDCONN_COMPL), - wait_delay); - if ((ret <= 0) || (qedi_ep->state != EP_STATE_OFLDCONN_COMPL)) { - qedi_ep->state = EP_STATE_OFLDCONN_FAILED; - QEDI_ERR(&qedi->dbg_ctx, - "Offload conn TIMEOUT iscsi_cid=%u, qedi_ep=%p\n", - qedi_ep->iscsi_cid, qedi_ep); - } -} - static int qedi_set_path(struct Scsi_Host *shost, struct iscsi_path *path_data) { struct qedi_ctx *qedi; @@ -1307,7 +1307,6 @@ qedi_ep->dst_addr, qedi_ep->dst_port); } - INIT_WORK(&qedi_ep->offload_work, qedi_offload_work); queue_work(qedi->offload_thread, &qedi_ep->offload_work); ret = 0; diff -u linux-azure-5.4.0/drivers/scsi/qedi/qedi_main.c linux-azure-5.4.0/drivers/scsi/qedi/qedi_main.c --- linux-azure-5.4.0/drivers/scsi/qedi/qedi_main.c +++ linux-azure-5.4.0/drivers/scsi/qedi/qedi_main.c @@ -631,7 +631,7 @@ goto exit_setup_shost; } - shost->max_id = QEDI_MAX_ISCSI_CONNS_PER_HBA; + shost->max_id = QEDI_MAX_ISCSI_CONNS_PER_HBA - 1; shost->max_channel = 0; shost->max_lun = ~0; shost->max_cmd_len = 16; @@ -1553,7 +1553,7 @@ { u32 *list; int i; - int status = 0, rc; + int status; u32 *pbl; dma_addr_t page; int num_pages; @@ -1564,14 +1564,14 @@ */ if (!qedi->num_queues) { QEDI_ERR(&qedi->dbg_ctx, "No MSI-X vectors available!\n"); - return 1; + return -ENOMEM; } /* Make sure we allocated the PBL that will contain the physical * addresses of our queues */ if (!qedi->p_cpuq) { - status = 1; + status = -EINVAL; goto mem_alloc_failure; } @@ -1586,13 +1586,13 @@ "qedi->global_queues=%p.\n", qedi->global_queues); /* Allocate DMA coherent buffers for BDQ */ - rc = qedi_alloc_bdq(qedi); - if (rc) + status = qedi_alloc_bdq(qedi); + if (status) goto mem_alloc_failure; /* Allocate DMA coherent buffers for NVM_ISCSI_CFG */ - rc = qedi_alloc_nvm_iscsi_cfg(qedi); - if (rc) + status = qedi_alloc_nvm_iscsi_cfg(qedi); + if (status) goto mem_alloc_failure; /* Allocate a CQ and an associated PBL for each MSI-X diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_attr.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_attr.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_attr.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_attr.c @@ -527,7 +527,7 @@ if (!capable(CAP_SYS_ADMIN)) return -EINVAL; - if (IS_NOCACHE_VPD_TYPE(ha)) + if (!IS_NOCACHE_VPD_TYPE(ha)) goto skip; faddr = ha->flt_region_vpd << 2; @@ -710,7 +710,7 @@ ql_log(ql_log_info, vha, 0x706f, "Issuing MPI reset.\n"); - if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) { + if (IS_QLA83XX(ha)) { uint32_t idc_control; qla83xx_idc_lock(vha, 0); @@ -1020,9 +1020,6 @@ continue; if (iter->type == 3 && !(IS_CNA_CAPABLE(ha))) continue; - if (iter->type == 0x27 && - (!IS_QLA27XX(ha) || !IS_QLA28XX(ha))) - continue; sysfs_remove_bin_file(&host->shost_gendev.kobj, iter->attr); @@ -1759,6 +1756,18 @@ return strlen(buf); } +static const struct { + u16 rate; + char *str; +} port_speed_str[] = { + { PORT_SPEED_4GB, "4" }, + { PORT_SPEED_8GB, "8" }, + { PORT_SPEED_16GB, "16" }, + { PORT_SPEED_32GB, "32" }, + { PORT_SPEED_64GB, "64" }, + { PORT_SPEED_10GB, "10" }, +}; + static ssize_t qla2x00_port_speed_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -1766,7 +1775,8 @@ struct scsi_qla_host *vha = shost_priv(dev_to_shost(dev)); struct qla_hw_data *ha = vha->hw; ssize_t rval; - char *spd[7] = {"0", "0", "0", "4", "8", "16", "32"}; + u16 i; + char *speed = "Unknown"; rval = qla2x00_get_data_rate(vha); if (rval != QLA_SUCCESS) { @@ -1775,7 +1785,14 @@ return -EINVAL; } - return scnprintf(buf, PAGE_SIZE, "%s\n", spd[ha->link_data_rate]); + for (i = 0; i < ARRAY_SIZE(port_speed_str); i++) { + if (port_speed_str[i].rate != ha->link_data_rate) + continue; + speed = port_speed_str[i].str; + break; + } + + return scnprintf(buf, PAGE_SIZE, "%s\n", speed); } /* ----- */ diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_def.h linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_def.h --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_def.h +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_def.h @@ -2725,7 +2725,11 @@ #define FDMI_PORT_SPEED_8GB 0x10 #define FDMI_PORT_SPEED_16GB 0x20 #define FDMI_PORT_SPEED_32GB 0x40 -#define FDMI_PORT_SPEED_64GB 0x80 +#define FDMI_PORT_SPEED_20GB 0x80 +#define FDMI_PORT_SPEED_40GB 0x100 +#define FDMI_PORT_SPEED_128GB 0x200 +#define FDMI_PORT_SPEED_64GB 0x400 +#define FDMI_PORT_SPEED_256GB 0x800 #define FDMI_PORT_SPEED_UNKNOWN 0x8000 #define FC_CLASS_2 0x04 @@ -3895,8 +3899,8 @@ #define IS_OEM_001(ha) ((ha)->device_type & DT_OEM_001) #define HAS_EXTENDED_IDS(ha) ((ha)->device_type & DT_EXTENDED_IDS) #define IS_CT6_SUPPORTED(ha) ((ha)->device_type & DT_CT6_SUPPORTED) -#define IS_MQUE_CAPABLE(ha) ((ha)->mqenable || IS_QLA83XX(ha) || \ - IS_QLA27XX(ha) || IS_QLA28XX(ha)) +#define IS_MQUE_CAPABLE(ha) (IS_QLA83XX(ha) || IS_QLA27XX(ha) || \ + IS_QLA28XX(ha)) #define IS_BIDI_CAPABLE(ha) \ (IS_QLA25XX(ha) || IS_QLA2031(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) /* Bit 21 of fw_attributes decides the MCTP capabilities */ @@ -4870,2 +4874,6 @@ #include "qla_inline.h" + +#define IS_SESSION_DELETED(_fcport) (_fcport->disc_state == DSC_DELETE_PEND || \ + _fcport->disc_state == DSC_DELETED) + #endif diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gbl.h linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gbl.h --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gbl.h +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gbl.h @@ -156,7 +156,6 @@ extern int ql2xgffidenable; extern int ql2xenabledif; extern int ql2xenablehba_err_chk; -extern int ql2xtargetreset; extern int ql2xdontresethba; extern uint64_t ql2xmaxlun; extern int ql2xmdcapmask; @@ -398,7 +397,8 @@ qla2x00_get_resource_cnts(scsi_qla_host_t *); extern int -qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map); +qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map, + u8 *num_entries); extern int qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, struct link_statistics *, @@ -770,7 +770,6 @@ extern void qlafx00_fxdisc_iocb(srb_t *, struct fxdisc_entry_fx00 *); extern void qlafx00_timer_routine(scsi_qla_host_t *); extern int qlafx00_rescan_isp(scsi_qla_host_t *); -extern int qlafx00_loop_reset(scsi_qla_host_t *vha); /* qla82xx related functions */ diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gs.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gs.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gs.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_gs.c @@ -675,8 +675,7 @@ return (QLA_SUCCESS); } - return qla_async_rffid(vha, &vha->d_id, qlt_rff_id(vha), - FC4_TYPE_FCP_SCSI); + return qla_async_rffid(vha, &vha->d_id, qlt_rff_id(vha), type); } static int qla_async_rffid(scsi_qla_host_t *vha, port_id_t *d_id, @@ -726,7 +725,7 @@ /* Prepare CT arguments -- port_id, FC-4 feature, FC-4 type */ ct_req->req.rff_id.port_id = port_id_to_be_id(*d_id); ct_req->req.rff_id.fc4_feature = fc4feature; - ct_req->req.rff_id.fc4_type = fc4type; /* SCSI - FCP */ + ct_req->req.rff_id.fc4_type = fc4type; /* SCSI-FCP or FC-NVMe */ sp->u.iocb_cmd.u.ctarg.req_size = RFF_ID_REQ_SIZE; sp->u.iocb_cmd.u.ctarg.rsp_size = RFF_ID_RSP_SIZE; diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_init.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_init.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_init.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_init.c @@ -572,6 +572,14 @@ struct srb_iocb *lio; int rval = QLA_FUNCTION_FAILED; + if (IS_SESSION_DELETED(fcport)) { + ql_log(ql_log_warn, vha, 0xffff, + "%s: %8phC is being delete - not sending command.\n", + __func__, fcport->port_name); + fcport->flags &= ~FCF_ASYNC_ACTIVE; + return rval; + } + if (!vha->flags.online || (fcport->flags & FCF_ASYNC_SENT)) return rval; @@ -955,6 +963,9 @@ set_bit(RELOGIN_NEEDED, &vha->dpc_flags); } break; + case ISP_CFG_NL: + qla24xx_fcport_handle_login(vha, fcport); + break; default: break; } @@ -978,8 +989,6 @@ sp->name, res, sp->u.iocb_cmd.u.mbx.in_mb[1], sp->u.iocb_cmd.u.mbx.in_mb[2]); - if (res == QLA_FUNCTION_TIMEOUT) - return; sp->fcport->flags &= ~(FCF_ASYNC_SENT|FCF_ASYNC_ACTIVE); memset(&ea, 0, sizeof(ea)); @@ -1017,8 +1026,8 @@ spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags); list_for_each_entry_safe(fcport, tf, &h, gnl_entry) { - list_del_init(&fcport->gnl_entry); spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); + list_del_init(&fcport->gnl_entry); fcport->flags &= ~(FCF_ASYNC_SENT | FCF_ASYNC_ACTIVE); spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags); ea.fcport = fcport; @@ -1314,14 +1323,21 @@ struct port_database_24xx *pd; struct qla_hw_data *ha = vha->hw; - if (!vha->flags.online || (fcport->flags & FCF_ASYNC_SENT) || - fcport->loop_id == FC_NO_LOOP_ID) { + if (IS_SESSION_DELETED(fcport)) { ql_log(ql_log_warn, vha, 0xffff, - "%s: %8phC - not sending command.\n", - __func__, fcport->port_name); + "%s: %8phC is being delete - not sending command.\n", + __func__, fcport->port_name); + fcport->flags &= ~FCF_ASYNC_ACTIVE; return rval; } + if (!vha->flags.online || fcport->flags & FCF_ASYNC_SENT) { + ql_log(ql_log_warn, vha, 0xffff, + "%s: %8phC online %d flags %x - not sending command.\n", + __func__, fcport->port_name, vha->flags.online, fcport->flags); + goto done; + } + sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL); if (!sp) goto done; @@ -1480,6 +1496,11 @@ u8 login = 0; int rc; + ql_dbg(ql_dbg_disc, vha, 0x307b, + "%s %8phC DS %d LS %d lid %d retries=%d\n", + __func__, fcport->port_name, fcport->disc_state, + fcport->fw_login_state, fcport->loop_id, fcport->login_retry); + if (qla_tgt_mode_enabled(vha)) return; @@ -1537,7 +1558,8 @@ fcport->conflict, fcport->last_rscn_gen, fcport->rscn_gen, fcport->login_gen, fcport->loop_id, fcport->scan_state); - if (fcport->scan_state != QLA_FCPORT_FOUND) + if (fcport->scan_state != QLA_FCPORT_FOUND || + fcport->disc_state == DSC_DELETE_PEND) return 0; if ((fcport->loop_id != FC_NO_LOOP_ID) && @@ -1558,7 +1580,7 @@ if (vha->host->active_mode == MODE_TARGET) return 0; - if (fcport->flags & FCF_ASYNC_SENT) { + if (fcport->flags & (FCF_ASYNC_SENT | FCF_ASYNC_ACTIVE)) { set_bit(RELOGIN_NEEDED, &vha->dpc_flags); return 0; } @@ -3258,6 +3280,14 @@ struct rsp_que *rsp = ha->rsp_q_map[0]; struct qla2xxx_fw_dump *fw_dump; + if (ha->fw_dump) { + ql_dbg(ql_dbg_init, vha, 0x00bd, + "Firmware dump already allocated.\n"); + return; + } + + ha->fw_dumped = 0; + ha->fw_dump_cap_flags = 0; dump_size = fixed_size = mem_size = eft_size = fce_size = mq_size = 0; req_q_size = rsp_q_size = 0; @@ -3268,7 +3298,7 @@ mem_size = (ha->fw_memory_size - 0x11000 + 1) * sizeof(uint16_t); } else if (IS_FWI2_CAPABLE(ha)) { - if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) + if (IS_QLA83XX(ha)) fixed_size = offsetof(struct qla83xx_fw_dump, ext_mem); else if (IS_QLA81XX(ha)) fixed_size = offsetof(struct qla81xx_fw_dump, ext_mem); @@ -3280,8 +3310,7 @@ mem_size = (ha->fw_memory_size - 0x100000 + 1) * sizeof(uint32_t); if (ha->mqenable) { - if (!IS_QLA83XX(ha) && !IS_QLA27XX(ha) && - !IS_QLA28XX(ha)) + if (!IS_QLA83XX(ha)) mq_size = sizeof(struct qla2xxx_mq_chain); /* * Allocate maximum buffer size for all queues - Q0. @@ -3778,8 +3807,7 @@ ha->fw_major_version, ha->fw_minor_version, ha->fw_subminor_version); - if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || - IS_QLA28XX(ha)) { + if (IS_QLA83XX(ha)) { ha->flags.fac_supported = 0; rval = QLA_SUCCESS; } @@ -5073,6 +5101,22 @@ return (rval); } +static void +qla_reinitialize_link(scsi_qla_host_t *vha) +{ + int rval; + + atomic_set(&vha->loop_state, LOOP_DOWN); + atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME); + rval = qla2x00_full_login_lip(vha); + if (rval == QLA_SUCCESS) { + ql_dbg(ql_dbg_disc, vha, 0xd050, "Link reinitialized\n"); + } else { + ql_dbg(ql_dbg_disc, vha, 0xd051, + "Link reinitialization failed (%d)\n", rval); + } +} + /* * qla2x00_configure_local_loop * Updates Fibre Channel Device Database with local loop devices. @@ -5137,6 +5181,19 @@ spin_unlock_irqrestore(&vha->work_lock, flags); if (vha->scan.scan_retry < MAX_SCAN_RETRIES) { + u8 loop_map_entries = 0; + int rc; + + rc = qla2x00_get_fcal_position_map(vha, NULL, + &loop_map_entries); + if (rc == QLA_SUCCESS && loop_map_entries > 1) { + /* + * There are devices that are still not logged + * in. Reinitialize to give them a chance. + */ + qla_reinitialize_link(vha); + return QLA_FUNCTION_FAILED; + } set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags); set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags); } @@ -5253,6 +5310,13 @@ memcpy(fcport->node_name, new_fcport->node_name, WWN_SIZE); fcport->scan_state = QLA_FCPORT_FOUND; + if (fcport->login_retry == 0) { + fcport->login_retry = vha->hw->login_retry_count; + ql_dbg(ql_dbg_disc, vha, 0x2135, + "Port login retry %8phN, lid 0x%04x retry cnt=%d.\n", + fcport->port_name, fcport->loop_id, + fcport->login_retry); + } found++; break; } @@ -6837,7 +6901,8 @@ return 0; break; case QLA2XXX_INI_MODE_DUAL: - if (!qla_dual_mode_enabled(vha)) + if (!qla_dual_mode_enabled(vha) && + !qla_ini_mode_enabled(vha)) return 0; break; case QLA2XXX_INI_MODE_ENABLED: @@ -9036,7 +9101,7 @@ qpair->rsp->req = qpair->req; qpair->rsp->qpair = qpair; /* init qpair to this cpu. Will adjust at run time. */ - qla_cpu_update(qpair, smp_processor_id()); + qla_cpu_update(qpair, raw_smp_processor_id()); if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { if (ha->fw_attributes & BIT_4) diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_iocb.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_iocb.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_iocb.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_iocb.c @@ -2859,6 +2859,7 @@ set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); qla2xxx_wake_dpc(vha); + break; } /* fall through */ default: @@ -2868,9 +2869,7 @@ fw_status[0], fw_status[1], fw_status[2]); fcport->flags &= ~FCF_ASYNC_SENT; - qla2x00_set_fcport_disc_state(fcport, - DSC_LOGIN_FAILED); - set_bit(RELOGIN_NEEDED, &vha->dpc_flags); + qlt_schedule_sess_for_deletion(fcport); break; } break; @@ -2882,8 +2881,7 @@ fw_status[0], fw_status[1], fw_status[2]); sp->fcport->flags &= ~FCF_ASYNC_SENT; - qla2x00_set_fcport_disc_state(fcport, DSC_LOGIN_FAILED); - set_bit(RELOGIN_NEEDED, &vha->dpc_flags); + qlt_schedule_sess_for_deletion(fcport); break; } diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_isr.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_isr.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_isr.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_isr.c @@ -1839,6 +1839,7 @@ iocb->u.tmf.data = QLA_FUNCTION_FAILED; } else if ((le16_to_cpu(sts->scsi_status) & SS_RESPONSE_INFO_LEN_VALID)) { + host_to_fcp_swap(sts->data, sizeof(sts->data)); if (le32_to_cpu(sts->rsp_data_len) < 4) { ql_log(ql_log_warn, fcport->vha, 0x503b, "Async-%s error - hdl=%x not enough response(%d).\n", @@ -3567,16 +3568,12 @@ } /* Enable MSI-X vector for response queue update for queue 0 */ - if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) { - if (ha->msixbase && ha->mqiobase && - (ha->max_rsp_queues > 1 || ha->max_req_queues > 1 || - ql2xmqsupport)) - ha->mqenable = 1; - } else - if (ha->mqiobase && - (ha->max_rsp_queues > 1 || ha->max_req_queues > 1 || - ql2xmqsupport)) - ha->mqenable = 1; + if (IS_MQUE_CAPABLE(ha) && + (ha->msixbase && ha->mqiobase && ha->max_qpairs)) + ha->mqenable = 1; + else + ha->mqenable = 0; + ql_dbg(ql_dbg_multiq, vha, 0xc005, "mqiobase=%p, max_rsp_queues=%d, max_req_queues=%d.\n", ha->mqiobase, ha->max_rsp_queues, ha->max_req_queues); diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_mbx.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_mbx.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_mbx.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_mbx.c @@ -10,6 +10,12 @@ #include #include +#ifdef CONFIG_PPC +#define IS_PPCARCH true +#else +#define IS_PPCARCH false +#endif + static struct mb_cmd_name { uint16_t cmd; const char *str; @@ -265,6 +271,12 @@ atomic_inc(&ha->num_pend_mbx_stage3); if (!wait_for_completion_timeout(&ha->mbx_intr_comp, mcp->tov * HZ)) { + ql_dbg(ql_dbg_mbx, vha, 0x117a, + "cmd=%x Timeout.\n", command); + spin_lock_irqsave(&ha->hardware_lock, flags); + clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); + spin_unlock_irqrestore(&ha->hardware_lock, flags); + if (chip_reset != ha->chip_reset) { spin_lock_irqsave(&ha->hardware_lock, flags); ha->flags.mbox_busy = 0; @@ -275,12 +287,6 @@ rval = QLA_ABORTED; goto premature_exit; } - ql_dbg(ql_dbg_mbx, vha, 0x117a, - "cmd=%x Timeout.\n", command); - spin_lock_irqsave(&ha->hardware_lock, flags); - clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); - spin_unlock_irqrestore(&ha->hardware_lock, flags); - } else if (ha->flags.purge_mbox || chip_reset != ha->chip_reset) { spin_lock_irqsave(&ha->hardware_lock, flags); @@ -731,6 +737,9 @@ vha->min_supported_speed = nv->min_supported_speed; } + + if (IS_PPCARCH) + mcp->mb[11] |= BIT_4; } if (ha->flags.exlogins_enabled) @@ -2897,8 +2906,7 @@ ha->orig_fw_iocb_count = mcp->mb[10]; if (ha->flags.npiv_supported) ha->max_npiv_vports = mcp->mb[11]; - if (IS_QLA81XX(ha) || IS_QLA83XX(ha) || IS_QLA27XX(ha) || - IS_QLA28XX(ha)) + if (IS_QLA81XX(ha) || IS_QLA83XX(ha)) ha->fw_max_fcf_count = mcp->mb[12]; } @@ -2920,7 +2928,8 @@ * Kernel context. */ int -qla2x00_get_fcal_position_map(scsi_qla_host_t *vha, char *pos_map) +qla2x00_get_fcal_position_map(scsi_qla_host_t *vha, char *pos_map, + u8 *num_entries) { int rval; mbx_cmd_t mc; @@ -2960,6 +2969,8 @@ if (pos_map) memcpy(pos_map, pmap, FCAL_MAP_SIZE); + if (num_entries) + *num_entries = pmap[0]; } dma_pool_free(ha->s_dma_pool, pmap, pmap_dma); @@ -5393,7 +5404,7 @@ mcp->out_mb = MBX_1|MBX_0; mcp->in_mb = MBX_2|MBX_1|MBX_0; if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) - mcp->in_mb |= MBX_3; + mcp->in_mb |= MBX_4|MBX_3; mcp->tov = MBX_TOV_SECONDS; mcp->flags = 0; rval = qla2x00_mailbox_command(vha, mcp); diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_nvme.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_nvme.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_nvme.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_nvme.c @@ -84,8 +84,9 @@ struct qla_hw_data *ha; struct qla_qpair *qpair; - if (!qidx) - qidx++; + /* Map admin queue and 1st IO queue to index 0 */ + if (qidx) + qidx--; vha = (struct scsi_qla_host *)lport->private; ha = vha->hw; @@ -151,6 +152,18 @@ qla2xxx_rel_qpair_sp(sp->qpair, sp); } +static void qla_nvme_ls_unmap(struct srb *sp, struct nvmefc_ls_req *fd) +{ + if (sp->flags & SRB_DMA_VALID) { + struct srb_iocb *nvme = &sp->u.iocb_cmd; + struct qla_hw_data *ha = sp->fcport->vha->hw; + + dma_unmap_single(&ha->pdev->dev, nvme->u.nvme.cmd_dma, + fd->rqstlen, DMA_TO_DEVICE); + sp->flags &= ~SRB_DMA_VALID; + } +} + static void qla_nvme_release_ls_cmd_kref(struct kref *kref) { struct srb *sp = container_of(kref, struct srb, cmd_kref); @@ -167,6 +180,8 @@ spin_unlock_irqrestore(&priv->cmd_lock, flags); fd = priv->fd; + + qla_nvme_ls_unmap(sp, fd); fd->done(fd, priv->comp_status); out: qla2x00_rel_sp(sp); @@ -313,6 +328,8 @@ dma_sync_single_for_device(&ha->pdev->dev, nvme->u.nvme.cmd_dma, fd->rqstlen, DMA_TO_DEVICE); + sp->flags |= SRB_DMA_VALID; + rval = qla2x00_start_sp(sp); if (rval != QLA_SUCCESS) { ql_log(ql_log_warn, vha, 0x700e, @@ -320,6 +337,7 @@ wake_up(&sp->nvme_ls_waitq); sp->priv = NULL; priv->sp = NULL; + qla_nvme_ls_unmap(sp, fd); qla2x00_rel_sp(sp); return rval; } diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_os.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_os.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_os.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_os.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -190,12 +191,6 @@ " 0 -- Regular doorbell.\n" " 1 -- CAMRAM doorbell (faster).\n"); -int ql2xtargetreset = 1; -module_param(ql2xtargetreset, int, S_IRUGO); -MODULE_PARM_DESC(ql2xtargetreset, - "Enable target reset." - "Default is 1 - use hw defaults."); - int ql2xgffidenable; module_param(ql2xgffidenable, int, S_IRUGO); MODULE_PARM_DESC(ql2xgffidenable, @@ -1228,6 +1223,7 @@ uint32_t ratov_j; struct qla_qpair *qpair; unsigned long flags; + int fast_fail_status = SUCCESS; if (qla2x00_isp_reg_stat(ha)) { ql_log(ql_log_info, vha, 0x8042, @@ -1235,15 +1231,16 @@ return FAILED; } + /* Save any FAST_IO_FAIL value to return later if abort succeeds */ ret = fc_block_scsi_eh(cmd); if (ret != 0) - return ret; + fast_fail_status = ret; sp = scsi_cmd_priv(cmd); qpair = sp->qpair; if ((sp->fcport && sp->fcport->deleted) || !qpair) - return SUCCESS; + return fast_fail_status != SUCCESS ? fast_fail_status : FAILED; spin_lock_irqsave(qpair->qp_lock_ptr, flags); if (sp->completed) { @@ -1289,7 +1286,7 @@ __func__, ha->r_a_tov/10); ret = FAILED; } else { - ret = SUCCESS; + ret = fast_fail_status; } break; default: @@ -1635,27 +1632,10 @@ qla2x00_loop_reset(scsi_qla_host_t *vha) { int ret; - struct fc_port *fcport; struct qla_hw_data *ha = vha->hw; - if (IS_QLAFX00(ha)) { - return qlafx00_loop_reset(vha); - } - - if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) { - list_for_each_entry(fcport, &vha->vp_fcports, list) { - if (fcport->port_type != FCT_TARGET) - continue; - - ret = ha->isp_ops->target_reset(fcport, 0, 0); - if (ret != QLA_SUCCESS) { - ql_dbg(ql_dbg_taskm, vha, 0x802c, - "Bus Reset failed: Reset=%d " - "d_id=%x.\n", ret, fcport->d_id.b24); - } - } - } - + if (IS_QLAFX00(ha)) + return QLA_SUCCESS; if (ha->flags.enable_lip_full_login && !IS_CNA_CAPABLE(ha)) { atomic_set(&vha->loop_state, LOOP_DOWN); @@ -2799,6 +2779,11 @@ return ret; } + if (is_kdump_kernel()) { + ql2xmqsupport = 0; + ql2xallocfwdump = 0; + } + /* This may fail but that's ok */ pci_enable_pcie_error_reporting(pdev); @@ -3642,8 +3627,7 @@ if (ha->mqiobase) iounmap(ha->mqiobase); - if ((IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) && - ha->msixbase) + if (ha->msixbase) iounmap(ha->msixbase); } } @@ -4058,7 +4042,7 @@ ql_dbg_pci(ql_dbg_init, ha->pdev, 0xe0ee, "%s: failed alloc dsd\n", __func__); - return 1; + return -ENOMEM; } ha->dif_bundle_kallocs++; @@ -5365,6 +5349,11 @@ ea.fcport = fcport; qla24xx_handle_relogin_event(vha, &ea); } else if (vha->hw->current_topology == + ISP_CFG_NL && + IS_QLA2XXX_MIDTYPE(vha->hw)) { + (void)qla24xx_fcport_handle_login(vha, + fcport); + } else if (vha->hw->current_topology == ISP_CFG_NL) { fcport->login_retry--; status = diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_sup.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_sup.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_sup.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_sup.c @@ -843,7 +843,7 @@ ha->flt_region_nvram = start; break; case FLT_REG_IMG_PRI_27XX: - if (IS_QLA27XX(ha) && !IS_QLA28XX(ha)) + if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) ha->flt_region_img_status_pri = start; break; case FLT_REG_IMG_SEC_27XX: @@ -1355,7 +1355,7 @@ flash_data_addr(ha, faddr), cpu_to_le32(*dwptr)); if (ret) { ql_dbg(ql_dbg_user, vha, 0x7006, - "Failed slopw write %x (%x)\n", faddr, *dwptr); + "Failed slow write %x (%x)\n", faddr, *dwptr); break; } } diff -u linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_target.c linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_target.c --- linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_target.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_target.c @@ -1559,10 +1559,12 @@ return; } + mutex_lock(&tgt->ha->optrom_mutex); mutex_lock(&vha->vha_tgt.tgt_mutex); tgt->tgt_stop = 0; tgt->tgt_stopped = 1; mutex_unlock(&vha->vha_tgt.tgt_mutex); + mutex_unlock(&tgt->ha->optrom_mutex); ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00c, "Stop of tgt %p finished\n", tgt); @@ -3249,8 +3251,8 @@ "RESET-RSP online/active/old-count/new-count = %d/%d/%d/%d.\n", vha->flags.online, qla2x00_reset_active(vha), cmd->reset_count, qpair->chip_reset); - spin_unlock_irqrestore(qpair->qp_lock_ptr, flags); - return 0; + res = 0; + goto out_unmap_unlock; } /* Does F/W have an IOCBs for this request */ @@ -3373,10 +3375,6 @@ prm.sg = NULL; prm.req_cnt = 1; - /* Calculate number of entries and segments required */ - if (qlt_pci_map_calc_cnt(&prm) != 0) - return -EAGAIN; - if (!qpair->fw_started || (cmd->reset_count != qpair->chip_reset) || (cmd->sess && cmd->sess->deleted)) { /* @@ -3394,6 +3392,10 @@ return 0; } + /* Calculate number of entries and segments required */ + if (qlt_pci_map_calc_cnt(&prm) != 0) + return -EAGAIN; + spin_lock_irqsave(qpair->qp_lock_ptr, flags); /* Does F/W have an IOCBs for this request */ res = qlt_check_reserve_free_req(qpair, prm.req_cnt); @@ -3766,6 +3768,9 @@ spin_lock_irqsave(&cmd->cmd_lock, flags); if (cmd->aborted) { + if (cmd->sg_mapped) + qlt_unmap_sg(vha, cmd); + spin_unlock_irqrestore(&cmd->cmd_lock, flags); /* * It's normal to see 2 calls in this path: @@ -3798,9 +3803,6 @@ BUG_ON(cmd->cmd_in_wq); - if (cmd->sg_mapped) - qlt_unmap_sg(cmd->vha, cmd); - if (!cmd->q_full) qlt_decr_num_pend_cmds(cmd->vha); @@ -7085,8 +7087,7 @@ if (!QLA_TGT_MODE_ENABLED()) return; - if ((ql2xenablemsix == 0) || IS_QLA83XX(ha) || IS_QLA27XX(ha) || - IS_QLA28XX(ha)) { + if (ha->mqenable || IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) { ISP_ATIO_Q_IN(base_vha) = &ha->mqiobase->isp25mq.atio_q_in; ISP_ATIO_Q_OUT(base_vha) = &ha->mqiobase->isp25mq.atio_q_out; } else { diff -u linux-azure-5.4.0/drivers/scsi/scsi_debug.c linux-azure-5.4.0/drivers/scsi/scsi_debug.c --- linux-azure-5.4.0/drivers/scsi/scsi_debug.c +++ linux-azure-5.4.0/drivers/scsi/scsi_debug.c @@ -2296,11 +2296,11 @@ __func__, param_len, res); md_len = mselect6 ? (arr[0] + 1) : (get_unaligned_be16(arr + 0) + 2); bd_len = mselect6 ? arr[3] : get_unaligned_be16(arr + 6); - if (md_len > 2) { + off = bd_len + (mselect6 ? 4 : 8); + if (md_len > 2 || off >= res) { mk_sense_invalid_fld(scp, SDEB_IN_DATA, 0, -1); return check_condition_result; } - off = bd_len + (mselect6 ? 4 : 8); mpage = arr[off] & 0x3f; ps = !!(arr[off] & 0x80); if (ps) { diff -u linux-azure-5.4.0/drivers/scsi/scsi_devinfo.c linux-azure-5.4.0/drivers/scsi/scsi_devinfo.c --- linux-azure-5.4.0/drivers/scsi/scsi_devinfo.c +++ linux-azure-5.4.0/drivers/scsi/scsi_devinfo.c @@ -184,6 +184,7 @@ {"HP", "C3323-300", "4269", BLIST_NOTQ}, {"HP", "C5713A", NULL, BLIST_NOREPORTLUN}, {"HP", "DISK-SUBSYSTEM", "*", BLIST_REPORTLUN2}, + {"HPE", "OPEN-", "*", BLIST_REPORTLUN2 | BLIST_TRY_VPD_PAGES}, {"IBM", "AuSaV1S2", NULL, BLIST_FORCELUN}, {"IBM", "ProFibre 4000R", "*", BLIST_SPARSELUN | BLIST_LARGELUN}, {"IBM", "2105", NULL, BLIST_RETRY_HWERROR}, diff -u linux-azure-5.4.0/drivers/scsi/scsi_lib.c linux-azure-5.4.0/drivers/scsi/scsi_lib.c --- linux-azure-5.4.0/drivers/scsi/scsi_lib.c +++ linux-azure-5.4.0/drivers/scsi/scsi_lib.c @@ -762,6 +762,7 @@ case 0x07: /* operation in progress */ case 0x08: /* Long write in progress */ case 0x09: /* self test in progress */ + case 0x11: /* notify (enable spinup) required */ case 0x14: /* space allocation in progress */ case 0x1a: /* start stop unit in progress */ case 0x1b: /* sanitize in progress */ @@ -1617,18 +1618,12 @@ static void scsi_mq_done(struct scsi_cmnd *cmd) { + if (unlikely(blk_should_fake_timeout(cmd->request->q))) + return; if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state))) return; trace_scsi_dispatch_cmd_done(cmd); - - /* - * If the block layer didn't complete the request due to a timeout - * injection, scsi must clear its internal completed state so that the - * timeout handler will see it needs to escalate its own error - * recovery. - */ - if (unlikely(!blk_mq_complete_request(cmd->request))) - clear_bit(SCMD_STATE_COMPLETE, &cmd->state); + blk_mq_complete_request(cmd->request); } static void scsi_mq_put_budget(struct blk_mq_hw_ctx *hctx) @@ -1718,8 +1713,7 @@ case BLK_STS_OK: break; case BLK_STS_RESOURCE: - if (atomic_read(&sdev->device_busy) || - scsi_device_blocked(sdev)) + if (scsi_device_blocked(sdev)) ret = BLK_STS_DEV_RESOURCE; break; default: diff -u linux-azure-5.4.0/drivers/scsi/scsi_scan.c linux-azure-5.4.0/drivers/scsi/scsi_scan.c --- linux-azure-5.4.0/drivers/scsi/scsi_scan.c +++ linux-azure-5.4.0/drivers/scsi/scsi_scan.c @@ -454,7 +454,8 @@ error = shost->hostt->target_alloc(starget); if(error) { - dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error); + if (error != -ENXIO) + dev_err(dev, "target allocation failed, error %d\n", error); /* don't want scsi_target_reap to do the final * put because it will be under the host lock */ scsi_target_destroy(starget); diff -u linux-azure-5.4.0/drivers/scsi/scsi_transport_iscsi.c linux-azure-5.4.0/drivers/scsi/scsi_transport_iscsi.c --- linux-azure-5.4.0/drivers/scsi/scsi_transport_iscsi.c +++ linux-azure-5.4.0/drivers/scsi/scsi_transport_iscsi.c @@ -432,40 +432,9 @@ struct device *dev = container_of(kobj, struct device, kobj); struct iscsi_iface *iface = iscsi_dev_to_iface(dev); struct iscsi_transport *t = iface->transport; - int param; - int param_type; + int param = -1; - if (attr == &dev_attr_iface_enabled.attr) - param = ISCSI_NET_PARAM_IFACE_ENABLE; - else if (attr == &dev_attr_iface_vlan_id.attr) - param = ISCSI_NET_PARAM_VLAN_ID; - else if (attr == &dev_attr_iface_vlan_priority.attr) - param = ISCSI_NET_PARAM_VLAN_PRIORITY; - else if (attr == &dev_attr_iface_vlan_enabled.attr) - param = ISCSI_NET_PARAM_VLAN_ENABLED; - else if (attr == &dev_attr_iface_mtu.attr) - param = ISCSI_NET_PARAM_MTU; - else if (attr == &dev_attr_iface_port.attr) - param = ISCSI_NET_PARAM_PORT; - else if (attr == &dev_attr_iface_ipaddress_state.attr) - param = ISCSI_NET_PARAM_IPADDR_STATE; - else if (attr == &dev_attr_iface_delayed_ack_en.attr) - param = ISCSI_NET_PARAM_DELAYED_ACK_EN; - else if (attr == &dev_attr_iface_tcp_nagle_disable.attr) - param = ISCSI_NET_PARAM_TCP_NAGLE_DISABLE; - else if (attr == &dev_attr_iface_tcp_wsf_disable.attr) - param = ISCSI_NET_PARAM_TCP_WSF_DISABLE; - else if (attr == &dev_attr_iface_tcp_wsf.attr) - param = ISCSI_NET_PARAM_TCP_WSF; - else if (attr == &dev_attr_iface_tcp_timer_scale.attr) - param = ISCSI_NET_PARAM_TCP_TIMER_SCALE; - else if (attr == &dev_attr_iface_tcp_timestamp_en.attr) - param = ISCSI_NET_PARAM_TCP_TIMESTAMP_EN; - else if (attr == &dev_attr_iface_cache_id.attr) - param = ISCSI_NET_PARAM_CACHE_ID; - else if (attr == &dev_attr_iface_redirect_en.attr) - param = ISCSI_NET_PARAM_REDIRECT_EN; - else if (attr == &dev_attr_iface_def_taskmgmt_tmo.attr) + if (attr == &dev_attr_iface_def_taskmgmt_tmo.attr) param = ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO; else if (attr == &dev_attr_iface_header_digest.attr) param = ISCSI_IFACE_PARAM_HDRDGST_EN; @@ -501,6 +470,40 @@ param = ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN; else if (attr == &dev_attr_iface_initiator_name.attr) param = ISCSI_IFACE_PARAM_INITIATOR_NAME; + + if (param != -1) + return t->attr_is_visible(ISCSI_IFACE_PARAM, param); + + if (attr == &dev_attr_iface_enabled.attr) + param = ISCSI_NET_PARAM_IFACE_ENABLE; + else if (attr == &dev_attr_iface_vlan_id.attr) + param = ISCSI_NET_PARAM_VLAN_ID; + else if (attr == &dev_attr_iface_vlan_priority.attr) + param = ISCSI_NET_PARAM_VLAN_PRIORITY; + else if (attr == &dev_attr_iface_vlan_enabled.attr) + param = ISCSI_NET_PARAM_VLAN_ENABLED; + else if (attr == &dev_attr_iface_mtu.attr) + param = ISCSI_NET_PARAM_MTU; + else if (attr == &dev_attr_iface_port.attr) + param = ISCSI_NET_PARAM_PORT; + else if (attr == &dev_attr_iface_ipaddress_state.attr) + param = ISCSI_NET_PARAM_IPADDR_STATE; + else if (attr == &dev_attr_iface_delayed_ack_en.attr) + param = ISCSI_NET_PARAM_DELAYED_ACK_EN; + else if (attr == &dev_attr_iface_tcp_nagle_disable.attr) + param = ISCSI_NET_PARAM_TCP_NAGLE_DISABLE; + else if (attr == &dev_attr_iface_tcp_wsf_disable.attr) + param = ISCSI_NET_PARAM_TCP_WSF_DISABLE; + else if (attr == &dev_attr_iface_tcp_wsf.attr) + param = ISCSI_NET_PARAM_TCP_WSF; + else if (attr == &dev_attr_iface_tcp_timer_scale.attr) + param = ISCSI_NET_PARAM_TCP_TIMER_SCALE; + else if (attr == &dev_attr_iface_tcp_timestamp_en.attr) + param = ISCSI_NET_PARAM_TCP_TIMESTAMP_EN; + else if (attr == &dev_attr_iface_cache_id.attr) + param = ISCSI_NET_PARAM_CACHE_ID; + else if (attr == &dev_attr_iface_redirect_en.attr) + param = ISCSI_NET_PARAM_REDIRECT_EN; else if (iface->iface_type == ISCSI_IFACE_TYPE_IPV4) { if (attr == &dev_attr_ipv4_iface_ipaddress.attr) param = ISCSI_NET_PARAM_IPV4_ADDR; @@ -591,32 +594,7 @@ return 0; } - switch (param) { - case ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO: - case ISCSI_IFACE_PARAM_HDRDGST_EN: - case ISCSI_IFACE_PARAM_DATADGST_EN: - case ISCSI_IFACE_PARAM_IMM_DATA_EN: - case ISCSI_IFACE_PARAM_INITIAL_R2T_EN: - case ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN: - case ISCSI_IFACE_PARAM_PDU_INORDER_EN: - case ISCSI_IFACE_PARAM_ERL: - case ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH: - case ISCSI_IFACE_PARAM_FIRST_BURST: - case ISCSI_IFACE_PARAM_MAX_R2T: - case ISCSI_IFACE_PARAM_MAX_BURST: - case ISCSI_IFACE_PARAM_CHAP_AUTH_EN: - case ISCSI_IFACE_PARAM_BIDI_CHAP_EN: - case ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL: - case ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN: - case ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN: - case ISCSI_IFACE_PARAM_INITIATOR_NAME: - param_type = ISCSI_IFACE_PARAM; - break; - default: - param_type = ISCSI_NET_PARAM; - } - - return t->attr_is_visible(param_type, param); + return t->attr_is_visible(ISCSI_NET_PARAM, param); } static struct attribute *iscsi_iface_attrs[] = { @@ -1916,12 +1894,12 @@ } spin_unlock_irqrestore(&session->lock, flags); - if (session->transport->session_recovery_timedout) - session->transport->session_recovery_timedout(session); - ISCSI_DBG_TRANS_SESSION(session, "Unblocking SCSI target\n"); scsi_target_unblock(&session->dev, SDEV_TRANSPORT_OFFLINE); ISCSI_DBG_TRANS_SESSION(session, "Completed unblocking SCSI target\n"); + + if (session->transport->session_recovery_timedout) + session->transport->session_recovery_timedout(session); } static void __iscsi_unblock_session(struct work_struct *work) @@ -2308,6 +2286,18 @@ } EXPORT_SYMBOL_GPL(iscsi_destroy_conn); +void iscsi_put_conn(struct iscsi_cls_conn *conn) +{ + put_device(&conn->dev); +} +EXPORT_SYMBOL_GPL(iscsi_put_conn); + +void iscsi_get_conn(struct iscsi_cls_conn *conn) +{ + get_device(&conn->dev); +} +EXPORT_SYMBOL_GPL(iscsi_get_conn); + /* * iscsi interface functions */ diff -u linux-azure-5.4.0/drivers/scsi/sd.c linux-azure-5.4.0/drivers/scsi/sd.c --- linux-azure-5.4.0/drivers/scsi/sd.c +++ linux-azure-5.4.0/drivers/scsi/sd.c @@ -3345,15 +3345,16 @@ } device_initialize(&sdkp->dev); - sdkp->dev.parent = dev; + sdkp->dev.parent = get_device(dev); sdkp->dev.class = &sd_disk_class; dev_set_name(&sdkp->dev, "%s", dev_name(dev)); error = device_add(&sdkp->dev); - if (error) - goto out_free_index; + if (error) { + put_device(&sdkp->dev); + goto out; + } - get_device(dev); dev_set_drvdata(dev, sdkp); gd->major = sd_major((index & 0xf0) >> 4); diff -u linux-azure-5.4.0/drivers/scsi/sg.c linux-azure-5.4.0/drivers/scsi/sg.c --- linux-azure-5.4.0/drivers/scsi/sg.c +++ linux-azure-5.4.0/drivers/scsi/sg.c @@ -190,7 +190,7 @@ static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp); static Sg_fd *sg_add_sfp(Sg_device * sdp); static void sg_remove_sfp(struct kref *); -static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id); +static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id, bool *busy); static Sg_request *sg_add_request(Sg_fd * sfp); static int sg_remove_request(Sg_fd * sfp, Sg_request * srp); static Sg_device *sg_get_dev(int dev); @@ -412,6 +412,7 @@ Sg_fd *sfp; Sg_request *srp; int req_pack_id = -1; + bool busy; sg_io_hdr_t *hp; struct sg_header *old_hdr = NULL; int retval = 0; @@ -459,25 +460,19 @@ } else req_pack_id = old_hdr->pack_id; } - srp = sg_get_rq_mark(sfp, req_pack_id); + srp = sg_get_rq_mark(sfp, req_pack_id, &busy); if (!srp) { /* now wait on packet to arrive */ - if (atomic_read(&sdp->detaching)) { - retval = -ENODEV; - goto free_old_hdr; - } if (filp->f_flags & O_NONBLOCK) { retval = -EAGAIN; goto free_old_hdr; } retval = wait_event_interruptible(sfp->read_wait, - (atomic_read(&sdp->detaching) || - (srp = sg_get_rq_mark(sfp, req_pack_id)))); - if (atomic_read(&sdp->detaching)) { - retval = -ENODEV; - goto free_old_hdr; - } - if (retval) { - /* -ERESTARTSYS as signal hit process */ + ((srp = sg_get_rq_mark(sfp, req_pack_id, &busy)) || + (!busy && atomic_read(&sdp->detaching)))); + if (!srp) { + /* signal or detaching */ + if (!retval) + retval = -ENODEV; goto free_old_hdr; } } @@ -928,9 +923,7 @@ if (result < 0) return result; result = wait_event_interruptible(sfp->read_wait, - (srp_done(sfp, srp) || atomic_read(&sdp->detaching))); - if (atomic_read(&sdp->detaching)) - return -ENODEV; + srp_done(sfp, srp)); write_lock_irq(&sfp->rq_list_lock); if (srp->done) { srp->done = 2; @@ -2074,19 +2067,28 @@ } static Sg_request * -sg_get_rq_mark(Sg_fd * sfp, int pack_id) +sg_get_rq_mark(Sg_fd * sfp, int pack_id, bool *busy) { Sg_request *resp; unsigned long iflags; + *busy = false; write_lock_irqsave(&sfp->rq_list_lock, iflags); list_for_each_entry(resp, &sfp->rq_list, entry) { - /* look for requests that are ready + not SG_IO owned */ - if ((1 == resp->done) && (!resp->sg_io_owned) && + /* look for requests that are not SG_IO owned */ + if ((!resp->sg_io_owned) && ((-1 == pack_id) || (resp->header.pack_id == pack_id))) { - resp->done = 2; /* guard against other readers */ - write_unlock_irqrestore(&sfp->rq_list_lock, iflags); - return resp; + switch (resp->done) { + case 0: /* request active */ + *busy = true; + break; + case 1: /* request done; response ready to return */ + resp->done = 2; /* guard against other readers */ + write_unlock_irqrestore(&sfp->rq_list_lock, iflags); + return resp; + case 2: /* response already being returned */ + break; + } } } write_unlock_irqrestore(&sfp->rq_list_lock, iflags); @@ -2140,6 +2142,15 @@ res = 1; } write_unlock_irqrestore(&sfp->rq_list_lock, iflags); + + /* + * If the device is detaching, wakeup any readers in case we just + * removed the last response, which would leave nothing for them to + * return other than -ENODEV. + */ + if (unlikely(atomic_read(&sfp->parentdp->detaching))) + wake_up_interruptible_all(&sfp->read_wait); + return res; } diff -u linux-azure-5.4.0/drivers/scsi/smartpqi/smartpqi_init.c linux-azure-5.4.0/drivers/scsi/smartpqi/smartpqi_init.c --- linux-azure-5.4.0/drivers/scsi/smartpqi/smartpqi_init.c +++ linux-azure-5.4.0/drivers/scsi/smartpqi/smartpqi_init.c @@ -1207,6 +1207,7 @@ "Requested %d bytes, received %d bytes", raid_map_size, get_unaligned_le32(&raid_map->structure_size)); + rc = -EINVAL; goto error; } } @@ -5029,10 +5030,10 @@ } switch (scmd->sc_data_direction) { - case DMA_TO_DEVICE: + case DMA_FROM_DEVICE: request->data_direction = SOP_READ_FLAG; break; - case DMA_FROM_DEVICE: + case DMA_TO_DEVICE: request->data_direction = SOP_WRITE_FLAG; break; case DMA_NONE: diff -u linux-azure-5.4.0/drivers/scsi/sr.c linux-azure-5.4.0/drivers/scsi/sr.c --- linux-azure-5.4.0/drivers/scsi/sr.c +++ linux-azure-5.4.0/drivers/scsi/sr.c @@ -218,6 +218,8 @@ return DISK_EVENT_EJECT_REQUEST; else if (med->media_event_code == 2) return DISK_EVENT_MEDIA_CHANGE; + else if (med->media_event_code == 3) + return DISK_EVENT_MEDIA_CHANGE; return 0; } @@ -885,7 +887,7 @@ /* allocate transfer buffer */ - buffer = kmalloc(512, GFP_KERNEL | GFP_DMA); + buffer = kmalloc(512, GFP_KERNEL); if (!buffer) { sr_printk(KERN_ERR, cd, "out of memory.\n"); return; diff -u linux-azure-5.4.0/drivers/scsi/sr_vendor.c linux-azure-5.4.0/drivers/scsi/sr_vendor.c --- linux-azure-5.4.0/drivers/scsi/sr_vendor.c +++ linux-azure-5.4.0/drivers/scsi/sr_vendor.c @@ -113,7 +113,7 @@ if (cd->vendor == VENDOR_TOSHIBA) density = (blocklength > 2048) ? 0x81 : 0x83; - buffer = kmalloc(512, GFP_KERNEL | GFP_DMA); + buffer = kmalloc(512, GFP_KERNEL); if (!buffer) return -ENOMEM; @@ -161,7 +161,7 @@ if (cd->cdi.mask & CDC_MULTI_SESSION) return 0; - buffer = kmalloc(512, GFP_KERNEL | GFP_DMA); + buffer = kmalloc(512, GFP_KERNEL); if (!buffer) return -ENOMEM; diff -u linux-azure-5.4.0/drivers/scsi/storvsc_drv.c linux-azure-5.4.0/drivers/scsi/storvsc_drv.c --- linux-azure-5.4.0/drivers/scsi/storvsc_drv.c +++ linux-azure-5.4.0/drivers/scsi/storvsc_drv.c @@ -466,6 +466,11 @@ * Mask of CPUs bound to subchannels. */ struct cpumask alloced_cpus; + /* + * Serializes modifications of stor_chns[] from storvsc_do_io() + * and storvsc_change_target_cpu(). + */ + spinlock_t lock; /* Used for vsc/vsp channel reset process */ struct storvsc_cmd_request init_request; struct storvsc_cmd_request reset_request; @@ -625,6 +630,64 @@ } +static void storvsc_change_target_cpu(struct vmbus_channel *channel, u32 old, + u32 new) +{ + struct storvsc_device *stor_device; + struct vmbus_channel *cur_chn; + bool old_is_alloced = false; + struct hv_device *device; + unsigned long flags; + int cpu; + + device = channel->primary_channel ? + channel->primary_channel->device_obj + : channel->device_obj; + stor_device = get_out_stor_device(device); + if (!stor_device) + return; + + /* See storvsc_do_io() -> get_og_chn(). */ + spin_lock_irqsave(&stor_device->lock, flags); + + /* + * Determines if the storvsc device has other channels assigned to + * the "old" CPU to update the alloced_cpus mask and the stor_chns + * array. + */ + if (device->channel != channel && device->channel->target_cpu == old) { + cur_chn = device->channel; + old_is_alloced = true; + goto old_is_alloced; + } + list_for_each_entry(cur_chn, &device->channel->sc_list, sc_list) { + if (cur_chn == channel) + continue; + if (cur_chn->target_cpu == old) { + old_is_alloced = true; + goto old_is_alloced; + } + } + +old_is_alloced: + if (old_is_alloced) + WRITE_ONCE(stor_device->stor_chns[old], cur_chn); + else + cpumask_clear_cpu(old, &stor_device->alloced_cpus); + + /* "Flush" the stor_chns array. */ + for_each_possible_cpu(cpu) { + if (stor_device->stor_chns[cpu] && !cpumask_test_cpu( + cpu, &stor_device->alloced_cpus)) + WRITE_ONCE(stor_device->stor_chns[cpu], NULL); + } + + WRITE_ONCE(stor_device->stor_chns[new], channel); + cpumask_set_cpu(new, &stor_device->alloced_cpus); + + spin_unlock_irqrestore(&stor_device->lock, flags); +} + static void handle_sc_creation(struct vmbus_channel *new_sc) { struct hv_device *device = new_sc->primary_channel->device_obj; @@ -652,6 +715,8 @@ return; } + new_sc->change_target_cpu_callback = storvsc_change_target_cpu; + /* Add the sub-channel to the array of available channels. */ stor_device->stor_chns[new_sc->target_cpu] = new_sc; cpumask_set_cpu(new_sc->target_cpu, &stor_device->alloced_cpus); @@ -880,6 +945,8 @@ if (stor_device->stor_chns == NULL) return -ENOMEM; + device->channel->change_target_cpu_callback = storvsc_change_target_cpu; + stor_device->stor_chns[device->channel->target_cpu] = device->channel; cpumask_set_cpu(device->channel->target_cpu, &stor_device->alloced_cpus); @@ -1252,8 +1319,10 @@ const struct cpumask *node_mask; int num_channels, tgt_cpu; - if (stor_device->num_sc == 0) + if (stor_device->num_sc == 0) { + stor_device->stor_chns[q_num] = stor_device->device->channel; return stor_device->device->channel; + } /* * Our channel array is sparsley populated and we @@ -1262,7 +1331,6 @@ * The strategy is simple: * I. Ensure NUMA locality * II. Distribute evenly (best effort) - * III. Mapping is persistent. */ node_mask = cpumask_of_node(cpu_to_node(q_num)); @@ -1272,8 +1340,10 @@ if (cpumask_test_cpu(tgt_cpu, node_mask)) num_channels++; } - if (num_channels == 0) + if (num_channels == 0) { + stor_device->stor_chns[q_num] = stor_device->device->channel; return stor_device->device->channel; + } hash_qnum = q_num; while (hash_qnum >= num_channels) @@ -1299,6 +1369,7 @@ struct storvsc_device *stor_device; struct vstor_packet *vstor_packet; struct vmbus_channel *outgoing_channel, *channel; + unsigned long flags; int ret = 0; const struct cpumask *node_mask; int tgt_cpu; @@ -1312,10 +1383,11 @@ request->device = device; /* - * Select an an appropriate channel to send the request out. + * Select an appropriate channel to send the request out. */ - if (stor_device->stor_chns[q_num] != NULL) { - outgoing_channel = stor_device->stor_chns[q_num]; + /* See storvsc_change_target_cpu(). */ + outgoing_channel = READ_ONCE(stor_device->stor_chns[q_num]); + if (outgoing_channel != NULL) { if (outgoing_channel->target_cpu == q_num) { /* * Ideally, we want to pick a different channel if @@ -1328,7 +1400,10 @@ continue; if (tgt_cpu == q_num) continue; - channel = stor_device->stor_chns[tgt_cpu]; + channel = READ_ONCE( + stor_device->stor_chns[tgt_cpu]); + if (channel == NULL) + continue; if (hv_get_avail_to_write_percent( &channel->outbound) > ring_avail_percent_lowater) { @@ -1354,7 +1429,10 @@ for_each_cpu(tgt_cpu, &stor_device->alloced_cpus) { if (cpumask_test_cpu(tgt_cpu, node_mask)) continue; - channel = stor_device->stor_chns[tgt_cpu]; + channel = READ_ONCE( + stor_device->stor_chns[tgt_cpu]); + if (channel == NULL) + continue; if (hv_get_avail_to_write_percent( &channel->outbound) > ring_avail_percent_lowater) { @@ -1364,7 +1442,14 @@ } } } else { + spin_lock_irqsave(&stor_device->lock, flags); + outgoing_channel = stor_device->stor_chns[q_num]; + if (outgoing_channel != NULL) { + spin_unlock_irqrestore(&stor_device->lock, flags); + goto found_channel; + } outgoing_channel = get_og_chn(stor_device, q_num); + spin_unlock_irqrestore(&stor_device->lock, flags); } found_channel: @@ -1647,23 +1732,65 @@ payload_sz = sizeof(cmd_request->mpb); if (sg_count) { - if (sg_count > MAX_PAGE_BUFFER_COUNT) { + unsigned int hvpgoff = 0; + unsigned long offset_in_hvpg = sgl->offset & ~HV_HYP_PAGE_MASK; + unsigned int hvpg_count = HVPFN_UP(offset_in_hvpg + length); + u64 hvpfn; - payload_sz = (sg_count * sizeof(u64) + + if (hvpg_count > MAX_PAGE_BUFFER_COUNT) { + + payload_sz = (hvpg_count * sizeof(u64) + sizeof(struct vmbus_packet_mpb_array)); payload = kzalloc(payload_sz, GFP_ATOMIC); if (!payload) return SCSI_MLQUEUE_DEVICE_BUSY; } + /* + * sgl is a list of PAGEs, and payload->range.pfn_array + * expects the page number in the unit of HV_HYP_PAGE_SIZE (the + * page size that Hyper-V uses, so here we need to divide PAGEs + * into HV_HYP_PAGE in case that PAGE_SIZE > HV_HYP_PAGE_SIZE. + * Besides, payload->range.offset should be the offset in one + * HV_HYP_PAGE. + */ payload->range.len = length; - payload->range.offset = sgl[0].offset; + payload->range.offset = offset_in_hvpg; + hvpgoff = sgl->offset >> HV_HYP_PAGE_SHIFT; cur_sgl = sgl; - for (i = 0; i < sg_count; i++) { - payload->range.pfn_array[i] = - page_to_pfn(sg_page((cur_sgl))); - cur_sgl = sg_next(cur_sgl); + for (i = 0; i < hvpg_count; i++) { + /* + * 'i' is the index of hv pages in the payload and + * 'hvpgoff' is the offset (in hv pages) of the first + * hv page in the the first page. The relationship + * between the sum of 'i' and 'hvpgoff' and the offset + * (in hv pages) in a payload page ('hvpgoff_in_page') + * is as follow: + * + * |------------------ PAGE -------------------| + * | NR_HV_HYP_PAGES_IN_PAGE hvpgs in total | + * |hvpg|hvpg| ... |hvpg|... |hvpg| + * ^ ^ ^ ^ + * +-hvpgoff-+ +-hvpgoff_in_page-+ + * ^ | + * +--------------------- i ---------------------------+ + */ + unsigned int hvpgoff_in_page = + (i + hvpgoff) % NR_HV_HYP_PAGES_IN_PAGE; + + /* + * Two cases that we need to fetch a page: + * 1) i == 0, the first step or + * 2) hvpgoff_in_page == 0, when we reach the boundary + * of a page. + */ + if (hvpgoff_in_page == 0 || i == 0) { + hvpfn = page_to_hvpfn(sg_page(cur_sgl)); + cur_sgl = sg_next(cur_sgl); + } + + payload->range.pfn_array[i] = hvpfn + hvpgoff_in_page; } } @@ -1806,6 +1933,7 @@ init_waitqueue_head(&stor_device->waiting_to_drain); stor_device->device = device; stor_device->host = host; + spin_lock_init(&stor_device->lock); hv_set_drvdata(device, stor_device); stor_device->port_number = host->host_no; @@ -1873,7 +2001,7 @@ */ host_dev->handle_error_wq = alloc_ordered_workqueue("storvsc_error_wq_%d", - WQ_MEM_RECLAIM, + 0, host->host_no); if (!host_dev->handle_error_wq) goto err_out2; diff -u linux-azure-5.4.0/drivers/scsi/ufs/ufs-qcom.c linux-azure-5.4.0/drivers/scsi/ufs/ufs-qcom.c --- linux-azure-5.4.0/drivers/scsi/ufs/ufs-qcom.c +++ linux-azure-5.4.0/drivers/scsi/ufs/ufs-qcom.c @@ -781,8 +781,11 @@ writel_relaxed(temp, host->dev_ref_clk_ctrl_mmio); - /* ensure that ref_clk is enabled/disabled before we return */ - wmb(); + /* + * Make sure the write to ref_clk reaches the destination and + * not stored in a Write Buffer (WB). + */ + readl(host->dev_ref_clk_ctrl_mmio); /* * If we call hibern8 exit after this, we need to make sure that diff -u linux-azure-5.4.0/drivers/scsi/ufs/ufshcd.c linux-azure-5.4.0/drivers/scsi/ufs/ufshcd.c --- linux-azure-5.4.0/drivers/scsi/ufs/ufshcd.c +++ linux-azure-5.4.0/drivers/scsi/ufs/ufshcd.c @@ -118,8 +118,13 @@ if (!regs) return -ENOMEM; - for (pos = 0; pos < len; pos += 4) + for (pos = 0; pos < len; pos += 4) { + if (offset == 0 && + pos >= REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER && + pos <= REG_UIC_ERROR_CODE_DME) + continue; regs[pos / 4] = ufshcd_readl(hba, offset + pos); + } ufshcd_hex_dump(prefix, regs, len); kfree(regs); @@ -320,8 +325,7 @@ static void ufshcd_add_tm_upiu_trace(struct ufs_hba *hba, unsigned int tag, const char *str) { - int off = (int)tag - hba->nutrs; - struct utp_task_req_desc *descp = &hba->utmrdl_base_addr[off]; + struct utp_task_req_desc *descp = &hba->utmrdl_base_addr[tag]; trace_ufshcd_upiu(dev_name(hba->dev), str, &descp->req_header, &descp->input_param1); @@ -4749,7 +4753,8 @@ break; } /* end of switch */ - if ((host_byte(result) != DID_OK) && !hba->silence_err_logs) + if ((host_byte(result) != DID_OK) && + (host_byte(result) != DID_REQUEUE) && !hba->silence_err_logs) ufshcd_print_trs(hba, 1 << lrbp->task_tag, true); return result; } @@ -5662,9 +5667,12 @@ intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS); } - if (retval == IRQ_NONE) { - dev_err(hba->dev, "%s: Unhandled interrupt 0x%08x\n", - __func__, intr_status); + if (enabled_intr_status && retval == IRQ_NONE && + !ufshcd_eh_in_progress(hba)) { + dev_err(hba->dev, "%s: Unhandled interrupt 0x%08x (-, 0x%08x)\n", + __func__, + intr_status, + enabled_intr_status); ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE, "host_regs: "); } @@ -5706,7 +5714,10 @@ /* * blk_get_request() is used here only to get a free tag. */ - req = blk_get_request(q, REQ_OP_DRV_OUT, BLK_MQ_REQ_RESERVED); + req = blk_get_request(q, REQ_OP_DRV_OUT, 0); + if (IS_ERR(req)) + return PTR_ERR(req); + req->end_io_data = &wait; ufshcd_hold(hba, false); @@ -8322,6 +8333,13 @@ struct Scsi_Host *host = hba->host; struct device *dev = hba->dev; + /* + * dev_set_drvdata() must be called before any callbacks are registered + * that use dev_get_drvdata() (frequency scaling, clock scaling, hwmon, + * sysfs). + */ + dev_set_drvdata(dev, hba); + if (!mmio_base) { dev_err(hba->dev, "Invalid memory reference for mmio_base is NULL\n"); diff -u linux-azure-5.4.0/drivers/slimbus/qcom-ngd-ctrl.c linux-azure-5.4.0/drivers/slimbus/qcom-ngd-ctrl.c --- linux-azure-5.4.0/drivers/slimbus/qcom-ngd-ctrl.c +++ linux-azure-5.4.0/drivers/slimbus/qcom-ngd-ctrl.c @@ -1061,7 +1061,8 @@ { u32 cfg = readl_relaxed(ctrl->ngd->base); - if (ctrl->state == QCOM_SLIM_NGD_CTRL_DOWN) + if (ctrl->state == QCOM_SLIM_NGD_CTRL_DOWN || + ctrl->state == QCOM_SLIM_NGD_CTRL_ASLEEP) qcom_slim_ngd_init_dma(ctrl); /* By default enable message queues */ @@ -1112,6 +1113,7 @@ dev_info(ctrl->dev, "Subsys restart: ADSP active framer\n"); return 0; } + qcom_slim_ngd_setup(ctrl); return 0; } @@ -1500,6 +1502,7 @@ struct qcom_slim_ngd_ctrl *ctrl = dev_get_drvdata(dev); int ret = 0; + qcom_slim_ngd_exit_dma(ctrl); if (!ctrl->qmi.handle) return 0; diff -u linux-azure-5.4.0/drivers/soc/qcom/mdt_loader.c linux-azure-5.4.0/drivers/soc/qcom/mdt_loader.c --- linux-azure-5.4.0/drivers/soc/qcom/mdt_loader.c +++ linux-azure-5.4.0/drivers/soc/qcom/mdt_loader.c @@ -98,7 +98,7 @@ if (ehdr->e_phnum < 2) return ERR_PTR(-EINVAL); - if (phdrs[0].p_type == PT_LOAD || phdrs[1].p_type == PT_LOAD) + if (phdrs[0].p_type == PT_LOAD) return ERR_PTR(-EINVAL); if ((phdrs[1].p_flags & QCOM_MDT_TYPE_MASK) != QCOM_MDT_TYPE_HASH) diff -u linux-azure-5.4.0/drivers/soc/qcom/rpmhpd.c linux-azure-5.4.0/drivers/soc/qcom/rpmhpd.c --- linux-azure-5.4.0/drivers/soc/qcom/rpmhpd.c +++ linux-azure-5.4.0/drivers/soc/qcom/rpmhpd.c @@ -235,12 +235,11 @@ static int rpmhpd_power_off(struct generic_pm_domain *domain) { struct rpmhpd *pd = domain_to_rpmhpd(domain); - int ret = 0; + int ret; mutex_lock(&rpmhpd_lock); - ret = rpmhpd_aggregate_corner(pd, pd->level[0]); - + ret = rpmhpd_aggregate_corner(pd, 0); if (!ret) pd->enabled = false; diff -u linux-azure-5.4.0/drivers/soc/qcom/smp2p.c linux-azure-5.4.0/drivers/soc/qcom/smp2p.c --- linux-azure-5.4.0/drivers/soc/qcom/smp2p.c +++ linux-azure-5.4.0/drivers/soc/qcom/smp2p.c @@ -420,6 +420,7 @@ } smp2p->ipc_regmap = syscon_node_to_regmap(syscon); + of_node_put(syscon); if (IS_ERR(smp2p->ipc_regmap)) return PTR_ERR(smp2p->ipc_regmap); diff -u linux-azure-5.4.0/drivers/soc/qcom/socinfo.c linux-azure-5.4.0/drivers/soc/qcom/socinfo.c --- linux-azure-5.4.0/drivers/soc/qcom/socinfo.c +++ linux-azure-5.4.0/drivers/soc/qcom/socinfo.c @@ -447,7 +447,7 @@ /* Feed the soc specific unique data into entropy pool */ add_device_randomness(info, item_size); - platform_set_drvdata(pdev, qs->soc_dev); + platform_set_drvdata(pdev, qs); return 0; } diff -u linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse-tegra30.c linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse-tegra30.c --- linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse-tegra30.c +++ linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse-tegra30.c @@ -36,7 +36,8 @@ defined(CONFIG_ARCH_TEGRA_132_SOC) || \ defined(CONFIG_ARCH_TEGRA_210_SOC) || \ defined(CONFIG_ARCH_TEGRA_186_SOC) || \ - defined(CONFIG_ARCH_TEGRA_194_SOC) + defined(CONFIG_ARCH_TEGRA_194_SOC) || \ + defined(CONFIG_ARCH_TEGRA_234_SOC) static u32 tegra30_fuse_read_early(struct tegra_fuse *fuse, unsigned int offset) { if (WARN_ON(!fuse->base)) diff -u linux-azure-5.4.0/drivers/soc/tegra/pmc.c linux-azure-5.4.0/drivers/soc/tegra/pmc.c --- linux-azure-5.4.0/drivers/soc/tegra/pmc.c +++ linux-azure-5.4.0/drivers/soc/tegra/pmc.c @@ -579,7 +579,7 @@ err = tegra_powergate_enable_clocks(pg); if (err) - goto disable_clks; + goto powergate_off; usleep_range(10, 20); @@ -591,7 +591,7 @@ err = reset_control_deassert(pg->reset); if (err) - goto powergate_off; + goto disable_clks; usleep_range(10, 20); diff -u linux-azure-5.4.0/drivers/soc/ti/wkup_m3_ipc.c linux-azure-5.4.0/drivers/soc/ti/wkup_m3_ipc.c --- linux-azure-5.4.0/drivers/soc/ti/wkup_m3_ipc.c +++ linux-azure-5.4.0/drivers/soc/ti/wkup_m3_ipc.c @@ -447,9 +447,9 @@ } irq = platform_get_irq(pdev, 0); - if (!irq) { + if (irq < 0) { dev_err(&pdev->dev, "no irq resource\n"); - return -ENXIO; + return irq; } ret = devm_request_irq(dev, irq, wkup_m3_txev_handler, diff -u linux-azure-5.4.0/drivers/soundwire/stream.c linux-azure-5.4.0/drivers/soundwire/stream.c --- linux-azure-5.4.0/drivers/soundwire/stream.c +++ linux-azure-5.4.0/drivers/soundwire/stream.c @@ -420,7 +420,6 @@ struct completion *port_ready; struct sdw_dpn_prop *dpn_prop; struct sdw_prepare_ch prep_ch; - unsigned int time_left; bool intr = false; int ret = 0, val; u32 addr; @@ -477,15 +476,15 @@ /* Wait for completion on port ready */ port_ready = &s_rt->slave->port_ready[prep_ch.num]; - time_left = wait_for_completion_timeout(port_ready, - msecs_to_jiffies(dpn_prop->ch_prep_timeout)); + wait_for_completion_timeout(port_ready, + msecs_to_jiffies(dpn_prop->ch_prep_timeout)); val = sdw_read(s_rt->slave, SDW_DPN_PREPARESTATUS(p_rt->num)); - val &= p_rt->ch_mask; - if (!time_left || val) { + if ((val < 0) || (val & p_rt->ch_mask)) { + ret = (val < 0) ? val : -ETIMEDOUT; dev_err(&s_rt->slave->dev, - "Chn prep failed for port:%d\n", prep_ch.num); - return -ETIMEDOUT; + "Chn prep failed for port %d: %d\n", prep_ch.num, ret); + return ret; } } diff -u linux-azure-5.4.0/drivers/spi/atmel-quadspi.c linux-azure-5.4.0/drivers/spi/atmel-quadspi.c --- linux-azure-5.4.0/drivers/spi/atmel-quadspi.c +++ linux-azure-5.4.0/drivers/spi/atmel-quadspi.c @@ -202,6 +202,9 @@ static bool atmel_qspi_supports_op(struct spi_mem *mem, const struct spi_mem_op *op) { + if (!spi_mem_default_supports_op(mem, op)) + return false; + if (atmel_qspi_find_mode(op) < 0) return false; diff -u linux-azure-5.4.0/drivers/spi/spi-bcm-qspi.c linux-azure-5.4.0/drivers/spi/spi-bcm-qspi.c --- linux-azure-5.4.0/drivers/spi/spi-bcm-qspi.c +++ linux-azure-5.4.0/drivers/spi/spi-bcm-qspi.c @@ -509,7 +509,7 @@ u32 rd = 0; u32 wr = 0; - if (qspi->base[CHIP_SELECT]) { + if (cs >= 0 && qspi->base[CHIP_SELECT]) { rd = bcm_qspi_read(qspi, CHIP_SELECT, 0); wr = (rd & ~0xff) | (1 << cs); if (rd == wr) @@ -960,7 +960,7 @@ addr = op->addr.val; len = op->data.nbytes; - if (bcm_qspi_bspi_ver_three(qspi) == true) { + if (has_bspi(qspi) && bcm_qspi_bspi_ver_three(qspi) == true) { /* * The address coming into this function is a raw flash offset. * But for BSPI <= V3, we need to convert it to a remapped BSPI @@ -979,7 +979,7 @@ len < 4) mspi_read = true; - if (mspi_read) + if (!has_bspi(qspi) || mspi_read) return bcm_qspi_mspi_exec_mem_op(spi, op); ret = bcm_qspi_bspi_set_mode(qspi, op, 0); @@ -1300,7 +1300,7 @@ &qspi->dev_ids[val]); if (ret < 0) { dev_err(&pdev->dev, "IRQ %s not found\n", name); - goto qspi_probe_err; + goto qspi_unprepare_err; } qspi->dev_ids[val].dev = qspi; @@ -1315,7 +1315,7 @@ if (!num_ints) { dev_err(&pdev->dev, "no IRQs registered, cannot init driver\n"); ret = -EINVAL; - goto qspi_probe_err; + goto qspi_unprepare_err; } /* @@ -1359,6 +1359,7 @@ qspi_reg_err: bcm_qspi_hw_uninit(qspi); +qspi_unprepare_err: clk_disable_unprepare(qspi->clk); qspi_probe_err: kfree(qspi->dev_ids); diff -u linux-azure-5.4.0/drivers/spi/spi-bcm2835.c linux-azure-5.4.0/drivers/spi/spi-bcm2835.c --- linux-azure-5.4.0/drivers/spi/spi-bcm2835.c +++ linux-azure-5.4.0/drivers/spi/spi-bcm2835.c @@ -68,7 +68,7 @@ #define BCM2835_SPI_FIFO_SIZE 64 #define BCM2835_SPI_FIFO_SIZE_3_4 48 #define BCM2835_SPI_DMA_MIN_LENGTH 96 -#define BCM2835_SPI_NUM_CS 3 /* raise as necessary */ +#define BCM2835_SPI_NUM_CS 24 /* raise as necessary */ #define BCM2835_SPI_MODE_BITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH \ | SPI_NO_CS | SPI_3WIRE) @@ -1159,10 +1159,14 @@ struct bcm2835_spi *bs = spi_controller_get_devdata(ctlr); /* if an error occurred and we have an active dma, then terminate */ - dmaengine_terminate_sync(ctlr->dma_tx); - bs->tx_dma_active = false; - dmaengine_terminate_sync(ctlr->dma_rx); - bs->rx_dma_active = false; + if (ctlr->dma_tx) { + dmaengine_terminate_sync(ctlr->dma_tx); + bs->tx_dma_active = false; + } + if (ctlr->dma_rx) { + dmaengine_terminate_sync(ctlr->dma_rx); + bs->rx_dma_active = false; + } bcm2835_spi_undo_prologue(bs); /* and reset */ @@ -1181,6 +1185,12 @@ struct gpio_chip *chip; u32 cs; + if (spi->chip_select >= BCM2835_SPI_NUM_CS) { + dev_err(&spi->dev, "only %d chip-selects supported\n", + BCM2835_SPI_NUM_CS - 1); + return -EINVAL; + } + /* * Precalculate SPI slave's CS register value for ->prepare_message(): * The driver always uses software-controlled GPIO chip select, hence @@ -1274,7 +1284,7 @@ ctlr->use_gpio_descriptors = true; ctlr->mode_bits = BCM2835_SPI_MODE_BITS; ctlr->bits_per_word_mask = SPI_BPW_MASK(8); - ctlr->num_chipselect = BCM2835_SPI_NUM_CS; + ctlr->num_chipselect = 3; ctlr->setup = bcm2835_spi_setup; ctlr->transfer_one = bcm2835_spi_transfer_one; ctlr->handle_err = bcm2835_spi_handle_err; diff -u linux-azure-5.4.0/drivers/spi/spi-cadence.c linux-azure-5.4.0/drivers/spi/spi-cadence.c --- linux-azure-5.4.0/drivers/spi/spi-cadence.c +++ linux-azure-5.4.0/drivers/spi/spi-cadence.c @@ -517,6 +517,12 @@ goto clk_dis_apb; } + pm_runtime_use_autosuspend(&pdev->dev); + pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT); + pm_runtime_get_noresume(&pdev->dev); + pm_runtime_set_active(&pdev->dev); + pm_runtime_enable(&pdev->dev); + ret = of_property_read_u32(pdev->dev.of_node, "num-cs", &num_cs); if (ret < 0) master->num_chipselect = CDNS_SPI_DEFAULT_NUM_CS; @@ -531,11 +537,6 @@ /* SPI controller initializations */ cdns_spi_init_hw(xspi); - pm_runtime_set_active(&pdev->dev); - pm_runtime_enable(&pdev->dev); - pm_runtime_use_autosuspend(&pdev->dev); - pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT); - irq = platform_get_irq(pdev, 0); if (irq <= 0) { ret = -ENXIO; @@ -566,6 +567,9 @@ master->bits_per_word_mask = SPI_BPW_MASK(8); + pm_runtime_mark_last_busy(&pdev->dev); + pm_runtime_put_autosuspend(&pdev->dev); + ret = spi_register_master(master); if (ret) { dev_err(&pdev->dev, "spi_register_master failed\n"); diff -u linux-azure-5.4.0/drivers/spi/spi-fsl-dspi.c linux-azure-5.4.0/drivers/spi/spi-fsl-dspi.c --- linux-azure-5.4.0/drivers/spi/spi-fsl-dspi.c +++ linux-azure-5.4.0/drivers/spi/spi-fsl-dspi.c @@ -423,6 +423,7 @@ goto err_rx_dma_buf; } + memset(&cfg, 0, sizeof(cfg)); cfg.src_addr = phy_addr + SPI_POPR; cfg.dst_addr = phy_addr + SPI_PUSHR; cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; diff -u linux-azure-5.4.0/drivers/spi/spi-fsl-spi.c linux-azure-5.4.0/drivers/spi/spi-fsl-spi.c --- linux-azure-5.4.0/drivers/spi/spi-fsl-spi.c +++ linux-azure-5.4.0/drivers/spi/spi-fsl-spi.c @@ -442,6 +442,7 @@ { struct mpc8xxx_spi *mpc8xxx_spi; struct fsl_spi_reg *reg_base; + bool initial_setup = false; int retval; u32 hw_mode; struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi); @@ -454,6 +455,7 @@ if (!cs) return -ENOMEM; spi_set_ctldata(spi, cs); + initial_setup = true; } mpc8xxx_spi = spi_master_get_devdata(spi->master); @@ -477,6 +479,8 @@ retval = fsl_spi_setup_transfer(spi, NULL); if (retval < 0) { cs->hw_mode = hw_mode; /* Restore settings */ + if (initial_setup) + kfree(cs); return retval; } diff -u linux-azure-5.4.0/drivers/spi/spi-img-spfi.c linux-azure-5.4.0/drivers/spi/spi-img-spfi.c --- linux-azure-5.4.0/drivers/spi/spi-img-spfi.c +++ linux-azure-5.4.0/drivers/spi/spi-img-spfi.c @@ -771,7 +771,7 @@ int ret; ret = pm_runtime_get_sync(dev); - if (ret) { + if (ret < 0) { pm_runtime_put_noidle(dev); return ret; } diff -u linux-azure-5.4.0/drivers/spi/spi-loopback-test.c linux-azure-5.4.0/drivers/spi/spi-loopback-test.c --- linux-azure-5.4.0/drivers/spi/spi-loopback-test.c +++ linux-azure-5.4.0/drivers/spi/spi-loopback-test.c @@ -868,7 +868,7 @@ test.transfers[i].len = len; if (test.transfers[i].tx_buf) test.transfers[i].tx_buf += tx_off; - if (test.transfers[i].tx_buf) + if (test.transfers[i].rx_buf) test.transfers[i].rx_buf += rx_off; } diff -u linux-azure-5.4.0/drivers/spi/spi-mt65xx.c linux-azure-5.4.0/drivers/spi/spi-mt65xx.c --- linux-azure-5.4.0/drivers/spi/spi-mt65xx.c +++ linux-azure-5.4.0/drivers/spi/spi-mt65xx.c @@ -426,14 +426,15 @@ mtk_spi_prepare_transfer(master, xfer); mtk_spi_setup_packet(master); - cnt = xfer->len / 4; - iowrite32_rep(mdata->base + SPI_TX_DATA_REG, xfer->tx_buf, cnt); - - remainder = xfer->len % 4; - if (remainder > 0) { - reg_val = 0; - memcpy(®_val, xfer->tx_buf + (cnt * 4), remainder); - writel(reg_val, mdata->base + SPI_TX_DATA_REG); + if (xfer->tx_buf) { + cnt = xfer->len / 4; + iowrite32_rep(mdata->base + SPI_TX_DATA_REG, xfer->tx_buf, cnt); + remainder = xfer->len % 4; + if (remainder > 0) { + reg_val = 0; + memcpy(®_val, xfer->tx_buf + (cnt * 4), remainder); + writel(reg_val, mdata->base + SPI_TX_DATA_REG); + } } mtk_spi_enable_transfer(master); @@ -532,7 +533,7 @@ else mdata->state = MTK_SPI_IDLE; - if (!master->can_dma(master, master->cur_msg->spi, trans)) { + if (!master->can_dma(master, NULL, trans)) { if (trans->rx_buf) { cnt = mdata->xfer_len / 4; ioread32_rep(mdata->base + SPI_RX_DATA_REG, diff -u linux-azure-5.4.0/drivers/spi/spi-mxic.c linux-azure-5.4.0/drivers/spi/spi-mxic.c --- linux-azure-5.4.0/drivers/spi/spi-mxic.c +++ linux-azure-5.4.0/drivers/spi/spi-mxic.c @@ -304,25 +304,21 @@ writel(data, mxic->regs + TXD(nbytes % 4)); - if (rxbuf) { - ret = readl_poll_timeout(mxic->regs + INT_STS, sts, - sts & INT_TX_EMPTY, 0, - USEC_PER_SEC); - if (ret) - return ret; + ret = readl_poll_timeout(mxic->regs + INT_STS, sts, + sts & INT_TX_EMPTY, 0, USEC_PER_SEC); + if (ret) + return ret; - ret = readl_poll_timeout(mxic->regs + INT_STS, sts, - sts & INT_RX_NOT_EMPTY, 0, - USEC_PER_SEC); - if (ret) - return ret; + ret = readl_poll_timeout(mxic->regs + INT_STS, sts, + sts & INT_RX_NOT_EMPTY, 0, + USEC_PER_SEC); + if (ret) + return ret; - data = readl(mxic->regs + RXD); + data = readl(mxic->regs + RXD); + if (rxbuf) { data >>= (8 * (4 - nbytes)); memcpy(rxbuf + pos, &data, nbytes); - WARN_ON(readl(mxic->regs + INT_STS) & INT_RX_NOT_EMPTY); - } else { - readl(mxic->regs + RXD); } WARN_ON(readl(mxic->regs + INT_STS) & INT_RX_NOT_EMPTY); diff -u linux-azure-5.4.0/drivers/spi/spi-nxp-fspi.c linux-azure-5.4.0/drivers/spi/spi-nxp-fspi.c --- linux-azure-5.4.0/drivers/spi/spi-nxp-fspi.c +++ linux-azure-5.4.0/drivers/spi/spi-nxp-fspi.c @@ -975,12 +975,6 @@ goto err_put_ctrl; } - /* Clear potential interrupts */ - reg = fspi_readl(f, f->iobase + FSPI_INTR); - if (reg) - fspi_writel(f, reg, f->iobase + FSPI_INTR); - - /* find the resources - controller memory mapped space */ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "fspi_mmap"); f->ahb_addr = devm_ioremap_resource(dev, res); @@ -1012,6 +1006,11 @@ goto err_put_ctrl; } + /* Clear potential interrupts */ + reg = fspi_readl(f, f->iobase + FSPI_INTR); + if (reg) + fspi_writel(f, reg, f->iobase + FSPI_INTR); + /* find the irq */ ret = platform_get_irq(pdev, 0); if (ret < 0) diff -u linux-azure-5.4.0/drivers/spi/spi-omap-100k.c linux-azure-5.4.0/drivers/spi/spi-omap-100k.c --- linux-azure-5.4.0/drivers/spi/spi-omap-100k.c +++ linux-azure-5.4.0/drivers/spi/spi-omap-100k.c @@ -242,7 +242,7 @@ else word_len = spi->bits_per_word; - if (spi->bits_per_word > 32) + if (word_len > 32) return -EINVAL; cs->word_len = word_len; @@ -416,6 +416,7 @@ return status; err_fck: + pm_runtime_disable(&pdev->dev); clk_disable_unprepare(spi100k->fck); err_ick: clk_disable_unprepare(spi100k->ick); diff -u linux-azure-5.4.0/drivers/spi/spi-omap2-mcspi.c linux-azure-5.4.0/drivers/spi/spi-omap2-mcspi.c --- linux-azure-5.4.0/drivers/spi/spi-omap2-mcspi.c +++ linux-azure-5.4.0/drivers/spi/spi-omap2-mcspi.c @@ -1043,8 +1043,25 @@ } } +static void omap2_mcspi_cleanup(struct spi_device *spi) +{ + struct omap2_mcspi_cs *cs; + + if (spi->controller_state) { + /* Unlink controller state from context save list */ + cs = spi->controller_state; + list_del(&cs->node); + + kfree(cs); + } + + if (gpio_is_valid(spi->cs_gpio)) + gpio_free(spi->cs_gpio); +} + static int omap2_mcspi_setup(struct spi_device *spi) { + bool initial_setup = false; int ret; struct omap2_mcspi *mcspi = spi_master_get_devdata(spi->master); struct omap2_mcspi_regs *ctx = &mcspi->ctx; @@ -1062,6 +1079,7 @@ spi->controller_state = cs; /* Link this to context save list */ list_add_tail(&cs->node, &ctx->cs); + initial_setup = true; if (gpio_is_valid(spi->cs_gpio)) { ret = gpio_request(spi->cs_gpio, dev_name(&spi->dev)); @@ -1077,33 +1095,22 @@ ret = pm_runtime_get_sync(mcspi->dev); if (ret < 0) { pm_runtime_put_noidle(mcspi->dev); + if (initial_setup) + omap2_mcspi_cleanup(spi); return ret; } ret = omap2_mcspi_setup_transfer(spi, NULL); + if (ret && initial_setup) + omap2_mcspi_cleanup(spi); + pm_runtime_mark_last_busy(mcspi->dev); pm_runtime_put_autosuspend(mcspi->dev); return ret; } -static void omap2_mcspi_cleanup(struct spi_device *spi) -{ - struct omap2_mcspi_cs *cs; - - if (spi->controller_state) { - /* Unlink controller state from context save list */ - cs = spi->controller_state; - list_del(&cs->node); - - kfree(cs); - } - - if (gpio_is_valid(spi->cs_gpio)) - gpio_free(spi->cs_gpio); -} - static irqreturn_t omap2_mcspi_irq_handler(int irq, void *data) { struct omap2_mcspi *mcspi = data; diff -u linux-azure-5.4.0/drivers/spi/spi-pic32.c linux-azure-5.4.0/drivers/spi/spi-pic32.c --- linux-azure-5.4.0/drivers/spi/spi-pic32.c +++ linux-azure-5.4.0/drivers/spi/spi-pic32.c @@ -361,6 +361,7 @@ struct dma_slave_config cfg; int ret; + memset(&cfg, 0, sizeof(cfg)); cfg.device_fc = true; cfg.src_addr = pic32s->dma_base + buf_offset; cfg.dst_addr = pic32s->dma_base + buf_offset; diff -u linux-azure-5.4.0/drivers/spi/spi-pxa2xx-pci.c linux-azure-5.4.0/drivers/spi/spi-pxa2xx-pci.c --- linux-azure-5.4.0/drivers/spi/spi-pxa2xx-pci.c +++ linux-azure-5.4.0/drivers/spi/spi-pxa2xx-pci.c @@ -74,14 +74,23 @@ return true; } +static void lpss_dma_put_device(void *dma_dev) +{ + pci_dev_put(dma_dev); +} + static int lpss_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c) { struct pci_dev *dma_dev; + int ret; c->num_chipselect = 1; c->max_clk_rate = 50000000; dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(PCI_SLOT(dev->devfn), 0)); + ret = devm_add_action_or_reset(&dev->dev, lpss_dma_put_device, dma_dev); + if (ret) + return ret; if (c->tx_param) { struct dw_dma_slave *slave = c->tx_param; @@ -105,8 +114,9 @@ static int mrfld_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c) { - struct pci_dev *dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(21, 0)); struct dw_dma_slave *tx, *rx; + struct pci_dev *dma_dev; + int ret; switch (PCI_FUNC(dev->devfn)) { case 0: @@ -131,6 +141,11 @@ return -ENODEV; } + dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(21, 0)); + ret = devm_add_action_or_reset(&dev->dev, lpss_dma_put_device, dma_dev); + if (ret) + return ret; + tx = c->tx_param; tx->dma_dev = &dma_dev->dev; diff -u linux-azure-5.4.0/drivers/spi/spi-pxa2xx.c linux-azure-5.4.0/drivers/spi/spi-pxa2xx.c --- linux-azure-5.4.0/drivers/spi/spi-pxa2xx.c +++ linux-azure-5.4.0/drivers/spi/spi-pxa2xx.c @@ -1241,6 +1241,8 @@ chip->gpio_cs_inverted = spi->mode & SPI_CS_HIGH; err = gpiod_direction_output(gpiod, !chip->gpio_cs_inverted); + if (err) + gpiod_put(chip->gpiod_cs); } return err; @@ -1254,6 +1256,7 @@ struct driver_data *drv_data = spi_controller_get_devdata(spi->controller); uint tx_thres, tx_hi_thres, rx_thres; + int err; switch (drv_data->ssp_type) { case QUARK_X1000_SSP: @@ -1400,7 +1403,11 @@ if (drv_data->ssp_type == CE4100_SSP) return 0; - return setup_cs(spi, chip, chip_info); + err = setup_cs(spi, chip, chip_info); + if (err) + kfree(chip); + + return err; } static void cleanup(struct spi_device *spi) diff -u linux-azure-5.4.0/drivers/spi/spi-qup.c linux-azure-5.4.0/drivers/spi/spi-qup.c --- linux-azure-5.4.0/drivers/spi/spi-qup.c +++ linux-azure-5.4.0/drivers/spi/spi-qup.c @@ -1199,8 +1199,10 @@ return ret; ret = clk_prepare_enable(controller->cclk); - if (ret) + if (ret) { + clk_disable_unprepare(controller->iclk); return ret; + } /* Disable clocks auto gaiting */ config = readl_relaxed(controller->base + QUP_CONFIG); @@ -1246,14 +1248,25 @@ return ret; ret = clk_prepare_enable(controller->cclk); - if (ret) + if (ret) { + clk_disable_unprepare(controller->iclk); return ret; + } ret = spi_qup_set_state(controller, QUP_STATE_RESET); if (ret) - return ret; + goto disable_clk; - return spi_master_resume(master); + ret = spi_master_resume(master); + if (ret) + goto disable_clk; + + return 0; + +disable_clk: + clk_disable_unprepare(controller->cclk); + clk_disable_unprepare(controller->iclk); + return ret; } #endif /* CONFIG_PM_SLEEP */ diff -u linux-azure-5.4.0/drivers/spi/spi-rspi.c linux-azure-5.4.0/drivers/spi/spi-rspi.c --- linux-azure-5.4.0/drivers/spi/spi-rspi.c +++ linux-azure-5.4.0/drivers/spi/spi-rspi.c @@ -595,6 +595,10 @@ rspi->dma_callbacked, HZ); if (ret > 0 && rspi->dma_callbacked) { ret = 0; + if (tx) + dmaengine_synchronize(rspi->ctlr->dma_tx); + if (rx) + dmaengine_synchronize(rspi->ctlr->dma_rx); } else { if (!ret) { dev_err(&rspi->ctlr->dev, "DMA timeout\n"); @@ -1044,14 +1048,11 @@ } memset(&cfg, 0, sizeof(cfg)); + cfg.dst_addr = port_addr + RSPI_SPDR; + cfg.src_addr = port_addr + RSPI_SPDR; + cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; + cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; cfg.direction = dir; - if (dir == DMA_MEM_TO_DEV) { - cfg.dst_addr = port_addr; - cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; - } else { - cfg.src_addr = port_addr; - cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; - } ret = dmaengine_slave_config(chan, &cfg); if (ret) { @@ -1082,12 +1083,12 @@ } ctlr->dma_tx = rspi_request_dma_chan(dev, DMA_MEM_TO_DEV, dma_tx_id, - res->start + RSPI_SPDR); + res->start); if (!ctlr->dma_tx) return -ENODEV; ctlr->dma_rx = rspi_request_dma_chan(dev, DMA_DEV_TO_MEM, dma_rx_id, - res->start + RSPI_SPDR); + res->start); if (!ctlr->dma_rx) { dma_release_channel(ctlr->dma_tx); ctlr->dma_tx = NULL; diff -u linux-azure-5.4.0/drivers/spi/spi-s3c64xx.c linux-azure-5.4.0/drivers/spi/spi-s3c64xx.c --- linux-azure-5.4.0/drivers/spi/spi-s3c64xx.c +++ linux-azure-5.4.0/drivers/spi/spi-s3c64xx.c @@ -84,6 +84,7 @@ #define S3C64XX_SPI_ST_TX_FIFORDY (1<<0) #define S3C64XX_SPI_PACKET_CNT_EN (1<<16) +#define S3C64XX_SPI_PACKET_CNT_MASK GENMASK(15, 0) #define S3C64XX_SPI_PND_TX_UNDERRUN_CLR (1<<4) #define S3C64XX_SPI_PND_TX_OVERRUN_CLR (1<<3) @@ -654,6 +655,13 @@ return 0; } +static size_t s3c64xx_spi_max_transfer_size(struct spi_device *spi) +{ + struct spi_controller *ctlr = spi->controller; + + return ctlr->can_dma ? S3C64XX_SPI_PACKET_CNT_MASK : SIZE_MAX; +} + static int s3c64xx_spi_transfer_one(struct spi_master *master, struct spi_device *spi, struct spi_transfer *xfer) @@ -1118,6 +1126,7 @@ master->prepare_transfer_hardware = s3c64xx_spi_prepare_transfer; master->prepare_message = s3c64xx_spi_prepare_message; master->transfer_one = s3c64xx_spi_transfer_one; + master->max_transfer_size = s3c64xx_spi_max_transfer_size; master->num_chipselect = sci->num_cs; master->dma_alignment = 8; master->bits_per_word_mask = SPI_BPW_MASK(32) | SPI_BPW_MASK(16) | diff -u linux-azure-5.4.0/drivers/spi/spi-sprd-adi.c linux-azure-5.4.0/drivers/spi/spi-sprd-adi.c --- linux-azure-5.4.0/drivers/spi/spi-sprd-adi.c +++ linux-azure-5.4.0/drivers/spi/spi-sprd-adi.c @@ -102,7 +102,7 @@ #define HWRST_STATUS_WATCHDOG 0xf0 /* Use default timeout 50 ms that converts to watchdog values */ -#define WDG_LOAD_VAL ((50 * 1000) / 32768) +#define WDG_LOAD_VAL ((50 * 32768) / 1000) #define WDG_LOAD_MASK GENMASK(15, 0) #define WDG_UNLOCK_KEY 0xe551 diff -u linux-azure-5.4.0/drivers/spi/spi-sprd.c linux-azure-5.4.0/drivers/spi/spi-sprd.c --- linux-azure-5.4.0/drivers/spi/spi-sprd.c +++ linux-azure-5.4.0/drivers/spi/spi-sprd.c @@ -1066,6 +1066,7 @@ { .compatible = "sprd,sc9860-spi", }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, sprd_spi_of_match); static struct platform_driver sprd_spi_driver = { .driver = { diff -u linux-azure-5.4.0/drivers/spi/spi-stm32-qspi.c linux-azure-5.4.0/drivers/spi/spi-stm32-qspi.c --- linux-azure-5.4.0/drivers/spi/spi-stm32-qspi.c +++ linux-azure-5.4.0/drivers/spi/spi-stm32-qspi.c @@ -291,9 +291,10 @@ int err = 0; if (!op->data.nbytes) - return stm32_qspi_wait_nobusy(qspi); + goto wait_nobusy; - if (readl_relaxed(qspi->io_base + QSPI_SR) & SR_TCF) + if ((readl_relaxed(qspi->io_base + QSPI_SR) & SR_TCF) || + qspi->fmode == CCR_FMODE_APM) goto out; reinit_completion(&qspi->data_completion); @@ -312,6 +313,9 @@ out: /* clear flags */ writel_relaxed(FCR_CTCF | FCR_CTEF, qspi->io_base + QSPI_FCR); +wait_nobusy: + if (!err) + err = stm32_qspi_wait_nobusy(qspi); return err; } diff -u linux-azure-5.4.0/drivers/spi/spi-stm32.c linux-azure-5.4.0/drivers/spi/spi-stm32.c --- linux-azure-5.4.0/drivers/spi/spi-stm32.c +++ linux-azure-5.4.0/drivers/spi/spi-stm32.c @@ -913,15 +913,18 @@ ier = readl_relaxed(spi->base + STM32H7_SPI_IER); mask = ier; - /* EOTIE is triggered on EOT, SUSP and TXC events. */ + /* + * EOTIE enables irq from EOT, SUSP and TXC events. We need to set + * SUSP to acknowledge it later. TXC is automatically cleared + */ + mask |= STM32H7_SPI_SR_SUSP; /* - * When TXTF is set, DXPIE and TXPIE are cleared. So in case of - * Full-Duplex, need to poll RXP event to know if there are remaining - * data, before disabling SPI. + * DXPIE is set in Full-Duplex, one IT will be raised if TXP and RXP + * are set. So in case of Full-Duplex, need to poll TXP and RXP event. */ - if (spi->rx_buf && !spi->cur_usedma) - mask |= STM32H7_SPI_SR_RXP; + if ((spi->cur_comm == SPI_FULL_DUPLEX) && !spi->cur_usedma) + mask |= STM32H7_SPI_SR_TXP | STM32H7_SPI_SR_RXP; if (!(sr & mask)) { dev_warn(spi->dev, "spurious IT (sr=0x%08x, ier=0x%08x)\n", @@ -1908,35 +1911,48 @@ master->transfer_one = stm32_spi_transfer_one; master->unprepare_message = stm32_spi_unprepare_msg; - spi->dma_tx = dma_request_slave_channel(spi->dev, "tx"); - if (!spi->dma_tx) + spi->dma_tx = dma_request_chan(spi->dev, "tx"); + if (IS_ERR(spi->dma_tx)) { + ret = PTR_ERR(spi->dma_tx); + spi->dma_tx = NULL; + if (ret == -EPROBE_DEFER) + goto err_clk_disable; + dev_warn(&pdev->dev, "failed to request tx dma channel\n"); - else + } else { master->dma_tx = spi->dma_tx; + } + + spi->dma_rx = dma_request_chan(spi->dev, "rx"); + if (IS_ERR(spi->dma_rx)) { + ret = PTR_ERR(spi->dma_rx); + spi->dma_rx = NULL; + if (ret == -EPROBE_DEFER) + goto err_dma_release; - spi->dma_rx = dma_request_slave_channel(spi->dev, "rx"); - if (!spi->dma_rx) dev_warn(&pdev->dev, "failed to request rx dma channel\n"); - else + } else { master->dma_rx = spi->dma_rx; + } if (spi->dma_tx || spi->dma_rx) master->can_dma = stm32_spi_can_dma; pm_runtime_set_active(&pdev->dev); + pm_runtime_get_noresume(&pdev->dev); pm_runtime_enable(&pdev->dev); ret = spi_register_master(master); if (ret) { dev_err(&pdev->dev, "spi master registration failed: %d\n", ret); - goto err_dma_release; + goto err_pm_disable; } if (!master->cs_gpios) { dev_err(&pdev->dev, "no CS gpios available\n"); ret = -EINVAL; - goto err_dma_release; + goto err_pm_disable; } for (i = 0; i < master->num_chipselect; i++) { @@ -1960,13 +1976,15 @@ return 0; +err_pm_disable: + pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); err_dma_release: if (spi->dma_tx) dma_release_channel(spi->dma_tx); if (spi->dma_rx) dma_release_channel(spi->dma_rx); - - pm_runtime_disable(&pdev->dev); err_clk_disable: clk_disable_unprepare(spi->clk); err_master_put: @@ -1980,9 +1998,14 @@ struct spi_master *master = platform_get_drvdata(pdev); struct stm32_spi *spi = spi_master_get_devdata(master); + pm_runtime_get_sync(&pdev->dev); + spi_unregister_master(master); spi->cfg->disable(spi); + pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); if (master->dma_tx) dma_release_channel(master->dma_tx); if (master->dma_rx) @@ -1990,7 +2013,6 @@ clk_disable_unprepare(spi->clk); - pm_runtime_disable(&pdev->dev); pinctrl_pm_select_sleep_state(&pdev->dev); diff -u linux-azure-5.4.0/drivers/spi/spi-sun6i.c linux-azure-5.4.0/drivers/spi/spi-sun6i.c --- linux-azure-5.4.0/drivers/spi/spi-sun6i.c +++ linux-azure-5.4.0/drivers/spi/spi-sun6i.c @@ -297,6 +297,10 @@ } sun6i_spi_write(sspi, SUN6I_CLK_CTL_REG, reg); + /* Finally enable the bus - doing so before might raise SCK to HIGH */ + reg = sun6i_spi_read(sspi, SUN6I_GBL_CTL_REG); + reg |= SUN6I_GBL_CTL_BUS_ENABLE; + sun6i_spi_write(sspi, SUN6I_GBL_CTL_REG, reg); /* Setup the transfer now... */ if (sspi->tx_buf) @@ -405,7 +409,7 @@ } sun6i_spi_write(sspi, SUN6I_GBL_CTL_REG, - SUN6I_GBL_CTL_BUS_ENABLE | SUN6I_GBL_CTL_MASTER | SUN6I_GBL_CTL_TP); + SUN6I_GBL_CTL_MASTER | SUN6I_GBL_CTL_TP); return 0; diff -u linux-azure-5.4.0/drivers/spi/spi-synquacer.c linux-azure-5.4.0/drivers/spi/spi-synquacer.c --- linux-azure-5.4.0/drivers/spi/spi-synquacer.c +++ linux-azure-5.4.0/drivers/spi/spi-synquacer.c @@ -784,6 +784,7 @@ ret = synquacer_spi_enable(master); if (ret) { + clk_disable_unprepare(sspi->clk); dev_err(dev, "failed to enable spi (%d)\n", ret); return ret; } diff -u linux-azure-5.4.0/drivers/spi/spi-tegra114.c linux-azure-5.4.0/drivers/spi/spi-tegra114.c --- linux-azure-5.4.0/drivers/spi/spi-tegra114.c +++ linux-azure-5.4.0/drivers/spi/spi-tegra114.c @@ -1352,6 +1352,10 @@ tspi->phys = r->start; spi_irq = platform_get_irq(pdev, 0); + if (spi_irq < 0) { + ret = spi_irq; + goto exit_free_master; + } tspi->irq = spi_irq; tspi->clk = devm_clk_get(&pdev->dev, "spi"); diff -u linux-azure-5.4.0/drivers/spi/spi-tegra20-slink.c linux-azure-5.4.0/drivers/spi/spi-tegra20-slink.c --- linux-azure-5.4.0/drivers/spi/spi-tegra20-slink.c +++ linux-azure-5.4.0/drivers/spi/spi-tegra20-slink.c @@ -1011,14 +1011,8 @@ struct resource *r; int ret, spi_irq; const struct tegra_slink_chip_data *cdata = NULL; - const struct of_device_id *match; - match = of_match_device(tegra_slink_of_match, &pdev->dev); - if (!match) { - dev_err(&pdev->dev, "Error: No device match found\n"); - return -ENODEV; - } - cdata = match->data; + cdata = of_device_get_match_data(&pdev->dev); master = spi_alloc_master(&pdev->dev, sizeof(*tspi)); if (!master) { @@ -1205,7 +1199,7 @@ } #endif -static int tegra_slink_runtime_suspend(struct device *dev) +static int __maybe_unused tegra_slink_runtime_suspend(struct device *dev) { struct spi_master *master = dev_get_drvdata(dev); struct tegra_slink_data *tspi = spi_master_get_devdata(master); @@ -1217,7 +1211,7 @@ return 0; } -static int tegra_slink_runtime_resume(struct device *dev) +static int __maybe_unused tegra_slink_runtime_resume(struct device *dev) { struct spi_master *master = dev_get_drvdata(dev); struct tegra_slink_data *tspi = spi_master_get_devdata(master); diff -u linux-azure-5.4.0/drivers/spi/spi-ti-qspi.c linux-azure-5.4.0/drivers/spi/spi-ti-qspi.c --- linux-azure-5.4.0/drivers/spi/spi-ti-qspi.c +++ linux-azure-5.4.0/drivers/spi/spi-ti-qspi.c @@ -401,6 +401,7 @@ enum dma_ctrl_flags flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT; struct dma_async_tx_descriptor *tx; int ret; + unsigned long time_left; tx = dmaengine_prep_dma_memcpy(chan, dma_dst, dma_src, len, flags); if (!tx) { @@ -420,9 +421,9 @@ } dma_async_issue_pending(chan); - ret = wait_for_completion_timeout(&qspi->transfer_complete, + time_left = wait_for_completion_timeout(&qspi->transfer_complete, msecs_to_jiffies(len)); - if (ret <= 0) { + if (time_left == 0) { dmaengine_terminate_sync(chan); dev_err(qspi->dev, "DMA wait_for_completion_timeout\n"); return -ETIMEDOUT; diff -u linux-azure-5.4.0/drivers/spi/spi.c linux-azure-5.4.0/drivers/spi/spi.c --- linux-azure-5.4.0/drivers/spi/spi.c +++ linux-azure-5.4.0/drivers/spi/spi.c @@ -47,10 +47,6 @@ { struct spi_device *spi = to_spi_device(dev); - /* spi controllers may cleanup for released devices */ - if (spi->controller->cleanup) - spi->controller->cleanup(spi); - spi_controller_put(spi->controller); kfree(spi->driver_override); kfree(spi); @@ -550,6 +546,12 @@ return 0; } +static void spi_cleanup(struct spi_device *spi) +{ + if (spi->controller->cleanup) + spi->controller->cleanup(spi); +} + /** * spi_add_device - Add spi_device allocated with spi_alloc_device * @spi: spi_device to register @@ -614,11 +616,13 @@ /* Device may be bound to an active driver when this returns */ status = device_add(&spi->dev); - if (status < 0) + if (status < 0) { dev_err(dev, "can't add %s, status %d\n", dev_name(&spi->dev), status); - else + spi_cleanup(spi); + } else { dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev)); + } done: mutex_unlock(&spi_add_lock); @@ -711,7 +715,9 @@ } if (ACPI_COMPANION(&spi->dev)) acpi_device_clear_enumerated(ACPI_COMPANION(&spi->dev)); - device_unregister(&spi->dev); + device_del(&spi->dev); + spi_cleanup(spi); + put_device(&spi->dev); } EXPORT_SYMBOL_GPL(spi_unregister_device); @@ -839,10 +845,10 @@ int i, ret; if (vmalloced_buf || kmap_buf) { - desc_len = min_t(int, max_seg_size, PAGE_SIZE); + desc_len = min_t(unsigned long, max_seg_size, PAGE_SIZE); sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len); } else if (virt_addr_valid(buf)) { - desc_len = min_t(int, max_seg_size, ctlr->max_dma_len); + desc_len = min_t(size_t, max_seg_size, ctlr->max_dma_len); sgs = DIV_ROUND_UP(len, desc_len); } else { return -EINVAL; @@ -1844,6 +1850,7 @@ /* Store a pointer to the node in the device structure */ of_node_get(nc); spi->dev.of_node = nc; + spi->dev.fwnode = of_fwnode_handle(nc); /* Register the new device */ rc = spi_add_device(spi); diff -u linux-azure-5.4.0/drivers/spmi/spmi-pmic-arb.c linux-azure-5.4.0/drivers/spmi/spmi-pmic-arb.c --- linux-azure-5.4.0/drivers/spmi/spmi-pmic-arb.c +++ linux-azure-5.4.0/drivers/spmi/spmi-pmic-arb.c @@ -887,7 +887,8 @@ * version 5, there is more than one APID mapped to each PPID. * The owner field for each of these mappings specifies the EE which is * allowed to write to the APID. The owner of the last (highest) APID - * for a given PPID will receive interrupts from the PPID. + * which has the IRQ owner bit set for a given PPID will receive + * interrupts from the PPID. */ for (i = 0; ; i++, apidd++) { offset = pmic_arb->ver_ops->apid_map_offset(i); @@ -910,16 +911,16 @@ apid = pmic_arb->ppid_to_apid[ppid] & ~PMIC_ARB_APID_VALID; prev_apidd = &pmic_arb->apid_data[apid]; - if (valid && is_irq_ee && - prev_apidd->write_ee == pmic_arb->ee) { + if (!valid || apidd->write_ee == pmic_arb->ee) { + /* First PPID mapping or one for this EE */ + pmic_arb->ppid_to_apid[ppid] = i | PMIC_ARB_APID_VALID; + } else if (valid && is_irq_ee && + prev_apidd->write_ee == pmic_arb->ee) { /* * Duplicate PPID mapping after the one for this EE; * override the irq owner */ prev_apidd->irq_ee = apidd->irq_ee; - } else if (!valid || is_irq_ee) { - /* First PPID mapping or duplicate for another EE */ - pmic_arb->ppid_to_apid[ppid] = i | PMIC_ARB_APID_VALID; } apidd->ppid = ppid; diff -u linux-azure-5.4.0/drivers/staging/comedi/drivers/vmk80xx.c linux-azure-5.4.0/drivers/staging/comedi/drivers/vmk80xx.c --- linux-azure-5.4.0/drivers/staging/comedi/drivers/vmk80xx.c +++ linux-azure-5.4.0/drivers/staging/comedi/drivers/vmk80xx.c @@ -90,6 +90,9 @@ #define IC3_VERSION BIT(0) #define IC6_VERSION BIT(1) +#define MIN_BUF_SIZE 64 +#define PACKET_TIMEOUT 10000 /* ms */ + enum vmk80xx_model { VMK8055_MODEL, VMK8061_MODEL @@ -157,22 +160,21 @@ __u8 rx_addr; unsigned int tx_pipe; unsigned int rx_pipe; - size_t size; + size_t tx_size; + size_t rx_size; tx_addr = devpriv->ep_tx->bEndpointAddress; rx_addr = devpriv->ep_rx->bEndpointAddress; tx_pipe = usb_sndbulkpipe(usb, tx_addr); rx_pipe = usb_rcvbulkpipe(usb, rx_addr); + tx_size = usb_endpoint_maxp(devpriv->ep_tx); + rx_size = usb_endpoint_maxp(devpriv->ep_rx); + + usb_bulk_msg(usb, tx_pipe, devpriv->usb_tx_buf, tx_size, NULL, + PACKET_TIMEOUT); - /* - * The max packet size attributes of the K8061 - * input/output endpoints are identical - */ - size = usb_endpoint_maxp(devpriv->ep_tx); - - usb_bulk_msg(usb, tx_pipe, devpriv->usb_tx_buf, - size, NULL, devpriv->ep_tx->bInterval); - usb_bulk_msg(usb, rx_pipe, devpriv->usb_rx_buf, size, NULL, HZ * 10); + usb_bulk_msg(usb, rx_pipe, devpriv->usb_rx_buf, rx_size, NULL, + PACKET_TIMEOUT); } static int vmk80xx_read_packet(struct comedi_device *dev) @@ -191,7 +193,7 @@ pipe = usb_rcvintpipe(usb, ep->bEndpointAddress); return usb_interrupt_msg(usb, pipe, devpriv->usb_rx_buf, usb_endpoint_maxp(ep), NULL, - HZ * 10); + PACKET_TIMEOUT); } static int vmk80xx_write_packet(struct comedi_device *dev, int cmd) @@ -212,7 +214,7 @@ pipe = usb_sndintpipe(usb, ep->bEndpointAddress); return usb_interrupt_msg(usb, pipe, devpriv->usb_tx_buf, usb_endpoint_maxp(ep), NULL, - HZ * 10); + PACKET_TIMEOUT); } static int vmk80xx_reset_device(struct comedi_device *dev) @@ -678,12 +680,12 @@ struct vmk80xx_private *devpriv = dev->private; size_t size; - size = usb_endpoint_maxp(devpriv->ep_rx); + size = max(usb_endpoint_maxp(devpriv->ep_rx), MIN_BUF_SIZE); devpriv->usb_rx_buf = kzalloc(size, GFP_KERNEL); if (!devpriv->usb_rx_buf) return -ENOMEM; - size = usb_endpoint_maxp(devpriv->ep_tx); + size = max(usb_endpoint_maxp(devpriv->ep_tx), MIN_BUF_SIZE); devpriv->usb_tx_buf = kzalloc(size, GFP_KERNEL); if (!devpriv->usb_tx_buf) return -ENOMEM; diff -u linux-azure-5.4.0/drivers/staging/fbtft/fbtft-core.c linux-azure-5.4.0/drivers/staging/fbtft/fbtft-core.c --- linux-azure-5.4.0/drivers/staging/fbtft/fbtft-core.c +++ linux-azure-5.4.0/drivers/staging/fbtft/fbtft-core.c @@ -37,8 +37,7 @@ { int ret; - if (par->gpio.dc) - gpiod_set_value(par->gpio.dc, dc); + gpiod_set_value(par->gpio.dc, dc); ret = par->fbtftops.write(par, buf, len); if (ret < 0) @@ -79,7 +78,7 @@ int ret = 0; *gpiop = devm_gpiod_get_index_optional(dev, name, index, - GPIOD_OUT_HIGH); + GPIOD_OUT_LOW); if (IS_ERR(*gpiop)) { ret = PTR_ERR(*gpiop); dev_err(dev, @@ -137,7 +136,6 @@ } #endif -#ifdef CONFIG_FB_BACKLIGHT static int fbtft_backlight_update_status(struct backlight_device *bd) { struct fbtft_par *par = bl_get_data(bd); @@ -170,6 +168,7 @@ par->info->bl_dev = NULL; } } +EXPORT_SYMBOL(fbtft_unregister_backlight); static const struct backlight_ops fbtft_bl_ops = { .get_brightness = fbtft_backlight_get_brightness, @@ -207,12 +206,7 @@ if (!par->fbtftops.unregister_backlight) par->fbtftops.unregister_backlight = fbtft_unregister_backlight; } -#else -void fbtft_register_backlight(struct fbtft_par *par) { }; -void fbtft_unregister_backlight(struct fbtft_par *par) { }; -#endif EXPORT_SYMBOL(fbtft_register_backlight); -EXPORT_SYMBOL(fbtft_unregister_backlight); static void fbtft_set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) @@ -230,11 +224,15 @@ { if (!par->gpio.reset) return; + fbtft_par_dbg(DEBUG_RESET, par, "%s()\n", __func__); + gpiod_set_value_cansleep(par->gpio.reset, 1); usleep_range(20, 40); gpiod_set_value_cansleep(par->gpio.reset, 0); msleep(120); + + gpiod_set_value_cansleep(par->gpio.cs, 1); /* Activate chip */ } static void fbtft_update_display(struct fbtft_par *par, unsigned int start_line, @@ -857,13 +855,11 @@ fb_info->fix.smem_len >> 10, text1, HZ / fb_info->fbdefio->delay, text2); -#ifdef CONFIG_FB_BACKLIGHT /* Turn on backlight if available */ if (fb_info->bl_dev) { fb_info->bl_dev->props.power = FB_BLANK_UNBLANK; fb_info->bl_dev->ops->update_status(fb_info->bl_dev); } -#endif return 0; @@ -921,8 +917,6 @@ return -EINVAL; par->fbtftops.reset(par); - if (par->gpio.cs) - gpiod_set_value(par->gpio.cs, 0); /* Activate chip */ while (p) { if (val & FBTFT_OF_INIT_CMD) { @@ -1012,8 +1006,6 @@ } par->fbtftops.reset(par); - if (par->gpio.cs) - gpiod_set_value(par->gpio.cs, 0); /* Activate chip */ i = 0; while (i < FBTFT_MAX_INIT_SEQUENCE) { diff -u linux-azure-5.4.0/drivers/staging/greybus/audio_codec.c linux-azure-5.4.0/drivers/staging/greybus/audio_codec.c --- linux-azure-5.4.0/drivers/staging/greybus/audio_codec.c +++ linux-azure-5.4.0/drivers/staging/greybus/audio_codec.c @@ -620,8 +620,8 @@ break; } if (!data) { - dev_err(dai->dev, "%s:%s DATA connection missing\n", - dai->name, module->name); + dev_err(dai->dev, "%s DATA connection missing\n", + dai->name); mutex_unlock(&codec->lock); return -ENODEV; } diff -u linux-azure-5.4.0/drivers/staging/greybus/audio_topology.c linux-azure-5.4.0/drivers/staging/greybus/audio_topology.c --- linux-azure-5.4.0/drivers/staging/greybus/audio_topology.c +++ linux-azure-5.4.0/drivers/staging/greybus/audio_topology.c @@ -145,6 +145,9 @@ items = le32_to_cpu(gbenum->items); strings = devm_kcalloc(gb->dev, items, sizeof(char *), GFP_KERNEL); + if (!strings) + return NULL; + data = gbenum->names; for (i = 0; i < items; i++) { @@ -662,6 +665,8 @@ /* since count=1, and reg is dummy */ gbe->max = le32_to_cpu(gb_enum->items); gbe->texts = gb_generate_enum_strings(gb, gb_enum); + if (!gbe->texts) + return -ENOMEM; /* debug enum info */ dev_dbg(gb->dev, "Max:%d, name_length:%d\n", gbe->max, @@ -871,6 +876,8 @@ /* since count=1, and reg is dummy */ gbe->max = le32_to_cpu(gb_enum->items); gbe->texts = gb_generate_enum_strings(gb, gb_enum); + if (!gbe->texts) + return -ENOMEM; /* debug enum info */ dev_dbg(gb->dev, "Max:%d, name_length:%d\n", gbe->max, @@ -983,6 +990,44 @@ return ret; } +static const struct snd_soc_dapm_widget gbaudio_widgets[] = { + [snd_soc_dapm_spk] = SND_SOC_DAPM_SPK(NULL, gbcodec_event_spk), + [snd_soc_dapm_hp] = SND_SOC_DAPM_HP(NULL, gbcodec_event_hp), + [snd_soc_dapm_mic] = SND_SOC_DAPM_MIC(NULL, gbcodec_event_int_mic), + [snd_soc_dapm_output] = SND_SOC_DAPM_OUTPUT(NULL), + [snd_soc_dapm_input] = SND_SOC_DAPM_INPUT(NULL), + [snd_soc_dapm_switch] = SND_SOC_DAPM_SWITCH_E(NULL, SND_SOC_NOPM, + 0, 0, NULL, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), + [snd_soc_dapm_pga] = SND_SOC_DAPM_PGA_E(NULL, SND_SOC_NOPM, + 0, 0, NULL, 0, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), + [snd_soc_dapm_mixer] = SND_SOC_DAPM_MIXER_E(NULL, SND_SOC_NOPM, + 0, 0, NULL, 0, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), + [snd_soc_dapm_mux] = SND_SOC_DAPM_MUX_E(NULL, SND_SOC_NOPM, + 0, 0, NULL, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), + [snd_soc_dapm_aif_in] = SND_SOC_DAPM_AIF_IN_E(NULL, NULL, 0, + SND_SOC_NOPM, 0, 0, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), + [snd_soc_dapm_aif_out] = SND_SOC_DAPM_AIF_OUT_E(NULL, NULL, 0, + SND_SOC_NOPM, 0, 0, + gbaudio_widget_event, + SND_SOC_DAPM_PRE_PMU | + SND_SOC_DAPM_POST_PMD), +}; + static int gbaudio_tplg_create_widget(struct gbaudio_module_info *module, struct snd_soc_dapm_widget *dw, struct gb_audio_widget *w, int *w_size) @@ -1043,6 +1088,10 @@ csize += le16_to_cpu(gbenum->names_length); control->texts = (const char * const *) gb_generate_enum_strings(module, gbenum); + if (!control->texts) { + ret = -ENOMEM; + goto error; + } control->items = le32_to_cpu(gbenum->items); } else { csize = sizeof(struct gb_audio_control); @@ -1061,77 +1110,37 @@ switch (w->type) { case snd_soc_dapm_spk: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_SPK(w->name, gbcodec_event_spk); + *dw = gbaudio_widgets[w->type]; module->op_devices |= GBAUDIO_DEVICE_OUT_SPEAKER; break; case snd_soc_dapm_hp: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_HP(w->name, gbcodec_event_hp); + *dw = gbaudio_widgets[w->type]; module->op_devices |= (GBAUDIO_DEVICE_OUT_WIRED_HEADSET | GBAUDIO_DEVICE_OUT_WIRED_HEADPHONE); module->ip_devices |= GBAUDIO_DEVICE_IN_WIRED_HEADSET; break; case snd_soc_dapm_mic: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_MIC(w->name, gbcodec_event_int_mic); + *dw = gbaudio_widgets[w->type]; module->ip_devices |= GBAUDIO_DEVICE_IN_BUILTIN_MIC; break; case snd_soc_dapm_output: - *dw = (struct snd_soc_dapm_widget)SND_SOC_DAPM_OUTPUT(w->name); - break; case snd_soc_dapm_input: - *dw = (struct snd_soc_dapm_widget)SND_SOC_DAPM_INPUT(w->name); - break; case snd_soc_dapm_switch: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_SWITCH_E(w->name, SND_SOC_NOPM, 0, 0, - widget_kctls, - gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); - break; case snd_soc_dapm_pga: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_PGA_E(w->name, SND_SOC_NOPM, 0, 0, NULL, 0, - gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); - break; case snd_soc_dapm_mixer: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_MIXER_E(w->name, SND_SOC_NOPM, 0, 0, NULL, - 0, gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); - break; case snd_soc_dapm_mux: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_MUX_E(w->name, SND_SOC_NOPM, 0, 0, - widget_kctls, gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); + *dw = gbaudio_widgets[w->type]; break; case snd_soc_dapm_aif_in: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_AIF_IN_E(w->name, w->sname, 0, - SND_SOC_NOPM, - 0, 0, gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); - break; case snd_soc_dapm_aif_out: - *dw = (struct snd_soc_dapm_widget) - SND_SOC_DAPM_AIF_OUT_E(w->name, w->sname, 0, - SND_SOC_NOPM, - 0, 0, gbaudio_widget_event, - SND_SOC_DAPM_PRE_PMU | - SND_SOC_DAPM_POST_PMD); + *dw = gbaudio_widgets[w->type]; + dw->sname = w->sname; break; default: ret = -EINVAL; goto error; } + dw->name = w->name; dev_dbg(module->dev, "%s: widget of type %d created\n", dw->name, dw->id); @@ -1192,6 +1201,10 @@ csize += le16_to_cpu(gbenum->names_length); control->texts = (const char * const *) gb_generate_enum_strings(module, gbenum); + if (!control->texts) { + ret = -ENOMEM; + goto error; + } control->items = le32_to_cpu(gbenum->items); } else { csize = sizeof(struct gb_audio_control); diff -u linux-azure-5.4.0/drivers/staging/greybus/uart.c linux-azure-5.4.0/drivers/staging/greybus/uart.c --- linux-azure-5.4.0/drivers/staging/greybus/uart.c +++ linux-azure-5.4.0/drivers/staging/greybus/uart.c @@ -789,6 +789,17 @@ gbphy_runtime_put_autosuspend(gb_tty->gbphy_dev); } +static void gb_tty_port_destruct(struct tty_port *port) +{ + struct gb_tty *gb_tty = container_of(port, struct gb_tty, port); + + if (gb_tty->minor != GB_NUM_MINORS) + release_minor(gb_tty); + kfifo_free(&gb_tty->write_fifo); + kfree(gb_tty->buffer); + kfree(gb_tty); +} + static const struct tty_operations gb_ops = { .install = gb_tty_install, .open = gb_tty_open, @@ -814,6 +825,7 @@ .dtr_rts = gb_tty_dtr_rts, .activate = gb_tty_port_activate, .shutdown = gb_tty_port_shutdown, + .destruct = gb_tty_port_destruct, }; static int gb_uart_probe(struct gbphy_device *gbphy_dev, @@ -826,17 +838,11 @@ int retval; int minor; - gb_tty = kzalloc(sizeof(*gb_tty), GFP_KERNEL); - if (!gb_tty) - return -ENOMEM; - connection = gb_connection_create(gbphy_dev->bundle, le16_to_cpu(gbphy_dev->cport_desc->id), gb_uart_request_handler); - if (IS_ERR(connection)) { - retval = PTR_ERR(connection); - goto exit_tty_free; - } + if (IS_ERR(connection)) + return PTR_ERR(connection); max_payload = gb_operation_get_payload_size_max(connection); if (max_payload < sizeof(struct gb_uart_send_data_request)) { @@ -844,13 +850,23 @@ goto exit_connection_destroy; } + gb_tty = kzalloc(sizeof(*gb_tty), GFP_KERNEL); + if (!gb_tty) { + retval = -ENOMEM; + goto exit_connection_destroy; + } + + tty_port_init(&gb_tty->port); + gb_tty->port.ops = &gb_port_ops; + gb_tty->minor = GB_NUM_MINORS; + gb_tty->buffer_payload_max = max_payload - sizeof(struct gb_uart_send_data_request); gb_tty->buffer = kzalloc(gb_tty->buffer_payload_max, GFP_KERNEL); if (!gb_tty->buffer) { retval = -ENOMEM; - goto exit_connection_destroy; + goto exit_put_port; } INIT_WORK(&gb_tty->tx_work, gb_uart_tx_write_work); @@ -858,7 +874,7 @@ retval = kfifo_alloc(&gb_tty->write_fifo, GB_UART_WRITE_FIFO_SIZE, GFP_KERNEL); if (retval) - goto exit_buf_free; + goto exit_put_port; gb_tty->credits = GB_UART_FIRMWARE_CREDITS; init_completion(&gb_tty->credits_complete); @@ -872,7 +888,7 @@ } else { retval = minor; } - goto exit_kfifo_free; + goto exit_put_port; } gb_tty->minor = minor; @@ -881,9 +897,6 @@ init_waitqueue_head(&gb_tty->wioctl); mutex_init(&gb_tty->mutex); - tty_port_init(&gb_tty->port); - gb_tty->port.ops = &gb_port_ops; - gb_tty->connection = connection; gb_tty->gbphy_dev = gbphy_dev; gb_connection_set_data(connection, gb_tty); @@ -891,7 +904,7 @@ retval = gb_connection_enable_tx(connection); if (retval) - goto exit_release_minor; + goto exit_put_port; send_control(gb_tty, gb_tty->ctrlout); @@ -918,16 +931,10 @@ exit_connection_disable: gb_connection_disable(connection); -exit_release_minor: - release_minor(gb_tty); -exit_kfifo_free: - kfifo_free(&gb_tty->write_fifo); -exit_buf_free: - kfree(gb_tty->buffer); +exit_put_port: + tty_port_put(&gb_tty->port); exit_connection_destroy: gb_connection_destroy(connection); -exit_tty_free: - kfree(gb_tty); return retval; } @@ -958,15 +965,10 @@ gb_connection_disable_rx(connection); tty_unregister_device(gb_tty_driver, gb_tty->minor); - /* FIXME - free transmit / receive buffers */ - gb_connection_disable(connection); - tty_port_destroy(&gb_tty->port); gb_connection_destroy(connection); - release_minor(gb_tty); - kfifo_free(&gb_tty->write_fifo); - kfree(gb_tty->buffer); - kfree(gb_tty); + + tty_port_put(&gb_tty->port); } static int gb_tty_init(void) diff -u linux-azure-5.4.0/drivers/staging/media/hantro/hantro_drv.c linux-azure-5.4.0/drivers/staging/media/hantro/hantro_drv.c --- linux-azure-5.4.0/drivers/staging/media/hantro/hantro_drv.c +++ linux-azure-5.4.0/drivers/staging/media/hantro/hantro_drv.c @@ -823,7 +823,7 @@ ret = clk_bulk_prepare(vpu->variant->num_clocks, vpu->clocks); if (ret) { dev_err(&pdev->dev, "Failed to prepare clocks\n"); - return ret; + goto err_pm_disable; } ret = v4l2_device_register(&pdev->dev, &vpu->v4l2_dev); @@ -879,6 +879,7 @@ v4l2_device_unregister(&vpu->v4l2_dev); err_clk_unprepare: clk_bulk_unprepare(vpu->variant->num_clocks, vpu->clocks); +err_pm_disable: pm_runtime_dont_use_autosuspend(vpu->dev); pm_runtime_disable(vpu->dev); return ret; diff -u linux-azure-5.4.0/drivers/staging/media/hantro/hantro_h1_jpeg_enc.c linux-azure-5.4.0/drivers/staging/media/hantro/hantro_h1_jpeg_enc.c --- linux-azure-5.4.0/drivers/staging/media/hantro/hantro_h1_jpeg_enc.c +++ linux-azure-5.4.0/drivers/staging/media/hantro/hantro_h1_jpeg_enc.c @@ -23,7 +23,7 @@ reg = H1_REG_IN_IMG_CTRL_ROW_LEN(pix_fmt->width) | H1_REG_IN_IMG_CTRL_OVRFLR_D4(0) - | H1_REG_IN_IMG_CTRL_OVRFLB_D4(0) + | H1_REG_IN_IMG_CTRL_OVRFLB(0) | H1_REG_IN_IMG_CTRL_FMT(ctx->vpu_src_fmt->enc_fmt); vepu_write_relaxed(vpu, reg, H1_REG_IN_IMG_CTRL); } diff -u linux-azure-5.4.0/drivers/staging/media/imx/imx7-mipi-csis.c linux-azure-5.4.0/drivers/staging/media/imx/imx7-mipi-csis.c --- linux-azure-5.4.0/drivers/staging/media/imx/imx7-mipi-csis.c +++ linux-azure-5.4.0/drivers/staging/media/imx/imx7-mipi-csis.c @@ -528,13 +528,15 @@ static void mipi_csis_log_counters(struct csi_state *state, bool non_errors) { - int i = non_errors ? MIPI_CSIS_NUM_EVENTS : MIPI_CSIS_NUM_EVENTS - 4; + unsigned int num_events = non_errors ? MIPI_CSIS_NUM_EVENTS + : MIPI_CSIS_NUM_EVENTS - 6; struct device *dev = &state->pdev->dev; unsigned long flags; + unsigned int i; spin_lock_irqsave(&state->slock, flags); - for (i--; i >= 0; i--) { + for (i = 0; i < num_events; ++i) { if (state->events[i].counter > 0 || state->debug) dev_info(dev, "%s events: %d\n", state->events[i].name, state->events[i].counter); diff -u linux-azure-5.4.0/drivers/staging/media/ipu3/ipu3-v4l2.c linux-azure-5.4.0/drivers/staging/media/ipu3/ipu3-v4l2.c --- linux-azure-5.4.0/drivers/staging/media/ipu3/ipu3-v4l2.c +++ linux-azure-5.4.0/drivers/staging/media/ipu3/ipu3-v4l2.c @@ -594,11 +594,12 @@ static int imgu_vidioc_querycap(struct file *file, void *fh, struct v4l2_capability *cap) { - struct imgu_video_device *node = file_to_intel_imgu_node(file); + struct imgu_device *imgu = video_drvdata(file); strscpy(cap->driver, IMGU_NAME, sizeof(cap->driver)); strscpy(cap->card, IMGU_NAME, sizeof(cap->card)); - snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s", node->name); + snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s", + pci_name(imgu->pci_dev)); return 0; } @@ -695,7 +696,7 @@ /* CSS expects some format on OUT queue */ if (i != IPU3_CSS_QUEUE_OUT && - !imgu_pipe->nodes[inode].enabled) { + !imgu_pipe->nodes[inode].enabled && !try) { fmts[i] = NULL; continue; } diff -u linux-azure-5.4.0/drivers/staging/media/meson/vdec/vdec.c linux-azure-5.4.0/drivers/staging/media/meson/vdec/vdec.c --- linux-azure-5.4.0/drivers/staging/media/meson/vdec/vdec.c +++ linux-azure-5.4.0/drivers/staging/media/meson/vdec/vdec.c @@ -1074,6 +1074,7 @@ err_vdev_release: video_device_release(vdev); + v4l2_device_unregister(&core->v4l2_dev); return ret; } @@ -1082,6 +1083,7 @@ struct amvdec_core *core = platform_get_drvdata(pdev); video_unregister_device(core->vdev_dec); + v4l2_device_unregister(&core->v4l2_dev); return 0; } diff -u linux-azure-5.4.0/drivers/staging/media/sunxi/cedrus/cedrus.c linux-azure-5.4.0/drivers/staging/media/sunxi/cedrus/cedrus.c --- linux-azure-5.4.0/drivers/staging/media/sunxi/cedrus/cedrus.c +++ linux-azure-5.4.0/drivers/staging/media/sunxi/cedrus/cedrus.c @@ -323,6 +323,8 @@ if (!dev) return -ENOMEM; + platform_set_drvdata(pdev, dev); + dev->vfd = cedrus_video_device; dev->dev = &pdev->dev; dev->pdev = pdev; @@ -392,8 +394,6 @@ goto err_m2m_mc; } - platform_set_drvdata(pdev, dev); - return 0; err_m2m_mc: diff -u linux-azure-5.4.0/drivers/staging/rtl8192e/rtl8192e/rtl_core.c linux-azure-5.4.0/drivers/staging/rtl8192e/rtl8192e/rtl_core.c --- linux-azure-5.4.0/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ linux-azure-5.4.0/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -2559,13 +2559,14 @@ free_irq(dev->irq, dev); priv->irq = 0; } - free_rtllib(dev); if (dev->mem_start != 0) { iounmap((void __iomem *)dev->mem_start); release_mem_region(pci_resource_start(pdev, 1), pci_resource_len(pdev, 1)); } + + free_rtllib(dev); } else { priv = rtllib_priv(dev); } diff -u linux-azure-5.4.0/drivers/staging/rtl8192e/rtllib.h linux-azure-5.4.0/drivers/staging/rtl8192e/rtllib.h --- linux-azure-5.4.0/drivers/staging/rtl8192e/rtllib.h +++ linux-azure-5.4.0/drivers/staging/rtl8192e/rtllib.h @@ -1982,7 +1982,7 @@ void rtllib_stop_send_beacons(struct rtllib_device *ieee); void notify_wx_assoc_event(struct rtllib_device *ieee); void rtllib_start_ibss(struct rtllib_device *ieee); -void rtllib_softmac_init(struct rtllib_device *ieee); +int rtllib_softmac_init(struct rtllib_device *ieee); void rtllib_softmac_free(struct rtllib_device *ieee); void rtllib_disassociate(struct rtllib_device *ieee); void rtllib_stop_scan(struct rtllib_device *ieee); diff -u linux-azure-5.4.0/drivers/staging/rtl8192u/r8192U_core.c linux-azure-5.4.0/drivers/staging/rtl8192u/r8192U_core.c --- linux-azure-5.4.0/drivers/staging/rtl8192u/r8192U_core.c +++ linux-azure-5.4.0/drivers/staging/rtl8192u/r8192U_core.c @@ -236,7 +236,7 @@ status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RTL8187_REQ_SET_REGS, RTL8187_REQT_WRITE, - indx | 0xfe00, 0, usbdata, 1, HZ / 2); + indx | 0xfe00, 0, usbdata, 1, 500); kfree(usbdata); if (status < 0) { @@ -258,7 +258,7 @@ status = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8187_REQ_GET_REGS, RTL8187_REQT_READ, - indx | 0xfe00, 0, usbdata, 1, HZ / 2); + indx | 0xfe00, 0, usbdata, 1, 500); *data = *usbdata; kfree(usbdata); @@ -286,7 +286,7 @@ status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RTL8187_REQ_SET_REGS, RTL8187_REQT_WRITE, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 1, HZ / 2); + usbdata, 1, 500); kfree(usbdata); if (status < 0) { @@ -313,7 +313,7 @@ status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RTL8187_REQ_SET_REGS, RTL8187_REQT_WRITE, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 2, HZ / 2); + usbdata, 2, 500); kfree(usbdata); if (status < 0) { @@ -340,7 +340,7 @@ status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RTL8187_REQ_SET_REGS, RTL8187_REQT_WRITE, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 4, HZ / 2); + usbdata, 4, 500); kfree(usbdata); @@ -367,7 +367,7 @@ status = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8187_REQ_GET_REGS, RTL8187_REQT_READ, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 1, HZ / 2); + usbdata, 1, 500); *data = *usbdata; kfree(usbdata); @@ -394,7 +394,7 @@ status = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8187_REQ_GET_REGS, RTL8187_REQT_READ, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 2, HZ / 2); + usbdata, 2, 500); *data = *usbdata; kfree(usbdata); @@ -418,7 +418,7 @@ status = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8187_REQ_GET_REGS, RTL8187_REQT_READ, - indx | 0xfe00, 0, usbdata, 2, HZ / 2); + indx | 0xfe00, 0, usbdata, 2, 500); *data = *usbdata; kfree(usbdata); @@ -444,7 +444,7 @@ status = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8187_REQ_GET_REGS, RTL8187_REQT_READ, (indx & 0xff) | 0xff00, (indx >> 8) & 0x0f, - usbdata, 4, HZ / 2); + usbdata, 4, 500); *data = *usbdata; kfree(usbdata); @@ -4338,7 +4338,7 @@ bpacket_match_bssid = (type != IEEE80211_FTYPE_CTL) && (ether_addr_equal(priv->ieee80211->current_network.bssid, (fc & IEEE80211_FCTL_TODS) ? hdr->addr1 : (fc & IEEE80211_FCTL_FROMDS) ? hdr->addr2 : hdr->addr3)) && (!pstats->bHwError) && (!pstats->bCRC) && (!pstats->bICV); - bpacket_toself = bpacket_match_bssid & + bpacket_toself = bpacket_match_bssid && (ether_addr_equal(praddr, priv->ieee80211->dev->dev_addr)); if (WLAN_FC_GET_FRAMETYPE(fc) == IEEE80211_STYPE_BEACON) diff -u linux-azure-5.4.0/drivers/staging/rtl8712/hal_init.c linux-azure-5.4.0/drivers/staging/rtl8712/hal_init.c --- linux-azure-5.4.0/drivers/staging/rtl8712/hal_init.c +++ linux-azure-5.4.0/drivers/staging/rtl8712/hal_init.c @@ -40,7 +40,10 @@ dev_err(&udev->dev, "r8712u: Firmware request failed\n"); usb_put_dev(udev); usb_set_intfdata(usb_intf, NULL); + r8712_free_drv_sw(adapter); + adapter->dvobj_deinit(adapter); complete(&adapter->rtl8712_fw_ready); + free_netdev(adapter->pnetdev); return; } adapter->fw = firmware; diff -u linux-azure-5.4.0/drivers/staging/rtl8712/usb_intf.c linux-azure-5.4.0/drivers/staging/rtl8712/usb_intf.c --- linux-azure-5.4.0/drivers/staging/rtl8712/usb_intf.c +++ linux-azure-5.4.0/drivers/staging/rtl8712/usb_intf.c @@ -380,13 +380,11 @@ /* step 3. * initialize the dvobj_priv */ - if (!padapter->dvobj_init) { + + status = padapter->dvobj_init(padapter); + if (status != _SUCCESS) goto error; - } else { - status = padapter->dvobj_init(padapter); - if (status != _SUCCESS) - goto error; - } + /* step 4. */ status = r8712_init_drv_sw(padapter); if (status) @@ -541,13 +539,13 @@ } else { AutoloadFail = false; } - if (((mac[0] == 0xff) && (mac[1] == 0xff) && + if ((!AutoloadFail) || + ((mac[0] == 0xff) && (mac[1] == 0xff) && (mac[2] == 0xff) && (mac[3] == 0xff) && (mac[4] == 0xff) && (mac[5] == 0xff)) || ((mac[0] == 0x00) && (mac[1] == 0x00) && (mac[2] == 0x00) && (mac[3] == 0x00) && - (mac[4] == 0x00) && (mac[5] == 0x00)) || - (!AutoloadFail)) { + (mac[4] == 0x00) && (mac[5] == 0x00))) { mac[0] = 0x00; mac[1] = 0xe0; mac[2] = 0x4c; @@ -606,7 +604,8 @@ padapter->surprise_removed = true; if (pnetdev->reg_state != NETREG_UNINITIALIZED) unregister_netdev(pnetdev); /* will call netdev_close() */ - flush_scheduled_work(); + r8712_flush_rwctrl_works(padapter); + r8712_flush_led_works(padapter); udelay(1); /* Stop driver mlme relation timer */ r8712_stop_drv_timers(padapter); diff -u linux-azure-5.4.0/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c linux-azure-5.4.0/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c --- linux-azure-5.4.0/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c +++ linux-azure-5.4.0/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c @@ -1351,9 +1351,11 @@ sec_len = *(pos++); len-= 1; - if (sec_len>0 && sec_len<=len) { + if (sec_len > 0 && + sec_len <= len && + sec_len <= 32) { ssid[ssid_index].SsidLength = sec_len; - memcpy(ssid[ssid_index].Ssid, pos, ssid[ssid_index].SsidLength); + memcpy(ssid[ssid_index].Ssid, pos, sec_len); /* DBG_871X("%s COMBO_SCAN with specific ssid:%s, %d\n", __func__ */ /* , ssid[ssid_index].Ssid, ssid[ssid_index].SsidLength); */ ssid_index++; diff -u linux-azure-5.4.0/drivers/staging/speakup/spk_ttyio.c linux-azure-5.4.0/drivers/staging/speakup/spk_ttyio.c --- linux-azure-5.4.0/drivers/staging/speakup/spk_ttyio.c +++ linux-azure-5.4.0/drivers/staging/speakup/spk_ttyio.c @@ -88,7 +88,7 @@ } if (!ldisc_data->buf_free) - /* ttyio_in will tty_schedule_flip */ + /* ttyio_in will tty_flip_buffer_push */ return 0; /* Make sure the consumer has read buf before we have seen @@ -325,7 +325,7 @@ mb(); ldisc_data->buf_free = true; /* Let TTY push more characters */ - tty_schedule_flip(speakup_tty->port); + tty_flip_buffer_push(speakup_tty->port); return rv; } diff -u linux-azure-5.4.0/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c linux-azure-5.4.0/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c --- linux-azure-5.4.0/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ linux-azure-5.4.0/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -97,8 +97,7 @@ info->frame_len, (s32)info->rssi * 100, GFP_KERNEL); - if (!bss) - cfg80211_put_bss(wiphy, bss); + cfg80211_put_bss(wiphy, bss); } else if (scan_event == SCAN_EVENT_DONE) { mutex_lock(&priv->scan_req_lock); diff -u linux-azure-5.4.0/drivers/staging/wlan-ng/hfa384x_usb.c linux-azure-5.4.0/drivers/staging/wlan-ng/hfa384x_usb.c --- linux-azure-5.4.0/drivers/staging/wlan-ng/hfa384x_usb.c +++ linux-azure-5.4.0/drivers/staging/wlan-ng/hfa384x_usb.c @@ -3779,18 +3779,18 @@ spin_lock_irqsave(&hw->ctlxq.lock, flags); - /* - * We need to check BOTH the RX and the TX throttle controls, - * so we use the bitwise OR instead of the logical OR. - */ pr_debug("flags=0x%lx\n", hw->usb_flags); - if (!hw->wlandev->hwremoved && - ((test_and_clear_bit(THROTTLE_RX, &hw->usb_flags) && - !test_and_set_bit(WORK_RX_RESUME, &hw->usb_flags)) | - (test_and_clear_bit(THROTTLE_TX, &hw->usb_flags) && - !test_and_set_bit(WORK_TX_RESUME, &hw->usb_flags)) - )) { - schedule_work(&hw->usb_work); + if (!hw->wlandev->hwremoved) { + bool rx_throttle = test_and_clear_bit(THROTTLE_RX, &hw->usb_flags) && + !test_and_set_bit(WORK_RX_RESUME, &hw->usb_flags); + bool tx_throttle = test_and_clear_bit(THROTTLE_TX, &hw->usb_flags) && + !test_and_set_bit(WORK_TX_RESUME, &hw->usb_flags); + /* + * We need to check BOTH the RX and the TX throttle controls, + * so we use the bitwise OR instead of the logical OR. + */ + if (rx_throttle | tx_throttle) + schedule_work(&hw->usb_work); } spin_unlock_irqrestore(&hw->ctlxq.lock, flags); diff -u linux-azure-5.4.0/drivers/target/iscsi/cxgbit/cxgbit_target.c linux-azure-5.4.0/drivers/target/iscsi/cxgbit/cxgbit_target.c --- linux-azure-5.4.0/drivers/target/iscsi/cxgbit/cxgbit_target.c +++ linux-azure-5.4.0/drivers/target/iscsi/cxgbit/cxgbit_target.c @@ -1013,17 +1013,18 @@ struct scatterlist *sg_start; struct iscsi_conn *conn = csk->conn; struct iscsi_cmd *cmd = NULL; + struct cxgbit_cmd *ccmd; + struct cxgbi_task_tag_info *ttinfo; struct cxgbit_lro_pdu_cb *pdu_cb = cxgbit_rx_pdu_cb(csk->skb); struct iscsi_data *hdr = (struct iscsi_data *)pdu_cb->hdr; u32 data_offset = be32_to_cpu(hdr->offset); - u32 data_len = pdu_cb->dlen; + u32 data_len = ntoh24(hdr->dlength); int rc, sg_nents, sg_off; bool dcrc_err = false; if (pdu_cb->flags & PDUCBF_RX_DDP_CMP) { u32 offset = be32_to_cpu(hdr->offset); u32 ddp_data_len; - u32 payload_length = ntoh24(hdr->dlength); bool success = false; cmd = iscsit_find_cmd_from_itt_or_dump(conn, hdr->itt, 0); @@ -1038,7 +1039,7 @@ cmd->data_sn = be32_to_cpu(hdr->datasn); rc = __iscsit_check_dataout_hdr(conn, (unsigned char *)hdr, - cmd, payload_length, &success); + cmd, data_len, &success); if (rc < 0) return rc; else if (!success) @@ -1076,6 +1077,20 @@ cxgbit_skb_copy_to_sg(csk->skb, sg_start, sg_nents, skip); } + ccmd = iscsit_priv_cmd(cmd); + ttinfo = &ccmd->ttinfo; + + if (ccmd->release && ttinfo->sgl && + (cmd->se_cmd.data_length == (cmd->write_data_done + data_len))) { + struct cxgbit_device *cdev = csk->com.cdev; + struct cxgbi_ppm *ppm = cdev2ppm(cdev); + + dma_unmap_sg(&ppm->pdev->dev, ttinfo->sgl, ttinfo->nents, + DMA_FROM_DEVICE); + ttinfo->nents = 0; + ttinfo->sgl = NULL; + } + check_payload: rc = iscsit_check_dataout_payload(cmd, hdr, dcrc_err); diff -u linux-azure-5.4.0/drivers/target/target_core_internal.h linux-azure-5.4.0/drivers/target/target_core_internal.h --- linux-azure-5.4.0/drivers/target/target_core_internal.h +++ linux-azure-5.4.0/drivers/target/target_core_internal.h @@ -150,6 +150,7 @@ void transport_clear_lun_ref(struct se_lun *); sense_reason_t target_cmd_size_check(struct se_cmd *cmd, unsigned int size); void target_qf_do_work(struct work_struct *work); +void target_do_delayed_work(struct work_struct *work); bool target_check_wce(struct se_device *dev); bool target_check_fua(struct se_device *dev); void __target_execute_cmd(struct se_cmd *, bool); diff -u linux-azure-5.4.0/drivers/target/target_core_transport.c linux-azure-5.4.0/drivers/target/target_core_transport.c --- linux-azure-5.4.0/drivers/target/target_core_transport.c +++ linux-azure-5.4.0/drivers/target/target_core_transport.c @@ -2021,32 +2021,35 @@ */ switch (cmd->sam_task_attr) { case TCM_HEAD_TAG: + atomic_inc_mb(&dev->non_ordered); pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x\n", cmd->t_task_cdb[0]); return false; case TCM_ORDERED_TAG: - atomic_inc_mb(&dev->dev_ordered_sync); + atomic_inc_mb(&dev->delayed_cmd_count); pr_debug("Added ORDERED for CDB: 0x%02x to ordered list\n", cmd->t_task_cdb[0]); - - /* - * Execute an ORDERED command if no other older commands - * exist that need to be completed first. - */ - if (!atomic_read(&dev->simple_cmds)) - return false; break; default: /* * For SIMPLE and UNTAGGED Task Attribute commands */ - atomic_inc_mb(&dev->simple_cmds); + atomic_inc_mb(&dev->non_ordered); + + if (atomic_read(&dev->delayed_cmd_count) == 0) + return false; break; } - if (atomic_read(&dev->dev_ordered_sync) == 0) - return false; + if (cmd->sam_task_attr != TCM_ORDERED_TAG) { + atomic_inc_mb(&dev->delayed_cmd_count); + /* + * We will account for this when we dequeue from the delayed + * list. + */ + atomic_dec_mb(&dev->non_ordered); + } spin_lock(&dev->delayed_cmd_lock); list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list); @@ -2054,6 +2057,12 @@ pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to delayed CMD listn", cmd->t_task_cdb[0], cmd->sam_task_attr); + /* + * We may have no non ordered cmds when this function started or we + * could have raced with the last simple/head cmd completing, so kick + * the delayed handler here. + */ + schedule_work(&dev->delayed_cmd_work); return true; } @@ -2091,29 +2100,48 @@ * Process all commands up to the last received ORDERED task attribute which * requires another blocking boundary */ -static void target_restart_delayed_cmds(struct se_device *dev) +void target_do_delayed_work(struct work_struct *work) { - for (;;) { + struct se_device *dev = container_of(work, struct se_device, + delayed_cmd_work); + + spin_lock(&dev->delayed_cmd_lock); + while (!dev->ordered_sync_in_progress) { struct se_cmd *cmd; - spin_lock(&dev->delayed_cmd_lock); - if (list_empty(&dev->delayed_cmd_list)) { - spin_unlock(&dev->delayed_cmd_lock); + if (list_empty(&dev->delayed_cmd_list)) break; - } cmd = list_entry(dev->delayed_cmd_list.next, struct se_cmd, se_delayed_node); + + if (cmd->sam_task_attr == TCM_ORDERED_TAG) { + /* + * Check if we started with: + * [ordered] [simple] [ordered] + * and we are now at the last ordered so we have to wait + * for the simple cmd. + */ + if (atomic_read(&dev->non_ordered) > 0) + break; + + dev->ordered_sync_in_progress = true; + } + list_del(&cmd->se_delayed_node); + atomic_dec_mb(&dev->delayed_cmd_count); spin_unlock(&dev->delayed_cmd_lock); + if (cmd->sam_task_attr != TCM_ORDERED_TAG) + atomic_inc_mb(&dev->non_ordered); + cmd->transport_state |= CMD_T_SENT; __target_execute_cmd(cmd, true); - if (cmd->sam_task_attr == TCM_ORDERED_TAG) - break; + spin_lock(&dev->delayed_cmd_lock); } + spin_unlock(&dev->delayed_cmd_lock); } /* @@ -2131,14 +2159,17 @@ goto restart; if (cmd->sam_task_attr == TCM_SIMPLE_TAG) { - atomic_dec_mb(&dev->simple_cmds); + atomic_dec_mb(&dev->non_ordered); dev->dev_cur_ordered_id++; } else if (cmd->sam_task_attr == TCM_HEAD_TAG) { + atomic_dec_mb(&dev->non_ordered); dev->dev_cur_ordered_id++; pr_debug("Incremented dev_cur_ordered_id: %u for HEAD_OF_QUEUE\n", dev->dev_cur_ordered_id); } else if (cmd->sam_task_attr == TCM_ORDERED_TAG) { - atomic_dec_mb(&dev->dev_ordered_sync); + spin_lock(&dev->delayed_cmd_lock); + dev->ordered_sync_in_progress = false; + spin_unlock(&dev->delayed_cmd_lock); dev->dev_cur_ordered_id++; pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED\n", @@ -2147,7 +2178,8 @@ cmd->se_cmd_flags &= ~SCF_TASK_ATTR_SET; restart: - target_restart_delayed_cmds(dev); + if (atomic_read(&dev->delayed_cmd_count) > 0) + schedule_work(&dev->delayed_cmd_work); } static void transport_complete_qf(struct se_cmd *cmd) @@ -2993,9 +3025,7 @@ __releases(&cmd->t_state_lock) __acquires(&cmd->t_state_lock) { - - assert_spin_locked(&cmd->t_state_lock); - WARN_ON_ONCE(!irqs_disabled()); + lockdep_assert_held(&cmd->t_state_lock); if (fabric_stop) cmd->transport_state |= CMD_T_FABRIC_STOP; diff -u linux-azure-5.4.0/drivers/target/target_core_user.c linux-azure-5.4.0/drivers/target/target_core_user.c --- linux-azure-5.4.0/drivers/target/target_core_user.c +++ linux-azure-5.4.0/drivers/target/target_core_user.c @@ -1488,6 +1488,7 @@ mutex_lock(&udev->cmdr_lock); page = tcmu_get_block_page(udev, dbi); if (likely(page)) { + get_page(page); mutex_unlock(&udev->cmdr_lock); return page; } @@ -1526,6 +1527,7 @@ /* For the vmalloc()ed cmd area pages */ addr = (void *)(unsigned long)info->mem[mi].addr + offset; page = vmalloc_to_page(addr); + get_page(page); } else { uint32_t dbi; @@ -1536,7 +1538,6 @@ return VM_FAULT_SIGBUS; } - get_page(page); vmf->page = page; return 0; } diff -u linux-azure-5.4.0/drivers/target/target_core_xcopy.c linux-azure-5.4.0/drivers/target/target_core_xcopy.c --- linux-azure-5.4.0/drivers/target/target_core_xcopy.c +++ linux-azure-5.4.0/drivers/target/target_core_xcopy.c @@ -533,7 +533,6 @@ * @cdb: SCSI CDB to be copied into @xpt_cmd. * @remote_port: If false, use the LUN through which the XCOPY command has * been received. If true, use @se_dev->xcopy_lun. - * @alloc_mem: Whether or not to allocate an SGL list. * * Set up a SCSI command (READ or WRITE) that will be used to execute an * XCOPY command. @@ -543,12 +542,9 @@ struct xcopy_op *xop, struct se_device *se_dev, unsigned char *cdb, - bool remote_port, - bool alloc_mem) + bool remote_port) { struct se_cmd *cmd = &xpt_cmd->se_cmd; - sense_reason_t sense_rc; - int ret = 0, rc; /* * Setup LUN+port to honor reservations based upon xop->op_origin for @@ -564,46 +560,17 @@ cmd->se_cmd_flags |= SCF_SE_LUN_CMD; cmd->tag = 0; - sense_rc = target_setup_cmd_from_cdb(cmd, cdb); - if (sense_rc) { - ret = -EINVAL; - goto out; - } + if (target_setup_cmd_from_cdb(cmd, cdb)) + return -EINVAL; - if (alloc_mem) { - rc = target_alloc_sgl(&cmd->t_data_sg, &cmd->t_data_nents, - cmd->data_length, false, false); - if (rc < 0) { - ret = rc; - goto out; - } - /* - * Set this bit so that transport_free_pages() allows the - * caller to release SGLs + physical memory allocated by - * transport_generic_get_mem().. - */ - cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; - } else { - /* - * Here the previously allocated SGLs for the internal READ - * are mapped zero-copy to the internal WRITE. - */ - sense_rc = transport_generic_map_mem_to_cmd(cmd, - xop->xop_data_sg, xop->xop_data_nents, - NULL, 0); - if (sense_rc) { - ret = -EINVAL; - goto out; - } + if (transport_generic_map_mem_to_cmd(cmd, xop->xop_data_sg, + xop->xop_data_nents, NULL, 0)) + return -EINVAL; - pr_debug("Setup PASSTHROUGH_NOALLOC t_data_sg: %p t_data_nents:" - " %u\n", cmd->t_data_sg, cmd->t_data_nents); - } + pr_debug("Setup PASSTHROUGH_NOALLOC t_data_sg: %p t_data_nents:" + " %u\n", cmd->t_data_sg, cmd->t_data_nents); return 0; - -out: - return ret; } static int target_xcopy_issue_pt_cmd(struct xcopy_pt_cmd *xpt_cmd) @@ -660,15 +627,13 @@ xop->src_pt_cmd = xpt_cmd; rc = target_xcopy_setup_pt_cmd(xpt_cmd, xop, src_dev, &cdb[0], - remote_port, true); + remote_port); if (rc < 0) { ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; transport_generic_free_cmd(se_cmd, 0); return rc; } - xop->xop_data_sg = se_cmd->t_data_sg; - xop->xop_data_nents = se_cmd->t_data_nents; pr_debug("XCOPY-READ: Saved xop->xop_data_sg: %p, num: %u for READ" " memory\n", xop->xop_data_sg, xop->xop_data_nents); @@ -678,12 +643,6 @@ transport_generic_free_cmd(se_cmd, 0); return rc; } - /* - * Clear off the allocated t_data_sg, that has been saved for - * zero-copy WRITE submission reuse in struct xcopy_op.. - */ - se_cmd->t_data_sg = NULL; - se_cmd->t_data_nents = 0; return 0; } @@ -722,19 +681,9 @@ xop->dst_pt_cmd = xpt_cmd; rc = target_xcopy_setup_pt_cmd(xpt_cmd, xop, dst_dev, &cdb[0], - remote_port, false); + remote_port); if (rc < 0) { - struct se_cmd *src_cmd = &xop->src_pt_cmd->se_cmd; ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; - /* - * If the failure happened before the t_mem_list hand-off in - * target_xcopy_setup_pt_cmd(), Reset memory + clear flag so that - * core releases this memory on error during X-COPY WRITE I/O. - */ - src_cmd->se_cmd_flags &= ~SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; - src_cmd->t_data_sg = xop->xop_data_sg; - src_cmd->t_data_nents = xop->xop_data_nents; - transport_generic_free_cmd(se_cmd, 0); return rc; } @@ -742,7 +691,6 @@ rc = target_xcopy_issue_pt_cmd(xpt_cmd); if (rc < 0) { ec_cmd->scsi_status = xpt_cmd->se_cmd.scsi_status; - se_cmd->se_cmd_flags &= ~SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; transport_generic_free_cmd(se_cmd, 0); return rc; } @@ -758,7 +706,7 @@ sector_t src_lba, dst_lba, end_lba; unsigned int max_sectors; int rc = 0; - unsigned short nolb, cur_nolb, max_nolb, copied_nolb = 0; + unsigned short nolb, max_nolb, copied_nolb = 0; if (target_parse_xcopy_cmd(xop) != TCM_NO_SENSE) goto err_free; @@ -788,7 +736,23 @@ (unsigned long long)src_lba, (unsigned long long)dst_lba); while (src_lba < end_lba) { - cur_nolb = min(nolb, max_nolb); + unsigned short cur_nolb = min(nolb, max_nolb); + u32 cur_bytes = cur_nolb * src_dev->dev_attrib.block_size; + + if (cur_bytes != xop->xop_data_bytes) { + /* + * (Re)allocate a buffer large enough to hold the XCOPY + * I/O size, which can be reused each read / write loop. + */ + target_free_sgl(xop->xop_data_sg, xop->xop_data_nents); + rc = target_alloc_sgl(&xop->xop_data_sg, + &xop->xop_data_nents, + cur_bytes, + false, false); + if (rc < 0) + goto out; + xop->xop_data_bytes = cur_bytes; + } pr_debug("target_xcopy_do_work: Calling read src_dev: %p src_lba: %llu," " cur_nolb: %hu\n", src_dev, (unsigned long long)src_lba, cur_nolb); @@ -819,12 +783,11 @@ nolb -= cur_nolb; transport_generic_free_cmd(&xop->src_pt_cmd->se_cmd, 0); - xop->dst_pt_cmd->se_cmd.se_cmd_flags &= ~SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; - transport_generic_free_cmd(&xop->dst_pt_cmd->se_cmd, 0); } xcopy_pt_undepend_remotedev(xop); + target_free_sgl(xop->xop_data_sg, xop->xop_data_nents); kfree(xop); pr_debug("target_xcopy_do_work: Final src_lba: %llu, dst_lba: %llu\n", @@ -838,6 +801,7 @@ out: xcopy_pt_undepend_remotedev(xop); + target_free_sgl(xop->xop_data_sg, xop->xop_data_nents); err_free: kfree(xop); diff -u linux-azure-5.4.0/drivers/target/target_core_xcopy.h linux-azure-5.4.0/drivers/target/target_core_xcopy.h --- linux-azure-5.4.0/drivers/target/target_core_xcopy.h +++ linux-azure-5.4.0/drivers/target/target_core_xcopy.h @@ -41,6 +41,7 @@ struct xcopy_pt_cmd *src_pt_cmd; struct xcopy_pt_cmd *dst_pt_cmd; + u32 xop_data_bytes; u32 xop_data_nents; struct scatterlist *xop_data_sg; struct work_struct xop_work; diff -u linux-azure-5.4.0/drivers/tee/optee/call.c linux-azure-5.4.0/drivers/tee/optee/call.c --- linux-azure-5.4.0/drivers/tee/optee/call.c +++ linux-azure-5.4.0/drivers/tee/optee/call.c @@ -181,7 +181,7 @@ struct optee_msg_arg *ma; shm = tee_shm_alloc(ctx, OPTEE_MSG_GET_ARG_SIZE(num_params), - TEE_SHM_MAPPED); + TEE_SHM_MAPPED | TEE_SHM_PRIV); if (IS_ERR(shm)) return shm; @@ -407,11 +407,13 @@ } /** - * optee_disable_shm_cache() - Disables caching of some shared memory allocation - * in OP-TEE + * __optee_disable_shm_cache() - Disables caching of some shared memory + * allocation in OP-TEE * @optee: main service struct + * @is_mapped: true if the cached shared memory addresses were mapped by this + * kernel, are safe to dereference, and should be freed */ -void optee_disable_shm_cache(struct optee *optee) +static void __optee_disable_shm_cache(struct optee *optee, bool is_mapped) { struct optee_call_waiter w; @@ -430,6 +432,13 @@ if (res.result.status == OPTEE_SMC_RETURN_OK) { struct tee_shm *shm; + /* + * Shared memory references that were not mapped by + * this kernel must be ignored to prevent a crash. + */ + if (!is_mapped) + continue; + shm = reg_pair_to_ptr(res.result.shm_upper32, res.result.shm_lower32); tee_shm_free(shm); @@ -440,6 +449,27 @@ optee_cq_wait_final(&optee->call_queue, &w); } +/** + * optee_disable_shm_cache() - Disables caching of mapped shared memory + * allocations in OP-TEE + * @optee: main service struct + */ +void optee_disable_shm_cache(struct optee *optee) +{ + return __optee_disable_shm_cache(optee, true); +} + +/** + * optee_disable_unmapped_shm_cache() - Disables caching of shared memory + * allocations in OP-TEE which are not + * currently mapped + * @optee: main service struct + */ +void optee_disable_unmapped_shm_cache(struct optee *optee) +{ + return __optee_disable_shm_cache(optee, false); +} + #define PAGELIST_ENTRIES_PER_PAGE \ ((OPTEE_MSG_NONCONTIG_PAGE_SIZE / sizeof(u64)) - 1) diff -u linux-azure-5.4.0/drivers/tee/optee/core.c linux-azure-5.4.0/drivers/tee/optee/core.c --- linux-azure-5.4.0/drivers/tee/optee/core.c +++ linux-azure-5.4.0/drivers/tee/optee/core.c @@ -254,7 +254,8 @@ if (!ctxdata) return; - shm = tee_shm_alloc(ctx, sizeof(struct optee_msg_arg), TEE_SHM_MAPPED); + shm = tee_shm_alloc(ctx, sizeof(struct optee_msg_arg), + TEE_SHM_MAPPED | TEE_SHM_PRIV); if (!IS_ERR(shm)) { arg = tee_shm_get_va(shm, 0); /* @@ -551,6 +552,7 @@ struct optee *optee = NULL; void *memremaped_shm = NULL; struct tee_device *teedev; + struct tee_context *ctx; u32 sec_caps; int rc; @@ -581,6 +583,9 @@ if (sec_caps & OPTEE_SMC_SEC_CAP_DYNAMIC_SHM) pool = optee_config_dyn_shm(); + /* Unregister OP-TEE specific client devices on TEE bus */ + optee_unregister_devices(); + /* * If dynamic shared memory is not available or failed - try static one */ @@ -627,6 +632,21 @@ optee_supp_init(&optee->supp); optee->memremaped_shm = memremaped_shm; optee->pool = pool; + ctx = teedev_open(optee->teedev); + if (IS_ERR(ctx)) { + rc = PTR_ERR(ctx); + goto err; + } + optee->ctx = ctx; + + /* + * Ensure that there are no pre-existing shm objects before enabling + * the shm cache so that there's no chance of receiving an invalid + * address during shutdown. This could occur, for example, if we're + * kexec booting from an older kernel that did not properly cleanup the + * shm cache. + */ + optee_disable_unmapped_shm_cache(optee); optee_enable_shm_cache(optee); @@ -654,6 +674,7 @@ static void optee_remove(struct optee *optee) { + teedev_close_context(optee->ctx); /* * Ask OP-TEE to free all cached shared memory objects to decrease * reference counters and also avoid wild pointers in secure world diff -u linux-azure-5.4.0/drivers/tee/optee/shm_pool.c linux-azure-5.4.0/drivers/tee/optee/shm_pool.c --- linux-azure-5.4.0/drivers/tee/optee/shm_pool.c +++ linux-azure-5.4.0/drivers/tee/optee/shm_pool.c @@ -27,32 +27,42 @@ shm->paddr = page_to_phys(page); shm->size = PAGE_SIZE << order; - if (shm->flags & TEE_SHM_DMA_BUF) { + /* + * Shared memory private to the OP-TEE driver doesn't need + * to be registered with OP-TEE. + */ + if (!(shm->flags & TEE_SHM_PRIV)) { unsigned int nr_pages = 1 << order, i; struct page **pages; pages = kcalloc(nr_pages, sizeof(pages), GFP_KERNEL); - if (!pages) - return -ENOMEM; - - for (i = 0; i < nr_pages; i++) { - pages[i] = page; - page++; + if (!pages) { + rc = -ENOMEM; + goto err; } + for (i = 0; i < nr_pages; i++) + pages[i] = page + i; + shm->flags |= TEE_SHM_REGISTER; rc = optee_shm_register(shm->ctx, shm, pages, nr_pages, (unsigned long)shm->kaddr); kfree(pages); + if (rc) + goto err; } + return 0; + +err: + __free_pages(page, order); return rc; } static void pool_op_free(struct tee_shm_pool_mgr *poolm, struct tee_shm *shm) { - if (shm->flags & TEE_SHM_DMA_BUF) + if (!(shm->flags & TEE_SHM_PRIV)) optee_shm_unregister(shm->ctx, shm); free_pages((unsigned long)shm->kaddr, get_order(shm->size)); diff -u linux-azure-5.4.0/drivers/thermal/of-thermal.c linux-azure-5.4.0/drivers/thermal/of-thermal.c --- linux-azure-5.4.0/drivers/thermal/of-thermal.c +++ linux-azure-5.4.0/drivers/thermal/of-thermal.c @@ -91,7 +91,7 @@ { struct __thermal_zone *data = tz->devdata; - if (!data->ops->get_temp) + if (!data->ops || !data->ops->get_temp) return -EINVAL; return data->ops->get_temp(data->sensor_data, temp); @@ -188,6 +188,9 @@ { struct __thermal_zone *data = tz->devdata; + if (!data->ops || !data->ops->set_emul_temp) + return -EINVAL; + return data->ops->set_emul_temp(data->sensor_data, temp); } @@ -196,7 +199,7 @@ { struct __thermal_zone *data = tz->devdata; - if (!data->ops->get_trend) + if (!data->ops || !data->ops->get_trend) return -EINVAL; return data->ops->get_trend(data->sensor_data, trip, trend); @@ -336,7 +339,7 @@ if (trip >= data->ntrips || trip < 0) return -EDOM; - if (data->ops->set_trip_temp) { + if (data->ops && data->ops->set_trip_temp) { int ret; ret = data->ops->set_trip_temp(data->sensor_data, trip, temp); diff -u linux-azure-5.4.0/drivers/thermal/rcar_gen3_thermal.c linux-azure-5.4.0/drivers/thermal/rcar_gen3_thermal.c --- linux-azure-5.4.0/drivers/thermal/rcar_gen3_thermal.c +++ linux-azure-5.4.0/drivers/thermal/rcar_gen3_thermal.c @@ -143,7 +143,7 @@ * Division is not scaled in BSP and if scaled it might overflow * the dividend (4095 * 4095 << 14 > INT_MAX) so keep it unscaled */ - tsc->tj_t = (FIXPT_INT((ptat[1] - ptat[2]) * 157) + tsc->tj_t = (FIXPT_INT((ptat[1] - ptat[2]) * (ths_tj_1 - TJ_3)) / (ptat[0] - ptat[2])) + FIXPT_INT(TJ_3); tsc->coef.a1 = FIXPT_DIV(FIXPT_INT(thcode[1] - thcode[2]), diff -u linux-azure-5.4.0/drivers/thermal/thermal_core.c linux-azure-5.4.0/drivers/thermal/thermal_core.c --- linux-azure-5.4.0/drivers/thermal/thermal_core.c +++ linux-azure-5.4.0/drivers/thermal/thermal_core.c @@ -228,15 +228,14 @@ { struct thermal_governor *pos; ssize_t count = 0; - ssize_t size = PAGE_SIZE; mutex_lock(&thermal_governor_lock); list_for_each_entry(pos, &thermal_governor_list, governor_list) { - size = PAGE_SIZE - count; - count += scnprintf(buf + count, size, "%s ", pos->name); + count += scnprintf(buf + count, PAGE_SIZE - count, "%s ", + pos->name); } - count += scnprintf(buf + count, size, "\n"); + count += scnprintf(buf + count, PAGE_SIZE - count, "\n"); mutex_unlock(&thermal_governor_lock); @@ -461,6 +460,8 @@ { struct thermal_instance *pos; tz->temperature = THERMAL_TEMP_INVALID; + tz->prev_low_trip = -INT_MAX; + tz->prev_high_trip = INT_MAX; list_for_each_entry(pos, &tz->thermal_instances, tz_node) pos->initialized = false; } @@ -1368,7 +1369,7 @@ EXPORT_SYMBOL_GPL(thermal_zone_device_register); /** - * thermal_device_unregister - removes the registered thermal zone device + * thermal_zone_device_unregister - removes the registered thermal zone device * @tz: the thermal zone device to remove */ void thermal_zone_device_unregister(struct thermal_zone_device *tz) diff -u linux-azure-5.4.0/drivers/thermal/thermal_sysfs.c linux-azure-5.4.0/drivers/thermal/thermal_sysfs.c --- linux-azure-5.4.0/drivers/thermal/thermal_sysfs.c +++ linux-azure-5.4.0/drivers/thermal/thermal_sysfs.c @@ -909,12 +909,13 @@ static void cooling_device_stats_setup(struct thermal_cooling_device *cdev) { + const struct attribute_group *stats_attr_group = NULL; struct cooling_dev_stats *stats; unsigned long states; int var; if (cdev->ops->get_max_state(cdev, &states)) - return; + goto out; states++; /* Total number of states is highest state + 1 */ @@ -924,7 +925,7 @@ stats = kzalloc(var, GFP_KERNEL); if (!stats) - return; + goto out; stats->time_in_state = (ktime_t *)(stats + 1); stats->trans_table = (unsigned int *)(stats->time_in_state + states); @@ -934,9 +935,12 @@ spin_lock_init(&stats->lock); + stats_attr_group = &cooling_device_stats_attr_group; + +out: /* Fill the empty slot left in cooling_device_attr_groups */ var = ARRAY_SIZE(cooling_device_attr_groups) - 2; - cooling_device_attr_groups[var] = &cooling_device_stats_attr_group; + cooling_device_attr_groups[var] = stats_attr_group; } static void cooling_device_stats_destroy(struct thermal_cooling_device *cdev) diff -u linux-azure-5.4.0/drivers/tty/moxa.c linux-azure-5.4.0/drivers/tty/moxa.c --- linux-azure-5.4.0/drivers/tty/moxa.c +++ linux-azure-5.4.0/drivers/tty/moxa.c @@ -1385,7 +1385,7 @@ if (inited && !tty_throttled(tty) && MoxaPortRxQueue(p) > 0) { /* RX */ MoxaPortReadData(p); - tty_schedule_flip(&p->port); + tty_flip_buffer_push(&p->port); } } else { clear_bit(EMPTYWAIT, &p->statusflags); @@ -1410,7 +1410,7 @@ if (tty && (intr & IntrBreak) && !I_IGNBRK(tty)) { /* BREAK */ tty_insert_flip_char(&p->port, 0, TTY_BREAK); - tty_schedule_flip(&p->port); + tty_flip_buffer_push(&p->port); } if (intr & IntrLine) diff -u linux-azure-5.4.0/drivers/tty/n_gsm.c linux-azure-5.4.0/drivers/tty/n_gsm.c --- linux-azure-5.4.0/drivers/tty/n_gsm.c +++ linux-azure-5.4.0/drivers/tty/n_gsm.c @@ -72,6 +72,8 @@ */ #define MAX_MRU 1500 #define MAX_MTU 1500 +/* SOF, ADDR, CTRL, LEN1, LEN2, ..., FCS, EOF */ +#define PROT_OVERHEAD 7 #define GSM_NET_TX_TIMEOUT (HZ*10) /** @@ -313,6 +315,7 @@ #define GSM1_ESCAPE_BITS 0x20 #define XON 0x11 #define XOFF 0x13 +#define ISO_IEC_646_MASK 0x7F static const struct tty_port_operations gsm_port_ops; @@ -408,6 +411,27 @@ } /** + * gsm_read_ea_val - read a value until EA + * @val: variable holding value + * @data: buffer of data + * @dlen: length of data + * + * Processes an EA value. Updates the passed variable and + * returns the processed data length. + */ +static unsigned int gsm_read_ea_val(unsigned int *val, const u8 *data, int dlen) +{ + unsigned int len = 0; + + for (; dlen > 0; dlen--) { + len++; + if (gsm_read_ea(val, *data++)) + break; + } + return len; +} + +/** * gsm_encode_modem - encode modem data bits * @dlci: DLCI to encode from * @@ -427,7 +451,7 @@ modembits |= MDM_RTR; if (dlci->modem_tx & TIOCM_RI) modembits |= MDM_IC; - if (dlci->modem_tx & TIOCM_CD) + if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator) modembits |= MDM_DV; return modembits; } @@ -531,7 +555,8 @@ int olen = 0; while (len--) { if (*input == GSM1_SOF || *input == GSM1_ESCAPE - || *input == XON || *input == XOFF) { + || (*input & ISO_IEC_646_MASK) == XON + || (*input & ISO_IEC_646_MASK) == XOFF) { *output++ = GSM1_ESCAPE; *output++ = *input++ ^ GSM1_ESCAPE_BITS; olen++; @@ -654,6 +679,37 @@ } /** + * gsm_is_flow_ctrl_msg - checks if flow control message + * @msg: message to check + * + * Returns true if the given message is a flow control command of the + * control channel. False is returned in any other case. + */ +static bool gsm_is_flow_ctrl_msg(struct gsm_msg *msg) +{ + unsigned int cmd; + + if (msg->addr > 0) + return false; + + switch (msg->ctrl & ~PF) { + case UI: + case UIH: + cmd = 0; + if (gsm_read_ea_val(&cmd, msg->data + 2, msg->len - 2) < 1) + break; + switch (cmd & ~PF) { + case CMD_FCOFF: + case CMD_FCON: + return true; + } + break; + } + + return false; +} + +/** * gsm_data_kick - poke the queue * @gsm: GSM Mux * @@ -671,7 +727,7 @@ int len; list_for_each_entry_safe(msg, nmsg, &gsm->tx_list, list) { - if (gsm->constipated && msg->addr) + if (gsm->constipated && !gsm_is_flow_ctrl_msg(msg)) continue; if (gsm->encoding != 0) { gsm->txframe[0] = GSM1_SOF; @@ -821,7 +877,7 @@ break; case 2: /* Unstructed with modem bits. Always one byte as we never send inline break data */ - *dp++ = gsm_encode_modem(dlci); + *dp++ = (gsm_encode_modem(dlci) << 1) | EA; break; } WARN_ON(kfifo_out_locked(dlci->fifo, dp , len, &dlci->lock) != len); @@ -1298,11 +1354,12 @@ static void gsm_control_transmit(struct gsm_mux *gsm, struct gsm_control *ctrl) { - struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 1, gsm->ftype); + struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 2, gsm->ftype); if (msg == NULL) return; - msg->data[0] = (ctrl->cmd << 1) | 2 | EA; /* command */ - memcpy(msg->data + 1, ctrl->data, ctrl->len); + msg->data[0] = (ctrl->cmd << 1) | CR | EA; /* command */ + msg->data[1] = (ctrl->len << 1) | EA; + memcpy(msg->data + 2, ctrl->data, ctrl->len); gsm_data_queue(gsm->dlci[0], msg); } @@ -1325,8 +1382,7 @@ spin_lock_irqsave(&gsm->control_lock, flags); ctrl = gsm->pending_cmd; if (ctrl) { - gsm->cretries--; - if (gsm->cretries == 0) { + if (gsm->cretries == 0 || !gsm->dlci[0] || gsm->dlci[0]->dead) { gsm->pending_cmd = NULL; ctrl->error = -ETIMEDOUT; ctrl->done = 1; @@ -1334,6 +1390,7 @@ wake_up(&gsm->event); return; } + gsm->cretries--; gsm_control_transmit(gsm, ctrl); mod_timer(&gsm->t2_timer, jiffies + gsm->t2 * HZ / 100); } @@ -1374,7 +1431,7 @@ /* If DLCI0 is in ADM mode skip retries, it won't respond */ if (gsm->dlci[0]->mode == DLCI_MODE_ADM) - gsm->cretries = 1; + gsm->cretries = 0; else gsm->cretries = gsm->n2; @@ -1477,8 +1534,8 @@ switch (dlci->state) { case DLCI_OPENING: - dlci->retries--; if (dlci->retries) { + dlci->retries--; gsm_command(dlci->gsm, dlci->addr, SABM|PF); mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100); } else if (!dlci->addr && gsm->control == (DM | PF)) { @@ -1488,13 +1545,13 @@ dlci->mode = DLCI_MODE_ADM; gsm_dlci_open(dlci); } else { - gsm_dlci_close(dlci); + gsm_dlci_begin_close(dlci); /* prevent half open link */ } break; case DLCI_CLOSING: - dlci->retries--; if (dlci->retries) { + dlci->retries--; gsm_command(dlci->gsm, dlci->addr, DISC|PF); mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100); } else @@ -1720,7 +1777,12 @@ gsm_destroy_network(dlci); mutex_unlock(&dlci->mutex); - tty_hangup(tty); + /* We cannot use tty_hangup() because in tty_kref_put() the tty + * driver assumes that the hangup queue is free and reuses it to + * queue release_one_tty() -> NULL pointer panic in + * process_one_work(). + */ + tty_vhangup(tty); tty_port_tty_set(&dlci->port, NULL); tty_kref_put(tty); @@ -1803,7 +1865,6 @@ gsm_response(gsm, address, UA); gsm_dlci_close(dlci); break; - case UA: case UA|PF: if (cr == 0 || dlci == NULL) break; @@ -1833,7 +1894,7 @@ goto invalid; #endif if (dlci == NULL || dlci->state != DLCI_OPEN) { - gsm_command(gsm, address, DM|PF); + gsm_response(gsm, address, DM|PF); return; } dlci->data(dlci, gsm->buf, gsm->len); @@ -1954,7 +2015,8 @@ } /* Any partial frame was a runt so go back to start */ if (gsm->state != GSM_START) { - gsm->malformed++; + if (gsm->state != GSM_SEARCH) + gsm->malformed++; gsm->state = GSM_START; } /* A SOF in GSM_START means we are still reading idling or @@ -2091,6 +2153,7 @@ gsm_dlci_release(gsm->dlci[i]); mutex_unlock(&gsm->mutex); /* Now wipe the queues */ + tty_ldisc_flush(gsm->tty); list_for_each_entry_safe(txq, ntxq, &gsm->tx_list, list) kfree(txq); INIT_LIST_HEAD(&gsm->tx_list); @@ -2201,7 +2264,7 @@ kfree(gsm); return NULL; } - gsm->txframe = kmalloc(2 * MAX_MRU + 2, GFP_KERNEL); + gsm->txframe = kmalloc(2 * (MAX_MTU + PROT_OVERHEAD - 1), GFP_KERNEL); if (gsm->txframe == NULL) { kfree(gsm->buf); kfree(gsm); @@ -2248,6 +2311,7 @@ static int gsm_config(struct gsm_mux *gsm, struct gsm_config *c) { + int ret = 0; int need_close = 0; int need_restart = 0; @@ -2257,7 +2321,7 @@ /* Check the MRU/MTU range looks sane */ if (c->mru > MAX_MRU || c->mtu > MAX_MTU || c->mru < 8 || c->mtu < 8) return -EINVAL; - if (c->n2 < 3) + if (c->n2 > 255) return -EINVAL; if (c->encapsulation > 1) /* Basic, advanced, no I */ return -EINVAL; @@ -2323,10 +2387,13 @@ * FIXME: We need to separate activation/deactivation from adding * and removing from the mux array */ - if (need_restart) - gsm_activate_mux(gsm); - if (gsm->initiator && need_close) - gsm_dlci_begin_open(gsm->dlci[0]); + if (gsm->dead) { + ret = gsm_activate_mux(gsm); + if (ret) + return ret; + if (gsm->initiator) + gsm_dlci_begin_open(gsm->dlci[0]); + } return 0; } @@ -2584,11 +2651,24 @@ static ssize_t gsmld_write(struct tty_struct *tty, struct file *file, const unsigned char *buf, size_t nr) { - int space = tty_write_room(tty); + struct gsm_mux *gsm = tty->disc_data; + unsigned long flags; + int space; + int ret; + + if (!gsm) + return -ENODEV; + + ret = -ENOBUFS; + spin_lock_irqsave(&gsm->tx_lock, flags); + space = tty_write_room(tty); if (space >= nr) - return tty->ops->write(tty, buf, nr); - set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); - return -ENOBUFS; + ret = tty->ops->write(tty, buf, nr); + else + set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); + spin_unlock_irqrestore(&gsm->tx_lock, flags); + + return ret; } /** @@ -2613,12 +2693,15 @@ poll_wait(file, &tty->read_wait, wait); poll_wait(file, &tty->write_wait, wait); + + if (gsm->dead) + mask |= EPOLLHUP; if (tty_hung_up_p(file)) mask |= EPOLLHUP; + if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) + mask |= EPOLLHUP; if (!tty_is_writelocked(tty) && tty_write_room(tty) > 0) mask |= EPOLLOUT | EPOLLWRNORM; - if (gsm->dead) - mask |= EPOLLHUP; return mask; } @@ -2872,19 +2955,17 @@ static int gsmtty_modem_update(struct gsm_dlci *dlci, u8 brk) { - u8 modembits[5]; + u8 modembits[3]; struct gsm_control *ctrl; int len = 2; - if (brk) + modembits[0] = (dlci->addr << 2) | 2 | EA; /* DLCI, Valid, EA */ + modembits[1] = (gsm_encode_modem(dlci) << 1) | EA; + if (brk) { + modembits[2] = (brk << 4) | 2 | EA; /* Length, Break, EA */ len++; - - modembits[0] = len << 1 | EA; /* Data bytes */ - modembits[1] = dlci->addr << 2 | 3; /* DLCI, EA, 1 */ - modembits[2] = gsm_encode_modem(dlci) << 1 | EA; - if (brk) - modembits[3] = brk << 4 | 2 | EA; /* Valid, EA */ - ctrl = gsm_control_send(dlci->gsm, CMD_MSC, modembits, len + 1); + } + ctrl = gsm_control_send(dlci->gsm, CMD_MSC, modembits, len); if (ctrl == NULL) return -ENOMEM; return gsm_control_wait(dlci->gsm, ctrl); diff -u linux-azure-5.4.0/drivers/tty/pty.c linux-azure-5.4.0/drivers/tty/pty.c --- linux-azure-5.4.0/drivers/tty/pty.c +++ linux-azure-5.4.0/drivers/tty/pty.c @@ -111,21 +111,11 @@ static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c) { struct tty_struct *to = tty->link; - unsigned long flags; - if (tty->stopped) + if (tty->stopped || !c) return 0; - if (c > 0) { - spin_lock_irqsave(&to->port->lock, flags); - /* Stuff the data into the input queue of the other end */ - c = tty_insert_flip_string(to->port, buf, c); - spin_unlock_irqrestore(&to->port->lock, flags); - /* And shovel */ - if (c) - tty_flip_buffer_push(to->port); - } - return c; + return tty_insert_flip_string_and_push_buffer(to->port, buf, c); } /** diff -u linux-azure-5.4.0/drivers/tty/serial/8250/8250_dw.c linux-azure-5.4.0/drivers/tty/serial/8250/8250_dw.c --- linux-azure-5.4.0/drivers/tty/serial/8250/8250_dw.c +++ linux-azure-5.4.0/drivers/tty/serial/8250/8250_dw.c @@ -110,12 +110,15 @@ /* Returns once the transmitter is empty or we run out of retries */ static void dw8250_tx_wait_empty(struct uart_port *p) { + struct uart_8250_port *up = up_to_u8250p(p); unsigned int tries = 20000; unsigned int delay_threshold = tries - 1000; unsigned int lsr; while (tries--) { lsr = readb (p->membase + (UART_LSR << p->regshift)); + up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS; + if (lsr & UART_LSR_TEMT) break; @@ -660,7 +663,7 @@ .name = "dw-apb-uart", .pm = &dw8250_pm_ops, .of_match_table = dw8250_of_match, - .acpi_match_table = ACPI_PTR(dw8250_acpi_match), + .acpi_match_table = dw8250_acpi_match, }, .probe = dw8250_probe, .remove = dw8250_remove, diff -u linux-azure-5.4.0/drivers/tty/serial/8250/8250_mtk.c linux-azure-5.4.0/drivers/tty/serial/8250/8250_mtk.c --- linux-azure-5.4.0/drivers/tty/serial/8250/8250_mtk.c +++ linux-azure-5.4.0/drivers/tty/serial/8250/8250_mtk.c @@ -36,6 +36,7 @@ #define MTK_UART_IER_RTSI 0x40 /* Enable RTS Modem status interrupt */ #define MTK_UART_IER_CTSI 0x80 /* Enable CTS Modem status interrupt */ +#define MTK_UART_EFR 38 /* I/O: Extended Features Register */ #define MTK_UART_EFR_EN 0x10 /* Enable enhancement feature */ #define MTK_UART_EFR_RTS 0x40 /* Enable hardware rx flow control */ #define MTK_UART_EFR_CTS 0x80 /* Enable hardware tx flow control */ @@ -52,6 +53,9 @@ #define MTK_UART_TX_TRIGGER 1 #define MTK_UART_RX_TRIGGER MTK_UART_RX_SIZE +#define MTK_UART_XON1 40 /* I/O: Xon character 1 */ +#define MTK_UART_XOFF1 42 /* I/O: Xoff character 1 */ + #ifdef CONFIG_SERIAL_8250_DMA enum dma_rx_status { DMA_RX_START = 0, @@ -92,10 +96,13 @@ struct dma_tx_state state; int copied, total, cnt; unsigned char *ptr; + unsigned long flags; if (data->rx_status == DMA_RX_SHUTDOWN) return; + spin_lock_irqsave(&up->port.lock, flags); + dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state); total = dma->rx_size - state.residue; cnt = total; @@ -119,6 +126,8 @@ tty_flip_buffer_push(tty_port); mtk8250_rx_dma(up); + + spin_unlock_irqrestore(&up->port.lock, flags); } static void mtk8250_rx_dma(struct uart_8250_port *up) @@ -163,7 +172,7 @@ MTK_UART_DMA_EN_RX | MTK_UART_DMA_EN_TX); serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); - serial_out(up, UART_EFR, UART_EFR_ECB); + serial_out(up, MTK_UART_EFR, UART_EFR_ECB); serial_out(up, UART_LCR, lcr); if (dmaengine_slave_config(dma->rxchan, &dma->rxconf) != 0) @@ -226,7 +235,7 @@ int lcr = serial_in(up, UART_LCR); serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); - serial_out(up, UART_EFR, UART_EFR_ECB); + serial_out(up, MTK_UART_EFR, UART_EFR_ECB); serial_out(up, UART_LCR, lcr); lcr = serial_in(up, UART_LCR); @@ -235,7 +244,7 @@ serial_out(up, MTK_UART_ESCAPE_DAT, MTK_UART_ESCAPE_CHAR); serial_out(up, MTK_UART_ESCAPE_EN, 0x00); serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); - serial_out(up, UART_EFR, serial_in(up, UART_EFR) & + serial_out(up, MTK_UART_EFR, serial_in(up, MTK_UART_EFR) & (~(MTK_UART_EFR_HW_FC | MTK_UART_EFR_SW_FC_MASK))); serial_out(up, UART_LCR, lcr); mtk8250_disable_intrs(up, MTK_UART_IER_XOFFI | @@ -249,8 +258,8 @@ serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); /*enable hw flow control*/ - serial_out(up, UART_EFR, MTK_UART_EFR_HW_FC | - (serial_in(up, UART_EFR) & + serial_out(up, MTK_UART_EFR, MTK_UART_EFR_HW_FC | + (serial_in(up, MTK_UART_EFR) & (~(MTK_UART_EFR_HW_FC | MTK_UART_EFR_SW_FC_MASK)))); serial_out(up, UART_LCR, lcr); @@ -264,12 +273,12 @@ serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); /*enable sw flow control */ - serial_out(up, UART_EFR, MTK_UART_EFR_XON1_XOFF1 | - (serial_in(up, UART_EFR) & + serial_out(up, MTK_UART_EFR, MTK_UART_EFR_XON1_XOFF1 | + (serial_in(up, MTK_UART_EFR) & (~(MTK_UART_EFR_HW_FC | MTK_UART_EFR_SW_FC_MASK)))); - serial_out(up, UART_XON1, START_CHAR(port->state->port.tty)); - serial_out(up, UART_XOFF1, STOP_CHAR(port->state->port.tty)); + serial_out(up, MTK_UART_XON1, START_CHAR(port->state->port.tty)); + serial_out(up, MTK_UART_XOFF1, STOP_CHAR(port->state->port.tty)); serial_out(up, UART_LCR, lcr); mtk8250_disable_intrs(up, MTK_UART_IER_CTSI|MTK_UART_IER_RTSI); mtk8250_enable_intrs(up, MTK_UART_IER_XOFFI); diff -u linux-azure-5.4.0/drivers/tty/serial/8250/8250_of.c linux-azure-5.4.0/drivers/tty/serial/8250/8250_of.c --- linux-azure-5.4.0/drivers/tty/serial/8250/8250_of.c +++ linux-azure-5.4.0/drivers/tty/serial/8250/8250_of.c @@ -105,8 +105,17 @@ port->mapsize = resource_size(&resource); /* Check for shifted address mapping */ - if (of_property_read_u32(np, "reg-offset", &prop) == 0) + if (of_property_read_u32(np, "reg-offset", &prop) == 0) { + if (prop >= port->mapsize) { + dev_warn(&ofdev->dev, "reg-offset %u exceeds region size %pa\n", + prop, &port->mapsize); + ret = -EINVAL; + goto err_unprepare; + } + port->mapbase += prop; + port->mapsize -= prop; + } port->iotype = UPIO_MEM; if (of_property_read_u32(np, "reg-io-width", &prop) == 0) { diff -u linux-azure-5.4.0/drivers/tty/serial/8250/8250_pci.c linux-azure-5.4.0/drivers/tty/serial/8250/8250_pci.c --- linux-azure-5.4.0/drivers/tty/serial/8250/8250_pci.c +++ linux-azure-5.4.0/drivers/tty/serial/8250/8250_pci.c @@ -89,7 +89,7 @@ static int setup_port(struct serial_private *priv, struct uart_8250_port *port, - int bar, int offset, int regshift) + u8 bar, unsigned int offset, int regshift) { struct pci_dev *dev = priv->dev; @@ -1351,29 +1351,33 @@ { int scr; int lcr; - int actual_baud; - int tolerance; - for (scr = 5 ; scr <= 15 ; scr++) { - actual_baud = 921600 * 16 / scr; - tolerance = actual_baud / 50; + for (scr = 16; scr > 4; scr--) { + unsigned int maxrate = port->uartclk / scr; + unsigned int divisor = max(maxrate / baud, 1U); + int delta = maxrate / divisor - baud; - if ((baud < actual_baud + tolerance) && - (baud > actual_baud - tolerance)) { + if (baud > maxrate + baud / 50) + continue; + if (delta > baud / 50) + divisor++; + + if (divisor > 0xffff) + continue; + + /* Update delta due to possible divisor change */ + delta = maxrate / divisor - baud; + if (abs(delta) < baud / 50) { lcr = serial_port_in(port, UART_LCR); serial_port_out(port, UART_LCR, lcr | 0x80); - - serial_port_out(port, UART_DLL, 1); - serial_port_out(port, UART_DLM, 0); + serial_port_out(port, UART_DLL, divisor & 0xff); + serial_port_out(port, UART_DLM, divisor >> 8 & 0xff); serial_port_out(port, 2, 16 - scr); serial_port_out(port, UART_LCR, lcr); return; - } else if (baud > actual_baud) { - break; } } - serial8250_do_set_divisor(port, baud, quot, quot_frac); } static int pci_pericom_setup(struct serial_private *priv, const struct pciserial_board *board, @@ -2285,7 +2289,7 @@ .setup = pci_pericom_setup_four_at_eight, }, { - .vendor = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S, + .vendor = PCI_VENDOR_ID_ACCESIO, .device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM232_4, .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, @@ -2293,6 +2297,13 @@ }, { .vendor = PCI_VENDOR_ID_ACCESIO, + .device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .setup = pci_pericom_setup_four_at_eight, + }, + { + .vendor = PCI_VENDOR_ID_ACCESIO, .device = PCI_DEVICE_ID_ACCESIO_MPCIE_ICM232_4, .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, @@ -2896,7 +2907,7 @@ pbn_panacom2, pbn_panacom4, pbn_plx_romulus, - pbn_endrun_2_4000000, + pbn_endrun_2_3906250, pbn_oxsemi, pbn_oxsemi_1_4000000, pbn_oxsemi_2_4000000, @@ -3423,10 +3434,10 @@ * signal now many ports are available * 2 port 952 Uart support */ - [pbn_endrun_2_4000000] = { + [pbn_endrun_2_3906250] = { .flags = FL_BASE0, .num_ports = 2, - .base_baud = 4000000, + .base_baud = 3906250, .uart_offset = 0x200, .first_offset = 0x1000, }, @@ -3763,6 +3774,12 @@ { PCI_VDEVICE(INTEL, 0x0f0c), }, { PCI_VDEVICE(INTEL, 0x228a), }, { PCI_VDEVICE(INTEL, 0x228c), }, + { PCI_VDEVICE(INTEL, 0x4b96), }, + { PCI_VDEVICE(INTEL, 0x4b97), }, + { PCI_VDEVICE(INTEL, 0x4b98), }, + { PCI_VDEVICE(INTEL, 0x4b99), }, + { PCI_VDEVICE(INTEL, 0x4b9a), }, + { PCI_VDEVICE(INTEL, 0x4b9b), }, { PCI_VDEVICE(INTEL, 0x9ce3), }, { PCI_VDEVICE(INTEL, 0x9ce4), }, @@ -3923,6 +3940,7 @@ if (pci_match_id(pci_use_msi, dev)) { dev_dbg(&dev->dev, "Using MSI(-X) interrupts\n"); pci_set_master(dev); + uart.port.flags &= ~UPF_SHARE_IRQ; rc = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_ALL_TYPES); } else { dev_dbg(&dev->dev, "Using legacy interrupts\n"); @@ -4327,7 +4345,7 @@ */ { PCI_VENDOR_ID_ENDRUN, PCI_DEVICE_ID_ENDRUN_1588, PCI_ANY_ID, PCI_ANY_ID, 0, 0, - pbn_endrun_2_4000000 }, + pbn_endrun_2_3906250 }, /* * Quatech cards. These actually have configurable clocks but for * now we just use the default. @@ -5112,8 +5130,30 @@ { PCI_VENDOR_ID_INTASHIELD, PCI_DEVICE_ID_INTASHIELD_IS400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, /* 135a.0dc0 */ pbn_b2_4_115200 }, + /* Brainboxes Devices */ + /* + * Brainboxes UC-101 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0BA1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-235/246 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0AA1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_1_115200 }, /* - * BrainBoxes UC-260 + * Brainboxes UC-257 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0861, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-260/271/701/756 */ { PCI_VENDOR_ID_INTASHIELD, 0x0D21, PCI_ANY_ID, PCI_ANY_ID, @@ -5121,7 +5161,81 @@ pbn_b2_4_115200 }, { PCI_VENDOR_ID_INTASHIELD, 0x0E34, PCI_ANY_ID, PCI_ANY_ID, - PCI_CLASS_COMMUNICATION_MULTISERIAL << 8, 0xffff00, + PCI_CLASS_COMMUNICATION_MULTISERIAL << 8, 0xffff00, + pbn_b2_4_115200 }, + /* + * Brainboxes UC-268 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0841, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, + /* + * Brainboxes UC-275/279 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0881, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_8_115200 }, + /* + * Brainboxes UC-302 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x08E1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-310 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x08C1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-313 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x08A3, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-320/324 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0A61, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_1_115200 }, + /* + * Brainboxes UC-346 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0B02, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, + /* + * Brainboxes UC-357 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0A81, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0A83, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-368 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0C41, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, + /* + * Brainboxes UC-420/431 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0921, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, pbn_b2_4_115200 }, /* * Perle PCI-RAS cards diff -u linux-azure-5.4.0/drivers/tty/serial/8250/8250_port.c linux-azure-5.4.0/drivers/tty/serial/8250/8250_port.c --- linux-azure-5.4.0/drivers/tty/serial/8250/8250_port.c +++ linux-azure-5.4.0/drivers/tty/serial/8250/8250_port.c @@ -125,7 +125,8 @@ .name = "16C950/954", .fifo_size = 128, .tx_loadsz = 128, - .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, + .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01, + .rxtrig_bytes = {16, 32, 112, 120}, /* UART_CAP_EFR breaks billionon CF bluetooth card. */ .flags = UART_CAP_FIFO | UART_CAP_SLEEP, }, @@ -314,7 +315,11 @@ /* Uart divisor latch read */ static int default_serial_dl_read(struct uart_8250_port *up) { - return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8; + /* Assign these in pieces to truncate any bits above 7. */ + unsigned char dll = serial_in(up, UART_DLL); + unsigned char dlm = serial_in(up, UART_DLM); + + return dll | dlm << 8; } /* Uart divisor latch write */ @@ -1258,9 +1263,11 @@ serial_out(up, UART_LCR, 0); serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); - scratch = serial_in(up, UART_IIR) >> 6; - switch (scratch) { + /* Assign this as it is to truncate any bits above 7. */ + scratch = serial_in(up, UART_IIR); + + switch (scratch >> 6) { case 0: autoconfig_8250(up); break; @@ -1469,6 +1476,8 @@ if (em485) { unsigned char lsr = serial_in(p, UART_LSR); + p->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS; + /* * To provide required timeing and allow FIFO transfer, * __stop_tx_rs485() must be called only when both FIFO and @@ -1538,6 +1547,18 @@ if (!(up->port.rs485.flags & SER_RS485_RX_DURING_TX)) serial8250_stop_rx(&up->port); + /* + * While serial8250_em485_handle_stop_tx() is a noop if + * em485->active_timer != &em485->stop_tx_timer, it might happen that + * the timer is still armed and triggers only after the current bunch of + * chars is send and em485->active_timer == &em485->stop_tx_timer again. + * So cancel the timer. There is still a theoretical race condition if + * the timer is already running and only comes around to check for + * em485->active_timer when &em485->stop_tx_timer is armed again. + */ + if (em485->active_timer == &em485->stop_tx_timer) + hrtimer_try_to_cancel(&em485->stop_tx_timer); + em485->active_timer = NULL; mcr = serial8250_in_MCR(up); @@ -2557,6 +2578,21 @@ struct ktermios *old) { unsigned int tolerance = port->uartclk / 100; + unsigned int min; + unsigned int max; + + /* + * Handle magic divisors for baud rates above baud_base on SMSC + * Super I/O chips. Enable custom rates of clk/4 and clk/8, but + * disable divisor values beyond 32767, which are unavailable. + */ + if (port->flags & UPF_MAGIC_MULTIPLIER) { + min = port->uartclk / 16 / UART_DIV_MAX >> 1; + max = (port->uartclk + tolerance) / 4; + } else { + min = port->uartclk / 16 / UART_DIV_MAX; + max = (port->uartclk + tolerance) / 16; + } /* * Ask the core to calculate the divisor for us. @@ -2564,9 +2600,7 @@ * slower than nominal still match standard baud rates without * causing transmission errors. */ - return uart_get_baud_rate(port, termios, old, - port->uartclk / 16 / UART_DIV_MAX, - (port->uartclk + tolerance) / 16); + return uart_get_baud_rate(port, termios, old, min, max); } void @@ -2794,8 +2828,10 @@ case UPIO_MEM32BE: case UPIO_MEM16: case UPIO_MEM: - if (!port->mapbase) + if (!port->mapbase) { + ret = -EINVAL; break; + } if (!request_mem_region(port->mapbase, size, "serial")) { ret = -EBUSY; @@ -3144,15 +3180,20 @@ unsigned int baud, quot, frac = 0; termios.c_cflag = port->cons->cflag; - if (port->state->port.tty && termios.c_cflag == 0) + termios.c_ispeed = port->cons->ispeed; + termios.c_ospeed = port->cons->ospeed; + if (port->state->port.tty && termios.c_cflag == 0) { termios.c_cflag = port->state->port.tty->termios.c_cflag; + termios.c_ispeed = port->state->port.tty->termios.c_ispeed; + termios.c_ospeed = port->state->port.tty->termios.c_ospeed; + } baud = serial8250_get_baud_rate(port, &termios, NULL); quot = serial8250_get_divisor(port, baud, &frac); serial8250_set_divisor(port, baud, quot, frac); serial_port_out(port, UART_LCR, up->lcr); - serial8250_out_MCR(up, UART_MCR_DTR | UART_MCR_RTS); + serial8250_out_MCR(up, up->mcr | UART_MCR_DTR | UART_MCR_RTS); } /* diff -u linux-azure-5.4.0/drivers/tty/serial/amba-pl011.c linux-azure-5.4.0/drivers/tty/serial/amba-pl011.c --- linux-azure-5.4.0/drivers/tty/serial/amba-pl011.c +++ linux-azure-5.4.0/drivers/tty/serial/amba-pl011.c @@ -1335,6 +1335,15 @@ pl011_dma_rx_stop(uap); } +static void pl011_throttle_rx(struct uart_port *port) +{ + unsigned long flags; + + spin_lock_irqsave(&port->lock, flags); + pl011_stop_rx(port); + spin_unlock_irqrestore(&port->lock, flags); +} + static void pl011_enable_ms(struct uart_port *port) { struct uart_amba_port *uap = @@ -1728,9 +1737,10 @@ */ static void pl011_enable_interrupts(struct uart_amba_port *uap) { + unsigned long flags; unsigned int i; - spin_lock_irq(&uap->port.lock); + spin_lock_irqsave(&uap->port.lock, flags); /* Clear out any spuriously appearing RX interrupts */ pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR); @@ -1752,7 +1762,14 @@ if (!pl011_dma_rx_running(uap)) uap->im |= UART011_RXIM; pl011_write(uap->im, uap, REG_IMSC); - spin_unlock_irq(&uap->port.lock); + spin_unlock_irqrestore(&uap->port.lock, flags); +} + +static void pl011_unthrottle_rx(struct uart_port *port) +{ + struct uart_amba_port *uap = container_of(port, struct uart_amba_port, port); + + pl011_enable_interrupts(uap); } static int pl011_startup(struct uart_port *port) @@ -2095,31 +2112,12 @@ } /* - * Release the memory region(s) being used by 'port' - */ -static void pl011_release_port(struct uart_port *port) -{ - release_mem_region(port->mapbase, SZ_4K); -} - -/* - * Request the memory region(s) being used by 'port' - */ -static int pl011_request_port(struct uart_port *port) -{ - return request_mem_region(port->mapbase, SZ_4K, "uart-pl011") - != NULL ? 0 : -EBUSY; -} - -/* * Configure/autoconfigure the port. */ static void pl011_config_port(struct uart_port *port, int flags) { - if (flags & UART_CONFIG_TYPE) { + if (flags & UART_CONFIG_TYPE) port->type = PORT_AMBA; - pl011_request_port(port); - } } /* @@ -2134,6 +2132,8 @@ ret = -EINVAL; if (ser->baud_base < 9600) ret = -EINVAL; + if (port->mapbase != (unsigned long) ser->iomem_base) + ret = -EINVAL; return ret; } @@ -2144,6 +2144,8 @@ .stop_tx = pl011_stop_tx, .start_tx = pl011_start_tx, .stop_rx = pl011_stop_rx, + .throttle = pl011_throttle_rx, + .unthrottle = pl011_unthrottle_rx, .enable_ms = pl011_enable_ms, .break_ctl = pl011_break_ctl, .startup = pl011_startup, @@ -2151,8 +2153,6 @@ .flush_buffer = pl011_dma_flush_buffer, .set_termios = pl011_set_termios, .type = pl011_type, - .release_port = pl011_release_port, - .request_port = pl011_request_port, .config_port = pl011_config_port, .verify_port = pl011_verify_port, #ifdef CONFIG_CONSOLE_POLL @@ -2182,8 +2182,6 @@ .shutdown = sbsa_uart_shutdown, .set_termios = sbsa_uart_set_termios, .type = pl011_type, - .release_port = pl011_release_port, - .request_port = pl011_request_port, .config_port = pl011_config_port, .verify_port = pl011_verify_port, #ifdef CONFIG_CONSOLE_POLL @@ -2770,6 +2768,7 @@ static const struct acpi_device_id sbsa_uart_acpi_match[] = { { "ARMH0011", 0 }, + { "ARMHB000", 0 }, {}, }; MODULE_DEVICE_TABLE(acpi, sbsa_uart_acpi_match); diff -u linux-azure-5.4.0/drivers/tty/serial/atmel_serial.c linux-azure-5.4.0/drivers/tty/serial/atmel_serial.c --- linux-azure-5.4.0/drivers/tty/serial/atmel_serial.c +++ linux-azure-5.4.0/drivers/tty/serial/atmel_serial.c @@ -306,16 +306,16 @@ mode = atmel_uart_readl(port, ATMEL_US_MR); - /* Resetting serial mode to RS232 (0x0) */ - mode &= ~ATMEL_US_USMODE; - - port->rs485 = *rs485conf; - if (rs485conf->flags & SER_RS485_ENABLED) { dev_dbg(port->dev, "Setting UART to RS485\n"); - atmel_port->tx_done_mask = ATMEL_US_TXEMPTY; + if (rs485conf->flags & SER_RS485_RX_DURING_TX) + atmel_port->tx_done_mask = ATMEL_US_TXRDY; + else + atmel_port->tx_done_mask = ATMEL_US_TXEMPTY; + atmel_uart_writel(port, ATMEL_US_TTGR, rs485conf->delay_rts_after_send); + mode &= ~ATMEL_US_USMODE; mode |= ATMEL_US_USMODE_RS485; } else { dev_dbg(port->dev, "Setting UART to RS232\n"); @@ -832,7 +832,7 @@ struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); if (port->x_char && - (atmel_uart_readl(port, ATMEL_US_CSR) & atmel_port->tx_done_mask)) { + (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY)) { atmel_uart_write_char(port, port->x_char); port->icount.tx++; port->x_char = 0; @@ -840,8 +840,7 @@ if (uart_circ_empty(xmit) || uart_tx_stopped(port)) return; - while (atmel_uart_readl(port, ATMEL_US_CSR) & - atmel_port->tx_done_mask) { + while (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY) { atmel_uart_write_char(port, xmit->buf[xmit->tail]); xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); port->icount.tx++; @@ -852,10 +851,20 @@ if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(port); - if (!uart_circ_empty(xmit)) + if (!uart_circ_empty(xmit)) { + /* we still have characters to transmit, so we should continue + * transmitting them when TX is ready, regardless of + * mode or duplexity + */ + atmel_port->tx_done_mask |= ATMEL_US_TXRDY; + /* Enable interrupts */ atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask); + } else { + if (atmel_uart_is_half_duplex(port)) + atmel_port->tx_done_mask &= ~ATMEL_US_TXRDY; + } } static void atmel_complete_tx_dma(void *arg) @@ -1002,6 +1011,13 @@ desc->callback = atmel_complete_tx_dma; desc->callback_param = atmel_port; atmel_port->cookie_tx = dmaengine_submit(desc); + if (dma_submit_error(atmel_port->cookie_tx)) { + dev_err(port->dev, "dma_submit_error %d\n", + atmel_port->cookie_tx); + return; + } + + dma_async_issue_pending(chan); } if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) @@ -1262,6 +1278,13 @@ desc->callback_param = port; atmel_port->desc_rx = desc; atmel_port->cookie_rx = dmaengine_submit(desc); + if (dma_submit_error(atmel_port->cookie_rx)) { + dev_err(port->dev, "dma_submit_error %d\n", + atmel_port->cookie_rx); + goto chan_err; + } + + dma_async_issue_pending(atmel_port->chan_rx); return 0; @@ -2527,8 +2550,7 @@ * Use TXEMPTY for interrupt when rs485 or ISO7816 else TXRDY or * ENDTX|TXBUFE */ - if (port->rs485.flags & SER_RS485_ENABLED || - port->iso7816.flags & SER_ISO7816_ENABLED) + if (atmel_uart_is_half_duplex(port)) atmel_port->tx_done_mask = ATMEL_US_TXEMPTY; else if (atmel_use_pdc_tx(port)) { port->fifosize = PDC_BUFFER_SIZE; diff -u linux-azure-5.4.0/drivers/tty/serial/fsl_lpuart.c linux-azure-5.4.0/drivers/tty/serial/fsl_lpuart.c --- linux-azure-5.4.0/drivers/tty/serial/fsl_lpuart.c +++ linux-azure-5.4.0/drivers/tty/serial/fsl_lpuart.c @@ -233,8 +233,6 @@ /* IMX lpuart has four extra unused regs located at the beginning */ #define IMX_REG_OFF 0x10 -static DEFINE_IDA(fsl_lpuart_ida); - enum lpuart_type { VF610_LPUART, LS1021A_LPUART, @@ -269,7 +267,6 @@ int rx_dma_rng_buf_len; unsigned int dma_tx_nents; wait_queue_head_t dma_wait; - bool id_allocated; }; struct lpuart_soc_data { @@ -1280,9 +1277,9 @@ * Note: UART is assumed to be active high. */ if (rs485->flags & SER_RS485_RTS_ON_SEND) - modem &= ~UARTMODEM_TXRTSPOL; - else if (rs485->flags & SER_RS485_RTS_AFTER_SEND) modem |= UARTMODEM_TXRTSPOL; + else if (rs485->flags & SER_RS485_RTS_AFTER_SEND) + modem &= ~UARTMODEM_TXRTSPOL; } /* Store the new configuration */ @@ -1596,6 +1593,7 @@ if (sport->lpuart_dma_rx_use) { del_timer_sync(&sport->lpuart_timer); lpuart_dma_rx_free(&sport->port); + sport->lpuart_dma_rx_use = false; } if (sport->lpuart_dma_tx_use) { @@ -1604,6 +1602,7 @@ sport->dma_tx_in_progress = false; dmaengine_terminate_all(sport->dma_tx_chan); } + sport->lpuart_dma_tx_use = false; } } @@ -1984,6 +1983,7 @@ uart_update_timeout(port, termios->c_cflag, baud); /* wait transmit engin complete */ + lpuart32_write(&sport->port, 0, UARTMODIR); lpuart32_wait_bit_set(&sport->port, UARTSTAT, UARTSTAT_TC); /* disable transmit and receive */ @@ -2253,6 +2253,9 @@ bd = lpuart32_read(&sport->port, UARTBAUD); bd &= UARTBAUD_SBR_MASK; + if (!bd) + return; + sbr = bd; uartclk = lpuart_get_baud_clk_rate(sport); /* @@ -2411,7 +2414,7 @@ return PTR_ERR(sport->port.membase); sport->port.membase += sdata->reg_off; - sport->port.mapbase = res->start; + sport->port.mapbase = res->start + sdata->reg_off; sport->port.dev = &pdev->dev; sport->port.type = PORT_LPUART; sport->devtype = sdata->devtype; @@ -2447,23 +2450,18 @@ ret = of_alias_get_id(np, "serial"); if (ret < 0) { - ret = ida_simple_get(&fsl_lpuart_ida, 0, UART_NR, GFP_KERNEL); - if (ret < 0) { - dev_err(&pdev->dev, "port line is full, add device failed\n"); - return ret; - } - sport->id_allocated = true; + dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret); + return ret; } if (ret >= ARRAY_SIZE(lpuart_ports)) { dev_err(&pdev->dev, "serial%d out of range\n", ret); - ret = -EINVAL; - goto failed_out_of_range; + return -EINVAL; } sport->port.line = ret; ret = lpuart_enable_clks(sport); if (ret) - goto failed_clock_enable; + return ret; sport->port.uartclk = lpuart_get_baud_clk_rate(sport); lpuart_ports[sport->port.line] = sport; @@ -2513,10 +2511,6 @@ failed_attach_port: failed_irq_request: lpuart_disable_clks(sport); -failed_clock_enable: -failed_out_of_range: - if (sport->id_allocated) - ida_simple_remove(&fsl_lpuart_ida, sport->port.line); return ret; } @@ -2526,9 +2520,6 @@ uart_remove_one_port(&lpuart_reg, &sport->port); - if (sport->id_allocated) - ida_simple_remove(&fsl_lpuart_ida, sport->port.line); - lpuart_disable_clks(sport); if (sport->dma_tx_chan) @@ -2660,7 +2651,6 @@ static void __exit lpuart_serial_exit(void) { - ida_destroy(&fsl_lpuart_ida); platform_driver_unregister(&lpuart_driver); uart_unregister_driver(&lpuart_reg); } diff -u linux-azure-5.4.0/drivers/tty/serial/imx.c linux-azure-5.4.0/drivers/tty/serial/imx.c --- linux-azure-5.4.0/drivers/tty/serial/imx.c +++ linux-azure-5.4.0/drivers/tty/serial/imx.c @@ -1401,7 +1401,7 @@ imx_uart_writel(sport, ucr1, UCR1); ucr4 = imx_uart_readl(sport, UCR4) & ~UCR4_OREN; - if (!sport->dma_is_enabled) + if (!dma_is_inited) ucr4 |= UCR4_OREN; imx_uart_writel(sport, ucr4, UCR4); diff -u linux-azure-5.4.0/drivers/tty/serial/kgdboc.c linux-azure-5.4.0/drivers/tty/serial/kgdboc.c --- linux-azure-5.4.0/drivers/tty/serial/kgdboc.c +++ linux-azure-5.4.0/drivers/tty/serial/kgdboc.c @@ -391,16 +391,16 @@ { if (!opt) { pr_err("config string not provided\n"); - return -EINVAL; + return 1; } if (strlen(opt) >= MAX_CONFIG_LEN) { pr_err("config string too long\n"); - return -ENOSPC; + return 1; } strcpy(config, opt); - return 0; + return 1; } __setup("kgdboc=", kgdboc_option_setup); diff -u linux-azure-5.4.0/drivers/tty/serial/msm_serial.c linux-azure-5.4.0/drivers/tty/serial/msm_serial.c --- linux-azure-5.4.0/drivers/tty/serial/msm_serial.c +++ linux-azure-5.4.0/drivers/tty/serial/msm_serial.c @@ -603,6 +603,9 @@ u32 val; int ret; + if (IS_ENABLED(CONFIG_CONSOLE_POLL)) + return; + if (!dma->chan) return; @@ -1576,6 +1579,7 @@ static void __msm_console_write(struct uart_port *port, const char *s, unsigned int count, bool is_uartdm) { + unsigned long flags; int i; int num_newlines = 0; bool replaced = false; @@ -1593,6 +1597,8 @@ num_newlines++; count += num_newlines; + local_irq_save(flags); + if (port->sysrq) locked = 0; else if (oops_in_progress) @@ -1638,6 +1644,8 @@ if (locked) spin_unlock(&port->lock); + + local_irq_restore(flags); } static void msm_console_write(struct console *co, const char *s, diff -u linux-azure-5.4.0/drivers/tty/serial/mvebu-uart.c linux-azure-5.4.0/drivers/tty/serial/mvebu-uart.c --- linux-azure-5.4.0/drivers/tty/serial/mvebu-uart.c +++ linux-azure-5.4.0/drivers/tty/serial/mvebu-uart.c @@ -164,7 +164,7 @@ st = readl(port->membase + UART_STAT); spin_unlock_irqrestore(&port->lock, flags); - return (st & STAT_TX_FIFO_EMP) ? TIOCSER_TEMT : 0; + return (st & STAT_TX_EMP) ? TIOCSER_TEMT : 0; } static unsigned int mvebu_uart_get_mctrl(struct uart_port *port) @@ -238,6 +238,7 @@ struct tty_port *tport = &port->state->port; unsigned char ch = 0; char flag = 0; + int ret; do { if (status & STAT_RX_RDY(port)) { @@ -250,6 +251,16 @@ port->icount.parity++; } + /* + * For UART2, error bits are not cleared on buffer read. + * This causes interrupt loop and system hang. + */ + if (IS_EXTENDED(port) && (status & STAT_BRK_ERR)) { + ret = readl(port->membase + UART_STAT); + ret |= STAT_BRK_ERR; + writel(ret, port->membase + UART_STAT); + } + if (status & STAT_BRK_DET) { port->icount.brk++; status &= ~(STAT_FRM_ERR | STAT_PAR_ERR); @@ -443,14 +454,13 @@ } } -static int mvebu_uart_baud_rate_set(struct uart_port *port, unsigned int baud) +static unsigned int mvebu_uart_baud_rate_set(struct uart_port *port, unsigned int baud) { - struct mvebu_uart *mvuart = to_mvuart(port); unsigned int d_divisor, m_divisor; u32 brdv, osamp; - if (IS_ERR(mvuart->clk)) - return -PTR_ERR(mvuart->clk); + if (!port->uartclk) + return 0; /* * The baudrate is derived from the UART clock thanks to two divisors: @@ -463,7 +473,7 @@ * makes use of D to configure the desired baudrate. */ m_divisor = OSAMP_DEFAULT_DIVISOR; - d_divisor = DIV_ROUND_UP(port->uartclk, baud * m_divisor); + d_divisor = DIV_ROUND_CLOSEST(port->uartclk, baud * m_divisor); brdv = readl(port->membase + UART_BRDV); brdv &= ~BRDV_BAUD_MASK; @@ -474,7 +484,7 @@ osamp &= ~OSAMP_DIVISORS_MASK; writel(osamp, port->membase + UART_OSAMP); - return 0; + return DIV_ROUND_CLOSEST(port->uartclk, d_divisor * m_divisor); } static void mvebu_uart_set_termios(struct uart_port *port, @@ -482,7 +492,7 @@ struct ktermios *old) { unsigned long flags; - unsigned int baud; + unsigned int baud, min_baud, max_baud; spin_lock_irqsave(&port->lock, flags); @@ -501,20 +511,21 @@ port->ignore_status_mask |= STAT_RX_RDY(port) | STAT_BRK_ERR; /* + * Maximal divisor is 1023 * 16 when using default (x16) scheme. * Maximum achievable frequency with simple baudrate divisor is 230400. * Since the error per bit frame would be of more than 15%, achieving * higher frequencies would require to implement the fractional divisor * feature. */ - baud = uart_get_baud_rate(port, termios, old, 0, 230400); - if (mvebu_uart_baud_rate_set(port, baud)) { - /* No clock available, baudrate cannot be changed */ - if (old) - baud = uart_get_baud_rate(port, old, NULL, 0, 230400); - } else { - tty_termios_encode_baud_rate(termios, baud, baud); - uart_update_timeout(port, termios->c_cflag, baud); - } + min_baud = DIV_ROUND_UP(port->uartclk, 1023 * 16); + max_baud = 230400; + + baud = uart_get_baud_rate(port, termios, old, min_baud, max_baud); + baud = mvebu_uart_baud_rate_set(port, baud); + + /* In case baudrate cannot be changed, report previous old value */ + if (baud == 0 && old) + baud = tty_termios_baud_rate(old); /* Only the following flag changes are supported */ if (old) { @@ -525,6 +536,11 @@ termios->c_cflag |= CS8; } + if (baud != 0) { + tty_termios_encode_baud_rate(termios, baud, baud); + uart_update_timeout(port, termios->c_cflag, baud); + } + spin_unlock_irqrestore(&port->lock, flags); } diff -u linux-azure-5.4.0/drivers/tty/serial/owl-uart.c linux-azure-5.4.0/drivers/tty/serial/owl-uart.c --- linux-azure-5.4.0/drivers/tty/serial/owl-uart.c +++ linux-azure-5.4.0/drivers/tty/serial/owl-uart.c @@ -695,6 +695,7 @@ owl_port->port.uartclk = clk_get_rate(owl_port->clk); if (owl_port->port.uartclk == 0) { dev_err(&pdev->dev, "clock rate is zero\n"); + clk_disable_unprepare(owl_port->clk); return -EINVAL; } owl_port->port.flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP | UPF_LOW_LATENCY; diff -u linux-azure-5.4.0/drivers/tty/serial/pch_uart.c linux-azure-5.4.0/drivers/tty/serial/pch_uart.c --- linux-azure-5.4.0/drivers/tty/serial/pch_uart.c +++ linux-azure-5.4.0/drivers/tty/serial/pch_uart.c @@ -635,22 +635,6 @@ return 0; } -static int pop_tx_x(struct eg20t_port *priv, unsigned char *buf) -{ - int ret = 0; - struct uart_port *port = &priv->port; - - if (port->x_char) { - dev_dbg(priv->port.dev, "%s:X character send %02x (%lu)\n", - __func__, port->x_char, jiffies); - buf[0] = port->x_char; - port->x_char = 0; - ret = 1; - } - - return ret; -} - static int dma_push_rx(struct eg20t_port *priv, int size) { int room; @@ -900,9 +884,10 @@ fifo_size = max(priv->fifo_size, 1); tx_empty = 1; - if (pop_tx_x(priv, xmit->buf)) { - pch_uart_hal_write(priv, xmit->buf, 1); + if (port->x_char) { + pch_uart_hal_write(priv, &port->x_char, 1); port->icount.tx++; + port->x_char = 0; tx_empty = 0; fifo_size--; } @@ -957,9 +942,11 @@ } fifo_size = max(priv->fifo_size, 1); - if (pop_tx_x(priv, xmit->buf)) { - pch_uart_hal_write(priv, xmit->buf, 1); + + if (port->x_char) { + pch_uart_hal_write(priv, &port->x_char, 1); port->icount.tx++; + port->x_char = 0; fifo_size--; } diff -u linux-azure-5.4.0/drivers/tty/serial/samsung.c linux-azure-5.4.0/drivers/tty/serial/samsung.c --- linux-azure-5.4.0/drivers/tty/serial/samsung.c +++ linux-azure-5.4.0/drivers/tty/serial/samsung.c @@ -238,8 +238,7 @@ /* Enable tx dma mode */ ucon = rd_regl(port, S3C2410_UCON); ucon &= ~(S3C64XX_UCON_TXBURST_MASK | S3C64XX_UCON_TXMODE_MASK); - ucon |= (dma_get_cache_alignment() >= 16) ? - S3C64XX_UCON_TXBURST_16 : S3C64XX_UCON_TXBURST_1; + ucon |= S3C64XX_UCON_TXBURST_1; ucon |= S3C64XX_UCON_TXMODE_DMA; wr_regl(port, S3C2410_UCON, ucon); @@ -512,7 +511,7 @@ S3C64XX_UCON_DMASUS_EN | S3C64XX_UCON_TIMEOUT_EN | S3C64XX_UCON_RXMODE_MASK); - ucon |= S3C64XX_UCON_RXBURST_16 | + ucon |= S3C64XX_UCON_RXBURST_1 | 0xf << S3C64XX_UCON_TIMEOUT_SHIFT | S3C64XX_UCON_EMPTYINT_EN | S3C64XX_UCON_TIMEOUT_EN | @@ -761,11 +760,8 @@ goto out; } - if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) { - spin_unlock(&port->lock); + if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(port); - spin_lock(&port->lock); - } if (uart_circ_empty(xmit)) s3c24xx_serial_stop_tx(port); diff -u linux-azure-5.4.0/drivers/tty/serial/serial-tegra.c linux-azure-5.4.0/drivers/tty/serial/serial-tegra.c --- linux-azure-5.4.0/drivers/tty/serial/serial-tegra.c +++ linux-azure-5.4.0/drivers/tty/serial/serial-tegra.c @@ -519,7 +519,7 @@ count = tup->tx_bytes_requested - state.residue; async_tx_ack(tup->tx_dma_desc); spin_lock_irqsave(&tup->uport.lock, flags); - xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1); + uart_xmit_advance(&tup->uport, count); tup->tx_in_progress = 0; if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(&tup->uport); @@ -606,7 +606,6 @@ static void tegra_uart_stop_tx(struct uart_port *u) { struct tegra_uart_port *tup = to_tegra_uport(u); - struct circ_buf *xmit = &tup->uport.state->xmit; struct dma_tx_state state; unsigned int count; @@ -617,7 +616,7 @@ dmaengine_tx_status(tup->tx_dma_chan, tup->tx_cookie, &state); count = tup->tx_bytes_requested - state.residue; async_tx_ack(tup->tx_dma_desc); - xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1); + uart_xmit_advance(&tup->uport, count); tup->tx_in_progress = 0; } @@ -1028,9 +1027,11 @@ if (tup->cdata->fifo_mode_enable_status) { ret = tegra_uart_wait_fifo_mode_enabled(tup); - dev_err(tup->uport.dev, "FIFO mode not enabled\n"); - if (ret < 0) + if (ret < 0) { + dev_err(tup->uport.dev, + "Failed to enable FIFO mode: %d\n", ret); return ret; + } } else { /* * For all tegra devices (up to t210), there is a hardware @@ -1492,7 +1493,7 @@ .fifo_mode_enable_status = false, .uart_max_port = 5, .max_dma_burst_bytes = 4, - .error_tolerance_low_range = 0, + .error_tolerance_low_range = -4, .error_tolerance_high_range = 4, }; @@ -1503,7 +1504,7 @@ .fifo_mode_enable_status = false, .uart_max_port = 5, .max_dma_burst_bytes = 4, - .error_tolerance_low_range = 0, + .error_tolerance_low_range = -4, .error_tolerance_high_range = 4, }; diff -u linux-azure-5.4.0/drivers/tty/serial/serial_core.c linux-azure-5.4.0/drivers/tty/serial/serial_core.c --- linux-azure-5.4.0/drivers/tty/serial/serial_core.c +++ linux-azure-5.4.0/drivers/tty/serial/serial_core.c @@ -160,7 +160,7 @@ int RTS_after_send = !!(uport->rs485.flags & SER_RS485_RTS_AFTER_SEND); if (raise) { - if (rs485_on && !RTS_after_send) { + if (rs485_on && RTS_after_send) { uart_set_mctrl(uport, TIOCM_DTR); uart_clear_mctrl(uport, TIOCM_RTS); } else { @@ -169,7 +169,7 @@ } else { unsigned int clear = TIOCM_DTR; - clear |= (!rs485_on || !RTS_after_send) ? TIOCM_RTS : 0; + clear |= (!rs485_on || RTS_after_send) ? TIOCM_RTS : 0; uart_clear_mctrl(uport, clear); } } @@ -220,7 +220,11 @@ if (retval == 0) { if (uart_console(uport) && uport->cons->cflag) { tty->termios.c_cflag = uport->cons->cflag; + tty->termios.c_ispeed = uport->cons->ispeed; + tty->termios.c_ospeed = uport->cons->ospeed; uport->cons->cflag = 0; + uport->cons->ispeed = 0; + uport->cons->ospeed = 0; } /* * Initialise the hardware port settings. @@ -288,8 +292,11 @@ /* * Turn off DTR and RTS early. */ - if (uport && uart_console(uport) && tty) + if (uport && uart_console(uport) && tty) { uport->cons->cflag = tty->termios.c_cflag; + uport->cons->ispeed = tty->termios.c_ispeed; + uport->cons->ospeed = tty->termios.c_ospeed; + } if (!tty || C_HUPCL(tty)) uart_port_dtr_rts(uport, 0); @@ -1566,6 +1573,7 @@ { struct uart_state *state = container_of(port, struct uart_state, port); struct uart_port *uport = uart_port_check(state); + char *buf; /* * At this point, we stop accepting input. To do this, we @@ -1587,8 +1595,18 @@ */ tty_port_set_suspended(port, 0); - uart_change_pm(state, UART_PM_STATE_OFF); + /* + * Free the transmit buffer. + */ + spin_lock_irq(&uport->lock); + buf = state->xmit.buf; + state->xmit.buf = NULL; + spin_unlock_irq(&uport->lock); + if (buf) + free_page((unsigned long)buf); + + uart_change_pm(state, UART_PM_STATE_OFF); } static void uart_wait_until_sent(struct tty_struct *tty, int timeout) @@ -2110,8 +2128,11 @@ * Allow the setting of the UART parameters with a NULL console * too: */ - if (co) + if (co) { co->cflag = termios.c_cflag; + co->ispeed = termios.c_ispeed; + co->ospeed = termios.c_ospeed; + } return 0; } @@ -2245,6 +2266,8 @@ */ memset(&termios, 0, sizeof(struct ktermios)); termios.c_cflag = uport->cons->cflag; + termios.c_ispeed = uport->cons->ispeed; + termios.c_ospeed = uport->cons->ospeed; /* * If that's unset, use the tty termios setting. @@ -2372,7 +2395,8 @@ * We probably don't need a spinlock around this, but */ spin_lock_irqsave(&port->lock, flags); - port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR); + port->mctrl &= TIOCM_DTR; + port->ops->set_mctrl(port, port->mctrl); spin_unlock_irqrestore(&port->lock, flags); /* diff -u linux-azure-5.4.0/drivers/tty/serial/serial_txx9.c linux-azure-5.4.0/drivers/tty/serial/serial_txx9.c --- linux-azure-5.4.0/drivers/tty/serial/serial_txx9.c +++ linux-azure-5.4.0/drivers/tty/serial/serial_txx9.c @@ -648,6 +648,8 @@ case CS6: /* not supported */ case CS8: cval |= TXX9_SILCR_UMODE_8BIT; + termios->c_cflag &= ~CSIZE; + termios->c_cflag |= CS8; break; } diff -u linux-azure-5.4.0/drivers/tty/serial/sh-sci.c linux-azure-5.4.0/drivers/tty/serial/sh-sci.c --- linux-azure-5.4.0/drivers/tty/serial/sh-sci.c +++ linux-azure-5.4.0/drivers/tty/serial/sh-sci.c @@ -613,6 +613,14 @@ ctrl &= ~SCSCR_TIE; serial_port_out(port, SCSCR, ctrl); + +#ifdef CONFIG_SERIAL_SH_SCI_DMA + if (to_sci_port(port)->chan_tx && + !dma_submit_error(to_sci_port(port)->cookie_tx)) { + dmaengine_terminate_async(to_sci_port(port)->chan_tx); + to_sci_port(port)->cookie_tx = -EINVAL; + } +#endif } static void sci_start_rx(struct uart_port *port) @@ -1755,6 +1763,10 @@ /* Handle BREAKs */ sci_handle_breaks(port); + + /* drop invalid character received before break was detected */ + serial_port_in(port, SCxRDR); + sci_clear_SCxSR(port, SCxSR_BREAK_CLEAR(port)); return IRQ_HANDLED; @@ -1834,7 +1846,8 @@ ret = sci_er_interrupt(irq, ptr); /* Break Interrupt */ - if ((ssr_status & SCxSR_BRK(port)) && err_enabled) + if (s->irqs[SCIx_ERI_IRQ] != s->irqs[SCIx_BRI_IRQ] && + (ssr_status & SCxSR_BRK(port)) && err_enabled) ret = sci_br_interrupt(irq, ptr); /* Overrun Interrupt */ @@ -2382,8 +2395,12 @@ int best_clk = -1; unsigned long flags; - if ((termios->c_cflag & CSIZE) == CS7) + if ((termios->c_cflag & CSIZE) == CS7) { smr_val |= SCSMR_CHR; + } else { + termios->c_cflag &= ~CSIZE; + termios->c_cflag |= CS8; + } if (termios->c_cflag & PARENB) smr_val |= SCSMR_PE; if (termios->c_cflag & PARODD) diff -u linux-azure-5.4.0/drivers/tty/serial/sifive.c linux-azure-5.4.0/drivers/tty/serial/sifive.c --- linux-azure-5.4.0/drivers/tty/serial/sifive.c +++ linux-azure-5.4.0/drivers/tty/serial/sifive.c @@ -667,12 +667,16 @@ int rate; char nstop; - if ((termios->c_cflag & CSIZE) != CS8) + if ((termios->c_cflag & CSIZE) != CS8) { dev_err_once(ssp->port.dev, "only 8-bit words supported\n"); + termios->c_cflag &= ~CSIZE; + termios->c_cflag |= CS8; + } if (termios->c_iflag & (INPCK | PARMRK)) dev_err_once(ssp->port.dev, "parity checking not supported\n"); if (termios->c_iflag & BRKINT) dev_err_once(ssp->port.dev, "BREAK detection not supported\n"); + termios->c_iflag &= ~(INPCK|PARMRK|BRKINT); /* Set number of stop bits */ nstop = (termios->c_cflag & CSTOPB) ? 2 : 1; @@ -973,7 +977,7 @@ /* Set up clock divider */ ssp->clkin_rate = clk_get_rate(ssp->clk); ssp->baud_rate = SIFIVE_DEFAULT_BAUD_RATE; - ssp->port.uartclk = ssp->baud_rate * 16; + ssp->port.uartclk = ssp->clkin_rate; __ssp_update_div(ssp); platform_set_drvdata(pdev, ssp); diff -u linux-azure-5.4.0/drivers/tty/serial/stm32-usart.c linux-azure-5.4.0/drivers/tty/serial/stm32-usart.c --- linux-azure-5.4.0/drivers/tty/serial/stm32-usart.c +++ linux-azure-5.4.0/drivers/tty/serial/stm32-usart.c @@ -73,6 +73,8 @@ *cr3 |= USART_CR3_DEM; over8 = *cr1 & USART_CR1_OVER8; + *cr1 &= ~(USART_CR1_DEDT_MASK | USART_CR1_DEAT_MASK); + if (over8) rs485_deat_dedt = delay_ADE * baud * 8; else @@ -536,7 +538,7 @@ { struct circ_buf *xmit = &port->state->xmit; - if (uart_circ_empty(xmit)) + if (uart_circ_empty(xmit) && !port->x_char) return; stm32_transmit_chars(port); @@ -745,13 +747,22 @@ * CS8 or (CS7 + parity), 8 bits word aka [M1:M0] = 0b00 * M0 and M1 already cleared by cr1 initialization. */ - if (bits == 9) + if (bits == 9) { cr1 |= USART_CR1_M0; - else if ((bits == 7) && cfg->has_7bits_data) + } else if ((bits == 7) && cfg->has_7bits_data) { cr1 |= USART_CR1_M1; - else if (bits != 8) + } else if (bits != 8) { dev_dbg(port->dev, "Unsupported data bits config: %u bits\n" , bits); + cflag &= ~CSIZE; + cflag |= CS8; + termios->c_cflag = cflag; + bits = 8; + if (cflag & PARENB) { + bits++; + cr1 |= USART_CR1_M0; + } + } if (ofs->rtor != UNDEF_REG && (stm32_port->rx_ch || stm32_port->fifoen)) { diff -u linux-azure-5.4.0/drivers/tty/serial/xilinx_uartps.c linux-azure-5.4.0/drivers/tty/serial/xilinx_uartps.c --- linux-azure-5.4.0/drivers/tty/serial/xilinx_uartps.c +++ linux-azure-5.4.0/drivers/tty/serial/xilinx_uartps.c @@ -369,6 +369,8 @@ isrstatus &= ~CDNS_UART_IXR_TXEMPTY; } + isrstatus &= port->read_status_mask; + isrstatus &= ~port->ignore_status_mask; /* * Skip RX processing if RX is disabled as RXEMPTY will never be set * as read bytes will not be removed from the FIFO. @@ -595,9 +597,10 @@ if (uart_circ_empty(&port->state->xmit)) return; + writel(CDNS_UART_IXR_TXEMPTY, port->membase + CDNS_UART_ISR); + cdns_uart_handle_tx(port); - writel(CDNS_UART_IXR_TXEMPTY, port->membase + CDNS_UART_ISR); /* Enable the TX Empty interrupt */ writel(CDNS_UART_IXR_TXEMPTY, port->membase + CDNS_UART_IER); } diff -u linux-azure-5.4.0/drivers/tty/synclink_gt.c linux-azure-5.4.0/drivers/tty/synclink_gt.c --- linux-azure-5.4.0/drivers/tty/synclink_gt.c +++ linux-azure-5.4.0/drivers/tty/synclink_gt.c @@ -137,37 +137,14 @@ */ static struct tty_driver *serial_driver; -static int open(struct tty_struct *tty, struct file * filp); -static void close(struct tty_struct *tty, struct file * filp); -static void hangup(struct tty_struct *tty); -static void set_termios(struct tty_struct *tty, struct ktermios *old_termios); - -static int write(struct tty_struct *tty, const unsigned char *buf, int count); -static int put_char(struct tty_struct *tty, unsigned char ch); -static void send_xchar(struct tty_struct *tty, char ch); static void wait_until_sent(struct tty_struct *tty, int timeout); -static int write_room(struct tty_struct *tty); -static void flush_chars(struct tty_struct *tty); static void flush_buffer(struct tty_struct *tty); -static void tx_hold(struct tty_struct *tty); static void tx_release(struct tty_struct *tty); -static int ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg); -static int chars_in_buffer(struct tty_struct *tty); -static void throttle(struct tty_struct * tty); -static void unthrottle(struct tty_struct * tty); -static int set_break(struct tty_struct *tty, int break_state); - /* - * generic HDLC support and callbacks + * generic HDLC support */ -#if SYNCLINK_GENERIC_HDLC #define dev_to_port(D) (dev_to_hdlc(D)->priv) -static void hdlcdev_tx_done(struct slgt_info *info); -static void hdlcdev_rx(struct slgt_info *info, char *buf, int size); -static int hdlcdev_init(struct slgt_info *info); -static void hdlcdev_exit(struct slgt_info *info); -#endif /* @@ -186,9 +163,6 @@ wait_queue_entry_t wait; unsigned int data; }; -static void init_cond_wait(struct cond_wait *w, unsigned int data); -static void add_cond_wait(struct cond_wait **head, struct cond_wait *w); -static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w); static void flush_cond_wait(struct cond_wait **head); /* @@ -443,12 +417,8 @@ static void program_hw(struct slgt_info *info); static void change_params(struct slgt_info *info); -static int register_test(struct slgt_info *info); -static int irq_test(struct slgt_info *info); -static int loopback_test(struct slgt_info *info); static int adapter_test(struct slgt_info *info); -static void reset_adapter(struct slgt_info *info); static void reset_port(struct slgt_info *info); static void async_mode(struct slgt_info *info); static void sync_mode(struct slgt_info *info); @@ -457,41 +427,23 @@ static void rx_start(struct slgt_info *info); static void reset_rbufs(struct slgt_info *info); static void free_rbufs(struct slgt_info *info, unsigned int first, unsigned int last); -static void rdma_reset(struct slgt_info *info); static bool rx_get_frame(struct slgt_info *info); static bool rx_get_buf(struct slgt_info *info); static void tx_start(struct slgt_info *info); static void tx_stop(struct slgt_info *info); static void tx_set_idle(struct slgt_info *info); -static unsigned int free_tbuf_count(struct slgt_info *info); static unsigned int tbuf_bytes(struct slgt_info *info); static void reset_tbufs(struct slgt_info *info); static void tdma_reset(struct slgt_info *info); static bool tx_load(struct slgt_info *info, const char *buf, unsigned int count); -static void get_signals(struct slgt_info *info); -static void set_signals(struct slgt_info *info); -static void enable_loopback(struct slgt_info *info); +static void get_gtsignals(struct slgt_info *info); +static void set_gtsignals(struct slgt_info *info); static void set_rate(struct slgt_info *info, u32 data_rate); -static int bh_action(struct slgt_info *info); -static void bh_handler(struct work_struct *work); static void bh_transmit(struct slgt_info *info); -static void isr_serial(struct slgt_info *info); -static void isr_rdma(struct slgt_info *info); static void isr_txeom(struct slgt_info *info, unsigned short status); -static void isr_tdma(struct slgt_info *info); - -static int alloc_dma_bufs(struct slgt_info *info); -static void free_dma_bufs(struct slgt_info *info); -static int alloc_desc(struct slgt_info *info); -static void free_desc(struct slgt_info *info); -static int alloc_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count); -static void free_bufs(struct slgt_info *info, struct slgt_desc *bufs, int count); - -static int alloc_tmp_rbuf(struct slgt_info *info); -static void free_tmp_rbuf(struct slgt_info *info); static void tx_timeout(struct timer_list *t); static void rx_timeout(struct timer_list *t); @@ -509,10 +461,6 @@ static int rx_enable(struct slgt_info *info, int enable); static int modem_input_wait(struct slgt_info *info,int arg); static int wait_mgsl_event(struct slgt_info *info, int __user *mask_ptr); -static int tiocmget(struct tty_struct *tty); -static int tiocmset(struct tty_struct *tty, - unsigned int set, unsigned int clear); -static int set_break(struct tty_struct *tty, int break_state); static int get_interface(struct slgt_info *info, int __user *if_mode); static int set_interface(struct slgt_info *info, int if_mode); static int set_gpio(struct slgt_info *info, struct gpio_desc __user *gpio); @@ -526,9 +474,6 @@ /* * driver functions */ -static void add_device(struct slgt_info *info); -static void device_init(int adapter_num, struct pci_dev *pdev); -static int claim_resources(struct slgt_info *info); static void release_resources(struct slgt_info *info); /* @@ -776,7 +721,7 @@ if ((old_termios->c_cflag & CBAUD) && !C_BAUD(tty)) { info->signals &= ~(SerialSignal_RTS | SerialSignal_DTR); spin_lock_irqsave(&info->lock,flags); - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); } @@ -786,7 +731,7 @@ if (!C_CRTSCTS(tty) || !tty_throttled(tty)) info->signals |= SerialSignal_RTS; spin_lock_irqsave(&info->lock,flags); - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); } @@ -1237,7 +1182,7 @@ /* output current serial signal states */ spin_lock_irqsave(&info->lock,flags); - get_signals(info); + get_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); stat_buf[0] = 0; @@ -1337,7 +1282,7 @@ if (C_CRTSCTS(tty)) { spin_lock_irqsave(&info->lock,flags); info->signals &= ~SerialSignal_RTS; - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); } } @@ -1362,7 +1307,7 @@ if (C_CRTSCTS(tty)) { spin_lock_irqsave(&info->lock,flags); info->signals |= SerialSignal_RTS; - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); } } @@ -1534,7 +1479,7 @@ /* inform generic HDLC layer of current DCD status */ spin_lock_irqsave(&info->lock, flags); - get_signals(info); + get_gtsignals(info); spin_unlock_irqrestore(&info->lock, flags); if (info->signals & SerialSignal_DCD) netif_carrier_on(dev); @@ -1807,6 +1752,8 @@ */ static void hdlcdev_exit(struct slgt_info *info) { + if (!info->netdev) + return; unregister_hdlc_device(info->netdev); free_netdev(info->netdev); info->netdev = NULL; @@ -2290,7 +2237,7 @@ if (info->params.mode != MGSL_MODE_ASYNC && info->drop_rts_on_tx_done) { info->signals &= ~SerialSignal_RTS; info->drop_rts_on_tx_done = false; - set_signals(info); + set_gtsignals(info); } #if SYNCLINK_GENERIC_HDLC @@ -2455,7 +2402,7 @@ if (!info->port.tty || info->port.tty->termios.c_cflag & HUPCL) { info->signals &= ~(SerialSignal_RTS | SerialSignal_DTR); - set_signals(info); + set_gtsignals(info); } flush_cond_wait(&info->gpio_wait_q); @@ -2483,7 +2430,7 @@ else async_mode(info); - set_signals(info); + set_gtsignals(info); info->dcd_chkcount = 0; info->cts_chkcount = 0; @@ -2491,7 +2438,7 @@ info->dsr_chkcount = 0; slgt_irq_on(info, IRQ_DCD | IRQ_CTS | IRQ_DSR | IRQ_RI); - get_signals(info); + get_gtsignals(info); if (info->netcount || (info->port.tty && info->port.tty->termios.c_cflag & CREAD)) @@ -2735,7 +2682,7 @@ spin_lock_irqsave(&info->lock,flags); /* return immediately if state matches requested events */ - get_signals(info); + get_gtsignals(info); s = info->signals; events = mask & @@ -3153,7 +3100,7 @@ unsigned long flags; spin_lock_irqsave(&info->lock,flags); - get_signals(info); + get_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); result = ((info->signals & SerialSignal_RTS) ? TIOCM_RTS:0) + @@ -3192,7 +3139,7 @@ info->signals &= ~SerialSignal_DTR; spin_lock_irqsave(&info->lock,flags); - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); return 0; } @@ -3203,7 +3150,7 @@ struct slgt_info *info = container_of(port, struct slgt_info, port); spin_lock_irqsave(&info->lock,flags); - get_signals(info); + get_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); return (info->signals & SerialSignal_DCD) ? 1 : 0; } @@ -3218,7 +3165,7 @@ info->signals |= SerialSignal_RTS | SerialSignal_DTR; else info->signals &= ~(SerialSignal_RTS | SerialSignal_DTR); - set_signals(info); + set_gtsignals(info); spin_unlock_irqrestore(&info->lock,flags); } @@ -4017,10 +3964,10 @@ if (info->params.mode != MGSL_MODE_ASYNC) { if (info->params.flags & HDLC_FLAG_AUTO_RTS) { - get_signals(info); + get_gtsignals(info); if (!(info->signals & SerialSignal_RTS)) { info->signals |= SerialSignal_RTS; - set_signals(info); + set_gtsignals(info); info->drop_rts_on_tx_done = true; } } @@ -4074,7 +4021,7 @@ rx_stop(info); info->signals &= ~(SerialSignal_RTS | SerialSignal_DTR); - set_signals(info); + set_gtsignals(info); slgt_irq_off(info, IRQ_ALL | IRQ_MASTER); } @@ -4496,7 +4443,7 @@ /* * get state of V24 status (input) signals */ -static void get_signals(struct slgt_info *info) +static void get_gtsignals(struct slgt_info *info) { unsigned short status = rd_reg16(info, SSR); @@ -4558,7 +4505,7 @@ /* * set state of V24 control (output) signals */ -static void set_signals(struct slgt_info *info) +static void set_gtsignals(struct slgt_info *info) { unsigned char val = rd_reg8(info, VCR); if (info->signals & SerialSignal_DTR) diff -u linux-azure-5.4.0/drivers/tty/tty_io.c linux-azure-5.4.0/drivers/tty/tty_io.c --- linux-azure-5.4.0/drivers/tty/tty_io.c +++ linux-azure-5.4.0/drivers/tty/tty_io.c @@ -2176,8 +2176,6 @@ * Locking: * Called functions take tty_ldiscs_lock * current->signal->tty check is safe without locks - * - * FIXME: may race normal receive processing */ static int tiocsti(struct tty_struct *tty, char __user *p) @@ -2193,8 +2191,10 @@ ld = tty_ldisc_ref_wait(tty); if (!ld) return -EIO; + tty_buffer_lock_exclusive(tty->port); if (ld->ops->receive_buf) ld->ops->receive_buf(tty, &ch, &mbz, 1); + tty_buffer_unlock_exclusive(tty->port); tty_ldisc_deref(ld); return 0; } diff -u linux-azure-5.4.0/drivers/tty/vt/keyboard.c linux-azure-5.4.0/drivers/tty/vt/keyboard.c --- linux-azure-5.4.0/drivers/tty/vt/keyboard.c +++ linux-azure-5.4.0/drivers/tty/vt/keyboard.c @@ -310,7 +310,7 @@ static void put_queue(struct vc_data *vc, int ch) { tty_insert_flip_char(&vc->port, ch, 0); - tty_schedule_flip(&vc->port); + tty_flip_buffer_push(&vc->port); } static void puts_queue(struct vc_data *vc, char *cp) @@ -319,7 +319,7 @@ tty_insert_flip_char(&vc->port, *cp, 0); cp++; } - tty_schedule_flip(&vc->port); + tty_flip_buffer_push(&vc->port); } static void applkey(struct vc_data *vc, int key, char mode) @@ -564,7 +564,7 @@ static void fn_send_intr(struct vc_data *vc) { tty_insert_flip_char(&vc->port, 0, TTY_BREAK); - tty_schedule_flip(&vc->port); + tty_flip_buffer_push(&vc->port); } static void fn_scroll_forw(struct vc_data *vc) diff -u linux-azure-5.4.0/drivers/tty/vt/vt.c linux-azure-5.4.0/drivers/tty/vt/vt.c --- linux-azure-5.4.0/drivers/tty/vt/vt.c +++ linux-azure-5.4.0/drivers/tty/vt/vt.c @@ -355,7 +355,7 @@ /* allocate everything in one go */ memsize = cols * rows * sizeof(char32_t); memsize += rows * sizeof(char32_t *); - p = vmalloc(memsize); + p = vzalloc(memsize); if (!p) return NULL; @@ -1226,8 +1226,25 @@ new_row_size = new_cols << 1; new_screen_size = new_row_size * new_rows; - if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) - return 0; + if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) { + /* + * This function is being called here to cover the case + * where the userspace calls the FBIOPUT_VSCREENINFO twice, + * passing the same fb_var_screeninfo containing the fields + * yres/xres equal to a number non-multiple of vc_font.height + * and yres_virtual/xres_virtual equal to number lesser than the + * vc_font.height and yres/xres. + * In the second call, the struct fb_var_screeninfo isn't + * being modified by the underlying driver because of the + * if above, and this causes the fbcon_display->vrows to become + * negative and it eventually leads to out-of-bound + * access by the imageblit function. + * To give the correct values to the struct and to not have + * to deal with possible errors from the code below, we call + * the resize_screen here as well. + */ + return resize_screen(vc, new_cols, new_rows, user); + } if (new_screen_size > KMALLOC_MAX_SIZE || !new_screen_size) return -EINVAL; @@ -1831,7 +1848,7 @@ tty_insert_flip_char(port, *p, 0); p++; } - tty_schedule_flip(port); + tty_flip_buffer_push(port); } static void cursor_report(struct vc_data *vc, struct tty_struct *tty) @@ -2081,7 +2098,7 @@ enum { ESnormal, ESesc, ESsquare, ESgetpars, ESfunckey, EShash, ESsetG0, ESsetG1, ESpercent, EScsiignore, ESnonstd, - ESpalette, ESosc }; + ESpalette, ESosc, ESapc, ESpm, ESdcs }; /* console_lock is held (except via vc_init()) */ static void reset_terminal(struct vc_data *vc, int do_clear) @@ -2135,20 +2152,28 @@ csi_J(vc, 2); } +/* is this state an ANSI control string? */ +static bool ansi_control_string(unsigned int state) +{ + if (state == ESosc || state == ESapc || state == ESpm || state == ESdcs) + return true; + return false; +} + /* console_lock is held */ static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c) { /* * Control characters can be used in the _middle_ - * of an escape sequence. + * of an escape sequence, aside from ANSI control strings. */ - if (vc->vc_state == ESosc && c>=8 && c<=13) /* ... except for OSC */ + if (ansi_control_string(vc->vc_state) && c >= 8 && c <= 13) return; switch (c) { case 0: return; case 7: - if (vc->vc_state == ESosc) + if (ansi_control_string(vc->vc_state)) vc->vc_state = ESnormal; else if (vc->vc_bell_duration) kd_mksound(vc->vc_bell_pitch, vc->vc_bell_duration); @@ -2207,6 +2232,12 @@ case ']': vc->vc_state = ESnonstd; return; + case '_': + vc->vc_state = ESapc; + return; + case '^': + vc->vc_state = ESpm; + return; case '%': vc->vc_state = ESpercent; return; @@ -2223,6 +2254,9 @@ case 'H': vc->vc_tab_stop[7 & (vc->vc_x >> 5)] |= (1 << (vc->vc_x & 31)); return; + case 'P': + vc->vc_state = ESdcs; + return; case 'Z': respond_ID(tty); return; @@ -2542,8 +2576,14 @@ vc->vc_translate = set_translate(vc->vc_G1_charset, vc); vc->vc_state = ESnormal; return; + case ESapc: + return; case ESosc: return; + case ESpm: + return; + case ESdcs: + return; default: vc->vc_state = ESnormal; } @@ -4528,16 +4568,8 @@ if (op->data && font.charcount > op->charcount) rc = -ENOSPC; - if (!(op->flags & KD_FONT_FLAG_OLD)) { - if (font.width > op->width || font.height > op->height) - rc = -ENOSPC; - } else { - if (font.width != 8) - rc = -EIO; - else if ((op->height && font.height > op->height) || - font.height > 32) - rc = -ENOSPC; - } + if (font.width > op->width || font.height > op->height) + rc = -ENOSPC; if (rc) goto out; @@ -4565,7 +4597,7 @@ return -EINVAL; if (op->charcount > 512) return -EINVAL; - if (op->width <= 0 || op->width > 32 || op->height > 32) + if (op->width <= 0 || op->width > 32 || !op->height || op->height > 32) return -EINVAL; size = (op->width+7)/8 * 32 * op->charcount; if (size > max_font_size) @@ -4575,31 +4607,6 @@ if (IS_ERR(font.data)) return PTR_ERR(font.data); - if (!op->height) { /* Need to guess font height [compat] */ - int h, i; - u8 *charmap = font.data; - - /* - * If from KDFONTOP ioctl, don't allow things which can be done - * in userland,so that we can get rid of this soon - */ - if (!(op->flags & KD_FONT_FLAG_OLD)) { - kfree(font.data); - return -EINVAL; - } - - for (h = 32; h > 0; h--) - for (i = 0; i < op->charcount; i++) - if (charmap[32*i+h-1]) - goto nonzero; - - kfree(font.data); - return -EINVAL; - - nonzero: - op->height = h; - } - font.charcount = op->charcount; font.width = op->width; font.height = op->height; @@ -4607,9 +4614,11 @@ console_lock(); if (vc->vc_mode != KD_TEXT) rc = -EINVAL; - else if (vc->vc_sw->con_font_set) + else if (vc->vc_sw->con_font_set) { + if (vc_is_sel(vc)) + clear_selection(); rc = vc->vc_sw->con_font_set(vc, &font, op->flags); - else + } else rc = -ENOSYS; console_unlock(); kfree(font.data); @@ -4636,9 +4645,11 @@ console_unlock(); return -EINVAL; } - if (vc->vc_sw->con_font_default) + if (vc->vc_sw->con_font_default) { + if (vc_is_sel(vc)) + clear_selection(); rc = vc->vc_sw->con_font_default(vc, &font, s); - else + } else rc = -ENOSYS; console_unlock(); if (!rc) { diff -u linux-azure-5.4.0/drivers/tty/vt/vt_ioctl.c linux-azure-5.4.0/drivers/tty/vt/vt_ioctl.c --- linux-azure-5.4.0/drivers/tty/vt/vt_ioctl.c +++ linux-azure-5.4.0/drivers/tty/vt/vt_ioctl.c @@ -241,48 +241,6 @@ #define GPLAST 0x3df #define GPNUM (GPLAST - GPFIRST + 1) - - -static inline int -do_fontx_ioctl(struct vc_data *vc, int cmd, struct consolefontdesc __user *user_cfd, int perm, struct console_font_op *op) -{ - struct consolefontdesc cfdarg; - int i; - - if (copy_from_user(&cfdarg, user_cfd, sizeof(struct consolefontdesc))) - return -EFAULT; - - switch (cmd) { - case PIO_FONTX: - if (!perm) - return -EPERM; - op->op = KD_FONT_OP_SET; - op->flags = KD_FONT_FLAG_OLD; - op->width = 8; - op->height = cfdarg.charheight; - op->charcount = cfdarg.charcount; - op->data = cfdarg.chardata; - return con_font_op(vc, op); - - case GIO_FONTX: - op->op = KD_FONT_OP_GET; - op->flags = KD_FONT_FLAG_OLD; - op->width = 8; - op->height = cfdarg.charheight; - op->charcount = cfdarg.charcount; - op->data = cfdarg.chardata; - i = con_font_op(vc, op); - if (i) - return i; - cfdarg.charheight = op->height; - cfdarg.charcount = op->charcount; - if (copy_to_user(user_cfd, &cfdarg, sizeof(struct consolefontdesc))) - return -EFAULT; - return 0; - } - return -EINVAL; -} - static inline int do_unimap_ioctl(int cmd, struct unimapdesc __user *user_ud, int perm, struct vc_data *vc) { @@ -484,16 +442,19 @@ ret = -EINVAL; goto out; } - /* FIXME: this needs the console lock extending */ - if (vc->vc_mode == (unsigned char) arg) + console_lock(); + if (vc->vc_mode == (unsigned char) arg) { + console_unlock(); break; + } vc->vc_mode = (unsigned char) arg; - if (console != fg_console) + if (console != fg_console) { + console_unlock(); break; + } /* * explicitly blank/unblank the screen if switching modes */ - console_lock(); if (arg == KD_TEXT) do_unblank_screen(1); else @@ -688,6 +649,7 @@ ret = -ENXIO; else { arg--; + arg = array_index_nospec(arg, MAX_NR_CONSOLES); console_lock(); ret = vc_allocate(arg); console_unlock(); @@ -712,9 +674,9 @@ if (vsa.console == 0 || vsa.console > MAX_NR_CONSOLES) ret = -ENXIO; else { - vsa.console = array_index_nospec(vsa.console, - MAX_NR_CONSOLES + 1); vsa.console--; + vsa.console = array_index_nospec(vsa.console, + MAX_NR_CONSOLES); console_lock(); ret = vc_allocate(vsa.console); if (ret == 0) { @@ -915,30 +877,6 @@ break; } - case PIO_FONT: { - if (!perm) - return -EPERM; - op.op = KD_FONT_OP_SET; - op.flags = KD_FONT_FLAG_OLD | KD_FONT_FLAG_DONT_RECALC; /* Compatibility */ - op.width = 8; - op.height = 0; - op.charcount = 256; - op.data = up; - ret = con_font_op(vc, &op); - break; - } - - case GIO_FONT: { - op.op = KD_FONT_OP_GET; - op.flags = KD_FONT_FLAG_OLD; - op.width = 8; - op.height = 32; - op.charcount = 256; - op.data = up; - ret = con_font_op(vc, &op); - break; - } - case PIO_CMAP: if (!perm) ret = -EPERM; @@ -950,36 +888,6 @@ ret = con_get_cmap(up); break; - case PIO_FONTX: - case GIO_FONTX: - ret = do_fontx_ioctl(vc, cmd, up, perm, &op); - break; - - case PIO_FONTRESET: - { - if (!perm) - return -EPERM; - -#ifdef BROKEN_GRAPHICS_PROGRAMS - /* With BROKEN_GRAPHICS_PROGRAMS defined, the default - font is not saved. */ - ret = -ENOSYS; - break; -#else - { - op.op = KD_FONT_OP_SET_DEFAULT; - op.data = NULL; - ret = con_font_op(vc, &op); - if (ret) - break; - console_lock(); - con_set_default_unimap(vc); - console_unlock(); - break; - } -#endif - } - case KDFONTOP: { if (copy_from_user(&op, up, sizeof(op))) { ret = -EFAULT; @@ -1093,54 +1001,6 @@ #ifdef CONFIG_COMPAT -struct compat_consolefontdesc { - unsigned short charcount; /* characters in font (256 or 512) */ - unsigned short charheight; /* scan lines per character (1-32) */ - compat_caddr_t chardata; /* font data in expanded form */ -}; - -static inline int -compat_fontx_ioctl(struct vc_data *vc, int cmd, - struct compat_consolefontdesc __user *user_cfd, - int perm, struct console_font_op *op) -{ - struct compat_consolefontdesc cfdarg; - int i; - - if (copy_from_user(&cfdarg, user_cfd, sizeof(struct compat_consolefontdesc))) - return -EFAULT; - - switch (cmd) { - case PIO_FONTX: - if (!perm) - return -EPERM; - op->op = KD_FONT_OP_SET; - op->flags = KD_FONT_FLAG_OLD; - op->width = 8; - op->height = cfdarg.charheight; - op->charcount = cfdarg.charcount; - op->data = compat_ptr(cfdarg.chardata); - return con_font_op(vc, op); - - case GIO_FONTX: - op->op = KD_FONT_OP_GET; - op->flags = KD_FONT_FLAG_OLD; - op->width = 8; - op->height = cfdarg.charheight; - op->charcount = cfdarg.charcount; - op->data = compat_ptr(cfdarg.chardata); - i = con_font_op(vc, op); - if (i) - return i; - cfdarg.charheight = op->height; - cfdarg.charcount = op->charcount; - if (copy_to_user(user_cfd, &cfdarg, sizeof(struct compat_consolefontdesc))) - return -EFAULT; - return 0; - } - return -EINVAL; -} - struct compat_console_font_op { compat_uint_t op; /* operation code KD_FONT_OP_* */ compat_uint_t flags; /* KD_FONT_FLAG_* */ @@ -1217,9 +1077,6 @@ /* * these need special handlers for incompatible data structures */ - case PIO_FONTX: - case GIO_FONTX: - return compat_fontx_ioctl(vc, cmd, up, perm, &op); case KDFONTOP: return compat_kdfontop_ioctl(up, perm, &op, vc); diff -u linux-azure-5.4.0/drivers/usb/cdns3/ep0.c linux-azure-5.4.0/drivers/usb/cdns3/ep0.c --- linux-azure-5.4.0/drivers/usb/cdns3/ep0.c +++ linux-azure-5.4.0/drivers/usb/cdns3/ep0.c @@ -736,6 +736,7 @@ request->actual = 0; priv_dev->status_completion_no_call = true; priv_dev->pending_status_request = request; + usb_gadget_set_state(&priv_dev->gadget, USB_STATE_CONFIGURED); spin_unlock_irqrestore(&priv_dev->lock, flags); /* diff -u linux-azure-5.4.0/drivers/usb/cdns3/gadget.c linux-azure-5.4.0/drivers/usb/cdns3/gadget.c --- linux-azure-5.4.0/drivers/usb/cdns3/gadget.c +++ linux-azure-5.4.0/drivers/usb/cdns3/gadget.c @@ -549,9 +549,9 @@ trace_cdns3_wa2(priv_ep, "removes eldest request"); kfree(priv_req->request.buf); + list_del_init(&priv_req->list); cdns3_gadget_ep_free_request(&priv_ep->endpoint, &priv_req->request); - list_del_init(&priv_req->list); --priv_ep->wa2_counter; if (!chain) @@ -807,6 +807,19 @@ cdns3_wa1_restore_cycle_bit(priv_ep); } +static void cdns3_rearm_drdy_if_needed(struct cdns3_endpoint *priv_ep) +{ + struct cdns3_device *priv_dev = priv_ep->cdns3_dev; + + if (priv_dev->dev_ver < DEV_VER_V3) + return; + + if (readl(&priv_dev->regs->ep_sts) & EP_STS_TRBERR) { + writel(EP_STS_TRBERR, &priv_dev->regs->ep_sts); + writel(EP_CMD_DRDY, &priv_dev->regs->ep_cmd); + } +} + /** * cdns3_ep_run_transfer - start transfer on no-default endpoint hardware * @priv_ep: endpoint object @@ -1003,6 +1016,7 @@ /*clearing TRBERR and EP_STS_DESCMIS before seting DRDY*/ writel(EP_STS_TRBERR | EP_STS_DESCMIS, &priv_dev->regs->ep_sts); writel(EP_CMD_DRDY, &priv_dev->regs->ep_cmd); + cdns3_rearm_drdy_if_needed(priv_ep); trace_cdns3_doorbell_epx(priv_ep->name, readl(&priv_dev->regs->ep_traddr)); } @@ -1245,6 +1259,7 @@ ep_cfg &= ~EP_CFG_ENABLE; writel(ep_cfg, &priv_dev->regs->ep_cfg); priv_ep->flags &= ~EP_QUIRK_ISO_OUT_EN; + priv_ep->flags |= EP_UPDATE_EP_TRBADDR; } cdns3_transfer_completed(priv_dev, priv_ep); } else if (!(priv_ep->flags & EP_STALLED) && @@ -1531,7 +1546,7 @@ else mask = BIT(priv_ep->num); - if (priv_ep->type != USB_ENDPOINT_XFER_ISOC) { + if (priv_ep->type != USB_ENDPOINT_XFER_ISOC && !priv_ep->dir) { cdns3_set_register_bit(®s->tdl_from_trb, mask); cdns3_set_register_bit(®s->tdl_beh, mask); cdns3_set_register_bit(®s->tdl_beh2, mask); @@ -1569,15 +1584,13 @@ case USB_ENDPOINT_XFER_INT: ep_cfg = EP_CFG_EPTYPE(USB_ENDPOINT_XFER_INT); - if ((priv_dev->dev_ver == DEV_VER_V2 && !priv_ep->dir) || - priv_dev->dev_ver > DEV_VER_V2) + if (priv_dev->dev_ver >= DEV_VER_V2 && !priv_ep->dir) ep_cfg |= EP_CFG_TDL_CHK; break; case USB_ENDPOINT_XFER_BULK: ep_cfg = EP_CFG_EPTYPE(USB_ENDPOINT_XFER_BULK); - if ((priv_dev->dev_ver == DEV_VER_V2 && !priv_ep->dir) || - priv_dev->dev_ver > DEV_VER_V2) + if (priv_dev->dev_ver >= DEV_VER_V2 && !priv_ep->dir) ep_cfg |= EP_CFG_TDL_CHK; break; default: @@ -2154,6 +2167,7 @@ struct usb_request *request; struct cdns3_request *priv_req; struct cdns3_trb *trb = NULL; + struct cdns3_trb trb_tmp; int ret; int val; @@ -2163,8 +2177,10 @@ if (request) { priv_req = to_cdns3_request(request); trb = priv_req->trb; - if (trb) + if (trb) { + trb_tmp = *trb; trb->control = trb->control ^ TRB_CYCLE; + } } writel(EP_CMD_CSTALL | EP_CMD_EPRST, &priv_dev->regs->ep_cmd); @@ -2179,7 +2195,8 @@ if (request) { if (trb) - trb->control = trb->control ^ TRB_CYCLE; + *trb = trb_tmp; + cdns3_rearm_transfer(priv_ep, 1); } @@ -2706,8 +2723,10 @@ pm_runtime_get_sync(cdns->dev); ret = cdns3_gadget_start(cdns); - if (ret) + if (ret) { + pm_runtime_put_sync(cdns->dev); return ret; + } /* * Because interrupt line can be shared with other components in diff -u linux-azure-5.4.0/drivers/usb/chipidea/core.c linux-azure-5.4.0/drivers/usb/chipidea/core.c --- linux-azure-5.4.0/drivers/usb/chipidea/core.c +++ linux-azure-5.4.0/drivers/usb/chipidea/core.c @@ -534,7 +534,7 @@ return 0; } -static irqreturn_t ci_irq(int irq, void *data) +static irqreturn_t ci_irq_handler(int irq, void *data) { struct ci_hdrc *ci = data; irqreturn_t ret = IRQ_NONE; @@ -587,6 +587,15 @@ return ret; } +static void ci_irq(struct ci_hdrc *ci) +{ + unsigned long flags; + + local_irq_save(flags); + ci_irq_handler(ci->irq, ci); + local_irq_restore(flags); +} + static int ci_cable_notifier(struct notifier_block *nb, unsigned long event, void *ptr) { @@ -596,7 +605,7 @@ cbl->connected = event; cbl->changed = true; - ci_irq(ci->irq, ci); + ci_irq(ci); return NOTIFY_DONE; } @@ -634,7 +643,7 @@ if (cable) { cable->changed = true; cable->connected = false; - ci_irq(ci->irq, ci); + ci_irq(ci); spin_unlock_irqrestore(&ci->lock, flags); if (ci->wq && role != USB_ROLE_NONE) flush_workqueue(ci->wq); @@ -652,7 +661,7 @@ if (cable) { cable->changed = true; cable->connected = true; - ci_irq(ci->irq, ci); + ci_irq(ci); } spin_unlock_irqrestore(&ci->lock, flags); pm_runtime_put_sync(ci->dev); @@ -1156,7 +1165,7 @@ } } - ret = devm_request_irq(dev, ci->irq, ci_irq, IRQF_SHARED, + ret = devm_request_irq(dev, ci->irq, ci_irq_handler, IRQF_SHARED, ci->platdata->name, ci); if (ret) goto stop; @@ -1277,11 +1286,11 @@ if (!IS_ERR(cable_id->edev) && ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) - ci_irq(ci->irq, ci); + ci_irq(ci); if (!IS_ERR(cable_vbus->edev) && ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) - ci_irq(ci->irq, ci); + ci_irq(ci); } static int ci_controller_resume(struct device *dev) diff -u linux-azure-5.4.0/drivers/usb/chipidea/host.c linux-azure-5.4.0/drivers/usb/chipidea/host.c --- linux-azure-5.4.0/drivers/usb/chipidea/host.c +++ linux-azure-5.4.0/drivers/usb/chipidea/host.c @@ -233,18 +233,26 @@ ) { struct ehci_hcd *ehci = hcd_to_ehci(hcd); + unsigned int ports = HCS_N_PORTS(ehci->hcs_params); u32 __iomem *status_reg; - u32 temp; + u32 temp, port_index; unsigned long flags; int retval = 0; struct device *dev = hcd->self.controller; struct ci_hdrc *ci = dev_get_drvdata(dev); - status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1]; + port_index = wIndex & 0xff; + port_index -= (port_index > 0); + status_reg = &ehci->regs->port_status[port_index]; spin_lock_irqsave(&ehci->lock, flags); if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) { + if (!wIndex || wIndex > ports) { + retval = -EPIPE; + goto done; + } + temp = ehci_readl(ehci, status_reg); if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) { retval = -EPIPE; @@ -273,7 +281,7 @@ ehci_writel(ehci, temp, status_reg); } - set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports); + set_bit(port_index, &ehci->suspended_ports); goto done; } diff -u linux-azure-5.4.0/drivers/usb/class/cdc-acm.c linux-azure-5.4.0/drivers/usb/class/cdc-acm.c --- linux-azure-5.4.0/drivers/usb/class/cdc-acm.c +++ linux-azure-5.4.0/drivers/usb/class/cdc-acm.c @@ -339,6 +339,9 @@ acm->iocount.overrun++; spin_unlock_irqrestore(&acm->read_lock, flags); + if (newctrl & ACM_CTRL_BRK) + tty_flip_buffer_push(&acm->port); + if (difference) wake_up_all(&acm->wioctl); @@ -474,11 +477,16 @@ static void acm_process_read_urb(struct acm *acm, struct urb *urb) { + unsigned long flags; + if (!urb->actual_length) return; + spin_lock_irqsave(&acm->read_lock, flags); tty_insert_flip_string(&acm->port, urb->transfer_buffer, urb->actual_length); + spin_unlock_irqrestore(&acm->read_lock, flags); + tty_flip_buffer_push(&acm->port); } @@ -725,7 +733,8 @@ { struct acm *acm = container_of(port, struct acm, port); - acm_release_minor(acm); + if (acm->minor != ACM_MINOR_INVALID) + acm_release_minor(acm); usb_put_intf(acm->control); kfree(acm->country_codes); kfree(acm); @@ -1356,8 +1365,10 @@ usb_get_intf(acm->control); /* undone in destruct() */ minor = acm_alloc_minor(acm); - if (minor < 0) + if (minor < 0) { + acm->minor = ACM_MINOR_INVALID; goto alloc_fail1; + } acm->minor = minor; acm->dev = usb_dev; @@ -1832,6 +1843,9 @@ { USB_DEVICE(0x09d8, 0x0320), /* Elatec GmbH TWN3 */ .driver_info = NO_UNION_NORMAL, /* has misplaced union descriptor */ }, + { USB_DEVICE(0x0c26, 0x0020), /* Icom ICF3400 Serie */ + .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ + }, { USB_DEVICE(0x0ca6, 0xa050), /* Castles VEGA3000 */ .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ }, @@ -1974,6 +1988,11 @@ .driver_info = IGNORE_DEVICE, }, + /* Exclude Heimann Sensor GmbH USB appset demo */ + { USB_DEVICE(0x32a7, 0x0000), + .driver_info = IGNORE_DEVICE, + }, + /* control interfaces without any protocol set */ { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM, USB_CDC_PROTO_NONE) }, diff -u linux-azure-5.4.0/drivers/usb/class/cdc-acm.h linux-azure-5.4.0/drivers/usb/class/cdc-acm.h --- linux-azure-5.4.0/drivers/usb/class/cdc-acm.h +++ linux-azure-5.4.0/drivers/usb/class/cdc-acm.h @@ -22,6 +22,8 @@ #define ACM_TTY_MAJOR 166 #define ACM_TTY_MINORS 256 +#define ACM_MINOR_INVALID ACM_TTY_MINORS + /* * Requests. */ diff -u linux-azure-5.4.0/drivers/usb/class/cdc-wdm.c linux-azure-5.4.0/drivers/usb/class/cdc-wdm.c --- linux-azure-5.4.0/drivers/usb/class/cdc-wdm.c +++ linux-azure-5.4.0/drivers/usb/class/cdc-wdm.c @@ -755,6 +755,7 @@ poison_urbs(desc); spin_lock_irq(&desc->iuspin); desc->resp_count = 0; + clear_bit(WDM_RESPONDING, &desc->flags); spin_unlock_irq(&desc->iuspin); desc->manage_power(desc->intf, 0); unpoison_urbs(desc); diff -u linux-azure-5.4.0/drivers/usb/core/config.c linux-azure-5.4.0/drivers/usb/core/config.c --- linux-azure-5.4.0/drivers/usb/core/config.c +++ linux-azure-5.4.0/drivers/usb/core/config.c @@ -409,7 +409,7 @@ * the USB-2 spec requires such endpoints to have wMaxPacketSize = 0 * (see the end of section 5.6.3), so don't warn about them. */ - maxp = usb_endpoint_maxp(&endpoint->desc); + maxp = le16_to_cpu(endpoint->desc.wMaxPacketSize); if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) { dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid wMaxPacketSize 0\n", cfgno, inum, asnum, d->bEndpointAddress); @@ -425,9 +425,9 @@ maxpacket_maxes = full_speed_maxpacket_maxes; break; case USB_SPEED_HIGH: - /* Bits 12..11 are allowed only for HS periodic endpoints */ + /* Multiple-transactions bits are allowed only for HS periodic endpoints */ if (usb_endpoint_xfer_int(d) || usb_endpoint_xfer_isoc(d)) { - i = maxp & (BIT(12) | BIT(11)); + i = maxp & USB_EP_MAXP_MULT_MASK; maxp &= ~i; } /* fallthrough */ diff -u linux-azure-5.4.0/drivers/usb/core/hcd.c linux-azure-5.4.0/drivers/usb/core/hcd.c --- linux-azure-5.4.0/drivers/usb/core/hcd.c +++ linux-azure-5.4.0/drivers/usb/core/hcd.c @@ -753,6 +753,7 @@ { struct urb *urb; int length; + int status; unsigned long flags; char buffer[6]; /* Any root hubs with > 31 ports? */ @@ -770,11 +771,17 @@ if (urb) { clear_bit(HCD_FLAG_POLL_PENDING, &hcd->flags); hcd->status_urb = NULL; + if (urb->transfer_buffer_length >= length) { + status = 0; + } else { + status = -EOVERFLOW; + length = urb->transfer_buffer_length; + } urb->actual_length = length; memcpy(urb->transfer_buffer, buffer, length); usb_hcd_unlink_urb_from_ep(hcd, urb); - usb_hcd_giveback_urb(hcd, urb, 0); + usb_hcd_giveback_urb(hcd, urb, status); } else { length = 0; set_bit(HCD_FLAG_POLL_PENDING, &hcd->flags); @@ -1560,6 +1567,13 @@ urb->hcpriv = NULL; INIT_LIST_HEAD(&urb->urb_list); atomic_dec(&urb->use_count); + /* + * Order the write of urb->use_count above before the read + * of urb->reject below. Pairs with the memory barriers in + * usb_kill_urb() and usb_poison_urb(). + */ + smp_mb__after_atomic(); + atomic_dec(&urb->dev->urbnum); if (atomic_read(&urb->reject)) wake_up(&usb_kill_urb_queue); @@ -1655,6 +1669,13 @@ usb_anchor_resume_wakeups(anchor); atomic_dec(&urb->use_count); + /* + * Order the write of urb->use_count above before the read + * of urb->reject below. Pairs with the memory barriers in + * usb_kill_urb() and usb_poison_urb(). + */ + smp_mb__after_atomic(); + if (unlikely(atomic_read(&urb->reject))) wake_up(&usb_kill_urb_queue); usb_put_urb(urb); @@ -1667,7 +1688,6 @@ spin_lock_irq(&bh->lock); bh->running = true; - restart: list_replace_init(&bh->head, &local_list); spin_unlock_irq(&bh->lock); @@ -1681,10 +1701,17 @@ bh->completing_ep = NULL; } - /* check if there are new URBs to giveback */ + /* + * giveback new URBs next time to prevent this function + * from not exiting for a long time. + */ spin_lock_irq(&bh->lock); - if (!list_empty(&bh->head)) - goto restart; + if (!list_empty(&bh->head)) { + if (bh->high_prio) + tasklet_hi_schedule(&bh->bh); + else + tasklet_schedule(&bh->bh); + } bh->running = false; spin_unlock_irq(&bh->lock); } @@ -1709,7 +1736,7 @@ void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status) { struct giveback_urb_bh *bh; - bool running, high_prio_bh; + bool running; /* pass status to tasklet via unlinked */ if (likely(!urb->unlinked)) @@ -1720,13 +1747,10 @@ return; } - if (usb_pipeisoc(urb->pipe) || usb_pipeint(urb->pipe)) { + if (usb_pipeisoc(urb->pipe) || usb_pipeint(urb->pipe)) bh = &hcd->high_prio_bh; - high_prio_bh = true; - } else { + else bh = &hcd->low_prio_bh; - high_prio_bh = false; - } spin_lock(&bh->lock); list_add_tail(&urb->urb_list, &bh->head); @@ -1735,7 +1759,7 @@ if (running) ; - else if (high_prio_bh) + else if (bh->high_prio) tasklet_hi_schedule(&bh->bh); else tasklet_schedule(&bh->bh); @@ -2622,6 +2646,26 @@ } /** + * usb_stop_hcd - Halt the HCD + * @hcd: the usb_hcd that has to be halted + * + * Stop the root-hub polling timer and invoke the HCD's ->stop callback. + */ +static void usb_stop_hcd(struct usb_hcd *hcd) +{ + hcd->rh_pollable = 0; + clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); + del_timer_sync(&hcd->rh_timer); + + hcd->driver->stop(hcd); + hcd->state = HC_STATE_HALT; + + /* In case the HCD restarted the timer, stop it again. */ + clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); + del_timer_sync(&hcd->rh_timer); +} + +/** * usb_add_hcd - finish generic HCD structure initialization and register * @hcd: the usb_hcd structure to initialize * @irqnum: Interrupt line to allocate @@ -2636,6 +2680,7 @@ { int retval; struct usb_device *rhdev; + struct usb_hcd *shared_hcd; if (!hcd->skip_phy_initialization && usb_hcd_is_primary_hcd(hcd)) { hcd->phy_roothub = usb_phy_roothub_alloc(hcd->self.sysdev); @@ -2774,6 +2819,7 @@ /* initialize tasklets */ init_giveback_urb_bh(&hcd->high_prio_bh); + hcd->high_prio_bh.high_prio = true; init_giveback_urb_bh(&hcd->low_prio_bh); /* enable irqs just before we start the controller, @@ -2792,24 +2838,31 @@ goto err_hcd_driver_start; } + /* starting here, usbcore will pay attention to the shared HCD roothub */ + shared_hcd = hcd->shared_hcd; + if (!usb_hcd_is_primary_hcd(hcd) && shared_hcd && HCD_DEFER_RH_REGISTER(shared_hcd)) { + retval = register_root_hub(shared_hcd); + if (retval != 0) + goto err_register_root_hub; + + if (shared_hcd->uses_new_polling && HCD_POLL_RH(shared_hcd)) + usb_hcd_poll_rh_status(shared_hcd); + } + /* starting here, usbcore will pay attention to this root hub */ - retval = register_root_hub(hcd); - if (retval != 0) - goto err_register_root_hub; + if (!HCD_DEFER_RH_REGISTER(hcd)) { + retval = register_root_hub(hcd); + if (retval != 0) + goto err_register_root_hub; - if (hcd->uses_new_polling && HCD_POLL_RH(hcd)) - usb_hcd_poll_rh_status(hcd); + if (hcd->uses_new_polling && HCD_POLL_RH(hcd)) + usb_hcd_poll_rh_status(hcd); + } return retval; err_register_root_hub: - hcd->rh_pollable = 0; - clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); - del_timer_sync(&hcd->rh_timer); - hcd->driver->stop(hcd); - hcd->state = HC_STATE_HALT; - clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); - del_timer_sync(&hcd->rh_timer); + usb_stop_hcd(hcd); err_hcd_driver_start: if (usb_hcd_is_primary_hcd(hcd) && hcd->irq > 0) free_irq(irqnum, hcd); @@ -2841,6 +2894,7 @@ void usb_remove_hcd(struct usb_hcd *hcd) { struct usb_device *rhdev = hcd->self.root_hub; + bool rh_registered; dev_info(hcd->self.controller, "remove, state %x\n", hcd->state); @@ -2851,6 +2905,7 @@ dev_dbg(hcd->self.controller, "roothub graceful disconnect\n"); spin_lock_irq (&hcd_root_hub_lock); + rh_registered = hcd->rh_registered; hcd->rh_registered = 0; spin_unlock_irq (&hcd_root_hub_lock); @@ -2860,7 +2915,8 @@ cancel_work_sync(&hcd->died_work); mutex_lock(&usb_bus_idr_lock); - usb_disconnect(&rhdev); /* Sets rhdev to NULL */ + if (rh_registered) + usb_disconnect(&rhdev); /* Sets rhdev to NULL */ mutex_unlock(&usb_bus_idr_lock); /* @@ -2878,16 +2934,7 @@ * interrupt occurs), but usb_hcd_poll_rh_status() won't invoke * the hub_status_data() callback. */ - hcd->rh_pollable = 0; - clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); - del_timer_sync(&hcd->rh_timer); - - hcd->driver->stop(hcd); - hcd->state = HC_STATE_HALT; - - /* In case the HCD restarted the timer, stop it again. */ - clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); - del_timer_sync(&hcd->rh_timer); + usb_stop_hcd(hcd); if (usb_hcd_is_primary_hcd(hcd)) { if (hcd->irq > 0) diff -u linux-azure-5.4.0/drivers/usb/core/hub.c linux-azure-5.4.0/drivers/usb/core/hub.c --- linux-azure-5.4.0/drivers/usb/core/hub.c +++ linux-azure-5.4.0/drivers/usb/core/hub.c @@ -39,11 +39,14 @@ #define USB_VENDOR_GENESYS_LOGIC 0x05e3 #define USB_VENDOR_SMSC 0x0424 #define USB_PRODUCT_USB5534B 0x5534 +#define USB_VENDOR_CYPRESS 0x04b4 +#define USB_PRODUCT_CY7C65632 0x6570 #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01 #define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02 #define USB_TP_TRANSMISSION_DELAY 40 /* ns */ #define USB_TP_TRANSMISSION_DELAY_MAX 65535 /* ns */ +#define USB_PING_RESPONSE_TIME 400 /* ns */ /* Protect struct usb_device->state and ->children members * Note: Both are also protected by ->dev.sem, except that ->state can @@ -178,8 +181,9 @@ } /* - * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from - * either U1 or U2. + * Set the Maximum Exit Latency (MEL) for the host to wakup up the path from + * U1/U2, send a PING to the device and receive a PING_RESPONSE. + * See USB 3.1 section C.1.5.2 */ static void usb_set_lpm_mel(struct usb_device *udev, struct usb3_lpm_parameters *udev_lpm_params, @@ -189,35 +193,37 @@ unsigned int hub_exit_latency) { unsigned int total_mel; - unsigned int device_mel; - unsigned int hub_mel; /* - * Calculate the time it takes to transition all links from the roothub - * to the parent hub into U0. The parent hub must then decode the - * packet (hub header decode latency) to figure out which port it was - * bound for. - * - * The Hub Header decode latency is expressed in 0.1us intervals (0x1 - * means 0.1us). Multiply that by 100 to get nanoseconds. + * tMEL1. time to transition path from host to device into U0. + * MEL for parent already contains the delay up to parent, so only add + * the exit latency for the last link (pick the slower exit latency), + * and the hub header decode latency. See USB 3.1 section C 2.2.1 + * Store MEL in nanoseconds */ total_mel = hub_lpm_params->mel + - (hub->descriptor->u.ss.bHubHdrDecLat * 100); + max(udev_exit_latency, hub_exit_latency) * 1000 + + hub->descriptor->u.ss.bHubHdrDecLat * 100; /* - * How long will it take to transition the downstream hub's port into - * U0? The greater of either the hub exit latency or the device exit - * latency. - * - * The BOS U1/U2 exit latencies are expressed in 1us intervals. - * Multiply that by 1000 to get nanoseconds. + * tMEL2. Time to submit PING packet. Sum of tTPTransmissionDelay for + * each link + wHubDelay for each hub. Add only for last link. + * tMEL4, the time for PING_RESPONSE to traverse upstream is similar. + * Multiply by 2 to include it as well. */ - device_mel = udev_exit_latency * 1000; - hub_mel = hub_exit_latency * 1000; - if (device_mel > hub_mel) - total_mel += device_mel; - else - total_mel += hub_mel; + total_mel += (__le16_to_cpu(hub->descriptor->u.ss.wHubDelay) + + USB_TP_TRANSMISSION_DELAY) * 2; + + /* + * tMEL3, tPingResponse. Time taken by device to generate PING_RESPONSE + * after receiving PING. Also add 2100ns as stated in USB 3.1 C 1.5.2.4 + * to cover the delay if the PING_RESPONSE is queued behind a Max Packet + * Size DP. + * Note these delays should be added only once for the entire path, so + * add them to the MEL of the device connected to the roothub. + */ + if (!hub->hdev->parent) + total_mel += USB_PING_RESPONSE_TIME + 2100; udev_lpm_params->mel = total_mel; } @@ -1102,7 +1108,10 @@ } else { hub_power_on(hub, true); } - } + /* Give some time on remote wakeup to let links to transit to U0 */ + } else if (hub_is_superspeed(hub->hdev)) + msleep(20); + init2: /* @@ -1217,7 +1226,7 @@ */ if (portchange || (hub_is_superspeed(hub->hdev) && port_resumed)) - set_bit(port1, hub->change_bits); + set_bit(port1, hub->event_bits); } else if (udev->persist_enabled) { #ifdef CONFIG_PM @@ -4079,6 +4088,47 @@ } /* + * Don't allow device intiated U1/U2 if the system exit latency + one bus + * interval is greater than the minimum service interval of any active + * periodic endpoint. See USB 3.2 section 9.4.9 + */ +static bool usb_device_may_initiate_lpm(struct usb_device *udev, + enum usb3_link_state state) +{ + unsigned int sel; /* us */ + int i, j; + + if (state == USB3_LPM_U1) + sel = DIV_ROUND_UP(udev->u1_params.sel, 1000); + else if (state == USB3_LPM_U2) + sel = DIV_ROUND_UP(udev->u2_params.sel, 1000); + else + return false; + + for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) { + struct usb_interface *intf; + struct usb_endpoint_descriptor *desc; + unsigned int interval; + + intf = udev->actconfig->interface[i]; + if (!intf) + continue; + + for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++) { + desc = &intf->cur_altsetting->endpoint[j].desc; + + if (usb_endpoint_xfer_int(desc) || + usb_endpoint_xfer_isoc(desc)) { + interval = (1 << (desc->bInterval - 1)) * 125; + if (sel + 125 > interval) + return false; + } + } + } + return true; +} + +/* * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated * U1/U2 entry. * @@ -4150,20 +4200,23 @@ * U1/U2_ENABLE */ if (udev->actconfig && - usb_set_device_initiated_lpm(udev, state, true) == 0) { - if (state == USB3_LPM_U1) - udev->usb3_lpm_u1_enabled = 1; - else if (state == USB3_LPM_U2) - udev->usb3_lpm_u2_enabled = 1; - } else { - /* Don't request U1/U2 entry if the device - * cannot transition to U1/U2. - */ - usb_set_lpm_timeout(udev, state, 0); - hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state); + usb_device_may_initiate_lpm(udev, state)) { + if (usb_set_device_initiated_lpm(udev, state, true)) { + /* + * Request to enable device initiated U1/U2 failed, + * better to turn off lpm in this case. + */ + usb_set_lpm_timeout(udev, state, 0); + hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state); + return; + } } -} + if (state == USB3_LPM_U1) + udev->usb3_lpm_u1_enabled = 1; + else if (state == USB3_LPM_U2) + udev->usb3_lpm_u2_enabled = 1; +} /* * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated * U1/U2 entry. @@ -4617,8 +4670,6 @@ if (oldspeed == USB_SPEED_LOW) delay = HUB_LONG_RESET_TIME; - mutex_lock(hcd->address0_mutex); - /* Reset the device; full speed may morph to high speed */ /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */ retval = hub_port_reset(hub, port1, udev, delay, false); @@ -4933,7 +4984,6 @@ hub_port_disable(hub, port1, 0); update_devnum(udev, devnum); /* for disconnect processing */ } - mutex_unlock(hcd->address0_mutex); return retval; } @@ -5023,6 +5073,7 @@ struct usb_port *port_dev = hub->ports[port1 - 1]; struct usb_device *udev = port_dev->child; static int unreliable_port = -1; + bool retry_locked; /* Disconnect any existing devices under this port */ if (udev) { @@ -5078,7 +5129,11 @@ unit_load = 100; status = 0; + for (i = 0; i < SET_CONFIG_TRIES; i++) { + usb_lock_port(port_dev); + mutex_lock(hcd->address0_mutex); + retry_locked = true; /* reallocate for each attempt, since references * to the previous one can escape in various ways @@ -5087,6 +5142,8 @@ if (!udev) { dev_err(&port_dev->dev, "couldn't allocate usb_device\n"); + mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); goto done; } @@ -5108,12 +5165,14 @@ } /* reset (non-USB 3.0 devices) and get descriptor */ - usb_lock_port(port_dev); status = hub_port_init(hub, udev, port1, i); - usb_unlock_port(port_dev); if (status < 0) goto loop; + mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); + retry_locked = false; + if (udev->quirks & USB_QUIRK_DELAY_INIT) msleep(2000); @@ -5206,6 +5265,10 @@ usb_ep0_reinit(udev); release_devnum(udev); hub_free_dev(udev); + if (retry_locked) { + mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); + } usb_put_dev(udev); if ((status == -ENOTCONN) || (status == -ENOTSUPP)) break; @@ -5570,6 +5633,11 @@ .bInterfaceClass = USB_CLASS_HUB, .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND}, { .match_flags = USB_DEVICE_ID_MATCH_VENDOR + | USB_DEVICE_ID_MATCH_PRODUCT, + .idVendor = USB_VENDOR_CYPRESS, + .idProduct = USB_PRODUCT_CY7C65632, + .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND}, + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_CLASS, .idVendor = USB_VENDOR_GENESYS_LOGIC, .bInterfaceClass = USB_CLASS_HUB, @@ -5794,6 +5862,8 @@ bos = udev->bos; udev->bos = NULL; + mutex_lock(hcd->address0_mutex); + for (i = 0; i < SET_CONFIG_TRIES; ++i) { /* ep0 maxpacket size may change; let the HCD know about it. @@ -5803,6 +5873,7 @@ if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV) break; } + mutex_unlock(hcd->address0_mutex); if (ret < 0) goto re_enumerate; @@ -5907,6 +5978,11 @@ * the reset is over (using their post_reset method). * * Return: The same as for usb_reset_and_verify_device(). + * However, if a reset is already in progress (for instance, if a + * driver doesn't have pre_reset() or post_reset() callbacks, and while + * being unbound or re-bound during the ongoing reset its disconnect() + * or probe() routine tries to perform a second, nested reset), the + * routine returns -EINPROGRESS. * * Note: * The caller must own the device lock. For example, it's safe to use @@ -5940,6 +6016,10 @@ return -EISDIR; } + if (udev->reset_in_progress) + return -EINPROGRESS; + udev->reset_in_progress = 1; + port_dev = hub->ports[udev->portnum - 1]; /* @@ -6004,6 +6084,7 @@ usb_autosuspend_device(udev); memalloc_noio_restore(noio_flag); + udev->reset_in_progress = 0; return ret; } EXPORT_SYMBOL_GPL(usb_reset_device); diff -u linux-azure-5.4.0/drivers/usb/core/message.c linux-azure-5.4.0/drivers/usb/core/message.c --- linux-azure-5.4.0/drivers/usb/core/message.c +++ linux-azure-5.4.0/drivers/usb/core/message.c @@ -647,6 +647,9 @@ int i; int result; + if (size <= 0) /* No point in asking for no data */ + return -EINVAL; + memset(buf, 0, size); /* Make sure we parse really received data */ for (i = 0; i < 3; ++i) { @@ -695,6 +698,9 @@ int i; int result; + if (size <= 0) /* No point in asking for no data */ + return -EINVAL; + for (i = 0; i < 3; ++i) { /* retry on length 0 or stall; some devices are flakey */ result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), diff -u linux-azure-5.4.0/drivers/usb/core/quirks.c linux-azure-5.4.0/drivers/usb/core/quirks.c --- linux-azure-5.4.0/drivers/usb/core/quirks.c +++ linux-azure-5.4.0/drivers/usb/core/quirks.c @@ -388,6 +388,15 @@ /* Kingston DataTraveler 3.0 */ { USB_DEVICE(0x0951, 0x1666), .driver_info = USB_QUIRK_NO_LPM }, + /* NVIDIA Jetson devices in Force Recovery mode */ + { USB_DEVICE(0x0955, 0x7018), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7019), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7418), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7721), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7c18), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7e19), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x0955, 0x7f21), .driver_info = USB_QUIRK_RESET_RESUME }, + /* X-Rite/Gretag-Macbeth Eye-One Pro display colorimeter */ { USB_DEVICE(0x0971, 0x2000), .driver_info = USB_QUIRK_NO_SET_INTF }, @@ -404,6 +413,9 @@ { USB_DEVICE(0x0b05, 0x17e0), .driver_info = USB_QUIRK_IGNORE_REMOTE_WAKEUP }, + /* Realtek Semiconductor Corp. Mass Storage Device (Multicard Reader)*/ + { USB_DEVICE(0x0bda, 0x0151), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, + /* Realtek hub in Dell WD19 (Type-C) */ { USB_DEVICE(0x0bda, 0x0487), .driver_info = USB_QUIRK_NO_LPM }, { USB_DEVICE(0x0bda, 0x5487), .driver_info = USB_QUIRK_RESET_RESUME }, @@ -435,6 +447,16 @@ { USB_DEVICE(0x1532, 0x0116), .driver_info = USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL }, + /* Lenovo ThinkPad OneLink+ Dock twin hub controllers (VIA Labs VL812) */ + { USB_DEVICE(0x17ef, 0x1018), .driver_info = USB_QUIRK_RESET_RESUME }, + { USB_DEVICE(0x17ef, 0x1019), .driver_info = USB_QUIRK_RESET_RESUME }, + + /* Lenovo USB-C to Ethernet Adapter RTL8153-04 */ + { USB_DEVICE(0x17ef, 0x720c), .driver_info = USB_QUIRK_NO_LPM }, + + /* Lenovo Powered USB-C Travel Hub (4X90S92381, RTL8153 GigE) */ + { USB_DEVICE(0x17ef, 0x721e), .driver_info = USB_QUIRK_NO_LPM }, + /* Lenovo ThinkCenter A630Z TI024Gen3 usb-audio */ { USB_DEVICE(0x17ef, 0xa012), .driver_info = USB_QUIRK_DISCONNECT_SUSPEND }, @@ -502,9 +524,11 @@ /* DJI CineSSD */ { USB_DEVICE(0x2ca3, 0x0031), .driver_info = USB_QUIRK_NO_LPM }, - /* Fibocom L850-GL LTE Modem */ - { USB_DEVICE(0x2cb7, 0x0007), .driver_info = - USB_QUIRK_IGNORE_REMOTE_WAKEUP }, + /* DELL USB GEN2 */ + { USB_DEVICE(0x413c, 0xb062), .driver_info = USB_QUIRK_NO_LPM | USB_QUIRK_RESET_RESUME }, + + /* VCOM device */ + { USB_DEVICE(0x4296, 0x7570), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, /* INTEL VALUE SSD */ { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME }, diff -u linux-azure-5.4.0/drivers/usb/core/urb.c linux-azure-5.4.0/drivers/usb/core/urb.c --- linux-azure-5.4.0/drivers/usb/core/urb.c +++ linux-azure-5.4.0/drivers/usb/core/urb.c @@ -691,6 +691,12 @@ if (!(urb && urb->dev && urb->ep)) return; atomic_inc(&urb->reject); + /* + * Order the write of urb->reject above before the read + * of urb->use_count below. Pairs with the barriers in + * __usb_hcd_giveback_urb() and usb_hcd_submit_urb(). + */ + smp_mb__after_atomic(); usb_hcd_unlink_urb(urb, -ENOENT); wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0); @@ -732,6 +738,12 @@ if (!urb) return; atomic_inc(&urb->reject); + /* + * Order the write of urb->reject above before the read + * of urb->use_count below. Pairs with the barriers in + * __usb_hcd_giveback_urb() and usb_hcd_submit_urb(). + */ + smp_mb__after_atomic(); if (!urb->dev || !urb->ep) return; diff -u linux-azure-5.4.0/drivers/usb/dwc2/core.c linux-azure-5.4.0/drivers/usb/dwc2/core.c --- linux-azure-5.4.0/drivers/usb/dwc2/core.c +++ linux-azure-5.4.0/drivers/usb/dwc2/core.c @@ -1152,15 +1152,6 @@ usbcfg &= ~(GUSBCFG_ULPI_UTMI_SEL | GUSBCFG_PHYIF16); if (hsotg->params.phy_utmi_width == 16) usbcfg |= GUSBCFG_PHYIF16; - - /* Set turnaround time */ - if (dwc2_is_device_mode(hsotg)) { - usbcfg &= ~GUSBCFG_USBTRDTIM_MASK; - if (hsotg->params.phy_utmi_width == 16) - usbcfg |= 5 << GUSBCFG_USBTRDTIM_SHIFT; - else - usbcfg |= 9 << GUSBCFG_USBTRDTIM_SHIFT; - } break; default: dev_err(hsotg->dev, "FS PHY selected at HS!\n"); @@ -1182,6 +1173,24 @@ return retval; } +static void dwc2_set_turnaround_time(struct dwc2_hsotg *hsotg) +{ + u32 usbcfg; + + if (hsotg->params.phy_type != DWC2_PHY_TYPE_PARAM_UTMI) + return; + + usbcfg = dwc2_readl(hsotg, GUSBCFG); + + usbcfg &= ~GUSBCFG_USBTRDTIM_MASK; + if (hsotg->params.phy_utmi_width == 16) + usbcfg |= 5 << GUSBCFG_USBTRDTIM_SHIFT; + else + usbcfg |= 9 << GUSBCFG_USBTRDTIM_SHIFT; + + dwc2_writel(hsotg, usbcfg, GUSBCFG); +} + int dwc2_phy_init(struct dwc2_hsotg *hsotg, bool select_phy) { u32 usbcfg; @@ -1199,6 +1208,9 @@ retval = dwc2_hs_phy_init(hsotg, select_phy); if (retval) return retval; + + if (dwc2_is_device_mode(hsotg)) + dwc2_set_turnaround_time(hsotg); } if (hsotg->hw_params.hs_phy_type == GHWCFG2_HS_PHY_TYPE_ULPI && diff -u linux-azure-5.4.0/drivers/usb/dwc2/core_intr.c linux-azure-5.4.0/drivers/usb/dwc2/core_intr.c --- linux-azure-5.4.0/drivers/usb/dwc2/core_intr.c +++ linux-azure-5.4.0/drivers/usb/dwc2/core_intr.c @@ -712,7 +712,11 @@ dwc2_writel(hsotg, gpwrdn_tmp, GPWRDN); hsotg->hibernated = 0; + +#if IS_ENABLED(CONFIG_USB_DWC2_HOST) || \ + IS_ENABLED(CONFIG_USB_DWC2_DUAL_ROLE) hsotg->bus_suspended = 0; +#endif if (gpwrdn & GPWRDN_IDSTS) { hsotg->op_state = OTG_STATE_B_PERIPHERAL; diff -u linux-azure-5.4.0/drivers/usb/dwc2/gadget.c linux-azure-5.4.0/drivers/usb/dwc2/gadget.c --- linux-azure-5.4.0/drivers/usb/dwc2/gadget.c +++ linux-azure-5.4.0/drivers/usb/dwc2/gadget.c @@ -115,10 +115,16 @@ */ static inline void dwc2_gadget_incr_frame_num(struct dwc2_hsotg_ep *hs_ep) { + struct dwc2_hsotg *hsotg = hs_ep->parent; + u16 limit = DSTS_SOFFN_LIMIT; + + if (hsotg->gadget.speed != USB_SPEED_HIGH) + limit >>= 3; + hs_ep->target_frame += hs_ep->interval; - if (hs_ep->target_frame > DSTS_SOFFN_LIMIT) { + if (hs_ep->target_frame > limit) { hs_ep->frame_overrun = true; - hs_ep->target_frame &= DSTS_SOFFN_LIMIT; + hs_ep->target_frame &= limit; } else { hs_ep->frame_overrun = false; } @@ -136,10 +142,16 @@ */ static inline void dwc2_gadget_dec_frame_num_by_one(struct dwc2_hsotg_ep *hs_ep) { + struct dwc2_hsotg *hsotg = hs_ep->parent; + u16 limit = DSTS_SOFFN_LIMIT; + + if (hsotg->gadget.speed != USB_SPEED_HIGH) + limit >>= 3; + if (hs_ep->target_frame) hs_ep->target_frame -= 1; else - hs_ep->target_frame = DSTS_SOFFN_LIMIT; + hs_ep->target_frame = limit; } /** @@ -1018,6 +1030,12 @@ dwc2_writel(hsotg, ctrl, depctl); } +static bool dwc2_gadget_target_frame_elapsed(struct dwc2_hsotg_ep *hs_ep); +static void dwc2_hsotg_complete_request(struct dwc2_hsotg *hsotg, + struct dwc2_hsotg_ep *hs_ep, + struct dwc2_hsotg_req *hs_req, + int result); + /** * dwc2_hsotg_start_req - start a USB request from an endpoint's queue * @hsotg: The controller state. @@ -1170,14 +1188,21 @@ } } - if (hs_ep->isochronous && hs_ep->interval == 1) { - hs_ep->target_frame = dwc2_hsotg_read_frameno(hsotg); - dwc2_gadget_incr_frame_num(hs_ep); - - if (hs_ep->target_frame & 0x1) - ctrl |= DXEPCTL_SETODDFR; - else - ctrl |= DXEPCTL_SETEVENFR; + if (hs_ep->isochronous) { + if (!dwc2_gadget_target_frame_elapsed(hs_ep)) { + if (hs_ep->interval == 1) { + if (hs_ep->target_frame & 0x1) + ctrl |= DXEPCTL_SETODDFR; + else + ctrl |= DXEPCTL_SETEVENFR; + } + ctrl |= DXEPCTL_CNAK; + } else { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; + dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); + return; + } } ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */ @@ -1325,12 +1350,16 @@ u32 target_frame = hs_ep->target_frame; u32 current_frame = hsotg->frame_number; bool frame_overrun = hs_ep->frame_overrun; + u16 limit = DSTS_SOFFN_LIMIT; + + if (hsotg->gadget.speed != USB_SPEED_HIGH) + limit >>= 3; if (!frame_overrun && current_frame >= target_frame) return true; if (frame_overrun && current_frame >= target_frame && - ((current_frame - target_frame) < DSTS_SOFFN_LIMIT / 2)) + ((current_frame - target_frame) < limit / 2)) return true; return false; @@ -1712,11 +1741,9 @@ */ static void dwc2_gadget_start_next_request(struct dwc2_hsotg_ep *hs_ep) { - u32 mask; struct dwc2_hsotg *hsotg = hs_ep->parent; int dir_in = hs_ep->dir_in; struct dwc2_hsotg_req *hs_req; - u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK; if (!list_empty(&hs_ep->queue)) { hs_req = get_ep_head(hs_ep); @@ -1732,9 +1759,6 @@ } else { dev_dbg(hsotg->dev, "%s: No more ISOC-OUT requests\n", __func__); - mask = dwc2_readl(hsotg, epmsk_reg); - mask |= DOEPMSK_OUTTKNEPDISMSK; - dwc2_writel(hsotg, mask, epmsk_reg); } } @@ -2304,19 +2328,6 @@ dwc2_hsotg_program_zlp(hsotg, hsotg->eps_out[0]); } -static void dwc2_hsotg_change_ep_iso_parity(struct dwc2_hsotg *hsotg, - u32 epctl_reg) -{ - u32 ctrl; - - ctrl = dwc2_readl(hsotg, epctl_reg); - if (ctrl & DXEPCTL_EOFRNUM) - ctrl |= DXEPCTL_SETEVENFR; - else - ctrl |= DXEPCTL_SETODDFR; - dwc2_writel(hsotg, ctrl, epctl_reg); -} - /* * dwc2_gadget_get_xfersize_ddma - get transferred bytes amount from desc * @hs_ep - The endpoint on which transfer went @@ -2437,20 +2448,11 @@ dwc2_hsotg_ep0_zlp(hsotg, true); } - /* - * Slave mode OUT transfers do not go through XferComplete so - * adjust the ISOC parity here. - */ - if (!using_dma(hsotg)) { - if (hs_ep->isochronous && hs_ep->interval == 1) - dwc2_hsotg_change_ep_iso_parity(hsotg, DOEPCTL(epnum)); - else if (hs_ep->isochronous && hs_ep->interval > 1) - dwc2_gadget_incr_frame_num(hs_ep); - } - /* Set actual frame number for completed transfers */ - if (!using_desc_dma(hsotg) && hs_ep->isochronous) - req->frame_number = hsotg->frame_number; + if (!using_desc_dma(hsotg) && hs_ep->isochronous) { + req->frame_number = hs_ep->target_frame; + dwc2_gadget_incr_frame_num(hs_ep); + } dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, result); } @@ -2748,12 +2750,14 @@ return; } - /* Zlp for all endpoints, for ep0 only in DATA IN stage */ + /* Zlp for all endpoints in non DDMA, for ep0 only in DATA IN stage */ if (hs_ep->send_zlp) { - dwc2_hsotg_program_zlp(hsotg, hs_ep); hs_ep->send_zlp = 0; - /* transfer will be completed on next complete interrupt */ - return; + if (!using_desc_dma(hsotg)) { + dwc2_hsotg_program_zlp(hsotg, hs_ep); + /* transfer will be completed on next complete interrupt */ + return; + } } if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) { @@ -2762,6 +2766,12 @@ return; } + /* Set actual frame number for completed transfers */ + if (!using_desc_dma(hsotg) && hs_ep->isochronous) { + hs_req->req.frame_number = hs_ep->target_frame; + dwc2_gadget_incr_frame_num(hs_ep); + } + dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0); } @@ -2822,23 +2832,18 @@ dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index); - if (hs_ep->isochronous) { - dwc2_hsotg_complete_in(hsotg, hs_ep); - return; - } - if ((epctl & DXEPCTL_STALL) && (epctl & DXEPCTL_EPTYPE_BULK)) { int dctl = dwc2_readl(hsotg, DCTL); dctl |= DCTL_CGNPINNAK; dwc2_writel(hsotg, dctl, DCTL); } - return; - } + } else { - if (dctl & DCTL_GOUTNAKSTS) { - dctl |= DCTL_CGOUTNAK; - dwc2_writel(hsotg, dctl, DCTL); + if (dctl & DCTL_GOUTNAKSTS) { + dctl |= DCTL_CGOUTNAK; + dwc2_writel(hsotg, dctl, DCTL); + } } if (!hs_ep->isochronous) @@ -2852,15 +2857,16 @@ do { hs_req = get_ep_head(hs_ep); - if (hs_req) + if (hs_req) { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); + } dwc2_gadget_incr_frame_num(hs_ep); /* Update current frame number value. */ hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg); } while (dwc2_gadget_target_frame_elapsed(hs_ep)); - - dwc2_gadget_start_next_request(hs_ep); } /** @@ -2877,8 +2883,8 @@ static void dwc2_gadget_handle_out_token_ep_disabled(struct dwc2_hsotg_ep *ep) { struct dwc2_hsotg *hsotg = ep->parent; + struct dwc2_hsotg_req *hs_req; int dir_in = ep->dir_in; - u32 doepmsk; if (dir_in || !ep->isochronous) return; @@ -2892,28 +2898,42 @@ return; } - if (ep->interval > 1 && - ep->target_frame == TARGET_FRAME_INITIAL) { + if (ep->target_frame == TARGET_FRAME_INITIAL) { u32 ctrl; ep->target_frame = hsotg->frame_number; - dwc2_gadget_incr_frame_num(ep); + if (ep->interval > 1) { + ctrl = dwc2_readl(hsotg, DOEPCTL(ep->index)); + if (ep->target_frame & 0x1) + ctrl |= DXEPCTL_SETODDFR; + else + ctrl |= DXEPCTL_SETEVENFR; - ctrl = dwc2_readl(hsotg, DOEPCTL(ep->index)); - if (ep->target_frame & 0x1) - ctrl |= DXEPCTL_SETODDFR; - else - ctrl |= DXEPCTL_SETEVENFR; + dwc2_writel(hsotg, ctrl, DOEPCTL(ep->index)); + } + } - dwc2_writel(hsotg, ctrl, DOEPCTL(ep->index)); + while (dwc2_gadget_target_frame_elapsed(ep)) { + hs_req = get_ep_head(ep); + if (hs_req) { + hs_req->req.frame_number = ep->target_frame; + hs_req->req.actual = 0; + dwc2_hsotg_complete_request(hsotg, ep, hs_req, -ENODATA); + } + + dwc2_gadget_incr_frame_num(ep); + /* Update current frame number value. */ + hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg); } - dwc2_gadget_start_next_request(ep); - doepmsk = dwc2_readl(hsotg, DOEPMSK); - doepmsk &= ~DOEPMSK_OUTTKNEPDISMSK; - dwc2_writel(hsotg, doepmsk, DOEPMSK); + if (!ep->req) + dwc2_gadget_start_next_request(ep); + } +static void dwc2_hsotg_ep_stop_xfr(struct dwc2_hsotg *hsotg, + struct dwc2_hsotg_ep *hs_ep); + /** * dwc2_gadget_handle_nak - handle NAK interrupt * @hs_ep: The endpoint on which interrupt is asserted. @@ -2931,7 +2951,9 @@ static void dwc2_gadget_handle_nak(struct dwc2_hsotg_ep *hs_ep) { struct dwc2_hsotg *hsotg = hs_ep->parent; + struct dwc2_hsotg_req *hs_req; int dir_in = hs_ep->dir_in; + u32 ctrl; if (!dir_in || !hs_ep->isochronous) return; @@ -2973,13 +2995,32 @@ dwc2_writel(hsotg, ctrl, DIEPCTL(hs_ep->index)); } - - dwc2_hsotg_complete_request(hsotg, hs_ep, - get_ep_head(hs_ep), 0); } - if (!using_desc_dma(hsotg)) + if (using_desc_dma(hsotg)) + return; + + ctrl = dwc2_readl(hsotg, DIEPCTL(hs_ep->index)); + if (ctrl & DXEPCTL_EPENA) + dwc2_hsotg_ep_stop_xfr(hsotg, hs_ep); + else + dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index); + + while (dwc2_gadget_target_frame_elapsed(hs_ep)) { + hs_req = get_ep_head(hs_ep); + if (hs_req) { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; + dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); + } + dwc2_gadget_incr_frame_num(hs_ep); + /* Update current frame number value. */ + hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg); + } + + if (!hs_ep->req) + dwc2_gadget_start_next_request(hs_ep); } /** @@ -3037,21 +3078,15 @@ /* In DDMA handle isochronous requests separately */ if (using_desc_dma(hsotg) && hs_ep->isochronous) { - /* XferCompl set along with BNA */ - if (!(ints & DXEPINT_BNAINTR)) - dwc2_gadget_complete_isoc_request_ddma(hs_ep); + dwc2_gadget_complete_isoc_request_ddma(hs_ep); } else if (dir_in) { /* * We get OutDone from the FIFO, so we only * need to look at completing IN requests here * if operating slave mode */ - if (hs_ep->isochronous && hs_ep->interval > 1) - dwc2_gadget_incr_frame_num(hs_ep); - - dwc2_hsotg_complete_in(hsotg, hs_ep); - if (ints & DXEPINT_NAKINTRPT) - ints &= ~DXEPINT_NAKINTRPT; + if (!hs_ep->isochronous || !(ints & DXEPINT_NAKINTRPT)) + dwc2_hsotg_complete_in(hsotg, hs_ep); if (idx == 0 && !hs_ep->req) dwc2_hsotg_enqueue_setup(hsotg); @@ -3060,10 +3095,8 @@ * We're using DMA, we need to fire an OutDone here * as we ignore the RXFIFO. */ - if (hs_ep->isochronous && hs_ep->interval > 1) - dwc2_gadget_incr_frame_num(hs_ep); - - dwc2_hsotg_handle_outdone(hsotg, idx); + if (!hs_ep->isochronous || !(ints & DXEPINT_OUTTKNEPDIS)) + dwc2_hsotg_handle_outdone(hsotg, idx); } } @@ -4053,6 +4086,7 @@ mask |= DIEPMSK_NAKMSK; dwc2_writel(hsotg, mask, DIEPMSK); } else { + epctrl |= DXEPCTL_SNAK; mask = dwc2_readl(hsotg, DOEPMSK); mask |= DOEPMSK_OUTTKNEPDISMSK; dwc2_writel(hsotg, mask, DOEPMSK); @@ -4452,7 +4486,6 @@ WARN_ON(hsotg->driver); - driver->driver.bus = NULL; hsotg->driver = driver; hsotg->gadget.dev.of_node = hsotg->dev->of_node; hsotg->gadget.speed = USB_SPEED_UNKNOWN; @@ -4945,7 +4978,7 @@ hsotg->gadget.speed = USB_SPEED_UNKNOWN; spin_unlock_irqrestore(&hsotg->lock, flags); - for (ep = 0; ep < hsotg->num_of_eps; ep++) { + for (ep = 1; ep < hsotg->num_of_eps; ep++) { if (hsotg->eps_in[ep]) dwc2_hsotg_ep_disable_lock(&hsotg->eps_in[ep]->ep); if (hsotg->eps_out[ep]) diff -u linux-azure-5.4.0/drivers/usb/dwc2/hcd.c linux-azure-5.4.0/drivers/usb/dwc2/hcd.c --- linux-azure-5.4.0/drivers/usb/dwc2/hcd.c +++ linux-azure-5.4.0/drivers/usb/dwc2/hcd.c @@ -5074,6 +5074,10 @@ hcd->has_tt = 1; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) { + retval = -EINVAL; + goto error2; + } hcd->rsrc_start = res->start; hcd->rsrc_len = resource_size(res); diff -u linux-azure-5.4.0/drivers/usb/dwc2/platform.c linux-azure-5.4.0/drivers/usb/dwc2/platform.c --- linux-azure-5.4.0/drivers/usb/dwc2/platform.c +++ linux-azure-5.4.0/drivers/usb/dwc2/platform.c @@ -142,9 +142,9 @@ } else if (hsotg->plat && hsotg->plat->phy_init) { ret = hsotg->plat->phy_init(pdev, hsotg->plat->phy_type); } else { - ret = phy_power_on(hsotg->phy); + ret = phy_init(hsotg->phy); if (ret == 0) - ret = phy_init(hsotg->phy); + ret = phy_power_on(hsotg->phy); } return ret; @@ -176,9 +176,9 @@ } else if (hsotg->plat && hsotg->plat->phy_exit) { ret = hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type); } else { - ret = phy_exit(hsotg->phy); + ret = phy_power_off(hsotg->phy); if (ret == 0) - ret = phy_power_off(hsotg->phy); + ret = phy_exit(hsotg->phy); } if (ret) return ret; diff -u linux-azure-5.4.0/drivers/usb/dwc3/core.c linux-azure-5.4.0/drivers/usb/dwc3/core.c --- linux-azure-5.4.0/drivers/usb/dwc3/core.c +++ linux-azure-5.4.0/drivers/usb/dwc3/core.c @@ -227,7 +227,7 @@ * dwc3_core_soft_reset - Issues core soft reset and PHY reset * @dwc: pointer to our context structure */ -static int dwc3_core_soft_reset(struct dwc3 *dwc) +int dwc3_core_soft_reset(struct dwc3 *dwc) { u32 reg; int retries = 1000; @@ -694,15 +694,16 @@ { dwc3_event_buffers_cleanup(dwc); + usb_phy_set_suspend(dwc->usb2_phy, 1); + usb_phy_set_suspend(dwc->usb3_phy, 1); + phy_power_off(dwc->usb2_generic_phy); + phy_power_off(dwc->usb3_generic_phy); + usb_phy_shutdown(dwc->usb2_phy); usb_phy_shutdown(dwc->usb3_phy); phy_exit(dwc->usb2_generic_phy); phy_exit(dwc->usb3_generic_phy); - usb_phy_set_suspend(dwc->usb2_phy, 1); - usb_phy_set_suspend(dwc->usb3_phy, 1); - phy_power_off(dwc->usb2_generic_phy); - phy_power_off(dwc->usb3_generic_phy); clk_bulk_disable_unprepare(dwc->num_clks, dwc->clks); reset_control_assert(dwc->reset); } @@ -1229,10 +1230,10 @@ u8 lpm_nyet_threshold; u8 tx_de_emphasis; u8 hird_threshold; - u8 rx_thr_num_pkt_prd; - u8 rx_max_burst_prd; - u8 tx_thr_num_pkt_prd; - u8 tx_max_burst_prd; + u8 rx_thr_num_pkt_prd = 0; + u8 rx_max_burst_prd = 0; + u8 tx_thr_num_pkt_prd = 0; + u8 tx_max_burst_prd = 0; /* default to highest possible threshold */ lpm_nyet_threshold = 0xf; @@ -1523,29 +1524,30 @@ } dwc3_check_params(dwc); + dwc3_debugfs_init(dwc); ret = dwc3_core_init_mode(dwc); if (ret) goto err5; - dwc3_debugfs_init(dwc); pm_runtime_put(dev); return 0; err5: + dwc3_debugfs_exit(dwc); dwc3_event_buffers_cleanup(dwc); - usb_phy_shutdown(dwc->usb2_phy); - usb_phy_shutdown(dwc->usb3_phy); - phy_exit(dwc->usb2_generic_phy); - phy_exit(dwc->usb3_generic_phy); - usb_phy_set_suspend(dwc->usb2_phy, 1); usb_phy_set_suspend(dwc->usb3_phy, 1); phy_power_off(dwc->usb2_generic_phy); phy_power_off(dwc->usb3_generic_phy); + usb_phy_shutdown(dwc->usb2_phy); + usb_phy_shutdown(dwc->usb3_phy); + phy_exit(dwc->usb2_generic_phy); + phy_exit(dwc->usb3_generic_phy); + dwc3_ulpi_exit(dwc); err4: @@ -1575,8 +1577,8 @@ pm_runtime_get_sync(&pdev->dev); - dwc3_debugfs_exit(dwc); dwc3_core_exit_mode(dwc); + dwc3_debugfs_exit(dwc); dwc3_core_exit(dwc); dwc3_ulpi_exit(dwc); diff -u linux-azure-5.4.0/drivers/usb/dwc3/core.h linux-azure-5.4.0/drivers/usb/dwc3/core.h --- linux-azure-5.4.0/drivers/usb/dwc3/core.h +++ linux-azure-5.4.0/drivers/usb/dwc3/core.h @@ -994,6 +994,7 @@ * @tx_max_burst_prd: max periodic ESS transmit burst size * @hsphy_interface: "utmi" or "ulpi" * @connected: true when we're connected to a host, false otherwise + * @softconnect: true when gadget connect is called, false when disconnect runs * @delayed_status: true when gadget driver asks for delayed status * @ep0_bounced: true when we used bounce buffer * @ep0_expect_in: true when we expect a DATA IN transfer @@ -1196,6 +1197,7 @@ const char *hsphy_interface; unsigned connected:1; + unsigned softconnect:1; unsigned delayed_status:1; unsigned ep0_bounced:1; unsigned ep0_expect_in:1; @@ -1420,6 +1422,8 @@ int dwc3_event_buffers_setup(struct dwc3 *dwc); void dwc3_event_buffers_cleanup(struct dwc3 *dwc); +int dwc3_core_soft_reset(struct dwc3 *dwc); + #if IS_ENABLED(CONFIG_USB_DWC3_HOST) || IS_ENABLED(CONFIG_USB_DWC3_DUAL_ROLE) int dwc3_host_init(struct dwc3 *dwc); void dwc3_host_exit(struct dwc3 *dwc); diff -u linux-azure-5.4.0/drivers/usb/dwc3/debug.h linux-azure-5.4.0/drivers/usb/dwc3/debug.h --- linux-azure-5.4.0/drivers/usb/dwc3/debug.h +++ linux-azure-5.4.0/drivers/usb/dwc3/debug.h @@ -409,9 +409,12 @@ #ifdef CONFIG_DEBUG_FS +extern void dwc3_debugfs_create_endpoint_dir(struct dwc3_ep *dep); extern void dwc3_debugfs_init(struct dwc3 *); extern void dwc3_debugfs_exit(struct dwc3 *); #else +static inline void dwc3_debugfs_create_endpoint_dir(struct dwc3_ep *dep) +{ } static inline void dwc3_debugfs_init(struct dwc3 *d) { } static inline void dwc3_debugfs_exit(struct dwc3 *d) diff -u linux-azure-5.4.0/drivers/usb/dwc3/dwc3-omap.c linux-azure-5.4.0/drivers/usb/dwc3/dwc3-omap.c --- linux-azure-5.4.0/drivers/usb/dwc3/dwc3-omap.c +++ linux-azure-5.4.0/drivers/usb/dwc3/dwc3-omap.c @@ -242,7 +242,7 @@ break; case OMAP_DWC3_ID_FLOAT: - if (omap->vbus_reg) + if (omap->vbus_reg && regulator_is_enabled(omap->vbus_reg)) regulator_disable(omap->vbus_reg); val = dwc3_omap_read_utmi_ctrl(omap); val |= USBOTGSS_UTMI_OTG_CTRL_IDDIG; diff -u linux-azure-5.4.0/drivers/usb/dwc3/dwc3-pci.c linux-azure-5.4.0/drivers/usb/dwc3/dwc3-pci.c --- linux-azure-5.4.0/drivers/usb/dwc3/dwc3-pci.c +++ linux-azure-5.4.0/drivers/usb/dwc3/dwc3-pci.c @@ -81,8 +81,8 @@ static struct gpiod_lookup_table platform_bytcr_gpios = { .dev_id = "0000:00:16.0", .table = { - GPIO_LOOKUP("INT33FC:00", 54, "reset", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("INT33FC:02", 14, "cs", GPIO_ACTIVE_HIGH), + GPIO_LOOKUP("INT33FC:00", 54, "cs", GPIO_ACTIVE_HIGH), + GPIO_LOOKUP("INT33FC:02", 14, "reset", GPIO_ACTIVE_HIGH), {} }, }; @@ -211,7 +211,7 @@ int ret; ret = pm_runtime_get_sync(&dwc3->dev); - if (ret) { + if (ret < 0) { pm_runtime_put_sync_autosuspend(&dwc3->dev); return; } diff -u linux-azure-5.4.0/drivers/usb/dwc3/dwc3-qcom.c linux-azure-5.4.0/drivers/usb/dwc3/dwc3-qcom.c --- linux-azure-5.4.0/drivers/usb/dwc3/dwc3-qcom.c +++ linux-azure-5.4.0/drivers/usb/dwc3/dwc3-qcom.c @@ -190,6 +190,14 @@ return 0; } +/* Only usable in contexts where the role can not change. */ +static bool dwc3_qcom_is_host(struct dwc3_qcom *qcom) +{ + struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3); + + return dwc->xhci; +} + static void dwc3_qcom_disable_interrupts(struct dwc3_qcom *qcom) { if (qcom->hs_phy_irq) { @@ -297,7 +305,11 @@ if (qcom->pm_suspended) return IRQ_HANDLED; - if (dwc->xhci) + /* + * This is safe as role switching is done from a freezable workqueue + * and the wakeup interrupts are disabled as part of resume. + */ + if (dwc3_qcom_is_host(qcom)) pm_runtime_resume(&dwc->xhci->dev); return IRQ_HANDLED; diff -u linux-azure-5.4.0/drivers/usb/dwc3/ep0.c linux-azure-5.4.0/drivers/usb/dwc3/ep0.c --- linux-azure-5.4.0/drivers/usb/dwc3/ep0.c +++ linux-azure-5.4.0/drivers/usb/dwc3/ep0.c @@ -197,7 +197,7 @@ int ret; spin_lock_irqsave(&dwc->lock, flags); - if (!dep->endpoint.desc) { + if (!dep->endpoint.desc || !dwc->pullups_connected) { dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n", dep->name); ret = -ESHUTDOWN; @@ -292,6 +292,9 @@ epnum |= 1; dep = dwc->eps[epnum]; + if (dep == NULL) + return NULL; + if (dep->flags & DWC3_EP_ENABLED) return dep; diff -u linux-azure-5.4.0/drivers/usb/dwc3/gadget.c linux-azure-5.4.0/drivers/usb/dwc3/gadget.c --- linux-azure-5.4.0/drivers/usb/dwc3/gadget.c +++ linux-azure-5.4.0/drivers/usb/dwc3/gadget.c @@ -746,8 +746,6 @@ trace_dwc3_gadget_ep_disable(dep); - dwc3_remove_requests(dwc, dep); - /* make sure HW endpoint isn't stalled */ if (dep->flags & DWC3_EP_STALL) __dwc3_gadget_ep_set_halt(dep, 0, false); @@ -756,16 +754,18 @@ reg &= ~DWC3_DALEPENA_EP(dep->number); dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); - dep->stream_capable = false; - dep->type = 0; - dep->flags = 0; - /* Clear out the ep descriptors for non-ep0 */ if (dep->number > 1) { dep->endpoint.comp_desc = NULL; dep->endpoint.desc = NULL; } + dwc3_remove_requests(dwc, dep); + + dep->stream_capable = false; + dep->type = 0; + dep->flags = 0; + return 0; } @@ -894,19 +894,19 @@ static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep) { - struct dwc3_trb *tmp; u8 trbs_left; /* - * If enqueue & dequeue are equal than it is either full or empty. - * - * One way to know for sure is if the TRB right before us has HWO bit - * set or not. If it has, then we're definitely full and can't fit any - * more transfers in our ring. + * If the enqueue & dequeue are equal then the TRB ring is either full + * or empty. It's considered full when there are DWC3_TRB_NUM-1 of TRBs + * pending to be processed by the driver. */ if (dep->trb_enqueue == dep->trb_dequeue) { - tmp = dwc3_ep_prev_trb(dep, dep->trb_enqueue); - if (tmp->ctrl & DWC3_TRB_CTRL_HWO) + /* + * If there is any request remained in the started_list at + * this point, that means there is no TRB available. + */ + if (!list_empty(&dep->started_list)) return 0; return DWC3_TRB_NUM - 1; @@ -981,8 +981,8 @@ trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; } - /* always enable Interrupt on Missed ISOC */ - trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; + if (!no_interrupt && !chain) + trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; break; case USB_ENDPOINT_XFER_BULK: @@ -1020,6 +1020,19 @@ if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable) trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id); + /* + * As per data book 4.2.3.2TRB Control Bit Rules section + * + * The controller autonomously checks the HWO field of a TRB to determine if the + * entire TRB is valid. Therefore, software must ensure that the rest of the TRB + * is valid before setting the HWO field to '1'. In most systems, this means that + * software must update the fourth DWORD of a TRB last. + * + * However there is a possibility of CPU re-ordering here which can cause + * controller to observe the HWO bit set prematurely. + * Add a write memory barrier to prevent CPU re-ordering. + */ + wmb(); trb->ctrl |= DWC3_TRB_CTRL_HWO; dwc3_ep_inc_enq(dep); @@ -1511,7 +1524,7 @@ { struct dwc3 *dwc = dep->dwc; - if (!dep->endpoint.desc) { + if (!dep->endpoint.desc || !dwc->pullups_connected || !dwc->connected) { dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n", dep->name); return -ESHUTDOWN; @@ -1931,6 +1944,21 @@ return 0; } +static void dwc3_stop_active_transfers(struct dwc3 *dwc) +{ + u32 epnum; + + for (epnum = 2; epnum < dwc->num_eps; epnum++) { + struct dwc3_ep *dep; + + dep = dwc->eps[epnum]; + if (!dep) + continue; + + dwc3_remove_requests(dwc, dep); + } +} + static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend) { u32 reg; @@ -1976,14 +2004,46 @@ return 0; } +static void dwc3_gadget_disable_irq(struct dwc3 *dwc); +static void __dwc3_gadget_stop(struct dwc3 *dwc); +static int __dwc3_gadget_start(struct dwc3 *dwc); + +static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc) +{ + unsigned long flags; + + spin_lock_irqsave(&dwc->lock, flags); + dwc->connected = false; + + /* + * In the Synopsys DesignWare Cores USB3 Databook Rev. 3.30a + * Section 4.1.8 Table 4-7, it states that for a device-initiated + * disconnect, the SW needs to ensure that it sends "a DEPENDXFER + * command for any active transfers" before clearing the RunStop + * bit. + */ + dwc3_stop_active_transfers(dwc); + __dwc3_gadget_stop(dwc); + spin_unlock_irqrestore(&dwc->lock, flags); + + /* + * Note: if the GEVNTCOUNT indicates events in the event buffer, the + * driver needs to acknowledge them before the controller can halt. + * Simply let the interrupt handler acknowledges and handle the + * remaining event generated by the controller while polling for + * DSTS.DEVCTLHLT. + */ + return dwc3_gadget_run_stop(dwc, false, false); +} + static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) { struct dwc3 *dwc = gadget_to_dwc(g); - unsigned long flags; int ret; is_on = !!is_on; + dwc->softconnect = is_on; /* * Per databook, when we want to stop the gadget, if a control transfer * is still in process, complete it and get the core into setup phase. @@ -1993,15 +2053,54 @@ ret = wait_for_completion_timeout(&dwc->ep0_in_setup, msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); - if (ret == 0) { - dev_err(dwc->dev, "timed out waiting for SETUP phase\n"); - return -ETIMEDOUT; - } + if (ret == 0) + dev_warn(dwc->dev, "timed out waiting for SETUP phase\n"); } - spin_lock_irqsave(&dwc->lock, flags); - ret = dwc3_gadget_run_stop(dwc, is_on, false); - spin_unlock_irqrestore(&dwc->lock, flags); + /* + * Avoid issuing a runtime resume if the device is already in the + * suspended state during gadget disconnect. DWC3 gadget was already + * halted/stopped during runtime suspend. + */ + if (!is_on) { + pm_runtime_barrier(dwc->dev); + if (pm_runtime_suspended(dwc->dev)) + return 0; + } + + /* + * Check the return value for successful resume, or error. For a + * successful resume, the DWC3 runtime PM resume routine will handle + * the run stop sequence, so avoid duplicate operations here. + */ + ret = pm_runtime_get_sync(dwc->dev); + if (!ret || ret < 0) { + pm_runtime_put(dwc->dev); + return 0; + } + + if (dwc->pullups_connected == is_on) { + pm_runtime_put(dwc->dev); + return 0; + } + + if (!is_on) { + ret = dwc3_gadget_soft_disconnect(dwc); + } else { + /* + * In the Synopsys DWC_usb31 1.90a programming guide section + * 4.1.9, it specifies that for a reconnect after a + * device-initiated disconnect requires a core soft reset + * (DCTL.CSftRst) before enabling the run/stop bit. + */ + dwc3_core_soft_reset(dwc); + + dwc3_event_buffers_setup(dwc); + __dwc3_gadget_start(dwc); + ret = dwc3_gadget_run_stop(dwc, true, false); + } + + pm_runtime_put(dwc->dev); return ret; } @@ -2134,6 +2233,7 @@ /* begin to receive SETUP packets */ dwc->ep0state = EP0_SETUP_PHASE; dwc->link_state = DWC3_LINK_STATE_SS_DIS; + dwc->delayed_status = false; dwc3_ep0_out_start(dwc); dwc3_gadget_enable_irq(dwc); @@ -2174,10 +2274,6 @@ } dwc->gadget_driver = driver; - - if (pm_runtime_active(dwc->dev)) - __dwc3_gadget_start(dwc); - spin_unlock_irqrestore(&dwc->lock, flags); return 0; @@ -2203,13 +2299,6 @@ unsigned long flags; spin_lock_irqsave(&dwc->lock, flags); - - if (pm_runtime_suspended(dwc->dev)) - goto out; - - __dwc3_gadget_stop(dwc); - -out: dwc->gadget_driver = NULL; spin_unlock_irqrestore(&dwc->lock, flags); @@ -2483,6 +2572,8 @@ INIT_LIST_HEAD(&dep->started_list); INIT_LIST_HEAD(&dep->cancelled_list); + dwc3_debugfs_create_endpoint_dir(dep); + return 0; } @@ -2526,6 +2617,7 @@ list_del(&dep->endpoint.ep_list); } + debugfs_remove_recursive(debugfs_lookup(dep->name, dwc->root)); kfree(dep); } } @@ -2589,6 +2681,10 @@ if (event->status & DEPEVT_STATUS_SHORT && !chain) return 1; + if ((trb->ctrl & DWC3_TRB_CTRL_ISP_IMI) && + DWC3_TRB_SIZE_TRBSTS(trb->size) == DWC3_TRBSTS_MISSED_ISOC) + return 1; + if ((trb->ctrl & DWC3_TRB_CTRL_IOC) || (trb->ctrl & DWC3_TRB_CTRL_LST)) return 1; @@ -2641,6 +2737,7 @@ const struct dwc3_event_depevt *event, struct dwc3_request *req, int status) { + int request_status; int ret; if (req->request.num_mapped_sgs) @@ -2670,7 +2767,35 @@ req->needs_extra_trb = false; } - dwc3_gadget_giveback(dep, req, status); + /* + * The event status only reflects the status of the TRB with IOC set. + * For the requests that don't set interrupt on completion, the driver + * needs to check and return the status of the completed TRBs associated + * with the request. Use the status of the last TRB of the request. + */ + if (req->request.no_interrupt) { + struct dwc3_trb *trb; + + trb = dwc3_ep_prev_trb(dep, dep->trb_dequeue); + switch (DWC3_TRB_SIZE_TRBSTS(trb->size)) { + case DWC3_TRBSTS_MISSED_ISOC: + /* Isoc endpoint only */ + request_status = -EXDEV; + break; + case DWC3_TRB_STS_XFER_IN_PROG: + /* Applicable when End Transfer with ForceRM=0 */ + case DWC3_TRBSTS_SETUP_PENDING: + /* Control endpoint only */ + case DWC3_TRBSTS_OK: + default: + request_status = 0; + break; + } + } else { + request_status = status; + } + + dwc3_gadget_giveback(dep, req, request_status); out: return ret; @@ -2992,8 +3117,6 @@ { u32 reg; - dwc->connected = true; - /* * Ideally, dwc3_reset_gadget() would trigger the function * drivers to stop any active transfers through ep disable. @@ -3035,6 +3158,14 @@ } dwc3_reset_gadget(dwc); + /* + * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a + * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW + * needs to ensure that it sends "a DEPENDXFER command for any active + * transfers." + */ + dwc3_stop_active_transfers(dwc); + dwc->connected = true; reg = dwc3_readl(dwc->regs, DWC3_DCTL); reg &= ~DWC3_DCTL_TSTCTRL_MASK; @@ -3413,7 +3544,6 @@ } evt->count = 0; - evt->flags &= ~DWC3_EVENT_PENDING; ret = IRQ_HANDLED; /* Unmask interrupt */ @@ -3426,6 +3556,9 @@ dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); } + /* Keep the clearing of DWC3_EVENT_PENDING at the end */ + evt->flags &= ~DWC3_EVENT_PENDING; + return ret; } @@ -3436,9 +3569,11 @@ unsigned long flags; irqreturn_t ret = IRQ_NONE; + local_bh_disable(); spin_lock_irqsave(&dwc->lock, flags); ret = dwc3_process_event_buf(evt); spin_unlock_irqrestore(&dwc->lock, flags); + local_bh_enable(); return ret; } @@ -3665,7 +3800,7 @@ { int ret; - if (!dwc->gadget_driver) + if (!dwc->gadget_driver || !dwc->softconnect) return 0; ret = __dwc3_gadget_start(dwc); diff -u linux-azure-5.4.0/drivers/usb/dwc3/host.c linux-azure-5.4.0/drivers/usb/dwc3/host.c --- linux-azure-5.4.0/drivers/usb/dwc3/host.c +++ linux-azure-5.4.0/drivers/usb/dwc3/host.c @@ -9,8 +9,13 @@ #include +#include "../host/xhci-plat.h" #include "core.h" +static const struct xhci_plat_priv dwc3_xhci_plat_priv = { + .quirks = XHCI_SKIP_PHY_INIT, +}; + static int dwc3_host_get_irq(struct dwc3 *dwc) { struct platform_device *dwc3_pdev = to_platform_device(dwc->dev); @@ -85,6 +90,11 @@ goto err; } + ret = platform_device_add_data(xhci, &dwc3_xhci_plat_priv, + sizeof(dwc3_xhci_plat_priv)); + if (ret) + goto err; + memset(props, 0, sizeof(struct property_entry) * ARRAY_SIZE(props)); if (dwc->usb3_lpm_capable) @@ -130,2 +140,3 @@ platform_device_unregister(dwc->xhci); + dwc->xhci = NULL; } diff -u linux-azure-5.4.0/drivers/usb/gadget/composite.c linux-azure-5.4.0/drivers/usb/gadget/composite.c --- linux-azure-5.4.0/drivers/usb/gadget/composite.c +++ linux-azure-5.4.0/drivers/usb/gadget/composite.c @@ -481,7 +481,7 @@ { unsigned val; - if (c->MaxPower) + if (c->MaxPower || (c->bmAttributes & USB_CONFIG_ATT_SELFPOWER)) val = c->MaxPower; else val = CONFIG_USB_GADGET_VBUS_DRAW; @@ -905,7 +905,11 @@ } /* when we return, be sure our power usage is valid */ - power = c->MaxPower ? c->MaxPower : CONFIG_USB_GADGET_VBUS_DRAW; + if (c->MaxPower || (c->bmAttributes & USB_CONFIG_ATT_SELFPOWER)) + power = c->MaxPower; + else + power = CONFIG_USB_GADGET_VBUS_DRAW; + if (gadget->speed < USB_SPEED_SUPER) power = min(power, 500U); else @@ -1644,6 +1648,18 @@ struct usb_function *f = NULL; u8 endp; + if (w_length > USB_COMP_EP0_BUFSIZ) { + if (ctrl->bRequestType & USB_DIR_IN) { + /* Cast away the const, we are going to overwrite on purpose. */ + __le16 *temp = (__le16 *)&ctrl->wLength; + + *temp = cpu_to_le16(USB_COMP_EP0_BUFSIZ); + w_length = USB_COMP_EP0_BUFSIZ; + } else { + goto done; + } + } + /* partial re-init of the response message; the function or the * gadget might need to intercept e.g. a control-OUT completion * when we delegate to it. @@ -1928,6 +1944,9 @@ if (w_index != 0x5 || (w_value >> 8)) break; interface = w_value & 0xFF; + if (interface >= MAX_CONFIG_INTERFACES || + !os_desc_cfg->interface[interface]) + break; buf[6] = w_index; count = count_ext_prop(os_desc_cfg, interface); @@ -2157,7 +2176,7 @@ if (!cdev->req) return -ENOMEM; - cdev->req->buf = kmalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL); + cdev->req->buf = kzalloc(USB_COMP_EP0_BUFSIZ, GFP_KERNEL); if (!cdev->req->buf) goto fail; diff -u linux-azure-5.4.0/drivers/usb/gadget/config.c linux-azure-5.4.0/drivers/usb/gadget/config.c --- linux-azure-5.4.0/drivers/usb/gadget/config.c +++ linux-azure-5.4.0/drivers/usb/gadget/config.c @@ -164,6 +164,14 @@ { struct usb_gadget *g = f->config->cdev->gadget; + /* super-speed-plus descriptor falls back to super-speed one, + * if such a descriptor was provided, thus avoiding a NULL + * pointer dereference if a 5gbps capable gadget is used with + * a 10gbps capable config (device port + cable + host port) + */ + if (!ssp) + ssp = ss; + if (fs) { f->fs_descriptors = usb_copy_descriptors(fs); if (!f->fs_descriptors) diff -u linux-azure-5.4.0/drivers/usb/gadget/configfs.c linux-azure-5.4.0/drivers/usb/gadget/configfs.c --- linux-azure-5.4.0/drivers/usb/gadget/configfs.c +++ linux-azure-5.4.0/drivers/usb/gadget/configfs.c @@ -1412,6 +1412,8 @@ usb_ep_autoconfig_reset(cdev->gadget); spin_lock_irqsave(&gi->spinlock, flags); cdev->gadget = NULL; + cdev->deactivations = 0; + gadget->deactivated = false; set_gadget_data(gadget, NULL); spin_unlock_irqrestore(&gi->spinlock, flags); } diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_ecm.c linux-azure-5.4.0/drivers/usb/gadget/function/f_ecm.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_ecm.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_ecm.c @@ -791,7 +791,7 @@ fs_ecm_notify_desc.bEndpointAddress; status = usb_assign_descriptors(f, ecm_fs_function, ecm_hs_function, - ecm_ss_function, NULL); + ecm_ss_function, ecm_ss_function); if (status) goto fail; diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_fs.c linux-azure-5.4.0/drivers/usb/gadget/function/f_fs.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_fs.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_fs.c @@ -250,8 +250,8 @@ static struct ffs_dev *_ffs_find_dev(const char *name); static struct ffs_dev *_ffs_alloc_dev(void); static void _ffs_free_dev(struct ffs_dev *dev); -static void *ffs_acquire_dev(const char *dev_name); -static void ffs_release_dev(struct ffs_data *ffs_data); +static int ffs_acquire_dev(const char *dev_name, struct ffs_data *ffs_data); +static void ffs_release_dev(struct ffs_dev *ffs_dev); static int ffs_ready(struct ffs_data *ffs); static void ffs_closed(struct ffs_data *ffs); @@ -614,7 +614,7 @@ file->private_data = ffs; ffs_data_opened(ffs); - return 0; + return stream_open(inode, file); } static int ffs_ep0_release(struct inode *inode, struct file *file) @@ -1156,7 +1156,7 @@ file->private_data = epfile; ffs_data_opened(epfile->ffs); - return 0; + return stream_open(inode, file); } static int ffs_aio_cancel(struct kiocb *kiocb) @@ -1562,8 +1562,8 @@ static int ffs_fs_get_tree(struct fs_context *fc) { struct ffs_sb_fill_data *ctx = fc->fs_private; - void *ffs_dev; struct ffs_data *ffs; + int ret; ENTER(); @@ -1582,13 +1582,12 @@ return -ENOMEM; } - ffs_dev = ffs_acquire_dev(ffs->dev_name); - if (IS_ERR(ffs_dev)) { + ret = ffs_acquire_dev(ffs->dev_name, ffs); + if (ret) { ffs_data_put(ffs); - return PTR_ERR(ffs_dev); + return ret; } - ffs->private_data = ffs_dev; ctx->ffs_data = ffs; return get_tree_nodev(fc, ffs_sb_fill); } @@ -1599,7 +1598,6 @@ if (ctx) { if (ctx->ffs_data) { - ffs_release_dev(ctx->ffs_data); ffs_data_put(ctx->ffs_data); } @@ -1638,10 +1636,8 @@ ENTER(); kill_litter_super(sb); - if (sb->s_fs_info) { - ffs_release_dev(sb->s_fs_info); + if (sb->s_fs_info) ffs_data_closed(sb->s_fs_info); - } } static struct file_system_type ffs_fs_type = { @@ -1711,6 +1707,7 @@ if (unlikely(refcount_dec_and_test(&ffs->ref))) { pr_info("%s(): freeing\n", __func__); ffs_data_clear(ffs); + ffs_release_dev(ffs->private_data); BUG_ON(waitqueue_active(&ffs->ev.waitq) || waitqueue_active(&ffs->ep0req_completion.wait) || waitqueue_active(&ffs->wait)); @@ -1722,16 +1719,24 @@ static void ffs_data_closed(struct ffs_data *ffs) { + struct ffs_epfile *epfiles; + unsigned long flags; + ENTER(); if (atomic_dec_and_test(&ffs->opened)) { if (ffs->no_disconnect) { ffs->state = FFS_DEACTIVATED; - if (ffs->epfiles) { - ffs_epfiles_destroy(ffs->epfiles, - ffs->eps_count); - ffs->epfiles = NULL; - } + spin_lock_irqsave(&ffs->eps_lock, flags); + epfiles = ffs->epfiles; + ffs->epfiles = NULL; + spin_unlock_irqrestore(&ffs->eps_lock, + flags); + + if (epfiles) + ffs_epfiles_destroy(epfiles, + ffs->eps_count); + if (ffs->setup_state == FFS_SETUP_PENDING) __ffs_ep0_stall(ffs); } else { @@ -1778,17 +1783,34 @@ static void ffs_data_clear(struct ffs_data *ffs) { + struct ffs_epfile *epfiles; + unsigned long flags; + ENTER(); ffs_closed(ffs); BUG_ON(ffs->gadget); - if (ffs->epfiles) - ffs_epfiles_destroy(ffs->epfiles, ffs->eps_count); + spin_lock_irqsave(&ffs->eps_lock, flags); + epfiles = ffs->epfiles; + ffs->epfiles = NULL; + spin_unlock_irqrestore(&ffs->eps_lock, flags); + + /* + * potential race possible between ffs_func_eps_disable + * & ffs_epfile_release therefore maintaining a local + * copy of epfile will save us from use-after-free. + */ + if (epfiles) { + ffs_epfiles_destroy(epfiles, ffs->eps_count); + ffs->epfiles = NULL; + } - if (ffs->ffs_eventfd) + if (ffs->ffs_eventfd) { eventfd_ctx_put(ffs->ffs_eventfd); + ffs->ffs_eventfd = NULL; + } kfree(ffs->raw_descs_data); kfree(ffs->raw_strings); @@ -1801,7 +1823,6 @@ ffs_data_clear(ffs); - ffs->epfiles = NULL; ffs->raw_descs_data = NULL; ffs->raw_descs = NULL; ffs->raw_strings = NULL; @@ -1930,12 +1951,15 @@ static void ffs_func_eps_disable(struct ffs_function *func) { - struct ffs_ep *ep = func->eps; - struct ffs_epfile *epfile = func->ffs->epfiles; - unsigned count = func->ffs->eps_count; + struct ffs_ep *ep; + struct ffs_epfile *epfile; + unsigned short count; unsigned long flags; spin_lock_irqsave(&func->ffs->eps_lock, flags); + count = func->ffs->eps_count; + epfile = func->ffs->epfiles; + ep = func->eps; while (count--) { /* pending requests get nuked */ if (likely(ep->ep)) @@ -1953,14 +1977,18 @@ static int ffs_func_eps_enable(struct ffs_function *func) { - struct ffs_data *ffs = func->ffs; - struct ffs_ep *ep = func->eps; - struct ffs_epfile *epfile = ffs->epfiles; - unsigned count = ffs->eps_count; + struct ffs_data *ffs; + struct ffs_ep *ep; + struct ffs_epfile *epfile; + unsigned short count; unsigned long flags; int ret = 0; spin_lock_irqsave(&func->ffs->eps_lock, flags); + ffs = func->ffs; + ep = func->eps; + epfile = ffs->epfiles; + count = ffs->eps_count; while(count--) { ep->ep->driver_data = ep; @@ -3040,6 +3068,7 @@ struct ffs_function *func = ffs_func_from_usb(f); struct f_fs_opts *ffs_opts = container_of(f->fi, struct f_fs_opts, func_inst); + struct ffs_data *ffs_data; int ret; ENTER(); @@ -3054,12 +3083,13 @@ if (!ffs_opts->no_configfs) ffs_dev_lock(); ret = ffs_opts->dev->desc_ready ? 0 : -ENODEV; - func->ffs = ffs_opts->dev->ffs_data; + ffs_data = ffs_opts->dev->ffs_data; if (!ffs_opts->no_configfs) ffs_dev_unlock(); if (ret) return ERR_PTR(ret); + func->ffs = ffs_data; func->conf = c; func->gadget = c->cdev->gadget; @@ -3514,6 +3544,7 @@ struct f_fs_opts *opts; opts = to_f_fs_opts(f); + ffs_release_dev(opts->dev); ffs_dev_lock(); _ffs_free_dev(opts->dev); ffs_dev_unlock(); @@ -3575,6 +3606,9 @@ ffs->func = NULL; } + /* Drain any pending AIO completions */ + drain_workqueue(ffs->io_completion_wq); + if (!--opts->refcnt) functionfs_unbind(ffs); @@ -3698,47 +3732,48 @@ { list_del(&dev->entry); - /* Clear the private_data pointer to stop incorrect dev access */ - if (dev->ffs_data) - dev->ffs_data->private_data = NULL; - kfree(dev); if (list_empty(&ffs_devices)) functionfs_cleanup(); } -static void *ffs_acquire_dev(const char *dev_name) +static int ffs_acquire_dev(const char *dev_name, struct ffs_data *ffs_data) { + int ret = 0; struct ffs_dev *ffs_dev; ENTER(); ffs_dev_lock(); ffs_dev = _ffs_find_dev(dev_name); - if (!ffs_dev) - ffs_dev = ERR_PTR(-ENOENT); - else if (ffs_dev->mounted) - ffs_dev = ERR_PTR(-EBUSY); - else if (ffs_dev->ffs_acquire_dev_callback && - ffs_dev->ffs_acquire_dev_callback(ffs_dev)) - ffs_dev = ERR_PTR(-ENOENT); - else + if (!ffs_dev) { + ret = -ENOENT; + } else if (ffs_dev->mounted) { + ret = -EBUSY; + } else if (ffs_dev->ffs_acquire_dev_callback && + ffs_dev->ffs_acquire_dev_callback(ffs_dev)) { + ret = -ENOENT; + } else { ffs_dev->mounted = true; + ffs_dev->ffs_data = ffs_data; + ffs_data->private_data = ffs_dev; + } ffs_dev_unlock(); - return ffs_dev; + return ret; } -static void ffs_release_dev(struct ffs_data *ffs_data) +static void ffs_release_dev(struct ffs_dev *ffs_dev) { - struct ffs_dev *ffs_dev; - ENTER(); ffs_dev_lock(); - ffs_dev = ffs_data->private_data; - if (ffs_dev) { + if (ffs_dev && ffs_dev->mounted) { ffs_dev->mounted = false; + if (ffs_dev->ffs_data) { + ffs_dev->ffs_data->private_data = NULL; + ffs_dev->ffs_data = NULL; + } if (ffs_dev->ffs_release_dev_callback) ffs_dev->ffs_release_dev_callback(ffs_dev); @@ -3766,7 +3801,6 @@ } ffs_obj->desc_ready = true; - ffs_obj->ffs_data = ffs; if (ffs_obj->ffs_ready_callback) { ret = ffs_obj->ffs_ready_callback(ffs); @@ -3794,7 +3828,6 @@ goto done; ffs_obj->desc_ready = false; - ffs_obj->ffs_data = NULL; if (test_and_clear_bit(FFS_FL_CALL_CLOSED_CALLBACK, &ffs->flags) && ffs_obj->ffs_closed_callback) diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_ncm.c linux-azure-5.4.0/drivers/usb/gadget/function/f_ncm.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_ncm.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_ncm.c @@ -583,7 +583,7 @@ data[0] = cpu_to_le32(ncm_bitrate(cdev->gadget)); data[1] = data[0]; - DBG(cdev, "notify speed %d\n", ncm_bitrate(cdev->gadget)); + DBG(cdev, "notify speed %u\n", ncm_bitrate(cdev->gadget)); ncm->notify_state = NCM_NOTIFY_CONNECT; break; } @@ -1101,11 +1101,11 @@ ncm->ndp_dgram_count = 1; /* Note: we skip opts->next_ndp_index */ - } - /* Delay the timer. */ - hrtimer_start(&ncm->task_timer, TX_TIMEOUT_NSECS, - HRTIMER_MODE_REL_SOFT); + /* Start the timer. */ + hrtimer_start(&ncm->task_timer, TX_TIMEOUT_NSECS, + HRTIMER_MODE_REL_SOFT); + } /* Add the datagram position entries */ ntb_ndp = skb_put_zero(ncm->skb_tx_ndp, dgram_idx_len); diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_printer.c linux-azure-5.4.0/drivers/usb/gadget/function/f_printer.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_printer.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_printer.c @@ -87,7 +87,7 @@ u8 printer_cdev_open; wait_queue_head_t wait; unsigned q_len; - char *pnp_string; /* We don't own memory! */ + char **pnp_string; /* We don't own memory! */ struct usb_function function; }; @@ -963,16 +963,16 @@ if ((wIndex>>8) != dev->interface) break; - if (!dev->pnp_string) { + if (!*dev->pnp_string) { value = 0; break; } - value = strlen(dev->pnp_string); + value = strlen(*dev->pnp_string); buf[0] = (value >> 8) & 0xFF; buf[1] = value & 0xFF; - memcpy(buf + 2, dev->pnp_string, value); + memcpy(buf + 2, *dev->pnp_string, value); DBG(dev, "1284 PNP String: %x %s\n", value, - dev->pnp_string); + *dev->pnp_string); break; case GET_PORT_STATUS: /* Get Port Status */ @@ -1063,7 +1063,8 @@ ss_ep_out_desc.bEndpointAddress = fs_ep_out_desc.bEndpointAddress; ret = usb_assign_descriptors(f, fs_printer_function, - hs_printer_function, ss_printer_function, NULL); + hs_printer_function, ss_printer_function, + ss_printer_function); if (ret) return ret; @@ -1434,7 +1435,7 @@ kref_init(&dev->kref); ++opts->refcnt; dev->minor = opts->minor; - dev->pnp_string = opts->pnp_string; + dev->pnp_string = &opts->pnp_string; dev->q_len = opts->q_len; mutex_unlock(&opts->lock); diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_rndis.c linux-azure-5.4.0/drivers/usb/gadget/function/f_rndis.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_rndis.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_rndis.c @@ -789,7 +789,7 @@ ss_notify_desc.bEndpointAddress = fs_notify_desc.bEndpointAddress; status = usb_assign_descriptors(f, eth_fs_function, eth_hs_function, - eth_ss_function, NULL); + eth_ss_function, eth_ss_function); if (status) goto fail; diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_tcm.c linux-azure-5.4.0/drivers/usb/gadget/function/f_tcm.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_tcm.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_tcm.c @@ -2056,7 +2056,8 @@ uasp_fs_cmd_desc.bEndpointAddress = uasp_ss_cmd_desc.bEndpointAddress; ret = usb_assign_descriptors(f, uasp_fs_function_desc, - uasp_hs_function_desc, uasp_ss_function_desc, NULL); + uasp_hs_function_desc, uasp_ss_function_desc, + uasp_ss_function_desc); if (ret) goto ep_fail; diff -u linux-azure-5.4.0/drivers/usb/gadget/function/f_uac2.c linux-azure-5.4.0/drivers/usb/gadget/function/f_uac2.c --- linux-azure-5.4.0/drivers/usb/gadget/function/f_uac2.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/f_uac2.c @@ -176,7 +176,7 @@ .bDescriptorSubtype = UAC_INPUT_TERMINAL, /* .bTerminalID = DYNAMIC */ - .wTerminalType = cpu_to_le16(UAC_INPUT_TERMINAL_UNDEFINED), + .wTerminalType = cpu_to_le16(UAC_INPUT_TERMINAL_MICROPHONE), .bAssocTerminal = 0, /* .bCSourceID = DYNAMIC */ .iChannelNames = 0, @@ -204,7 +204,7 @@ .bDescriptorSubtype = UAC_OUTPUT_TERMINAL, /* .bTerminalID = DYNAMIC */ - .wTerminalType = cpu_to_le16(UAC_OUTPUT_TERMINAL_UNDEFINED), + .wTerminalType = cpu_to_le16(UAC_OUTPUT_TERMINAL_SPEAKER), .bAssocTerminal = 0, /* .bSourceID = DYNAMIC */ /* .bCSourceID = DYNAMIC */ diff -u linux-azure-5.4.0/drivers/usb/gadget/function/u_audio.c linux-azure-5.4.0/drivers/usb/gadget/function/u_audio.c --- linux-azure-5.4.0/drivers/usb/gadget/function/u_audio.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/u_audio.c @@ -349,8 +349,6 @@ if (!prm->ep_enabled) return; - prm->ep_enabled = false; - audio_dev = uac->audio_dev; params = &audio_dev->params; @@ -368,11 +366,12 @@ } } + prm->ep_enabled = false; + if (usb_ep_disable(ep)) dev_err(uac->card->dev, "%s:%d Error!\n", __func__, __LINE__); } - int u_audio_start_capture(struct g_audio *audio_dev) { struct snd_uac_chip *uac = audio_dev->uac; diff -u linux-azure-5.4.0/drivers/usb/gadget/function/u_ether.c linux-azure-5.4.0/drivers/usb/gadget/function/u_ether.c --- linux-azure-5.4.0/drivers/usb/gadget/function/u_ether.c +++ linux-azure-5.4.0/drivers/usb/gadget/function/u_ether.c @@ -491,8 +491,9 @@ } spin_unlock_irqrestore(&dev->lock, flags); - if (skb && !in) { - dev_kfree_skb_any(skb); + if (!in) { + if (skb) + dev_kfree_skb_any(skb); return NETDEV_TX_OK; } @@ -771,9 +772,13 @@ dev->qmult = qmult; snprintf(net->name, sizeof(net->name), "%s%%d", netname); - if (get_ether_addr(dev_addr, net->dev_addr)) + if (get_ether_addr(dev_addr, net->dev_addr)) { + net->addr_assign_type = NET_ADDR_RANDOM; dev_warn(&g->dev, "using random %s ethernet address\n", "self"); + } else { + net->addr_assign_type = NET_ADDR_SET; + } if (get_ether_addr(host_addr, dev->host_mac)) dev_warn(&g->dev, "using random %s ethernet address\n", "host"); @@ -830,6 +835,9 @@ INIT_LIST_HEAD(&dev->tx_reqs); INIT_LIST_HEAD(&dev->rx_reqs); + /* by default we always have a random MAC address */ + net->addr_assign_type = NET_ADDR_RANDOM; + skb_queue_head_init(&dev->rx_frames); /* network device setup */ @@ -859,19 +867,22 @@ { struct eth_dev *dev; struct usb_gadget *g; - struct sockaddr sa; int status; if (!net->dev.parent) return -EINVAL; dev = netdev_priv(net); g = dev->gadget; + + memcpy(net->dev_addr, dev->dev_mac, ETH_ALEN); + status = register_netdev(net); if (status < 0) { dev_dbg(&g->dev, "register_netdev failed, %d\n", status); return status; } else { INFO(dev, "HOST MAC %pM\n", dev->host_mac); + INFO(dev, "MAC %pM\n", dev->dev_mac); /* two kinds of host-initiated state changes: * - iff DATA transfer is active, carrier is "on" @@ -879,15 +890,6 @@ */ netif_carrier_off(net); } - sa.sa_family = net->type; - memcpy(sa.sa_data, dev->dev_mac, ETH_ALEN); - rtnl_lock(); - status = dev_set_mac_address(net, &sa, NULL); - rtnl_unlock(); - if (status) - pr_warn("cannot set self ethernet address: %d\n", status); - else - INFO(dev, "MAC %pM\n", dev->dev_mac); return status; } @@ -912,6 +914,7 @@ if (get_ether_addr(dev_addr, new_addr)) return -EINVAL; memcpy(dev->dev_mac, new_addr, ETH_ALEN); + net->addr_assign_type = NET_ADDR_SET; return 0; } EXPORT_SYMBOL_GPL(gether_set_dev_addr); diff -u linux-azure-5.4.0/drivers/usb/gadget/legacy/inode.c linux-azure-5.4.0/drivers/usb/gadget/legacy/inode.c --- linux-azure-5.4.0/drivers/usb/gadget/legacy/inode.c +++ linux-azure-5.4.0/drivers/usb/gadget/legacy/inode.c @@ -110,6 +110,8 @@ /* enough for the whole queue: most events invalidate others */ #define N_EVENT 5 +#define RBUF_SIZE 256 + struct dev_data { spinlock_t lock; refcount_t count; @@ -144,7 +146,7 @@ struct dentry *dentry; /* except this scratch i/o buffer for ep0 */ - u8 rbuf [256]; + u8 rbuf[RBUF_SIZE]; }; static inline void get_dev (struct dev_data *data) @@ -360,6 +362,7 @@ spin_unlock_irq (&epdata->dev->lock); DBG (epdata->dev, "endpoint gone\n"); + wait_for_completion(&done); epdata->status = -ENODEV; } } @@ -1333,6 +1336,18 @@ u16 w_value = le16_to_cpu(ctrl->wValue); u16 w_length = le16_to_cpu(ctrl->wLength); + if (w_length > RBUF_SIZE) { + if (ctrl->bRequestType & USB_DIR_IN) { + /* Cast away the const, we are going to overwrite on purpose. */ + __le16 *temp = (__le16 *)&ctrl->wLength; + + *temp = cpu_to_le16(RBUF_SIZE); + w_length = RBUF_SIZE; + } else { + return value; + } + } + spin_lock (&dev->lock); dev->setup_abort = 0; if (dev->state == STATE_DEV_UNCONNECTED) { @@ -1815,8 +1830,9 @@ spin_lock_irq (&dev->lock); value = -EINVAL; if (dev->buf) { + spin_unlock_irq(&dev->lock); kfree(kbuf); - goto fail; + return value; } dev->buf = kbuf; @@ -1863,8 +1879,8 @@ value = usb_gadget_probe_driver(&gadgetfs_driver); if (value != 0) { - kfree (dev->buf); - dev->buf = NULL; + spin_lock_irq(&dev->lock); + goto fail; } else { /* at this point "good" hardware has for the first time * let the USB the host see us. alternatively, if users @@ -1881,6 +1897,9 @@ return value; fail: + dev->config = NULL; + dev->hs_config = NULL; + dev->dev = NULL; spin_unlock_irq (&dev->lock); pr_debug ("%s: %s fail %zd, %p\n", shortname, __func__, value, dev); kfree (dev->buf); diff -u linux-azure-5.4.0/drivers/usb/gadget/udc/bdc/bdc_core.c linux-azure-5.4.0/drivers/usb/gadget/udc/bdc/bdc_core.c --- linux-azure-5.4.0/drivers/usb/gadget/udc/bdc/bdc_core.c +++ linux-azure-5.4.0/drivers/usb/gadget/udc/bdc/bdc_core.c @@ -565,7 +565,8 @@ if (ret) { dev_err(dev, "No suitable DMA config available, abort\n"); - return -ENOTSUPP; + ret = -ENOTSUPP; + goto phycleanup; } dev_dbg(dev, "Using 32-bit address\n"); } diff -u linux-azure-5.4.0/drivers/usb/gadget/udc/core.c linux-azure-5.4.0/drivers/usb/gadget/udc/core.c --- linux-azure-5.4.0/drivers/usb/gadget/udc/core.c +++ linux-azure-5.4.0/drivers/usb/gadget/udc/core.c @@ -1303,7 +1303,6 @@ usb_gadget_udc_stop(udc); udc->driver = NULL; - udc->dev.driver = NULL; udc->gadget->dev.driver = NULL; } @@ -1352,7 +1351,6 @@ driver->function); udc->driver = driver; - udc->dev.driver = &driver->driver; udc->gadget->dev.driver = &driver->driver; usb_gadget_udc_set_speed(udc, driver->max_speed); @@ -1374,7 +1372,6 @@ dev_err(&udc->dev, "failed to start %s: %d\n", udc->driver->function, ret); udc->driver = NULL; - udc->dev.driver = NULL; udc->gadget->dev.driver = NULL; return ret; } diff -u linux-azure-5.4.0/drivers/usb/gadget/udc/lpc32xx_udc.c linux-azure-5.4.0/drivers/usb/gadget/udc/lpc32xx_udc.c --- linux-azure-5.4.0/drivers/usb/gadget/udc/lpc32xx_udc.c +++ linux-azure-5.4.0/drivers/usb/gadget/udc/lpc32xx_udc.c @@ -3027,6 +3027,7 @@ } udc->isp1301_i2c_client = isp1301_get_client(isp1301_node); + of_node_put(isp1301_node); if (!udc->isp1301_i2c_client) { return -EPROBE_DEFER; } diff -u linux-azure-5.4.0/drivers/usb/gadget/udc/r8a66597-udc.c linux-azure-5.4.0/drivers/usb/gadget/udc/r8a66597-udc.c --- linux-azure-5.4.0/drivers/usb/gadget/udc/r8a66597-udc.c +++ linux-azure-5.4.0/drivers/usb/gadget/udc/r8a66597-udc.c @@ -1250,7 +1250,7 @@ do { tmp = r8a66597_read(r8a66597, INTSTS0) & CTSQ; udelay(1); - } while (tmp != CS_IDST || timeout-- > 0); + } while (tmp != CS_IDST && timeout-- > 0); if (tmp == CS_IDST) r8a66597_bset(r8a66597, diff -u linux-azure-5.4.0/drivers/usb/gadget/udc/renesas_usb3.c linux-azure-5.4.0/drivers/usb/gadget/udc/renesas_usb3.c --- linux-azure-5.4.0/drivers/usb/gadget/udc/renesas_usb3.c +++ linux-azure-5.4.0/drivers/usb/gadget/udc/renesas_usb3.c @@ -2363,6 +2363,8 @@ switch (role) { case USB_ROLE_NONE: usb3->connection_state = USB_ROLE_NONE; + if (cur_role == USB_ROLE_HOST) + device_release_driver(host); if (usb3->driver) usb3_disconnect(usb3); usb3_vbus_out(usb3, false); @@ -2692,10 +2694,15 @@ static const struct of_device_id usb3_of_match[] = { { + .compatible = "renesas,r8a774c0-usb3-peri", + .data = &renesas_usb3_priv_r8a77990, + }, { .compatible = "renesas,r8a7795-usb3-peri", .data = &renesas_usb3_priv_gen3, - }, - { + }, { + .compatible = "renesas,r8a77990-usb3-peri", + .data = &renesas_usb3_priv_r8a77990, + }, { .compatible = "renesas,rcar-gen3-usb3-peri", .data = &renesas_usb3_priv_gen3, }, @@ -2705,17 +2712,9 @@ static const struct soc_device_attribute renesas_usb3_quirks_match[] = { { - .soc_id = "r8a774c0", - .data = &renesas_usb3_priv_r8a77990, - }, - { .soc_id = "r8a7795", .revision = "ES1.*", .data = &renesas_usb3_priv_r8a7795_es1, }, - { - .soc_id = "r8a77990", - .data = &renesas_usb3_priv_r8a77990, - }, { /* sentinel */ }, }; diff -u linux-azure-5.4.0/drivers/usb/host/ehci-hcd.c linux-azure-5.4.0/drivers/usb/host/ehci-hcd.c --- linux-azure-5.4.0/drivers/usb/host/ehci-hcd.c +++ linux-azure-5.4.0/drivers/usb/host/ehci-hcd.c @@ -634,7 +634,16 @@ /* Wait until HC become operational */ ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ msleep(5); - rc = ehci_handshake(ehci, &ehci->regs->status, STS_HALT, 0, 100 * 1000); + + /* For Aspeed, STS_HALT also depends on ASS/PSS status. + * Check CMD_RUN instead. + */ + if (ehci->is_aspeed) + rc = ehci_handshake(ehci, &ehci->regs->command, CMD_RUN, + 1, 100 * 1000); + else + rc = ehci_handshake(ehci, &ehci->regs->status, STS_HALT, + 0, 100 * 1000); up_write(&ehci_cf_port_reset_rwsem); diff -u linux-azure-5.4.0/drivers/usb/host/ehci-mv.c linux-azure-5.4.0/drivers/usb/host/ehci-mv.c --- linux-azure-5.4.0/drivers/usb/host/ehci-mv.c +++ linux-azure-5.4.0/drivers/usb/host/ehci-mv.c @@ -41,26 +41,25 @@ int (*set_vbus)(unsigned int vbus); }; -static void ehci_clock_enable(struct ehci_hcd_mv *ehci_mv) +static int mv_ehci_enable(struct ehci_hcd_mv *ehci_mv) { - clk_prepare_enable(ehci_mv->clk); -} + int retval; -static void ehci_clock_disable(struct ehci_hcd_mv *ehci_mv) -{ - clk_disable_unprepare(ehci_mv->clk); -} + retval = clk_prepare_enable(ehci_mv->clk); + if (retval) + return retval; -static int mv_ehci_enable(struct ehci_hcd_mv *ehci_mv) -{ - ehci_clock_enable(ehci_mv); - return phy_init(ehci_mv->phy); + retval = phy_init(ehci_mv->phy); + if (retval) + clk_disable_unprepare(ehci_mv->clk); + + return retval; } static void mv_ehci_disable(struct ehci_hcd_mv *ehci_mv) { phy_exit(ehci_mv->phy); - ehci_clock_disable(ehci_mv); + clk_disable_unprepare(ehci_mv->clk); } static int mv_ehci_reset(struct usb_hcd *hcd) diff -u linux-azure-5.4.0/drivers/usb/host/ehci-pci.c linux-azure-5.4.0/drivers/usb/host/ehci-pci.c --- linux-azure-5.4.0/drivers/usb/host/ehci-pci.c +++ linux-azure-5.4.0/drivers/usb/host/ehci-pci.c @@ -21,6 +21,9 @@ /* defined here to avoid adding to pci_ids.h for single instance use */ #define PCI_DEVICE_ID_INTEL_CE4100_USB 0x2e70 +#define PCI_VENDOR_ID_ASPEED 0x1a03 +#define PCI_DEVICE_ID_ASPEED_EHCI 0x2603 + /*-------------------------------------------------------------------------*/ #define PCI_DEVICE_ID_INTEL_QUARK_X1000_SOC 0x0939 static inline bool is_intel_quark_x1000(struct pci_dev *pdev) @@ -223,6 +226,12 @@ ehci->has_synopsys_hc_bug = 1; } break; + case PCI_VENDOR_ID_ASPEED: + if (pdev->device == PCI_DEVICE_ID_ASPEED_EHCI) { + ehci_info(ehci, "applying Aspeed HC workaround\n"); + ehci->is_aspeed = 1; + } + break; } /* optional debug port, normally in the first BAR */ @@ -298,6 +307,9 @@ if (pdev->vendor == PCI_VENDOR_ID_STMICRO && pdev->device == PCI_DEVICE_ID_STMICRO_USB_HOST) ; /* ConneXT has no sbrn register */ + else if (pdev->vendor == PCI_VENDOR_ID_HUAWEI + && pdev->device == 0xa239) + ; /* HUAWEI Kunpeng920 USB EHCI has no sbrn register */ else pci_read_config_byte(pdev, 0x60, &ehci->sbrn); diff -u linux-azure-5.4.0/drivers/usb/host/ehci-platform.c linux-azure-5.4.0/drivers/usb/host/ehci-platform.c --- linux-azure-5.4.0/drivers/usb/host/ehci-platform.c +++ linux-azure-5.4.0/drivers/usb/host/ehci-platform.c @@ -286,6 +286,12 @@ "has-transaction-translator")) hcd->has_tt = 1; + if (of_device_is_compatible(dev->dev.of_node, + "aspeed,ast2500-ehci") || + of_device_is_compatible(dev->dev.of_node, + "aspeed,ast2600-ehci")) + ehci->is_aspeed = 1; + if (soc_device_match(quirk_poll_match)) priv->quirk_poll = true; diff -u linux-azure-5.4.0/drivers/usb/host/fotg210-hcd.c linux-azure-5.4.0/drivers/usb/host/fotg210-hcd.c --- linux-azure-5.4.0/drivers/usb/host/fotg210-hcd.c +++ linux-azure-5.4.0/drivers/usb/host/fotg210-hcd.c @@ -2511,11 +2511,6 @@ return count; } -/* high bandwidth multiplier, as encoded in highspeed endpoint descriptors */ -#define hb_mult(wMaxPacketSize) (1 + (((wMaxPacketSize) >> 11) & 0x03)) -/* ... and packet size, for any kind of endpoint descriptor */ -#define max_packet(wMaxPacketSize) ((wMaxPacketSize) & 0x07ff) - /* reverse of qh_urb_transaction: free a list of TDs. * used for cleanup after errors, before HC sees an URB's TDs. */ @@ -2601,7 +2596,7 @@ token |= (1 /* "in" */ << 8); /* else it's already initted to "out" pid (0 << 8) */ - maxpacket = max_packet(usb_maxpacket(urb->dev, urb->pipe, !is_input)); + maxpacket = usb_maxpacket(urb->dev, urb->pipe, !is_input); /* * buffer gets wrapped in one or more qtds; @@ -2715,9 +2710,11 @@ gfp_t flags) { struct fotg210_qh *qh = fotg210_qh_alloc(fotg210, flags); + struct usb_host_endpoint *ep; u32 info1 = 0, info2 = 0; int is_input, type; int maxp = 0; + int mult; struct usb_tt *tt = urb->dev->tt; struct fotg210_qh_hw *hw; @@ -2732,14 +2729,15 @@ is_input = usb_pipein(urb->pipe); type = usb_pipetype(urb->pipe); - maxp = usb_maxpacket(urb->dev, urb->pipe, !is_input); + ep = usb_pipe_endpoint(urb->dev, urb->pipe); + maxp = usb_endpoint_maxp(&ep->desc); + mult = usb_endpoint_maxp_mult(&ep->desc); /* 1024 byte maxpacket is a hardware ceiling. High bandwidth * acts like up to 3KB, but is built from smaller packets. */ - if (max_packet(maxp) > 1024) { - fotg210_dbg(fotg210, "bogus qh maxpacket %d\n", - max_packet(maxp)); + if (maxp > 1024) { + fotg210_dbg(fotg210, "bogus qh maxpacket %d\n", maxp); goto done; } @@ -2753,8 +2751,7 @@ */ if (type == PIPE_INTERRUPT) { qh->usecs = NS_TO_US(usb_calc_bus_time(USB_SPEED_HIGH, - is_input, 0, - hb_mult(maxp) * max_packet(maxp))); + is_input, 0, mult * maxp)); qh->start = NO_FRAME; if (urb->dev->speed == USB_SPEED_HIGH) { @@ -2791,7 +2788,7 @@ think_time = tt ? tt->think_time : 0; qh->tt_usecs = NS_TO_US(think_time + usb_calc_bus_time(urb->dev->speed, - is_input, 0, max_packet(maxp))); + is_input, 0, maxp)); qh->period = urb->interval; if (qh->period > fotg210->periodic_size) { qh->period = fotg210->periodic_size; @@ -2854,11 +2851,11 @@ * to help them do so. So now people expect to use * such nonconformant devices with Linux too; sigh. */ - info1 |= max_packet(maxp) << 16; + info1 |= maxp << 16; info2 |= (FOTG210_TUNE_MULT_HS << 30); } else { /* PIPE_INTERRUPT */ - info1 |= max_packet(maxp) << 16; - info2 |= hb_mult(maxp) << 30; + info1 |= maxp << 16; + info2 |= mult << 30; } break; default: @@ -3928,6 +3925,7 @@ int is_input; long bandwidth; unsigned multi; + struct usb_host_endpoint *ep; /* * this might be a "high bandwidth" highspeed endpoint, @@ -3935,14 +3933,14 @@ */ epnum = usb_pipeendpoint(pipe); is_input = usb_pipein(pipe) ? USB_DIR_IN : 0; - maxp = usb_maxpacket(dev, pipe, !is_input); + ep = usb_pipe_endpoint(dev, pipe); + maxp = usb_endpoint_maxp(&ep->desc); if (is_input) buf1 = (1 << 11); else buf1 = 0; - maxp = max_packet(maxp); - multi = hb_mult(maxp); + multi = usb_endpoint_maxp_mult(&ep->desc); buf1 |= maxp; maxp *= multi; @@ -4463,13 +4461,12 @@ /* HC need not update length with this error */ if (!(t & FOTG210_ISOC_BABBLE)) { - desc->actual_length = - fotg210_itdlen(urb, desc, t); + desc->actual_length = FOTG210_ITD_LENGTH(t); urb->actual_length += desc->actual_length; } } else if (likely((t & FOTG210_ISOC_ACTIVE) == 0)) { desc->status = 0; - desc->actual_length = fotg210_itdlen(urb, desc, t); + desc->actual_length = FOTG210_ITD_LENGTH(t); urb->actual_length += desc->actual_length; } else { /* URB was too late */ diff -u linux-azure-5.4.0/drivers/usb/host/max3421-hcd.c linux-azure-5.4.0/drivers/usb/host/max3421-hcd.c --- linux-azure-5.4.0/drivers/usb/host/max3421-hcd.c +++ linux-azure-5.4.0/drivers/usb/host/max3421-hcd.c @@ -125,8 +125,6 @@ struct task_struct *spi_thread; - struct max3421_hcd *next; - enum max3421_rh_state rh_state; /* lower 16 bits contain port status, upper 16 bits the change mask: */ u32 port_status; @@ -153,8 +151,6 @@ */ struct urb *curr_urb; enum scheduling_pass sched_pass; - struct usb_device *loaded_dev; /* dev that's loaded into the chip */ - int loaded_epnum; /* epnum whose toggles are loaded */ int urb_done; /* > 0 -> no errors, < 0: errno */ size_t curr_len; u8 hien; @@ -176,8 +172,6 @@ u8 retransmit; /* packet needs retransmission */ }; -static struct max3421_hcd *max3421_hcd_list; - #define MAX3421_FIFO_SIZE 64 #define MAX3421_SPI_DIR_RD 0 /* read register from MAX3421 */ @@ -492,39 +486,17 @@ * Caller must NOT hold HCD spinlock. */ static void -max3421_set_address(struct usb_hcd *hcd, struct usb_device *dev, int epnum, - int force_toggles) +max3421_set_address(struct usb_hcd *hcd, struct usb_device *dev, int epnum) { - struct max3421_hcd *max3421_hcd = hcd_to_max3421(hcd); - int old_epnum, same_ep, rcvtog, sndtog; - struct usb_device *old_dev; + int rcvtog, sndtog; u8 hctl; - old_dev = max3421_hcd->loaded_dev; - old_epnum = max3421_hcd->loaded_epnum; - - same_ep = (dev == old_dev && epnum == old_epnum); - if (same_ep && !force_toggles) - return; - - if (old_dev && !same_ep) { - /* save the old end-points toggles: */ - u8 hrsl = spi_rd8(hcd, MAX3421_REG_HRSL); - - rcvtog = (hrsl >> MAX3421_HRSL_RCVTOGRD_BIT) & 1; - sndtog = (hrsl >> MAX3421_HRSL_SNDTOGRD_BIT) & 1; - - /* no locking: HCD (i.e., we) own toggles, don't we? */ - usb_settoggle(old_dev, old_epnum, 0, rcvtog); - usb_settoggle(old_dev, old_epnum, 1, sndtog); - } /* setup new endpoint's toggle bits: */ rcvtog = usb_gettoggle(dev, epnum, 0); sndtog = usb_gettoggle(dev, epnum, 1); hctl = (BIT(rcvtog + MAX3421_HCTL_RCVTOG0_BIT) | BIT(sndtog + MAX3421_HCTL_SNDTOG0_BIT)); - max3421_hcd->loaded_epnum = epnum; spi_wr8(hcd, MAX3421_REG_HCTL, hctl); /* @@ -532,7 +504,6 @@ * address-assignment so it's best to just always load the * address whenever the end-point changed/was forced. */ - max3421_hcd->loaded_dev = dev; spi_wr8(hcd, MAX3421_REG_PERADDR, dev->devnum); } @@ -667,7 +638,7 @@ struct max3421_hcd *max3421_hcd = hcd_to_max3421(hcd); struct urb *urb, *curr_urb = NULL; struct max3421_ep *max3421_ep; - int epnum, force_toggles = 0; + int epnum; struct usb_host_endpoint *ep; struct list_head *pos; unsigned long flags; @@ -777,7 +748,6 @@ usb_settoggle(urb->dev, epnum, 0, 1); usb_settoggle(urb->dev, epnum, 1, 1); max3421_ep->pkt_state = PKT_STATE_SETUP; - force_toggles = 1; } else max3421_ep->pkt_state = PKT_STATE_TRANSFER; } @@ -785,7 +755,7 @@ spin_unlock_irqrestore(&max3421_hcd->lock, flags); max3421_ep->last_active = max3421_hcd->frame_number; - max3421_set_address(hcd, urb->dev, epnum, force_toggles); + max3421_set_address(hcd, urb->dev, epnum); max3421_set_speed(hcd, urb->dev); max3421_next_transfer(hcd, 0); return 1; @@ -1380,6 +1350,16 @@ status = 0; urb = max3421_hcd->curr_urb; if (urb) { + /* save the old end-points toggles: */ + u8 hrsl = spi_rd8(hcd, MAX3421_REG_HRSL); + int rcvtog = (hrsl >> MAX3421_HRSL_RCVTOGRD_BIT) & 1; + int sndtog = (hrsl >> MAX3421_HRSL_SNDTOGRD_BIT) & 1; + int epnum = usb_endpoint_num(&urb->ep->desc); + + /* no locking: HCD (i.e., we) own toggles, don't we? */ + usb_settoggle(urb->dev, epnum, 0, rcvtog); + usb_settoggle(urb->dev, epnum, 1, sndtog); + max3421_hcd->curr_urb = NULL; spin_lock_irqsave(&max3421_hcd->lock, flags); usb_hcd_unlink_urb_from_ep(hcd, urb); @@ -1898,9 +1878,8 @@ } set_bit(HCD_FLAG_POLL_RH, &hcd->flags); max3421_hcd = hcd_to_max3421(hcd); - max3421_hcd->next = max3421_hcd_list; - max3421_hcd_list = max3421_hcd; INIT_LIST_HEAD(&max3421_hcd->ep_list); + spi_set_drvdata(spi, max3421_hcd); max3421_hcd->tx = kmalloc(sizeof(*max3421_hcd->tx), GFP_KERNEL); if (!max3421_hcd->tx) @@ -1950,28 +1929,18 @@ static int max3421_remove(struct spi_device *spi) { - struct max3421_hcd *max3421_hcd = NULL, **prev; - struct usb_hcd *hcd = NULL; + struct max3421_hcd *max3421_hcd; + struct usb_hcd *hcd; unsigned long flags; - for (prev = &max3421_hcd_list; *prev; prev = &(*prev)->next) { - max3421_hcd = *prev; - hcd = max3421_to_hcd(max3421_hcd); - if (hcd->self.controller == &spi->dev) - break; - } - if (!max3421_hcd) { - dev_err(&spi->dev, "no MAX3421 HCD found for SPI device %p\n", - spi); - return -ENODEV; - } + max3421_hcd = spi_get_drvdata(spi); + hcd = max3421_to_hcd(max3421_hcd); usb_remove_hcd(hcd); spin_lock_irqsave(&max3421_hcd->lock, flags); kthread_stop(max3421_hcd->spi_thread); - *prev = max3421_hcd->next; spin_unlock_irqrestore(&max3421_hcd->lock, flags); diff -u linux-azure-5.4.0/drivers/usb/host/oxu210hp-hcd.c linux-azure-5.4.0/drivers/usb/host/oxu210hp-hcd.c --- linux-azure-5.4.0/drivers/usb/host/oxu210hp-hcd.c +++ linux-azure-5.4.0/drivers/usb/host/oxu210hp-hcd.c @@ -3906,8 +3906,10 @@ } } + spin_unlock_irq(&oxu->lock); /* turn off now-idle HC */ del_timer_sync(&oxu->watchdog); + spin_lock_irq(&oxu->lock); ehci_halt(oxu); hcd->state = HC_STATE_SUSPENDED; diff -u linux-azure-5.4.0/drivers/usb/host/xhci-debugfs.c linux-azure-5.4.0/drivers/usb/host/xhci-debugfs.c --- linux-azure-5.4.0/drivers/usb/host/xhci-debugfs.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-debugfs.c @@ -197,12 +197,13 @@ int i; dma_addr_t dma; union xhci_trb *trb; + char str[XHCI_MSG_MAX]; for (i = 0; i < TRBS_PER_SEGMENT; i++) { trb = &seg->trbs[i]; dma = seg->dma + i * sizeof(*trb); seq_printf(s, "%pad: %s\n", &dma, - xhci_decode_trb(le32_to_cpu(trb->generic.field[0]), + xhci_decode_trb(str, XHCI_MSG_MAX, le32_to_cpu(trb->generic.field[0]), le32_to_cpu(trb->generic.field[1]), le32_to_cpu(trb->generic.field[2]), le32_to_cpu(trb->generic.field[3]))); @@ -340,9 +341,10 @@ { struct xhci_port *port = s->private; u32 portsc; + char str[XHCI_MSG_MAX]; portsc = readl(port->addr); - seq_printf(s, "%s\n", xhci_decode_portsc(portsc)); + seq_printf(s, "%s\n", xhci_decode_portsc(str, portsc)); return 0; } diff -u linux-azure-5.4.0/drivers/usb/host/xhci-hub.c linux-azure-5.4.0/drivers/usb/host/xhci-hub.c --- linux-azure-5.4.0/drivers/usb/host/xhci-hub.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-hub.c @@ -171,7 +171,6 @@ { u16 temp; - desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.9 says 20ms max */ desc->bHubContrCurrent = 0; desc->bNbrPorts = ports; @@ -206,6 +205,7 @@ desc->bDescriptorType = USB_DT_HUB; temp = 1 + (ports / 8); desc->bDescLength = USB_DT_HUB_NONVAR_SIZE + 2 * temp; + desc->bPwrOn2PwrGood = 10; /* xhci section 5.4.8 says 20ms */ /* The Device Removable bits are reported on a byte granularity. * If the port doesn't exist within that byte, the bit is set to 0. @@ -258,6 +258,7 @@ xhci_common_hub_descriptor(xhci, desc, ports); desc->bDescriptorType = USB_DT_SS_HUB; desc->bDescLength = USB_DT_SS_HUB_SIZE; + desc->bPwrOn2PwrGood = 50; /* usb 3.1 may fail if less than 100ms */ /* header decode latency should be zero for roothubs, * see section 4.23.5.2. @@ -628,6 +629,7 @@ continue; retval = xhci_disable_slot(xhci, i); + xhci_free_virt_device(xhci, i); if (retval) xhci_err(xhci, "Failed to disable slot %d, %d. Enter test mode anyway\n", i, retval); @@ -672,7 +674,7 @@ } pm_runtime_allow(xhci_to_hcd(xhci)->self.controller); xhci->test_mode = 0; - return xhci_reset(xhci); + return xhci_reset(xhci, XHCI_RESET_SHORT_USEC); } void xhci_set_link_state(struct xhci_hcd *xhci, struct xhci_port *port, @@ -998,6 +1000,9 @@ if (link_state == XDEV_U2) *status |= USB_PORT_STAT_L1; if (link_state == XDEV_U0) { + if (bus_state->resume_done[portnum]) + usb_hcd_end_port_resume(&port->rhub->hcd->self, + portnum); bus_state->resume_done[portnum] = 0; clear_bit(portnum, &bus_state->resuming_ports); if (bus_state->suspended_ports & (1 << portnum)) { @@ -1338,7 +1343,7 @@ } spin_unlock_irqrestore(&xhci->lock, flags); if (!wait_for_completion_timeout(&bus_state->u3exit_done[wIndex], - msecs_to_jiffies(100))) + msecs_to_jiffies(500))) xhci_dbg(xhci, "missing U0 port change event for port %d\n", wIndex); spin_lock_irqsave(&xhci->lock, flags); @@ -1546,11 +1551,23 @@ * Inform the usbcore about resume-in-progress by returning * a non-zero value even if there are no status changes. */ + spin_lock_irqsave(&xhci->lock, flags); + status = bus_state->resuming_ports; + /* + * SS devices are only visible to roothub after link training completes. + * Keep polling roothubs for a grace period after xHC start + */ + if (xhci->run_graceperiod) { + if (time_before(jiffies, xhci->run_graceperiod)) + status = 1; + else + xhci->run_graceperiod = 0; + } + mask = PORT_CSC | PORT_PEC | PORT_OCC | PORT_PLC | PORT_WRC | PORT_CEC; - spin_lock_irqsave(&xhci->lock, flags); /* For each port, did anything change? If so, set that bit in buf. */ for (i = 0; i < max_ports; i++) { temp = readl(ports[i]->addr); diff -u linux-azure-5.4.0/drivers/usb/host/xhci-mem.c linux-azure-5.4.0/drivers/usb/host/xhci-mem.c --- linux-azure-5.4.0/drivers/usb/host/xhci-mem.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-mem.c @@ -650,7 +650,7 @@ num_stream_ctxs, &stream_info->ctx_array_dma, mem_flags); if (!stream_info->stream_ctx_array) - goto cleanup_ctx; + goto cleanup_ring_array; memset(stream_info->stream_ctx_array, 0, sizeof(struct xhci_stream_ctx)*num_stream_ctxs); @@ -711,6 +711,11 @@ } xhci_free_command(xhci, stream_info->free_streams_command); cleanup_ctx: + xhci_free_stream_ctx(xhci, + stream_info->num_stream_ctxs, + stream_info->stream_ctx_array, + stream_info->ctx_array_dma); +cleanup_ring_array: kfree(stream_info->stream_rings); cleanup_info: kfree(stream_info); @@ -901,15 +906,19 @@ if (dev->eps[i].stream_info) xhci_free_stream_info(xhci, dev->eps[i].stream_info); - /* Endpoints on the TT/root port lists should have been removed - * when usb_disable_device() was called for the device. - * We can't drop them anyway, because the udev might have gone - * away by this point, and we can't tell what speed it was. + /* + * Endpoints are normally deleted from the bandwidth list when + * endpoints are dropped, before device is freed. + * If host is dying or being removed then endpoints aren't + * dropped cleanly, so delete the endpoint from list here. + * Only applicable for hosts with software bandwidth checking. */ - if (!list_empty(&dev->eps[i].bw_endpoint_list)) - xhci_warn(xhci, "Slot %u endpoint %u " - "not removed from BW list!\n", - slot_id, i); + + if (!list_empty(&dev->eps[i].bw_endpoint_list)) { + list_del_init(&dev->eps[i].bw_endpoint_list); + xhci_dbg(xhci, "Slot %u endpoint %u not removed from BW list!\n", + slot_id, i); + } } /* If this is a hub, free the TT(s) from the TT list */ xhci_free_tt_info(xhci, dev, slot_id); @@ -1929,6 +1938,7 @@ xhci->hw_ports = NULL; xhci->rh_bw = NULL; xhci->ext_caps = NULL; + xhci->port_caps = NULL; xhci->page_size = 0; xhci->page_shift = 0; @@ -2582,7 +2592,7 @@ fail: xhci_halt(xhci); - xhci_reset(xhci); + xhci_reset(xhci, XHCI_RESET_SHORT_USEC); xhci_mem_cleanup(xhci); return -ENOMEM; } diff -u linux-azure-5.4.0/drivers/usb/host/xhci-mtk-sch.c linux-azure-5.4.0/drivers/usb/host/xhci-mtk-sch.c --- linux-azure-5.4.0/drivers/usb/host/xhci-mtk-sch.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-mtk-sch.c @@ -25,6 +25,13 @@ */ #define TT_MICROFRAMES_MAX 9 +/* schedule error type */ +#define ESCH_SS_Y6 1001 +#define ESCH_SS_OVERLAP 1002 +#define ESCH_CS_OVERFLOW 1003 +#define ESCH_BW_OVERFLOW 1004 +#define ESCH_FIXME 1005 + /* mtk scheduler bitmasks */ #define EP_BPKTS(p) ((p) & 0x7f) #define EP_BCSCOUNT(p) (((p) & 0x7) << 8) @@ -32,6 +39,24 @@ #define EP_BOFFSET(p) ((p) & 0x3fff) #define EP_BREPEAT(p) (((p) & 0x7fff) << 16) +static char *sch_error_string(int err_num) +{ + switch (err_num) { + case ESCH_SS_Y6: + return "Can't schedule Start-Split in Y6"; + case ESCH_SS_OVERLAP: + return "Can't find a suitable Start-Split location"; + case ESCH_CS_OVERFLOW: + return "The last Complete-Split is greater than 7"; + case ESCH_BW_OVERFLOW: + return "Bandwidth exceeds the maximum limit"; + case ESCH_FIXME: + return "FIXME, to be resolved"; + default: + return "Unknown"; + } +} + static int is_fs_or_ls(enum usb_device_speed speed) { return speed == USB_SPEED_FULL || speed == USB_SPEED_LOW; @@ -375,7 +400,6 @@ sch_ep->bw_budget_table[j]; } } - sch_ep->allocated = used; } static int check_fs_bus_bw(struct mu3h_sch_ep_info *sch_ep, int offset) @@ -384,19 +408,20 @@ u32 num_esit, tmp; int base; int i, j; + u8 uframes = DIV_ROUND_UP(sch_ep->maxpkt, FS_PAYLOAD_MAX); num_esit = XHCI_MTK_MAX_ESIT / sch_ep->esit; + + if (sch_ep->ep_type == INT_IN_EP || sch_ep->ep_type == ISOC_IN_EP) + offset++; + for (i = 0; i < num_esit; i++) { base = offset + i * sch_ep->esit; - /* - * Compared with hs bus, no matter what ep type, - * the hub will always delay one uframe to send data - */ - for (j = 0; j < sch_ep->cs_count; j++) { + for (j = 0; j < uframes; j++) { tmp = tt->fs_bus_bw[base + j] + sch_ep->bw_cost_per_microframe; if (tmp > FS_PAYLOAD_MAX) - return -ERANGE; + return -ESCH_BW_OVERFLOW; } } @@ -406,15 +431,11 @@ static int check_sch_tt(struct usb_device *udev, struct mu3h_sch_ep_info *sch_ep, u32 offset) { - struct mu3h_sch_tt *tt = sch_ep->sch_tt; u32 extra_cs_count; - u32 fs_budget_start; u32 start_ss, last_ss; u32 start_cs, last_cs; - int i; start_ss = offset % 8; - fs_budget_start = (start_ss + 1) % 8; if (sch_ep->ep_type == ISOC_OUT_EP) { last_ss = start_ss + sch_ep->cs_count - 1; @@ -424,11 +445,7 @@ * must never schedule Start-Split in Y6 */ if (!(start_ss == 7 || last_ss < 6)) - return -ERANGE; - - for (i = 0; i < sch_ep->cs_count; i++) - if (test_bit(offset + i, tt->ss_bit_map)) - return -ERANGE; + return -ESCH_SS_Y6; } else { u32 cs_count = DIV_ROUND_UP(sch_ep->maxpkt, FS_PAYLOAD_MAX); @@ -438,29 +455,24 @@ * must never schedule Start-Split in Y6 */ if (start_ss == 6) - return -ERANGE; + return -ESCH_SS_Y6; /* one uframe for ss + one uframe for idle */ start_cs = (start_ss + 2) % 8; last_cs = start_cs + cs_count - 1; if (last_cs > 7) - return -ERANGE; + return -ESCH_CS_OVERFLOW; if (sch_ep->ep_type == ISOC_IN_EP) extra_cs_count = (last_cs == 7) ? 1 : 2; else /* ep_type : INTR IN / INTR OUT */ - extra_cs_count = (fs_budget_start == 6) ? 1 : 2; + extra_cs_count = 1; cs_count += extra_cs_count; if (cs_count > 7) cs_count = 7; /* HW limit */ - for (i = 0; i < cs_count + 2; i++) { - if (test_bit(offset + i, tt->ss_bit_map)) - return -ERANGE; - } - sch_ep->cs_count = cs_count; /* one for ss, the other for idle */ sch_ep->num_budget_microframes = cs_count + 2; @@ -482,28 +494,24 @@ struct mu3h_sch_tt *tt = sch_ep->sch_tt; u32 base, num_esit; int bw_updated; - int bits; int i, j; + int offset = sch_ep->offset; + u8 uframes = DIV_ROUND_UP(sch_ep->maxpkt, FS_PAYLOAD_MAX); num_esit = XHCI_MTK_MAX_ESIT / sch_ep->esit; - bits = (sch_ep->ep_type == ISOC_OUT_EP) ? sch_ep->cs_count : 1; if (used) bw_updated = sch_ep->bw_cost_per_microframe; else bw_updated = -sch_ep->bw_cost_per_microframe; - for (i = 0; i < num_esit; i++) { - base = sch_ep->offset + i * sch_ep->esit; + if (sch_ep->ep_type == INT_IN_EP || sch_ep->ep_type == ISOC_IN_EP) + offset++; - for (j = 0; j < bits; j++) { - if (used) - set_bit(base + j, tt->ss_bit_map); - else - clear_bit(base + j, tt->ss_bit_map); - } + for (i = 0; i < num_esit; i++) { + base = offset + i * sch_ep->esit; - for (j = 0; j < sch_ep->cs_count; j++) + for (j = 0; j < uframes; j++) tt->fs_bus_bw[base + j] += bw_updated; } @@ -513,21 +521,48 @@ list_del(&sch_ep->tt_endpoint); } +static int load_ep_bw(struct usb_device *udev, struct mu3h_sch_bw_info *sch_bw, + struct mu3h_sch_ep_info *sch_ep, bool loaded) +{ + if (sch_ep->sch_tt) + update_sch_tt(udev, sch_ep, loaded); + + /* update bus bandwidth info */ + update_bus_bw(sch_bw, sch_ep, loaded); + sch_ep->allocated = loaded; + + return 0; +} + +static u32 get_esit_boundary(struct mu3h_sch_ep_info *sch_ep) +{ + u32 boundary = sch_ep->esit; + + if (sch_ep->sch_tt) { /* LS/FS with TT */ + /* + * tune for CS, normally esit >= 8 for FS/LS, + * not add one for other types to avoid access array + * out of boundary + */ + if (sch_ep->ep_type == ISOC_OUT_EP && boundary > 1) + boundary--; + } + + return boundary; +} + static int check_sch_bw(struct usb_device *udev, struct mu3h_sch_bw_info *sch_bw, struct mu3h_sch_ep_info *sch_ep) { u32 offset; - u32 esit; u32 min_bw; u32 min_index; u32 worst_bw; u32 bw_boundary; + u32 esit_boundary; u32 min_num_budget; u32 min_cs_count; - bool tt_offset_ok = false; - int ret; - - esit = sch_ep->esit; + int ret = 0; /* * Search through all possible schedule microframes. @@ -537,16 +572,15 @@ min_index = 0; min_cs_count = sch_ep->cs_count; min_num_budget = sch_ep->num_budget_microframes; - for (offset = 0; offset < esit; offset++) { - if (is_fs_or_ls(udev->speed)) { + esit_boundary = get_esit_boundary(sch_ep); + for (offset = 0; offset < sch_ep->esit; offset++) { + if (sch_ep->sch_tt) { ret = check_sch_tt(udev, sch_ep, offset); if (ret) continue; - else - tt_offset_ok = true; } - if ((offset + sch_ep->num_budget_microframes) > sch_ep->esit) + if ((offset + sch_ep->num_budget_microframes) > esit_boundary) break; worst_bw = get_max_bw(sch_bw, sch_ep, offset); @@ -569,35 +603,21 @@ /* check bandwidth */ if (min_bw > bw_boundary) - return -ERANGE; + return ret ? ret : -ESCH_BW_OVERFLOW; sch_ep->offset = min_index; sch_ep->cs_count = min_cs_count; sch_ep->num_budget_microframes = min_num_budget; - if (is_fs_or_ls(udev->speed)) { - /* all offset for tt is not ok*/ - if (!tt_offset_ok) - return -ERANGE; - - update_sch_tt(udev, sch_ep, 1); - } - - /* update bus bandwidth info */ - update_bus_bw(sch_bw, sch_ep, 1); - - return 0; + return load_ep_bw(udev, sch_bw, sch_ep, true); } static void destroy_sch_ep(struct usb_device *udev, struct mu3h_sch_bw_info *sch_bw, struct mu3h_sch_ep_info *sch_ep) { /* only release ep bw check passed by check_sch_bw() */ - if (sch_ep->allocated) { - update_bus_bw(sch_bw, sch_ep, 0); - if (sch_ep->sch_tt) - update_sch_tt(udev, sch_ep, 0); - } + if (sch_ep->allocated) + load_ep_bw(udev, sch_bw, sch_ep, false); if (sch_ep->sch_tt) drop_tt(udev); @@ -760,7 +780,8 @@ ret = check_sch_bw(udev, sch_bw, sch_ep); if (ret) { - xhci_err(xhci, "Not enough bandwidth!\n"); + xhci_err(xhci, "Not enough bandwidth! (%s)\n", + sch_error_string(-ret)); return -ENOSPC; } } diff -u linux-azure-5.4.0/drivers/usb/host/xhci-mtk.h linux-azure-5.4.0/drivers/usb/host/xhci-mtk.h --- linux-azure-5.4.0/drivers/usb/host/xhci-mtk.h +++ linux-azure-5.4.0/drivers/usb/host/xhci-mtk.h @@ -20,14 +20,12 @@ #define XHCI_MTK_MAX_ESIT 64 /** - * @ss_bit_map: used to avoid start split microframes overlay * @fs_bus_bw: array to keep track of bandwidth already used for FS * @ep_list: Endpoints using this TT * @usb_tt: usb TT related * @tt_port: TT port number */ struct mu3h_sch_tt { - DECLARE_BITMAP(ss_bit_map, XHCI_MTK_MAX_ESIT); u32 fs_bus_bw[XHCI_MTK_MAX_ESIT]; struct list_head ep_list; struct usb_tt *usb_tt; diff -u linux-azure-5.4.0/drivers/usb/host/xhci-pci.c linux-azure-5.4.0/drivers/usb/host/xhci-pci.c --- linux-azure-5.4.0/drivers/usb/host/xhci-pci.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-pci.c @@ -28,6 +28,7 @@ #define PCI_VENDOR_ID_FRESCO_LOGIC 0x1b73 #define PCI_DEVICE_ID_FRESCO_LOGIC_PDK 0x1000 #define PCI_DEVICE_ID_FRESCO_LOGIC_FL1009 0x1009 +#define PCI_DEVICE_ID_FRESCO_LOGIC_FL1100 0x1100 #define PCI_DEVICE_ID_FRESCO_LOGIC_FL1400 0x1400 #define PCI_VENDOR_ID_ETRON 0x1b6f @@ -58,6 +59,15 @@ #define PCI_DEVICE_ID_AMD_PROMONTORYA_3 0x43ba #define PCI_DEVICE_ID_AMD_PROMONTORYA_2 0x43bb #define PCI_DEVICE_ID_AMD_PROMONTORYA_1 0x43bc +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_1 0x161a +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_2 0x161b +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_3 0x161d +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_4 0x161e +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_5 0x15d6 +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_6 0x15d7 +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_7 0x161c +#define PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_8 0x161f + #define PCI_DEVICE_ID_ASMEDIA_1042_XHCI 0x1042 #define PCI_DEVICE_ID_ASMEDIA_1042A_XHCI 0x1142 #define PCI_DEVICE_ID_ASMEDIA_1142_XHCI 0x1242 @@ -132,6 +142,10 @@ pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1009) xhci->quirks |= XHCI_BROKEN_STREAMS; + if (pdev->vendor == PCI_VENDOR_ID_FRESCO_LOGIC && + pdev->device == PCI_DEVICE_ID_FRESCO_LOGIC_FL1100) + xhci->quirks |= XHCI_TRUST_TX_LENGTH; + if (pdev->vendor == PCI_VENDOR_ID_NEC) xhci->quirks |= XHCI_NEC_HOST; @@ -258,8 +272,14 @@ xhci->quirks |= XHCI_BROKEN_STREAMS; if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && - pdev->device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI) + pdev->device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI) { + /* + * try to tame the ASMedia 1042 controller which reports 0.96 + * but appears to behave more like 1.0 + */ + xhci->quirks |= XHCI_SPURIOUS_SUCCESS; xhci->quirks |= XHCI_BROKEN_STREAMS; + } if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && pdev->device == PCI_DEVICE_ID_ASMEDIA_1042A_XHCI) { xhci->quirks |= XHCI_TRUST_TX_LENGTH; @@ -288,6 +308,17 @@ pdev->device == PCI_DEVICE_ID_AMD_PROMONTORYA_4)) xhci->quirks |= XHCI_NO_SOFT_RETRY; + if (pdev->vendor == PCI_VENDOR_ID_AMD && + (pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_1 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_2 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_3 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_4 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_5 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_6 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_7 || + pdev->device == PCI_DEVICE_ID_AMD_YELLOW_CARP_XHCI_8)) + xhci->quirks |= XHCI_DEFAULT_PM_RUNTIME_ALLOW; + if (xhci->quirks & XHCI_RESET_ON_RESUME) xhci_dbg_trace(xhci, trace_xhci_dbg_quirks, "QUIRK: Resetting on resume"); diff -u linux-azure-5.4.0/drivers/usb/host/xhci-ring.c linux-azure-5.4.0/drivers/usb/host/xhci-ring.c --- linux-azure-5.4.0/drivers/usb/host/xhci-ring.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-ring.c @@ -339,16 +339,29 @@ /* Must be called with xhci->lock held, releases and aquires lock back */ static int xhci_abort_cmd_ring(struct xhci_hcd *xhci, unsigned long flags) { - u64 temp_64; + struct xhci_segment *new_seg = xhci->cmd_ring->deq_seg; + union xhci_trb *new_deq = xhci->cmd_ring->dequeue; + u64 crcr; int ret; xhci_dbg(xhci, "Abort command ring\n"); reinit_completion(&xhci->cmd_ring_stop_completion); - temp_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring); - xhci_write_64(xhci, temp_64 | CMD_RING_ABORT, - &xhci->op_regs->cmd_ring); + /* + * The control bits like command stop, abort are located in lower + * dword of the command ring control register. + * Some controllers require all 64 bits to be written to abort the ring. + * Make sure the upper dword is valid, pointing to the next command, + * avoiding corrupting the command ring pointer in case the command ring + * is stopped by the time the upper dword is written. + */ + next_trb(xhci, NULL, &new_seg, &new_deq); + if (trb_is_link(new_deq)) + next_trb(xhci, NULL, &new_seg, &new_deq); + + crcr = xhci_trb_virt_to_dma(new_seg, new_deq); + xhci_write_64(xhci, crcr | CMD_RING_ABORT, &xhci->op_regs->cmd_ring); /* Section 4.6.1.2 of xHCI 1.0 spec says software should also time the * completion of the Command Abort operation. If CRR is not negated in 5 @@ -440,6 +453,26 @@ ring_doorbell_for_active_rings(xhci, slot_id, ep_index); } +static struct xhci_virt_ep *xhci_get_virt_ep(struct xhci_hcd *xhci, + unsigned int slot_id, + unsigned int ep_index) +{ + if (slot_id == 0 || slot_id >= MAX_HC_SLOTS) { + xhci_warn(xhci, "Invalid slot_id %u\n", slot_id); + return NULL; + } + if (ep_index >= EP_CTX_PER_DEV) { + xhci_warn(xhci, "Invalid endpoint index %u\n", ep_index); + return NULL; + } + if (!xhci->devs[slot_id]) { + xhci_warn(xhci, "No xhci virt device for slot_id %u\n", slot_id); + return NULL; + } + + return &xhci->devs[slot_id]->eps[ep_index]; +} + /* Get the right ring for the given slot_id, ep_index and stream_id. * If the endpoint supports streams, boundary check the URB's stream ID. * If the endpoint doesn't support streams, return the singular endpoint ring. @@ -450,7 +483,10 @@ { struct xhci_virt_ep *ep; - ep = &xhci->devs[slot_id]->eps[ep_index]; + ep = xhci_get_virt_ep(xhci, slot_id, ep_index); + if (!ep) + return NULL; + /* Common case: no streams */ if (!(ep->ep_state & EP_HAS_STREAMS)) return ep->ring; @@ -743,11 +779,14 @@ memset(&deq_state, 0, sizeof(deq_state)); ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); + ep = xhci_get_virt_ep(xhci, slot_id, ep_index); + if (!ep) + return; + vdev = xhci->devs[slot_id]; ep_ctx = xhci_get_ep_ctx(xhci, vdev->out_ctx, ep_index); trace_xhci_handle_cmd_stop_ep(ep_ctx); - ep = &xhci->devs[slot_id]->eps[ep_index]; last_unlinked_td = list_last_entry(&ep->cancelled_td_list, struct xhci_td, cancelled_td_list); @@ -1068,9 +1107,11 @@ ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); stream_id = TRB_TO_STREAM_ID(le32_to_cpu(trb->generic.field[2])); - dev = xhci->devs[slot_id]; - ep = &dev->eps[ep_index]; + ep = xhci_get_virt_ep(xhci, slot_id, ep_index); + if (!ep) + return; + dev = xhci->devs[slot_id]; ep_ring = xhci_stream_id_to_ring(dev, ep_index, stream_id); if (!ep_ring) { xhci_warn(xhci, "WARN Set TR deq ptr command for freed stream ID %u\n", @@ -1143,9 +1184,9 @@ } cleanup: - dev->eps[ep_index].ep_state &= ~SET_DEQ_PENDING; - dev->eps[ep_index].queued_deq_seg = NULL; - dev->eps[ep_index].queued_deq_ptr = NULL; + ep->ep_state &= ~SET_DEQ_PENDING; + ep->queued_deq_seg = NULL; + ep->queued_deq_ptr = NULL; /* Restart any rings with pending URBs */ ring_doorbell_for_active_rings(xhci, slot_id, ep_index); } @@ -1154,10 +1195,15 @@ union xhci_trb *trb, u32 cmd_comp_code) { struct xhci_virt_device *vdev; + struct xhci_virt_ep *ep; struct xhci_ep_ctx *ep_ctx; unsigned int ep_index; ep_index = TRB_TO_EP_INDEX(le32_to_cpu(trb->generic.field[3])); + ep = xhci_get_virt_ep(xhci, slot_id, ep_index); + if (!ep) + return; + vdev = xhci->devs[slot_id]; ep_ctx = xhci_get_ep_ctx(xhci, vdev->out_ctx, ep_index); trace_xhci_handle_cmd_reset_ep(ep_ctx); @@ -1187,7 +1233,7 @@ xhci_ring_cmd_db(xhci); } else { /* Clear our internal halted state */ - xhci->devs[slot_id]->eps[ep_index].ep_state &= ~EP_HALTED; + ep->ep_state &= ~EP_HALTED; } /* if this was a soft reset, then restart */ @@ -1219,7 +1265,6 @@ if (xhci->quirks & XHCI_EP_LIMIT_QUIRK) /* Delete default control endpoint resources */ xhci_free_device_endpoint_resources(xhci, virt_dev, true); - xhci_free_virt_device(xhci, slot_id); } static void xhci_handle_cmd_config_ep(struct xhci_hcd *xhci, int slot_id, @@ -2356,14 +2401,13 @@ trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len)); ep_trb_dma = le64_to_cpu(event->buffer); - xdev = xhci->devs[slot_id]; - if (!xdev) { - xhci_err(xhci, "ERROR Transfer event pointed to bad slot %u\n", - slot_id); + ep = xhci_get_virt_ep(xhci, slot_id, ep_index); + if (!ep) { + xhci_err(xhci, "ERROR Invalid Transfer event\n"); goto err_out; } - ep = &xdev->eps[ep_index]; + xdev = xhci->devs[slot_id]; ep_ring = xhci_dma_to_transfer_ring(ep, ep_trb_dma); ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index); @@ -2888,6 +2932,8 @@ if (event_loop++ < TRBS_PER_SEGMENT / 2) continue; xhci_update_erst_dequeue(xhci, event_ring_deq); + event_ring_deq = xhci->event_ring->dequeue; + event_loop = 0; } diff -u linux-azure-5.4.0/drivers/usb/host/xhci-tegra.c linux-azure-5.4.0/drivers/usb/host/xhci-tegra.c --- linux-azure-5.4.0/drivers/usb/host/xhci-tegra.c +++ linux-azure-5.4.0/drivers/usb/host/xhci-tegra.c @@ -933,15 +933,15 @@ int err; tegra->genpd_dev_host = dev_pm_domain_attach_by_name(dev, "xusb_host"); - if (IS_ERR(tegra->genpd_dev_host)) { - err = PTR_ERR(tegra->genpd_dev_host); + if (IS_ERR_OR_NULL(tegra->genpd_dev_host)) { + err = PTR_ERR(tegra->genpd_dev_host) ? : -ENODATA; dev_err(dev, "failed to get host pm-domain: %d\n", err); return err; } tegra->genpd_dev_ss = dev_pm_domain_attach_by_name(dev, "xusb_ss"); - if (IS_ERR(tegra->genpd_dev_ss)) { - err = PTR_ERR(tegra->genpd_dev_ss); + if (IS_ERR_OR_NULL(tegra->genpd_dev_ss)) { + err = PTR_ERR(tegra->genpd_dev_ss) ? : -ENODATA; dev_err(dev, "failed to get superspeed pm-domain: %d\n", err); return err; } diff -u linux-azure-5.4.0/drivers/usb/host/xhci-trace.h linux-azure-5.4.0/drivers/usb/host/xhci-trace.h --- linux-azure-5.4.0/drivers/usb/host/xhci-trace.h +++ linux-azure-5.4.0/drivers/usb/host/xhci-trace.h @@ -25,8 +25,6 @@ #include "xhci.h" #include "xhci-dbgcap.h" -#define XHCI_MSG_MAX 500 - DECLARE_EVENT_CLASS(xhci_log_msg, TP_PROTO(struct va_format *vaf), TP_ARGS(vaf), @@ -122,6 +120,7 @@ __field(u32, field1) __field(u32, field2) __field(u32, field3) + __dynamic_array(char, str, XHCI_MSG_MAX) ), TP_fast_assign( __entry->type = ring->type; @@ -131,7 +130,7 @@ __entry->field3 = le32_to_cpu(trb->field[3]); ), TP_printk("%s: %s", xhci_ring_type_string(__entry->type), - xhci_decode_trb(__entry->field0, __entry->field1, + xhci_decode_trb(__get_str(str), XHCI_MSG_MAX, __entry->field0, __entry->field1, __entry->field2, __entry->field3) ) ); @@ -523,6 +522,7 @@ TP_STRUCT__entry( __field(u32, portnum) __field(u32, portsc) + __dynamic_array(char, str, XHCI_MSG_MAX) ), TP_fast_assign( __entry->portnum = portnum; @@ -530,7 +530,7 @@ ), TP_printk("port-%d: %s", __entry->portnum, - xhci_decode_portsc(__entry->portsc) + xhci_decode_portsc(__get_str(str), __entry->portsc) ) ); diff -u linux-azure-5.4.0/drivers/usb/host/xhci.c linux-azure-5.4.0/drivers/usb/host/xhci.c --- linux-azure-5.4.0/drivers/usb/host/xhci.c +++ linux-azure-5.4.0/drivers/usb/host/xhci.c @@ -66,7 +66,7 @@ * handshake done). There are two failure modes: "usec" have passed (major * hardware flakeout), or the register reads as all-ones (hardware removed). */ -int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, int usec) +int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, u64 timeout_us) { u32 result; int ret; @@ -74,7 +74,7 @@ ret = readl_poll_timeout_atomic(ptr, result, (result & mask) == done || result == U32_MAX, - 1, usec); + 1, timeout_us); if (result == U32_MAX) /* card removed */ return -ENODEV; @@ -149,9 +149,11 @@ xhci_err(xhci, "Host took too long to start, " "waited %u microseconds.\n", XHCI_MAX_HALT_USEC); - if (!ret) + if (!ret) { /* clear state flags. Including dying, halted or removing */ xhci->xhc_state = 0; + xhci->run_graceperiod = jiffies + msecs_to_jiffies(500); + } return ret; } @@ -163,7 +165,7 @@ * Transactions will be terminated immediately, and operational registers * will be set to their defaults. */ -int xhci_reset(struct xhci_hcd *xhci) +int xhci_reset(struct xhci_hcd *xhci, u64 timeout_us) { u32 command; u32 state; @@ -196,8 +198,7 @@ if (xhci->quirks & XHCI_INTEL_HOST) udelay(1000); - ret = xhci_handshake(&xhci->op_regs->command, - CMD_RESET, 0, 10 * 1000 * 1000); + ret = xhci_handshake(&xhci->op_regs->command, CMD_RESET, 0, timeout_us); if (ret) return ret; @@ -210,8 +211,7 @@ * xHCI cannot write to any doorbells or operational registers other * than status until the "Controller Not Ready" flag is cleared. */ - ret = xhci_handshake(&xhci->op_regs->status, - STS_CNR, 0, 10 * 1000 * 1000); + ret = xhci_handshake(&xhci->op_regs->status, STS_CNR, 0, timeout_us); xhci->usb2_rhub.bus_state.port_c_suspend = 0; xhci->usb2_rhub.bus_state.suspended_ports = 0; @@ -693,6 +693,7 @@ if (ret) xhci_free_command(xhci, command); } + set_bit(HCD_FLAG_DEFER_RH_REGISTER, &hcd->flags); xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_run for USB2 roothub"); @@ -732,7 +733,7 @@ xhci->xhc_state |= XHCI_STATE_HALTED; xhci->cmd_ring_state = CMD_RING_STATE_STOPPED; xhci_halt(xhci); - xhci_reset(xhci); + xhci_reset(xhci, XHCI_RESET_SHORT_USEC); spin_unlock_irq(&xhci->lock); xhci_cleanup_msix(xhci); @@ -781,11 +782,22 @@ if (xhci->quirks & XHCI_SPURIOUS_REBOOT) usb_disable_xhci_ports(to_pci_dev(hcd->self.sysdev)); + /* Don't poll the roothubs after shutdown. */ + xhci_dbg(xhci, "%s: stopping usb%d port polling.\n", + __func__, hcd->self.busnum); + clear_bit(HCD_FLAG_POLL_RH, &hcd->flags); + del_timer_sync(&hcd->rh_timer); + + if (xhci->shared_hcd) { + clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags); + del_timer_sync(&xhci->shared_hcd->rh_timer); + } + spin_lock_irq(&xhci->lock); xhci_halt(xhci); /* Workaround for spurious wakeups at shutdown with HSW */ if (xhci->quirks & XHCI_SPURIOUS_WAKEUP) - xhci_reset(xhci); + xhci_reset(xhci, XHCI_RESET_SHORT_USEC); spin_unlock_irq(&xhci->lock); xhci_cleanup_msix(xhci); @@ -1091,6 +1103,7 @@ int retval = 0; bool comp_timer_running = false; bool pending_portevent = false; + bool reinit_xhc = false; if (!hcd->state) return 0; @@ -1107,10 +1120,11 @@ set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags); spin_lock_irq(&xhci->lock); - if ((xhci->quirks & XHCI_RESET_ON_RESUME) || xhci->broken_suspend) - hibernated = true; - if (!hibernated) { + if (hibernated || xhci->quirks & XHCI_RESET_ON_RESUME || xhci->broken_suspend) + reinit_xhc = true; + + if (!reinit_xhc) { /* * Some controllers might lose power during suspend, so wait * for controller not ready bit to clear, just as in xHC init. @@ -1143,12 +1157,18 @@ spin_unlock_irq(&xhci->lock); return -ETIMEDOUT; } - temp = readl(&xhci->op_regs->status); } - /* If restore operation fails, re-initialize the HC during resume */ - if ((temp & STS_SRE) || hibernated) { + temp = readl(&xhci->op_regs->status); + + /* re-initialize the HC on Restore Error, or Host Controller Error */ + if (temp & (STS_SRE | STS_HCE)) { + reinit_xhc = true; + if (!xhci->broken_suspend) + xhci_warn(xhci, "xHC error in resume, USBSTS 0x%x, Reinit\n", temp); + } + if (reinit_xhc) { if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !(xhci_all_ports_seen_u0(xhci))) { del_timer_sync(&xhci->comp_mode_recovery_timer); @@ -1163,7 +1183,7 @@ xhci_dbg(xhci, "Stop HCD\n"); xhci_halt(xhci); xhci_zero_64b_regs(xhci); - retval = xhci_reset(xhci); + retval = xhci_reset(xhci, XHCI_RESET_LONG_USEC); spin_unlock_irq(&xhci->lock); if (retval) return retval; @@ -1480,9 +1500,12 @@ struct urb_priv *urb_priv; int num_tds; - if (!urb || xhci_check_args(hcd, urb->dev, urb->ep, - true, true, __func__) <= 0) + if (!urb) return -EINVAL; + ret = xhci_check_args(hcd, urb->dev, urb->ep, + true, true, __func__); + if (ret <= 0) + return ret ? ret : -EINVAL; slot_id = urb->dev->slot_id; ep_index = xhci_get_endpoint_index(&urb->ep->desc); @@ -3172,10 +3195,13 @@ return; /* Bail out if toggle is already being cleared by a endpoint reset */ + spin_lock_irqsave(&xhci->lock, flags); if (ep->ep_state & EP_HARD_CLEAR_TOGGLE) { ep->ep_state &= ~EP_HARD_CLEAR_TOGGLE; + spin_unlock_irqrestore(&xhci->lock, flags); return; } + spin_unlock_irqrestore(&xhci->lock, flags); /* Only interrupt and bulk ep's use data toggle, USB2 spec 5.5.4-> */ if (usb_endpoint_xfer_control(&host_ep->desc) || usb_endpoint_xfer_isoc(&host_ep->desc)) @@ -3261,8 +3287,10 @@ xhci_free_command(xhci, cfg_cmd); cleanup: xhci_free_command(xhci, stop_cmd); + spin_lock_irqsave(&xhci->lock, flags); if (ep->ep_state & EP_SOFT_CLEAR_TOGGLE) ep->ep_state &= ~EP_SOFT_CLEAR_TOGGLE; + spin_unlock_irqrestore(&xhci->lock, flags); } static int xhci_check_streams_endpoint(struct xhci_hcd *xhci, @@ -3277,7 +3305,7 @@ return -EINVAL; ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__); if (ret <= 0) - return -EINVAL; + return ret ? ret : -EINVAL; if (usb_ss_max_streams(&ep->ss_ep_comp) == 0) { xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion" " descriptor for ep 0x%x does not support streams\n", @@ -3884,7 +3912,6 @@ struct xhci_slot_ctx *slot_ctx; int i, ret; -#ifndef CONFIG_USB_DEFAULT_PERSIST /* * We called pm_runtime_get_noresume when the device was attached. * Decrement the counter here to allow controller to runtime suspend @@ -3892,7 +3919,6 @@ */ if (xhci->quirks & XHCI_RESET_ON_RESUME) pm_runtime_put_noidle(hcd->self.controller); -#endif ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__); /* If the host is halted due to driver unload, we still need to free the @@ -3911,9 +3937,8 @@ del_timer_sync(&virt_dev->eps[i].stop_cmd_timer); } virt_dev->udev = NULL; - ret = xhci_disable_slot(xhci, udev->slot_id); - if (ret) - xhci_free_virt_device(xhci, udev->slot_id); + xhci_disable_slot(xhci, udev->slot_id); + xhci_free_virt_device(xhci, udev->slot_id); } int xhci_disable_slot(struct xhci_hcd *xhci, u32 slot_id) @@ -3923,7 +3948,7 @@ u32 state; int ret = 0; - command = xhci_alloc_command(xhci, false, GFP_KERNEL); + command = xhci_alloc_command(xhci, true, GFP_KERNEL); if (!command) return -ENOMEM; @@ -3948,6 +3973,15 @@ } xhci_ring_cmd_db(xhci); spin_unlock_irqrestore(&xhci->lock, flags); + + wait_for_completion(command->completion); + + if (command->status != COMP_SUCCESS) + xhci_warn(xhci, "Unsuccessful disable slot %u command, status %d\n", + slot_id, command->status); + + xhci_free_command(xhci, command); + return ret; } @@ -4044,23 +4078,20 @@ xhci_debugfs_create_slot(xhci, slot_id); -#ifndef CONFIG_USB_DEFAULT_PERSIST /* * If resetting upon resume, we can't put the controller into runtime * suspend if there is a device attached. */ if (xhci->quirks & XHCI_RESET_ON_RESUME) pm_runtime_get_noresume(hcd->self.controller); -#endif /* Is this a LS or FS device under a HS hub? */ /* Hub or peripherial? */ return 1; disable_slot: - ret = xhci_disable_slot(xhci, udev->slot_id); - if (ret) - xhci_free_virt_device(xhci, udev->slot_id); + xhci_disable_slot(xhci, udev->slot_id); + xhci_free_virt_device(xhci, udev->slot_id); return 0; } @@ -4190,6 +4221,7 @@ mutex_unlock(&xhci->mutex); ret = xhci_disable_slot(xhci, udev->slot_id); + xhci_free_virt_device(xhci, udev->slot_id); if (!ret) xhci_alloc_dev(hcd, udev); kfree(command->completion); @@ -4662,19 +4694,19 @@ { unsigned long long timeout_ns; - if (xhci->quirks & XHCI_INTEL_HOST) - timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc); - else - timeout_ns = udev->u1_params.sel; - /* Prevent U1 if service interval is shorter than U1 exit latency */ if (usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) { - if (xhci_service_interval_to_ns(desc) <= timeout_ns) { + if (xhci_service_interval_to_ns(desc) <= udev->u1_params.mel) { dev_dbg(&udev->dev, "Disable U1, ESIT shorter than exit latency\n"); return USB3_LPM_DISABLED; } } + if (xhci->quirks & XHCI_INTEL_HOST) + timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc); + else + timeout_ns = udev->u1_params.sel; + /* The U1 timeout is encoded in 1us intervals. * Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */ @@ -4726,19 +4758,19 @@ { unsigned long long timeout_ns; - if (xhci->quirks & XHCI_INTEL_HOST) - timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc); - else - timeout_ns = udev->u2_params.sel; - /* Prevent U2 if service interval is shorter than U2 exit latency */ if (usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) { - if (xhci_service_interval_to_ns(desc) <= timeout_ns) { + if (xhci_service_interval_to_ns(desc) <= udev->u2_params.mel) { dev_dbg(&udev->dev, "Disable U2, ESIT shorter than exit latency\n"); return USB3_LPM_DISABLED; } } + if (xhci->quirks & XHCI_INTEL_HOST) + timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc); + else + timeout_ns = udev->u2_params.sel; + /* The U2 timeout is encoded in 256us intervals */ timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000); /* If the necessary timeout value is bigger than what we can set in the @@ -5253,7 +5285,7 @@ xhci_dbg(xhci, "Resetting HCD\n"); /* Reset the internal HC memory state and registers. */ - retval = xhci_reset(xhci); + retval = xhci_reset(xhci, XHCI_RESET_LONG_USEC); if (retval) return retval; xhci_dbg(xhci, "Reset complete\n"); diff -u linux-azure-5.4.0/drivers/usb/host/xhci.h linux-azure-5.4.0/drivers/usb/host/xhci.h --- linux-azure-5.4.0/drivers/usb/host/xhci.h +++ linux-azure-5.4.0/drivers/usb/host/xhci.h @@ -22,6 +22,9 @@ #include "xhci-ext-caps.h" #include "pci-quirks.h" +/* max buffer size for trace and debug messages */ +#define XHCI_MSG_MAX 500 + /* xHCI PCI Configuration Registers */ #define XHCI_SBRN_OFFSET (0x60) @@ -226,6 +229,9 @@ #define CMD_ETE (1 << 14) /* bits 15:31 are reserved (and should be preserved on writes). */ +#define XHCI_RESET_LONG_USEC (10 * 1000 * 1000) +#define XHCI_RESET_SHORT_USEC (250 * 1000) + /* IMAN - Interrupt Management Register */ #define IMAN_IE (1 << 1) #define IMAN_IP (1 << 0) @@ -993,6 +999,7 @@ unsigned int ss_bw_out; }; +#define EP_CTX_PER_DEV 31 struct xhci_virt_device { struct usb_device *udev; @@ -1007,7 +1014,7 @@ struct xhci_container_ctx *out_ctx; /* Used for addressing devices and configuration changes */ struct xhci_container_ctx *in_ctx; - struct xhci_virt_ep eps[31]; + struct xhci_virt_ep eps[EP_CTX_PER_DEV]; u8 fake_port; u8 real_port; struct xhci_interval_bw_table *bw_table; @@ -1807,7 +1814,7 @@ /* Host controller watchdog timer structures */ unsigned int xhc_state; - + unsigned long run_graceperiod; u32 command; struct s3_save s3; /* Host controller is dying - not responding to commands. "I'm not dead yet!" @@ -2057,11 +2064,11 @@ /* xHCI host controller glue */ typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); -int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, int usec); +int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, u64 timeout_us); void xhci_quiesce(struct xhci_hcd *xhci); int xhci_halt(struct xhci_hcd *xhci); int xhci_start(struct xhci_hcd *xhci); -int xhci_reset(struct xhci_hcd *xhci); +int xhci_reset(struct xhci_hcd *xhci, u64 timeout_us); int xhci_run(struct usb_hcd *hcd); int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks); void xhci_shutdown(struct usb_hcd *hcd); @@ -2216,15 +2223,14 @@ } } -static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2, - u32 field3) +static inline const char *xhci_decode_trb(char *str, size_t size, + u32 field0, u32 field1, u32 field2, u32 field3) { - static char str[256]; int type = TRB_FIELD_TO_TYPE(field3); switch (type) { case TRB_LINK: - sprintf(str, + snprintf(str, size, "LINK %08x%08x intr %d type '%s' flags %c:%c:%c:%c", field1, field0, GET_INTR_TARGET(field2), xhci_trb_type_string(type), @@ -2241,7 +2247,7 @@ case TRB_HC_EVENT: case TRB_DEV_NOTE: case TRB_MFINDEX_WRAP: - sprintf(str, + snprintf(str, size, "TRB %08x%08x status '%s' len %d slot %d ep %d type '%s' flags %c:%c", field1, field0, xhci_trb_comp_code_string(GET_COMP_CODE(field2)), @@ -2254,7 +2260,8 @@ break; case TRB_SETUP: - sprintf(str, "bRequestType %02x bRequest %02x wValue %02x%02x wIndex %02x%02x wLength %d length %d TD size %d intr %d type '%s' flags %c:%c:%c", + snprintf(str, size, + "bRequestType %02x bRequest %02x wValue %02x%02x wIndex %02x%02x wLength %d length %d TD size %d intr %d type '%s' flags %c:%c:%c", field0 & 0xff, (field0 & 0xff00) >> 8, (field0 & 0xff000000) >> 24, @@ -2271,7 +2278,8 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_DATA: - sprintf(str, "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c:%c:%c:%c", + snprintf(str, size, + "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c:%c:%c:%c", field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2), GET_INTR_TARGET(field2), xhci_trb_type_string(type), @@ -2284,7 +2292,8 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_STATUS: - sprintf(str, "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c", + snprintf(str, size, + "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c", field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2), GET_INTR_TARGET(field2), xhci_trb_type_string(type), @@ -2297,7 +2306,7 @@ case TRB_ISOC: case TRB_EVENT_DATA: case TRB_TR_NOOP: - sprintf(str, + snprintf(str, size, "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c:%c:%c:%c:%c", field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2), GET_INTR_TARGET(field2), @@ -2314,21 +2323,21 @@ case TRB_CMD_NOOP: case TRB_ENABLE_SLOT: - sprintf(str, + snprintf(str, size, "%s: flags %c", xhci_trb_type_string(type), field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_DISABLE_SLOT: case TRB_NEG_BANDWIDTH: - sprintf(str, + snprintf(str, size, "%s: slot %d flags %c", xhci_trb_type_string(type), TRB_TO_SLOT_ID(field3), field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_ADDR_DEV: - sprintf(str, + snprintf(str, size, "%s: ctx %08x%08x slot %d flags %c:%c", xhci_trb_type_string(type), field1, field0, @@ -2337,7 +2346,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_CONFIG_EP: - sprintf(str, + snprintf(str, size, "%s: ctx %08x%08x slot %d flags %c:%c", xhci_trb_type_string(type), field1, field0, @@ -2346,7 +2355,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_EVAL_CONTEXT: - sprintf(str, + snprintf(str, size, "%s: ctx %08x%08x slot %d flags %c", xhci_trb_type_string(type), field1, field0, @@ -2354,7 +2363,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_RESET_EP: - sprintf(str, + snprintf(str, size, "%s: ctx %08x%08x slot %d ep %d flags %c:%c", xhci_trb_type_string(type), field1, field0, @@ -2365,7 +2374,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_STOP_RING: - sprintf(str, + snprintf(str, size, "%s: slot %d sp %d ep %d flags %c", xhci_trb_type_string(type), TRB_TO_SLOT_ID(field3), @@ -2375,7 +2384,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_SET_DEQ: - sprintf(str, + snprintf(str, size, "%s: deq %08x%08x stream %d slot %d ep %d flags %c", xhci_trb_type_string(type), field1, field0, @@ -2386,14 +2395,14 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_RESET_DEV: - sprintf(str, + snprintf(str, size, "%s: slot %d flags %c", xhci_trb_type_string(type), TRB_TO_SLOT_ID(field3), field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_FORCE_EVENT: - sprintf(str, + snprintf(str, size, "%s: event %08x%08x vf intr %d vf id %d flags %c", xhci_trb_type_string(type), field1, field0, @@ -2402,14 +2411,14 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_SET_LT: - sprintf(str, + snprintf(str, size, "%s: belt %d flags %c", xhci_trb_type_string(type), TRB_TO_BELT(field3), field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_GET_BW: - sprintf(str, + snprintf(str, size, "%s: ctx %08x%08x slot %d speed %d flags %c", xhci_trb_type_string(type), field1, field0, @@ -2418,7 +2427,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; case TRB_FORCE_HEADER: - sprintf(str, + snprintf(str, size, "%s: info %08x%08x%08x pkt type %d roothub port %d flags %c", xhci_trb_type_string(type), field2, field1, field0 & 0xffffffe0, @@ -2427,7 +2436,7 @@ field3 & TRB_CYCLE ? 'C' : 'c'); break; default: - sprintf(str, + snprintf(str, size, "type '%s' -> raw %08x %08x %08x %08x", xhci_trb_type_string(type), field0, field1, field2, field3); @@ -2443,6 +2452,8 @@ unsigned int bit; int ret = 0; + str[0] = '\0'; + if (drop) { ret = sprintf(str, "Drop:"); for_each_set_bit(bit, &drop, 32) @@ -2552,9 +2563,8 @@ return "Unknown"; } -static inline const char *xhci_decode_portsc(u32 portsc) +static inline const char *xhci_decode_portsc(char *str, u32 portsc) { - static char str[256]; int ret; ret = sprintf(str, "%s %s %s Link:%s PortSpeed:%d ", diff -u linux-azure-5.4.0/drivers/usb/misc/idmouse.c linux-azure-5.4.0/drivers/usb/misc/idmouse.c --- linux-azure-5.4.0/drivers/usb/misc/idmouse.c +++ linux-azure-5.4.0/drivers/usb/misc/idmouse.c @@ -178,10 +178,6 @@ bytes_read += bulk_read; } - /* reset the device */ -reset: - ftip_command(dev, FTIP_RELEASE, 0, 0); - /* check for valid image */ /* right border should be black (0x00) */ for (bytes_read = sizeof(HEADER)-1 + WIDTH-1; bytes_read < IMGSIZE; bytes_read += WIDTH) @@ -193,6 +189,10 @@ if (dev->bulk_in_buffer[bytes_read] != 0xFF) return -EAGAIN; + /* reset the device */ +reset: + ftip_command(dev, FTIP_RELEASE, 0, 0); + /* should be IMGSIZE == 65040 */ dev_dbg(&dev->interface->dev, "read %d bytes fingerprint data\n", bytes_read); diff -u linux-azure-5.4.0/drivers/usb/misc/iowarrior.c linux-azure-5.4.0/drivers/usb/misc/iowarrior.c --- linux-azure-5.4.0/drivers/usb/misc/iowarrior.c +++ linux-azure-5.4.0/drivers/usb/misc/iowarrior.c @@ -99,10 +99,6 @@ /* globals */ /*--------------*/ -/* - * USB spec identifies 5 second timeouts. - */ -#define GET_TIMEOUT 5 #define USB_REQ_GET_REPORT 0x01 //#if 0 static int usb_get_report(struct usb_device *dev, @@ -114,7 +110,7 @@ USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE, (type << 8) + id, inter->desc.bInterfaceNumber, buf, size, - GET_TIMEOUT*HZ); + USB_CTRL_GET_TIMEOUT); } //#endif @@ -129,7 +125,7 @@ USB_TYPE_CLASS | USB_RECIP_INTERFACE, (type << 8) + id, intf->cur_altsetting->desc.bInterfaceNumber, buf, - size, HZ); + size, 1000); } /*---------------------*/ diff -u linux-azure-5.4.0/drivers/usb/misc/uss720.c linux-azure-5.4.0/drivers/usb/misc/uss720.c --- linux-azure-5.4.0/drivers/usb/misc/uss720.c +++ linux-azure-5.4.0/drivers/usb/misc/uss720.c @@ -71,6 +71,7 @@ dev_dbg(&priv->usbdev->dev, "destroying priv datastructure\n"); usb_put_dev(priv->usbdev); + priv->usbdev = NULL; kfree(priv); } @@ -736,7 +737,6 @@ parport_announce_port(pp); usb_set_intfdata(intf, pp); - usb_put_dev(usbdev); return 0; probe_abort: @@ -754,7 +754,6 @@ usb_set_intfdata(intf, NULL); if (pp) { priv = pp->private_data; - priv->usbdev = NULL; priv->pp = NULL; dev_dbg(&intf->dev, "parport_remove_port\n"); parport_remove_port(pp); diff -u linux-azure-5.4.0/drivers/usb/mon/mon_bin.c linux-azure-5.4.0/drivers/usb/mon/mon_bin.c --- linux-azure-5.4.0/drivers/usb/mon/mon_bin.c +++ linux-azure-5.4.0/drivers/usb/mon/mon_bin.c @@ -1268,6 +1268,11 @@ { /* don't do anything here: "fault" will set up page table entries */ vma->vm_ops = &mon_bin_vm_ops; + + if (vma->vm_flags & VM_WRITE) + return -EPERM; + + vma->vm_flags &= ~VM_MAYWRITE; vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP; vma->vm_private_data = filp->private_data; mon_bin_vma_open(vma); diff -u linux-azure-5.4.0/drivers/usb/mtu3/mtu3_gadget.c linux-azure-5.4.0/drivers/usb/mtu3/mtu3_gadget.c --- linux-azure-5.4.0/drivers/usb/mtu3/mtu3_gadget.c +++ linux-azure-5.4.0/drivers/usb/mtu3/mtu3_gadget.c @@ -72,14 +72,12 @@ u32 interval = 0; u32 mult = 0; u32 burst = 0; - int max_packet; int ret; desc = mep->desc; comp_desc = mep->comp_desc; mep->type = usb_endpoint_type(desc); - max_packet = usb_endpoint_maxp(desc); - mep->maxp = max_packet & GENMASK(10, 0); + mep->maxp = usb_endpoint_maxp(desc); switch (mtu->g.speed) { case USB_SPEED_SUPER: @@ -87,7 +85,7 @@ if (usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) { interval = desc->bInterval; - interval = clamp_val(interval, 1, 16) - 1; + interval = clamp_val(interval, 1, 16); if (usb_endpoint_xfer_isoc(desc) && comp_desc) mult = comp_desc->bmAttributes; } @@ -99,10 +97,17 @@ if (usb_endpoint_xfer_isoc(desc) || usb_endpoint_xfer_int(desc)) { interval = desc->bInterval; - interval = clamp_val(interval, 1, 16) - 1; - burst = (max_packet & GENMASK(12, 11)) >> 11; + interval = clamp_val(interval, 1, 16); + mult = usb_endpoint_maxp_mult(desc) - 1; } break; + case USB_SPEED_FULL: + if (usb_endpoint_xfer_isoc(desc)) + interval = clamp_val(desc->bInterval, 1, 16); + else if (usb_endpoint_xfer_int(desc)) + interval = clamp_val(desc->bInterval, 1, 255); + + break; default: break; /*others are ignored */ } @@ -247,6 +252,7 @@ mreq->request.dma = DMA_ADDR_INVALID; mreq->epnum = mep->epnum; mreq->mep = mep; + INIT_LIST_HEAD(&mreq->list); trace_mtu3_alloc_request(mreq); return &mreq->request; diff -u linux-azure-5.4.0/drivers/usb/musb/musb_core.c linux-azure-5.4.0/drivers/usb/musb/musb_core.c --- linux-azure-5.4.0/drivers/usb/musb/musb_core.c +++ linux-azure-5.4.0/drivers/usb/musb/musb_core.c @@ -1871,9 +1871,8 @@ schedule_delayed_work(&musb->irq_work, msecs_to_jiffies(1000)); musb->quirk_retries--; - break; } - fallthrough; + break; case MUSB_QUIRK_B_INVALID_VBUS_91: if (musb->quirk_retries && !musb->flush_irq_work) { musb_dbg(musb, diff -u linux-azure-5.4.0/drivers/usb/musb/omap2430.c linux-azure-5.4.0/drivers/usb/musb/omap2430.c --- linux-azure-5.4.0/drivers/usb/musb/omap2430.c +++ linux-azure-5.4.0/drivers/usb/musb/omap2430.c @@ -433,6 +433,7 @@ control_node = of_parse_phandle(np, "ctrl-module", 0); if (control_node) { control_pdev = of_find_device_by_node(control_node); + of_node_put(control_node); if (!control_pdev) { dev_err(&pdev->dev, "Failed to get control device\n"); ret = -EINVAL; diff -u linux-azure-5.4.0/drivers/usb/phy/phy-twl6030-usb.c linux-azure-5.4.0/drivers/usb/phy/phy-twl6030-usb.c --- linux-azure-5.4.0/drivers/usb/phy/phy-twl6030-usb.c +++ linux-azure-5.4.0/drivers/usb/phy/phy-twl6030-usb.c @@ -348,6 +348,11 @@ twl->irq2 = platform_get_irq(pdev, 1); twl->linkstat = MUSB_UNKNOWN; + if (twl->irq1 < 0) + return twl->irq1; + if (twl->irq2 < 0) + return twl->irq2; + twl->comparator.set_vbus = twl6030_set_vbus; twl->comparator.start_srp = twl6030_start_srp; diff -u linux-azure-5.4.0/drivers/usb/renesas_usbhs/fifo.c linux-azure-5.4.0/drivers/usb/renesas_usbhs/fifo.c --- linux-azure-5.4.0/drivers/usb/renesas_usbhs/fifo.c +++ linux-azure-5.4.0/drivers/usb/renesas_usbhs/fifo.c @@ -101,6 +101,8 @@ #define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1) #define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0) static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map); +static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable); +static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable); struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt) { struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); @@ -123,6 +125,11 @@ if (chan) { dmaengine_terminate_all(chan); usbhsf_dma_unmap(pkt); + } else { + if (usbhs_pipe_is_dir_in(pipe)) + usbhsf_rx_irq_ctrl(pipe, 0); + else + usbhsf_tx_irq_ctrl(pipe, 0); } usbhs_pipe_clear_without_sequence(pipe, 0, 0); diff -u linux-azure-5.4.0/drivers/usb/serial/ch341.c linux-azure-5.4.0/drivers/usb/serial/ch341.c --- linux-azure-5.4.0/drivers/usb/serial/ch341.c +++ linux-azure-5.4.0/drivers/usb/serial/ch341.c @@ -80,10 +80,10 @@ #define CH341_LCR_CS5 0x00 static const struct usb_device_id id_table[] = { - { USB_DEVICE(0x1a86, 0x5512) }, { USB_DEVICE(0x1a86, 0x5523) }, { USB_DEVICE(0x1a86, 0x7522) }, { USB_DEVICE(0x1a86, 0x7523) }, + { USB_DEVICE(0x2184, 0x0057) }, { USB_DEVICE(0x4348, 0x5523) }, { USB_DEVICE(0x9986, 0x7523) }, { }, @@ -96,7 +96,9 @@ u8 mcr; u8 msr; u8 lcr; + unsigned long quirks; + u8 version; }; static void ch341_set_termios(struct tty_struct *tty, @@ -175,13 +177,20 @@ /* * CH341A buffers data until a full endpoint-size packet (32 bytes) * has been received unless bit 7 is set. + * + * At least one device with version 0x27 appears to have this bit + * inverted. */ - a |= BIT(7); + if (priv->version > 0x27) + a |= BIT(7); r = ch341_control_out(dev, CH341_REQ_WRITE_REG, 0x1312, a); if (r) return r; + if (priv->version < 0x30) + return 0; + r = ch341_control_out(dev, CH341_REQ_WRITE_REG, 0x2518, lcr); if (r) return r; @@ -233,7 +242,9 @@ r = ch341_control_in(dev, CH341_REQ_READ_VERSION, 0, 0, buffer, size); if (r < 0) goto out; - dev_dbg(&dev->dev, "Chip version: 0x%02x\n", buffer[0]); + + priv->version = buffer[0]; + dev_dbg(&dev->dev, "Chip version: 0x%02x\n", priv->version); r = ch341_control_out(dev, CH341_REQ_SERIAL_INIT, 0, 0); if (r < 0) diff -u linux-azure-5.4.0/drivers/usb/serial/cp210x.c linux-azure-5.4.0/drivers/usb/serial/cp210x.c --- linux-azure-5.4.0/drivers/usb/serial/cp210x.c +++ linux-azure-5.4.0/drivers/usb/serial/cp210x.c @@ -52,6 +52,7 @@ static void cp210x_dtr_rts(struct usb_serial_port *p, int on); static const struct usb_device_id id_table[] = { + { USB_DEVICE(0x0404, 0x034C) }, /* NCR Retail IO Box */ { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */ { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ @@ -69,6 +70,7 @@ { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */ + { USB_DEVICE(0x106F, 0x0003) }, /* CPI / Money Controls Bulk Coin Recycler */ { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ @@ -129,6 +131,7 @@ { USB_DEVICE(0x10C4, 0x83AA) }, /* Mark-10 Digital Force Gauge */ { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */ { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ + { USB_DEVICE(0x10C4, 0x8414) }, /* Decagon USB Cable Adapter */ { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */ @@ -156,6 +159,7 @@ { USB_DEVICE(0x10C4, 0x89A4) }, /* CESINEL FTBC Flexible Thyristor Bridge Controller */ { USB_DEVICE(0x10C4, 0x89FB) }, /* Qivicon ZigBee USB Radio Stick */ { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ + { USB_DEVICE(0x10C4, 0x8A5B) }, /* CEL EM3588 ZigBee USB Stick */ { USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */ { USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */ { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ @@ -192,6 +196,8 @@ { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ + { USB_DEVICE(0x17A8, 0x0101) }, /* Kamstrup 868 MHz wM-Bus C-Mode Meter Reader (Int Ant) */ + { USB_DEVICE(0x17A8, 0x0102) }, /* Kamstrup 868 MHz wM-Bus C-Mode Meter Reader (Ext Ant) */ { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ @@ -203,8 +209,8 @@ { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */ { USB_DEVICE(0x1901, 0x0195) }, /* GE B850/B650/B450 CP2104 DP UART interface */ { USB_DEVICE(0x1901, 0x0196) }, /* GE B850 CP2105 DP UART interface */ - { USB_DEVICE(0x1901, 0x0197) }, /* GE CS1000 Display serial interface */ - { USB_DEVICE(0x1901, 0x0198) }, /* GE CS1000 M.2 Key E serial interface */ + { USB_DEVICE(0x1901, 0x0197) }, /* GE CS1000 M.2 Key E serial interface */ + { USB_DEVICE(0x1901, 0x0198) }, /* GE CS1000 Display serial interface */ { USB_DEVICE(0x199B, 0xBA30) }, /* LORD WSDA-200-USB */ { USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */ { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */ @@ -233,6 +239,7 @@ { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */ + { USB_DEVICE(0x2184, 0x0030) }, /* GW Instek GDM-834x Digital Multimeter */ { USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */ { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */ @@ -507,6 +514,12 @@ #define CP210X_2NCONFIG_GPIO_RSTLATCH_IDX 587 #define CP210X_2NCONFIG_GPIO_CONTROL_IDX 600 +/* CP2102N QFN20 port configuration values */ +#define CP2102N_QFN20_GPIO2_TXLED_MODE BIT(2) +#define CP2102N_QFN20_GPIO3_RXLED_MODE BIT(3) +#define CP2102N_QFN20_GPIO1_RS485_MODE BIT(4) +#define CP2102N_QFN20_GPIO0_CLK_MODE BIT(6) + /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */ struct cp210x_gpio_write { u8 mask; @@ -1544,6 +1557,8 @@ /* 2 banks of GPIO - One for the pins taken from each serial port */ if (intf_num == 0) { + priv->gc.ngpio = 2; + if (mode.eci == CP210X_PIN_MODE_MODEM) { /* mark all GPIOs of this interface as reserved */ priv->gpio_altfunc = 0xff; @@ -1554,8 +1569,9 @@ priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & CP210X_ECI_GPIO_MODE_MASK) >> CP210X_ECI_GPIO_MODE_OFFSET); - priv->gc.ngpio = 2; } else if (intf_num == 1) { + priv->gc.ngpio = 3; + if (mode.sci == CP210X_PIN_MODE_MODEM) { /* mark all GPIOs of this interface as reserved */ priv->gpio_altfunc = 0xff; @@ -1566,7 +1582,6 @@ priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & CP210X_SCI_GPIO_MODE_MASK) >> CP210X_SCI_GPIO_MODE_OFFSET); - priv->gc.ngpio = 3; } else { return -ENODEV; } @@ -1691,7 +1706,19 @@ priv->gpio_pushpull = (gpio_pushpull >> 3) & 0x0f; /* 0 indicates GPIO mode, 1 is alternate function */ - priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f; + if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN20) { + /* QFN20 is special... */ + if (gpio_ctrl & CP2102N_QFN20_GPIO0_CLK_MODE) /* GPIO 0 */ + priv->gpio_altfunc |= BIT(0); + if (gpio_ctrl & CP2102N_QFN20_GPIO1_RS485_MODE) /* GPIO 1 */ + priv->gpio_altfunc |= BIT(1); + if (gpio_ctrl & CP2102N_QFN20_GPIO2_TXLED_MODE) /* GPIO 2 */ + priv->gpio_altfunc |= BIT(2); + if (gpio_ctrl & CP2102N_QFN20_GPIO3_RXLED_MODE) /* GPIO 3 */ + priv->gpio_altfunc |= BIT(3); + } else { + priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f; + } if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) { /* diff -u linux-azure-5.4.0/drivers/usb/serial/ftdi_sio.c linux-azure-5.4.0/drivers/usb/serial/ftdi_sio.c --- linux-azure-5.4.0/drivers/usb/serial/ftdi_sio.c +++ linux-azure-5.4.0/drivers/usb/serial/ftdi_sio.c @@ -219,6 +219,7 @@ { USB_DEVICE(FTDI_VID, FTDI_MTXORB_6_PID) }, { USB_DEVICE(FTDI_VID, FTDI_R2000KU_TRUE_RNG) }, { USB_DEVICE(FTDI_VID, FTDI_VARDAAN_PID) }, + { USB_DEVICE(FTDI_VID, FTDI_AUTO_M3_OP_COM_V2_PID) }, { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0100_PID) }, { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0101_PID) }, { USB_DEVICE(MTXORB_VID, MTXORB_FTDI_RANGE_0102_PID) }, @@ -611,6 +612,7 @@ .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { USB_DEVICE(FTDI_VID, FTDI_NT_ORIONLX_PLUS_PID) }, { USB_DEVICE(FTDI_VID, FTDI_NT_ORION_IO_PID) }, + { USB_DEVICE(FTDI_VID, FTDI_NT_ORIONMX_PID) }, { USB_DEVICE(FTDI_VID, FTDI_SYNAPSE_SS200_PID) }, { USB_DEVICE(FTDI_VID, FTDI_CUSTOMWARE_MINIPLEX_PID) }, { USB_DEVICE(FTDI_VID, FTDI_CUSTOMWARE_MINIPLEX2_PID) }, @@ -967,6 +969,7 @@ { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_VX_023_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_VX_034_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_101_PID) }, + { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_159_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_1_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_2_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_3_PID) }, @@ -975,12 +978,14 @@ { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_6_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_7_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_160_8_PID) }, + { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_235_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_257_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_279_1_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_279_2_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_279_3_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_279_4_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_313_PID) }, + { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_320_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_324_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_346_1_PID) }, { USB_DEVICE(BRAINBOXES_VID, BRAINBOXES_US_346_2_PID) }, @@ -1018,6 +1023,9 @@ { USB_DEVICE(FTDI_VID, CHETCO_SEASMART_DISPLAY_PID) }, { USB_DEVICE(FTDI_VID, CHETCO_SEASMART_LITE_PID) }, { USB_DEVICE(FTDI_VID, CHETCO_SEASMART_ANALOG_PID) }, + /* Belimo Automation devices */ + { USB_DEVICE(FTDI_VID, BELIMO_ZTH_PID) }, + { USB_DEVICE(FTDI_VID, BELIMO_ZIP_PID) }, /* ICP DAS I-756xU devices */ { USB_DEVICE(ICPDAS_VID, ICPDAS_I7560U_PID) }, { USB_DEVICE(ICPDAS_VID, ICPDAS_I7561U_PID) }, @@ -1037,6 +1045,8 @@ /* IDS GmbH devices */ { USB_DEVICE(IDS_VID, IDS_SI31A_PID) }, { USB_DEVICE(IDS_VID, IDS_CM31A_PID) }, + /* Omron devices */ + { USB_DEVICE(OMRON_VID, OMRON_CS1W_CIF31_PID) }, /* U-Blox devices */ { USB_DEVICE(UBLOX_VID, UBLOX_C099F9P_ZED_PID) }, { USB_DEVICE(UBLOX_VID, UBLOX_C099F9P_ODIN_PID) }, @@ -1310,8 +1320,7 @@ case 38400: div_value = ftdi_sio_b38400; break; case 57600: div_value = ftdi_sio_b57600; break; case 115200: div_value = ftdi_sio_b115200; break; - } /* baud */ - if (div_value == 0) { + default: dev_dbg(dev, "%s - Baudrate (%d) requested is not supported\n", __func__, baud); div_value = ftdi_sio_b9600; diff -u linux-azure-5.4.0/drivers/usb/serial/ftdi_sio_ids.h linux-azure-5.4.0/drivers/usb/serial/ftdi_sio_ids.h --- linux-azure-5.4.0/drivers/usb/serial/ftdi_sio_ids.h +++ linux-azure-5.4.0/drivers/usb/serial/ftdi_sio_ids.h @@ -159,6 +159,9 @@ /* Vardaan Enterprises Serial Interface VEUSB422R3 */ #define FTDI_VARDAAN_PID 0xF070 +/* Auto-M3 Ltd. - OP-COM USB V2 - OBD interface Adapter */ +#define FTDI_AUTO_M3_OP_COM_V2_PID 0x4f50 + /* * Xsens Technologies BV products (http://www.xsens.com). */ @@ -581,6 +584,7 @@ #define FTDI_NT_ORIONLXM_PID 0x7c90 /* OrionLXm Substation Automation Platform */ #define FTDI_NT_ORIONLX_PLUS_PID 0x7c91 /* OrionLX+ Substation Automation Platform */ #define FTDI_NT_ORION_IO_PID 0x7c92 /* Orion I/O */ +#define FTDI_NT_ORIONMX_PID 0x7c93 /* OrionMX */ /* * Synapse Wireless product ids (FTDI_VID) @@ -658,6 +662,12 @@ #define INFINEON_TRIBOARD_TC2X7_PID 0x0043 /* DAS JTAG TriBoard TC2X7 V1.0 */ /* + * Omron corporation (https://www.omron.com) + */ + #define OMRON_VID 0x0590 + #define OMRON_CS1W_CIF31_PID 0x00b2 + +/* * Acton Research Corp. */ #define ACTON_VID 0x0647 /* Vendor ID */ @@ -1502,6 +1512,9 @@ #define BRAINBOXES_VX_023_PID 0x1003 /* VX-023 ExpressCard 1 Port RS422/485 */ #define BRAINBOXES_VX_034_PID 0x1004 /* VX-034 ExpressCard 2 Port RS422/485 */ #define BRAINBOXES_US_101_PID 0x1011 /* US-101 1xRS232 */ +#define BRAINBOXES_US_159_PID 0x1021 /* US-159 1xRS232 */ +#define BRAINBOXES_US_235_PID 0x1017 /* US-235 1xRS232 */ +#define BRAINBOXES_US_320_PID 0x1019 /* US-320 1xRS422/485 */ #define BRAINBOXES_US_324_PID 0x1013 /* US-324 1xRS422/485 1Mbaud */ #define BRAINBOXES_US_606_1_PID 0x2001 /* US-606 6 Port RS232 Serial Port 1 and 2 */ #define BRAINBOXES_US_606_2_PID 0x2002 /* US-606 6 Port RS232 Serial Port 3 and 4 */ @@ -1562,6 +1575,12 @@ #define CHETCO_SEASMART_ANALOG_PID 0xA5AF /* SeaSmart Analog Adapter */ /* + * Belimo Automation + */ +#define BELIMO_ZTH_PID 0x8050 +#define BELIMO_ZIP_PID 0xC811 + +/* * Unjo AB */ #define UNJO_VID 0x22B7 diff -u linux-azure-5.4.0/drivers/usb/serial/keyspan.c linux-azure-5.4.0/drivers/usb/serial/keyspan.c --- linux-azure-5.4.0/drivers/usb/serial/keyspan.c +++ linux-azure-5.4.0/drivers/usb/serial/keyspan.c @@ -2910,22 +2910,22 @@ for (i = 0; i < ARRAY_SIZE(p_priv->in_buffer); ++i) { p_priv->in_buffer[i] = kzalloc(IN_BUFLEN, GFP_KERNEL); if (!p_priv->in_buffer[i]) - goto err_in_buffer; + goto err_free_in_buffer; } for (i = 0; i < ARRAY_SIZE(p_priv->out_buffer); ++i) { p_priv->out_buffer[i] = kzalloc(OUT_BUFLEN, GFP_KERNEL); if (!p_priv->out_buffer[i]) - goto err_out_buffer; + goto err_free_out_buffer; } p_priv->inack_buffer = kzalloc(INACK_BUFLEN, GFP_KERNEL); if (!p_priv->inack_buffer) - goto err_inack_buffer; + goto err_free_out_buffer; p_priv->outcont_buffer = kzalloc(OUTCONT_BUFLEN, GFP_KERNEL); if (!p_priv->outcont_buffer) - goto err_outcont_buffer; + goto err_free_inack_buffer; p_priv->device_details = d_details; @@ -2971,15 +2971,14 @@ return 0; -err_outcont_buffer: +err_free_inack_buffer: kfree(p_priv->inack_buffer); -err_inack_buffer: +err_free_out_buffer: for (i = 0; i < ARRAY_SIZE(p_priv->out_buffer); ++i) kfree(p_priv->out_buffer[i]); -err_out_buffer: +err_free_in_buffer: for (i = 0; i < ARRAY_SIZE(p_priv->in_buffer); ++i) kfree(p_priv->in_buffer[i]); -err_in_buffer: kfree(p_priv); return -ENOMEM; diff -u linux-azure-5.4.0/drivers/usb/serial/mos7720.c linux-azure-5.4.0/drivers/usb/serial/mos7720.c --- linux-azure-5.4.0/drivers/usb/serial/mos7720.c +++ linux-azure-5.4.0/drivers/usb/serial/mos7720.c @@ -226,8 +226,10 @@ int status; buf = kmalloc(1, GFP_KERNEL); - if (!buf) + if (!buf) { + *data = 0; return -ENOMEM; + } status = usb_control_msg(usbdev, pipe, request, requesttype, value, index, buf, 1, MOS_WDR_TIMEOUT); diff -u linux-azure-5.4.0/drivers/usb/serial/mos7840.c linux-azure-5.4.0/drivers/usb/serial/mos7840.c --- linux-azure-5.4.0/drivers/usb/serial/mos7840.c +++ linux-azure-5.4.0/drivers/usb/serial/mos7840.c @@ -114,7 +114,6 @@ #define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02 #define BANDB_DEVICE_ID_USOPTL4_4 0xAC44 #define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03 -#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24 /* This driver also supports * ATEN UC2324 device using Moschip MCS7840 @@ -196,7 +195,6 @@ {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)}, {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)}, {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)}, - {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)}, {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)}, {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)}, {USB_DEVICE(USB_VENDOR_ID_MOXA, MOXA_DEVICE_ID_2210)}, diff -u linux-azure-5.4.0/drivers/usb/serial/option.c linux-azure-5.4.0/drivers/usb/serial/option.c --- linux-azure-5.4.0/drivers/usb/serial/option.c +++ linux-azure-5.4.0/drivers/usb/serial/option.c @@ -198,6 +198,8 @@ #define DELL_PRODUCT_5821E 0x81d7 #define DELL_PRODUCT_5821E_ESIM 0x81e0 +#define DELL_PRODUCT_5829E_ESIM 0x81e4 +#define DELL_PRODUCT_5829E 0x81e6 #define KYOCERA_VENDOR_ID 0x0c88 #define KYOCERA_PRODUCT_KPC650 0x17da @@ -238,6 +240,7 @@ #define QUECTEL_PRODUCT_UC15 0x9090 /* These u-blox products use Qualcomm's vendor ID */ #define UBLOX_PRODUCT_R410M 0x90b2 +#define UBLOX_PRODUCT_R6XX 0x90fa /* These Yuga products use Qualcomm's vendor ID */ #define YUGA_PRODUCT_CLM920_NC5 0x9625 @@ -245,12 +248,18 @@ /* These Quectel products use Quectel's vendor ID */ #define QUECTEL_PRODUCT_EC21 0x0121 #define QUECTEL_PRODUCT_EC25 0x0125 +#define QUECTEL_PRODUCT_EG91 0x0191 #define QUECTEL_PRODUCT_EG95 0x0195 #define QUECTEL_PRODUCT_BG96 0x0296 #define QUECTEL_PRODUCT_EP06 0x0306 +#define QUECTEL_PRODUCT_EM05G 0x030a +#define QUECTEL_PRODUCT_EM060K 0x030b #define QUECTEL_PRODUCT_EM12 0x0512 #define QUECTEL_PRODUCT_RM500Q 0x0800 +#define QUECTEL_PRODUCT_RM520N 0x0801 +#define QUECTEL_PRODUCT_EC200S_CN 0x6002 #define QUECTEL_PRODUCT_EC200T 0x6026 +#define QUECTEL_PRODUCT_RM500K 0x7001 #define CMOTECH_VENDOR_ID 0x16d8 #define CMOTECH_PRODUCT_6001 0x6001 @@ -427,6 +436,12 @@ #define CINTERION_PRODUCT_CLS8 0x00b0 #define CINTERION_PRODUCT_MV31_MBIM 0x00b3 #define CINTERION_PRODUCT_MV31_RMNET 0x00b7 +#define CINTERION_PRODUCT_MV31_2_MBIM 0x00b8 +#define CINTERION_PRODUCT_MV31_2_RMNET 0x00b9 +#define CINTERION_PRODUCT_MV32_WA 0x00f1 +#define CINTERION_PRODUCT_MV32_WB 0x00f2 +#define CINTERION_PRODUCT_MV32_WA_RMNET 0x00f3 +#define CINTERION_PRODUCT_MV32_WB_RMNET 0x00f4 /* Olivetti products */ #define OLIVETTI_VENDOR_ID 0x0b3c @@ -562,6 +577,10 @@ #define WETELECOM_PRODUCT_6802 0x6802 #define WETELECOM_PRODUCT_WMD300 0x6803 +/* OPPO products */ +#define OPPO_VENDOR_ID 0x22d9 +#define OPPO_PRODUCT_R11 0x276c + /* Device flags */ @@ -1060,6 +1079,10 @@ .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5821E_ESIM), .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, + { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5829E), + .driver_info = RSVD(0) | RSVD(6) }, + { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5829E_ESIM), + .driver_info = RSVD(0) | RSVD(6) }, { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */ { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, @@ -1101,6 +1124,8 @@ /* u-blox products using Qualcomm vendor ID */ { USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R410M), .driver_info = RSVD(1) | RSVD(3) }, + { USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R6XX), + .driver_info = RSVD(3) }, /* Quectel products using Quectel vendor ID */ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC21, 0xff, 0xff, 0xff), .driver_info = NUMEP2 }, @@ -1108,24 +1133,41 @@ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC25, 0xff, 0xff, 0xff), .driver_info = NUMEP2 }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC25, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG91, 0xff, 0xff, 0xff), + .driver_info = NUMEP2 }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG91, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG95, 0xff, 0xff, 0xff), .driver_info = NUMEP2 }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG95, 0xff, 0, 0) }, + { USB_DEVICE_INTERFACE_CLASS(QUECTEL_VENDOR_ID, 0x0203, 0xff), /* BG95-M3 */ + .driver_info = ZLP }, { USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96), .driver_info = RSVD(4) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EP06, 0xff, 0xff, 0xff), .driver_info = RSVD(1) | RSVD(2) | RSVD(3) | RSVD(4) | NUMEP2 }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EP06, 0xff, 0, 0) }, + { USB_DEVICE_INTERFACE_CLASS(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM05G, 0xff), + .driver_info = RSVD(6) | ZLP }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM060K, 0xff, 0x00, 0x40) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM060K, 0xff, 0xff, 0x30) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM060K, 0xff, 0xff, 0x40) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM12, 0xff, 0xff, 0xff), .driver_info = RSVD(1) | RSVD(2) | RSVD(3) | RSVD(4) | NUMEP2 }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EM12, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, 0x0620, 0xff, 0xff, 0x30) }, /* EM160R-GL */ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, 0x0620, 0xff, 0, 0) }, + { USB_DEVICE_INTERFACE_CLASS(QUECTEL_VENDOR_ID, 0x0700, 0xff), /* BG95 */ + .driver_info = RSVD(3) | ZLP }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x30) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x10), .driver_info = ZLP }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM520N, 0xff, 0xff, 0x30) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM520N, 0xff, 0, 0x40) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM520N, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC200S_CN, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC200T, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500K, 0xff, 0x00, 0x00) }, { USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6001) }, { USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CMU_300) }, @@ -1200,6 +1242,30 @@ .driver_info = NCTRL(2) | RSVD(3) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1055, 0xff), /* Telit FN980 (PCIe) */ .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1056, 0xff), /* Telit FD980 */ + .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1057, 0xff), /* Telit FN980 */ + .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1058, 0xff), /* Telit FN980 (PCIe) */ + .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1060, 0xff), /* Telit LN920 (rmnet) */ + .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1061, 0xff), /* Telit LN920 (MBIM) */ + .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1062, 0xff), /* Telit LN920 (RNDIS) */ + .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1063, 0xff), /* Telit LN920 (ECM) */ + .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1070, 0xff), /* Telit FN990 (rmnet) */ + .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1071, 0xff), /* Telit FN990 (MBIM) */ + .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1072, 0xff), /* Telit FN990 (RNDIS) */ + .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1073, 0xff), /* Telit FN990 (ECM) */ + .driver_info = NCTRL(0) | RSVD(1) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1075, 0xff), /* Telit FN990 (PCIe) */ + .driver_info = RSVD(0) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910), .driver_info = NCTRL(0) | RSVD(1) | RSVD(3) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910_DUAL_MODEM), @@ -1214,6 +1280,8 @@ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1203, 0xff), /* Telit LE910Cx (RNDIS) */ .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1204, 0xff), /* Telit LE910Cx (MBIM) */ + .driver_info = NCTRL(0) | RSVD(1) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE910_USBCFG4), .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920), @@ -1232,6 +1300,7 @@ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1231, 0xff), /* Telit LE910Cx (RNDIS) */ .driver_info = NCTRL(2) | RSVD(3) }, + { USB_DEVICE_AND_INTERFACE_INFO(TELIT_VENDOR_ID, 0x1250, 0xff, 0x00, 0x00) }, /* Telit LE910Cx (rmnet) */ { USB_DEVICE(TELIT_VENDOR_ID, 0x1260), .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, { USB_DEVICE(TELIT_VENDOR_ID, 0x1261), @@ -1244,8 +1313,16 @@ .driver_info = NCTRL(2) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x7011, 0xff), /* Telit LE910-S1 (ECM) */ .driver_info = NCTRL(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x701a, 0xff), /* Telit LE910R1 (RNDIS) */ + .driver_info = NCTRL(2) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x701b, 0xff), /* Telit LE910R1 (ECM) */ + .driver_info = NCTRL(2) }, { USB_DEVICE(TELIT_VENDOR_ID, 0x9010), /* Telit SBL FN980 flashing device */ .driver_info = NCTRL(0) | ZLP }, + { USB_DEVICE(TELIT_VENDOR_ID, 0x9200), /* Telit LE910S1 flashing device */ + .driver_info = NCTRL(0) | ZLP }, + { USB_DEVICE(TELIT_VENDOR_ID, 0x9201), /* Telit LE910R1 flashing device */ + .driver_info = NCTRL(0) | ZLP }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff), .driver_info = RSVD(1) }, @@ -1618,6 +1695,8 @@ .driver_info = RSVD(2) }, { USB_DEVICE_INTERFACE_CLASS(ZTE_VENDOR_ID, 0x1476, 0xff) }, /* GosunCn ZTE WeLink ME3630 (ECM/NCM mode) */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1481, 0xff, 0x00, 0x00) }, /* ZTE MF871A */ + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1485, 0xff, 0xff, 0xff), /* ZTE MF286D */ + .driver_info = RSVD(5) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1533, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1534, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1535, 0xff, 0xff, 0xff) }, @@ -1645,7 +1724,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0060, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0094, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0130, 0xff, 0xff, 0xff), .driver_info = RSVD(1) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0133, 0xff, 0xff, 0xff), @@ -1925,6 +2003,18 @@ .driver_info = RSVD(3)}, { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV31_RMNET, 0xff), .driver_info = RSVD(0)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV31_2_MBIM, 0xff), + .driver_info = RSVD(3)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV31_2_RMNET, 0xff), + .driver_info = RSVD(0)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WA, 0xff), + .driver_info = RSVD(3)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WA_RMNET, 0xff), + .driver_info = RSVD(0) }, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WB, 0xff), + .driver_info = RSVD(3)}, + { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_MV32_WB_RMNET, 0xff), + .driver_info = RSVD(0) }, { USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD100), .driver_info = RSVD(4) }, { USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD120), @@ -2063,17 +2153,29 @@ .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, { USB_DEVICE(0x0489, 0xe0b5), /* Foxconn T77W968 ESIM */ .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, + { USB_DEVICE_INTERFACE_CLASS(0x0489, 0xe0db, 0xff), /* Foxconn T99W265 MBIM */ + .driver_info = RSVD(3) }, { USB_DEVICE(0x1508, 0x1001), /* Fibocom NL668 (IOT version) */ .driver_info = RSVD(4) | RSVD(5) | RSVD(6) }, + { USB_DEVICE(0x1782, 0x4d10) }, /* Fibocom L610 (AT mode) */ + { USB_DEVICE_INTERFACE_CLASS(0x1782, 0x4d11, 0xff) }, /* Fibocom L610 (ECM/RNDIS mode) */ { USB_DEVICE(0x2cb7, 0x0104), /* Fibocom NL678 series */ .driver_info = RSVD(4) | RSVD(5) }, { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x0105, 0xff), /* Fibocom NL678 series */ .driver_info = RSVD(6) }, + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x0106, 0xff) }, /* Fibocom MA510 (ECM mode w/ diag intf.) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x010a, 0xff) }, /* Fibocom MA510 (ECM mode) */ + { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0xff, 0x30) }, /* Fibocom FG150 Diag */ + { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0, 0) }, /* Fibocom FG150 AT */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a0, 0xff) }, /* Fibocom NL668-AM/NL652-EU (laptop MBIM) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a2, 0xff) }, /* Fibocom FM101-GL (laptop MBIM) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a4, 0xff), /* Fibocom FM101-GL (laptop MBIM) */ + .driver_info = RSVD(4) }, { USB_DEVICE_INTERFACE_CLASS(0x2df3, 0x9d03, 0xff) }, /* LongSung M5710 */ { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1404, 0xff) }, /* GosunCn GM500 RNDIS */ { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1405, 0xff) }, /* GosunCn GM500 MBIM */ { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1406, 0xff) }, /* GosunCn GM500 ECM/NCM */ + { USB_DEVICE_AND_INTERFACE_INFO(OPPO_VENDOR_ID, OPPO_PRODUCT_R11, 0xff, 0xff, 0x30) }, { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); diff -u linux-azure-5.4.0/drivers/usb/serial/pl2303.c linux-azure-5.4.0/drivers/usb/serial/pl2303.c --- linux-azure-5.4.0/drivers/usb/serial/pl2303.c +++ linux-azure-5.4.0/drivers/usb/serial/pl2303.c @@ -47,6 +47,12 @@ { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_MOTOROLA) }, { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_ZTEK) }, { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_TB) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GC) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GB) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GT) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GL) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GE) }, + { USB_DEVICE(PL2303_VENDOR_ID, PL2303_PRODUCT_ID_GS) }, { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID) }, { USB_DEVICE(IODATA_VENDOR_ID, IODATA_PRODUCT_ID_RSAQ5) }, { USB_DEVICE(ATEN_VENDOR_ID, ATEN_PRODUCT_ID), @@ -100,6 +106,7 @@ { USB_DEVICE(HP_VENDOR_ID, HP_LCM220_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LCM960_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LM920_PRODUCT_ID) }, + { USB_DEVICE(HP_VENDOR_ID, HP_LM930_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_LM940_PRODUCT_ID) }, { USB_DEVICE(HP_VENDOR_ID, HP_TD620_PRODUCT_ID) }, { USB_DEVICE(CRESSI_VENDOR_ID, CRESSI_EDY_PRODUCT_ID) }, @@ -110,6 +117,7 @@ { USB_DEVICE(ADLINK_VENDOR_ID, ADLINK_ND6530GC_PRODUCT_ID) }, { USB_DEVICE(SMART_VENDOR_ID, SMART_PRODUCT_ID) }, { USB_DEVICE(AT_VENDOR_ID, AT_VTKIT3_PRODUCT_ID) }, + { USB_DEVICE(IBM_VENDOR_ID, IBM_PRODUCT_ID) }, { } /* Terminating entry */ }; @@ -133,9 +141,11 @@ #define VENDOR_WRITE_REQUEST_TYPE 0x40 #define VENDOR_WRITE_REQUEST 0x01 +#define VENDOR_WRITE_NREQUEST 0x80 #define VENDOR_READ_REQUEST_TYPE 0xc0 #define VENDOR_READ_REQUEST 0x01 +#define VENDOR_READ_NREQUEST 0x81 #define UART_STATE_INDEX 8 #define UART_STATE_MSR_MASK 0x8b @@ -151,11 +161,24 @@ #define PL2303_FLOWCTRL_MASK 0xf0 +#define PL2303_READ_TYPE_HX_STATUS 0x8080 + +#define PL2303_HXN_RESET_REG 0x07 +#define PL2303_HXN_RESET_UPSTREAM_PIPE 0x02 +#define PL2303_HXN_RESET_DOWNSTREAM_PIPE 0x01 + +#define PL2303_HXN_FLOWCTRL_REG 0x0a +#define PL2303_HXN_FLOWCTRL_MASK 0x1c +#define PL2303_HXN_FLOWCTRL_NONE 0x1c +#define PL2303_HXN_FLOWCTRL_RTS_CTS 0x18 +#define PL2303_HXN_FLOWCTRL_XON_XOFF 0x0c + static void pl2303_set_break(struct usb_serial_port *port, bool enable); enum pl2303_type { TYPE_01, /* Type 0 and 1 (difference unknown) */ TYPE_HX, /* HX version of the pl2303 chip */ + TYPE_HXN, /* HXN version of the pl2303 chip */ TYPE_COUNT }; @@ -163,6 +186,7 @@ speed_t max_baud_rate; unsigned long quirks; unsigned int no_autoxonxoff:1; + unsigned int no_divisors:1; }; struct pl2303_serial_private { @@ -187,16 +211,27 @@ [TYPE_HX] = { .max_baud_rate = 12000000, }, + [TYPE_HXN] = { + .max_baud_rate = 12000000, + .no_divisors = true, + }, }; static int pl2303_vendor_read(struct usb_serial *serial, u16 value, unsigned char buf[1]) { + struct pl2303_serial_private *spriv = usb_get_serial_data(serial); struct device *dev = &serial->interface->dev; + u8 request; int res; + if (spriv->type == &pl2303_type_data[TYPE_HXN]) + request = VENDOR_READ_NREQUEST; + else + request = VENDOR_READ_REQUEST; + res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), - VENDOR_READ_REQUEST, VENDOR_READ_REQUEST_TYPE, + request, VENDOR_READ_REQUEST_TYPE, value, 0, buf, 1, 100); if (res != 1) { dev_err(dev, "%s - failed to read [%04x]: %d\n", __func__, @@ -214,13 +249,20 @@ static int pl2303_vendor_write(struct usb_serial *serial, u16 value, u16 index) { + struct pl2303_serial_private *spriv = usb_get_serial_data(serial); struct device *dev = &serial->interface->dev; + u8 request; int res; dev_dbg(dev, "%s - [%04x] = %02x\n", __func__, value, index); + if (spriv->type == &pl2303_type_data[TYPE_HXN]) + request = VENDOR_WRITE_NREQUEST; + else + request = VENDOR_WRITE_REQUEST; + res = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), - VENDOR_WRITE_REQUEST, VENDOR_WRITE_REQUEST_TYPE, + request, VENDOR_WRITE_REQUEST_TYPE, value, index, NULL, 0, 100); if (res) { dev_err(dev, "%s - failed to write [%04x]: %d\n", __func__, @@ -233,6 +275,7 @@ static int pl2303_update_reg(struct usb_serial *serial, u8 reg, u8 mask, u8 val) { + struct pl2303_serial_private *spriv = usb_get_serial_data(serial); int ret = 0; u8 *buf; @@ -240,7 +283,11 @@ if (!buf) return -ENOMEM; - ret = pl2303_vendor_read(serial, reg | 0x80, buf); + if (spriv->type == &pl2303_type_data[TYPE_HXN]) + ret = pl2303_vendor_read(serial, reg, buf); + else + ret = pl2303_vendor_read(serial, reg | 0x80, buf); + if (ret) goto out_free; @@ -323,6 +370,7 @@ struct pl2303_serial_private *spriv; enum pl2303_type type = TYPE_01; unsigned char *buf; + int res; spriv = kzalloc(sizeof(*spriv), GFP_KERNEL); if (!spriv) @@ -344,26 +392,37 @@ type = TYPE_01; /* type 1 */ dev_dbg(&serial->interface->dev, "device type: %d\n", type); + if (type == TYPE_HX) { + res = usb_control_msg(serial->dev, + usb_rcvctrlpipe(serial->dev, 0), + VENDOR_READ_REQUEST, VENDOR_READ_REQUEST_TYPE, + PL2303_READ_TYPE_HX_STATUS, 0, buf, 1, 100); + if (res != 1) + type = TYPE_HXN; + } + spriv->type = &pl2303_type_data[type]; spriv->quirks = (unsigned long)usb_get_serial_data(serial); spriv->quirks |= spriv->type->quirks; usb_set_serial_data(serial, spriv); - pl2303_vendor_read(serial, 0x8484, buf); - pl2303_vendor_write(serial, 0x0404, 0); - pl2303_vendor_read(serial, 0x8484, buf); - pl2303_vendor_read(serial, 0x8383, buf); - pl2303_vendor_read(serial, 0x8484, buf); - pl2303_vendor_write(serial, 0x0404, 1); - pl2303_vendor_read(serial, 0x8484, buf); - pl2303_vendor_read(serial, 0x8383, buf); - pl2303_vendor_write(serial, 0, 1); - pl2303_vendor_write(serial, 1, 0); - if (spriv->quirks & PL2303_QUIRK_LEGACY) - pl2303_vendor_write(serial, 2, 0x24); - else - pl2303_vendor_write(serial, 2, 0x44); + if (type != TYPE_HXN) { + pl2303_vendor_read(serial, 0x8484, buf); + pl2303_vendor_write(serial, 0x0404, 0); + pl2303_vendor_read(serial, 0x8484, buf); + pl2303_vendor_read(serial, 0x8383, buf); + pl2303_vendor_read(serial, 0x8484, buf); + pl2303_vendor_write(serial, 0x0404, 1); + pl2303_vendor_read(serial, 0x8484, buf); + pl2303_vendor_read(serial, 0x8383, buf); + pl2303_vendor_write(serial, 0, 1); + pl2303_vendor_write(serial, 1, 0); + if (spriv->quirks & PL2303_QUIRK_LEGACY) + pl2303_vendor_write(serial, 2, 0x24); + else + pl2303_vendor_write(serial, 2, 0x44); + } kfree(buf); @@ -517,8 +576,12 @@ baud = min_t(speed_t, baud, spriv->type->max_baud_rate); /* * Use direct method for supported baud rates, otherwise use divisors. + * Newer chip types do not support divisor encoding. */ - baud_sup = pl2303_get_supported_baud_rate(baud); + if (spriv->type->no_divisors) + baud_sup = baud; + else + baud_sup = pl2303_get_supported_baud_rate(baud); if (baud == baud_sup) baud = pl2303_encode_baud_rate_direct(buf, baud); @@ -722,14 +785,31 @@ } if (C_CRTSCTS(tty)) { - if (spriv->quirks & PL2303_QUIRK_LEGACY) + if (spriv->quirks & PL2303_QUIRK_LEGACY) { pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0x40); - else + } else if (spriv->type == &pl2303_type_data[TYPE_HXN]) { + pl2303_update_reg(serial, PL2303_HXN_FLOWCTRL_REG, + PL2303_HXN_FLOWCTRL_MASK, + PL2303_HXN_FLOWCTRL_RTS_CTS); + } else { pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0x60); + } } else if (pl2303_enable_xonxoff(tty, spriv->type)) { - pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0xc0); + if (spriv->type == &pl2303_type_data[TYPE_HXN]) { + pl2303_update_reg(serial, PL2303_HXN_FLOWCTRL_REG, + PL2303_HXN_FLOWCTRL_MASK, + PL2303_HXN_FLOWCTRL_XON_XOFF); + } else { + pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0xc0); + } } else { - pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0); + if (spriv->type == &pl2303_type_data[TYPE_HXN]) { + pl2303_update_reg(serial, PL2303_HXN_FLOWCTRL_REG, + PL2303_HXN_FLOWCTRL_MASK, + PL2303_HXN_FLOWCTRL_NONE); + } else { + pl2303_update_reg(serial, 0, PL2303_FLOWCTRL_MASK, 0); + } } kfree(buf); @@ -770,8 +850,14 @@ usb_clear_halt(serial->dev, port->read_urb->pipe); } else { /* reset upstream data pipes */ - pl2303_vendor_write(serial, 8, 0); - pl2303_vendor_write(serial, 9, 0); + if (spriv->type == &pl2303_type_data[TYPE_HXN]) { + pl2303_vendor_write(serial, PL2303_HXN_RESET_REG, + PL2303_HXN_RESET_UPSTREAM_PIPE | + PL2303_HXN_RESET_DOWNSTREAM_PIPE); + } else { + pl2303_vendor_write(serial, 8, 0); + pl2303_vendor_write(serial, 9, 0); + } } /* Setup termios */ diff -u linux-azure-5.4.0/drivers/usb/serial/pl2303.h linux-azure-5.4.0/drivers/usb/serial/pl2303.h --- linux-azure-5.4.0/drivers/usb/serial/pl2303.h +++ linux-azure-5.4.0/drivers/usb/serial/pl2303.h @@ -9,6 +9,12 @@ #define PL2303_VENDOR_ID 0x067b #define PL2303_PRODUCT_ID 0x2303 #define PL2303_PRODUCT_ID_TB 0x2304 +#define PL2303_PRODUCT_ID_GC 0x23a3 +#define PL2303_PRODUCT_ID_GB 0x23b3 +#define PL2303_PRODUCT_ID_GT 0x23c3 +#define PL2303_PRODUCT_ID_GL 0x23d3 +#define PL2303_PRODUCT_ID_GE 0x23e3 +#define PL2303_PRODUCT_ID_GS 0x23f3 #define PL2303_PRODUCT_ID_RSAQ2 0x04bb #define PL2303_PRODUCT_ID_DCU11 0x1234 #define PL2303_PRODUCT_ID_PHAROS 0xaaa0 @@ -29,6 +35,9 @@ #define ATEN_PRODUCT_UC232B 0x2022 #define ATEN_PRODUCT_ID2 0x2118 +#define IBM_VENDOR_ID 0x04b3 +#define IBM_PRODUCT_ID 0x4016 + #define IODATA_VENDOR_ID 0x04bb #define IODATA_PRODUCT_ID 0x0a03 #define IODATA_PRODUCT_ID_RSAQ5 0x0a0e @@ -126,6 +135,7 @@ #define HP_TD620_PRODUCT_ID 0x0956 #define HP_LD960_PRODUCT_ID 0x0b39 #define HP_LD381_PRODUCT_ID 0x0f7f +#define HP_LM930_PRODUCT_ID 0x0f9b #define HP_LCM220_PRODUCT_ID 0x3139 #define HP_LCM960_PRODUCT_ID 0x3239 #define HP_LD220_PRODUCT_ID 0x3524 diff -u linux-azure-5.4.0/drivers/usb/serial/qcserial.c linux-azure-5.4.0/drivers/usb/serial/qcserial.c --- linux-azure-5.4.0/drivers/usb/serial/qcserial.c +++ linux-azure-5.4.0/drivers/usb/serial/qcserial.c @@ -165,6 +165,9 @@ {DEVICE_SWI(0x1199, 0x907b)}, /* Sierra Wireless EM74xx */ {DEVICE_SWI(0x1199, 0x9090)}, /* Sierra Wireless EM7565 QDL */ {DEVICE_SWI(0x1199, 0x9091)}, /* Sierra Wireless EM7565 */ + {DEVICE_SWI(0x1199, 0x90d2)}, /* Sierra Wireless EM9191 QDL */ + {DEVICE_SWI(0x1199, 0xc080)}, /* Sierra Wireless EM7590 QDL */ + {DEVICE_SWI(0x1199, 0xc081)}, /* Sierra Wireless EM7590 */ {DEVICE_SWI(0x413c, 0x81a2)}, /* Dell Wireless 5806 Gobi(TM) 4G LTE Mobile Broadband Card */ {DEVICE_SWI(0x413c, 0x81a3)}, /* Dell Wireless 5570 HSPA+ (42Mbps) Mobile Broadband Card */ {DEVICE_SWI(0x413c, 0x81a4)}, /* Dell Wireless 5570e HSPA+ (42Mbps) Mobile Broadband Card */ @@ -174,6 +177,7 @@ {DEVICE_SWI(0x413c, 0x81b3)}, /* Dell Wireless 5809e Gobi(TM) 4G LTE Mobile Broadband Card (rev3) */ {DEVICE_SWI(0x413c, 0x81b5)}, /* Dell Wireless 5811e QDL */ {DEVICE_SWI(0x413c, 0x81b6)}, /* Dell Wireless 5811e QDL */ + {DEVICE_SWI(0x413c, 0x81c2)}, /* Dell Wireless 5811e */ {DEVICE_SWI(0x413c, 0x81cb)}, /* Dell Wireless 5816e QDL */ {DEVICE_SWI(0x413c, 0x81cc)}, /* Dell Wireless 5816e */ {DEVICE_SWI(0x413c, 0x81cf)}, /* Dell Wireless 5819 */ diff -u linux-azure-5.4.0/drivers/usb/serial/quatech2.c linux-azure-5.4.0/drivers/usb/serial/quatech2.c --- linux-azure-5.4.0/drivers/usb/serial/quatech2.c +++ linux-azure-5.4.0/drivers/usb/serial/quatech2.c @@ -416,7 +416,7 @@ /* flush the port transmit buffer */ i = usb_control_msg(serial->dev, - usb_rcvctrlpipe(serial->dev, 0), + usb_sndctrlpipe(serial->dev, 0), QT2_FLUSH_DEVICE, 0x40, 1, port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT); @@ -426,7 +426,7 @@ /* flush the port receive buffer */ i = usb_control_msg(serial->dev, - usb_rcvctrlpipe(serial->dev, 0), + usb_sndctrlpipe(serial->dev, 0), QT2_FLUSH_DEVICE, 0x40, 0, port_priv->device_port, NULL, 0, QT2_USB_TIMEOUT); @@ -670,7 +670,7 @@ int status; /* power on unit */ - status = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), + status = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 0xc2, 0x40, 0x8000, 0, NULL, 0, QT2_USB_TIMEOUT); if (status < 0) { diff -u linux-azure-5.4.0/drivers/usb/serial/usb-serial-simple.c linux-azure-5.4.0/drivers/usb/serial/usb-serial-simple.c --- linux-azure-5.4.0/drivers/usb/serial/usb-serial-simple.c +++ linux-azure-5.4.0/drivers/usb/serial/usb-serial-simple.c @@ -91,6 +91,11 @@ { USB_DEVICE(0x0cad, 0x9016) } /* TPG2200 */ DEVICE(motorola_tetra, MOTOROLA_TETRA_IDS); +/* Nokia mobile phone driver */ +#define NOKIA_IDS() \ + { USB_DEVICE(0x0421, 0x069a) } /* Nokia 130 (RM-1035) */ +DEVICE(nokia, NOKIA_IDS); + /* Novatel Wireless GPS driver */ #define NOVATEL_IDS() \ { USB_DEVICE(0x09d7, 0x0100) } /* NovAtel FlexPack GPS */ @@ -123,6 +128,7 @@ &vivopay_device, &moto_modem_device, &motorola_tetra_device, + &nokia_device, &novatel_gps_device, &hp4x_device, &suunto_device, @@ -140,6 +146,7 @@ VIVOPAY_IDS(), MOTO_IDS(), MOTOROLA_TETRA_IDS(), + NOKIA_IDS(), NOVATEL_IDS(), HP4X_IDS(), SUUNTO_IDS(), diff -u linux-azure-5.4.0/drivers/usb/serial/usb-serial.c linux-azure-5.4.0/drivers/usb/serial/usb-serial.c --- linux-azure-5.4.0/drivers/usb/serial/usb-serial.c +++ linux-azure-5.4.0/drivers/usb/serial/usb-serial.c @@ -254,7 +254,7 @@ * * Shut down a USB serial port. Serialized against activate by the * tport mutex and kept to matching open/close pairs - * of calls by the initialized flag. + * of calls by the tty-port initialized flag. * * Not called if tty is console. */ diff -u linux-azure-5.4.0/drivers/usb/serial/usb_wwan.c linux-azure-5.4.0/drivers/usb/serial/usb_wwan.c --- linux-azure-5.4.0/drivers/usb/serial/usb_wwan.c +++ linux-azure-5.4.0/drivers/usb/serial/usb_wwan.c @@ -435,7 +435,8 @@ /* * Need to take susp_lock to make sure port is not already being - * resumed, but no need to hold it due to initialized + * resumed, but no need to hold it due to the tty-port initialized + * flag. */ spin_lock_irq(&intfdata->susp_lock); if (--intfdata->open_ports == 0) diff -u linux-azure-5.4.0/drivers/usb/storage/realtek_cr.c linux-azure-5.4.0/drivers/usb/storage/realtek_cr.c --- linux-azure-5.4.0/drivers/usb/storage/realtek_cr.c +++ linux-azure-5.4.0/drivers/usb/storage/realtek_cr.c @@ -369,7 +369,7 @@ buf = kmalloc(len, GFP_NOIO); if (buf == NULL) - return USB_STOR_TRANSPORT_ERROR; + return -ENOMEM; usb_stor_dbg(us, "addr = 0x%x, len = %d\n", addr, len); diff -u linux-azure-5.4.0/drivers/usb/storage/unusual_devs.h linux-azure-5.4.0/drivers/usb/storage/unusual_devs.h --- linux-azure-5.4.0/drivers/usb/storage/unusual_devs.h +++ linux-azure-5.4.0/drivers/usb/storage/unusual_devs.h @@ -407,6 +407,16 @@ USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN), /* + * Reported by James Buren + * Virtual ISOs cannot be remounted if ejected while the device is locked + * Disable locking to mimic Windows behavior that bypasses the issue + */ +UNUSUAL_DEV( 0x04c5, 0x2028, 0x0001, 0x0001, + "iODD", + "2531/2541", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE), + +/* * Not sure who reported this originally but * Pavel Machek reported that the extra US_FL_SINGLE_LUN * flag be added */ @@ -416,9 +426,16 @@ USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), /* - * Reported by Ondrej Zary + * Reported by Ondrej Zary * The device reports one sector more and breaks when that sector is accessed + * Firmwares older than 2.6c (the latest one and the only that claims Linux + * support) have also broken tag handling */ +UNUSUAL_DEV( 0x04ce, 0x0002, 0x0000, 0x026b, + "ScanLogic", + "SL11R-IDE", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), UNUSUAL_DEV( 0x04ce, 0x0002, 0x026c, 0x026c, "ScanLogic", "SL11R-IDE", @@ -1258,12 +1275,6 @@ USB_SC_RBC, USB_PR_BULK, NULL, 0 ), -UNUSUAL_DEV(0x090c, 0x1000, 0x1100, 0x1100, - "Samsung", - "Flash Drive FIT", - USB_SC_DEVICE, USB_PR_DEVICE, NULL, - US_FL_MAX_SECTORS_64), - /* aeb */ UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, "Feiya", @@ -2284,6 +2295,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), +/* Reported by Witold Lipieta */ +UNUSUAL_DEV( 0x1fc9, 0x0117, 0x0100, 0x0100, + "NXP Semiconductors", + "PN7462AU", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_RESIDUE ), + /* Supplied with some Castlewood ORB removable drives */ UNUSUAL_DEV( 0x2027, 0xa001, 0x0000, 0x9999, "Double-H Technology", @@ -2291,6 +2309,16 @@ USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, US_FL_SCM_MULT_TARG ), +/* + * Reported by DocMAX + * and Thomas Weißschuh + */ +UNUSUAL_DEV( 0x2109, 0x0715, 0x9999, 0x9999, + "VIA Labs, Inc.", + "VL817 SATA Bridge", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_UAS), + UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, "ST", "2A", diff -u linux-azure-5.4.0/drivers/usb/storage/unusual_uas.h linux-azure-5.4.0/drivers/usb/storage/unusual_uas.h --- linux-azure-5.4.0/drivers/usb/storage/unusual_uas.h +++ linux-azure-5.4.0/drivers/usb/storage/unusual_uas.h @@ -45,6 +45,20 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME), +/* Reported-by: Julian Sikorski */ +UNUSUAL_DEV(0x059f, 0x1061, 0x0000, 0x9999, + "LaCie", + "Rugged USB3-FW", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME), + +/* Reported-by: Hongling Zeng */ +UNUSUAL_DEV(0x090c, 0x2000, 0x0000, 0x9999, + "Hiksemi", + "External HDD", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_UAS), + /* * Apricorn USB3 dongle sometimes returns "USBSUSBSUSBS" in response to SCSI * commands in UAS mode. Observed with the 1.28 firmware; are there others? @@ -55,6 +69,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_IGNORE_UAS), +/* Reported-by: Tom Hu */ +UNUSUAL_DEV(0x0b05, 0x1932, 0x0000, 0x9999, + "ASUS", + "External HDD", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_UAS), + /* Reported-by: David Webb */ UNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999, "Seagate", @@ -62,6 +83,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NO_REPORT_LUNS), +/* Reported-by: Hongling Zeng */ +UNUSUAL_DEV(0x0bda, 0x9210, 0x0000, 0x9999, + "Hiksemi", + "External HDD", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_UAS), + /* Reported-by: Benjamin Tissoires */ UNUSUAL_DEV(0x13fd, 0x3940, 0x0000, 0x9999, "Initio Corporation", @@ -104,6 +132,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NO_ATA_1X), +/* Reported-by: Hongling Zeng */ +UNUSUAL_DEV(0x17ef, 0x3899, 0x0000, 0x9999, + "Thinkplus", + "External HDD", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_IGNORE_UAS), + /* Reported-by: Hans de Goede */ UNUSUAL_DEV(0x2109, 0x0711, 0x0000, 0x9999, "VIA", diff -u linux-azure-5.4.0/drivers/usb/typec/class.c linux-azure-5.4.0/drivers/usb/typec/class.c --- linux-azure-5.4.0/drivers/usb/typec/class.c +++ linux-azure-5.4.0/drivers/usb/typec/class.c @@ -487,8 +487,10 @@ int ret; alt = kzalloc(sizeof(*alt), GFP_KERNEL); - if (!alt) + if (!alt) { + altmode_id_remove(parent, id); return ERR_PTR(-ENOMEM); + } alt->adev.svid = desc->svid; alt->adev.mode = desc->mode; @@ -1381,6 +1383,7 @@ partner->usb_pd = 1; sysfs_notify(&partner_dev->kobj, NULL, "supports_usb_power_delivery"); + kobject_uevent(&partner_dev->kobj, KOBJ_CHANGE); } put_device(partner_dev); } diff -u linux-azure-5.4.0/drivers/usb/typec/tcpm/fusb302.c linux-azure-5.4.0/drivers/usb/typec/tcpm/fusb302.c --- linux-azure-5.4.0/drivers/usb/typec/tcpm/fusb302.c +++ linux-azure-5.4.0/drivers/usb/typec/tcpm/fusb302.c @@ -669,25 +669,27 @@ ret = fusb302_i2c_mask_write(chip, FUSB_REG_MASK, FUSB_REG_MASK_BC_LVL | FUSB_REG_MASK_COMP_CHNG, - FUSB_REG_MASK_COMP_CHNG); + FUSB_REG_MASK_BC_LVL); if (ret < 0) { fusb302_log(chip, "cannot set SRC interrupt, ret=%d", ret); goto done; } chip->intr_comp_chng = true; + chip->intr_bc_lvl = false; break; case TYPEC_CC_RD: ret = fusb302_i2c_mask_write(chip, FUSB_REG_MASK, FUSB_REG_MASK_BC_LVL | FUSB_REG_MASK_COMP_CHNG, - FUSB_REG_MASK_BC_LVL); + FUSB_REG_MASK_COMP_CHNG); if (ret < 0) { fusb302_log(chip, "cannot set SRC interrupt, ret=%d", ret); goto done; } chip->intr_bc_lvl = true; + chip->intr_comp_chng = false; break; default: break; diff -u linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpci.c linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpci.c --- linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpci.c +++ linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpci.c @@ -611,7 +611,7 @@ /* Disable chip interrupts before unregistering port */ err = tcpci_write16(chip->tcpci, TCPC_ALERT_MASK, 0); if (err < 0) - return err; + dev_warn(&client->dev, "Failed to disable irqs (%pe)\n", ERR_PTR(err)); tcpci_unregister_port(chip->tcpci); diff -u linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpm.c linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpm.c --- linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpm.c +++ linux-azure-5.4.0/drivers/usb/typec/tcpm/tcpm.c @@ -3118,11 +3118,7 @@ tcpm_try_src(port) ? SRC_TRY : SNK_ATTACHED, 0); - else - /* Wait for VBUS, but not forever */ - tcpm_set_state(port, PORT_RESET, PD_T_PS_SOURCE_ON); break; - case SRC_TRY: port->try_src_count++; tcpm_set_cc(port, tcpm_rp_cc(port)); @@ -3679,6 +3675,7 @@ tcpm_set_state(port, SRC_ATTACH_WAIT, 0); break; case SRC_ATTACHED: + case SRC_STARTUP: case SRC_SEND_CAPABILITIES: case SRC_READY: if (tcpm_port_is_disconnected(port) || @@ -3906,7 +3903,8 @@ case SNK_TRYWAIT_DEBOUNCE: break; case SNK_ATTACH_WAIT: - tcpm_set_state(port, SNK_UNATTACHED, 0); + case SNK_DEBOUNCED: + /* Do nothing, as TCPM is still waiting for vbus to reaach VSAFE5V to connect */ break; case SNK_NEGOTIATE_CAPABILITIES: diff -u linux-azure-5.4.0/drivers/usb/typec/tcpm/wcove.c linux-azure-5.4.0/drivers/usb/typec/tcpm/wcove.c --- linux-azure-5.4.0/drivers/usb/typec/tcpm/wcove.c +++ linux-azure-5.4.0/drivers/usb/typec/tcpm/wcove.c @@ -377,7 +377,7 @@ const u8 *data = (void *)msg; int i; - for (i = 0; i < pd_header_cnt(msg->header) * 4 + 2; i++) { + for (i = 0; i < pd_header_cnt_le(msg->header) * 4 + 2; i++) { ret = regmap_write(wcove->regmap, USBC_TX_DATA + i, data[i]); if (ret) diff -u linux-azure-5.4.0/drivers/usb/typec/ucsi/ucsi.c linux-azure-5.4.0/drivers/usb/typec/ucsi/ucsi.c --- linux-azure-5.4.0/drivers/usb/typec/ucsi/ucsi.c +++ linux-azure-5.4.0/drivers/usb/typec/ucsi/ucsi.c @@ -748,14 +748,18 @@ if (ret < 0) goto out_unlock; + mutex_unlock(&con->lock); + if (!wait_for_completion_timeout(&con->complete, - msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) - ret = -ETIMEDOUT; + msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) + return -ETIMEDOUT; + + return 0; out_unlock: mutex_unlock(&con->lock); - return ret < 0 ? ret : 0; + return ret; } static int @@ -780,11 +784,13 @@ if (ret < 0) goto out_unlock; + mutex_unlock(&con->lock); + if (!wait_for_completion_timeout(&con->complete, - msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) { - ret = -ETIMEDOUT; - goto out_unlock; - } + msecs_to_jiffies(UCSI_SWAP_TIMEOUT_MS))) + return -ETIMEDOUT; + + mutex_lock(&con->lock); /* Something has gone wrong while swapping the role */ if (con->status.pwr_op_mode != UCSI_CONSTAT_PWR_OPMODE_PD) { @@ -977,6 +983,7 @@ } err_reset: + memset(&ucsi->cap, 0, sizeof(ucsi->cap)); ucsi_reset_ppm(ucsi); err: mutex_unlock(&ucsi->ppm_lock); diff -u linux-azure-5.4.0/drivers/usb/usbip/stub_dev.c linux-azure-5.4.0/drivers/usb/usbip/stub_dev.c --- linux-azure-5.4.0/drivers/usb/usbip/stub_dev.c +++ linux-azure-5.4.0/drivers/usb/usbip/stub_dev.c @@ -393,7 +393,6 @@ err_port: dev_set_drvdata(&udev->dev, NULL); - usb_put_dev(udev); /* we already have busid_priv, just lock busid_lock */ spin_lock(&busid_priv->busid_lock); @@ -408,6 +407,7 @@ put_busid_priv(busid_priv); sdev_free: + usb_put_dev(udev); stub_device_free(sdev); return rc; diff -u linux-azure-5.4.0/drivers/usb/usbip/stub_rx.c linux-azure-5.4.0/drivers/usb/usbip/stub_rx.c --- linux-azure-5.4.0/drivers/usb/usbip/stub_rx.c +++ linux-azure-5.4.0/drivers/usb/usbip/stub_rx.c @@ -138,7 +138,9 @@ req = (struct usb_ctrlrequest *) urb->setup_packet; config = le16_to_cpu(req->wValue); + usb_lock_device(sdev->udev); err = usb_set_configuration(sdev->udev, config); + usb_unlock_device(sdev->udev); if (err && err != -ENODEV) dev_err(&sdev->udev->dev, "can't set config #%d, error %d\n", config, err); diff -u linux-azure-5.4.0/drivers/usb/usbip/vhci_hcd.c linux-azure-5.4.0/drivers/usb/usbip/vhci_hcd.c --- linux-azure-5.4.0/drivers/usb/usbip/vhci_hcd.c +++ linux-azure-5.4.0/drivers/usb/usbip/vhci_hcd.c @@ -455,8 +455,14 @@ vhci_hcd->port_status[rhport] &= ~(1 << USB_PORT_FEAT_RESET); vhci_hcd->re_timeout = 0; + /* + * A few drivers do usb reset during probe when + * the device could be in VDEV_ST_USED state + */ if (vhci_hcd->vdev[rhport].ud.status == - VDEV_ST_NOTASSIGNED) { + VDEV_ST_NOTASSIGNED || + vhci_hcd->vdev[rhport].ud.status == + VDEV_ST_USED) { usbip_dbg_vhci_rh( " enable rhport %d (status %u)\n", rhport, @@ -952,8 +958,32 @@ spin_lock(&vdev->priv_lock); list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) { + struct urb *urb; + + /* give back urb of unsent unlink request */ pr_info("unlink cleanup tx %lu\n", unlink->unlink_seqnum); + + urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum); + if (!urb) { + list_del(&unlink->list); + kfree(unlink); + continue; + } + + urb->status = -ENODEV; + + usb_hcd_unlink_urb_from_ep(hcd, urb); + list_del(&unlink->list); + + spin_unlock(&vdev->priv_lock); + spin_unlock_irqrestore(&vhci->lock, flags); + + usb_hcd_giveback_urb(hcd, urb, urb->status); + + spin_lock_irqsave(&vhci->lock, flags); + spin_lock(&vdev->priv_lock); + kfree(unlink); } diff -u linux-azure-5.4.0/drivers/vfio/Kconfig linux-azure-5.4.0/drivers/vfio/Kconfig --- linux-azure-5.4.0/drivers/vfio/Kconfig +++ linux-azure-5.4.0/drivers/vfio/Kconfig @@ -29,7 +29,7 @@ If you don't know what to do here, say N. -menuconfig VFIO_NOIOMMU +config VFIO_NOIOMMU bool "VFIO No-IOMMU support" depends on VFIO help diff -u linux-azure-5.4.0/drivers/vfio/pci/Kconfig linux-azure-5.4.0/drivers/vfio/pci/Kconfig --- linux-azure-5.4.0/drivers/vfio/pci/Kconfig +++ linux-azure-5.4.0/drivers/vfio/pci/Kconfig @@ -2,6 +2,7 @@ config VFIO_PCI tristate "VFIO support for PCI devices" depends on VFIO && PCI && EVENTFD + depends on MMU select VFIO_VIRQFD select IRQ_BYPASS_MANAGER help diff -u linux-azure-5.4.0/drivers/vfio/pci/vfio_pci.c linux-azure-5.4.0/drivers/vfio/pci/vfio_pci.c --- linux-azure-5.4.0/drivers/vfio/pci/vfio_pci.c +++ linux-azure-5.4.0/drivers/vfio/pci/vfio_pci.c @@ -1430,6 +1430,7 @@ { struct vm_area_struct *vma = vmf->vma; struct vfio_pci_device *vdev = vma->vm_private_data; + struct vfio_pci_mmap_vma *mmap_vma; vm_fault_t ret = VM_FAULT_NOPAGE; mutex_lock(&vdev->vma_lock); @@ -1437,24 +1438,36 @@ if (!__vfio_pci_memory_enabled(vdev)) { ret = VM_FAULT_SIGBUS; - mutex_unlock(&vdev->vma_lock); goto up_out; } - if (__vfio_pci_add_vma(vdev, vma)) { - ret = VM_FAULT_OOM; - mutex_unlock(&vdev->vma_lock); - goto up_out; + /* + * We populate the whole vma on fault, so we need to test whether + * the vma has already been mapped, such as for concurrent faults + * to the same vma. io_remap_pfn_range() will trigger a BUG_ON if + * we ask it to fill the same range again. + */ + list_for_each_entry(mmap_vma, &vdev->vma_list, vma_next) { + if (mmap_vma->vma == vma) + goto up_out; } - mutex_unlock(&vdev->vma_lock); - if (io_remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff, - vma->vm_end - vma->vm_start, vma->vm_page_prot)) + vma->vm_end - vma->vm_start, + vma->vm_page_prot)) { ret = VM_FAULT_SIGBUS; + zap_vma_ptes(vma, vma->vm_start, vma->vm_end - vma->vm_start); + goto up_out; + } + + if (__vfio_pci_add_vma(vdev, vma)) { + ret = VM_FAULT_OOM; + zap_vma_ptes(vma, vma->vm_start, vma->vm_end - vma->vm_start); + } up_out: up_read(&vdev->memory_lock); + mutex_unlock(&vdev->vma_lock); return ret; } diff -u linux-azure-5.4.0/drivers/vfio/pci/vfio_pci_config.c linux-azure-5.4.0/drivers/vfio/pci/vfio_pci_config.c --- linux-azure-5.4.0/drivers/vfio/pci/vfio_pci_config.c +++ linux-azure-5.4.0/drivers/vfio/pci/vfio_pci_config.c @@ -1576,7 +1576,7 @@ if (len == 0xFF) { len = vfio_ext_cap_len(vdev, ecap, epos); if (len < 0) - return ret; + return len; } } diff -u linux-azure-5.4.0/drivers/vfio/platform/vfio_platform_common.c linux-azure-5.4.0/drivers/vfio/platform/vfio_platform_common.c --- linux-azure-5.4.0/drivers/vfio/platform/vfio_platform_common.c +++ linux-azure-5.4.0/drivers/vfio/platform/vfio_platform_common.c @@ -289,7 +289,7 @@ vfio_platform_regions_cleanup(vdev); err_reg: mutex_unlock(&driver_lock); - module_put(THIS_MODULE); + module_put(vdev->parent_module); return ret; } diff -u linux-azure-5.4.0/drivers/vfio/vfio.c linux-azure-5.4.0/drivers/vfio/vfio.c --- linux-azure-5.4.0/drivers/vfio/vfio.c +++ linux-azure-5.4.0/drivers/vfio/vfio.c @@ -1823,6 +1823,7 @@ buf = krealloc(caps->buf, caps->size + size, GFP_KERNEL); if (!buf) { kfree(caps->buf); + caps->buf = NULL; caps->size = 0; return ERR_PTR(-ENOMEM); } diff -u linux-azure-5.4.0/drivers/vhost/net.c linux-azure-5.4.0/drivers/vhost/net.c --- linux-azure-5.4.0/drivers/vhost/net.c +++ linux-azure-5.4.0/drivers/vhost/net.c @@ -466,15 +466,25 @@ .num = nvq->batched_xdp, .ptr = nvq->xdp, }; - int err; + int i, err; if (nvq->batched_xdp == 0) goto signal_used; msghdr->msg_control = &ctl; + msghdr->msg_controllen = sizeof(ctl); err = sock->ops->sendmsg(sock, msghdr, 0); if (unlikely(err < 0)) { vq_err(&nvq->vq, "Fail to batch sending packets\n"); + + /* free pages owned by XDP; since this is an unlikely error path, + * keep it simple and avoid more complex bulk update for the + * used pages + */ + for (i = 0; i < nvq->batched_xdp; ++i) + put_page(virt_to_head_page(nvq->xdp[i].data)); + nvq->batched_xdp = 0; + nvq->done_idx = 0; return; } @@ -1436,13 +1446,9 @@ return ERR_PTR(r); } -static struct ptr_ring *get_tap_ptr_ring(int fd) +static struct ptr_ring *get_tap_ptr_ring(struct file *file) { struct ptr_ring *ring; - struct file *file = fget(fd); - - if (!file) - return NULL; ring = tun_get_tx_ring(file); if (!IS_ERR(ring)) goto out; @@ -1451,7 +1457,6 @@ goto out; ring = NULL; out: - fput(file); return ring; } @@ -1538,8 +1543,12 @@ r = vhost_net_enable_vq(n, vq); if (r) goto err_used; - if (index == VHOST_NET_VQ_RX) - nvq->rx_ring = get_tap_ptr_ring(fd); + if (index == VHOST_NET_VQ_RX) { + if (sock) + nvq->rx_ring = get_tap_ptr_ring(sock->file); + else + nvq->rx_ring = NULL; + } oldubufs = nvq->ubufs; nvq->ubufs = ubufs; diff -u linux-azure-5.4.0/drivers/vhost/vhost.c linux-azure-5.4.0/drivers/vhost/vhost.c --- linux-azure-5.4.0/drivers/vhost/vhost.c +++ linux-azure-5.4.0/drivers/vhost/vhost.c @@ -702,10 +702,16 @@ (sz + VHOST_PAGE_SIZE * 8 - 1) / VHOST_PAGE_SIZE / 8); } +/* Make sure 64 bit math will not overflow. */ static bool vhost_overflow(u64 uaddr, u64 size) { - /* Make sure 64 bit math will not overflow. */ - return uaddr > ULONG_MAX || size > ULONG_MAX || uaddr > ULONG_MAX - size; + if (uaddr > ULONG_MAX || size > ULONG_MAX) + return true; + + if (!size) + return false; + + return uaddr > ULONG_MAX - size + 1; } /* Caller should have vq mutex and device mutex. */ diff -u linux-azure-5.4.0/drivers/vhost/vringh.c linux-azure-5.4.0/drivers/vhost/vringh.c --- linux-azure-5.4.0/drivers/vhost/vringh.c +++ linux-azure-5.4.0/drivers/vhost/vringh.c @@ -264,7 +264,7 @@ gfp_t gfp, int (*copy)(void *dst, const void *src, size_t len)) { - int err, count = 0, up_next, desc_max; + int err, count = 0, indirect_count = 0, up_next, desc_max; struct vring_desc desc, *descs; struct vringh_range range = { -1ULL, 0 }, slowrange; bool slow = false; @@ -321,7 +321,12 @@ continue; } - if (count++ == vrh->vring.num) { + if (up_next == -1) + count++; + else + indirect_count++; + + if (count > vrh->vring.num || indirect_count > desc_max) { vringh_bad("Descriptor loop in %p", descs); err = -ELOOP; goto fail; @@ -331,7 +336,7 @@ iov = wiov; else { iov = riov; - if (unlikely(wiov && wiov->i)) { + if (unlikely(wiov && wiov->used)) { vringh_bad("Readable desc %p after writable", &descs[i]); err = -EINVAL; @@ -383,6 +388,7 @@ i = return_from_indirect(vrh, &up_next, &descs, &desc_max); slow = false; + indirect_count = 0; } else break; } diff -u linux-azure-5.4.0/drivers/vhost/vsock.c linux-azure-5.4.0/drivers/vhost/vsock.c --- linux-azure-5.4.0/drivers/vhost/vsock.c +++ linux-azure-5.4.0/drivers/vhost/vsock.c @@ -353,7 +353,7 @@ return NULL; } - pkt->buf = kmalloc(pkt->len, GFP_KERNEL); + pkt->buf = kvmalloc(pkt->len, GFP_KERNEL); if (!pkt->buf) { kfree(pkt); return NULL; @@ -491,7 +491,7 @@ virtio_transport_free_pkt(pkt); len += sizeof(pkt->hdr); - vhost_add_used(vq, head, len); + vhost_add_used(vq, head, 0); total_len += len; added = true; } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len))); @@ -570,16 +570,18 @@ return ret; } -static int vhost_vsock_stop(struct vhost_vsock *vsock) +static int vhost_vsock_stop(struct vhost_vsock *vsock, bool check_owner) { size_t i; - int ret; + int ret = 0; mutex_lock(&vsock->dev.mutex); - ret = vhost_dev_check_owner(&vsock->dev); - if (ret) - goto err; + if (check_owner) { + ret = vhost_dev_check_owner(&vsock->dev); + if (ret) + goto err; + } for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) { struct vhost_virtqueue *vq = &vsock->vqs[i]; @@ -694,7 +696,12 @@ * inefficient. Room for improvement here. */ vsock_for_each_connected_socket(vhost_vsock_reset_orphans); - vhost_vsock_stop(vsock); + /* Don't check the owner, because we are in the release path, so we + * need to stop the vsock device in any case. + * vhost_vsock_stop() can not fail in this case, so we don't need to + * check the return code. + */ + vhost_vsock_stop(vsock, false); vhost_vsock_flush(vsock); vhost_dev_stop(&vsock->dev); @@ -792,7 +799,7 @@ if (start) return vhost_vsock_start(vsock); else - return vhost_vsock_stop(vsock); + return vhost_vsock_stop(vsock, true); case VHOST_GET_FEATURES: features = VHOST_VSOCK_FEATURES; if (copy_to_user(argp, &features, sizeof(features))) diff -u linux-azure-5.4.0/drivers/video/console/vgacon.c linux-azure-5.4.0/drivers/video/console/vgacon.c --- linux-azure-5.4.0/drivers/video/console/vgacon.c +++ linux-azure-5.4.0/drivers/video/console/vgacon.c @@ -370,11 +370,17 @@ struct uni_pagedir *p; /* - * We cannot be loaded as a module, therefore init is always 1, - * but vgacon_init can be called more than once, and init will - * not be 1. + * We cannot be loaded as a module, therefore init will be 1 + * if we are the default console, however if we are a fallback + * console, for example if fbcon has failed registration, then + * init will be 0, so we need to make sure our boot parameters + * have been copied to the console structure for vgacon_resize + * ultimately called by vc_resize. Any subsequent calls to + * vgacon_init init will have init set to 0 too. */ c->vc_can_do_color = vga_can_do_color; + c->vc_scan_lines = vga_scan_lines; + c->vc_font.height = c->vc_cell_height = vga_video_font_height; /* set dimensions manually if init != 0 since vc_resize() will fail */ if (init) { @@ -383,8 +389,6 @@ } else vc_resize(c, vga_video_num_columns, vga_video_num_lines); - c->vc_scan_lines = vga_scan_lines; - c->vc_font.height = c->vc_cell_height = vga_video_font_height; c->vc_complement_mask = 0x7700; if (vga_512_chars) c->vc_hi_font_mask = 0x0800; diff -u linux-azure-5.4.0/drivers/video/fbdev/atmel_lcdfb.c linux-azure-5.4.0/drivers/video/fbdev/atmel_lcdfb.c --- linux-azure-5.4.0/drivers/video/fbdev/atmel_lcdfb.c +++ linux-azure-5.4.0/drivers/video/fbdev/atmel_lcdfb.c @@ -1062,15 +1062,16 @@ INIT_LIST_HEAD(&info->modelist); - if (pdev->dev.of_node) { - ret = atmel_lcdfb_of_init(sinfo); - if (ret) - goto free_info; - } else { + if (!pdev->dev.of_node) { dev_err(dev, "cannot get default configuration\n"); goto free_info; } + ret = atmel_lcdfb_of_init(sinfo); + if (ret) + goto free_info; + + ret = -ENODEV; if (!sinfo->config) goto free_info; diff -u linux-azure-5.4.0/drivers/video/fbdev/core/fbcon.c linux-azure-5.4.0/drivers/video/fbdev/core/fbcon.c --- linux-azure-5.4.0/drivers/video/fbdev/core/fbcon.c +++ linux-azure-5.4.0/drivers/video/fbdev/core/fbcon.c @@ -123,8 +123,8 @@ enums. */ static int logo_shown = FBCON_LOGO_CANSHOW; /* console mappings */ -static int first_fb_vc; -static int last_fb_vc = MAX_NR_CONSOLES - 1; +static unsigned int first_fb_vc; +static unsigned int last_fb_vc = MAX_NR_CONSOLES - 1; static int fbcon_is_default = 1; static int primary_device = -1; static int fbcon_has_console_bind; @@ -474,10 +474,12 @@ options += 3; if (*options) first_fb_vc = simple_strtoul(options, &options, 10) - 1; - if (first_fb_vc < 0) + if (first_fb_vc >= MAX_NR_CONSOLES) first_fb_vc = 0; if (*options++ == '-') last_fb_vc = simple_strtoul(options, &options, 10) - 1; + if (last_fb_vc < first_fb_vc || last_fb_vc >= MAX_NR_CONSOLES) + last_fb_vc = MAX_NR_CONSOLES - 1; fbcon_is_default = 0; continue; } @@ -2490,6 +2492,11 @@ if (charcount != 256 && charcount != 512) return -EINVAL; + /* font bigger than screen resolution ? */ + if (w > FBCON_SWAP(info->var.rotate, info->var.xres, info->var.yres) || + h > FBCON_SWAP(info->var.rotate, info->var.yres, info->var.xres)) + return -EINVAL; + /* Make sure drawing engine can handle the font */ if (!(info->pixmap.blit_x & (1 << (font->width - 1))) || !(info->pixmap.blit_y & (1 << (font->height - 1)))) @@ -2756,6 +2763,34 @@ } EXPORT_SYMBOL(fbcon_update_vcs); +/* let fbcon check if it supports a new screen resolution */ +int fbcon_modechange_possible(struct fb_info *info, struct fb_var_screeninfo *var) +{ + struct fbcon_ops *ops = info->fbcon_par; + struct vc_data *vc; + unsigned int i; + + WARN_CONSOLE_UNLOCKED(); + + if (!ops) + return 0; + + /* prevent setting a screen size which is smaller than font size */ + for (i = first_fb_vc; i <= last_fb_vc; i++) { + vc = vc_cons[i].d; + if (!vc || vc->vc_mode != KD_TEXT || + registered_fb[con2fb_map[i]] != info) + continue; + + if (vc->vc_font.width > FBCON_SWAP(var->rotate, var->xres, var->yres) || + vc->vc_font.height > FBCON_SWAP(var->rotate, var->yres, var->xres)) + return -EINVAL; + } + + return 0; +} +EXPORT_SYMBOL_GPL(fbcon_modechange_possible); + int fbcon_mode_deleted(struct fb_info *info, struct fb_videomode *mode) { @@ -3286,6 +3321,9 @@ console_lock(); + deferred_takeover = false; + logo_shown = FBCON_LOGO_DONTSHOW; + for_each_registered_fb(i) fbcon_fb_registered(registered_fb[i]); @@ -3303,8 +3341,6 @@ pr_info("fbcon: Taking over console\n"); dummycon_unregister_output_notifier(&fbcon_output_nb); - deferred_takeover = false; - logo_shown = FBCON_LOGO_DONTSHOW; /* We may get called in atomic context */ schedule_work(&fbcon_deferred_takeover_work); diff -u linux-azure-5.4.0/drivers/video/fbdev/core/fbmem.c linux-azure-5.4.0/drivers/video/fbdev/core/fbmem.c --- linux-azure-5.4.0/drivers/video/fbdev/core/fbmem.c +++ linux-azure-5.4.0/drivers/video/fbdev/core/fbmem.c @@ -512,7 +512,7 @@ while (n && (n * (logo->width + 8) - 8 > xres)) --n; - image.dx = (xres - n * (logo->width + 8) - 8) / 2; + image.dx = (xres - (n * (logo->width + 8) - 8)) / 2; image.dy = y ?: (yres - logo->height) / 2; } else { image.dx = 0; @@ -957,6 +957,7 @@ struct fb_var_screeninfo old_var; struct fb_videomode mode; struct fb_event event; + u32 unused; if (var->activate & FB_ACTIVATE_INV_MODE) { struct fb_videomode mode1, mode2; @@ -965,13 +966,11 @@ fb_var_to_videomode(&mode2, &info->var); /* make sure we don't delete the videomode of current var */ ret = fb_mode_is_equal(&mode1, &mode2); - - if (!ret) - fbcon_mode_deleted(info, &mode1); - - if (!ret) - fb_delete_videomode(&mode1, &info->modelist); - + if (!ret) { + ret = fbcon_mode_deleted(info, &mode1); + if (!ret) + fb_delete_videomode(&mode1, &info->modelist); + } return ret ? -EINVAL : 0; } @@ -1005,11 +1004,26 @@ if (var->xres < 8 || var->yres < 8) return -EINVAL; + /* Too huge resolution causes multiplication overflow. */ + if (check_mul_overflow(var->xres, var->yres, &unused) || + check_mul_overflow(var->xres_virtual, var->yres_virtual, &unused)) + return -EINVAL; + ret = info->fbops->fb_check_var(var, info); if (ret) return ret; + /* verify that virtual resolution >= physical resolution */ + if (var->xres_virtual < var->xres || + var->yres_virtual < var->yres) { + pr_warn("WARNING: fbcon: Driver '%s' missed to adjust virtual screen size (%ux%u vs. %ux%u)\n", + info->fix.id, + var->xres_virtual, var->yres_virtual, + var->xres, var->yres); + return -EINVAL; + } + if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW) return 0; @@ -1100,7 +1114,9 @@ return -EFAULT; console_lock(); lock_fb_info(info); - ret = fb_set_var(info, &var); + ret = fbcon_modechange_possible(info, &var); + if (!ret) + ret = fb_set_var(info, &var); if (!ret) fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL); unlock_fb_info(info); diff -u linux-azure-5.4.0/drivers/video/fbdev/sis/init.c linux-azure-5.4.0/drivers/video/fbdev/sis/init.c --- linux-azure-5.4.0/drivers/video/fbdev/sis/init.c +++ linux-azure-5.4.0/drivers/video/fbdev/sis/init.c @@ -355,12 +355,12 @@ } break; case 400: - if((!(VBFlags & CRT1_LCDA)) || ((LCDwidth >= 800) && (LCDwidth >= 600))) { + if((!(VBFlags & CRT1_LCDA)) || ((LCDwidth >= 800) && (LCDheight >= 600))) { if(VDisplay == 300) ModeIndex = ModeIndex_400x300[Depth]; } break; case 512: - if((!(VBFlags & CRT1_LCDA)) || ((LCDwidth >= 1024) && (LCDwidth >= 768))) { + if((!(VBFlags & CRT1_LCDA)) || ((LCDwidth >= 1024) && (LCDheight >= 768))) { if(VDisplay == 384) ModeIndex = ModeIndex_512x384[Depth]; } break; diff -u linux-azure-5.4.0/drivers/video/fbdev/sm712fb.c linux-azure-5.4.0/drivers/video/fbdev/sm712fb.c --- linux-azure-5.4.0/drivers/video/fbdev/sm712fb.c +++ linux-azure-5.4.0/drivers/video/fbdev/sm712fb.c @@ -1047,7 +1047,7 @@ if (count + p > total_size) count = total_size - p; - buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count, GFP_KERNEL); + buffer = kmalloc(PAGE_SIZE, GFP_KERNEL); if (!buffer) return -ENOMEM; @@ -1059,25 +1059,14 @@ while (count) { c = (count > PAGE_SIZE) ? PAGE_SIZE : count; dst = buffer; - for (i = c >> 2; i--;) { - *dst = fb_readl(src++); - *dst = big_swap(*dst); + for (i = (c + 3) >> 2; i--;) { + u32 val; + + val = fb_readl(src); + *dst = big_swap(val); + src++; dst++; } - if (c & 3) { - u8 *dst8 = (u8 *)dst; - u8 __iomem *src8 = (u8 __iomem *)src; - - for (i = c & 3; i--;) { - if (i & 1) { - *dst8++ = fb_readb(++src8); - } else { - *dst8++ = fb_readb(--src8); - src8 += 2; - } - } - src = (u32 __iomem *)src8; - } if (copy_to_user(buf, buffer, c)) { err = -EFAULT; @@ -1130,7 +1119,7 @@ count = total_size - p; } - buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count, GFP_KERNEL); + buffer = kmalloc(PAGE_SIZE, GFP_KERNEL); if (!buffer) return -ENOMEM; @@ -1148,24 +1137,11 @@ break; } - for (i = c >> 2; i--;) { - fb_writel(big_swap(*src), dst++); + for (i = (c + 3) >> 2; i--;) { + fb_writel(big_swap(*src), dst); + dst++; src++; } - if (c & 3) { - u8 *src8 = (u8 *)src; - u8 __iomem *dst8 = (u8 __iomem *)dst; - - for (i = c & 3; i--;) { - if (i & 1) { - fb_writeb(*src8++, ++dst8); - } else { - fb_writeb(*src8++, --dst8); - dst8 += 2; - } - } - dst = (u32 __iomem *)dst8; - } *ppos += c; buf += c; diff -u linux-azure-5.4.0/drivers/video/fbdev/udlfb.c linux-azure-5.4.0/drivers/video/fbdev/udlfb.c --- linux-azure-5.4.0/drivers/video/fbdev/udlfb.c +++ linux-azure-5.4.0/drivers/video/fbdev/udlfb.c @@ -1427,7 +1427,7 @@ struct device_attribute *a, char *buf) { struct fb_info *fb_info = dev_get_drvdata(fbdev); struct dlfb_data *dlfb = fb_info->par; - return snprintf(buf, PAGE_SIZE, "%u\n", + return sysfs_emit(buf, "%u\n", atomic_read(&dlfb->bytes_rendered)); } @@ -1435,7 +1435,7 @@ struct device_attribute *a, char *buf) { struct fb_info *fb_info = dev_get_drvdata(fbdev); struct dlfb_data *dlfb = fb_info->par; - return snprintf(buf, PAGE_SIZE, "%u\n", + return sysfs_emit(buf, "%u\n", atomic_read(&dlfb->bytes_identical)); } @@ -1443,7 +1443,7 @@ struct device_attribute *a, char *buf) { struct fb_info *fb_info = dev_get_drvdata(fbdev); struct dlfb_data *dlfb = fb_info->par; - return snprintf(buf, PAGE_SIZE, "%u\n", + return sysfs_emit(buf, "%u\n", atomic_read(&dlfb->bytes_sent)); } @@ -1451,7 +1451,7 @@ struct device_attribute *a, char *buf) { struct fb_info *fb_info = dev_get_drvdata(fbdev); struct dlfb_data *dlfb = fb_info->par; - return snprintf(buf, PAGE_SIZE, "%u\n", + return sysfs_emit(buf, "%u\n", atomic_read(&dlfb->cpu_kcycles_used)); } @@ -1650,8 +1650,9 @@ const struct device_attribute *attr; struct dlfb_data *dlfb; struct fb_info *info; - int retval = -ENOMEM; + int retval; struct usb_device *usbdev = interface_to_usbdev(intf); + struct usb_endpoint_descriptor *out; /* usb initialization */ dlfb = kzalloc(sizeof(*dlfb), GFP_KERNEL); @@ -1665,6 +1666,12 @@ dlfb->udev = usb_get_dev(usbdev); usb_set_intfdata(intf, dlfb); + retval = usb_find_common_endpoints(intf->cur_altsetting, NULL, &out, NULL, NULL); + if (retval) { + dev_err(&intf->dev, "Device should have at lease 1 bulk endpoint!\n"); + goto error; + } + dev_dbg(&intf->dev, "console enable=%d\n", console); dev_dbg(&intf->dev, "fb_defio enable=%d\n", fb_defio); dev_dbg(&intf->dev, "shadow enable=%d\n", shadow); @@ -1674,6 +1681,7 @@ if (!dlfb_parse_vendor_descriptor(dlfb, intf)) { dev_err(&intf->dev, "firmware not recognized, incompatible device?\n"); + retval = -ENODEV; goto error; } @@ -1687,8 +1695,10 @@ /* allocates framebuffer driver structure, not framebuffer memory */ info = framebuffer_alloc(0, &dlfb->udev->dev); - if (!info) + if (!info) { + retval = -ENOMEM; goto error; + } dlfb->info = info; info->par = dlfb; diff -u linux-azure-5.4.0/drivers/video/fbdev/w100fb.c linux-azure-5.4.0/drivers/video/fbdev/w100fb.c --- linux-azure-5.4.0/drivers/video/fbdev/w100fb.c +++ linux-azure-5.4.0/drivers/video/fbdev/w100fb.c @@ -770,12 +770,18 @@ fb_dealloc_cmap(&info->cmap); kfree(info->pseudo_palette); } - if (remapped_fbuf != NULL) + if (remapped_fbuf != NULL) { iounmap(remapped_fbuf); - if (remapped_regs != NULL) + remapped_fbuf = NULL; + } + if (remapped_regs != NULL) { iounmap(remapped_regs); - if (remapped_base != NULL) + remapped_regs = NULL; + } + if (remapped_base != NULL) { iounmap(remapped_base); + remapped_base = NULL; + } if (info) framebuffer_release(info); return err; @@ -795,8 +801,11 @@ fb_dealloc_cmap(&info->cmap); iounmap(remapped_base); + remapped_base = NULL; iounmap(remapped_regs); + remapped_regs = NULL; iounmap(remapped_fbuf); + remapped_fbuf = NULL; framebuffer_release(info); diff -u linux-azure-5.4.0/drivers/virt/vboxguest/vboxguest_linux.c linux-azure-5.4.0/drivers/virt/vboxguest/vboxguest_linux.c --- linux-azure-5.4.0/drivers/virt/vboxguest/vboxguest_linux.c +++ linux-azure-5.4.0/drivers/virt/vboxguest/vboxguest_linux.c @@ -361,8 +361,8 @@ goto err_vbg_core_exit; } - ret = devm_request_irq(dev, pci->irq, vbg_core_isr, IRQF_SHARED, - DEVICE_NAME, gdev); + ret = request_irq(pci->irq, vbg_core_isr, IRQF_SHARED, DEVICE_NAME, + gdev); if (ret) { vbg_err("vboxguest: Error requesting irq: %d\n", ret); goto err_vbg_core_exit; @@ -372,7 +372,7 @@ if (ret) { vbg_err("vboxguest: Error misc_register %s failed: %d\n", DEVICE_NAME, ret); - goto err_vbg_core_exit; + goto err_free_irq; } ret = misc_register(&gdev->misc_device_user); @@ -408,6 +408,8 @@ misc_deregister(&gdev->misc_device_user); err_unregister_misc_device: misc_deregister(&gdev->misc_device); +err_free_irq: + free_irq(pci->irq, gdev); err_vbg_core_exit: vbg_core_exit(gdev); err_disable_pcidev: @@ -424,6 +426,7 @@ vbg_gdev = NULL; mutex_unlock(&vbg_gdev_mutex); + free_irq(pci->irq, gdev); device_remove_file(gdev->dev, &dev_attr_host_features); device_remove_file(gdev->dev, &dev_attr_host_version); misc_deregister(&gdev->misc_device_user); diff -u linux-azure-5.4.0/drivers/virtio/virtio_pci_common.c linux-azure-5.4.0/drivers/virtio/virtio_pci_common.c --- linux-azure-5.4.0/drivers/virtio/virtio_pci_common.c +++ linux-azure-5.4.0/drivers/virtio/virtio_pci_common.c @@ -254,8 +254,7 @@ if (vp_dev->msix_affinity_masks) { for (i = 0; i < vp_dev->msix_vectors; i++) - if (vp_dev->msix_affinity_masks[i]) - free_cpumask_var(vp_dev->msix_affinity_masks[i]); + free_cpumask_var(vp_dev->msix_affinity_masks[i]); } if (vp_dev->msix_enabled) { @@ -576,6 +575,13 @@ struct virtio_pci_device *vp_dev = pci_get_drvdata(pci_dev); struct device *dev = get_device(&vp_dev->vdev.dev); + /* + * Device is marked broken on surprise removal so that virtio upper + * layers can abort any ongoing operation. + */ + if (!pci_device_is_present(pci_dev)) + virtio_break_device(&vp_dev->vdev); + pci_disable_sriov(pci_dev); unregister_virtio_device(&vp_dev->vdev); diff -u linux-azure-5.4.0/drivers/virtio/virtio_ring.c linux-azure-5.4.0/drivers/virtio/virtio_ring.c --- linux-azure-5.4.0/drivers/virtio/virtio_ring.c +++ linux-azure-5.4.0/drivers/virtio/virtio_ring.c @@ -263,7 +263,7 @@ size_t max_segment_size = SIZE_MAX; if (vring_use_dma_api(vdev)) - max_segment_size = dma_max_mapping_size(&vdev->dev); + max_segment_size = dma_max_mapping_size(vdev->dev.parent); return max_segment_size; } @@ -1668,7 +1668,9 @@ cpu_to_le16(vq->packed.event_flags_shadow); } + spin_lock(&vdev->vqs_list_lock); list_add_tail(&vq->vq.list, &vdev->vqs); + spin_unlock(&vdev->vqs_list_lock); return &vq->vq; err_desc_extra: @@ -2126,7 +2128,9 @@ memset(vq->split.desc_state, 0, vring.num * sizeof(struct vring_desc_state_split)); + spin_lock(&vdev->vqs_list_lock); list_add_tail(&vq->vq.list, &vdev->vqs); + spin_unlock(&vdev->vqs_list_lock); return &vq->vq; } EXPORT_SYMBOL_GPL(__vring_new_virtqueue); @@ -2210,7 +2214,9 @@ } if (!vq->packed_ring) kfree(vq->split.desc_state); + spin_lock(&vq->vq.vdev->vqs_list_lock); list_del(&_vq->list); + spin_unlock(&vq->vq.vdev->vqs_list_lock); kfree(vq); } EXPORT_SYMBOL_GPL(vring_del_virtqueue); @@ -2262,7 +2268,7 @@ { struct vring_virtqueue *vq = to_vvq(_vq); - return vq->broken; + return READ_ONCE(vq->broken); } EXPORT_SYMBOL_GPL(virtqueue_is_broken); @@ -2274,10 +2280,14 @@ { struct virtqueue *_vq; + spin_lock(&dev->vqs_list_lock); list_for_each_entry(_vq, &dev->vqs, list) { struct vring_virtqueue *vq = to_vvq(_vq); - vq->broken = true; + + /* Pairs with READ_ONCE() in virtqueue_is_broken(). */ + WRITE_ONCE(vq->broken, true); } + spin_unlock(&dev->vqs_list_lock); } EXPORT_SYMBOL_GPL(virtio_break_device); diff -u linux-azure-5.4.0/drivers/visorbus/visorchipset.c linux-azure-5.4.0/drivers/visorbus/visorchipset.c --- linux-azure-5.4.0/drivers/visorbus/visorchipset.c +++ linux-azure-5.4.0/drivers/visorbus/visorchipset.c @@ -1561,7 +1561,7 @@ static int visorchipset_init(struct acpi_device *acpi_device) { - int err = -ENODEV; + int err = -ENOMEM; struct visorchannel *controlvm_channel; chipset_dev = kzalloc(sizeof(*chipset_dev), GFP_KERNEL); @@ -1584,8 +1584,10 @@ "controlvm", sizeof(struct visor_controlvm_channel), VISOR_CONTROLVM_CHANNEL_VERSIONID, - VISOR_CHANNEL_SIGNATURE)) + VISOR_CHANNEL_SIGNATURE)) { + err = -ENODEV; goto error_delete_groups; + } /* if booting in a crash kernel */ if (is_kdump_kernel()) INIT_DELAYED_WORK(&chipset_dev->periodic_controlvm_work, diff -u linux-azure-5.4.0/drivers/watchdog/Kconfig linux-azure-5.4.0/drivers/watchdog/Kconfig --- linux-azure-5.4.0/drivers/watchdog/Kconfig +++ linux-azure-5.4.0/drivers/watchdog/Kconfig @@ -1694,7 +1694,7 @@ config AR7_WDT tristate "TI AR7 Watchdog Timer" - depends on AR7 || (MIPS && COMPILE_TEST) + depends on AR7 || (MIPS && 32BIT && COMPILE_TEST) help Hardware driver for the TI AR7 Watchdog Timer. diff -u linux-azure-5.4.0/drivers/watchdog/aspeed_wdt.c linux-azure-5.4.0/drivers/watchdog/aspeed_wdt.c --- linux-azure-5.4.0/drivers/watchdog/aspeed_wdt.c +++ linux-azure-5.4.0/drivers/watchdog/aspeed_wdt.c @@ -147,7 +147,7 @@ wdd->timeout = timeout; - actual = min(timeout, wdd->max_hw_heartbeat_ms * 1000); + actual = min(timeout, wdd->max_hw_heartbeat_ms / 1000); writel(actual * WDT_RATE_1MHZ, wdt->base + WDT_RELOAD_VALUE); writel(WDT_RESTART_MAGIC, wdt->base + WDT_RESTART); diff -u linux-azure-5.4.0/drivers/watchdog/f71808e_wdt.c linux-azure-5.4.0/drivers/watchdog/f71808e_wdt.c --- linux-azure-5.4.0/drivers/watchdog/f71808e_wdt.c +++ linux-azure-5.4.0/drivers/watchdog/f71808e_wdt.c @@ -228,15 +228,17 @@ mutex_lock(&watchdog.lock); - watchdog.timeout = timeout; if (timeout > 0xff) { watchdog.timer_val = DIV_ROUND_UP(timeout, 60); watchdog.minutes_mode = true; + timeout = watchdog.timer_val * 60; } else { watchdog.timer_val = timeout; watchdog.minutes_mode = false; } + watchdog.timeout = timeout; + mutex_unlock(&watchdog.lock); return 0; diff -u linux-azure-5.4.0/drivers/watchdog/imx_sc_wdt.c linux-azure-5.4.0/drivers/watchdog/imx_sc_wdt.c --- linux-azure-5.4.0/drivers/watchdog/imx_sc_wdt.c +++ linux-azure-5.4.0/drivers/watchdog/imx_sc_wdt.c @@ -185,16 +185,12 @@ watchdog_stop_on_reboot(wdog); watchdog_stop_on_unregister(wdog); - ret = devm_watchdog_register_device(dev, wdog); - if (ret) - return ret; - ret = imx_scu_irq_group_enable(SC_IRQ_GROUP_WDOG, SC_IRQ_WDOG, true); if (ret) { dev_warn(dev, "Enable irq failed, pretimeout NOT supported\n"); - return 0; + goto register_device; } imx_sc_wdd->wdt_notifier.notifier_call = imx_sc_wdt_notify; @@ -205,7 +201,7 @@ false); dev_warn(dev, "Register irq notifier failed, pretimeout NOT supported\n"); - return 0; + goto register_device; } ret = devm_add_action_or_reset(dev, imx_sc_wdt_action, @@ -215,7 +211,8 @@ else dev_warn(dev, "Add action failed, pretimeout NOT supported\n"); - return 0; +register_device: + return devm_watchdog_register_device(dev, wdog); } static int __maybe_unused imx_sc_wdt_suspend(struct device *dev) diff -u linux-azure-5.4.0/drivers/watchdog/orion_wdt.c linux-azure-5.4.0/drivers/watchdog/orion_wdt.c --- linux-azure-5.4.0/drivers/watchdog/orion_wdt.c +++ linux-azure-5.4.0/drivers/watchdog/orion_wdt.c @@ -52,7 +52,7 @@ #define WDT_A370_RATIO (1 << WDT_A370_RATIO_SHIFT) static bool nowayout = WATCHDOG_NOWAYOUT; -static int heartbeat = -1; /* module parameter (seconds) */ +static int heartbeat; /* module parameter (seconds) */ struct orion_watchdog; diff -u linux-azure-5.4.0/drivers/watchdog/wdat_wdt.c linux-azure-5.4.0/drivers/watchdog/wdat_wdt.c --- linux-azure-5.4.0/drivers/watchdog/wdat_wdt.c +++ linux-azure-5.4.0/drivers/watchdog/wdat_wdt.c @@ -462,6 +462,7 @@ return ret; watchdog_set_nowayout(&wdat->wdd, nowayout); + watchdog_stop_on_reboot(&wdat->wdd); return devm_watchdog_register_device(dev, &wdat->wdd); } diff -u linux-azure-5.4.0/drivers/xen/balloon.c linux-azure-5.4.0/drivers/xen/balloon.c --- linux-azure-5.4.0/drivers/xen/balloon.c +++ linux-azure-5.4.0/drivers/xen/balloon.c @@ -43,6 +43,8 @@ #include #include #include +#include +#include #include #include #include @@ -56,6 +58,7 @@ #include #include #include +#include #include #include @@ -73,6 +76,12 @@ #include #include +#undef MODULE_PARAM_PREFIX +#define MODULE_PARAM_PREFIX "xen." + +static uint __read_mostly balloon_boot_timeout = 180; +module_param(balloon_boot_timeout, uint, 0444); + static int xen_hotplug_unpopulated; #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG @@ -117,7 +126,7 @@ #define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1) /* - * balloon_process() state: + * balloon_thread() state: * * BP_DONE: done or nothing to do, * BP_WAIT: wait to be rescheduled, @@ -125,13 +134,15 @@ * BP_ECANCELED: error, balloon operation canceled. */ -enum bp_state { +static enum bp_state { BP_DONE, BP_WAIT, BP_EAGAIN, BP_ECANCELED -}; +} balloon_state = BP_DONE; +/* Main waiting point for xen-balloon thread. */ +static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq); static DEFINE_MUTEX(balloon_mutex); @@ -146,10 +157,6 @@ static LIST_HEAD(ballooned_pages); static DECLARE_WAIT_QUEUE_HEAD(balloon_wq); -/* Main work function, always executed in process context. */ -static void balloon_process(struct work_struct *work); -static DECLARE_DELAYED_WORK(balloon_worker, balloon_process); - /* When ballooning out (allocating memory to return to Xen) we don't really want the kernel to try too hard since that can trigger the oom killer. */ #define GFP_BALLOON \ @@ -201,18 +208,15 @@ return list_entry(next, struct page, lru); } -static enum bp_state update_schedule(enum bp_state state) +static void update_schedule(void) { - if (state == BP_WAIT) - return BP_WAIT; + if (balloon_state == BP_WAIT || balloon_state == BP_ECANCELED) + return; - if (state == BP_ECANCELED) - return BP_ECANCELED; - - if (state == BP_DONE) { + if (balloon_state == BP_DONE) { balloon_stats.schedule_delay = 1; balloon_stats.retry_count = 1; - return BP_DONE; + return; } ++balloon_stats.retry_count; @@ -221,7 +225,8 @@ balloon_stats.retry_count > balloon_stats.max_retry_count) { balloon_stats.schedule_delay = 1; balloon_stats.retry_count = 1; - return BP_ECANCELED; + balloon_state = BP_ECANCELED; + return; } balloon_stats.schedule_delay <<= 1; @@ -229,7 +234,7 @@ if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay) balloon_stats.schedule_delay = balloon_stats.max_schedule_delay; - return BP_EAGAIN; + balloon_state = BP_EAGAIN; } #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG @@ -383,7 +388,7 @@ static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v) { if (val == MEM_ONLINE) - schedule_delayed_work(&balloon_worker, 0); + wake_up(&balloon_thread_wq); return NOTIFY_OK; } @@ -508,50 +513,79 @@ } /* - * As this is a work item it is guaranteed to run as a single instance only. + * Stop waiting if either state is BP_DONE and ballooning action is + * needed, or if the credit has changed while state is not BP_DONE. + */ +static bool balloon_thread_cond(long credit) +{ + if (balloon_state == BP_DONE) + credit = 0; + + return current_credit() != credit || kthread_should_stop(); +} + +/* + * As this is a kthread it is guaranteed to run as a single instance only. * We may of course race updates of the target counts (which are protected * by the balloon lock), or with changes to the Xen hard limit, but we will * recover from these in time. */ -static void balloon_process(struct work_struct *work) +static int balloon_thread(void *unused) { - enum bp_state state = BP_DONE; long credit; + unsigned long timeout; + + set_freezable(); + for (;;) { + switch (balloon_state) { + case BP_DONE: + case BP_ECANCELED: + timeout = 3600 * HZ; + break; + case BP_EAGAIN: + timeout = balloon_stats.schedule_delay * HZ; + break; + case BP_WAIT: + timeout = HZ; + break; + } + + credit = current_credit(); + wait_event_freezable_timeout(balloon_thread_wq, + balloon_thread_cond(credit), timeout); + + if (kthread_should_stop()) + return 0; - do { mutex_lock(&balloon_mutex); credit = current_credit(); if (credit > 0) { if (balloon_is_inflated()) - state = increase_reservation(credit); + balloon_state = increase_reservation(credit); else - state = reserve_additional_memory(); + balloon_state = reserve_additional_memory(); } if (credit < 0) { long n_pages; n_pages = min(-credit, si_mem_available()); - state = decrease_reservation(n_pages, GFP_BALLOON); - if (state == BP_DONE && n_pages != -credit && + balloon_state = decrease_reservation(n_pages, + GFP_BALLOON); + if (balloon_state == BP_DONE && n_pages != -credit && n_pages < totalreserve_pages) - state = BP_EAGAIN; + balloon_state = BP_EAGAIN; } - state = update_schedule(state); + update_schedule(); mutex_unlock(&balloon_mutex); cond_resched(); - - } while (credit && state == BP_DONE); - - /* Schedule more work if there is some still to be done. */ - if (state == BP_EAGAIN) - schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ); + } } /* Resets the Xen limit, sets new target, and kicks off processing. */ @@ -559,7 +593,7 @@ { /* No need for lock. Not read-modify-write updates. */ balloon_stats.target_pages = target; - schedule_delayed_work(&balloon_worker, 0); + wake_up(&balloon_thread_wq); } EXPORT_SYMBOL_GPL(balloon_set_new_target); @@ -664,7 +698,7 @@ /* The balloon may be too large now. Shrink it if needed. */ if (current_credit()) - schedule_delayed_work(&balloon_worker, 0); + wake_up(&balloon_thread_wq); mutex_unlock(&balloon_mutex); } @@ -696,6 +730,8 @@ static int __init balloon_init(void) { + struct task_struct *task; + if (!xen_domain()) return -ENODEV; @@ -742,6 +778,47 @@ + task = kthread_run(balloon_thread, NULL, "xen-balloon"); + if (IS_ERR(task)) { + pr_err("xen-balloon thread could not be started, ballooning will not work!\n"); + return PTR_ERR(task); + } + /* Init the xen-balloon driver. */ xen_balloon_init(); return 0; } subsys_initcall(balloon_init); + +static int __init balloon_wait_finish(void) +{ + long credit, last_credit = 0; + unsigned long last_changed = 0; + + if (!xen_domain()) + return -ENODEV; + + /* PV guests don't need to wait. */ + if (xen_pv_domain() || !current_credit()) + return 0; + + pr_notice("Waiting for initial ballooning down having finished.\n"); + + while ((credit = current_credit()) < 0) { + if (credit != last_credit) { + last_changed = jiffies; + last_credit = credit; + } + if (balloon_state == BP_ECANCELED) { + pr_warn_once("Initial ballooning failed, %ld pages need to be freed.\n", + -credit); + if (jiffies - last_changed >= HZ * balloon_boot_timeout) + panic("Initial ballooning failed!\n"); + } + + schedule_timeout_interruptible(HZ / 10); + } + + pr_notice("Initial ballooning down finished.\n"); + + return 0; +} +late_initcall_sync(balloon_wait_finish); diff -u linux-azure-5.4.0/drivers/xen/events/events_base.c linux-azure-5.4.0/drivers/xen/events/events_base.c --- linux-azure-5.4.0/drivers/xen/events/events_base.c +++ linux-azure-5.4.0/drivers/xen/events/events_base.c @@ -134,12 +134,12 @@ static DEFINE_PER_CPU(unsigned int, irq_epoch); -static void clear_evtchn_to_irq_row(unsigned row) +static void clear_evtchn_to_irq_row(int *evtchn_row) { unsigned col; for (col = 0; col < EVTCHN_PER_ROW; col++) - WRITE_ONCE(evtchn_to_irq[row][col], -1); + WRITE_ONCE(evtchn_row[col], -1); } static void clear_evtchn_to_irq_all(void) @@ -149,7 +149,7 @@ for (row = 0; row < EVTCHN_ROW(xen_evtchn_max_channels()); row++) { if (evtchn_to_irq[row] == NULL) continue; - clear_evtchn_to_irq_row(row); + clear_evtchn_to_irq_row(evtchn_to_irq[row]); } } @@ -157,6 +157,7 @@ { unsigned row; unsigned col; + int *evtchn_row; if (evtchn >= xen_evtchn_max_channels()) return -EINVAL; @@ -169,11 +170,18 @@ if (irq == -1) return 0; - evtchn_to_irq[row] = (int *)get_zeroed_page(GFP_KERNEL); - if (evtchn_to_irq[row] == NULL) + evtchn_row = (int *) __get_free_pages(GFP_KERNEL, 0); + if (evtchn_row == NULL) return -ENOMEM; - clear_evtchn_to_irq_row(row); + clear_evtchn_to_irq_row(evtchn_row); + + /* + * We've prepared an empty row for the mapping. If a different + * thread was faster inserting it, we can drop ours. + */ + if (cmpxchg(&evtchn_to_irq[row], NULL, evtchn_row) != NULL) + free_page((unsigned long) evtchn_row); } WRITE_ONCE(evtchn_to_irq[row][col], irq); @@ -525,6 +533,9 @@ } info->eoi_time = 0; + + /* is_active hasn't been reset yet, do it now. */ + smp_store_release(&info->is_active, 0); do_unmask(info, EVT_MASK_REASON_EOI_PENDING); } @@ -1781,10 +1792,22 @@ struct irq_info *info = info_for_irq(data->irq); evtchn_port_t evtchn = info ? info->evtchn : 0; - if (VALID_EVTCHN(evtchn)) { - do_mask(info, EVT_MASK_REASON_EOI_PENDING); - ack_dynirq(data); - } + if (!VALID_EVTCHN(evtchn)) + return; + + do_mask(info, EVT_MASK_REASON_EOI_PENDING); + + if (unlikely(irqd_is_setaffinity_pending(data)) && + likely(!irqd_irq_disabled(data))) { + do_mask(info, EVT_MASK_REASON_TEMPORARY); + + clear_evtchn(evtchn); + + irq_move_masked_irq(data); + + do_unmask(info, EVT_MASK_REASON_TEMPORARY); + } else + clear_evtchn(evtchn); } static void lateeoi_mask_ack_dynirq(struct irq_data *data) diff -u linux-azure-5.4.0/drivers/xen/gntdev.c linux-azure-5.4.0/drivers/xen/gntdev.c --- linux-azure-5.4.0/drivers/xen/gntdev.c +++ linux-azure-5.4.0/drivers/xen/gntdev.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include @@ -62,11 +63,12 @@ static atomic_t pages_mapped = ATOMIC_INIT(0); +/* True in PV mode, false otherwise */ static int use_ptemod; #define populate_freeable_maps use_ptemod -static int unmap_grant_pages(struct gntdev_grant_map *map, - int offset, int pages); +static void unmap_grant_pages(struct gntdev_grant_map *map, + int offset, int pages); static struct miscdevice gntdev_miscdev; @@ -123,6 +125,7 @@ kfree(map->unmap_ops); kfree(map->kmap_ops); kfree(map->kunmap_ops); + kfree(map->being_removed); kfree(map); } @@ -142,12 +145,15 @@ add->kmap_ops = kcalloc(count, sizeof(add->kmap_ops[0]), GFP_KERNEL); add->kunmap_ops = kcalloc(count, sizeof(add->kunmap_ops[0]), GFP_KERNEL); add->pages = kcalloc(count, sizeof(add->pages[0]), GFP_KERNEL); + add->being_removed = + kcalloc(count, sizeof(add->being_removed[0]), GFP_KERNEL); if (NULL == add->grants || NULL == add->map_ops || NULL == add->unmap_ops || NULL == add->kmap_ops || NULL == add->kunmap_ops || - NULL == add->pages) + NULL == add->pages || + NULL == add->being_removed) goto err; #ifdef CONFIG_XEN_GRANT_DMA_ALLOC @@ -243,6 +249,35 @@ return; atomic_sub(map->count, &pages_mapped); + if (map->pages && !use_ptemod) { + /* + * Increment the reference count. This ensures that the + * subsequent call to unmap_grant_pages() will not wind up + * re-entering itself. It *can* wind up calling + * gntdev_put_map() recursively, but such calls will be with a + * reference count greater than 1, so they will return before + * this code is reached. The recursion depth is thus limited to + * 1. Do NOT use refcount_inc() here, as it will detect that + * the reference count is zero and WARN(). + */ + refcount_set(&map->users, 1); + + /* + * Unmap the grants. This may or may not be asynchronous, so it + * is possible that the reference count is 1 on return, but it + * could also be greater than 1. + */ + unmap_grant_pages(map, 0, map->count); + + /* Check if the memory now needs to be freed */ + if (!refcount_dec_and_test(&map->users)) + return; + + /* + * All pages have been returned to the hypervisor, so free the + * map. + */ + } if (map->notify.flags & UNMAP_NOTIFY_SEND_EVENT) { notify_remote_via_evtchn(map->notify.event); @@ -298,6 +333,7 @@ int gntdev_map_grant_pages(struct gntdev_grant_map *map) { + size_t alloced = 0; int i, err = 0; if (!use_ptemod) { @@ -346,87 +382,130 @@ map->pages, map->count); for (i = 0; i < map->count; i++) { - if (map->map_ops[i].status == GNTST_okay) + if (map->map_ops[i].status == GNTST_okay) { map->unmap_ops[i].handle = map->map_ops[i].handle; - else if (!err) + alloced++; + } else if (!err) err = -EINVAL; if (map->flags & GNTMAP_device_map) map->unmap_ops[i].dev_bus_addr = map->map_ops[i].dev_bus_addr; if (use_ptemod) { - if (map->kmap_ops[i].status == GNTST_okay) + if (map->kmap_ops[i].status == GNTST_okay) { + alloced++; map->kunmap_ops[i].handle = map->kmap_ops[i].handle; - else if (!err) + } else if (!err) err = -EINVAL; } } + atomic_add(alloced, &map->live_grants); return err; } -static int __unmap_grant_pages(struct gntdev_grant_map *map, int offset, - int pages) +static void __unmap_grant_pages_done(int result, + struct gntab_unmap_queue_data *data) { - int i, err = 0; - struct gntab_unmap_queue_data unmap_data; + unsigned int i; + struct gntdev_grant_map *map = data->data; + unsigned int offset = data->unmap_ops - map->unmap_ops; + int successful_unmaps = 0; + int live_grants; + + for (i = 0; i < data->count; i++) { + if (map->unmap_ops[offset + i].status == GNTST_okay && + map->unmap_ops[offset + i].handle != -1) + successful_unmaps++; + + WARN_ON(map->unmap_ops[offset+i].status && + map->unmap_ops[offset+i].handle != -1); + pr_debug("unmap handle=%d st=%d\n", + map->unmap_ops[offset+i].handle, + map->unmap_ops[offset+i].status); + map->unmap_ops[offset+i].handle = -1; + if (use_ptemod) { + if (map->kunmap_ops[offset + i].status == GNTST_okay && + map->kunmap_ops[offset + i].handle != -1) + successful_unmaps++; + + WARN_ON(map->kunmap_ops[offset+i].status && + map->kunmap_ops[offset+i].handle != -1); + pr_debug("kunmap handle=%u st=%d\n", + map->kunmap_ops[offset+i].handle, + map->kunmap_ops[offset+i].status); + map->kunmap_ops[offset+i].handle = -1; + } + } + + /* + * Decrease the live-grant counter. This must happen after the loop to + * prevent premature reuse of the grants by gnttab_mmap(). + */ + live_grants = atomic_sub_return(successful_unmaps, &map->live_grants); + if (WARN_ON(live_grants < 0)) + pr_err("%s: live_grants became negative (%d) after unmapping %d pages!\n", + __func__, live_grants, successful_unmaps); + /* Release reference taken by __unmap_grant_pages */ + gntdev_put_map(NULL, map); +} + +static void __unmap_grant_pages(struct gntdev_grant_map *map, int offset, + int pages) +{ if (map->notify.flags & UNMAP_NOTIFY_CLEAR_BYTE) { int pgno = (map->notify.addr >> PAGE_SHIFT); + if (pgno >= offset && pgno < offset + pages) { /* No need for kmap, pages are in lowmem */ uint8_t *tmp = pfn_to_kaddr(page_to_pfn(map->pages[pgno])); + tmp[map->notify.addr & (PAGE_SIZE-1)] = 0; map->notify.flags &= ~UNMAP_NOTIFY_CLEAR_BYTE; } } - unmap_data.unmap_ops = map->unmap_ops + offset; - unmap_data.kunmap_ops = use_ptemod ? map->kunmap_ops + offset : NULL; - unmap_data.pages = map->pages + offset; - unmap_data.count = pages; - - err = gnttab_unmap_refs_sync(&unmap_data); - if (err) - return err; + map->unmap_data.unmap_ops = map->unmap_ops + offset; + map->unmap_data.kunmap_ops = use_ptemod ? map->kunmap_ops + offset : NULL; + map->unmap_data.pages = map->pages + offset; + map->unmap_data.count = pages; + map->unmap_data.done = __unmap_grant_pages_done; + map->unmap_data.data = map; + refcount_inc(&map->users); /* to keep map alive during async call below */ - for (i = 0; i < pages; i++) { - if (map->unmap_ops[offset+i].status) - err = -EINVAL; - pr_debug("unmap handle=%d st=%d\n", - map->unmap_ops[offset+i].handle, - map->unmap_ops[offset+i].status); - map->unmap_ops[offset+i].handle = -1; - } - return err; + gnttab_unmap_refs_async(&map->unmap_data); } -static int unmap_grant_pages(struct gntdev_grant_map *map, int offset, - int pages) +static void unmap_grant_pages(struct gntdev_grant_map *map, int offset, + int pages) { - int range, err = 0; + int range; + + if (atomic_read(&map->live_grants) == 0) + return; /* Nothing to do */ pr_debug("unmap %d+%d [%d+%d]\n", map->index, map->count, offset, pages); /* It is possible the requested range will have a "hole" where we * already unmapped some of the grants. Only unmap valid ranges. */ - while (pages && !err) { - while (pages && map->unmap_ops[offset].handle == -1) { + while (pages) { + while (pages && map->being_removed[offset]) { offset++; pages--; } range = 0; while (range < pages) { - if (map->unmap_ops[offset+range].handle == -1) + if (map->being_removed[offset + range]) break; + map->being_removed[offset + range] = true; range++; } - err = __unmap_grant_pages(map, offset, range); + if (range) + __unmap_grant_pages(map, offset, range); offset += range; pages -= range; } - - return err; } /* ------------------------------------------------------------------ */ @@ -496,7 +575,6 @@ bool blockable) { unsigned long mstart, mend; - int err; if (!in_range(map, start, end)) return 0; @@ -510,10 +588,9 @@ map->index, map->count, map->vma->vm_start, map->vma->vm_end, start, end, mstart, mend); - err = unmap_grant_pages(map, + unmap_grant_pages(map, (mstart - map->vma->vm_start) >> PAGE_SHIFT, (mend - mstart) >> PAGE_SHIFT); - WARN_ON(err); return 0; } @@ -554,7 +631,6 @@ { struct gntdev_priv *priv = container_of(mn, struct gntdev_priv, mn); struct gntdev_grant_map *map; - int err; mutex_lock(&priv->lock); list_for_each_entry(map, &priv->maps, next) { @@ -563,8 +639,7 @@ pr_debug("map %d+%d (%lx %lx)\n", map->index, map->count, map->vma->vm_start, map->vma->vm_end); - err = unmap_grant_pages(map, /* offset */ 0, map->count); - WARN_ON(err); + unmap_grant_pages(map, /* offset */ 0, map->count); } list_for_each_entry(map, &priv->freeable_maps, next) { if (!map->vma) @@ -572,8 +647,7 @@ pr_debug("map %d+%d (%lx %lx)\n", map->index, map->count, map->vma->vm_start, map->vma->vm_end); - err = unmap_grant_pages(map, /* offset */ 0, map->count); - WARN_ON(err); + unmap_grant_pages(map, /* offset */ 0, map->count); } mutex_unlock(&priv->lock); } @@ -1102,6 +1176,10 @@ goto unlock_out; } + if (atomic_read(&map->live_grants)) { + err = -EAGAIN; + goto unlock_out; + } refcount_inc(&map->users); vma->vm_ops = &gntdev_vmops; diff -u linux-azure-5.4.0/drivers/xen/privcmd.c linux-azure-5.4.0/drivers/xen/privcmd.c --- linux-azure-5.4.0/drivers/xen/privcmd.c +++ linux-azure-5.4.0/drivers/xen/privcmd.c @@ -810,11 +810,12 @@ unsigned int domid = (xdata.flags & XENMEM_rsrc_acq_caller_owned) ? DOMID_SELF : kdata.dom; - int num; + int num, *errs = (int *)pfns; + BUILD_BUG_ON(sizeof(*errs) > sizeof(*pfns)); num = xen_remap_domain_mfn_array(vma, kdata.addr & PAGE_MASK, - pfns, kdata.num, (int *)pfns, + pfns, kdata.num, errs, vma->vm_page_prot, domid, vma->vm_private_data); @@ -824,7 +825,7 @@ unsigned int i; for (i = 0; i < num; i++) { - rc = pfns[i]; + rc = errs[i]; if (rc < 0) break; } diff -u linux-azure-5.4.0/drivers/xen/xenbus/xenbus_client.c linux-azure-5.4.0/drivers/xen/xenbus/xenbus_client.c --- linux-azure-5.4.0/drivers/xen/xenbus/xenbus_client.c +++ linux-azure-5.4.0/drivers/xen/xenbus/xenbus_client.c @@ -366,7 +366,14 @@ unsigned int nr_pages, grant_ref_t *grefs) { int err; - int i, j; + unsigned int i; + grant_ref_t gref_head; + + err = gnttab_alloc_grant_references(nr_pages, &gref_head); + if (err) { + xenbus_dev_fatal(dev, err, "granting access to ring page"); + return err; + } for (i = 0; i < nr_pages; i++) { unsigned long gfn; @@ -376,23 +383,14 @@ else gfn = virt_to_gfn(vaddr); - err = gnttab_grant_foreign_access(dev->otherend_id, gfn, 0); - if (err < 0) { - xenbus_dev_fatal(dev, err, - "granting access to ring page"); - goto fail; - } - grefs[i] = err; + grefs[i] = gnttab_claim_grant_reference(&gref_head); + gnttab_grant_foreign_access_ref(grefs[i], dev->otherend_id, + gfn, 0); vaddr = vaddr + XEN_PAGE_SIZE; } return 0; - -fail: - for (j = 0; j < i; j++) - gnttab_end_foreign_access_ref(grefs[j], 0); - return err; } EXPORT_SYMBOL_GPL(xenbus_grant_ring); diff -u linux-azure-5.4.0/drivers/xen/xenbus/xenbus_probe.c linux-azure-5.4.0/drivers/xen/xenbus/xenbus_probe.c --- linux-azure-5.4.0/drivers/xen/xenbus/xenbus_probe.c +++ linux-azure-5.4.0/drivers/xen/xenbus/xenbus_probe.c @@ -846,7 +846,7 @@ static int __init xenbus_init(void) { - int err = 0; + int err; uint64_t v = 0; xen_store_domain_type = XS_UNKNOWN; @@ -886,6 +886,29 @@ err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v); if (err) goto out_error; + /* + * Uninitialized hvm_params are zero and return no error. + * Although it is theoretically possible to have + * HVM_PARAM_STORE_PFN set to zero on purpose, in reality it is + * not zero when valid. If zero, it means that Xenstore hasn't + * been properly initialized. Instead of attempting to map a + * wrong guest physical address return error. + * + * Also recognize all bits set as an invalid value. + */ + if (!v || !~v) { + err = -ENOENT; + goto out_error; + } + /* Avoid truncation on 32-bit. */ +#if BITS_PER_LONG == 32 + if (v > ULONG_MAX) { + pr_err("%s: cannot handle HVM_PARAM_STORE_PFN=%llx > ULONG_MAX\n", + __func__, v); + err = -EINVAL; + goto out_error; + } +#endif xen_store_gfn = (unsigned long)v; xen_store_interface = xen_remap(xen_store_gfn << XEN_PAGE_SHIFT, @@ -920,8 +943,10 @@ */ proc_create_mount_point("xen"); #endif + return 0; out_error: + xen_store_domain_type = XS_UNKNOWN; return err; } diff -u linux-azure-5.4.0/fs/afs/cmservice.c linux-azure-5.4.0/fs/afs/cmservice.c --- linux-azure-5.4.0/fs/afs/cmservice.c +++ linux-azure-5.4.0/fs/afs/cmservice.c @@ -29,16 +29,11 @@ static int afs_deliver_yfs_cb_callback(struct afs_call *); -#define CM_NAME(name) \ - char afs_SRXCB##name##_name[] __tracepoint_string = \ - "CB." #name - /* * CB.CallBack operation type */ -static CM_NAME(CallBack); static const struct afs_call_type afs_SRXCBCallBack = { - .name = afs_SRXCBCallBack_name, + .name = "CB.CallBack", .deliver = afs_deliver_cb_callback, .destructor = afs_cm_destructor, .work = SRXAFSCB_CallBack, @@ -47,9 +42,8 @@ /* * CB.InitCallBackState operation type */ -static CM_NAME(InitCallBackState); static const struct afs_call_type afs_SRXCBInitCallBackState = { - .name = afs_SRXCBInitCallBackState_name, + .name = "CB.InitCallBackState", .deliver = afs_deliver_cb_init_call_back_state, .destructor = afs_cm_destructor, .work = SRXAFSCB_InitCallBackState, @@ -58,9 +52,8 @@ /* * CB.InitCallBackState3 operation type */ -static CM_NAME(InitCallBackState3); static const struct afs_call_type afs_SRXCBInitCallBackState3 = { - .name = afs_SRXCBInitCallBackState3_name, + .name = "CB.InitCallBackState3", .deliver = afs_deliver_cb_init_call_back_state3, .destructor = afs_cm_destructor, .work = SRXAFSCB_InitCallBackState, @@ -69,9 +62,8 @@ /* * CB.Probe operation type */ -static CM_NAME(Probe); static const struct afs_call_type afs_SRXCBProbe = { - .name = afs_SRXCBProbe_name, + .name = "CB.Probe", .deliver = afs_deliver_cb_probe, .destructor = afs_cm_destructor, .work = SRXAFSCB_Probe, @@ -80,9 +72,8 @@ /* * CB.ProbeUuid operation type */ -static CM_NAME(ProbeUuid); static const struct afs_call_type afs_SRXCBProbeUuid = { - .name = afs_SRXCBProbeUuid_name, + .name = "CB.ProbeUuid", .deliver = afs_deliver_cb_probe_uuid, .destructor = afs_cm_destructor, .work = SRXAFSCB_ProbeUuid, @@ -91,9 +82,8 @@ /* * CB.TellMeAboutYourself operation type */ -static CM_NAME(TellMeAboutYourself); static const struct afs_call_type afs_SRXCBTellMeAboutYourself = { - .name = afs_SRXCBTellMeAboutYourself_name, + .name = "CB.TellMeAboutYourself", .deliver = afs_deliver_cb_tell_me_about_yourself, .destructor = afs_cm_destructor, .work = SRXAFSCB_TellMeAboutYourself, @@ -102,9 +92,8 @@ /* * YFS CB.CallBack operation type */ -static CM_NAME(YFS_CallBack); static const struct afs_call_type afs_SRXYFSCB_CallBack = { - .name = afs_SRXCBYFS_CallBack_name, + .name = "YFSCB.CallBack", .deliver = afs_deliver_yfs_cb_callback, .destructor = afs_cm_destructor, .work = SRXAFSCB_CallBack, diff -u linux-azure-5.4.0/fs/afs/dir.c linux-azure-5.4.0/fs/afs/dir.c --- linux-azure-5.4.0/fs/afs/dir.c +++ linux-azure-5.4.0/fs/afs/dir.c @@ -415,8 +415,11 @@ } /* skip if starts before the current position */ - if (offset < curr) + if (offset < curr) { + if (next > curr) + ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent); continue; + } /* found the next entry */ if (!dir_emit(ctx, dire->u.name, nlen, @@ -977,9 +980,9 @@ */ static int afs_d_revalidate_rcu(struct dentry *dentry) { - struct afs_vnode *dvnode, *vnode; + struct afs_vnode *dvnode; struct dentry *parent; - struct inode *dir, *inode; + struct inode *dir; long dir_version, de_version; _enter("%p", dentry); @@ -1009,18 +1012,6 @@ return -ECHILD; } - /* Check to see if the vnode referred to by the dentry still - * has a callback. - */ - if (d_really_is_positive(dentry)) { - inode = d_inode_rcu(dentry); - if (inode) { - vnode = AFS_FS_I(inode); - if (!afs_check_validity(vnode)) - return -ECHILD; - } - } - return 1; /* Still valid */ } @@ -1056,17 +1047,7 @@ if (IS_ERR(key)) key = NULL; - if (d_really_is_positive(dentry)) { - inode = d_inode(dentry); - if (inode) { - vnode = AFS_FS_I(inode); - afs_validate(vnode, key); - if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) - goto out_bad; - } - } - - /* lock down the parent dentry so we can peer at it */ + /* Hold the parent dentry so we can peer at it */ parent = dget_parent(dentry); dir = AFS_FS_I(d_inode(parent)); @@ -1075,7 +1056,7 @@ if (test_bit(AFS_VNODE_DELETED, &dir->flags)) { _debug("%pd: parent dir deleted", dentry); - goto out_bad_parent; + goto not_found; } /* We only need to invalidate a dentry if the server's copy changed @@ -1101,12 +1082,12 @@ case 0: /* the filename maps to something */ if (d_really_is_negative(dentry)) - goto out_bad_parent; + goto not_found; inode = d_inode(dentry); if (is_bad_inode(inode)) { printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n", dentry); - goto out_bad_parent; + goto not_found; } vnode = AFS_FS_I(inode); @@ -1128,9 +1109,6 @@ dentry, fid.unique, vnode->fid.unique, vnode->vfs_inode.i_generation); - write_seqlock(&vnode->cb_lock); - set_bit(AFS_VNODE_DELETED, &vnode->flags); - write_sequnlock(&vnode->cb_lock); goto not_found; } goto out_valid; @@ -1145,7 +1123,7 @@ default: _debug("failed to iterate dir %pd: %d", parent, ret); - goto out_bad_parent; + goto not_found; } out_valid: @@ -1156,16 +1134,9 @@ _leave(" = 1 [valid]"); return 1; - /* the dirent, if it exists, now points to a different vnode */ not_found: - spin_lock(&dentry->d_lock); - dentry->d_flags |= DCACHE_NFSFS_RENAMED; - spin_unlock(&dentry->d_lock); - -out_bad_parent: _debug("dropping dentry %pd2", dentry); dput(parent); -out_bad: key_put(key); _leave(" = 0 [bad]"); diff -u linux-azure-5.4.0/fs/afs/fsclient.c linux-azure-5.4.0/fs/afs/fsclient.c --- linux-azure-5.4.0/fs/afs/fsclient.c +++ linux-azure-5.4.0/fs/afs/fsclient.c @@ -136,7 +136,7 @@ static time64_t xdr_decode_expiry(struct afs_call *call, u32 expiry) { - return ktime_divns(call->reply_time, NSEC_PER_SEC) + expiry; + return ktime_divns(call->issue_time, NSEC_PER_SEC) + expiry; } static void xdr_decode_AFSCallBack(const __be32 **_bp, diff -u linux-azure-5.4.0/fs/afs/inode.c linux-azure-5.4.0/fs/afs/inode.c --- linux-azure-5.4.0/fs/afs/inode.c +++ linux-azure-5.4.0/fs/afs/inode.c @@ -734,10 +734,23 @@ { struct inode *inode = d_inode(path->dentry); struct afs_vnode *vnode = AFS_FS_I(inode); - int seq = 0; + struct key *key; + int ret, seq = 0; _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation); + if (vnode->volume && + !(query_flags & AT_STATX_DONT_SYNC) && + !test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) { + key = afs_request_key(vnode->volume->cell); + if (IS_ERR(key)) + return PTR_ERR(key); + ret = afs_validate(vnode, key); + key_put(key); + if (ret < 0) + return ret; + } + do { read_seqbegin_or_lock(&vnode->cb_lock, &seq); generic_fillattr(inode, stat); diff -u linux-azure-5.4.0/fs/afs/internal.h linux-azure-5.4.0/fs/afs/internal.h --- linux-azure-5.4.0/fs/afs/internal.h +++ linux-azure-5.4.0/fs/afs/internal.h @@ -159,7 +159,6 @@ bool need_attention; /* T if RxRPC poked us */ bool async; /* T if asynchronous */ bool upgrade; /* T to request service upgrade */ - bool have_reply_time; /* T if have got reply_time */ bool intr; /* T if interruptible */ bool unmarshalling_error; /* T if an unmarshalling error occurred */ u16 service_id; /* Actual service ID (after upgrade) */ @@ -173,7 +172,7 @@ } __attribute__((packed)); __be64 tmp64; }; - ktime_t reply_time; /* Time of first reply packet */ + ktime_t issue_time; /* Time of issue of operation */ }; struct afs_call_type { diff -u linux-azure-5.4.0/fs/afs/main.c linux-azure-5.4.0/fs/afs/main.c --- linux-azure-5.4.0/fs/afs/main.c +++ linux-azure-5.4.0/fs/afs/main.c @@ -196,8 +196,8 @@ goto error_fs; afs_proc_symlink = proc_symlink("fs/afs", NULL, "../self/net/afs"); - if (IS_ERR(afs_proc_symlink)) { - ret = PTR_ERR(afs_proc_symlink); + if (!afs_proc_symlink) { + ret = -ENOMEM; goto error_proc; } diff -u linux-azure-5.4.0/fs/afs/misc.c linux-azure-5.4.0/fs/afs/misc.c --- linux-azure-5.4.0/fs/afs/misc.c +++ linux-azure-5.4.0/fs/afs/misc.c @@ -69,6 +69,7 @@ /* Unified AFS error table */ case UAEPERM: return -EPERM; case UAENOENT: return -ENOENT; + case UAEAGAIN: return -EAGAIN; case UAEACCES: return -EACCES; case UAEBUSY: return -EBUSY; case UAEEXIST: return -EEXIST; diff -u linux-azure-5.4.0/fs/afs/rxrpc.c linux-azure-5.4.0/fs/afs/rxrpc.c --- linux-azure-5.4.0/fs/afs/rxrpc.c +++ linux-azure-5.4.0/fs/afs/rxrpc.c @@ -428,6 +428,7 @@ if (call->max_lifespan) rxrpc_kernel_set_max_life(call->net->socket, rxcall, call->max_lifespan); + call->issue_time = ktime_get_real(); /* send the request */ iov[0].iov_base = call->request; @@ -532,12 +533,6 @@ return; } - if (!call->have_reply_time && - rxrpc_kernel_get_reply_time(call->net->socket, - call->rxcall, - &call->reply_time)) - call->have_reply_time = true; - ret = call->type->deliver(call); state = READ_ONCE(call->state); if (ret == 0 && call->unmarshalling_error) diff -u linux-azure-5.4.0/fs/afs/yfsclient.c linux-azure-5.4.0/fs/afs/yfsclient.c --- linux-azure-5.4.0/fs/afs/yfsclient.c +++ linux-azure-5.4.0/fs/afs/yfsclient.c @@ -241,8 +241,7 @@ struct afs_callback *cb = &scb->callback; ktime_t cb_expiry; - cb_expiry = call->reply_time; - cb_expiry = ktime_add(cb_expiry, xdr_to_u64(x->expiration_time) * 100); + cb_expiry = ktime_add(call->issue_time, xdr_to_u64(x->expiration_time) * 100); cb->expires_at = ktime_divns(cb_expiry, NSEC_PER_SEC); scb->have_cb = true; *_bp += xdr_size(x); diff -u linux-azure-5.4.0/fs/aio.c linux-azure-5.4.0/fs/aio.c --- linux-azure-5.4.0/fs/aio.c +++ linux-azure-5.4.0/fs/aio.c @@ -183,8 +183,9 @@ struct file *file; struct wait_queue_head *head; __poll_t events; - bool done; bool cancelled; + bool work_scheduled; + bool work_need_resched; struct wait_queue_entry wait; struct work_struct work; }; @@ -1626,6 +1627,51 @@ iocb_put(iocb); } +/* + * Safely lock the waitqueue which the request is on, synchronizing with the + * case where the ->poll() provider decides to free its waitqueue early. + * + * Returns true on success, meaning that req->head->lock was locked, req->wait + * is on req->head, and an RCU read lock was taken. Returns false if the + * request was already removed from its waitqueue (which might no longer exist). + */ +static bool poll_iocb_lock_wq(struct poll_iocb *req) +{ + wait_queue_head_t *head; + + /* + * While we hold the waitqueue lock and the waitqueue is nonempty, + * wake_up_pollfree() will wait for us. However, taking the waitqueue + * lock in the first place can race with the waitqueue being freed. + * + * We solve this as eventpoll does: by taking advantage of the fact that + * all users of wake_up_pollfree() will RCU-delay the actual free. If + * we enter rcu_read_lock() and see that the pointer to the queue is + * non-NULL, we can then lock it without the memory being freed out from + * under us, then check whether the request is still on the queue. + * + * Keep holding rcu_read_lock() as long as we hold the queue lock, in + * case the caller deletes the entry from the queue, leaving it empty. + * In that case, only RCU prevents the queue memory from being freed. + */ + rcu_read_lock(); + head = smp_load_acquire(&req->head); + if (head) { + spin_lock(&head->lock); + if (!list_empty(&req->wait.entry)) + return true; + spin_unlock(&head->lock); + } + rcu_read_unlock(); + return false; +} + +static void poll_iocb_unlock_wq(struct poll_iocb *req) +{ + spin_unlock(&req->head->lock); + rcu_read_unlock(); +} + static void aio_poll_complete_work(struct work_struct *work) { struct poll_iocb *req = container_of(work, struct poll_iocb, work); @@ -1645,14 +1691,27 @@ * avoid further branches in the fast path. */ spin_lock_irq(&ctx->ctx_lock); - if (!mask && !READ_ONCE(req->cancelled)) { - add_wait_queue(req->head, &req->wait); - spin_unlock_irq(&ctx->ctx_lock); - return; - } + if (poll_iocb_lock_wq(req)) { + if (!mask && !READ_ONCE(req->cancelled)) { + /* + * The request isn't actually ready to be completed yet. + * Reschedule completion if another wakeup came in. + */ + if (req->work_need_resched) { + schedule_work(&req->work); + req->work_need_resched = false; + } else { + req->work_scheduled = false; + } + poll_iocb_unlock_wq(req); + spin_unlock_irq(&ctx->ctx_lock); + return; + } + list_del_init(&req->wait.entry); + poll_iocb_unlock_wq(req); + } /* else, POLLFREE has freed the waitqueue, so we must complete */ list_del_init(&iocb->ki_list); iocb->ki_res.res = mangle_poll(mask); - req->done = true; spin_unlock_irq(&ctx->ctx_lock); iocb_put(iocb); @@ -1664,13 +1723,14 @@ struct aio_kiocb *aiocb = container_of(iocb, struct aio_kiocb, rw); struct poll_iocb *req = &aiocb->poll; - spin_lock(&req->head->lock); - WRITE_ONCE(req->cancelled, true); - if (!list_empty(&req->wait.entry)) { - list_del_init(&req->wait.entry); - schedule_work(&aiocb->poll.work); - } - spin_unlock(&req->head->lock); + if (poll_iocb_lock_wq(req)) { + WRITE_ONCE(req->cancelled, true); + if (!req->work_scheduled) { + schedule_work(&aiocb->poll.work); + req->work_scheduled = true; + } + poll_iocb_unlock_wq(req); + } /* else, the request was force-cancelled by POLLFREE already */ return 0; } @@ -1687,20 +1747,26 @@ if (mask && !(mask & req->events)) return 0; - list_del_init(&req->wait.entry); - - if (mask && spin_trylock_irqsave(&iocb->ki_ctx->ctx_lock, flags)) { + /* + * Complete the request inline if possible. This requires that three + * conditions be met: + * 1. An event mask must have been passed. If a plain wakeup was done + * instead, then mask == 0 and we have to call vfs_poll() to get + * the events, so inline completion isn't possible. + * 2. The completion work must not have already been scheduled. + * 3. ctx_lock must not be busy. We have to use trylock because we + * already hold the waitqueue lock, so this inverts the normal + * locking order. Use irqsave/irqrestore because not all + * filesystems (e.g. fuse) call this function with IRQs disabled, + * yet IRQs have to be disabled before ctx_lock is obtained. + */ + if (mask && !req->work_scheduled && + spin_trylock_irqsave(&iocb->ki_ctx->ctx_lock, flags)) { struct kioctx *ctx = iocb->ki_ctx; - /* - * Try to complete the iocb inline if we can. Use - * irqsave/irqrestore because not all filesystems (e.g. fuse) - * call this function with IRQs disabled and because IRQs - * have to be disabled before ctx_lock is obtained. - */ + list_del_init(&req->wait.entry); list_del(&iocb->ki_list); iocb->ki_res.res = mangle_poll(mask); - req->done = true; if (iocb->ki_eventfd && eventfd_signal_count()) { iocb = NULL; INIT_WORK(&req->work, aio_poll_put_work); @@ -1710,7 +1776,43 @@ if (iocb) iocb_put(iocb); } else { - schedule_work(&req->work); + /* + * Schedule the completion work if needed. If it was already + * scheduled, record that another wakeup came in. + * + * Don't remove the request from the waitqueue here, as it might + * not actually be complete yet (we won't know until vfs_poll() + * is called), and we must not miss any wakeups. POLLFREE is an + * exception to this; see below. + */ + if (req->work_scheduled) { + req->work_need_resched = true; + } else { + schedule_work(&req->work); + req->work_scheduled = true; + } + + /* + * If the waitqueue is being freed early but we can't complete + * the request inline, we have to tear down the request as best + * we can. That means immediately removing the request from its + * waitqueue and preventing all further accesses to the + * waitqueue via the request. We also need to schedule the + * completion work (done above). Also mark the request as + * cancelled, to potentially skip an unneeded call to ->poll(). + */ + if (mask & POLLFREE) { + WRITE_ONCE(req->cancelled, true); + list_del_init(&req->wait.entry); + + /* + * Careful: this *must* be the last step, since as soon + * as req->head is NULL'ed out, the request can be + * completed and freed, since aio_poll_complete_work() + * will no longer need to take the waitqueue lock. + */ + smp_store_release(&req->head, NULL); + } } return 1; } @@ -1718,6 +1820,7 @@ struct aio_poll_table { struct poll_table_struct pt; struct aio_kiocb *iocb; + bool queued; int error; }; @@ -1728,11 +1831,12 @@ struct aio_poll_table *pt = container_of(p, struct aio_poll_table, pt); /* multiple wait queues per file are not supported */ - if (unlikely(pt->iocb->poll.head)) { + if (unlikely(pt->queued)) { pt->error = -EINVAL; return; } + pt->queued = true; pt->error = 0; pt->iocb->poll.head = head; add_wait_queue(head, &pt->iocb->poll.wait); @@ -1757,12 +1861,14 @@ req->events = demangle_poll(iocb->aio_buf) | EPOLLERR | EPOLLHUP; req->head = NULL; - req->done = false; req->cancelled = false; + req->work_scheduled = false; + req->work_need_resched = false; apt.pt._qproc = aio_poll_queue_proc; apt.pt._key = req->events; apt.iocb = aiocb; + apt.queued = false; apt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */ /* initialized the list so that we can do list_empty checks */ @@ -1771,23 +1877,35 @@ mask = vfs_poll(req->file, &apt.pt) & req->events; spin_lock_irq(&ctx->ctx_lock); - if (likely(req->head)) { - spin_lock(&req->head->lock); - if (unlikely(list_empty(&req->wait.entry))) { - if (apt.error) + if (likely(apt.queued)) { + bool on_queue = poll_iocb_lock_wq(req); + + if (!on_queue || req->work_scheduled) { + /* + * aio_poll_wake() already either scheduled the async + * completion work, or completed the request inline. + */ + if (apt.error) /* unsupported case: multiple queues */ cancel = true; apt.error = 0; mask = 0; } if (mask || apt.error) { + /* Steal to complete synchronously. */ list_del_init(&req->wait.entry); } else if (cancel) { + /* Cancel if possible (may be too late though). */ WRITE_ONCE(req->cancelled, true); - } else if (!req->done) { /* actually waiting for an event */ + } else if (on_queue) { + /* + * Actually waiting for an event, so add the request to + * active_reqs so that it can be cancelled if needed. + */ list_add_tail(&aiocb->ki_list, &ctx->active_reqs); aiocb->ki_cancel = aio_poll_cancel; } - spin_unlock(&req->head->lock); + if (on_queue) + poll_iocb_unlock_wq(req); } if (mask) { /* no async, we'd stolen it */ aiocb->ki_res.res = mangle_poll(mask); diff -u linux-azure-5.4.0/fs/attr.c linux-azure-5.4.0/fs/attr.c --- linux-azure-5.4.0/fs/attr.c +++ linux-azure-5.4.0/fs/attr.c @@ -134,6 +134,8 @@ */ int inode_newsize_ok(const struct inode *inode, loff_t offset) { + if (offset < 0) + return -EINVAL; if (inode->i_size < offset) { unsigned long limit; diff -u linux-azure-5.4.0/fs/aufs/cpup.c linux-azure-5.4.0/fs/aufs/cpup.c --- linux-azure-5.4.0/fs/aufs/cpup.c +++ linux-azure-5.4.0/fs/aufs/cpup.c @@ -753,11 +753,13 @@ { int err; struct dentry *dentry, *h_dentry, *h_parent, *parent; + struct path h_ppath; struct inode *h_dir; aufs_bindex_t bdst; dentry = cpg->dentry; bdst = cpg->bdst; + h_ppath.mnt = au_sbr_mnt(dentry->d_sb, bdst); h_dentry = au_h_dptr(dentry, bdst); if (!au_ftest_cpup(cpg->flags, OVERWRITE)) { dget(h_dentry); @@ -769,9 +771,9 @@ } else { err = 0; parent = dget_parent(dentry); - h_parent = au_h_dptr(parent, bdst); + h_ppath.dentry = au_h_dptr(parent, bdst); dput(parent); - h_path->dentry = vfsub_lkup_one(&dentry->d_name, h_parent); + h_path->dentry = vfsub_lkup_one(&dentry->d_name, &h_ppath); if (IS_ERR(h_path->dentry)) err = PTR_ERR(h_path->dentry); } diff -u linux-azure-5.4.0/fs/aufs/dentry.c linux-azure-5.4.0/fs/aufs/dentry.c --- linux-azure-5.4.0/fs/aufs/dentry.c +++ linux-azure-5.4.0/fs/aufs/dentry.c @@ -35,6 +35,7 @@ struct dentry *h_dentry; struct inode *h_inode; struct au_branch *br; + struct path h_path; int wh_found, opq; unsigned char wh_able; const unsigned char allow_neg = !!au_ftest_lkup(args->flags, ALLOW_NEG); @@ -43,9 +44,11 @@ wh_found = 0; br = au_sbr(dentry->d_sb, bindex); + h_path.dentry = h_parent; + h_path.mnt = au_br_mnt(br); wh_able = !!au_br_whable(br->br_perm); if (wh_able) - wh_found = au_wh_test(h_parent, &args->whname, ignore_perm); + wh_found = au_wh_test(&h_path, &args->whname, ignore_perm); h_dentry = ERR_PTR(wh_found); if (!wh_found) goto real_lookup; @@ -60,9 +63,9 @@ real_lookup: if (!ignore_perm) - h_dentry = vfsub_lkup_one(args->name, h_parent); + h_dentry = vfsub_lkup_one(args->name, &h_path); else - h_dentry = au_sio_lkup_one(args->name, h_parent); + h_dentry = au_sio_lkup_one(args->name, &h_path); if (IS_ERR(h_dentry)) { if (PTR_ERR(h_dentry) == -ENAMETOOLONG && !allow_neg) @@ -96,8 +99,9 @@ || (d_really_is_positive(dentry) && !d_is_dir(dentry))) goto out; /* success */ + h_path.dentry = h_dentry; inode_lock_shared_nested(h_inode, AuLsc_I_CHILD); - opq = au_diropq_test(h_dentry); + opq = au_diropq_test(&h_path); inode_unlock_shared(h_inode); if (opq > 0) au_set_dbdiropq(dentry, bindex); @@ -242,18 +246,18 @@ return err; } -struct dentry *au_sio_lkup_one(struct qstr *name, struct dentry *parent) +struct dentry *au_sio_lkup_one(struct qstr *name, struct path *ppath) { struct dentry *dentry; int wkq_err; - if (!au_test_h_perm_sio(d_inode(parent), MAY_EXEC)) - dentry = vfsub_lkup_one(name, parent); + if (!au_test_h_perm_sio(d_inode(ppath->dentry), MAY_EXEC)) + dentry = vfsub_lkup_one(name, ppath); else { struct vfsub_lkup_one_args args = { .errp = &dentry, .name = name, - .parent = parent + .ppath = ppath }; wkq_err = au_wkq_wait(vfsub_call_lkup_one, &args); @@ -270,16 +274,18 @@ int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex, int wh) { int err; - struct dentry *parent, *h_parent, *h_dentry; + struct dentry *parent, *h_dentry; struct au_branch *br; + struct path h_ppath; parent = dget_parent(dentry); - h_parent = au_h_dptr(parent, bindex); br = au_sbr(dentry->d_sb, bindex); + h_ppath.dentry = au_h_dptr(parent, bindex); + h_ppath.mnt = au_br_mnt(br); if (wh) - h_dentry = au_whtmp_lkup(h_parent, br, &dentry->d_name); + h_dentry = au_whtmp_lkup(h_ppath.dentry, br, &dentry->d_name); else - h_dentry = au_sio_lkup_one(&dentry->d_name, h_parent); + h_dentry = au_sio_lkup_one(&dentry->d_name, &h_ppath); err = PTR_ERR(h_dentry); if (IS_ERR(h_dentry)) goto out; @@ -354,6 +360,7 @@ struct inode *h_inode; struct dentry *h_d; struct super_block *h_sb; + struct path h_ppath; err = 0; memset(&ia, -1, sizeof(ia)); @@ -368,7 +375,9 @@ goto out; /* main purpose is namei.c:cached_lookup() and d_revalidate */ - h_d = vfsub_lkup_one(&h_dentry->d_name, h_parent); + h_ppath.dentry = h_parent; + h_ppath.mnt = au_br_mnt(br); + h_d = vfsub_lkup_one(&h_dentry->d_name, &h_ppath); err = PTR_ERR(h_d); if (IS_ERR(h_d)) goto out; diff -u linux-azure-5.4.0/fs/aufs/dentry.h linux-azure-5.4.0/fs/aufs/dentry.h --- linux-azure-5.4.0/fs/aufs/dentry.h +++ linux-azure-5.4.0/fs/aufs/dentry.h @@ -73,7 +73,7 @@ /* dentry.c */ extern const struct dentry_operations aufs_dop, aufs_dop_noreval; struct au_branch; -struct dentry *au_sio_lkup_one(struct qstr *name, struct dentry *parent); +struct dentry *au_sio_lkup_one(struct qstr *name, struct path *ppath); int au_h_verify(struct dentry *h_dentry, unsigned int udba, struct inode *h_dir, struct dentry *h_parent, struct au_branch *br); diff -u linux-azure-5.4.0/fs/aufs/dirren.c linux-azure-5.4.0/fs/aufs/dirren.c --- linux-azure-5.4.0/fs/aufs/dirren.c +++ linux-azure-5.4.0/fs/aufs/dirren.c @@ -263,7 +263,8 @@ dir = d_inode(path->dentry); inode_lock_nested(dir, AuLsc_I_CHILD); } - hinopath.dentry = vfsub_lkup_one(&hinoname, path->dentry); + hinopath.mnt = path->mnt; + hinopath.dentry = vfsub_lkup_one(&hinoname, (struct path *)path); err = PTR_ERR(hinopath.dentry); if (IS_ERR(hinopath.dentry)) goto out_unlock; @@ -297,7 +298,6 @@ } flags = O_WRONLY; } - hinopath.mnt = path->mnt; hinofile = vfsub_dentry_open(&hinopath, flags); if (suspend) au_hn_inode_unlock(hdir); @@ -619,7 +619,7 @@ AuDebugOn(elm && memcmp(elm, page_address(ZERO_PAGE(0)), sizeof(*elm))); - infopath.dentry = vfsub_lookup_one_len(w->whname, w->h_ppath.dentry, + infopath.dentry = vfsub_lookup_one_len(w->whname, &w->h_ppath, w->whnamelen); AuTraceErrPtr(infopath.dentry); if (IS_ERR(infopath.dentry)) { @@ -1003,8 +1003,7 @@ unlocked = 0; h_dir = d_inode(h_ppath->dentry); inode_lock_shared_nested(h_dir, AuLsc_I_PARENT); - infopath.dentry = vfsub_lookup_one_len(whname, h_ppath->dentry, - whnamelen); + infopath.dentry = vfsub_lookup_one_len(whname, h_ppath, whnamelen); if (IS_ERR(infopath.dentry)) { drinfo = (void *)infopath.dentry; goto out; diff -u linux-azure-5.4.0/fs/aufs/export.c linux-azure-5.4.0/fs/aufs/export.c --- linux-azure-5.4.0/fs/aufs/export.c +++ linux-azure-5.4.0/fs/aufs/export.c @@ -407,7 +407,7 @@ /* do not call vfsub_lkup_one() */ dir = d_inode(parent); - dentry = vfsub_lookup_one_len_unlocked(arg.name, parent, arg.namelen); + dentry = vfsub_lookup_one_len_unlocked(arg.name, path, arg.namelen); AuTraceErrPtr(dentry); if (IS_ERR(dentry)) goto out_name; diff -u linux-azure-5.4.0/fs/aufs/i_op_del.c linux-azure-5.4.0/fs/aufs/i_op_del.c --- linux-azure-5.4.0/fs/aufs/i_op_del.c +++ linux-azure-5.4.0/fs/aufs/i_op_del.c @@ -94,6 +94,9 @@ umode_t h_mode; struct dentry *h_dentry, *h_latest; struct inode *h_inode; + struct path h_ppath; + struct super_block *sb; + struct au_branch *br; h_dentry = au_h_dptr(dentry, bindex); if (d_really_is_positive(dentry)) { @@ -131,12 +134,16 @@ * let's try heavy test. */ err = -EACCES; - if (unlikely(!au_opt_test(au_mntflags(dentry->d_sb), DIRPERM1) + sb = dentry->d_sb; + br = au_sbr(sb, bindex); + if (unlikely(!au_opt_test(au_mntflags(sb), DIRPERM1) && au_test_h_perm(d_inode(h_parent), MAY_EXEC | MAY_WRITE))) goto out; - h_latest = au_sio_lkup_one(&dentry->d_name, h_parent); + h_ppath.dentry = h_parent; + h_ppath.mnt = au_br_mnt(br); + h_latest = au_sio_lkup_one(&dentry->d_name, &h_ppath); err = -EIO; if (IS_ERR(h_latest)) goto out; diff -u linux-azure-5.4.0/fs/aufs/i_op_ren.c linux-azure-5.4.0/fs/aufs/i_op_ren.c --- linux-azure-5.4.0/fs/aufs/i_op_ren.c +++ linux-azure-5.4.0/fs/aufs/i_op_ren.c @@ -150,9 +150,12 @@ { int rerr; struct inode *delegated; + struct path h_ppath = { + .dentry = a->src_h_parent, + .mnt = a->h_path.mnt + }; - a->h_path.dentry = vfsub_lkup_one(&a->src_dentry->d_name, - a->src_h_parent); + a->h_path.dentry = vfsub_lkup_one(&a->src_dentry->d_name, &h_ppath); rerr = PTR_ERR(a->h_path.dentry); if (IS_ERR(a->h_path.dentry)) { RevertFailure("lkup one %pd", a->src_dentry); @@ -179,9 +182,12 @@ { int rerr; struct inode *delegated; + struct path h_ppath = { + .dentry = a->dst_h_parent, + .mnt = a->h_path.mnt + }; - a->h_path.dentry = vfsub_lkup_one(&a->dst_dentry->d_name, - a->dst_h_parent); + a->h_path.dentry = vfsub_lkup_one(&a->dst_dentry->d_name, &h_ppath); rerr = PTR_ERR(a->h_path.dentry); if (IS_ERR(a->h_path.dentry)) { RevertFailure("lkup one %pd", a->dst_dentry); diff -u linux-azure-5.4.0/fs/aufs/plink.c linux-azure-5.4.0/fs/aufs/plink.c --- linux-azure-5.4.0/fs/aufs/plink.c +++ linux-azure-5.4.0/fs/aufs/plink.c @@ -206,35 +206,35 @@ struct au_do_plink_lkup_args { struct dentry **errp; struct qstr *tgtname; - struct dentry *h_parent; - struct au_branch *br; + struct path *h_ppath; }; static struct dentry *au_do_plink_lkup(struct qstr *tgtname, - struct dentry *h_parent, - struct au_branch *br) + struct path *h_ppath) { struct dentry *h_dentry; struct inode *h_inode; - h_inode = d_inode(h_parent); + h_inode = d_inode(h_ppath->dentry); inode_lock_shared_nested(h_inode, AuLsc_I_CHILD2); - h_dentry = vfsub_lkup_one(tgtname, h_parent); + h_dentry = vfsub_lkup_one(tgtname, h_ppath); inode_unlock_shared(h_inode); + return h_dentry; } static void au_call_do_plink_lkup(void *args) { struct au_do_plink_lkup_args *a = args; - *a->errp = au_do_plink_lkup(a->tgtname, a->h_parent, a->br); + *a->errp = au_do_plink_lkup(a->tgtname, a->h_ppath); } /* lookup the plink-ed @inode under the branch at @bindex */ struct dentry *au_plink_lkup(struct inode *inode, aufs_bindex_t bindex) { - struct dentry *h_dentry, *h_parent; + struct dentry *h_dentry; struct au_branch *br; + struct path h_ppath; int wkq_err; char a[PLINK_NAME_LEN]; struct qstr tgtname = QSTR_INIT(a, 0); @@ -242,40 +242,39 @@ AuDebugOn(au_plink_maint(inode->i_sb, AuLock_NOPLM)); br = au_sbr(inode->i_sb, bindex); - h_parent = br->br_wbr->wbr_plink; + h_ppath.dentry = br->br_wbr->wbr_plink; + h_ppath.mnt = au_br_mnt(br); tgtname.len = plink_name(a, sizeof(a), inode, bindex); if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) { struct au_do_plink_lkup_args args = { .errp = &h_dentry, .tgtname = &tgtname, - .h_parent = h_parent, - .br = br + .h_ppath = &h_ppath }; wkq_err = au_wkq_wait(au_call_do_plink_lkup, &args); if (unlikely(wkq_err)) h_dentry = ERR_PTR(wkq_err); } else - h_dentry = au_do_plink_lkup(&tgtname, h_parent, br); + h_dentry = au_do_plink_lkup(&tgtname, &h_ppath); return h_dentry; } /* create a pseudo-link */ -static int do_whplink(struct qstr *tgt, struct dentry *h_parent, - struct dentry *h_dentry, struct au_branch *br) +static int do_whplink(struct qstr *tgt, struct path *h_ppath, + struct dentry *h_dentry) { int err; - struct path h_path = { - .mnt = au_br_mnt(br) - }; + struct path h_path; struct inode *h_dir, *delegated; - h_dir = d_inode(h_parent); + h_dir = d_inode(h_ppath->dentry); inode_lock_nested(h_dir, AuLsc_I_CHILD2); + h_path.mnt = h_ppath->mnt; again: - h_path.dentry = vfsub_lkup_one(tgt, h_parent); + h_path.dentry = vfsub_lkup_one(tgt, h_ppath); err = PTR_ERR(h_path.dentry); if (IS_ERR(h_path.dentry)) goto out; @@ -316,28 +315,30 @@ struct do_whplink_args { int *errp; struct qstr *tgt; - struct dentry *h_parent; + struct path *h_ppath; struct dentry *h_dentry; - struct au_branch *br; }; static void call_do_whplink(void *args) { struct do_whplink_args *a = args; - *a->errp = do_whplink(a->tgt, a->h_parent, a->h_dentry, a->br); + *a->errp = do_whplink(a->tgt, a->h_ppath, a->h_dentry); } static int whplink(struct dentry *h_dentry, struct inode *inode, - aufs_bindex_t bindex, struct au_branch *br) + aufs_bindex_t bindex) { int err, wkq_err; + struct au_branch *br; struct au_wbr *wbr; - struct dentry *h_parent; + struct path h_ppath; char a[PLINK_NAME_LEN]; struct qstr tgtname = QSTR_INIT(a, 0); - wbr = au_sbr(inode->i_sb, bindex)->br_wbr; - h_parent = wbr->wbr_plink; + br = au_sbr(inode->i_sb, bindex); + wbr = br->br_wbr; + h_ppath.dentry = wbr->wbr_plink; + h_ppath.mnt = au_br_mnt(br); tgtname.len = plink_name(a, sizeof(a), inode, bindex); /* always superio. */ @@ -345,15 +346,14 @@ struct do_whplink_args args = { .errp = &err, .tgt = &tgtname, - .h_parent = h_parent, - .h_dentry = h_dentry, - .br = br + .h_ppath = &h_ppath, + .h_dentry = h_dentry }; wkq_err = au_wkq_wait(call_do_whplink, &args); if (unlikely(wkq_err)) err = wkq_err; } else - err = do_whplink(&tgtname, h_parent, h_dentry, br); + err = do_whplink(&tgtname, &h_ppath, h_dentry); return err; } @@ -403,7 +403,7 @@ if (cnt > AUFS_PLINK_WARN) AuWarn1(msg ", %d\n", cnt); #undef msg - err = whplink(h_dentry, inode, bindex, au_sbr(sb, bindex)); + err = whplink(h_dentry, inode, bindex); if (unlikely(err)) { pr_warn("err %d, damaged pseudo link.\n", err); au_hbl_del(&icntnr->plink, hbl); diff -u linux-azure-5.4.0/fs/aufs/vfsub.c linux-azure-5.4.0/fs/aufs/vfsub.c --- linux-azure-5.4.0/fs/aufs/vfsub.c +++ linux-azure-5.4.0/fs/aufs/vfsub.c @@ -58,6 +58,11 @@ struct kstat st; struct super_block *h_sb; + /* + * Always needs h_path->mnt for LSM or FUSE branch. + */ + AuDebugOn(!h_path->mnt); + /* for remote fs, leave work for its getattr or d_revalidate */ /* for bad i_attr fs, handle them in aufs_getattr() */ /* still some fs may acquire i_mutex. we need to skip them */ @@ -166,38 +171,38 @@ } struct dentry *vfsub_lookup_one_len_unlocked(const char *name, - struct dentry *parent, int len) + struct path *ppath, int len) { - struct path path = { - .mnt = NULL - }; + struct path path; - path.dentry = lookup_one_len_unlocked(name, parent, len); + path.dentry = lookup_one_len_unlocked(name, ppath->dentry, len); if (IS_ERR(path.dentry)) goto out; - if (d_is_positive(path.dentry)) + if (d_is_positive(path.dentry)) { + path.mnt = ppath->mnt; vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/ + } out: AuTraceErrPtr(path.dentry); return path.dentry; } -struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent, +struct dentry *vfsub_lookup_one_len(const char *name, struct path *ppath, int len) { - struct path path = { - .mnt = NULL - }; + struct path path; /* VFS checks it too, but by WARN_ON_ONCE() */ - IMustLock(d_inode(parent)); + IMustLock(d_inode(ppath->dentry)); - path.dentry = lookup_one_len(name, parent, len); + path.dentry = lookup_one_len(name, ppath->dentry, len); if (IS_ERR(path.dentry)) goto out; - if (d_is_positive(path.dentry)) + if (d_is_positive(path.dentry)) { + path.mnt = ppath->mnt; vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/ + } out: AuTraceErrPtr(path.dentry); @@ -207,7 +212,7 @@ void vfsub_call_lkup_one(void *args) { struct vfsub_lkup_one_args *a = args; - *a->errp = vfsub_lkup_one(a->name, a->parent); + *a->errp = vfsub_lkup_one(a->name, a->ppath); } /* ---------------------------------------------------------------------- */ diff -u linux-azure-5.4.0/fs/aufs/vfsub.h linux-azure-5.4.0/fs/aufs/vfsub.h --- linux-azure-5.4.0/fs/aufs/vfsub.h +++ linux-azure-5.4.0/fs/aufs/vfsub.h @@ -103,20 +103,20 @@ int vfsub_kern_path(const char *name, unsigned int flags, struct path *path); struct dentry *vfsub_lookup_one_len_unlocked(const char *name, - struct dentry *parent, int len); -struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent, + struct path *ppath, int len); +struct dentry *vfsub_lookup_one_len(const char *name, struct path *ppath, int len); struct vfsub_lkup_one_args { struct dentry **errp; struct qstr *name; - struct dentry *parent; + struct path *ppath; }; static inline struct dentry *vfsub_lkup_one(struct qstr *name, - struct dentry *parent) + struct path *ppath) { - return vfsub_lookup_one_len(name->name, parent, name->len); + return vfsub_lookup_one_len(name->name, ppath, name->len); } void vfsub_call_lkup_one(void *args); diff -u linux-azure-5.4.0/fs/aufs/whout.c linux-azure-5.4.0/fs/aufs/whout.c --- linux-azure-5.4.0/fs/aufs/whout.c +++ linux-azure-5.4.0/fs/aufs/whout.c @@ -61,18 +61,18 @@ /* ---------------------------------------------------------------------- */ /* - * test if the @wh_name exists under @h_parent. + * test if the @wh_name exists under @h_ppath. * @try_sio specifies the necessary of super-io. */ -int au_wh_test(struct dentry *h_parent, struct qstr *wh_name, int try_sio) +int au_wh_test(struct path *h_ppath, struct qstr *wh_name, int try_sio) { int err; struct dentry *wh_dentry; if (!try_sio) - wh_dentry = vfsub_lkup_one(wh_name, h_parent); + wh_dentry = vfsub_lkup_one(wh_name, h_ppath); else - wh_dentry = au_sio_lkup_one(wh_name, h_parent); + wh_dentry = au_sio_lkup_one(wh_name, h_ppath); err = PTR_ERR(wh_dentry); if (IS_ERR(wh_dentry)) { if (err == -ENAMETOOLONG) @@ -99,15 +99,15 @@ } /* - * test if the @h_dentry sets opaque or not. + * test if the @h_path->dentry sets opaque or not. */ -int au_diropq_test(struct dentry *h_dentry) +int au_diropq_test(struct path *h_path) { int err; struct inode *h_dir; - h_dir = d_inode(h_dentry); - err = au_wh_test(h_dentry, &diropq_name, + h_dir = d_inode(h_path->dentry); + err = au_wh_test(h_path, &diropq_name, au_test_h_perm_sio(h_dir, MAY_EXEC)); return err; } @@ -125,6 +125,7 @@ /* strict atomic_t is unnecessary here */ static unsigned short cnt; struct qstr qs; + struct path h_ppath; BUILD_BUG_ON(sizeof(cnt) * 2 > AUFS_WH_TMP_LEN); @@ -148,10 +149,12 @@ *p++ = '.'; AuDebugOn(name + qs.len + 1 - p <= AUFS_WH_TMP_LEN); + h_ppath.dentry = h_parent; + h_ppath.mnt = au_br_mnt(br); qs.name = name; for (i = 0; i < 3; i++) { sprintf(p, "%.*x", AUFS_WH_TMP_LEN, cnt++); - dentry = au_sio_lkup_one(&qs, h_parent); + dentry = au_sio_lkup_one(&qs, &h_ppath); if (IS_ERR(dentry) || d_is_negative(dentry)) goto out_name; dput(dentry); @@ -245,21 +248,20 @@ return err; } -static int unlink_wh_name(struct dentry *h_parent, struct qstr *wh, - struct au_branch *br) +static int unlink_wh_name(struct path *h_ppath, struct qstr *wh) { int err; - struct path h_path = { - .mnt = au_br_mnt(br) - }; + struct path h_path; err = 0; - h_path.dentry = vfsub_lkup_one(wh, h_parent); + h_path.dentry = vfsub_lkup_one(wh, h_ppath); if (IS_ERR(h_path.dentry)) err = PTR_ERR(h_path.dentry); else { - if (d_is_reg(h_path.dentry)) - err = do_unlink_wh(d_inode(h_parent), &h_path); + if (d_is_reg(h_path.dentry)) { + h_path.mnt = h_ppath->mnt; + err = do_unlink_wh(d_inode(h_ppath->dentry), &h_path); + } dput(h_path.dentry); } @@ -699,15 +701,17 @@ static struct dentry *do_diropq(struct dentry *dentry, aufs_bindex_t bindex, unsigned int flags) { - struct dentry *opq_dentry, *h_dentry; + struct dentry *opq_dentry; struct super_block *sb; struct au_branch *br; + struct path h_path; int err; sb = dentry->d_sb; br = au_sbr(sb, bindex); - h_dentry = au_h_dptr(dentry, bindex); - opq_dentry = vfsub_lkup_one(&diropq_name, h_dentry); + h_path.dentry = au_h_dptr(dentry, bindex); + h_path.mnt = au_br_mnt(br); + opq_dentry = vfsub_lkup_one(&diropq_name, &h_path); if (IS_ERR(opq_dentry)) goto out; @@ -718,11 +722,8 @@ goto out; /* success */ } } else { - struct path tmp = { - .dentry = opq_dentry, - .mnt = au_br_mnt(br) - }; - err = do_unlink_wh(au_h_iptr(d_inode(dentry), bindex), &tmp); + h_path.dentry = opq_dentry; + err = do_unlink_wh(au_h_iptr(d_inode(dentry), bindex), &h_path); if (!err) au_set_dbdiropq(dentry, -1); } @@ -785,11 +786,14 @@ int err; struct qstr wh_name; struct dentry *wh_dentry; + struct path h_path; err = au_wh_name_alloc(&wh_name, base_name); wh_dentry = ERR_PTR(err); if (!err) { - wh_dentry = vfsub_lkup_one(&wh_name, h_parent); + h_path.dentry = h_parent; + h_path.mnt = au_br_mnt(br); + wh_dentry = vfsub_lkup_one(&wh_name, &h_path); au_kfree_try_rcu(wh_name.name); } return wh_dentry; @@ -824,8 +828,8 @@ /* ---------------------------------------------------------------------- */ /* Delete all whiteouts in this directory on branch bindex. */ -static int del_wh_children(struct dentry *h_dentry, struct au_nhash *whlist, - aufs_bindex_t bindex, struct au_branch *br) +static int del_wh_children(struct path *h_path, struct au_nhash *whlist, + aufs_bindex_t bindex) { int err; unsigned long ul, n; @@ -855,7 +859,7 @@ if (str->len + AUFS_WH_PFX_LEN <= PATH_MAX) { memcpy(p, str->name, str->len); wh_name.len = AUFS_WH_PFX_LEN + str->len; - err = unlink_wh_name(h_dentry, &wh_name, br); + err = unlink_wh_name(h_path, &wh_name); if (!err) continue; break; @@ -874,16 +878,15 @@ struct del_wh_children_args { int *errp; - struct dentry *h_dentry; + struct path *h_path; struct au_nhash *whlist; aufs_bindex_t bindex; - struct au_branch *br; }; static void call_del_wh_children(void *args) { struct del_wh_children_args *a = args; - *a->errp = del_wh_children(a->h_dentry, a->whlist, a->bindex, a->br); + *a->errp = del_wh_children(a->h_path, a->whlist, a->bindex); } /* ---------------------------------------------------------------------- */ @@ -935,7 +938,7 @@ { int err; unsigned int h_nlink; - struct path h_tmp; + struct path wh_path; struct inode *wh_inode, *h_dir; struct au_branch *br; @@ -943,6 +946,8 @@ IMustLock(h_dir); br = au_sbr(dir->i_sb, bindex); + wh_path.dentry = wh_dentry; + wh_path.mnt = au_br_mnt(br); wh_inode = d_inode(wh_dentry); inode_lock_nested(wh_inode, AuLsc_I_CHILD); @@ -951,15 +956,14 @@ * it means this whlist may have an obsoleted entry. */ if (!au_test_h_perm_sio(wh_inode, MAY_EXEC | MAY_WRITE)) - err = del_wh_children(wh_dentry, whlist, bindex, br); + err = del_wh_children(&wh_path, whlist, bindex); else { int wkq_err; struct del_wh_children_args args = { .errp = &err, - .h_dentry = wh_dentry, + .h_path = &wh_path, .whlist = whlist, - .bindex = bindex, - .br = br + .bindex = bindex }; wkq_err = au_wkq_wait(call_del_wh_children, &args); @@ -969,10 +973,8 @@ inode_unlock(wh_inode); if (!err) { - h_tmp.dentry = wh_dentry; - h_tmp.mnt = au_br_mnt(br); h_nlink = h_dir->i_nlink; - err = vfsub_rmdir(h_dir, &h_tmp); + err = vfsub_rmdir(h_dir, &wh_path); /* some fs doesn't change the parent nlink in some cases */ h_nlink -= h_dir->i_nlink; } diff -u linux-azure-5.4.0/fs/aufs/whout.h linux-azure-5.4.0/fs/aufs/whout.h --- linux-azure-5.4.0/fs/aufs/whout.h +++ linux-azure-5.4.0/fs/aufs/whout.h @@ -29,8 +29,8 @@ /* whout.c */ int au_wh_name_alloc(struct qstr *wh, const struct qstr *name); -int au_wh_test(struct dentry *h_parent, struct qstr *wh_name, int try_sio); -int au_diropq_test(struct dentry *h_dentry); +int au_wh_test(struct path *h_ppath, struct qstr *wh_name, int try_sio); +int au_diropq_test(struct path *h_path); struct au_branch; struct dentry *au_whtmp_lkup(struct dentry *h_parent, struct au_branch *br, struct qstr *prefix); diff -u linux-azure-5.4.0/fs/aufs/xino.c linux-azure-5.4.0/fs/aufs/xino.c --- linux-azure-5.4.0/fs/aufs/xino.c +++ linux-azure-5.4.0/fs/aufs/xino.c @@ -235,22 +235,23 @@ struct file *copy_src) { struct file *file; - struct dentry *dentry, *parent; + struct dentry *dentry; struct inode *dir, *delegated; struct qstr *name; - struct path path; + struct path ppath, path; int err, do_unlock; struct au_xino_lock_dir ldir; do_unlock = 1; au_xino_lock_dir(sb, base, &ldir); dentry = base->dentry; - parent = dentry->d_parent; /* dir inode is locked */ - dir = d_inode(parent); + ppath.dentry = dentry->d_parent; /* dir inode is locked */ + ppath.mnt = base->mnt; + dir = d_inode(ppath.dentry); IMustLock(dir); name = &dentry->d_name; - path.dentry = vfsub_lookup_one_len(name->name, parent, name->len); + path.dentry = vfsub_lookup_one_len(name->name, &ppath, name->len); if (IS_ERR(path.dentry)) { file = (void *)path.dentry; pr_err("%pd lookup err %ld\n", dentry, PTR_ERR(path.dentry)); diff -u linux-azure-5.4.0/fs/binfmt_elf.c linux-azure-5.4.0/fs/binfmt_elf.c --- linux-azure-5.4.0/fs/binfmt_elf.c +++ linux-azure-5.4.0/fs/binfmt_elf.c @@ -583,7 +583,7 @@ vaddr = eppnt->p_vaddr; if (interp_elf_ex->e_type == ET_EXEC || load_addr_set) - elf_type |= MAP_FIXED_NOREPLACE; + elf_type |= MAP_FIXED; else if (no_base && interp_elf_ex->e_type == ET_DYN) load_addr = -vaddr; diff -u linux-azure-5.4.0/fs/binfmt_flat.c linux-azure-5.4.0/fs/binfmt_flat.c --- linux-azure-5.4.0/fs/binfmt_flat.c +++ linux-azure-5.4.0/fs/binfmt_flat.c @@ -422,6 +422,30 @@ /****************************************************************************/ +static inline u32 __user *skip_got_header(u32 __user *rp) +{ + if (IS_ENABLED(CONFIG_RISCV)) { + /* + * RISC-V has a 16 byte GOT PLT header for elf64-riscv + * and 8 byte GOT PLT header for elf32-riscv. + * Skip the whole GOT PLT header, since it is reserved + * for the dynamic linker (ld.so). + */ + u32 rp_val0, rp_val1; + + if (get_user(rp_val0, rp)) + return rp; + if (get_user(rp_val1, rp + 1)) + return rp; + + if (rp_val0 == 0xffffffff && rp_val1 == 0xffffffff) + rp += 4; + else if (rp_val0 == 0xffffffff) + rp += 2; + } + return rp; +} + static int load_flat_file(struct linux_binprm *bprm, struct lib_info *libinfo, int id, unsigned long *extra_stack) { @@ -769,7 +793,8 @@ * image. */ if (flags & FLAT_FLAG_GOTPIC) { - for (rp = (u32 __user *)datapos; ; rp++) { + rp = skip_got_header((u32 __user *) datapos); + for (; ; rp++) { u32 addr, rp_val; if (get_user(rp_val, rp)) return -EFAULT; diff -u linux-azure-5.4.0/fs/btrfs/async-thread.c linux-azure-5.4.0/fs/btrfs/async-thread.c --- linux-azure-5.4.0/fs/btrfs/async-thread.c +++ linux-azure-5.4.0/fs/btrfs/async-thread.c @@ -237,6 +237,13 @@ ordered_list); if (!test_bit(WORK_DONE_BIT, &work->flags)) break; + /* + * Orders all subsequent loads after reading WORK_DONE_BIT, + * paired with the smp_mb__before_atomic in btrfs_work_helper + * this guarantees that the ordered function will see all + * updates from ordinary work function. + */ + smp_rmb(); /* * we are going to call the ordered done function, but @@ -325,6 +332,13 @@ thresh_exec_hook(wq); work->func(work); if (need_order) { + /* + * Ensures all memory accesses done in the work function are + * ordered before setting the WORK_DONE_BIT. Ensuring the thread + * which is going to executed the ordered work sees them. + * Pairs with the smp_rmb in run_ordered_work. + */ + smp_mb__before_atomic(); set_bit(WORK_DONE_BIT, &work->flags); run_ordered_work(wq, work); } diff -u linux-azure-5.4.0/fs/btrfs/backref.c linux-azure-5.4.0/fs/btrfs/backref.c --- linux-azure-5.4.0/fs/btrfs/backref.c +++ linux-azure-5.4.0/fs/btrfs/backref.c @@ -136,6 +136,7 @@ u64 root_objectid; u64 inum; int share_count; + bool have_delayed_delete_refs; }; static inline int extent_is_shared(struct share_check *sc) @@ -286,8 +287,10 @@ struct prelim_ref *ref, *next_ref; rbtree_postorder_for_each_entry_safe(ref, next_ref, - &preftree->root.rb_root, rbnode) + &preftree->root.rb_root, rbnode) { + free_inode_elem_list(ref->inode_list); free_pref(ref); + } preftree->root = RB_ROOT_CACHED; preftree->count = 0; @@ -641,6 +644,18 @@ return (struct extent_inode_elem *)(uintptr_t)node->aux; } +static void free_leaf_list(struct ulist *ulist) +{ + struct ulist_node *node; + struct ulist_iterator uiter; + + ULIST_ITER_INIT(&uiter); + while ((node = ulist_next(ulist, &uiter))) + free_inode_elem_list(unode_aux_to_inode_list(node)); + + ulist_free(ulist); +} + /* * We maintain three separate rbtrees: one for direct refs, one for * indirect refs which have a key, and one for indirect refs which do not @@ -755,7 +770,11 @@ cond_resched(); } out: - ulist_free(parents); + /* + * We may have inode lists attached to refs in the parents ulist, so we + * must free them before freeing the ulist and its refs. + */ + free_leaf_list(parents); return ret; } @@ -812,16 +831,11 @@ struct preftrees *preftrees, struct share_check *sc) { struct btrfs_delayed_ref_node *node; - struct btrfs_delayed_extent_op *extent_op = head->extent_op; struct btrfs_key key; - struct btrfs_key tmp_op_key; struct rb_node *n; int count; int ret = 0; - if (extent_op && extent_op->update_key) - btrfs_disk_key_to_cpu(&tmp_op_key, &extent_op->key); - spin_lock(&head->lock); for (n = rb_first_cached(&head->ref_tree); n; n = rb_next(n)) { node = rb_entry(n, struct btrfs_delayed_ref_node, @@ -847,10 +861,16 @@ case BTRFS_TREE_BLOCK_REF_KEY: { /* NORMAL INDIRECT METADATA backref */ struct btrfs_delayed_tree_ref *ref; + struct btrfs_key *key_ptr = NULL; + + if (head->extent_op && head->extent_op->update_key) { + btrfs_disk_key_to_cpu(&key, &head->extent_op->key); + key_ptr = &key; + } ref = btrfs_delayed_node_to_tree_ref(node); ret = add_indirect_ref(fs_info, preftrees, ref->root, - &tmp_op_key, ref->level + 1, + key_ptr, ref->level + 1, node->bytenr, count, sc, GFP_ATOMIC); break; @@ -876,13 +896,22 @@ key.offset = ref->offset; /* - * Found a inum that doesn't match our known inum, we - * know it's shared. + * If we have a share check context and a reference for + * another inode, we can't exit immediately. This is + * because even if this is a BTRFS_ADD_DELAYED_REF + * reference we may find next a BTRFS_DROP_DELAYED_REF + * which cancels out this ADD reference. + * + * If this is a DROP reference and there was no previous + * ADD reference, then we need to signal that when we + * process references from the extent tree (through + * add_inline_refs() and add_keyed_refs()), we should + * not exit early if we find a reference for another + * inode, because one of the delayed DROP references + * may cancel that reference in the extent tree. */ - if (sc && sc->inum && ref->objectid != sc->inum) { - ret = BACKREF_FOUND_SHARED; - goto out; - } + if (sc && count < 0) + sc->have_delayed_delete_refs = true; ret = add_indirect_ref(fs_info, preftrees, ref->root, &key, 0, node->bytenr, count, sc, @@ -912,7 +941,7 @@ } if (!ret) ret = extent_is_shared(sc); -out: + spin_unlock(&head->lock); return ret; } @@ -1015,7 +1044,8 @@ key.type = BTRFS_EXTENT_DATA_KEY; key.offset = btrfs_extent_data_ref_offset(leaf, dref); - if (sc && sc->inum && key.objectid != sc->inum) { + if (sc && sc->inum && key.objectid != sc->inum && + !sc->have_delayed_delete_refs) { ret = BACKREF_FOUND_SHARED; break; } @@ -1025,6 +1055,7 @@ ret = add_indirect_ref(fs_info, preftrees, root, &key, 0, bytenr, count, sc, GFP_NOFS); + break; } default: @@ -1114,7 +1145,8 @@ key.type = BTRFS_EXTENT_DATA_KEY; key.offset = btrfs_extent_data_ref_offset(leaf, dref); - if (sc && sc->inum && key.objectid != sc->inum) { + if (sc && sc->inum && key.objectid != sc->inum && + !sc->have_delayed_delete_refs) { ret = BACKREF_FOUND_SHARED; break; } @@ -1208,7 +1240,12 @@ ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0); if (ret < 0) goto out; - BUG_ON(ret == 0); + if (ret == 0) { + /* This shouldn't happen, indicates a bug or fs corruption. */ + ASSERT(ret != 0); + ret = -EUCLEAN; + goto out; + } #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS if (trans && likely(trans->type != __TRANS_DUMMY) && @@ -1348,6 +1385,12 @@ if (ret < 0) goto out; ref->inode_list = eie; + /* + * We transferred the list ownership to the ref, + * so set to NULL to avoid a double free in case + * an error happens after this. + */ + eie = NULL; } ret = ulist_add_merge_ptr(refs, ref->parent, ref->inode_list, @@ -1356,15 +1399,31 @@ goto out; if (!ret && extent_item_pos) { /* - * we've recorded that parent, so we must extend - * its inode list here + * We've recorded that parent, so we must extend + * its inode list here. + * + * However if there was corruption we may not + * have found an eie, return an error in this + * case. */ - BUG_ON(!eie); + ASSERT(eie); + if (!eie) { + ret = -EUCLEAN; + goto out; + } while (eie->next) eie = eie->next; eie->next = ref->inode_list; } eie = NULL; + /* + * We have transferred the inode list ownership from + * this ref to the ref we added to the 'refs' ulist. + * So set this ref's inode list to NULL to avoid + * use-after-free when our caller uses it or double + * frees in case an error happens before we return. + */ + ref->inode_list = NULL; } cond_resched(); } @@ -1381,24 +1440,6 @@ return ret; } -static void free_leaf_list(struct ulist *blocks) -{ - struct ulist_node *node = NULL; - struct extent_inode_elem *eie; - struct ulist_iterator uiter; - - ULIST_ITER_INIT(&uiter); - while ((node = ulist_next(blocks, &uiter))) { - if (!node->aux) - continue; - eie = unode_aux_to_inode_list(node); - free_inode_elem_list(eie); - node->aux = 0; - } - - ulist_free(blocks); -} - /* * Finds all leafs with a reference to the specified combination of bytenr and * offset. key_list_head will point to a list of corresponding keys (caller must @@ -1524,6 +1565,7 @@ .root_objectid = root->root_key.objectid, .inum = inum, .share_count = 0, + .have_delayed_delete_refs = false, }; ulist_init(roots); @@ -1558,6 +1600,7 @@ break; bytenr = node->val; shared.share_count = 0; + shared.have_delayed_delete_refs = false; cond_resched(); } diff -u linux-azure-5.4.0/fs/btrfs/block-group.c linux-azure-5.4.0/fs/btrfs/block-group.c --- linux-azure-5.4.0/fs/btrfs/block-group.c +++ linux-azure-5.4.0/fs/btrfs/block-group.c @@ -2388,7 +2388,6 @@ struct btrfs_path *path = NULL; LIST_HEAD(dirty); struct list_head *io = &cur_trans->io_bgs; - int num_started = 0; int loops = 0; spin_lock(&cur_trans->dirty_bgs_lock); @@ -2455,7 +2454,6 @@ cache->io_ctl.inode = NULL; ret = btrfs_write_out_cache(trans, cache, path); if (ret == 0 && cache->io_ctl.inode) { - num_started++; should_put = 0; /* @@ -2556,7 +2554,6 @@ int should_put; struct btrfs_path *path; struct list_head *io = &cur_trans->io_bgs; - int num_started = 0; path = btrfs_alloc_path(); if (!path) @@ -2614,7 +2611,6 @@ cache->io_ctl.inode = NULL; ret = btrfs_write_out_cache(trans, cache, path); if (ret == 0 && cache->io_ctl.inode) { - num_started++; should_put = 0; list_add_tail(&cache->io_list, io); } else { @@ -2637,7 +2633,7 @@ * finished yet (no block group item in the extent tree * yet, etc). If this is the case, wait for all free * space endio workers to finish and retry. This is a - * a very rare case so no need for a more efficient and + * very rare case so no need for a more efficient and * complex approach. */ if (ret == -ENOENT) { @@ -2942,6 +2938,7 @@ * attempt. */ wait_for_alloc = true; + force = CHUNK_ALLOC_NO_FORCE; spin_unlock(&space_info->lock); mutex_lock(&fs_info->chunk_mutex); mutex_unlock(&fs_info->chunk_mutex); diff -u linux-azure-5.4.0/fs/btrfs/compression.c linux-azure-5.4.0/fs/btrfs/compression.c --- linux-azure-5.4.0/fs/btrfs/compression.c +++ linux-azure-5.4.0/fs/btrfs/compression.c @@ -273,7 +273,7 @@ cb->compressed_pages[0]->mapping = cb->inode->i_mapping; btrfs_writepage_endio_finish_ordered(cb->compressed_pages[0], cb->start, cb->start + cb->len - 1, - bio->bi_status == BLK_STS_OK); + !cb->errors); cb->compressed_pages[0]->mapping = NULL; end_compressed_writeback(inode, cb); diff -u linux-azure-5.4.0/fs/btrfs/ctree.c linux-azure-5.4.0/fs/btrfs/ctree.c --- linux-azure-5.4.0/fs/btrfs/ctree.c +++ linux-azure-5.4.0/fs/btrfs/ctree.c @@ -2658,12 +2658,9 @@ { struct btrfs_fs_info *fs_info = root->fs_info; struct extent_buffer *b; - int root_lock; + int root_lock = 0; int level = 0; - /* We try very hard to do read locks on the root */ - root_lock = BTRFS_READ_LOCK; - if (p->search_commit_root) { /* * The commit roots are read only so we always do read locks, @@ -2701,6 +2698,9 @@ goto out; } + /* We try very hard to do read locks on the root */ + root_lock = BTRFS_READ_LOCK; + /* * If the level is set to maximum, we can skip trying to get the read * lock. @@ -2727,6 +2727,17 @@ level = btrfs_header_level(b); out: + /* + * The root may have failed to write out at some point, and thus is no + * longer valid, return an error in this case. + */ + if (!extent_buffer_uptodate(b)) { + if (root_lock) + btrfs_tree_unlock_rw(b, root_lock); + free_extent_buffer(b); + return ERR_PTR(-EIO); + } + p->nodes[level] = b; if (!p->skip_locking) p->locks[level] = root_lock; @@ -5306,7 +5317,7 @@ slot--; /* * check this node pointer against the min_trans parameters. - * If it is too old, old, skip to the next one. + * If it is too old, skip to the next one. */ while (slot < nritems) { u64 gen; diff -u linux-azure-5.4.0/fs/btrfs/ctree.h linux-azure-5.4.0/fs/btrfs/ctree.h --- linux-azure-5.4.0/fs/btrfs/ctree.h +++ linux-azure-5.4.0/fs/btrfs/ctree.h @@ -505,11 +505,6 @@ */ BTRFS_FS_EXCL_OP, /* - * To info transaction_kthread we need an immediate commit so it - * doesn't need to wait for commit_interval - */ - BTRFS_FS_NEED_ASYNC_COMMIT, - /* * Indicate that balance has been set up from the ioctl and is in the * main phase. The fs_info::balance_ctl is initialized. * Set and cleared while holding fs_info::balance_mutex. @@ -832,7 +827,10 @@ */ struct ulist *qgroup_ulist; - /* protect user change for quota operations */ + /* + * Protect user change for quota operations. If a transaction is needed, + * it must be started before locking this lock. + */ struct mutex qgroup_ioctl_lock; /* list of dirty qgroups to be written at next commit */ @@ -945,6 +943,8 @@ BTRFS_ROOT_DEAD_TREE, /* The root has a log tree. Used only for subvolume roots. */ BTRFS_ROOT_HAS_LOG_TREE, + /* Qgroup flushing is in progress */ + BTRFS_ROOT_QGROUP_FLUSHING, }; /* @@ -1097,6 +1097,7 @@ spinlock_t qgroup_meta_rsv_lock; u64 qgroup_meta_rsv_pertrans; u64 qgroup_meta_rsv_prealloc; + wait_queue_head_t qgroup_flush_wait; /* Number of active swapfiles */ atomic_t nr_swapfiles; @@ -2726,7 +2727,7 @@ btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, struct btrfs_path *path, u64 dir, - u64 objectid, const char *name, int name_len, + u64 index, const char *name, int name_len, int mod); struct btrfs_dir_item * btrfs_search_dir_index_item(struct btrfs_root *root, diff -u linux-azure-5.4.0/fs/btrfs/delayed-inode.c linux-azure-5.4.0/fs/btrfs/delayed-inode.c --- linux-azure-5.4.0/fs/btrfs/delayed-inode.c +++ linux-azure-5.4.0/fs/btrfs/delayed-inode.c @@ -627,7 +627,8 @@ */ if (!src_rsv || (!trans->bytes_reserved && src_rsv->type != BTRFS_BLOCK_RSV_DELALLOC)) { - ret = btrfs_qgroup_reserve_meta_prealloc(root, num_bytes, true); + ret = btrfs_qgroup_reserve_meta(root, num_bytes, + BTRFS_QGROUP_RSV_META_PREALLOC, true); if (ret < 0) return ret; ret = btrfs_block_rsv_add(root, dst_rsv, num_bytes, @@ -1033,12 +1034,10 @@ nofs_flag = memalloc_nofs_save(); ret = btrfs_lookup_inode(trans, root, path, &key, mod); memalloc_nofs_restore(nofs_flag); - if (ret > 0) { - btrfs_release_path(path); - return -ENOENT; - } else if (ret < 0) { - return ret; - } + if (ret > 0) + ret = -ENOENT; + if (ret < 0) + goto out; leaf = path->nodes[0]; inode_item = btrfs_item_ptr(leaf, path->slots[0], @@ -1076,6 +1075,14 @@ btrfs_delayed_inode_release_metadata(fs_info, node, (ret < 0)); btrfs_release_delayed_inode(node); + /* + * If we fail to update the delayed inode we need to abort the + * transaction, because we could leave the inode with the improper + * counts behind. + */ + if (ret && ret != -ENOENT) + btrfs_abort_transaction(trans, ret); + return ret; search: diff -u linux-azure-5.4.0/fs/btrfs/dev-replace.c linux-azure-5.4.0/fs/btrfs/dev-replace.c --- linux-azure-5.4.0/fs/btrfs/dev-replace.c +++ linux-azure-5.4.0/fs/btrfs/dev-replace.c @@ -125,7 +125,7 @@ if (btrfs_find_device(fs_info->fs_devices, BTRFS_DEV_REPLACE_DEVID, NULL, NULL, false)) { btrfs_err(fs_info, - "replace devid present without an active replace item"); +"replace without active item, run 'device scan --forget' on the target device"); ret = -EUCLEAN; } else { dev_replace->srcdev = NULL; @@ -918,8 +918,7 @@ up_write(&dev_replace->rwsem); /* Scrub for replace must not be running in suspended state */ - ret = btrfs_scrub_cancel(fs_info); - ASSERT(ret != -ENOTCONN); + btrfs_scrub_cancel(fs_info); trans = btrfs_start_transaction(root, 0); if (IS_ERR(trans)) { diff -u linux-azure-5.4.0/fs/btrfs/disk-io.c linux-azure-5.4.0/fs/btrfs/disk-io.c --- linux-azure-5.4.0/fs/btrfs/disk-io.c +++ linux-azure-5.4.0/fs/btrfs/disk-io.c @@ -1154,6 +1154,7 @@ mutex_init(&root->log_mutex); mutex_init(&root->ordered_extent_mutex); mutex_init(&root->delalloc_mutex); + init_waitqueue_head(&root->qgroup_flush_wait); init_waitqueue_head(&root->log_writer_wait); init_waitqueue_head(&root->log_commit_wait[0]); init_waitqueue_head(&root->log_commit_wait[1]); @@ -1747,8 +1748,7 @@ } now = ktime_get_seconds(); - if (cur->state < TRANS_STATE_BLOCKED && - !test_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags) && + if (cur->state < TRANS_STATE_COMMIT_START && (now < cur->start_time || now - cur->start_time < fs_info->commit_interval)) { spin_unlock(&fs_info->trans_lock); @@ -2463,6 +2463,24 @@ ret = -EINVAL; } + if (memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid, + BTRFS_FSID_SIZE)) { + btrfs_err(fs_info, + "superblock fsid doesn't match fsid of fs_devices: %pU != %pU", + fs_info->super_copy->fsid, fs_info->fs_devices->fsid); + ret = -EINVAL; + } + + if (btrfs_fs_incompat(fs_info, METADATA_UUID) && + memcmp(fs_info->fs_devices->metadata_uuid, + fs_info->super_copy->metadata_uuid, BTRFS_FSID_SIZE)) { + btrfs_err(fs_info, +"superblock metadata_uuid doesn't match metadata uuid of fs_devices: %pU != %pU", + fs_info->super_copy->metadata_uuid, + fs_info->fs_devices->metadata_uuid); + ret = -EINVAL; + } + if (memcmp(fs_info->fs_devices->metadata_uuid, sb->dev_item.fsid, BTRFS_FSID_SIZE) != 0) { btrfs_err(fs_info, @@ -2798,7 +2816,7 @@ } /* - * Verify the type first, if that or the the checksum value are + * Verify the type first, if that or the checksum value are * corrupted, we'll find out */ csum_type = btrfs_super_csum_type((struct btrfs_super_block *)bh->b_data); @@ -2837,14 +2855,6 @@ disk_super = fs_info->super_copy; - ASSERT(!memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid, - BTRFS_FSID_SIZE)); - - if (btrfs_fs_incompat(fs_info, METADATA_UUID)) { - ASSERT(!memcmp(fs_info->fs_devices->metadata_uuid, - fs_info->super_copy->metadata_uuid, - BTRFS_FSID_SIZE)); - } features = btrfs_super_flags(disk_super); if (features & BTRFS_SUPER_FLAG_CHANGING_FSID_V2) { @@ -2884,6 +2894,29 @@ */ fs_info->compress_type = BTRFS_COMPRESS_ZLIB; + /* + * Flag our filesystem as having big metadata blocks if they are bigger + * than the page size + */ + if (btrfs_super_nodesize(disk_super) > PAGE_SIZE) { + if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA)) + btrfs_info(fs_info, + "flagging fs with big metadata feature"); + features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA; + } + + /* Set up fs_info before parsing mount options */ + nodesize = btrfs_super_nodesize(disk_super); + sectorsize = btrfs_super_sectorsize(disk_super); + stripesize = sectorsize; + fs_info->dirty_metadata_batch = nodesize * (1 + ilog2(nr_cpu_ids)); + fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids)); + + /* Cache block sizes */ + fs_info->nodesize = nodesize; + fs_info->sectorsize = sectorsize; + fs_info->stripesize = stripesize; + ret = btrfs_parse_options(fs_info, options, sb->s_flags); if (ret) { err = ret; @@ -2894,7 +2927,7 @@ ~BTRFS_FEATURE_INCOMPAT_SUPP; if (features) { btrfs_err(fs_info, - "cannot mount because of unsupported optional features (%llx)", + "cannot mount because of unsupported optional features (0x%llx)", features); err = -EINVAL; goto fail_csum; @@ -2911,28 +2944,6 @@ btrfs_info(fs_info, "has skinny extents"); /* - * flag our filesystem as having big metadata blocks if - * they are bigger than the page size - */ - if (btrfs_super_nodesize(disk_super) > PAGE_SIZE) { - if (!(features & BTRFS_FEATURE_INCOMPAT_BIG_METADATA)) - btrfs_info(fs_info, - "flagging fs with big metadata feature"); - features |= BTRFS_FEATURE_INCOMPAT_BIG_METADATA; - } - - nodesize = btrfs_super_nodesize(disk_super); - sectorsize = btrfs_super_sectorsize(disk_super); - stripesize = sectorsize; - fs_info->dirty_metadata_batch = nodesize * (1 + ilog2(nr_cpu_ids)); - fs_info->delalloc_batch = sectorsize * 512 * (1 + ilog2(nr_cpu_ids)); - - /* Cache block sizes */ - fs_info->nodesize = nodesize; - fs_info->sectorsize = sectorsize; - fs_info->stripesize = stripesize; - - /* * mixed block groups end up with duplicate but slightly offset * extent buffers for the same range. It leads to corruptions */ @@ -2954,11 +2965,25 @@ ~BTRFS_FEATURE_COMPAT_RO_SUPP; if (!sb_rdonly(sb) && features) { btrfs_err(fs_info, - "cannot mount read-write because of unsupported optional features (%llx)", + "cannot mount read-write because of unsupported optional features (0x%llx)", features); err = -EINVAL; goto fail_csum; } + /* + * We have unsupported RO compat features, although RO mounted, we + * should not cause any metadata write, including log replay. + * Or we could screw up whatever the new feature requires. + */ + if (unlikely(features && btrfs_super_log_root(disk_super) && + !btrfs_test_opt(fs_info, NOLOGREPLAY))) { + btrfs_err(fs_info, +"cannot replay dirty log with unsupported compat_ro features (0x%llx), try rescue=nologreplay", + features); + err = -EINVAL; + goto fail_alloc; + } + ret = btrfs_init_workqueues(fs_info, fs_devices); if (ret) { @@ -3134,7 +3159,8 @@ goto fail_sysfs; } - if (!sb_rdonly(sb) && !btrfs_check_rw_degradable(fs_info, NULL)) { + if (!sb_rdonly(sb) && fs_info->fs_devices->missing_devices && + !btrfs_check_rw_degradable(fs_info, NULL)) { btrfs_warn(fs_info, "writable mount is not allowed due to too many missing devices"); goto fail_sysfs; @@ -3624,11 +3650,23 @@ */ static void write_dev_flush(struct btrfs_device *device) { - struct request_queue *q = bdev_get_queue(device->bdev); struct bio *bio = device->flush_bio; +#ifndef CONFIG_BTRFS_FS_CHECK_INTEGRITY + /* + * When a disk has write caching disabled, we skip submission of a bio + * with flush and sync requests before writing the superblock, since + * it's not needed. However when the integrity checker is enabled, this + * results in reports that there are metadata blocks referred by a + * superblock that were not properly flushed. So don't skip the bio + * submission only when the integrity checker is enabled for the sake + * of simplicity, since this is a debug tool and not meant for use in + * non-debug builds. + */ + struct request_queue *q = bdev_get_queue(device->bdev); if (!test_bit(QUEUE_FLAG_WC, &q->queue_flags)) return; +#endif bio_reset(bio); bio->bi_end_io = btrfs_end_empty_barrier; diff -u linux-azure-5.4.0/fs/btrfs/export.c linux-azure-5.4.0/fs/btrfs/export.c --- linux-azure-5.4.0/fs/btrfs/export.c +++ linux-azure-5.4.0/fs/btrfs/export.c @@ -58,7 +58,7 @@ } struct dentry *btrfs_get_dentry(struct super_block *sb, u64 objectid, - u64 root_objectid, u32 generation, + u64 root_objectid, u64 generation, int check_generation) { struct btrfs_fs_info *fs_info = btrfs_sb(sb); diff -u linux-azure-5.4.0/fs/btrfs/export.h linux-azure-5.4.0/fs/btrfs/export.h --- linux-azure-5.4.0/fs/btrfs/export.h +++ linux-azure-5.4.0/fs/btrfs/export.h @@ -19,7 +19,7 @@ } __attribute__ ((packed)); struct dentry *btrfs_get_dentry(struct super_block *sb, u64 objectid, - u64 root_objectid, u32 generation, + u64 root_objectid, u64 generation, int check_generation); struct dentry *btrfs_get_parent(struct dentry *child); diff -u linux-azure-5.4.0/fs/btrfs/extent-tree.c linux-azure-5.4.0/fs/btrfs/extent-tree.c --- linux-azure-5.4.0/fs/btrfs/extent-tree.c +++ linux-azure-5.4.0/fs/btrfs/extent-tree.c @@ -1353,16 +1353,20 @@ for (i = 0; i < bbio->num_stripes; i++, stripe++) { u64 bytes; struct request_queue *req_q; + struct btrfs_device *device = stripe->dev; - if (!stripe->dev->bdev) { + if (!device->bdev) { ASSERT(btrfs_test_opt(fs_info, DEGRADED)); continue; } - req_q = bdev_get_queue(stripe->dev->bdev); + req_q = bdev_get_queue(device->bdev); if (!blk_queue_discard(req_q)) continue; - ret = btrfs_issue_discard(stripe->dev->bdev, + if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) + continue; + + ret = btrfs_issue_discard(device->bdev, stripe->physical, stripe->length, &bytes); @@ -1897,7 +1901,7 @@ trace_run_delayed_ref_head(fs_info, head, 0); btrfs_delayed_ref_unlock(head); btrfs_put_delayed_ref_head(head); - return 0; + return ret; } static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head( @@ -4744,6 +4748,7 @@ out_free_delayed: btrfs_free_delayed_extent_op(extent_op); out_free_buf: + btrfs_tree_unlock(buf); free_extent_buffer(buf); out_free_reserved: btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0); @@ -5916,6 +5921,9 @@ mutex_lock(&fs_info->fs_devices->device_list_mutex); devices = &fs_info->fs_devices->devices; list_for_each_entry(device, devices, dev_list) { + if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) + continue; + ret = btrfs_trim_free_extents(device, &group_trimmed); if (ret) { dev_failed++; diff -u linux-azure-5.4.0/fs/btrfs/extent_io.c linux-azure-5.4.0/fs/btrfs/extent_io.c --- linux-azure-5.4.0/fs/btrfs/extent_io.c +++ linux-azure-5.4.0/fs/btrfs/extent_io.c @@ -3152,7 +3152,7 @@ /* * If we have a file range that points to a compressed extent - * and it's followed by a consecutive file range that points to + * and it's followed by a consecutive file range that points * to the same compressed extent (possibly with a different * offset and/or length, so it either points to the whole extent * or only part of it), we must make sure we do not submit a @@ -3755,6 +3755,12 @@ return; /* + * A read may stumble upon this buffer later, make sure that it gets an + * error and knows there was an error. + */ + clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags); + + /* * If we error out, we should add back the dirty_metadata_bytes * to make it consistent. */ diff -u linux-azure-5.4.0/fs/btrfs/extent_io.h linux-azure-5.4.0/fs/btrfs/extent_io.h --- linux-azure-5.4.0/fs/btrfs/extent_io.h +++ linux-azure-5.4.0/fs/btrfs/extent_io.h @@ -202,7 +202,7 @@ */ struct extent_changeset { /* How many bytes are set/cleared in this operation */ - unsigned int bytes_changed; + u64 bytes_changed; /* Changed ranges */ struct ulist range_changed; diff -u linux-azure-5.4.0/fs/btrfs/file-item.c linux-azure-5.4.0/fs/btrfs/file-item.c --- linux-azure-5.4.0/fs/btrfs/file-item.c +++ linux-azure-5.4.0/fs/btrfs/file-item.c @@ -599,7 +599,7 @@ u64 end_byte = bytenr + len; u64 csum_end; struct extent_buffer *leaf; - int ret; + int ret = 0; u16 csum_size = btrfs_super_csum_size(fs_info->super_copy); int blocksize_bits = fs_info->sb->s_blocksize_bits; @@ -618,6 +618,7 @@ path->leave_spinning = 1; ret = btrfs_search_slot(trans, root, &key, path, -1, 1); if (ret > 0) { + ret = 0; if (path->slots[0] == 0) break; path->slots[0]--; @@ -674,7 +675,7 @@ ret = btrfs_del_items(trans, root, path, path->slots[0], del_nr); if (ret) - goto out; + break; if (key.offset == bytenr) break; } else if (key.offset < bytenr && csum_end > end_byte) { @@ -718,8 +719,9 @@ ret = btrfs_split_item(trans, root, path, &key, offset); if (ret && ret != -EAGAIN) { btrfs_abort_transaction(trans, ret); - goto out; + break; } + ret = 0; key.offset = end_byte - 1; } else { @@ -729,8 +731,6 @@ } btrfs_release_path(path); } - ret = 0; -out: btrfs_free_path(path); return ret; } diff -u linux-azure-5.4.0/fs/btrfs/file.c linux-azure-5.4.0/fs/btrfs/file.c --- linux-azure-5.4.0/fs/btrfs/file.c +++ linux-azure-5.4.0/fs/btrfs/file.c @@ -1163,7 +1163,7 @@ int del_nr = 0; int del_slot = 0; int recow; - int ret; + int ret = 0; u64 ino = btrfs_ino(inode); path = btrfs_alloc_path(); @@ -1384,7 +1384,7 @@ } out: btrfs_free_path(path); - return 0; + return ret; } /* @@ -2004,14 +2004,8 @@ inode_unlock(inode); - /* - * We also have to set last_sub_trans to the current log transid, - * otherwise subsequent syncs to a file that's been synced in this - * transaction will appear to have already occurred. - */ - spin_lock(&BTRFS_I(inode)->lock); - BTRFS_I(inode)->last_sub_trans = root->log_transid; - spin_unlock(&BTRFS_I(inode)->lock); + btrfs_set_inode_last_sub_trans(BTRFS_I(inode)); + if (num_written > 0) num_written = generic_write_sync(iocb, num_written); @@ -3149,7 +3143,7 @@ &cached_state); if (ret) goto out; - ret = btrfs_qgroup_reserve_data(inode, &data_reserved, + ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved, alloc_start, bytes_to_reserve); if (ret) { unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, @@ -3322,8 +3316,9 @@ free_extent_map(em); break; } - ret = btrfs_qgroup_reserve_data(inode, &data_reserved, - cur_offset, last_byte - cur_offset); + ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), + &data_reserved, cur_offset, + last_byte - cur_offset); if (ret < 0) { cur_offset = last_byte; free_extent_map(em); diff -u linux-azure-5.4.0/fs/btrfs/free-space-cache.c linux-azure-5.4.0/fs/btrfs/free-space-cache.c --- linux-azure-5.4.0/fs/btrfs/free-space-cache.c +++ linux-azure-5.4.0/fs/btrfs/free-space-cache.c @@ -1339,7 +1339,7 @@ /* * at this point the pages are under IO and we're happy, - * The caller is responsible for waiting on them and updating the + * The caller is responsible for waiting on them and updating * the cache and the inode */ io_ctl->entries = entries; diff -u linux-azure-5.4.0/fs/btrfs/inode.c linux-azure-5.4.0/fs/btrfs/inode.c --- linux-azure-5.4.0/fs/btrfs/inode.c +++ linux-azure-5.4.0/fs/btrfs/inode.c @@ -1200,11 +1200,6 @@ nr_pages = (async_chunk->end - async_chunk->start + PAGE_SIZE) >> PAGE_SHIFT; - /* atomic_sub_return implies a barrier */ - if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) < - 5 * SZ_1M) - cond_wake_up_nomb(&fs_info->async_submit_wait); - /* * ->inode could be NULL if async_chunk_start has failed to compress, * in which case we don't have anything to submit, yet we need to @@ -1213,6 +1208,11 @@ */ if (async_chunk->inode) submit_compressed_extents(async_chunk); + + /* atomic_sub_return implies a barrier */ + if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) < + 5 * SZ_1M) + cond_wake_up_nomb(&fs_info->async_submit_wait); } static noinline void async_cow_free(struct btrfs_work *work) @@ -3359,6 +3359,18 @@ if (ret || truncated) { u64 start, end; + /* + * If we failed to finish this ordered extent for any reason we + * need to make sure BTRFS_ORDERED_IOERR is set on the ordered + * extent, and mark the inode with the error if it wasn't + * already set. Any error during writeback would have already + * set the mapping error, so we need to set it if we're the ones + * marking this ordered extent as failed. + */ + if (ret && !test_and_set_bit(BTRFS_ORDERED_IOERR, + &ordered_extent->flags)) + mapping_set_error(ordered_extent->inode->i_mapping, -EIO); + if (truncated) start = ordered_extent->file_offset + logical_len; else @@ -6363,7 +6375,7 @@ return PTR_ERR(trans); ret = btrfs_update_inode(trans, root, inode); - if (ret && ret == -ENOSPC) { + if (ret && (ret == -ENOSPC || ret == -EDQUOT)) { /* whoops, lets try again with the full transaction */ btrfs_end_transaction(trans); trans = btrfs_start_transaction(root, 1); @@ -6980,7 +6992,6 @@ drop_inode = 1; } else { struct dentry *parent = dentry->d_parent; - int ret; err = btrfs_update_inode(trans, root, inode); if (err) @@ -6995,12 +7006,7 @@ goto fail; } d_instantiate(dentry, inode); - ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent, - true, NULL); - if (ret == BTRFS_NEED_TRANS_COMMIT) { - err = btrfs_commit_transaction(trans); - trans = NULL; - } + btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent); } fail: @@ -9244,9 +9250,7 @@ set_page_dirty(page); SetPageUptodate(page); - BTRFS_I(inode)->last_trans = fs_info->generation; - BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; - BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit; + btrfs_set_inode_last_sub_trans(BTRFS_I(inode)); unlock_extent_cached(io_tree, page_start, page_end, &cached_state); @@ -9687,27 +9691,25 @@ struct inode *new_inode = new_dentry->d_inode; struct inode *old_inode = old_dentry->d_inode; struct timespec64 ctime = current_time(old_inode); - struct dentry *parent; u64 old_ino = btrfs_ino(BTRFS_I(old_inode)); u64 new_ino = btrfs_ino(BTRFS_I(new_inode)); u64 old_idx = 0; u64 new_idx = 0; int ret; + int ret2; bool root_log_pinned = false; bool dest_log_pinned = false; - struct btrfs_log_ctx ctx_root; - struct btrfs_log_ctx ctx_dest; - bool sync_log_root = false; - bool sync_log_dest = false; - bool commit_transaction = false; - /* we only allow rename subvolume link between subvolumes */ - if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) + /* + * For non-subvolumes allow exchange only within one subvolume, in the + * same inode namespace. Two subvolumes (represented as directory) can + * be exchanged as they're a logical link and have a fixed inode number. + */ + if (root != dest && + (old_ino != BTRFS_FIRST_FREE_OBJECTID || + new_ino != BTRFS_FIRST_FREE_OBJECTID)) return -EXDEV; - btrfs_init_log_ctx(&ctx_root, old_inode); - btrfs_init_log_ctx(&ctx_dest, new_inode); - /* close the race window with snapshot create/destroy ioctl */ if (old_ino == BTRFS_FIRST_FREE_OBJECTID || new_ino == BTRFS_FIRST_FREE_OBJECTID) @@ -9749,8 +9751,6 @@ /* force full log commit if subvolume involved. */ btrfs_set_log_full_commit(trans); } else { - btrfs_pin_log_trans(root); - root_log_pinned = true; ret = btrfs_insert_inode_ref(trans, dest, new_dentry->d_name.name, new_dentry->d_name.len, @@ -9766,8 +9766,6 @@ /* force full log commit if subvolume involved. */ btrfs_set_log_full_commit(trans); } else { - btrfs_pin_log_trans(dest); - dest_log_pinned = true; ret = btrfs_insert_inode_ref(trans, root, old_dentry->d_name.name, old_dentry->d_name.len, @@ -9795,6 +9793,29 @@ BTRFS_I(new_inode), 1); } + /* + * Now pin the logs of the roots. We do it to ensure that no other task + * can sync the logs while we are in progress with the rename, because + * that could result in an inconsistency in case any of the inodes that + * are part of this rename operation were logged before. + * + * We pin the logs even if at this precise moment none of the inodes was + * logged before. This is because right after we checked for that, some + * other task fsyncing some other inode not involved with this rename + * operation could log that one of our inodes exists. + * + * We don't need to pin the logs before the above calls to + * btrfs_insert_inode_ref(), since those don't ever need to change a log. + */ + if (old_ino != BTRFS_FIRST_FREE_OBJECTID) { + btrfs_pin_log_trans(root); + root_log_pinned = true; + } + if (new_ino != BTRFS_FIRST_FREE_OBJECTID) { + btrfs_pin_log_trans(dest); + dest_log_pinned = true; + } + /* src is a subvolume */ if (old_ino == BTRFS_FIRST_FREE_OBJECTID) { ret = btrfs_unlink_subvol(trans, old_dir, old_dentry); @@ -9849,30 +9870,14 @@ BTRFS_I(new_inode)->dir_index = new_idx; if (root_log_pinned) { - parent = new_dentry->d_parent; - ret = btrfs_log_new_name(trans, BTRFS_I(old_inode), - BTRFS_I(old_dir), parent, - false, &ctx_root); - if (ret == BTRFS_NEED_LOG_SYNC) - sync_log_root = true; - else if (ret == BTRFS_NEED_TRANS_COMMIT) - commit_transaction = true; - ret = 0; + btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir), + new_dentry->d_parent); btrfs_end_log_trans(root); root_log_pinned = false; } if (dest_log_pinned) { - if (!commit_transaction) { - parent = old_dentry->d_parent; - ret = btrfs_log_new_name(trans, BTRFS_I(new_inode), - BTRFS_I(new_dir), parent, - false, &ctx_dest); - if (ret == BTRFS_NEED_LOG_SYNC) - sync_log_dest = true; - else if (ret == BTRFS_NEED_TRANS_COMMIT) - commit_transaction = true; - ret = 0; - } + btrfs_log_new_name(trans, BTRFS_I(new_inode), BTRFS_I(new_dir), + old_dentry->d_parent); btrfs_end_log_trans(dest); dest_log_pinned = false; } @@ -9905,46 +9910,13 @@ dest_log_pinned = false; } } - if (!ret && sync_log_root && !commit_transaction) { - ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, - &ctx_root); - if (ret) - commit_transaction = true; - } - if (!ret && sync_log_dest && !commit_transaction) { - ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root, - &ctx_dest); - if (ret) - commit_transaction = true; - } - if (commit_transaction) { - /* - * We may have set commit_transaction when logging the new name - * in the destination root, in which case we left the source - * root context in the list of log contextes. So make sure we - * remove it to avoid invalid memory accesses, since the context - * was allocated in our stack frame. - */ - if (sync_log_root) { - mutex_lock(&root->log_mutex); - list_del_init(&ctx_root.list); - mutex_unlock(&root->log_mutex); - } - ret = btrfs_commit_transaction(trans); - } else { - int ret2; - - ret2 = btrfs_end_transaction(trans); - ret = ret ? ret : ret2; - } + ret2 = btrfs_end_transaction(trans); + ret = ret ? ret : ret2; out_notrans: if (new_ino == BTRFS_FIRST_FREE_OBJECTID || old_ino == BTRFS_FIRST_FREE_OBJECTID) up_read(&fs_info->subvol_sem); - ASSERT(list_empty(&ctx_root.list)); - ASSERT(list_empty(&ctx_dest.list)); - return ret; } @@ -10012,11 +9984,9 @@ struct inode *old_inode = d_inode(old_dentry); u64 index = 0; int ret; + int ret2; u64 old_ino = btrfs_ino(BTRFS_I(old_inode)); bool log_pinned = false; - struct btrfs_log_ctx ctx; - bool sync_log = false; - bool commit_transaction = false; if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) return -EPERM; @@ -10095,8 +10065,6 @@ /* force full log commit if subvolume involved. */ btrfs_set_log_full_commit(trans); } else { - btrfs_pin_log_trans(root); - log_pinned = true; ret = btrfs_insert_inode_ref(trans, dest, new_dentry->d_name.name, new_dentry->d_name.len, @@ -10120,6 +10088,25 @@ if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { ret = btrfs_unlink_subvol(trans, old_dir, old_dentry); } else { + /* + * Now pin the log. We do it to ensure that no other task can + * sync the log while we are in progress with the rename, as + * that could result in an inconsistency in case any of the + * inodes that are part of this rename operation were logged + * before. + * + * We pin the log even if at this precise moment none of the + * inodes was logged before. This is because right after we + * checked for that, some other task fsyncing some other inode + * not involved with this rename operation could log that one of + * our inodes exists. + * + * We don't need to pin the logs before the above call to + * btrfs_insert_inode_ref(), since that does not need to change + * a log. + */ + btrfs_pin_log_trans(root); + log_pinned = true; ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir), BTRFS_I(d_inode(old_dentry)), old_dentry->d_name.name, @@ -10166,17 +10153,8 @@ BTRFS_I(old_inode)->dir_index = index; if (log_pinned) { - struct dentry *parent = new_dentry->d_parent; - - btrfs_init_log_ctx(&ctx, old_inode); - ret = btrfs_log_new_name(trans, BTRFS_I(old_inode), - BTRFS_I(old_dir), parent, - false, &ctx); - if (ret == BTRFS_NEED_LOG_SYNC) - sync_log = true; - else if (ret == BTRFS_NEED_TRANS_COMMIT) - commit_transaction = true; - ret = 0; + btrfs_log_new_name(trans, BTRFS_I(old_inode), BTRFS_I(old_dir), + new_dentry->d_parent); btrfs_end_log_trans(root); log_pinned = false; } @@ -10213,23 +10191,8 @@ btrfs_end_log_trans(root); log_pinned = false; } - if (!ret && sync_log) { - ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx); - if (ret) - commit_transaction = true; - } else if (sync_log) { - mutex_lock(&root->log_mutex); - list_del(&ctx.list); - mutex_unlock(&root->log_mutex); - } - if (commit_transaction) { - ret = btrfs_commit_transaction(trans); - } else { - int ret2; - - ret2 = btrfs_end_transaction(trans); - ret = ret ? ret : ret2; - } + ret2 = btrfs_end_transaction(trans); + ret = ret ? ret : ret2; out_notrans: if (old_ino == BTRFS_FIRST_FREE_OBJECTID) up_read(&fs_info->subvol_sem); @@ -10881,9 +10844,19 @@ struct btrfs_swap_info *bsi) { unsigned long nr_pages; + unsigned long max_pages; u64 first_ppage, first_ppage_reported, next_ppage; int ret; + /* + * Our swapfile may have had its size extended after the swap header was + * written. In that case activating the swapfile should not go beyond + * the max size set in the swap header. + */ + if (bsi->nr_pages >= sis->max) + return 0; + + max_pages = sis->max - bsi->nr_pages; first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT; next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len, PAGE_SIZE) >> PAGE_SHIFT; @@ -10891,6 +10864,7 @@ if (first_ppage >= next_ppage) return 0; nr_pages = next_ppage - first_ppage; + nr_pages = min(nr_pages, max_pages); first_ppage_reported = first_ppage; if (bsi->start == 0) diff -u linux-azure-5.4.0/fs/btrfs/ioctl.c linux-azure-5.4.0/fs/btrfs/ioctl.c --- linux-azure-5.4.0/fs/btrfs/ioctl.c +++ linux-azure-5.4.0/fs/btrfs/ioctl.c @@ -3027,10 +3027,8 @@ inode_lock(inode); err = btrfs_delete_subvolume(dir, dentry); inode_unlock(inode); - if (!err) { - fsnotify_rmdir(dir, dentry); - d_delete(dentry); - } + if (!err) + d_delete_notify(dir, dentry); out_dput: dput(dentry); diff -u linux-azure-5.4.0/fs/btrfs/qgroup.c linux-azure-5.4.0/fs/btrfs/qgroup.c --- linux-azure-5.4.0/fs/btrfs/qgroup.c +++ linux-azure-5.4.0/fs/btrfs/qgroup.c @@ -11,7 +11,6 @@ #include #include #include -#include #include "ctree.h" #include "transaction.h" @@ -887,20 +886,44 @@ struct btrfs_key found_key; struct btrfs_qgroup *qgroup = NULL; struct btrfs_trans_handle *trans = NULL; + struct ulist *ulist = NULL; int ret = 0; int slot; + /* + * We need to have subvol_sem write locked, to prevent races between + * concurrent tasks trying to enable quotas, because we will unlock + * and relock qgroup_ioctl_lock before setting fs_info->quota_root + * and before setting BTRFS_FS_QUOTA_ENABLED. + */ + lockdep_assert_held_write(&fs_info->subvol_sem); + mutex_lock(&fs_info->qgroup_ioctl_lock); if (fs_info->quota_root) goto out; - fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL); - if (!fs_info->qgroup_ulist) { + ulist = ulist_alloc(GFP_KERNEL); + if (!ulist) { ret = -ENOMEM; goto out; } /* + * Unlock qgroup_ioctl_lock before starting the transaction. This is to + * avoid lock acquisition inversion problems (reported by lockdep) between + * qgroup_ioctl_lock and the vfs freeze semaphores, acquired when we + * start a transaction. + * After we started the transaction lock qgroup_ioctl_lock again and + * check if someone else created the quota root in the meanwhile. If so, + * just return success and release the transaction handle. + * + * Also we don't need to worry about someone else calling + * btrfs_sysfs_add_qgroups() after we unlock and getting an error because + * that function returns 0 (success) when the sysfs entries already exist. + */ + mutex_unlock(&fs_info->qgroup_ioctl_lock); + + /* * 1 for quota root item * 1 for BTRFS_QGROUP_STATUS item * @@ -909,12 +932,20 @@ * would be a lot of overkill. */ trans = btrfs_start_transaction(tree_root, 2); + + mutex_lock(&fs_info->qgroup_ioctl_lock); if (IS_ERR(trans)) { ret = PTR_ERR(trans); trans = NULL; goto out; } + if (fs_info->quota_root) + goto out; + + fs_info->qgroup_ulist = ulist; + ulist = NULL; + /* * initially create the quota tree */ @@ -1012,8 +1043,19 @@ goto out_free_path; } + mutex_unlock(&fs_info->qgroup_ioctl_lock); + /* + * Commit the transaction while not holding qgroup_ioctl_lock, to avoid + * a deadlock with tasks concurrently doing other qgroup operations, such + * adding/removing qgroups or adding/deleting qgroup relations for example, + * because all qgroup operations first start or join a transaction and then + * lock the qgroup_ioctl_lock mutex. + * We are safe from a concurrent task trying to enable quotas, by calling + * this function, since we are serialized by fs_info->subvol_sem. + */ ret = btrfs_commit_transaction(trans); trans = NULL; + mutex_lock(&fs_info->qgroup_ioctl_lock); if (ret) goto out_free_path; @@ -1033,6 +1075,21 @@ fs_info->qgroup_rescan_running = true; btrfs_queue_work(fs_info->qgroup_rescan_workers, &fs_info->qgroup_rescan_work); + } else { + /* + * We have set both BTRFS_FS_QUOTA_ENABLED and + * BTRFS_QGROUP_STATUS_FLAG_ON, so we can only fail with + * -EINPROGRESS. That can happen because someone started the + * rescan worker by calling quota rescan ioctl before we + * attempted to initialize the rescan worker. Failure due to + * quotas disabled in the meanwhile is not possible, because + * we are holding a write lock on fs_info->subvol_sem, which + * is also acquired when disabling quotas. + * Ignore such error, and any other error would need to undo + * everything we did in the transaction we just committed. + */ + ASSERT(ret == -EINPROGRESS); + ret = 0; } out_free_path: @@ -1047,10 +1104,13 @@ if (ret) { ulist_free(fs_info->qgroup_ulist); fs_info->qgroup_ulist = NULL; - if (trans) - btrfs_end_transaction(trans); } mutex_unlock(&fs_info->qgroup_ioctl_lock); + if (ret && trans) + btrfs_end_transaction(trans); + else if (trans) + ret = btrfs_end_transaction(trans); + ulist_free(ulist); return ret; } @@ -1060,24 +1120,55 @@ struct btrfs_trans_handle *trans = NULL; int ret = 0; + /* + * We need to have subvol_sem write locked, to prevent races between + * concurrent tasks trying to disable quotas, because we will unlock + * and relock qgroup_ioctl_lock across BTRFS_FS_QUOTA_ENABLED changes. + */ + lockdep_assert_held_write(&fs_info->subvol_sem); + mutex_lock(&fs_info->qgroup_ioctl_lock); if (!fs_info->quota_root) goto out; /* + * Unlock the qgroup_ioctl_lock mutex before waiting for the rescan worker to + * complete. Otherwise we can deadlock because btrfs_remove_qgroup() needs + * to lock that mutex while holding a transaction handle and the rescan + * worker needs to commit a transaction. + */ + mutex_unlock(&fs_info->qgroup_ioctl_lock); + + /* + * Request qgroup rescan worker to complete and wait for it. This wait + * must be done before transaction start for quota disable since it may + * deadlock with transaction by the qgroup rescan worker. + */ + clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags); + btrfs_qgroup_wait_for_completion(fs_info, false); + + /* * 1 For the root item * * We should also reserve enough items for the quota tree deletion in * btrfs_clean_quota_tree but this is not done. + * + * Also, we must always start a transaction without holding the mutex + * qgroup_ioctl_lock, see btrfs_quota_enable(). */ trans = btrfs_start_transaction(fs_info->tree_root, 1); + + mutex_lock(&fs_info->qgroup_ioctl_lock); if (IS_ERR(trans)) { ret = PTR_ERR(trans); + trans = NULL; + set_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags); goto out; } - clear_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags); - btrfs_qgroup_wait_for_completion(fs_info, false); + if (!fs_info->quota_root) + goto out; + spin_lock(&fs_info->qgroup_lock); quota_root = fs_info->quota_root; fs_info->quota_root = NULL; @@ -1089,13 +1180,13 @@ ret = btrfs_clean_quota_tree(trans, quota_root); if (ret) { btrfs_abort_transaction(trans, ret); - goto end_trans; + goto out; } ret = btrfs_del_root(trans, "a_root->root_key); if (ret) { btrfs_abort_transaction(trans, ret); - goto end_trans; + goto out; } list_del("a_root->dirty_list); @@ -1109,10 +1200,13 @@ free_extent_buffer(quota_root->commit_root); kfree(quota_root); -end_trans: - ret = btrfs_end_transaction(trans); out: mutex_unlock(&fs_info->qgroup_ioctl_lock); + if (ret && trans) + btrfs_end_transaction(trans); + else if (trans) + ret = btrfs_end_transaction(trans); + return ret; } @@ -2262,7 +2356,7 @@ * Update qgroup rfer/excl counters. * Rfer update is easy, codes can explain themselves. * - * Excl update is tricky, the update is split into 2 part. + * Excl update is tricky, the update is split into 2 parts. * Part 1: Possible exclusive <-> sharing detect: * | A | !A | * ------------------------------------- @@ -2840,20 +2934,8 @@ return ret; } -/* - * Two limits to commit transaction in advance. - * - * For RATIO, it will be 1/RATIO of the remaining limit as threshold. - * For SIZE, it will be in byte unit as threshold. - */ -#define QGROUP_FREE_RATIO 32 -#define QGROUP_FREE_SIZE SZ_32M -static bool qgroup_check_limits(struct btrfs_fs_info *fs_info, - const struct btrfs_qgroup *qg, u64 num_bytes) +static bool qgroup_check_limits(const struct btrfs_qgroup *qg, u64 num_bytes) { - u64 free; - u64 threshold; - if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) && qgroup_rsv_total(qg) + (s64)qg->rfer + num_bytes > qg->max_rfer) return false; @@ -2862,32 +2944,6 @@ qgroup_rsv_total(qg) + (s64)qg->excl + num_bytes > qg->max_excl) return false; - /* - * Even if we passed the check, it's better to check if reservation - * for meta_pertrans is pushing us near limit. - * If there is too much pertrans reservation or it's near the limit, - * let's try commit transaction to free some, using transaction_kthread - */ - if ((qg->lim_flags & (BTRFS_QGROUP_LIMIT_MAX_RFER | - BTRFS_QGROUP_LIMIT_MAX_EXCL))) { - if (qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) { - free = qg->max_excl - qgroup_rsv_total(qg) - qg->excl; - threshold = min_t(u64, qg->max_excl / QGROUP_FREE_RATIO, - QGROUP_FREE_SIZE); - } else { - free = qg->max_rfer - qgroup_rsv_total(qg) - qg->rfer; - threshold = min_t(u64, qg->max_rfer / QGROUP_FREE_RATIO, - QGROUP_FREE_SIZE); - } - - /* - * Use transaction_kthread to commit transaction, so we no - * longer need to bother nested transaction nor lock context. - */ - if (free < threshold) - btrfs_commit_transaction_locksafe(fs_info); - } - return true; } @@ -2937,7 +2993,7 @@ qg = unode_aux_to_qgroup(unode); - if (enforce && !qgroup_check_limits(fs_info, qg, num_bytes)) { + if (enforce && !qgroup_check_limits(qg, num_bytes)) { ret = -EDQUOT; goto out; } @@ -3284,6 +3340,9 @@ btrfs_warn(fs_info, "qgroup rescan init failed, qgroup is not enabled"); ret = -EINVAL; + } else if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) { + /* Quota disable is in progress */ + ret = -EBUSY; } if (ret) { @@ -3411,28 +3470,150 @@ } } +#define rbtree_iterate_from_safe(node, next, start) \ + for (node = start; node && ({ next = rb_next(node); 1;}); node = next) + +static int qgroup_unreserve_range(struct btrfs_inode *inode, + struct extent_changeset *reserved, u64 start, + u64 len) +{ + struct rb_node *node; + struct rb_node *next; + struct ulist_node *entry = NULL; + int ret = 0; + + node = reserved->range_changed.root.rb_node; + while (node) { + entry = rb_entry(node, struct ulist_node, rb_node); + if (entry->val < start) + node = node->rb_right; + else if (entry) + node = node->rb_left; + else + break; + } + + /* Empty changeset */ + if (!entry) + return 0; + + if (entry->val > start && rb_prev(&entry->rb_node)) + entry = rb_entry(rb_prev(&entry->rb_node), struct ulist_node, + rb_node); + + rbtree_iterate_from_safe(node, next, &entry->rb_node) { + u64 entry_start; + u64 entry_end; + u64 entry_len; + int clear_ret; + + entry = rb_entry(node, struct ulist_node, rb_node); + entry_start = entry->val; + entry_end = entry->aux; + entry_len = entry_end - entry_start + 1; + + if (entry_start >= start + len) + break; + if (entry_start + entry_len <= start) + continue; + /* + * Now the entry is in [start, start + len), revert the + * EXTENT_QGROUP_RESERVED bit. + */ + clear_ret = clear_extent_bits(&inode->io_tree, entry_start, + entry_end, EXTENT_QGROUP_RESERVED); + if (!ret && clear_ret < 0) + ret = clear_ret; + + ulist_del(&reserved->range_changed, entry->val, entry->aux); + if (likely(reserved->bytes_changed >= entry_len)) { + reserved->bytes_changed -= entry_len; + } else { + WARN_ON(1); + reserved->bytes_changed = 0; + } + } + + return ret; +} + /* - * Reserve qgroup space for range [start, start + len). + * Try to free some space for qgroup. * - * This function will either reserve space from related qgroups or doing - * nothing if the range is already reserved. + * For qgroup, there are only 3 ways to free qgroup space: + * - Flush nodatacow write + * Any nodatacow write will free its reserved data space at run_delalloc_range(). + * In theory, we should only flush nodatacow inodes, but it's not yet + * possible, so we need to flush the whole root. * - * Return 0 for successful reserve - * Return <0 for error (including -EQUOT) + * - Wait for ordered extents + * When ordered extents are finished, their reserved metadata is finally + * converted to per_trans status, which can be freed by later commit + * transaction. * - * NOTE: this function may sleep for memory allocation. - * if btrfs_qgroup_reserve_data() is called multiple times with - * same @reserved, caller must ensure when error happens it's OK - * to free *ALL* reserved space. + * - Commit transaction + * This would free the meta_per_trans space. + * In theory this shouldn't provide much space, but any more qgroup space + * is needed. */ -int btrfs_qgroup_reserve_data(struct inode *inode, +static int try_flush_qgroup(struct btrfs_root *root) +{ + struct btrfs_trans_handle *trans; + int ret; + bool can_commit = true; + + /* + * We don't want to run flush again and again, so if there is a running + * one, we won't try to start a new flush, but exit directly. + */ + if (test_and_set_bit(BTRFS_ROOT_QGROUP_FLUSHING, &root->state)) { + wait_event(root->qgroup_flush_wait, + !test_bit(BTRFS_ROOT_QGROUP_FLUSHING, &root->state)); + return 0; + } + + /* + * If current process holds a transaction, we shouldn't flush, as we + * assume all space reservation happens before a transaction handle is + * held. + * + * But there are cases like btrfs_delayed_item_reserve_metadata() where + * we try to reserve space with one transction handle already held. + * In that case we can't commit transaction, but at least try to end it + * and hope the started data writes can free some space. + */ + if (current->journal_info && + current->journal_info != BTRFS_SEND_TRANS_STUB) + can_commit = false; + + ret = btrfs_start_delalloc_snapshot(root); + if (ret < 0) + goto out; + btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1); + + trans = btrfs_join_transaction(root); + if (IS_ERR(trans)) { + ret = PTR_ERR(trans); + goto out; + } + + if (can_commit) + ret = btrfs_commit_transaction(trans); + else + ret = btrfs_end_transaction(trans); +out: + clear_bit(BTRFS_ROOT_QGROUP_FLUSHING, &root->state); + wake_up(&root->qgroup_flush_wait); + return ret; +} + +static int qgroup_reserve_data(struct btrfs_inode *inode, struct extent_changeset **reserved_ret, u64 start, u64 len) { - struct btrfs_root *root = BTRFS_I(inode)->root; - struct ulist_node *unode; - struct ulist_iterator uiter; + struct btrfs_root *root = inode->root; struct extent_changeset *reserved; + bool new_reserved = false; u64 orig_reserved; u64 to_reserve; int ret; @@ -3445,6 +3626,7 @@ if (WARN_ON(!reserved_ret)) return -EINVAL; if (!*reserved_ret) { + new_reserved = true; *reserved_ret = extent_changeset_alloc(); if (!*reserved_ret) return -ENOMEM; @@ -3452,15 +3634,15 @@ reserved = *reserved_ret; /* Record already reserved space */ orig_reserved = reserved->bytes_changed; - ret = set_record_extent_bits(&BTRFS_I(inode)->io_tree, start, + ret = set_record_extent_bits(&inode->io_tree, start, start + len -1, EXTENT_QGROUP_RESERVED, reserved); /* Newly reserved space */ to_reserve = reserved->bytes_changed - orig_reserved; - trace_btrfs_qgroup_reserve_data(inode, start, len, + trace_btrfs_qgroup_reserve_data(&inode->vfs_inode, start, len, to_reserve, QGROUP_RESERVE); if (ret < 0) - goto cleanup; + goto out; ret = qgroup_reserve(root, to_reserve, true, BTRFS_QGROUP_RSV_DATA); if (ret < 0) goto cleanup; @@ -3468,23 +3650,49 @@ return ret; cleanup: - /* cleanup *ALL* already reserved ranges */ - ULIST_ITER_INIT(&uiter); - while ((unode = ulist_next(&reserved->range_changed, &uiter))) - clear_extent_bit(&BTRFS_I(inode)->io_tree, unode->val, - unode->aux, EXTENT_QGROUP_RESERVED, 0, 0, NULL); - /* Also free data bytes of already reserved one */ - btrfs_qgroup_free_refroot(root->fs_info, root->root_key.objectid, - orig_reserved, BTRFS_QGROUP_RSV_DATA); - extent_changeset_release(reserved); + qgroup_unreserve_range(inode, reserved, start, len); +out: + if (new_reserved) { + extent_changeset_release(reserved); + kfree(reserved); + *reserved_ret = NULL; + } return ret; } +/* + * Reserve qgroup space for range [start, start + len). + * + * This function will either reserve space from related qgroups or do nothing + * if the range is already reserved. + * + * Return 0 for successful reservation + * Return <0 for error (including -EQUOT) + * + * NOTE: This function may sleep for memory allocation, dirty page flushing and + * commit transaction. So caller should not hold any dirty page locked. + */ +int btrfs_qgroup_reserve_data(struct btrfs_inode *inode, + struct extent_changeset **reserved_ret, u64 start, + u64 len) +{ + int ret; + + ret = qgroup_reserve_data(inode, reserved_ret, start, len); + if (ret <= 0 && ret != -EDQUOT) + return ret; + + ret = try_flush_qgroup(inode->root); + if (ret < 0) + return ret; + return qgroup_reserve_data(inode, reserved_ret, start, len); +} + /* Free ranges specified by @reserved, normally in error path */ -static int qgroup_free_reserved_data(struct inode *inode, +static int qgroup_free_reserved_data(struct btrfs_inode *inode, struct extent_changeset *reserved, u64 start, u64 len) { - struct btrfs_root *root = BTRFS_I(inode)->root; + struct btrfs_root *root = inode->root; struct ulist_node *unode; struct ulist_iterator uiter; struct extent_changeset changeset; @@ -3520,8 +3728,8 @@ * EXTENT_QGROUP_RESERVED, we won't double free. * So not need to rush. */ - ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, - free_start, free_start + free_len - 1, + ret = clear_record_extent_bits(&inode->io_tree, free_start, + free_start + free_len - 1, EXTENT_QGROUP_RESERVED, &changeset); if (ret < 0) goto out; @@ -3550,7 +3758,8 @@ /* In release case, we shouldn't have @reserved */ WARN_ON(!free && reserved); if (free && reserved) - return qgroup_free_reserved_data(inode, reserved, start, len); + return qgroup_free_reserved_data(BTRFS_I(inode), reserved, + start, len); extent_changeset_init(&changeset); ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len -1, EXTENT_QGROUP_RESERVED, &changeset); @@ -3649,8 +3858,8 @@ return num_bytes; } -int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes, - enum btrfs_qgroup_rsv_type type, bool enforce) +int btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes, + enum btrfs_qgroup_rsv_type type, bool enforce) { struct btrfs_fs_info *fs_info = root->fs_info; int ret; @@ -3676,6 +3885,21 @@ return ret; } +int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes, + enum btrfs_qgroup_rsv_type type, bool enforce) +{ + int ret; + + ret = btrfs_qgroup_reserve_meta(root, num_bytes, type, enforce); + if (ret <= 0 && ret != -EDQUOT) + return ret; + + ret = try_flush_qgroup(root); + if (ret < 0) + return ret; + return btrfs_qgroup_reserve_meta(root, num_bytes, type, enforce); +} + void btrfs_qgroup_free_meta_all_pertrans(struct btrfs_root *root) { struct btrfs_fs_info *fs_info = root->fs_info; diff -u linux-azure-5.4.0/fs/btrfs/qgroup.h linux-azure-5.4.0/fs/btrfs/qgroup.h --- linux-azure-5.4.0/fs/btrfs/qgroup.h +++ linux-azure-5.4.0/fs/btrfs/qgroup.h @@ -344,12 +344,13 @@ #endif /* New io_tree based accurate qgroup reserve API */ -int btrfs_qgroup_reserve_data(struct inode *inode, +int btrfs_qgroup_reserve_data(struct btrfs_inode *inode, struct extent_changeset **reserved, u64 start, u64 len); int btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len); int btrfs_qgroup_free_data(struct inode *inode, struct extent_changeset *reserved, u64 start, u64 len); - +int btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes, + enum btrfs_qgroup_rsv_type type, bool enforce); int __btrfs_qgroup_reserve_meta(struct btrfs_root *root, int num_bytes, enum btrfs_qgroup_rsv_type type, bool enforce); /* Reserve metadata space for pertrans and prealloc type */ diff -u linux-azure-5.4.0/fs/btrfs/raid56.c linux-azure-5.4.0/fs/btrfs/raid56.c --- linux-azure-5.4.0/fs/btrfs/raid56.c +++ linux-azure-5.4.0/fs/btrfs/raid56.c @@ -334,6 +334,9 @@ { bio_list_merge(&dest->bio_list, &victim->bio_list); dest->bio_list_bytes += victim->bio_list_bytes; + /* Also inherit the bitmaps from @victim. */ + bitmap_or(dest->dbitmap, victim->dbitmap, dest->dbitmap, + dest->stripe_npages); dest->generic_bio_cnt += victim->generic_bio_cnt; bio_list_init(&victim->bio_list); } @@ -878,6 +881,12 @@ if (rbio->generic_bio_cnt) btrfs_bio_counter_sub(rbio->fs_info, rbio->generic_bio_cnt); + /* + * Clear the data bitmap, as the rbio may be cached for later usage. + * do this before before unlock_stripe() so there will be no new bio + * for this bio. + */ + bitmap_clear(rbio->dbitmap, 0, rbio->stripe_npages); /* * At this moment, rbio->bio_list is empty, however since rbio does not @@ -1213,4 +1222,7 @@ BUG(); + /* We should have at least one data sector. */ + ASSERT(bitmap_weight(rbio->dbitmap, rbio->stripe_npages)); + /* at this point we either have a full stripe, * or we've read the full stripe from the drive. @@ -1285,6 +1297,11 @@ for (stripe = 0; stripe < rbio->real_stripes; stripe++) { for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { struct page *page; + + /* This vertical stripe has no data, skip it. */ + if (!test_bit(pagenr, rbio->dbitmap)) + continue; + if (stripe < rbio->nr_data) { page = page_in_rbio(rbio, stripe, pagenr, 1); if (!page) @@ -1309,6 +1326,11 @@ for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { struct page *page; + + /* This vertical stripe has no data, skip it. */ + if (!test_bit(pagenr, rbio->dbitmap)) + continue; + if (stripe < rbio->nr_data) { page = page_in_rbio(rbio, stripe, pagenr, 1); if (!page) @@ -1748,6 +1770,33 @@ run_plug(plug); } +/* Add the original bio into rbio->bio_list, and update rbio::dbitmap. */ +static void rbio_add_bio(struct btrfs_raid_bio *rbio, struct bio *orig_bio) +{ + const struct btrfs_fs_info *fs_info = rbio->fs_info; + const u64 orig_logical = orig_bio->bi_iter.bi_sector << SECTOR_SHIFT; + const u64 full_stripe_start = rbio->bbio->raid_map[0]; + const u32 orig_len = orig_bio->bi_iter.bi_size; + const u32 sectorsize = fs_info->sectorsize; + u64 cur_logical; + + ASSERT(orig_logical >= full_stripe_start && + orig_logical + orig_len <= full_stripe_start + + rbio->nr_data * rbio->stripe_len); + + bio_list_add(&rbio->bio_list, orig_bio); + rbio->bio_list_bytes += orig_bio->bi_iter.bi_size; + + /* Update the dbitmap. */ + for (cur_logical = orig_logical; cur_logical < orig_logical + orig_len; + cur_logical += sectorsize) { + int bit = ((u32)(cur_logical - full_stripe_start) >> + PAGE_SHIFT) % rbio->stripe_npages; + + set_bit(bit, rbio->dbitmap); + } +} + /* * our main entry point for writes from the rest of the FS. */ @@ -1764,9 +1813,8 @@ btrfs_put_bbio(bbio); return PTR_ERR(rbio); } - bio_list_add(&rbio->bio_list, bio); - rbio->bio_list_bytes = bio->bi_iter.bi_size; rbio->operation = BTRFS_RBIO_WRITE; + rbio_add_bio(rbio, bio); btrfs_bio_counter_inc_noblocked(fs_info); rbio->generic_bio_cnt = 1; @@ -2068,9 +2116,12 @@ atomic_set(&rbio->error, 0); /* - * read everything that hasn't failed. Thanks to the - * stripe cache, it is possible that some or all of these - * pages are going to be uptodate. + * Read everything that hasn't failed. However this time we will + * not trust any cached sector. + * As we may read out some stale data but higher layer is not reading + * that stale part. + * + * So here we always re-read everything in recovery path. */ for (stripe = 0; stripe < rbio->real_stripes; stripe++) { if (rbio->faila == stripe || rbio->failb == stripe) { @@ -2079,16 +2130,6 @@ } for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { - struct page *p; - - /* - * the rmw code may have already read this - * page in - */ - p = rbio_stripe_page(rbio, stripe, pagenr); - if (PageUptodate(p)) - continue; - ret = rbio_add_io_page(rbio, &bio_list, rbio_stripe_page(rbio, stripe, pagenr), stripe, pagenr, rbio->stripe_len); @@ -2170,8 +2211,7 @@ } rbio->operation = BTRFS_RBIO_READ_REBUILD; - bio_list_add(&rbio->bio_list, bio); - rbio->bio_list_bytes = bio->bi_iter.bi_size; + rbio_add_bio(rbio, bio); rbio->faila = find_logical_bio_stripe(rbio, bio); if (rbio->faila == -1) { diff -u linux-azure-5.4.0/fs/btrfs/root-tree.c linux-azure-5.4.0/fs/btrfs/root-tree.c --- linux-azure-5.4.0/fs/btrfs/root-tree.c +++ linux-azure-5.4.0/fs/btrfs/root-tree.c @@ -371,8 +371,10 @@ key.offset = ref_id; again: ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1); - BUG_ON(ret < 0); - if (ret == 0) { + if (ret < 0) { + err = ret; + goto out; + } else if (ret == 0) { leaf = path->nodes[0]; ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); diff -u linux-azure-5.4.0/fs/btrfs/scrub.c linux-azure-5.4.0/fs/btrfs/scrub.c --- linux-azure-5.4.0/fs/btrfs/scrub.c +++ linux-azure-5.4.0/fs/btrfs/scrub.c @@ -3849,6 +3849,7 @@ int ret; struct btrfs_device *dev; unsigned int nofs_flag; + bool need_commit = false; if (btrfs_fs_closing(fs_info)) return -EAGAIN; @@ -3961,6 +3962,12 @@ */ nofs_flag = memalloc_nofs_save(); if (!is_dev_replace) { + u64 old_super_errors; + + spin_lock(&sctx->stat_lock); + old_super_errors = sctx->stat.super_errors; + spin_unlock(&sctx->stat_lock); + btrfs_info(fs_info, "scrub: started on devid %llu", devid); /* * by holding device list mutex, we can @@ -3969,6 +3976,16 @@ mutex_lock(&fs_info->fs_devices->device_list_mutex); ret = scrub_supers(sctx, dev); mutex_unlock(&fs_info->fs_devices->device_list_mutex); + + spin_lock(&sctx->stat_lock); + /* + * Super block errors found, but we can not commit transaction + * at current context, since btrfs_commit_transaction() needs + * to pause the current running scrub (hold by ourselves). + */ + if (sctx->stat.super_errors > old_super_errors && !sctx->readonly) + need_commit = true; + spin_unlock(&sctx->stat_lock); } if (!ret) @@ -3995,6 +4012,25 @@ scrub_workers_put(fs_info); scrub_put_ctx(sctx); + /* + * We found some super block errors before, now try to force a + * transaction commit, as scrub has finished. + */ + if (need_commit) { + struct btrfs_trans_handle *trans; + + trans = btrfs_start_transaction(fs_info->tree_root, 0); + if (IS_ERR(trans)) { + ret = PTR_ERR(trans); + btrfs_err(fs_info, + "scrub: failed to start transaction to fix super block errors: %d", ret); + return ret; + } + ret = btrfs_commit_transaction(trans); + if (ret < 0) + btrfs_err(fs_info, + "scrub: failed to commit transaction to fix super block errors: %d", ret); + } return ret; out: scrub_workers_put(fs_info); diff -u linux-azure-5.4.0/fs/btrfs/send.c linux-azure-5.4.0/fs/btrfs/send.c --- linux-azure-5.4.0/fs/btrfs/send.c +++ linux-azure-5.4.0/fs/btrfs/send.c @@ -4087,6 +4087,17 @@ if (ret < 0) goto out; } else { + /* + * If we previously orphanized a directory that + * collided with a new reference that we already + * processed, recompute the current path because + * that directory may be part of the path. + */ + if (orphanized_dir) { + ret = refresh_ref_path(sctx, cur); + if (ret < 0) + goto out; + } ret = send_unlink(sctx, cur->full_path); if (ret < 0) goto out; @@ -4994,6 +5005,10 @@ lock_page(page); if (!PageUptodate(page)) { unlock_page(page); + btrfs_err(fs_info, + "send: IO error at offset %llu for inode %llu root %llu", + page_offset(page), sctx->cur_ino, + sctx->send_root->root_key.objectid); put_page(page); ret = -EIO; break; diff -u linux-azure-5.4.0/fs/btrfs/space-info.c linux-azure-5.4.0/fs/btrfs/space-info.c --- linux-azure-5.4.0/fs/btrfs/space-info.c +++ linux-azure-5.4.0/fs/btrfs/space-info.c @@ -262,9 +262,10 @@ { lockdep_assert_held(&info->lock); - btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull", + /* The free space could be negative in case of overcommit */ + btrfs_info(fs_info, "space_info %llu has %lld free, is %sfull", info->flags, - info->total_bytes - btrfs_space_info_used(info, true), + (s64)(info->total_bytes - btrfs_space_info_used(info, true)), info->full ? "" : "not "); btrfs_info(fs_info, "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu", diff -u linux-azure-5.4.0/fs/btrfs/tests/qgroup-tests.c linux-azure-5.4.0/fs/btrfs/tests/qgroup-tests.c --- linux-azure-5.4.0/fs/btrfs/tests/qgroup-tests.c +++ linux-azure-5.4.0/fs/btrfs/tests/qgroup-tests.c @@ -237,8 +237,10 @@ ret = insert_normal_tree_ref(root, nodesize, nodesize, 0, BTRFS_FS_TREE_OBJECTID); - if (ret) + if (ret) { + ulist_free(old_roots); return ret; + } ret = btrfs_find_all_roots(&trans, fs_info, nodesize, 0, &new_roots, false); @@ -273,8 +275,10 @@ } ret = remove_extent_item(root, nodesize, nodesize); - if (ret) + if (ret) { + ulist_free(old_roots); return -EINVAL; + } ret = btrfs_find_all_roots(&trans, fs_info, nodesize, 0, &new_roots, false); @@ -338,8 +342,10 @@ ret = insert_normal_tree_ref(root, nodesize, nodesize, 0, BTRFS_FS_TREE_OBJECTID); - if (ret) + if (ret) { + ulist_free(old_roots); return ret; + } ret = btrfs_find_all_roots(&trans, fs_info, nodesize, 0, &new_roots, false); @@ -373,8 +379,10 @@ ret = add_tree_ref(root, nodesize, nodesize, 0, BTRFS_FIRST_FREE_OBJECTID); - if (ret) + if (ret) { + ulist_free(old_roots); return ret; + } ret = btrfs_find_all_roots(&trans, fs_info, nodesize, 0, &new_roots, false); @@ -414,8 +422,10 @@ ret = remove_extent_ref(root, nodesize, nodesize, 0, BTRFS_FIRST_FREE_OBJECTID); - if (ret) + if (ret) { + ulist_free(old_roots); return ret; + } ret = btrfs_find_all_roots(&trans, fs_info, nodesize, 0, &new_roots, false); diff -u linux-azure-5.4.0/fs/btrfs/transaction.c linux-azure-5.4.0/fs/btrfs/transaction.c --- linux-azure-5.4.0/fs/btrfs/transaction.c +++ linux-azure-5.4.0/fs/btrfs/transaction.c @@ -27,7 +27,6 @@ static const unsigned int btrfs_blocked_trans_types[TRANS_STATE_MAX] = { [TRANS_STATE_RUNNING] = 0U, - [TRANS_STATE_BLOCKED] = __TRANS_START, [TRANS_STATE_COMMIT_START] = (__TRANS_START | __TRANS_ATTACH), [TRANS_STATE_COMMIT_DOING] = (__TRANS_START | __TRANS_ATTACH | @@ -388,7 +387,7 @@ static inline int is_transaction_blocked(struct btrfs_transaction *trans) { - return (trans->state >= TRANS_STATE_BLOCKED && + return (trans->state >= TRANS_STATE_COMMIT_START && trans->state < TRANS_STATE_UNBLOCKED && !TRANS_ABORTED(trans)); } @@ -580,7 +579,7 @@ INIT_LIST_HEAD(&h->new_bgs); smp_mb(); - if (cur_trans->state >= TRANS_STATE_BLOCKED && + if (cur_trans->state >= TRANS_STATE_COMMIT_START && may_wait_transaction(fs_info, type)) { current->journal_info = h; btrfs_commit_transaction(h); @@ -797,7 +796,7 @@ struct btrfs_transaction *cur_trans = trans->transaction; smp_mb(); - if (cur_trans->state >= TRANS_STATE_BLOCKED || + if (cur_trans->state >= TRANS_STATE_COMMIT_START || cur_trans->delayed_refs.flushing) return 1; @@ -830,7 +829,6 @@ { struct btrfs_fs_info *info = trans->fs_info; struct btrfs_transaction *cur_trans = trans->transaction; - int lock = (trans->type != TRANS_JOIN_NOLOCK); int err = 0; if (refcount_read(&trans->use_count) > 1) { @@ -846,13 +844,6 @@ btrfs_trans_release_chunk_metadata(trans); - if (lock && READ_ONCE(cur_trans->state) == TRANS_STATE_BLOCKED) { - if (throttle) - return btrfs_commit_transaction(trans); - else - wake_up_process(info->transaction_kthread); - } - if (trans->type & __TRANS_FREEZABLE) sb_end_intwrite(info->sb); @@ -1274,8 +1265,10 @@ while (1) { trans = btrfs_start_transaction(root, 0); - if (IS_ERR(trans)) - return PTR_ERR(trans); + if (IS_ERR(trans)) { + ret = PTR_ERR(trans); + break; + } ret = btrfs_defrag_leaves(trans, root); @@ -2304,7 +2297,6 @@ */ cur_trans->state = TRANS_STATE_COMPLETED; wake_up(&cur_trans->commit_wait); - clear_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags); spin_lock(&fs_info->trans_lock); list_del_init(&cur_trans->list); diff -u linux-azure-5.4.0/fs/btrfs/transaction.h linux-azure-5.4.0/fs/btrfs/transaction.h --- linux-azure-5.4.0/fs/btrfs/transaction.h +++ linux-azure-5.4.0/fs/btrfs/transaction.h @@ -13,7 +13,6 @@ enum btrfs_trans_state { TRANS_STATE_RUNNING, - TRANS_STATE_BLOCKED, TRANS_STATE_COMMIT_START, TRANS_STATE_COMMIT_DOING, TRANS_STATE_UNBLOCKED, @@ -161,7 +160,7 @@ spin_lock(&BTRFS_I(inode)->lock); BTRFS_I(inode)->last_trans = trans->transaction->transid; BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; - BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit; + BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->last_sub_trans - 1; spin_unlock(&BTRFS_I(inode)->lock); } @@ -208,20 +207,6 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans); int btrfs_commit_transaction_async(struct btrfs_trans_handle *trans, int wait_for_unblock); - -/* - * Try to commit transaction asynchronously, so this is safe to call - * even holding a spinlock. - * - * It's done by informing transaction_kthread to commit transaction without - * waiting for commit interval. - */ -static inline void btrfs_commit_transaction_locksafe( - struct btrfs_fs_info *fs_info) -{ - set_bit(BTRFS_FS_NEED_ASYNC_COMMIT, &fs_info->flags); - wake_up_process(fs_info->transaction_kthread); -} int btrfs_end_transaction_throttle(struct btrfs_trans_handle *trans); int btrfs_should_end_transaction(struct btrfs_trans_handle *trans); void btrfs_throttle(struct btrfs_fs_info *fs_info); diff -u linux-azure-5.4.0/fs/btrfs/tree-checker.c linux-azure-5.4.0/fs/btrfs/tree-checker.c --- linux-azure-5.4.0/fs/btrfs/tree-checker.c +++ linux-azure-5.4.0/fs/btrfs/tree-checker.c @@ -1019,7 +1019,8 @@ } static int check_extent_item(struct extent_buffer *leaf, - struct btrfs_key *key, int slot) + struct btrfs_key *key, int slot, + struct btrfs_key *prev_key) { struct btrfs_fs_info *fs_info = leaf->fs_info; struct btrfs_extent_item *ei; @@ -1230,6 +1231,26 @@ total_refs, inline_refs); return -EUCLEAN; } + + if ((prev_key->type == BTRFS_EXTENT_ITEM_KEY) || + (prev_key->type == BTRFS_METADATA_ITEM_KEY)) { + u64 prev_end = prev_key->objectid; + + if (prev_key->type == BTRFS_METADATA_ITEM_KEY) + prev_end += fs_info->nodesize; + else + prev_end += prev_key->offset; + + if (unlikely(prev_end > key->objectid)) { + extent_err(leaf, slot, + "previous extent [%llu %u %llu] overlaps current extent [%llu %u %llu]", + prev_key->objectid, prev_key->type, + prev_key->offset, key->objectid, key->type, + key->offset); + return -EUCLEAN; + } + } + return 0; } @@ -1285,22 +1306,14 @@ return -EUCLEAN; } for (; ptr < end; ptr += sizeof(*dref)) { - u64 root_objectid; - u64 owner; u64 offset; - u64 hash; + /* + * We cannot check the extent_data_ref hash due to possible + * overflow from the leaf due to hash collisions. + */ dref = (struct btrfs_extent_data_ref *)ptr; - root_objectid = btrfs_extent_data_ref_root(leaf, dref); - owner = btrfs_extent_data_ref_objectid(leaf, dref); offset = btrfs_extent_data_ref_offset(leaf, dref); - hash = hash_extent_data_ref(root_objectid, owner, offset); - if (hash != key->offset) { - extent_err(leaf, slot, - "invalid extent data ref hash, item has 0x%016llx key has 0x%016llx", - hash, key->offset); - return -EUCLEAN; - } if (!IS_ALIGNED(offset, leaf->fs_info->sectorsize)) { extent_err(leaf, slot, "invalid extent data backref offset, have %llu expect aligned to %u", @@ -1351,7 +1364,7 @@ break; case BTRFS_EXTENT_ITEM_KEY: case BTRFS_METADATA_ITEM_KEY: - ret = check_extent_item(leaf, key, slot); + ret = check_extent_item(leaf, key, slot, prev_key); break; case BTRFS_TREE_BLOCK_REF_KEY: case BTRFS_SHARED_DATA_REF_KEY: diff -u linux-azure-5.4.0/fs/btrfs/tree-log.c linux-azure-5.4.0/fs/btrfs/tree-log.c --- linux-azure-5.4.0/fs/btrfs/tree-log.c +++ linux-azure-5.4.0/fs/btrfs/tree-log.c @@ -174,7 +174,7 @@ atomic_inc(&root->log_batch); atomic_inc(&root->log_writers); - if (ctx) { + if (ctx && !ctx->logging_new_name) { int index = root->log_transid % 2; list_add_tail(&ctx->list, &root->log_ctxs[index]); ctx->log_transid = root->log_transid; @@ -719,7 +719,9 @@ */ ret = btrfs_lookup_data_extent(fs_info, ins.objectid, ins.offset); - if (ret == 0) { + if (ret < 0) { + goto out; + } else if (ret == 0) { btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, ins.objectid, ins.offset, 0); @@ -898,9 +900,11 @@ } /* - * helper function to see if a given name and sequence number found - * in an inode back reference are already in a directory and correctly - * point to this inode + * See if a given name and sequence number found in an inode back reference are + * already in a directory and correctly point to this inode. + * + * Returns: < 0 on error, 0 if the directory entry does not exists and 1 if it + * exists. */ static noinline int inode_in_dir(struct btrfs_root *root, struct btrfs_path *path, @@ -909,29 +913,34 @@ { struct btrfs_dir_item *di; struct btrfs_key location; - int match = 0; + int ret = 0; di = btrfs_lookup_dir_index_item(NULL, root, path, dirid, index, name, name_len, 0); - if (di && !IS_ERR(di)) { + if (IS_ERR(di)) { + ret = PTR_ERR(di); + goto out; + } else if (di) { btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); if (location.objectid != objectid) goto out; - } else + } else { goto out; - btrfs_release_path(path); + } + btrfs_release_path(path); di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0); - if (di && !IS_ERR(di)) { - btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); - if (location.objectid != objectid) - goto out; - } else + if (IS_ERR(di)) { + ret = PTR_ERR(di); goto out; - match = 1; + } else if (di) { + btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); + if (location.objectid == objectid) + ret = 1; + } out: btrfs_release_path(path); - return match; + return ret; } /* @@ -1090,7 +1099,9 @@ extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen, inode_objectid, parent_objectid, 0, 0); - if (!IS_ERR_OR_NULL(extref)) { + if (IS_ERR(extref)) { + return PTR_ERR(extref); + } else if (extref) { u32 item_size; u32 cur_offset = 0; unsigned long base; @@ -1158,7 +1169,9 @@ /* look for a conflicting sequence number */ di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir), ref_index, name, namelen, 0); - if (di && !IS_ERR(di)) { + if (IS_ERR(di)) { + return PTR_ERR(di); + } else if (di) { ret = drop_one_dir_item(trans, root, path, dir, di); if (ret) return ret; @@ -1168,7 +1181,9 @@ /* look for a conflicting name */ di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir), name, namelen, 0); - if (di && !IS_ERR(di)) { + if (IS_ERR(di)) { + return PTR_ERR(di); + } else if (di) { ret = drop_one_dir_item(trans, root, path, dir, di); if (ret) return ret; @@ -1293,6 +1308,15 @@ inode, name, namelen); kfree(name); iput(dir); + /* + * Whenever we need to check if a name exists or not, we + * check the subvolume tree. So after an unlink we must + * run delayed items, so that future checks for a name + * during log replay see that the name does not exists + * anymore. + */ + if (!ret) + ret = btrfs_run_delayed_items(trans); if (ret) goto out; goto again; @@ -1493,10 +1517,12 @@ if (ret) goto out; - /* if we already have a perfect match, we're done */ - if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), - btrfs_ino(BTRFS_I(inode)), ref_index, - name, namelen)) { + ret = inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)), + btrfs_ino(BTRFS_I(inode)), ref_index, + name, namelen); + if (ret < 0) { + goto out; + } else if (ret == 0) { /* * look for a conflicting back reference in the * metadata. if we find one we have to unlink that name @@ -1542,6 +1568,15 @@ */ if (!ret && inode->i_nlink == 0) inc_nlink(inode); + /* + * Whenever we need to check if a name exists or + * not, we check the subvolume tree. So after an + * unlink we must run delayed items, so that future + * checks for a name during log replay see that the + * name does not exists anymore. + */ + if (!ret) + ret = btrfs_run_delayed_items(trans); } if (ret < 0) goto out; @@ -1554,6 +1589,7 @@ btrfs_update_inode(trans, root, inode); } + /* Else, ret == 1, we already have a perfect match, we're done. */ ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen; kfree(name); @@ -1775,6 +1811,7 @@ break; if (ret == 1) { + ret = 0; if (path->slots[0] == 0) break; path->slots[0]--; @@ -1787,17 +1824,19 @@ ret = btrfs_del_item(trans, root, path); if (ret) - goto out; + break; btrfs_release_path(path); inode = read_one_inode(root, key.offset); - if (!inode) - return -EIO; + if (!inode) { + ret = -EIO; + break; + } ret = fixup_inode_link_count(trans, root, inode); iput(inode); if (ret) - goto out; + break; /* * fixup on a directory may create new entries, @@ -1806,8 +1845,6 @@ */ key.offset = (u64)-1; } - ret = 0; -out: btrfs_release_path(path); return ret; } @@ -1941,8 +1978,8 @@ struct btrfs_key log_key; struct inode *dir; u8 log_type; - int exists; - int ret = 0; + bool exists; + int ret; bool update_size = (key->type == BTRFS_DIR_INDEX_KEY); bool name_added = false; @@ -1962,12 +1999,12 @@ name_len); btrfs_dir_item_key_to_cpu(eb, di, &log_key); - exists = btrfs_lookup_inode(trans, root, path, &log_key, 0); - if (exists == 0) - exists = 1; - else - exists = 0; + ret = btrfs_lookup_inode(trans, root, path, &log_key, 0); btrfs_release_path(path); + if (ret < 0) + goto out; + exists = (ret == 0); + ret = 0; if (key->type == BTRFS_DIR_ITEM_KEY) { dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid, @@ -1982,7 +2019,11 @@ ret = -EINVAL; goto out; } - if (IS_ERR_OR_NULL(dst_di)) { + + if (IS_ERR(dst_di)) { + ret = PTR_ERR(dst_di); + goto out; + } else if (!dst_di) { /* we need a sequence number to insert, so we only * do inserts for the BTRFS_DIR_INDEX_KEY types */ @@ -2263,7 +2304,7 @@ dir_key->offset, name, name_len, 0); } - if (!log_di || log_di == ERR_PTR(-ENOENT)) { + if (!log_di) { btrfs_dir_item_key_to_cpu(eb, di, &location); btrfs_release_path(path); btrfs_release_path(log_path); @@ -2464,7 +2505,9 @@ else { ret = find_dir_range(log, path, dirid, key_type, &range_start, &range_end); - if (ret != 0) + if (ret < 0) + goto out; + else if (ret > 0) break; } @@ -3474,8 +3517,7 @@ if (err == -ENOSPC) { btrfs_set_log_full_commit(trans); err = 0; - } else if (err < 0 && err != -ENOENT) { - /* ENOENT can be returned if the entry hasn't been fsynced yet */ + } else if (err < 0) { btrfs_abort_transaction(trans, err); } @@ -4221,7 +4263,7 @@ /* * Log all prealloc extents beyond the inode's i_size to make sure we do not - * lose them after doing a fast fsync and replaying the log. We scan the + * lose them after doing a full/fast fsync and replaying the log. We scan the * subvolume's root instead of iterating the inode's extent map tree because * otherwise we can log incorrect extent items based on extent map conversion. * That can happen due to the fact that extent maps are merged when they @@ -4922,7 +4964,7 @@ * Check the inode's logged_trans only instead of * btrfs_inode_in_log(). This is because the last_log_commit of * the inode is not updated when we only log that it exists and - * and it has the full sync bit set (see btrfs_log_inode()). + * it has the full sync bit set (see btrfs_log_inode()). */ if (BTRFS_I(inode)->logged_trans == trans->transid) { spin_unlock(&BTRFS_I(inode)->lock); @@ -5014,6 +5056,7 @@ struct btrfs_log_ctx *ctx, bool *need_log_inode_item) { + const u64 i_size = i_size_read(&inode->vfs_inode); struct btrfs_root *root = inode->root; int ins_start_slot = 0; int ins_nr = 0; @@ -5034,13 +5077,21 @@ if (min_key->type > max_key->type) break; - if (min_key->type == BTRFS_INODE_ITEM_KEY) + if (min_key->type == BTRFS_INODE_ITEM_KEY) { *need_log_inode_item = false; - - if ((min_key->type == BTRFS_INODE_REF_KEY || - min_key->type == BTRFS_INODE_EXTREF_KEY) && - inode->generation == trans->transid && - !recursive_logging) { + } else if (min_key->type == BTRFS_EXTENT_DATA_KEY && + min_key->offset >= i_size) { + /* + * Extents at and beyond eof are logged with + * btrfs_log_prealloc_extents(). + * Only regular files have BTRFS_EXTENT_DATA_KEY keys, + * and no keys greater than that, so bail out. + */ + break; + } else if ((min_key->type == BTRFS_INODE_REF_KEY || + min_key->type == BTRFS_INODE_EXTREF_KEY) && + inode->generation == trans->transid && + !recursive_logging) { u64 other_ino = 0; u64 other_parent = 0; @@ -5071,10 +5122,8 @@ btrfs_release_path(path); goto next_key; } - } - - /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */ - if (min_key->type == BTRFS_XATTR_ITEM_KEY) { + } else if (min_key->type == BTRFS_XATTR_ITEM_KEY) { + /* Skip xattrs, logged later with btrfs_log_all_xattrs() */ if (ins_nr == 0) goto next_slot; ret = copy_items(trans, inode, dst_path, path, @@ -5127,9 +5176,21 @@ break; } } - if (ins_nr) + if (ins_nr) { ret = copy_items(trans, inode, dst_path, path, ins_start_slot, ins_nr, inode_only, logged_isize); + if (ret) + return ret; + } + + if (inode_only == LOG_INODE_ALL && S_ISREG(inode->vfs_inode.i_mode)) { + /* + * Release the path because otherwise we might attempt to double + * lock the same leaf with btrfs_log_prealloc_extents() below. + */ + btrfs_release_path(path); + ret = btrfs_log_prealloc_extents(trans, inode, dst_path); + } return ret; } @@ -5230,6 +5291,18 @@ } /* + * For symlinks, we must always log their content, which is stored in an + * inline extent, otherwise we could end up with an empty symlink after + * log replay, which is invalid on linux (symlink(2) returns -ENOENT if + * one attempts to create an empty symlink). + * We don't need to worry about flushing delalloc, because when we create + * the inline extent when the symlink is created (we never have delalloc + * for symlinks). + */ + if (S_ISLNK(inode->vfs_inode.i_mode)) + inode_only = LOG_INODE_ALL; + + /* * a brute force approach to making sure we get the most uptodate * copies of everything. */ @@ -5378,19 +5451,34 @@ } /* - * Don't update last_log_commit if we logged that an inode exists after - * it was loaded to memory (full_sync bit set). - * This is to prevent data loss when we do a write to the inode, then - * the inode gets evicted after all delalloc was flushed, then we log - * it exists (due to a rename for example) and then fsync it. This last - * fsync would do nothing (not logging the extents previously written). + * If we are logging that an ancestor inode exists as part of logging a + * new name from a link or rename operation, don't mark the inode as + * logged - otherwise if an explicit fsync is made against an ancestor, + * the fsync considers the inode in the log and doesn't sync the log, + * resulting in the ancestor missing after a power failure unless the + * log was synced as part of an fsync against any other unrelated inode. + * So keep it simple for this case and just don't flag the ancestors as + * logged. */ - spin_lock(&inode->lock); - inode->logged_trans = trans->transid; - if (inode_only != LOG_INODE_EXISTS || - !test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags)) - inode->last_log_commit = inode->last_sub_trans; - spin_unlock(&inode->lock); + if (!ctx || + !(S_ISDIR(inode->vfs_inode.i_mode) && ctx->logging_new_name && + &inode->vfs_inode != ctx->inode)) { + spin_lock(&inode->lock); + inode->logged_trans = trans->transid; + /* + * Don't update last_log_commit if we logged that an inode exists + * after it was loaded to memory (full_sync bit set). + * This is to prevent data loss when we do a write to the inode, + * then the inode gets evicted after all delalloc was flushed, + * then we log it exists (due to a rename for example) and then + * fsync it. This last fsync would do nothing (not logging the + * extents previously written). + */ + if (inode_only != LOG_INODE_EXISTS || + !test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags)) + inode->last_log_commit = inode->last_sub_trans; + spin_unlock(&inode->lock); + } out_unlock: mutex_unlock(&inode->log_mutex); @@ -5627,7 +5715,7 @@ } ctx->log_new_dentries = false; - if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK) + if (type == BTRFS_FT_DIR) log_mode = LOG_INODE_ALL; ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode), log_mode, 0, LLONG_MAX, ctx); @@ -6326,6 +6414,7 @@ error: if (wc.trans) btrfs_end_transaction(wc.trans); + clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags); btrfs_free_path(path); return ret; } @@ -6415,26 +6504,12 @@ /* * Call this after adding a new name for a file and it will properly * update the log to reflect the new name. - * - * @ctx can not be NULL when @sync_log is false, and should be NULL when it's - * true (because it's not used). - * - * Return value depends on whether @sync_log is true or false. - * When true: returns BTRFS_NEED_TRANS_COMMIT if the transaction needs to be - * committed by the caller, and BTRFS_DONT_NEED_TRANS_COMMIT - * otherwise. - * When false: returns BTRFS_DONT_NEED_LOG_SYNC if the caller does not need to - * to sync the log, BTRFS_NEED_LOG_SYNC if it needs to sync the log, - * or BTRFS_NEED_TRANS_COMMIT if the transaction needs to be - * committed (without attempting to sync the log). */ -int btrfs_log_new_name(struct btrfs_trans_handle *trans, +void btrfs_log_new_name(struct btrfs_trans_handle *trans, struct btrfs_inode *inode, struct btrfs_inode *old_dir, - struct dentry *parent, - bool sync_log, struct btrfs_log_ctx *ctx) + struct dentry *parent) { - struct btrfs_fs_info *fs_info = trans->fs_info; - int ret; + struct btrfs_log_ctx ctx; /* * this will force the logging code to walk the dentry chain @@ -6448,35 +6523,19 @@ * from hasn't been logged, we don't need to log it */ - if (inode->logged_trans <= fs_info->last_trans_committed && - (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed)) - return sync_log ? BTRFS_DONT_NEED_TRANS_COMMIT : - BTRFS_DONT_NEED_LOG_SYNC; - - if (sync_log) { - struct btrfs_log_ctx ctx2; - - btrfs_init_log_ctx(&ctx2, &inode->vfs_inode); - ret = btrfs_log_inode_parent(trans, inode, parent, 0, LLONG_MAX, - LOG_INODE_EXISTS, &ctx2); - if (ret == BTRFS_NO_LOG_SYNC) - return BTRFS_DONT_NEED_TRANS_COMMIT; - else if (ret) - return BTRFS_NEED_TRANS_COMMIT; - - ret = btrfs_sync_log(trans, inode->root, &ctx2); - if (ret) - return BTRFS_NEED_TRANS_COMMIT; - return BTRFS_DONT_NEED_TRANS_COMMIT; - } - - ASSERT(ctx); - ret = btrfs_log_inode_parent(trans, inode, parent, 0, LLONG_MAX, - LOG_INODE_EXISTS, ctx); - if (ret == BTRFS_NO_LOG_SYNC) - return BTRFS_DONT_NEED_LOG_SYNC; - else if (ret) - return BTRFS_NEED_TRANS_COMMIT; + if (!inode_logged(trans, inode) && + (!old_dir || !inode_logged(trans, old_dir))) + return; - return BTRFS_NEED_LOG_SYNC; + btrfs_init_log_ctx(&ctx, &inode->vfs_inode); + ctx.logging_new_name = true; + /* + * We don't care about the return value. If we fail to log the new name + * then we know the next attempt to sync the log will fallback to a full + * transaction commit (due to a call to btrfs_set_log_full_commit()), so + * we don't need to worry about getting a log committed that has an + * inconsistent state after a rename operation. + */ + btrfs_log_inode_parent(trans, inode, parent, 0, LLONG_MAX, + LOG_INODE_EXISTS, &ctx); } diff -u linux-azure-5.4.0/fs/btrfs/volumes.c linux-azure-5.4.0/fs/btrfs/volumes.c --- linux-azure-5.4.0/fs/btrfs/volumes.c +++ linux-azure-5.4.0/fs/btrfs/volumes.c @@ -713,15 +713,47 @@ run_scheduled_bios(device); } -static bool device_path_matched(const char *path, struct btrfs_device *device) +/* + * Check if the device in the path matches the device in the given struct device. + * + * Returns: + * true If it is the same device. + * false If it is not the same device or on error. + */ +static bool device_matched(const struct btrfs_device *device, const char *path) { - int found; + char *device_name; + struct block_device *bdev_old; + struct block_device *bdev_new; + + /* + * If we are looking for a device with the matching dev_t, then skip + * device without a name (a missing device). + */ + if (!device->name) + return false; + + device_name = kzalloc(BTRFS_PATH_NAME_MAX, GFP_KERNEL); + if (!device_name) + return false; rcu_read_lock(); - found = strcmp(rcu_str_deref(device->name), path); + scnprintf(device_name, BTRFS_PATH_NAME_MAX, "%s", rcu_str_deref(device->name)); rcu_read_unlock(); - return found == 0; + bdev_old = lookup_bdev(device_name); + kfree(device_name); + if (IS_ERR(bdev_old)) + return false; + + bdev_new = lookup_bdev(path); + if (IS_ERR(bdev_new)) + return false; + + if (bdev_old == bdev_new) + return true; + + return false; } /* @@ -742,6 +774,8 @@ struct btrfs_device *device, *tmp_device; int ret = 0; + lockdep_assert_held(&uuid_mutex); + if (path) ret = -ENOENT; @@ -752,9 +786,7 @@ &fs_devices->devices, dev_list) { if (skip_device && skip_device == device) continue; - if (path && !device->name) - continue; - if (path && !device_path_matched(path, device)) + if (path && !device_matched(device, path)) continue; if (fs_devices->opened) { /* for an already deleted device return 0 */ @@ -1181,11 +1213,12 @@ struct btrfs_device *orig_dev; int ret = 0; + lockdep_assert_held(&uuid_mutex); + fs_devices = alloc_fs_devices(orig->fsid, NULL); if (IS_ERR(fs_devices)) return fs_devices; - mutex_lock(&orig->device_list_mutex); fs_devices->total_devices = orig->total_devices; list_for_each_entry(orig_dev, &orig->devices, dev_list) { @@ -1217,10 +1250,8 @@ device->fs_devices = fs_devices; fs_devices->num_devices++; } - mutex_unlock(&orig->device_list_mutex); return fs_devices; error: - mutex_unlock(&orig->device_list_mutex); free_fs_devices(fs_devices); return ERR_PTR(ret); } @@ -1266,6 +1297,7 @@ if (test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) { list_del_init(&device->dev_alloc_list); clear_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state); + fs_devices->rw_devices--; } list_del_init(&device->dev_list); fs_devices->num_devices--; @@ -1310,8 +1342,13 @@ fs_devices->rw_devices--; } - if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) + if (device->devid == BTRFS_DEV_REPLACE_DEVID) + clear_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state); + + if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state)) { + clear_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state); fs_devices->missing_devices--; + } btrfs_close_bdev(device); @@ -2155,8 +2192,11 @@ u64 num_devices; int ret = 0; - mutex_lock(&uuid_mutex); - + /* + * The device list in fs_devices is accessed without locks (neither + * uuid_mutex nor device_list_mutex) as it won't change on a mounted + * filesystem and another device rm cannot run. + */ num_devices = btrfs_num_devices(fs_info); ret = btrfs_check_raid_min_devices(fs_info, num_devices - 1); @@ -2167,7 +2207,7 @@ if (IS_ERR(device)) { if (PTR_ERR(device) == -ENOENT && - strcmp(device_path, "missing") == 0) + device_path && strcmp(device_path, "missing") == 0) ret = BTRFS_ERROR_DEV_MISSING_NOT_FOUND; else ret = PTR_ERR(device); @@ -2200,11 +2240,9 @@ mutex_unlock(&fs_info->chunk_mutex); } - mutex_unlock(&uuid_mutex); ret = btrfs_shrink_device(device, 0); if (!ret) btrfs_reada_remove_dev(device); - mutex_lock(&uuid_mutex); if (ret) goto error_undo; @@ -2286,7 +2324,6 @@ } out: - mutex_unlock(&uuid_mutex); return ret; error_undo: @@ -4313,10 +4350,12 @@ struct btrfs_fs_info *fs_info = data; int ret = 0; + sb_start_write(fs_info->sb); mutex_lock(&fs_info->balance_mutex); if (fs_info->balance_ctl) ret = btrfs_balance(fs_info, fs_info->balance_ctl, NULL); mutex_unlock(&fs_info->balance_mutex); + sb_end_write(fs_info->sb); return ret; } @@ -7374,12 +7413,12 @@ * do another round of validation checks. */ if (total_dev != fs_info->fs_devices->total_devices) { - btrfs_err(fs_info, - "super_num_devices %llu mismatch with num_devices %llu found here", + btrfs_warn(fs_info, +"super block num_devices %llu mismatch with DEV_ITEM count %llu, will be repaired on next transaction commit", btrfs_super_num_devices(fs_info->super_copy), total_dev); - ret = -EINVAL; - goto error; + fs_info->fs_devices->total_devices = total_dev; + btrfs_set_super_num_devices(fs_info->super_copy, total_dev); } if (btrfs_super_total_bytes(fs_info->super_copy) < fs_info->fs_devices->total_rw_bytes) { diff -u linux-azure-5.4.0/fs/btrfs/xattr.c linux-azure-5.4.0/fs/btrfs/xattr.c --- linux-azure-5.4.0/fs/btrfs/xattr.c +++ linux-azure-5.4.0/fs/btrfs/xattr.c @@ -387,6 +387,9 @@ const char *name, const void *buffer, size_t size, int flags) { + if (btrfs_root_readonly(BTRFS_I(inode)->root)) + return -EROFS; + name = xattr_full_name(handler, name); return btrfs_setxattr_trans(inode, name, buffer, size, flags); } diff -u linux-azure-5.4.0/fs/cachefiles/rdwr.c linux-azure-5.4.0/fs/cachefiles/rdwr.c --- linux-azure-5.4.0/fs/cachefiles/rdwr.c +++ linux-azure-5.4.0/fs/cachefiles/rdwr.c @@ -508,8 +508,6 @@ goto installed_new_backing_page; if (ret != -EEXIST) goto nomem; - put_page(newpage); - newpage = NULL; } /* we've installed a new backing page, so now we need diff -u linux-azure-5.4.0/fs/ceph/addr.c linux-azure-5.4.0/fs/ceph/addr.c --- linux-azure-5.4.0/fs/ceph/addr.c +++ linux-azure-5.4.0/fs/ceph/addr.c @@ -76,10 +76,6 @@ struct inode *inode; struct ceph_inode_info *ci; struct ceph_snap_context *snapc; - int ret; - - if (unlikely(!mapping)) - return !TestSetPageDirty(page); if (PageDirty(page)) { dout("%p set_page_dirty %p idx %lu -- already dirty\n", @@ -125,11 +121,7 @@ page->private = (unsigned long)snapc; SetPagePrivate(page); - ret = __set_page_dirty_nobuffers(page); - WARN_ON(!PageLocked(page)); - WARN_ON(!page->mapping); - - return ret; + return __set_page_dirty_nobuffers(page); } /* diff -u linux-azure-5.4.0/fs/ceph/caps.c linux-azure-5.4.0/fs/ceph/caps.c --- linux-azure-5.4.0/fs/ceph/caps.c +++ linux-azure-5.4.0/fs/ceph/caps.c @@ -1775,6 +1775,8 @@ * try to invalidate mapping pages without blocking. */ static int try_nonblocking_invalidate(struct inode *inode) + __releases(ci->i_ceph_lock) + __acquires(ci->i_ceph_lock) { struct ceph_inode_info *ci = ceph_inode(inode); u32 invalidating_gen = ci->i_rdcache_gen; @@ -2247,7 +2249,6 @@ int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync) { - struct ceph_file_info *fi = file->private_data; struct inode *inode = file->f_mapping->host; struct ceph_inode_info *ci = ceph_inode(inode); u64 flush_tid; @@ -2278,14 +2279,9 @@ if (err < 0) ret = err; - if (errseq_check(&ci->i_meta_err, READ_ONCE(fi->meta_err))) { - spin_lock(&file->f_lock); - err = errseq_check_and_advance(&ci->i_meta_err, - &fi->meta_err); - spin_unlock(&file->f_lock); - if (err < 0) - ret = err; - } + err = file_check_and_advance_wb_err(file); + if (err < 0) + ret = err; out: dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret); return ret; @@ -4053,12 +4049,20 @@ /* * Delayed work handler to process end of delayed cap release LRU list. + * + * If new caps are added to the list while processing it, these won't get + * processed in this run. In this case, the ci->i_hold_caps_max will be + * returned so that the work can be scheduled accordingly. */ -void ceph_check_delayed_caps(struct ceph_mds_client *mdsc) +unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc) { struct inode *inode; struct ceph_inode_info *ci; int flags = CHECK_CAPS_NODELAY; + struct ceph_mount_options *opt = mdsc->fsc->mount_options; + unsigned long delay_max = opt->caps_wanted_delay_max * HZ; + unsigned long loop_start = jiffies; + unsigned long delay = 0; dout("check_delayed_caps\n"); while (1) { @@ -4068,6 +4072,11 @@ ci = list_first_entry(&mdsc->cap_delay_list, struct ceph_inode_info, i_cap_delay_list); + if (time_before(loop_start, ci->i_hold_caps_max - delay_max)) { + dout("%s caps added recently. Exiting loop", __func__); + delay = ci->i_hold_caps_max; + break; + } if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 && time_before(jiffies, ci->i_hold_caps_max)) break; @@ -4084,6 +4093,8 @@ } } spin_unlock(&mdsc->cap_delay_lock); + + return delay; } /* diff -u linux-azure-5.4.0/fs/ceph/file.c linux-azure-5.4.0/fs/ceph/file.c --- linux-azure-5.4.0/fs/ceph/file.c +++ linux-azure-5.4.0/fs/ceph/file.c @@ -234,7 +234,6 @@ fi->fmode = fmode; spin_lock_init(&fi->rw_contexts_lock); INIT_LIST_HEAD(&fi->rw_contexts); - fi->meta_err = errseq_sample(&ci->i_meta_err); fi->filp_gen = READ_ONCE(ceph_inode_to_client(inode)->filp_gen); return 0; @@ -453,6 +452,12 @@ if (dentry->d_name.len > NAME_MAX) return -ENAMETOOLONG; + /* + * Do not truncate the file, since atomic_open is called before the + * permission check. The caller will do the truncation afterward. + */ + flags &= ~O_TRUNC; + if (flags & O_CREAT) { if (ceph_quota_is_max_files_exceeded(dir)) return -EDQUOT; @@ -491,9 +496,7 @@ req->r_parent = dir; set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags); - err = ceph_mdsc_do_request(mdsc, - (flags & (O_CREAT|O_TRUNC)) ? dir : NULL, - req); + err = ceph_mdsc_do_request(mdsc, (flags & O_CREAT) ? dir : NULL, req); err = ceph_handle_snapdir(req, dentry, err); if (err) goto out_req; @@ -1469,32 +1472,26 @@ goto out; } - err = file_remove_privs(file); - if (err) + down_read(&osdc->lock); + map_flags = osdc->osdmap->flags; + pool_flags = ceph_pg_pool_flags(osdc->osdmap, ci->i_layout.pool_id); + up_read(&osdc->lock); + if ((map_flags & CEPH_OSDMAP_FULL) || + (pool_flags & CEPH_POOL_FLAG_FULL)) { + err = -ENOSPC; goto out; + } - err = file_update_time(file); + err = file_remove_privs(file); if (err) goto out; - inode_inc_iversion_raw(inode); - if (ci->i_inline_version != CEPH_INLINE_NONE) { err = ceph_uninline_data(file, NULL); if (err < 0) goto out; } - down_read(&osdc->lock); - map_flags = osdc->osdmap->flags; - pool_flags = ceph_pg_pool_flags(osdc->osdmap, ci->i_layout.pool_id); - up_read(&osdc->lock); - if ((map_flags & CEPH_OSDMAP_FULL) || - (pool_flags & CEPH_POOL_FLAG_FULL)) { - err = -ENOSPC; - goto out; - } - dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n", inode, ceph_vinop(inode), pos, count, i_size_read(inode)); if (fi->fmode & CEPH_FILE_MODE_LAZY) @@ -1507,6 +1504,12 @@ if (err < 0) goto out; + err = file_update_time(file); + if (err) + goto out_caps; + + inode_inc_iversion_raw(inode); + dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n", inode, ceph_vinop(inode), pos, count, ceph_cap_string(got)); @@ -1590,6 +1593,8 @@ } goto out_unlocked; +out_caps: + ceph_put_cap_refs(ci, got); out: if (direct_lock) ceph_end_io_direct(inode); diff -u linux-azure-5.4.0/fs/ceph/inode.c linux-azure-5.4.0/fs/ceph/inode.c --- linux-azure-5.4.0/fs/ceph/inode.c +++ linux-azure-5.4.0/fs/ceph/inode.c @@ -514,8 +514,6 @@ ceph_fscache_inode_init(ci); - ci->i_meta_err = 0; - return &ci->vfs_inode; } diff -u linux-azure-5.4.0/fs/ceph/mds_client.c linux-azure-5.4.0/fs/ceph/mds_client.c --- linux-azure-5.4.0/fs/ceph/mds_client.c +++ linux-azure-5.4.0/fs/ceph/mds_client.c @@ -1272,7 +1272,6 @@ { struct ceph_mds_request *req; struct rb_node *p; - struct ceph_inode_info *ci; dout("cleanup_session_requests mds%d\n", session->s_mds); mutex_lock(&mdsc->mutex); @@ -1281,16 +1280,10 @@ struct ceph_mds_request, r_unsafe_item); pr_warn_ratelimited(" dropping unsafe request %llu\n", req->r_tid); - if (req->r_target_inode) { - /* dropping unsafe change of inode's attributes */ - ci = ceph_inode(req->r_target_inode); - errseq_set(&ci->i_meta_err, -EIO); - } - if (req->r_unsafe_dir) { - /* dropping unsafe directory operation */ - ci = ceph_inode(req->r_unsafe_dir); - errseq_set(&ci->i_meta_err, -EIO); - } + if (req->r_target_inode) + mapping_set_error(req->r_target_inode->i_mapping, -EIO); + if (req->r_unsafe_dir) + mapping_set_error(req->r_unsafe_dir->i_mapping, -EIO); __unregister_request(mdsc, req); } /* zero r_attempts, so kick_requests() will re-send requests */ @@ -1436,7 +1429,7 @@ spin_unlock(&mdsc->cap_dirty_lock); if (dirty_dropped) { - errseq_set(&ci->i_meta_err, -EIO); + mapping_set_error(inode->i_mapping, -EIO); if (ci->i_wrbuffer_ref_head == 0 && ci->i_wr_ref == 0 && @@ -4049,22 +4042,29 @@ } /* - * delayed work -- periodically trim expired leases, renew caps with mds + * delayed work -- periodically trim expired leases, renew caps with mds. If + * the @delay parameter is set to 0 or if it's more than 5 secs, the default + * workqueue delay value of 5 secs will be used. */ -static void schedule_delayed(struct ceph_mds_client *mdsc) +static void schedule_delayed(struct ceph_mds_client *mdsc, unsigned long delay) { - int delay = 5; - unsigned hz = round_jiffies_relative(HZ * delay); - schedule_delayed_work(&mdsc->delayed_work, hz); + unsigned long max_delay = HZ * 5; + + /* 5 secs default delay */ + if (!delay || (delay > max_delay)) + delay = max_delay; + schedule_delayed_work(&mdsc->delayed_work, + round_jiffies_relative(delay)); } static void delayed_work(struct work_struct *work) { - int i; struct ceph_mds_client *mdsc = container_of(work, struct ceph_mds_client, delayed_work.work); + unsigned long delay; int renew_interval; int renew_caps; + int i; dout("mdsc delayed_work\n"); @@ -4119,7 +4119,7 @@ } mutex_unlock(&mdsc->mutex); - ceph_check_delayed_caps(mdsc); + delay = ceph_check_delayed_caps(mdsc); ceph_queue_cap_reclaim_work(mdsc); @@ -4127,7 +4127,7 @@ maybe_recover_session(mdsc); - schedule_delayed(mdsc); + schedule_delayed(mdsc, delay); } int ceph_mdsc_init(struct ceph_fs_client *fsc) @@ -4600,7 +4600,7 @@ mdsc->mdsmap->m_epoch); mutex_unlock(&mdsc->mutex); - schedule_delayed(mdsc); + schedule_delayed(mdsc, 0); return; bad_unlock: diff -u linux-azure-5.4.0/fs/ceph/snap.c linux-azure-5.4.0/fs/ceph/snap.c --- linux-azure-5.4.0/fs/ceph/snap.c +++ linux-azure-5.4.0/fs/ceph/snap.c @@ -60,24 +60,26 @@ /* * increase ref count for the realm * - * caller must hold snap_rwsem for write. + * caller must hold snap_rwsem. */ void ceph_get_snap_realm(struct ceph_mds_client *mdsc, struct ceph_snap_realm *realm) { - dout("get_realm %p %d -> %d\n", realm, - atomic_read(&realm->nref), atomic_read(&realm->nref)+1); + lockdep_assert_held(&mdsc->snap_rwsem); + /* - * since we _only_ increment realm refs or empty the empty - * list with snap_rwsem held, adjusting the empty list here is - * safe. we do need to protect against concurrent empty list - * additions, however. + * The 0->1 and 1->0 transitions must take the snap_empty_lock + * atomically with the refcount change. Go ahead and bump the + * nref here, unless it's 0, in which case we take the spinlock + * and then do the increment and remove it from the list. */ - if (atomic_inc_return(&realm->nref) == 1) { - spin_lock(&mdsc->snap_empty_lock); + if (atomic_inc_not_zero(&realm->nref)) + return; + + spin_lock(&mdsc->snap_empty_lock); + if (atomic_inc_return(&realm->nref) == 1) list_del_init(&realm->empty_item); - spin_unlock(&mdsc->snap_empty_lock); - } + spin_unlock(&mdsc->snap_empty_lock); } static void __insert_snap_realm(struct rb_root *root, @@ -113,6 +115,8 @@ { struct ceph_snap_realm *realm; + lockdep_assert_held_write(&mdsc->snap_rwsem); + realm = kzalloc(sizeof(*realm), GFP_NOFS); if (!realm) return ERR_PTR(-ENOMEM); @@ -135,7 +139,7 @@ /* * lookup the realm rooted at @ino. * - * caller must hold snap_rwsem for write. + * caller must hold snap_rwsem. */ static struct ceph_snap_realm *__lookup_snap_realm(struct ceph_mds_client *mdsc, u64 ino) @@ -143,6 +147,8 @@ struct rb_node *n = mdsc->snap_realms.rb_node; struct ceph_snap_realm *r; + lockdep_assert_held(&mdsc->snap_rwsem); + while (n) { r = rb_entry(n, struct ceph_snap_realm, node); if (ino < r->ino) @@ -176,6 +182,8 @@ static void __destroy_snap_realm(struct ceph_mds_client *mdsc, struct ceph_snap_realm *realm) { + lockdep_assert_held_write(&mdsc->snap_rwsem); + dout("__destroy_snap_realm %p %llx\n", realm, realm->ino); rb_erase(&realm->node, &mdsc->snap_realms); @@ -198,28 +206,30 @@ static void __put_snap_realm(struct ceph_mds_client *mdsc, struct ceph_snap_realm *realm) { - dout("__put_snap_realm %llx %p %d -> %d\n", realm->ino, realm, - atomic_read(&realm->nref), atomic_read(&realm->nref)-1); + lockdep_assert_held_write(&mdsc->snap_rwsem); + + /* + * We do not require the snap_empty_lock here, as any caller that + * increments the value must hold the snap_rwsem. + */ if (atomic_dec_and_test(&realm->nref)) __destroy_snap_realm(mdsc, realm); } /* - * caller needn't hold any locks + * See comments in ceph_get_snap_realm. Caller needn't hold any locks. */ void ceph_put_snap_realm(struct ceph_mds_client *mdsc, struct ceph_snap_realm *realm) { - dout("put_snap_realm %llx %p %d -> %d\n", realm->ino, realm, - atomic_read(&realm->nref), atomic_read(&realm->nref)-1); - if (!atomic_dec_and_test(&realm->nref)) + if (!atomic_dec_and_lock(&realm->nref, &mdsc->snap_empty_lock)) return; if (down_write_trylock(&mdsc->snap_rwsem)) { + spin_unlock(&mdsc->snap_empty_lock); __destroy_snap_realm(mdsc, realm); up_write(&mdsc->snap_rwsem); } else { - spin_lock(&mdsc->snap_empty_lock); list_add(&realm->empty_item, &mdsc->snap_empty); spin_unlock(&mdsc->snap_empty_lock); } @@ -236,6 +246,8 @@ { struct ceph_snap_realm *realm; + lockdep_assert_held_write(&mdsc->snap_rwsem); + spin_lock(&mdsc->snap_empty_lock); while (!list_empty(&mdsc->snap_empty)) { realm = list_first_entry(&mdsc->snap_empty, @@ -269,6 +281,8 @@ { struct ceph_snap_realm *parent; + lockdep_assert_held_write(&mdsc->snap_rwsem); + if (realm->parent_ino == parentino) return 0; @@ -686,6 +700,8 @@ int err = -ENOMEM; LIST_HEAD(dirty_realms); + lockdep_assert_held_write(&mdsc->snap_rwsem); + dout("update_snap_trace deletion=%d\n", deletion); more: ceph_decode_need(&p, e, sizeof(*ri), bad); diff -u linux-azure-5.4.0/fs/ceph/super.h linux-azure-5.4.0/fs/ceph/super.h --- linux-azure-5.4.0/fs/ceph/super.h +++ linux-azure-5.4.0/fs/ceph/super.h @@ -402,8 +402,6 @@ struct fscache_cookie *fscache; u32 i_fscache_gen; #endif - errseq_t i_meta_err; - struct inode vfs_inode; /* at end */ }; @@ -715,7 +713,6 @@ spinlock_t rw_contexts_lock; struct list_head rw_contexts; - errseq_t meta_err; u32 filp_gen; atomic_t num_locks; }; @@ -1067,7 +1064,7 @@ extern bool __ceph_should_report_size(struct ceph_inode_info *ci); extern void ceph_check_caps(struct ceph_inode_info *ci, int flags, struct ceph_mds_session *session); -extern void ceph_check_delayed_caps(struct ceph_mds_client *mdsc); +extern unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc); extern void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc); extern int ceph_drop_caps_for_unlink(struct inode *inode); extern int ceph_encode_inode_release(void **p, struct inode *inode, diff -u linux-azure-5.4.0/fs/cifs/cifs_dfs_ref.c linux-azure-5.4.0/fs/cifs/cifs_dfs_ref.c --- linux-azure-5.4.0/fs/cifs/cifs_dfs_ref.c +++ linux-azure-5.4.0/fs/cifs/cifs_dfs_ref.c @@ -151,6 +151,9 @@ return ERR_PTR(-EINVAL); if (ref) { + if (WARN_ON_ONCE(!ref->node_name || ref->path_consumed < 0)) + return ERR_PTR(-EINVAL); + if (strlen(fullpath) - ref->path_consumed) { prepath = fullpath + ref->path_consumed; /* skip initial delimiter */ @@ -173,7 +176,7 @@ } } - rc = dns_resolve_server_name_to_ip(name, &srvIP); + rc = dns_resolve_server_name_to_ip(name, &srvIP, NULL); if (rc < 0) { cifs_dbg(FYI, "%s: Failed to resolve server part of %s to IP: %d\n", __func__, name, rc); diff -u linux-azure-5.4.0/fs/cifs/cifs_unicode.c linux-azure-5.4.0/fs/cifs/cifs_unicode.c --- linux-azure-5.4.0/fs/cifs/cifs_unicode.c +++ linux-azure-5.4.0/fs/cifs/cifs_unicode.c @@ -358,14 +358,9 @@ if (!dst) return NULL; cifs_from_utf16(dst, (__le16 *) src, len, maxlen, codepage, - NO_MAP_UNI_RSVD); + NO_MAP_UNI_RSVD); } else { - len = strnlen(src, maxlen); - len++; - dst = kmalloc(len, GFP_KERNEL); - if (!dst) - return NULL; - strlcpy(dst, src, len); + dst = kstrndup(src, maxlen, GFP_KERNEL); } return dst; diff -u linux-azure-5.4.0/fs/cifs/cifsfs.c linux-azure-5.4.0/fs/cifs/cifsfs.c --- linux-azure-5.4.0/fs/cifs/cifsfs.c +++ linux-azure-5.4.0/fs/cifs/cifsfs.c @@ -863,6 +863,7 @@ out_super: deactivate_locked_super(sb); + return root; out: cifs_cleanup_volume_info(volume_info); return root; @@ -896,7 +897,7 @@ ssize_t rc; struct inode *inode = file_inode(iocb->ki_filp); - if (iocb->ki_filp->f_flags & O_DIRECT) + if (iocb->ki_flags & IOCB_DIRECT) return cifs_user_readv(iocb, iter); rc = cifs_revalidate_mapping(inode); diff -u linux-azure-5.4.0/fs/cifs/cifsglob.h linux-azure-5.4.0/fs/cifs/cifsglob.h --- linux-azure-5.4.0/fs/cifs/cifsglob.h +++ linux-azure-5.4.0/fs/cifs/cifsglob.h @@ -83,6 +83,10 @@ #define SMB_ECHO_INTERVAL_MAX 600 #define SMB_ECHO_INTERVAL_DEFAULT 60 +/* dns resolution intervals in seconds */ +#define SMB_DNS_RESOLVE_INTERVAL_MIN 120 +#define SMB_DNS_RESOLVE_INTERVAL_DEFAULT 600 + /* maximum number of PDUs in one compound */ #define MAX_COMPOUND 5 @@ -534,6 +538,7 @@ char *username; char *password; char *domainname; + char *server_hostname; char *UNC; char *iocharset; /* local code page for mapping to and from Unicode */ char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */ @@ -735,6 +740,7 @@ /* point to the SMBD connection if RDMA is used instead of socket */ struct smbd_connection *smbd_conn; struct delayed_work echo; /* echo ping workqueue job */ + struct delayed_work resolve; /* dns resolution workqueue job */ char *smallbuf; /* pointer to current "small" buffer */ char *bigbuf; /* pointer to current "big" buffer */ /* Total size of this PDU. Only valid from cifs_demultiplex_thread */ @@ -967,7 +973,7 @@ struct mutex session_mutex; struct TCP_Server_Info *server; /* pointer to server info */ int ses_count; /* reference counter */ - enum statusEnum status; + enum statusEnum status; /* updates protected by GlobalMid_Lock */ unsigned overrideSecFlg; /* if non-zero override global sec flags */ char *serverOS; /* name of operating system underlying server */ char *serverNOS; /* name of network operating system of server */ @@ -1817,6 +1823,7 @@ * list operations on pending_mid_q and oplockQ * updates to XID counters, multiplex id and SMB sequence numbers * list operations on global DnotifyReqList + * updates to ses->status * tcp_ses_lock protects: * list operations on tcp and SMB session lists * tcon->open_file_lock protects the list of open files hanging off the tcon @@ -1934,11 +1941,13 @@ /* Operations for different SMB versions */ #define SMB1_VERSION_STRING "1.0" +#define SMB20_VERSION_STRING "2.0" +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY extern struct smb_version_operations smb1_operations; extern struct smb_version_values smb1_values; -#define SMB20_VERSION_STRING "2.0" extern struct smb_version_operations smb20_operations; extern struct smb_version_values smb20_values; +#endif /* CIFS_ALLOW_INSECURE_LEGACY */ #define SMB21_VERSION_STRING "2.1" extern struct smb_version_operations smb21_operations; extern struct smb_version_values smb21_values; diff -u linux-azure-5.4.0/fs/cifs/connect.c linux-azure-5.4.0/fs/cifs/connect.c --- linux-azure-5.4.0/fs/cifs/connect.c +++ linux-azure-5.4.0/fs/cifs/connect.c @@ -348,6 +348,8 @@ int rc; int len; char *unc, *ipaddr = NULL; + time64_t expiry, now; + unsigned long ttl = SMB_DNS_RESOLVE_INTERVAL_DEFAULT; if (!server->hostname) return -EINVAL; @@ -361,13 +363,13 @@ } scnprintf(unc, len, "\\\\%s", server->hostname); - rc = dns_resolve_server_name_to_ip(unc, &ipaddr); + rc = dns_resolve_server_name_to_ip(unc, &ipaddr, &expiry); kfree(unc); if (rc < 0) { cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n", __func__, server->hostname, rc); - return rc; + goto requeue_resolve; } spin_lock(&cifs_tcp_ses_lock); @@ -376,7 +378,45 @@ spin_unlock(&cifs_tcp_ses_lock); kfree(ipaddr); - return !rc ? -1 : 0; + /* rc == 1 means success here */ + if (rc) { + now = ktime_get_real_seconds(); + if (expiry && expiry > now) + /* + * To make sure we don't use the cached entry, retry 1s + * after expiry. + */ + ttl = max_t(unsigned long, expiry - now, SMB_DNS_RESOLVE_INTERVAL_MIN) + 1; + } + rc = !rc ? -1 : 0; + +requeue_resolve: + cifs_dbg(FYI, "%s: next dns resolution scheduled for %lu seconds in the future\n", + __func__, ttl); + mod_delayed_work(cifsiod_wq, &server->resolve, (ttl * HZ)); + + return rc; +} + + +static void cifs_resolve_server(struct work_struct *work) +{ + int rc; + struct TCP_Server_Info *server = container_of(work, + struct TCP_Server_Info, resolve.work); + + mutex_lock(&server->srv_mutex); + + /* + * Resolve the hostname again to make sure that IP address is up-to-date. + */ + rc = reconn_set_ipaddr_from_hostname(server); + if (rc) { + cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n", + __func__, rc); + } + + mutex_unlock(&server->srv_mutex); } #ifdef CONFIG_CIFS_DFS_UPCALL @@ -801,9 +841,6 @@ int length = 0; int total_read; - smb_msg->msg_control = NULL; - smb_msg->msg_controllen = 0; - for (total_read = 0; msg_data_left(smb_msg); total_read += length) { try_to_freeze(); @@ -854,7 +891,7 @@ cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, unsigned int to_read) { - struct msghdr smb_msg; + struct msghdr smb_msg = {}; struct kvec iov = {.iov_base = buf, .iov_len = to_read}; iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read); @@ -865,7 +902,7 @@ cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page, unsigned int page_offset, unsigned int to_read) { - struct msghdr smb_msg; + struct msghdr smb_msg = {}; struct bio_vec bv = { .bv_page = page, .bv_len = to_read, .bv_offset = page_offset}; iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read); @@ -986,6 +1023,7 @@ spin_unlock(&cifs_tcp_ses_lock); cancel_delayed_work_sync(&server->echo); + cancel_delayed_work_sync(&server->resolve); spin_lock(&GlobalMid_Lock); server->tcpStatus = CifsExiting; @@ -1060,7 +1098,6 @@ */ } - kfree(server->hostname); kfree(server); length = atomic_dec_return(&tcpSesAllocCount); @@ -1612,6 +1649,11 @@ if (!pos) return -EINVAL; + /* record the server hostname */ + vol->server_hostname = kstrndup(devname + 2, pos - devname - 2, GFP_KERNEL); + if (!vol->server_hostname) + return -ENOMEM; + /* skip past delimiter */ ++pos; @@ -2469,6 +2511,12 @@ goto cifs_parse_mount_err; } #endif + + if (!vol->server_hostname) { + cifs_dbg(VFS, "CIFS mount error: Unable to parse server name in device string!\n"); + goto cifs_parse_mount_err; + } + if (!vol->UNC) { cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n"); goto cifs_parse_mount_err; @@ -2671,6 +2719,9 @@ if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns)) return 0; + if (strcasecmp(server->hostname, vol->server_hostname)) + return 0; + if (!match_address(server, addr, (struct sockaddr *)&vol->srcaddr)) return 0; @@ -2732,6 +2783,7 @@ spin_unlock(&cifs_tcp_ses_lock); cancel_delayed_work_sync(&server->echo); + cancel_delayed_work_sync(&server->resolve); if (from_reconnect) /* @@ -2754,6 +2806,7 @@ kfree(server->session_key.response); server->session_key.response = NULL; server->session_key.len = 0; + kfree(server->hostname); task = xchg(&server->tsk, NULL); if (task) @@ -2779,14 +2832,15 @@ goto out_err; } + tcp_ses->hostname = kstrdup(volume_info->server_hostname, GFP_KERNEL); + if (!tcp_ses->hostname) { + rc = -ENOMEM; + goto out_err; + } + tcp_ses->ops = volume_info->ops; tcp_ses->vals = volume_info->vals; cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns)); - tcp_ses->hostname = extract_hostname(volume_info->UNC); - if (IS_ERR(tcp_ses->hostname)) { - rc = PTR_ERR(tcp_ses->hostname); - goto out_err_crypto_release; - } tcp_ses->noblockcnt = volume_info->rootfs; tcp_ses->noblocksnd = volume_info->noblocksnd || volume_info->rootfs; @@ -2813,6 +2867,7 @@ INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); INIT_LIST_HEAD(&tcp_ses->smb_ses_list); INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request); + INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server); INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server); mutex_init(&tcp_ses->reconnect_mutex); memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr, @@ -2884,6 +2939,12 @@ /* queue echo request delayed work */ queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval); + /* queue dns resolution delayed work */ + cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n", + __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT); + + queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ)); + return tcp_ses; out_err_crypto_release: @@ -2893,8 +2954,7 @@ out_err: if (tcp_ses) { - if (!IS_ERR(tcp_ses->hostname)) - kfree(tcp_ses->hostname); + kfree(tcp_ses->hostname); if (tcp_ses->ssocket) sock_release(tcp_ses->ssocket); kfree(tcp_ses); @@ -3059,9 +3119,12 @@ spin_unlock(&cifs_tcp_ses_lock); return; } + spin_unlock(&cifs_tcp_ses_lock); + + spin_lock(&GlobalMid_Lock); if (ses->status == CifsGood) ses->status = CifsExiting; - spin_unlock(&cifs_tcp_ses_lock); + spin_unlock(&GlobalMid_Lock); cifs_free_ipc(ses); @@ -3698,9 +3761,10 @@ spin_lock(&cifs_tcp_ses_lock); cifs_sb = CIFS_SB(sb); tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); - if (IS_ERR(tlink)) { + if (tlink == NULL) { + /* can not match superblock if tlink were ever null */ spin_unlock(&cifs_tcp_ses_lock); - return rc; + return 0; } tcon = tlink_tcon(tlink); ses = tcon->ses; @@ -4219,6 +4283,7 @@ kfree(volume_info->username); kzfree(volume_info->password); kfree(volume_info->UNC); + kfree(volume_info->server_hostname); kfree(volume_info->domainname); kfree(volume_info->iocharset); kfree(volume_info->prepath); @@ -4488,6 +4553,12 @@ kfree(vol->UNC); vol->UNC = new_unc; + if (fake_vol->server_hostname) { + kfree(vol->server_hostname); + vol->server_hostname = fake_vol->server_hostname; + fake_vol->server_hostname = NULL; + } + if (fake_vol->prepath) { kfree(vol->prepath); vol->prepath = fake_vol->prepath; @@ -5289,6 +5360,7 @@ vol_info->linux_uid = fsuid; vol_info->cred_uid = fsuid; vol_info->UNC = master_tcon->treeName; + vol_info->server_hostname = master_tcon->ses->server->hostname; vol_info->retry = master_tcon->retry; vol_info->nocase = master_tcon->nocase; vol_info->nohandlecache = master_tcon->nohandlecache; diff -u linux-azure-5.4.0/fs/cifs/dfs_cache.c linux-azure-5.4.0/fs/cifs/dfs_cache.c --- linux-azure-5.4.0/fs/cifs/dfs_cache.c +++ linux-azure-5.4.0/fs/cifs/dfs_cache.c @@ -1107,11 +1107,17 @@ if (!new->domainname) goto err_free_unc; } + if (vol->server_hostname) { + new->server_hostname = kstrndup(vol->server_hostname, + strlen(vol->server_hostname), GFP_KERNEL); + if (!new->server_hostname) + goto err_free_domainname; + } if (vol->iocharset) { new->iocharset = kstrndup(vol->iocharset, strlen(vol->iocharset), GFP_KERNEL); if (!new->iocharset) - goto err_free_domainname; + goto err_free_server_hostname; } if (vol->prepath) { cifs_dbg(FYI, "%s: vol->prepath: %s\n", __func__, vol->prepath); @@ -1125,6 +1131,8 @@ err_free_iocharset: kfree(new->iocharset); +err_free_server_hostname: + kfree(new->server_hostname); err_free_domainname: kfree(new->domainname); err_free_unc: diff -u linux-azure-5.4.0/fs/cifs/file.c linux-azure-5.4.0/fs/cifs/file.c --- linux-azure-5.4.0/fs/cifs/file.c +++ linux-azure-5.4.0/fs/cifs/file.c @@ -2579,12 +2579,23 @@ tcon = tlink_tcon(smbfile->tlink); if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) { server = tcon->ses->server; - if (server->ops->flush) - rc = server->ops->flush(xid, tcon, &smbfile->fid); - else + if (server->ops->flush == NULL) { rc = -ENOSYS; + goto strict_fsync_exit; + } + + if ((OPEN_FMODE(smbfile->f_flags) & FMODE_WRITE) == 0) { + smbfile = find_writable_file(CIFS_I(inode), FIND_WR_ANY); + if (smbfile) { + rc = server->ops->flush(xid, tcon, &smbfile->fid); + cifsFileInfo_put(smbfile); + } else + cifs_dbg(FYI, "ignore fsync for file not open for write\n"); + } else + rc = server->ops->flush(xid, tcon, &smbfile->fid); } +strict_fsync_exit: free_xid(xid); return rc; } @@ -2596,6 +2607,7 @@ struct cifs_tcon *tcon; struct TCP_Server_Info *server; struct cifsFileInfo *smbfile = file->private_data; + struct inode *inode = file_inode(file); struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file); rc = file_write_and_wait_range(file, start, end); @@ -2610,12 +2622,23 @@ tcon = tlink_tcon(smbfile->tlink); if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) { server = tcon->ses->server; - if (server->ops->flush) - rc = server->ops->flush(xid, tcon, &smbfile->fid); - else + if (server->ops->flush == NULL) { rc = -ENOSYS; + goto fsync_exit; + } + + if ((OPEN_FMODE(smbfile->f_flags) & FMODE_WRITE) == 0) { + smbfile = find_writable_file(CIFS_I(inode), FIND_WR_ANY); + if (smbfile) { + rc = server->ops->flush(xid, tcon, &smbfile->fid); + cifsFileInfo_put(smbfile); + } else + cifs_dbg(FYI, "ignore fsync for file not open for write\n"); + } else + rc = server->ops->flush(xid, tcon, &smbfile->fid); } +fsync_exit: free_xid(xid); return rc; } @@ -2991,7 +3014,7 @@ struct cifs_tcon *tcon; struct cifs_sb_info *cifs_sb; struct dentry *dentry = ctx->cfile->dentry; - int rc; + ssize_t rc; tcon = tlink_tcon(ctx->cfile->tlink); cifs_sb = CIFS_SB(dentry->d_sb); @@ -3173,6 +3196,9 @@ ssize_t cifs_direct_writev(struct kiocb *iocb, struct iov_iter *from) { + struct file *file = iocb->ki_filp; + + cifs_revalidate_mapping(file->f_inode); return __cifs_writev(iocb, from, true); } @@ -3853,6 +3879,15 @@ len = ctx->len; } + if (direct) { + rc = filemap_write_and_wait_range(file->f_inode->i_mapping, + offset, offset + len - 1); + if (rc) { + kref_put(&ctx->refcount, cifs_aio_ctx_release); + return -EAGAIN; + } + } + /* grab a lock here due to read response handlers can access ctx */ mutex_lock(&ctx->aio_mutex); diff -u linux-azure-5.4.0/fs/cifs/smb2ops.c linux-azure-5.4.0/fs/cifs/smb2ops.c --- linux-azure-5.4.0/fs/cifs/smb2ops.c +++ linux-azure-5.4.0/fs/cifs/smb2ops.c @@ -498,8 +498,8 @@ p = buf; while (bytes_left >= sizeof(*p)) { info->speed = le64_to_cpu(p->LinkSpeed); - info->rdma_capable = le32_to_cpu(p->Capability & RDMA_CAPABLE); - info->rss_capable = le32_to_cpu(p->Capability & RSS_CAPABLE); + info->rdma_capable = le32_to_cpu(p->Capability & RDMA_CAPABLE) ? 1 : 0; + info->rss_capable = le32_to_cpu(p->Capability & RSS_CAPABLE) ? 1 : 0; cifs_dbg(FYI, "%s: adding iface %zu\n", __func__, *iface_count); cifs_dbg(FYI, "%s: speed %zu bps\n", __func__, info->speed); @@ -960,9 +960,7 @@ size_t name_len, value_len, user_name_len; while (src_size > 0) { - name = &src->ea_data[0]; name_len = (size_t)src->ea_name_length; - value = &src->ea_data[src->ea_name_length + 1]; value_len = (size_t)le16_to_cpu(src->ea_value_length); if (name_len == 0) @@ -974,6 +972,9 @@ goto out; } + name = &src->ea_data[0]; + value = &src->ea_data[src->ea_name_length + 1]; + if (ea_name) { if (ea_name_len == name_len && memcmp(ea_name, name, name_len) == 0) { @@ -1682,9 +1683,17 @@ int chunks_copied = 0; bool chunk_sizes_updated = false; ssize_t bytes_written, total_bytes_written = 0; + struct inode *inode; pcchunk = kmalloc(sizeof(struct copychunk_ioctl), GFP_KERNEL); + /* + * We need to flush all unwritten data before we can send the + * copychunk ioctl to the server. + */ + inode = d_inode(trgtfile->dentry); + filemap_write_and_wait(inode->i_mapping); + if (pcchunk == NULL) return -ENOMEM; @@ -3081,7 +3090,7 @@ static long smb3_punch_hole(struct file *file, struct cifs_tcon *tcon, loff_t offset, loff_t len) { - struct inode *inode; + struct inode *inode = file_inode(file); struct cifsFileInfo *cfile = file->private_data; struct file_zero_data_information fsctl_buf; long rc; @@ -3090,14 +3099,12 @@ xid = get_xid(); - inode = d_inode(cfile->dentry); - + inode_lock(inode); /* Need to make file sparse, if not already, before freeing range. */ /* Consider adding equivalent for compressed since it could also work */ if (!smb2_set_sparse(xid, tcon, cfile, inode, set_sparse)) { rc = -EOPNOTSUPP; - free_xid(xid); - return rc; + goto out; } /* @@ -3116,6 +3123,8 @@ true /* is_fctl */, (char *)&fsctl_buf, sizeof(struct file_zero_data_information), CIFSMaxBufSize, NULL, NULL); +out: + inode_unlock(inode); free_xid(xid); return rc; } @@ -3518,11 +3527,13 @@ } } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static bool smb2_is_read_op(__u32 oplock) { return oplock == SMB2_OPLOCK_LEVEL_II; } +#endif /* CIFS_ALLOW_INSECURE_LEGACY */ static bool smb21_is_read_op(__u32 oplock) @@ -4612,7 +4623,7 @@ return rc; } - +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY struct smb_version_operations smb20_operations = { .compare_fids = smb2_compare_fids, .setup_request = smb2_setup_request, @@ -4709,6 +4720,7 @@ .fiemap = smb3_fiemap, .llseek = smb3_llseek, }; +#endif /* CIFS_ALLOW_INSECURE_LEGACY */ struct smb_version_operations smb21_operations = { .compare_fids = smb2_compare_fids, @@ -5028,6 +5040,7 @@ .llseek = smb3_llseek, }; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY struct smb_version_values smb20_values = { .version_string = SMB20_VERSION_STRING, .protocol_id = SMB20_PROT_ID, @@ -5048,6 +5061,7 @@ .signing_required = SMB2_NEGOTIATE_SIGNING_REQUIRED, .create_lease_size = sizeof(struct create_lease), }; +#endif /* ALLOW_INSECURE_LEGACY */ struct smb_version_values smb21_values = { .version_string = SMB21_VERSION_STRING, diff -u linux-azure-5.4.0/fs/cifs/smb2pdu.c linux-azure-5.4.0/fs/cifs/smb2pdu.c --- linux-azure-5.4.0/fs/cifs/smb2pdu.c +++ linux-azure-5.4.0/fs/cifs/smb2pdu.c @@ -356,6 +356,9 @@ rc = -EHOSTDOWN; mutex_unlock(&tcon->ses->session_mutex); goto failed; + } else if (rc) { + mutex_unlock(&ses->session_mutex); + goto out; } } if (rc || !tcon->need_reconnect) { @@ -1120,9 +1123,9 @@ pneg_inbuf->Dialects[0] = cpu_to_le16(server->vals->protocol_id); pneg_inbuf->DialectCount = cpu_to_le16(1); - /* structure is big enough for 3 dialects, sending only 1 */ + /* structure is big enough for 4 dialects, sending only 1 */ inbuflen = sizeof(*pneg_inbuf) - - sizeof(pneg_inbuf->Dialects[0]) * 2; + sizeof(pneg_inbuf->Dialects[0]) * 3; } rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID, diff -u linux-azure-5.4.0/fs/cifs/transport.c linux-azure-5.4.0/fs/cifs/transport.c --- linux-azure-5.4.0/fs/cifs/transport.c +++ linux-azure-5.4.0/fs/cifs/transport.c @@ -209,10 +209,6 @@ *sent = 0; - smb_msg->msg_name = (struct sockaddr *) &server->dstaddr; - smb_msg->msg_namelen = sizeof(struct sockaddr); - smb_msg->msg_control = NULL; - smb_msg->msg_controllen = 0; if (server->noblocksnd) smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL; else @@ -324,7 +320,7 @@ sigset_t mask, oldmask; size_t total_len = 0, sent, size; struct socket *ssocket = server->ssocket; - struct msghdr smb_msg; + struct msghdr smb_msg = {}; int val = 1; __be32 rfc1002_marker; diff -u linux-azure-5.4.0/fs/compat_ioctl.c linux-azure-5.4.0/fs/compat_ioctl.c --- linux-azure-5.4.0/fs/compat_ioctl.c +++ linux-azure-5.4.0/fs/compat_ioctl.c @@ -808,13 +808,6 @@ COMPATIBLE_IOCTL(WDIOC_GETTIMEOUT) COMPATIBLE_IOCTL(WDIOC_SETPRETIMEOUT) COMPATIBLE_IOCTL(WDIOC_GETPRETIMEOUT) -/* Big R */ -COMPATIBLE_IOCTL(RNDGETENTCNT) -COMPATIBLE_IOCTL(RNDADDTOENTCNT) -COMPATIBLE_IOCTL(RNDGETPOOL) -COMPATIBLE_IOCTL(RNDADDENTROPY) -COMPATIBLE_IOCTL(RNDZAPENTCNT) -COMPATIBLE_IOCTL(RNDCLEARPOOL) /* Bluetooth */ COMPATIBLE_IOCTL(HCIDEVUP) COMPATIBLE_IOCTL(HCIDEVDOWN) diff -u linux-azure-5.4.0/fs/configfs/dir.c linux-azure-5.4.0/fs/configfs/dir.c --- linux-azure-5.4.0/fs/configfs/dir.c +++ linux-azure-5.4.0/fs/configfs/dir.c @@ -36,6 +36,14 @@ */ DEFINE_SPINLOCK(configfs_dirent_lock); +/* + * All of link_obj/unlink_obj/link_group/unlink_group require that + * subsys->su_mutex is held. + * But parent configfs_subsystem is NULL when config_item is root. + * Use this mutex when config_item is root. + */ +static DEFINE_MUTEX(configfs_subsystem_mutex); + static void configfs_d_iput(struct dentry * dentry, struct inode * inode) { @@ -1805,8 +1813,8 @@ configfs_detach_group(&group->cg_item); d_inode(dentry)->i_flags |= S_DEAD; dont_mount(dentry); + d_drop(dentry); fsnotify_rmdir(d_inode(parent), dentry); - d_delete(dentry); inode_unlock(d_inode(parent)); dput(dentry); @@ -1884,7 +1892,9 @@ group->cg_item.ci_name = group->cg_item.ci_namebuf; sd = root->d_fsdata; + mutex_lock(&configfs_subsystem_mutex); link_group(to_config_group(sd->s_element), group); + mutex_unlock(&configfs_subsystem_mutex); inode_lock_nested(d_inode(root), I_MUTEX_PARENT); @@ -1909,7 +1919,9 @@ inode_unlock(d_inode(root)); if (err) { + mutex_lock(&configfs_subsystem_mutex); unlink_group(group); + mutex_unlock(&configfs_subsystem_mutex); configfs_release_fs(); } put_fragment(frag); @@ -1947,16 +1959,18 @@ configfs_detach_group(&group->cg_item); d_inode(dentry)->i_flags |= S_DEAD; dont_mount(dentry); - fsnotify_rmdir(d_inode(root), dentry); inode_unlock(d_inode(dentry)); - d_delete(dentry); + d_drop(dentry); + fsnotify_rmdir(d_inode(root), dentry); inode_unlock(d_inode(root)); dput(dentry); + mutex_lock(&configfs_subsystem_mutex); unlink_group(group); + mutex_unlock(&configfs_subsystem_mutex); configfs_release_fs(); } diff -u linux-azure-5.4.0/fs/configfs/file.c linux-azure-5.4.0/fs/configfs/file.c --- linux-azure-5.4.0/fs/configfs/file.c +++ linux-azure-5.4.0/fs/configfs/file.c @@ -482,13 +482,13 @@ buffer->bin_buffer_size); } up_read(&frag->frag_sem); - /* vfree on NULL is safe */ - vfree(buffer->bin_buffer); - buffer->bin_buffer = NULL; - buffer->bin_buffer_size = 0; - buffer->needs_read_fill = 1; } + vfree(buffer->bin_buffer); + buffer->bin_buffer = NULL; + buffer->bin_buffer_size = 0; + buffer->needs_read_fill = 1; + configfs_release(inode, file); return 0; } diff -u linux-azure-5.4.0/fs/crypto/hooks.c linux-azure-5.4.0/fs/crypto/hooks.c --- linux-azure-5.4.0/fs/crypto/hooks.c +++ linux-azure-5.4.0/fs/crypto/hooks.c @@ -307,0 +308,44 @@ + +/** + * fscrypt_symlink_getattr() - set the correct st_size for encrypted symlinks + * @path: the path for the encrypted symlink being queried + * @stat: the struct being filled with the symlink's attributes + * + * Override st_size of encrypted symlinks to be the length of the decrypted + * symlink target (or the no-key encoded symlink target, if the key is + * unavailable) rather than the length of the encrypted symlink target. This is + * necessary for st_size to match the symlink target that userspace actually + * sees. POSIX requires this, and some userspace programs depend on it. + * + * This requires reading the symlink target from disk if needed, setting up the + * inode's encryption key if possible, and then decrypting or encoding the + * symlink target. This makes lstat() more heavyweight than is normally the + * case. However, decrypted symlink targets will be cached in ->i_link, so + * usually the symlink won't have to be read and decrypted again later if/when + * it is actually followed, readlink() is called, or lstat() is called again. + * + * Return: 0 on success, -errno on failure + */ +int fscrypt_symlink_getattr(const struct path *path, struct kstat *stat) +{ + struct dentry *dentry = path->dentry; + struct inode *inode = d_inode(dentry); + const char *link; + DEFINE_DELAYED_CALL(done); + + /* + * To get the symlink target that userspace will see (whether it's the + * decrypted target or the no-key encoded target), we can just get it in + * the same way the VFS does during path resolution and readlink(). + */ + link = READ_ONCE(inode->i_link); + if (!link) { + link = inode->i_op->get_link(dentry, inode, &done); + if (IS_ERR(link)) + return PTR_ERR(link); + } + stat->size = strlen(link); + do_delayed_call(&done); + return 0; +} +EXPORT_SYMBOL_GPL(fscrypt_symlink_getattr); diff -u linux-azure-5.4.0/fs/dax.c linux-azure-5.4.0/fs/dax.c --- linux-azure-5.4.0/fs/dax.c +++ linux-azure-5.4.0/fs/dax.c @@ -477,10 +477,11 @@ struct address_space *mapping, unsigned int order) { unsigned long index = xas->xa_index; - bool pmd_downgrade = false; /* splitting PMD entry into PTE entries? */ + bool pmd_downgrade; /* splitting PMD entry into PTE entries? */ void *entry; retry: + pmd_downgrade = false; xas_lock_irq(xas); entry = get_unlocked_entry(xas, order); @@ -818,7 +819,8 @@ if (!pmd_dirty(*pmdp) && !pmd_write(*pmdp)) goto unlock_pmd; - flush_cache_page(vma, address, pfn); + flush_cache_range(vma, address, + address + HPAGE_PMD_SIZE); pmd = pmdp_invalidate(vma, address, pmdp); pmd = pmd_wrprotect(pmd); pmd = pmd_mkclean(pmd); diff -u linux-azure-5.4.0/fs/debugfs/file.c linux-azure-5.4.0/fs/debugfs/file.c --- linux-azure-5.4.0/fs/debugfs/file.c +++ linux-azure-5.4.0/fs/debugfs/file.c @@ -146,7 +146,7 @@ struct file *filp, const struct file_operations *real_fops) { - if ((inode->i_mode & 07777) == 0444 && + if ((inode->i_mode & 07777 & ~0444) == 0 && !(filp->f_mode & FMODE_WRITE) && !real_fops->unlocked_ioctl && !real_fops->compat_ioctl && @@ -178,8 +178,10 @@ if (!fops_get(real_fops)) { #ifdef CONFIG_MODULES if (real_fops->owner && - real_fops->owner->state == MODULE_STATE_GOING) + real_fops->owner->state == MODULE_STATE_GOING) { + r = -ENXIO; goto out; + } #endif /* Huh? Module did not clean up after itself at exit? */ @@ -313,8 +315,10 @@ if (!fops_get(real_fops)) { #ifdef CONFIG_MODULES if (real_fops->owner && - real_fops->owner->state == MODULE_STATE_GOING) + real_fops->owner->state == MODULE_STATE_GOING) { + r = -ENXIO; goto out; + } #endif /* Huh? Module did not cleanup after itself at exit? */ diff -u linux-azure-5.4.0/fs/debugfs/inode.c linux-azure-5.4.0/fs/debugfs/inode.c --- linux-azure-5.4.0/fs/debugfs/inode.c +++ linux-azure-5.4.0/fs/debugfs/inode.c @@ -522,7 +522,7 @@ { struct dentry *de = debugfs_create_file(name, mode, parent, data, fops); - if (de) + if (!IS_ERR(de)) d_inode(de)->i_size = file_size; return de; } @@ -743,6 +743,28 @@ EXPORT_SYMBOL_GPL(debugfs_remove); /** + * debugfs_lookup_and_remove - lookup a directory or file and recursively remove it + * @name: a pointer to a string containing the name of the item to look up. + * @parent: a pointer to the parent dentry of the item. + * + * This is the equlivant of doing something like + * debugfs_remove(debugfs_lookup(..)) but with the proper reference counting + * handled for the directory being looked up. + */ +void debugfs_lookup_and_remove(const char *name, struct dentry *parent) +{ + struct dentry *dentry; + + dentry = debugfs_lookup(name, parent); + if (!dentry) + return; + + debugfs_remove(dentry); + dput(dentry); +} +EXPORT_SYMBOL_GPL(debugfs_lookup_and_remove); + +/** * debugfs_remove_recursive - recursively removes a directory * @dentry: a pointer to a the dentry of the directory to be removed. If this * parameter is NULL or an error value, nothing will be done. diff -u linux-azure-5.4.0/fs/dlm/config.c linux-azure-5.4.0/fs/dlm/config.c --- linux-azure-5.4.0/fs/dlm/config.c +++ linux-azure-5.4.0/fs/dlm/config.c @@ -78,6 +78,9 @@ unsigned int cl_new_rsb_count; unsigned int cl_recover_callbacks; char cl_cluster_name[DLM_LOCKSPACE_LEN]; + + struct dlm_spaces *sps; + struct dlm_comms *cms; }; static struct dlm_cluster *config_item_to_cluster(struct config_item *i) @@ -354,6 +357,9 @@ if (!cl || !sps || !cms) goto fail; + cl->sps = sps; + cl->cms = cms; + config_group_init_type_name(&cl->group, name, &cluster_type); config_group_init_type_name(&sps->ss_group, "spaces", &spaces_type); config_group_init_type_name(&cms->cs_group, "comms", &comms_type); @@ -403,6 +409,9 @@ static void release_cluster(struct config_item *i) { struct dlm_cluster *cl = config_item_to_cluster(i); + + kfree(cl->sps); + kfree(cl->cms); kfree(cl); } diff -u linux-azure-5.4.0/fs/erofs/decompressor.c linux-azure-5.4.0/fs/erofs/decompressor.c --- linux-azure-5.4.0/fs/erofs/decompressor.c +++ linux-azure-5.4.0/fs/erofs/decompressor.c @@ -56,14 +56,18 @@ if (page) { __clear_bit(j, bounced); - if (kaddr) { - if (kaddr + PAGE_SIZE == page_address(page)) + if (!PageHighMem(page)) { + if (!i) { + kaddr = page_address(page); + continue; + } + if (kaddr && + kaddr + PAGE_SIZE == page_address(page)) { kaddr += PAGE_SIZE; - else - kaddr = NULL; - } else if (!i) { - kaddr = page_address(page); + continue; + } } + kaddr = NULL; continue; } kaddr = NULL; diff -u linux-azure-5.4.0/fs/eventpoll.c linux-azure-5.4.0/fs/eventpoll.c --- linux-azure-5.4.0/fs/eventpoll.c +++ linux-azure-5.4.0/fs/eventpoll.c @@ -1803,6 +1803,21 @@ return timespec64_add_safe(now, ts); } +/* + * autoremove_wake_function, but remove even on failure to wake up, because we + * know that default_wake_function/ttwu will only fail if the thread is already + * woken, and in that case the ep_poll loop will remove the entry anyways, not + * try to reuse it. + */ +static int ep_autoremove_wake_function(struct wait_queue_entry *wq_entry, + unsigned int mode, int sync, void *key) +{ + int ret = default_wake_function(wq_entry, mode, sync, key); + + list_del_init(&wq_entry->entry); + return ret; +} + /** * ep_poll - Retrieves ready events, and delivers them to the caller supplied * event buffer. @@ -1880,56 +1895,78 @@ * normal wakeup path no need to call __remove_wait_queue() * explicitly, thus ep->lock is not taken, which halts the * event delivery. + * + * In fact, we now use an even more aggressive function that + * unconditionally removes, because we don't reuse the wait + * entry between loop iterations. This lets us also avoid the + * performance issue if a process is killed, causing all of its + * threads to wake up without being removed normally. */ init_wait(&wait); - write_lock_irq(&ep->lock); - __add_wait_queue_exclusive(&ep->wq, &wait); - write_unlock_irq(&ep->lock); + wait.func = ep_autoremove_wake_function; + write_lock_irq(&ep->lock); /* - * We don't want to sleep if the ep_poll_callback() sends us - * a wakeup in between. That's why we set the task state - * to TASK_INTERRUPTIBLE before doing the checks. + * Barrierless variant, waitqueue_active() is called under + * the same lock on wakeup ep_poll_callback() side, so it + * is safe to avoid an explicit barrier. */ - set_current_state(TASK_INTERRUPTIBLE); + __set_current_state(TASK_INTERRUPTIBLE); + /* - * Always short-circuit for fatal signals to allow - * threads to make a timely exit without the chance of - * finding more events available and fetching - * repeatedly. + * Do the final check under the lock. ep_scan_ready_list() + * plays with two lists (->rdllist and ->ovflist) and there + * is always a race when both lists are empty for short + * period of time although events are pending, so lock is + * important. */ - if (fatal_signal_pending(current)) { - res = -EINTR; - break; - } - eavail = ep_events_available(ep); - if (eavail) - break; - if (signal_pending(current)) { - res = -EINTR; - break; + if (!eavail) { + if (signal_pending(current)) + res = -EINTR; + else + __add_wait_queue_exclusive(&ep->wq, &wait); } + write_unlock_irq(&ep->lock); - if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS)) { - timed_out = 1; - break; - } + if (!eavail && !res) + timed_out = !schedule_hrtimeout_range(to, slack, + HRTIMER_MODE_ABS); - /* We were woken up, thus go and try to harvest some events */ + /* + * We were woken up, thus go and try to harvest some events. + * If timed out and still on the wait queue, recheck eavail + * carefully under lock, below. + */ eavail = 1; - } while (0); __set_current_state(TASK_RUNNING); if (!list_empty_careful(&wait.entry)) { write_lock_irq(&ep->lock); + /* + * If the thread timed out and is not on the wait queue, it + * means that the thread was woken up after its timeout expired + * before it could reacquire the lock. Thus, when wait.entry is + * empty, it needs to harvest events. + */ + if (timed_out) + eavail = list_empty(&wait.entry); __remove_wait_queue(&ep->wq, &wait); write_unlock_irq(&ep->lock); } send_events: + if (fatal_signal_pending(current)) { + /* + * Always short-circuit for fatal signals to allow + * threads to make a timely exit without the chance of + * finding more events available and fetching + * repeatedly. + */ + res = -EINTR; + } /* * Try to transfer events to user space. In case we get 0 events and * there's still timeout left over, we go trying again in search of diff -u linux-azure-5.4.0/fs/exec.c linux-azure-5.4.0/fs/exec.c --- linux-azure-5.4.0/fs/exec.c +++ linux-azure-5.4.0/fs/exec.c @@ -464,6 +464,9 @@ unsigned long limit, ptr_size; bprm->argc = count(argv, MAX_ARG_STRINGS); + if (bprm->argc == 0) + pr_warn_once("process '%s' launched '%s' with NULL argv: empty string added\n", + current->comm, bprm->filename); if (bprm->argc < 0) return bprm->argc; @@ -492,8 +495,14 @@ * the stack. They aren't stored until much later when we can't * signal to the parent that the child has run out of stack space. * Instead, calculate it here so it's possible to fail gracefully. + * + * In the case of argc = 0, make sure there is space for adding a + * empty string (which will bump argc to 1), to ensure confused + * userspace programs don't start processing from argv[1], thinking + * argc can never be 0, to keep them from walking envp by accident. + * See do_execveat_common(). */ - ptr_size = (bprm->argc + bprm->envc) * sizeof(void *); + ptr_size = (max(bprm->argc, 1) + bprm->envc) * sizeof(void *); if (limit <= ptr_size) return -E2BIG; limit -= ptr_size; @@ -1000,7 +1009,7 @@ struct fd f = fdget(fd); int ret = -EBADF; - if (!f.file) + if (!f.file || !(f.file->f_mode & FMODE_READ)) goto out; ret = kernel_read_file(f.file, buf, size, max_size, id); @@ -1860,6 +1869,20 @@ if (retval < 0) goto out; + /* + * When argv is empty, add an empty string ("") as argv[0] to + * ensure confused userspace programs that start processing + * from argv[1] won't end up walking envp. See also + * bprm_stack_limits(). + */ + if (bprm->argc == 0) { + const char *argv[] = { "", NULL }; + retval = copy_strings_kernel(1, argv, bprm); + if (retval < 0) + goto out; + bprm->argc = 1; + } + retval = exec_binprm(bprm); if (retval < 0) goto out; diff -u linux-azure-5.4.0/fs/ext2/super.c linux-azure-5.4.0/fs/ext2/super.c --- linux-azure-5.4.0/fs/ext2/super.c +++ linux-azure-5.4.0/fs/ext2/super.c @@ -770,8 +770,12 @@ res += 1LL << (bits-2); res += 1LL << (2*(bits-2)); res += 1LL << (3*(bits-2)); + /* Compute how many metadata blocks are needed */ + meta_blocks = 1; + meta_blocks += 1 + ppb; + meta_blocks += 1 + ppb + ppb * ppb; /* Does block tree limit file size? */ - if (res < upper_limit) + if (res + meta_blocks <= upper_limit) goto check_lfs; res = upper_limit; @@ -1073,9 +1077,10 @@ sbi->s_frags_per_group); goto failed_mount; } - if (sbi->s_inodes_per_group > sb->s_blocksize * 8) { + if (sbi->s_inodes_per_group < sbi->s_inodes_per_block || + sbi->s_inodes_per_group > sb->s_blocksize * 8) { ext2_msg(sb, KERN_ERR, - "error: #inodes per group too big: %lu", + "error: invalid #inodes per group: %lu", sbi->s_inodes_per_group); goto failed_mount; } @@ -1085,6 +1090,13 @@ sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) - le32_to_cpu(es->s_first_data_block) - 1) / EXT2_BLOCKS_PER_GROUP(sb)) + 1; + if ((u64)sbi->s_groups_count * sbi->s_inodes_per_group != + le32_to_cpu(es->s_inodes_count)) { + ext2_msg(sb, KERN_ERR, "error: invalid #inodes: %u vs computed %llu", + le32_to_cpu(es->s_inodes_count), + (u64)sbi->s_groups_count * sbi->s_inodes_per_group); + goto failed_mount; + } db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) / EXT2_DESC_PER_BLOCK(sb); sbi->s_group_desc = kmalloc_array (db_count, diff -u linux-azure-5.4.0/fs/ext4/balloc.c linux-azure-5.4.0/fs/ext4/balloc.c --- linux-azure-5.4.0/fs/ext4/balloc.c +++ linux-azure-5.4.0/fs/ext4/balloc.c @@ -379,7 +379,8 @@ if (buffer_verified(bh)) goto verified; if (unlikely(!ext4_block_bitmap_csum_verify(sb, block_group, - desc, bh))) { + desc, bh) || + ext4_simulate_fail(sb, EXT4_SIM_BBITMAP_CRC))) { ext4_unlock_group(sb, block_group); ext4_error(sb, "bg %u: bad block bitmap checksum", block_group); ext4_mark_group_bitmap_corrupted(sb, block_group, @@ -513,10 +514,11 @@ if (!desc) return -EFSCORRUPTED; wait_on_buffer(bh); + ext4_simulate_fail_bh(sb, bh, EXT4_SIM_BBITMAP_EIO); if (!buffer_uptodate(bh)) { - ext4_error(sb, "Cannot read block bitmap - " - "block_group = %u, block_bitmap = %llu", - block_group, (unsigned long long) bh->b_blocknr); + ext4_error_err(sb, EIO, "Cannot read block bitmap - " + "block_group = %u, block_bitmap = %llu", + block_group, (unsigned long long) bh->b_blocknr); ext4_mark_group_bitmap_corrupted(sb, block_group, EXT4_GROUP_INFO_BBITMAP_CORRUPT); return -EIO; diff -u linux-azure-5.4.0/fs/ext4/block_validity.c linux-azure-5.4.0/fs/ext4/block_validity.c --- linux-azure-5.4.0/fs/ext4/block_validity.c +++ linux-azure-5.4.0/fs/ext4/block_validity.c @@ -24,6 +24,7 @@ struct rb_node node; ext4_fsblk_t start_blk; unsigned int count; + u32 ino; }; static struct kmem_cache *ext4_system_zone_cachep; @@ -45,7 +46,8 @@ static inline int can_merge(struct ext4_system_zone *entry1, struct ext4_system_zone *entry2) { - if ((entry1->start_blk + entry1->count) == entry2->start_blk) + if ((entry1->start_blk + entry1->count) == entry2->start_blk && + entry1->ino == entry2->ino) return 1; return 0; } @@ -66,7 +68,7 @@ */ static int add_system_zone(struct ext4_system_blocks *system_blks, ext4_fsblk_t start_blk, - unsigned int count) + unsigned int count, u32 ino) { struct ext4_system_zone *new_entry, *entry; struct rb_node **n = &system_blks->root.rb_node, *node; @@ -89,6 +91,7 @@ return -ENOMEM; new_entry->start_blk = start_blk; new_entry->count = count; + new_entry->ino = ino; new_node = &new_entry->node; rb_link_node(new_node, parent, n); @@ -145,17 +148,15 @@ static int ext4_data_block_valid_rcu(struct ext4_sb_info *sbi, struct ext4_system_blocks *system_blks, ext4_fsblk_t start_blk, - unsigned int count) + unsigned int count, ino_t ino) { struct ext4_system_zone *entry; struct rb_node *n; if ((start_blk <= le32_to_cpu(sbi->s_es->s_first_data_block)) || (start_blk + count < start_blk) || - (start_blk + count > ext4_blocks_count(sbi->s_es))) { - sbi->s_es->s_last_error_block = cpu_to_le64(start_blk); + (start_blk + count > ext4_blocks_count(sbi->s_es))) return 0; - } if (system_blks == NULL) return 1; @@ -167,10 +168,8 @@ n = n->rb_left; else if (start_blk >= (entry->start_blk + entry->count)) n = n->rb_right; - else { - sbi->s_es->s_last_error_block = cpu_to_le64(start_blk); - return 0; - } + else + return entry->ino == ino; } return 1; } @@ -204,17 +203,18 @@ if (n == 0) { i++; } else { - if (!ext4_data_block_valid_rcu(sbi, system_blks, - map.m_pblk, n)) { - ext4_error(sb, "blocks %llu-%llu from inode %u " - "overlap system zone", map.m_pblk, - map.m_pblk + map.m_len - 1, ino); - err = -EFSCORRUPTED; + err = add_system_zone(system_blks, map.m_pblk, n, ino); + if (err < 0) { + if (err == -EFSCORRUPTED) { + __ext4_error(sb, __func__, __LINE__, + -err, map.m_pblk, + "blocks %llu-%llu from inode %u overlap system zone", + map.m_pblk, + map.m_pblk + map.m_len - 1, + ino); + } break; } - err = add_system_zone(system_blks, map.m_pblk, n); - if (err < 0) - break; i += n; } } @@ -260,19 +260,19 @@ ((i < 5) || ((i % flex_size) == 0))) add_system_zone(system_blks, ext4_group_first_block_no(sb, i), - ext4_bg_num_gdb(sb, i) + 1); + ext4_bg_num_gdb(sb, i) + 1, 0); gdp = ext4_get_group_desc(sb, i, NULL); ret = add_system_zone(system_blks, - ext4_block_bitmap(sb, gdp), 1); + ext4_block_bitmap(sb, gdp), 1, 0); if (ret) goto err; ret = add_system_zone(system_blks, - ext4_inode_bitmap(sb, gdp), 1); + ext4_inode_bitmap(sb, gdp), 1, 0); if (ret) goto err; ret = add_system_zone(system_blks, ext4_inode_table(sb, gdp), - sbi->s_itb_per_group); + sbi->s_itb_per_group, 0); if (ret) goto err; } @@ -321,7 +321,7 @@ call_rcu(&system_blks->rcu, ext4_destroy_system_zone); } -int ext4_data_block_valid(struct ext4_sb_info *sbi, ext4_fsblk_t start_blk, +int ext4_inode_block_valid(struct inode *inode, ext4_fsblk_t start_blk, unsigned int count) { struct ext4_system_blocks *system_blks; @@ -333,9 +333,9 @@ * mount option. */ rcu_read_lock(); - system_blks = rcu_dereference(sbi->system_blks); - ret = ext4_data_block_valid_rcu(sbi, system_blks, start_blk, - count); + system_blks = rcu_dereference(EXT4_SB(inode->i_sb)->system_blks); + ret = ext4_data_block_valid_rcu(EXT4_SB(inode->i_sb), system_blks, + start_blk, count, inode->i_ino); rcu_read_unlock(); return ret; } @@ -343,7 +343,6 @@ int ext4_check_blockref(const char *function, unsigned int line, struct inode *inode, __le32 *p, unsigned int max) { - struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; __le32 *bref = p; unsigned int blk; @@ -355,9 +354,7 @@ while (bref < p+max) { blk = le32_to_cpu(*bref++); if (blk && - unlikely(!ext4_data_block_valid(EXT4_SB(inode->i_sb), - blk, 1))) { - es->s_last_error_block = cpu_to_le64(blk); + unlikely(!ext4_inode_block_valid(inode, blk, 1))) { ext4_error_inode(inode, function, line, blk, "invalid block"); return -EFSCORRUPTED; diff -u linux-azure-5.4.0/fs/ext4/dir.c linux-azure-5.4.0/fs/ext4/dir.c --- linux-azure-5.4.0/fs/ext4/dir.c +++ linux-azure-5.4.0/fs/ext4/dir.c @@ -536,7 +536,7 @@ struct dir_private_info *info = file->private_data; struct inode *inode = file_inode(file); struct fname *fname; - int ret; + int ret = 0; if (!info) { info = ext4_htree_create_dir_info(file, ctx->pos); @@ -584,7 +584,7 @@ info->curr_minor_hash, &info->next_hash); if (ret < 0) - return ret; + goto finished; if (ret == 0) { ctx->pos = ext4_get_htree_eof(file); break; @@ -615,7 +615,7 @@ } finished: info->last_pos = ctx->pos; - return 0; + return ret < 0 ? ret : 0; } static int ext4_dir_open(struct inode * inode, struct file * filp) diff -u linux-azure-5.4.0/fs/ext4/ext4.h linux-azure-5.4.0/fs/ext4/ext4.h --- linux-azure-5.4.0/fs/ext4/ext4.h +++ linux-azure-5.4.0/fs/ext4/ext4.h @@ -718,7 +718,7 @@ #define EXT4_MAX_BLOCK_FILE_PHYS 0xFFFFFFFF /* Max logical block we can support */ -#define EXT4_MAX_LOGICAL_BLOCK 0xFFFFFFFF +#define EXT4_MAX_LOGICAL_BLOCK 0xFFFFFFFE /* * Structure of an inode on the disk @@ -1338,7 +1338,8 @@ __u8 s_lastcheck_hi; __u8 s_first_error_time_hi; __u8 s_last_error_time_hi; - __u8 s_pad[2]; + __u8 s_first_error_errcode; + __u8 s_last_error_errcode; __le16 s_encoding; /* Filename charset encoding */ __le16 s_encoding_flags; /* Filename charset encoding flags */ __le32 s_reserved[95]; /* Padding to the end of the block */ @@ -1555,6 +1556,9 @@ */ struct percpu_rw_semaphore s_writepages_rwsem; struct dax_device *s_daxdev; +#ifdef CONFIG_EXT4_DEBUG + unsigned long s_simulate_fail; +#endif }; static inline struct ext4_sb_info *EXT4_SB(struct super_block *sb) @@ -1591,6 +1595,66 @@ }) /* + * Simulate_fail codes + */ +#define EXT4_SIM_BBITMAP_EIO 1 +#define EXT4_SIM_BBITMAP_CRC 2 +#define EXT4_SIM_IBITMAP_EIO 3 +#define EXT4_SIM_IBITMAP_CRC 4 +#define EXT4_SIM_INODE_EIO 5 +#define EXT4_SIM_INODE_CRC 6 +#define EXT4_SIM_DIRBLOCK_EIO 7 +#define EXT4_SIM_DIRBLOCK_CRC 8 + +static inline bool ext4_simulate_fail(struct super_block *sb, + unsigned long code) +{ +#ifdef CONFIG_EXT4_DEBUG + struct ext4_sb_info *sbi = EXT4_SB(sb); + + if (unlikely(sbi->s_simulate_fail == code)) { + sbi->s_simulate_fail = 0; + return true; + } +#endif + return false; +} + +static inline void ext4_simulate_fail_bh(struct super_block *sb, + struct buffer_head *bh, + unsigned long code) +{ + if (!IS_ERR(bh) && ext4_simulate_fail(sb, code)) + clear_buffer_uptodate(bh); +} + +/* + * Error number codes for s_{first,last}_error_errno + * + * Linux errno numbers are architecture specific, so we need to translate + * them into something which is architecture independent. We don't define + * codes for all errno's; just the ones which are most likely to be the cause + * of an ext4_error() call. + */ +#define EXT4_ERR_UNKNOWN 1 +#define EXT4_ERR_EIO 2 +#define EXT4_ERR_ENOMEM 3 +#define EXT4_ERR_EFSBADCRC 4 +#define EXT4_ERR_EFSCORRUPTED 5 +#define EXT4_ERR_ENOSPC 6 +#define EXT4_ERR_ENOKEY 7 +#define EXT4_ERR_EROFS 8 +#define EXT4_ERR_EFBIG 9 +#define EXT4_ERR_EEXIST 10 +#define EXT4_ERR_ERANGE 11 +#define EXT4_ERR_EOVERFLOW 12 +#define EXT4_ERR_EBUSY 13 +#define EXT4_ERR_ENOTDIR 14 +#define EXT4_ERR_ENOTEMPTY 15 +#define EXT4_ERR_ESHUTDOWN 16 +#define EXT4_ERR_EFAULT 17 + +/* * Inode dynamic state flags */ enum { @@ -1966,6 +2030,10 @@ * Structure of a directory entry */ #define EXT4_NAME_LEN 255 +/* + * Base length of the ext4 directory entry excluding the name length + */ +#define EXT4_BASE_DIR_LEN (sizeof(struct ext4_dir_entry_2) - EXT4_NAME_LEN) struct ext4_dir_entry { __le32 inode; /* Inode number */ @@ -2712,19 +2780,19 @@ ext4_group_t block_group, unsigned int flags); -extern __printf(4, 5) -void __ext4_error(struct super_block *, const char *, unsigned int, +extern __printf(6, 7) +void __ext4_error(struct super_block *, const char *, unsigned int, int, __u64, const char *, ...); -extern __printf(5, 6) -void __ext4_error_inode(struct inode *, const char *, unsigned int, ext4_fsblk_t, - const char *, ...); +extern __printf(6, 7) +void __ext4_error_inode(struct inode *, const char *, unsigned int, + ext4_fsblk_t, int, const char *, ...); extern __printf(5, 6) void __ext4_error_file(struct file *, const char *, unsigned int, ext4_fsblk_t, const char *, ...); extern void __ext4_std_error(struct super_block *, const char *, unsigned int, int); -extern __printf(4, 5) -void __ext4_abort(struct super_block *, const char *, unsigned int, +extern __printf(5, 6) +void __ext4_abort(struct super_block *, const char *, unsigned int, int, const char *, ...); extern __printf(4, 5) void __ext4_warning(struct super_block *, const char *, unsigned int, @@ -2745,8 +2813,12 @@ #define EXT4_ERROR_INODE(inode, fmt, a...) \ ext4_error_inode((inode), __func__, __LINE__, 0, (fmt), ## a) -#define EXT4_ERROR_INODE_BLOCK(inode, block, fmt, a...) \ - ext4_error_inode((inode), __func__, __LINE__, (block), (fmt), ## a) +#define EXT4_ERROR_INODE_ERR(inode, err, fmt, a...) \ + __ext4_error_inode((inode), __func__, __LINE__, 0, (err), (fmt), ## a) + +#define ext4_error_inode_block(inode, block, err, fmt, a...) \ + __ext4_error_inode((inode), __func__, __LINE__, (block), (err), \ + (fmt), ## a) #define EXT4_ERROR_FILE(file, block, fmt, a...) \ ext4_error_file((file), __func__, __LINE__, (block), (fmt), ## a) @@ -2754,13 +2826,18 @@ #ifdef CONFIG_PRINTK #define ext4_error_inode(inode, func, line, block, fmt, ...) \ - __ext4_error_inode(inode, func, line, block, fmt, ##__VA_ARGS__) + __ext4_error_inode(inode, func, line, block, 0, fmt, ##__VA_ARGS__) +#define ext4_error_inode_err(inode, func, line, block, err, fmt, ...) \ + __ext4_error_inode((inode), (func), (line), (block), \ + (err), (fmt), ##__VA_ARGS__) #define ext4_error_file(file, func, line, block, fmt, ...) \ __ext4_error_file(file, func, line, block, fmt, ##__VA_ARGS__) #define ext4_error(sb, fmt, ...) \ - __ext4_error(sb, __func__, __LINE__, fmt, ##__VA_ARGS__) -#define ext4_abort(sb, fmt, ...) \ - __ext4_abort(sb, __func__, __LINE__, fmt, ##__VA_ARGS__) + __ext4_error((sb), __func__, __LINE__, 0, 0, (fmt), ##__VA_ARGS__) +#define ext4_error_err(sb, err, fmt, ...) \ + __ext4_error((sb), __func__, __LINE__, (err), 0, (fmt), ##__VA_ARGS__) +#define ext4_abort(sb, err, fmt, ...) \ + __ext4_abort((sb), __func__, __LINE__, (err), (fmt), ##__VA_ARGS__) #define ext4_warning(sb, fmt, ...) \ __ext4_warning(sb, __func__, __LINE__, fmt, ##__VA_ARGS__) #define ext4_warning_inode(inode, fmt, ...) \ @@ -2778,7 +2855,12 @@ #define ext4_error_inode(inode, func, line, block, fmt, ...) \ do { \ no_printk(fmt, ##__VA_ARGS__); \ - __ext4_error_inode(inode, "", 0, block, " "); \ + __ext4_error_inode(inode, "", 0, block, 0, " "); \ +} while (0) +#define ext4_error_inode_err(inode, func, line, block, err, fmt, ...) \ +do { \ + no_printk(fmt, ##__VA_ARGS__); \ + __ext4_error_inode(inode, "", 0, block, err, " "); \ } while (0) #define ext4_error_file(file, func, line, block, fmt, ...) \ do { \ @@ -2788,12 +2870,17 @@ #define ext4_error(sb, fmt, ...) \ do { \ no_printk(fmt, ##__VA_ARGS__); \ - __ext4_error(sb, "", 0, " "); \ + __ext4_error(sb, "", 0, 0, 0, " "); \ +} while (0) +#define ext4_error_err(sb, err, fmt, ...) \ +do { \ + no_printk(fmt, ##__VA_ARGS__); \ + __ext4_error(sb, "", 0, err, 0, " "); \ } while (0) -#define ext4_abort(sb, fmt, ...) \ +#define ext4_abort(sb, err, fmt, ...) \ do { \ no_printk(fmt, ##__VA_ARGS__); \ - __ext4_abort(sb, "", 0, " "); \ + __ext4_abort(sb, "", 0, err, " "); \ } while (0) #define ext4_warning(sb, fmt, ...) \ do { \ @@ -3260,9 +3347,9 @@ extern int ext4_setup_system_zone(struct super_block *sb); extern int __init ext4_init_system_zone(void); extern void ext4_exit_system_zone(void); -extern int ext4_data_block_valid(struct ext4_sb_info *sbi, - ext4_fsblk_t start_blk, - unsigned int count); +extern int ext4_inode_block_valid(struct inode *inode, + ext4_fsblk_t start_blk, + unsigned int count); extern int ext4_check_blockref(const char *, unsigned int, struct inode *, __le32 *, unsigned int); diff -u linux-azure-5.4.0/fs/ext4/extents.c linux-azure-5.4.0/fs/ext4/extents.c --- linux-azure-5.4.0/fs/ext4/extents.c +++ linux-azure-5.4.0/fs/ext4/extents.c @@ -133,14 +133,25 @@ static int ext4_ext_get_access(handle_t *handle, struct inode *inode, struct ext4_ext_path *path) { + int err = 0; + if (path->p_bh) { /* path points to block */ BUFFER_TRACE(path->p_bh, "get_write_access"); - return ext4_journal_get_write_access(handle, path->p_bh); + err = ext4_journal_get_write_access(handle, path->p_bh); + + /* + * The extent buffer's verified bit will be set again in + * __ext4_ext_dirty(). We could leave an inconsistent + * buffer if the extents updating procudure break off du + * to some error happens, force to check it again. + */ + if (!err) + clear_buffer_verified(path->p_bh); } /* path points to leaf/index in inode body */ /* we use in-core data, no need to protect them */ - return 0; + return err; } /* @@ -160,6 +171,9 @@ /* path points to block */ err = __ext4_handle_dirty_metadata(where, line, handle, inode, path->p_bh); + /* Extents updating done, re-set verified flag */ + if (!err) + set_buffer_verified(path->p_bh); } else { /* path points to leaf/index in inode body */ err = ext4_mark_inode_dirty(handle, inode); @@ -377,7 +391,7 @@ */ if (lblock + len <= lblock) return 0; - return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len); + return ext4_inode_block_valid(inode, block, len); } static int ext4_valid_extent_idx(struct inode *inode, @@ -385,14 +399,18 @@ { ext4_fsblk_t block = ext4_idx_pblock(ext_idx); - return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1); + return ext4_inode_block_valid(inode, block, 1); } static int ext4_valid_extent_entries(struct inode *inode, - struct ext4_extent_header *eh, - int depth) + struct ext4_extent_header *eh, + ext4_lblk_t lblk, ext4_fsblk_t *pblk, + int depth) { unsigned short entries; + ext4_lblk_t lblock = 0; + ext4_lblk_t prev = 0; + if (eh->eh_entries == 0) return 1; @@ -401,34 +419,51 @@ if (depth == 0) { /* leaf entries */ struct ext4_extent *ext = EXT_FIRST_EXTENT(eh); - struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; - ext4_fsblk_t pblock = 0; - ext4_lblk_t lblock = 0; - ext4_lblk_t prev = 0; - int len = 0; + + /* + * The logical block in the first entry should equal to + * the number in the index block. + */ + if (depth != ext_depth(inode) && + lblk != le32_to_cpu(ext->ee_block)) + return 0; while (entries) { if (!ext4_valid_extent(inode, ext)) return 0; /* Check for overlapping extents */ lblock = le32_to_cpu(ext->ee_block); - len = ext4_ext_get_actual_len(ext); if ((lblock <= prev) && prev) { - pblock = ext4_ext_pblock(ext); - es->s_last_error_block = cpu_to_le64(pblock); + *pblk = ext4_ext_pblock(ext); return 0; } + prev = lblock + ext4_ext_get_actual_len(ext) - 1; ext++; entries--; - prev = lblock + len - 1; } } else { struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh); + + /* + * The logical block in the first entry should equal to + * the number in the parent index block. + */ + if (depth != ext_depth(inode) && + lblk != le32_to_cpu(ext_idx->ei_block)) + return 0; while (entries) { if (!ext4_valid_extent_idx(inode, ext_idx)) return 0; + + /* Check for overlapping index extents */ + lblock = le32_to_cpu(ext_idx->ei_block); + if ((lblock <= prev) && prev) { + *pblk = ext4_idx_pblock(ext_idx); + return 0; + } ext_idx++; entries--; + prev = lblock; } } return 1; @@ -436,7 +471,7 @@ static int __ext4_ext_check(const char *function, unsigned int line, struct inode *inode, struct ext4_extent_header *eh, - int depth, ext4_fsblk_t pblk) + int depth, ext4_fsblk_t pblk, ext4_lblk_t lblk) { const char *error_msg; int max = 0, err = -EFSCORRUPTED; @@ -462,7 +497,11 @@ error_msg = "invalid eh_entries"; goto corrupted; } - if (!ext4_valid_extent_entries(inode, eh, depth)) { + if (unlikely((eh->eh_entries == 0) && (depth > 0))) { + error_msg = "eh_entries is 0 but eh_depth is > 0"; + goto corrupted; + } + if (!ext4_valid_extent_entries(inode, eh, lblk, &pblk, depth)) { error_msg = "invalid extent entries"; goto corrupted; } @@ -480,18 +519,19 @@ return 0; corrupted: - ext4_error_inode(inode, function, line, 0, - "pblk %llu bad header/extent: %s - magic %x, " - "entries %u, max %u(%u), depth %u(%u)", - (unsigned long long) pblk, error_msg, - le16_to_cpu(eh->eh_magic), - le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max), - max, le16_to_cpu(eh->eh_depth), depth); + ext4_error_inode_err(inode, function, line, 0, -err, + "pblk %llu bad header/extent: %s - magic %x, " + "entries %u, max %u(%u), depth %u(%u)", + (unsigned long long) pblk, error_msg, + le16_to_cpu(eh->eh_magic), + le16_to_cpu(eh->eh_entries), + le16_to_cpu(eh->eh_max), + max, le16_to_cpu(eh->eh_depth), depth); return err; } #define ext4_ext_check(inode, eh, depth, pblk) \ - __ext4_ext_check(__func__, __LINE__, (inode), (eh), (depth), (pblk)) + __ext4_ext_check(__func__, __LINE__, (inode), (eh), (depth), (pblk), 0) int ext4_ext_check_inode(struct inode *inode) { @@ -524,12 +564,14 @@ static struct buffer_head * __read_extent_tree_block(const char *function, unsigned int line, - struct inode *inode, ext4_fsblk_t pblk, int depth, - int flags) + struct inode *inode, struct ext4_extent_idx *idx, + int depth, int flags) { struct buffer_head *bh; int err; + ext4_fsblk_t pblk; + pblk = ext4_idx_pblock(idx); bh = sb_getblk_gfp(inode->i_sb, pblk, __GFP_MOVABLE | GFP_NOFS); if (unlikely(!bh)) return ERR_PTR(-ENOMEM); @@ -542,14 +584,10 @@ } if (buffer_verified(bh) && !(flags & EXT4_EX_FORCE_CACHE)) return bh; - if (!ext4_has_feature_journal(inode->i_sb) || - (inode->i_ino != - le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum))) { - err = __ext4_ext_check(function, line, inode, - ext_block_hdr(bh), depth, pblk); - if (err) - goto errout; - } + err = __ext4_ext_check(function, line, inode, ext_block_hdr(bh), + depth, pblk, le32_to_cpu(idx->ei_block)); + if (err) + goto errout; set_buffer_verified(bh); /* * If this is a leaf block, cache all of its entries @@ -565,8 +603,8 @@ } -#define read_extent_tree_block(inode, pblk, depth, flags) \ - __read_extent_tree_block(__func__, __LINE__, (inode), (pblk), \ +#define read_extent_tree_block(inode, idx, depth, flags) \ + __read_extent_tree_block(__func__, __LINE__, (inode), (idx), \ (depth), (flags)) /* @@ -613,8 +651,7 @@ i--; continue; } - bh = read_extent_tree_block(inode, - ext4_idx_pblock(path[i].p_idx++), + bh = read_extent_tree_block(inode, path[i].p_idx++, depth - i - 1, EXT4_EX_FORCE_CACHE); if (IS_ERR(bh)) { @@ -862,6 +899,7 @@ eh->eh_entries = 0; eh->eh_magic = EXT4_EXT_MAGIC; eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0)); + eh->eh_generation = 0; ext4_mark_inode_dirty(handle, inode); return 0; } @@ -916,8 +954,7 @@ path[ppos].p_depth = i; path[ppos].p_ext = NULL; - bh = read_extent_tree_block(inode, path[ppos].p_block, --i, - flags); + bh = read_extent_tree_block(inode, path[ppos].p_idx, --i, flags); if (IS_ERR(bh)) { ret = PTR_ERR(bh); goto err; @@ -1118,6 +1155,7 @@ neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); neh->eh_magic = EXT4_EXT_MAGIC; neh->eh_depth = 0; + neh->eh_generation = 0; /* move remainder of path[depth] to the new leaf */ if (unlikely(path[depth].p_hdr->eh_entries != @@ -1195,6 +1233,7 @@ neh->eh_magic = EXT4_EXT_MAGIC; neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0)); neh->eh_depth = cpu_to_le16(depth - i); + neh->eh_generation = 0; fidx = EXT_FIRST_INDEX(neh); fidx->ei_block = border; ext4_idx_store_pblock(fidx, oldblock); @@ -1514,7 +1553,6 @@ struct ext4_extent_header *eh; struct ext4_extent_idx *ix; struct ext4_extent *ex; - ext4_fsblk_t block; int depth; /* Note, NOT eh_depth; depth from top of tree */ int ee_len; @@ -1581,20 +1619,17 @@ * follow it and find the closest allocated * block to the right */ ix++; - block = ext4_idx_pblock(ix); while (++depth < path->p_depth) { /* subtract from p_depth to get proper eh_depth */ - bh = read_extent_tree_block(inode, block, - path->p_depth - depth, 0); + bh = read_extent_tree_block(inode, ix, path->p_depth - depth, 0); if (IS_ERR(bh)) return PTR_ERR(bh); eh = ext_block_hdr(bh); ix = EXT_FIRST_INDEX(eh); - block = ext4_idx_pblock(ix); put_bh(bh); } - bh = read_extent_tree_block(inode, block, path->p_depth - depth, 0); + bh = read_extent_tree_block(inode, ix, path->p_depth - depth, 0); if (IS_ERR(bh)) return PTR_ERR(bh); eh = ext_block_hdr(bh); @@ -3116,9 +3151,9 @@ ext_debug("move to level %d (block %llu)\n", i + 1, ext4_idx_pblock(path[i].p_idx)); memset(path + i + 1, 0, sizeof(*path)); - bh = read_extent_tree_block(inode, - ext4_idx_pblock(path[i].p_idx), depth - i - 1, - EXT4_EX_NOCACHE); + bh = read_extent_tree_block(inode, path[i].p_idx, + depth - i - 1, + EXT4_EX_NOCACHE); if (IS_ERR(bh)) { /* should we reset i_size? */ err = PTR_ERR(bh); @@ -3378,7 +3413,10 @@ ext4_ext_mark_unwritten(ex2); err = ext4_ext_insert_extent(handle, inode, ppath, &newex, flags); - if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) { + if (err != -ENOSPC && err != -EDQUOT) + goto out; + + if (EXT4_EXT_MAY_ZEROOUT & split_flag) { if (split_flag & (EXT4_EXT_DATA_VALID1|EXT4_EXT_DATA_VALID2)) { if (split_flag & EXT4_EXT_DATA_VALID1) { err = ext4_ext_zeroout(inode, ex2); @@ -3404,30 +3442,30 @@ ext4_ext_pblock(&orig_ex)); } - if (err) - goto fix_extent_len; - /* update the extent length and mark as initialized */ - ex->ee_len = cpu_to_le16(ee_len); - ext4_ext_try_to_merge(handle, inode, path, ex); - err = ext4_ext_dirty(handle, inode, path + path->p_depth); - if (err) - goto fix_extent_len; - - /* update extent status tree */ - err = ext4_zeroout_es(inode, &zero_ex); - - goto out; - } else if (err) - goto fix_extent_len; - -out: - ext4_ext_show_leaf(inode, path); - return err; + if (!err) { + /* update the extent length and mark as initialized */ + ex->ee_len = cpu_to_le16(ee_len); + ext4_ext_try_to_merge(handle, inode, path, ex); + err = ext4_ext_dirty(handle, inode, path + path->p_depth); + if (!err) + /* update extent status tree */ + err = ext4_zeroout_es(inode, &zero_ex); + /* If we failed at this point, we don't know in which + * state the extent tree exactly is so don't try to fix + * length of the original extent as it may do even more + * damage. + */ + goto out; + } + } fix_extent_len: ex->ee_len = orig_ex.ee_len; ext4_ext_dirty(handle, inode, path + path->p_depth); return err; +out: + ext4_ext_show_leaf(inode, path); + return err; } /* @@ -4892,13 +4930,15 @@ FALLOC_FL_INSERT_RANGE)) return -EOPNOTSUPP; - if (mode & FALLOC_FL_PUNCH_HOLE) - return ext4_punch_hole(inode, offset, len); - + inode_lock(inode); ret = ext4_convert_inline_data(inode); + inode_unlock(inode); if (ret) return ret; + if (mode & FALLOC_FL_PUNCH_HOLE) + return ext4_punch_hole(inode, offset, len); + if (mode & FALLOC_FL_COLLAPSE_RANGE) return ext4_collapse_range(inode, offset, len); diff -u linux-azure-5.4.0/fs/ext4/file.c linux-azure-5.4.0/fs/ext4/file.c --- linux-azure-5.4.0/fs/ext4/file.c +++ linux-azure-5.4.0/fs/ext4/file.c @@ -505,6 +505,12 @@ inode_unlock_shared(inode); break; } + /* + * Make sure inline data cannot be created anymore since we are going + * to allocate blocks for DIO. We know the inode does not have any + * inline data now because ext4_dio_supported() checked for that. + */ + ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); if (offset < 0) return offset; diff -u linux-azure-5.4.0/fs/ext4/ialloc.c linux-azure-5.4.0/fs/ext4/ialloc.c --- linux-azure-5.4.0/fs/ext4/ialloc.c +++ linux-azure-5.4.0/fs/ext4/ialloc.c @@ -94,7 +94,8 @@ goto verified; blk = ext4_inode_bitmap(sb, desc); if (!ext4_inode_bitmap_csum_verify(sb, block_group, desc, bh, - EXT4_INODES_PER_GROUP(sb) / 8)) { + EXT4_INODES_PER_GROUP(sb) / 8) || + ext4_simulate_fail(sb, EXT4_SIM_IBITMAP_CRC)) { ext4_unlock_group(sb, block_group); ext4_error(sb, "Corrupt inode bitmap - block_group = %u, " "inode_bitmap = %llu", block_group, blk); @@ -192,11 +193,12 @@ get_bh(bh); submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh); wait_on_buffer(bh); + ext4_simulate_fail_bh(sb, bh, EXT4_SIM_IBITMAP_EIO); if (!buffer_uptodate(bh)) { put_bh(bh); - ext4_error(sb, "Cannot read inode bitmap - " - "block_group = %u, inode_bitmap = %llu", - block_group, bitmap_blk); + ext4_error_err(sb, EIO, "Cannot read inode bitmap - " + "block_group = %u, inode_bitmap = %llu", + block_group, bitmap_blk); ext4_mark_group_bitmap_corrupted(sb, block_group, EXT4_GROUP_INFO_IBITMAP_CORRUPT); return ERR_PTR(-EIO); @@ -394,7 +396,7 @@ * * We always try to spread first-level directories. * - * If there are blockgroups with both free inodes and free blocks counts + * If there are blockgroups with both free inodes and free clusters counts * not worse than average we return one with smallest directory count. * Otherwise we simply return a random group. * @@ -403,7 +405,7 @@ * It's OK to put directory into a group unless * it has too many directories already (max_dirs) or * it has too few free inodes left (min_inodes) or - * it has too few free blocks left (min_blocks) or + * it has too few free clusters left (min_clusters) or * Parent's group is preferred, if it doesn't satisfy these * conditions we search cyclically through the rest. If none * of the groups look good we just look for a group with more @@ -419,7 +421,7 @@ ext4_group_t real_ngroups = ext4_get_groups_count(sb); int inodes_per_group = EXT4_INODES_PER_GROUP(sb); unsigned int freei, avefreei, grp_free; - ext4_fsblk_t freeb, avefreec; + ext4_fsblk_t freec, avefreec; unsigned int ndirs; int max_dirs, min_inodes; ext4_grpblk_t min_clusters; @@ -438,9 +440,8 @@ freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter); avefreei = freei / ngroups; - freeb = EXT4_C2B(sbi, - percpu_counter_read_positive(&sbi->s_freeclusters_counter)); - avefreec = freeb; + freec = percpu_counter_read_positive(&sbi->s_freeclusters_counter); + avefreec = freec; do_div(avefreec, ngroups); ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter); @@ -501,7 +502,7 @@ goto fallback; } - max_dirs = ndirs / ngroups + inodes_per_group / 16; + max_dirs = ndirs / ngroups + inodes_per_group*flex_size / 16; min_inodes = avefreei - inodes_per_group*flex_size / 4; if (min_inodes < 1) min_inodes = 1; @@ -1228,8 +1229,9 @@ inode = ext4_iget(sb, ino, EXT4_IGET_NORMAL); if (IS_ERR(inode)) { err = PTR_ERR(inode); - ext4_error(sb, "couldn't read orphan inode %lu (err %d)", - ino, err); + ext4_error_err(sb, -err, + "couldn't read orphan inode %lu (err %d)", + ino, err); return inode; } diff -u linux-azure-5.4.0/fs/ext4/inline.c linux-azure-5.4.0/fs/ext4/inline.c --- linux-azure-5.4.0/fs/ext4/inline.c +++ linux-azure-5.4.0/fs/ext4/inline.c @@ -34,6 +34,9 @@ struct ext4_inode *raw_inode; int free, min_offs; + if (!EXT4_INODE_HAS_XATTR_SPACE(inode)) + return 0; + min_offs = EXT4_SB(inode->i_sb)->s_inode_size - EXT4_GOOD_OLD_INODE_SIZE - EXT4_I(inode)->i_extra_isize - @@ -98,9 +101,9 @@ error = ext4_get_inode_loc(inode, &iloc); if (error) { - ext4_error_inode(inode, __func__, __LINE__, 0, - "can't get inode location %lu", - inode->i_ino); + ext4_error_inode_err(inode, __func__, __LINE__, 0, -error, + "can't get inode location %lu", + inode->i_ino); return 0; } @@ -733,25 +736,26 @@ void *kaddr; struct ext4_iloc iloc; - if (unlikely(copied < len)) { - if (!PageUptodate(page)) { - copied = 0; - goto out; - } - } + if (unlikely(copied < len) && !PageUptodate(page)) + return 0; ret = ext4_get_inode_loc(inode, &iloc); if (ret) { ext4_std_error(inode->i_sb, ret); - copied = 0; - goto out; + return ret; } ext4_write_lock_xattr(inode, &no_expand); BUG_ON(!ext4_has_inline_data(inode)); + /* + * ei->i_inline_off may have changed since ext4_write_begin() + * called ext4_try_to_write_inline_data() + */ + (void) ext4_find_inline_data_nolock(inode); + kaddr = kmap_atomic(page); - ext4_write_inline_data(inode, &iloc, kaddr, pos, len); + ext4_write_inline_data(inode, &iloc, kaddr, pos, copied); kunmap_atomic(kaddr); SetPageUptodate(page); /* clear page dirty so that writepages wouldn't work for us. */ @@ -760,7 +764,7 @@ ext4_write_unlock_xattr(inode, &no_expand); brelse(iloc.bh); mark_inode_dirty(inode); -out: + return copied; } @@ -1119,7 +1123,15 @@ struct ext4_iloc *iloc, void *buf, int inline_size) { - ext4_create_inline_data(handle, inode, inline_size); + int ret; + + ret = ext4_create_inline_data(handle, inode, inline_size); + if (ret) { + ext4_msg(inode->i_sb, KERN_EMERG, + "error restoring inline_data for inode -- potential data loss! (inode %lu, error %d)", + inode->i_ino, ret); + return; + } ext4_write_inline_data(inode, iloc, buf, 0, inline_size); ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); } @@ -1761,8 +1773,9 @@ err = ext4_get_inode_loc(dir, &iloc); if (err) { - EXT4_ERROR_INODE(dir, "error %d getting inode %lu block", - err, dir->i_ino); + EXT4_ERROR_INODE_ERR(dir, -err, + "error %d getting inode %lu block", + err, dir->i_ino); return true; } @@ -2004,6 +2017,18 @@ if (!ext4_has_inline_data(inode)) { ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); return 0; + } else if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) { + /* + * Inode has inline data but EXT4_STATE_MAY_INLINE_DATA is + * cleared. This means we are in the middle of moving of + * inline data to delay allocated block. Just force writeout + * here to finish conversion. + */ + error = filemap_flush(inode->i_mapping); + if (error) + return error; + if (!ext4_has_inline_data(inode)) + return 0; } needed_blocks = ext4_writepage_trans_blocks(inode); diff -u linux-azure-5.4.0/fs/ext4/inode.c linux-azure-5.4.0/fs/ext4/inode.c --- linux-azure-5.4.0/fs/ext4/inode.c +++ linux-azure-5.4.0/fs/ext4/inode.c @@ -304,9 +304,9 @@ if (inode->i_blocks) { err = ext4_truncate(inode); if (err) { - ext4_error(inode->i_sb, - "couldn't truncate inode %lu (err %d)", - inode->i_ino, err); + ext4_error_err(inode->i_sb, -err, + "couldn't truncate inode %lu (err %d)", + inode->i_ino, err); goto stop_handle; } } @@ -421,8 +421,7 @@ (inode->i_ino == le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum))) return 0; - if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, - map->m_len)) { + if (!ext4_inode_block_valid(inode, map->m_pblk, map->m_len)) { ext4_error_inode(inode, func, line, map->m_pblk, "lblock %lu mapped to illegal pblock %llu " "(length %d)", (unsigned long) map->m_lblk, @@ -1317,6 +1316,13 @@ page = grab_cache_page_write_begin(mapping, index, flags); if (!page) return -ENOMEM; + /* + * The same as page allocation, we prealloc buffer heads before + * starting the handle. + */ + if (!page_has_buffers(page)) + create_empty_buffers(page, inode->i_sb->s_blocksize, 0); + unlock_page(page); retry_journal: @@ -1439,6 +1445,7 @@ goto errout; } copied = ret; + ret = 0; } else copied = block_write_end(file, mapping, pos, len, copied, page, fsdata); @@ -1465,13 +1472,14 @@ if (i_size_changed || inline_data) ext4_mark_inode_dirty(handle, inode); +errout: if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode)) /* if we have allocated more blocks and copied * less. We will have blocks allocated outside * inode->i_size. So truncate them */ ext4_orphan_add(handle, inode); -errout: + ret2 = ext4_journal_stop(handle); if (!ret) ret = ret2; @@ -1554,6 +1562,7 @@ goto errout; } copied = ret; + ret = 0; } else if (unlikely(copied < len) && !PageUptodate(page)) { copied = 0; ext4_journalled_zero_new_buffers(handle, page, from, to); @@ -1583,6 +1592,7 @@ ret = ret2; } +errout: if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode)) /* if we have allocated more blocks and copied * less. We will have blocks allocated outside @@ -1590,7 +1600,6 @@ */ ext4_orphan_add(handle, inode); -errout: ret2 = ext4_journal_stop(handle); if (!ret) ret = ret2; @@ -1714,7 +1723,14 @@ ext4_lblk_t start, last; start = index << (PAGE_SHIFT - inode->i_blkbits); last = end << (PAGE_SHIFT - inode->i_blkbits); + + /* + * avoid racing with extent status tree scans made by + * ext4_insert_delayed_block() + */ + down_write(&EXT4_I(inode)->i_data_sem); ext4_es_remove_extent(inode, start, last - start + 1); + up_write(&EXT4_I(inode)->i_data_sem); } pagevec_init(&pvec); @@ -1782,6 +1798,7 @@ struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); int ret; bool allocated = false; + bool reserved = false; /* * If the cluster containing lblk is shared with a delayed, @@ -1798,6 +1815,7 @@ ret = ext4_da_reserve_space(inode); if (ret != 0) /* ENOSPC */ goto errout; + reserved = true; } else { /* bigalloc */ if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) { if (!ext4_es_scan_clu(inode, @@ -1810,6 +1828,7 @@ ret = ext4_da_reserve_space(inode); if (ret != 0) /* ENOSPC */ goto errout; + reserved = true; } else { allocated = true; } @@ -1820,6 +1839,8 @@ } ret = ext4_es_insert_delayed_block(inode, lblk, allocated); + if (ret && reserved) + ext4_da_release_space(inode, 1); errout: return ret; @@ -2071,6 +2092,9 @@ } if (ret == 0) ret = err; + err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len); + if (ret == 0) + ret = err; EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; err = ext4_journal_stop(handle); if (!ret) @@ -2153,6 +2177,15 @@ else len = PAGE_SIZE; + /* Should never happen but for bugs in other kernel subsystems */ + if (!page_has_buffers(page)) { + ext4_warning_inode(inode, + "page %lu does not have buffers attached", page->index); + ClearPageDirty(page); + unlock_page(page); + return 0; + } + page_bufs = page_buffers(page); /* * We cannot do block allocation or other extent handling in this @@ -2594,10 +2627,11 @@ EXT4_I(inode)->i_disksize = disksize; up_write(&EXT4_I(inode)->i_data_sem); err2 = ext4_mark_inode_dirty(handle, inode); - if (err2) - ext4_error(inode->i_sb, - "Failed to mark inode %lu dirty", - inode->i_ino); + if (err2) { + ext4_error_err(inode->i_sb, -err2, + "Failed to mark inode %lu dirty", + inode->i_ino); + } if (!err) err = err2; } @@ -2702,6 +2736,22 @@ wait_on_page_writeback(page); BUG_ON(PageWriteback(page)); + /* + * Should never happen but for buggy code in + * other subsystems that call + * set_page_dirty() without properly warning + * the file system first. See [1] for more + * information. + * + * [1] https://lore.kernel.org/linux-mm/20180103100430.GE4911@quack2.suse.cz + */ + if (!page_has_buffers(page)) { + ext4_warning_inode(mpd->inode, "page %lu does not have buffers attached", page->index); + ClearPageDirty(page); + unlock_page(page); + continue; + } + if (mpd->map.m_len == 0) mpd->first_page = page->index; mpd->next_page = page->index + 1; @@ -4278,7 +4328,8 @@ struct super_block *sb = inode->i_sb; ext4_lblk_t first_block, stop_block; struct address_space *mapping = inode->i_mapping; - loff_t first_block_offset, last_block_offset; + loff_t first_block_offset, last_block_offset, max_length; + struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); handle_t *handle; unsigned int credits; int ret = 0; @@ -4288,15 +4339,6 @@ trace_ext4_punch_hole(inode, offset, length, 0); - ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA); - if (ext4_has_inline_data(inode)) { - down_write(&EXT4_I(inode)->i_mmap_sem); - ret = ext4_convert_inline_data(inode); - up_write(&EXT4_I(inode)->i_mmap_sem); - if (ret) - return ret; - } - /* * Write out all dirty pages to avoid race conditions * Then release them. @@ -4324,6 +4366,14 @@ offset; } + /* + * For punch hole the length + offset needs to be within one block + * before last range. Adjust the length if it goes beyond that limit. + */ + max_length = sbi->s_bitmap_maxbytes - inode->i_sb->s_blocksize; + if (offset + length > max_length) + length = max_length - offset; + if (offset & (sb->s_blocksize - 1) || (offset + length) & (sb->s_blocksize - 1)) { /* @@ -4611,6 +4661,8 @@ bh = sb_getblk(sb, block); if (unlikely(!bh)) return -ENOMEM; + if (ext4_simulate_fail(sb, EXT4_SIM_INODE_EIO)) + goto simulate_eio; if (!buffer_uptodate(bh)) { lock_buffer(bh); @@ -4709,7 +4761,8 @@ blk_finish_plug(&plug); wait_on_buffer(bh); if (!buffer_uptodate(bh)) { - EXT4_ERROR_INODE_BLOCK(inode, block, + simulate_eio: + ext4_error_inode_block(inode, block, EIO, "unable to read itable block"); brelse(bh); return -EIO; @@ -4801,8 +4854,7 @@ __le32 *magic = (void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize; - if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <= - EXT4_INODE_SIZE(inode->i_sb) && + if (EXT4_INODE_HAS_XATTR_SPACE(inode) && *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) { ext4_set_inode_state(inode, EXT4_STATE_XATTR); return ext4_find_inline_data_nolock(inode); @@ -4861,7 +4913,7 @@ (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))) { if (flags & EXT4_IGET_HANDLE) return ERR_PTR(-ESTALE); - __ext4_error(sb, function, line, + __ext4_error(sb, function, line, EFSCORRUPTED, 0, "inode #%lu: comm %s: iget: illegal inode #", ino, current->comm); return ERR_PTR(-EFSCORRUPTED); @@ -4922,9 +4974,10 @@ sizeof(gen)); } - if (!ext4_inode_csum_verify(inode, raw_inode, ei)) { - ext4_error_inode(inode, function, line, 0, - "iget: checksum invalid"); + if (!ext4_inode_csum_verify(inode, raw_inode, ei) || + ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) { + ext4_error_inode_err(inode, function, line, 0, EFSBADCRC, + "iget: checksum invalid"); ret = -EFSBADCRC; goto bad_inode; } @@ -5069,7 +5122,7 @@ ret = 0; if (ei->i_file_acl && - !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { + !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) { ext4_error_inode(inode, function, line, 0, "iget: bad extended attribute block %llu", ei->i_file_acl); @@ -5474,8 +5527,8 @@ if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) sync_dirty_buffer(iloc.bh); if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { - EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, - "IO error syncing inode"); + ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO, + "IO error syncing inode"); err = -EIO; } brelse(iloc.bh); @@ -5626,6 +5679,7 @@ if (attr->ia_valid & ATTR_SIZE) { handle_t *handle; loff_t oldsize = inode->i_size; + loff_t old_disksize; int shrink = (attr->ia_size < inode->i_size); if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { @@ -5681,6 +5735,7 @@ inode->i_ctime = inode->i_mtime; } down_write(&EXT4_I(inode)->i_data_sem); + old_disksize = EXT4_I(inode)->i_disksize; EXT4_I(inode)->i_disksize = attr->ia_size; rc = ext4_mark_inode_dirty(handle, inode); if (!error) @@ -5692,6 +5747,8 @@ */ if (!error) i_size_write(inode, attr->ia_size); + else + EXT4_I(inode)->i_disksize = old_disksize; up_write(&EXT4_I(inode)->i_data_sem); ext4_journal_stop(handle); if (error) @@ -6276,9 +6333,17 @@ if (err) goto out_ret; + /* + * On data journalling we skip straight to the transaction handle: + * there's no delalloc; page truncated will be checked later; the + * early return w/ all buffers mapped (calculates size/len) can't + * be used; and there's no dioread_nolock, so only ext4_get_block. + */ + if (ext4_should_journal_data(inode)) + goto retry_alloc; + /* Delalloc case is easy... */ if (test_opt(inode->i_sb, DELALLOC) && - !ext4_should_journal_data(inode) && !ext4_nonda_switch(inode->i_sb)) { do { err = block_page_mkwrite(vma, vmf, @@ -6304,6 +6369,9 @@ /* * Return if we have all the buffers mapped. This avoids the need to do * journal_start/journal_stop which can block and take a long time + * + * This cannot be done for data journalling, as we have to add the + * inode to the transaction's list to writeprotect pages on commit. */ if (page_has_buffers(page)) { if (!ext4_walk_page_buffers(NULL, page_buffers(page), @@ -6328,16 +6396,43 @@ ret = VM_FAULT_SIGBUS; goto out; } - err = block_page_mkwrite(vma, vmf, get_block); - if (!err && ext4_should_journal_data(inode)) { - if (ext4_walk_page_buffers(handle, page_buffers(page), 0, - PAGE_SIZE, NULL, do_journal_get_write_access)) { - unlock_page(page); + /* + * Data journalling can't use block_page_mkwrite() because it + * will set_buffer_dirty() before do_journal_get_write_access() + * thus might hit warning messages for dirty metadata buffers. + */ + if (!ext4_should_journal_data(inode)) { + err = block_page_mkwrite(vma, vmf, get_block); + } else { + lock_page(page); + size = i_size_read(inode); + /* Page got truncated from under us? */ + if (page->mapping != mapping || page_offset(page) > size) { + ret = VM_FAULT_NOPAGE; + goto out_error; + } + + if (page->index == size >> PAGE_SHIFT) + len = size & ~PAGE_MASK; + else + len = PAGE_SIZE; + + err = __block_write_begin(page, 0, len, ext4_get_block); + if (!err) { ret = VM_FAULT_SIGBUS; - ext4_journal_stop(handle); - goto out; + if (ext4_walk_page_buffers(handle, page_buffers(page), + 0, len, NULL, do_journal_get_write_access)) + goto out_error; + if (ext4_walk_page_buffers(handle, page_buffers(page), + 0, len, NULL, write_end_fn)) + goto out_error; + if (ext4_jbd2_inode_add_write(handle, inode, + page_offset(page), len)) + goto out_error; + ext4_set_inode_state(inode, EXT4_STATE_JDATA); + } else { + unlock_page(page); } - ext4_set_inode_state(inode, EXT4_STATE_JDATA); } ext4_journal_stop(handle); if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) @@ -6348,6 +6443,10 @@ up_read(&EXT4_I(inode)->i_mmap_sem); sb_end_pagefault(inode->i_sb); return ret; +out_error: + unlock_page(page); + ext4_journal_stop(handle); + goto out; } vm_fault_t ext4_filemap_fault(struct vm_fault *vmf) diff -u linux-azure-5.4.0/fs/ext4/ioctl.c linux-azure-5.4.0/fs/ext4/ioctl.c --- linux-azure-5.4.0/fs/ext4/ioctl.c +++ linux-azure-5.4.0/fs/ext4/ioctl.c @@ -1120,8 +1120,6 @@ sizeof(range))) return -EFAULT; - range.minlen = max((unsigned int)range.minlen, - q->limits.discard_granularity); ret = ext4_trim_fs(sb, &range); if (ret < 0) return ret; diff -u linux-azure-5.4.0/fs/ext4/mballoc.c linux-azure-5.4.0/fs/ext4/mballoc.c --- linux-azure-5.4.0/fs/ext4/mballoc.c +++ linux-azure-5.4.0/fs/ext4/mballoc.c @@ -1542,10 +1542,11 @@ if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) { /* Should never happen! (but apparently sometimes does?!?) */ WARN_ON(1); - ext4_error(e4b->bd_sb, "corruption or bug in mb_find_extent " - "block=%d, order=%d needed=%d ex=%u/%d/%d@%u", - block, order, needed, ex->fe_group, ex->fe_start, - ex->fe_len, ex->fe_logical); + ext4_grp_locked_error(e4b->bd_sb, e4b->bd_group, 0, 0, + "corruption or bug in mb_find_extent " + "block=%d, order=%d needed=%d ex=%u/%d/%d@%u", + block, order, needed, ex->fe_group, ex->fe_start, + ex->fe_len, ex->fe_logical); ex->fe_len = 0; ex->fe_start = 0; ex->fe_group = 0; @@ -2992,7 +2993,7 @@ block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex); len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len); - if (!ext4_data_block_valid(sbi, block, len)) { + if (!ext4_inode_block_valid(ac->ac_inode, block, len)) { ext4_error(sb, "Allocating blocks %llu-%llu which overlap " "fs metadata", block, block+len); /* File system mounted not to panic on error @@ -3171,6 +3172,15 @@ size = size >> bsbits; start = start_off >> bsbits; + /* + * For tiny groups (smaller than 8MB) the chosen allocation + * alignment may be larger than group size. Make sure the + * alignment does not move allocation to a different group which + * makes mballoc fail assertions later. + */ + start = max(start, rounddown(ac->ac_o_ex.fe_logical, + (ext4_lblk_t)EXT4_BLOCKS_PER_GROUP(ac->ac_sb))); + /* don't cover already allocated blocks in selected range */ if (ar->pleft && start <= ar->lleft) { size -= ar->lleft + 1 - start; @@ -3923,8 +3933,9 @@ bitmap_bh = ext4_read_block_bitmap(sb, group); if (IS_ERR(bitmap_bh)) { err = PTR_ERR(bitmap_bh); - ext4_error(sb, "Error %d reading block bitmap for %u", - err, group); + ext4_error_err(sb, -err, + "Error %d reading block bitmap for %u", + err, group); return 0; } @@ -4091,16 +4102,16 @@ err = ext4_mb_load_buddy_gfp(sb, group, &e4b, GFP_NOFS|__GFP_NOFAIL); if (err) { - ext4_error(sb, "Error %d loading buddy information for %u", - err, group); + ext4_error_err(sb, -err, "Error %d loading buddy information for %u", + err, group); continue; } bitmap_bh = ext4_read_block_bitmap(sb, group); if (IS_ERR(bitmap_bh)) { err = PTR_ERR(bitmap_bh); - ext4_error(sb, "Error %d reading block bitmap for %u", - err, group); + ext4_error_err(sb, -err, "Error %d reading block bitmap for %u", + err, group); ext4_mb_unload_buddy(&e4b); continue; } @@ -4353,8 +4364,8 @@ err = ext4_mb_load_buddy_gfp(sb, group, &e4b, GFP_NOFS|__GFP_NOFAIL); if (err) { - ext4_error(sb, "Error %d loading buddy information for %u", - err, group); + ext4_error_err(sb, -err, "Error %d loading buddy information for %u", + err, group); continue; } ext4_lock_group(sb, group); @@ -4757,7 +4768,7 @@ sbi = EXT4_SB(sb); if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) && - !ext4_data_block_valid(sbi, block, count)) { + !ext4_inode_block_valid(inode, block, count)) { ext4_error(sb, "Freeing blocks not in datazone - " "block = %llu, count = %lu", block, count); goto error_return; @@ -5269,6 +5280,7 @@ */ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) { + struct request_queue *q = bdev_get_queue(sb->s_bdev); struct ext4_group_info *grp; ext4_group_t group, first_group, last_group; ext4_grpblk_t cnt = 0, first_cluster, last_cluster; @@ -5287,6 +5299,13 @@ start >= max_blks || range->len < sb->s_blocksize) return -EINVAL; + /* No point to try to trim less than discard granularity */ + if (range->minlen < q->limits.discard_granularity) { + minlen = EXT4_NUM_B2C(EXT4_SB(sb), + q->limits.discard_granularity >> sb->s_blocksize_bits); + if (minlen > EXT4_CLUSTERS_PER_GROUP(sb)) + goto out; + } if (end >= max_blks) end = max_blks - 1; if (end <= first_data_blk) diff -u linux-azure-5.4.0/fs/ext4/migrate.c linux-azure-5.4.0/fs/ext4/migrate.c --- linux-azure-5.4.0/fs/ext4/migrate.c +++ linux-azure-5.4.0/fs/ext4/migrate.c @@ -435,7 +435,7 @@ struct inode *tmp_inode = NULL; struct migrate_struct lb; unsigned long max_entries; - __u32 goal; + __u32 goal, tmp_csum_seed; uid_t owner[2]; /* @@ -443,7 +443,8 @@ * already is extent-based, error out. */ if (!ext4_has_feature_extents(inode->i_sb) || - (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) + ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) || + ext4_has_inline_data(inode)) return -EINVAL; if (S_ISLNK(inode->i_mode) && inode->i_blocks == 0) @@ -455,12 +456,12 @@ percpu_down_write(&sbi->s_writepages_rwsem); /* - * Worst case we can touch the allocation bitmaps, a bgd - * block, and a block to link in the orphan list. We do need - * need to worry about credits for modifying the quota inode. + * Worst case we can touch the allocation bitmaps and a block + * group descriptor block. We do need need to worry about + * credits for modifying the quota inode. */ handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, - 4 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb)); + 3 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb)); if (IS_ERR(handle)) { retval = PTR_ERR(handle); @@ -477,6 +478,14 @@ ext4_journal_stop(handle); goto out_unlock; } + /* + * Use the correct seed for checksum (i.e. the seed from 'inode'). This + * is so that the metadata blocks will have the correct checksum after + * the migration. + */ + ei = EXT4_I(inode); + tmp_csum_seed = EXT4_I(tmp_inode)->i_csum_seed; + EXT4_I(tmp_inode)->i_csum_seed = ei->i_csum_seed; i_size_write(tmp_inode, i_size_read(inode)); /* * Set the i_nlink to zero so it will be deleted later @@ -485,7 +494,6 @@ clear_nlink(tmp_inode); ext4_ext_tree_init(handle, tmp_inode); - ext4_orphan_add(handle, tmp_inode); ext4_journal_stop(handle); /* @@ -510,17 +518,10 @@ handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1); if (IS_ERR(handle)) { - /* - * It is impossible to update on-disk structures without - * a handle, so just rollback in-core changes and live other - * work to orphan_list_cleanup() - */ - ext4_orphan_del(NULL, tmp_inode); retval = PTR_ERR(handle); goto out_tmp_inode; } - ei = EXT4_I(inode); i_data = ei->i_data; memset(&lb, 0, sizeof(lb)); @@ -594,6 +595,7 @@ * the inode is not visible to user space. */ tmp_inode->i_blocks = 0; + EXT4_I(tmp_inode)->i_csum_seed = tmp_csum_seed; /* Reset the extent details */ ext4_ext_tree_init(handle, tmp_inode); diff -u linux-azure-5.4.0/fs/ext4/mmp.c linux-azure-5.4.0/fs/ext4/mmp.c --- linux-azure-5.4.0/fs/ext4/mmp.c +++ linux-azure-5.4.0/fs/ext4/mmp.c @@ -174,8 +174,10 @@ * (s_mmp_update_interval * 60) seconds. */ if (retval) { - if ((failed_writes % 60) == 0) - ext4_error(sb, "Error writing to MMP block"); + if ((failed_writes % 60) == 0) { + ext4_error_err(sb, -retval, + "Error writing to MMP block"); + } failed_writes++; } @@ -206,8 +208,9 @@ retval = read_mmp_block(sb, &bh_check, mmp_block); if (retval) { - ext4_error(sb, "error reading MMP data: %d", - retval); + ext4_error_err(sb, -retval, + "error reading MMP data: %d", + retval); goto exit_thread; } @@ -219,7 +222,7 @@ "Error while updating MMP info. " "The filesystem seems to have been" " multiply mounted."); - ext4_error(sb, "abort"); + ext4_error_err(sb, EBUSY, "abort"); put_bh(bh_check); retval = -EBUSY; goto exit_thread; diff -u linux-azure-5.4.0/fs/ext4/namei.c linux-azure-5.4.0/fs/ext4/namei.c --- linux-azure-5.4.0/fs/ext4/namei.c +++ linux-azure-5.4.0/fs/ext4/namei.c @@ -54,6 +54,7 @@ struct inode *inode, ext4_lblk_t *block) { + struct ext4_map_blocks map; struct buffer_head *bh; int err; @@ -63,6 +64,21 @@ return ERR_PTR(-ENOSPC); *block = inode->i_size >> inode->i_sb->s_blocksize_bits; + map.m_lblk = *block; + map.m_len = 1; + + /* + * We're appending new directory block. Make sure the block is not + * allocated yet, otherwise we will end up corrupting the + * directory. + */ + err = ext4_map_blocks(NULL, inode, &map, 0); + if (err < 0) + return ERR_PTR(err); + if (err) { + EXT4_ERROR_INODE(inode, "Logical block already allocated"); + return ERR_PTR(-EFSCORRUPTED); + } bh = ext4_bread(handle, inode, *block, EXT4_GET_BLOCKS_CREATE); if (IS_ERR(bh)) @@ -109,7 +125,10 @@ struct ext4_dir_entry *dirent; int is_dx_block = 0; - bh = ext4_bread(NULL, inode, block, 0); + if (ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_EIO)) + bh = ERR_PTR(-EIO); + else + bh = ext4_bread(NULL, inode, block, 0); if (IS_ERR(bh)) { __ext4_warning(inode->i_sb, func, line, "inode #%lu: lblock %lu: comm %s: " @@ -153,21 +172,25 @@ * caller is sure it should be an index block. */ if (is_dx_block && type == INDEX) { - if (ext4_dx_csum_verify(inode, dirent)) + if (ext4_dx_csum_verify(inode, dirent) && + !ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_CRC)) set_buffer_verified(bh); else { - ext4_error_inode(inode, func, line, block, - "Directory index failed checksum"); + ext4_error_inode_err(inode, func, line, block, + EFSBADCRC, + "Directory index failed checksum"); brelse(bh); return ERR_PTR(-EFSBADCRC); } } if (!is_dx_block) { - if (ext4_dirblock_csum_verify(inode, bh)) + if (ext4_dirblock_csum_verify(inode, bh) && + !ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_CRC)) set_buffer_verified(bh); else { - ext4_error_inode(inode, func, line, block, - "Directory block failed checksum"); + ext4_error_inode_err(inode, func, line, block, + EFSBADCRC, + "Directory block failed checksum"); brelse(bh); return ERR_PTR(-EFSBADCRC); } @@ -273,9 +296,9 @@ struct dx_hash_info *hinfo, struct dx_frame *frame); static void dx_release(struct dx_frame *frames); -static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, - unsigned blocksize, struct dx_hash_info *hinfo, - struct dx_map_entry map[]); +static int dx_make_map(struct inode *dir, struct buffer_head *bh, + struct dx_hash_info *hinfo, + struct dx_map_entry *map_tail); static void dx_sort_map(struct dx_map_entry *map, unsigned count); static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to, struct dx_map_entry *offsets, int count, unsigned blocksize); @@ -750,12 +773,14 @@ dx_probe(struct ext4_filename *fname, struct inode *dir, struct dx_hash_info *hinfo, struct dx_frame *frame_in) { - unsigned count, indirect; + unsigned count, indirect, level, i; struct dx_entry *at, *entries, *p, *q, *m; struct dx_root *root; struct dx_frame *frame = frame_in; struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR); u32 hash; + ext4_lblk_t block; + ext4_lblk_t blocks[EXT4_HTREE_LEVEL]; memset(frame_in, 0, EXT4_HTREE_LEVEL * sizeof(frame_in[0])); frame->bh = ext4_read_dirblock(dir, 0, INDEX); @@ -811,6 +836,8 @@ } dxtrace(printk("Look up %x", hash)); + level = 0; + blocks[0] = 0; while (1) { count = dx_get_count(entries); if (!count || count > dx_get_limit(entries)) { @@ -852,15 +879,27 @@ dx_get_block(at))); frame->entries = entries; frame->at = at; - if (!indirect--) + + block = dx_get_block(at); + for (i = 0; i <= level; i++) { + if (blocks[i] == block) { + ext4_warning_inode(dir, + "dx entry: tree cycle block %u points back to block %u", + blocks[level], block); + goto fail; + } + } + if (++level > indirect) return frame; + blocks[level] = block; frame++; - frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX); + frame->bh = ext4_read_dirblock(dir, block, INDEX); if (IS_ERR(frame->bh)) { ret_err = (struct dx_frame *) frame->bh; frame->bh = NULL; goto fail; } + entries = ((struct dx_node *) frame->bh->b_data)->entries; if (dx_get_limit(entries) != dx_node_limit(dir)) { @@ -1205,15 +1244,23 @@ * Create map of hash values, offsets, and sizes, stored at end of block. * Returns number of entries mapped. */ -static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, - unsigned blocksize, struct dx_hash_info *hinfo, +static int dx_make_map(struct inode *dir, struct buffer_head *bh, + struct dx_hash_info *hinfo, struct dx_map_entry *map_tail) { int count = 0; - char *base = (char *) de; + struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)bh->b_data; + unsigned int buflen = bh->b_size; + char *base = bh->b_data; struct dx_hash_info h = *hinfo; - while ((char *) de < base + blocksize) { + if (ext4_has_metadata_csum(dir->i_sb)) + buflen -= sizeof(struct ext4_dir_entry_tail); + + while ((char *) de < base + buflen) { + if (ext4_check_dir_entry(dir, NULL, de, bh, base, buflen, + ((char *)de) - base)) + return -EFSCORRUPTED; if (de->name_len && de->inode) { ext4fs_dirhash(dir, de->name, de->name_len, &h); map_tail--; @@ -1223,8 +1270,7 @@ count++; cond_resched(); } - /* XXX: do we need to check rec_len == 0 case? -Chris */ - de = ext4_next_entry(de, blocksize); + de = ext4_next_entry(de, dir->i_sb->s_blocksize); } return count; } @@ -1385,10 +1431,10 @@ de = (struct ext4_dir_entry_2 *)search_buf; dlimit = search_buf + buf_size; - while ((char *) de < dlimit) { + while ((char *) de < dlimit - EXT4_BASE_DIR_LEN) { /* this code is executed quadratically often */ /* do minimal checking `by hand' */ - if ((char *) de + de->name_len <= dlimit && + if (de->name + de->name_len <= dlimit && ext4_match(dir, fname, de)) { /* found a match - just to be sure, do * a full check */ @@ -1528,8 +1574,9 @@ goto next; wait_on_buffer(bh); if (!buffer_uptodate(bh)) { - EXT4_ERROR_INODE(dir, "reading directory lblock %lu", - (unsigned long) block); + EXT4_ERROR_INODE_ERR(dir, EIO, + "reading directory lblock %lu", + (unsigned long) block); brelse(bh); ret = ERR_PTR(-EIO); goto cleanup_and_exit; @@ -1538,8 +1585,9 @@ !is_dx_internal_node(dir, block, (struct ext4_dir_entry *)bh->b_data) && !ext4_dirblock_csum_verify(dir, bh)) { - EXT4_ERROR_INODE(dir, "checksumming directory " - "block %lu", (unsigned long)block); + EXT4_ERROR_INODE_ERR(dir, EFSBADCRC, + "checksumming directory " + "block %lu", (unsigned long)block); brelse(bh); ret = ERR_PTR(-EFSBADCRC); goto cleanup_and_exit; @@ -1813,7 +1861,8 @@ struct dx_hash_info *hinfo) { unsigned blocksize = dir->i_sb->s_blocksize; - unsigned count, continued; + unsigned continued; + int count; struct buffer_head *bh2; ext4_lblk_t newblock; u32 hash2; @@ -1848,8 +1897,11 @@ /* create map in the end of data2 block */ map = (struct dx_map_entry *) (data2 + blocksize); - count = dx_make_map(dir, (struct ext4_dir_entry_2 *) data1, - blocksize, hinfo, map); + count = dx_make_map(dir, *bh, hinfo, map); + if (count < 0) { + err = count; + goto journal_error; + } map -= count; dx_sort_map(map, count); /* Ensure that neither split block is over half full */ @@ -2098,8 +2150,16 @@ memcpy(data2, de, len); de = (struct ext4_dir_entry_2 *) data2; top = data2 + len; - while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top) + while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top) { + if (ext4_check_dir_entry(dir, NULL, de, bh2, data2, len, + (data2 + (blocksize - csum_size) - + (char *) de))) { + brelse(bh2); + brelse(bh); + return -EFSCORRUPTED; + } de = de2; + } de->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) - (char *) de, blocksize); @@ -2407,7 +2467,7 @@ goto journal_error; err = ext4_handle_dirty_dx_node(handle, dir, frame->bh); - if (err) + if (restart || err) goto journal_error; } else { struct dx_root *dxroot; @@ -2886,11 +2946,8 @@ de = (struct ext4_dir_entry_2 *) (bh->b_data + (offset & (sb->s_blocksize - 1))); if (ext4_check_dir_entry(inode, NULL, de, bh, - bh->b_data, bh->b_size, offset)) { - offset = (offset | (sb->s_blocksize - 1)) + 1; - continue; - } - if (le32_to_cpu(de->inode)) { + bh->b_data, bh->b_size, offset) || + le32_to_cpu(de->inode)) { brelse(bh); return false; } @@ -3442,6 +3499,9 @@ struct buffer_head *bh; if (!ext4_has_inline_data(inode)) { + struct ext4_dir_entry_2 *de; + unsigned int offset; + /* The first directory block must not be a hole, so * treat it as DIRENT_HTREE */ @@ -3450,9 +3510,30 @@ *retval = PTR_ERR(bh); return NULL; } - *parent_de = ext4_next_entry( - (struct ext4_dir_entry_2 *)bh->b_data, - inode->i_sb->s_blocksize); + + de = (struct ext4_dir_entry_2 *) bh->b_data; + if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, + bh->b_size, 0) || + le32_to_cpu(de->inode) != inode->i_ino || + strcmp(".", de->name)) { + EXT4_ERROR_INODE(inode, "directory missing '.'"); + brelse(bh); + *retval = -EFSCORRUPTED; + return NULL; + } + offset = ext4_rec_len_from_disk(de->rec_len, + inode->i_sb->s_blocksize); + de = ext4_next_entry(de, inode->i_sb->s_blocksize); + if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, + bh->b_size, offset) || + le32_to_cpu(de->inode) == 0 || strcmp("..", de->name)) { + EXT4_ERROR_INODE(inode, "directory missing '..'"); + brelse(bh); + *retval = -EFSCORRUPTED; + return NULL; + } + *parent_de = de; + return bh; } diff -u linux-azure-5.4.0/fs/ext4/page-io.c linux-azure-5.4.0/fs/ext4/page-io.c --- linux-azure-5.4.0/fs/ext4/page-io.c +++ linux-azure-5.4.0/fs/ext4/page-io.c @@ -100,8 +100,10 @@ continue; } clear_buffer_async_write(bh); - if (bio->bi_status) + if (bio->bi_status) { + set_buffer_write_io_error(bh); buffer_io_error(bh); + } } while ((bh = bh->b_this_page) != head); bit_spin_unlock(BH_Uptodate_Lock, &head->b_state); local_irq_restore(flags); diff -u linux-azure-5.4.0/fs/ext4/resize.c linux-azure-5.4.0/fs/ext4/resize.c --- linux-azure-5.4.0/fs/ext4/resize.c +++ linux-azure-5.4.0/fs/ext4/resize.c @@ -53,6 +53,16 @@ return -EPERM; /* + * If the reserved GDT blocks is non-zero, the resize_inode feature + * should always be set. + */ + if (EXT4_SB(sb)->s_es->s_reserved_gdt_blocks && + !ext4_has_feature_resize_inode(sb)) { + ext4_error(sb, "resize_inode disabled but reserved GDT blocks non-zero"); + return -EFSCORRUPTED; + } + + /* * If we are not using the primary superblock/GDT copy don't resize, * because the user tools have no way of handling this. Probably a * bad time to do it anyways. @@ -74,6 +84,11 @@ return -EPERM; } + if (ext4_has_feature_sparse_super2(sb)) { + ext4_msg(sb, KERN_ERR, "Online resizing not supported with sparse_super2"); + return -EOPNOTSUPP; + } + if (test_and_set_bit_lock(EXT4_FLAGS_RESIZING, &EXT4_SB(sb)->s_ext4_flags)) ret = -EBUSY; @@ -1468,6 +1483,7 @@ * Update the fs overhead information */ ext4_calculate_overhead(sb); + es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead); if (test_opt(sb, DEBUG)) printk(KERN_DEBUG "EXT4-fs: added group %u:" @@ -1963,6 +1979,16 @@ } brelse(bh); + /* + * For bigalloc, trim the requested size to the nearest cluster + * boundary to avoid creating an unusable filesystem. We do this + * silently, instead of returning an error, to avoid breaking + * callers that blindly resize the filesystem to the full size of + * the underlying block device. + */ + if (ext4_has_feature_bigalloc(sb)) + n_blocks_count &= ~((1 << EXT4_CLUSTER_BITS(sb)) - 1); + retry: o_blocks_count = ext4_blocks_count(es); @@ -2064,7 +2090,7 @@ goto out; } - if (ext4_blocks_count(es) == n_blocks_count) + if (ext4_blocks_count(es) == n_blocks_count && n_blocks_count_retry == 0) goto out; err = ext4_alloc_flex_bg_array(sb, n_group + 1); diff -u linux-azure-5.4.0/fs/ext4/super.c linux-azure-5.4.0/fs/ext4/super.c --- linux-azure-5.4.0/fs/ext4/super.c +++ linux-azure-5.4.0/fs/ext4/super.c @@ -355,10 +355,12 @@ #define ext4_get_tstamp(es, tstamp) \ __ext4_get_tstamp(&(es)->tstamp, &(es)->tstamp ## _hi) -static void __save_error_info(struct super_block *sb, const char *func, - unsigned int line) +static void __save_error_info(struct super_block *sb, int error, + __u32 ino, __u64 block, + const char *func, unsigned int line) { struct ext4_super_block *es = EXT4_SB(sb)->s_es; + int err; EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS; if (bdev_read_only(sb->s_bdev)) @@ -367,6 +369,62 @@ ext4_update_tstamp(es, s_last_error_time); strncpy(es->s_last_error_func, func, sizeof(es->s_last_error_func)); es->s_last_error_line = cpu_to_le32(line); + es->s_last_error_ino = cpu_to_le32(ino); + es->s_last_error_block = cpu_to_le64(block); + switch (error) { + case EIO: + err = EXT4_ERR_EIO; + break; + case ENOMEM: + err = EXT4_ERR_ENOMEM; + break; + case EFSBADCRC: + err = EXT4_ERR_EFSBADCRC; + break; + case 0: + case EFSCORRUPTED: + err = EXT4_ERR_EFSCORRUPTED; + break; + case ENOSPC: + err = EXT4_ERR_ENOSPC; + break; + case ENOKEY: + err = EXT4_ERR_ENOKEY; + break; + case EROFS: + err = EXT4_ERR_EROFS; + break; + case EFBIG: + err = EXT4_ERR_EFBIG; + break; + case EEXIST: + err = EXT4_ERR_EEXIST; + break; + case ERANGE: + err = EXT4_ERR_ERANGE; + break; + case EOVERFLOW: + err = EXT4_ERR_EOVERFLOW; + break; + case EBUSY: + err = EXT4_ERR_EBUSY; + break; + case ENOTDIR: + err = EXT4_ERR_ENOTDIR; + break; + case ENOTEMPTY: + err = EXT4_ERR_ENOTEMPTY; + break; + case ESHUTDOWN: + err = EXT4_ERR_ESHUTDOWN; + break; + case EFAULT: + err = EXT4_ERR_EFAULT; + break; + default: + err = EXT4_ERR_UNKNOWN; + } + es->s_last_error_errcode = err; if (!es->s_first_error_time) { es->s_first_error_time = es->s_last_error_time; es->s_first_error_time_hi = es->s_last_error_time_hi; @@ -375,6 +433,7 @@ es->s_first_error_line = cpu_to_le32(line); es->s_first_error_ino = es->s_last_error_ino; es->s_first_error_block = es->s_last_error_block; + es->s_first_error_errcode = es->s_last_error_errcode; } /* * Start the daily error reporting function if it hasn't been @@ -385,10 +444,11 @@ le32_add_cpu(&es->s_error_count, 1); } -static void save_error_info(struct super_block *sb, const char *func, - unsigned int line) +static void save_error_info(struct super_block *sb, int error, + __u32 ino, __u64 block, + const char *func, unsigned int line) { - __save_error_info(sb, func, line); + __save_error_info(sb, error, ino, block, func, line); if (!bdev_read_only(sb->s_bdev)) ext4_commit_super(sb, 1); } @@ -432,6 +492,89 @@ spin_unlock(&sbi->s_md_lock); } +/* + * This writepage callback for write_cache_pages() + * takes care of a few cases after page cleaning. + * + * write_cache_pages() already checks for dirty pages + * and calls clear_page_dirty_for_io(), which we want, + * to write protect the pages. + * + * However, we may have to redirty a page (see below.) + */ +static int ext4_journalled_writepage_callback(struct page *page, + struct writeback_control *wbc, + void *data) +{ + transaction_t *transaction = (transaction_t *) data; + struct buffer_head *bh, *head; + struct journal_head *jh; + + bh = head = page_buffers(page); + do { + /* + * We have to redirty a page in these cases: + * 1) If buffer is dirty, it means the page was dirty because it + * contains a buffer that needs checkpointing. So the dirty bit + * needs to be preserved so that checkpointing writes the buffer + * properly. + * 2) If buffer is not part of the committing transaction + * (we may have just accidentally come across this buffer because + * inode range tracking is not exact) or if the currently running + * transaction already contains this buffer as well, dirty bit + * needs to be preserved so that the buffer gets writeprotected + * properly on running transaction's commit. + */ + jh = bh2jh(bh); + if (buffer_dirty(bh) || + (jh && (jh->b_transaction != transaction || + jh->b_next_transaction))) { + redirty_page_for_writepage(wbc, page); + goto out; + } + } while ((bh = bh->b_this_page) != head); + +out: + return AOP_WRITEPAGE_ACTIVATE; +} + +static int ext4_journalled_submit_inode_data_buffers(struct jbd2_inode *jinode) +{ + struct address_space *mapping = jinode->i_vfs_inode->i_mapping; + struct writeback_control wbc = { + .sync_mode = WB_SYNC_ALL, + .nr_to_write = LONG_MAX, + .range_start = jinode->i_dirty_start, + .range_end = jinode->i_dirty_end, + }; + + return write_cache_pages(mapping, &wbc, + ext4_journalled_writepage_callback, + jinode->i_transaction); +} + +static int ext4_journal_submit_inode_data_buffers(struct jbd2_inode *jinode) +{ + int ret; + + if (ext4_should_journal_data(jinode->i_vfs_inode)) + ret = ext4_journalled_submit_inode_data_buffers(jinode); + else + ret = jbd2_journal_submit_inode_data_buffers(jinode); + + return ret; +} + +static int ext4_journal_finish_inode_data_buffers(struct jbd2_inode *jinode) +{ + int ret = 0; + + if (!ext4_should_journal_data(jinode->i_vfs_inode)) + ret = jbd2_journal_finish_inode_data_buffers(jinode); + + return ret; +} + static bool system_going_down(void) { return system_state == SYSTEM_HALT || system_state == SYSTEM_POWER_OFF @@ -493,7 +636,8 @@ "EXT4-fs error") void __ext4_error(struct super_block *sb, const char *function, - unsigned int line, const char *fmt, ...) + unsigned int line, int error, __u64 block, + const char *fmt, ...) { struct va_format vaf; va_list args; @@ -511,24 +655,21 @@ sb->s_id, function, line, current->comm, &vaf); va_end(args); } - save_error_info(sb, function, line); + save_error_info(sb, error, 0, block, function, line); ext4_handle_error(sb); } void __ext4_error_inode(struct inode *inode, const char *function, - unsigned int line, ext4_fsblk_t block, + unsigned int line, ext4_fsblk_t block, int error, const char *fmt, ...) { va_list args; struct va_format vaf; - struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) return; trace_ext4_error(inode->i_sb, function, line); - es->s_last_error_ino = cpu_to_le32(inode->i_ino); - es->s_last_error_block = cpu_to_le64(block); if (ext4_error_ratelimit(inode->i_sb)) { va_start(args, fmt); vaf.fmt = fmt; @@ -545,7 +686,8 @@ current->comm, &vaf); va_end(args); } - save_error_info(inode->i_sb, function, line); + save_error_info(inode->i_sb, error, inode->i_ino, block, + function, line); ext4_handle_error(inode->i_sb); } @@ -564,7 +706,6 @@ trace_ext4_error(inode->i_sb, function, line); es = EXT4_SB(inode->i_sb)->s_es; - es->s_last_error_ino = cpu_to_le32(inode->i_ino); if (ext4_error_ratelimit(inode->i_sb)) { path = file_path(file, pathname, sizeof(pathname)); if (IS_ERR(path)) @@ -586,7 +727,8 @@ current->comm, path, &vaf); va_end(args); } - save_error_info(inode->i_sb, function, line); + save_error_info(inode->i_sb, EFSCORRUPTED, inode->i_ino, block, + function, line); ext4_handle_error(inode->i_sb); } @@ -654,7 +796,7 @@ sb->s_id, function, line, errstr); } - save_error_info(sb, function, line); + save_error_info(sb, -errno, 0, 0, function, line); ext4_handle_error(sb); } @@ -669,7 +811,7 @@ */ void __ext4_abort(struct super_block *sb, const char *function, - unsigned int line, const char *fmt, ...) + unsigned int line, int error, const char *fmt, ...) { struct va_format vaf; va_list args; @@ -677,7 +819,7 @@ if (unlikely(ext4_forced_shutdown(EXT4_SB(sb)))) return; - save_error_info(sb, function, line); + save_error_info(sb, error, 0, 0, function, line); va_start(args, fmt); vaf.fmt = fmt; vaf.va = &args; @@ -696,7 +838,6 @@ sb->s_flags |= SB_RDONLY; if (EXT4_SB(sb)->s_journal) jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO); - save_error_info(sb, function, line); } if (test_opt(sb, ERRORS_PANIC) && !system_going_down()) { if (EXT4_SB(sb)->s_journal && @@ -770,15 +911,12 @@ { struct va_format vaf; va_list args; - struct ext4_super_block *es = EXT4_SB(sb)->s_es; if (unlikely(ext4_forced_shutdown(EXT4_SB(sb)))) return; trace_ext4_error(sb, function, line); - es->s_last_error_ino = cpu_to_le32(ino); - es->s_last_error_block = cpu_to_le64(block); - __save_error_info(sb, function, line); + __save_error_info(sb, EFSCORRUPTED, ino, block, function, line); if (ext4_error_ratelimit(sb)) { va_start(args, fmt); @@ -983,8 +1121,9 @@ aborted = is_journal_aborted(sbi->s_journal); err = jbd2_journal_destroy(sbi->s_journal); sbi->s_journal = NULL; - if ((err < 0) && !aborted) - ext4_abort(sb, "Couldn't clean up the journal"); + if ((err < 0) && !aborted) { + ext4_abort(sb, -err, "Couldn't clean up the journal"); + } } ext4_unregister_sysfs(sb); @@ -1141,6 +1280,12 @@ true); dump_stack(); } + + if (EXT4_I(inode)->i_reserved_data_blocks) + ext4_msg(inode->i_sb, KERN_ERR, + "Inode %lu (%p): i_reserved_data_blocks (%u) not cleared!", + inode->i_ino, EXT4_I(inode), + EXT4_I(inode)->i_reserved_data_blocks); } static void init_once(void *foo) @@ -1697,6 +1842,7 @@ MOPT_EXT4_ONLY | MOPT_CLEAR}, {Opt_warn_on_error, EXT4_MOUNT_WARN_ON_ERROR, MOPT_SET}, {Opt_nowarn_on_error, EXT4_MOUNT_WARN_ON_ERROR, MOPT_CLEAR}, + {Opt_commit, 0, MOPT_NO_EXT2}, {Opt_nojournal_checksum, EXT4_MOUNT_JOURNAL_CHECKSUM, MOPT_EXT4_ONLY | MOPT_CLEAR}, {Opt_journal_checksum, EXT4_MOUNT_JOURNAL_CHECKSUM, @@ -2735,8 +2881,15 @@ inode_lock(inode); truncate_inode_pages(inode->i_mapping, inode->i_size); ret = ext4_truncate(inode); - if (ret) + if (ret) { + /* + * We need to clean up the in-core orphan list + * manually if ext4_truncate() failed to get a + * transaction handle. + */ + ext4_orphan_del(NULL, inode); ext4_std_error(inode->i_sb, ret); + } inode_unlock(inode); nr_truncates++; } else { @@ -2823,17 +2976,17 @@ */ static loff_t ext4_max_bitmap_size(int bits, int has_huge_files) { - loff_t res = EXT4_NDIR_BLOCKS; + unsigned long long upper_limit, res = EXT4_NDIR_BLOCKS; int meta_blocks; - loff_t upper_limit; - /* This is calculated to be the largest file size for a dense, block + + /* + * This is calculated to be the largest file size for a dense, block * mapped file such that the file's total number of 512-byte sectors, * including data and all indirect blocks, does not exceed (2^48 - 1). * * __u32 i_blocks_lo and _u16 i_blocks_high represent the total * number of 512-byte sectors of the file. */ - if (!has_huge_files) { /* * !has_huge_files or implies that the inode i_block field @@ -2876,7 +3029,7 @@ if (res > MAX_LFS_FILESIZE) res = MAX_LFS_FILESIZE; - return res; + return (loff_t)res; } static ext4_fsblk_t descriptor_loc(struct super_block *sb, @@ -3058,8 +3211,8 @@ struct ext4_group_desc *gdp = NULL; ext4_group_t group, ngroups; struct super_block *sb; - unsigned long timeout = 0; int ret = 0; + u64 start_time; sb = elr->lr_super; ngroups = EXT4_SB(sb)->s_groups_count; @@ -3079,13 +3232,12 @@ ret = 1; if (!ret) { - timeout = jiffies; + start_time = ktime_get_real_ns(); ret = ext4_init_inode_table(sb, group, elr->lr_timeout ? 0 : 1); if (elr->lr_timeout == 0) { - timeout = (jiffies - timeout) * - elr->lr_sbi->s_li_wait_mult; - elr->lr_timeout = timeout; + elr->lr_timeout = nsecs_to_jiffies((ktime_get_real_ns() - start_time) * + elr->lr_sbi->s_li_wait_mult); } elr->lr_next_sched = jiffies + elr->lr_timeout; elr->lr_next_group = group + 1; @@ -3144,6 +3296,7 @@ unsigned long next_wakeup, cur; BUG_ON(NULL == eli); + set_freezable(); cont_thread: while (true) { @@ -3473,9 +3626,11 @@ ext4_fsblk_t first_block, last_block, b; ext4_group_t i, ngroups = ext4_get_groups_count(sb); int s, j, count = 0; + int has_super = ext4_bg_has_super(sb, grp); if (!ext4_has_feature_bigalloc(sb)) - return (ext4_bg_has_super(sb, grp) + ext4_bg_num_gdb(sb, grp) + + return (has_super + ext4_bg_num_gdb(sb, grp) + + (has_super ? le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) : 0) + sbi->s_itb_per_group + 2); first_block = le32_to_cpu(sbi->s_es->s_first_data_block) + @@ -4458,6 +4613,10 @@ set_task_ioprio(sbi->s_journal->j_task, journal_ioprio); sbi->s_journal->j_commit_callback = ext4_journal_commit_callback; + sbi->s_journal->j_submit_inode_data_buffers = + ext4_journal_submit_inode_data_buffers; + sbi->s_journal->j_finish_inode_data_buffers = + ext4_journal_finish_inode_data_buffers; no_journal: if (!test_opt(sb, NO_MBCACHE)) { @@ -4500,9 +4659,18 @@ * Get the # of file system overhead blocks from the * superblock if present. */ - if (es->s_overhead_clusters) - sbi->s_overhead = le32_to_cpu(es->s_overhead_clusters); - else { + sbi->s_overhead = le32_to_cpu(es->s_overhead_clusters); + /* ignore the precalculated value if it is ridiculous */ + if (sbi->s_overhead > ext4_blocks_count(es)) + sbi->s_overhead = 0; + /* + * If the bigalloc feature is not enabled recalculating the + * overhead doesn't take long, so we might as well just redo + * it to make sure we are using the correct value. + */ + if (!ext4_has_feature_bigalloc(sb)) + sbi->s_overhead = 0; + if (sbi->s_overhead == 0) { err = ext4_calculate_overhead(sb); if (err) goto failed_mount_wq; @@ -4611,6 +4779,7 @@ ext4_msg(sb, KERN_ERR, "unable to initialize " "flex_bg meta info!"); + ret = -ENOMEM; goto failed_mount6; } @@ -5432,7 +5601,7 @@ } if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) - ext4_abort(sb, "Abort forced by user"); + ext4_abort(sb, EXT4_ERR_ESHUTDOWN, "Abort forced by user"); sb->s_flags = (sb->s_flags & ~SB_POSIXACL) | (test_opt(sb, POSIX_ACL) ? SB_POSIXACL : 0); @@ -5811,7 +5980,7 @@ handle_t *handle; /* Data block + inode block */ - handle = ext4_journal_start(d_inode(sb->s_root), EXT4_HT_QUOTA, 2); + handle = ext4_journal_start_sb(sb, EXT4_HT_QUOTA, 2); if (IS_ERR(handle)) return PTR_ERR(handle); ret = dquot_commit_info(sb, type); @@ -5899,10 +6068,7 @@ lockdep_set_quota_inode(path->dentry->d_inode, I_DATA_SEM_QUOTA); err = dquot_quota_on(sb, type, format_id, path); - if (err) { - lockdep_set_quota_inode(path->dentry->d_inode, - I_DATA_SEM_NORMAL); - } else { + if (!err) { struct inode *inode = d_inode(path->dentry); handle_t *handle; @@ -5922,7 +6088,12 @@ ext4_journal_stop(handle); unlock_inode: inode_unlock(inode); + if (err) + dquot_quota_off(sb, type); } + if (err) + lockdep_set_quota_inode(path->dentry->d_inode, + I_DATA_SEM_NORMAL); return err; } @@ -5985,8 +6156,19 @@ "Failed to enable quota tracking " "(type=%d, err=%d). Please run " "e2fsck to fix.", type, err); - for (type--; type >= 0; type--) + for (type--; type >= 0; type--) { + struct inode *inode; + + inode = sb_dqopt(sb)->files[type]; + if (inode) + inode = igrab(inode); dquot_quota_off(sb, type); + if (inode) { + lockdep_set_quota_inode(inode, + I_DATA_SEM_NORMAL); + iput(inode); + } + } return err; } @@ -6088,7 +6270,7 @@ struct buffer_head *bh; handle_t *handle = journal_current_handle(); - if (EXT4_SB(sb)->s_journal && !handle) { + if (!handle) { ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)" " cancelled because transaction is not started", (unsigned long long)off, (unsigned long long)len); diff -u linux-azure-5.4.0/fs/ext4/sysfs.c linux-azure-5.4.0/fs/ext4/sysfs.c --- linux-azure-5.4.0/fs/ext4/sysfs.c +++ linux-azure-5.4.0/fs/ext4/sysfs.c @@ -30,6 +30,7 @@ attr_last_error_time, attr_feature, attr_pointer_ui, + attr_pointer_ul, attr_pointer_atomic, attr_journal_task, } attr_id_t; @@ -161,6 +162,9 @@ #define EXT4_RW_ATTR_SBI_UI(_name,_elname) \ EXT4_ATTR_OFFSET(_name, 0644, pointer_ui, ext4_sb_info, _elname) +#define EXT4_RW_ATTR_SBI_UL(_name,_elname) \ + EXT4_ATTR_OFFSET(_name, 0644, pointer_ul, ext4_sb_info, _elname) + #define EXT4_ATTR_PTR(_name,_mode,_id,_ptr) \ static struct ext4_attr ext4_attr_##_name = { \ .attr = {.name = __stringify(_name), .mode = _mode }, \ @@ -196,6 +200,9 @@ EXT4_RW_ATTR_SBI_UI(warning_ratelimit_burst, s_warning_ratelimit_state.burst); EXT4_RW_ATTR_SBI_UI(msg_ratelimit_interval_ms, s_msg_ratelimit_state.interval); EXT4_RW_ATTR_SBI_UI(msg_ratelimit_burst, s_msg_ratelimit_state.burst); +#ifdef CONFIG_EXT4_DEBUG +EXT4_RW_ATTR_SBI_UL(simulate_fail, s_simulate_fail); +#endif EXT4_RO_ATTR_ES_UI(errors_count, s_error_count); EXT4_ATTR(first_error_time, 0444, first_error_time); EXT4_ATTR(last_error_time, 0444, last_error_time); @@ -231,6 +238,9 @@ ATTR_LIST(first_error_time), ATTR_LIST(last_error_time), ATTR_LIST(journal_task), +#ifdef CONFIG_EXT4_DEBUG + ATTR_LIST(simulate_fail), +#endif NULL, }; ATTRIBUTE_GROUPS(ext4); @@ -325,6 +335,11 @@ else return snprintf(buf, PAGE_SIZE, "%u\n", *((unsigned int *) ptr)); + case attr_pointer_ul: + if (!ptr) + return 0; + return snprintf(buf, PAGE_SIZE, "%lu\n", + *((unsigned long *) ptr)); case attr_pointer_atomic: if (!ptr) return 0; @@ -368,6 +383,14 @@ else *((unsigned int *) ptr) = t; return len; + case attr_pointer_ul: + if (!ptr) + return 0; + ret = kstrtoul(skip_spaces(buf), 0, &t); + if (ret) + return ret; + *((unsigned long *) ptr) = t; + return len; case attr_inode_readahead: return inode_readahead_blks_store(sbi, buf, len); case attr_trigger_test_error: diff -u linux-azure-5.4.0/fs/ext4/xattr.c linux-azure-5.4.0/fs/ext4/xattr.c --- linux-azure-5.4.0/fs/ext4/xattr.c +++ linux-azure-5.4.0/fs/ext4/xattr.c @@ -245,7 +245,7 @@ bh->b_data); errout: if (error) - __ext4_error_inode(inode, function, line, 0, + __ext4_error_inode(inode, function, line, 0, -error, "corrupted xattr block %llu", (unsigned long long) bh->b_blocknr); else @@ -269,7 +269,7 @@ error = ext4_xattr_check_entries(IFIRST(header), end, IFIRST(header)); errout: if (error) - __ext4_error_inode(inode, function, line, 0, + __ext4_error_inode(inode, function, line, 0, -error, "corrupted in-inode xattr"); return error; } @@ -2184,8 +2184,9 @@ struct ext4_inode *raw_inode; int error; - if (EXT4_I(inode)->i_extra_isize == 0) + if (!EXT4_INODE_HAS_XATTR_SPACE(inode)) return 0; + raw_inode = ext4_raw_inode(&is->iloc); header = IHDR(inode, raw_inode); is->s.base = is->s.first = IFIRST(header); @@ -2213,8 +2214,9 @@ struct ext4_xattr_search *s = &is->s; int error; - if (EXT4_I(inode)->i_extra_isize == 0) + if (!EXT4_INODE_HAS_XATTR_SPACE(inode)) return -ENOSPC; + error = ext4_xattr_set_entry(i, s, handle, inode, false /* is_block */); if (error) return error; @@ -2908,9 +2910,11 @@ bh = ext4_sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl, REQ_PRIO); if (IS_ERR(bh)) { error = PTR_ERR(bh); - if (error == -EIO) - EXT4_ERROR_INODE(inode, "block %llu read error", - EXT4_I(inode)->i_file_acl); + if (error == -EIO) { + EXT4_ERROR_INODE_ERR(inode, EIO, + "block %llu read error", + EXT4_I(inode)->i_file_acl); + } bh = NULL; goto cleanup; } diff -u linux-azure-5.4.0/fs/f2fs/checkpoint.c linux-azure-5.4.0/fs/f2fs/checkpoint.c --- linux-azure-5.4.0/fs/f2fs/checkpoint.c +++ linux-azure-5.4.0/fs/f2fs/checkpoint.c @@ -137,7 +137,7 @@ unsigned int segno, offset; bool exist; - if (type != DATA_GENERIC_ENHANCE && type != DATA_GENERIC_ENHANCE_READ) + if (type == DATA_GENERIC) return true; segno = GET_SEGNO(sbi, blkaddr); @@ -145,11 +145,18 @@ se = get_seg_entry(sbi, segno); exist = f2fs_test_bit(offset, se->cur_valid_map); + if (exist && type == DATA_GENERIC_ENHANCE_UPDATE) { + f2fs_err(sbi, "Inconsistent error blkaddr:%u, sit bitmap:%d", + blkaddr, exist); + set_sbi_flag(sbi, SBI_NEED_FSCK); + return exist; + } + if (!exist && type == DATA_GENERIC_ENHANCE) { f2fs_err(sbi, "Inconsistent error blkaddr:%u, sit bitmap:%d", blkaddr, exist); set_sbi_flag(sbi, SBI_NEED_FSCK); - WARN_ON(1); + dump_stack(); } return exist; } @@ -182,12 +189,13 @@ case DATA_GENERIC: case DATA_GENERIC_ENHANCE: case DATA_GENERIC_ENHANCE_READ: + case DATA_GENERIC_ENHANCE_UPDATE: if (unlikely(blkaddr >= MAX_BLKADDR(sbi) || blkaddr < MAIN_BLKADDR(sbi))) { f2fs_warn(sbi, "access invalid blkaddr:%u", blkaddr); set_sbi_flag(sbi, SBI_NEED_FSCK); - WARN_ON(1); + dump_stack(); return false; } else { return __is_bitmap_valid(sbi, blkaddr, type); @@ -583,7 +591,7 @@ if (time_to_inject(sbi, FAULT_ORPHAN)) { spin_unlock(&im->ino_lock); - f2fs_show_injection_info(FAULT_ORPHAN); + f2fs_show_injection_info(sbi, FAULT_ORPHAN); return -ENOSPC; } @@ -848,6 +856,7 @@ struct page *cp_page_1 = NULL, *cp_page_2 = NULL; struct f2fs_checkpoint *cp_block = NULL; unsigned long long cur_version = 0, pre_version = 0; + unsigned int cp_blocks; int err; err = get_checkpoint_version(sbi, cp_addr, &cp_block, @@ -855,15 +864,16 @@ if (err) return NULL; - if (le32_to_cpu(cp_block->cp_pack_total_block_count) > - sbi->blocks_per_seg) { + cp_blocks = le32_to_cpu(cp_block->cp_pack_total_block_count); + + if (cp_blocks > sbi->blocks_per_seg || cp_blocks <= F2FS_CP_PACKS) { f2fs_warn(sbi, "invalid cp_pack_total_block_count:%u", le32_to_cpu(cp_block->cp_pack_total_block_count)); goto invalid_cp; } pre_version = *version; - cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1; + cp_addr += cp_blocks - 1; err = get_checkpoint_version(sbi, cp_addr, &cp_block, &cp_page_2, version); if (err) @@ -1144,7 +1154,8 @@ if (!is_journalled_quota(sbi)) return false; - down_write(&sbi->quota_sem); + if (!down_write_trylock(&sbi->quota_sem)) + return true; if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH)) { ret = false; } else if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR)) { diff -u linux-azure-5.4.0/fs/f2fs/data.c linux-azure-5.4.0/fs/f2fs/data.c --- linux-azure-5.4.0/fs/f2fs/data.c +++ linux-azure-5.4.0/fs/f2fs/data.c @@ -167,9 +167,10 @@ static void f2fs_read_end_io(struct bio *bio) { - if (time_to_inject(F2FS_P_SB(bio_first_page_all(bio)), - FAULT_READ_IO)) { - f2fs_show_injection_info(FAULT_READ_IO); + struct f2fs_sb_info *sbi = F2FS_P_SB(bio_first_page_all(bio)); + + if (time_to_inject(sbi, FAULT_READ_IO)) { + f2fs_show_injection_info(sbi, FAULT_READ_IO); bio->bi_status = BLK_STS_IOERR; } @@ -191,7 +192,7 @@ struct bvec_iter_all iter_all; if (time_to_inject(sbi, FAULT_WRITE_IO)) { - f2fs_show_injection_info(FAULT_WRITE_IO); + f2fs_show_injection_info(sbi, FAULT_WRITE_IO); bio->bi_status = BLK_STS_IOERR; } @@ -1190,7 +1191,21 @@ if (err) { if (flag == F2FS_GET_BLOCK_BMAP) map->m_pblk = 0; + if (err == -ENOENT) { + /* + * There is one exceptional case that read_node_page() + * may return -ENOENT due to filesystem has been + * shutdown or cp_error, so force to convert error + * number to EIO for such case. + */ + if (map->m_may_create && + (is_sbi_flag_set(sbi, SBI_IS_SHUTDOWN) || + f2fs_cp_error(sbi))) { + err = -EIO; + goto unlock_out; + } + err = 0; if (map->m_next_pgofs) *map->m_next_pgofs = @@ -2452,8 +2467,12 @@ /* to avoid spliting IOs due to mixed WB_SYNC_ALL and WB_SYNC_NONE */ if (wbc->sync_mode == WB_SYNC_ALL) atomic_inc(&sbi->wb_sync_req[DATA]); - else if (atomic_read(&sbi->wb_sync_req[DATA])) + else if (atomic_read(&sbi->wb_sync_req[DATA])) { + /* to avoid potential deadlock */ + if (current->plug) + blk_finish_plug(current->plug); goto skip_write; + } if (__should_serialize_io(inode, wbc)) { mutex_lock(&sbi->writepages); diff -u linux-azure-5.4.0/fs/f2fs/dir.c linux-azure-5.4.0/fs/f2fs/dir.c --- linux-azure-5.4.0/fs/f2fs/dir.c +++ linux-azure-5.4.0/fs/f2fs/dir.c @@ -618,7 +618,7 @@ start: if (time_to_inject(F2FS_I_SB(dir), FAULT_DIR_DEPTH)) { - f2fs_show_injection_info(FAULT_DIR_DEPTH); + f2fs_show_injection_info(F2FS_I_SB(dir), FAULT_DIR_DEPTH); return -ENOSPC; } @@ -892,6 +892,7 @@ struct f2fs_sb_info *sbi = F2FS_I_SB(d->inode); struct blk_plug plug; bool readdir_ra = sbi->readdir_ra == 1; + bool found_valid_dirent = false; int err = 0; bit_pos = ((unsigned long)ctx->pos % d->max); @@ -906,12 +907,15 @@ de = &d->dentry[bit_pos]; if (de->name_len == 0) { + if (found_valid_dirent || !bit_pos) { + printk_ratelimited( + "%sF2FS-fs (%s): invalid namelen(0), ino:%u, run fsck to fix.", + KERN_WARNING, sbi->sb->s_id, + le32_to_cpu(de->ino)); + set_sbi_flag(sbi, SBI_NEED_FSCK); + } bit_pos++; ctx->pos = start_pos + bit_pos; - printk_ratelimited( - "%s, invalid namelen(0), ino:%u, run fsck to fix.", - KERN_WARNING, le32_to_cpu(de->ino)); - set_sbi_flag(sbi, SBI_NEED_FSCK); continue; } @@ -954,6 +958,7 @@ f2fs_ra_node_page(sbi, le32_to_cpu(de->ino)); ctx->pos = start_pos + bit_pos; + found_valid_dirent = true; } out: if (readdir_ra) diff -u linux-azure-5.4.0/fs/f2fs/f2fs.h linux-azure-5.4.0/fs/f2fs/f2fs.h --- linux-azure-5.4.0/fs/f2fs/f2fs.h +++ linux-azure-5.4.0/fs/f2fs/f2fs.h @@ -225,6 +225,10 @@ * condition of read on truncated area * by extent_cache */ + DATA_GENERIC_ENHANCE_UPDATE, /* + * strong check on range and segment + * bitmap for update case + */ META_GENERIC, }; @@ -931,6 +935,7 @@ unsigned int segment_count; /* total # of segments */ unsigned int main_segments; /* # of segments in main area */ unsigned int reserved_segments; /* # of reserved segments */ + unsigned int additional_reserved_segments;/* reserved segs for IO align feature */ unsigned int ovp_segments; /* # of overprovision segments */ /* a threshold to reclaim prefree segments */ @@ -1374,9 +1379,10 @@ }; #ifdef CONFIG_F2FS_FAULT_INJECTION -#define f2fs_show_injection_info(type) \ - printk_ratelimited("%sF2FS-fs : inject %s in %s of %pS\n", \ - KERN_INFO, f2fs_fault_name[type], \ +#define f2fs_show_injection_info(sbi, type) \ + printk_ratelimited("%sF2FS-fs (%s) : inject %s in %s of %pS\n", \ + KERN_INFO, sbi->sb->s_id, \ + f2fs_fault_name[type], \ __func__, __builtin_return_address(0)) static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type) { @@ -1396,7 +1402,7 @@ return false; } #else -#define f2fs_show_injection_info(type) do { } while (0) +#define f2fs_show_injection_info(sbi, type) do { } while (0) static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type) { return false; @@ -1781,7 +1787,7 @@ return ret; if (time_to_inject(sbi, FAULT_BLOCK)) { - f2fs_show_injection_info(FAULT_BLOCK); + f2fs_show_injection_info(sbi, FAULT_BLOCK); release = *count; goto release_quota; } @@ -1799,6 +1805,11 @@ if (!__allow_reserved_blocks(sbi, inode, true)) avail_user_block_count -= F2FS_OPTION(sbi).root_reserved_blocks; + + if (F2FS_IO_ALIGNED(sbi)) + avail_user_block_count -= sbi->blocks_per_seg * + SM_I(sbi)->additional_reserved_segments; + if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) { if (avail_user_block_count > sbi->unusable_block_count) avail_user_block_count -= sbi->unusable_block_count; @@ -2033,7 +2044,7 @@ } if (time_to_inject(sbi, FAULT_BLOCK)) { - f2fs_show_injection_info(FAULT_BLOCK); + f2fs_show_injection_info(sbi, FAULT_BLOCK); goto enospc; } @@ -2044,6 +2055,11 @@ if (!__allow_reserved_blocks(sbi, inode, false)) valid_block_count += F2FS_OPTION(sbi).root_reserved_blocks; + + if (F2FS_IO_ALIGNED(sbi)) + valid_block_count += sbi->blocks_per_seg * + SM_I(sbi)->additional_reserved_segments; + user_block_count = sbi->user_block_count; if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) user_block_count -= sbi->unusable_block_count; @@ -2088,11 +2104,17 @@ { spin_lock(&sbi->stat_lock); - f2fs_bug_on(sbi, !sbi->total_valid_block_count); - f2fs_bug_on(sbi, !sbi->total_valid_node_count); + if (unlikely(!sbi->total_valid_block_count || + !sbi->total_valid_node_count)) { + f2fs_warn(sbi, "dec_valid_node_count: inconsistent block counts, total_valid_block:%u, total_valid_node:%u", + sbi->total_valid_block_count, + sbi->total_valid_node_count); + set_sbi_flag(sbi, SBI_NEED_FSCK); + } else { + sbi->total_valid_block_count--; + sbi->total_valid_node_count--; + } - sbi->total_valid_node_count--; - sbi->total_valid_block_count--; if (sbi->reserved_blocks && sbi->current_reserved_blocks < sbi->reserved_blocks) sbi->current_reserved_blocks++; @@ -2148,7 +2170,8 @@ return page; if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) { - f2fs_show_injection_info(FAULT_PAGE_ALLOC); + f2fs_show_injection_info(F2FS_M_SB(mapping), + FAULT_PAGE_ALLOC); return NULL; } } @@ -2163,7 +2186,7 @@ int fgp_flags, gfp_t gfp_mask) { if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_GET)) { - f2fs_show_injection_info(FAULT_PAGE_GET); + f2fs_show_injection_info(F2FS_M_SB(mapping), FAULT_PAGE_GET); return NULL; } @@ -2232,7 +2255,7 @@ return bio; } if (time_to_inject(sbi, FAULT_ALLOC_BIO)) { - f2fs_show_injection_info(FAULT_ALLOC_BIO); + f2fs_show_injection_info(sbi, FAULT_ALLOC_BIO); return NULL; } @@ -2797,7 +2820,7 @@ size_t size, gfp_t flags) { if (time_to_inject(sbi, FAULT_KMALLOC)) { - f2fs_show_injection_info(FAULT_KMALLOC); + f2fs_show_injection_info(sbi, FAULT_KMALLOC); return NULL; } @@ -2814,7 +2837,7 @@ size_t size, gfp_t flags) { if (time_to_inject(sbi, FAULT_KVMALLOC)) { - f2fs_show_injection_info(FAULT_KVMALLOC); + f2fs_show_injection_info(sbi, FAULT_KVMALLOC); return NULL; } diff -u linux-azure-5.4.0/fs/f2fs/file.c linux-azure-5.4.0/fs/f2fs/file.c --- linux-azure-5.4.0/fs/f2fs/file.c +++ linux-azure-5.4.0/fs/f2fs/file.c @@ -682,7 +682,7 @@ trace_f2fs_truncate(inode); if (time_to_inject(F2FS_I_SB(inode), FAULT_TRUNCATE)) { - f2fs_show_injection_info(FAULT_TRUNCATE); + f2fs_show_injection_info(F2FS_I_SB(inode), FAULT_TRUNCATE); return -EIO; } @@ -981,7 +981,6 @@ } if (pg_start < pg_end) { - struct address_space *mapping = inode->i_mapping; loff_t blk_start, blk_end; struct f2fs_sb_info *sbi = F2FS_I_SB(inode); @@ -993,8 +992,7 @@ down_write(&F2FS_I(inode)->i_gc_rwsem[WRITE]); down_write(&F2FS_I(inode)->i_mmap_sem); - truncate_inode_pages_range(mapping, blk_start, - blk_end - 1); + truncate_pagecache_range(inode, blk_start, blk_end - 1); f2fs_lock_op(sbi); ret = f2fs_truncate_hole(inode, pg_start, pg_end); @@ -1322,11 +1320,19 @@ ret = -ENOSPC; break; } - if (dn->data_blkaddr != NEW_ADDR) { - f2fs_invalidate_blocks(sbi, dn->data_blkaddr); - dn->data_blkaddr = NEW_ADDR; - f2fs_set_data_blkaddr(dn); + + if (dn->data_blkaddr == NEW_ADDR) + continue; + + if (!f2fs_is_valid_blkaddr(sbi, dn->data_blkaddr, + DATA_GENERIC_ENHANCE)) { + ret = -EFSCORRUPTED; + break; } + + f2fs_invalidate_blocks(sbi, dn->data_blkaddr); + dn->data_blkaddr = NEW_ADDR; + f2fs_set_data_blkaddr(dn); } f2fs_update_extent_cache_range(dn, start, 0, index - start); @@ -1602,6 +1608,10 @@ inode_lock(inode); + ret = file_modified(file); + if (ret) + goto out; + if (mode & FALLOC_FL_PUNCH_HOLE) { if (offset >= inode->i_size) goto out; diff -u linux-azure-5.4.0/fs/f2fs/gc.c linux-azure-5.4.0/fs/f2fs/gc.c --- linux-azure-5.4.0/fs/f2fs/gc.c +++ linux-azure-5.4.0/fs/f2fs/gc.c @@ -54,7 +54,7 @@ } if (time_to_inject(sbi, FAULT_CHECKPOINT)) { - f2fs_show_injection_info(FAULT_CHECKPOINT); + f2fs_show_injection_info(sbi, FAULT_CHECKPOINT); f2fs_stop_checkpoint(sbi, false); } @@ -612,7 +612,7 @@ { struct page *node_page; nid_t nid; - unsigned int ofs_in_node; + unsigned int ofs_in_node, max_addrs; block_t source_blkaddr; nid = le32_to_cpu(sum->nid); @@ -633,6 +633,19 @@ set_sbi_flag(sbi, SBI_NEED_FSCK); } + if (f2fs_check_nid_range(sbi, dni->ino)) { + f2fs_put_page(node_page, 1); + return false; + } + + max_addrs = IS_INODE(node_page) ? DEF_ADDRS_PER_INODE : + DEF_ADDRS_PER_BLOCK; + if (ofs_in_node >= max_addrs) { + f2fs_err(sbi, "Inconsistent ofs_in_node:%u in summary, ino:%u, nid:%u, max:%u", + ofs_in_node, dni->ino, dni->nid, max_addrs); + return false; + } + *nofs = ofs_of_node(node_page); source_blkaddr = datablock_addr(NULL, node_page, ofs_in_node); f2fs_put_page(node_page, 1); @@ -1095,8 +1108,10 @@ int err; if (S_ISREG(inode->i_mode)) { - if (!down_write_trylock(&fi->i_gc_rwsem[READ])) + if (!down_write_trylock(&fi->i_gc_rwsem[READ])) { + sbi->skipped_gc_rwsem++; continue; + } if (!down_write_trylock( &fi->i_gc_rwsem[WRITE])) { sbi->skipped_gc_rwsem++; diff -u linux-azure-5.4.0/fs/f2fs/inode.c linux-azure-5.4.0/fs/f2fs/inode.c --- linux-azure-5.4.0/fs/f2fs/inode.c +++ linux-azure-5.4.0/fs/f2fs/inode.c @@ -455,7 +455,7 @@ inode->i_op = &f2fs_dir_inode_operations; inode->i_fop = &f2fs_dir_operations; inode->i_mapping->a_ops = &f2fs_dblock_aops; - inode_nohighmem(inode); + mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS); } else if (S_ISLNK(inode->i_mode)) { if (file_is_encrypt(inode)) inode->i_op = &f2fs_encrypted_symlink_inode_operations; @@ -681,7 +681,7 @@ err = f2fs_truncate(inode); if (time_to_inject(sbi, FAULT_EVICT_INODE)) { - f2fs_show_injection_info(FAULT_EVICT_INODE); + f2fs_show_injection_info(sbi, FAULT_EVICT_INODE); err = -EIO; } @@ -689,8 +689,22 @@ f2fs_lock_op(sbi); err = f2fs_remove_inode_page(inode); f2fs_unlock_op(sbi); - if (err == -ENOENT) + if (err == -ENOENT) { err = 0; + + /* + * in fuzzed image, another node may has the same + * block address as inode's, if it was truncated + * previously, truncation of inode node will fail. + */ + if (is_inode_flag_set(inode, FI_DIRTY_INODE)) { + f2fs_warn(F2FS_I_SB(inode), + "f2fs_evict_inode: inconsistent node id, ino:%lu", + inode->i_ino); + f2fs_inode_synced(inode); + set_sbi_flag(sbi, SBI_NEED_FSCK); + } + } } /* give more chances, if ENOMEM case */ @@ -777,6 +791,7 @@ err = f2fs_get_node_info(sbi, inode->i_ino, &ni); if (err) { set_sbi_flag(sbi, SBI_NEED_FSCK); + set_inode_flag(inode, FI_FREE_NID); f2fs_warn(sbi, "May loss orphan inode, run fsck to fix."); goto out; } diff -u linux-azure-5.4.0/fs/f2fs/namei.c linux-azure-5.4.0/fs/f2fs/namei.c --- linux-azure-5.4.0/fs/f2fs/namei.c +++ linux-azure-5.4.0/fs/f2fs/namei.c @@ -679,7 +679,7 @@ inode->i_op = &f2fs_dir_inode_operations; inode->i_fop = &f2fs_dir_operations; inode->i_mapping->a_ops = &f2fs_dblock_aops; - inode_nohighmem(inode); + mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS); set_inode_flag(inode, FI_INC_LINK); f2fs_lock_op(sbi); @@ -1256,9 +1256,18 @@ return target; } +static int f2fs_encrypted_symlink_getattr(const struct path *path, + struct kstat *stat, u32 request_mask, + unsigned int query_flags) +{ + f2fs_getattr(path, stat, request_mask, query_flags); + + return fscrypt_symlink_getattr(path, stat); +} + const struct inode_operations f2fs_encrypted_symlink_inode_operations = { .get_link = f2fs_encrypted_get_link, - .getattr = f2fs_getattr, + .getattr = f2fs_encrypted_symlink_getattr, .setattr = f2fs_setattr, #ifdef CONFIG_F2FS_FS_XATTR .listxattr = f2fs_listxattr, diff -u linux-azure-5.4.0/fs/f2fs/node.c linux-azure-5.4.0/fs/f2fs/node.c --- linux-azure-5.4.0/fs/f2fs/node.c +++ linux-azure-5.4.0/fs/f2fs/node.c @@ -1240,7 +1240,11 @@ dec_valid_node_count(sbi, dn->inode, !ofs); goto fail; } - f2fs_bug_on(sbi, new_ni.blk_addr != NULL_ADDR); + if (unlikely(new_ni.blk_addr != NULL_ADDR)) { + err = -EFSCORRUPTED; + set_sbi_flag(sbi, SBI_NEED_FSCK); + goto fail; + } #endif new_ni.nid = dn->nid; new_ni.ino = dn->inode->i_ino; @@ -1385,6 +1389,7 @@ nid, nid_of_node(page), ino_of_node(page), ofs_of_node(page), cpver_of_node(page), next_blkaddr_of_node(page)); + set_sbi_flag(sbi, SBI_NEED_FSCK); err = -EINVAL; out_err: ClearPageUptodate(page); @@ -1994,8 +1999,12 @@ if (wbc->sync_mode == WB_SYNC_ALL) atomic_inc(&sbi->wb_sync_req[NODE]); - else if (atomic_read(&sbi->wb_sync_req[NODE])) + else if (atomic_read(&sbi->wb_sync_req[NODE])) { + /* to avoid potential deadlock */ + if (current->plug) + blk_finish_plug(current->plug); goto skip_write; + } trace_f2fs_writepages(mapping->host, wbc, NODE); @@ -2406,7 +2415,7 @@ struct free_nid *i = NULL; retry: if (time_to_inject(sbi, FAULT_ALLOC_NID)) { - f2fs_show_injection_info(FAULT_ALLOC_NID); + f2fs_show_injection_info(sbi, FAULT_ALLOC_NID); return false; } diff -u linux-azure-5.4.0/fs/f2fs/recovery.c linux-azure-5.4.0/fs/f2fs/recovery.c --- linux-azure-5.4.0/fs/f2fs/recovery.c +++ linux-azure-5.4.0/fs/f2fs/recovery.c @@ -406,7 +406,7 @@ struct dnode_of_data tdn = *dn; nid_t ino, nid; struct inode *inode; - unsigned int offset; + unsigned int offset, ofs_in_node, max_addrs; block_t bidx; int i; @@ -432,15 +432,24 @@ got_it: /* Use the locked dnode page and inode */ nid = le32_to_cpu(sum.nid); + ofs_in_node = le16_to_cpu(sum.ofs_in_node); + + max_addrs = ADDRS_PER_PAGE(dn->node_page, dn->inode); + if (ofs_in_node >= max_addrs) { + f2fs_err(sbi, "Inconsistent ofs_in_node:%u in summary, ino:%lu, nid:%u, max:%u", + ofs_in_node, dn->inode->i_ino, nid, max_addrs); + return -EFSCORRUPTED; + } + if (dn->inode->i_ino == nid) { tdn.nid = nid; if (!dn->inode_page_locked) lock_page(dn->inode_page); tdn.node_page = dn->inode_page; - tdn.ofs_in_node = le16_to_cpu(sum.ofs_in_node); + tdn.ofs_in_node = ofs_in_node; goto truncate_out; } else if (dn->nid == nid) { - tdn.ofs_in_node = le16_to_cpu(sum.ofs_in_node); + tdn.ofs_in_node = ofs_in_node; goto truncate_out; } @@ -630,6 +639,14 @@ goto err; } + if (f2fs_is_valid_blkaddr(sbi, dest, + DATA_GENERIC_ENHANCE_UPDATE)) { + f2fs_err(sbi, "Inconsistent dest blkaddr:%u, ino:%lu, ofs:%u", + dest, inode->i_ino, dn.ofs_in_node); + err = -EFSCORRUPTED; + goto err; + } + /* write dummy data page */ f2fs_replace_block(sbi, &dn, src, dest, ni.version, false, false); diff -u linux-azure-5.4.0/fs/f2fs/segment.c linux-azure-5.4.0/fs/f2fs/segment.c --- linux-azure-5.4.0/fs/f2fs/segment.c +++ linux-azure-5.4.0/fs/f2fs/segment.c @@ -352,16 +352,19 @@ struct f2fs_sb_info *sbi = F2FS_I_SB(inode); struct list_head *head = &fi->inmem_pages; struct inmem_pages *cur = NULL; + struct inmem_pages *tmp; f2fs_bug_on(sbi, !IS_ATOMIC_WRITTEN_PAGE(page)); mutex_lock(&fi->inmem_lock); - list_for_each_entry(cur, head, list) { - if (cur->page == page) + list_for_each_entry(tmp, head, list) { + if (tmp->page == page) { + cur = tmp; break; + } } - f2fs_bug_on(sbi, list_empty(head) || cur->page != page); + f2fs_bug_on(sbi, !cur); list_del(&cur->list); mutex_unlock(&fi->inmem_lock); @@ -489,7 +492,7 @@ void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need) { if (time_to_inject(sbi, FAULT_CHECKPOINT)) { - f2fs_show_injection_info(FAULT_CHECKPOINT); + f2fs_show_injection_info(sbi, FAULT_CHECKPOINT); f2fs_stop_checkpoint(sbi, false); } @@ -1017,8 +1020,9 @@ if (dc->error) printk_ratelimited( - "%sF2FS-fs: Issue discard(%u, %u, %u) failed, ret: %d", - KERN_INFO, dc->lstart, dc->start, dc->len, dc->error); + "%sF2FS-fs (%s): Issue discard(%u, %u, %u) failed, ret: %d", + KERN_INFO, sbi->sb->s_id, + dc->lstart, dc->start, dc->len, dc->error); __detach_discard_cmd(dcc, dc); } @@ -1158,7 +1162,7 @@ dc->len += len; if (time_to_inject(sbi, FAULT_DISCARD)) { - f2fs_show_injection_info(FAULT_DISCARD); + f2fs_show_injection_info(sbi, FAULT_DISCARD); err = -EIO; goto submit; } diff -u linux-azure-5.4.0/fs/f2fs/segment.h linux-azure-5.4.0/fs/f2fs/segment.h --- linux-azure-5.4.0/fs/f2fs/segment.h +++ linux-azure-5.4.0/fs/f2fs/segment.h @@ -16,6 +16,7 @@ #define DEF_MAX_RECLAIM_PREFREE_SEGMENTS 4096 /* 8GB in maximum */ #define F2FS_MIN_SEGMENTS 9 /* SB + 2 (CP + SIT + NAT) + SSA + MAIN */ +#define F2FS_MIN_META_SEGMENTS 8 /* SB + 2 (CP + SIT + NAT) + SSA */ /* L: Logical segment # in volume, R: Relative segment # in main area */ #define GET_L2R_SEGNO(free_i, segno) ((segno) - (free_i)->start_segno) @@ -508,7 +509,8 @@ static inline int reserved_segments(struct f2fs_sb_info *sbi) { - return SM_I(sbi)->reserved_segments; + return SM_I(sbi)->reserved_segments + + SM_I(sbi)->additional_reserved_segments; } static inline unsigned int free_sections(struct f2fs_sb_info *sbi) @@ -541,11 +543,10 @@ return GET_SEC_FROM_SEG(sbi, (unsigned int)reserved_segments(sbi)); } -static inline bool has_curseg_enough_space(struct f2fs_sb_info *sbi) +static inline bool has_curseg_enough_space(struct f2fs_sb_info *sbi, + unsigned int node_blocks, unsigned int dent_blocks) { - unsigned int node_blocks = get_pages(sbi, F2FS_DIRTY_NODES) + - get_pages(sbi, F2FS_DIRTY_DENTS); - unsigned int dent_blocks = get_pages(sbi, F2FS_DIRTY_DENTS); + unsigned int segno, left_blocks; int i; @@ -571,19 +572,28 @@ static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi, int freed, int needed) { - int node_secs = get_blocktype_secs(sbi, F2FS_DIRTY_NODES); - int dent_secs = get_blocktype_secs(sbi, F2FS_DIRTY_DENTS); - int imeta_secs = get_blocktype_secs(sbi, F2FS_DIRTY_IMETA); + unsigned int total_node_blocks = get_pages(sbi, F2FS_DIRTY_NODES) + + get_pages(sbi, F2FS_DIRTY_DENTS) + + get_pages(sbi, F2FS_DIRTY_IMETA); + unsigned int total_dent_blocks = get_pages(sbi, F2FS_DIRTY_DENTS); + unsigned int node_secs = total_node_blocks / BLKS_PER_SEC(sbi); + unsigned int dent_secs = total_dent_blocks / BLKS_PER_SEC(sbi); + unsigned int node_blocks = total_node_blocks % BLKS_PER_SEC(sbi); + unsigned int dent_blocks = total_dent_blocks % BLKS_PER_SEC(sbi); + unsigned int free, need_lower, need_upper; if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING))) return false; - if (free_sections(sbi) + freed == reserved_sections(sbi) + needed && - has_curseg_enough_space(sbi)) + free = free_sections(sbi) + freed; + need_lower = node_secs + dent_secs + reserved_sections(sbi) + needed; + need_upper = need_lower + (node_blocks ? 1 : 0) + (dent_blocks ? 1 : 0); + + if (free > need_upper) return false; - return (free_sections(sbi) + freed) <= - (node_secs + 2 * dent_secs + imeta_secs + - reserved_sections(sbi) + needed); + else if (free <= need_lower) + return true; + return !has_curseg_enough_space(sbi, node_blocks, dent_blocks); } static inline bool f2fs_is_checkpoint_ready(struct f2fs_sb_info *sbi) diff -u linux-azure-5.4.0/fs/f2fs/super.c linux-azure-5.4.0/fs/f2fs/super.c --- linux-azure-5.4.0/fs/f2fs/super.c +++ linux-azure-5.4.0/fs/f2fs/super.c @@ -255,10 +255,10 @@ static inline void limit_reserve_root(struct f2fs_sb_info *sbi) { - block_t limit = min((sbi->user_block_count << 1) / 1000, + block_t limit = min((sbi->user_block_count >> 3), sbi->user_block_count - sbi->reserved_blocks); - /* limit is 0.2% */ + /* limit is 12.5% */ if (test_opt(sbi, RESERVE_ROOT) && F2FS_OPTION(sbi).root_reserved_blocks > limit) { F2FS_OPTION(sbi).root_reserved_blocks = limit; @@ -277,6 +277,46 @@ F2FS_OPTION(sbi).s_resgid)); } +static inline int adjust_reserved_segment(struct f2fs_sb_info *sbi) +{ + unsigned int sec_blks = sbi->blocks_per_seg * sbi->segs_per_sec; + unsigned int avg_vblocks; + unsigned int wanted_reserved_segments; + block_t avail_user_block_count; + + if (!F2FS_IO_ALIGNED(sbi)) + return 0; + + /* average valid block count in section in worst case */ + avg_vblocks = sec_blks / F2FS_IO_SIZE(sbi); + + /* + * we need enough free space when migrating one section in worst case + */ + wanted_reserved_segments = (F2FS_IO_SIZE(sbi) / avg_vblocks) * + reserved_segments(sbi); + wanted_reserved_segments -= reserved_segments(sbi); + + avail_user_block_count = sbi->user_block_count - + sbi->current_reserved_blocks - + F2FS_OPTION(sbi).root_reserved_blocks; + + if (wanted_reserved_segments * sbi->blocks_per_seg > + avail_user_block_count) { + f2fs_err(sbi, "IO align feature can't grab additional reserved segment: %u, available segments: %u", + wanted_reserved_segments, + avail_user_block_count >> sbi->log_blocks_per_seg); + return -ENOSPC; + } + + SM_I(sbi)->additional_reserved_segments = wanted_reserved_segments; + + f2fs_info(sbi, "IO align feature needs additional reserved segment: %u", + wanted_reserved_segments); + + return 0; +} + static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi) { if (!F2FS_OPTION(sbi).unusable_cap_perc) @@ -1994,64 +2034,78 @@ return 0; } -int f2fs_quota_sync(struct super_block *sb, int type) +static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type) { - struct f2fs_sb_info *sbi = F2FS_SB(sb); - struct quota_info *dqopt = sb_dqopt(sb); - int cnt; - int ret; + struct quota_info *dqopt = sb_dqopt(sbi->sb); + struct address_space *mapping = dqopt->files[type]->i_mapping; + int ret = 0; - /* - * do_quotactl - * f2fs_quota_sync - * down_read(quota_sem) - * dquot_writeback_dquots() - * f2fs_dquot_commit - * block_operation - * down_read(quota_sem) - */ - f2fs_lock_op(sbi); + ret = dquot_writeback_dquots(sbi->sb, type); + if (ret) + goto out; - down_read(&sbi->quota_sem); - ret = dquot_writeback_dquots(sb, type); + ret = filemap_fdatawrite(mapping); if (ret) goto out; + /* if we are using journalled quota */ + if (is_journalled_quota(sbi)) + goto out; + + ret = filemap_fdatawait(mapping); + + truncate_inode_pages(&dqopt->files[type]->i_data, 0); +out: + if (ret) + set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR); + return ret; +} + +int f2fs_quota_sync(struct super_block *sb, int type) +{ + struct f2fs_sb_info *sbi = F2FS_SB(sb); + struct quota_info *dqopt = sb_dqopt(sb); + int cnt; + int ret = 0; + /* * Now when everything is written we can discard the pagecache so * that userspace sees the changes. */ for (cnt = 0; cnt < MAXQUOTAS; cnt++) { - struct address_space *mapping; if (type != -1 && cnt != type) continue; + if (!sb_has_quota_active(sb, cnt)) continue; - mapping = dqopt->files[cnt]->i_mapping; + if (!f2fs_sb_has_quota_ino(sbi)) + inode_lock(dqopt->files[cnt]); - ret = filemap_fdatawrite(mapping); - if (ret) - goto out; + /* + * do_quotactl + * f2fs_quota_sync + * down_read(quota_sem) + * dquot_writeback_dquots() + * f2fs_dquot_commit + * block_operation + * down_read(quota_sem) + */ + f2fs_lock_op(sbi); + down_read(&sbi->quota_sem); - /* if we are using journalled quota */ - if (is_journalled_quota(sbi)) - continue; + ret = f2fs_quota_sync_file(sbi, cnt); - ret = filemap_fdatawait(mapping); - if (ret) - set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR); + up_read(&sbi->quota_sem); + f2fs_unlock_op(sbi); + + if (!f2fs_sb_has_quota_ino(sbi)) + inode_unlock(dqopt->files[cnt]); - inode_lock(dqopt->files[cnt]); - truncate_inode_pages(&dqopt->files[cnt]->i_data, 0); - inode_unlock(dqopt->files[cnt]); + if (ret) + break; } -out: - if (ret) - set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR); - up_read(&sbi->quota_sem); - f2fs_unlock_op(sbi); return ret; } @@ -2519,7 +2573,7 @@ static int sanity_check_raw_super(struct f2fs_sb_info *sbi, struct buffer_head *bh) { - block_t segment_count, segs_per_sec, secs_per_zone; + block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main; block_t total_sections, blocks_per_seg; struct f2fs_super_block *raw_super = (struct f2fs_super_block *) (bh->b_data + F2FS_SUPER_OFFSET); @@ -2589,6 +2643,7 @@ } segment_count = le32_to_cpu(raw_super->segment_count); + segment_count_main = le32_to_cpu(raw_super->segment_count_main); segs_per_sec = le32_to_cpu(raw_super->segs_per_sec); secs_per_zone = le32_to_cpu(raw_super->secs_per_zone); total_sections = le32_to_cpu(raw_super->section_count); @@ -2602,14 +2657,19 @@ return -EFSCORRUPTED; } - if (total_sections > segment_count || - total_sections < F2FS_MIN_SEGMENTS || + if (total_sections > segment_count_main || total_sections < 1 || segs_per_sec > segment_count || !segs_per_sec) { f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)", segment_count, total_sections, segs_per_sec); return -EFSCORRUPTED; } + if (segment_count_main != total_sections * segs_per_sec) { + f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)", + segment_count_main, total_sections, segs_per_sec); + return -EFSCORRUPTED; + } + if ((segment_count / segs_per_sec) < total_sections) { f2fs_info(sbi, "Small segment_count (%u < %u * %u)", segment_count, segs_per_sec, total_sections); @@ -2695,7 +2755,7 @@ ovp_segments = le32_to_cpu(ckpt->overprov_segment_count); reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count); - if (unlikely(fsmeta < F2FS_MIN_SEGMENTS || + if (unlikely(fsmeta < F2FS_MIN_META_SEGMENTS || ovp_segments == 0 || reserved_segments == 0)) { f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version"); return 1; @@ -3438,6 +3498,10 @@ goto free_nm; } + err = adjust_reserved_segment(sbi); + if (err) + goto free_nm; + /* For write statistics */ if (sb->s_bdev->bd_part) sbi->sectors_written_start = @@ -3806,2 +3870,3 @@ MODULE_LICENSE("GPL"); +MODULE_SOFTDEP("pre: crc32"); diff -u linux-azure-5.4.0/fs/f2fs/sysfs.c linux-azure-5.4.0/fs/f2fs/sysfs.c --- linux-azure-5.4.0/fs/f2fs/sysfs.c +++ linux-azure-5.4.0/fs/f2fs/sysfs.c @@ -262,7 +262,9 @@ if (a->struct_type == RESERVED_BLOCKS) { spin_lock(&sbi->stat_lock); if (t > (unsigned long)(sbi->user_block_count - - F2FS_OPTION(sbi).root_reserved_blocks)) { + F2FS_OPTION(sbi).root_reserved_blocks - + sbi->blocks_per_seg * + SM_I(sbi)->additional_reserved_segments)) { spin_unlock(&sbi->stat_lock); return -EINVAL; } @@ -499,7 +501,9 @@ F2FS_FEATURE_RO_ATTR(verity, FEAT_VERITY); #endif F2FS_FEATURE_RO_ATTR(sb_checksum, FEAT_SB_CHECKSUM); +#ifdef CONFIG_UNICODE F2FS_FEATURE_RO_ATTR(casefold, FEAT_CASEFOLD); +#endif #define ATTR_LIST(name) (&f2fs_attr_##name.attr) static struct attribute *f2fs_attrs[] = { @@ -568,7 +572,9 @@ ATTR_LIST(verity), #endif ATTR_LIST(sb_checksum), +#ifdef CONFIG_UNICODE ATTR_LIST(casefold), +#endif NULL, }; ATTRIBUTE_GROUPS(f2fs_feat); diff -u linux-azure-5.4.0/fs/f2fs/xattr.c linux-azure-5.4.0/fs/f2fs/xattr.c --- linux-azure-5.4.0/fs/f2fs/xattr.c +++ linux-azure-5.4.0/fs/f2fs/xattr.c @@ -661,8 +661,17 @@ } last = here; - while (!IS_XATTR_LAST_ENTRY(last)) + while (!IS_XATTR_LAST_ENTRY(last)) { + if ((void *)(last) + sizeof(__u32) > last_base_addr || + (void *)XATTR_NEXT_ENTRY(last) > last_base_addr) { + f2fs_err(F2FS_I_SB(inode), "inode (%lu) has invalid last xattr entry, entry_size: %zu", + inode->i_ino, ENTRY_SIZE(last)); + set_sbi_flag(F2FS_I_SB(inode), SBI_NEED_FSCK); + error = -EFSCORRUPTED; + goto exit; + } last = XATTR_NEXT_ENTRY(last); + } newsize = XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) + len + size); diff -u linux-azure-5.4.0/fs/fcntl.c linux-azure-5.4.0/fs/fcntl.c --- linux-azure-5.4.0/fs/fcntl.c +++ linux-azure-5.4.0/fs/fcntl.c @@ -996,13 +996,14 @@ { while (fa) { struct fown_struct *fown; + unsigned long flags; if (fa->magic != FASYNC_MAGIC) { printk(KERN_ERR "kill_fasync: bad magic number in " "fasync_struct!\n"); return; } - read_lock(&fa->fa_lock); + read_lock_irqsave(&fa->fa_lock, flags); if (fa->fa_file) { fown = &fa->fa_file->f_owner; /* Don't send SIGURG to processes which have not set a @@ -1011,7 +1012,7 @@ if (!(sig == SIGURG && fown->signum == 0)) send_sigio(fown, fa->fa_fd, band); } - read_unlock(&fa->fa_lock); + read_unlock_irqrestore(&fa->fa_lock, flags); fa = rcu_dereference(fa->fa_next); } } diff -u linux-azure-5.4.0/fs/file.c linux-azure-5.4.0/fs/file.c --- linux-azure-5.4.0/fs/file.c +++ linux-azure-5.4.0/fs/file.c @@ -707,24 +707,69 @@ spin_unlock(&files->file_lock); } +static inline struct file *__fget_files_rcu(struct files_struct *files, + unsigned int fd, fmode_t mask, unsigned int refs) +{ + for (;;) { + struct file *file; + struct fdtable *fdt = rcu_dereference_raw(files->fdt); + struct file __rcu **fdentry; + + if (unlikely(fd >= fdt->max_fds)) + return NULL; + + fdentry = fdt->fd + array_index_nospec(fd, fdt->max_fds); + file = rcu_dereference_raw(*fdentry); + if (unlikely(!file)) + return NULL; + + if (unlikely(file->f_mode & mask)) + return NULL; + + /* + * Ok, we have a file pointer. However, because we do + * this all locklessly under RCU, we may be racing with + * that file being closed. + * + * Such a race can take two forms: + * + * (a) the file ref already went down to zero, + * and get_file_rcu_many() fails. Just try + * again: + */ + if (unlikely(!get_file_rcu_many(file, refs))) + continue; + + /* + * (b) the file table entry has changed under us. + * Note that we don't need to re-check the 'fdt->fd' + * pointer having changed, because it always goes + * hand-in-hand with 'fdt'. + * + * If so, we need to put our refs and try again. + */ + if (unlikely(rcu_dereference_raw(files->fdt) != fdt) || + unlikely(rcu_dereference_raw(*fdentry) != file)) { + fput_many(file, refs); + continue; + } + + /* + * Ok, we have a ref to the file, and checked that it + * still exists. + */ + return file; + } +} + + static struct file *__fget(unsigned int fd, fmode_t mask, unsigned int refs) { struct files_struct *files = current->files; struct file *file; rcu_read_lock(); -loop: - file = fcheck_files(files, fd); - if (file) { - /* File object ref couldn't be taken. - * dup2() atomicity guarantee is the reason - * we loop to catch the new file (or NULL pointer) - */ - if (file->f_mode & mask) - file = NULL; - else if (!get_file_rcu_many(file, refs)) - goto loop; - } + file = __fget_files_rcu(files, fd, mask, refs); rcu_read_unlock(); return file; diff -u linux-azure-5.4.0/fs/fs-writeback.c linux-azure-5.4.0/fs/fs-writeback.c --- linux-azure-5.4.0/fs/fs-writeback.c +++ linux-azure-5.4.0/fs/fs-writeback.c @@ -505,12 +505,19 @@ if (!isw) return; + atomic_inc(&isw_nr_in_flight); + /* find and pin the new wb */ rcu_read_lock(); memcg_css = css_from_id(new_wb_id, &memory_cgrp_subsys); - if (memcg_css) - isw->new_wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC); + if (memcg_css && !css_tryget(memcg_css)) + memcg_css = NULL; rcu_read_unlock(); + if (!memcg_css) + goto out_free; + + isw->new_wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC); + css_put(memcg_css); if (!isw->new_wb) goto out_free; @@ -535,11 +542,10 @@ * Let's continue after I_WB_SWITCH is guaranteed to be visible. */ call_rcu(&isw->rcu_head, inode_switch_wbs_rcu_fn); - - atomic_inc(&isw_nr_in_flight); return; out_free: + atomic_dec(&isw_nr_in_flight); if (isw->new_wb) wb_put(isw->new_wb); kfree(isw); @@ -1644,11 +1650,12 @@ }; unsigned long start_time = jiffies; long write_chunk; - long wrote = 0; /* count both pages and inodes */ + long total_wrote = 0; /* count both pages and inodes */ while (!list_empty(&wb->b_io)) { struct inode *inode = wb_inode(wb->b_io.prev); struct bdi_writeback *tmp_wb; + long wrote; if (inode->i_sb != sb) { if (work->sb) { @@ -1724,7 +1731,9 @@ wbc_detach_inode(&wbc); work->nr_pages -= write_chunk - wbc.nr_to_write; - wrote += write_chunk - wbc.nr_to_write; + wrote = write_chunk - wbc.nr_to_write - wbc.pages_skipped; + wrote = wrote < 0 ? 0 : wrote; + total_wrote += wrote; if (need_resched()) { /* @@ -1746,7 +1755,7 @@ tmp_wb = inode_to_wb_and_lock_list(inode); spin_lock(&inode->i_lock); if (!(inode->i_state & I_DIRTY_ALL)) - wrote++; + total_wrote++; requeue_inode(inode, tmp_wb, &wbc); inode_sync_complete(inode); spin_unlock(&inode->i_lock); @@ -1760,14 +1769,14 @@ * bail out to wb_writeback() often enough to check * background threshold and other termination conditions. */ - if (wrote) { + if (total_wrote) { if (time_is_before_jiffies(start_time + HZ / 10UL)) break; if (work->nr_pages <= 0) break; } } - return wrote; + return total_wrote; } static long __writeback_inodes_wb(struct bdi_writeback *wb, @@ -2196,28 +2205,6 @@ return ret; } -static noinline void block_dump___mark_inode_dirty(struct inode *inode) -{ - if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) { - struct dentry *dentry; - const char *name = "?"; - - dentry = d_find_alias(inode); - if (dentry) { - spin_lock(&dentry->d_lock); - name = (const char *) dentry->d_name.name; - } - printk(KERN_DEBUG - "%s(%d): dirtied inode %lu (%s) on %s\n", - current->comm, task_pid_nr(current), inode->i_ino, - name, inode->i_sb->s_id); - if (dentry) { - spin_unlock(&dentry->d_lock); - dput(dentry); - } - } -} - /** * __mark_inode_dirty - internal function * @@ -2277,9 +2264,6 @@ (dirtytime && (inode->i_state & I_DIRTY_INODE))) return; - if (unlikely(block_dump)) - block_dump___mark_inode_dirty(inode); - spin_lock(&inode->i_lock); if (dirtytime && (inode->i_state & I_DIRTY_INODE)) goto out_unlock_inode; diff -u linux-azure-5.4.0/fs/fuse/dev.c linux-azure-5.4.0/fs/fuse/dev.c --- linux-azure-5.4.0/fs/fuse/dev.c +++ linux-azure-5.4.0/fs/fuse/dev.c @@ -282,10 +282,10 @@ /* * test_and_set_bit() implies smp_mb() between bit - * changing and below intr_entry check. Pairs with + * changing and below FR_INTERRUPTED check. Pairs with * smp_mb() from queue_interrupt(). */ - if (!list_empty(&req->intr_entry)) { + if (test_bit(FR_INTERRUPTED, &req->flags)) { spin_lock(&fiq->lock); list_del_init(&req->intr_entry); spin_unlock(&fiq->lock); @@ -770,6 +770,7 @@ 1 << PG_uptodate | 1 << PG_lru | 1 << PG_active | + 1 << PG_workingset | 1 << PG_reclaim | 1 << PG_waiters))) { pr_warn("trying to steal weird page\n"); @@ -843,6 +844,12 @@ if (!(buf->flags & PIPE_BUF_FLAG_LRU)) lru_cache_add_file(newpage); + /* + * Release while we have extra ref on stolen page. Otherwise + * anon_pipe_buf_release() might think the page can be reused. + */ + pipe_buf_release(cs->pipe, buf); + err = 0; spin_lock(&cs->req->waitq.lock); if (test_bit(FR_ABORTED, &cs->req->flags)) @@ -926,7 +933,17 @@ while (count) { if (cs->write && cs->pipebufs && page) { - return fuse_ref_page(cs, page, offset, count); + /* + * Can't control lifetime of pipe buffers, so always + * copy user pages. + */ + if (cs->req->args->user_pages) { + err = fuse_copy_fill(cs); + if (err) + return err; + } else { + return fuse_ref_page(cs, page, offset, count); + } } else if (!cs->len) { if (cs->move_pages && page && offset == 0 && count == PAGE_SIZE) { @@ -1263,6 +1280,15 @@ goto restart; } spin_lock(&fpq->lock); + /* + * Must not put request on fpq->io queue after having been shut down by + * fuse_abort_conn() + */ + if (!fpq->connected) { + req->out.h.error = err = -ECONNABORTED; + goto out_end; + + } list_add(&req->list, &fpq->io); spin_unlock(&fpq->lock); cs->req = req; @@ -1859,7 +1885,7 @@ } err = -EINVAL; - if (oh.error <= -1000 || oh.error > 0) + if (oh.error <= -512 || oh.error > 0) goto copy_finish; spin_lock(&fpq->lock); @@ -2017,8 +2043,12 @@ pipe_lock(pipe); out_free: - for (idx = 0; idx < nbuf; idx++) - pipe_buf_release(pipe, &bufs[idx]); + for (idx = 0; idx < nbuf; idx++) { + struct pipe_buffer *buf = &bufs[idx]; + + if (buf->ops) + pipe_buf_release(pipe, buf); + } pipe_unlock(pipe); kvfree(bufs); diff -u linux-azure-5.4.0/fs/fuse/dir.c linux-azure-5.4.0/fs/fuse/dir.c --- linux-azure-5.4.0/fs/fuse/dir.c +++ linux-azure-5.4.0/fs/fuse/dir.c @@ -1032,7 +1032,7 @@ if (!parent) return -ENOENT; - inode_lock(parent); + inode_lock_nested(parent, I_MUTEX_PARENT); if (!S_ISDIR(parent->i_mode)) goto unlock; diff -u linux-azure-5.4.0/fs/fuse/file.c linux-azure-5.4.0/fs/fuse/file.c --- linux-azure-5.4.0/fs/fuse/file.c +++ linux-azure-5.4.0/fs/fuse/file.c @@ -193,12 +193,11 @@ struct fuse_file *ff = file->private_data; struct fuse_conn *fc = get_fuse_conn(inode); - if (!(ff->open_flags & FOPEN_KEEP_CACHE)) - invalidate_inode_pages2(inode->i_mapping); if (ff->open_flags & FOPEN_STREAM) stream_open(inode, file); else if (ff->open_flags & FOPEN_NONSEEKABLE) nonseekable_open(inode, file); + if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) { struct fuse_inode *fi = get_fuse_inode(inode); @@ -206,10 +205,14 @@ fi->attr_version = atomic64_inc_return(&fc->attr_version); i_size_write(inode, 0); spin_unlock(&fi->lock); + truncate_pagecache(inode, 0); fuse_invalidate_attr(inode); if (fc->writeback_cache) file_update_time(file); + } else if (!(ff->open_flags & FOPEN_KEEP_CACHE)) { + invalidate_inode_pages2(inode->i_mapping); } + if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache) fuse_link_write_file(file); } @@ -1430,6 +1433,7 @@ (PAGE_SIZE - ret) & (PAGE_SIZE - 1); } + ap->args.user_pages = true; if (write) ap->args.in_pages = 1; else @@ -3185,7 +3189,7 @@ static int fuse_writeback_range(struct inode *inode, loff_t start, loff_t end) { - int err = filemap_write_and_wait_range(inode->i_mapping, start, end); + int err = filemap_write_and_wait_range(inode->i_mapping, start, LLONG_MAX); if (!err) fuse_sync_writes(inode); @@ -3235,6 +3239,10 @@ goto out; } + err = file_modified(file); + if (err) + goto out; + if (!(mode & FALLOC_FL_KEEP_SIZE)) set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state); diff -u linux-azure-5.4.0/fs/fuse/fuse_i.h linux-azure-5.4.0/fs/fuse/fuse_i.h --- linux-azure-5.4.0/fs/fuse/fuse_i.h +++ linux-azure-5.4.0/fs/fuse/fuse_i.h @@ -248,6 +248,7 @@ bool nocreds:1; bool in_pages:1; bool out_pages:1; + bool user_pages:1; bool out_argvar:1; bool page_zeroing:1; bool page_replace:1; diff -u linux-azure-5.4.0/fs/fuse/inode.c linux-azure-5.4.0/fs/fuse/inode.c --- linux-azure-5.4.0/fs/fuse/inode.c +++ linux-azure-5.4.0/fs/fuse/inode.c @@ -162,6 +162,12 @@ inode->i_uid = make_kuid(fc->user_ns, attr->uid); inode->i_gid = make_kgid(fc->user_ns, attr->gid); inode->i_blocks = attr->blocks; + + /* Sanitize nsecs */ + attr->atimensec = min_t(u32, attr->atimensec, NSEC_PER_SEC - 1); + attr->mtimensec = min_t(u32, attr->mtimensec, NSEC_PER_SEC - 1); + attr->ctimensec = min_t(u32, attr->ctimensec, NSEC_PER_SEC - 1); + inode->i_atime.tv_sec = attr->atime; inode->i_atime.tv_nsec = attr->atimensec; /* mtime from server may be stale due to local buffered write */ diff -u linux-azure-5.4.0/fs/gfs2/bmap.c linux-azure-5.4.0/fs/gfs2/bmap.c --- linux-azure-5.4.0/fs/gfs2/bmap.c +++ linux-azure-5.4.0/fs/gfs2/bmap.c @@ -940,7 +940,7 @@ else if (height == ip->i_height) ret = gfs2_hole_size(inode, lblock, len, mp, iomap); else - iomap->length = size - pos; + iomap->length = size - iomap->offset; } else if (flags & IOMAP_WRITE) { u64 alloc_size; @@ -1233,13 +1233,12 @@ if (length != written && (iomap->flags & IOMAP_F_NEW)) { /* Deallocate blocks that were just allocated. */ - loff_t blockmask = i_blocksize(inode) - 1; - loff_t end = (pos + length) & ~blockmask; + loff_t hstart = round_up(pos + written, i_blocksize(inode)); + loff_t hend = iomap->offset + iomap->length; - pos = (pos + written + blockmask) & ~blockmask; - if (pos < end) { - truncate_pagecache_range(inode, pos, end - 1); - punch_hole(ip, pos, end - pos); + if (hstart < hend) { + truncate_pagecache_range(inode, hstart, hend - 1); + punch_hole(ip, hstart, hend - hstart); } } diff -u linux-azure-5.4.0/fs/gfs2/file.c linux-azure-5.4.0/fs/gfs2/file.c --- linux-azure-5.4.0/fs/gfs2/file.c +++ linux-azure-5.4.0/fs/gfs2/file.c @@ -875,8 +875,11 @@ current->backing_dev_info = inode_to_bdi(inode); buffered = iomap_file_buffered_write(iocb, from, &gfs2_iomap_ops); current->backing_dev_info = NULL; - if (unlikely(buffered <= 0)) + if (unlikely(buffered <= 0)) { + if (!ret) + ret = buffered; goto out_unlock; + } /* * We need to ensure that the page cache pages are written to diff -u linux-azure-5.4.0/fs/gfs2/glock.c linux-azure-5.4.0/fs/gfs2/glock.c --- linux-azure-5.4.0/fs/gfs2/glock.c +++ linux-azure-5.4.0/fs/gfs2/glock.c @@ -1552,6 +1552,7 @@ while(!list_empty(list)) { gl = list_entry(list->next, struct gfs2_glock, gl_lru); list_del_init(&gl->gl_lru); + clear_bit(GLF_LRU, &gl->gl_flags); if (!spin_trylock(&gl->gl_lockref.lock)) { add_back_to_lru: list_add(&gl->gl_lru, &lru_list); @@ -1597,7 +1598,6 @@ if (!test_bit(GLF_LOCK, &gl->gl_flags)) { list_move(&gl->gl_lru, &dispose); atomic_dec(&lru_count); - clear_bit(GLF_LRU, &gl->gl_flags); freed++; continue; } diff -u linux-azure-5.4.0/fs/gfs2/lock_dlm.c linux-azure-5.4.0/fs/gfs2/lock_dlm.c --- linux-azure-5.4.0/fs/gfs2/lock_dlm.c +++ linux-azure-5.4.0/fs/gfs2/lock_dlm.c @@ -292,6 +292,11 @@ gfs2_sbstats_inc(gl, GFS2_LKS_DCOUNT); gfs2_update_request_times(gl); + /* don't want to call dlm if we've unmounted the lock protocol */ + if (test_bit(DFL_UNMOUNT, &ls->ls_recover_flags)) { + gfs2_glock_free(gl); + return; + } /* don't want to skip dlm_unlock writing the lvb when lock has one */ if (test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags) && diff -u linux-azure-5.4.0/fs/gfs2/rgrp.c linux-azure-5.4.0/fs/gfs2/rgrp.c --- linux-azure-5.4.0/fs/gfs2/rgrp.c +++ linux-azure-5.4.0/fs/gfs2/rgrp.c @@ -925,15 +925,15 @@ rgd->rd_bitbytes = be32_to_cpu(buf.ri_bitbytes); spin_lock_init(&rgd->rd_rsspin); - error = compute_bitstructs(rgd); - if (error) - goto fail; - error = gfs2_glock_get(sdp, rgd->rd_addr, &gfs2_rgrp_glops, CREATE, &rgd->rd_gl); if (error) goto fail; + error = compute_bitstructs(rgd); + if (error) + goto fail_glock; + rgd->rd_rgl = (struct gfs2_rgrp_lvb *)rgd->rd_gl->gl_lksb.sb_lvbptr; rgd->rd_flags &= ~(GFS2_RDF_UPTODATE | GFS2_RDF_PREFERRED); if (rgd->rd_data > sdp->sd_max_rg_data) @@ -950,6 +950,7 @@ } error = 0; /* someone else read in the rgrp; free it and ignore it */ +fail_glock: gfs2_glock_put(rgd->rd_gl); fail: @@ -1429,7 +1430,8 @@ start = r.start >> bs_shift; end = start + (r.len >> bs_shift); - minlen = max_t(u64, r.minlen, + minlen = max_t(u64, r.minlen, sdp->sd_sb.sb_bsize); + minlen = max_t(u64, minlen, q->limits.discard_granularity) >> bs_shift; if (end <= start || minlen > sdp->sd_max_rg_data) diff -u linux-azure-5.4.0/fs/hugetlbfs/inode.c linux-azure-5.4.0/fs/hugetlbfs/inode.c --- linux-azure-5.4.0/fs/hugetlbfs/inode.c +++ linux-azure-5.4.0/fs/hugetlbfs/inode.c @@ -38,6 +38,7 @@ #include #include +#include static const struct super_operations hugetlbfs_ops; static const struct address_space_operations hugetlbfs_aops; @@ -76,7 +77,7 @@ static const struct fs_parameter_spec hugetlb_param_specs[] = { fsparam_u32 ("gid", Opt_gid), fsparam_string("min_size", Opt_min_size), - fsparam_u32 ("mode", Opt_mode), + fsparam_u32oct("mode", Opt_mode), fsparam_string("nr_inodes", Opt_nr_inodes), fsparam_string("pagesize", Opt_pagesize), fsparam_string("size", Opt_size), @@ -201,13 +202,61 @@ #ifndef HAVE_ARCH_HUGETLB_UNMAPPED_AREA static unsigned long +hugetlb_get_unmapped_area_bottomup(struct file *file, unsigned long addr, + unsigned long len, unsigned long pgoff, unsigned long flags) +{ + struct hstate *h = hstate_file(file); + struct vm_unmapped_area_info info; + + info.flags = 0; + info.length = len; + info.low_limit = current->mm->mmap_base; + info.high_limit = arch_get_mmap_end(addr); + info.align_mask = PAGE_MASK & ~huge_page_mask(h); + info.align_offset = 0; + return vm_unmapped_area(&info); +} + +static unsigned long +hugetlb_get_unmapped_area_topdown(struct file *file, unsigned long addr, + unsigned long len, unsigned long pgoff, unsigned long flags) +{ + struct hstate *h = hstate_file(file); + struct vm_unmapped_area_info info; + + info.flags = VM_UNMAPPED_AREA_TOPDOWN; + info.length = len; + info.low_limit = max(PAGE_SIZE, mmap_min_addr); + info.high_limit = arch_get_mmap_base(addr, current->mm->mmap_base); + info.align_mask = PAGE_MASK & ~huge_page_mask(h); + info.align_offset = 0; + addr = vm_unmapped_area(&info); + + /* + * A failed mmap() very likely causes application failure, + * so fall back to the bottom-up function here. This scenario + * can happen with large stack limits and large mmap() + * allocations. + */ + if (unlikely(offset_in_page(addr))) { + VM_BUG_ON(addr != -ENOMEM); + info.flags = 0; + info.low_limit = current->mm->mmap_base; + info.high_limit = arch_get_mmap_end(addr); + addr = vm_unmapped_area(&info); + } + + return addr; +} + +static unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags) { struct mm_struct *mm = current->mm; struct vm_area_struct *vma; struct hstate *h = hstate_file(file); - struct vm_unmapped_area_info info; + const unsigned long mmap_end = arch_get_mmap_end(addr); if (len & ~huge_page_mask(h)) return -EINVAL; @@ -223,18 +272,21 @@ if (addr) { addr = ALIGN(addr, huge_page_size(h)); vma = find_vma(mm, addr); - if (TASK_SIZE - len >= addr && + if (mmap_end - len >= addr && (!vma || addr + len <= vm_start_gap(vma))) return addr; } - info.flags = 0; - info.length = len; - info.low_limit = TASK_UNMAPPED_BASE; - info.high_limit = TASK_SIZE; - info.align_mask = PAGE_MASK & ~huge_page_mask(h); - info.align_offset = 0; - return vm_unmapped_area(&info); + /* + * Use mm->get_unmapped_area value as a hint to use topdown routine. + * If architectures have special needs, they should define their own + * version of hugetlb_get_unmapped_area. + */ + if (mm->get_unmapped_area == arch_get_unmapped_area_topdown) + return hugetlb_get_unmapped_area_topdown(file, addr, len, + pgoff, flags); + return hugetlb_get_unmapped_area_bottomup(file, addr, len, + pgoff, flags); } #endif diff -u linux-azure-5.4.0/fs/inode.c linux-azure-5.4.0/fs/inode.c --- linux-azure-5.4.0/fs/inode.c +++ linux-azure-5.4.0/fs/inode.c @@ -167,8 +167,6 @@ inode->i_wb_frn_history = 0; #endif - if (security_inode_alloc(inode)) - goto out; spin_lock_init(&inode->i_lock); lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key); @@ -199,11 +197,12 @@ inode->i_fsnotify_mask = 0; #endif inode->i_flctx = NULL; + + if (unlikely(security_inode_alloc(inode))) + return -ENOMEM; this_cpu_inc(nr_inodes); return 0; -out: - return -ENOMEM; } EXPORT_SYMBOL(inode_init_always); diff -u linux-azure-5.4.0/fs/internal.h linux-azure-5.4.0/fs/internal.h --- linux-azure-5.4.0/fs/internal.h +++ linux-azure-5.4.0/fs/internal.h @@ -52,7 +52,6 @@ */ extern const struct fs_context_operations legacy_fs_context_ops; extern int parse_monolithic_mount_data(struct fs_context *, void *); -extern void fc_drop_locked(struct fs_context *); extern void vfs_clean_context(struct fs_context *fc); extern int finish_clean_context(struct fs_context *fc); diff -u linux-azure-5.4.0/fs/io_uring.c linux-azure-5.4.0/fs/io_uring.c --- linux-azure-5.4.0/fs/io_uring.c +++ linux-azure-5.4.0/fs/io_uring.c @@ -438,6 +438,22 @@ return ctx; } +static void io_req_put_fs(struct io_kiocb *req) +{ + struct fs_struct *fs = req->fs; + + if (!fs) + return; + + spin_lock(&req->fs->lock); + if (--fs->users) + fs = NULL; + spin_unlock(&req->fs->lock); + if (fs) + free_fs_struct(fs); + req->fs = NULL; +} + static inline bool __io_sequence_defer(struct io_ring_ctx *ctx, struct io_kiocb *req) { @@ -695,6 +711,7 @@ static void __io_free_req(struct io_kiocb *req) { + io_req_put_fs(req); if (req->file && !(req->flags & REQ_F_FIXED_FILE)) fput(req->file); percpu_ref_put(&req->ctx->refs); @@ -1701,16 +1718,7 @@ ret = -EINTR; } - if (req->fs) { - struct fs_struct *fs = req->fs; - - spin_lock(&req->fs->lock); - if (--fs->users) - fs = NULL; - spin_unlock(&req->fs->lock); - if (fs) - free_fs_struct(fs); - } + io_req_put_fs(req); io_cqring_add_event(req->ctx, sqe->user_data, ret); io_put_req(req); return 0; @@ -1900,6 +1908,9 @@ __poll_t mask; u16 events; + if (req->file->f_op->may_pollfree) + return -EOPNOTSUPP; + if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL)) return -EINVAL; if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index) @@ -3171,6 +3182,7 @@ fpl->max = fpl->count = nr; UNIXCB(skb).fp = fpl; + skb->scm_io_uring = 1; refcount_add(skb->truesize, &sk->sk_wmem_alloc); skb_queue_head(&sk->sk_receive_queue, skb); diff -u linux-azure-5.4.0/fs/iomap/buffered-io.c linux-azure-5.4.0/fs/iomap/buffered-io.c --- linux-azure-5.4.0/fs/iomap/buffered-io.c +++ linux-azure-5.4.0/fs/iomap/buffered-io.c @@ -535,7 +535,8 @@ * write started inside the existing inode size. */ if (pos + len > i_size) - truncate_pagecache_range(inode, max(pos, i_size), pos + len); + truncate_pagecache_range(inode, max(pos, i_size), + pos + len - 1); } static int diff -u linux-azure-5.4.0/fs/iomap/swapfile.c linux-azure-5.4.0/fs/iomap/swapfile.c --- linux-azure-5.4.0/fs/iomap/swapfile.c +++ linux-azure-5.4.0/fs/iomap/swapfile.c @@ -30,11 +30,16 @@ { struct iomap *iomap = &isi->iomap; unsigned long nr_pages; + unsigned long max_pages; uint64_t first_ppage; uint64_t first_ppage_reported; uint64_t next_ppage; int error; + if (unlikely(isi->nr_pages >= isi->sis->max)) + return 0; + max_pages = isi->sis->max - isi->nr_pages; + /* * Round the start up and the end down so that the physical * extent aligns to a page boundary. @@ -47,6 +52,7 @@ if (first_ppage >= next_ppage) return 0; nr_pages = next_ppage - first_ppage; + nr_pages = min(nr_pages, max_pages); /* * Calculate how much swap space we're adding; the first page contains diff -u linux-azure-5.4.0/fs/jbd2/commit.c linux-azure-5.4.0/fs/jbd2/commit.c --- linux-azure-5.4.0/fs/jbd2/commit.c +++ linux-azure-5.4.0/fs/jbd2/commit.c @@ -187,19 +187,23 @@ * use writepages() because with delayed allocation we may be doing * block allocation in writepages(). */ -static int journal_submit_inode_data_buffers(struct address_space *mapping, - loff_t dirty_start, loff_t dirty_end) +int jbd2_journal_submit_inode_data_buffers(struct jbd2_inode *jinode) { - int ret; + struct address_space *mapping = jinode->i_vfs_inode->i_mapping; struct writeback_control wbc = { .sync_mode = WB_SYNC_ALL, .nr_to_write = mapping->nrpages * 2, - .range_start = dirty_start, - .range_end = dirty_end, + .range_start = jinode->i_dirty_start, + .range_end = jinode->i_dirty_end, }; - ret = generic_writepages(mapping, &wbc); - return ret; + /* + * submit the inode data buffers. We use writepage + * instead of writepages. Because writepages can do + * block allocation with delalloc. We need to write + * only allocated blocks here. + */ + return generic_writepages(mapping, &wbc); } /* @@ -215,29 +219,20 @@ { struct jbd2_inode *jinode; int err, ret = 0; - struct address_space *mapping; spin_lock(&journal->j_list_lock); list_for_each_entry(jinode, &commit_transaction->t_inode_list, i_list) { - loff_t dirty_start = jinode->i_dirty_start; - loff_t dirty_end = jinode->i_dirty_end; - if (!(jinode->i_flags & JI_WRITE_DATA)) continue; - mapping = jinode->i_vfs_inode->i_mapping; jinode->i_flags |= JI_COMMIT_RUNNING; spin_unlock(&journal->j_list_lock); - /* - * submit the inode data buffers. We use writepage - * instead of writepages. Because writepages can do - * block allocation with delalloc. We need to write - * only allocated blocks here. - */ + /* submit the inode data buffers. */ trace_jbd2_submit_inode_data(jinode->i_vfs_inode); - err = journal_submit_inode_data_buffers(mapping, dirty_start, - dirty_end); - if (!ret) - ret = err; + if (journal->j_submit_inode_data_buffers) { + err = journal->j_submit_inode_data_buffers(jinode); + if (!ret) + ret = err; + } spin_lock(&journal->j_list_lock); J_ASSERT(jinode->i_transaction == commit_transaction); jinode->i_flags &= ~JI_COMMIT_RUNNING; @@ -248,6 +243,15 @@ return ret; } +int jbd2_journal_finish_inode_data_buffers(struct jbd2_inode *jinode) +{ + struct address_space *mapping = jinode->i_vfs_inode->i_mapping; + + return filemap_fdatawait_range_keep_errors(mapping, + jinode->i_dirty_start, + jinode->i_dirty_end); +} + /* * Wait for data submitted for writeout, refile inodes to proper * transaction if needed. @@ -262,18 +266,16 @@ /* For locking, see the comment in journal_submit_data_buffers() */ spin_lock(&journal->j_list_lock); list_for_each_entry(jinode, &commit_transaction->t_inode_list, i_list) { - loff_t dirty_start = jinode->i_dirty_start; - loff_t dirty_end = jinode->i_dirty_end; - if (!(jinode->i_flags & JI_WAIT_DATA)) continue; jinode->i_flags |= JI_COMMIT_RUNNING; spin_unlock(&journal->j_list_lock); - err = filemap_fdatawait_range_keep_errors( - jinode->i_vfs_inode->i_mapping, dirty_start, - dirty_end); - if (!ret) - ret = err; + /* wait for the inode data buffers writeout. */ + if (journal->j_finish_inode_data_buffers) { + err = journal->j_finish_inode_data_buffers(jinode); + if (!ret) + ret = err; + } spin_lock(&journal->j_list_lock); jinode->i_flags &= ~JI_COMMIT_RUNNING; smp_mb(); @@ -451,7 +453,6 @@ } spin_unlock(&commit_transaction->t_handle_lock); commit_transaction->t_state = T_SWITCH; - write_unlock(&journal->j_state_lock); J_ASSERT (atomic_read(&commit_transaction->t_outstanding_credits) <= journal->j_max_transaction_buffers); @@ -471,6 +472,8 @@ * has reserved. This is consistent with the existing behaviour * that multiple jbd2_journal_get_write_access() calls to the same * buffer are perfectly permissible. + * We use journal->j_state_lock here to serialize processing of + * t_reserved_list with eviction of buffers from journal_unmap_buffer(). */ while (commit_transaction->t_reserved_list) { jh = commit_transaction->t_reserved_list; @@ -490,6 +493,7 @@ jbd2_journal_refile_buffer(journal, jh); } + write_unlock(&journal->j_state_lock); /* * Now try to drop any written-back buffers from the journal's * checkpoint lists. We do this *before* commit because it potentially @@ -512,13 +516,13 @@ */ jbd2_journal_switch_revoke_table(journal); + write_lock(&journal->j_state_lock); /* * Reserved credits cannot be claimed anymore, free them */ atomic_sub(atomic_read(&journal->j_reserved_credits), &commit_transaction->t_outstanding_credits); - write_lock(&journal->j_state_lock); trace_jbd2_commit_flushing(journal, commit_transaction); stats.run.rs_flushing = jiffies; stats.run.rs_locked = jbd2_time_diff(stats.run.rs_locked, @@ -529,7 +533,7 @@ journal->j_running_transaction = NULL; start_time = ktime_get(); commit_transaction->t_log_start = journal->j_head; - wake_up(&journal->j_wait_transaction_locked); + wake_up_all(&journal->j_wait_transaction_locked); write_unlock(&journal->j_state_lock); jbd_debug(3, "JBD2: commit phase 2a\n"); diff -u linux-azure-5.4.0/fs/jbd2/journal.c linux-azure-5.4.0/fs/jbd2/journal.c --- linux-azure-5.4.0/fs/jbd2/journal.c +++ linux-azure-5.4.0/fs/jbd2/journal.c @@ -91,6 +91,8 @@ EXPORT_SYMBOL(jbd2_journal_force_commit); EXPORT_SYMBOL(jbd2_journal_inode_ranged_write); EXPORT_SYMBOL(jbd2_journal_inode_ranged_wait); +EXPORT_SYMBOL(jbd2_journal_submit_inode_data_buffers); +EXPORT_SYMBOL(jbd2_journal_finish_inode_data_buffers); EXPORT_SYMBOL(jbd2_journal_init_jbd_inode); EXPORT_SYMBOL(jbd2_journal_release_jbd_inode); EXPORT_SYMBOL(jbd2_journal_begin_ordered_truncate); diff -u linux-azure-5.4.0/fs/jbd2/transaction.c linux-azure-5.4.0/fs/jbd2/transaction.c --- linux-azure-5.4.0/fs/jbd2/transaction.c +++ linux-azure-5.4.0/fs/jbd2/transaction.c @@ -149,7 +149,7 @@ int need_to_start; tid_t tid = journal->j_running_transaction->t_tid; - prepare_to_wait(&journal->j_wait_transaction_locked, &wait, + prepare_to_wait_exclusive(&journal->j_wait_transaction_locked, &wait, TASK_UNINTERRUPTIBLE); need_to_start = !tid_geq(journal->j_commit_request, tid); read_unlock(&journal->j_state_lock); @@ -175,7 +175,7 @@ read_unlock(&journal->j_state_lock); return; } - prepare_to_wait(&journal->j_wait_transaction_locked, &wait, + prepare_to_wait_exclusive(&journal->j_wait_transaction_locked, &wait, TASK_UNINTERRUPTIBLE); read_unlock(&journal->j_state_lock); /* @@ -810,7 +810,7 @@ write_lock(&journal->j_state_lock); --journal->j_barrier_count; write_unlock(&journal->j_state_lock); - wake_up(&journal->j_wait_transaction_locked); + wake_up_all(&journal->j_wait_transaction_locked); } static void warn_dirty_buffer(struct buffer_head *bh) @@ -1375,8 +1375,6 @@ struct journal_head *jh; int ret = 0; - if (is_handle_aborted(handle)) - return -EROFS; if (!buffer_jbd(bh)) return -EUCLEAN; @@ -1423,6 +1421,18 @@ journal = transaction->t_journal; jbd_lock_bh_state(bh); + if (is_handle_aborted(handle)) { + /* + * Check journal aborting with @jh->b_state_lock locked, + * since 'jh->b_transaction' could be replaced with + * 'jh->b_next_transaction' during old transaction + * committing if journal aborted, which may fail + * assertion on 'jh->b_frozen_data == NULL'. + */ + ret = -EROFS; + goto out_unlock_bh; + } + if (jh->b_modified == 0) { /* * This buffer's got modified and becoming part diff -u linux-azure-5.4.0/fs/jffs2/scan.c linux-azure-5.4.0/fs/jffs2/scan.c --- linux-azure-5.4.0/fs/jffs2/scan.c +++ linux-azure-5.4.0/fs/jffs2/scan.c @@ -136,7 +136,7 @@ if (!s) { JFFS2_WARNING("Can't allocate memory for summary\n"); ret = -ENOMEM; - goto out; + goto out_buf; } } @@ -274,13 +274,15 @@ } ret = 0; out: + jffs2_sum_reset_collected(s); + kfree(s); + out_buf: if (buf_size) kfree(flashbuf); #ifndef __ECOS else mtd_unpoint(c->mtd, 0, c->mtd->size); #endif - kfree(s); return ret; } diff -u linux-azure-5.4.0/fs/jfs/jfs_dmap.c linux-azure-5.4.0/fs/jfs/jfs_dmap.c --- linux-azure-5.4.0/fs/jfs/jfs_dmap.c +++ linux-azure-5.4.0/fs/jfs/jfs_dmap.c @@ -148,6 +148,7 @@ * 0 - success * -ENOMEM - insufficient memory * -EIO - i/o error + * -EINVAL - wrong bmap data */ int dbMount(struct inode *ipbmap) { @@ -179,6 +180,12 @@ bmp->db_nfree = le64_to_cpu(dbmp_le->dn_nfree); bmp->db_l2nbperpage = le32_to_cpu(dbmp_le->dn_l2nbperpage); bmp->db_numag = le32_to_cpu(dbmp_le->dn_numag); + if (!bmp->db_numag) { + release_metapage(mp); + kfree(bmp); + return -EINVAL; + } + bmp->db_maxlevel = le32_to_cpu(dbmp_le->dn_maxlevel); bmp->db_maxag = le32_to_cpu(dbmp_le->dn_maxag); bmp->db_agpref = le32_to_cpu(dbmp_le->dn_agpref); @@ -378,7 +385,8 @@ } /* write the last buffer. */ - write_metapage(mp); + if (mp) + write_metapage(mp); IREAD_UNLOCK(ipbmap); diff -u linux-azure-5.4.0/fs/jfs/jfs_mount.c linux-azure-5.4.0/fs/jfs/jfs_mount.c --- linux-azure-5.4.0/fs/jfs/jfs_mount.c +++ linux-azure-5.4.0/fs/jfs/jfs_mount.c @@ -80,14 +80,14 @@ * (initialize mount inode from the superblock) */ if ((rc = chkSuper(sb))) { - goto errout20; + goto out; } ipaimap = diReadSpecial(sb, AGGREGATE_I, 0); if (ipaimap == NULL) { jfs_err("jfs_mount: Failed to read AGGREGATE_I"); rc = -EIO; - goto errout20; + goto out; } sbi->ipaimap = ipaimap; @@ -98,7 +98,7 @@ */ if ((rc = diMount(ipaimap))) { jfs_err("jfs_mount: diMount(ipaimap) failed w/rc = %d", rc); - goto errout21; + goto err_ipaimap; } /* @@ -107,7 +107,7 @@ ipbmap = diReadSpecial(sb, BMAP_I, 0); if (ipbmap == NULL) { rc = -EIO; - goto errout22; + goto err_umount_ipaimap; } jfs_info("jfs_mount: ipbmap:0x%p", ipbmap); @@ -119,7 +119,7 @@ */ if ((rc = dbMount(ipbmap))) { jfs_err("jfs_mount: dbMount failed w/rc = %d", rc); - goto errout22; + goto err_ipbmap; } /* @@ -138,7 +138,7 @@ if (!ipaimap2) { jfs_err("jfs_mount: Failed to read AGGREGATE_I"); rc = -EIO; - goto errout35; + goto err_umount_ipbmap; } sbi->ipaimap2 = ipaimap2; @@ -150,7 +150,7 @@ if ((rc = diMount(ipaimap2))) { jfs_err("jfs_mount: diMount(ipaimap2) failed, rc = %d", rc); - goto errout35; + goto err_ipaimap2; } } else /* Secondary aggregate inode table is not valid */ @@ -167,7 +167,7 @@ jfs_err("jfs_mount: Failed to read FILESYSTEM_I"); /* open fileset secondary inode allocation map */ rc = -EIO; - goto errout40; + goto err_umount_ipaimap2; } jfs_info("jfs_mount: ipimap:0x%p", ipimap); @@ -177,41 +177,34 @@ /* initialize fileset inode allocation map */ if ((rc = diMount(ipimap))) { jfs_err("jfs_mount: diMount failed w/rc = %d", rc); - goto errout41; + goto err_ipimap; } - goto out; + return rc; /* * unwind on error */ - errout41: /* close fileset inode allocation map inode */ +err_ipimap: + /* close fileset inode allocation map inode */ diFreeSpecial(ipimap); - - errout40: /* fileset closed */ - +err_umount_ipaimap2: /* close secondary aggregate inode allocation map */ - if (ipaimap2) { + if (ipaimap2) diUnmount(ipaimap2, 1); +err_ipaimap2: + /* close aggregate inodes */ + if (ipaimap2) diFreeSpecial(ipaimap2); - } - - errout35: - - /* close aggregate block allocation map */ +err_umount_ipbmap: /* close aggregate block allocation map */ dbUnmount(ipbmap, 1); +err_ipbmap: /* close aggregate inodes */ diFreeSpecial(ipbmap); - - errout22: /* close aggregate inode allocation map */ - +err_umount_ipaimap: /* close aggregate inode allocation map */ diUnmount(ipaimap, 1); - - errout21: /* close aggregate inodes */ +err_ipaimap: /* close aggregate inodes */ diFreeSpecial(ipaimap); - errout20: /* aggregate closed */ - - out: - +out: if (rc) jfs_err("Mount JFS Failure: %d", rc); diff -u linux-azure-5.4.0/fs/kernfs/dir.c linux-azure-5.4.0/fs/kernfs/dir.c --- linux-azure-5.4.0/fs/kernfs/dir.c +++ linux-azure-5.4.0/fs/kernfs/dir.c @@ -19,7 +19,15 @@ DEFINE_MUTEX(kernfs_mutex); static DEFINE_SPINLOCK(kernfs_rename_lock); /* kn->parent and ->name */ -static char kernfs_pr_cont_buf[PATH_MAX]; /* protected by rename_lock */ +/* + * Don't use rename_lock to piggy back on pr_cont_buf. We don't want to + * call pr_cont() while holding rename_lock. Because sometimes pr_cont() + * will perform wakeups when releasing console_sem. Holding rename_lock + * will introduce deadlock if the scheduler reads the kernfs_name in the + * wakeup path. + */ +static DEFINE_SPINLOCK(kernfs_pr_cont_lock); +static char kernfs_pr_cont_buf[PATH_MAX]; /* protected by pr_cont_lock */ static DEFINE_SPINLOCK(kernfs_idr_lock); /* root->ino_idr */ #define rb_to_kn(X) rb_entry((X), struct kernfs_node, rb) @@ -230,12 +238,12 @@ { unsigned long flags; - spin_lock_irqsave(&kernfs_rename_lock, flags); + spin_lock_irqsave(&kernfs_pr_cont_lock, flags); - kernfs_name_locked(kn, kernfs_pr_cont_buf, sizeof(kernfs_pr_cont_buf)); + kernfs_name(kn, kernfs_pr_cont_buf, sizeof(kernfs_pr_cont_buf)); pr_cont("%s", kernfs_pr_cont_buf); - spin_unlock_irqrestore(&kernfs_rename_lock, flags); + spin_unlock_irqrestore(&kernfs_pr_cont_lock, flags); } /** @@ -249,10 +257,10 @@ unsigned long flags; int sz; - spin_lock_irqsave(&kernfs_rename_lock, flags); + spin_lock_irqsave(&kernfs_pr_cont_lock, flags); - sz = kernfs_path_from_node_locked(kn, NULL, kernfs_pr_cont_buf, - sizeof(kernfs_pr_cont_buf)); + sz = kernfs_path_from_node(kn, NULL, kernfs_pr_cont_buf, + sizeof(kernfs_pr_cont_buf)); if (sz < 0) { pr_cont("(error)"); goto out; @@ -266,7 +274,7 @@ pr_cont("%s", kernfs_pr_cont_buf); out: - spin_unlock_irqrestore(&kernfs_rename_lock, flags); + spin_unlock_irqrestore(&kernfs_pr_cont_lock, flags); } /** @@ -870,13 +878,12 @@ lockdep_assert_held(&kernfs_mutex); - /* grab kernfs_rename_lock to piggy back on kernfs_pr_cont_buf */ - spin_lock_irq(&kernfs_rename_lock); + spin_lock_irq(&kernfs_pr_cont_lock); len = strlcpy(kernfs_pr_cont_buf, path, sizeof(kernfs_pr_cont_buf)); if (len >= sizeof(kernfs_pr_cont_buf)) { - spin_unlock_irq(&kernfs_rename_lock); + spin_unlock_irq(&kernfs_pr_cont_lock); return NULL; } @@ -888,7 +895,7 @@ parent = kernfs_find_ns(parent, name, ns); } - spin_unlock_irq(&kernfs_rename_lock); + spin_unlock_irq(&kernfs_pr_cont_lock); return parent; } @@ -1508,8 +1515,11 @@ mutex_lock(&kernfs_mutex); kn = kernfs_find_ns(parent, name, ns); - if (kn) + if (kn) { + kernfs_get(kn); __kernfs_remove(kn); + kernfs_put(kn); + } mutex_unlock(&kernfs_mutex); diff -u linux-azure-5.4.0/fs/minix/inode.c linux-azure-5.4.0/fs/minix/inode.c --- linux-azure-5.4.0/fs/minix/inode.c +++ linux-azure-5.4.0/fs/minix/inode.c @@ -447,7 +447,8 @@ .writepage = minix_writepage, .write_begin = minix_write_begin, .write_end = generic_write_end, - .bmap = minix_bmap + .bmap = minix_bmap, + .direct_IO = noop_direct_IO }; static const struct inode_operations minix_symlink_inode_operations = { diff -u linux-azure-5.4.0/fs/namei.c linux-azure-5.4.0/fs/namei.c --- linux-azure-5.4.0/fs/namei.c +++ linux-azure-5.4.0/fs/namei.c @@ -3443,6 +3443,8 @@ child = d_alloc(dentry, &slash_name); if (unlikely(!child)) goto out_err; + if (!IS_POSIXACL(dir)) + mode &= ~current_umask(); error = dir->i_op->tmpfile(dir, child, mode); if (error) goto out_err; @@ -3878,13 +3880,12 @@ dentry->d_inode->i_flags |= S_DEAD; dont_mount(dentry); detach_mounts(dentry); - fsnotify_rmdir(dir, dentry); out: inode_unlock(dentry->d_inode); dput(dentry); if (!error) - d_delete(dentry); + d_delete_notify(dir, dentry); return error; } EXPORT_SYMBOL(vfs_rmdir); @@ -3995,7 +3996,6 @@ if (!error) { dont_mount(dentry); detach_mounts(dentry); - fsnotify_unlink(dir, dentry); } } } @@ -4003,9 +4003,11 @@ inode_unlock(target); /* We don't d_delete() NFS sillyrenamed files--they still exist. */ - if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { + if (!error && dentry->d_flags & DCACHE_NFSFS_RENAMED) { + fsnotify_unlink(dir, dentry); + } else if (!error) { fsnotify_link_count(target); - d_delete(dentry); + d_delete_notify(dir, dentry); } return error; diff -u linux-azure-5.4.0/fs/namespace.c linux-azure-5.4.0/fs/namespace.c --- linux-azure-5.4.0/fs/namespace.c +++ linux-azure-5.4.0/fs/namespace.c @@ -1655,8 +1655,12 @@ } #ifdef CONFIG_MANDATORY_FILE_LOCKING -static inline bool may_mandlock(void) +static bool may_mandlock(void) { + pr_warn_once("======================================================\n" + "WARNING: the mand mount option is being deprecated and\n" + " will be removed in v5.15!\n" + "======================================================\n"); return capable(CAP_SYS_ADMIN); } #else @@ -1869,6 +1873,20 @@ namespace_unlock(); } +static bool has_locked_children(struct mount *mnt, struct dentry *dentry) +{ + struct mount *child; + + list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) { + if (!is_subdir(child->mnt_mountpoint, dentry)) + continue; + + if (child->mnt.mnt_flags & MNT_LOCKED) + return true; + } + return false; +} + /** * clone_private_mount - create a private clone of a path * @@ -1883,14 +1901,27 @@ struct mount *old_mnt = real_mount(path->mnt); struct mount *new_mnt; + down_read(&namespace_sem); if (IS_MNT_UNBINDABLE(old_mnt)) - return ERR_PTR(-EINVAL); + goto invalid; + + if (!check_mnt(old_mnt)) + goto invalid; + + if (has_locked_children(old_mnt, path->dentry)) + goto invalid; new_mnt = clone_mnt(old_mnt, path->dentry, CL_PRIVATE); + up_read(&namespace_sem); + if (IS_ERR(new_mnt)) return ERR_CAST(new_mnt); return &new_mnt->mnt; + +invalid: + up_read(&namespace_sem); + return ERR_PTR(-EINVAL); } EXPORT_SYMBOL_GPL(clone_private_mount); @@ -2243,19 +2274,6 @@ return err; } -static bool has_locked_children(struct mount *mnt, struct dentry *dentry) -{ - struct mount *child; - list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) { - if (!is_subdir(child->mnt_mountpoint, dentry)) - continue; - - if (child->mnt.mnt_flags & MNT_LOCKED) - return true; - } - return false; -} - static struct mount *__do_loopback(struct path *old_path, int recurse) { struct mount *mnt = ERR_PTR(-EINVAL), *old = real_mount(old_path->mnt); diff -u linux-azure-5.4.0/fs/nfs/callback_proc.c linux-azure-5.4.0/fs/nfs/callback_proc.c --- linux-azure-5.4.0/fs/nfs/callback_proc.c +++ linux-azure-5.4.0/fs/nfs/callback_proc.c @@ -26,7 +26,6 @@ struct cb_getattrargs *args = argp; struct cb_getattrres *res = resp; struct nfs_delegation *delegation; - struct nfs_inode *nfsi; struct inode *inode; res->status = htonl(NFS4ERR_OP_NOT_IN_SESSION); @@ -47,9 +46,8 @@ -ntohl(res->status)); goto out; } - nfsi = NFS_I(inode); rcu_read_lock(); - delegation = rcu_dereference(nfsi->delegation); + delegation = nfs4_get_valid_delegation(inode); if (delegation == NULL || (delegation->type & FMODE_WRITE) == 0) goto out_iput; res->size = i_size_read(inode); @@ -364,12 +362,11 @@ struct cb_process_state *cps) { struct cb_devicenotifyargs *args = argp; - int i; + const struct pnfs_layoutdriver_type *ld = NULL; + uint32_t i; __be32 res = 0; - struct nfs_client *clp = cps->clp; - struct nfs_server *server = NULL; - if (!clp) { + if (!cps->clp) { res = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION); goto out; } @@ -377,23 +374,15 @@ for (i = 0; i < args->ndevs; i++) { struct cb_devicenotifyitem *dev = &args->devs[i]; - if (!server || - server->pnfs_curr_ld->id != dev->cbd_layout_type) { - rcu_read_lock(); - list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) - if (server->pnfs_curr_ld && - server->pnfs_curr_ld->id == dev->cbd_layout_type) { - rcu_read_unlock(); - goto found; - } - rcu_read_unlock(); - continue; + if (!ld || ld->id != dev->cbd_layout_type) { + pnfs_put_layoutdriver(ld); + ld = pnfs_find_layoutdriver(dev->cbd_layout_type); + if (!ld) + continue; } - - found: - nfs4_delete_deviceid(server->pnfs_curr_ld, clp, &dev->cbd_dev_id); + nfs4_delete_deviceid(ld, cps->clp, &dev->cbd_dev_id); } - + pnfs_put_layoutdriver(ld); out: kfree(args->devs); return res; diff -u linux-azure-5.4.0/fs/nfs/client.c linux-azure-5.4.0/fs/nfs/client.c --- linux-azure-5.4.0/fs/nfs/client.c +++ linux-azure-5.4.0/fs/nfs/client.c @@ -176,6 +176,7 @@ INIT_LIST_HEAD(&clp->cl_superblocks); clp->cl_rpcclient = ERR_PTR(-EINVAL); + clp->cl_flags = cl_init->init_flags; clp->cl_proto = cl_init->proto; clp->cl_nconnect = cl_init->nconnect; clp->cl_net = get_net(cl_init->net); @@ -399,7 +400,7 @@ if (cl_init->hostname == NULL) { WARN_ON(1); - return NULL; + return ERR_PTR(-EINVAL); } /* see if the client already exists */ @@ -419,7 +420,6 @@ list_add_tail(&new->cl_share_link, &nn->nfs_client_list); spin_unlock(&nn->nfs_client_lock); - new->cl_flags = cl_init->init_flags; return rpc_ops->init_client(new, cl_init); } diff -u linux-azure-5.4.0/fs/nfs/dir.c linux-azure-5.4.0/fs/nfs/dir.c --- linux-azure-5.4.0/fs/nfs/dir.c +++ linux-azure-5.4.0/fs/nfs/dir.c @@ -1638,6 +1638,24 @@ no_open: res = nfs_lookup(dir, dentry, lookup_flags); + if (!res) { + inode = d_inode(dentry); + if ((lookup_flags & LOOKUP_DIRECTORY) && inode && + !(S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))) + res = ERR_PTR(-ENOTDIR); + else if (inode && S_ISREG(inode->i_mode)) + res = ERR_PTR(-EOPENSTALE); + } else if (!IS_ERR(res)) { + inode = d_inode(res); + if ((lookup_flags & LOOKUP_DIRECTORY) && inode && + !(S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))) { + dput(res); + res = ERR_PTR(-ENOTDIR); + } else if (inode && S_ISREG(inode->i_mode)) { + dput(res); + res = ERR_PTR(-EOPENSTALE); + } + } if (switched) { d_lookup_done(dentry); if (!res) @@ -2035,6 +2053,8 @@ trace_nfs_link_enter(inode, dir, dentry); d_drop(dentry); + if (S_ISREG(inode->i_mode)) + nfs_sync_inode(inode); error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name); if (error == 0) { ihold(inode); @@ -2123,6 +2143,8 @@ } } + if (S_ISREG(old_inode->i_mode)) + nfs_sync_inode(old_inode); task = nfs_async_rename(old_dir, new_dir, old_dentry, new_dentry, NULL); if (IS_ERR(task)) { error = PTR_ERR(task); diff -u linux-azure-5.4.0/fs/nfs/direct.c linux-azure-5.4.0/fs/nfs/direct.c --- linux-azure-5.4.0/fs/nfs/direct.c +++ linux-azure-5.4.0/fs/nfs/direct.c @@ -272,8 +272,8 @@ VM_BUG_ON(iov_iter_count(iter) != PAGE_SIZE); if (iov_iter_rw(iter) == READ) - return nfs_file_direct_read(iocb, iter); - return nfs_file_direct_write(iocb, iter); + return nfs_file_direct_read(iocb, iter, true); + return nfs_file_direct_write(iocb, iter, true); } static void nfs_direct_release_pages(struct page **pages, unsigned int npages) @@ -524,6 +524,7 @@ * nfs_file_direct_read - file direct read operation for NFS files * @iocb: target I/O control block * @iter: vector of user buffers into which to read data + * @swap: flag indicating this is swap IO, not O_DIRECT IO * * We use this function for direct reads instead of calling * generic_file_aio_read() in order to avoid gfar's check to see if @@ -539,7 +540,8 @@ * client must read the updated atime from the server back into its * cache. */ -ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter) +ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter, + bool swap) { struct file *file = iocb->ki_filp; struct address_space *mapping = file->f_mapping; @@ -581,12 +583,14 @@ if (iter_is_iovec(iter)) dreq->flags = NFS_ODIRECT_SHOULD_DIRTY; - nfs_start_io_direct(inode); + if (!swap) + nfs_start_io_direct(inode); NFS_I(inode)->read_io += count; requested = nfs_direct_read_schedule_iovec(dreq, iter, iocb->ki_pos); - nfs_end_io_direct(inode); + if (!swap) + nfs_end_io_direct(inode); if (requested > 0) { result = nfs_direct_wait(dreq); @@ -851,7 +855,7 @@ */ static ssize_t nfs_direct_write_schedule_iovec(struct nfs_direct_req *dreq, struct iov_iter *iter, - loff_t pos) + loff_t pos, int ioflags) { struct nfs_pageio_descriptor desc; struct inode *inode = dreq->inode; @@ -859,7 +863,7 @@ size_t requested_bytes = 0; size_t wsize = max_t(size_t, NFS_SERVER(inode)->wsize, PAGE_SIZE); - nfs_pageio_init_write(&desc, inode, FLUSH_COND_STABLE, false, + nfs_pageio_init_write(&desc, inode, ioflags, false, &nfs_direct_write_completion_ops); desc.pg_dreq = dreq; get_dreq(dreq); @@ -937,6 +941,7 @@ * nfs_file_direct_write - file direct write operation for NFS files * @iocb: target I/O control block * @iter: vector of user buffers from which to write data + * @swap: flag indicating this is swap IO, not O_DIRECT IO * * We use this function for direct writes instead of calling * generic_file_aio_write() in order to avoid taking the inode @@ -953,7 +958,8 @@ * Note that O_APPEND is not supported for NFS direct writes, as there * is no atomic O_APPEND write facility in the NFS protocol. */ -ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter) +ssize_t nfs_file_direct_write(struct kiocb *iocb, struct iov_iter *iter, + bool swap) { ssize_t result = -EINVAL, requested; size_t count; @@ -967,7 +973,11 @@ dfprintk(FILE, "NFS: direct write(%pD2, %zd@%Ld)\n", file, iov_iter_count(iter), (long long) iocb->ki_pos); - result = generic_write_checks(iocb, iter); + if (swap) + /* bypass generic checks */ + result = iov_iter_count(iter); + else + result = generic_write_checks(iocb, iter); if (result <= 0) return result; count = result; @@ -997,17 +1007,23 @@ if (!is_sync_kiocb(iocb)) dreq->iocb = iocb; - nfs_start_io_direct(inode); + if (swap) { + requested = nfs_direct_write_schedule_iovec(dreq, iter, pos, + FLUSH_STABLE); + } else { + nfs_start_io_direct(inode); + + requested = nfs_direct_write_schedule_iovec(dreq, iter, pos, + FLUSH_COND_STABLE); + + if (mapping->nrpages) { + invalidate_inode_pages2_range(mapping, + pos >> PAGE_SHIFT, end); + } - requested = nfs_direct_write_schedule_iovec(dreq, iter, pos); - - if (mapping->nrpages) { - invalidate_inode_pages2_range(mapping, - pos >> PAGE_SHIFT, end); + nfs_end_io_direct(inode); } - nfs_end_io_direct(inode); - if (requested > 0) { result = nfs_direct_wait(dreq); if (result > 0) { diff -u linux-azure-5.4.0/fs/nfs/file.c linux-azure-5.4.0/fs/nfs/file.c --- linux-azure-5.4.0/fs/nfs/file.c +++ linux-azure-5.4.0/fs/nfs/file.c @@ -161,7 +161,7 @@ ssize_t result; if (iocb->ki_flags & IOCB_DIRECT) - return nfs_file_direct_read(iocb, to); + return nfs_file_direct_read(iocb, to, false); dprintk("NFS: read(%pD2, %zu@%lu)\n", iocb->ki_filp, @@ -394,11 +394,8 @@ return status; NFS_I(mapping->host)->write_io += copied; - if (nfs_ctx_key_to_expire(ctx, mapping->host)) { - status = nfs_wb_all(mapping->host); - if (status < 0) - return status; - } + if (nfs_ctx_key_to_expire(ctx, mapping->host)) + nfs_wb_all(mapping->host); return copied; } @@ -609,7 +606,7 @@ return result; if (iocb->ki_flags & IOCB_DIRECT) - return nfs_file_direct_write(iocb, from); + return nfs_file_direct_write(iocb, from, false); dprintk("NFS: write(%pD2, %zu@%Ld)\n", file, iov_iter_count(from), (long long) iocb->ki_pos); diff -u linux-azure-5.4.0/fs/nfs/inode.c linux-azure-5.4.0/fs/nfs/inode.c --- linux-azure-5.4.0/fs/nfs/inode.c +++ linux-azure-5.4.0/fs/nfs/inode.c @@ -791,12 +791,9 @@ goto out_no_update; /* Flush out writes to the server in order to update c/mtime. */ - if ((request_mask & (STATX_CTIME|STATX_MTIME)) && - S_ISREG(inode->i_mode)) { - err = filemap_write_and_wait(inode->i_mapping); - if (err) - goto out; - } + if ((request_mask & (STATX_CTIME | STATX_MTIME)) && + S_ISREG(inode->i_mode)) + filemap_write_and_wait(inode->i_mapping); /* * We may force a getattr if the user cares about atime. @@ -971,7 +968,7 @@ ctx->cred = get_cred(filp->f_cred); else ctx->cred = get_current_cred(); - ctx->ll_cred = NULL; + rcu_assign_pointer(ctx->ll_cred, NULL); ctx->state = NULL; ctx->mode = f_mode; ctx->flags = 0; @@ -1010,7 +1007,7 @@ put_cred(ctx->cred); dput(ctx->dentry); nfs_sb_deactive(sb); - put_rpccred(ctx->ll_cred); + put_rpccred(rcu_dereference_protected(ctx->ll_cred, 1)); kfree(ctx->mdsthreshold); kfree_rcu(ctx, rcu_head); } @@ -1048,6 +1045,7 @@ void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx) { filp->private_data = get_nfs_open_context(ctx); + set_bit(NFS_CONTEXT_FILE_OPEN, &ctx->flags); if (list_empty(&ctx->list)) nfs_inode_attach_open_context(ctx); } @@ -1067,6 +1065,8 @@ continue; if ((pos->mode & (FMODE_READ|FMODE_WRITE)) != mode) continue; + if (!test_bit(NFS_CONTEXT_FILE_OPEN, &pos->flags)) + continue; ctx = get_nfs_open_context(pos); if (ctx) break; @@ -1082,6 +1082,7 @@ if (ctx) { struct inode *inode = d_inode(ctx->dentry); + clear_bit(NFS_CONTEXT_FILE_OPEN, &ctx->flags); /* * We fatal error on write before. Try to writeback * every page again. diff -u linux-azure-5.4.0/fs/nfs/internal.h linux-azure-5.4.0/fs/nfs/internal.h --- linux-azure-5.4.0/fs/nfs/internal.h +++ linux-azure-5.4.0/fs/nfs/internal.h @@ -775,6 +775,7 @@ case 0: case -ERESTARTSYS: case -EINTR: + case -ENOMEM: return false; } return nfs_error_is_fatal(err); diff -u linux-azure-5.4.0/fs/nfs/nfs2xdr.c linux-azure-5.4.0/fs/nfs/nfs2xdr.c --- linux-azure-5.4.0/fs/nfs/nfs2xdr.c +++ linux-azure-5.4.0/fs/nfs/nfs2xdr.c @@ -953,7 +953,7 @@ error = decode_filename_inline(xdr, &entry->name, &entry->len); if (unlikely(error)) - return error; + return -EAGAIN; /* * The type (size and byte order) of nfscookie isn't defined in diff -u linux-azure-5.4.0/fs/nfs/nfs3xdr.c linux-azure-5.4.0/fs/nfs/nfs3xdr.c --- linux-azure-5.4.0/fs/nfs/nfs3xdr.c +++ linux-azure-5.4.0/fs/nfs/nfs3xdr.c @@ -1968,7 +1968,6 @@ bool plus) { struct user_namespace *userns = rpc_userns(entry->server->client); - struct nfs_entry old = *entry; __be32 *p; int error; u64 new_cookie; @@ -1988,15 +1987,15 @@ error = decode_fileid3(xdr, &entry->ino); if (unlikely(error)) - return error; + return -EAGAIN; error = decode_inline_filename3(xdr, &entry->name, &entry->len); if (unlikely(error)) - return error; + return -EAGAIN; error = decode_cookie3(xdr, &new_cookie); if (unlikely(error)) - return error; + return -EAGAIN; entry->d_type = DT_UNKNOWN; @@ -2004,7 +2003,7 @@ entry->fattr->valid = 0; error = decode_post_op_attr(xdr, entry->fattr, userns); if (unlikely(error)) - return error; + return -EAGAIN; if (entry->fattr->valid & NFS_ATTR_FATTR_V3) entry->d_type = nfs_umode_to_dtype(entry->fattr->mode); @@ -2019,11 +2018,8 @@ return -EAGAIN; if (*p != xdr_zero) { error = decode_nfs_fh3(xdr, entry->fh); - if (unlikely(error)) { - if (error == -E2BIG) - goto out_truncated; - return error; - } + if (unlikely(error)) + return -EAGAIN; } else zero_nfs_fh3(entry->fh); } @@ -2032,11 +2028,6 @@ entry->cookie = new_cookie; return 0; - -out_truncated: - dprintk("NFS: directory entry contains invalid file handle\n"); - *entry = old; - return -EAGAIN; } /* diff -u linux-azure-5.4.0/fs/nfs/nfs42proc.c linux-azure-5.4.0/fs/nfs/nfs42proc.c --- linux-azure-5.4.0/fs/nfs/nfs42proc.c +++ linux-azure-5.4.0/fs/nfs/nfs42proc.c @@ -295,8 +295,9 @@ goto out; } - truncate_pagecache_range(dst_inode, pos_dst, - pos_dst + res->write_res.count); + WARN_ON_ONCE(invalidate_inode_pages2_range(dst_inode->i_mapping, + pos_dst >> PAGE_SHIFT, + (pos_dst + res->write_res.count - 1) >> PAGE_SHIFT)); status = res->write_res.count; out: diff -u linux-azure-5.4.0/fs/nfs/nfs4_fs.h linux-azure-5.4.0/fs/nfs/nfs4_fs.h --- linux-azure-5.4.0/fs/nfs/nfs4_fs.h +++ linux-azure-5.4.0/fs/nfs/nfs4_fs.h @@ -203,6 +203,7 @@ struct inode *inode; nfs4_stateid *stateid; long timeout; + unsigned char task_is_privileged : 1; unsigned char delay : 1, recovering : 1, retry : 1; @@ -278,7 +279,8 @@ struct nfs_fh *, struct nfs_fattr *); int nfs4_replace_transport(struct nfs_server *server, const struct nfs4_fs_locations *locations); - +size_t nfs_parse_server_name(char *string, size_t len, struct sockaddr *sa, + size_t salen, struct net *net); /* nfs4proc.c */ extern int nfs4_handle_exception(struct nfs_server *, int, struct nfs4_exception *); extern int nfs4_async_handle_error(struct rpc_task *task, @@ -578,6 +580,12 @@ return seq2 == seq1 + 1U || (seq2 == 1U && seq1 == 0xffffffffU); } +static inline bool nfs4_stateid_match_or_older(const nfs4_stateid *dst, const nfs4_stateid *src) +{ + return nfs4_stateid_match_other(dst, src) && + !(src->seqid && nfs4_stateid_is_newer(dst, src)); +} + static inline void nfs4_stateid_seqid_inc(nfs4_stateid *s1) { u32 seqid = be32_to_cpu(s1->seqid); diff -u linux-azure-5.4.0/fs/nfs/nfs4client.c linux-azure-5.4.0/fs/nfs/nfs4client.c --- linux-azure-5.4.0/fs/nfs/nfs4client.c +++ linux-azure-5.4.0/fs/nfs/nfs4client.c @@ -197,8 +197,11 @@ struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *cl_init) { - int err; + char buf[INET6_ADDRSTRLEN + 1]; + const char *ip_addr = cl_init->ip_addr; struct nfs_client *clp = nfs_alloc_client(cl_init); + int err; + if (IS_ERR(clp)) return clp; @@ -222,6 +225,44 @@ init_waitqueue_head(&clp->cl_lock_waitq); #endif INIT_LIST_HEAD(&clp->pending_cb_stateids); + + if (cl_init->minorversion != 0) + __set_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags); + __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); + __set_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags); + + /* + * Set up the connection to the server before we add add to the + * global list. + */ + err = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_GSS_KRB5I); + if (err == -EINVAL) + err = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX); + if (err < 0) + goto error; + + /* If no clientaddr= option was specified, find a usable cb address */ + if (ip_addr == NULL) { + struct sockaddr_storage cb_addr; + struct sockaddr *sap = (struct sockaddr *)&cb_addr; + + err = rpc_localaddr(clp->cl_rpcclient, sap, sizeof(cb_addr)); + if (err < 0) + goto error; + err = rpc_ntop(sap, buf, sizeof(buf)); + if (err < 0) + goto error; + ip_addr = (const char *)buf; + } + strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr)); + + err = nfs_idmap_new(clp); + if (err < 0) { + dprintk("%s: failed to create idmapper. Error = %d\n", + __func__, err); + goto error; + } + __set_bit(NFS_CS_IDMAP, &clp->cl_res_state); return clp; error: @@ -305,6 +346,7 @@ ret = nfs4_setup_slot_table(tbl, NFS4_MAX_SLOT_TABLE, "NFSv4.0 transport Slot table"); if (ret) { + nfs4_shutdown_slot_table(tbl); kfree(tbl); return ret; } @@ -372,8 +414,6 @@ struct nfs_client *nfs4_init_client(struct nfs_client *clp, const struct nfs_client_initdata *cl_init) { - char buf[INET6_ADDRSTRLEN + 1]; - const char *ip_addr = cl_init->ip_addr; struct nfs_client *old; int error; @@ -381,43 +421,6 @@ /* the client is initialised already */ return clp; - /* Check NFS protocol revision and initialize RPC op vector */ - clp->rpc_ops = &nfs_v4_clientops; - - if (clp->cl_minorversion != 0) - __set_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags); - __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); - __set_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags); - - error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_GSS_KRB5I); - if (error == -EINVAL) - error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX); - if (error < 0) - goto error; - - /* If no clientaddr= option was specified, find a usable cb address */ - if (ip_addr == NULL) { - struct sockaddr_storage cb_addr; - struct sockaddr *sap = (struct sockaddr *)&cb_addr; - - error = rpc_localaddr(clp->cl_rpcclient, sap, sizeof(cb_addr)); - if (error < 0) - goto error; - error = rpc_ntop(sap, buf, sizeof(buf)); - if (error < 0) - goto error; - ip_addr = (const char *)buf; - } - strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr)); - - error = nfs_idmap_new(clp); - if (error < 0) { - dprintk("%s: failed to create idmapper. Error = %d\n", - __func__, error); - goto error; - } - __set_bit(NFS_CS_IDMAP, &clp->cl_res_state); - error = nfs4_init_client_minor_version(clp); if (error < 0) goto error; @@ -435,8 +438,8 @@ */ nfs_mark_client_ready(clp, -EPERM); } - nfs_put_client(clp); clear_bit(NFS_CS_TSM_POSSIBLE, &clp->cl_flags); + nfs_put_client(clp); return old; error: @@ -1291,8 +1294,11 @@ } nfs_put_client(clp); - if (server->nfs_client->cl_hostname == NULL) + if (server->nfs_client->cl_hostname == NULL) { server->nfs_client->cl_hostname = kstrdup(hostname, GFP_KERNEL); + if (server->nfs_client->cl_hostname == NULL) + return -ENOMEM; + } nfs_server_insert_lists(server); return nfs_probe_destination(server); diff -u linux-azure-5.4.0/fs/nfs/nfs4proc.c linux-azure-5.4.0/fs/nfs/nfs4proc.c --- linux-azure-5.4.0/fs/nfs/nfs4proc.c +++ linux-azure-5.4.0/fs/nfs/nfs4proc.c @@ -359,6 +359,14 @@ kunmap_atomic(start); } +static void nfs4_fattr_set_prechange(struct nfs_fattr *fattr, u64 version) +{ + if (!(fattr->valid & NFS_ATTR_FATTR_PRECHANGE)) { + fattr->pre_change_attr = version; + fattr->valid |= NFS_ATTR_FATTR_PRECHANGE; + } +} + static void nfs4_test_and_free_stateid(struct nfs_server *server, nfs4_stateid *stateid, const struct cred *cred) @@ -581,6 +589,8 @@ goto out_retry; } if (exception->recovering) { + if (exception->task_is_privileged) + return -EDEADLOCK; ret = nfs4_wait_clnt_recover(clp); if (test_bit(NFS_MIG_FAILED, &server->mig_status)) return -EIO; @@ -606,6 +616,8 @@ goto out_retry; } if (exception->recovering) { + if (exception->task_is_privileged) + return -EDEADLOCK; rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL); if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0) rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task); @@ -767,10 +779,9 @@ if ((s32)(seqnr - slot->seq_nr_highest_sent) > 0) slot->seq_nr_highest_sent = seqnr; } -static void nfs4_slot_sequence_acked(struct nfs4_slot *slot, - u32 seqnr) +static void nfs4_slot_sequence_acked(struct nfs4_slot *slot, u32 seqnr) { - slot->seq_nr_highest_sent = seqnr; + nfs4_slot_sequence_record_sent(slot, seqnr); slot->seq_nr_last_acked = seqnr; } @@ -837,7 +848,6 @@ __func__, slot->slot_nr, slot->seq_nr); - nfs4_slot_sequence_acked(slot, slot->seq_nr); goto out_retry; case -NFS4ERR_RETRY_UNCACHED_REP: case -NFS4ERR_SEQ_FALSE_RETRY: @@ -1545,15 +1555,16 @@ { if (test_bit(NFS_OPEN_STATE, &state->flags)) { /* The common case - we're updating to a new sequence number */ - if (nfs4_stateid_match_other(stateid, &state->open_stateid) && - nfs4_stateid_is_next(&state->open_stateid, stateid)) { - return true; + if (nfs4_stateid_match_other(stateid, &state->open_stateid)) { + if (nfs4_stateid_is_next(&state->open_stateid, stateid)) + return true; + return false; } - } else { - /* This is the first OPEN in this generation */ - if (stateid->seqid == cpu_to_be32(1)) - return true; + /* The server returned a new stateid */ } + /* This is the first OPEN in this generation */ + if (stateid->seqid == cpu_to_be32(1)) + return true; return false; } @@ -1749,7 +1760,7 @@ ret = 1; } - deleg_cur = rcu_dereference(nfsi->delegation); + deleg_cur = nfs4_get_valid_delegation(state->inode); if (deleg_cur == NULL) goto no_delegation; @@ -1761,7 +1772,7 @@ if (delegation == NULL) delegation = &deleg_cur->stateid; - else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation)) + else if (!nfs4_stateid_match_other(&deleg_cur->stateid, delegation)) goto no_delegation_unlock; nfs_mark_delegation_referenced(deleg_cur); @@ -1808,7 +1819,7 @@ fmode &= FMODE_READ|FMODE_WRITE; rcu_read_lock(); - delegation = rcu_dereference(NFS_I(inode)->delegation); + delegation = nfs4_get_valid_delegation(inode); if (delegation == NULL || (delegation->type & fmode) == fmode) { rcu_read_unlock(); return; @@ -3028,8 +3039,13 @@ } out: - if (!opendata->cancelled) + if (!opendata->cancelled) { + if (opendata->lgp) { + nfs4_lgopen_release(opendata->lgp); + opendata->lgp = NULL; + } nfs4_sequence_free_slot(&opendata->o_res.seq_res); + } return ret; } @@ -5795,6 +5811,14 @@ do { err = __nfs4_proc_set_acl(inode, buf, buflen); trace_nfs4_set_acl(inode, err); + if (err == -NFS4ERR_BADOWNER || err == -NFS4ERR_BADNAME) { + /* + * no need to retry since the kernel + * isn't involved in encoding the ACEs. + */ + err = -EINVAL; + break; + } err = nfs4_handle_exception(NFS_SERVER(inode), err, &exception); } while (exception.retry); @@ -6231,6 +6255,7 @@ struct nfs4_exception exception = { .inode = data->inode, .stateid = &data->stateid, + .task_is_privileged = data->args.seq_args.sa_privileged, }; if (!nfs4_sequence_done(task, &data->res.seq_res)) @@ -6259,10 +6284,13 @@ task->tk_status = 0; break; case -NFS4ERR_OLD_STATEID: - if (nfs4_refresh_delegation_stateid(&data->stateid, data->inode)) - goto out_restart; - task->tk_status = 0; - break; + if (!nfs4_refresh_delegation_stateid(&data->stateid, data->inode)) + nfs4_stateid_seqid_inc(&data->stateid); + if (data->args.bitmask) { + data->args.bitmask = NULL; + data->res.fattr = NULL; + } + goto out_restart; case -NFS4ERR_ACCESS: if (data->args.bitmask) { data->args.bitmask = NULL; @@ -6277,6 +6305,7 @@ if (exception.retry) goto out_restart; } + nfs_delegation_mark_returned(data->inode, data->args.stateid); data->rpc_status = task->tk_status; return; out_restart: @@ -6293,7 +6322,9 @@ pnfs_roc_release(&data->lr.arg, &data->lr.res, data->res.lr_ret); if (inode) { - nfs_post_op_update_inode_force_wcc(inode, &data->fattr); + nfs4_fattr_set_prechange(&data->fattr, + inode_peek_iversion_raw(inode)); + nfs_refresh_inode(inode, &data->fattr); nfs_iput_and_deactive(inode); } kfree(calldata); @@ -6349,7 +6380,6 @@ data = kzalloc(sizeof(*data), GFP_NOFS); if (data == NULL) return -ENOMEM; - nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0); nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP, @@ -6377,6 +6407,12 @@ } } + if (!data->inode) + nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, + 1); + else + nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, + 0); task_setup_data.callback_data = data; msg.rpc_argp = &data->args; msg.rpc_resp = &data->res; @@ -7899,6 +7935,7 @@ case -NFS4ERR_DEADSESSION: nfs4_schedule_session_recovery(clp->cl_session, task->tk_status); + return; } if (args->dir == NFS4_CDFC4_FORE_OR_BOTH && res->dir != NFS4_CDFS4_BOTH) { @@ -8954,6 +8991,9 @@ rpc_delay(task, NFS4_POLL_RETRY_MAX); /* fall through */ case -NFS4ERR_RETRY_UNCACHED_REP: + case -EACCES: + dprintk("%s: failed to reclaim complete error %d for server %s, retrying\n", + __func__, task->tk_status, clp->cl_hostname); return -EAGAIN; case -NFS4ERR_BADSESSION: case -NFS4ERR_DEADSESSION: @@ -9332,15 +9372,20 @@ &task_setup_data.rpc_client, &msg); dprintk("--> %s\n", __func__); + lrp->inode = nfs_igrab_and_active(lrp->args.inode); if (!sync) { - lrp->inode = nfs_igrab_and_active(lrp->args.inode); if (!lrp->inode) { nfs4_layoutreturn_release(lrp); return -EAGAIN; } task_setup_data.flags |= RPC_TASK_ASYNC; } - nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1, 0); + if (!lrp->inode) + nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1, + 1); + else + nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1, + 0); task = rpc_run_task(&task_setup_data); if (IS_ERR(task)) return PTR_ERR(task); diff -u linux-azure-5.4.0/fs/nfs/nfs4state.c linux-azure-5.4.0/fs/nfs/nfs4state.c --- linux-azure-5.4.0/fs/nfs/nfs4state.c +++ linux-azure-5.4.0/fs/nfs/nfs4state.c @@ -49,6 +49,7 @@ #include #include #include +#include #include @@ -763,6 +764,7 @@ list_del(&state->open_states); spin_unlock(&inode->i_lock); spin_unlock(&owner->so_lock); + nfs4_inode_return_delegation_on_close(inode); iput(inode); nfs4_free_open_state(state); nfs4_put_state_owner(owner); @@ -1405,7 +1407,7 @@ list_for_each_entry(pos, &state->lock_states, ls_locks) { if (!test_bit(NFS_LOCK_INITIALIZED, &pos->ls_flags)) continue; - if (nfs4_stateid_match_other(&pos->ls_stateid, stateid)) + if (nfs4_stateid_match_or_older(&pos->ls_stateid, stateid)) return pos; } return NULL; @@ -1439,12 +1441,13 @@ state = ctx->state; if (state == NULL) continue; - if (nfs4_stateid_match_other(&state->stateid, stateid) && + if (nfs4_stateid_match_or_older(&state->stateid, stateid) && nfs4_state_mark_reclaim_nograce(clp, state)) { found = true; continue; } - if (nfs4_stateid_match_other(&state->open_stateid, stateid) && + if (test_bit(NFS_OPEN_STATE, &state->flags) && + nfs4_stateid_match_or_older(&state->open_stateid, stateid) && nfs4_state_mark_reclaim_nograce(clp, state)) { found = true; continue; @@ -1742,6 +1745,7 @@ static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp) { + set_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state); /* Mark all delegations for reclaim */ nfs_delegation_mark_reclaim(clp); nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot); @@ -2070,6 +2074,9 @@ } result = -NFS4ERR_NXIO; + if (!locations->nlocations) + goto out; + if (!(locations->fattr.valid & NFS_ATTR_FATTR_V4_LOCATIONS)) { dprintk("<-- %s: No fs_locations data, migration skipped\n", __func__); @@ -2501,9 +2508,17 @@ static void nfs4_state_manager(struct nfs_client *clp) { + unsigned int memflags; int status = 0; const char *section = "", *section_sep = ""; + /* + * State recovery can deadlock if the direct reclaim code tries + * start NFS writeback. So ensure memory allocations are all + * GFP_NOFS. + */ + memflags = memalloc_nofs_save(); + /* Ensure exclusive access to NFSv4 state */ do { clear_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); @@ -2576,6 +2591,7 @@ if (status < 0) goto out_error; nfs4_state_end_reclaim_reboot(clp); + continue; } /* Detect expired delegations... */ @@ -2597,6 +2613,7 @@ clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state); } + memalloc_nofs_restore(memflags); nfs4_end_drain_session(clp); nfs4_clear_state_manager_bit(clp); @@ -2613,6 +2630,7 @@ return; if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0) return; + memflags = memalloc_nofs_save(); } while (refcount_read(&clp->cl_count) > 1 && !signalled()); goto out_drain; @@ -2624,6 +2642,7 @@ clp->cl_hostname, -status); ssleep(1); out_drain: + memalloc_nofs_restore(memflags); nfs4_end_drain_session(clp); nfs4_clear_state_manager_bit(clp); } diff -u linux-azure-5.4.0/fs/nfs/nfs4super.c linux-azure-5.4.0/fs/nfs/nfs4super.c --- linux-azure-5.4.0/fs/nfs/nfs4super.c +++ linux-azure-5.4.0/fs/nfs/nfs4super.c @@ -92,8 +92,8 @@ { truncate_inode_pages_final(&inode->i_data); clear_inode(inode); - /* If we are holding a delegation, return it! */ - nfs_inode_return_delegation_noreclaim(inode); + /* If we are holding a delegation, return and free it */ + nfs_inode_evict_delegation(inode); /* Note that above delegreturn would trigger pnfs return-on-close */ pnfs_return_layout(inode); pnfs_destroy_layout_final(NFS_I(inode)); diff -u linux-azure-5.4.0/fs/nfs/nfs4xdr.c linux-azure-5.4.0/fs/nfs/nfs4xdr.c --- linux-azure-5.4.0/fs/nfs/nfs4xdr.c +++ linux-azure-5.4.0/fs/nfs/nfs4xdr.c @@ -3683,8 +3683,6 @@ if (unlikely(!p)) goto out_eio; n = be32_to_cpup(p); - if (n <= 0) - goto out_eio; for (res->nlocations = 0; res->nlocations < n; res->nlocations++) { u32 m; struct nfs4_fs_location *loc; @@ -4187,10 +4185,11 @@ } else printk(KERN_WARNING "%s: label too long (%u)!\n", __func__, len); + if (label && label->label) + dprintk("%s: label=%.*s, len=%d, PI=%d, LFS=%d\n", + __func__, label->len, (char *)label->label, + label->len, label->pi, label->lfs); } - if (label && label->label) - dprintk("%s: label=%s, len=%d, PI=%d, LFS=%d\n", __func__, - (char *)label->label, label->len, label->pi, label->lfs); return status; } diff -u linux-azure-5.4.0/fs/nfs/pnfs.c linux-azure-5.4.0/fs/nfs/pnfs.c --- linux-azure-5.4.0/fs/nfs/pnfs.c +++ linux-azure-5.4.0/fs/nfs/pnfs.c @@ -92,6 +92,17 @@ return local; } +const struct pnfs_layoutdriver_type *pnfs_find_layoutdriver(u32 id) +{ + return find_pnfs_driver(id); +} + +void pnfs_put_layoutdriver(const struct pnfs_layoutdriver_type *ld) +{ + if (ld) + module_put(ld->owner); +} + void unset_pnfs_layoutdriver(struct nfs_server *nfss) { @@ -1950,6 +1961,7 @@ lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags); if (lo == NULL) { spin_unlock(&ino->i_lock); + lseg = ERR_PTR(-ENOMEM); trace_pnfs_update_layout(ino, pos, count, iomode, lo, lseg, PNFS_UPDATE_LAYOUT_NOMEM); goto out; @@ -2079,6 +2091,7 @@ lgp = pnfs_alloc_init_layoutget_args(ino, ctx, &stateid, &arg, gfp_flags); if (!lgp) { + lseg = ERR_PTR(-ENOMEM); trace_pnfs_update_layout(ino, pos, count, iomode, lo, NULL, PNFS_UPDATE_LAYOUT_NOMEM); nfs_layoutget_end(lo); @@ -2098,6 +2111,12 @@ case -ERECALLCONFLICT: case -EAGAIN: break; + case -ENODATA: + /* The server returned NFS4ERR_LAYOUTUNAVAILABLE */ + pnfs_layout_set_fail_bit( + lo, pnfs_iomode_to_fail_bit(iomode)); + lseg = NULL; + goto out_put_layout_hdr; default: if (!nfs_error_is_fatal(PTR_ERR(lseg))) { pnfs_layout_clear_fail_bit(lo, pnfs_iomode_to_fail_bit(iomode)); diff -u linux-azure-5.4.0/fs/nfs/pnfs.h linux-azure-5.4.0/fs/nfs/pnfs.h --- linux-azure-5.4.0/fs/nfs/pnfs.h +++ linux-azure-5.4.0/fs/nfs/pnfs.h @@ -226,6 +226,8 @@ extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *); extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *); +extern const struct pnfs_layoutdriver_type *pnfs_find_layoutdriver(u32 id); +extern void pnfs_put_layoutdriver(const struct pnfs_layoutdriver_type *ld); /* nfs4proc.c */ extern size_t max_response_pages(struct nfs_server *server); diff -u linux-azure-5.4.0/fs/nfs/pnfs_nfs.c linux-azure-5.4.0/fs/nfs/pnfs_nfs.c --- linux-azure-5.4.0/fs/nfs/pnfs_nfs.c +++ linux-azure-5.4.0/fs/nfs/pnfs_nfs.c @@ -556,19 +556,16 @@ } EXPORT_SYMBOL_GPL(nfs4_pnfs_ds_add); -static void nfs4_wait_ds_connect(struct nfs4_pnfs_ds *ds) +static int nfs4_wait_ds_connect(struct nfs4_pnfs_ds *ds) { might_sleep(); - wait_on_bit(&ds->ds_state, NFS4DS_CONNECTING, - TASK_KILLABLE); + return wait_on_bit(&ds->ds_state, NFS4DS_CONNECTING, TASK_KILLABLE); } static void nfs4_clear_ds_conn_bit(struct nfs4_pnfs_ds *ds) { smp_mb__before_atomic(); - clear_bit(NFS4DS_CONNECTING, &ds->ds_state); - smp_mb__after_atomic(); - wake_up_bit(&ds->ds_state, NFS4DS_CONNECTING); + clear_and_wake_up_bit(NFS4DS_CONNECTING, &ds->ds_state); } static struct nfs_client *(*get_v3_ds_connect)( @@ -644,7 +641,7 @@ } smp_wmb(); - ds->ds_clp = clp; + WRITE_ONCE(ds->ds_clp, clp); dprintk("%s [new] addr: %s\n", __func__, ds->ds_remotestr); out: return status; @@ -717,7 +714,7 @@ } smp_wmb(); - ds->ds_clp = clp; + WRITE_ONCE(ds->ds_clp, clp); dprintk("%s [new] addr: %s\n", __func__, ds->ds_remotestr); out: return status; @@ -734,30 +731,33 @@ { int err; -again: - err = 0; - if (test_and_set_bit(NFS4DS_CONNECTING, &ds->ds_state) == 0) { - if (version == 3) { - err = _nfs4_pnfs_v3_ds_connect(mds_srv, ds, timeo, - retrans); - } else if (version == 4) { - err = _nfs4_pnfs_v4_ds_connect(mds_srv, ds, timeo, - retrans, minor_version); - } else { - dprintk("%s: unsupported DS version %d\n", __func__, - version); - err = -EPROTONOSUPPORT; - } - - nfs4_clear_ds_conn_bit(ds); - } else { - nfs4_wait_ds_connect(ds); - - /* what was waited on didn't connect AND didn't mark unavail */ - if (!ds->ds_clp && !nfs4_test_deviceid_unavailable(devid)) - goto again; + do { + err = nfs4_wait_ds_connect(ds); + if (err || ds->ds_clp) + goto out; + if (nfs4_test_deviceid_unavailable(devid)) + return -ENODEV; + } while (test_and_set_bit(NFS4DS_CONNECTING, &ds->ds_state) != 0); + + if (ds->ds_clp) + goto connect_done; + + switch (version) { + case 3: + err = _nfs4_pnfs_v3_ds_connect(mds_srv, ds, timeo, retrans); + break; + case 4: + err = _nfs4_pnfs_v4_ds_connect(mds_srv, ds, timeo, retrans, + minor_version); + break; + default: + dprintk("%s: unsupported DS version %d\n", __func__, version); + err = -EPROTONOSUPPORT; } +connect_done: + nfs4_clear_ds_conn_bit(ds); +out: /* * At this point the ds->ds_clp should be ready, but it might have * hit an error. diff -u linux-azure-5.4.0/fs/nfs/write.c linux-azure-5.4.0/fs/nfs/write.c --- linux-azure-5.4.0/fs/nfs/write.c +++ linux-azure-5.4.0/fs/nfs/write.c @@ -692,11 +692,7 @@ err = nfs_do_writepage(page, wbc, &pgio); pgio.pg_error = 0; nfs_pageio_complete(&pgio); - if (err < 0) - return err; - if (nfs_error_is_fatal(pgio.pg_error)) - return pgio.pg_error; - return 0; + return err; } int nfs_writepage(struct page *page, struct writeback_control *wbc) @@ -747,9 +743,6 @@ if (err < 0) goto out_err; - err = pgio.pg_error; - if (nfs_error_is_fatal(err)) - goto out_err; return 0; out_err: return err; @@ -1050,25 +1043,11 @@ struct nfs_page *req, *tmp; int ret = 0; -restart: list_for_each_entry_safe(req, tmp, src, wb_list) { kref_get(&req->wb_kref); if (!nfs_lock_request(req)) { - int status; - - /* Prevent deadlock with nfs_lock_and_join_requests */ - if (!list_empty(dst)) { - nfs_release_request(req); - continue; - } - /* Ensure we make progress to prevent livelock */ - mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex); - status = nfs_wait_on_request(req); nfs_release_request(req); - mutex_lock(&NFS_I(cinfo->inode)->commit_mutex); - if (status < 0) - break; - goto restart; + continue; } nfs_request_remove_commit_list(req, cinfo); clear_bit(PG_COMMIT_TO_DS, &req->wb_flags); @@ -1258,7 +1237,7 @@ struct nfs_open_context *ctx = nfs_file_open_context(filp); if (nfs_ctx_key_to_expire(ctx, inode) && - !ctx->ll_cred) + !rcu_access_pointer(ctx->ll_cred)) /* Already expired! */ return -EACCES; return 0; @@ -1270,23 +1249,38 @@ bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode) { struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth; - struct rpc_cred *cred = ctx->ll_cred; + struct rpc_cred *cred, *new, *old = NULL; struct auth_cred acred = { .cred = ctx->cred, }; + bool ret = false; - if (cred && !cred->cr_ops->crmatch(&acred, cred, 0)) { - put_rpccred(cred); - ctx->ll_cred = NULL; - cred = NULL; - } - if (!cred) - cred = auth->au_ops->lookup_cred(auth, &acred, 0); - if (!cred || IS_ERR(cred)) + rcu_read_lock(); + cred = rcu_dereference(ctx->ll_cred); + if (cred && !(cred->cr_ops->crkey_timeout && + cred->cr_ops->crkey_timeout(cred))) + goto out; + rcu_read_unlock(); + + new = auth->au_ops->lookup_cred(auth, &acred, 0); + if (new == cred) { + put_rpccred(new); return true; - ctx->ll_cred = cred; - return !!(cred->cr_ops->crkey_timeout && - cred->cr_ops->crkey_timeout(cred)); + } + if (IS_ERR_OR_NULL(new)) { + new = NULL; + ret = true; + } else if (new->cr_ops->crkey_timeout && + new->cr_ops->crkey_timeout(new)) + ret = true; + + rcu_read_lock(); + old = rcu_dereference_protected(xchg(&ctx->ll_cred, + RCU_INITIALIZER(new)), 1); +out: + rcu_read_unlock(); + put_rpccred(old); + return ret; } /* @@ -1443,7 +1437,7 @@ while (!list_empty(head)) { req = nfs_list_entry(head->next); nfs_list_remove_request(req); - if (nfs_error_is_fatal(error)) + if (nfs_error_is_fatal_on_server(error)) nfs_write_error(req, error); else nfs_redirty_request(req); @@ -1935,6 +1929,7 @@ int may_wait = how & FLUSH_SYNC; int ret, nscan; + how &= ~FLUSH_SYNC; nfs_init_cinfo_from_inode(&cinfo, inode); nfs_commit_begin(cinfo.mds); for (;;) { diff -u linux-azure-5.4.0/fs/nfsd/filecache.c linux-azure-5.4.0/fs/nfsd/filecache.c --- linux-azure-5.4.0/fs/nfsd/filecache.c +++ linux-azure-5.4.0/fs/nfsd/filecache.c @@ -44,6 +44,17 @@ static DEFINE_PER_CPU(unsigned long, nfsd_file_cache_hits); +struct nfsd_fcache_disposal { + struct list_head list; + struct work_struct work; + struct net *net; + spinlock_t lock; + struct list_head freeme; + struct rcu_head rcu; +}; + +struct workqueue_struct *nfsd_filecache_wq __read_mostly; + static struct kmem_cache *nfsd_file_slab; static struct kmem_cache *nfsd_file_mark_slab; static struct nfsd_fcache_bucket *nfsd_file_hashtbl; @@ -52,32 +63,21 @@ static struct fsnotify_group *nfsd_file_fsnotify_group; static atomic_long_t nfsd_filecache_count; static struct delayed_work nfsd_filecache_laundrette; +static DEFINE_SPINLOCK(laundrette_lock); +static LIST_HEAD(laundrettes); -enum nfsd_file_laundrette_ctl { - NFSD_FILE_LAUNDRETTE_NOFLUSH = 0, - NFSD_FILE_LAUNDRETTE_MAY_FLUSH -}; +static void nfsd_file_gc(void); static void -nfsd_file_schedule_laundrette(enum nfsd_file_laundrette_ctl ctl) +nfsd_file_schedule_laundrette(void) { long count = atomic_long_read(&nfsd_filecache_count); if (count == 0 || test_bit(NFSD_FILE_SHUTDOWN, &nfsd_file_lru_flags)) return; - /* Be more aggressive about scanning if over the threshold */ - if (count > NFSD_FILE_LRU_THRESHOLD) - mod_delayed_work(system_wq, &nfsd_filecache_laundrette, 0); - else - schedule_delayed_work(&nfsd_filecache_laundrette, NFSD_LAUNDRETTE_DELAY); - - if (ctl == NFSD_FILE_LAUNDRETTE_NOFLUSH) - return; - - /* ...and don't delay flushing if we're out of control */ - if (count >= NFSD_FILE_LRU_LIMIT) - flush_delayed_work(&nfsd_filecache_laundrette); + queue_delayed_work(system_wq, &nfsd_filecache_laundrette, + NFSD_LAUNDRETTE_DELAY); } static void @@ -260,8 +260,6 @@ nfsd_reset_boot_verifier(net_generic(nf->nf_net, nfsd_net_id)); --nfsd_file_hashtbl[nf->nf_hashval].nfb_count; hlist_del_rcu(&nf->nf_node); - if (!list_empty(&nf->nf_lru)) - list_lru_del(&nfsd_file_lru, &nf->nf_lru); atomic_long_dec(&nfsd_filecache_count); } @@ -270,6 +268,8 @@ { if (test_and_clear_bit(NFSD_FILE_HASHED, &nf->nf_flags)) { nfsd_file_do_unhash(nf); + if (!list_empty(&nf->nf_lru)) + list_lru_del(&nfsd_file_lru, &nf->nf_lru); return true; } return false; @@ -316,7 +316,9 @@ set_bit(NFSD_FILE_REFERENCED, &nf->nf_flags); if (nfsd_file_put_noref(nf) == 1 && is_hashed && unused) - nfsd_file_schedule_laundrette(NFSD_FILE_LAUNDRETTE_MAY_FLUSH); + nfsd_file_schedule_laundrette(); + if (atomic_long_read(&nfsd_filecache_count) >= NFSD_FILE_LRU_LIMIT) + nfsd_file_gc(); } struct nfsd_file * @@ -357,6 +359,58 @@ flush_delayed_fput(); } +static void +nfsd_file_list_remove_disposal(struct list_head *dst, + struct nfsd_fcache_disposal *l) +{ + spin_lock(&l->lock); + list_splice_init(&l->freeme, dst); + spin_unlock(&l->lock); +} + +static void +nfsd_file_list_add_disposal(struct list_head *files, struct net *net) +{ + struct nfsd_fcache_disposal *l; + + rcu_read_lock(); + list_for_each_entry_rcu(l, &laundrettes, list) { + if (l->net == net) { + spin_lock(&l->lock); + list_splice_tail_init(files, &l->freeme); + spin_unlock(&l->lock); + queue_work(nfsd_filecache_wq, &l->work); + break; + } + } + rcu_read_unlock(); +} + +static void +nfsd_file_list_add_pernet(struct list_head *dst, struct list_head *src, + struct net *net) +{ + struct nfsd_file *nf, *tmp; + + list_for_each_entry_safe(nf, tmp, src, nf_lru) { + if (nf->nf_net == net) + list_move_tail(&nf->nf_lru, dst); + } +} + +static void +nfsd_file_dispose_list_delayed(struct list_head *dispose) +{ + LIST_HEAD(list); + struct nfsd_file *nf; + + while(!list_empty(dispose)) { + nf = list_first_entry(dispose, struct nfsd_file, nf_lru); + nfsd_file_list_add_pernet(&list, dispose, nf->nf_net); + nfsd_file_list_add_disposal(&list, nf->nf_net); + } +} + /* * Note this can deadlock with nfsd_file_cache_purge. */ @@ -403,18 +457,40 @@ return LRU_SKIP; } -static void -nfsd_file_lru_dispose(struct list_head *head) +static unsigned long +nfsd_file_lru_walk_list(struct shrink_control *sc) { - while(!list_empty(head)) { - struct nfsd_file *nf = list_first_entry(head, - struct nfsd_file, nf_lru); - list_del_init(&nf->nf_lru); + LIST_HEAD(head); + struct nfsd_file *nf; + unsigned long ret; + + if (sc) + ret = list_lru_shrink_walk(&nfsd_file_lru, sc, + nfsd_file_lru_cb, &head); + else + ret = list_lru_walk(&nfsd_file_lru, + nfsd_file_lru_cb, + &head, LONG_MAX); + list_for_each_entry(nf, &head, nf_lru) { spin_lock(&nfsd_file_hashtbl[nf->nf_hashval].nfb_lock); nfsd_file_do_unhash(nf); spin_unlock(&nfsd_file_hashtbl[nf->nf_hashval].nfb_lock); - nfsd_file_put_noref(nf); } + nfsd_file_dispose_list_delayed(&head); + return ret; +} + +static void +nfsd_file_gc(void) +{ + nfsd_file_lru_walk_list(NULL); +} + +static void +nfsd_file_gc_worker(struct work_struct *work) +{ + nfsd_file_gc(); + nfsd_file_schedule_laundrette(); } static unsigned long @@ -426,12 +502,7 @@ static unsigned long nfsd_file_lru_scan(struct shrinker *s, struct shrink_control *sc) { - LIST_HEAD(head); - unsigned long ret; - - ret = list_lru_shrink_walk(&nfsd_file_lru, sc, nfsd_file_lru_cb, &head); - nfsd_file_lru_dispose(&head); - return ret; + return nfsd_file_lru_walk_list(sc); } static struct shrinker nfsd_file_shrinker = { @@ -493,7 +564,7 @@ __nfsd_file_close_inode(inode, hashval, &dispose); trace_nfsd_file_close_inode(inode, hashval, !list_empty(&dispose)); - nfsd_file_dispose_list(&dispose); + nfsd_file_dispose_list_delayed(&dispose); } /** @@ -509,16 +580,11 @@ nfsd_file_delayed_close(struct work_struct *work) { LIST_HEAD(head); + struct nfsd_fcache_disposal *l = container_of(work, + struct nfsd_fcache_disposal, work); - list_lru_walk(&nfsd_file_lru, nfsd_file_lru_cb, &head, LONG_MAX); - - if (test_and_clear_bit(NFSD_FILE_LRU_RESCAN, &nfsd_file_lru_flags)) - nfsd_file_schedule_laundrette(NFSD_FILE_LAUNDRETTE_NOFLUSH); - - if (!list_empty(&head)) { - nfsd_file_lru_dispose(&head); - flush_delayed_fput(); - } + nfsd_file_list_remove_disposal(&head, l); + nfsd_file_dispose_list(&head); } static int @@ -579,6 +645,10 @@ if (nfsd_file_hashtbl) return 0; + nfsd_filecache_wq = alloc_workqueue("nfsd_filecache", 0, 0); + if (!nfsd_filecache_wq) + goto out; + nfsd_file_hashtbl = kcalloc(NFSD_FILE_HASH_SIZE, sizeof(*nfsd_file_hashtbl), GFP_KERNEL); if (!nfsd_file_hashtbl) { @@ -632,7 +702,7 @@ spin_lock_init(&nfsd_file_hashtbl[i].nfb_lock); } - INIT_DELAYED_WORK(&nfsd_filecache_laundrette, nfsd_file_delayed_close); + INIT_DELAYED_WORK(&nfsd_filecache_laundrette, nfsd_file_gc_worker); out: return ret; out_notifier: @@ -648,6 +718,8 @@ nfsd_file_mark_slab = NULL; kfree(nfsd_file_hashtbl); nfsd_file_hashtbl = NULL; + destroy_workqueue(nfsd_filecache_wq); + nfsd_filecache_wq = NULL; goto out; } @@ -686,6 +758,88 @@ } } +static struct nfsd_fcache_disposal * +nfsd_alloc_fcache_disposal(struct net *net) +{ + struct nfsd_fcache_disposal *l; + + l = kmalloc(sizeof(*l), GFP_KERNEL); + if (!l) + return NULL; + INIT_WORK(&l->work, nfsd_file_delayed_close); + l->net = net; + spin_lock_init(&l->lock); + INIT_LIST_HEAD(&l->freeme); + return l; +} + +static void +nfsd_free_fcache_disposal(struct nfsd_fcache_disposal *l) +{ + rcu_assign_pointer(l->net, NULL); + cancel_work_sync(&l->work); + nfsd_file_dispose_list(&l->freeme); + kfree_rcu(l, rcu); +} + +static void +nfsd_add_fcache_disposal(struct nfsd_fcache_disposal *l) +{ + spin_lock(&laundrette_lock); + list_add_tail_rcu(&l->list, &laundrettes); + spin_unlock(&laundrette_lock); +} + +static void +nfsd_del_fcache_disposal(struct nfsd_fcache_disposal *l) +{ + spin_lock(&laundrette_lock); + list_del_rcu(&l->list); + spin_unlock(&laundrette_lock); +} + +static int +nfsd_alloc_fcache_disposal_net(struct net *net) +{ + struct nfsd_fcache_disposal *l; + + l = nfsd_alloc_fcache_disposal(net); + if (!l) + return -ENOMEM; + nfsd_add_fcache_disposal(l); + return 0; +} + +static void +nfsd_free_fcache_disposal_net(struct net *net) +{ + struct nfsd_fcache_disposal *l; + + rcu_read_lock(); + list_for_each_entry_rcu(l, &laundrettes, list) { + if (l->net != net) + continue; + nfsd_del_fcache_disposal(l); + rcu_read_unlock(); + nfsd_free_fcache_disposal(l); + return; + } + rcu_read_unlock(); +} + +int +nfsd_file_cache_start_net(struct net *net) +{ + return nfsd_alloc_fcache_disposal_net(net); +} + +void +nfsd_file_cache_shutdown_net(struct net *net) +{ + nfsd_file_cache_purge(net); + nfsd_free_fcache_disposal_net(net); +} + void nfsd_file_cache_shutdown(void) { @@ -712,6 +866,8 @@ nfsd_file_mark_slab = NULL; kfree(nfsd_file_hashtbl); nfsd_file_hashtbl = NULL; + destroy_workqueue(nfsd_filecache_wq); + nfsd_filecache_wq = NULL; } static bool @@ -881,7 +1037,8 @@ nfsd_file_hashtbl[hashval].nfb_maxcount = max(nfsd_file_hashtbl[hashval].nfb_maxcount, nfsd_file_hashtbl[hashval].nfb_count); spin_unlock(&nfsd_file_hashtbl[hashval].nfb_lock); - atomic_long_inc(&nfsd_filecache_count); + if (atomic_long_inc_return(&nfsd_filecache_count) >= NFSD_FILE_LRU_THRESHOLD) + nfsd_file_gc(); nf->nf_mark = nfsd_file_mark_find_or_create(nf); if (nf->nf_mark) diff -u linux-azure-5.4.0/fs/nfsd/nfs4proc.c linux-azure-5.4.0/fs/nfsd/nfs4proc.c --- linux-azure-5.4.0/fs/nfsd/nfs4proc.c +++ linux-azure-5.4.0/fs/nfsd/nfs4proc.c @@ -992,8 +992,9 @@ unsigned long cnt; int nvecs; - if (write->wr_offset >= OFFSET_MAX) - return nfserr_inval; + if (write->wr_offset > (u64)OFFSET_MAX || + write->wr_offset + write->wr_buflen > (u64)OFFSET_MAX) + return nfserr_fbig; cnt = write->wr_buflen; trace_nfsd_write_start(rqstp, &cstate->current_fh, @@ -2074,6 +2075,22 @@ #define op_encode_channel_attrs_maxsz (6 + 1 + 1) +/* + * The _rsize() helpers are invoked by the NFSv4 COMPOUND decoder, which + * is called before sunrpc sets rq_res.buflen. Thus we have to compute + * the maximum payload size here, based on transport limits and the size + * of the remaining space in the rq_pages array. + */ +static u32 nfsd4_max_payload(const struct svc_rqst *rqstp) +{ + u32 buflen; + + buflen = (rqstp->rq_page_end - rqstp->rq_next_page) * PAGE_SIZE; + buflen -= rqstp->rq_auth_slack; + buflen -= rqstp->rq_res.head[0].iov_len; + return min_t(u32, buflen, svc_max_payload(rqstp)); +} + static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) { return (op_encode_hdr_size) * sizeof(__be32); @@ -2114,9 +2131,9 @@ u32 ret = 0; if (bmap0 & FATTR4_WORD0_ACL) - return svc_max_payload(rqstp); + return nfsd4_max_payload(rqstp); if (bmap0 & FATTR4_WORD0_FS_LOCATIONS) - return svc_max_payload(rqstp); + return nfsd4_max_payload(rqstp); if (bmap1 & FATTR4_WORD1_OWNER) { ret += IDMAP_NAMESZ + 4; @@ -2171,20 +2188,14 @@ static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) { - u32 maxcount = 0, rlen = 0; - - maxcount = svc_max_payload(rqstp); - rlen = min(op->u.read.rd_length, maxcount); + u32 rlen = min(op->u.read.rd_length, nfsd4_max_payload(rqstp)); return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32); } static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) { - u32 maxcount = 0, rlen = 0; - - maxcount = svc_max_payload(rqstp); - rlen = min(op->u.readdir.rd_maxcount, maxcount); + u32 rlen = min(op->u.readdir.rd_maxcount, nfsd4_max_payload(rqstp)); return (op_encode_hdr_size + op_encode_verifier_maxsz + XDR_QUADLEN(rlen)) * sizeof(__be32); @@ -2295,10 +2306,7 @@ #ifdef CONFIG_NFSD_PNFS static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) { - u32 maxcount = 0, rlen = 0; - - maxcount = svc_max_payload(rqstp); - rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount); + u32 rlen = min(op->u.getdeviceinfo.gd_maxcount, nfsd4_max_payload(rqstp)); return (op_encode_hdr_size + 1 /* gd_layout_type*/ + diff -u linux-azure-5.4.0/fs/nfsd/nfs4recover.c linux-azure-5.4.0/fs/nfsd/nfs4recover.c --- linux-azure-5.4.0/fs/nfsd/nfs4recover.c +++ linux-azure-5.4.0/fs/nfsd/nfs4recover.c @@ -825,8 +825,10 @@ princhash.data = memdup_user( &ci->cc_princhash.cp_data, princhashlen); - if (IS_ERR_OR_NULL(princhash.data)) + if (IS_ERR_OR_NULL(princhash.data)) { + kfree(name.data); return -EFAULT; + } princhash.len = princhashlen; } else princhash.len = 0; @@ -2177,6 +2179,7 @@ int register_cld_notifier(void) { + WARN_ON(!nfsd_net_id); return rpc_pipefs_notifier_register(&nfsd4_cld_block); } diff -u linux-azure-5.4.0/fs/nfsd/nfs4state.c linux-azure-5.4.0/fs/nfsd/nfs4state.c --- linux-azure-5.4.0/fs/nfsd/nfs4state.c +++ linux-azure-5.4.0/fs/nfsd/nfs4state.c @@ -1041,6 +1041,11 @@ return 0; } +static bool delegation_hashed(struct nfs4_delegation *dp) +{ + return !(list_empty(&dp->dl_perfile)); +} + static bool unhash_delegation_locked(struct nfs4_delegation *dp) { @@ -1048,7 +1053,7 @@ lockdep_assert_held(&state_lock); - if (list_empty(&dp->dl_perfile)) + if (!delegation_hashed(dp)) return false; dp->dl_stid.sc_type = NFS4_CLOSED_DELEG_STID; @@ -2572,9 +2577,9 @@ struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id); bool already_expired; - spin_lock(&clp->cl_lock); + spin_lock(&nn->client_lock); clp->cl_time = 0; - spin_unlock(&clp->cl_lock); + spin_unlock(&nn->client_lock); wait_event(expiry_wq, atomic_read(&clp->cl_rpc_users) == 0); spin_lock(&nn->client_lock); @@ -3936,8 +3941,10 @@ status = nfserr_clid_inuse; if (client_has_state(old) && !same_creds(&unconf->cl_cred, - &old->cl_cred)) + &old->cl_cred)) { + old = NULL; goto out; + } status = mark_client_expired_locked(old); if (status) { old = NULL; @@ -4406,7 +4413,7 @@ * queued for a lease break. Don't queue it again. */ spin_lock(&state_lock); - if (dp->dl_time == 0) { + if (delegation_hashed(dp) && dp->dl_time == 0) { dp->dl_time = get_seconds(); list_add_tail(&dp->dl_recall_lru, &nn->del_recall_lru); } @@ -6887,16 +6894,12 @@ if (sop->so_is_open_owner || !same_owner_str(sop, owner)) continue; - /* see if there are still any locks associated with it */ - lo = lockowner(sop); - list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) { - if (check_for_locks(stp->st_stid.sc_file, lo)) { - status = nfserr_locks_held; - spin_unlock(&clp->cl_lock); - return status; - } + if (atomic_read(&sop->so_count) != 1) { + spin_unlock(&clp->cl_lock); + return nfserr_locks_held; } + lo = lockowner(sop); nfs4_get_stateowner(sop); break; } diff -u linux-azure-5.4.0/fs/nfsd/nfs4xdr.c linux-azure-5.4.0/fs/nfsd/nfs4xdr.c --- linux-azure-5.4.0/fs/nfsd/nfs4xdr.c +++ linux-azure-5.4.0/fs/nfsd/nfs4xdr.c @@ -3131,15 +3131,18 @@ goto fail; cd->rd_maxcount -= entry_bytes; /* - * RFC 3530 14.2.24 describes rd_dircount as only a "hint", so - * let's always let through the first entry, at least: + * RFC 3530 14.2.24 describes rd_dircount as only a "hint", and + * notes that it could be zero. If it is zero, then the server + * should enforce only the rd_maxcount value. */ - if (!cd->rd_dircount) - goto fail; - name_and_cookie = 4 + 4 * XDR_QUADLEN(namlen) + 8; - if (name_and_cookie > cd->rd_dircount && cd->cookie_offset) - goto fail; - cd->rd_dircount -= min(cd->rd_dircount, name_and_cookie); + if (cd->rd_dircount) { + name_and_cookie = 4 + 4 * XDR_QUADLEN(namlen) + 8; + if (name_and_cookie > cd->rd_dircount && cd->cookie_offset) + goto fail; + cd->rd_dircount -= min(cd->rd_dircount, name_and_cookie); + if (!cd->rd_dircount) + cd->rd_maxcount = 0; + } cd->cookie_offset = cookie_offset; skip_entry: @@ -3597,7 +3600,7 @@ if (resp->xdr.buf->page_len && test_bit(RQ_SPLICE_OK, &resp->rqstp->rq_flags)) { WARN_ON_ONCE(1); - return nfserr_resource; + return nfserr_serverfault; } xdr_commit_encode(xdr); diff -u linux-azure-5.4.0/fs/nfsd/nfscache.c linux-azure-5.4.0/fs/nfsd/nfscache.c --- linux-azure-5.4.0/fs/nfsd/nfscache.c +++ linux-azure-5.4.0/fs/nfsd/nfscache.c @@ -173,14 +173,10 @@ if (status) goto out_nomem; - nn->drc_hashtbl = kcalloc(hashsize, - sizeof(*nn->drc_hashtbl), GFP_KERNEL); - if (!nn->drc_hashtbl) { - nn->drc_hashtbl = vzalloc(array_size(hashsize, - sizeof(*nn->drc_hashtbl))); - if (!nn->drc_hashtbl) - goto out_shrinker; - } + nn->drc_hashtbl = kvzalloc(array_size(hashsize, + sizeof(*nn->drc_hashtbl)), GFP_KERNEL); + if (!nn->drc_hashtbl) + goto out_shrinker; for (i = 0; i < hashsize; i++) { INIT_LIST_HEAD(&nn->drc_hashtbl[i].lru_head); diff -u linux-azure-5.4.0/fs/nfsd/nfsctl.c linux-azure-5.4.0/fs/nfsd/nfsctl.c --- linux-azure-5.4.0/fs/nfsd/nfsctl.c +++ linux-azure-5.4.0/fs/nfsd/nfsctl.c @@ -792,7 +792,10 @@ svc_xprt_put(xprt); } out_err: - nfsd_destroy(net); + if (!list_empty(&nn->nfsd_serv->sv_permsocks)) + nn->nfsd_serv->sv_nrthreads--; + else + nfsd_destroy(net); return err; } @@ -1244,7 +1247,8 @@ clear_ncl(d_inode(dentry)); dget(dentry); ret = simple_unlink(dir, dentry); - d_delete(dentry); + d_drop(dentry); + fsnotify_unlink(dir, dentry); dput(dentry); WARN_ON_ONCE(ret); } @@ -1333,8 +1337,8 @@ dget(dentry); ret = simple_rmdir(dir, dentry); WARN_ON_ONCE(ret); + d_drop(dentry); fsnotify_rmdir(dir, dentry); - d_delete(dentry); dput(dentry); inode_unlock(dir); } @@ -1523,12 +1527,9 @@ int retval; printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n"); - retval = register_cld_notifier(); - if (retval) - return retval; retval = nfsd4_init_slabs(); if (retval) - goto out_unregister_notifier; + return retval; retval = nfsd4_init_pnfs(); if (retval) goto out_free_slabs; @@ -1546,10 +1547,15 @@ goto out_free_exports; retval = register_pernet_subsys(&nfsd_net_ops); if (retval < 0) + goto out_free_filesystem; + retval = register_cld_notifier(); + if (retval) goto out_free_all; return 0; out_free_all: unregister_pernet_subsys(&nfsd_net_ops); +out_free_filesystem: + unregister_filesystem(&nfsd_fs_type); out_free_exports: remove_proc_entry("fs/nfs/exports", NULL); remove_proc_entry("fs/nfs", NULL); @@ -1562,13 +1568,12 @@ nfsd4_exit_pnfs(); out_free_slabs: nfsd4_free_slabs(); -out_unregister_notifier: - unregister_cld_notifier(); return retval; } static void __exit exit_nfsd(void) { + unregister_cld_notifier(); unregister_pernet_subsys(&nfsd_net_ops); nfsd_drc_slab_free(); remove_proc_entry("fs/nfs/exports", NULL); @@ -1579,7 +1584,6 @@ nfsd4_exit_pnfs(); nfsd_fault_inject_cleanup(); unregister_filesystem(&nfsd_fs_type); - unregister_cld_notifier(); } MODULE_AUTHOR("Olaf Kirch "); diff -u linux-azure-5.4.0/fs/nfsd/nfsproc.c linux-azure-5.4.0/fs/nfsd/nfsproc.c --- linux-azure-5.4.0/fs/nfsd/nfsproc.c +++ linux-azure-5.4.0/fs/nfsd/nfsproc.c @@ -230,7 +230,7 @@ unsigned long cnt = argp->len; unsigned int nvecs; - dprintk("nfsd: WRITE %s %d bytes at %d\n", + dprintk("nfsd: WRITE %s %u bytes at %d\n", SVCFH_fmt(&argp->fh), argp->len, argp->offset); diff -u linux-azure-5.4.0/fs/nfsd/nfssvc.c linux-azure-5.4.0/fs/nfsd/nfssvc.c --- linux-azure-5.4.0/fs/nfsd/nfssvc.c +++ linux-azure-5.4.0/fs/nfsd/nfssvc.c @@ -394,13 +394,18 @@ nn->lockd_up = 1; } - ret = nfs4_state_start_net(net); + ret = nfsd_file_cache_start_net(net); if (ret) goto out_lockd; + ret = nfs4_state_start_net(net); + if (ret) + goto out_filecache; nn->nfsd_net_up = true; return 0; +out_filecache: + nfsd_file_cache_shutdown_net(net); out_lockd: if (nn->lockd_up) { lockd_down(net); @@ -415,7 +420,7 @@ { struct nfsd_net *nn = net_generic(net, nfsd_net_id); - nfsd_file_cache_purge(net); + nfsd_file_cache_shutdown_net(net); nfs4_state_shutdown_net(net); if (nn->lockd_up) { lockd_down(net); diff -u linux-azure-5.4.0/fs/nfsd/trace.h linux-azure-5.4.0/fs/nfsd/trace.h --- linux-azure-5.4.0/fs/nfsd/trace.h +++ linux-azure-5.4.0/fs/nfsd/trace.h @@ -53,14 +53,14 @@ DECLARE_EVENT_CLASS(nfsd_io_class, TP_PROTO(struct svc_rqst *rqstp, struct svc_fh *fhp, - loff_t offset, - unsigned long len), + u64 offset, + u32 len), TP_ARGS(rqstp, fhp, offset, len), TP_STRUCT__entry( __field(u32, xid) __field(u32, fh_hash) - __field(loff_t, offset) - __field(unsigned long, len) + __field(u64, offset) + __field(u32, len) ), TP_fast_assign( __entry->xid = be32_to_cpu(rqstp->rq_xid); @@ -68,7 +68,7 @@ __entry->offset = offset; __entry->len = len; ), - TP_printk("xid=0x%08x fh_hash=0x%08x offset=%lld len=%lu", + TP_printk("xid=0x%08x fh_hash=0x%08x offset=%llu len=%u", __entry->xid, __entry->fh_hash, __entry->offset, __entry->len) ) @@ -77,8 +77,8 @@ DEFINE_EVENT(nfsd_io_class, nfsd_##name, \ TP_PROTO(struct svc_rqst *rqstp, \ struct svc_fh *fhp, \ - loff_t offset, \ - unsigned long len), \ + u64 offset, \ + u32 len), \ TP_ARGS(rqstp, fhp, offset, len)) DEFINE_NFSD_IO_EVENT(read_start); diff -u linux-azure-5.4.0/fs/nilfs2/segment.c linux-azure-5.4.0/fs/nilfs2/segment.c --- linux-azure-5.4.0/fs/nilfs2/segment.c +++ linux-azure-5.4.0/fs/nilfs2/segment.c @@ -738,15 +738,18 @@ struct list_head *listp) { struct nilfs_inode_info *ii = NILFS_I(inode); - struct address_space *mapping = &ii->i_btnode_cache; + struct inode *btnc_inode = ii->i_assoc_inode; struct pagevec pvec; struct buffer_head *bh, *head; unsigned int i; pgoff_t index = 0; + if (!btnc_inode) + return; + pagevec_init(&pvec); - while (pagevec_lookup_tag(&pvec, mapping, &index, + while (pagevec_lookup_tag(&pvec, btnc_inode->i_mapping, &index, PAGECACHE_TAG_DIRTY)) { for (i = 0; i < pagevec_count(&pvec); i++) { bh = head = page_buffers(pvec.pages[i]); @@ -877,9 +880,11 @@ nilfs_mdt_mark_dirty(nilfs->ns_cpfile); nilfs_cpfile_put_checkpoint( nilfs->ns_cpfile, nilfs->ns_cno, bh_cp); - } else - WARN_ON(err == -EINVAL || err == -ENOENT); - + } else if (err == -EINVAL || err == -ENOENT) { + nilfs_error(sci->sc_super, + "checkpoint creation failed due to metadata corruption."); + err = -EIO; + } return err; } @@ -893,7 +898,11 @@ err = nilfs_cpfile_get_checkpoint(nilfs->ns_cpfile, nilfs->ns_cno, 0, &raw_cp, &bh_cp); if (unlikely(err)) { - WARN_ON(err == -EINVAL || err == -ENOENT); + if (err == -EINVAL || err == -ENOENT) { + nilfs_error(sci->sc_super, + "checkpoint finalization failed due to metadata corruption."); + err = -EIO; + } goto failed_ibh; } raw_cp->cp_snapshot_list.ssl_next = 0; @@ -2410,7 +2419,7 @@ continue; list_del_init(&ii->i_dirty); truncate_inode_pages(&ii->vfs_inode.i_data, 0); - nilfs_btnode_cache_clear(&ii->i_btnode_cache); + nilfs_btnode_cache_clear(ii->i_assoc_inode->i_mapping); iput(&ii->vfs_inode); } } @@ -2783,10 +2792,9 @@ inode_attach_wb(nilfs->ns_bdev->bd_inode, NULL); err = nilfs_segctor_start_thread(nilfs->ns_writer); - if (err) { - kfree(nilfs->ns_writer); - nilfs->ns_writer = NULL; - } + if (unlikely(err)) + nilfs_detach_log_writer(sb); + return err; } diff -u linux-azure-5.4.0/fs/notify/inotify/inotify_user.c linux-azure-5.4.0/fs/notify/inotify/inotify_user.c --- linux-azure-5.4.0/fs/notify/inotify/inotify_user.c +++ linux-azure-5.4.0/fs/notify/inotify/inotify_user.c @@ -86,7 +86,7 @@ mask = (FS_IN_IGNORED | FS_EVENT_ON_CHILD | FS_UNMOUNT); /* mask off the flags used to open the fd */ - mask |= (arg & (IN_ALL_EVENTS | IN_ONESHOT | IN_EXCL_UNLINK)); + mask |= (arg & INOTIFY_USER_MASK); return mask; } diff -u linux-azure-5.4.0/fs/ntfs/inode.c linux-azure-5.4.0/fs/ntfs/inode.c --- linux-azure-5.4.0/fs/ntfs/inode.c +++ linux-azure-5.4.0/fs/ntfs/inode.c @@ -30,10 +30,10 @@ /** * ntfs_test_inode - compare two (possibly fake) inodes for equality * @vi: vfs inode which to test - * @na: ntfs attribute which is being tested with + * @data: data which is being tested with * * Compare the ntfs attribute embedded in the ntfs specific part of the vfs - * inode @vi for equality with the ntfs attribute @na. + * inode @vi for equality with the ntfs attribute @data. * * If searching for the normal file/directory inode, set @na->type to AT_UNUSED. * @na->name and @na->name_len are then ignored. @@ -43,8 +43,9 @@ * NOTE: This function runs with the inode_hash_lock spin lock held so it is not * allowed to sleep. */ -int ntfs_test_inode(struct inode *vi, ntfs_attr *na) +int ntfs_test_inode(struct inode *vi, void *data) { + ntfs_attr *na = (ntfs_attr *)data; ntfs_inode *ni; if (vi->i_ino != na->mft_no) @@ -72,9 +73,9 @@ /** * ntfs_init_locked_inode - initialize an inode * @vi: vfs inode to initialize - * @na: ntfs attribute which to initialize @vi to + * @data: data which to initialize @vi to * - * Initialize the vfs inode @vi with the values from the ntfs attribute @na in + * Initialize the vfs inode @vi with the values from the ntfs attribute @data in * order to enable ntfs_test_inode() to do its work. * * If initializing the normal file/directory inode, set @na->type to AT_UNUSED. @@ -87,8 +88,9 @@ * NOTE: This function runs with the inode->i_lock spin lock held so it is not * allowed to sleep. (Hence the GFP_ATOMIC allocation.) */ -static int ntfs_init_locked_inode(struct inode *vi, ntfs_attr *na) +static int ntfs_init_locked_inode(struct inode *vi, void *data) { + ntfs_attr *na = (ntfs_attr *)data; ntfs_inode *ni = NTFS_I(vi); vi->i_ino = na->mft_no; @@ -131,7 +133,6 @@ return 0; } -typedef int (*set_t)(struct inode *, void *); static int ntfs_read_locked_inode(struct inode *vi); static int ntfs_read_locked_attr_inode(struct inode *base_vi, struct inode *vi); static int ntfs_read_locked_index_inode(struct inode *base_vi, @@ -164,8 +165,8 @@ na.name = NULL; na.name_len = 0; - vi = iget5_locked(sb, mft_no, (test_t)ntfs_test_inode, - (set_t)ntfs_init_locked_inode, &na); + vi = iget5_locked(sb, mft_no, ntfs_test_inode, + ntfs_init_locked_inode, &na); if (unlikely(!vi)) return ERR_PTR(-ENOMEM); @@ -225,8 +226,8 @@ na.name = name; na.name_len = name_len; - vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode, - (set_t)ntfs_init_locked_inode, &na); + vi = iget5_locked(base_vi->i_sb, na.mft_no, ntfs_test_inode, + ntfs_init_locked_inode, &na); if (unlikely(!vi)) return ERR_PTR(-ENOMEM); @@ -280,8 +281,8 @@ na.name = name; na.name_len = name_len; - vi = iget5_locked(base_vi->i_sb, na.mft_no, (test_t)ntfs_test_inode, - (set_t)ntfs_init_locked_inode, &na); + vi = iget5_locked(base_vi->i_sb, na.mft_no, ntfs_test_inode, + ntfs_init_locked_inode, &na); if (unlikely(!vi)) return ERR_PTR(-ENOMEM); @@ -476,7 +477,7 @@ } file_name_attr = (FILE_NAME_ATTR*)((u8*)attr + le16_to_cpu(attr->data.resident.value_offset)); - p2 = (u8*)attr + le32_to_cpu(attr->data.resident.value_length); + p2 = (u8 *)file_name_attr + le32_to_cpu(attr->data.resident.value_length); if (p2 < (u8*)attr || p2 > p) goto err_corrupt_attr; /* This attribute is ok, but is it in the $Extend directory? */ @@ -1880,6 +1881,10 @@ } /* Now allocate memory for the attribute list. */ ni->attr_list_size = (u32)ntfs_attr_size(a); + if (!ni->attr_list_size) { + ntfs_error(sb, "Attr_list_size is zero"); + goto put_err_out; + } ni->attr_list = ntfs_malloc_nofs(ni->attr_list_size); if (!ni->attr_list) { ntfs_error(sb, "Not enough memory to allocate buffer " diff -u linux-azure-5.4.0/fs/ocfs2/acl.c linux-azure-5.4.0/fs/ocfs2/acl.c --- linux-azure-5.4.0/fs/ocfs2/acl.c +++ linux-azure-5.4.0/fs/ocfs2/acl.c @@ -256,6 +256,8 @@ ret = ocfs2_xattr_set(inode, name_index, "", value, size, 0); kfree(value); + if (!ret) + set_cached_acl(inode, type, acl); return ret; } diff -u linux-azure-5.4.0/fs/ocfs2/alloc.c linux-azure-5.4.0/fs/ocfs2/alloc.c --- linux-azure-5.4.0/fs/ocfs2/alloc.c +++ linux-azure-5.4.0/fs/ocfs2/alloc.c @@ -7048,7 +7048,7 @@ int ocfs2_convert_inline_data_to_extents(struct inode *inode, struct buffer_head *di_bh) { - int ret, i, has_data, num_pages = 0; + int ret, has_data, num_pages = 0; int need_free = 0; u32 bit_off, num; handle_t *handle; @@ -7057,26 +7057,17 @@ struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; struct ocfs2_alloc_context *data_ac = NULL; - struct page **pages = NULL; - loff_t end = osb->s_clustersize; + struct page *page = NULL; struct ocfs2_extent_tree et; int did_quota = 0; has_data = i_size_read(inode) ? 1 : 0; if (has_data) { - pages = kcalloc(ocfs2_pages_per_cluster(osb->sb), - sizeof(struct page *), GFP_NOFS); - if (pages == NULL) { - ret = -ENOMEM; - mlog_errno(ret); - return ret; - } - ret = ocfs2_reserve_clusters(osb, 1, &data_ac); if (ret) { mlog_errno(ret); - goto free_pages; + goto out; } } @@ -7096,7 +7087,8 @@ } if (has_data) { - unsigned int page_end; + unsigned int page_end = min_t(unsigned, PAGE_SIZE, + osb->s_clustersize); u64 phys; ret = dquot_alloc_space_nodirty(inode, @@ -7120,15 +7112,8 @@ */ block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off); - /* - * Non sparse file systems zero on extend, so no need - * to do that now. - */ - if (!ocfs2_sparse_alloc(osb) && - PAGE_SIZE < osb->s_clustersize) - end = PAGE_SIZE; - - ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages); + ret = ocfs2_grab_eof_pages(inode, 0, page_end, &page, + &num_pages); if (ret) { mlog_errno(ret); need_free = 1; @@ -7139,20 +7124,15 @@ * This should populate the 1st page for us and mark * it up to date. */ - ret = ocfs2_read_inline_data(inode, pages[0], di_bh); + ret = ocfs2_read_inline_data(inode, page, di_bh); if (ret) { mlog_errno(ret); need_free = 1; goto out_unlock; } - page_end = PAGE_SIZE; - if (PAGE_SIZE > osb->s_clustersize) - page_end = osb->s_clustersize; - - for (i = 0; i < num_pages; i++) - ocfs2_map_and_dirty_page(inode, handle, 0, page_end, - pages[i], i > 0, &phys); + ocfs2_map_and_dirty_page(inode, handle, 0, page_end, page, 0, + &phys); } spin_lock(&oi->ip_lock); @@ -7183,8 +7163,8 @@ } out_unlock: - if (pages) - ocfs2_unlock_and_free_pages(pages, num_pages); + if (page) + ocfs2_unlock_and_free_pages(&page, num_pages); out_commit: if (ret < 0 && did_quota) @@ -7208,8 +7188,6 @@ out: if (data_ac) ocfs2_free_alloc_context(data_ac); -free_pages: - kfree(pages); return ret; } diff -u linux-azure-5.4.0/fs/ocfs2/dlmfs/userdlm.c linux-azure-5.4.0/fs/ocfs2/dlmfs/userdlm.c --- linux-azure-5.4.0/fs/ocfs2/dlmfs/userdlm.c +++ linux-azure-5.4.0/fs/ocfs2/dlmfs/userdlm.c @@ -435,6 +435,11 @@ } spin_lock(&lockres->l_lock); + if (lockres->l_flags & USER_LOCK_IN_TEARDOWN) { + spin_unlock(&lockres->l_lock); + status = -EAGAIN; + goto bail; + } /* We only compare against the currently granted level * here. If the lock is blocked waiting on a downconvert, @@ -601,7 +606,7 @@ spin_lock(&lockres->l_lock); if (lockres->l_flags & USER_LOCK_IN_TEARDOWN) { spin_unlock(&lockres->l_lock); - return 0; + goto bail; } lockres->l_flags |= USER_LOCK_IN_TEARDOWN; @@ -615,12 +620,17 @@ } if (lockres->l_ro_holders || lockres->l_ex_holders) { + lockres->l_flags &= ~USER_LOCK_IN_TEARDOWN; spin_unlock(&lockres->l_lock); goto bail; } status = 0; if (!(lockres->l_flags & USER_LOCK_ATTACHED)) { + /* + * lock is never requested, leave USER_LOCK_IN_TEARDOWN set + * to avoid new lock request coming in. + */ spin_unlock(&lockres->l_lock); goto bail; } @@ -631,6 +641,10 @@ status = ocfs2_dlm_unlock(conn, &lockres->l_lksb, DLM_LKF_VALBLK); if (status) { + spin_lock(&lockres->l_lock); + lockres->l_flags &= ~USER_LOCK_IN_TEARDOWN; + lockres->l_flags &= ~USER_LOCK_BUSY; + spin_unlock(&lockres->l_lock); user_log_dlm_error("ocfs2_dlm_unlock", status, lockres); goto bail; } diff -u linux-azure-5.4.0/fs/ocfs2/dlmglue.c linux-azure-5.4.0/fs/ocfs2/dlmglue.c --- linux-azure-5.4.0/fs/ocfs2/dlmglue.c +++ linux-azure-5.4.0/fs/ocfs2/dlmglue.c @@ -3933,7 +3933,7 @@ oi = OCFS2_I(inode); oi->ip_dir_lock_gen++; mlog(0, "generation: %u\n", oi->ip_dir_lock_gen); - goto out; + goto out_forget; } if (!S_ISREG(inode->i_mode)) @@ -3964,6 +3964,7 @@ filemap_fdatawait(mapping); } +out_forget: forget_all_cached_acls(inode); out: diff -u linux-azure-5.4.0/fs/ocfs2/file.c linux-azure-5.4.0/fs/ocfs2/file.c --- linux-azure-5.4.0/fs/ocfs2/file.c +++ linux-azure-5.4.0/fs/ocfs2/file.c @@ -478,10 +478,11 @@ * greater than page size, so we have to truncate them * anyway. */ - unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1); - truncate_inode_pages(inode->i_mapping, new_i_size); if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { + unmap_mapping_range(inode->i_mapping, + new_i_size + PAGE_SIZE - 1, 0, 1); + truncate_inode_pages(inode->i_mapping, new_i_size); status = ocfs2_truncate_inline(inode, di_bh, new_i_size, i_size_read(inode), 1); if (status) @@ -500,6 +501,9 @@ goto bail_unlock_sem; } + unmap_mapping_range(inode->i_mapping, new_i_size + PAGE_SIZE - 1, 0, 1); + truncate_inode_pages(inode->i_mapping, new_i_size); + status = ocfs2_commit_truncate(osb, inode, di_bh); if (status < 0) { mlog_errno(status); @@ -1529,6 +1533,45 @@ } } +/* + * zero out partial blocks of one cluster. + * + * start: file offset where zero starts, will be made upper block aligned. + * len: it will be trimmed to the end of current cluster if "start + len" + * is bigger than it. + */ +static int ocfs2_zeroout_partial_cluster(struct inode *inode, + u64 start, u64 len) +{ + int ret; + u64 start_block, end_block, nr_blocks; + u64 p_block, offset; + u32 cluster, p_cluster, nr_clusters; + struct super_block *sb = inode->i_sb; + u64 end = ocfs2_align_bytes_to_clusters(sb, start); + + if (start + len < end) + end = start + len; + + start_block = ocfs2_blocks_for_bytes(sb, start); + end_block = ocfs2_blocks_for_bytes(sb, end); + nr_blocks = end_block - start_block; + if (!nr_blocks) + return 0; + + cluster = ocfs2_bytes_to_clusters(sb, start); + ret = ocfs2_get_clusters(inode, cluster, &p_cluster, + &nr_clusters, NULL); + if (ret) + return ret; + if (!p_cluster) + return 0; + + offset = start_block - ocfs2_clusters_to_blocks(sb, cluster); + p_block = ocfs2_clusters_to_blocks(sb, p_cluster) + offset; + return sb_issue_zeroout(sb, p_block, nr_blocks, GFP_NOFS); +} + static int ocfs2_zero_partial_clusters(struct inode *inode, u64 start, u64 len) { @@ -1538,6 +1581,7 @@ struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); unsigned int csize = osb->s_clustersize; handle_t *handle; + loff_t isize = i_size_read(inode); /* * The "start" and "end" values are NOT necessarily part of @@ -1558,6 +1602,26 @@ if ((start & (csize - 1)) == 0 && (end & (csize - 1)) == 0) goto out; + /* No page cache for EOF blocks, issue zero out to disk. */ + if (end > isize) { + /* + * zeroout eof blocks in last cluster starting from + * "isize" even "start" > "isize" because it is + * complicated to zeroout just at "start" as "start" + * may be not aligned with block size, buffer write + * would be required to do that, but out of eof buffer + * write is not supported. + */ + ret = ocfs2_zeroout_partial_cluster(inode, isize, + end - isize); + if (ret) { + mlog_errno(ret); + goto out; + } + if (start >= isize) + goto out; + end = isize; + } handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS); if (IS_ERR(handle)) { ret = PTR_ERR(handle); @@ -1865,7 +1929,7 @@ { int ret; s64 llen; - loff_t size; + loff_t size, orig_isize; struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); struct buffer_head *di_bh = NULL; handle_t *handle; @@ -1957,6 +2021,15 @@ default: ret = -EINVAL; } + + orig_isize = i_size_read(inode); + /* zeroout eof blocks in the cluster. */ + if (!ret && change_size && orig_isize < size) { + ret = ocfs2_zeroout_partial_cluster(inode, orig_isize, + size - orig_isize); + if (!ret) + i_size_write(inode, size); + } up_write(&OCFS2_I(inode)->ip_alloc_sem); if (ret) { mlog_errno(ret); @@ -1973,9 +2046,6 @@ goto out_inode_unlock; } - if (change_size && i_size_read(inode) < size) - i_size_write(inode, size); - inode->i_ctime = inode->i_mtime = current_time(inode); ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); if (ret < 0) diff -u linux-azure-5.4.0/fs/ocfs2/journal.c linux-azure-5.4.0/fs/ocfs2/journal.c --- linux-azure-5.4.0/fs/ocfs2/journal.c +++ linux-azure-5.4.0/fs/ocfs2/journal.c @@ -883,6 +883,10 @@ OCFS2_JOURNAL_DIRTY_FL); journal->j_journal = j_journal; + journal->j_journal->j_submit_inode_data_buffers = + jbd2_journal_submit_inode_data_buffers; + journal->j_journal->j_finish_inode_data_buffers = + jbd2_journal_finish_inode_data_buffers; journal->j_inode = inode; journal->j_bh = bh; diff -u linux-azure-5.4.0/fs/ocfs2/super.c linux-azure-5.4.0/fs/ocfs2/super.c --- linux-azure-5.4.0/fs/ocfs2/super.c +++ linux-azure-5.4.0/fs/ocfs2/super.c @@ -1100,17 +1100,6 @@ goto read_super_error; } - root = d_make_root(inode); - if (!root) { - status = -ENOMEM; - mlog_errno(status); - goto read_super_error; - } - - sb->s_root = root; - - ocfs2_complete_mount_recovery(osb); - osb->osb_dev_kset = kset_create_and_add(sb->s_id, NULL, &ocfs2_kset->kobj); if (!osb->osb_dev_kset) { @@ -1128,6 +1117,17 @@ goto read_super_error; } + root = d_make_root(inode); + if (!root) { + status = -ENOMEM; + mlog_errno(status); + goto read_super_error; + } + + sb->s_root = root; + + ocfs2_complete_mount_recovery(osb); + if (ocfs2_mount_local(osb)) snprintf(nodestr, sizeof(nodestr), "local"); else @@ -2150,11 +2150,17 @@ } if (ocfs2_clusterinfo_valid(osb)) { + /* + * ci_stack and ci_cluster in ocfs2_cluster_info may not be null + * terminated, so make sure no overflow happens here by using + * memcpy. Destination strings will always be null terminated + * because osb is allocated using kzalloc. + */ osb->osb_stackflags = OCFS2_RAW_SB(di)->s_cluster_info.ci_stackflags; - strlcpy(osb->osb_cluster_stack, + memcpy(osb->osb_cluster_stack, OCFS2_RAW_SB(di)->s_cluster_info.ci_stack, - OCFS2_STACK_LABEL_LEN + 1); + OCFS2_STACK_LABEL_LEN); if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) { mlog(ML_ERROR, "couldn't mount because of an invalid " @@ -2163,9 +2169,9 @@ status = -EINVAL; goto bail; } - strlcpy(osb->osb_cluster_name, + memcpy(osb->osb_cluster_name, OCFS2_RAW_SB(di)->s_cluster_info.ci_cluster, - OCFS2_CLUSTER_NAME_LEN + 1); + OCFS2_CLUSTER_NAME_LEN); } else { /* The empty string is identical with classic tools that * don't know about s_cluster_info. */ diff -u linux-azure-5.4.0/fs/overlayfs/dir.c linux-azure-5.4.0/fs/overlayfs/dir.c --- linux-azure-5.4.0/fs/overlayfs/dir.c +++ linux-azure-5.4.0/fs/overlayfs/dir.c @@ -113,8 +113,7 @@ goto out; } -static int ovl_mkdir_real(struct inode *dir, struct dentry **newdentry, - umode_t mode) +int ovl_mkdir_real(struct inode *dir, struct dentry **newdentry, umode_t mode) { int err; struct dentry *d, *dentry = *newdentry; @@ -513,8 +512,10 @@ goto out_cleanup; } err = ovl_instantiate(dentry, inode, newdentry, hardlink); - if (err) - goto out_cleanup; + if (err) { + ovl_cleanup(udir, newdentry); + dput(newdentry); + } out_dput: dput(upper); out_unlock: @@ -1160,9 +1161,13 @@ goto out_dput; } } else { - if (!d_is_negative(newdentry) && - (!new_opaque || !ovl_is_whiteout(newdentry))) - goto out_dput; + if (!d_is_negative(newdentry)) { + if (!new_opaque || !ovl_is_whiteout(newdentry)) + goto out_dput; + } else { + if (flags & RENAME_EXCHANGE) + goto out_dput; + } } if (olddentry == trap) diff -u linux-azure-5.4.0/fs/overlayfs/export.c linux-azure-5.4.0/fs/overlayfs/export.c --- linux-azure-5.4.0/fs/overlayfs/export.c +++ linux-azure-5.4.0/fs/overlayfs/export.c @@ -274,7 +274,7 @@ return FILEID_INVALID; dentry = d_find_any_alias(inode); - if (WARN_ON(!dentry)) + if (!dentry) return FILEID_INVALID; type = ovl_dentry_to_fh(dentry, fid, max_len); @@ -395,6 +395,7 @@ */ take_dentry_name_snapshot(&name, real); this = lookup_one_len(name.name.name, connected, name.name.len); + release_dentry_name_snapshot(&name); err = PTR_ERR(this); if (IS_ERR(this)) { goto fail; @@ -409,7 +410,6 @@ } out: - release_dentry_name_snapshot(&name); dput(parent); inode_unlock(dir); return this; diff -u linux-azure-5.4.0/fs/overlayfs/file.c linux-azure-5.4.0/fs/overlayfs/file.c --- linux-azure-5.4.0/fs/overlayfs/file.c +++ linux-azure-5.4.0/fs/overlayfs/file.c @@ -10,6 +10,9 @@ #include #include #include +#include +#include +#include #include "overlayfs.h" static char ovl_whatisit(struct inode *inode, struct inode *realinode) @@ -303,6 +306,51 @@ return ret; } +/* + * Calling iter_file_splice_write() directly from overlay's f_op may deadlock + * due to lock order inversion between pipe->mutex in iter_file_splice_write() + * and file_start_write(real.file) in ovl_write_iter(). + * + * So do everything ovl_write_iter() does and call iter_file_splice_write() on + * the real file. + */ +static ssize_t ovl_splice_write(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags) +{ + struct fd real; + const struct cred *old_cred; + struct inode *inode = file_inode(out); + struct inode *realinode = ovl_inode_real(inode); + ssize_t ret; + + inode_lock(inode); + /* Update mode */ + ovl_copyattr(realinode, inode); + ret = file_remove_privs(out); + if (ret) + goto out_unlock; + + ret = ovl_real_fdget(out, &real); + if (ret) + goto out_unlock; + + old_cred = ovl_override_creds(inode->i_sb); + file_start_write(real.file); + + ret = iter_file_splice_write(pipe, real.file, ppos, len, flags); + + file_end_write(real.file); + /* Update size */ + ovl_copyattr(realinode, inode); + revert_creds(old_cred); + fdput(real); + +out_unlock: + inode_unlock(inode); + + return ret; +} + static int ovl_fsync(struct file *file, loff_t start, loff_t end, int datasync) { struct fd real; @@ -694,6 +742,8 @@ .fadvise = ovl_fadvise, .unlocked_ioctl = ovl_ioctl, .compat_ioctl = ovl_compat_ioctl, + .splice_read = generic_file_splice_read, + .splice_write = ovl_splice_write, .copy_file_range = ovl_copy_file_range, .remap_file_range = ovl_remap_file_range, diff -u linux-azure-5.4.0/fs/overlayfs/overlayfs.h linux-azure-5.4.0/fs/overlayfs/overlayfs.h --- linux-azure-5.4.0/fs/overlayfs/overlayfs.h +++ linux-azure-5.4.0/fs/overlayfs/overlayfs.h @@ -428,6 +428,7 @@ #define OVL_CATTR(m) (&(struct ovl_cattr) { .mode = (m) }) +int ovl_mkdir_real(struct inode *dir, struct dentry **newdentry, umode_t mode); struct dentry *ovl_create_real(struct inode *dir, struct dentry *newdentry, struct ovl_cattr *attr); int ovl_cleanup(struct inode *dir, struct dentry *dentry); diff -u linux-azure-5.4.0/fs/overlayfs/super.c linux-azure-5.4.0/fs/overlayfs/super.c --- linux-azure-5.4.0/fs/overlayfs/super.c +++ linux-azure-5.4.0/fs/overlayfs/super.c @@ -650,10 +650,14 @@ goto retry; } - work = ovl_create_real(dir, work, OVL_CATTR(attr.ia_mode)); - err = PTR_ERR(work); - if (IS_ERR(work)) - goto out_err; + err = ovl_mkdir_real(dir, &work, attr.ia_mode); + if (err) + goto out_dput; + + /* Weird filesystem returning with hashed negative (kernfs)? */ + err = -EINVAL; + if (d_really_is_negative(work)) + goto out_dput; /* * Try to remove POSIX ACL xattrs from workdir. We are good if: diff -u linux-azure-5.4.0/fs/proc/base.c linux-azure-5.4.0/fs/proc/base.c --- linux-azure-5.4.0/fs/proc/base.c +++ linux-azure-5.4.0/fs/proc/base.c @@ -549,8 +549,17 @@ { unsigned long totalpages = totalram_pages() + total_swap_pages; unsigned long points = 0; + long badness; + + badness = oom_badness(task, totalpages); + /* + * Special case OOM_SCORE_ADJ_MIN for all others scale the + * badness value into [0, 2000] range which we have been + * exporting for a long time so userspace might depend on it. + */ + if (badness != LONG_MIN) + points = (1000 + badness * 1000 / (long)totalpages) * 2 / 3; - points = oom_badness(task, totalpages) * 1000 / totalpages; seq_printf(m, "%lu\n", points); return 0; @@ -836,7 +845,7 @@ flags = FOLL_FORCE | (write ? FOLL_WRITE : 0); while (count > 0) { - int this_len = min_t(int, count, PAGE_SIZE); + size_t this_len = min_t(size_t, count, PAGE_SIZE); if (write && copy_from_user(page, buf, this_len)) { copied = -EFAULT; @@ -2527,6 +2536,13 @@ } #ifdef CONFIG_SECURITY +static int proc_pid_attr_open(struct inode *inode, struct file *file) +{ + file->private_data = NULL; + __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS); + return 0; +} + static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, size_t count, loff_t *ppos) { @@ -2556,6 +2572,10 @@ void *page; int rv; + /* A task may only write when it was the opener. */ + if (file->private_data != current->mm) + return -EPERM; + rcu_read_lock(); task = pid_task(proc_pid(inode), PIDTYPE_PID); if (!task) { @@ -2603,9 +2623,11 @@ } static const struct file_operations proc_pid_attr_operations = { + .open = proc_pid_attr_open, .read = proc_pid_attr_read, .write = proc_pid_attr_write, .llseek = generic_file_llseek, + .release = mem_release, }; #define LSM_DIR_OPS(LSM) \ diff -u linux-azure-5.4.0/fs/proc/generic.c linux-azure-5.4.0/fs/proc/generic.c --- linux-azure-5.4.0/fs/proc/generic.c +++ linux-azure-5.4.0/fs/proc/generic.c @@ -446,6 +446,9 @@ proc_set_user(ent, (*parent)->uid, (*parent)->gid); ent->proc_dops = &proc_misc_dentry_ops; + /* Revalidate everything under /proc/${pid}/net */ + if ((*parent)->proc_dops == &proc_net_dentry_ops) + pde_force_lookup(ent); out: return ent; diff -u linux-azure-5.4.0/fs/proc/proc_net.c linux-azure-5.4.0/fs/proc/proc_net.c --- linux-azure-5.4.0/fs/proc/proc_net.c +++ linux-azure-5.4.0/fs/proc/proc_net.c @@ -343,6 +343,9 @@ proc_set_user(netd, uid, gid); + /* Seed dentry revalidation for /proc/${pid}/net */ + pde_force_lookup(netd); + err = -EEXIST; net_statd = proc_net_mkdir(net, "stat", netd); if (!net_statd) diff -u linux-azure-5.4.0/fs/proc/task_mmu.c linux-azure-5.4.0/fs/proc/task_mmu.c --- linux-azure-5.4.0/fs/proc/task_mmu.c +++ linux-azure-5.4.0/fs/proc/task_mmu.c @@ -887,7 +887,7 @@ last_vma_end = vma->vm_end; } - show_vma_header_prefix(m, priv->mm->mmap->vm_start, + show_vma_header_prefix(m, priv->mm->mmap ? priv->mm->mmap->vm_start : 0, last_vma_end, 0, 0, 0, 0); seq_pad(m, ' '); seq_puts(m, "[rollup]\n"); diff -u linux-azure-5.4.0/fs/proc/vmcore.c linux-azure-5.4.0/fs/proc/vmcore.c --- linux-azure-5.4.0/fs/proc/vmcore.c +++ linux-azure-5.4.0/fs/proc/vmcore.c @@ -125,9 +125,13 @@ nr_bytes = count; /* If pfn is not ram, return zeros for sparse dump files */ - if (pfn_is_ram(pfn) == 0) - memset(buf, 0, nr_bytes); - else { + if (pfn_is_ram(pfn) == 0) { + tmp = 0; + if (!userbuf) + memset(buf, 0, nr_bytes); + else if (clear_user(buf, nr_bytes)) + tmp = -EFAULT; + } else { if (encrypted) tmp = copy_oldmem_page_encrypted(pfn, buf, nr_bytes, @@ -136,10 +140,10 @@ else tmp = copy_oldmem_page(pfn, buf, nr_bytes, offset, userbuf); - - if (tmp < 0) - return tmp; } + if (tmp < 0) + return tmp; + *ppos += nr_bytes; count -= nr_bytes; buf += nr_bytes; diff -u linux-azure-5.4.0/fs/quota/dquot.c linux-azure-5.4.0/fs/quota/dquot.c --- linux-azure-5.4.0/fs/quota/dquot.c +++ linux-azure-5.4.0/fs/quota/dquot.c @@ -693,9 +693,14 @@ /* This is not very clever (and fast) but currently I don't know about * any other simple way of getting quota data to disk and we must get * them there for userspace to be visible... */ - if (sb->s_op->sync_fs) - sb->s_op->sync_fs(sb, 1); - sync_blockdev(sb->s_bdev); + if (sb->s_op->sync_fs) { + ret = sb->s_op->sync_fs(sb, 1); + if (ret) + return ret; + } + ret = sync_blockdev(sb->s_bdev); + if (ret) + return ret; /* * Now when everything is written we can discard the pagecache so diff -u linux-azure-5.4.0/fs/quota/quota_tree.c linux-azure-5.4.0/fs/quota/quota_tree.c --- linux-azure-5.4.0/fs/quota/quota_tree.c +++ linux-azure-5.4.0/fs/quota/quota_tree.c @@ -80,6 +80,35 @@ return ret; } +static inline int do_check_range(struct super_block *sb, const char *val_name, + uint val, uint min_val, uint max_val) +{ + if (val < min_val || val > max_val) { + quota_error(sb, "Getting %s %u out of range %u-%u", + val_name, val, min_val, max_val); + return -EUCLEAN; + } + + return 0; +} + +static int check_dquot_block_header(struct qtree_mem_dqinfo *info, + struct qt_disk_dqdbheader *dh) +{ + int err = 0; + + err = do_check_range(info->dqi_sb, "dqdh_next_free", + le32_to_cpu(dh->dqdh_next_free), 0, + info->dqi_blocks - 1); + if (err) + return err; + err = do_check_range(info->dqi_sb, "dqdh_prev_free", + le32_to_cpu(dh->dqdh_prev_free), 0, + info->dqi_blocks - 1); + + return err; +} + /* Remove empty block from list and return it */ static int get_free_dqblk(struct qtree_mem_dqinfo *info) { @@ -94,6 +123,9 @@ ret = read_blk(info, blk, buf); if (ret < 0) goto out_buf; + ret = check_dquot_block_header(info, dh); + if (ret) + goto out_buf; info->dqi_free_blk = le32_to_cpu(dh->dqdh_next_free); } else { @@ -241,6 +273,9 @@ *err = read_blk(info, blk, buf); if (*err < 0) goto out_buf; + *err = check_dquot_block_header(info, dh); + if (*err) + goto out_buf; } else { blk = get_free_dqblk(info); if ((int)blk < 0) { @@ -423,6 +458,7 @@ quota_error(dquot->dq_sb, "Quota structure has offset to " "other block (%u) than it should (%u)", blk, (uint)(dquot->dq_off >> info->dqi_blocksize_bits)); + ret = -EIO; goto out_buf; } ret = read_blk(info, blk, buf); @@ -432,6 +468,9 @@ goto out_buf; } dh = (struct qt_disk_dqdbheader *)buf; + ret = check_dquot_block_header(info, dh); + if (ret) + goto out_buf; le16_add_cpu(&dh->dqdh_entries, -1); if (!le16_to_cpu(dh->dqdh_entries)) { /* Block got free? */ ret = remove_free_dqentry(info, buf, blk); @@ -488,6 +527,13 @@ goto out_buf; } newblk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]); + if (newblk < QT_TREEOFF || newblk >= info->dqi_blocks) { + quota_error(dquot->dq_sb, "Getting block too big (%u >= %u)", + newblk, info->dqi_blocks); + ret = -EUCLEAN; + goto out_buf; + } + if (depth == info->dqi_qtree_depth - 1) { ret = free_dqentry(info, dquot, newblk); newblk = 0; @@ -587,6 +633,13 @@ blk = le32_to_cpu(ref[get_index(info, dquot->dq_id, depth)]); if (!blk) /* No reference? */ goto out_buf; + if (blk < QT_TREEOFF || blk >= info->dqi_blocks) { + quota_error(dquot->dq_sb, "Getting block too big (%u >= %u)", + blk, info->dqi_blocks); + ret = -EUCLEAN; + goto out_buf; + } + if (depth < info->dqi_qtree_depth - 1) ret = find_tree_dqentry(info, dquot, blk, depth+1); else diff -u linux-azure-5.4.0/fs/reiserfs/stree.c linux-azure-5.4.0/fs/reiserfs/stree.c --- linux-azure-5.4.0/fs/reiserfs/stree.c +++ linux-azure-5.4.0/fs/reiserfs/stree.c @@ -387,6 +387,24 @@ search_path->path_length = ILLEGAL_PATH_ELEMENT_OFFSET; } +static int has_valid_deh_location(struct buffer_head *bh, struct item_head *ih) +{ + struct reiserfs_de_head *deh; + int i; + + deh = B_I_DEH(bh, ih); + for (i = 0; i < ih_entry_count(ih); i++) { + if (deh_location(&deh[i]) > ih_item_len(ih)) { + reiserfs_warning(NULL, "reiserfs-5094", + "directory entry location seems wrong %h", + &deh[i]); + return 0; + } + } + + return 1; +} + static int is_leaf(char *buf, int blocksize, struct buffer_head *bh) { struct block_head *blkh; @@ -454,11 +472,14 @@ "(second one): %h", ih); return 0; } - if (is_direntry_le_ih(ih) && (ih_item_len(ih) < (ih_entry_count(ih) * IH_SIZE))) { - reiserfs_warning(NULL, "reiserfs-5093", - "item entry count seems wrong %h", - ih); - return 0; + if (is_direntry_le_ih(ih)) { + if (ih_item_len(ih) < (ih_entry_count(ih) * IH_SIZE)) { + reiserfs_warning(NULL, "reiserfs-5093", + "item entry count seems wrong %h", + ih); + return 0; + } + return has_valid_deh_location(bh, ih); } prev_location = ih_location(ih); } diff -u linux-azure-5.4.0/fs/reiserfs/super.c linux-azure-5.4.0/fs/reiserfs/super.c --- linux-azure-5.4.0/fs/reiserfs/super.c +++ linux-azure-5.4.0/fs/reiserfs/super.c @@ -2082,6 +2082,14 @@ unlock_new_inode(root_inode); } + if (!S_ISDIR(root_inode->i_mode) || !inode_get_bytes(root_inode) || + !root_inode->i_size) { + SWARN(silent, s, "", "corrupt root inode, run fsck"); + iput(root_inode); + errval = -EUCLEAN; + goto error; + } + s->s_root = d_make_root(root_inode); if (!s->s_root) goto error; diff -u linux-azure-5.4.0/fs/select.c linux-azure-5.4.0/fs/select.c --- linux-azure-5.4.0/fs/select.c +++ linux-azure-5.4.0/fs/select.c @@ -458,9 +458,11 @@ return max; } -#define POLLIN_SET (EPOLLRDNORM | EPOLLRDBAND | EPOLLIN | EPOLLHUP | EPOLLERR) -#define POLLOUT_SET (EPOLLWRBAND | EPOLLWRNORM | EPOLLOUT | EPOLLERR) -#define POLLEX_SET (EPOLLPRI) +#define POLLIN_SET (EPOLLRDNORM | EPOLLRDBAND | EPOLLIN | EPOLLHUP | EPOLLERR |\ + EPOLLNVAL) +#define POLLOUT_SET (EPOLLWRBAND | EPOLLWRNORM | EPOLLOUT | EPOLLERR |\ + EPOLLNVAL) +#define POLLEX_SET (EPOLLPRI | EPOLLNVAL) static inline void wait_key_set(poll_table *wait, unsigned long in, unsigned long out, unsigned long bit, @@ -527,6 +529,7 @@ break; if (!(bit & all_bits)) continue; + mask = EPOLLNVAL; f = fdget(i); if (f.file) { wait_key_set(wait, in, out, bit, @@ -534,34 +537,34 @@ mask = vfs_poll(f.file, wait); fdput(f); - if ((mask & POLLIN_SET) && (in & bit)) { - res_in |= bit; - retval++; - wait->_qproc = NULL; - } - if ((mask & POLLOUT_SET) && (out & bit)) { - res_out |= bit; - retval++; - wait->_qproc = NULL; - } - if ((mask & POLLEX_SET) && (ex & bit)) { - res_ex |= bit; - retval++; - wait->_qproc = NULL; - } - /* got something, stop busy polling */ - if (retval) { - can_busy_loop = false; - busy_flag = 0; + } + if ((mask & POLLIN_SET) && (in & bit)) { + res_in |= bit; + retval++; + wait->_qproc = NULL; + } + if ((mask & POLLOUT_SET) && (out & bit)) { + res_out |= bit; + retval++; + wait->_qproc = NULL; + } + if ((mask & POLLEX_SET) && (ex & bit)) { + res_ex |= bit; + retval++; + wait->_qproc = NULL; + } + /* got something, stop busy polling */ + if (retval) { + can_busy_loop = false; + busy_flag = 0; - /* - * only remember a returned - * POLL_BUSY_LOOP if we asked for it - */ - } else if (busy_flag & mask) - can_busy_loop = true; + /* + * only remember a returned + * POLL_BUSY_LOOP if we asked for it + */ + } else if (busy_flag & mask) + can_busy_loop = true; - } } if (res_in) *rinp = res_in; diff -u linux-azure-5.4.0/fs/signalfd.c linux-azure-5.4.0/fs/signalfd.c --- linux-azure-5.4.0/fs/signalfd.c +++ linux-azure-5.4.0/fs/signalfd.c @@ -35,17 +35,7 @@ void signalfd_cleanup(struct sighand_struct *sighand) { - wait_queue_head_t *wqh = &sighand->signalfd_wqh; - /* - * The lockless check can race with remove_wait_queue() in progress, - * but in this case its caller should run under rcu_read_lock() and - * sighand_cachep is SLAB_TYPESAFE_BY_RCU, we can safely return. - */ - if (likely(!waitqueue_active(wqh))) - return; - - /* wait_queue_entry_t->func(POLLFREE) should do remove_wait_queue() */ - wake_up_poll(wqh, EPOLLHUP | POLLFREE); + wake_up_pollfree(&sighand->signalfd_wqh); } struct signalfd_ctx { @@ -258,6 +248,7 @@ .poll = signalfd_poll, .read = signalfd_read, .llseek = noop_llseek, + .may_pollfree = true, }; static int do_signalfd4(int ufd, sigset_t *mask, int flags) diff -u linux-azure-5.4.0/fs/super.c linux-azure-5.4.0/fs/super.c --- linux-azure-5.4.0/fs/super.c +++ linux-azure-5.4.0/fs/super.c @@ -1470,8 +1470,8 @@ } EXPORT_SYMBOL(mount_nodev); -static int reconfigure_single(struct super_block *s, - int flags, void *data) +int reconfigure_single(struct super_block *s, + int flags, void *data) { struct fs_context *fc; int ret; @@ -1691,11 +1691,9 @@ percpu_rwsem_acquire(sb->s_writers.rw_sem + level, 0, _THIS_IP_); } -static void sb_freeze_unlock(struct super_block *sb) +static void sb_freeze_unlock(struct super_block *sb, int level) { - int level; - - for (level = SB_FREEZE_LEVELS - 1; level >= 0; level--) + for (level--; level >= 0; level--) percpu_up_write(sb->s_writers.rw_sem + level); } @@ -1766,7 +1764,14 @@ sb_wait_write(sb, SB_FREEZE_PAGEFAULT); /* All writers are done so after syncing there won't be dirty data */ - sync_filesystem(sb); + ret = sync_filesystem(sb); + if (ret) { + sb->s_writers.frozen = SB_UNFROZEN; + sb_freeze_unlock(sb, SB_FREEZE_PAGEFAULT); + wake_up(&sb->s_writers.wait_unfrozen); + deactivate_locked_super(sb); + return ret; + } /* Now wait for internal filesystem counter */ sb->s_writers.frozen = SB_FREEZE_FS; @@ -1778,7 +1783,7 @@ printk(KERN_ERR "VFS:Filesystem freeze failed\n"); sb->s_writers.frozen = SB_UNFROZEN; - sb_freeze_unlock(sb); + sb_freeze_unlock(sb, SB_FREEZE_FS); wake_up(&sb->s_writers.wait_unfrozen); deactivate_locked_super(sb); return ret; @@ -1829,7 +1834,7 @@ } sb->s_writers.frozen = SB_UNFROZEN; - sb_freeze_unlock(sb); + sb_freeze_unlock(sb, SB_FREEZE_FS); out: wake_up(&sb->s_writers.wait_unfrozen); deactivate_locked_super(sb); diff -u linux-azure-5.4.0/fs/ubifs/dir.c linux-azure-5.4.0/fs/ubifs/dir.c --- linux-azure-5.4.0/fs/ubifs/dir.c +++ linux-azure-5.4.0/fs/ubifs/dir.c @@ -361,15 +361,18 @@ { struct inode *inode; struct ubifs_info *c = dir->i_sb->s_fs_info; - struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1}; + struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1, + .dirtied_ino = 1}; struct ubifs_budget_req ino_req = { .dirtied_ino = 1 }; struct ubifs_inode *ui, *dir_ui = ubifs_inode(dir); int err, instantiated = 0; struct fscrypt_name nm; /* - * Budget request settings: new dirty inode, new direntry, - * budget for dirtied inode will be released via writeback. + * Budget request settings: new inode, new direntry, changing the + * parent directory inode. + * Allocate budget separately for new dirtied inode, the budget will + * be released via writeback. */ dbg_gen("dent '%pd', mode %#hx in dir ino %lu", @@ -439,6 +442,8 @@ make_bad_inode(inode); if (!instantiated) iput(inode); + else if (whiteout) + iput(*whiteout); out_budg: ubifs_release_budget(c, &req); if (!instantiated) @@ -955,7 +960,8 @@ struct ubifs_inode *dir_ui = ubifs_inode(dir); struct ubifs_info *c = dir->i_sb->s_fs_info; int err, sz_change; - struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1 }; + struct ubifs_budget_req req = { .new_ino = 1, .new_dent = 1, + .dirtied_ino = 1}; struct fscrypt_name nm; /* @@ -1330,6 +1336,7 @@ if (flags & RENAME_WHITEOUT) { union ubifs_dev_desc *dev = NULL; + struct ubifs_budget_req wht_req; dev = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS); if (!dev) { @@ -1343,11 +1350,31 @@ goto out_release; } + spin_lock(&whiteout->i_lock); whiteout->i_state |= I_LINKABLE; + spin_unlock(&whiteout->i_lock); + whiteout_ui = ubifs_inode(whiteout); whiteout_ui->data = dev; whiteout_ui->data_len = ubifs_encode_dev(dev, MKDEV(0, 0)); ubifs_assert(c, !whiteout_ui->dirty); + + memset(&wht_req, 0, sizeof(struct ubifs_budget_req)); + wht_req.dirtied_ino = 1; + wht_req.dirtied_ino_d = ALIGN(whiteout_ui->data_len, 8); + /* + * To avoid deadlock between space budget (holds ui_mutex and + * waits wb work) and writeback work(waits ui_mutex), do space + * budget before ubifs inodes locked. + */ + err = ubifs_budget_space(c, &wht_req); + if (err) { + iput(whiteout); + goto out_release; + } + + /* Add the old_dentry size to the old_dir size. */ + old_sz -= CALC_DENT_SIZE(fname_len(&old_nm)); } lock_4_inodes(old_dir, new_dir, new_inode, whiteout); @@ -1422,21 +1449,13 @@ } if (whiteout) { - struct ubifs_budget_req wht_req = { .dirtied_ino = 1, - .dirtied_ino_d = \ - ALIGN(ubifs_inode(whiteout)->data_len, 8) }; - - err = ubifs_budget_space(c, &wht_req); - if (err) { - kfree(whiteout_ui->data); - whiteout_ui->data_len = 0; - iput(whiteout); - goto out_release; - } - inc_nlink(whiteout); mark_inode_dirty(whiteout); + + spin_lock(&whiteout->i_lock); whiteout->i_state &= ~I_LINKABLE; + spin_unlock(&whiteout->i_lock); + iput(whiteout); } diff -u linux-azure-5.4.0/fs/ubifs/file.c linux-azure-5.4.0/fs/ubifs/file.c --- linux-azure-5.4.0/fs/ubifs/file.c +++ linux-azure-5.4.0/fs/ubifs/file.c @@ -1629,6 +1629,16 @@ return fscrypt_get_symlink(inode, ui->data, ui->data_len, done); } +static int ubifs_symlink_getattr(const struct path *path, struct kstat *stat, + u32 request_mask, unsigned int query_flags) +{ + ubifs_getattr(path, stat, request_mask, query_flags); + + if (IS_ENCRYPTED(d_inode(path->dentry))) + return fscrypt_symlink_getattr(path, stat); + return 0; +} + const struct address_space_operations ubifs_file_address_operations = { .readpage = ubifs_readpage, .writepage = ubifs_writepage, @@ -1654,7 +1664,7 @@ const struct inode_operations ubifs_symlink_inode_operations = { .get_link = ubifs_get_link, .setattr = ubifs_setattr, - .getattr = ubifs_getattr, + .getattr = ubifs_symlink_getattr, #ifdef CONFIG_UBIFS_FS_XATTR .listxattr = ubifs_listxattr, #endif diff -u linux-azure-5.4.0/fs/ubifs/io.c linux-azure-5.4.0/fs/ubifs/io.c --- linux-azure-5.4.0/fs/ubifs/io.c +++ linux-azure-5.4.0/fs/ubifs/io.c @@ -846,16 +846,42 @@ */ n = aligned_len >> c->max_write_shift; if (n) { - n <<= c->max_write_shift; + int m = n - 1; + dbg_io("write %d bytes to LEB %d:%d", n, wbuf->lnum, wbuf->offs); - err = ubifs_leb_write(c, wbuf->lnum, buf + written, - wbuf->offs, n); + + if (m) { + /* '(n-1)<max_write_shift < len' is always true. */ + m <<= c->max_write_shift; + err = ubifs_leb_write(c, wbuf->lnum, buf + written, + wbuf->offs, m); + if (err) + goto out; + wbuf->offs += m; + aligned_len -= m; + len -= m; + written += m; + } + + /* + * The non-written len of buf may be less than 'n' because + * parameter 'len' is not 8 bytes aligned, so here we read + * min(len, n) bytes from buf. + */ + n = 1 << c->max_write_shift; + memcpy(wbuf->buf, buf + written, min(len, n)); + if (n > len) { + ubifs_assert(c, n - len < 8); + ubifs_pad(c, wbuf->buf + len, n - len); + } + + err = ubifs_leb_write(c, wbuf->lnum, wbuf->buf, wbuf->offs, n); if (err) goto out; wbuf->offs += n; aligned_len -= n; - len -= n; + len -= min(len, n); written += n; } diff -u linux-azure-5.4.0/fs/ubifs/ioctl.c linux-azure-5.4.0/fs/ubifs/ioctl.c --- linux-azure-5.4.0/fs/ubifs/ioctl.c +++ linux-azure-5.4.0/fs/ubifs/ioctl.c @@ -101,7 +101,7 @@ struct ubifs_inode *ui = ubifs_inode(inode); struct ubifs_info *c = inode->i_sb->s_fs_info; struct ubifs_budget_req req = { .dirtied_ino = 1, - .dirtied_ino_d = ui->data_len }; + .dirtied_ino_d = ALIGN(ui->data_len, 8) }; err = ubifs_budget_space(c, &req); if (err) diff -u linux-azure-5.4.0/fs/ubifs/super.c linux-azure-5.4.0/fs/ubifs/super.c --- linux-azure-5.4.0/fs/ubifs/super.c +++ linux-azure-5.4.0/fs/ubifs/super.c @@ -257,6 +257,7 @@ memset((void *)ui + sizeof(struct inode), 0, sizeof(struct ubifs_inode) - sizeof(struct inode)); mutex_init(&ui->ui_mutex); + init_rwsem(&ui->xattr_sem); spin_lock_init(&ui->ui_lock); return &ui->vfs_inode; }; @@ -1834,7 +1835,6 @@ kthread_stop(c->bgt); c->bgt = NULL; } - free_wbufs(c); kfree(c->write_reserve_buf); c->write_reserve_buf = NULL; vfree(c->ileb_buf); diff -u linux-azure-5.4.0/fs/ubifs/xattr.c linux-azure-5.4.0/fs/ubifs/xattr.c --- linux-azure-5.4.0/fs/ubifs/xattr.c +++ linux-azure-5.4.0/fs/ubifs/xattr.c @@ -285,6 +285,7 @@ if (!xent) return -ENOMEM; + down_write(&ubifs_inode(host)->xattr_sem); /* * The extended attribute entries are stored in LNC, so multiple * look-ups do not involve reading the flash. @@ -319,6 +320,7 @@ iput(inode); out_free: + up_write(&ubifs_inode(host)->xattr_sem); kfree(xent); return err; } @@ -341,18 +343,19 @@ if (!xent) return -ENOMEM; + down_read(&ubifs_inode(host)->xattr_sem); xent_key_init(c, &key, host->i_ino, &nm); err = ubifs_tnc_lookup_nm(c, &key, xent, &nm); if (err) { if (err == -ENOENT) err = -ENODATA; - goto out_unlock; + goto out_cleanup; } inode = iget_xattr(c, le64_to_cpu(xent->inum)); if (IS_ERR(inode)) { err = PTR_ERR(inode); - goto out_unlock; + goto out_cleanup; } ui = ubifs_inode(inode); @@ -374,7 +377,8 @@ out_iput: mutex_unlock(&ui->ui_mutex); iput(inode); -out_unlock: +out_cleanup: + up_read(&ubifs_inode(host)->xattr_sem); kfree(xent); return err; } @@ -406,16 +410,21 @@ dbg_gen("ino %lu ('%pd'), buffer size %zd", host->i_ino, dentry, size); + down_read(&host_ui->xattr_sem); len = host_ui->xattr_names + host_ui->xattr_cnt; - if (!buffer) + if (!buffer) { /* * We should return the minimum buffer size which will fit a * null-terminated list of all the extended attribute names. */ - return len; + err = len; + goto out_err; + } - if (len > size) - return -ERANGE; + if (len > size) { + err = -ERANGE; + goto out_err; + } lowest_xent_key(c, &key, host->i_ino); while (1) { @@ -437,8 +446,9 @@ pxent = xent; key_read(c, &xent->key, &key); } - kfree(pxent); + up_read(&host_ui->xattr_sem); + if (err != -ENOENT) { ubifs_err(c, "cannot find next direntry, error %d", err); return err; @@ -446,6 +456,10 @@ ubifs_assert(c, written <= size); return written; + +out_err: + up_read(&host_ui->xattr_sem); + return err; } static int remove_xattr(struct ubifs_info *c, struct inode *host, @@ -504,6 +518,7 @@ ubifs_warn(c, "inode %lu has too many xattrs, doing a non-atomic deletion", host->i_ino); + down_write(&ubifs_inode(host)->xattr_sem); lowest_xent_key(c, &key, host->i_ino); while (1) { xent = ubifs_tnc_next_ent(c, &key, &nm); @@ -523,7 +538,7 @@ ubifs_ro_mode(c, err); kfree(pxent); kfree(xent); - return err; + goto out_err; } ubifs_assert(c, ubifs_inode(xino)->xattr); @@ -535,7 +550,7 @@ kfree(xent); iput(xino); ubifs_err(c, "cannot remove xattr, error %d", err); - return err; + goto out_err; } iput(xino); @@ -544,14 +559,19 @@ pxent = xent; key_read(c, &xent->key, &key); } - kfree(pxent); + up_write(&ubifs_inode(host)->xattr_sem); + if (err != -ENOENT) { ubifs_err(c, "cannot find next direntry, error %d", err); return err; } return 0; + +out_err: + up_write(&ubifs_inode(host)->xattr_sem); + return err; } /** @@ -594,6 +614,7 @@ if (!xent) return -ENOMEM; + down_write(&ubifs_inode(host)->xattr_sem); xent_key_init(c, &key, host->i_ino, &nm); err = ubifs_tnc_lookup_nm(c, &key, xent, &nm); if (err) { @@ -618,6 +639,7 @@ iput(inode); out_free: + up_write(&ubifs_inode(host)->xattr_sem); kfree(xent); return err; } diff -u linux-azure-5.4.0/fs/udf/inode.c linux-azure-5.4.0/fs/udf/inode.c --- linux-azure-5.4.0/fs/udf/inode.c +++ linux-azure-5.4.0/fs/udf/inode.c @@ -258,10 +258,6 @@ char *kaddr; struct udf_inode_info *iinfo = UDF_I(inode); int err; - struct writeback_control udf_wbc = { - .sync_mode = WB_SYNC_NONE, - .nr_to_write = 1, - }; WARN_ON_ONCE(!inode_is_locked(inode)); if (!iinfo->i_lenAlloc) { @@ -305,8 +301,10 @@ iinfo->i_alloc_type = ICBTAG_FLAG_AD_LONG; /* from now on we have normal address_space methods */ inode->i_data.a_ops = &udf_aops; + set_page_dirty(page); + unlock_page(page); up_write(&iinfo->i_data_sem); - err = inode->i_data.a_ops->writepage(page, &udf_wbc); + err = filemap_fdatawrite(inode->i_mapping); if (err) { /* Restore everything back so that we don't lose data... */ lock_page(page); @@ -318,6 +316,7 @@ unlock_page(page); iinfo->i_alloc_type = ICBTAG_FLAG_AD_IN_ICB; inode->i_data.a_ops = &udf_adinicb_aops; + iinfo->i_lenAlloc = inode->i_size; up_write(&iinfo->i_data_sem); } put_page(page); diff -u linux-azure-5.4.0/fs/udf/super.c linux-azure-5.4.0/fs/udf/super.c --- linux-azure-5.4.0/fs/udf/super.c +++ linux-azure-5.4.0/fs/udf/super.c @@ -57,6 +57,7 @@ #include #include #include +#include #include "udf_sb.h" #include "udf_i.h" @@ -108,16 +109,10 @@ return NULL; lvid = (struct logicalVolIntegrityDesc *)UDF_SB(sb)->s_lvid_bh->b_data; partnum = le32_to_cpu(lvid->numOfPartitions); - if ((sb->s_blocksize - sizeof(struct logicalVolIntegrityDescImpUse) - - offsetof(struct logicalVolIntegrityDesc, impUse)) / - (2 * sizeof(uint32_t)) < partnum) { - udf_err(sb, "Logical volume integrity descriptor corrupted " - "(numOfPartitions = %u)!\n", partnum); - return NULL; - } /* The offset is to skip freeSpaceTable and sizeTable arrays */ offset = partnum * 2 * sizeof(uint32_t); - return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]); + return (struct logicalVolIntegrityDescImpUse *) + (((uint8_t *)(lvid + 1)) + offset); } /* UDF filesystem type */ @@ -155,6 +150,7 @@ init_rwsem(&ei->i_data_sem); ei->cached_extent.lstart = -1; spin_lock_init(&ei->i_extent_cache_lock); + inode_set_iversion(&ei->vfs_inode, 1); return &ei->vfs_inode; } @@ -349,10 +345,10 @@ seq_printf(seq, ",lastblock=%u", sbi->s_last_block); if (sbi->s_anchor != 0) seq_printf(seq, ",anchor=%u", sbi->s_anchor); - if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8)) - seq_puts(seq, ",utf8"); - if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map) + if (sbi->s_nls_map) seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset); + else + seq_puts(seq, ",iocharset=utf8"); return 0; } @@ -557,19 +553,24 @@ /* Ignored (never implemented properly) */ break; case Opt_utf8: - uopt->flags |= (1 << UDF_FLAG_UTF8); + if (!remount) { + unload_nls(uopt->nls_map); + uopt->nls_map = NULL; + } break; case Opt_iocharset: if (!remount) { - if (uopt->nls_map) - unload_nls(uopt->nls_map); - /* - * load_nls() failure is handled later in - * udf_fill_super() after all options are - * parsed. - */ + unload_nls(uopt->nls_map); + uopt->nls_map = NULL; + } + /* When nls_map is not loaded then UTF-8 is used */ + if (!remount && strcmp(args[0].from, "utf8") != 0) { uopt->nls_map = load_nls(args[0].from); - uopt->flags |= (1 << UDF_FLAG_NLS_MAP); + if (!uopt->nls_map) { + pr_err("iocharset %s not found\n", + args[0].from); + return 0; + } } break; case Opt_uforget: @@ -1548,6 +1549,7 @@ struct udf_sb_info *sbi = UDF_SB(sb); struct logicalVolIntegrityDesc *lvid; int indirections = 0; + u32 parts, impuselen; while (++indirections <= UDF_MAX_LVID_NESTING) { final_bh = NULL; @@ -1574,15 +1576,27 @@ lvid = (struct logicalVolIntegrityDesc *)final_bh->b_data; if (lvid->nextIntegrityExt.extLength == 0) - return; + goto check; loc = leea_to_cpu(lvid->nextIntegrityExt); } udf_warn(sb, "Too many LVID indirections (max %u), ignoring.\n", UDF_MAX_LVID_NESTING); +out_err: brelse(sbi->s_lvid_bh); sbi->s_lvid_bh = NULL; + return; +check: + parts = le32_to_cpu(lvid->numOfPartitions); + impuselen = le32_to_cpu(lvid->lengthOfImpUse); + if (parts >= sb->s_blocksize || impuselen >= sb->s_blocksize || + sizeof(struct logicalVolIntegrityDesc) + impuselen + + 2 * parts * sizeof(u32) > sb->s_blocksize) { + udf_warn(sb, "Corrupted LVID (parts=%u, impuselen=%u), " + "ignoring.\n", parts, impuselen); + goto out_err; + } } /* @@ -2145,21 +2159,6 @@ if (!udf_parse_options((char *)options, &uopt, false)) goto parse_options_failure; - if (uopt.flags & (1 << UDF_FLAG_UTF8) && - uopt.flags & (1 << UDF_FLAG_NLS_MAP)) { - udf_err(sb, "utf8 cannot be combined with iocharset\n"); - goto parse_options_failure; - } - if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) { - uopt.nls_map = load_nls_default(); - if (!uopt.nls_map) - uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP); - else - udf_debug("Using default NLS map\n"); - } - if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP))) - uopt.flags |= (1 << UDF_FLAG_UTF8); - fileset.logicalBlockNum = 0xFFFFFFFF; fileset.partitionReferenceNum = 0xFFFF; @@ -2314,8 +2313,7 @@ error_out: iput(sbi->s_vat_inode); parse_options_failure: - if (uopt.nls_map) - unload_nls(uopt.nls_map); + unload_nls(uopt.nls_map); if (lvid_open) udf_close_lvid(sb); brelse(sbi->s_lvid_bh); @@ -2365,8 +2363,7 @@ sbi = UDF_SB(sb); iput(sbi->s_vat_inode); - if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP)) - unload_nls(sbi->s_nls_map); + unload_nls(sbi->s_nls_map); if (!sb_rdonly(sb)) udf_close_lvid(sb); brelse(sbi->s_lvid_bh); diff -u linux-azure-5.4.0/fs/userfaultfd.c linux-azure-5.4.0/fs/userfaultfd.c --- linux-azure-5.4.0/fs/userfaultfd.c +++ linux-azure-5.4.0/fs/userfaultfd.c @@ -32,11 +32,6 @@ static struct kmem_cache *userfaultfd_ctx_cachep __read_mostly; -enum userfaultfd_state { - UFFD_STATE_WAIT_API, - UFFD_STATE_RUNNING, -}; - /* * Start with fault_pending_wqh and fault_wqh so they're more likely * to be in the same cacheline. @@ -68,8 +63,6 @@ unsigned int flags; /* features requested from the userspace */ unsigned int features; - /* state machine */ - enum userfaultfd_state state; /* released */ bool released; /* memory mappings are changing because of non-cooperative event */ @@ -103,6 +96,14 @@ unsigned long len; }; +/* internal indication that UFFD_API ioctl was successfully executed */ +#define UFFD_FEATURE_INITIALIZED (1u << 31) + +static bool userfaultfd_is_initialized(struct userfaultfd_ctx *ctx) +{ + return ctx->features & UFFD_FEATURE_INITIALIZED; +} + static int userfaultfd_wake_function(wait_queue_entry_t *wq, unsigned mode, int wake_flags, void *key) { @@ -699,7 +700,6 @@ refcount_set(&ctx->refcount, 1); ctx->flags = octx->flags; - ctx->state = UFFD_STATE_RUNNING; ctx->features = octx->features; ctx->released = false; ctx->mmap_changing = false; @@ -980,38 +980,33 @@ poll_wait(file, &ctx->fd_wqh, wait); - switch (ctx->state) { - case UFFD_STATE_WAIT_API: + if (!userfaultfd_is_initialized(ctx)) return EPOLLERR; - case UFFD_STATE_RUNNING: - /* - * poll() never guarantees that read won't block. - * userfaults can be waken before they're read(). - */ - if (unlikely(!(file->f_flags & O_NONBLOCK))) - return EPOLLERR; - /* - * lockless access to see if there are pending faults - * __pollwait last action is the add_wait_queue but - * the spin_unlock would allow the waitqueue_active to - * pass above the actual list_add inside - * add_wait_queue critical section. So use a full - * memory barrier to serialize the list_add write of - * add_wait_queue() with the waitqueue_active read - * below. - */ - ret = 0; - smp_mb(); - if (waitqueue_active(&ctx->fault_pending_wqh)) - ret = EPOLLIN; - else if (waitqueue_active(&ctx->event_wqh)) - ret = EPOLLIN; - - return ret; - default: - WARN_ON_ONCE(1); + + /* + * poll() never guarantees that read won't block. + * userfaults can be waken before they're read(). + */ + if (unlikely(!(file->f_flags & O_NONBLOCK))) return EPOLLERR; - } + /* + * lockless access to see if there are pending faults + * __pollwait last action is the add_wait_queue but + * the spin_unlock would allow the waitqueue_active to + * pass above the actual list_add inside + * add_wait_queue critical section. So use a full + * memory barrier to serialize the list_add write of + * add_wait_queue() with the waitqueue_active read + * below. + */ + ret = 0; + smp_mb(); + if (waitqueue_active(&ctx->fault_pending_wqh)) + ret = EPOLLIN; + else if (waitqueue_active(&ctx->event_wqh)) + ret = EPOLLIN; + + return ret; } static const struct file_operations userfaultfd_fops; @@ -1023,7 +1018,7 @@ int fd; fd = anon_inode_getfd("[userfaultfd]", &userfaultfd_fops, new, - O_RDWR | (new->flags & UFFD_SHARED_FCNTL_FLAGS)); + O_RDONLY | (new->flags & UFFD_SHARED_FCNTL_FLAGS)); if (fd < 0) return fd; @@ -1205,7 +1200,7 @@ struct uffd_msg msg; int no_wait = file->f_flags & O_NONBLOCK; - if (ctx->state == UFFD_STATE_WAIT_API) + if (!userfaultfd_is_initialized(ctx)) return -EINVAL; for (;;) { @@ -1272,23 +1267,21 @@ } static __always_inline int validate_range(struct mm_struct *mm, - __u64 *start, __u64 len) + __u64 start, __u64 len) { __u64 task_size = mm->task_size; - *start = untagged_addr(*start); - - if (*start & ~PAGE_MASK) + if (start & ~PAGE_MASK) return -EINVAL; if (len & ~PAGE_MASK) return -EINVAL; if (!len) return -EINVAL; - if (*start < mmap_min_addr) + if (start < mmap_min_addr) return -EINVAL; - if (*start >= task_size) + if (start >= task_size) return -EINVAL; - if (len > task_size - *start) + if (len > task_size - start) return -EINVAL; return 0; } @@ -1338,7 +1331,7 @@ goto out; } - ret = validate_range(mm, &uffdio_register.range.start, + ret = validate_range(mm, uffdio_register.range.start, uffdio_register.range.len); if (ret) goto out; @@ -1527,7 +1520,7 @@ if (copy_from_user(&uffdio_unregister, buf, sizeof(uffdio_unregister))) goto out; - ret = validate_range(mm, &uffdio_unregister.start, + ret = validate_range(mm, uffdio_unregister.start, uffdio_unregister.len); if (ret) goto out; @@ -1678,7 +1671,7 @@ if (copy_from_user(&uffdio_wake, buf, sizeof(uffdio_wake))) goto out; - ret = validate_range(ctx->mm, &uffdio_wake.start, uffdio_wake.len); + ret = validate_range(ctx->mm, uffdio_wake.start, uffdio_wake.len); if (ret) goto out; @@ -1718,7 +1711,7 @@ sizeof(uffdio_copy)-sizeof(__s64))) goto out; - ret = validate_range(ctx->mm, &uffdio_copy.dst, uffdio_copy.len); + ret = validate_range(ctx->mm, uffdio_copy.dst, uffdio_copy.len); if (ret) goto out; /* @@ -1774,7 +1767,7 @@ sizeof(uffdio_zeropage)-sizeof(__s64))) goto out; - ret = validate_range(ctx->mm, &uffdio_zeropage.range.start, + ret = validate_range(ctx->mm, uffdio_zeropage.range.start, uffdio_zeropage.range.len); if (ret) goto out; @@ -1809,9 +1802,10 @@ static inline unsigned int uffd_ctx_features(__u64 user_features) { /* - * For the current set of features the bits just coincide + * For the current set of features the bits just coincide. Set + * UFFD_FEATURE_INITIALIZED to mark the features as enabled. */ - return (unsigned int)user_features; + return (unsigned int)user_features | UFFD_FEATURE_INITIALIZED; } /* @@ -1824,12 +1818,10 @@ { struct uffdio_api uffdio_api; void __user *buf = (void __user *)arg; + unsigned int ctx_features; int ret; __u64 features; - ret = -EINVAL; - if (ctx->state != UFFD_STATE_WAIT_API) - goto out; ret = -EFAULT; if (copy_from_user(&uffdio_api, buf, sizeof(uffdio_api))) goto out; @@ -1846,9 +1838,13 @@ ret = -EFAULT; if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api))) goto out; - ctx->state = UFFD_STATE_RUNNING; + /* only enable the requested features for this uffd context */ - ctx->features = uffd_ctx_features(features); + ctx_features = uffd_ctx_features(features); + ret = -EINVAL; + if (cmpxchg(&ctx->features, 0, ctx_features) != 0) + goto err_out; + ret = 0; out: return ret; @@ -1865,7 +1861,7 @@ int ret = -EINVAL; struct userfaultfd_ctx *ctx = file->private_data; - if (cmd != UFFDIO_API && ctx->state == UFFD_STATE_WAIT_API) + if (cmd != UFFDIO_API && !userfaultfd_is_initialized(ctx)) return -EINVAL; switch(cmd) { @@ -1966,7 +1962,6 @@ refcount_set(&ctx->refcount, 1); ctx->flags = flags; ctx->features = 0; - ctx->state = UFFD_STATE_WAIT_API; ctx->released = false; ctx->mmap_changing = false; ctx->mm = current->mm; @@ -1974,7 +1969,7 @@ mmgrab(ctx->mm); fd = anon_inode_getfd("[userfaultfd]", &userfaultfd_fops, ctx, - O_RDWR | (flags & UFFD_SHARED_FCNTL_FLAGS)); + O_RDONLY | (flags & UFFD_SHARED_FCNTL_FLAGS)); if (fd < 0) { mmdrop(ctx->mm); kmem_cache_free(userfaultfd_ctx_cachep, ctx); diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_alloc.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_alloc.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_alloc.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_alloc.c @@ -684,8 +684,10 @@ xfs_trans_agblocks_delta(tp, len); if (unlikely(be32_to_cpu(agf->agf_freeblks) > - be32_to_cpu(agf->agf_length))) + be32_to_cpu(agf->agf_length))) { + xfs_buf_mark_corrupt(agbp); return -EFSCORRUPTED; + } xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS); return 0; @@ -751,6 +753,7 @@ bp = xfs_btree_get_bufs(args->mp, args->tp, args->agno, fbno); if (!bp) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, args->mp); error = -EFSCORRUPTED; goto error; } @@ -1995,24 +1998,32 @@ return pag->pagf_flcount > 0 || pag->pagf_longest > 0; } +/* + * Compute the minimum length of the AGFL in the given AG. If @pag is NULL, + * return the largest possible minimum length. + */ unsigned int xfs_alloc_min_freelist( struct xfs_mount *mp, struct xfs_perag *pag) { + /* AG btrees have at least 1 level. */ + static const uint8_t fake_levels[XFS_BTNUM_AGF] = {1, 1, 1}; + const uint8_t *levels = pag ? pag->pagf_levels : fake_levels; unsigned int min_free; + ASSERT(mp->m_ag_maxlevels > 0); + /* space needed by-bno freespace btree */ - min_free = min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_BNOi] + 1, + min_free = min_t(unsigned int, levels[XFS_BTNUM_BNOi] + 1, mp->m_ag_maxlevels); /* space needed by-size freespace btree */ - min_free += min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_CNTi] + 1, + min_free += min_t(unsigned int, levels[XFS_BTNUM_CNTi] + 1, mp->m_ag_maxlevels); /* space needed reverse mapping used space btree */ if (xfs_sb_version_hasrmapbt(&mp->m_sb)) - min_free += min_t(unsigned int, - pag->pagf_levels[XFS_BTNUM_RMAPi] + 1, - mp->m_rmap_maxlevels); + min_free += min_t(unsigned int, levels[XFS_BTNUM_RMAPi] + 1, + mp->m_rmap_maxlevels); return min_free; } @@ -2087,8 +2098,10 @@ return error; bp = xfs_btree_get_bufs(tp->t_mountp, tp, agno, agbno); - if (!bp) + if (!bp) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, tp->t_mountp); return -EFSCORRUPTED; + } xfs_trans_binval(tp, bp); return 0; diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_attr_leaf.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_attr_leaf.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_attr_leaf.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_attr_leaf.c @@ -251,14 +251,6 @@ return fa; /* - * In recovery there is a transient state where count == 0 is valid - * because we may have transitioned an empty shortform attr to a leaf - * if the attr didn't fit in shortform. - */ - if (!xfs_log_in_recovery(mp) && ichdr.count == 0) - return __this_address; - - /* * firstused is the block offset of the first name info structure. * Make sure it doesn't go off the block or crash into the header. */ @@ -2287,8 +2279,10 @@ leaf = bp->b_addr; xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); entries = xfs_attr3_leaf_entryp(leaf); - if (ichdr.count >= args->geo->blksize / 8) + if (ichdr.count >= args->geo->blksize / 8) { + xfs_buf_mark_corrupt(bp); return -EFSCORRUPTED; + } /* * Binary search. (note: small blocks will skip this loop) @@ -2304,10 +2298,14 @@ else break; } - if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count))) + if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count))) { + xfs_buf_mark_corrupt(bp); return -EFSCORRUPTED; - if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval)) + } + if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval)) { + xfs_buf_mark_corrupt(bp); return -EFSCORRUPTED; + } /* * Since we may have duplicate hashval's, find the first matching @@ -2339,8 +2337,8 @@ * If we are looking for INCOMPLETE entries, show only those. * If we are looking for complete entries, show only those. */ - if ((args->flags & XFS_ATTR_INCOMPLETE) != - (entry->flags & XFS_ATTR_INCOMPLETE)) { + if (!!(args->op_flags & XFS_DA_OP_INCOMPLETE) != + !!(entry->flags & XFS_ATTR_INCOMPLETE)) { continue; } if (entry->flags & XFS_ATTR_LOCAL) { diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.c @@ -729,6 +729,7 @@ xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L); abp = xfs_btree_get_bufl(mp, tp, args.fsbno); if (!abp) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); error = -EFSCORRUPTED; goto out_unreserve_dquot; } @@ -1084,6 +1085,7 @@ if (XFS_IFORK_Q(ip)) goto trans_cancel; if (ip->i_d.di_anextents != 0) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); error = -EFSCORRUPTED; goto trans_cancel; } @@ -1374,7 +1376,8 @@ case XFS_DINODE_FMT_EXTENTS: break; default: - return -EIO; + ASSERT(0); + return -EFSCORRUPTED; } if (!(ifp->if_flags & XFS_IFEXTENTS)) { @@ -1474,8 +1477,10 @@ return 0; if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE && - XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) - return -EIO; + XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS) { + ASSERT(0); + return -EFSCORRUPTED; + } error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty); if (error || is_empty) @@ -5871,8 +5876,9 @@ XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock), del_cursor); - if (stop_fsb >= got.br_startoff + got.br_blockcount) { - error = -EIO; + if (stop_fsb > got.br_startoff) { + ASSERT(0); + error = -EFSCORRUPTED; goto del_cursor; } @@ -5919,8 +5925,8 @@ * @split_fsb is a block where the extents is split. If split_fsb lies in a * hole or the first block of extents, just return 0. */ -STATIC int -xfs_bmap_split_extent_at( +int +xfs_bmap_split_extent( struct xfs_trans *tp, struct xfs_inode *ip, xfs_fileoff_t split_fsb) @@ -6031,34 +6037,6 @@ return error; } -int -xfs_bmap_split_extent( - struct xfs_inode *ip, - xfs_fileoff_t split_fsb) -{ - struct xfs_mount *mp = ip->i_mount; - struct xfs_trans *tp; - int error; - - error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, - XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp); - if (error) - return error; - - xfs_ilock(ip, XFS_ILOCK_EXCL); - xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); - - error = xfs_bmap_split_extent_at(tp, ip, split_fsb); - if (error) - goto out; - - return xfs_trans_commit(tp); - -out: - xfs_trans_cancel(tp); - return error; -} - /* Deferred mapping is only for real extents in the data fork. */ static bool xfs_bmap_is_update_needed( diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.h linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.h --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.h +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_bmap.h @@ -222,7 +222,8 @@ int xfs_bmap_insert_extents(struct xfs_trans *tp, struct xfs_inode *ip, xfs_fileoff_t *next_fsb, xfs_fileoff_t offset_shift_fsb, bool *done, xfs_fileoff_t stop_fsb); -int xfs_bmap_split_extent(struct xfs_inode *ip, xfs_fileoff_t split_offset); +int xfs_bmap_split_extent(struct xfs_trans *tp, struct xfs_inode *ip, + xfs_fileoff_t split_offset); int xfs_bmapi_reserve_delalloc(struct xfs_inode *ip, int whichfork, xfs_fileoff_t off, xfs_filblks_t len, xfs_filblks_t prealloc, struct xfs_bmbt_irec *got, struct xfs_iext_cursor *cur, diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_node.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_node.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_node.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_node.c @@ -208,7 +208,7 @@ /* Check things that we can't do in the verifier. */ fa = xfs_dir3_free_header_check(dp, fbno, *bpp); if (fa) { - xfs_verifier_error(*bpp, -EFSCORRUPTED, fa); + __xfs_buf_mark_corrupt(*bpp, fa); xfs_trans_brelse(tp, *bpp); *bpp = NULL; return -EFSCORRUPTED; @@ -374,8 +374,10 @@ leaf = lbp->b_addr; ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); if (be32_to_cpu(ltp->bestcount) > - (uint)dp->i_d.di_size / args->geo->blksize) + (uint)dp->i_d.di_size / args->geo->blksize) { + xfs_buf_mark_corrupt(lbp); return -EFSCORRUPTED; + } /* * Copy freespace entries from the leaf block to the new block. @@ -446,8 +448,10 @@ * Quick check just to make sure we are not going to index * into other peoples memory */ - if (index < 0) + if (index < 0) { + xfs_buf_mark_corrupt(bp); return -EFSCORRUPTED; + } /* * If there are already the maximum number of leaf entries in @@ -740,8 +744,10 @@ ents = dp->d_ops->leaf_ents_p(leaf); xfs_dir3_leaf_check(dp, bp); - if (leafhdr.count <= 0) + if (leafhdr.count <= 0) { + xfs_buf_mark_corrupt(bp); return -EFSCORRUPTED; + } /* * Look up the hash value in the leaf entries. diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_sf.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_sf.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_sf.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_dir2_sf.c @@ -945,6 +945,27 @@ } /* + * Check whether the sf dir replace operation need more blocks. + */ +static bool +xfs_dir2_sf_replace_needblock( + struct xfs_inode *dp, + xfs_ino_t inum) +{ + int newsize; + struct xfs_dir2_sf_hdr *sfp; + + if (dp->i_d.di_format != XFS_DINODE_FMT_LOCAL) + return false; + + sfp = (struct xfs_dir2_sf_hdr *)dp->i_df.if_u1.if_data; + newsize = dp->i_df.if_bytes + (sfp->count + 1) * XFS_INO64_DIFF; + + return inum > XFS_DIR2_MAX_SHORT_INUM && + sfp->i8count == 0 && newsize > XFS_IFORK_DSIZE(dp); +} + +/* * Replace the inode number of an entry in a shortform directory. */ int /* error */ @@ -980,17 +1001,14 @@ */ if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && sfp->i8count == 0) { int error; /* error return value */ - int newsize; /* new inode size */ - newsize = dp->i_df.if_bytes + (sfp->count + 1) * XFS_INO64_DIFF; /* * Won't fit as shortform, convert to block then do replace. */ - if (newsize > XFS_IFORK_DSIZE(dp)) { + if (xfs_dir2_sf_replace_needblock(dp, args->inumber)) { error = xfs_dir2_sf_to_block(args); - if (error) { + if (error) return error; - } return xfs_dir2_block_replace(args); } /* diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_ialloc.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_ialloc.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_ialloc.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_ialloc.c @@ -2856,0 +2857,64 @@ + +/* Compute the location of the root directory inode that is laid out by mkfs. */ +xfs_ino_t +xfs_ialloc_calc_rootino( + struct xfs_mount *mp, + int sunit) +{ + struct xfs_ino_geometry *igeo = M_IGEO(mp); + xfs_agblock_t first_bno; + + /* + * Pre-calculate the geometry of AG 0. We know what it looks like + * because libxfs knows how to create allocation groups now. + * + * first_bno is the first block in which mkfs could possibly have + * allocated the root directory inode, once we factor in the metadata + * that mkfs formats before it. Namely, the four AG headers... + */ + first_bno = howmany(4 * mp->m_sb.sb_sectsize, mp->m_sb.sb_blocksize); + + /* ...the two free space btree roots... */ + first_bno += 2; + + /* ...the inode btree root... */ + first_bno += 1; + + /* ...the initial AGFL... */ + first_bno += xfs_alloc_min_freelist(mp, NULL); + + /* ...the free inode btree root... */ + if (xfs_sb_version_hasfinobt(&mp->m_sb)) + first_bno++; + + /* ...the reverse mapping btree root... */ + if (xfs_sb_version_hasrmapbt(&mp->m_sb)) + first_bno++; + + /* ...the reference count btree... */ + if (xfs_sb_version_hasreflink(&mp->m_sb)) + first_bno++; + + /* + * ...and the log, if it is allocated in the first allocation group. + * + * This can happen with filesystems that only have a single + * allocation group, or very odd geometries created by old mkfs + * versions on very small filesystems. + */ + if (mp->m_sb.sb_logstart && + XFS_FSB_TO_AGNO(mp, mp->m_sb.sb_logstart) == 0) + first_bno += mp->m_sb.sb_logblocks; + + /* + * Now round first_bno up to whatever allocation alignment is given + * by the filesystem or was passed in. + */ + if (xfs_sb_version_hasdalign(&mp->m_sb) && igeo->ialloc_align > 0) + first_bno = roundup(first_bno, sunit); + else if (xfs_sb_version_hasalign(&mp->m_sb) && + mp->m_sb.sb_inoalignmt > 1) + first_bno = roundup(first_bno, mp->m_sb.sb_inoalignmt); + + return XFS_AGINO_TO_INO(mp, 0, XFS_AGB_TO_AGINO(mp, first_bno)); +} diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_inode_fork.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_inode_fork.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_inode_fork.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_inode_fork.c @@ -75,11 +75,15 @@ error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK); break; default: + xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, + dip, sizeof(*dip), __this_address); return -EFSCORRUPTED; } break; default: + xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, dip, + sizeof(*dip), __this_address); return -EFSCORRUPTED; } if (error) @@ -110,6 +114,8 @@ error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK); break; default: + xfs_inode_verifier_error(ip, error, __func__, dip, + sizeof(*dip), __this_address); error = -EFSCORRUPTED; break; } diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_rtbitmap.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_rtbitmap.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_rtbitmap.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_rtbitmap.c @@ -15,7 +15,7 @@ #include "xfs_bmap.h" #include "xfs_trans.h" #include "xfs_rtalloc.h" - +#include "xfs_error.h" /* * Realtime allocator bitmap functions shared with userspace. @@ -70,8 +70,10 @@ if (error) return error; - if (nmap == 0 || !xfs_bmap_is_real_extent(&map)) + if (nmap == 0 || !xfs_bmap_is_real_extent(&map)) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp); return -EFSCORRUPTED; + } ASSERT(map.br_startblock != NULLFSBLOCK); error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, diff -u linux-azure-5.4.0/fs/xfs/libxfs/xfs_trans_resv.c linux-azure-5.4.0/fs/xfs/libxfs/xfs_trans_resv.c --- linux-azure-5.4.0/fs/xfs/libxfs/xfs_trans_resv.c +++ linux-azure-5.4.0/fs/xfs/libxfs/xfs_trans_resv.c @@ -776,7 +776,7 @@ /* * Adjusting quota limits. - * the xfs_disk_dquot_t: sizeof(struct xfs_disk_dquot) + * the disk quota buffer: sizeof(struct xfs_disk_dquot) */ STATIC uint xfs_calc_qm_setqlim_reservation(void) @@ -800,7 +800,7 @@ /* * Turning off quotas. - * the xfs_qoff_logitem_t: sizeof(struct xfs_qoff_logitem) * 2 + * the quota off logitems: sizeof(struct xfs_qoff_logitem) * 2 * the superblock for the quota flags: sector size */ STATIC uint @@ -813,7 +813,7 @@ /* * End of turning off quotas. - * the xfs_qoff_logitem_t: sizeof(struct xfs_qoff_logitem) * 2 + * the quota off logitems: sizeof(struct xfs_qoff_logitem) * 2 */ STATIC uint xfs_calc_qm_quotaoff_end_reservation(void) diff -u linux-azure-5.4.0/fs/xfs/xfs_bmap_util.c linux-azure-5.4.0/fs/xfs/xfs_bmap_util.c --- linux-azure-5.4.0/fs/xfs/xfs_bmap_util.c +++ linux-azure-5.4.0/fs/xfs/xfs_bmap_util.c @@ -1167,6 +1167,7 @@ struct xfs_inode *ip, loff_t offset) { + struct xfs_mount *mp = ip->i_mount; int error; /* @@ -1180,6 +1181,17 @@ } /* + * Shift operations must stabilize the start block offset boundary along + * with the full range of the operation. If we don't, a COW writeback + * completion could race with an insert, front merge with the start + * extent (after split) during the shift and corrupt the file. Start + * with the block just prior to the start to stabilize the boundary. + */ + offset = round_down(offset, 1 << mp->m_sb.sb_blocklog); + if (offset) + offset -= (1 << mp->m_sb.sb_blocklog); + + /* * Writeback and invalidate cache for the remainder of the file as we're * about to shift down every extent from offset to EOF. */ @@ -1225,7 +1237,6 @@ int error; xfs_fileoff_t next_fsb = XFS_B_TO_FSB(mp, offset + len); xfs_fileoff_t shift_fsb = XFS_B_TO_FSB(mp, len); - uint resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0); bool done = false; ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL)); @@ -1241,32 +1252,34 @@ if (error) return error; - while (!error && !done) { - error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0, 0, - &tp); - if (error) - break; + error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, &tp); + if (error) + return error; - xfs_ilock(ip, XFS_ILOCK_EXCL); - error = xfs_trans_reserve_quota(tp, mp, ip->i_udquot, - ip->i_gdquot, ip->i_pdquot, resblks, 0, - XFS_QMOPT_RES_REGBLKS); - if (error) - goto out_trans_cancel; - xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); + xfs_ilock(ip, XFS_ILOCK_EXCL); + xfs_trans_ijoin(tp, ip, 0); + while (!done) { error = xfs_bmap_collapse_extents(tp, ip, &next_fsb, shift_fsb, &done); if (error) goto out_trans_cancel; + if (done) + break; - error = xfs_trans_commit(tp); + /* finish any deferred frees and roll the transaction */ + error = xfs_defer_finish(&tp); + if (error) + goto out_trans_cancel; } + error = xfs_trans_commit(tp); + xfs_iunlock(ip, XFS_ILOCK_EXCL); return error; out_trans_cancel: xfs_trans_cancel(tp); + xfs_iunlock(ip, XFS_ILOCK_EXCL); return error; } @@ -1309,35 +1322,41 @@ if (error) return error; + error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, + XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp); + if (error) + return error; + + xfs_ilock(ip, XFS_ILOCK_EXCL); + xfs_trans_ijoin(tp, ip, 0); + /* * The extent shifting code works on extent granularity. So, if stop_fsb * is not the starting block of extent, we need to split the extent at * stop_fsb. */ - error = xfs_bmap_split_extent(ip, stop_fsb); + error = xfs_bmap_split_extent(tp, ip, stop_fsb); if (error) - return error; + goto out_trans_cancel; - while (!error && !done) { - error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0, 0, - &tp); + do { + error = xfs_defer_finish(&tp); if (error) - break; + goto out_trans_cancel; - xfs_ilock(ip, XFS_ILOCK_EXCL); - xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); error = xfs_bmap_insert_extents(tp, ip, &next_fsb, shift_fsb, &done, stop_fsb); if (error) goto out_trans_cancel; + } while (!done); - error = xfs_trans_commit(tp); - } - + error = xfs_trans_commit(tp); + xfs_iunlock(ip, XFS_ILOCK_EXCL); return error; out_trans_cancel: xfs_trans_cancel(tp); + xfs_iunlock(ip, XFS_ILOCK_EXCL); return error; } diff -u linux-azure-5.4.0/fs/xfs/xfs_buf.c linux-azure-5.4.0/fs/xfs/xfs_buf.c --- linux-azure-5.4.0/fs/xfs/xfs_buf.c +++ linux-azure-5.4.0/fs/xfs/xfs_buf.c @@ -1547,6 +1547,28 @@ } /* + * Log a message about and stale a buffer that a caller has decided is corrupt. + * + * This function should be called for the kinds of metadata corruption that + * cannot be detect from a verifier, such as incorrect inter-block relationship + * data. Do /not/ call this function from a verifier function. + * + * The buffer must be XBF_DONE prior to the call. Afterwards, the buffer will + * be marked stale, but b_error will not be set. The caller is responsible for + * releasing the buffer or fixing it. + */ +void +__xfs_buf_mark_corrupt( + struct xfs_buf *bp, + xfs_failaddr_t fa) +{ + ASSERT(bp->b_flags & XBF_DONE); + + xfs_buf_corruption_error(bp, fa); + xfs_buf_stale(bp); +} + +/* * Handling of buffer targets (buftargs). */ diff -u linux-azure-5.4.0/fs/xfs/xfs_dquot.c linux-azure-5.4.0/fs/xfs/xfs_dquot.c --- linux-azure-5.4.0/fs/xfs/xfs_dquot.c +++ linux-azure-5.4.0/fs/xfs/xfs_dquot.c @@ -48,7 +48,7 @@ */ void xfs_qm_dqdestroy( - xfs_dquot_t *dqp) + struct xfs_dquot *dqp) { ASSERT(list_empty(&dqp->q_lru)); @@ -113,8 +113,8 @@ */ void xfs_qm_adjust_dqtimers( - xfs_mount_t *mp, - xfs_disk_dquot_t *d) + struct xfs_mount *mp, + struct xfs_disk_dquot *d) { ASSERT(d->d_id); @@ -205,16 +205,18 @@ */ STATIC void xfs_qm_init_dquot_blk( - xfs_trans_t *tp, - xfs_mount_t *mp, - xfs_dqid_t id, - uint type, - xfs_buf_t *bp) + struct xfs_trans *tp, + struct xfs_mount *mp, + xfs_dqid_t id, + uint type, + struct xfs_buf *bp) { struct xfs_quotainfo *q = mp->m_quotainfo; - xfs_dqblk_t *d; - xfs_dqid_t curid; - int i; + struct xfs_dqblk *d; + xfs_dqid_t curid; + unsigned int qflag; + unsigned int blftype; + int i; ASSERT(tp); ASSERT(xfs_buf_islocked(bp)); @@ -238,11 +240,39 @@ } } - xfs_trans_dquot_buf(tp, bp, - (type & XFS_DQ_USER ? XFS_BLF_UDQUOT_BUF : - ((type & XFS_DQ_PROJ) ? XFS_BLF_PDQUOT_BUF : - XFS_BLF_GDQUOT_BUF))); - xfs_trans_log_buf(tp, bp, 0, BBTOB(q->qi_dqchunklen) - 1); + if (type & XFS_DQ_USER) { + qflag = XFS_UQUOTA_CHKD; + blftype = XFS_BLF_UDQUOT_BUF; + } else if (type & XFS_DQ_PROJ) { + qflag = XFS_PQUOTA_CHKD; + blftype = XFS_BLF_PDQUOT_BUF; + } else { + qflag = XFS_GQUOTA_CHKD; + blftype = XFS_BLF_GDQUOT_BUF; + } + + xfs_trans_dquot_buf(tp, bp, blftype); + + /* + * quotacheck uses delayed writes to update all the dquots on disk in an + * efficient manner instead of logging the individual dquot changes as + * they are made. However if we log the buffer allocated here and crash + * after quotacheck while the logged initialisation is still in the + * active region of the log, log recovery can replay the dquot buffer + * initialisation over the top of the checked dquots and corrupt quota + * accounting. + * + * To avoid this problem, quotacheck cannot log the initialised buffer. + * We must still dirty the buffer and write it back before the + * allocation transaction clears the log. Therefore, mark the buffer as + * ordered instead of logging it directly. This is safe for quotacheck + * because it detects and repairs allocated but initialized dquot blocks + * in the quota inodes. + */ + if (!(mp->m_qflags & qflag)) + xfs_trans_ordered_buf(tp, bp); + else + xfs_trans_log_buf(tp, bp, 0, BBTOB(q->qi_dqchunklen) - 1); } /* @@ -497,7 +527,7 @@ struct xfs_disk_dquot *ddqp = bp->b_addr + dqp->q_bufoffset; /* copy everything from disk dquot to the incore dquot */ - memcpy(&dqp->q_core, ddqp, sizeof(xfs_disk_dquot_t)); + memcpy(&dqp->q_core, ddqp, sizeof(struct xfs_disk_dquot)); /* * Reservation counters are defined as reservation plus current usage @@ -829,11 +859,11 @@ { switch (type) { case XFS_DQ_USER: - return ip->i_d.di_uid; + return xfs_kuid_to_uid(VFS_I(ip)->i_uid); case XFS_DQ_GROUP: - return ip->i_d.di_gid; + return xfs_kgid_to_gid(VFS_I(ip)->i_gid); case XFS_DQ_PROJ: - return xfs_get_projid(ip); + return ip->i_d.di_projid; } ASSERT(0); return 0; @@ -989,7 +1019,7 @@ */ void xfs_qm_dqrele( - xfs_dquot_t *dqp) + struct xfs_dquot *dqp) { if (!dqp) return; @@ -1018,8 +1048,8 @@ struct xfs_buf *bp, struct xfs_log_item *lip) { - xfs_dq_logitem_t *qip = (struct xfs_dq_logitem *)lip; - xfs_dquot_t *dqp = qip->qli_dquot; + struct xfs_dq_logitem *qip = (struct xfs_dq_logitem *)lip; + struct xfs_dquot *dqp = qip->qli_dquot; struct xfs_ail *ailp = lip->li_ailp; /* @@ -1105,8 +1135,8 @@ * Get the buffer containing the on-disk dquot */ error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, dqp->q_blkno, - mp->m_quotainfo->qi_dqchunklen, 0, &bp, - &xfs_dquot_buf_ops); + mp->m_quotainfo->qi_dqchunklen, XBF_TRYLOCK, + &bp, &xfs_dquot_buf_ops); if (error) goto out_unlock; @@ -1125,11 +1155,11 @@ xfs_buf_relse(bp); xfs_dqfunlock(dqp); xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); - return -EIO; + return -EFSCORRUPTED; } /* This is the only portion of data that needs to persist */ - memcpy(ddqp, &dqp->q_core, sizeof(xfs_disk_dquot_t)); + memcpy(ddqp, &dqp->q_core, sizeof(struct xfs_disk_dquot)); /* * Clear the dirty field and remember the flush lsn for later use. @@ -1176,7 +1206,7 @@ out_unlock: xfs_dqfunlock(dqp); - return -EIO; + return error; } /* @@ -1187,8 +1217,8 @@ */ void xfs_dqlock2( - xfs_dquot_t *d1, - xfs_dquot_t *d2) + struct xfs_dquot *d1, + struct xfs_dquot *d2) { if (d1 && d2) { ASSERT(d1 != d2); diff -u linux-azure-5.4.0/fs/xfs/xfs_file.c linux-azure-5.4.0/fs/xfs/xfs_file.c --- linux-azure-5.4.0/fs/xfs/xfs_file.c +++ linux-azure-5.4.0/fs/xfs/xfs_file.c @@ -80,19 +80,9 @@ int datasync) { struct xfs_inode *ip = XFS_I(file->f_mapping->host); - struct xfs_mount *mp = ip->i_mount; - xfs_lsn_t lsn = 0; trace_xfs_dir_fsync(ip); - - xfs_ilock(ip, XFS_ILOCK_SHARED); - if (xfs_ipincount(ip)) - lsn = ip->i_itemp->ili_last_lsn; - xfs_iunlock(ip, XFS_ILOCK_SHARED); - - if (!lsn) - return 0; - return xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL); + return xfs_log_force_inode(ip); } STATIC int @@ -187,7 +177,12 @@ file_accessed(iocb->ki_filp); - xfs_ilock(ip, XFS_IOLOCK_SHARED); + if (iocb->ki_flags & IOCB_NOWAIT) { + if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED)) + return -EAGAIN; + } else { + xfs_ilock(ip, XFS_IOLOCK_SHARED); + } ret = iomap_dio_rw(iocb, to, &xfs_iomap_ops, NULL); xfs_iunlock(ip, XFS_IOLOCK_SHARED); @@ -995,6 +990,21 @@ return ret; } +/* Does this file, inode, or mount want synchronous writes? */ +static inline bool xfs_file_sync_writes(struct file *filp) +{ + struct xfs_inode *ip = XFS_I(file_inode(filp)); + + if (ip->i_mount->m_flags & XFS_MOUNT_WSYNC) + return true; + if (filp->f_flags & (__O_SYNC | O_DSYNC)) + return true; + if (IS_SYNC(file_inode(filp))) + return true; + + return false; +} + STATIC loff_t xfs_file_remap_range( struct file *file_in, @@ -1049,7 +1059,11 @@ ret = xfs_reflink_update_dest(dest, pos_out + len, cowextsize, remap_flags); + if (ret) + goto out_unlock; + if (xfs_file_sync_writes(file_in) || xfs_file_sync_writes(file_out)) + xfs_log_force_inode(dest); out_unlock: xfs_reflink_remap_unlock(file_in, file_out); if (ret) diff -u linux-azure-5.4.0/fs/xfs/xfs_fsmap.c linux-azure-5.4.0/fs/xfs/xfs_fsmap.c --- linux-azure-5.4.0/fs/xfs/xfs_fsmap.c +++ linux-azure-5.4.0/fs/xfs/xfs_fsmap.c @@ -146,6 +146,7 @@ dest->fmr_owner = XFS_FMR_OWN_FREE; break; default: + ASSERT(0); return -EFSCORRUPTED; } return 0; diff -u linux-azure-5.4.0/fs/xfs/xfs_icache.c linux-azure-5.4.0/fs/xfs/xfs_icache.c --- linux-azure-5.4.0/fs/xfs/xfs_icache.c +++ linux-azure-5.4.0/fs/xfs/xfs_icache.c @@ -289,6 +289,8 @@ uint64_t version = inode_peek_iversion(inode); umode_t mode = inode->i_mode; dev_t dev = inode->i_rdev; + kuid_t uid = inode->i_uid; + kgid_t gid = inode->i_gid; error = inode_init_always(mp->m_super, inode); @@ -297,6 +299,8 @@ inode_set_iversion_queried(inode, version); inode->i_mode = mode; inode->i_rdev = dev; + inode->i_uid = uid; + inode->i_gid = gid; return error; } @@ -1430,7 +1434,7 @@ return 0; if ((eofb->eof_flags & XFS_EOF_FLAGS_PRID) && - xfs_get_projid(ip) != eofb->eof_prid) + ip->i_d.di_projid != eofb->eof_prid) return 0; return 1; @@ -1454,7 +1458,7 @@ return 1; if ((eofb->eof_flags & XFS_EOF_FLAGS_PRID) && - xfs_get_projid(ip) == eofb->eof_prid) + ip->i_d.di_projid == eofb->eof_prid) return 1; return 0; diff -u linux-azure-5.4.0/fs/xfs/xfs_inode.c linux-azure-5.4.0/fs/xfs/xfs_inode.c --- linux-azure-5.4.0/fs/xfs/xfs_inode.c +++ linux-azure-5.4.0/fs/xfs/xfs_inode.c @@ -750,6 +750,7 @@ xfs_buf_t **ialloc_context, xfs_inode_t **ipp) { + struct inode *dir = pip ? VFS_I(pip) : NULL; struct xfs_mount *mp = tp->t_mountp; xfs_ino_t ino; xfs_inode_t *ip; @@ -804,17 +805,17 @@ if (ip->i_d.di_version == 1) ip->i_d.di_version = 2; - inode->i_mode = mode; set_nlink(inode, nlink); - ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid()); - ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid()); inode->i_rdev = rdev; - xfs_set_projid(ip, prid); + ip->i_d.di_projid = prid; - if (pip && XFS_INHERIT_GID(pip)) { - ip->i_d.di_gid = pip->i_d.di_gid; - if ((VFS_I(pip)->i_mode & S_ISGID) && S_ISDIR(mode)) - inode->i_mode |= S_ISGID; + if (dir && !(dir->i_mode & S_ISGID) && + (mp->m_flags & XFS_MOUNT_GRPID)) { + inode->i_uid = current_fsuid(); + inode->i_gid = dir->i_gid; + inode->i_mode = mode; + } else { + inode_init_owner(inode, dir, mode); } /* @@ -822,9 +823,8 @@ * ID or one of the supplementary group IDs, the S_ISGID bit is cleared * (and only if the irix_sgid_inherit compatibility variable is set). */ - if ((irix_sgid_inherit) && - (inode->i_mode & S_ISGID) && - (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid)))) + if (irix_sgid_inherit && + (inode->i_mode & S_ISGID) && !in_group_p(inode->i_gid)) inode->i_mode &= ~S_ISGID; ip->i_d.di_size = 0; @@ -1153,8 +1153,7 @@ /* * Make sure that we have allocated dquot(s) on disk. */ - error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()), - xfs_kgid_to_gid(current_fsgid()), prid, + error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid, XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp, &pdqp); if (error) @@ -1304,8 +1303,7 @@ /* * Make sure that we have allocated dquot(s) on disk. */ - error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()), - xfs_kgid_to_gid(current_fsgid()), prid, + error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid, XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp, &pdqp); if (error) @@ -1418,7 +1416,7 @@ * the tree quota mechanism could be circumvented. */ if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) && - (xfs_get_projid(tdp) != xfs_get_projid(sip)))) { + tdp->i_d.di_projid != sip->i_d.di_projid)) { error = -EXDEV; goto error_return; } @@ -1513,10 +1511,8 @@ struct xfs_mount *mp = ip->i_mount; struct xfs_trans *tp = *tpp; xfs_fileoff_t first_unmap_block; - xfs_fileoff_t last_block; xfs_filblks_t unmap_len; int error = 0; - int done = 0; ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); ASSERT(!atomic_read(&VFS_I(ip)->i_count) || @@ -1536,21 +1532,22 @@ * the end of the file (in a crash where the space is allocated * but the inode size is not yet updated), simply remove any * blocks which show up between the new EOF and the maximum - * possible file size. If the first block to be removed is - * beyond the maximum file size (ie it is the same as last_block), - * then there is nothing to do. + * possible file size. + * + * We have to free all the blocks to the bmbt maximum offset, even if + * the page cache can't scale that far. */ first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size); - last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes); - if (first_unmap_block == last_block) + if (first_unmap_block >= XFS_MAX_FILEOFF) { + WARN_ON_ONCE(first_unmap_block > XFS_MAX_FILEOFF); return 0; + } - ASSERT(first_unmap_block < last_block); - unmap_len = last_block - first_unmap_block + 1; - while (!done) { + unmap_len = XFS_MAX_FILEOFF - first_unmap_block + 1; + while (unmap_len > 0) { ASSERT(tp->t_firstblock == NULLFSBLOCK); - error = xfs_bunmapi(tp, ip, first_unmap_block, unmap_len, flags, - XFS_ITRUNC_MAX_EXTENTS, &done); + error = __xfs_bunmapi(tp, ip, first_unmap_block, &unmap_len, + flags, XFS_ITRUNC_MAX_EXTENTS); if (error) goto out; @@ -1570,7 +1567,7 @@ if (whichfork == XFS_DATA_FORK) { /* Remove all pending CoW reservations. */ error = xfs_reflink_cancel_cow_blocks(ip, &tp, - first_unmap_block, last_block, true); + first_unmap_block, XFS_MAX_FILEOFF, true); if (error) goto out; @@ -2149,8 +2146,10 @@ * passed in because either we're adding or removing ourselves from the * head of the list. */ - if (old_value == new_agino) + if (old_value == new_agino) { + xfs_buf_mark_corrupt(agibp); return -EFSCORRUPTED; + } agi->agi_unlinked[bucket_index] = cpu_to_be32(new_agino); offset = offsetof(struct xfs_agi, agi_unlinked) + @@ -2213,6 +2212,8 @@ /* Make sure the old pointer isn't garbage. */ old_value = be32_to_cpu(dip->di_next_unlinked); if (!xfs_verify_agino_or_null(mp, agno, old_value)) { + xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, dip, + sizeof(*dip), __this_address); error = -EFSCORRUPTED; goto out; } @@ -2224,8 +2225,11 @@ */ *old_next_agino = old_value; if (old_value == next_agino) { - if (next_agino != NULLAGINO) + if (next_agino != NULLAGINO) { + xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, + dip, sizeof(*dip), __this_address); error = -EFSCORRUPTED; + } goto out; } @@ -2276,8 +2280,10 @@ */ next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]); if (next_agino == agino || - !xfs_verify_agino_or_null(mp, agno, next_agino)) + !xfs_verify_agino_or_null(mp, agno, next_agino)) { + xfs_buf_mark_corrupt(agibp); return -EFSCORRUPTED; + } if (next_agino != NULLAGINO) { struct xfs_perag *pag; @@ -2584,8 +2590,10 @@ mp->m_bsize * igeo->blocks_per_cluster, XBF_UNMAPPED); - if (!bp) + if (!bp) { + xfs_perag_put(pag); return -ENOMEM; + } /* * This buffer may not have been correctly initialised as we @@ -3215,6 +3223,7 @@ struct xfs_trans *tp; struct xfs_inode *wip = NULL; /* whiteout inode */ struct xfs_inode *inodes[__XFS_SORT_INODES]; + int i; int num_inodes = __XFS_SORT_INODES; bool new_parent = (src_dp != target_dp); bool src_is_directory = S_ISDIR(VFS_I(src_ip)->i_mode); @@ -3232,7 +3241,6 @@ * appropriately. */ if (flags & RENAME_WHITEOUT) { - ASSERT(!(flags & (RENAME_NOREPLACE | RENAME_EXCHANGE))); error = xfs_rename_alloc_whiteout(target_dp, &wip); if (error) return error; @@ -3289,7 +3297,7 @@ * tree quota mechanism would be circumvented. */ if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) && - (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) { + target_dp->i_d.di_projid != src_ip->i_d.di_projid)) { error = -EXDEV; goto out_trans_cancel; } @@ -3328,6 +3336,30 @@ } /* + * Lock the AGI buffers we need to handle bumping the nlink of the + * whiteout inode off the unlinked list and to handle dropping the + * nlink of the target inode. Per locking order rules, do this in + * increasing AG order and before directory block allocation tries to + * grab AGFs because we grab AGIs before AGFs. + * + * The (vfs) caller must ensure that if src is a directory then + * target_ip is either null or an empty directory. + */ + for (i = 0; i < num_inodes && inodes[i] != NULL; i++) { + if (inodes[i] == wip || + (inodes[i] == target_ip && + (VFS_I(target_ip)->i_nlink == 1 || src_is_directory))) { + struct xfs_buf *bp; + xfs_agnumber_t agno; + + agno = XFS_INO_TO_AGNO(mp, inodes[i]->i_ino); + error = xfs_read_agi(mp, tp, agno, &bp); + if (error) + goto out_trans_cancel; + } + } + + /* * Directory entry creation below may acquire the AGF. Remove * the whiteout from the unlinked list first to preserve correct * AGI/AGF locking order. This dirties the transaction so failures @@ -3943,0 +3976,19 @@ + +/* + * Ensure all commited transactions touching the inode are written to the log. + */ +int +xfs_log_force_inode( + struct xfs_inode *ip) +{ + xfs_lsn_t lsn = 0; + + xfs_ilock(ip, XFS_ILOCK_SHARED); + if (xfs_ipincount(ip)) + lsn = ip->i_itemp->ili_last_lsn; + xfs_iunlock(ip, XFS_ILOCK_SHARED); + + if (!lsn) + return 0; + return xfs_log_force_lsn(ip->i_mount, lsn, XFS_LOG_SYNC, NULL); +} diff -u linux-azure-5.4.0/fs/xfs/xfs_ioctl.c linux-azure-5.4.0/fs/xfs/xfs_ioctl.c --- linux-azure-5.4.0/fs/xfs/xfs_ioctl.c +++ linux-azure-5.4.0/fs/xfs/xfs_ioctl.c @@ -714,7 +714,8 @@ flags |= XFS_PREALLOC_CLEAR; if (bf->l_start > XFS_ISIZE(ip)) { error = xfs_alloc_file_space(ip, XFS_ISIZE(ip), - bf->l_start - XFS_ISIZE(ip), 0); + bf->l_start - XFS_ISIZE(ip), + XFS_BMAPI_PREALLOC); if (error) goto out_unlock; } @@ -1143,7 +1144,7 @@ fa->fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog; fa->fsx_cowextsize = ip->i_d.di_cowextsize << ip->i_mount->m_sb.sb_blocklog; - fa->fsx_projid = xfs_get_projid(ip); + fa->fsx_projid = ip->i_d.di_projid; if (attr) { if (ip->i_afp) { @@ -1571,9 +1572,9 @@ * because the i_*dquot fields will get updated anyway. */ if (XFS_IS_QUOTA_ON(mp)) { - code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid, - ip->i_d.di_gid, fa->fsx_projid, - XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp); + code = xfs_qm_vop_dqalloc(ip, VFS_I(ip)->i_uid, + VFS_I(ip)->i_gid, fa->fsx_projid, + XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp); if (code) return code; } @@ -1596,7 +1597,7 @@ } if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) && - xfs_get_projid(ip) != fa->fsx_projid) { + ip->i_d.di_projid != fa->fsx_projid) { code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp, capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0); if (code) /* out of quota */ @@ -1633,13 +1634,13 @@ VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID); /* Change the ownerships and register project quota modifications */ - if (xfs_get_projid(ip) != fa->fsx_projid) { + if (ip->i_d.di_projid != fa->fsx_projid) { if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) { olddquot = xfs_qm_vop_chown(tp, ip, &ip->i_pdquot, pdqp); } ASSERT(ip->i_d.di_version > 1); - xfs_set_projid(ip, fa->fsx_projid); + ip->i_d.di_projid = fa->fsx_projid; } /* diff -u linux-azure-5.4.0/fs/xfs/xfs_iomap.c linux-azure-5.4.0/fs/xfs/xfs_iomap.c --- linux-azure-5.4.0/fs/xfs/xfs_iomap.c +++ linux-azure-5.4.0/fs/xfs/xfs_iomap.c @@ -765,6 +765,11 @@ */ resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1; + /* Attach dquots so that bmbt splits are accounted correctly. */ + error = xfs_qm_dqattach(ip); + if (error) + return error; + do { /* * Set up a transaction to convert the range of extents @@ -783,6 +788,11 @@ xfs_ilock(ip, XFS_ILOCK_EXCL); xfs_trans_ijoin(tp, ip, 0); + error = xfs_trans_reserve_quota_nblks(tp, ip, resblks, 0, + XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES); + if (error) + goto error_on_bmapi_transaction; + /* * Modify the unwritten extent state of the buffer. */ @@ -1055,6 +1065,13 @@ trace_xfs_iomap_alloc(ip, offset, length, XFS_DATA_FORK, &imap); out_finish: + /* + * Writes that span EOF might trigger an IO size update on completion, + * so consider them to be dirty for the purposes of O_DSYNC even if + * there is no other metadata changes pending or have been made here. + */ + if ((flags & IOMAP_WRITE) && offset + length > i_size_read(inode)) + iomap->flags |= IOMAP_F_DIRTY; return xfs_bmbt_to_iomap(ip, iomap, &imap, shared); out_found: diff -u linux-azure-5.4.0/fs/xfs/xfs_iops.c linux-azure-5.4.0/fs/xfs/xfs_iops.c --- linux-azure-5.4.0/fs/xfs/xfs_iops.c +++ linux-azure-5.4.0/fs/xfs/xfs_iops.c @@ -20,6 +20,7 @@ #include "xfs_symlink.h" #include "xfs_dir2.h" #include "xfs_iomap.h" +#include "xfs_error.h" #include #include @@ -470,17 +471,20 @@ struct inode *inode, struct delayed_call *done) { + struct xfs_inode *ip = XFS_I(inode); char *link; - ASSERT(XFS_I(inode)->i_df.if_flags & XFS_IFINLINE); + ASSERT(ip->i_df.if_flags & XFS_IFINLINE); /* * The VFS crashes on a NULL pointer, so return -EFSCORRUPTED if * if_data is junk. */ - link = XFS_I(inode)->i_df.if_u1.if_data; - if (!link) + link = ip->i_df.if_u1.if_data; + if (!link) { + XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, ip->i_mount); return ERR_PTR(-EFSCORRUPTED); + } return link; } @@ -662,9 +666,7 @@ */ ASSERT(udqp == NULL); ASSERT(gdqp == NULL); - error = xfs_qm_vop_dqalloc(ip, xfs_kuid_to_uid(uid), - xfs_kgid_to_gid(gid), - xfs_get_projid(ip), + error = xfs_qm_vop_dqalloc(ip, uid, gid, ip->i_d.di_projid, qflags, &udqp, &gdqp, NULL); if (error) return error; @@ -733,7 +735,6 @@ olddquot1 = xfs_qm_vop_chown(tp, ip, &ip->i_udquot, udqp); } - ip->i_d.di_uid = xfs_kuid_to_uid(uid); inode->i_uid = uid; } if (!gid_eq(igid, gid)) { @@ -745,7 +746,6 @@ olddquot2 = xfs_qm_vop_chown(tp, ip, &ip->i_gdquot, gdqp); } - ip->i_d.di_gid = xfs_kgid_to_gid(gid); inode->i_gid = gid; } } @@ -1284,9 +1284,6 @@ /* make the inode look hashed for the writeback code */ inode_fake_hash(inode); - inode->i_uid = xfs_uid_to_kuid(ip->i_d.di_uid); - inode->i_gid = xfs_gid_to_kgid(ip->i_d.di_gid); - i_size_write(inode, ip->i_d.di_size); xfs_diflags_to_iflags(inode, ip); diff -u linux-azure-5.4.0/fs/xfs/xfs_log.c linux-azure-5.4.0/fs/xfs/xfs_log.c --- linux-azure-5.4.0/fs/xfs/xfs_log.c +++ linux-azure-5.4.0/fs/xfs/xfs_log.c @@ -837,19 +837,6 @@ if (error) goto out_err; - /* - * If we think the summary counters are bad, clear the unmount header - * flag in the unmount record so that the summary counters will be - * recalculated during log recovery at next mount. Refer to - * xlog_check_unmount_rec for more details. - */ - if (XFS_TEST_ERROR(xfs_fs_has_sickness(mp, XFS_SICK_FS_COUNTERS), mp, - XFS_ERRTAG_FORCE_SUMMARY_RECALC)) { - xfs_alert(mp, "%s: will fix summary counters at next mount", - __func__); - flags &= ~XLOG_UNMOUNT_TRANS; - } - /* remove inited flag, and account for space used */ tic->t_flags = 0; tic->t_curr_res -= sizeof(magic); @@ -932,6 +919,19 @@ } while (iclog != first_iclog); #endif if (! (XLOG_FORCED_SHUTDOWN(log))) { + /* + * If we think the summary counters are bad, avoid writing the + * unmount record to force log recovery at next mount, after + * which the summary counters will be recalculated. Refer to + * xlog_check_unmount_rec for more details. + */ + if (XFS_TEST_ERROR(xfs_fs_has_sickness(mp, XFS_SICK_FS_COUNTERS), + mp, XFS_ERRTAG_FORCE_SUMMARY_RECALC)) { + xfs_alert(mp, + "%s: will fix summary counters at next mount", + __func__); + return 0; + } xfs_log_write_unmount_record(mp); } else { /* diff -u linux-azure-5.4.0/fs/xfs/xfs_mount.c linux-azure-5.4.0/fs/xfs/xfs_mount.c --- linux-azure-5.4.0/fs/xfs/xfs_mount.c +++ linux-azure-5.4.0/fs/xfs/xfs_mount.c @@ -31,7 +31,7 @@ #include "xfs_reflink.h" #include "xfs_extent_busy.h" #include "xfs_health.h" - +#include "xfs_trace.h" static DEFINE_MUTEX(xfs_uuid_table_mutex); static int xfs_uuid_table_size; @@ -365,66 +365,119 @@ } /* - * Update alignment values based on mount options and sb values + * If the sunit/swidth change would move the precomputed root inode value, we + * must reject the ondisk change because repair will stumble over that. + * However, we allow the mount to proceed because we never rejected this + * combination before. Returns true to update the sb, false otherwise. + */ +static inline int +xfs_check_new_dalign( + struct xfs_mount *mp, + int new_dalign, + bool *update_sb) +{ + struct xfs_sb *sbp = &mp->m_sb; + xfs_ino_t calc_ino; + + calc_ino = xfs_ialloc_calc_rootino(mp, new_dalign); + trace_xfs_check_new_dalign(mp, new_dalign, calc_ino); + + if (sbp->sb_rootino == calc_ino) { + *update_sb = true; + return 0; + } + + xfs_warn(mp, +"Cannot change stripe alignment; would require moving root inode."); + + /* + * XXX: Next time we add a new incompat feature, this should start + * returning -EINVAL to fail the mount. Until then, spit out a warning + * that we're ignoring the administrator's instructions. + */ + xfs_warn(mp, "Skipping superblock stripe alignment update."); + *update_sb = false; + return 0; +} + +/* + * If we were provided with new sunit/swidth values as mount options, make sure + * that they pass basic alignment and superblock feature checks, and convert + * them into the same units (FSB) that everything else expects. This step + * /must/ be done before computing the inode geometry. */ STATIC int -xfs_update_alignment(xfs_mount_t *mp) +xfs_validate_new_dalign( + struct xfs_mount *mp) { - xfs_sb_t *sbp = &(mp->m_sb); + if (mp->m_dalign == 0) + return 0; - if (mp->m_dalign) { + /* + * If stripe unit and stripe width are not multiples + * of the fs blocksize turn off alignment. + */ + if ((BBTOB(mp->m_dalign) & mp->m_blockmask) || + (BBTOB(mp->m_swidth) & mp->m_blockmask)) { + xfs_warn(mp, + "alignment check failed: sunit/swidth vs. blocksize(%d)", + mp->m_sb.sb_blocksize); + return -EINVAL; + } else { /* - * If stripe unit and stripe width are not multiples - * of the fs blocksize turn off alignment. + * Convert the stripe unit and width to FSBs. */ - if ((BBTOB(mp->m_dalign) & mp->m_blockmask) || - (BBTOB(mp->m_swidth) & mp->m_blockmask)) { + mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign); + if (mp->m_dalign && (mp->m_sb.sb_agblocks % mp->m_dalign)) { xfs_warn(mp, - "alignment check failed: sunit/swidth vs. blocksize(%d)", - sbp->sb_blocksize); + "alignment check failed: sunit/swidth vs. agsize(%d)", + mp->m_sb.sb_agblocks); return -EINVAL; - } else { - /* - * Convert the stripe unit and width to FSBs. - */ - mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign); - if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) { - xfs_warn(mp, - "alignment check failed: sunit/swidth vs. agsize(%d)", - sbp->sb_agblocks); - return -EINVAL; - } else if (mp->m_dalign) { - mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth); - } else { - xfs_warn(mp, - "alignment check failed: sunit(%d) less than bsize(%d)", - mp->m_dalign, sbp->sb_blocksize); - return -EINVAL; - } - } - - /* - * Update superblock with new values - * and log changes - */ - if (xfs_sb_version_hasdalign(sbp)) { - if (sbp->sb_unit != mp->m_dalign) { - sbp->sb_unit = mp->m_dalign; - mp->m_update_sb = true; - } - if (sbp->sb_width != mp->m_swidth) { - sbp->sb_width = mp->m_swidth; - mp->m_update_sb = true; - } + } else if (mp->m_dalign) { + mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth); } else { xfs_warn(mp, - "cannot change alignment: superblock does not support data alignment"); + "alignment check failed: sunit(%d) less than bsize(%d)", + mp->m_dalign, mp->m_sb.sb_blocksize); return -EINVAL; } + } + + if (!xfs_sb_version_hasdalign(&mp->m_sb)) { + xfs_warn(mp, +"cannot change alignment: superblock does not support data alignment"); + return -EINVAL; + } + + return 0; +} + +/* Update alignment values based on mount options and sb values. */ +STATIC int +xfs_update_alignment( + struct xfs_mount *mp) +{ + struct xfs_sb *sbp = &mp->m_sb; + + if (mp->m_dalign) { + bool update_sb; + int error; + + if (sbp->sb_unit == mp->m_dalign && + sbp->sb_width == mp->m_swidth) + return 0; + + error = xfs_check_new_dalign(mp, mp->m_dalign, &update_sb); + if (error || !update_sb) + return error; + + sbp->sb_unit = mp->m_dalign; + sbp->sb_width = mp->m_swidth; + mp->m_update_sb = true; } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN && xfs_sb_version_hasdalign(&mp->m_sb)) { - mp->m_dalign = sbp->sb_unit; - mp->m_swidth = sbp->sb_width; + mp->m_dalign = sbp->sb_unit; + mp->m_swidth = sbp->sb_width; } return 0; @@ -692,12 +745,12 @@ } /* - * Check if sb_agblocks is aligned at stripe boundary - * If sb_agblocks is NOT aligned turn off m_dalign since - * allocator alignment is within an ag, therefore ag has - * to be aligned at stripe boundary. + * If we were given new sunit/swidth options, do some basic validation + * checks and convert the incore dalign and swidth values to the + * same units (FSB) that everything else uses. This /must/ happen + * before computing the inode geometry. */ - error = xfs_update_alignment(mp); + error = xfs_validate_new_dalign(mp); if (error) goto out; @@ -708,6 +761,17 @@ xfs_rmapbt_compute_maxlevels(mp); xfs_refcountbt_compute_maxlevels(mp); + /* + * Check if sb_agblocks is aligned at stripe boundary. If sb_agblocks + * is NOT aligned turn off m_dalign since allocator alignment is within + * an ag, therefore ag has to be aligned at stripe boundary. Note that + * we must compute the free space and rmap btree geometry before doing + * this. + */ + error = xfs_update_alignment(mp); + if (error) + goto out; + /* enable fail_at_unmount as default */ mp->m_fail_unmount = true; diff -u linux-azure-5.4.0/fs/xfs/xfs_pnfs.c linux-azure-5.4.0/fs/xfs/xfs_pnfs.c --- linux-azure-5.4.0/fs/xfs/xfs_pnfs.c +++ linux-azure-5.4.0/fs/xfs/xfs_pnfs.c @@ -147,11 +147,11 @@ if (error) goto out_unlock; + ASSERT(!nimaps || imap.br_startblock != DELAYSTARTBLOCK); + if (write) { enum xfs_prealloc_flags flags = 0; - ASSERT(imap.br_startblock != DELAYSTARTBLOCK); - if (!nimaps || imap.br_startblock == HOLESTARTBLOCK) { /* * xfs_iomap_write_direct() expects to take ownership of diff -u linux-azure-5.4.0/fs/xfs/xfs_reflink.c linux-azure-5.4.0/fs/xfs/xfs_reflink.c --- linux-azure-5.4.0/fs/xfs/xfs_reflink.c +++ linux-azure-5.4.0/fs/xfs/xfs_reflink.c @@ -1544,7 +1544,8 @@ * We didn't find any shared blocks so turn off the reflink flag. * First, get rid of any leftover CoW mappings. */ - error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, NULLFILEOFF, true); + error = xfs_reflink_cancel_cow_blocks(ip, tpp, 0, XFS_MAX_FILEOFF, + true); if (error) return error; diff -u linux-azure-5.4.0/fs/xfs/xfs_trans.c linux-azure-5.4.0/fs/xfs/xfs_trans.c --- linux-azure-5.4.0/fs/xfs/xfs_trans.c +++ linux-azure-5.4.0/fs/xfs/xfs_trans.c @@ -532,57 +532,9 @@ sizeof(sbp->sb_frextents) - 1); } -STATIC int -xfs_sb_mod8( - uint8_t *field, - int8_t delta) -{ - int8_t counter = *field; - - counter += delta; - if (counter < 0) { - ASSERT(0); - return -EINVAL; - } - *field = counter; - return 0; -} - -STATIC int -xfs_sb_mod32( - uint32_t *field, - int32_t delta) -{ - int32_t counter = *field; - - counter += delta; - if (counter < 0) { - ASSERT(0); - return -EINVAL; - } - *field = counter; - return 0; -} - -STATIC int -xfs_sb_mod64( - uint64_t *field, - int64_t delta) -{ - int64_t counter = *field; - - counter += delta; - if (counter < 0) { - ASSERT(0); - return -EINVAL; - } - *field = counter; - return 0; -} - /* - * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations - * and apply superblock counter changes to the in-core superblock. The + * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations and + * apply superblock counter changes to the in-core superblock. The * t_res_fdblocks_delta and t_res_frextents_delta fields are explicitly NOT * applied to the in-core superblock. The idea is that that has already been * done. @@ -627,20 +579,17 @@ /* apply the per-cpu counters */ if (blkdelta) { error = xfs_mod_fdblocks(mp, blkdelta, rsvd); - if (error) - goto out; + ASSERT(!error); } if (idelta) { error = xfs_mod_icount(mp, idelta); - if (error) - goto out_undo_fdblocks; + ASSERT(!error); } if (ifreedelta) { error = xfs_mod_ifree(mp, ifreedelta); - if (error) - goto out_undo_icount; + ASSERT(!error); } if (rtxdelta == 0 && !(tp->t_flags & XFS_TRANS_SB_DIRTY)) @@ -648,95 +597,23 @@ /* apply remaining deltas */ spin_lock(&mp->m_sb_lock); - if (rtxdelta) { - error = xfs_sb_mod64(&mp->m_sb.sb_frextents, rtxdelta); - if (error) - goto out_undo_ifree; - } - - if (tp->t_dblocks_delta != 0) { - error = xfs_sb_mod64(&mp->m_sb.sb_dblocks, tp->t_dblocks_delta); - if (error) - goto out_undo_frextents; - } - if (tp->t_agcount_delta != 0) { - error = xfs_sb_mod32(&mp->m_sb.sb_agcount, tp->t_agcount_delta); - if (error) - goto out_undo_dblocks; - } - if (tp->t_imaxpct_delta != 0) { - error = xfs_sb_mod8(&mp->m_sb.sb_imax_pct, tp->t_imaxpct_delta); - if (error) - goto out_undo_agcount; - } - if (tp->t_rextsize_delta != 0) { - error = xfs_sb_mod32(&mp->m_sb.sb_rextsize, - tp->t_rextsize_delta); - if (error) - goto out_undo_imaxpct; - } - if (tp->t_rbmblocks_delta != 0) { - error = xfs_sb_mod32(&mp->m_sb.sb_rbmblocks, - tp->t_rbmblocks_delta); - if (error) - goto out_undo_rextsize; - } - if (tp->t_rblocks_delta != 0) { - error = xfs_sb_mod64(&mp->m_sb.sb_rblocks, tp->t_rblocks_delta); - if (error) - goto out_undo_rbmblocks; - } - if (tp->t_rextents_delta != 0) { - error = xfs_sb_mod64(&mp->m_sb.sb_rextents, - tp->t_rextents_delta); - if (error) - goto out_undo_rblocks; - } - if (tp->t_rextslog_delta != 0) { - error = xfs_sb_mod8(&mp->m_sb.sb_rextslog, - tp->t_rextslog_delta); - if (error) - goto out_undo_rextents; - } + mp->m_sb.sb_frextents += rtxdelta; + mp->m_sb.sb_dblocks += tp->t_dblocks_delta; + mp->m_sb.sb_agcount += tp->t_agcount_delta; + mp->m_sb.sb_imax_pct += tp->t_imaxpct_delta; + mp->m_sb.sb_rextsize += tp->t_rextsize_delta; + mp->m_sb.sb_rbmblocks += tp->t_rbmblocks_delta; + mp->m_sb.sb_rblocks += tp->t_rblocks_delta; + mp->m_sb.sb_rextents += tp->t_rextents_delta; + mp->m_sb.sb_rextslog += tp->t_rextslog_delta; spin_unlock(&mp->m_sb_lock); - return; -out_undo_rextents: - if (tp->t_rextents_delta) - xfs_sb_mod64(&mp->m_sb.sb_rextents, -tp->t_rextents_delta); -out_undo_rblocks: - if (tp->t_rblocks_delta) - xfs_sb_mod64(&mp->m_sb.sb_rblocks, -tp->t_rblocks_delta); -out_undo_rbmblocks: - if (tp->t_rbmblocks_delta) - xfs_sb_mod32(&mp->m_sb.sb_rbmblocks, -tp->t_rbmblocks_delta); -out_undo_rextsize: - if (tp->t_rextsize_delta) - xfs_sb_mod32(&mp->m_sb.sb_rextsize, -tp->t_rextsize_delta); -out_undo_imaxpct: - if (tp->t_rextsize_delta) - xfs_sb_mod8(&mp->m_sb.sb_imax_pct, -tp->t_imaxpct_delta); -out_undo_agcount: - if (tp->t_agcount_delta) - xfs_sb_mod32(&mp->m_sb.sb_agcount, -tp->t_agcount_delta); -out_undo_dblocks: - if (tp->t_dblocks_delta) - xfs_sb_mod64(&mp->m_sb.sb_dblocks, -tp->t_dblocks_delta); -out_undo_frextents: - if (rtxdelta) - xfs_sb_mod64(&mp->m_sb.sb_frextents, -rtxdelta); -out_undo_ifree: - spin_unlock(&mp->m_sb_lock); - if (ifreedelta) - xfs_mod_ifree(mp, -ifreedelta); -out_undo_icount: - if (idelta) - xfs_mod_icount(mp, -idelta); -out_undo_fdblocks: - if (blkdelta) - xfs_mod_fdblocks(mp, -blkdelta, rsvd); -out: - ASSERT(error == 0); + /* + * Debug checks outside of the spinlock so they don't lock up the + * machine if they fail. + */ + ASSERT(mp->m_sb.sb_imax_pct >= 0); + ASSERT(mp->m_sb.sb_rextslog >= 0); return; } diff -u linux-azure-5.4.0/fs/xfs/xfs_trans_ail.c linux-azure-5.4.0/fs/xfs/xfs_trans_ail.c --- linux-azure-5.4.0/fs/xfs/xfs_trans_ail.c +++ linux-azure-5.4.0/fs/xfs/xfs_trans_ail.c @@ -108,17 +108,25 @@ * We need the AIL lock in order to get a coherent read of the lsn of the last * item in the AIL. */ +static xfs_lsn_t +__xfs_ail_min_lsn( + struct xfs_ail *ailp) +{ + struct xfs_log_item *lip = xfs_ail_min(ailp); + + if (lip) + return lip->li_lsn; + return 0; +} + xfs_lsn_t xfs_ail_min_lsn( struct xfs_ail *ailp) { - xfs_lsn_t lsn = 0; - struct xfs_log_item *lip; + xfs_lsn_t lsn; spin_lock(&ailp->ail_lock); - lip = xfs_ail_min(ailp); - if (lip) - lsn = lip->li_lsn; + lsn = __xfs_ail_min_lsn(ailp); spin_unlock(&ailp->ail_lock); return lsn; @@ -680,6 +688,28 @@ finish_wait(&ailp->ail_empty, &wait); } +void +xfs_ail_update_finish( + struct xfs_ail *ailp, + xfs_lsn_t old_lsn) __releases(ailp->ail_lock) +{ + struct xfs_mount *mp = ailp->ail_mount; + + /* if the tail lsn hasn't changed, don't do updates or wakeups. */ + if (!old_lsn || old_lsn == __xfs_ail_min_lsn(ailp)) { + spin_unlock(&ailp->ail_lock); + return; + } + + if (!XFS_FORCED_SHUTDOWN(mp)) + xlog_assign_tail_lsn_locked(mp); + + if (list_empty(&ailp->ail_head)) + wake_up_all(&ailp->ail_empty); + spin_unlock(&ailp->ail_lock); + xfs_log_space_wake(mp); +} + /* * xfs_trans_ail_update - bulk AIL insertion operation. * @@ -711,7 +741,7 @@ xfs_lsn_t lsn) __releases(ailp->ail_lock) { struct xfs_log_item *mlip; - int mlip_changed = 0; + xfs_lsn_t tail_lsn = 0; int i; LIST_HEAD(tmp); @@ -726,9 +756,10 @@ continue; trace_xfs_ail_move(lip, lip->li_lsn, lsn); + if (mlip == lip && !tail_lsn) + tail_lsn = lip->li_lsn; + xfs_ail_delete(ailp, lip); - if (mlip == lip) - mlip_changed = 1; } else { trace_xfs_ail_insert(lip, 0, lsn); } @@ -739,23 +770,23 @@ if (!list_empty(&tmp)) xfs_ail_splice(ailp, cur, &tmp, lsn); - if (mlip_changed) { - if (!XFS_FORCED_SHUTDOWN(ailp->ail_mount)) - xlog_assign_tail_lsn_locked(ailp->ail_mount); - spin_unlock(&ailp->ail_lock); - - xfs_log_space_wake(ailp->ail_mount); - } else { - spin_unlock(&ailp->ail_lock); - } + xfs_ail_update_finish(ailp, tail_lsn); } -bool +/* + * Delete one log item from the AIL. + * + * If this item was at the tail of the AIL, return the LSN of the log item so + * that we can use it to check if the LSN of the tail of the log has moved + * when finishing up the AIL delete process in xfs_ail_update_finish(). + */ +xfs_lsn_t xfs_ail_delete_one( struct xfs_ail *ailp, struct xfs_log_item *lip) { struct xfs_log_item *mlip = xfs_ail_min(ailp); + xfs_lsn_t lsn = lip->li_lsn; trace_xfs_ail_delete(lip, mlip->li_lsn, lip->li_lsn); xfs_ail_delete(ailp, lip); @@ -763,7 +794,9 @@ clear_bit(XFS_LI_IN_AIL, &lip->li_flags); lip->li_lsn = 0; - return mlip == lip; + if (mlip == lip) + return lsn; + return 0; } /** @@ -791,10 +824,10 @@ xfs_trans_ail_delete( struct xfs_ail *ailp, struct xfs_log_item *lip, - int shutdown_type) __releases(ailp->ail_lock) + int shutdown_type) { struct xfs_mount *mp = ailp->ail_mount; - bool mlip_changed; + xfs_lsn_t tail_lsn; if (!test_bit(XFS_LI_IN_AIL, &lip->li_flags)) { spin_unlock(&ailp->ail_lock); @@ -807,17 +840,8 @@ return; } - mlip_changed = xfs_ail_delete_one(ailp, lip); - if (mlip_changed) { - if (!XFS_FORCED_SHUTDOWN(mp)) - xlog_assign_tail_lsn_locked(mp); - if (list_empty(&ailp->ail_head)) - wake_up_all(&ailp->ail_empty); - } - - spin_unlock(&ailp->ail_lock); - if (mlip_changed) - xfs_log_space_wake(ailp->ail_mount); + tail_lsn = xfs_ail_delete_one(ailp, lip); + xfs_ail_update_finish(ailp, tail_lsn); } int diff -u linux-azure-5.4.0/fs/xfs/xfs_trans_dquot.c linux-azure-5.4.0/fs/xfs/xfs_trans_dquot.c --- linux-azure-5.4.0/fs/xfs/xfs_trans_dquot.c +++ linux-azure-5.4.0/fs/xfs/xfs_trans_dquot.c @@ -25,8 +25,8 @@ */ void xfs_trans_dqjoin( - xfs_trans_t *tp, - xfs_dquot_t *dqp) + struct xfs_trans *tp, + struct xfs_dquot *dqp) { ASSERT(XFS_DQ_IS_LOCKED(dqp)); ASSERT(dqp->q_logitem.qli_dquot == dqp); @@ -49,8 +49,8 @@ */ void xfs_trans_log_dquot( - xfs_trans_t *tp, - xfs_dquot_t *dqp) + struct xfs_trans *tp, + struct xfs_dquot *dqp) { ASSERT(XFS_DQ_IS_LOCKED(dqp)); @@ -486,12 +486,12 @@ */ void xfs_trans_unreserve_and_mod_dquots( - xfs_trans_t *tp) + struct xfs_trans *tp) { int i, j; - xfs_dquot_t *dqp; + struct xfs_dquot *dqp; struct xfs_dqtrx *qtrx, *qa; - bool locked; + bool locked; if (!tp->t_dqinfo || !(tp->t_flags & XFS_TRANS_DQ_DIRTY)) return; @@ -571,21 +571,21 @@ */ STATIC int xfs_trans_dqresv( - xfs_trans_t *tp, - xfs_mount_t *mp, - xfs_dquot_t *dqp, - int64_t nblks, - long ninos, - uint flags) + struct xfs_trans *tp, + struct xfs_mount *mp, + struct xfs_dquot *dqp, + int64_t nblks, + long ninos, + uint flags) { - xfs_qcnt_t hardlimit; - xfs_qcnt_t softlimit; - time_t timer; - xfs_qwarncnt_t warns; - xfs_qwarncnt_t warnlimit; - xfs_qcnt_t total_count; - xfs_qcnt_t *resbcountp; - xfs_quotainfo_t *q = mp->m_quotainfo; + xfs_qcnt_t hardlimit; + xfs_qcnt_t softlimit; + time_t timer; + xfs_qwarncnt_t warns; + xfs_qwarncnt_t warnlimit; + xfs_qcnt_t total_count; + xfs_qcnt_t *resbcountp; + xfs_quotainfo_t *q = mp->m_quotainfo; struct xfs_def_quota *defq; @@ -756,7 +756,8 @@ } if (gdqp) { - error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, flags); + error = xfs_trans_dqresv(tp, mp, gdqp, nblks, ninos, + (flags & ~XFS_QMOPT_ENOSPC)); if (error) goto unwind_usr; } @@ -824,13 +825,13 @@ /* * This routine is called to allocate a quotaoff log item. */ -xfs_qoff_logitem_t * +struct xfs_qoff_logitem * xfs_trans_get_qoff_item( - xfs_trans_t *tp, - xfs_qoff_logitem_t *startqoff, + struct xfs_trans *tp, + struct xfs_qoff_logitem *startqoff, uint flags) { - xfs_qoff_logitem_t *q; + struct xfs_qoff_logitem *q; ASSERT(tp != NULL); @@ -852,8 +853,8 @@ */ void xfs_trans_log_quotaoff_item( - xfs_trans_t *tp, - xfs_qoff_logitem_t *qlp) + struct xfs_trans *tp, + struct xfs_qoff_logitem *qlp) { tp->t_flags |= XFS_TRANS_DIRTY; set_bit(XFS_LI_DIRTY, &qlp->qql_item.li_flags); diff -u linux-azure-5.4.0/include/acpi/acpi_bus.h linux-azure-5.4.0/include/acpi/acpi_bus.h --- linux-azure-5.4.0/include/acpi/acpi_bus.h +++ linux-azure-5.4.0/include/acpi/acpi_bus.h @@ -681,7 +681,8 @@ static inline void acpi_dev_put(struct acpi_device *adev) { - put_device(&adev->dev); + if (adev) + put_device(&adev->dev); } #else /* CONFIG_ACPI */ diff -u linux-azure-5.4.0/include/acpi/actypes.h linux-azure-5.4.0/include/acpi/actypes.h --- linux-azure-5.4.0/include/acpi/actypes.h +++ linux-azure-5.4.0/include/acpi/actypes.h @@ -536,8 +536,14 @@ * Can be used with access_width of struct acpi_generic_address and access_size of * struct acpi_resource_generic_register. */ -#define ACPI_ACCESS_BIT_WIDTH(size) (1 << ((size) + 2)) -#define ACPI_ACCESS_BYTE_WIDTH(size) (1 << ((size) - 1)) +#define ACPI_ACCESS_BIT_SHIFT 2 +#define ACPI_ACCESS_BYTE_SHIFT -1 +#define ACPI_ACCESS_BIT_MAX (31 - ACPI_ACCESS_BIT_SHIFT) +#define ACPI_ACCESS_BYTE_MAX (31 - ACPI_ACCESS_BYTE_SHIFT) +#define ACPI_ACCESS_BIT_DEFAULT (8 - ACPI_ACCESS_BIT_SHIFT) +#define ACPI_ACCESS_BYTE_DEFAULT (8 - ACPI_ACCESS_BYTE_SHIFT) +#define ACPI_ACCESS_BIT_WIDTH(size) (1 << ((size) + ACPI_ACCESS_BIT_SHIFT)) +#define ACPI_ACCESS_BYTE_WIDTH(size) (1 << ((size) + ACPI_ACCESS_BYTE_SHIFT)) /******************************************************************************* * diff -u linux-azure-5.4.0/include/asm-generic/bitops/atomic.h linux-azure-5.4.0/include/asm-generic/bitops/atomic.h --- linux-azure-5.4.0/include/asm-generic/bitops/atomic.h +++ linux-azure-5.4.0/include/asm-generic/bitops/atomic.h @@ -35,9 +35,6 @@ unsigned long mask = BIT_MASK(nr); p += BIT_WORD(nr); - if (READ_ONCE(*p) & mask) - return 1; - old = atomic_long_fetch_or(mask, (atomic_long_t *)p); return !!(old & mask); } @@ -48,9 +45,6 @@ unsigned long mask = BIT_MASK(nr); p += BIT_WORD(nr); - if (!(READ_ONCE(*p) & mask)) - return 0; - old = atomic_long_fetch_andnot(mask, (atomic_long_t *)p); return !!(old & mask); } diff -u linux-azure-5.4.0/include/asm-generic/mshyperv.h linux-azure-5.4.0/include/asm-generic/mshyperv.h --- linux-azure-5.4.0/include/asm-generic/mshyperv.h +++ linux-azure-5.4.0/include/asm-generic/mshyperv.h @@ -22,11 +22,13 @@ #include #include #include +#include #include #include struct ms_hyperv_info { u32 features; + u32 priv_high; u32 misc_features; u32 hints; u32 nested_features; @@ -35,9 +37,29 @@ }; extern struct ms_hyperv_info ms_hyperv; +extern void __percpu **hyperv_pcpu_input_arg; +extern void __percpu **hyperv_pcpu_output_arg; + extern u64 hv_do_hypercall(u64 control, void *inputaddr, void *outputaddr); extern u64 hv_do_fast_hypercall8(u16 control, u64 input8); +/* Helper functions that provide a consistent pattern for checking Hyper-V hypercall status. */ +static inline int hv_result(u64 status) +{ + return status & HV_HYPERCALL_RESULT_MASK; +} + +static inline bool hv_result_success(u64 status) +{ + return hv_result(status) == HV_STATUS_SUCCESS; +} + +static inline unsigned int hv_repcomp(u64 status) +{ + /* Bits [43:32] of status have 'Reps completed' data. */ + return (status & HV_HYPERCALL_REP_COMP_MASK) >> + HV_HYPERCALL_REP_COMP_OFFSET; +} /* Generate the guest OS identifier as described in the Hyper-V TLFS */ static inline __u64 generate_guest_id(__u64 d_info1, __u64 kernel_version, @@ -53,7 +75,6 @@ return guest_id; } - /* Free the message slot and signal end-of-message if required */ static inline void vmbus_signal_eom(struct hv_message *msg, u32 old_msg_type) { @@ -85,20 +106,23 @@ * possibly deliver another msg from the * hypervisor */ - hv_signal_eom(); + hv_set_register(HV_REGISTER_EOM, 0); } } -void hv_setup_vmbus_irq(void (*handler)(void)); -void hv_remove_vmbus_irq(void); -void hv_enable_vmbus_irq(void); -void hv_disable_vmbus_irq(void); +void hv_setup_vmbus_handler(void (*handler)(void)); +void hv_remove_vmbus_handler(void); void hv_setup_kexec_handler(void (*handler)(void)); void hv_remove_kexec_handler(void); void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs)); void hv_remove_crash_handler(void); +extern int vmbus_interrupt; +extern int vmbus_irq; + +extern bool hv_root_partition; + #if IS_ENABLED(CONFIG_HYPERV) /* * Hypervisor's notion of virtual processor ID is different from @@ -109,9 +133,20 @@ extern u32 *hv_vp_index; extern u32 hv_max_vp_index; +extern u64 (*hv_read_reference_counter)(void); + /* Sentinel value for an uninitialized entry in hv_vp_index array */ #define VP_INVAL U32_MAX +int __init hv_common_init(void); +void __init hv_common_free(void); +int hv_common_cpu_init(unsigned int cpu); +int hv_common_cpu_die(unsigned int cpu); + +void *hv_alloc_hyperv_page(void); +void *hv_alloc_hyperv_zeroed_page(void); +void hv_free_hyperv_page(unsigned long addr); + /** * hv_cpu_number_to_vp_number() - Map CPU to VP. * @cpu_number: CPU number in Linux terms @@ -166,18 +201,12 @@ void hyperv_report_panic(struct pt_regs *regs, long err, bool in_die); -void hyperv_report_panic_msg(phys_addr_t pa, size_t size); bool hv_is_hyperv_initialized(void); bool hv_is_hibernation_supported(void); void hyperv_cleanup(void); -void hv_setup_sched_clock(void *sched_clock); +void hv_setup_dma_ops(struct device *dev, bool coherent); #else /* CONFIG_HYPERV */ static inline bool hv_is_hyperv_initialized(void) { return false; } static inline bool hv_is_hibernation_supported(void) { return false; } static inline void hyperv_cleanup(void) {} #endif /* CONFIG_HYPERV */ -#if IS_ENABLED(CONFIG_HYPERV) -extern int hv_setup_stimer0_irq(int *irq, int *vector, void (*handler)(void)); -extern void hv_remove_stimer0_irq(int irq); -#endif - #endif diff -u linux-azure-5.4.0/include/asm-generic/sections.h linux-azure-5.4.0/include/asm-generic/sections.h --- linux-azure-5.4.0/include/asm-generic/sections.h +++ linux-azure-5.4.0/include/asm-generic/sections.h @@ -114,7 +114,7 @@ /** * memory_intersects - checks if the region occupied by an object intersects * with another memory region - * @begin: virtual address of the beginning of the memory regien + * @begin: virtual address of the beginning of the memory region * @end: virtual address of the end of the memory region * @virt: virtual address of the memory object * @size: size of the memory object @@ -127,7 +127,10 @@ { void *vend = virt + size; - return (virt >= begin && virt < end) || (vend >= begin && vend < end); + if (virt < end && vend > begin) + return true; + + return false; } /** diff -u linux-azure-5.4.0/include/asm-generic/tlb.h linux-azure-5.4.0/include/asm-generic/tlb.h --- linux-azure-5.4.0/include/asm-generic/tlb.h +++ linux-azure-5.4.0/include/asm-generic/tlb.h @@ -495,6 +495,38 @@ } #endif +/* + * tlb_flush_{pte|pmd|pud|p4d}_range() adjust the tlb->start and tlb->end, + * and set corresponding cleared_*. + */ +static inline void tlb_flush_pte_range(struct mmu_gather *tlb, + unsigned long address, unsigned long size) +{ + __tlb_adjust_range(tlb, address, size); + tlb->cleared_ptes = 1; +} + +static inline void tlb_flush_pmd_range(struct mmu_gather *tlb, + unsigned long address, unsigned long size) +{ + __tlb_adjust_range(tlb, address, size); + tlb->cleared_pmds = 1; +} + +static inline void tlb_flush_pud_range(struct mmu_gather *tlb, + unsigned long address, unsigned long size) +{ + __tlb_adjust_range(tlb, address, size); + tlb->cleared_puds = 1; +} + +static inline void tlb_flush_p4d_range(struct mmu_gather *tlb, + unsigned long address, unsigned long size) +{ + __tlb_adjust_range(tlb, address, size); + tlb->cleared_p4ds = 1; +} + #ifndef __tlb_remove_tlb_entry #define __tlb_remove_tlb_entry(tlb, ptep, address) do { } while (0) #endif @@ -508,19 +540,21 @@ */ #define tlb_remove_tlb_entry(tlb, ptep, address) \ do { \ - __tlb_adjust_range(tlb, address, PAGE_SIZE); \ - tlb->cleared_ptes = 1; \ + tlb_flush_pte_range(tlb, address, PAGE_SIZE); \ __tlb_remove_tlb_entry(tlb, ptep, address); \ } while (0) #define tlb_remove_huge_tlb_entry(h, tlb, ptep, address) \ do { \ unsigned long _sz = huge_page_size(h); \ - __tlb_adjust_range(tlb, address, _sz); \ - if (_sz == PMD_SIZE) \ - tlb->cleared_pmds = 1; \ - else if (_sz == PUD_SIZE) \ - tlb->cleared_puds = 1; \ + if (_sz >= P4D_SIZE) \ + tlb_flush_p4d_range(tlb, address, _sz); \ + else if (_sz >= PUD_SIZE) \ + tlb_flush_pud_range(tlb, address, _sz); \ + else if (_sz >= PMD_SIZE) \ + tlb_flush_pmd_range(tlb, address, _sz); \ + else \ + tlb_flush_pte_range(tlb, address, _sz); \ __tlb_remove_tlb_entry(tlb, ptep, address); \ } while (0) @@ -534,8 +568,7 @@ #define tlb_remove_pmd_tlb_entry(tlb, pmdp, address) \ do { \ - __tlb_adjust_range(tlb, address, HPAGE_PMD_SIZE); \ - tlb->cleared_pmds = 1; \ + tlb_flush_pmd_range(tlb, address, HPAGE_PMD_SIZE); \ __tlb_remove_pmd_tlb_entry(tlb, pmdp, address); \ } while (0) @@ -549,8 +582,7 @@ #define tlb_remove_pud_tlb_entry(tlb, pudp, address) \ do { \ - __tlb_adjust_range(tlb, address, HPAGE_PUD_SIZE); \ - tlb->cleared_puds = 1; \ + tlb_flush_pud_range(tlb, address, HPAGE_PUD_SIZE); \ __tlb_remove_pud_tlb_entry(tlb, pudp, address); \ } while (0) @@ -575,9 +607,8 @@ #ifndef pte_free_tlb #define pte_free_tlb(tlb, ptep, address) \ do { \ - __tlb_adjust_range(tlb, address, PAGE_SIZE); \ + tlb_flush_pmd_range(tlb, address, PAGE_SIZE); \ tlb->freed_tables = 1; \ - tlb->cleared_pmds = 1; \ __pte_free_tlb(tlb, ptep, address); \ } while (0) #endif @@ -585,9 +616,8 @@ #ifndef pmd_free_tlb #define pmd_free_tlb(tlb, pmdp, address) \ do { \ - __tlb_adjust_range(tlb, address, PAGE_SIZE); \ + tlb_flush_pud_range(tlb, address, PAGE_SIZE); \ tlb->freed_tables = 1; \ - tlb->cleared_puds = 1; \ __pmd_free_tlb(tlb, pmdp, address); \ } while (0) #endif @@ -596,9 +626,8 @@ #ifndef pud_free_tlb #define pud_free_tlb(tlb, pudp, address) \ do { \ - __tlb_adjust_range(tlb, address, PAGE_SIZE); \ + tlb_flush_p4d_range(tlb, address, PAGE_SIZE); \ tlb->freed_tables = 1; \ - tlb->cleared_p4ds = 1; \ __pud_free_tlb(tlb, pudp, address); \ } while (0) #endif diff -u linux-azure-5.4.0/include/asm-generic/vmlinux.lds.h linux-azure-5.4.0/include/asm-generic/vmlinux.lds.h --- linux-azure-5.4.0/include/asm-generic/vmlinux.lds.h +++ linux-azure-5.4.0/include/asm-generic/vmlinux.lds.h @@ -110,17 +110,17 @@ #endif #ifdef CONFIG_FTRACE_MCOUNT_RECORD -#ifdef CC_USING_PATCHABLE_FUNCTION_ENTRY -#define MCOUNT_REC() . = ALIGN(8); \ - __start_mcount_loc = .; \ - KEEP(*(__patchable_function_entries)) \ - __stop_mcount_loc = .; -#else +/* + * The ftrace call sites are logged to a section whose name depends on the + * compiler option used. A given kernel image will only use one, AKA + * FTRACE_CALLSITE_SECTION. We capture all of them here to avoid header + * dependencies for FTRACE_CALLSITE_SECTION's definition. + */ #define MCOUNT_REC() . = ALIGN(8); \ __start_mcount_loc = .; \ KEEP(*(__mcount_loc)) \ + KEEP(*(__patchable_function_entries)) \ __stop_mcount_loc = .; -#endif #else #define MCOUNT_REC() #endif @@ -536,6 +536,7 @@ NOINSTR_TEXT \ *(.text..refcount) \ *(.ref.text) \ + *(.text.asan.* .text.tsan.*) \ MEM_KEEP(init.text*) \ MEM_KEEP(exit.text*) \ @@ -882,6 +883,7 @@ #ifdef CONFIG_AMD_MEM_ENCRYPT #define PERCPU_DECRYPTED_SECTION \ . = ALIGN(PAGE_SIZE); \ + *(.data..decrypted) \ *(.data..percpu..decrypted) \ . = ALIGN(PAGE_SIZE); #else diff -u linux-azure-5.4.0/include/clocksource/hyperv_timer.h linux-azure-5.4.0/include/clocksource/hyperv_timer.h --- linux-azure-5.4.0/include/clocksource/hyperv_timer.h +++ linux-azure-5.4.0/include/clocksource/hyperv_timer.h @@ -20,16 +20,16 @@ #define HV_MAX_MAX_DELTA_TICKS 0xffffffff #define HV_MIN_DELTA_TICKS 1 +#ifdef CONFIG_HYPERV_TIMER + /* Routines called by the VMbus driver */ -extern int hv_stimer_alloc(void); -extern void hv_stimer_free(void); +extern int hv_stimer_alloc(bool have_percpu_irqs); extern int hv_stimer_cleanup(unsigned int cpu); extern void hv_stimer_legacy_init(unsigned int cpu, int sint); extern void hv_stimer_legacy_cleanup(unsigned int cpu); extern void hv_stimer_global_cleanup(void); extern void hv_stimer0_isr(void); -#ifdef CONFIG_HYPERV_TIMER extern struct clocksource *hyperv_cs; extern void hv_init_clocksource(void); @@ -101,6 +101,13 @@ { return U64_MAX; } + +static inline int hv_stimer_cleanup(unsigned int cpu) { return 0; } +static inline void hv_stimer_legacy_init(unsigned int cpu, int sint) {} +static inline void hv_stimer_legacy_cleanup(unsigned int cpu) {} +static inline void hv_stimer_global_cleanup(void) {} +static inline void hv_stimer0_isr(void) {} + #endif /* CONFIG_HYPERV_TIMER */ #endif diff -u linux-azure-5.4.0/include/keys/system_keyring.h linux-azure-5.4.0/include/keys/system_keyring.h --- linux-azure-5.4.0/include/keys/system_keyring.h +++ linux-azure-5.4.0/include/keys/system_keyring.h @@ -31,6 +31,7 @@ #define restrict_link_by_builtin_and_secondary_trusted restrict_link_by_builtin_trusted #endif +extern struct pkcs7_message *pkcs7; #ifdef CONFIG_SYSTEM_BLACKLIST_KEYRING extern int mark_hash_blacklisted(const char *hash); extern int is_hash_blacklisted(const u8 *hash, size_t hash_len, @@ -51,2 +52,16 @@ +#ifdef CONFIG_SYSTEM_REVOCATION_LIST +extern int add_key_to_revocation_list(const char *data, size_t size); +extern int is_key_on_revocation_list(struct pkcs7_message *pkcs7); +#else +static inline int add_key_to_revocation_list(const char *data, size_t size) +{ + return 0; +} +static inline int is_key_on_revocation_list(struct pkcs7_message *pkcs7) +{ + return -ENOKEY; +} +#endif + #ifdef CONFIG_IMA_BLACKLIST_KEYRING diff -u linux-azure-5.4.0/include/linux/acpi.h linux-azure-5.4.0/include/linux/acpi.h --- linux-azure-5.4.0/include/linux/acpi.h +++ linux-azure-5.4.0/include/linux/acpi.h @@ -405,9 +405,30 @@ extern bool acpi_osi_is_win8(void); #ifdef CONFIG_ACPI_NUMA -int acpi_map_pxm_to_online_node(int pxm); int acpi_map_pxm_to_node(int pxm); int acpi_get_node(acpi_handle handle); + +/** + * acpi_map_pxm_to_online_node - Map proximity ID to online node + * @pxm: ACPI proximity ID + * + * This is similar to acpi_map_pxm_to_node(), but always returns an online + * node. When the mapped node from a given proximity ID is offline, it + * looks up the node distance table and returns the nearest online node. + * + * ACPI device drivers, which are called after the NUMA initialization has + * completed in the kernel, can call this interface to obtain their device + * NUMA topology from ACPI tables. Such drivers do not have to deal with + * offline nodes. A node may be offline when a device proximity ID is + * unique, SRAT memory entry does not exist, or NUMA is disabled, ex. + * "numa=off" on x86. + */ +static inline int acpi_map_pxm_to_online_node(int pxm) +{ + int node = acpi_map_pxm_to_node(pxm); + + return numa_map_to_online_node(node); +} #else static inline int acpi_map_pxm_to_online_node(int pxm) { diff -u linux-azure-5.4.0/include/linux/arm-smccc.h linux-azure-5.4.0/include/linux/arm-smccc.h --- linux-azure-5.4.0/include/linux/arm-smccc.h +++ linux-azure-5.4.0/include/linux/arm-smccc.h @@ -45,6 +45,7 @@ #define ARM_SMCCC_OWNER_SIP 2 #define ARM_SMCCC_OWNER_OEM 3 #define ARM_SMCCC_OWNER_STANDARD 4 +#define ARM_SMCCC_OWNER_VENDOR_HYP 6 #define ARM_SMCCC_OWNER_TRUSTED_APP 48 #define ARM_SMCCC_OWNER_TRUSTED_APP_END 49 #define ARM_SMCCC_OWNER_TRUSTED_OS 50 @@ -76,12 +77,33 @@ ARM_SMCCC_SMC_32, \ 0, 0x7fff) +#define ARM_SMCCC_ARCH_WORKAROUND_3 \ + ARM_SMCCC_CALL_VAL(ARM_SMCCC_FAST_CALL, \ + ARM_SMCCC_SMC_32, \ + 0, 0x3fff) + #define SMCCC_ARCH_WORKAROUND_RET_UNAFFECTED 1 #ifndef __ASSEMBLY__ #include #include + +enum arm_smccc_conduit { + SMCCC_CONDUIT_NONE, + SMCCC_CONDUIT_SMC, + SMCCC_CONDUIT_HVC, +}; + +/** + * arm_smccc_1_1_get_conduit() + * + * Returns the conduit to be used for SMCCCv1.1 or later. + * + * When SMCCCv1.1 is not present, returns SMCCC_CONDUIT_NONE. + */ +enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void); + /** * struct arm_smccc_res - Result from SMC/HVC call * @a0-a3 result values from registers 0 to 3 @@ -93,6 +115,61 @@ unsigned long a3; }; +#ifdef CONFIG_ARM64 +/** + * struct arm_smccc_1_2_regs - Arguments for or Results from SMC/HVC call + * @a0-a17 argument values from registers 0 to 17 + */ +struct arm_smccc_1_2_regs { + unsigned long a0; + unsigned long a1; + unsigned long a2; + unsigned long a3; + unsigned long a4; + unsigned long a5; + unsigned long a6; + unsigned long a7; + unsigned long a8; + unsigned long a9; + unsigned long a10; + unsigned long a11; + unsigned long a12; + unsigned long a13; + unsigned long a14; + unsigned long a15; + unsigned long a16; + unsigned long a17; +}; + +/** + * arm_smccc_1_2_hvc() - make HVC calls + * @args: arguments passed via struct arm_smccc_1_2_regs + * @res: result values via struct arm_smccc_1_2_regs + * + * This function is used to make HVC calls following SMC Calling Convention + * v1.2 or above. The content of the supplied param are copied from the + * structure to registers prior to the HVC instruction. The return values + * are updated with the content from registers on return from the HVC + * instruction. + */ +asmlinkage void arm_smccc_1_2_hvc(const struct arm_smccc_1_2_regs *args, + struct arm_smccc_1_2_regs *res); + +/** + * arm_smccc_1_2_smc() - make SMC calls + * @args: arguments passed via struct arm_smccc_1_2_regs + * @res: result values via struct arm_smccc_1_2_regs + * + * This function is used to make SMC calls following SMC Calling Convention + * v1.2 or above. The content of the supplied param are copied from the + * structure to registers prior to the SMC instruction. The return values + * are updated with the content from registers on return from the SMC + * instruction. + */ +asmlinkage void arm_smccc_1_2_smc(const struct arm_smccc_1_2_regs *args, + struct arm_smccc_1_2_regs *res); +#endif + /** * struct arm_smccc_quirk - Contains quirk information * @id: quirk identification @@ -305,4 +382,62 @@ #define SMCCC_RET_NOT_REQUIRED -2 +/* + * Like arm_smccc_1_1* but always returns SMCCC_RET_NOT_SUPPORTED. + * Used when the SMCCC conduit is not defined. The empty asm statement + * avoids compiler warnings about unused variables. + */ +#define __fail_smccc_1_1(...) \ + do { \ + __declare_args(__count_args(__VA_ARGS__), __VA_ARGS__); \ + asm ("" __constraints(__count_args(__VA_ARGS__))); \ + if (___res) \ + ___res->a0 = SMCCC_RET_NOT_SUPPORTED; \ + } while (0) + +/* + * arm_smccc_1_1_invoke() - make an SMCCC v1.1 compliant call + * + * This is a variadic macro taking one to eight source arguments, and + * an optional return structure. + * + * @a0-a7: arguments passed in registers 0 to 7 + * @res: result values from registers 0 to 3 + * + * This macro will make either an HVC call or an SMC call depending on the + * current SMCCC conduit. If no valid conduit is available then -1 + * (SMCCC_RET_NOT_SUPPORTED) is returned in @res.a0 (if supplied). + * + * The return value also provides the conduit that was used. + */ +#define arm_smccc_1_1_invoke(...) ({ \ + int method = arm_smccc_1_1_get_conduit(); \ + switch (method) { \ + case SMCCC_CONDUIT_HVC: \ + arm_smccc_1_1_hvc(__VA_ARGS__); \ + break; \ + case SMCCC_CONDUIT_SMC: \ + arm_smccc_1_1_smc(__VA_ARGS__); \ + break; \ + default: \ + __fail_smccc_1_1(__VA_ARGS__); \ + method = SMCCC_CONDUIT_NONE; \ + break; \ + } \ + method; \ + }) + +/* Paravirtualised time calls (defined by ARM DEN0057A) */ +#define ARM_SMCCC_HV_PV_TIME_FEATURES \ + ARM_SMCCC_CALL_VAL(ARM_SMCCC_FAST_CALL, \ + ARM_SMCCC_SMC_64, \ + ARM_SMCCC_OWNER_STANDARD_HYP, \ + 0x20) + +#define ARM_SMCCC_HV_PV_TIME_ST \ + ARM_SMCCC_CALL_VAL(ARM_SMCCC_FAST_CALL, \ + ARM_SMCCC_SMC_64, \ + ARM_SMCCC_OWNER_STANDARD_HYP, \ + 0x21) + #endif /*__ASSEMBLY__*/ #endif /*__LINUX_ARM_SMCCC_H*/ diff -u linux-azure-5.4.0/include/linux/bitfield.h linux-azure-5.4.0/include/linux/bitfield.h --- linux-azure-5.4.0/include/linux/bitfield.h +++ linux-azure-5.4.0/include/linux/bitfield.h @@ -41,6 +41,22 @@ #define __bf_shf(x) (__builtin_ffsll(x) - 1) +#define __scalar_type_to_unsigned_cases(type) \ + unsigned type: (unsigned type)0, \ + signed type: (unsigned type)0 + +#define __unsigned_scalar_typeof(x) typeof( \ + _Generic((x), \ + char: (unsigned char)0, \ + __scalar_type_to_unsigned_cases(char), \ + __scalar_type_to_unsigned_cases(short), \ + __scalar_type_to_unsigned_cases(int), \ + __scalar_type_to_unsigned_cases(long), \ + __scalar_type_to_unsigned_cases(long long), \ + default: (x))) + +#define __bf_cast_unsigned(type, x) ((__unsigned_scalar_typeof(type))(x)) + #define __BF_FIELD_CHECK(_mask, _reg, _val, _pfx) \ ({ \ BUILD_BUG_ON_MSG(!__builtin_constant_p(_mask), \ @@ -49,7 +65,8 @@ BUILD_BUG_ON_MSG(__builtin_constant_p(_val) ? \ ~((_mask) >> __bf_shf(_mask)) & (_val) : 0, \ _pfx "value too large for the field"); \ - BUILD_BUG_ON_MSG((_mask) > (typeof(_reg))~0ull, \ + BUILD_BUG_ON_MSG(__bf_cast_unsigned(_mask, _mask) > \ + __bf_cast_unsigned(_reg, ~0ull), \ _pfx "type of reg too small for mask"); \ __BUILD_BUG_ON_NOT_POWER_OF_2((_mask) + \ (1ULL << __bf_shf(_mask))); \ diff -u linux-azure-5.4.0/include/linux/blkdev.h linux-azure-5.4.0/include/linux/blkdev.h --- linux-azure-5.4.0/include/linux/blkdev.h +++ linux-azure-5.4.0/include/linux/blkdev.h @@ -59,6 +59,14 @@ */ #define BLKCG_MAX_POLS 5 +static inline int blk_validate_block_size(unsigned int bsize) +{ + if (bsize < 512 || bsize > PAGE_SIZE || !is_power_of_2(bsize)) + return -EINVAL; + + return 0; +} + typedef void (rq_end_io_fn)(struct request *, blk_status_t); /* @@ -1401,6 +1409,22 @@ return offset << SECTOR_SHIFT; } +/* + * Two cases of handling DISCARD merge: + * If max_discard_segments > 1, the driver takes every bio + * as a range and send them to controller together. The ranges + * needn't to be contiguous. + * Otherwise, the bios/requests will be handled as same as + * others which should be contiguous. + */ +static inline bool blk_discard_mergable(struct request *req) +{ + if (req_op(req) == REQ_OP_DISCARD && + queue_max_discard_segments(req->q) > 1) + return true; + return false; +} + static inline int bdev_discard_alignment(struct block_device *bdev) { struct request_queue *q = bdev_get_queue(bdev); diff -u linux-azure-5.4.0/include/linux/bpf.h linux-azure-5.4.0/include/linux/bpf.h --- linux-azure-5.4.0/include/linux/bpf.h +++ linux-azure-5.4.0/include/linux/bpf.h @@ -751,6 +751,12 @@ int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog, const union bpf_attr *kattr, union bpf_attr __user *uattr); + +static inline bool unprivileged_ebpf_enabled(void) +{ + return !sysctl_unprivileged_bpf_disabled; +} + #else /* !CONFIG_BPF_SYSCALL */ static inline struct bpf_prog *bpf_prog_get(u32 ufd) { @@ -881,6 +887,12 @@ { return -ENOTSUPP; } + +static inline bool unprivileged_ebpf_enabled(void) +{ + return false; +} + #endif /* CONFIG_BPF_SYSCALL */ static inline struct bpf_prog *bpf_prog_get_type(u32 ufd, @@ -917,6 +929,8 @@ struct net_device *netdev); bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev); +void unpriv_ebpf_notify(int new_state); + #if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL) int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr); diff -u linux-azure-5.4.0/include/linux/bpf_verifier.h linux-azure-5.4.0/include/linux/bpf_verifier.h --- linux-azure-5.4.0/include/linux/bpf_verifier.h +++ linux-azure-5.4.0/include/linux/bpf_verifier.h @@ -194,6 +194,13 @@ u32 idx; }; +struct bpf_id_pair { + u32 old; + u32 cur; +}; + +/* Maximum number of register states that can exist at once */ +#define BPF_ID_MAP_SIZE (MAX_BPF_REG + MAX_BPF_STACK / BPF_REG_SIZE) #define MAX_CALL_FRAMES 8 struct bpf_verifier_state { /* call stack tracking */ @@ -301,8 +308,8 @@ }; }; int ctx_field_size; /* the ctx field size for load insn, maybe 0 */ - int sanitize_stack_off; /* stack slot to be cleared */ bool seen; /* this insn was processed by the verifier */ + bool sanitize_stack_spill; /* subject to Spectre v4 sanitation */ bool zext_dst; /* this insn zero extends dst reg */ u8 alu_state; /* used in combination with alu_limit */ bool prune_point; @@ -364,12 +371,14 @@ struct bpf_map *used_maps[MAX_USED_MAPS]; /* array of map's used by eBPF program */ u32 used_map_cnt; /* number of used maps */ u32 id_gen; /* used to generate unique reg IDs */ + bool explore_alu_limits; bool allow_ptr_leaks; bool seen_direct_write; struct bpf_insn_aux_data *insn_aux_data; /* array of per-insn state */ const struct bpf_line_info *prev_linfo; struct bpf_verifier_log log; struct bpf_subprog_info subprog_info[BPF_MAX_SUBPROGS + 1]; + struct bpf_id_pair idmap_scratch[BPF_ID_MAP_SIZE]; struct { int *insn_state; int *insn_stack; diff -u linux-azure-5.4.0/include/linux/buffer_head.h linux-azure-5.4.0/include/linux/buffer_head.h --- linux-azure-5.4.0/include/linux/buffer_head.h +++ linux-azure-5.4.0/include/linux/buffer_head.h @@ -117,7 +117,6 @@ * of the form "mark_buffer_foo()". These are higher-level functions which * do something in addition to setting a b_state bit. */ -BUFFER_FNS(Uptodate, uptodate) BUFFER_FNS(Dirty, dirty) TAS_BUFFER_FNS(Dirty, dirty) BUFFER_FNS(Lock, locked) @@ -135,6 +134,41 @@ BUFFER_FNS(Prio, prio) BUFFER_FNS(Defer_Completion, defer_completion) +static __always_inline void set_buffer_uptodate(struct buffer_head *bh) +{ + /* + * If somebody else already set this uptodate, they will + * have done the memory barrier, and a reader will thus + * see *some* valid buffer state. + * + * Any other serialization (with IO errors or whatever that + * might clear the bit) has to come from other state (eg BH_Lock). + */ + if (test_bit(BH_Uptodate, &bh->b_state)) + return; + + /* + * make it consistent with folio_mark_uptodate + * pairs with smp_load_acquire in buffer_uptodate + */ + smp_mb__before_atomic(); + set_bit(BH_Uptodate, &bh->b_state); +} + +static __always_inline void clear_buffer_uptodate(struct buffer_head *bh) +{ + clear_bit(BH_Uptodate, &bh->b_state); +} + +static __always_inline int buffer_uptodate(const struct buffer_head *bh) +{ + /* + * make it consistent with folio_test_uptodate + * pairs with smp_mb__before_atomic in set_buffer_uptodate + */ + return (smp_load_acquire(&bh->b_state) & (1UL << BH_Uptodate)) != 0; +} + #define bh_offset(bh) ((unsigned long)(bh)->b_data & ~PAGE_MASK) /* If we *know* page->private refers to buffer_heads */ diff -u linux-azure-5.4.0/include/linux/cgroup-defs.h linux-azure-5.4.0/include/linux/cgroup-defs.h --- linux-azure-5.4.0/include/linux/cgroup-defs.h +++ linux-azure-5.4.0/include/linux/cgroup-defs.h @@ -255,7 +255,8 @@ * List of csets participating in the on-going migration either as * source or destination. Protected by cgroup_mutex. */ - struct list_head mg_preload_node; + struct list_head mg_src_preload_node; + struct list_head mg_dst_preload_node; struct list_head mg_node; /* diff -u linux-azure-5.4.0/include/linux/compiler.h linux-azure-5.4.0/include/linux/compiler.h --- linux-azure-5.4.0/include/linux/compiler.h +++ linux-azure-5.4.0/include/linux/compiler.h @@ -233,6 +233,8 @@ (typeof(ptr)) (__ptr + (off)); }) #endif +#define absolute_pointer(val) RELOC_HIDE((void *)(val), 0) + #ifndef OPTIMIZER_HIDE_VAR /* Make the optimizer believe the variable can be manipulated arbitrarily. */ #define OPTIMIZER_HIDE_VAR(var) \ diff -u linux-azure-5.4.0/include/linux/cpu.h linux-azure-5.4.0/include/linux/cpu.h --- linux-azure-5.4.0/include/linux/cpu.h +++ linux-azure-5.4.0/include/linux/cpu.h @@ -64,6 +64,12 @@ char *buf); extern ssize_t cpu_show_itlb_multihit(struct device *dev, struct device_attribute *attr, char *buf); +extern ssize_t cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf); +extern ssize_t cpu_show_mmio_stale_data(struct device *dev, + struct device_attribute *attr, + char *buf); +extern ssize_t cpu_show_retbleed(struct device *dev, + struct device_attribute *attr, char *buf); extern __printf(4, 5) struct device *cpu_device_create(struct device *parent, void *drvdata, diff -u linux-azure-5.4.0/include/linux/cpuhotplug.h linux-azure-5.4.0/include/linux/cpuhotplug.h --- linux-azure-5.4.0/include/linux/cpuhotplug.h +++ linux-azure-5.4.0/include/linux/cpuhotplug.h @@ -60,6 +60,7 @@ CPUHP_LUSTRE_CFS_DEAD, CPUHP_AP_ARM_CACHE_B15_RAC_DEAD, CPUHP_PADATA_DEAD, + CPUHP_RANDOM_PREPARE, CPUHP_WORKQUEUE_PREP, CPUHP_POWER_NUMA_PREPARE, CPUHP_HRTIMERS_PREPARE, @@ -119,6 +120,7 @@ CPUHP_AP_ARM_L2X0_STARTING, CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING, CPUHP_AP_ARM_ARCH_TIMER_STARTING, + CPUHP_AP_OMAP_DM_TIMER_STARTING, CPUHP_AP_ARM_GLOBAL_TIMER_STARTING, CPUHP_AP_JCORE_TIMER_STARTING, CPUHP_AP_ARM_TWD_STARTING, @@ -177,6 +179,7 @@ CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE, CPUHP_AP_WATCHDOG_ONLINE, CPUHP_AP_WORKQUEUE_ONLINE, + CPUHP_AP_RANDOM_ONLINE, CPUHP_AP_RCUTREE_ONLINE, CPUHP_AP_BASE_CACHEINFO_ONLINE, CPUHP_AP_ONLINE_DYN, diff -u linux-azure-5.4.0/include/linux/debugfs.h linux-azure-5.4.0/include/linux/debugfs.h --- linux-azure-5.4.0/include/linux/debugfs.h +++ linux-azure-5.4.0/include/linux/debugfs.h @@ -85,6 +85,8 @@ void debugfs_remove(struct dentry *dentry); void debugfs_remove_recursive(struct dentry *dentry); +void debugfs_lookup_and_remove(const char *name, struct dentry *parent); + const struct file_operations *debugfs_real_fops(const struct file *filp); int debugfs_file_get(struct dentry *dentry); @@ -216,6 +218,10 @@ static inline void debugfs_remove_recursive(struct dentry *dentry) { } +static inline void debugfs_lookup_and_remove(const char *name, + struct dentry *parent) +{ } + const struct file_operations *debugfs_real_fops(const struct file *filp); static inline int debugfs_file_get(struct dentry *dentry) diff -u linux-azure-5.4.0/include/linux/device-mapper.h linux-azure-5.4.0/include/linux/device-mapper.h --- linux-azure-5.4.0/include/linux/device-mapper.h +++ linux-azure-5.4.0/include/linux/device-mapper.h @@ -28,7 +28,6 @@ DM_TYPE_BIO_BASED = 1, DM_TYPE_REQUEST_BASED = 2, DM_TYPE_DAX_BIO_BASED = 3, - DM_TYPE_NVME_BIO_BASED = 4, }; typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t; diff -u linux-azure-5.4.0/include/linux/device.h linux-azure-5.4.0/include/linux/device.h --- linux-azure-5.4.0/include/linux/device.h +++ linux-azure-5.4.0/include/linux/device.h @@ -1260,6 +1260,7 @@ struct dev_pin_info *pins; #endif #ifdef CONFIG_GENERIC_MSI_IRQ + raw_spinlock_t msi_lock; struct list_head msi_list; #endif diff -u linux-azure-5.4.0/include/linux/efi.h linux-azure-5.4.0/include/linux/efi.h --- linux-azure-5.4.0/include/linux/efi.h +++ linux-azure-5.4.0/include/linux/efi.h @@ -167,6 +167,8 @@ size_t page_bytes_remain; }; +int efi_capsule_setup_info(struct capsule_info *cap_info, void *kbuff, + size_t hdr_bytes); int __efi_capsule_setup_info(struct capsule_info *cap_info); /* @@ -695,6 +697,7 @@ #define LINUX_EFI_TPM_EVENT_LOG_GUID EFI_GUID(0xb7799cb0, 0xeca2, 0x4943, 0x96, 0x67, 0x1f, 0xae, 0x07, 0xb7, 0x47, 0xfa) #define LINUX_EFI_TPM_FINAL_LOG_GUID EFI_GUID(0x1e2ed096, 0x30e2, 0x4254, 0xbd, 0x89, 0x86, 0x3b, 0xbe, 0xf8, 0x23, 0x25) #define LINUX_EFI_MEMRESERVE_TABLE_GUID EFI_GUID(0x888eb0c6, 0x8ede, 0x4ff5, 0xa8, 0xf0, 0x9a, 0xee, 0x5c, 0xb9, 0x77, 0xc2) +#define LINUX_EFI_MOK_VARIABLE_TABLE_GUID EFI_GUID(0xc451ed2b, 0x9694, 0x45d3, 0xba, 0xba, 0xed, 0x9f, 0x89, 0x88, 0xa3, 0x89) /* OEM GUIDs */ #define DELLEMC_EFI_RCI2_TABLE_GUID EFI_GUID(0x2d9f28a2, 0xa886, 0x456a, 0x97, 0xa8, 0xf1, 0x1e, 0xf2, 0x4f, 0xf4, 0x55) @@ -1004,6 +1007,7 @@ unsigned long rng_seed; /* UEFI firmware random seed */ unsigned long tpm_log; /* TPM2 Event Log table */ unsigned long tpm_final_log; /* TPM2 Final Events Log table */ + unsigned long mokvar_table; /* MOK variable config table */ unsigned long mem_reserve; /* Linux EFI memreserve table */ efi_get_time_t *get_time; efi_set_time_t *set_time; @@ -1723,7 +1727,7 @@ void *priv, efi_exit_boot_map_processing priv_func); -#define EFI_RANDOM_SEED_SIZE 64U +#define EFI_RANDOM_SEED_SIZE 32U // BLAKE2S_HASH_SIZE struct linux_efi_random_seed { u32 size; @@ -1811,2 +1815,34 @@ +/* + * The LINUX_EFI_MOK_VARIABLE_TABLE_GUID config table can be provided + * to the kernel by an EFI boot loader. The table contains a packed + * sequence of these entries, one for each named MOK variable. + * The sequence is terminated by an entry with a completely NULL + * name and 0 data size. + */ +struct efi_mokvar_table_entry { + char name[256]; + u64 data_size; + u8 data[]; +} __attribute((packed)); + +#ifdef CONFIG_LOAD_UEFI_KEYS +extern void __init efi_mokvar_table_init(void); +extern struct efi_mokvar_table_entry *efi_mokvar_entry_next( + struct efi_mokvar_table_entry **mokvar_entry); +extern struct efi_mokvar_table_entry *efi_mokvar_entry_find(const char *name); +#else +static inline void efi_mokvar_table_init(void) { } +static inline struct efi_mokvar_table_entry *efi_mokvar_entry_next( + struct efi_mokvar_table_entry **mokvar_entry) +{ + return NULL; +} +static inline struct efi_mokvar_table_entry *efi_mokvar_entry_find( + const char *name) +{ + return NULL; +} +#endif + #endif /* _LINUX_EFI_H */ diff -u linux-azure-5.4.0/include/linux/elfcore.h linux-azure-5.4.0/include/linux/elfcore.h --- linux-azure-5.4.0/include/linux/elfcore.h +++ linux-azure-5.4.0/include/linux/elfcore.h @@ -58,7 +58,7 @@ } #endif -#if defined(CONFIG_UM) || defined(CONFIG_IA64) +#if (defined(CONFIG_UML) && defined(CONFIG_X86_32)) || defined(CONFIG_IA64) /* * These functions parameterize elf_core_dump in fs/binfmt_elf.c to write out * extra segments containing the gate DSO contents. Dumping its diff -u linux-azure-5.4.0/include/linux/filter.h linux-azure-5.4.0/include/linux/filter.h --- linux-azure-5.4.0/include/linux/filter.h +++ linux-azure-5.4.0/include/linux/filter.h @@ -68,6 +68,11 @@ /* unused opcode to mark call to interpreter with arguments */ #define BPF_CALL_ARGS 0xe0 +/* unused opcode to mark speculation barrier for mitigating + * Speculative Store Bypass + */ +#define BPF_NOSPEC 0xc0 + /* As per nm, we expose JITed images as text (code) section for * kallsyms. That way, tools like perf can find it to match * addresses. @@ -368,6 +373,16 @@ .off = 0, \ .imm = 0 }) +/* Speculation barrier */ + +#define BPF_ST_NOSPEC() \ + ((struct bpf_insn) { \ + .code = BPF_ST | BPF_NOSPEC, \ + .dst_reg = 0, \ + .src_reg = 0, \ + .off = 0, \ + .imm = 0 }) + /* Internal classic blocks for direct assignment */ #define __BPF_STMT(CODE, K) \ @@ -937,6 +952,7 @@ extern int bpf_jit_harden; extern int bpf_jit_kallsyms; extern long bpf_jit_limit; +extern long bpf_jit_limit_max; typedef void (*bpf_jit_fill_hole_t)(void *area, unsigned int size); diff -u linux-azure-5.4.0/include/linux/fs.h linux-azure-5.4.0/include/linux/fs.h --- linux-azure-5.4.0/include/linux/fs.h +++ linux-azure-5.4.0/include/linux/fs.h @@ -1862,6 +1862,7 @@ struct file *file_out, loff_t pos_out, loff_t len, unsigned int remap_flags); int (*fadvise)(struct file *, loff_t, loff_t, int); + bool may_pollfree; } __randomize_layout; struct inode_operations { diff -u linux-azure-5.4.0/include/linux/fscrypt.h linux-azure-5.4.0/include/linux/fscrypt.h --- linux-azure-5.4.0/include/linux/fscrypt.h +++ linux-azure-5.4.0/include/linux/fscrypt.h @@ -298,6 +298,7 @@ extern const char *fscrypt_get_symlink(struct inode *inode, const void *caddr, unsigned int max_size, struct delayed_call *done); +int fscrypt_symlink_getattr(const struct path *path, struct kstat *stat); static inline void fscrypt_set_ops(struct super_block *sb, const struct fscrypt_operations *s_cop) { @@ -585,6 +586,12 @@ return ERR_PTR(-EOPNOTSUPP); } +static inline int fscrypt_symlink_getattr(const struct path *path, + struct kstat *stat) +{ + return -EOPNOTSUPP; +} + static inline void fscrypt_set_ops(struct super_block *sb, const struct fscrypt_operations *s_cop) { diff -u linux-azure-5.4.0/include/linux/hid.h linux-azure-5.4.0/include/linux/hid.h --- linux-azure-5.4.0/include/linux/hid.h +++ linux-azure-5.4.0/include/linux/hid.h @@ -344,6 +344,8 @@ /* BIT(9) reserved for backward compatibility, was NO_INIT_INPUT_REPORTS */ #define HID_QUIRK_ALWAYS_POLL BIT(10) #define HID_QUIRK_INPUT_PER_APP BIT(11) +#define HID_QUIRK_X_INVERT BIT(12) +#define HID_QUIRK_Y_INVERT BIT(13) #define HID_QUIRK_SKIP_OUTPUT_REPORTS BIT(16) #define HID_QUIRK_SKIP_OUTPUT_REPORT_ID BIT(17) #define HID_QUIRK_NO_OUTPUT_REPORTS_ON_INTR_EP BIT(18) @@ -831,6 +833,11 @@ return hdev->ll_driver == driver; } +static inline bool hid_is_usb(struct hid_device *hdev) +{ + return hid_is_using_ll_driver(hdev, &usb_hid_driver); +} + #define PM_HINT_FULLON 1<<5 #define PM_HINT_NORMAL 1<<1 @@ -1154,8 +1161,7 @@ */ static inline u32 hid_report_len(struct hid_report *report) { - /* equivalent to DIV_ROUND_UP(report->size, 8) + !!(report->id > 0) */ - return ((report->size - 1) >> 3) + 1 + (report->id > 0); + return DIV_ROUND_UP(report->size, 8) + (report->id > 0); } int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, u32 size, diff -u linux-azure-5.4.0/include/linux/hrtimer.h linux-azure-5.4.0/include/linux/hrtimer.h --- linux-azure-5.4.0/include/linux/hrtimer.h +++ linux-azure-5.4.0/include/linux/hrtimer.h @@ -317,16 +317,12 @@ extern void hrtimer_interrupt(struct clock_event_device *dev); -extern void clock_was_set_delayed(void); - extern unsigned int hrtimer_resolution; #else #define hrtimer_resolution (unsigned int)LOW_RES_NSEC -static inline void clock_was_set_delayed(void) { } - #endif static inline ktime_t @@ -350,7 +346,6 @@ timer->base->get_time()); } -extern void clock_was_set(void); #ifdef CONFIG_TIMERFD extern void timerfd_clock_was_set(void); #else diff -u linux-azure-5.4.0/include/linux/hugetlb.h linux-azure-5.4.0/include/linux/hugetlb.h --- linux-azure-5.4.0/include/linux/hugetlb.h +++ linux-azure-5.4.0/include/linux/hugetlb.h @@ -469,17 +469,6 @@ return h - hstates; } -pgoff_t __basepage_index(struct page *page); - -/* Return page->index in PAGE_SIZE units */ -static inline pgoff_t basepage_index(struct page *page) -{ - if (!PageCompound(page)) - return page->index; - - return __basepage_index(page); -} - extern int dissolve_free_huge_page(struct page *page); extern int dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn); @@ -553,6 +542,11 @@ void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm); +static inline void hugetlb_count_init(struct mm_struct *mm) +{ + atomic_long_set(&mm->hugetlb_usage, 0); +} + static inline void hugetlb_count_add(long l, struct mm_struct *mm) { atomic_long_add(l, &mm->hugetlb_usage); @@ -695,11 +689,6 @@ return 0; } -static inline pgoff_t basepage_index(struct page *page) -{ - return page->index; -} - static inline int dissolve_free_huge_page(struct page *page) { return 0; @@ -727,6 +716,10 @@ return &mm->page_table_lock; } +static inline void hugetlb_count_init(struct mm_struct *mm) +{ +} + static inline void hugetlb_report_usage(struct seq_file *f, struct mm_struct *m) { } diff -u linux-azure-5.4.0/include/linux/hyperv.h linux-azure-5.4.0/include/linux/hyperv.h --- linux-azure-5.4.0/include/linux/hyperv.h +++ linux-azure-5.4.0/include/linux/hyperv.h @@ -14,6 +14,7 @@ #include +#include #include #include #include @@ -23,12 +24,55 @@ #include #include #include +#include #define MAX_PAGE_BUFFER_COUNT 32 #define MAX_MULTIPAGE_BUFFER_COUNT 32 /* 128K */ #pragma pack(push, 1) +/* + * Types for GPADL, decides is how GPADL header is created. + * + * It doesn't make much difference between BUFFER and RING if PAGE_SIZE is the + * same as HV_HYP_PAGE_SIZE. + * + * If PAGE_SIZE is bigger than HV_HYP_PAGE_SIZE, the headers of ring buffers + * will be of PAGE_SIZE, however, only the first HV_HYP_PAGE will be put + * into gpadl, therefore the number for HV_HYP_PAGE and the indexes of each + * HV_HYP_PAGE will be different between different types of GPADL, for example + * if PAGE_SIZE is 64K: + * + * BUFFER: + * + * gva: |-- 64k --|-- 64k --| ... | + * gpa: | 4k | 4k | ... | 4k | 4k | 4k | ... | 4k | + * index: 0 1 2 15 16 17 18 .. 31 32 ... + * | | ... | | | ... | ... + * v V V V V V + * gpadl: | 4k | 4k | ... | 4k | 4k | 4k | ... | 4k | ... | + * index: 0 1 2 ... 15 16 17 18 .. 31 32 ... + * + * RING: + * + * | header | data | header | data | + * gva: |-- 64k --|-- 64k --| ... |-- 64k --|-- 64k --| ... | + * gpa: | 4k | .. | 4k | 4k | ... | 4k | ... | 4k | .. | 4k | .. | ... | + * index: 0 1 16 17 18 31 ... n n+1 n+16 ... 2n + * | / / / | / / + * | / / / | / / + * | / / ... / ... | / ... / + * | / / / | / / + * | / / / | / / + * V V V V V V v + * gpadl: | 4k | 4k | ... | ... | 4k | 4k | ... | + * index: 0 1 2 ... 16 ... n-15 n-14 n-13 ... 2n-30 + */ +enum hv_gpadl_type { + HV_GPADL_BUFFER, + HV_GPADL_RING +}; + /* Single-page buffer */ struct hv_page_buffer { u32 len; @@ -111,7 +155,7 @@ } feature_bits; /* Pad it to PAGE_SIZE so that data starts on page boundary */ - u8 reserved2[4028]; + u8 reserved2[PAGE_SIZE - 68]; /* * Ring data starts here + RingDataStartOffset @@ -120,6 +164,10 @@ u8 buffer[0]; } __packed; +/* Calculate the proper size of a ringbuffer, it must be page-aligned */ +#define VMBUS_RING_SIZE(payload_sz) PAGE_ALIGN(sizeof(struct hv_ring_buffer) + \ + (payload_sz)) + struct hv_ring_buffer_info { struct hv_ring_buffer *ring_buffer; u32 ring_size; /* Include the shared header */ @@ -182,19 +230,21 @@ * 2 . 4 (Windows 8) * 3 . 0 (Windows 8 R2) * 4 . 0 (Windows 10) + * 4 . 1 (Windows 10 RS3) * 5 . 0 (Newer Windows 10) + * 5 . 1 (Windows 10 RS4) + * 5 . 2 (Windows Server 2019, RS5) */ #define VERSION_WS2008 ((0 << 16) | (13)) #define VERSION_WIN7 ((1 << 16) | (1)) #define VERSION_WIN8 ((2 << 16) | (4)) #define VERSION_WIN8_1 ((3 << 16) | (0)) -#define VERSION_WIN10 ((4 << 16) | (0)) +#define VERSION_WIN10 ((4 << 16) | (0)) +#define VERSION_WIN10_V4_1 ((4 << 16) | (1)) #define VERSION_WIN10_V5 ((5 << 16) | (0)) - -#define VERSION_INVAL -1 - -#define VERSION_CURRENT VERSION_WIN10_V5 +#define VERSION_WIN10_V5_1 ((5 << 16) | (1)) +#define VERSION_WIN10_V5_2 ((5 << 16) | (2)) /* Make maximum size of pipe payload of 16K */ #define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384) @@ -423,7 +473,7 @@ CHANNELMSG_19 = 19, CHANNELMSG_20 = 20, CHANNELMSG_TL_CONNECT_REQUEST = 21, - CHANNELMSG_22 = 22, + CHANNELMSG_MODIFYCHANNEL = 22, CHANNELMSG_TL_CONNECT_RESULT = 23, CHANNELMSG_COUNT }; @@ -618,6 +668,13 @@ guid_t host_service_id; } __packed; +/* Modify Channel parameters, cf. vmbus_send_modifychannel() */ +struct vmbus_channel_modifychannel { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 target_vp; +} __packed; + struct vmbus_channel_version_response { struct vmbus_channel_message_header header; u8 version_supported; @@ -687,11 +744,6 @@ } u; }; -enum hv_numa_policy { - HV_BALANCED = 0, - HV_LOCALIZED, -}; - enum vmbus_device_type { HV_IDE = 0, HV_SCSI, @@ -709,6 +761,7 @@ HV_FCOPY, HV_BACKUP, HV_DM, + HV_AZURE_BLOB, HV_UNKNOWN, }; @@ -769,6 +822,15 @@ void (*onchannel_callback)(void *context); void *channel_callback_context; + void (*change_target_cpu_callback)(struct vmbus_channel *channel, + u32 old, u32 new); + + /* + * Synchronize channel scheduling and channel removal; see the inline + * comments in vmbus_chan_sched() and vmbus_reset_channel_cb(). + */ + spinlock_t sched_lock; + /* * A channel can be marked for one of three modes of reading: * BATCHED - callback called from taslket and should read @@ -790,22 +852,16 @@ u64 sig_event; /* - * Starting with win8, this field will be used to specify - * the target virtual processor on which to deliver the interrupt for - * the host to guest communication. - * Prior to win8, incoming channel interrupts would only - * be delivered on cpu 0. Setting this value to 0 would - * preserve the earlier behavior. + * Starting with win8, this field will be used to specify the + * target CPU on which to deliver the interrupt for the host + * to guest communication. + * + * Prior to win8, incoming channel interrupts would only be + * delivered on CPU 0. Setting this value to 0 would preserve + * the earlier behavior. */ - u32 target_vp; - /* The corresponding CPUID in the guest */ u32 target_cpu; /* - * State to manage the CPU affiliation of channels. - */ - struct cpumask alloced_cpus_in_node; - int numa_node; - /* * Support for sub-channels. For high performance devices, * it will be useful to have multiple sub-channels to support * a scalable communication infrastructure with the host. @@ -834,12 +890,6 @@ void (*chn_rescind_callback)(struct vmbus_channel *channel); /* - * The spinlock to protect the structure. It is being used to protect - * test-and-set access to various attributes of the structure as well - * as all sc_list operations. - */ - spinlock_t lock; - /* * All Sub-channels of a primary channel are linked here. */ struct list_head sc_list; @@ -852,11 +902,6 @@ * Support per-channel state for use by vmbus drivers. */ void *per_channel_state; - /* - * To support per-cpu lookup mapping of relid to channel, - * link up channels based on their CPU affinity. - */ - struct list_head percpu_list; /* * Defer freeing channel until after all cpu's have @@ -895,19 +940,14 @@ */ bool low_latency; + bool probe_done; + /* - * NUMA distribution policy: - * We support two policies: - * 1) Balanced: Here all performance critical channels are - * distributed evenly amongst all the NUMA nodes. - * This policy will be the default policy. - * 2) Localized: All channels of a given instance of a - * performance critical service will be assigned CPUs - * within a selected NUMA node. + * Cache the device ID here for easy access; this is useful, in + * particular, in situations where the channel's device_obj has + * not been allocated/initialized yet. */ - enum hv_numa_policy affinity_policy; - - bool probe_done; + u16 device_id; /* * We must offload the handling of the primary/sub channels @@ -947,12 +987,6 @@ return c->offermsg.offer.sub_channel_index != 0; } -static inline void set_channel_affinity_state(struct vmbus_channel *c, - enum hv_numa_policy policy) -{ - c->affinity_policy = policy; -} - static inline void set_channel_read_mode(struct vmbus_channel *c, enum hv_callback_mode mode) { @@ -1000,7 +1034,7 @@ c->low_latency = false; } -void vmbus_onmessage(void *context); +void vmbus_onmessage(struct vmbus_channel_message_header *hdr); int vmbus_request_offers(void); @@ -1262,6 +1296,14 @@ 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f) /* + * Azure Blob GUID + * {0590b792-db64-45cc-81db-b8d70c577c9e} + */ +#define HV_AZURE_BLOB_GUID \ + .guid = GUID_INIT(0x0590b792, 0xdb64, 0x45cc, 0x81, 0xdb, \ + 0xb8, 0xd7, 0x0c, 0x57, 0x7c, 0x9e) + +/* * Shutdown GUID * {0e0b6031-5213-4934-818b-38d90ced39db} */ @@ -1510,6 +1552,7 @@ int vmbus_send_tl_connect_request(const guid_t *shv_guest_servie_id, const guid_t *shv_host_servie_id); +int vmbus_send_modifychannel(u32 child_relid, u32 target_vp); /* Get the start of the ring buffer. */ static inline void * @@ -1626,2 +1669,20 @@ +static inline unsigned long virt_to_hvpfn(void *addr) +{ + phys_addr_t paddr; + + if (is_vmalloc_addr(addr)) + paddr = page_to_phys(vmalloc_to_page(addr)) + + offset_in_page(addr); + else + paddr = __pa(addr); + + return paddr >> HV_HYP_PAGE_SHIFT; +} + +#define NR_HV_HYP_PAGES_IN_PAGE (PAGE_SIZE / HV_HYP_PAGE_SIZE) +#define offset_in_hvpage(ptr) ((unsigned long)(ptr) & ~HV_HYP_PAGE_MASK) +#define HVPFN_UP(x) (((x) + HV_HYP_PAGE_SIZE-1) >> HV_HYP_PAGE_SHIFT) +#define page_to_hvpfn(page) (page_to_pfn(page) * NR_HV_HYP_PAGES_IN_PAGE) + #endif /* _HYPERV_H */ diff -u linux-azure-5.4.0/include/linux/iomap.h linux-azure-5.4.0/include/linux/iomap.h --- linux-azure-5.4.0/include/linux/iomap.h +++ linux-azure-5.4.0/include/linux/iomap.h @@ -32,6 +32,8 @@ * * IOMAP_F_DIRTY indicates the inode has uncommitted metadata needed to access * written data and requires fdatasync to commit them to persistent storage. + * This needs to take into account metadata changes that *may* be made at IO + * completion, such as file size updates from direct IO. */ #define IOMAP_F_NEW 0x01 /* blocks have been newly allocated */ #define IOMAP_F_DIRTY 0x02 /* uncommitted metadata */ diff -u linux-azure-5.4.0/include/linux/ipc_namespace.h linux-azure-5.4.0/include/linux/ipc_namespace.h --- linux-azure-5.4.0/include/linux/ipc_namespace.h +++ linux-azure-5.4.0/include/linux/ipc_namespace.h @@ -133,6 +133,16 @@ return ns; } +static inline struct ipc_namespace *get_ipc_ns_not_zero(struct ipc_namespace *ns) +{ + if (ns) { + if (refcount_inc_not_zero(&ns->count)) + return ns; + } + + return NULL; +} + extern void put_ipc_ns(struct ipc_namespace *ns); #else static inline struct ipc_namespace *copy_ipcs(unsigned long flags, @@ -148,6 +158,11 @@ { return ns; } + +static inline struct ipc_namespace *get_ipc_ns_not_zero(struct ipc_namespace *ns) +{ + return ns; +} static inline void put_ipc_ns(struct ipc_namespace *ns) { diff -u linux-azure-5.4.0/include/linux/ipv6.h linux-azure-5.4.0/include/linux/ipv6.h --- linux-azure-5.4.0/include/linux/ipv6.h +++ linux-azure-5.4.0/include/linux/ipv6.h @@ -50,7 +50,7 @@ __s32 use_optimistic; #endif #ifdef CONFIG_IPV6_MROUTE - __s32 mc_forwarding; + atomic_t mc_forwarding; #endif __s32 disable_ipv6; __s32 drop_unicast_in_l2_multicast; diff -u linux-azure-5.4.0/include/linux/irq.h linux-azure-5.4.0/include/linux/irq.h --- linux-azure-5.4.0/include/linux/irq.h +++ linux-azure-5.4.0/include/linux/irq.h @@ -542,6 +542,7 @@ * IRQCHIP_EOI_THREADED: Chip requires eoi() on unmask in threaded mode * IRQCHIP_SUPPORTS_LEVEL_MSI Chip can provide two doorbells for Level MSIs * IRQCHIP_SUPPORTS_NMI: Chip can deliver NMIs, only for root irqchips + * IRQCHIP_AFFINITY_PRE_STARTUP: Default affinity update before startup */ enum { IRQCHIP_SET_TYPE_MASKED = (1 << 0), @@ -553,6 +554,7 @@ IRQCHIP_EOI_THREADED = (1 << 6), IRQCHIP_SUPPORTS_LEVEL_MSI = (1 << 7), IRQCHIP_SUPPORTS_NMI = (1 << 8), + IRQCHIP_AFFINITY_PRE_STARTUP = (1 << 10), }; #include diff -u linux-azure-5.4.0/include/linux/jbd2.h linux-azure-5.4.0/include/linux/jbd2.h --- linux-azure-5.4.0/include/linux/jbd2.h +++ linux-azure-5.4.0/include/linux/jbd2.h @@ -644,7 +644,9 @@ struct journal_head *t_shadow_list; /* - * List of inodes whose data we've modified in data=ordered mode. + * List of inodes associated with the transaction; e.g., ext4 uses + * this to track inodes in data=ordered and data=journal mode that + * need special handling on transaction commit; also used by ocfs2. * [j_list_lock] */ struct list_head t_inode_list; @@ -1106,6 +1108,27 @@ void (*j_commit_callback)(journal_t *, transaction_t *); + /** + * @j_submit_inode_data_buffers: + * + * This function is called for all inodes associated with the + * committing transaction marked with JI_WRITE_DATA flag + * before we start to write out the transaction to the journal. + */ + int (*j_submit_inode_data_buffers) + (struct jbd2_inode *); + + /** + * @j_finish_inode_data_buffers: + * + * This function is called for all inodes associated with the + * committing transaction marked with JI_WAIT_DATA flag + * after we have written the transaction to the journal + * but before we write out the commit block. + */ + int (*j_finish_inode_data_buffers) + (struct jbd2_inode *); + /* * Journal statistics */ @@ -1415,6 +1438,10 @@ extern int jbd2_journal_inode_ranged_wait(handle_t *handle, struct jbd2_inode *inode, loff_t start_byte, loff_t length); +extern int jbd2_journal_submit_inode_data_buffers( + struct jbd2_inode *jinode); +extern int jbd2_journal_finish_inode_data_buffers( + struct jbd2_inode *jinode); extern int jbd2_journal_begin_ordered_truncate(journal_t *journal, struct jbd2_inode *inode, loff_t new_size); extern void jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode); diff -u linux-azure-5.4.0/include/linux/kexec.h linux-azure-5.4.0/include/linux/kexec.h --- linux-azure-5.4.0/include/linux/kexec.h +++ linux-azure-5.4.0/include/linux/kexec.h @@ -186,14 +186,6 @@ int __weak arch_kexec_kernel_image_probe(struct kimage *image, void *buf, unsigned long buf_len); void * __weak arch_kexec_kernel_image_load(struct kimage *image); -int __weak arch_kexec_apply_relocations_add(struct purgatory_info *pi, - Elf_Shdr *section, - const Elf_Shdr *relsec, - const Elf_Shdr *symtab); -int __weak arch_kexec_apply_relocations(struct purgatory_info *pi, - Elf_Shdr *section, - const Elf_Shdr *relsec, - const Elf_Shdr *symtab); extern int kexec_add_buffer(struct kexec_buf *kbuf); int kexec_locate_mem_hole(struct kexec_buf *kbuf); @@ -216,6 +208,44 @@ unsigned long long mend); extern int crash_prepare_elf64_headers(struct crash_mem *mem, int kernel_map, void **addr, unsigned long *sz); + +#ifndef arch_kexec_apply_relocations_add +/* + * arch_kexec_apply_relocations_add - apply relocations of type RELA + * @pi: Purgatory to be relocated. + * @section: Section relocations applying to. + * @relsec: Section containing RELAs. + * @symtab: Corresponding symtab. + * + * Return: 0 on success, negative errno on error. + */ +static inline int +arch_kexec_apply_relocations_add(struct purgatory_info *pi, Elf_Shdr *section, + const Elf_Shdr *relsec, const Elf_Shdr *symtab) +{ + pr_err("RELA relocation unsupported.\n"); + return -ENOEXEC; +} +#endif + +#ifndef arch_kexec_apply_relocations +/* + * arch_kexec_apply_relocations - apply relocations of type REL + * @pi: Purgatory to be relocated. + * @section: Section relocations applying to. + * @relsec: Section containing RELs. + * @symtab: Corresponding symtab. + * + * Return: 0 on success, negative errno on error. + */ +static inline int +arch_kexec_apply_relocations(struct purgatory_info *pi, Elf_Shdr *section, + const Elf_Shdr *relsec, const Elf_Shdr *symtab) +{ + pr_err("REL relocation unsupported.\n"); + return -ENOEXEC; +} +#endif #endif /* CONFIG_KEXEC_FILE */ #ifdef CONFIG_KEXEC_ELF diff -u linux-azure-5.4.0/include/linux/kprobes.h linux-azure-5.4.0/include/linux/kprobes.h --- linux-azure-5.4.0/include/linux/kprobes.h +++ linux-azure-5.4.0/include/linux/kprobes.h @@ -155,6 +155,8 @@ raw_spinlock_t lock; }; +#define KRETPROBE_MAX_DATA_SIZE 4096 + struct kretprobe_instance { struct hlist_node hlist; struct kretprobe *rp; diff -u linux-azure-5.4.0/include/linux/kvm_host.h linux-azure-5.4.0/include/linux/kvm_host.h --- linux-azure-5.4.0/include/linux/kvm_host.h +++ linux-azure-5.4.0/include/linux/kvm_host.h @@ -146,6 +146,7 @@ #define KVM_REQ_MMU_RELOAD (1 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP) #define KVM_REQ_PENDING_TIMER 2 #define KVM_REQ_UNHALT 3 +#define KVM_REQ_VM_BUGGED (4 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP) #define KVM_REQUEST_ARCH_BASE 8 #define KVM_ARCH_REQ_FLAGS(nr, flags) ({ \ @@ -266,7 +267,8 @@ struct preempt_notifier preempt_notifier; #endif int cpu; - int vcpu_id; + int vcpu_id; /* id given by userspace at creation */ + int vcpu_idx; /* index in kvm->vcpus array */ int srcu_idx; int mode; u64 requests; @@ -501,6 +503,7 @@ struct srcu_struct srcu; struct srcu_struct irq_srcu; pid_t userspace_pid; + bool vm_bugged; }; #define kvm_err(fmt, ...) \ @@ -529,6 +532,31 @@ #define vcpu_err(vcpu, fmt, ...) \ kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__) +bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req); +static inline void kvm_vm_bugged(struct kvm *kvm) +{ + kvm->vm_bugged = true; + kvm_make_all_cpus_request(kvm, KVM_REQ_VM_BUGGED); +} + +#define KVM_BUG(cond, kvm, fmt...) \ +({ \ + int __ret = (cond); \ + \ + if (WARN_ONCE(__ret && !(kvm)->vm_bugged, fmt)) \ + kvm_vm_bugged(kvm); \ + unlikely(__ret); \ +}) + +#define KVM_BUG_ON(cond, kvm) \ +({ \ + int __ret = (cond); \ + \ + if (WARN_ON_ONCE(__ret && !(kvm)->vm_bugged)) \ + kvm_vm_bugged(kvm); \ + unlikely(__ret); \ +}) + static inline struct kvm_io_bus *kvm_get_bus(struct kvm *kvm, enum kvm_bus idx) { return srcu_dereference_check(kvm->buses[idx], &kvm->srcu, @@ -571,13 +599,7 @@ static inline int kvm_vcpu_get_idx(struct kvm_vcpu *vcpu) { - struct kvm_vcpu *tmp; - int idx; - - kvm_for_each_vcpu(idx, tmp, vcpu->kvm) - if (tmp == vcpu) - return idx; - BUG(); + return vcpu->vcpu_idx; } #define kvm_for_each_memslot(memslot, slots) \ @@ -795,7 +817,6 @@ bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req, unsigned long *vcpu_bitmap, cpumask_var_t tmp); -bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req); long kvm_arch_dev_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg); @@ -934,7 +955,7 @@ { } -static inline bool kvm_arch_has_assigned_device(struct kvm *kvm) +static __always_inline bool kvm_arch_has_assigned_device(struct kvm *kvm) { return false; } @@ -1045,7 +1066,15 @@ static inline unsigned long __gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn) { - return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE; + /* + * The index was checked originally in search_memslots. To avoid + * that a malicious guest builds a Spectre gadget out of e.g. page + * table walks, do not let the processor speculate loads outside + * the guest's registered memslots. + */ + unsigned long offset = gfn - slot->base_gfn; + offset = array_index_nospec(offset, slot->npages); + return slot->userspace_addr + offset * PAGE_SIZE; } static inline int memslot_id(struct kvm *kvm, gfn_t gfn) diff -u linux-azure-5.4.0/include/linux/libata.h linux-azure-5.4.0/include/linux/libata.h --- linux-azure-5.4.0/include/linux/libata.h +++ linux-azure-5.4.0/include/linux/libata.h @@ -391,7 +391,7 @@ /* This should match the actual table size of * ata_eh_cmd_timeout_table in libata-eh.c. */ - ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 6, + ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 7, /* Horkage types. May be set by libata or controller on drives (some horkage may be drive/controller pair dependent */ @@ -423,6 +423,7 @@ ATA_HORKAGE_NOTRIM = (1 << 24), /* don't use TRIM */ ATA_HORKAGE_MAX_SEC_1024 = (1 << 25), /* Limit max sects to 1024 */ ATA_HORKAGE_MAX_TRIM_128M = (1 << 26), /* Limit max trim size to 128M */ + ATA_HORKAGE_NO_NCQ_ON_ATI = (1 << 27), /* Disable NCQ on ATI chipset */ /* DMA mask for user DMA control: User visible values; DO NOT renumber */ diff -u linux-azure-5.4.0/include/linux/lsm_hooks.h linux-azure-5.4.0/include/linux/lsm_hooks.h --- linux-azure-5.4.0/include/linux/lsm_hooks.h +++ linux-azure-5.4.0/include/linux/lsm_hooks.h @@ -1241,22 +1241,22 @@ * * @binder_set_context_mgr: * Check whether @mgr is allowed to be the binder context manager. - * @mgr contains the task_struct for the task being registered. + * @mgr contains the struct cred for the current binder process. * Return 0 if permission is granted. * @binder_transaction: * Check whether @from is allowed to invoke a binder transaction call * to @to. - * @from contains the task_struct for the sending task. - * @to contains the task_struct for the receiving task. + * @from contains the struct cred for the sending process. + * @to contains the struct cred for the receiving process. * @binder_transfer_binder: * Check whether @from is allowed to transfer a binder reference to @to. - * @from contains the task_struct for the sending task. - * @to contains the task_struct for the receiving task. + * @from contains the struct cred for the sending process. + * @to contains the struct cred for the receiving process. * @binder_transfer_file: * Check whether @from is allowed to transfer @file to @to. - * @from contains the task_struct for the sending task. + * @from contains the struct cred for the sending process. * @file contains the struct file being transferred. - * @to contains the task_struct for the receiving task. + * @to contains the struct cred for the receiving process. * * @ptrace_access_check: * Check permission before allowing the current process to trace the @@ -1462,13 +1462,13 @@ * @level: The lock-down level (can only increase) */ union security_list_options { - int (*binder_set_context_mgr)(struct task_struct *mgr); - int (*binder_transaction)(struct task_struct *from, - struct task_struct *to); - int (*binder_transfer_binder)(struct task_struct *from, - struct task_struct *to); - int (*binder_transfer_file)(struct task_struct *from, - struct task_struct *to, + int (*binder_set_context_mgr)(const struct cred *mgr); + int (*binder_transaction)(const struct cred *from, + const struct cred *to); + int (*binder_transfer_binder)(const struct cred *from, + const struct cred *to); + int (*binder_transfer_file)(const struct cred *from, + const struct cred *to, struct file *file); int (*ptrace_access_check)(struct task_struct *child, diff -u linux-azure-5.4.0/include/linux/memcontrol.h linux-azure-5.4.0/include/linux/memcontrol.h --- linux-azure-5.4.0/include/linux/memcontrol.h +++ linux-azure-5.4.0/include/linux/memcontrol.h @@ -356,17 +356,54 @@ return !cgroup_subsys_enabled(memory_cgrp_subsys); } -static inline unsigned long mem_cgroup_protection(struct mem_cgroup *memcg, - bool in_low_reclaim) +static inline void mem_cgroup_protection(struct mem_cgroup *root, + struct mem_cgroup *memcg, + unsigned long *min, + unsigned long *low) { + *min = *low = 0; + if (mem_cgroup_disabled()) - return 0; + return; - if (in_low_reclaim) - return READ_ONCE(memcg->memory.emin); + /* + * There is no reclaim protection applied to a targeted reclaim. + * We are special casing this specific case here because + * mem_cgroup_protected calculation is not robust enough to keep + * the protection invariant for calculated effective values for + * parallel reclaimers with different reclaim target. This is + * especially a problem for tail memcgs (as they have pages on LRU) + * which would want to have effective values 0 for targeted reclaim + * but a different value for external reclaim. + * + * Example + * Let's have global and A's reclaim in parallel: + * | + * A (low=2G, usage = 3G, max = 3G, children_low_usage = 1.5G) + * |\ + * | C (low = 1G, usage = 2.5G) + * B (low = 1G, usage = 0.5G) + * + * For the global reclaim + * A.elow = A.low + * B.elow = min(B.usage, B.low) because children_low_usage <= A.elow + * C.elow = min(C.usage, C.low) + * + * With the effective values resetting we have A reclaim + * A.elow = 0 + * B.elow = B.low + * C.elow = C.low + * + * If the global reclaim races with A's reclaim then + * B.elow = C.elow = 0 because children_low_usage > A.elow) + * is possible and reclaiming B would be violating the protection. + * + */ + if (root == memcg) + return; - return max(READ_ONCE(memcg->memory.emin), - READ_ONCE(memcg->memory.elow)); + *min = READ_ONCE(memcg->memory.emin); + *low = READ_ONCE(memcg->memory.elow); } enum mem_cgroup_protection mem_cgroup_protected(struct mem_cgroup *root, @@ -847,10 +884,12 @@ { } -static inline unsigned long mem_cgroup_protection(struct mem_cgroup *memcg, - bool in_low_reclaim) +static inline void mem_cgroup_protection(struct mem_cgroup *root, + struct mem_cgroup *memcg, + unsigned long *min, + unsigned long *low) { - return 0; + *min = *low = 0; } static inline enum mem_cgroup_protection mem_cgroup_protected( diff -u linux-azure-5.4.0/include/linux/memory_hotplug.h linux-azure-5.4.0/include/linux/memory_hotplug.h --- linux-azure-5.4.0/include/linux/memory_hotplug.h +++ linux-azure-5.4.0/include/linux/memory_hotplug.h @@ -364,4 +364,4 @@ int online_type); -extern struct zone *zone_for_pfn_range(int online_type, int nid, unsigned start_pfn, - unsigned long nr_pages); +extern struct zone *zone_for_pfn_range(int online_type, int nid, + unsigned long start_pfn, unsigned long nr_pages); #endif /* __LINUX_MEMORY_HOTPLUG_H */ diff -u linux-azure-5.4.0/include/linux/mfd/rohm-bd70528.h linux-azure-5.4.0/include/linux/mfd/rohm-bd70528.h --- linux-azure-5.4.0/include/linux/mfd/rohm-bd70528.h +++ linux-azure-5.4.0/include/linux/mfd/rohm-bd70528.h @@ -25,9 +25,7 @@ struct mutex rtc_timer_lock; }; -#define BD70528_BUCK_VOLTS 17 -#define BD70528_BUCK_VOLTS 17 -#define BD70528_BUCK_VOLTS 17 +#define BD70528_BUCK_VOLTS 0x10 #define BD70528_LDO_VOLTS 0x20 #define BD70528_REG_BUCK1_EN 0x0F diff -u linux-azure-5.4.0/include/linux/mlx5/driver.h linux-azure-5.4.0/include/linux/mlx5/driver.h --- linux-azure-5.4.0/include/linux/mlx5/driver.h +++ linux-azure-5.4.0/include/linux/mlx5/driver.h @@ -228,6 +228,12 @@ u32 num_dyn_bfregs; }; +enum mlx5_cmdif_state { + MLX5_CMDIF_STATE_UNINITIALIZED, + MLX5_CMDIF_STATE_UP, + MLX5_CMDIF_STATE_DOWN, +}; + struct mlx5_cmd_first { __be32 data[4]; }; @@ -273,6 +279,7 @@ struct mlx5_cmd { struct mlx5_nb nb; + enum mlx5_cmdif_state state; void *cmd_alloc_buf; dma_addr_t alloc_dma; int alloc_size; @@ -897,6 +904,8 @@ int mlx5_cmd_init(struct mlx5_core_dev *dev); void mlx5_cmd_cleanup(struct mlx5_core_dev *dev); +void mlx5_cmd_set_state(struct mlx5_core_dev *dev, + enum mlx5_cmdif_state cmdif_state); void mlx5_cmd_use_events(struct mlx5_core_dev *dev); void mlx5_cmd_use_polling(struct mlx5_core_dev *dev); void mlx5_cmd_allowed_opcode(struct mlx5_core_dev *dev, u16 opcode); @@ -904,7 +913,7 @@ struct mlx5_async_ctx { struct mlx5_core_dev *dev; atomic_t num_inflight; - struct wait_queue_head wait; + struct completion inflight_done; }; struct mlx5_async_work; diff -u linux-azure-5.4.0/include/linux/mlx5/mlx5_ifc.h linux-azure-5.4.0/include/linux/mlx5/mlx5_ifc.h --- linux-azure-5.4.0/include/linux/mlx5/mlx5_ifc.h +++ linux-azure-5.4.0/include/linux/mlx5/mlx5_ifc.h @@ -1430,7 +1430,9 @@ u8 steering_format_version[0x4]; u8 create_qp_start_hint[0x18]; - u8 reserved_at_460[0x3]; + u8 reserved_at_460[0x1]; + u8 ats[0x1]; + u8 reserved_at_462[0x1]; u8 log_max_uctx[0x5]; u8 reserved_at_468[0x3]; u8 log_max_umem[0x5]; @@ -3258,7 +3260,9 @@ u8 lw[0x1]; u8 lr[0x1]; u8 access_mode_1_0[0x2]; - u8 reserved_at_18[0x8]; + u8 reserved_at_18[0x2]; + u8 ma_tranlation_mode[0x2]; + u8 reserved_at_1c[0x4]; u8 qpn[0x18]; u8 mkey_7_0[0x8]; @@ -8945,16 +8949,22 @@ u8 reserved_at_0[0x8]; u8 local_port[0x8]; u8 reserved_at_10[0x10]; + u8 entropy_force_cap[0x1]; u8 entropy_calc_cap[0x1]; u8 entropy_gre_calc_cap[0x1]; - u8 reserved_at_23[0x1b]; + u8 reserved_at_23[0xf]; + u8 rx_ts_over_crc_cap[0x1]; + u8 reserved_at_33[0xb]; u8 fcs_cap[0x1]; u8 reserved_at_3f[0x1]; + u8 entropy_force[0x1]; u8 entropy_calc[0x1]; u8 entropy_gre_calc[0x1]; - u8 reserved_at_43[0x1b]; + u8 reserved_at_43[0xf]; + u8 rx_ts_over_crc[0x1]; + u8 reserved_at_53[0xb]; u8 fcs_chk[0x1]; u8 reserved_at_5f[0x1]; }; @@ -8972,8 +8982,8 @@ u8 reserved_at_0[0x6]; u8 lossy[0x1]; u8 epsb[0x1]; - u8 reserved_at_8[0xc]; - u8 size[0xc]; + u8 reserved_at_8[0x8]; + u8 size[0x10]; u8 xoff_threshold[0x10]; u8 xon_threshold[0x10]; @@ -9952,7 +9962,8 @@ struct mlx5_ifc_umem_bits { u8 reserved_at_0[0x80]; - u8 reserved_at_80[0x1b]; + u8 ats[0x1]; + u8 reserved_at_81[0x1a]; u8 log_page_size[0x5]; u8 page_offset[0x20]; diff -u linux-azure-5.4.0/include/linux/mm.h linux-azure-5.4.0/include/linux/mm.h --- linux-azure-5.4.0/include/linux/mm.h +++ linux-azure-5.4.0/include/linux/mm.h @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -1459,6 +1460,7 @@ struct address_space *check_mapping; /* Check page->mapping if set */ pgoff_t first_index; /* Lowest page->index to unmap */ pgoff_t last_index; /* Highest page->index to unmap */ + struct page *single_page; /* Locked page to be unmapped */ }; struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, @@ -1505,6 +1507,7 @@ extern int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm, unsigned long address, unsigned int fault_flags, bool *unlocked); +void unmap_mapping_page(struct page *page); void unmap_mapping_pages(struct address_space *mapping, pgoff_t start, pgoff_t nr, bool even_cows); void unmap_mapping_range(struct address_space *mapping, @@ -1525,6 +1528,7 @@ BUG(); return -EFAULT; } +static inline void unmap_mapping_page(struct page *page) { } static inline void unmap_mapping_pages(struct address_space *mapping, pgoff_t start, pgoff_t nr, bool even_cows) { } static inline void unmap_mapping_range(struct address_space *mapping, @@ -2373,6 +2377,7 @@ unsigned long flags, struct page **pages); unsigned long randomize_stack_top(unsigned long stack_top); +unsigned long randomize_page(unsigned long start, unsigned long range); extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); diff -u linux-azure-5.4.0/include/linux/mmzone.h linux-azure-5.4.0/include/linux/mmzone.h --- linux-azure-5.4.0/include/linux/mmzone.h +++ linux-azure-5.4.0/include/linux/mmzone.h @@ -929,6 +929,15 @@ #endif } +#ifdef CONFIG_ZONE_DMA +bool has_managed_dma(void); +#else +static inline bool has_managed_dma(void) +{ + return false; +} +#endif + /** * is_highmem - helper function to quickly check if a struct zone is a * highmem zone or not. This is an attempt to keep references @@ -1241,13 +1250,16 @@ static inline struct mem_section *__nr_to_section(unsigned long nr) { + unsigned long root = SECTION_NR_TO_ROOT(nr); + + if (unlikely(root >= NR_SECTION_ROOTS)) + return NULL; + #ifdef CONFIG_SPARSEMEM_EXTREME - if (!mem_section) + if (!mem_section || !mem_section[root]) return NULL; #endif - if (!mem_section[SECTION_NR_TO_ROOT(nr)]) - return NULL; - return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK]; + return &mem_section[root][nr & SECTION_ROOT_MASK]; } extern unsigned long __section_nr(struct mem_section *ms); extern size_t mem_section_usage_size(void); @@ -1426,37 +1438,6 @@ #define pfn_valid_within(pfn) (1) #endif -#ifdef CONFIG_ARCH_HAS_HOLES_MEMORYMODEL -/* - * pfn_valid() is meant to be able to tell if a given PFN has valid memmap - * associated with it or not. This means that a struct page exists for this - * pfn. The caller cannot assume the page is fully initialized in general. - * Hotplugable pages might not have been onlined yet. pfn_to_online_page() - * will ensure the struct page is fully online and initialized. Special pages - * (e.g. ZONE_DEVICE) are never onlined and should be treated accordingly. - * - * In FLATMEM, it is expected that holes always have valid memmap as long as - * there is valid PFNs either side of the hole. In SPARSEMEM, it is assumed - * that a valid section has a memmap for the entire section. - * - * However, an ARM, and maybe other embedded architectures in the future - * free memmap backing holes to save memory on the assumption the memmap is - * never used. The page_zone linkages are then broken even though pfn_valid() - * returns true. A walker of the full memmap must then do this additional - * check to ensure the memmap they are looking at is sane by making sure - * the zone and PFN linkages are still valid. This is expensive, but walkers - * of the full memmap are extremely rare. - */ -bool memmap_valid_within(unsigned long pfn, - struct page *page, struct zone *zone); -#else -static inline bool memmap_valid_within(unsigned long pfn, - struct page *page, struct zone *zone) -{ - return true; -} -#endif /* CONFIG_ARCH_HAS_HOLES_MEMORYMODEL */ - #endif /* !__GENERATING_BOUNDS.H */ #endif /* !__ASSEMBLY__ */ #endif /* _LINUX_MMZONE_H */ diff -u linux-azure-5.4.0/include/linux/mod_devicetable.h linux-azure-5.4.0/include/linux/mod_devicetable.h --- linux-azure-5.4.0/include/linux/mod_devicetable.h +++ linux-azure-5.4.0/include/linux/mod_devicetable.h @@ -672,9 +672,7 @@ __u16 steppings; }; -#define X86_FEATURE_MATCH(x) \ - { X86_VENDOR_ANY, X86_FAMILY_ANY, X86_MODEL_ANY, x } - +/* Wild cards for x86_cpu_id::vendor, family, model and feature */ #define X86_VENDOR_ANY 0xffff #define X86_FAMILY_ANY 0 #define X86_MODEL_ANY 0 diff -u linux-azure-5.4.0/include/linux/msi.h linux-azure-5.4.0/include/linux/msi.h --- linux-azure-5.4.0/include/linux/msi.h +++ linux-azure-5.4.0/include/linux/msi.h @@ -194,7 +194,7 @@ void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg); u32 __pci_msix_desc_mask_irq(struct msi_desc *desc, u32 flag); -u32 __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag); +void __pci_msi_desc_mask_irq(struct msi_desc *desc, u32 mask, u32 flag); void pci_msi_mask_irq(struct irq_data *data); void pci_msi_unmask_irq(struct irq_data *data); diff -u linux-azure-5.4.0/include/linux/netdevice.h linux-azure-5.4.0/include/linux/netdevice.h --- linux-azure-5.4.0/include/linux/netdevice.h +++ linux-azure-5.4.0/include/linux/netdevice.h @@ -2397,6 +2397,7 @@ struct net_device *); bool (*id_match)(struct packet_type *ptype, struct sock *sk); + struct net *af_packet_net; void *af_packet_priv; struct list_head list; }; @@ -3684,6 +3685,10 @@ void netdev_rx_handler_unregister(struct net_device *dev); bool dev_valid_name(const char *name); +static inline bool is_socket_ioctl_cmd(unsigned int cmd) +{ + return _IOC_TYPE(cmd) == SOCK_IOC_TYPE; +} int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr, bool *need_copyout); int dev_ifconf(struct net *net, struct ifconf *, int); @@ -3750,7 +3755,7 @@ return NET_RX_DROP; } - skb_scrub_packet(skb, true); + skb_scrub_packet(skb, !net_eq(dev_net(dev), dev_net(skb->dev))); skb->priority = 0; return 0; } @@ -3772,7 +3777,8 @@ */ static inline void dev_put(struct net_device *dev) { - this_cpu_dec(*dev->pcpu_refcnt); + if (dev) + this_cpu_dec(*dev->pcpu_refcnt); } /** @@ -3783,7 +3789,8 @@ */ static inline void dev_hold(struct net_device *dev) { - this_cpu_inc(*dev->pcpu_refcnt); + if (dev) + this_cpu_inc(*dev->pcpu_refcnt); } /* Carrier loss detection, dial on demand. The functions netif_carrier_on @@ -3939,7 +3946,8 @@ static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu) { spin_lock(&txq->_xmit_lock); - txq->xmit_lock_owner = cpu; + /* Pairs with READ_ONCE() in __dev_queue_xmit() */ + WRITE_ONCE(txq->xmit_lock_owner, cpu); } static inline bool __netif_tx_acquire(struct netdev_queue *txq) @@ -3956,26 +3964,32 @@ static inline void __netif_tx_lock_bh(struct netdev_queue *txq) { spin_lock_bh(&txq->_xmit_lock); - txq->xmit_lock_owner = smp_processor_id(); + /* Pairs with READ_ONCE() in __dev_queue_xmit() */ + WRITE_ONCE(txq->xmit_lock_owner, smp_processor_id()); } static inline bool __netif_tx_trylock(struct netdev_queue *txq) { bool ok = spin_trylock(&txq->_xmit_lock); - if (likely(ok)) - txq->xmit_lock_owner = smp_processor_id(); + + if (likely(ok)) { + /* Pairs with READ_ONCE() in __dev_queue_xmit() */ + WRITE_ONCE(txq->xmit_lock_owner, smp_processor_id()); + } return ok; } static inline void __netif_tx_unlock(struct netdev_queue *txq) { - txq->xmit_lock_owner = -1; + /* Pairs with READ_ONCE() in __dev_queue_xmit() */ + WRITE_ONCE(txq->xmit_lock_owner, -1); spin_unlock(&txq->_xmit_lock); } static inline void __netif_tx_unlock_bh(struct netdev_queue *txq) { - txq->xmit_lock_owner = -1; + /* Pairs with READ_ONCE() in __dev_queue_xmit() */ + WRITE_ONCE(txq->xmit_lock_owner, -1); spin_unlock_bh(&txq->_xmit_lock); } diff -u linux-azure-5.4.0/include/linux/netfilter_bridge/ebtables.h linux-azure-5.4.0/include/linux/netfilter_bridge/ebtables.h --- linux-azure-5.4.0/include/linux/netfilter_bridge/ebtables.h +++ linux-azure-5.4.0/include/linux/netfilter_bridge/ebtables.h @@ -94,10 +94,6 @@ struct ebt_replace_kernel *table; unsigned int valid_hooks; rwlock_t lock; - /* e.g. could be the table explicitly only allows certain - * matches, targets, ... 0 == let it in */ - int (*check)(const struct ebt_table_info *info, - unsigned int valid_hooks); /* the data used by the kernel */ struct ebt_table_info *private; struct module *me; diff -u linux-azure-5.4.0/include/linux/nfs_fs.h linux-azure-5.4.0/include/linux/nfs_fs.h --- linux-azure-5.4.0/include/linux/nfs_fs.h +++ linux-azure-5.4.0/include/linux/nfs_fs.h @@ -71,7 +71,7 @@ fl_owner_t flock_owner; struct dentry *dentry; const struct cred *cred; - struct rpc_cred *ll_cred; /* low-level cred - use to check for expiry */ + struct rpc_cred __rcu *ll_cred; /* low-level cred - use to check for expiry */ struct nfs4_state *state; fmode_t mode; @@ -79,6 +79,7 @@ #define NFS_CONTEXT_RESEND_WRITES (1) #define NFS_CONTEXT_BAD (2) #define NFS_CONTEXT_UNLOCK (3) +#define NFS_CONTEXT_FILE_OPEN (4) int error; struct list_head list; @@ -479,10 +480,10 @@ * linux/fs/nfs/direct.c */ extern ssize_t nfs_direct_IO(struct kiocb *, struct iov_iter *); -extern ssize_t nfs_file_direct_read(struct kiocb *iocb, - struct iov_iter *iter); -extern ssize_t nfs_file_direct_write(struct kiocb *iocb, - struct iov_iter *iter); +ssize_t nfs_file_direct_read(struct kiocb *iocb, + struct iov_iter *iter, bool swap); +ssize_t nfs_file_direct_write(struct kiocb *iocb, + struct iov_iter *iter, bool swap); /* * linux/fs/nfs/dir.c diff -u linux-azure-5.4.0/include/linux/oom.h linux-azure-5.4.0/include/linux/oom.h --- linux-azure-5.4.0/include/linux/oom.h +++ linux-azure-5.4.0/include/linux/oom.h @@ -48,7 +48,7 @@ /* Used by oom implementation, do not set */ unsigned long totalpages; struct task_struct *chosen; - unsigned long chosen_points; + long chosen_points; /* Used to print the constraint info. */ enum oom_constraint constraint; @@ -108,7 +108,7 @@ bool __oom_reap_task_mm(struct mm_struct *mm); -extern unsigned long oom_badness(struct task_struct *p, +long oom_badness(struct task_struct *p, unsigned long totalpages); extern bool out_of_memory(struct oom_control *oc); diff -u linux-azure-5.4.0/include/linux/pci.h linux-azure-5.4.0/include/linux/pci.h --- linux-azure-5.4.0/include/linux/pci.h +++ linux-azure-5.4.0/include/linux/pci.h @@ -208,6 +208,8 @@ PCI_DEV_FLAGS_NO_FLR_RESET = (__force pci_dev_flags_t) (1 << 10), /* Don't use Relaxed Ordering for TLPs directed at this device */ PCI_DEV_FLAGS_NO_RELAXED_ORDERING = (__force pci_dev_flags_t) (1 << 11), + /* Device does honor MSI masking despite saying otherwise */ + PCI_DEV_FLAGS_HAS_MSI_MASKING = (__force pci_dev_flags_t) (1 << 12), }; enum pci_irq_reroute_variant { @@ -236,7 +238,7 @@ PCIE_LNK_WIDTH_UNKNOWN = 0xff, }; -/* Based on the PCI Hotplug Spec, but some values are made up by us */ +/* See matching string table in pci_speed_string() */ enum pci_bus_speed { PCI_SPEED_33MHz = 0x00, PCI_SPEED_66MHz = 0x01, @@ -490,12 +492,23 @@ return (pdev->error_state != pci_channel_io_normal); } +/* + * Currently in ACPI spec, for each PCI host bridge, PCI Segment + * Group number is limited to a 16-bit value, therefore (int)-1 is + * not a valid PCI domain number, and can be used as a sentinel + * value indicating ->domain_nr is not set by the driver (and + * CONFIG_PCI_DOMAINS_GENERIC=y archs will set it with + * pci_bus_find_domain_nr()). + */ +#define PCI_DOMAIN_NR_NOT_SET (-1) + struct pci_host_bridge { struct device dev; struct pci_bus *bus; /* Root bus */ struct pci_ops *ops; void *sysdata; int busnr; + int domain_nr; struct list_head windows; /* resource_entry */ struct list_head dma_ranges; /* dma ranges resource list */ u8 (*swizzle_irq)(struct pci_dev *, u8 *); /* Platform IRQ swizzler */ @@ -602,6 +615,7 @@ struct bin_attribute *legacy_io; /* Legacy I/O for this bus */ struct bin_attribute *legacy_mem; /* Legacy mem */ unsigned int is_added:1; + unsigned int unsafe_warn:1; /* warned about RW1C config write */ }; #define to_pci_bus(n) container_of(n, struct pci_bus, dev) @@ -1692,8 +1706,9 @@ static inline void pci_disable_device(struct pci_dev *dev) { } static inline int pci_assign_resource(struct pci_dev *dev, int i) { return -EBUSY; } -static inline int __pci_register_driver(struct pci_driver *drv, - struct module *owner) +static inline int __must_check __pci_register_driver(struct pci_driver *drv, + struct module *owner, + const char *mod_name) { return 0; } static inline int pci_register_driver(struct pci_driver *drv) { return 0; } diff -u linux-azure-5.4.0/include/linux/pci_ids.h linux-azure-5.4.0/include/linux/pci_ids.h --- linux-azure-5.4.0/include/linux/pci_ids.h +++ linux-azure-5.4.0/include/linux/pci_ids.h @@ -59,6 +59,8 @@ #define PCI_CLASS_BRIDGE_EISA 0x0602 #define PCI_CLASS_BRIDGE_MC 0x0603 #define PCI_CLASS_BRIDGE_PCI 0x0604 +#define PCI_CLASS_BRIDGE_PCI_NORMAL 0x060400 +#define PCI_CLASS_BRIDGE_PCI_SUBTRACTIVE 0x060401 #define PCI_CLASS_BRIDGE_PCMCIA 0x0605 #define PCI_CLASS_BRIDGE_NUBUS 0x0606 #define PCI_CLASS_BRIDGE_CARDBUS 0x0607 @@ -2476,7 +2478,8 @@ #define PCI_VENDOR_ID_TDI 0x192E #define PCI_DEVICE_ID_TDI_EHCI 0x0101 -#define PCI_VENDOR_ID_FREESCALE 0x1957 +#define PCI_VENDOR_ID_FREESCALE 0x1957 /* duplicate: NXP */ +#define PCI_VENDOR_ID_NXP 0x1957 /* duplicate: FREESCALE */ #define PCI_DEVICE_ID_MPC8308 0xc006 #define PCI_DEVICE_ID_MPC8315E 0x00b4 #define PCI_DEVICE_ID_MPC8315 0x00b5 diff -u linux-azure-5.4.0/include/linux/perf_event.h linux-azure-5.4.0/include/linux/perf_event.h --- linux-azure-5.4.0/include/linux/perf_event.h +++ linux-azure-5.4.0/include/linux/perf_event.h @@ -1175,7 +1175,18 @@ enum perf_bpf_event_type type, u16 flags); -extern struct perf_guest_info_callbacks *perf_guest_cbs; +extern struct perf_guest_info_callbacks __rcu *perf_guest_cbs; +static inline struct perf_guest_info_callbacks *perf_get_guest_cbs(void) +{ + /* + * Callbacks are RCU-protected and must be READ_ONCE to avoid reloading + * the callbacks between a !NULL check and dereferences, to ensure + * pending stores/changes to the callback pointers are visible before a + * non-NULL perf_guest_cbs is visible to readers, and to prevent a + * module from unloading callbacks while readers are active. + */ + return rcu_dereference(perf_guest_cbs); +} extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks); extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks); diff -u linux-azure-5.4.0/include/linux/prandom.h linux-azure-5.4.0/include/linux/prandom.h --- linux-azure-5.4.0/include/linux/prandom.h +++ linux-azure-5.4.0/include/linux/prandom.h @@ -10,6 +10,7 @@ #include #include +#include u32 prandom_u32(void); void prandom_bytes(void *buf, size_t nbytes); @@ -21,15 +22,10 @@ * The core SipHash round function. Each line can be executed in * parallel given enough CPU resources. */ -#define PRND_SIPROUND(v0, v1, v2, v3) ( \ - v0 += v1, v1 = rol64(v1, 13), v2 += v3, v3 = rol64(v3, 16), \ - v1 ^= v0, v0 = rol64(v0, 32), v3 ^= v2, \ - v0 += v3, v3 = rol64(v3, 21), v2 += v1, v1 = rol64(v1, 17), \ - v3 ^= v0, v1 ^= v2, v2 = rol64(v2, 32) \ -) +#define PRND_SIPROUND(v0, v1, v2, v3) SIPHASH_PERMUTATION(v0, v1, v2, v3) -#define PRND_K0 (0x736f6d6570736575 ^ 0x6c7967656e657261) -#define PRND_K1 (0x646f72616e646f6d ^ 0x7465646279746573) +#define PRND_K0 (SIPHASH_CONST_0 ^ SIPHASH_CONST_2) +#define PRND_K1 (SIPHASH_CONST_1 ^ SIPHASH_CONST_3) #elif BITS_PER_LONG == 32 /* @@ -37,14 +33,9 @@ * This is weaker, but 32-bit machines are not used for high-traffic * applications, so there is less output for an attacker to analyze. */ -#define PRND_SIPROUND(v0, v1, v2, v3) ( \ - v0 += v1, v1 = rol32(v1, 5), v2 += v3, v3 = rol32(v3, 8), \ - v1 ^= v0, v0 = rol32(v0, 16), v3 ^= v2, \ - v0 += v3, v3 = rol32(v3, 7), v2 += v1, v1 = rol32(v1, 13), \ - v3 ^= v0, v1 ^= v2, v2 = rol32(v2, 16) \ -) -#define PRND_K0 0x6c796765 -#define PRND_K1 0x74656462 +#define PRND_SIPROUND(v0, v1, v2, v3) HSIPHASH_PERMUTATION(v0, v1, v2, v3) +#define PRND_K0 (HSIPHASH_CONST_0 ^ HSIPHASH_CONST_2) +#define PRND_K1 (HSIPHASH_CONST_1 ^ HSIPHASH_CONST_3) #else #error Unsupported BITS_PER_LONG @@ -93,7 +84,7 @@ */ static inline void prandom_seed_state(struct rnd_state *state, u64 seed) { - u32 i = (seed >> 32) ^ (seed << 10) ^ seed; + u32 i = ((seed >> 32) ^ (seed << 10) ^ seed) & 0xffffffffUL; state->s1 = __seed(i, 2U); state->s2 = __seed(i, 8U); diff -u linux-azure-5.4.0/include/linux/random.h linux-azure-5.4.0/include/linux/random.h --- linux-azure-5.4.0/include/linux/random.h +++ linux-azure-5.4.0/include/linux/random.h @@ -1,52 +1,35 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* - * include/linux/random.h - * - * Include file for the random number generator. - */ + #ifndef _LINUX_RANDOM_H #define _LINUX_RANDOM_H +#include +#include #include #include #include -struct random_ready_callback { - struct list_head list; - void (*func)(struct random_ready_callback *rdy); - struct module *owner; -}; +struct notifier_block; -extern void add_device_randomness(const void *, unsigned int); -extern void add_bootloader_randomness(const void *, unsigned int); +void add_device_randomness(const void *buf, size_t len); +void __init add_bootloader_randomness(const void *buf, size_t len); +void add_input_randomness(unsigned int type, unsigned int code, + unsigned int value) __latent_entropy; +void add_interrupt_randomness(int irq) __latent_entropy; +void add_hwgenerator_randomness(const void *buf, size_t len, size_t entropy); #if defined(LATENT_ENTROPY_PLUGIN) && !defined(__CHECKER__) static inline void add_latent_entropy(void) { - add_device_randomness((const void *)&latent_entropy, - sizeof(latent_entropy)); + add_device_randomness((const void *)&latent_entropy, sizeof(latent_entropy)); } #else -static inline void add_latent_entropy(void) {} -#endif - -extern void add_input_randomness(unsigned int type, unsigned int code, - unsigned int value) __latent_entropy; -extern void add_interrupt_randomness(int irq, int irq_flags) __latent_entropy; - -extern void get_random_bytes(void *buf, int nbytes); -extern int wait_for_random_bytes(void); -extern int __init rand_initialize(void); -extern bool rng_is_initialized(void); -extern int add_random_ready_callback(struct random_ready_callback *rdy); -extern void del_random_ready_callback(struct random_ready_callback *rdy); -extern int __must_check get_random_bytes_arch(void *buf, int nbytes); - -#ifndef MODULE -extern const struct file_operations random_fops, urandom_fops; +static inline void add_latent_entropy(void) { } #endif +void get_random_bytes(void *buf, size_t len); +size_t __must_check get_random_bytes_arch(void *buf, size_t len); u32 get_random_u32(void); u64 get_random_u64(void); static inline unsigned int get_random_int(void) @@ -78,36 +61,38 @@ static inline unsigned long get_random_canary(void) { - unsigned long val = get_random_long(); - - return val & CANARY_MASK; + return get_random_long() & CANARY_MASK; } +int __init random_init(const char *command_line); +bool rng_is_initialized(void); +int wait_for_random_bytes(void); +int register_random_ready_notifier(struct notifier_block *nb); +int unregister_random_ready_notifier(struct notifier_block *nb); + /* Calls wait_for_random_bytes() and then calls get_random_bytes(buf, nbytes). * Returns the result of the call to wait_for_random_bytes. */ -static inline int get_random_bytes_wait(void *buf, int nbytes) +static inline int get_random_bytes_wait(void *buf, size_t nbytes) { int ret = wait_for_random_bytes(); get_random_bytes(buf, nbytes); return ret; } -#define declare_get_random_var_wait(var) \ - static inline int get_random_ ## var ## _wait(var *out) { \ +#define declare_get_random_var_wait(name, ret_type) \ + static inline int get_random_ ## name ## _wait(ret_type *out) { \ int ret = wait_for_random_bytes(); \ if (unlikely(ret)) \ return ret; \ - *out = get_random_ ## var(); \ + *out = get_random_ ## name(); \ return 0; \ } -declare_get_random_var_wait(u32) -declare_get_random_var_wait(u64) -declare_get_random_var_wait(int) -declare_get_random_var_wait(long) +declare_get_random_var_wait(u32, u32) +declare_get_random_var_wait(u64, u32) +declare_get_random_var_wait(int, unsigned int) +declare_get_random_var_wait(long, unsigned long) #undef declare_get_random_var -unsigned long randomize_page(unsigned long start, unsigned long range); - /* * This is designed to be standalone for just prandom * users, but for now we include it from @@ -120,28 +105,37 @@ #else -static inline bool arch_get_random_long(unsigned long *v) -{ - return 0; -} -static inline bool arch_get_random_int(unsigned int *v) -{ - return 0; -} -static inline bool arch_has_random(void) -{ - return 0; -} -static inline bool arch_get_random_seed_long(unsigned long *v) -{ - return 0; -} -static inline bool arch_get_random_seed_int(unsigned int *v) +static inline bool __must_check arch_get_random_long(unsigned long *v) { return false; } +static inline bool __must_check arch_get_random_int(unsigned int *v) { return false; } +static inline bool __must_check arch_get_random_seed_long(unsigned long *v) { return false; } +static inline bool __must_check arch_get_random_seed_int(unsigned int *v) { return false; } +#endif + +/* + * Called from the boot CPU during startup; not valid to call once + * secondary CPUs are up and preemption is possible. + */ +#ifndef arch_get_random_seed_long_early +static inline bool __init arch_get_random_seed_long_early(unsigned long *v) { - return 0; + WARN_ON(system_state != SYSTEM_BOOTING); + return arch_get_random_seed_long(v); } -static inline bool arch_has_random_seed(void) +#endif + +#ifndef arch_get_random_long_early +static inline bool __init arch_get_random_long_early(unsigned long *v) { - return 0; + WARN_ON(system_state != SYSTEM_BOOTING); + return arch_get_random_long(v); } #endif +#ifdef CONFIG_SMP +int random_prepare_cpu(unsigned int cpu); +int random_online_cpu(unsigned int cpu); +#endif + +#ifndef MODULE +extern const struct file_operations random_fops, urandom_fops; +#endif + #endif /* _LINUX_RANDOM_H */ diff -u linux-azure-5.4.0/include/linux/rmap.h linux-azure-5.4.0/include/linux/rmap.h --- linux-azure-5.4.0/include/linux/rmap.h +++ linux-azure-5.4.0/include/linux/rmap.h @@ -39,12 +39,15 @@ atomic_t refcount; /* - * Count of child anon_vmas and VMAs which points to this anon_vma. + * Count of child anon_vmas. Equals to the count of all anon_vmas that + * have ->parent pointing to this one, including itself. * * This counter is used for making decision about reusing anon_vma * instead of forking new one. See comments in function anon_vma_clone. */ - unsigned degree; + unsigned long num_children; + /* Count of VMAs whose ->anon_vma pointer points to this object. */ + unsigned long num_active_vmas; struct anon_vma *parent; /* Parent of this anon_vma */ @@ -98,7 +101,8 @@ * do a final flush if necessary */ TTU_RMAP_LOCKED = 0x80, /* do not grab rmap lock: * caller holds it */ - TTU_SPLIT_FREEZE = 0x100, /* freeze pte under splitting thp */ + TTU_SPLIT_FREEZE = 0x100, /* freeze pte under splitting thp */ + TTU_SYNC = 0x200, /* avoid racy checks with PVMW_SYNC */ }; #ifdef CONFIG_MMU diff -u linux-azure-5.4.0/include/linux/sched.h linux-azure-5.4.0/include/linux/sched.h --- linux-azure-5.4.0/include/linux/sched.h +++ linux-azure-5.4.0/include/linux/sched.h @@ -526,10 +526,6 @@ * task has to wait for a replenishment to be performed at the * next firing of dl_timer. * - * @dl_boosted tells if we are boosted due to DI. If so we are - * outside bandwidth enforcement mechanism (but only until we - * exit the critical section); - * * @dl_yielded tells if task gave up the CPU before consuming * all its available runtime during the last job. * @@ -544,7 +540,6 @@ * overruns. */ unsigned int dl_throttled : 1; - unsigned int dl_boosted : 1; unsigned int dl_yielded : 1; unsigned int dl_non_contending : 1; unsigned int dl_overrun : 1; @@ -563,6 +558,15 @@ * time. */ struct hrtimer inactive_timer; + +#ifdef CONFIG_RT_MUTEXES + /* + * Priority Inheritance. When a DEADLINE scheduling entity is boosted + * pi_se points to the donor, otherwise points to the dl_se it belongs + * to (the original one/itself). + */ + struct sched_dl_entity *pi_se; +#endif }; #ifdef CONFIG_UCLAMP_TASK @@ -1247,6 +1251,7 @@ int pagefault_disabled; #ifdef CONFIG_MMU struct task_struct *oom_reaper_list; + struct timer_list oom_reaper_timer; #endif #ifdef CONFIG_VMAP_STACK struct vm_struct *stack_vm_area; @@ -1454,7 +1459,6 @@ #define PF_MEMALLOC 0x00000800 /* Allocating memory */ #define PF_NPROC_EXCEEDED 0x00001000 /* set_user() noticed that RLIMIT_NPROC was exceeded */ #define PF_USED_MATH 0x00002000 /* If unset the fpu must be initialized before use */ -#define PF_USED_ASYNC 0x00004000 /* Used async_schedule*(), used by module init */ #define PF_NOFREEZE 0x00008000 /* This thread should not be frozen */ #define PF_FROZEN 0x00010000 /* Frozen for system suspend */ #define PF_KSWAPD 0x00020000 /* I am kswapd */ @@ -1500,7 +1504,7 @@ #define tsk_used_math(p) ((p)->flags & PF_USED_MATH) #define used_math() tsk_used_math(current) -static inline bool is_percpu_thread(void) +static __always_inline bool is_percpu_thread(void) { #ifdef CONFIG_SMP return (current->flags & PF_NO_SETAFFINITY) && diff -u linux-azure-5.4.0/include/linux/sched/mm.h linux-azure-5.4.0/include/linux/sched/mm.h --- linux-azure-5.4.0/include/linux/sched/mm.h +++ linux-azure-5.4.0/include/linux/sched/mm.h @@ -133,6 +133,14 @@ #endif /* CONFIG_MEMCG */ #ifdef CONFIG_MMU +#ifndef arch_get_mmap_end +#define arch_get_mmap_end(addr) (TASK_SIZE) +#endif + +#ifndef arch_get_mmap_base +#define arch_get_mmap_base(addr, base) (base) +#endif + extern void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack); extern unsigned long diff -u linux-azure-5.4.0/include/linux/sched/signal.h linux-azure-5.4.0/include/linux/sched/signal.h --- linux-azure-5.4.0/include/linux/sched/signal.h +++ linux-azure-5.4.0/include/linux/sched/signal.h @@ -509,6 +509,17 @@ #define SEND_SIG_NOINFO ((struct kernel_siginfo *) 0) #define SEND_SIG_PRIV ((struct kernel_siginfo *) 1) +static inline int __on_sig_stack(unsigned long sp) +{ +#ifdef CONFIG_STACK_GROWSUP + return sp >= current->sas_ss_sp && + sp - current->sas_ss_sp < current->sas_ss_size; +#else + return sp > current->sas_ss_sp && + sp - current->sas_ss_sp <= current->sas_ss_size; +#endif +} + /* * True if we are on the alternate signal stack. */ @@ -526,13 +537,7 @@ if (current->sas_ss_flags & SS_AUTODISARM) return 0; -#ifdef CONFIG_STACK_GROWSUP - return sp >= current->sas_ss_sp && - sp - current->sas_ss_sp < current->sas_ss_size; -#else - return sp > current->sas_ss_sp && - sp - current->sas_ss_sp <= current->sas_ss_size; -#endif + return __on_sig_stack(sp); } static inline int sas_ss_flags(unsigned long sp) diff -u linux-azure-5.4.0/include/linux/security.h linux-azure-5.4.0/include/linux/security.h --- linux-azure-5.4.0/include/linux/security.h +++ linux-azure-5.4.0/include/linux/security.h @@ -118,6 +118,7 @@ LOCKDOWN_MMIOTRACE, LOCKDOWN_DEBUGFS, LOCKDOWN_XMON_WR, + LOCKDOWN_KGDB, LOCKDOWN_INTEGRITY_MAX, LOCKDOWN_KCORE, LOCKDOWN_KPROBES, @@ -249,13 +250,13 @@ extern int early_security_init(void); /* Security operations */ -int security_binder_set_context_mgr(struct task_struct *mgr); -int security_binder_transaction(struct task_struct *from, - struct task_struct *to); -int security_binder_transfer_binder(struct task_struct *from, - struct task_struct *to); -int security_binder_transfer_file(struct task_struct *from, - struct task_struct *to, struct file *file); +int security_binder_set_context_mgr(const struct cred *mgr); +int security_binder_transaction(const struct cred *from, + const struct cred *to); +int security_binder_transfer_binder(const struct cred *from, + const struct cred *to); +int security_binder_transfer_file(const struct cred *from, + const struct cred *to, struct file *file); int security_ptrace_access_check(struct task_struct *child, unsigned int mode); int security_ptrace_traceme(struct task_struct *parent); int security_capget(struct task_struct *target, @@ -482,25 +483,25 @@ return 0; } -static inline int security_binder_set_context_mgr(struct task_struct *mgr) +static inline int security_binder_set_context_mgr(const struct cred *mgr) { return 0; } -static inline int security_binder_transaction(struct task_struct *from, - struct task_struct *to) +static inline int security_binder_transaction(const struct cred *from, + const struct cred *to) { return 0; } -static inline int security_binder_transfer_binder(struct task_struct *from, - struct task_struct *to) +static inline int security_binder_transfer_binder(const struct cred *from, + const struct cred *to) { return 0; } -static inline int security_binder_transfer_file(struct task_struct *from, - struct task_struct *to, +static inline int security_binder_transfer_file(const struct cred *from, + const struct cred *to, struct file *file) { return 0; @@ -986,6 +987,11 @@ { } +static inline void security_cred_getsecid(const struct cred *c, u32 *secid) +{ + *secid = 0; +} + static inline int security_kernel_act_as(struct cred *cred, u32 secid) { return 0; diff -u linux-azure-5.4.0/include/linux/skbuff.h linux-azure-5.4.0/include/linux/skbuff.h --- linux-azure-5.4.0/include/linux/skbuff.h +++ linux-azure-5.4.0/include/linux/skbuff.h @@ -659,6 +659,7 @@ * @wifi_acked: whether frame was acked on wifi or not * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS * @csum_not_inet: use CRC32c to resolve CHECKSUM_PARTIAL + * @scm_io_uring: SKB holds io_uring registered files * @dst_pending_confirm: need to confirm neighbour * @decrypted: Decrypted SKB * @napi_id: id of the NAPI struct this skb came from @@ -824,6 +825,7 @@ #ifdef CONFIG_TLS_DEVICE __u8 decrypted:1; #endif + __u8 scm_io_uring:1; #ifdef CONFIG_NET_SCHED __u16 tc_index; /* traffic control index */ @@ -1887,7 +1889,7 @@ WRITE_ONCE(newsk->prev, prev); WRITE_ONCE(next->prev, newsk); WRITE_ONCE(prev->next, newsk); - list->qlen++; + WRITE_ONCE(list->qlen, list->qlen + 1); } static inline void __skb_queue_splice(const struct sk_buff_head *list, @@ -2201,6 +2203,14 @@ #endif /* NET_SKBUFF_DATA_USES_OFFSET */ +static inline void skb_assert_len(struct sk_buff *skb) +{ +#ifdef CONFIG_DEBUG_NET + if (WARN_ONCE(!skb->len, "%s\n", __func__)) + DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false); +#endif /* CONFIG_DEBUG_NET */ +} + /* * Add data to an sk_buff */ diff -u linux-azure-5.4.0/include/linux/sunrpc/xdr.h linux-azure-5.4.0/include/linux/sunrpc/xdr.h --- linux-azure-5.4.0/include/linux/sunrpc/xdr.h +++ linux-azure-5.4.0/include/linux/sunrpc/xdr.h @@ -536,6 +536,8 @@ if (unlikely(xdr_stream_decode_u32(xdr, &len) < 0)) return -EBADMSG; + if (len > SIZE_MAX / sizeof(*p)) + return -EBADMSG; p = xdr_inline_decode(xdr, len * sizeof(*p)); if (unlikely(!p)) return -EBADMSG; diff -u linux-azure-5.4.0/include/linux/sunrpc/xprt.h linux-azure-5.4.0/include/linux/sunrpc/xprt.h --- linux-azure-5.4.0/include/linux/sunrpc/xprt.h +++ linux-azure-5.4.0/include/linux/sunrpc/xprt.h @@ -419,6 +419,7 @@ #define XPRT_CONGESTED (9) #define XPRT_CWND_WAIT (10) #define XPRT_WRITE_SPACE (11) +#define XPRT_SND_IS_COOKIE (12) static inline void xprt_set_connected(struct rpc_xprt *xprt) { diff -u linux-azure-5.4.0/include/linux/suspend.h linux-azure-5.4.0/include/linux/suspend.h --- linux-azure-5.4.0/include/linux/suspend.h +++ linux-azure-5.4.0/include/linux/suspend.h @@ -428,15 +428,7 @@ #ifdef CONFIG_HIBERNATION /* kernel/power/snapshot.c */ -extern void __register_nosave_region(unsigned long b, unsigned long e, int km); -static inline void __init register_nosave_region(unsigned long b, unsigned long e) -{ - __register_nosave_region(b, e, 0); -} -static inline void __init register_nosave_region_late(unsigned long b, unsigned long e) -{ - __register_nosave_region(b, e, 1); -} +extern void register_nosave_region(unsigned long b, unsigned long e); extern int swsusp_page_is_forbidden(struct page *); extern void swsusp_set_page_free(struct page *); extern void swsusp_unset_page_free(struct page *); @@ -453,7 +445,6 @@ int pfn_is_nosave(unsigned long pfn); #else /* CONFIG_HIBERNATION */ static inline void register_nosave_region(unsigned long b, unsigned long e) {} -static inline void register_nosave_region_late(unsigned long b, unsigned long e) {} static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } static inline void swsusp_set_page_free(struct page *p) {} static inline void swsusp_unset_page_free(struct page *p) {} @@ -491,14 +482,14 @@ /* drivers/base/power/wakeup.c */ extern bool events_check_enabled; -extern unsigned int pm_wakeup_irq; extern suspend_state_t pm_suspend_target_state; extern bool pm_wakeup_pending(void); extern void pm_system_wakeup(void); extern void pm_system_cancel_wakeup(void); -extern void pm_wakeup_clear(bool reset); +extern void pm_wakeup_clear(unsigned int irq_number); extern void pm_system_irq_wakeup(unsigned int irq_number); +extern unsigned int pm_wakeup_irq(void); extern bool pm_get_wakeup_count(unsigned int *count, bool block); extern bool pm_save_wakeup_count(unsigned int count); extern void pm_wakep_autosleep_enabled(bool set); diff -u linux-azure-5.4.0/include/linux/tcp.h linux-azure-5.4.0/include/linux/tcp.h --- linux-azure-5.4.0/include/linux/tcp.h +++ linux-azure-5.4.0/include/linux/tcp.h @@ -258,7 +258,7 @@ u32 packets_out; /* Packets which are "in flight" */ u32 retrans_out; /* Retransmitted packets out */ u32 max_packets_out; /* max packets_out in last window */ - u32 max_packets_seq; /* right edge of max_packets_out flight */ + u32 cwnd_usage_seq; /* right edge of cwnd usage tracking flight */ u16 urg_data; /* Saved octet of OOB data and control flags */ u8 ecn_flags; /* ECN status bits. */ diff -u linux-azure-5.4.0/include/linux/tpm_eventlog.h linux-azure-5.4.0/include/linux/tpm_eventlog.h --- linux-azure-5.4.0/include/linux/tpm_eventlog.h +++ linux-azure-5.4.0/include/linux/tpm_eventlog.h @@ -157,7 +157,7 @@ * Return: size of the event on success, 0 on failure */ -static inline int __calc_tpm2_event_size(struct tcg_pcr_event2_head *event, +static __always_inline int __calc_tpm2_event_size(struct tcg_pcr_event2_head *event, struct tcg_pcr_event *event_header, bool do_mapping) { diff -u linux-azure-5.4.0/include/linux/tracepoint.h linux-azure-5.4.0/include/linux/tracepoint.h --- linux-azure-5.4.0/include/linux/tracepoint.h +++ linux-azure-5.4.0/include/linux/tracepoint.h @@ -40,7 +40,17 @@ tracepoint_probe_register_prio(struct tracepoint *tp, void *probe, void *data, int prio); extern int +tracepoint_probe_register_prio_may_exist(struct tracepoint *tp, void *probe, void *data, + int prio); +extern int tracepoint_probe_unregister(struct tracepoint *tp, void *probe, void *data); +static inline int +tracepoint_probe_register_may_exist(struct tracepoint *tp, void *probe, + void *data) +{ + return tracepoint_probe_register_prio_may_exist(tp, probe, data, + TRACEPOINT_DEFAULT_PRIO); +} extern void for_each_kernel_tracepoint(void (*fct)(struct tracepoint *tp, void *priv), void *priv); diff -u linux-azure-5.4.0/include/linux/uaccess.h linux-azure-5.4.0/include/linux/uaccess.h --- linux-azure-5.4.0/include/linux/uaccess.h +++ linux-azure-5.4.0/include/linux/uaccess.h @@ -311,6 +311,7 @@ * happens, handle that and return -EFAULT. */ extern long probe_kernel_read(void *dst, const void *src, size_t size); +extern long probe_kernel_read_strict(void *dst, const void *src, size_t size); extern long __probe_kernel_read(void *dst, const void *src, size_t size); /* @@ -350,6 +351,9 @@ extern long notrace __probe_user_write(void __user *dst, const void *src, size_t size); extern long strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count); +extern long strncpy_from_unsafe_strict(char *dst, const void *unsafe_addr, + long count); +extern long __strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count); extern long strncpy_from_unsafe_user(char *dst, const void __user *unsafe_addr, long count); extern long strnlen_unsafe_user(const void __user *unsafe_addr, long count); diff -u linux-azure-5.4.0/include/linux/usb/pd.h linux-azure-5.4.0/include/linux/usb/pd.h --- linux-azure-5.4.0/include/linux/usb/pd.h +++ linux-azure-5.4.0/include/linux/usb/pd.h @@ -425,7 +425,7 @@ #define PD_T_SENDER_RESPONSE 60 /* 24 - 30 ms, relaxed */ #define PD_T_SOURCE_ACTIVITY 45 #define PD_T_SINK_ACTIVITY 135 -#define PD_T_SINK_WAIT_CAP 240 +#define PD_T_SINK_WAIT_CAP 310 /* 310 - 620 ms */ #define PD_T_PS_TRANSITION 500 #define PD_T_SRC_TRANSITION 35 #define PD_T_DRP_SNK 40 diff -u linux-azure-5.4.0/include/linux/virtio_net.h linux-azure-5.4.0/include/linux/virtio_net.h --- linux-azure-5.4.0/include/linux/virtio_net.h +++ linux-azure-5.4.0/include/linux/virtio_net.h @@ -7,9 +7,27 @@ #include #include +static inline bool virtio_net_hdr_match_proto(__be16 protocol, __u8 gso_type) +{ + switch (gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { + case VIRTIO_NET_HDR_GSO_TCPV4: + return protocol == cpu_to_be16(ETH_P_IP); + case VIRTIO_NET_HDR_GSO_TCPV6: + return protocol == cpu_to_be16(ETH_P_IPV6); + case VIRTIO_NET_HDR_GSO_UDP: + return protocol == cpu_to_be16(ETH_P_IP) || + protocol == cpu_to_be16(ETH_P_IPV6); + default: + return false; + } +} + static inline int virtio_net_hdr_set_proto(struct sk_buff *skb, const struct virtio_net_hdr *hdr) { + if (skb->protocol) + return 0; + switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { case VIRTIO_NET_HDR_GSO_TCPV4: case VIRTIO_NET_HDR_GSO_UDP: @@ -88,9 +106,12 @@ if (!skb->protocol) { __be16 protocol = dev_parse_header_protocol(skb); - virtio_net_hdr_set_proto(skb, hdr); - if (protocol && protocol != skb->protocol) + if (!protocol) + virtio_net_hdr_set_proto(skb, hdr); + else if (!virtio_net_hdr_match_proto(protocol, hdr->gso_type)) return -EINVAL; + else + skb->protocol = protocol; } retry: if (!skb_flow_dissect_flow_keys_basic(NULL, skb, &keys, @@ -120,10 +141,15 @@ if (hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) { u16 gso_size = __virtio16_to_cpu(little_endian, hdr->gso_size); + unsigned int nh_off = p_off; struct skb_shared_info *shinfo = skb_shinfo(skb); + /* UFO may not include transport header in gso_size. */ + if (gso_type & SKB_GSO_UDP) + nh_off -= thlen; + /* Too small packets are not really GSO ones. */ - if (skb->len - p_off > gso_size) { + if (skb->len - nh_off > gso_size) { shinfo->gso_size = gso_size; shinfo->gso_type = gso_type; diff -u linux-azure-5.4.0/include/linux/xarray.h linux-azure-5.4.0/include/linux/xarray.h --- linux-azure-5.4.0/include/linux/xarray.h +++ linux-azure-5.4.0/include/linux/xarray.h @@ -1470,6 +1470,28 @@ void xas_create_range(struct xa_state *); +#ifdef CONFIG_XARRAY_MULTI +int xa_get_order(struct xarray *, unsigned long index); +void xas_split(struct xa_state *, void *entry, unsigned int order); +void xas_split_alloc(struct xa_state *, void *entry, unsigned int order, gfp_t); +#else +static inline int xa_get_order(struct xarray *xa, unsigned long index) +{ + return 0; +} + +static inline void xas_split(struct xa_state *xas, void *entry, + unsigned int order) +{ + xas_store(xas, entry); +} + +static inline void xas_split_alloc(struct xa_state *xas, void *entry, + unsigned int order, gfp_t gfp) +{ +} +#endif + /** * xas_reload() - Refetch an entry from the xarray. * @xas: XArray operation state. diff -u linux-azure-5.4.0/include/net/addrconf.h linux-azure-5.4.0/include/net/addrconf.h --- linux-azure-5.4.0/include/net/addrconf.h +++ linux-azure-5.4.0/include/net/addrconf.h @@ -399,6 +399,9 @@ { const struct inet6_dev *idev = __in6_dev_get(dev); + if (unlikely(!idev)) + return true; + return !!idev->cnf.ignore_routes_with_linkdown; } diff -u linux-azure-5.4.0/include/net/arp.h linux-azure-5.4.0/include/net/arp.h --- linux-azure-5.4.0/include/net/arp.h +++ linux-azure-5.4.0/include/net/arp.h @@ -71,6 +71,7 @@ const unsigned char *src_hw, const unsigned char *th); int arp_mc_map(__be32 addr, u8 *haddr, struct net_device *dev, int dir); void arp_ifdown(struct net_device *dev); +int arp_invalidate(struct net_device *dev, __be32 ip, bool force); struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip, struct net_device *dev, __be32 src_ip, diff -u linux-azure-5.4.0/include/net/bluetooth/hci_core.h linux-azure-5.4.0/include/net/bluetooth/hci_core.h --- linux-azure-5.4.0/include/net/bluetooth/hci_core.h +++ linux-azure-5.4.0/include/net/bluetooth/hci_core.h @@ -34,6 +34,9 @@ /* HCI priority */ #define HCI_PRIO_MAX 7 +/* HCI maximum id value */ +#define HCI_MAX_ID 10000 + /* HCI Core structures */ struct inquiry_data { bdaddr_t bdaddr; @@ -1056,6 +1059,7 @@ void hci_free_dev(struct hci_dev *hdev); int hci_register_dev(struct hci_dev *hdev); void hci_unregister_dev(struct hci_dev *hdev); +void hci_cleanup_dev(struct hci_dev *hdev); int hci_suspend_dev(struct hci_dev *hdev); int hci_resume_dev(struct hci_dev *hdev); int hci_reset_dev(struct hci_dev *hdev); diff -u linux-azure-5.4.0/include/net/bluetooth/l2cap.h linux-azure-5.4.0/include/net/bluetooth/l2cap.h --- linux-azure-5.4.0/include/net/bluetooth/l2cap.h +++ linux-azure-5.4.0/include/net/bluetooth/l2cap.h @@ -802,6 +802,7 @@ }; void l2cap_chan_hold(struct l2cap_chan *c); +struct l2cap_chan *l2cap_chan_hold_unless_zero(struct l2cap_chan *c); void l2cap_chan_put(struct l2cap_chan *c); static inline void l2cap_chan_lock(struct l2cap_chan *chan) diff -u linux-azure-5.4.0/include/net/fib_rules.h linux-azure-5.4.0/include/net/fib_rules.h --- linux-azure-5.4.0/include/net/fib_rules.h +++ linux-azure-5.4.0/include/net/fib_rules.h @@ -68,7 +68,7 @@ int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); - bool (*suppress)(struct fib_rule *, + bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); int (*match)(struct fib_rule *, struct flowi *, int); diff -u linux-azure-5.4.0/include/net/flow_dissector.h linux-azure-5.4.0/include/net/flow_dissector.h --- linux-azure-5.4.0/include/net/flow_dissector.h +++ linux-azure-5.4.0/include/net/flow_dissector.h @@ -51,6 +51,8 @@ vlan_dei:1, vlan_priority:3; __be16 vlan_tpid; + __be16 vlan_eth_type; + u16 padding; }; struct flow_dissector_key_mpls { diff -u linux-azure-5.4.0/include/net/inet_hashtables.h linux-azure-5.4.0/include/net/inet_hashtables.h --- linux-azure-5.4.0/include/net/inet_hashtables.h +++ linux-azure-5.4.0/include/net/inet_hashtables.h @@ -247,8 +247,9 @@ unsigned long high_limit); int inet_hashinfo2_init_mod(struct inet_hashinfo *h); -bool inet_ehash_insert(struct sock *sk, struct sock *osk); -bool inet_ehash_nolisten(struct sock *sk, struct sock *osk); +bool inet_ehash_insert(struct sock *sk, struct sock *osk, bool *found_dup_sk); +bool inet_ehash_nolisten(struct sock *sk, struct sock *osk, + bool *found_dup_sk); int __inet_hash(struct sock *sk, struct sock *osk); int inet_hash(struct sock *sk); void inet_unhash(struct sock *sk); @@ -419,7 +420,7 @@ } int __inet_hash_connect(struct inet_timewait_death_row *death_row, - struct sock *sk, u32 port_offset, + struct sock *sk, u64 port_offset, int (*check_established)(struct inet_timewait_death_row *, struct sock *, __u16, struct inet_timewait_sock **)); diff -u linux-azure-5.4.0/include/net/ip.h linux-azure-5.4.0/include/net/ip.h --- linux-azure-5.4.0/include/net/ip.h +++ linux-azure-5.4.0/include/net/ip.h @@ -30,6 +30,7 @@ #include #include #include +#include #define IPV4_MAX_PMTU 65535U /* RFC 2675, Section 5.1 */ #define IPV4_MIN_MTU 68 /* RFC 791 */ @@ -380,7 +381,7 @@ void ip_static_sysctl_init(void); #define IP4_REPLY_MARK(net, mark) \ - ((net)->ipv4.sysctl_fwmark_reflect ? (mark) : 0) + (READ_ONCE((net)->ipv4.sysctl_fwmark_reflect) ? (mark) : 0) static inline bool ip_is_fragment(const struct iphdr *iph) { @@ -441,29 +442,32 @@ struct net *net = dev_net(dst->dev); unsigned int mtu; - if (net->ipv4.sysctl_ip_fwd_use_pmtu || + if (READ_ONCE(net->ipv4.sysctl_ip_fwd_use_pmtu) || ip_mtu_locked(dst) || !forwarding) return dst_mtu(dst); /* 'forwarding = true' case should always honour route mtu */ mtu = dst_metric_raw(dst, RTAX_MTU); - if (mtu) - return mtu; + if (!mtu) + mtu = min(READ_ONCE(dst->dev->mtu), IP_MAX_MTU); - return min(READ_ONCE(dst->dev->mtu), IP_MAX_MTU); + return mtu - lwtunnel_headroom(dst->lwtstate, mtu); } static inline unsigned int ip_skb_dst_mtu(struct sock *sk, const struct sk_buff *skb) { + unsigned int mtu; + if (!sk || !sk_fullsock(sk) || ip_sk_use_pmtu(sk)) { bool forwarding = IPCB(skb)->flags & IPSKB_FORWARDED; return ip_dst_mtu_maybe_forward(skb_dst(skb), forwarding); } - return min(READ_ONCE(skb_dst(skb)->dev->mtu), IP_MAX_MTU); + mtu = min(READ_ONCE(skb_dst(skb)->dev->mtu), IP_MAX_MTU); + return mtu - lwtunnel_headroom(skb_dst(skb)->lwtstate, mtu); } struct dst_metrics *ip_fib_metrics_init(struct net *net, struct nlattr *fc_mx, @@ -505,19 +509,18 @@ { struct iphdr *iph = ip_hdr(skb); + /* We had many attacks based on IPID, use the private + * generator as much as we can. + */ + if (sk && inet_sk(sk)->inet_daddr) { + iph->id = htons(inet_sk(sk)->inet_id); + inet_sk(sk)->inet_id += segs; + return; + } if ((iph->frag_off & htons(IP_DF)) && !skb->ignore_df) { - /* This is only to work around buggy Windows95/2000 - * VJ compression implementations. If the ID field - * does not change, they drop every other packet in - * a TCP stream using header compression. - */ - if (sk && inet_sk(sk)->inet_daddr) { - iph->id = htons(inet_sk(sk)->inet_id); - inet_sk(sk)->inet_id += segs; - } else { - iph->id = 0; - } + iph->id = 0; } else { + /* Unfortunately we need the big hammer to get a suitable IPID */ __ip_select_ident(net, iph, segs); } } diff -u linux-azure-5.4.0/include/net/ip6_fib.h linux-azure-5.4.0/include/net/ip6_fib.h --- linux-azure-5.4.0/include/net/ip6_fib.h +++ linux-azure-5.4.0/include/net/ip6_fib.h @@ -247,7 +247,7 @@ fn = rcu_dereference(f6i->fib6_node); if (fn) { - *cookie = fn->fn_sernum; + *cookie = READ_ONCE(fn->fn_sernum); /* pairs with smp_wmb() in fib6_update_sernum_upto_root() */ smp_rmb(); status = true; @@ -451,6 +451,7 @@ struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack); void fib6_nh_release(struct fib6_nh *fib6_nh); +void fib6_nh_release_dsts(struct fib6_nh *fib6_nh); int call_fib6_entry_notifiers(struct net *net, enum fib_event_type event_type, diff -u linux-azure-5.4.0/include/net/ip6_route.h linux-azure-5.4.0/include/net/ip6_route.h --- linux-azure-5.4.0/include/net/ip6_route.h +++ linux-azure-5.4.0/include/net/ip6_route.h @@ -261,13 +261,20 @@ int ip6_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, int (*output)(struct net *, struct sock *, struct sk_buff *)); -static inline int ip6_skb_dst_mtu(struct sk_buff *skb) +static inline unsigned int ip6_skb_dst_mtu(struct sk_buff *skb) { + unsigned int mtu; + struct ipv6_pinfo *np = skb->sk && !dev_recursion_level() ? inet6_sk(skb->sk) : NULL; - return (np && np->pmtudisc >= IPV6_PMTUDISC_PROBE) ? - skb_dst(skb)->dev->mtu : dst_mtu(skb_dst(skb)); + if (np && np->pmtudisc >= IPV6_PMTUDISC_PROBE) { + mtu = READ_ONCE(skb_dst(skb)->dev->mtu); + mtu -= lwtunnel_headroom(skb_dst(skb)->lwtstate, mtu); + } else + mtu = dst_mtu(skb_dst(skb)); + + return mtu; } static inline bool ip6_sk_accept_pmtu(const struct sock *sk) @@ -315,7 +322,7 @@ if (dst_metric_locked(dst, RTAX_MTU)) { mtu = dst_metric_raw(dst, RTAX_MTU); if (mtu) - return mtu; + goto out; } mtu = IPV6_MIN_MTU; @@ -325,7 +332,8 @@ mtu = idev->cnf.mtu6; rcu_read_unlock(); - return mtu; +out: + return mtu - lwtunnel_headroom(dst->lwtstate, mtu); } u32 ip6_mtu_from_fib6(const struct fib6_result *res, diff -u linux-azure-5.4.0/include/net/ip_fib.h linux-azure-5.4.0/include/net/ip_fib.h --- linux-azure-5.4.0/include/net/ip_fib.h +++ linux-azure-5.4.0/include/net/ip_fib.h @@ -412,7 +412,7 @@ #ifdef CONFIG_IP_ROUTE_CLASSID static inline int fib_num_tclassid_users(struct net *net) { - return net->ipv4.fib_num_tclassid_users; + return atomic_read(&net->ipv4.fib_num_tclassid_users); } #else static inline int fib_num_tclassid_users(struct net *net) @@ -526,3 +526,3 @@ int fib_add_nexthop(struct sk_buff *skb, const struct fib_nh_common *nh, - int nh_weight, u8 rt_family); + int nh_weight, u8 rt_family, u32 nh_tclassid); #endif /* _NET_FIB_H */ diff -u linux-azure-5.4.0/include/net/ipv6_stubs.h linux-azure-5.4.0/include/net/ipv6_stubs.h --- linux-azure-5.4.0/include/net/ipv6_stubs.h +++ linux-azure-5.4.0/include/net/ipv6_stubs.h @@ -47,6 +47,7 @@ struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack); void (*fib6_nh_release)(struct fib6_nh *fib6_nh); + void (*fib6_nh_release_dsts)(struct fib6_nh *fib6_nh); void (*fib6_update_sernum)(struct net *net, struct fib6_info *rt); int (*ip6_del_rt)(struct net *net, struct fib6_info *rt); void (*fib6_rt_update)(struct net *net, struct fib6_info *rt, diff -u linux-azure-5.4.0/include/net/neighbour.h linux-azure-5.4.0/include/net/neighbour.h --- linux-azure-5.4.0/include/net/neighbour.h +++ linux-azure-5.4.0/include/net/neighbour.h @@ -253,6 +253,7 @@ #define NEIGH_UPDATE_F_OVERRIDE 0x00000001 #define NEIGH_UPDATE_F_WEAK_OVERRIDE 0x00000002 #define NEIGH_UPDATE_F_OVERRIDE_ISROUTER 0x00000004 +#define NEIGH_UPDATE_F_USE 0x10000000 #define NEIGH_UPDATE_F_EXT_LEARNED 0x20000000 #define NEIGH_UPDATE_F_ISROUTER 0x40000000 #define NEIGH_UPDATE_F_ADMIN 0x80000000 @@ -505,10 +506,15 @@ { const struct hh_cache *hh = &n->hh; - if ((n->nud_state & NUD_CONNECTED) && hh->hh_len && !skip_cache) + /* n->nud_state and hh->hh_len could be changed under us. + * neigh_hh_output() is taking care of the race later. + */ + if (!skip_cache && + (READ_ONCE(n->nud_state) & NUD_CONNECTED) && + READ_ONCE(hh->hh_len)) return neigh_hh_output(hh, skb); - else - return n->output(n, skb); + + return n->output(n, skb); } static inline struct neighbour * diff -u linux-azure-5.4.0/include/net/net_namespace.h linux-azure-5.4.0/include/net/net_namespace.h --- linux-azure-5.4.0/include/net/net_namespace.h +++ linux-azure-5.4.0/include/net/net_namespace.h @@ -195,6 +195,8 @@ void net_ns_get_ownership(const struct net *net, kuid_t *uid, kgid_t *gid); void net_ns_barrier(void); + +struct ns_common *get_net_ns(struct ns_common *ns); #else /* CONFIG_NET_NS */ #include #include @@ -214,6 +216,11 @@ } static inline void net_ns_barrier(void) {} + +static inline struct ns_common *get_net_ns(struct ns_common *ns) +{ + return ERR_PTR(-EINVAL); +} #endif /* CONFIG_NET_NS */ diff -u linux-azure-5.4.0/include/net/netfilter/nf_tables.h linux-azure-5.4.0/include/net/netfilter/nf_tables.h --- linux-azure-5.4.0/include/net/netfilter/nf_tables.h +++ linux-azure-5.4.0/include/net/netfilter/nf_tables.h @@ -655,6 +655,10 @@ return nft_set_ext(ext, NFT_SET_EXT_OBJREF); } +struct nft_expr *nft_set_elem_expr_alloc(const struct nft_ctx *ctx, + const struct nft_set *set, + const struct nlattr *attr); + void *nft_set_elem_init(const struct nft_set *set, const struct nft_set_ext_tmpl *tmpl, const u32 *key, const u32 *data, @@ -805,7 +809,7 @@ int (*offload)(struct nft_offload_ctx *ctx, struct nft_flow_rule *flow, const struct nft_expr *expr); - u32 offload_flags; + bool (*offload_action)(const struct nft_expr *expr); const struct nft_expr_type *type; void *data; }; diff -u linux-azure-5.4.0/include/net/netfilter/nf_tables_offload.h linux-azure-5.4.0/include/net/netfilter/nf_tables_offload.h --- linux-azure-5.4.0/include/net/netfilter/nf_tables_offload.h +++ linux-azure-5.4.0/include/net/netfilter/nf_tables_offload.h @@ -60,8 +60,6 @@ struct flow_rule *rule; }; -#define NFT_OFFLOAD_F_ACTION (1 << 0) - void nft_flow_rule_set_addr_type(struct nft_flow_rule *flow, enum flow_dissector_key_id addr_type); diff -u linux-azure-5.4.0/include/net/nexthop.h linux-azure-5.4.0/include/net/nexthop.h --- linux-azure-5.4.0/include/net/nexthop.h +++ linux-azure-5.4.0/include/net/nexthop.h @@ -173,7 +173,7 @@ struct fib_nh_common *nhc = &nhi->fib_nhc; int weight = nhg->nh_entries[i].weight; - if (fib_add_nexthop(skb, nhc, weight, rt_family) < 0) + if (fib_add_nexthop(skb, nhc, weight, rt_family, 0) < 0) return -EMSGSIZE; } diff -u linux-azure-5.4.0/include/net/nfc/nci_core.h linux-azure-5.4.0/include/net/nfc/nci_core.h --- linux-azure-5.4.0/include/net/nfc/nci_core.h +++ linux-azure-5.4.0/include/net/nfc/nci_core.h @@ -30,6 +30,7 @@ NCI_UP, NCI_DATA_EXCHANGE, NCI_DATA_EXCHANGE_TO, + NCI_UNREG, }; /* NCI device states */ diff -u linux-azure-5.4.0/include/net/pkt_sched.h linux-azure-5.4.0/include/net/pkt_sched.h --- linux-azure-5.4.0/include/net/pkt_sched.h +++ linux-azure-5.4.0/include/net/pkt_sched.h @@ -11,6 +11,7 @@ #include #define DEFAULT_TX_QUEUE_LEN 1000 +#define STAB_SIZE_LOG_MAX 30 struct qdisc_walker { int stop; diff -u linux-azure-5.4.0/include/net/sch_generic.h linux-azure-5.4.0/include/net/sch_generic.h --- linux-azure-5.4.0/include/net/sch_generic.h +++ linux-azure-5.4.0/include/net/sch_generic.h @@ -160,25 +160,17 @@ if (spin_trylock(&qdisc->seqlock)) goto nolock_empty; - /* If the MISSED flag is set, it means other thread has - * set the MISSED flag before second spin_trylock(), so - * we can return false here to avoid multi cpus doing - * the set_bit() and second spin_trylock() concurrently. + /* No need to insist if the MISSED flag was already set. + * Note that test_and_set_bit() also gives us memory ordering + * guarantees wrt potential earlier enqueue() and below + * spin_trylock(), both of which are necessary to prevent races */ - if (test_bit(__QDISC_STATE_MISSED, &qdisc->state)) + if (test_and_set_bit(__QDISC_STATE_MISSED, &qdisc->state)) return false; - /* Set the MISSED flag before the second spin_trylock(), - * if the second spin_trylock() return false, it means - * other cpu holding the lock will do dequeuing for us - * or it will see the MISSED flag set after releasing - * lock and reschedule the net_tx_action() to do the - * dequeuing. - */ - set_bit(__QDISC_STATE_MISSED, &qdisc->state); - - /* Retry again in case other CPU may not see the new flag - * after it releases the lock at the end of qdisc_run_end(). + /* Try to take the lock again to make sure that we will either + * grab it or the CPU that still has it will see MISSED set + * when testing it in qdisc_run_end() */ if (!spin_trylock(&qdisc->seqlock)) return false; @@ -202,6 +194,12 @@ if (qdisc->flags & TCQ_F_NOLOCK) { spin_unlock(&qdisc->seqlock); + /* spin_unlock() only has store-release semantic. The unlock + * and test_bit() ordering is a store-load ordering, so a full + * memory barrier is needed here. + */ + smp_mb(); + if (unlikely(test_bit(__QDISC_STATE_MISSED, &qdisc->state))) { clear_bit(__QDISC_STATE_MISSED, &qdisc->state); @@ -287,6 +285,8 @@ struct netlink_ext_ack *extack); void (*attach)(struct Qdisc *sch); int (*change_tx_queue_len)(struct Qdisc *, unsigned int); + void (*change_real_num_tx)(struct Qdisc *sch, + unsigned int new_real_tx); int (*dump)(struct Qdisc *, struct sk_buff *); int (*dump_stats)(struct Qdisc *, struct gnet_dump *); @@ -663,6 +663,8 @@ void qdisc_class_hash_destroy(struct Qdisc_class_hash *); int dev_qdisc_change_tx_queue_len(struct net_device *dev); +void dev_qdisc_change_real_num_tx(struct net_device *dev, + unsigned int new_real_tx); void dev_init_scheduler(struct net_device *dev); void dev_shutdown(struct net_device *dev); void dev_activate(struct net_device *dev); @@ -1248,6 +1250,7 @@ u64 rate_bytes_ps; /* bytes per second */ u32 mult; u16 overhead; + u16 mpu; u8 linklayer; u8 shift; }; @@ -1257,6 +1260,9 @@ { len += r->overhead; + if (len < r->mpu) + len = r->mpu; + if (unlikely(r->linklayer == TC_LINKLAYER_ATM)) return ((u64)(DIV_ROUND_UP(len,48)*53) * r->mult) >> r->shift; @@ -1279,6 +1285,7 @@ res->rate = min_t(u64, r->rate_bytes_ps, ~0U); res->overhead = r->overhead; + res->mpu = r->mpu; res->linklayer = (r->linklayer & TC_LINKLAYER_MASK); } diff -u linux-azure-5.4.0/include/net/sctp/constants.h linux-azure-5.4.0/include/net/sctp/constants.h --- linux-azure-5.4.0/include/net/sctp/constants.h +++ linux-azure-5.4.0/include/net/sctp/constants.h @@ -328,8 +328,7 @@ #define SCTP_SCOPE_POLICY_MAX SCTP_SCOPE_POLICY_LINK /* Based on IPv4 scoping , - * SCTP IPv4 unusable addresses: 0.0.0.0/8, 224.0.0.0/4, 198.18.0.0/24, - * 192.88.99.0/24. + * SCTP IPv4 unusable addresses: 0.0.0.0/8, 224.0.0.0/4, 192.88.99.0/24. * Also, RFC 8.4, non-unicast addresses are not considered valid SCTP * addresses. */ @@ -337,7 +336,6 @@ ((htonl(INADDR_BROADCAST) == a) || \ ipv4_is_multicast(a) || \ ipv4_is_zeronet(a) || \ - ipv4_is_test_198(a) || \ ipv4_is_anycast_6to4(a)) /* Flags used for the bind address copy functions. */ diff -u linux-azure-5.4.0/include/net/sctp/structs.h linux-azure-5.4.0/include/net/sctp/structs.h --- linux-azure-5.4.0/include/net/sctp/structs.h +++ linux-azure-5.4.0/include/net/sctp/structs.h @@ -466,7 +466,7 @@ int saddr); void (*from_sk) (union sctp_addr *, struct sock *sk); - void (*from_addr_param) (union sctp_addr *, + bool (*from_addr_param) (union sctp_addr *, union sctp_addr_param *, __be16 port, int iif); int (*to_addr_param) (const union sctp_addr *, @@ -1345,6 +1345,7 @@ u32 secid; u32 peer_secid; + struct rcu_head rcu; }; /* Recover the outter endpoint structure. */ @@ -1360,7 +1361,7 @@ struct sctp_endpoint *sctp_endpoint_new(struct sock *, gfp_t); void sctp_endpoint_free(struct sctp_endpoint *); void sctp_endpoint_put(struct sctp_endpoint *); -void sctp_endpoint_hold(struct sctp_endpoint *); +int sctp_endpoint_hold(struct sctp_endpoint *ep); void sctp_endpoint_add_asoc(struct sctp_endpoint *, struct sctp_association *); struct sctp_association *sctp_endpoint_lookup_assoc( const struct sctp_endpoint *ep, diff -u linux-azure-5.4.0/include/net/sock.h linux-azure-5.4.0/include/net/sock.h --- linux-azure-5.4.0/include/net/sock.h +++ linux-azure-5.4.0/include/net/sock.h @@ -399,7 +399,7 @@ #ifdef CONFIG_XFRM struct xfrm_policy __rcu *sk_policy[2]; #endif - struct dst_entry *sk_rx_dst; + struct dst_entry __rcu *sk_rx_dst; struct dst_entry __rcu *sk_dst_cache; atomic_t sk_omem_alloc; int sk_sndbuf; @@ -470,8 +470,10 @@ u32 sk_ack_backlog; u32 sk_max_ack_backlog; kuid_t sk_uid; + spinlock_t sk_peer_lock; struct pid *sk_peer_pid; const struct cred *sk_peer_cred; + long sk_rcvtimeo; ktime_t sk_stamp; #if BITS_PER_LONG==32 @@ -1398,7 +1400,7 @@ /* sysctl_mem values are in pages, we convert them in SK_MEM_QUANTUM units */ static inline long sk_prot_mem_limits(const struct sock *sk, int index) { - long val = sk->sk_prot->sysctl_mem[index]; + long val = READ_ONCE(sk->sk_prot->sysctl_mem[index]); #if PAGE_SIZE > SK_MEM_QUANTUM val <<= PAGE_SHIFT - SK_MEM_QUANTUM_SHIFT; @@ -1860,7 +1862,8 @@ static inline void sk_set_txhash(struct sock *sk) { - sk->sk_txhash = net_tx_rndhash(); + /* This pairs with READ_ONCE() in skb_set_hash_from_sk() */ + WRITE_ONCE(sk->sk_txhash, net_tx_rndhash()); } static inline void sk_rethink_txhash(struct sock *sk) @@ -2125,9 +2128,12 @@ static inline void skb_set_hash_from_sk(struct sk_buff *skb, struct sock *sk) { - if (sk->sk_txhash) { + /* This pairs with WRITE_ONCE() in sk_set_txhash() */ + u32 txhash = READ_ONCE(sk->sk_txhash); + + if (txhash) { skb->l4_hash = 1; - skb->hash = sk->sk_txhash; + skb->hash = txhash; } } @@ -2577,6 +2583,7 @@ extern __u32 sysctl_wmem_default; extern __u32 sysctl_rmem_default; +#define SKB_FRAG_PAGE_ORDER get_order(32768) DECLARE_STATIC_KEY_FALSE(net_high_order_alloc_disable_key); static inline int sk_get_wmem0(const struct sock *sk, const struct proto *proto) diff -u linux-azure-5.4.0/include/net/tcp.h linux-azure-5.4.0/include/net/tcp.h --- linux-azure-5.4.0/include/net/tcp.h +++ linux-azure-5.4.0/include/net/tcp.h @@ -603,6 +603,7 @@ void tcp_reset(struct sock *sk); void tcp_skb_mark_lost_uncond_verify(struct tcp_sock *tp, struct sk_buff *skb); void tcp_fin(struct sock *sk); +void tcp_check_space(struct sock *sk); /* tcp_timer.c */ void tcp_init_xmit_timers(struct sock *); @@ -921,6 +922,8 @@ #endif return 0; } + +void tcp_v6_early_demux(struct sk_buff *skb); #endif static inline bool inet_exact_dif_match(struct net *net, struct sk_buff *skb) @@ -1030,6 +1033,7 @@ int losses; /* number of packets marked lost upon ACK */ u32 acked_sacked; /* number of packets newly (S)ACKed upon ACK */ u32 prior_in_flight; /* in flight before this ACK */ + u32 last_end_seq; /* end_seq of most recently ACKed packet */ bool is_app_limited; /* is sample from packet with bubble in pipe? */ bool is_retrans; /* is sample from retransmission? */ bool is_ack_delayed; /* is this (likely) a delayed ACK? */ @@ -1139,6 +1143,11 @@ bool is_sack_reneg, struct rate_sample *rs); void tcp_rate_check_app_limited(struct sock *sk); +static inline bool tcp_skb_sent_after(u64 t1, u64 t2, u32 seq1, u32 seq2) +{ + return t1 > t2 || (t1 == t2 && after(seq1, seq2)); +} + /* These functions determine how the current flow behaves in respect of SACK * handling. SACK is negotiated with the peer, and therefore it can vary * between different flows. @@ -1251,11 +1260,14 @@ { const struct tcp_sock *tp = tcp_sk(sk); + if (tp->is_cwnd_limited) + return true; + /* If in slow start, ensure cwnd grows to twice what was ACKed. */ if (tcp_in_slow_start(tp)) return tp->snd_cwnd < 2 * tp->max_packets_out; - return tp->is_cwnd_limited; + return false; } /* BBR congestion control needs pacing. @@ -1366,8 +1378,8 @@ struct tcp_sock *tp = tcp_sk(sk); s32 delta; - if (!sock_net(sk)->ipv4.sysctl_tcp_slow_start_after_idle || tp->packets_out || - ca_ops->cong_control) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_slow_start_after_idle) || + tp->packets_out || ca_ops->cong_control) return; delta = tcp_jiffies32 - tp->lsndtime; if (delta > inet_csk(sk)->icsk_rto) @@ -1382,7 +1394,7 @@ static inline int tcp_win_from_space(const struct sock *sk, int space) { - int tcp_adv_win_scale = sock_net(sk)->ipv4.sysctl_tcp_adv_win_scale; + int tcp_adv_win_scale = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_adv_win_scale); return tcp_adv_win_scale <= 0 ? (space>>(-tcp_adv_win_scale)) : @@ -1458,7 +1470,8 @@ static inline int tcp_fin_time(const struct sock *sk) { - int fin_timeout = tcp_sk(sk)->linger2 ? : sock_net(sk)->ipv4.sysctl_tcp_fin_timeout; + int fin_timeout = tcp_sk(sk)->linger2 ? : + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_fin_timeout); const int rto = inet_csk(sk)->icsk_rto; if (fin_timeout < (rto << 2) - (rto >> 1)) @@ -1939,7 +1952,7 @@ static inline u32 tcp_notsent_lowat(const struct tcp_sock *tp) { struct net *net = sock_net((struct sock *)tp); - return tp->notsent_lowat ?: net->ipv4.sysctl_tcp_notsent_lowat; + return tp->notsent_lowat ?: READ_ONCE(net->ipv4.sysctl_tcp_notsent_lowat); } /* @wake is one when sk_stream_write_space() calls us. @@ -2008,6 +2021,11 @@ enum tcp_synack_type synack_type); }; +extern const struct tcp_request_sock_ops tcp_request_sock_ipv4_ops; +#if IS_ENABLED(CONFIG_IPV6) +extern const struct tcp_request_sock_ops tcp_request_sock_ipv6_ops; +#endif + #ifdef CONFIG_SYN_COOKIES static inline __u32 cookie_init_sequence(const struct tcp_request_sock_ops *ops, const struct sock *sk, struct sk_buff *skb, diff -u linux-azure-5.4.0/include/net/tls.h linux-azure-5.4.0/include/net/tls.h --- linux-azure-5.4.0/include/net/tls.h +++ linux-azure-5.4.0/include/net/tls.h @@ -360,6 +360,7 @@ int __user *optlen); int tls_sk_attach(struct sock *sk, int optname, char __user *optval, unsigned int optlen); +void tls_err_abort(struct sock *sk, int err); int tls_set_sw_offload(struct sock *sk, struct tls_context *ctx, int tx); void tls_sw_strparser_arm(struct sock *sk, struct tls_context *ctx); @@ -465,12 +466,6 @@ #endif } -static inline void tls_err_abort(struct sock *sk, int err) -{ - sk->sk_err = err; - sk->sk_error_report(sk); -} - static inline bool tls_bigint_increment(unsigned char *seq, int len) { int i; @@ -499,7 +494,7 @@ struct cipher_context *ctx) { if (tls_bigint_increment(ctx->rec_seq, prot->rec_seq_size)) - tls_err_abort(sk, EBADMSG); + tls_err_abort(sk, -EBADMSG); if (prot->version != TLS_1_3_VERSION) tls_bigint_increment(ctx->iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, diff -u linux-azure-5.4.0/include/net/udp.h linux-azure-5.4.0/include/net/udp.h --- linux-azure-5.4.0/include/net/udp.h +++ linux-azure-5.4.0/include/net/udp.h @@ -169,6 +169,7 @@ struct sk_buff *udp_gro_receive(struct list_head *head, struct sk_buff *skb, struct udphdr *uh, udp_lookup_t lookup); int udp_gro_complete(struct sk_buff *skb, int nhoff, udp_lookup_t lookup); +void udp_v6_early_demux(struct sk_buff *skb); struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb, netdev_features_t features); @@ -252,7 +253,7 @@ int dif, int sdif) { #if IS_ENABLED(CONFIG_NET_L3_MASTER_DEV) - return inet_bound_dev_eq(!!net->ipv4.sysctl_udp_l3mdev_accept, + return inet_bound_dev_eq(!!READ_ONCE(net->ipv4.sysctl_udp_l3mdev_accept), bound_dev_if, dif, sdif); #else return inet_bound_dev_eq(true, bound_dev_if, dif, sdif); @@ -459,6 +460,7 @@ DECLARE_STATIC_KEY_FALSE(udp_encap_needed_key); void udp_encap_enable(void); +void udp_encap_disable(void); #if IS_ENABLED(CONFIG_IPV6) DECLARE_STATIC_KEY_FALSE(udpv6_encap_needed_key); void udpv6_encap_enable(void); @@ -480,8 +482,9 @@ * CHECKSUM_NONE in __udp_gso_segment. UDP GRO indeed builds partial * packets in udp_gro_complete_segment. As does UDP GSO, verified by * udp_send_skb. But when those packets are looped in dev_loopback_xmit - * their ip_summed is set to CHECKSUM_UNNECESSARY. Reset in this - * specific case, where PARTIAL is both correct and required. + * their ip_summed CHECKSUM_NONE is changed to CHECKSUM_UNNECESSARY. + * Reset in this specific case, where PARTIAL is both correct and + * required. */ if (skb->pkt_type == PACKET_LOOPBACK) skb->ip_summed = CHECKSUM_PARTIAL; diff -u linux-azure-5.4.0/include/net/xfrm.h linux-azure-5.4.0/include/net/xfrm.h --- linux-azure-5.4.0/include/net/xfrm.h +++ linux-azure-5.4.0/include/net/xfrm.h @@ -1663,14 +1663,15 @@ const struct xfrm_migrate *m, int num_bundles, const struct xfrm_kmaddress *k, const struct xfrm_encap_tmpl *encap); -struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net); +struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net, + u32 if_id); struct xfrm_state *xfrm_state_migrate(struct xfrm_state *x, struct xfrm_migrate *m, struct xfrm_encap_tmpl *encap); int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, struct xfrm_migrate *m, int num_bundles, struct xfrm_kmaddress *k, struct net *net, - struct xfrm_encap_tmpl *encap); + struct xfrm_encap_tmpl *encap, u32 if_id); #endif int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport); diff -u linux-azure-5.4.0/include/rdma/ib_umem.h linux-azure-5.4.0/include/rdma/ib_umem.h --- linux-azure-5.4.0/include/rdma/ib_umem.h +++ linux-azure-5.4.0/include/rdma/ib_umem.h @@ -48,10 +48,19 @@ unsigned long address; u32 writable : 1; u32 is_odp : 1; + /* Placing at the end of the bitfield list is ABI preserving on LE */ + u32 is_peer : 1; struct work_struct work; struct sg_table sg_head; int nmap; unsigned int sg_nents; + unsigned int page_shift; +}; + +typedef void (*umem_invalidate_func_t)(struct ib_umem *umem, void *priv); +enum ib_peer_mem_flags { + IB_PEER_MEM_ALLOW = 1 << 0, + IB_PEER_MEM_INVAL_SUPP = 1 << 1, }; /* Returns the offset of the umem start relative to the first page. */ @@ -69,7 +78,7 @@ #ifdef CONFIG_INFINIBAND_USER_MEM -struct ib_umem *ib_umem_get(struct ib_udata *udata, unsigned long addr, +struct ib_umem *ib_umem_get(struct ib_device *device, unsigned long addr, size_t size, int access); void ib_umem_release(struct ib_umem *umem); int ib_umem_page_count(struct ib_umem *umem); @@ -79,11 +88,19 @@ unsigned long pgsz_bitmap, unsigned long virt); +struct ib_umem *ib_umem_get_peer(struct ib_device *device, unsigned long addr, + size_t size, int access, + unsigned long peer_mem_flags); +void ib_umem_activate_invalidation_notifier(struct ib_umem *umem, + umem_invalidate_func_t func, + void *cookie); +void ib_umem_stop_invalidation_notifier(struct ib_umem *umem); + #else /* CONFIG_INFINIBAND_USER_MEM */ #include -static inline struct ib_umem *ib_umem_get(struct ib_udata *udata, +static inline struct ib_umem *ib_umem_get(struct ib_device *device, unsigned long addr, size_t size, int access) { @@ -104,2 +121,19 @@ +static inline struct ib_umem *ib_umem_get_peer(struct ib_device *device, + unsigned long addr, size_t size, + int access, + unsigned long peer_mem_flags) +{ + return ERR_PTR(-EINVAL); +} + +static inline void ib_umem_activate_invalidation_notifier( + struct ib_umem *umem, umem_invalidate_func_t func, void *cookie) +{ +} + +static inline void ib_umem_stop_invalidation_notifier(struct ib_umem *umem) +{ +} + #endif /* CONFIG_INFINIBAND_USER_MEM */ diff -u linux-azure-5.4.0/include/scsi/libfcoe.h linux-azure-5.4.0/include/scsi/libfcoe.h --- linux-azure-5.4.0/include/scsi/libfcoe.h +++ linux-azure-5.4.0/include/scsi/libfcoe.h @@ -249,7 +249,8 @@ struct fc_frame *); /* libfcoe funcs */ -u64 fcoe_wwn_from_mac(unsigned char mac[MAX_ADDR_LEN], unsigned int, unsigned int); +u64 fcoe_wwn_from_mac(unsigned char mac[ETH_ALEN], unsigned int scheme, + unsigned int port); int fcoe_libfc_config(struct fc_lport *, struct fcoe_ctlr *, const struct libfc_function_template *, int init_fcp); u32 fcoe_fc_crc(struct fc_frame *fp); diff -u linux-azure-5.4.0/include/scsi/libiscsi.h linux-azure-5.4.0/include/scsi/libiscsi.h --- linux-azure-5.4.0/include/scsi/libiscsi.h +++ linux-azure-5.4.0/include/scsi/libiscsi.h @@ -195,12 +195,6 @@ unsigned long suspend_tx; /* suspend Tx */ unsigned long suspend_rx; /* suspend Rx */ - /* abort */ - wait_queue_head_t ehwait; /* used in eh_abort() */ - struct iscsi_tm tmhdr; - struct timer_list tmf_timer; - int tmf_state; /* see TMF_INITIAL, etc.*/ - /* negotiated params */ unsigned max_recv_dlength; /* initiator_max_recv_dsl*/ unsigned max_xmit_dlength; /* target_max_recv_dsl */ @@ -270,6 +264,11 @@ * and recv lock. */ struct mutex eh_mutex; + /* abort */ + wait_queue_head_t ehwait; /* used in eh_abort() */ + struct iscsi_tm tmhdr; + struct timer_list tmf_timer; + int tmf_state; /* see TMF_INITIAL, etc.*/ /* iSCSI session-wide sequencing */ uint32_t cmdsn; diff -u linux-azure-5.4.0/include/trace/events/afs.h linux-azure-5.4.0/include/trace/events/afs.h --- linux-azure-5.4.0/include/trace/events/afs.h +++ linux-azure-5.4.0/include/trace/events/afs.h @@ -111,6 +111,34 @@ afs_VL_GetCapabilities = 65537, /* AFS Get VL server capabilities */ }; +enum afs_cm_operation { + afs_CB_CallBack = 204, /* AFS break callback promises */ + afs_CB_InitCallBackState = 205, /* AFS initialise callback state */ + afs_CB_Probe = 206, /* AFS probe client */ + afs_CB_GetLock = 207, /* AFS get contents of CM lock table */ + afs_CB_GetCE = 208, /* AFS get cache file description */ + afs_CB_GetXStatsVersion = 209, /* AFS get version of extended statistics */ + afs_CB_GetXStats = 210, /* AFS get contents of extended statistics data */ + afs_CB_InitCallBackState3 = 213, /* AFS initialise callback state, version 3 */ + afs_CB_ProbeUuid = 214, /* AFS check the client hasn't rebooted */ +}; + +enum yfs_cm_operation { + yfs_CB_Probe = 206, /* YFS probe client */ + yfs_CB_GetLock = 207, /* YFS get contents of CM lock table */ + yfs_CB_XStatsVersion = 209, /* YFS get version of extended statistics */ + yfs_CB_GetXStats = 210, /* YFS get contents of extended statistics data */ + yfs_CB_InitCallBackState3 = 213, /* YFS initialise callback state, version 3 */ + yfs_CB_ProbeUuid = 214, /* YFS check the client hasn't rebooted */ + yfs_CB_GetServerPrefs = 215, + yfs_CB_GetCellServDV = 216, + yfs_CB_GetLocalCell = 217, + yfs_CB_GetCacheConfig = 218, + yfs_CB_GetCellByNum = 65537, + yfs_CB_TellMeAboutYourself = 65538, /* get client capabilities */ + yfs_CB_CallBack = 64204, +}; + enum afs_edit_dir_op { afs_edit_dir_create, afs_edit_dir_create_error, @@ -312,6 +340,32 @@ EM(afs_YFSVL_GetEndpoints, "YFSVL.GetEndpoints") \ E_(afs_VL_GetCapabilities, "VL.GetCapabilities") +#define afs_cm_operations \ + EM(afs_CB_CallBack, "CB.CallBack") \ + EM(afs_CB_InitCallBackState, "CB.InitCallBackState") \ + EM(afs_CB_Probe, "CB.Probe") \ + EM(afs_CB_GetLock, "CB.GetLock") \ + EM(afs_CB_GetCE, "CB.GetCE") \ + EM(afs_CB_GetXStatsVersion, "CB.GetXStatsVersion") \ + EM(afs_CB_GetXStats, "CB.GetXStats") \ + EM(afs_CB_InitCallBackState3, "CB.InitCallBackState3") \ + E_(afs_CB_ProbeUuid, "CB.ProbeUuid") + +#define yfs_cm_operations \ + EM(yfs_CB_Probe, "YFSCB.Probe") \ + EM(yfs_CB_GetLock, "YFSCB.GetLock") \ + EM(yfs_CB_XStatsVersion, "YFSCB.XStatsVersion") \ + EM(yfs_CB_GetXStats, "YFSCB.GetXStats") \ + EM(yfs_CB_InitCallBackState3, "YFSCB.InitCallBackState3") \ + EM(yfs_CB_ProbeUuid, "YFSCB.ProbeUuid") \ + EM(yfs_CB_GetServerPrefs, "YFSCB.GetServerPrefs") \ + EM(yfs_CB_GetCellServDV, "YFSCB.GetCellServDV") \ + EM(yfs_CB_GetLocalCell, "YFSCB.GetLocalCell") \ + EM(yfs_CB_GetCacheConfig, "YFSCB.GetCacheConfig") \ + EM(yfs_CB_GetCellByNum, "YFSCB.GetCellByNum") \ + EM(yfs_CB_TellMeAboutYourself, "YFSCB.TellMeAboutYourself") \ + E_(yfs_CB_CallBack, "YFSCB.CallBack") + #define afs_edit_dir_ops \ EM(afs_edit_dir_create, "create") \ EM(afs_edit_dir_create_error, "c_fail") \ @@ -442,6 +496,8 @@ afs_server_traces; afs_fs_operations; afs_vl_operations; +afs_cm_operations; +yfs_cm_operations; afs_edit_dir_ops; afs_edit_dir_reasons; afs_eproto_causes; @@ -522,20 +578,21 @@ TP_STRUCT__entry( __field(unsigned int, call ) - __field(const char *, name ) __field(u32, op ) + __field(u16, service_id ) ), TP_fast_assign( __entry->call = call->debug_id; - __entry->name = call->type->name; __entry->op = call->operation_ID; + __entry->service_id = call->service_id; ), - TP_printk("c=%08x %s o=%u", + TP_printk("c=%08x %s", __entry->call, - __entry->name, - __entry->op) + __entry->service_id == 2501 ? + __print_symbolic(__entry->op, yfs_cm_operations) : + __print_symbolic(__entry->op, afs_cm_operations)) ); TRACE_EVENT(afs_call, diff -u linux-azure-5.4.0/include/trace/events/rxrpc.h linux-azure-5.4.0/include/trace/events/rxrpc.h --- linux-azure-5.4.0/include/trace/events/rxrpc.h +++ linux-azure-5.4.0/include/trace/events/rxrpc.h @@ -1511,7 +1511,7 @@ __entry->call_serial = call->rx_serial; __entry->conn_serial = call->conn->hi_serial; __entry->tx_seq = call->tx_hard_ack; - __entry->rx_seq = call->ackr_seen; + __entry->rx_seq = call->rx_hard_ack; ), TP_printk("c=%08x %08x:%08x r=%08x/%08x tx=%08x rx=%08x", diff -u linux-azure-5.4.0/include/uapi/linux/bpf.h linux-azure-5.4.0/include/uapi/linux/bpf.h --- linux-azure-5.4.0/include/uapi/linux/bpf.h +++ linux-azure-5.4.0/include/uapi/linux/bpf.h @@ -560,10 +560,13 @@ * Return * 0 on success, or a negative error in case of failure. * - * int bpf_probe_read(void *dst, u32 size, const void *src) + * int bpf_probe_read(void *dst, u32 size, const void *unsafe_ptr) * Description * For tracing programs, safely attempt to read *size* bytes from - * address *src* and store the data in *dst*. + * kernel space address *unsafe_ptr* and store the data in *dst*. + * + * Generally, use bpf_probe_read_user() or bpf_probe_read_kernel() + * instead. * Return * 0 on success, or a negative error in case of failure. * @@ -1294,8 +1297,8 @@ * Return * The return value depends on the result of the test, and can be: * - * * 0, if current task belongs to the cgroup2. - * * 1, if current task does not belong to the cgroup2. + * * 1, if current task belongs to the cgroup2. + * * 0, if current task does not belong to the cgroup2. * * A negative error code, if an error occurred. * * int bpf_skb_change_tail(struct sk_buff *skb, u32 len, u64 flags) @@ -1425,45 +1428,14 @@ * Return * 0 on success, or a negative error in case of failure. * - * int bpf_probe_read_str(void *dst, int size, const void *unsafe_ptr) + * int bpf_probe_read_str(void *dst, u32 size, const void *unsafe_ptr) * Description - * Copy a NUL terminated string from an unsafe address - * *unsafe_ptr* to *dst*. The *size* should include the - * terminating NUL byte. In case the string length is smaller than - * *size*, the target is not padded with further NUL bytes. If the - * string length is larger than *size*, just *size*-1 bytes are - * copied and the last byte is set to NUL. - * - * On success, the length of the copied string is returned. This - * makes this helper useful in tracing programs for reading - * strings, and more importantly to get its length at runtime. See - * the following snippet: - * - * :: - * - * SEC("kprobe/sys_open") - * void bpf_sys_open(struct pt_regs *ctx) - * { - * char buf[PATHLEN]; // PATHLEN is defined to 256 - * int res = bpf_probe_read_str(buf, sizeof(buf), - * ctx->di); - * - * // Consume buf, for example push it to - * // userspace via bpf_perf_event_output(); we - * // can use res (the string length) as event - * // size, after checking its boundaries. - * } - * - * In comparison, using **bpf_probe_read()** helper here instead - * to read the string would require to estimate the length at - * compile time, and would often result in copying more memory - * than necessary. + * Copy a NUL terminated string from an unsafe kernel address + * *unsafe_ptr* to *dst*. See bpf_probe_read_kernel_str() for + * more details. * - * Another useful use case is when parsing individual process - * arguments or individual environment variables navigating - * *current*\ **->mm->arg_start** and *current*\ - * **->mm->env_start**: using this helper and the return value, - * one can quickly iterate at the right offset of the memory area. + * Generally, use bpf_probe_read_user_str() or bpf_probe_read_kernel_str() + * instead. * Return * On success, the strictly positive length of the string, * including the trailing NUL character. On error, a negative @@ -2264,7 +2236,7 @@ * int bpf_sk_select_reuseport(struct sk_reuseport_md *reuse, struct bpf_map *map, void *key, u64 flags) * Description * Select a **SO_REUSEPORT** socket from a - * **BPF_MAP_TYPE_REUSEPORT_ARRAY** *map*. + * **BPF_MAP_TYPE_REUSEPORT_SOCKARRAY** *map*. * It checks the selected socket is matching the incoming * request in the socket buffer. * Return @@ -2862,7 +2834,12 @@ FN(sk_storage_get), \ FN(sk_storage_delete), \ FN(send_signal), \ - FN(tcp_gen_syncookie), + FN(tcp_gen_syncookie), \ + FN(skb_output), \ + FN(probe_read_user), \ + FN(probe_read_kernel), \ + FN(probe_read_user_str), \ + FN(probe_read_kernel_str), /* integer value in 'imm' field of BPF_CALL instruction selects which helper * function eBPF program intends to call @@ -3068,7 +3045,8 @@ __u32 src_ip4; __u32 src_ip6[4]; __u32 src_port; /* host byte order */ - __u32 dst_port; /* network byte order */ + __be16 dst_port; /* network byte order */ + __u16 :16; /* zero padding */ __u32 dst_ip4; __u32 dst_ip6[4]; __u32 state; diff -u linux-azure-5.4.0/include/uapi/linux/dma-buf.h linux-azure-5.4.0/include/uapi/linux/dma-buf.h --- linux-azure-5.4.0/include/uapi/linux/dma-buf.h +++ linux-azure-5.4.0/include/uapi/linux/dma-buf.h @@ -45,6 +45,6 @@ */ #define DMA_BUF_SET_NAME _IOW(DMA_BUF_BASE, 1, const char *) -#define DMA_BUF_SET_NAME_A _IOW(DMA_BUF_BASE, 1, u32) -#define DMA_BUF_SET_NAME_B _IOW(DMA_BUF_BASE, 1, u64) +#define DMA_BUF_SET_NAME_A _IOW(DMA_BUF_BASE, 1, __u32) +#define DMA_BUF_SET_NAME_B _IOW(DMA_BUF_BASE, 1, __u64) #endif diff -u linux-azure-5.4.0/include/uapi/linux/ethtool.h linux-azure-5.4.0/include/uapi/linux/ethtool.h --- linux-azure-5.4.0/include/uapi/linux/ethtool.h +++ linux-azure-5.4.0/include/uapi/linux/ethtool.h @@ -223,7 +223,7 @@ ETHTOOL_PFC_PREVENTION_TOUT, /* timeout in msecs */ /* * Add your fresh new tunable attribute above and remember to update - * tunable_strings[] in net/core/ethtool.c + * tunable_strings[] in net/ethtool/common.c */ __ETHTOOL_TUNABLE_COUNT, }; @@ -287,7 +287,7 @@ ETHTOOL_PHY_EDPD, /* * Add your fresh new phy tunable attribute above and remember to update - * phy_tunable_strings[] in net/core/ethtool.c + * phy_tunable_strings[] in net/ethtool/common.c */ __ETHTOOL_PHY_TUNABLE_COUNT, }; diff -u linux-azure-5.4.0/include/uapi/linux/input-event-codes.h linux-azure-5.4.0/include/uapi/linux/input-event-codes.h --- linux-azure-5.4.0/include/uapi/linux/input-event-codes.h +++ linux-azure-5.4.0/include/uapi/linux/input-event-codes.h @@ -278,7 +278,8 @@ #define KEY_PAUSECD 201 #define KEY_PROG3 202 #define KEY_PROG4 203 -#define KEY_DASHBOARD 204 /* AL Dashboard */ +#define KEY_ALL_APPLICATIONS 204 /* AC Desktop Show All Applications */ +#define KEY_DASHBOARD KEY_ALL_APPLICATIONS #define KEY_SUSPEND 205 #define KEY_CLOSE 206 /* AC Close */ #define KEY_PLAY 207 @@ -607,6 +608,8 @@ #define KEY_VOICECOMMAND 0x246 /* Listening Voice Command */ #define KEY_ASSISTANT 0x247 /* AL Context-aware desktop assistant */ #define KEY_KBD_LAYOUT_NEXT 0x248 /* AC Next Keyboard Layout Select */ +#define KEY_EMOJI_PICKER 0x249 /* Show/hide emoji picker (HUTRR101) */ +#define KEY_DICTATE 0x24a /* Start or Stop Voice Dictation Session (HUTRR99) */ #define KEY_BRIGHTNESS_MIN 0x250 /* Set Brightness to Minimum */ #define KEY_BRIGHTNESS_MAX 0x251 /* Set Brightness to Maximum */ diff -u linux-azure-5.4.0/include/uapi/linux/kvm.h linux-azure-5.4.0/include/uapi/linux/kvm.h --- linux-azure-5.4.0/include/uapi/linux/kvm.h +++ linux-azure-5.4.0/include/uapi/linux/kvm.h @@ -471,9 +471,12 @@ __u32 op; /* type of operation */ __u64 buf; /* buffer in userspace */ union { - __u8 ar; /* the access register number */ + struct { + __u8 ar; /* the access register number */ + __u8 key; /* access key, ignored if flag unset */ + }; __u32 sida_offset; /* offset into the sida */ - __u8 reserved[32]; /* should be set to 0 */ + __u8 reserved[32]; /* ignored */ }; }; /* types for kvm_s390_mem_op->op */ @@ -481,9 +484,12 @@ #define KVM_S390_MEMOP_LOGICAL_WRITE 1 #define KVM_S390_MEMOP_SIDA_READ 2 #define KVM_S390_MEMOP_SIDA_WRITE 3 +#define KVM_S390_MEMOP_ABSOLUTE_READ 4 +#define KVM_S390_MEMOP_ABSOLUTE_WRITE 5 /* flags for kvm_s390_mem_op->flags */ #define KVM_S390_MEMOP_F_CHECK_ONLY (1ULL << 0) #define KVM_S390_MEMOP_F_INJECT_EXCEPTION (1ULL << 1) +#define KVM_S390_MEMOP_F_SKEY_PROTECTION (1ULL << 2) /* for KVM_INTERRUPT */ struct kvm_interrupt { @@ -1010,6 +1016,8 @@ #define KVM_CAP_HYPERV_DIRECT_TLBFLUSH 175 #define KVM_CAP_S390_VCPU_RESETS 179 #define KVM_CAP_S390_PROTECTED 180 +#define KVM_CAP_S390_DIAG318 186 +#define KVM_CAP_S390_MEM_OP_EXTENSION 211 #ifdef KVM_CAP_IRQ_ROUTING diff -u linux-azure-5.4.0/include/uapi/linux/pkt_sched.h linux-azure-5.4.0/include/uapi/linux/pkt_sched.h --- linux-azure-5.4.0/include/uapi/linux/pkt_sched.h +++ linux-azure-5.4.0/include/uapi/linux/pkt_sched.h @@ -807,6 +807,8 @@ /* FQ_CODEL */ +#define FQ_CODEL_QUANTUM_MAX (1 << 20) + enum { TCA_FQ_CODEL_UNSPEC, TCA_FQ_CODEL_TARGET, diff -u linux-azure-5.4.0/include/uapi/linux/videodev2.h linux-azure-5.4.0/include/uapi/linux/videodev2.h --- linux-azure-5.4.0/include/uapi/linux/videodev2.h +++ linux-azure-5.4.0/include/uapi/linux/videodev2.h @@ -1496,7 +1496,8 @@ ((bt)->width + V4L2_DV_BT_BLANKING_WIDTH(bt)) #define V4L2_DV_BT_BLANKING_HEIGHT(bt) \ ((bt)->vfrontporch + (bt)->vsync + (bt)->vbackporch + \ - (bt)->il_vfrontporch + (bt)->il_vsync + (bt)->il_vbackporch) + ((bt)->interlaced ? \ + ((bt)->il_vfrontporch + (bt)->il_vsync + (bt)->il_vbackporch) : 0)) #define V4L2_DV_BT_FRAME_HEIGHT(bt) \ ((bt)->height + V4L2_DV_BT_BLANKING_HEIGHT(bt)) diff -u linux-azure-5.4.0/include/uapi/linux/xfrm.h linux-azure-5.4.0/include/uapi/linux/xfrm.h --- linux-azure-5.4.0/include/uapi/linux/xfrm.h +++ linux-azure-5.4.0/include/uapi/linux/xfrm.h @@ -504,6 +504,12 @@ int ifindex; __u8 flags; }; +/* This flag was exposed without any kernel code that supporting it. + * Unfortunately, strongswan has the code that uses sets this flag, + * which makes impossible to reuse this bit. + * + * So leave it here to make sure that it won't be reused by mistake. + */ #define XFRM_OFFLOAD_IPV6 1 #define XFRM_OFFLOAD_INBOUND 2 diff -u linux-azure-5.4.0/include/xen/grant_table.h linux-azure-5.4.0/include/xen/grant_table.h --- linux-azure-5.4.0/include/xen/grant_table.h +++ linux-azure-5.4.0/include/xen/grant_table.h @@ -97,17 +97,32 @@ * access has been ended, free the given page too. Access will be ended * immediately iff the grant entry is not in use, otherwise it will happen * some time later. page may be 0, in which case no freeing will occur. + * Note that the granted page might still be accessed (read or write) by the + * other side after gnttab_end_foreign_access() returns, so even if page was + * specified as 0 it is not allowed to just reuse the page for other + * purposes immediately. gnttab_end_foreign_access() will take an additional + * reference to the granted page in this case, which is dropped only after + * the grant is no longer in use. + * This requires that multi page allocations for areas subject to + * gnttab_end_foreign_access() are done via alloc_pages_exact() (and freeing + * via free_pages_exact()) in order to avoid high order pages. */ void gnttab_end_foreign_access(grant_ref_t ref, int readonly, unsigned long page); +/* + * End access through the given grant reference, iff the grant entry is + * no longer in use. In case of success ending foreign access, the + * grant reference is deallocated. + * Return 1 if the grant entry was freed, 0 if it is still in use. + */ +int gnttab_try_end_foreign_access(grant_ref_t ref); + int gnttab_grant_foreign_transfer(domid_t domid, unsigned long pfn); unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref); unsigned long gnttab_end_foreign_transfer(grant_ref_t ref); -int gnttab_query_foreign_access(grant_ref_t ref); - /* * operations on reserved batches of grant references */ diff -u linux-azure-5.4.0/init/Kconfig linux-azure-5.4.0/init/Kconfig --- linux-azure-5.4.0/init/Kconfig +++ linux-azure-5.4.0/init/Kconfig @@ -20,6 +20,9 @@ config CC_IS_CLANG def_bool $(success,$(CC) --version | head -n 1 | grep -q clang) +config LD_IS_LLD + def_bool $(success,$(LD) -v | head -n 1 | grep -q LLD) + config CLANG_VERSION int default $(shell,$(srctree)/scripts/clang-version.sh $(CC)) @@ -30,6 +33,15 @@ config CC_HAS_ASM_GOTO def_bool $(success,$(srctree)/scripts/gcc-goto.sh $(CC)) +config CC_HAS_ASM_GOTO_TIED_OUTPUT + depends on CC_HAS_ASM_GOTO_OUTPUT + # Detect buggy gcc and clang, fixed in gcc-11 clang-14. + def_bool $(success,echo 'int foo(int *x) { asm goto (".long (%l[bar]) - .\n": "+m"(*x) ::: bar); return *x; bar: return 0; }' | $CC -x c - -c -o /dev/null) + +config CC_HAS_ASM_GOTO_OUTPUT + depends on CC_HAS_ASM_GOTO + def_bool $(success,echo 'int foo(int x) { asm goto ("": "=r"(x) ::: bar); return x; bar: return 0; }' | $(CC) -x c - -c -o /dev/null) + config TOOLS_SUPPORT_RELR def_bool $(success,env "CC=$(CC)" "LD=$(LD)" "NM=$(NM)" "OBJCOPY=$(OBJCOPY)" $(srctree)/scripts/tools-support-relr.sh) @@ -1615,6 +1627,16 @@ Enables BPF JIT and removes BPF interpreter to avoid speculative execution of BPF instructions by the interpreter +config BPF_UNPRIV_DEFAULT_OFF + bool "Disable unprivileged BPF by default" + depends on BPF_SYSCALL + help + Disables unprivileged BPF by default by setting the corresponding + /proc/sys/kernel/unprivileged_bpf_disabled knob to 2. An admin can + still reenable it by setting it to 0 later on, or permanently + disable it by setting it to 1 (from which no other transition to + 0 is possible anymore). + config USERFAULTFD bool "Enable userfaultfd() system call" depends on MMU diff -u linux-azure-5.4.0/init/main.c linux-azure-5.4.0/init/main.c --- linux-azure-5.4.0/init/main.c +++ linux-azure-5.4.0/init/main.c @@ -680,21 +680,18 @@ hrtimers_init(); softirq_init(); timekeeping_init(); + time_init(); /* * For best initial stack canary entropy, prepare it after: * - setup_arch() for any UEFI RNG entropy and boot cmdline access - * - timekeeping_init() for ktime entropy used in rand_initialize() - * - rand_initialize() to get any arch-specific entropy like RDRAND - * - add_latent_entropy() to get any latent entropy - * - adding command line entropy + * - timekeeping_init() for ktime entropy used in random_init() + * - time_init() for making random_get_entropy() work on some platforms + * - random_init() to initialize the RNG from from early entropy sources */ - rand_initialize(); - add_latent_entropy(); - add_device_randomness(command_line, strlen(command_line)); + random_init(command_line); boot_init_stack_canary(); - time_init(); perf_event_init(); profile_init(); call_function_init(); @@ -831,7 +828,7 @@ } } while (str_entry); - return 0; + return 1; } static bool __init_or_module initcall_blacklisted(initcall_t fn) @@ -1072,7 +1069,9 @@ bool rodata_enabled __ro_after_init = true; static int __init set_debug_rodata(char *str) { - return strtobool(str, &rodata_enabled); + if (strtobool(str, &rodata_enabled)) + pr_warn("Invalid option string for rodata: '%s'\n", str); + return 1; } __setup("rodata=", set_debug_rodata); #endif @@ -1174,7 +1173,7 @@ */ set_mems_allowed(node_states[N_MEMORY]); - cad_pid = task_pid(current); + cad_pid = get_pid(task_pid(current)); smp_prepare_cpus(setup_max_cpus); diff -u linux-azure-5.4.0/ipc/mqueue.c linux-azure-5.4.0/ipc/mqueue.c --- linux-azure-5.4.0/ipc/mqueue.c +++ linux-azure-5.4.0/ipc/mqueue.c @@ -45,6 +45,7 @@ struct mqueue_fs_context { struct ipc_namespace *ipc_ns; + bool newns; /* Set if newly created ipc namespace */ }; #define MQUEUE_MAGIC 0x19800202 @@ -365,6 +366,14 @@ { struct mqueue_fs_context *ctx = fc->fs_private; + /* + * With a newly created ipc namespace, we don't need to do a search + * for an ipc namespace match, but we still need to set s_fs_info. + */ + if (ctx->newns) { + fc->s_fs_info = ctx->ipc_ns; + return get_tree_nodev(fc, mqueue_fill_super); + } return get_tree_keyed(fc, mqueue_fill_super, ctx->ipc_ns); } @@ -392,6 +401,10 @@ return 0; } +/* + * mq_init_ns() is currently the only caller of mq_create_mount(). + * So the ns parameter is always a newly created ipc namespace. + */ static struct vfsmount *mq_create_mount(struct ipc_namespace *ns) { struct mqueue_fs_context *ctx; @@ -403,6 +416,7 @@ return ERR_CAST(fc); ctx = fc->fs_private; + ctx->newns = true; put_ipc_ns(ctx->ipc_ns); ctx->ipc_ns = get_ipc_ns(ns); put_user_ns(fc->user_ns); diff -u linux-azure-5.4.0/ipc/msg.c linux-azure-5.4.0/ipc/msg.c --- linux-azure-5.4.0/ipc/msg.c +++ linux-azure-5.4.0/ipc/msg.c @@ -137,7 +137,7 @@ key_t key = params->key; int msgflg = params->flg; - msq = kvmalloc(sizeof(*msq), GFP_KERNEL); + msq = kvmalloc(sizeof(*msq), GFP_KERNEL_ACCOUNT); if (unlikely(!msq)) return -ENOMEM; diff -u linux-azure-5.4.0/ipc/sem.c linux-azure-5.4.0/ipc/sem.c --- linux-azure-5.4.0/ipc/sem.c +++ linux-azure-5.4.0/ipc/sem.c @@ -492,7 +492,7 @@ if (nsems > (INT_MAX - sizeof(*sma)) / sizeof(sma->sems[0])) return NULL; - sma = kvzalloc(struct_size(sma, sems, nsems), GFP_KERNEL); + sma = kvzalloc(struct_size(sma, sems, nsems), GFP_KERNEL_ACCOUNT); if (unlikely(!sma)) return NULL; @@ -1835,7 +1835,7 @@ undo_list = current->sysvsem.undo_list; if (!undo_list) { - undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL); + undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL_ACCOUNT); if (undo_list == NULL) return -ENOMEM; spin_lock_init(&undo_list->lock); @@ -1920,7 +1920,7 @@ rcu_read_unlock(); /* step 2: allocate new undo structure */ - new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL); + new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL_ACCOUNT); if (!new) { ipc_rcu_putref(&sma->sem_perm, sem_rcu_free); return ERR_PTR(-ENOMEM); diff -u linux-azure-5.4.0/ipc/util.c linux-azure-5.4.0/ipc/util.c --- linux-azure-5.4.0/ipc/util.c +++ linux-azure-5.4.0/ipc/util.c @@ -446,8 +446,8 @@ static void ipc_kht_remove(struct ipc_ids *ids, struct kern_ipc_perm *ipcp) { if (ipcp->key != IPC_PRIVATE) - rhashtable_remove_fast(&ids->key_ht, &ipcp->khtnode, - ipc_kht_params); + WARN_ON_ONCE(rhashtable_remove_fast(&ids->key_ht, &ipcp->khtnode, + ipc_kht_params)); } /** @@ -462,7 +462,7 @@ { int idx = ipcid_to_idx(ipcp->id); - idr_remove(&ids->ipcs_idr, idx); + WARN_ON_ONCE(idr_remove(&ids->ipcs_idr, idx) != ipcp); ipc_kht_remove(ids, ipcp); ids->in_use--; ipcp->deleted = true; diff -u linux-azure-5.4.0/kernel/audit.c linux-azure-5.4.0/kernel/audit.c --- linux-azure-5.4.0/kernel/audit.c +++ linux-azure-5.4.0/kernel/audit.c @@ -535,20 +535,22 @@ /** * kauditd_rehold_skb - Handle a audit record send failure in the hold queue * @skb: audit record + * @error: error code (unused) * * Description: * This should only be used by the kauditd_thread when it fails to flush the * hold queue. */ -static void kauditd_rehold_skb(struct sk_buff *skb) +static void kauditd_rehold_skb(struct sk_buff *skb, __always_unused int error) { - /* put the record back in the queue at the same place */ - skb_queue_head(&audit_hold_queue, skb); + /* put the record back in the queue */ + skb_queue_tail(&audit_hold_queue, skb); } /** * kauditd_hold_skb - Queue an audit record, waiting for auditd * @skb: audit record + * @error: error code * * Description: * Queue the audit record, waiting for an instance of auditd. When this @@ -558,19 +560,31 @@ * and queue it, if we have room. If we want to hold on to the record, but we * don't have room, record a record lost message. */ -static void kauditd_hold_skb(struct sk_buff *skb) +static void kauditd_hold_skb(struct sk_buff *skb, int error) { /* at this point it is uncertain if we will ever send this to auditd so * try to send the message via printk before we go any further */ kauditd_printk_skb(skb); /* can we just silently drop the message? */ - if (!audit_default) { - kfree_skb(skb); - return; + if (!audit_default) + goto drop; + + /* the hold queue is only for when the daemon goes away completely, + * not -EAGAIN failures; if we are in a -EAGAIN state requeue the + * record on the retry queue unless it's full, in which case drop it + */ + if (error == -EAGAIN) { + if (!audit_backlog_limit || + skb_queue_len(&audit_retry_queue) < audit_backlog_limit) { + skb_queue_tail(&audit_retry_queue, skb); + return; + } + audit_log_lost("kauditd retry queue overflow"); + goto drop; } - /* if we have room, queue the message */ + /* if we have room in the hold queue, queue the message */ if (!audit_backlog_limit || skb_queue_len(&audit_hold_queue) < audit_backlog_limit) { skb_queue_tail(&audit_hold_queue, skb); @@ -579,24 +593,32 @@ /* we have no other options - drop the message */ audit_log_lost("kauditd hold queue overflow"); +drop: kfree_skb(skb); } /** * kauditd_retry_skb - Queue an audit record, attempt to send again to auditd * @skb: audit record + * @error: error code (unused) * * Description: * Not as serious as kauditd_hold_skb() as we still have a connected auditd, * but for some reason we are having problems sending it audit records so * queue the given record and attempt to resend. */ -static void kauditd_retry_skb(struct sk_buff *skb) +static void kauditd_retry_skb(struct sk_buff *skb, __always_unused int error) { - /* NOTE: because records should only live in the retry queue for a - * short period of time, before either being sent or moved to the hold - * queue, we don't currently enforce a limit on this queue */ - skb_queue_tail(&audit_retry_queue, skb); + if (!audit_backlog_limit || + skb_queue_len(&audit_retry_queue) < audit_backlog_limit) { + skb_queue_tail(&audit_retry_queue, skb); + return; + } + + /* we have to drop the record, send it via printk as a last effort */ + kauditd_printk_skb(skb); + audit_log_lost("kauditd retry queue overflow"); + kfree_skb(skb); } /** @@ -634,7 +656,7 @@ /* flush the retry queue to the hold queue, but don't touch the main * queue since we need to process that normally for multicast */ while ((skb = skb_dequeue(&audit_retry_queue))) - kauditd_hold_skb(skb); + kauditd_hold_skb(skb, -ECONNREFUSED); } /** @@ -708,16 +730,18 @@ struct sk_buff_head *queue, unsigned int retry_limit, void (*skb_hook)(struct sk_buff *skb), - void (*err_hook)(struct sk_buff *skb)) + void (*err_hook)(struct sk_buff *skb, int error)) { int rc = 0; - struct sk_buff *skb; - static unsigned int failed = 0; + struct sk_buff *skb = NULL; + struct sk_buff *skb_tail; + unsigned int failed = 0; /* NOTE: kauditd_thread takes care of all our locking, we just use * the netlink info passed to us (e.g. sk and portid) */ - while ((skb = skb_dequeue(queue))) { + skb_tail = skb_peek_tail(queue); + while ((skb != skb_tail) && (skb = skb_dequeue(queue))) { /* call the skb_hook for each skb we touch */ if (skb_hook) (*skb_hook)(skb); @@ -725,36 +749,34 @@ /* can we send to anyone via unicast? */ if (!sk) { if (err_hook) - (*err_hook)(skb); + (*err_hook)(skb, -ECONNREFUSED); continue; } +retry: /* grab an extra skb reference in case of error */ skb_get(skb); rc = netlink_unicast(sk, skb, portid, 0); if (rc < 0) { - /* fatal failure for our queue flush attempt? */ + /* send failed - try a few times unless fatal error */ if (++failed >= retry_limit || rc == -ECONNREFUSED || rc == -EPERM) { - /* yes - error processing for the queue */ sk = NULL; if (err_hook) - (*err_hook)(skb); - if (!skb_hook) - goto out; - /* keep processing with the skb_hook */ + (*err_hook)(skb, rc); + if (rc == -EAGAIN) + rc = 0; + /* continue to drain the queue */ continue; } else - /* no - requeue to preserve ordering */ - skb_queue_head(queue, skb); + goto retry; } else { - /* it worked - drop the extra reference and continue */ + /* skb sent - drop the extra reference and continue */ consume_skb(skb); failed = 0; } } -out: return (rc >= 0 ? 0 : rc); } @@ -1530,6 +1552,20 @@ nlh = nlmsg_next(nlh, &len); } audit_ctl_unlock(); + + /* can't block with the ctrl lock, so penalize the sender now */ + if (audit_backlog_limit && + (skb_queue_len(&audit_queue) > audit_backlog_limit)) { + DECLARE_WAITQUEUE(wait, current); + + /* wake kauditd to try and flush the queue */ + wake_up_interruptible(&kauditd_wait); + + add_wait_queue_exclusive(&audit_backlog_wait, &wait); + set_current_state(TASK_UNINTERRUPTIBLE); + schedule_timeout(audit_backlog_wait_time); + remove_wait_queue(&audit_backlog_wait, &wait); + } } /* Run custom bind function on netlink socket group connect or bind requests. */ @@ -1557,7 +1593,8 @@ audit_panic("cannot initialize netlink socket in namespace"); return -ENOMEM; } - aunet->sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT; + /* limit the timeout in case auditd is blocked/stopped */ + aunet->sk->sk_sndtimeo = HZ / 10; return 0; } @@ -1773,7 +1810,9 @@ * task_tgid_vnr() since auditd_pid is set in audit_receive_msg() * using a PID anchored in the caller's namespace * 2. generator holding the audit_cmd_mutex - we don't want to block - * while holding the mutex */ + * while holding the mutex, although we do penalize the sender + * later in audit_receive() when it is safe to block + */ if (!(auditd_test_task(current) || audit_ctl_owner_current())) { long stime = audit_backlog_wait_time; diff -u linux-azure-5.4.0/kernel/audit.h linux-azure-5.4.0/kernel/audit.h --- linux-azure-5.4.0/kernel/audit.h +++ linux-azure-5.4.0/kernel/audit.h @@ -191,6 +191,10 @@ struct { char *name; } module; + struct { + struct audit_ntp_data ntp_data; + struct timespec64 tk_injoffset; + } time; }; int fds[2]; struct audit_proctitle proctitle; diff -u linux-azure-5.4.0/kernel/bpf/btf.c linux-azure-5.4.0/kernel/bpf/btf.c --- linux-azure-5.4.0/kernel/bpf/btf.c +++ linux-azure-5.4.0/kernel/bpf/btf.c @@ -2148,7 +2148,7 @@ if (v->next_member) { const struct btf_type *last_member_type; const struct btf_member *last_member; - u16 last_member_type_id; + u32 last_member_type_id; last_member = btf_type_member(v->t) + v->next_member - 1; last_member_type_id = last_member->type; diff -u linux-azure-5.4.0/kernel/bpf/core.c linux-azure-5.4.0/kernel/bpf/core.c --- linux-azure-5.4.0/kernel/bpf/core.c +++ linux-azure-5.4.0/kernel/bpf/core.c @@ -31,6 +31,7 @@ #include #include +#include #include /* Registers */ @@ -63,11 +64,13 @@ { u8 *ptr = NULL; - if (k >= SKF_NET_OFF) + if (k >= SKF_NET_OFF) { ptr = skb_network_header(skb) + k - SKF_NET_OFF; - else if (k >= SKF_LL_OFF) + } else if (k >= SKF_LL_OFF) { + if (unlikely(!skb_mac_header_was_set(skb))) + return NULL; ptr = skb_mac_header(skb) + k - SKF_LL_OFF; - + } if (ptr >= skb->head && ptr + size <= skb_tail_pointer(skb)) return ptr; @@ -522,6 +525,7 @@ int bpf_jit_harden __read_mostly; int bpf_jit_kallsyms __read_mostly; long bpf_jit_limit __read_mostly; +long bpf_jit_limit_max __read_mostly; static __always_inline void bpf_get_prog_addr_region(const struct bpf_prog *prog, @@ -758,7 +762,8 @@ static int __init bpf_jit_charge_init(void) { /* Only used as heuristic here to derive limit. */ - bpf_jit_limit = min_t(u64, round_up(bpf_jit_alloc_exec_limit() >> 2, + bpf_jit_limit_max = bpf_jit_alloc_exec_limit(); + bpf_jit_limit = min_t(u64, round_up(bpf_jit_limit_max >> 2, PAGE_SIZE), LONG_MAX); return 0; } @@ -1310,6 +1315,7 @@ /* Non-UAPI available opcodes. */ [BPF_JMP | BPF_CALL_ARGS] = &&JMP_CALL_ARGS, [BPF_JMP | BPF_TAIL_CALL] = &&JMP_TAIL_CALL, + [BPF_ST | BPF_NOSPEC] = &&ST_NOSPEC, }; #undef BPF_INSN_3_LBL #undef BPF_INSN_2_LBL @@ -1321,29 +1327,54 @@ select_insn: goto *jumptable[insn->code]; - /* ALU */ -#define ALU(OPCODE, OP) \ - ALU64_##OPCODE##_X: \ - DST = DST OP SRC; \ - CONT; \ - ALU_##OPCODE##_X: \ - DST = (u32) DST OP (u32) SRC; \ - CONT; \ - ALU64_##OPCODE##_K: \ - DST = DST OP IMM; \ - CONT; \ - ALU_##OPCODE##_K: \ - DST = (u32) DST OP (u32) IMM; \ + /* Explicitly mask the register-based shift amounts with 63 or 31 + * to avoid undefined behavior. Normally this won't affect the + * generated code, for example, in case of native 64 bit archs such + * as x86-64 or arm64, the compiler is optimizing the AND away for + * the interpreter. In case of JITs, each of the JIT backends compiles + * the BPF shift operations to machine instructions which produce + * implementation-defined results in such a case; the resulting + * contents of the register may be arbitrary, but program behaviour + * as a whole remains defined. In other words, in case of JIT backends, + * the AND must /not/ be added to the emitted LSH/RSH/ARSH translation. + */ + /* ALU (shifts) */ +#define SHT(OPCODE, OP) \ + ALU64_##OPCODE##_X: \ + DST = DST OP (SRC & 63); \ + CONT; \ + ALU_##OPCODE##_X: \ + DST = (u32) DST OP ((u32) SRC & 31); \ + CONT; \ + ALU64_##OPCODE##_K: \ + DST = DST OP IMM; \ + CONT; \ + ALU_##OPCODE##_K: \ + DST = (u32) DST OP (u32) IMM; \ + CONT; + /* ALU (rest) */ +#define ALU(OPCODE, OP) \ + ALU64_##OPCODE##_X: \ + DST = DST OP SRC; \ + CONT; \ + ALU_##OPCODE##_X: \ + DST = (u32) DST OP (u32) SRC; \ + CONT; \ + ALU64_##OPCODE##_K: \ + DST = DST OP IMM; \ + CONT; \ + ALU_##OPCODE##_K: \ + DST = (u32) DST OP (u32) IMM; \ CONT; - ALU(ADD, +) ALU(SUB, -) ALU(AND, &) ALU(OR, |) - ALU(LSH, <<) - ALU(RSH, >>) ALU(XOR, ^) ALU(MUL, *) + SHT(LSH, <<) + SHT(RSH, >>) +#undef SHT #undef ALU ALU_NEG: DST = (u32) -DST; @@ -1368,13 +1399,13 @@ insn++; CONT; ALU_ARSH_X: - DST = (u64) (u32) (((s32) DST) >> SRC); + DST = (u64) (u32) (((s32) DST) >> (SRC & 31)); CONT; ALU_ARSH_K: DST = (u64) (u32) (((s32) DST) >> IMM); CONT; ALU64_ARSH_X: - (*(s64 *) &DST) >>= SRC; + (*(s64 *) &DST) >>= (SRC & 63); CONT; ALU64_ARSH_K: (*(s64 *) &DST) >>= IMM; @@ -1525,7 +1556,21 @@ COND_JMP(s, JSGE, >=) COND_JMP(s, JSLE, <=) #undef COND_JMP - /* STX and ST and LDX*/ + /* ST, STX and LDX*/ + ST_NOSPEC: + /* Speculation barrier for mitigating Speculative Store Bypass. + * In case of arm64, we rely on the firmware mitigation as + * controlled via the ssbd kernel parameter. Whenever the + * mitigation is enabled, it works for all of the kernel code + * with no need to provide any additional instructions here. + * In case of x86, we use 'lfence' insn for mitigation. We + * reuse preexisting logic from Spectre v1 mitigation that + * happens to produce the required code on x86 for v4 as well. + */ +#ifdef CONFIG_X86 + barrier_nospec(); +#endif + CONT; #define LDST(SIZEOP, SIZE) \ STX_MEM_##SIZEOP: \ *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \ diff -u linux-azure-5.4.0/kernel/bpf/devmap.c linux-azure-5.4.0/kernel/bpf/devmap.c --- linux-azure-5.4.0/kernel/bpf/devmap.c +++ linux-azure-5.4.0/kernel/bpf/devmap.c @@ -94,7 +94,7 @@ int i; struct hlist_head *hash; - hash = bpf_map_area_alloc(entries * sizeof(*hash), numa_node); + hash = bpf_map_area_alloc((u64) entries * sizeof(*hash), numa_node); if (hash != NULL) for (i = 0; i < entries; i++) INIT_HLIST_HEAD(&hash[i]); @@ -159,7 +159,7 @@ spin_lock_init(&dtab->index_lock); } else { - dtab->netdev_map = bpf_map_area_alloc(dtab->map.max_entries * + dtab->netdev_map = bpf_map_area_alloc((u64) dtab->map.max_entries * sizeof(struct bpf_dtab_netdev *), dtab->map.numa_node); if (!dtab->netdev_map) diff -u linux-azure-5.4.0/kernel/bpf/stackmap.c linux-azure-5.4.0/kernel/bpf/stackmap.c --- linux-azure-5.4.0/kernel/bpf/stackmap.c +++ linux-azure-5.4.0/kernel/bpf/stackmap.c @@ -60,7 +60,8 @@ static int prealloc_elems_and_freelist(struct bpf_stack_map *smap) { - u32 elem_size = sizeof(struct stack_map_bucket) + smap->map.value_size; + u64 elem_size = sizeof(struct stack_map_bucket) + + (u64)smap->map.value_size; int err; smap->elems = bpf_map_area_alloc(elem_size * smap->map.max_entries, @@ -116,8 +117,8 @@ return ERR_PTR(-E2BIG); cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap); - cost += n_buckets * (value_size + sizeof(struct stack_map_bucket)); - err = bpf_map_charge_init(&mem, cost); + err = bpf_map_charge_init(&mem, cost + attr->max_entries * + (sizeof(struct stack_map_bucket) + (u64)value_size)); if (err) return ERR_PTR(err); diff -u linux-azure-5.4.0/kernel/bpf/syscall.c linux-azure-5.4.0/kernel/bpf/syscall.c --- linux-azure-5.4.0/kernel/bpf/syscall.c +++ linux-azure-5.4.0/kernel/bpf/syscall.c @@ -39,7 +39,8 @@ static DEFINE_IDR(map_idr); static DEFINE_SPINLOCK(map_idr_lock); -int sysctl_unprivileged_bpf_disabled __read_mostly; +int sysctl_unprivileged_bpf_disabled __read_mostly = + IS_BUILTIN(CONFIG_BPF_UNPRIV_DEFAULT_OFF) ? 2 : 0; static const struct bpf_map_ops * const bpf_map_types[] = { #define BPF_PROG_TYPE(_id, _ops) @@ -2786,7 +2787,9 @@ if (attr->task_fd_query.flags != 0) return -EINVAL; + rcu_read_lock(); task = get_pid_task(find_vpid(pid), PIDTYPE_PID); + rcu_read_unlock(); if (!task) return -ENOENT; diff -u linux-azure-5.4.0/kernel/bpf/verifier.c linux-azure-5.4.0/kernel/bpf/verifier.c --- linux-azure-5.4.0/kernel/bpf/verifier.c +++ linux-azure-5.4.0/kernel/bpf/verifier.c @@ -1920,6 +1920,19 @@ cur = env->cur_state->frame[env->cur_state->curframe]; if (value_regno >= 0) reg = &cur->regs[value_regno]; + if (!env->allow_ptr_leaks) { + bool sanitize = reg && is_spillable_regtype(reg->type); + + for (i = 0; i < size; i++) { + if (state->stack[spi].slot_type[i] == STACK_INVALID) { + sanitize = true; + break; + } + } + + if (sanitize) + env->insn_aux_data[insn_idx].sanitize_stack_spill = true; + } if (reg && size == BPF_REG_SIZE && register_is_const(reg) && !register_is_null(reg) && env->allow_ptr_leaks) { @@ -1942,47 +1955,10 @@ verbose(env, "invalid size of register spill\n"); return -EACCES; } - if (state != cur && reg->type == PTR_TO_STACK) { verbose(env, "cannot spill pointers to stack into stack frame of the caller\n"); return -EINVAL; } - - if (!env->allow_ptr_leaks) { - bool sanitize = false; - - if (state->stack[spi].slot_type[0] == STACK_SPILL && - register_is_const(&state->stack[spi].spilled_ptr)) - sanitize = true; - for (i = 0; i < BPF_REG_SIZE; i++) - if (state->stack[spi].slot_type[i] == STACK_MISC) { - sanitize = true; - break; - } - if (sanitize) { - int *poff = &env->insn_aux_data[insn_idx].sanitize_stack_off; - int soff = (-spi - 1) * BPF_REG_SIZE; - - /* detected reuse of integer stack slot with a pointer - * which means either llvm is reusing stack slot or - * an attacker is trying to exploit CVE-2018-3639 - * (speculative store bypass) - * Have to sanitize that slot with preemptive - * store of zero. - */ - if (*poff && *poff != soff) { - /* disallow programs where single insn stores - * into two different stack slots, since verifier - * cannot sanitize them - */ - verbose(env, - "insn %d cannot access two stack slots fp%d and fp%d", - insn_idx, *poff, soff); - return -EINVAL; - } - *poff = soff; - } - } save_register_state(state, spi, reg); } else { u8 type = STACK_MISC; @@ -2778,6 +2754,41 @@ reg->smax_value = reg->umax_value; } +static bool bpf_map_is_rdonly(const struct bpf_map *map) +{ + return (map->map_flags & BPF_F_RDONLY_PROG) && map->frozen; +} + +static int bpf_map_direct_read(struct bpf_map *map, int off, int size, u64 *val) +{ + void *ptr; + u64 addr; + int err; + + err = map->ops->map_direct_value_addr(map, &addr, off); + if (err) + return err; + ptr = (void *)(long)addr + off; + + switch (size) { + case sizeof(u8): + *val = (u64)*(u8 *)ptr; + break; + case sizeof(u16): + *val = (u64)*(u16 *)ptr; + break; + case sizeof(u32): + *val = (u64)*(u32 *)ptr; + break; + case sizeof(u64): + *val = *(u64 *)ptr; + break; + default: + return -EINVAL; + } + return 0; +} + /* check whether memory at (regno + off) is accessible for t = (read | write) * if t==write, value_regno is a register which value is stored into memory * if t==read, value_regno is a register which will receive the value from memory @@ -2815,9 +2826,27 @@ if (err) return err; err = check_map_access(env, regno, off, size, false); - if (!err && t == BPF_READ && value_regno >= 0) - mark_reg_unknown(env, regs, value_regno); + if (!err && t == BPF_READ && value_regno >= 0) { + struct bpf_map *map = reg->map_ptr; + + /* if map is read-only, track its contents as scalars */ + if (tnum_is_const(reg->var_off) && + bpf_map_is_rdonly(map) && + map->ops->map_direct_value_addr) { + int map_off = off + reg->var_off.value; + u64 val = 0; + + err = bpf_map_direct_read(map, map_off, size, + &val); + if (err) + return err; + regs[value_regno].type = SCALAR_VALUE; + __mark_reg_known(®s[value_regno], val); + } else { + mark_reg_unknown(env, regs, value_regno); + } + } } else if (reg->type == PTR_TO_CTX) { enum bpf_reg_type reg_type = SCALAR_VALUE; @@ -4346,6 +4375,27 @@ bool mask_to_left; }; +static struct bpf_verifier_state * +sanitize_speculative_path(struct bpf_verifier_env *env, + const struct bpf_insn *insn, + u32 next_idx, u32 curr_idx) +{ + struct bpf_verifier_state *branch; + struct bpf_reg_state *regs; + + branch = push_stack(env, next_idx, curr_idx, true); + if (branch && insn) { + regs = branch->frame[branch->curframe]->regs; + if (BPF_SRC(insn->code) == BPF_K) { + mark_reg_unknown(env, regs, insn->dst_reg); + } else if (BPF_SRC(insn->code) == BPF_X) { + mark_reg_unknown(env, regs, insn->dst_reg); + mark_reg_unknown(env, regs, insn->src_reg); + } + } + return branch; +} + static int sanitize_ptr_alu(struct bpf_verifier_env *env, struct bpf_insn *insn, const struct bpf_reg_state *ptr_reg, @@ -4399,6 +4449,12 @@ alu_state |= off_is_imm ? BPF_ALU_IMMEDIATE : 0; alu_state |= ptr_is_dst_reg ? BPF_ALU_SANITIZE_SRC : BPF_ALU_SANITIZE_DST; + + /* Limit pruning on unknown scalars to enable deep search for + * potential masking differences from other program paths. + */ + if (!off_is_imm) + env->explore_alu_limits = true; } err = update_alu_sanitation_state(aux, alu_state, alu_limit); @@ -4429,12 +4485,26 @@ tmp = *dst_reg; *dst_reg = *ptr_reg; } - ret = push_stack(env, env->insn_idx + 1, env->insn_idx, true); + ret = sanitize_speculative_path(env, NULL, env->insn_idx + 1, + env->insn_idx); if (!ptr_is_dst_reg && ret) *dst_reg = tmp; return !ret ? REASON_STACK : 0; } +static void sanitize_mark_insn_seen(struct bpf_verifier_env *env) +{ + struct bpf_verifier_state *vstate = env->cur_state; + + /* If we simulate paths under speculation, we don't update the + * insn as 'seen' such that when we verify unreachable paths in + * the non-speculative domain, sanitize_dead_code() can still + * rewrite/sanitize them. + */ + if (!vstate->speculative) + env->insn_aux_data[env->insn_idx].seen = true; +} + static int sanitize_err(struct bpf_verifier_env *env, const struct bpf_insn *insn, int reason, const struct bpf_reg_state *off_reg, @@ -5013,6 +5083,7 @@ coerce_reg_to_size(dst_reg, 4); } + __update_reg_bounds(dst_reg); __reg_deduce_bounds(dst_reg); __reg_bound_offset(dst_reg); return 0; @@ -5302,7 +5373,7 @@ new_range = dst_reg->off; if (range_right_open) - new_range--; + new_range++; /* Examples for register markings: * @@ -6066,14 +6137,28 @@ if (err) return err; } + if (pred == 1) { - /* only follow the goto, ignore fall-through */ + /* Only follow the goto, ignore fall-through. If needed, push + * the fall-through branch for simulation under speculative + * execution. + */ + if (!env->allow_ptr_leaks && + !sanitize_speculative_path(env, insn, *insn_idx + 1, + *insn_idx)) + return -EFAULT; *insn_idx += insn->off; return 0; } else if (pred == 0) { - /* only follow fall-through branch, since - * that's where the program will go + /* Only follow the fall-through branch, since that's where the + * program will go. If needed, push the goto branch for + * simulation under speculative execution. */ + if (!env->allow_ptr_leaks && + !sanitize_speculative_path(env, insn, + *insn_idx + insn->off + 1, + *insn_idx)) + return -EFAULT; return 0; } @@ -6755,6 +6840,8 @@ nr_linfo = attr->line_info_cnt; if (!nr_linfo) return 0; + if (nr_linfo > INT_MAX / sizeof(struct bpf_line_info)) + return -EINVAL; rec_size = attr->line_info_rec_size; if (rec_size < MIN_BPF_LINEINFO_SIZE || @@ -6898,13 +6985,6 @@ old->smax_value >= cur->smax_value; } -/* Maximum number of register states that can exist at once */ -#define ID_MAP_SIZE (MAX_BPF_REG + MAX_BPF_STACK / BPF_REG_SIZE) -struct idpair { - u32 old; - u32 cur; -}; - /* If in the old state two registers had the same id, then they need to have * the same id in the new state as well. But that id could be different from * the old state, so we need to track the mapping from old to new ids. @@ -6915,11 +6995,11 @@ * So we look through our idmap to see if this old id has been seen before. If * so, we require the new id to match; otherwise, we add the id pair to the map. */ -static bool check_ids(u32 old_id, u32 cur_id, struct idpair *idmap) +static bool check_ids(u32 old_id, u32 cur_id, struct bpf_id_pair *idmap) { unsigned int i; - for (i = 0; i < ID_MAP_SIZE; i++) { + for (i = 0; i < BPF_ID_MAP_SIZE; i++) { if (!idmap[i].old) { /* Reached an empty slot; haven't seen this id before */ idmap[i].old = old_id; @@ -7031,8 +7111,8 @@ } /* Returns true if (rold safe implies rcur safe) */ -static bool regsafe(struct bpf_reg_state *rold, struct bpf_reg_state *rcur, - struct idpair *idmap) +static bool regsafe(struct bpf_verifier_env *env, struct bpf_reg_state *rold, + struct bpf_reg_state *rcur, struct bpf_id_pair *idmap) { bool equal; @@ -7058,6 +7138,8 @@ return false; switch (rold->type) { case SCALAR_VALUE: + if (env->explore_alu_limits) + return false; if (rcur->type == SCALAR_VALUE) { if (!rold->precise && !rcur->precise) return true; @@ -7147,9 +7229,8 @@ return false; } -static bool stacksafe(struct bpf_func_state *old, - struct bpf_func_state *cur, - struct idpair *idmap) +static bool stacksafe(struct bpf_verifier_env *env, struct bpf_func_state *old, + struct bpf_func_state *cur, struct bpf_id_pair *idmap) { int i, spi; @@ -7194,9 +7275,8 @@ continue; if (old->stack[spi].slot_type[0] != STACK_SPILL) continue; - if (!regsafe(&old->stack[spi].spilled_ptr, - &cur->stack[spi].spilled_ptr, - idmap)) + if (!regsafe(env, &old->stack[spi].spilled_ptr, + &cur->stack[spi].spilled_ptr, idmap)) /* when explored and current stack slot are both storing * spilled registers, check that stored pointers types * are the same as well. @@ -7246,32 +7326,24 @@ * whereas register type in current state is meaningful, it means that * the current state will reach 'bpf_exit' instruction safely */ -static bool func_states_equal(struct bpf_func_state *old, +static bool func_states_equal(struct bpf_verifier_env *env, struct bpf_func_state *old, struct bpf_func_state *cur) { - struct idpair *idmap; - bool ret = false; int i; - idmap = kcalloc(ID_MAP_SIZE, sizeof(struct idpair), GFP_KERNEL); - /* If we failed to allocate the idmap, just say it's not safe */ - if (!idmap) - return false; - - for (i = 0; i < MAX_BPF_REG; i++) { - if (!regsafe(&old->regs[i], &cur->regs[i], idmap)) - goto out_free; - } + memset(env->idmap_scratch, 0, sizeof(env->idmap_scratch)); + for (i = 0; i < MAX_BPF_REG; i++) + if (!regsafe(env, &old->regs[i], &cur->regs[i], + env->idmap_scratch)) + return false; - if (!stacksafe(old, cur, idmap)) - goto out_free; + if (!stacksafe(env, old, cur, env->idmap_scratch)) + return false; if (!refsafe(old, cur)) - goto out_free; - ret = true; -out_free: - kfree(idmap); - return ret; + return false; + + return true; } static bool states_equal(struct bpf_verifier_env *env, @@ -7298,7 +7370,7 @@ for (i = 0; i <= old->curframe; i++) { if (old->frame[i]->callsite != cur->frame[i]->callsite) return false; - if (!func_states_equal(old->frame[i], cur->frame[i])) + if (!func_states_equal(env, old->frame[i], cur->frame[i])) return false; } return true; @@ -7790,7 +7862,7 @@ } regs = cur_regs(env); - env->insn_aux_data[env->insn_idx].seen = true; + sanitize_mark_insn_seen(env); prev_insn_idx = env->insn_idx; if (class == BPF_ALU || class == BPF_ALU64) { @@ -8025,7 +8097,7 @@ return err; env->insn_idx++; - env->insn_aux_data[env->insn_idx].seen = true; + sanitize_mark_insn_seen(env); } else { verbose(env, "invalid BPF_LD mode\n"); return -EINVAL; @@ -8299,11 +8371,13 @@ * insni[off, off + cnt). Adjust corresponding insn_aux_data by copying * [0, off) and [off, end) to new locations, so the patched range stays zero */ -static int adjust_insn_aux_data(struct bpf_verifier_env *env, - struct bpf_prog *new_prog, u32 off, u32 cnt) +static void adjust_insn_aux_data(struct bpf_verifier_env *env, + struct bpf_insn_aux_data *new_data, + struct bpf_prog *new_prog, u32 off, u32 cnt) { - struct bpf_insn_aux_data *new_data, *old_data = env->insn_aux_data; + struct bpf_insn_aux_data *old_data = env->insn_aux_data; struct bpf_insn *insn = new_prog->insnsi; + bool old_seen = old_data[off].seen; u32 prog_len; int i; @@ -8314,22 +8388,19 @@ old_data[off].zext_dst = insn_has_def32(env, insn + off + cnt - 1); if (cnt == 1) - return 0; + return; prog_len = new_prog->len; - new_data = vzalloc(array_size(prog_len, - sizeof(struct bpf_insn_aux_data))); - if (!new_data) - return -ENOMEM; + memcpy(new_data, old_data, sizeof(struct bpf_insn_aux_data) * off); memcpy(new_data + off + cnt - 1, old_data + off, sizeof(struct bpf_insn_aux_data) * (prog_len - off - cnt + 1)); for (i = off; i < off + cnt - 1; i++) { - new_data[i].seen = true; + /* Expand insni[off]'s seen count to the patched range. */ + new_data[i].seen = old_seen; new_data[i].zext_dst = insn_has_def32(env, insn + i); } env->insn_aux_data = new_data; vfree(old_data); - return 0; } static void adjust_subprog_starts(struct bpf_verifier_env *env, u32 off, u32 len) @@ -8350,6 +8421,14 @@ const struct bpf_insn *patch, u32 len) { struct bpf_prog *new_prog; + struct bpf_insn_aux_data *new_data = NULL; + + if (len > 1) { + new_data = vzalloc(array_size(env->prog->len + len - 1, + sizeof(struct bpf_insn_aux_data))); + if (!new_data) + return NULL; + } new_prog = bpf_patch_insn_single(env->prog, off, patch, len); if (IS_ERR(new_prog)) { @@ -8357,10 +8436,10 @@ verbose(env, "insn %d cannot be patched due to 16-bit range\n", env->insn_aux_data[off].orig_idx); + vfree(new_data); return NULL; } - if (adjust_insn_aux_data(env, new_prog, off, len)) - return NULL; + adjust_insn_aux_data(env, new_data, new_prog, off, len); adjust_subprog_starts(env, off, len); return new_prog; } @@ -8535,6 +8614,7 @@ if (aux_data[i].seen) continue; memcpy(insn + i, &trap, sizeof(trap)); + aux_data[i].zext_dst = false; } } @@ -8744,35 +8824,33 @@ for (i = 0; i < insn_cnt; i++, insn++) { bpf_convert_ctx_access_t convert_ctx_access; + bool ctx_access; if (insn->code == (BPF_LDX | BPF_MEM | BPF_B) || insn->code == (BPF_LDX | BPF_MEM | BPF_H) || insn->code == (BPF_LDX | BPF_MEM | BPF_W) || - insn->code == (BPF_LDX | BPF_MEM | BPF_DW)) + insn->code == (BPF_LDX | BPF_MEM | BPF_DW)) { type = BPF_READ; - else if (insn->code == (BPF_STX | BPF_MEM | BPF_B) || - insn->code == (BPF_STX | BPF_MEM | BPF_H) || - insn->code == (BPF_STX | BPF_MEM | BPF_W) || - insn->code == (BPF_STX | BPF_MEM | BPF_DW)) + ctx_access = true; + } else if (insn->code == (BPF_STX | BPF_MEM | BPF_B) || + insn->code == (BPF_STX | BPF_MEM | BPF_H) || + insn->code == (BPF_STX | BPF_MEM | BPF_W) || + insn->code == (BPF_STX | BPF_MEM | BPF_DW) || + insn->code == (BPF_ST | BPF_MEM | BPF_B) || + insn->code == (BPF_ST | BPF_MEM | BPF_H) || + insn->code == (BPF_ST | BPF_MEM | BPF_W) || + insn->code == (BPF_ST | BPF_MEM | BPF_DW)) { type = BPF_WRITE; - else + ctx_access = BPF_CLASS(insn->code) == BPF_STX; + } else { continue; + } if (type == BPF_WRITE && - env->insn_aux_data[i + delta].sanitize_stack_off) { + env->insn_aux_data[i + delta].sanitize_stack_spill) { struct bpf_insn patch[] = { - /* Sanitize suspicious stack slot with zero. - * There are no memory dependencies for this store, - * since it's only using frame pointer and immediate - * constant of zero - */ - BPF_ST_MEM(BPF_DW, BPF_REG_FP, - env->insn_aux_data[i + delta].sanitize_stack_off, - 0), - /* the original STX instruction will immediately - * overwrite the same stack slot with appropriate value - */ *insn, + BPF_ST_NOSPEC(), }; cnt = ARRAY_SIZE(patch); @@ -8786,6 +8864,9 @@ continue; } + if (!ctx_access) + continue; + switch (env->insn_aux_data[i + delta].ptr_type) { case PTR_TO_CTX: if (!ops->convert_ctx_access) @@ -8847,6 +8928,10 @@ if (is_narrower_load && size < target_size) { u8 shift = bpf_ctx_narrow_access_offset( off, size, size_default) * 8; + if (shift && cnt + 1 >= ARRAY_SIZE(insn_buf)) { + verbose(env, "bpf verifier narrow ctx load misconfigured\n"); + return -EINVAL; + } if (ctx_field_size <= 4) { if (shift) insn_buf[cnt++] = BPF_ALU32_IMM(BPF_RSH, diff -u linux-azure-5.4.0/kernel/cgroup/cgroup-v1.c linux-azure-5.4.0/kernel/cgroup/cgroup-v1.c --- linux-azure-5.4.0/kernel/cgroup/cgroup-v1.c +++ linux-azure-5.4.0/kernel/cgroup/cgroup-v1.c @@ -15,6 +15,7 @@ #include #include #include +#include #include @@ -62,6 +63,7 @@ int retval = 0; mutex_lock(&cgroup_mutex); + cpus_read_lock(); percpu_down_write(&cgroup_threadgroup_rwsem); for_each_root(root) { struct cgroup *from_cgrp; @@ -78,6 +80,7 @@ break; } percpu_up_write(&cgroup_threadgroup_rwsem); + cpus_read_unlock(); mutex_unlock(&cgroup_mutex); return retval; @@ -398,6 +401,7 @@ * next pid to display, if any */ struct kernfs_open_file *of = s->private; + struct cgroup_file_ctx *ctx = of->priv; struct cgroup *cgrp = seq_css(s)->cgroup; struct cgroup_pidlist *l; enum cgroup_filetype type = seq_cft(s)->private; @@ -407,25 +411,24 @@ mutex_lock(&cgrp->pidlist_mutex); /* - * !NULL @of->priv indicates that this isn't the first start() - * after open. If the matching pidlist is around, we can use that. - * Look for it. Note that @of->priv can't be used directly. It - * could already have been destroyed. + * !NULL @ctx->procs1.pidlist indicates that this isn't the first + * start() after open. If the matching pidlist is around, we can use + * that. Look for it. Note that @ctx->procs1.pidlist can't be used + * directly. It could already have been destroyed. */ - if (of->priv) - of->priv = cgroup_pidlist_find(cgrp, type); + if (ctx->procs1.pidlist) + ctx->procs1.pidlist = cgroup_pidlist_find(cgrp, type); /* * Either this is the first start() after open or the matching * pidlist has been destroyed inbetween. Create a new one. */ - if (!of->priv) { - ret = pidlist_array_load(cgrp, type, - (struct cgroup_pidlist **)&of->priv); + if (!ctx->procs1.pidlist) { + ret = pidlist_array_load(cgrp, type, &ctx->procs1.pidlist); if (ret) return ERR_PTR(ret); } - l = of->priv; + l = ctx->procs1.pidlist; if (pid) { int end = l->length; @@ -453,7 +456,8 @@ static void cgroup_pidlist_stop(struct seq_file *s, void *v) { struct kernfs_open_file *of = s->private; - struct cgroup_pidlist *l = of->priv; + struct cgroup_file_ctx *ctx = of->priv; + struct cgroup_pidlist *l = ctx->procs1.pidlist; if (l) mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, @@ -464,7 +468,8 @@ static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos) { struct kernfs_open_file *of = s->private; - struct cgroup_pidlist *l = of->priv; + struct cgroup_file_ctx *ctx = of->priv; + struct cgroup_pidlist *l = ctx->procs1.pidlist; pid_t *p = v; pid_t *end = l->list + l->length; /* @@ -496,21 +501,23 @@ struct task_struct *task; const struct cred *cred, *tcred; ssize_t ret; + bool locked; cgrp = cgroup_kn_lock_live(of->kn, false); if (!cgrp) return -ENODEV; - task = cgroup_procs_write_start(buf, threadgroup); + task = cgroup_procs_write_start(buf, threadgroup, &locked); ret = PTR_ERR_OR_ZERO(task); if (ret) goto out_unlock; /* - * Even if we're attaching all tasks in the thread group, we only - * need to check permissions on one of them. + * Even if we're attaching all tasks in the thread group, we only need + * to check permissions on one of them. Check permissions using the + * credentials from file open to protect against inherited fd attacks. */ - cred = current_cred(); + cred = of->file->f_cred; tcred = get_task_cred(task); if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) && !uid_eq(cred->euid, tcred->uid) && @@ -523,7 +530,7 @@ ret = cgroup_attach_task(cgrp, task, threadgroup); out_finish: - cgroup_procs_write_finish(task); + cgroup_procs_write_finish(task, locked); out_unlock: cgroup_kn_unlock(of->kn); @@ -549,6 +556,14 @@ BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); + /* + * Release agent gets called with all capabilities, + * require capabilities to set release agent. + */ + if ((of->file->f_cred->user_ns != &init_user_ns) || + !capable(CAP_SYS_ADMIN)) + return -EPERM; + cgrp = cgroup_kn_lock_live(of->kn, false); if (!cgrp) return -ENODEV; @@ -821,6 +836,10 @@ struct cgroup *cgrp = kn->priv; int ret; + /* do not accept '\n' to prevent making /proc//cgroup unparsable */ + if (strchr(new_name_str, '\n')) + return -EINVAL; + if (kernfs_type(kn) != KERNFS_DIR) return -ENOTDIR; if (kn->parent != new_parent) @@ -914,6 +933,8 @@ opt = fs_parse(fc, &cgroup1_fs_parameters, param, &result); if (opt == -ENOPARAM) { if (strcmp(param->key, "source") == 0) { + if (param->type != fs_value_is_string) + return invalf(fc, "Non-string source"); if (fc->source) return invalf(fc, "Multiple sources not supported"); fc->source = param->string; @@ -923,6 +944,9 @@ for_each_subsys(ss, i) { if (strcmp(param->key, ss->legacy_name)) continue; + if (!cgroup_ssid_enabled(i) || cgroup1_ssid_disabled(i)) + return invalf(fc, "Disabled controller '%s'", + param->key); ctx->subsys_mask |= (1 << i); return 0; } @@ -955,6 +979,12 @@ /* Specifying two release agents is forbidden */ if (ctx->release_agent) return cg_invalf(fc, "cgroup1: release_agent respecified"); + /* + * Release agent gets called with all capabilities, + * require capabilities to set release agent. + */ + if ((fc->user_ns != &init_user_ns) || !capable(CAP_SYS_ADMIN)) + return cg_invalf(fc, "cgroup1: Setting release_agent not allowed"); ctx->release_agent = param->string; param->string = NULL; break; @@ -1222,9 +1252,7 @@ ret = cgroup_do_get_tree(fc); if (!ret && percpu_ref_is_dying(&ctx->root->cgrp.self.refcnt)) { - struct super_block *sb = fc->root->d_sb; - dput(fc->root); - deactivate_locked_super(sb); + fc_drop_locked(fc); ret = 1; } diff -u linux-azure-5.4.0/kernel/cgroup/cgroup.c linux-azure-5.4.0/kernel/cgroup/cgroup.c --- linux-azure-5.4.0/kernel/cgroup/cgroup.c +++ linux-azure-5.4.0/kernel/cgroup/cgroup.c @@ -30,6 +30,7 @@ #include "cgroup-internal.h" +#include #include #include #include @@ -743,7 +744,8 @@ .task_iters = LIST_HEAD_INIT(init_css_set.task_iters), .threaded_csets = LIST_HEAD_INIT(init_css_set.threaded_csets), .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links), - .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node), + .mg_src_preload_node = LIST_HEAD_INIT(init_css_set.mg_src_preload_node), + .mg_dst_preload_node = LIST_HEAD_INIT(init_css_set.mg_dst_preload_node), .mg_node = LIST_HEAD_INIT(init_css_set.mg_node), /* @@ -1219,7 +1221,8 @@ INIT_LIST_HEAD(&cset->threaded_csets); INIT_HLIST_NODE(&cset->hlist); INIT_LIST_HEAD(&cset->cgrp_links); - INIT_LIST_HEAD(&cset->mg_preload_node); + INIT_LIST_HEAD(&cset->mg_src_preload_node); + INIT_LIST_HEAD(&cset->mg_dst_preload_node); INIT_LIST_HEAD(&cset->mg_node); /* Copy the set of subsystem state objects generated in @@ -1721,6 +1724,7 @@ struct cgroup *dcgrp = &dst_root->cgrp; struct cgroup_subsys *ss; int ssid, i, ret; + u16 dfl_disable_ss_mask = 0; lockdep_assert_held(&cgroup_mutex); @@ -1737,8 +1741,28 @@ /* can't move between two non-dummy roots either */ if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root) return -EBUSY; + + /* + * Collect ssid's that need to be disabled from default + * hierarchy. + */ + if (ss->root == &cgrp_dfl_root) + dfl_disable_ss_mask |= 1 << ssid; + } while_each_subsys_mask(); + if (dfl_disable_ss_mask) { + struct cgroup *scgrp = &cgrp_dfl_root.cgrp; + + /* + * Controllers from default hierarchy that need to be rebound + * are all disabled together in one go. + */ + cgrp_dfl_root.subsys_mask &= ~dfl_disable_ss_mask; + WARN_ON(cgroup_apply_control(scgrp)); + cgroup_finalize_control(scgrp, 0); + } + do_each_subsys_mask(ss, ssid, ss_mask) { struct cgroup_root *src_root = ss->root; struct cgroup *scgrp = &src_root->cgrp; @@ -1747,10 +1771,12 @@ WARN_ON(!css || cgroup_css(dcgrp, ss)); - /* disable from the source */ - src_root->subsys_mask &= ~(1 << ssid); - WARN_ON(cgroup_apply_control(scgrp)); - cgroup_finalize_control(scgrp, 0); + if (src_root != &cgrp_dfl_root) { + /* disable from the source */ + src_root->subsys_mask &= ~(1 << ssid); + WARN_ON(cgroup_apply_control(scgrp)); + cgroup_finalize_control(scgrp, 0); + } /* rebind */ RCU_INIT_POINTER(scgrp->subsys[ssid], NULL); @@ -2352,6 +2378,47 @@ EXPORT_SYMBOL_GPL(task_cgroup_path); /** + * cgroup_attach_lock - Lock for ->attach() + * @lock_threadgroup: whether to down_write cgroup_threadgroup_rwsem + * + * cgroup migration sometimes needs to stabilize threadgroups against forks and + * exits by write-locking cgroup_threadgroup_rwsem. However, some ->attach() + * implementations (e.g. cpuset), also need to disable CPU hotplug. + * Unfortunately, letting ->attach() operations acquire cpus_read_lock() can + * lead to deadlocks. + * + * Bringing up a CPU may involve creating and destroying tasks which requires + * read-locking threadgroup_rwsem, so threadgroup_rwsem nests inside + * cpus_read_lock(). If we call an ->attach() which acquires the cpus lock while + * write-locking threadgroup_rwsem, the locking order is reversed and we end up + * waiting for an on-going CPU hotplug operation which in turn is waiting for + * the threadgroup_rwsem to be released to create new tasks. For more details: + * + * http://lkml.kernel.org/r/20220711174629.uehfmqegcwn2lqzu@wubuntu + * + * Resolve the situation by always acquiring cpus_read_lock() before optionally + * write-locking cgroup_threadgroup_rwsem. This allows ->attach() to assume that + * CPU hotplug is disabled on entry. + */ +static void cgroup_attach_lock(bool lock_threadgroup) +{ + cpus_read_lock(); + if (lock_threadgroup) + percpu_down_write(&cgroup_threadgroup_rwsem); +} + +/** + * cgroup_attach_unlock - Undo cgroup_attach_lock() + * @lock_threadgroup: whether to up_write cgroup_threadgroup_rwsem + */ +static void cgroup_attach_unlock(bool lock_threadgroup) +{ + if (lock_threadgroup) + percpu_up_write(&cgroup_threadgroup_rwsem); + cpus_read_unlock(); +} + +/** * cgroup_migrate_add_task - add a migration target task to a migration context * @task: target task * @mgctx: target migration context @@ -2606,21 +2673,27 @@ */ void cgroup_migrate_finish(struct cgroup_mgctx *mgctx) { - LIST_HEAD(preloaded); struct css_set *cset, *tmp_cset; lockdep_assert_held(&cgroup_mutex); spin_lock_irq(&css_set_lock); - list_splice_tail_init(&mgctx->preloaded_src_csets, &preloaded); - list_splice_tail_init(&mgctx->preloaded_dst_csets, &preloaded); + list_for_each_entry_safe(cset, tmp_cset, &mgctx->preloaded_src_csets, + mg_src_preload_node) { + cset->mg_src_cgrp = NULL; + cset->mg_dst_cgrp = NULL; + cset->mg_dst_cset = NULL; + list_del_init(&cset->mg_src_preload_node); + put_css_set_locked(cset); + } - list_for_each_entry_safe(cset, tmp_cset, &preloaded, mg_preload_node) { + list_for_each_entry_safe(cset, tmp_cset, &mgctx->preloaded_dst_csets, + mg_dst_preload_node) { cset->mg_src_cgrp = NULL; cset->mg_dst_cgrp = NULL; cset->mg_dst_cset = NULL; - list_del_init(&cset->mg_preload_node); + list_del_init(&cset->mg_dst_preload_node); put_css_set_locked(cset); } @@ -2662,7 +2735,7 @@ src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root); - if (!list_empty(&src_cset->mg_preload_node)) + if (!list_empty(&src_cset->mg_src_preload_node)) return; WARN_ON(src_cset->mg_src_cgrp); @@ -2673,7 +2746,7 @@ src_cset->mg_src_cgrp = src_cgrp; src_cset->mg_dst_cgrp = dst_cgrp; get_css_set(src_cset); - list_add_tail(&src_cset->mg_preload_node, &mgctx->preloaded_src_csets); + list_add_tail(&src_cset->mg_src_preload_node, &mgctx->preloaded_src_csets); } /** @@ -2698,7 +2771,7 @@ /* look up the dst cset for each src cset and link it to src */ list_for_each_entry_safe(src_cset, tmp_cset, &mgctx->preloaded_src_csets, - mg_preload_node) { + mg_src_preload_node) { struct css_set *dst_cset; struct cgroup_subsys *ss; int ssid; @@ -2717,7 +2790,7 @@ if (src_cset == dst_cset) { src_cset->mg_src_cgrp = NULL; src_cset->mg_dst_cgrp = NULL; - list_del_init(&src_cset->mg_preload_node); + list_del_init(&src_cset->mg_src_preload_node); put_css_set(src_cset); put_css_set(dst_cset); continue; @@ -2725,8 +2798,8 @@ src_cset->mg_dst_cset = dst_cset; - if (list_empty(&dst_cset->mg_preload_node)) - list_add_tail(&dst_cset->mg_preload_node, + if (list_empty(&dst_cset->mg_dst_preload_node)) + list_add_tail(&dst_cset->mg_dst_preload_node, &mgctx->preloaded_dst_csets); else put_css_set(dst_cset); @@ -2825,8 +2898,8 @@ return ret; } -struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup) - __acquires(&cgroup_threadgroup_rwsem) +struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup, + bool *threadgroup_locked) { struct task_struct *tsk; pid_t pid; @@ -2834,7 +2907,17 @@ if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0) return ERR_PTR(-EINVAL); - percpu_down_write(&cgroup_threadgroup_rwsem); + /* + * If we migrate a single thread, we don't care about threadgroup + * stability. If the thread is `current`, it won't exit(2) under our + * hands or change PID through exec(2). We exclude + * cgroup_update_dfl_csses and other cgroup_{proc,thread}s_write + * callers by cgroup_mutex. + * Therefore, we can skip the global lock. + */ + lockdep_assert_held(&cgroup_mutex); + *threadgroup_locked = pid || threadgroup; + cgroup_attach_lock(*threadgroup_locked); rcu_read_lock(); if (pid) { @@ -2865,14 +2948,14 @@ goto out_unlock_rcu; out_unlock_threadgroup: - percpu_up_write(&cgroup_threadgroup_rwsem); + cgroup_attach_unlock(*threadgroup_locked); + *threadgroup_locked = false; out_unlock_rcu: rcu_read_unlock(); return tsk; } -void cgroup_procs_write_finish(struct task_struct *task) - __releases(&cgroup_threadgroup_rwsem) +void cgroup_procs_write_finish(struct task_struct *task, bool threadgroup_locked) { struct cgroup_subsys *ss; int ssid; @@ -2880,7 +2963,8 @@ /* release reference from cgroup_procs_write_start() */ put_task_struct(task); - percpu_up_write(&cgroup_threadgroup_rwsem); + cgroup_attach_unlock(threadgroup_locked); + for_each_subsys(ss, ssid) if (ss->post_attach) ss->post_attach(); @@ -2935,12 +3019,11 @@ struct cgroup_subsys_state *d_css; struct cgroup *dsct; struct css_set *src_cset; + bool has_tasks; int ret; lockdep_assert_held(&cgroup_mutex); - percpu_down_write(&cgroup_threadgroup_rwsem); - /* look up all csses currently attached to @cgrp's subtree */ spin_lock_irq(&css_set_lock); cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) { @@ -2951,13 +3034,23 @@ } spin_unlock_irq(&css_set_lock); + /* + * We need to write-lock threadgroup_rwsem while migrating tasks. + * However, if there are no source csets for @cgrp, changing its + * controllers isn't gonna produce any task migrations and the + * write-locking can be skipped safely. + */ + has_tasks = !list_empty(&mgctx.preloaded_src_csets); + cgroup_attach_lock(has_tasks); + /* NULL dst indicates self on default hierarchy */ ret = cgroup_migrate_prepare_dst(&mgctx); if (ret) goto out_finish; spin_lock_irq(&css_set_lock); - list_for_each_entry(src_cset, &mgctx.preloaded_src_csets, mg_preload_node) { + list_for_each_entry(src_cset, &mgctx.preloaded_src_csets, + mg_src_preload_node) { struct task_struct *task, *ntask; /* all tasks in src_csets need to be migrated */ @@ -2969,7 +3062,7 @@ ret = cgroup_migrate_execute(&mgctx); out_finish: cgroup_migrate_finish(&mgctx); - percpu_up_write(&cgroup_threadgroup_rwsem); + cgroup_attach_unlock(has_tasks); return ret; } @@ -3625,6 +3718,7 @@ static ssize_t cgroup_pressure_write(struct kernfs_open_file *of, char *buf, size_t nbytes, enum psi_res res) { + struct cgroup_file_ctx *ctx = of->priv; struct psi_trigger *new; struct cgroup *cgrp; struct psi_group *psi; @@ -3636,6 +3730,12 @@ cgroup_get(cgrp); cgroup_kn_unlock(of->kn); + /* Allow only one trigger per file descriptor */ + if (ctx->psi.trigger) { + cgroup_put(cgrp); + return -EBUSY; + } + psi = cgroup_ino(cgrp) == 1 ? &psi_system : &cgrp->psi; new = psi_trigger_create(psi, buf, nbytes, res); if (IS_ERR(new)) { @@ -3643,8 +3743,7 @@ return PTR_ERR(new); } - psi_trigger_replace(&of->priv, new); - + smp_store_release(&ctx->psi.trigger, new); cgroup_put(cgrp); return nbytes; @@ -3674,12 +3773,15 @@ static __poll_t cgroup_pressure_poll(struct kernfs_open_file *of, poll_table *pt) { - return psi_trigger_poll(&of->priv, of->file, pt); + struct cgroup_file_ctx *ctx = of->priv; + return psi_trigger_poll(&ctx->psi.trigger, of->file, pt); } static void cgroup_pressure_release(struct kernfs_open_file *of) { - psi_trigger_replace(&of->priv, NULL); + struct cgroup_file_ctx *ctx = of->priv; + + psi_trigger_destroy(ctx->psi.trigger); } #endif /* CONFIG_PSI */ @@ -3720,24 +3822,43 @@ static int cgroup_file_open(struct kernfs_open_file *of) { struct cftype *cft = of->kn->priv; + struct cgroup_file_ctx *ctx; + int ret; - if (cft->open) - return cft->open(of); - return 0; + ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); + if (!ctx) + return -ENOMEM; + + ctx->ns = current->nsproxy->cgroup_ns; + get_cgroup_ns(ctx->ns); + of->priv = ctx; + + if (!cft->open) + return 0; + + ret = cft->open(of); + if (ret) { + put_cgroup_ns(ctx->ns); + kfree(ctx); + } + return ret; } static void cgroup_file_release(struct kernfs_open_file *of) { struct cftype *cft = of->kn->priv; + struct cgroup_file_ctx *ctx = of->priv; if (cft->release) cft->release(of); + put_cgroup_ns(ctx->ns); + kfree(ctx); } static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf, size_t nbytes, loff_t off) { - struct cgroup_namespace *ns = current->nsproxy->cgroup_ns; + struct cgroup_file_ctx *ctx = of->priv; struct cgroup *cgrp = of->kn->parent->priv; struct cftype *cft = of->kn->priv; struct cgroup_subsys_state *css; @@ -3751,7 +3872,7 @@ */ if ((cgrp->root->flags & CGRP_ROOT_NS_DELEGATE) && !(cft->flags & CFTYPE_NS_DELEGATABLE) && - ns != &init_cgroup_ns && ns->root_cset->dfl_cgrp == cgrp) + ctx->ns != &init_cgroup_ns && ctx->ns->root_cset->dfl_cgrp == cgrp) return -EPERM; if (cft->write) @@ -4659,21 +4780,21 @@ static void cgroup_procs_release(struct kernfs_open_file *of) { - if (of->priv) { - css_task_iter_end(of->priv); - kfree(of->priv); - } + struct cgroup_file_ctx *ctx = of->priv; + + if (ctx->procs.started) + css_task_iter_end(&ctx->procs.iter); } static void *cgroup_procs_next(struct seq_file *s, void *v, loff_t *pos) { struct kernfs_open_file *of = s->private; - struct css_task_iter *it = of->priv; + struct cgroup_file_ctx *ctx = of->priv; if (pos) (*pos)++; - return css_task_iter_next(it); + return css_task_iter_next(&ctx->procs.iter); } static void *__cgroup_procs_start(struct seq_file *s, loff_t *pos, @@ -4681,21 +4802,18 @@ { struct kernfs_open_file *of = s->private; struct cgroup *cgrp = seq_css(s)->cgroup; - struct css_task_iter *it = of->priv; + struct cgroup_file_ctx *ctx = of->priv; + struct css_task_iter *it = &ctx->procs.iter; /* * When a seq_file is seeked, it's always traversed sequentially * from position 0, so we can simply keep iterating on !0 *pos. */ - if (!it) { + if (!ctx->procs.started) { if (WARN_ON_ONCE((*pos))) return ERR_PTR(-EINVAL); - - it = kzalloc(sizeof(*it), GFP_KERNEL); - if (!it) - return ERR_PTR(-ENOMEM); - of->priv = it; css_task_iter_start(&cgrp->self, iter_flags, it); + ctx->procs.started = true; } else if (!(*pos)) { css_task_iter_end(it); css_task_iter_start(&cgrp->self, iter_flags, it); @@ -4730,9 +4848,9 @@ static int cgroup_procs_write_permission(struct cgroup *src_cgrp, struct cgroup *dst_cgrp, - struct super_block *sb) + struct super_block *sb, + struct cgroup_namespace *ns) { - struct cgroup_namespace *ns = current->nsproxy->cgroup_ns; struct cgroup *com_cgrp = src_cgrp; struct inode *inode; int ret; @@ -4768,15 +4886,18 @@ static ssize_t cgroup_procs_write(struct kernfs_open_file *of, char *buf, size_t nbytes, loff_t off) { + struct cgroup_file_ctx *ctx = of->priv; struct cgroup *src_cgrp, *dst_cgrp; struct task_struct *task; + const struct cred *saved_cred; ssize_t ret; + bool threadgroup_locked; dst_cgrp = cgroup_kn_lock_live(of->kn, false); if (!dst_cgrp) return -ENODEV; - task = cgroup_procs_write_start(buf, true); + task = cgroup_procs_write_start(buf, true, &threadgroup_locked); ret = PTR_ERR_OR_ZERO(task); if (ret) goto out_unlock; @@ -4786,15 +4907,23 @@ src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root); spin_unlock_irq(&css_set_lock); + /* + * Process and thread migrations follow same delegation rule. Check + * permissions using the credentials from file open to protect against + * inherited fd attacks. + */ + saved_cred = override_creds(of->file->f_cred); ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp, - of->file->f_path.dentry->d_sb); + of->file->f_path.dentry->d_sb, + ctx->ns); + revert_creds(saved_cred); if (ret) goto out_finish; ret = cgroup_attach_task(dst_cgrp, task, true); out_finish: - cgroup_procs_write_finish(task); + cgroup_procs_write_finish(task, threadgroup_locked); out_unlock: cgroup_kn_unlock(of->kn); @@ -4809,9 +4938,12 @@ static ssize_t cgroup_threads_write(struct kernfs_open_file *of, char *buf, size_t nbytes, loff_t off) { + struct cgroup_file_ctx *ctx = of->priv; struct cgroup *src_cgrp, *dst_cgrp; struct task_struct *task; + const struct cred *saved_cred; ssize_t ret; + bool locked; buf = strstrip(buf); @@ -4819,7 +4951,7 @@ if (!dst_cgrp) return -ENODEV; - task = cgroup_procs_write_start(buf, false); + task = cgroup_procs_write_start(buf, false, &locked); ret = PTR_ERR_OR_ZERO(task); if (ret) goto out_unlock; @@ -4829,9 +4961,16 @@ src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root); spin_unlock_irq(&css_set_lock); - /* thread migrations follow the cgroup.procs delegation rule */ + /* + * Process and thread migrations follow same delegation rule. Check + * permissions using the credentials from file open to protect against + * inherited fd attacks. + */ + saved_cred = override_creds(of->file->f_cred); ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp, - of->file->f_path.dentry->d_sb); + of->file->f_path.dentry->d_sb, + ctx->ns); + revert_creds(saved_cred); if (ret) goto out_finish; @@ -4843,7 +4982,7 @@ ret = cgroup_attach_task(dst_cgrp, task, false); out_finish: - cgroup_procs_write_finish(task); + cgroup_procs_write_finish(task, locked); out_unlock: cgroup_kn_unlock(of->kn); @@ -5721,8 +5860,6 @@ return 0; } -static u16 cgroup_disable_mask __initdata; - /** * cgroup_init - cgroup initialization * @@ -5781,12 +5918,8 @@ * disabled flag and cftype registration needs kmalloc, * both of which aren't available during early_init. */ - if (cgroup_disable_mask & (1 << ssid)) { - static_branch_disable(cgroup_subsys_enabled_key[ssid]); - printk(KERN_INFO "Disabling %s control group subsystem\n", - ss->name); + if (!cgroup_ssid_enabled(ssid)) continue; - } if (cgroup1_ssid_disabled(ssid)) printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n", @@ -6173,7 +6306,10 @@ if (strcmp(token, ss->name) && strcmp(token, ss->legacy_name)) continue; - cgroup_disable_mask |= 1 << i; + + static_branch_disable(cgroup_subsys_enabled_key[i]); + pr_info("Disabling %s control group subsystem\n", + ss->name); } } return 1; diff -u linux-azure-5.4.0/kernel/cgroup/cpuset.c linux-azure-5.4.0/kernel/cgroup/cpuset.c --- linux-azure-5.4.0/kernel/cgroup/cpuset.c +++ linux-azure-5.4.0/kernel/cgroup/cpuset.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -1057,10 +1058,18 @@ { struct css_task_iter it; struct task_struct *task; + bool top_cs = cs == &top_cpuset; css_task_iter_start(&cs->css, 0, &it); - while ((task = css_task_iter_next(&it))) + while ((task = css_task_iter_next(&it))) { + /* + * Percpu kthreads in top_cpuset are ignored + */ + if (top_cs && (task->flags & PF_KTHREAD) && + kthread_is_per_cpu(task)) + continue; set_cpus_allowed_ptr(task, cs->effective_cpus); + } css_task_iter_end(&it); } @@ -1473,10 +1482,15 @@ struct cpuset *sibling; struct cgroup_subsys_state *pos_css; + percpu_rwsem_assert_held(&cpuset_rwsem); + /* * Check all its siblings and call update_cpumasks_hier() * if their use_parent_ecpus flag is set in order for them * to use the right effective_cpus value. + * + * The update_cpumasks_hier() function may sleep. So we have to + * release the RCU read lock before calling it. */ rcu_read_lock(); cpuset_for_each_child(sibling, pos_css, parent) { @@ -1484,8 +1498,13 @@ continue; if (!sibling->use_parent_ecpus) continue; + if (!css_tryget_online(&sibling->css)) + continue; + rcu_read_unlock(); update_cpumasks_hier(sibling, tmp); + rcu_read_lock(); + css_put(&sibling->css); } rcu_read_unlock(); } @@ -1558,8 +1577,7 @@ * Make sure that subparts_cpus is a subset of cpus_allowed. */ if (cs->nr_subparts_cpus) { - cpumask_andnot(cs->subparts_cpus, cs->subparts_cpus, - cs->cpus_allowed); + cpumask_and(cs->subparts_cpus, cs->subparts_cpus, cs->cpus_allowed); cs->nr_subparts_cpus = cpumask_weight(cs->subparts_cpus); } spin_unlock_irq(&callback_lock); @@ -2005,12 +2023,7 @@ update_flag(CS_CPU_EXCLUSIVE, cs, 0); } - /* - * Update cpumask of parent's tasks except when it is the top - * cpuset as some system daemons cannot be mapped to other CPUs. - */ - if (parent != &top_cpuset) - update_tasks_cpumask(parent); + update_tasks_cpumask(parent); if (parent->child_ecpus_count) update_sibling_cpumasks(parent, cs, &tmp); @@ -2195,6 +2208,7 @@ cgroup_taskset_first(tset, &css); cs = css_cs(css); + lockdep_assert_cpus_held(); /* see cgroup_attach_lock() */ percpu_down_write(&cpuset_rwsem); /* prepare for attach */ @@ -3166,6 +3180,13 @@ cpus_updated = !cpumask_equal(top_cpuset.effective_cpus, &new_cpus); mems_updated = !nodes_equal(top_cpuset.effective_mems, new_mems); + /* + * In the rare case that hotplug removes all the cpus in subparts_cpus, + * we assumed that cpus are updated. + */ + if (!cpus_updated && top_cpuset.nr_subparts_cpus) + cpus_updated = true; + /* synchronize cpus_allowed to cpu_active_mask */ if (cpus_updated) { spin_lock_irq(&callback_lock); @@ -3271,8 +3292,11 @@ */ void __init cpuset_init_smp(void) { - cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask); - top_cpuset.mems_allowed = node_states[N_MEMORY]; + /* + * cpus_allowd/mems_allowed set to v2 values in the initial + * cpuset_bind() call will be reset to v1 values in another + * cpuset_bind() call when v1 cpuset is mounted. + */ top_cpuset.old_mems_allowed = top_cpuset.mems_allowed; cpumask_copy(top_cpuset.effective_cpus, cpu_active_mask); diff -u linux-azure-5.4.0/kernel/cpu.c linux-azure-5.4.0/kernel/cpu.c --- linux-azure-5.4.0/kernel/cpu.c +++ linux-azure-5.4.0/kernel/cpu.c @@ -32,6 +32,8 @@ #include #include #include +#include +#include #include #define CREATE_TRACE_POINTS @@ -814,6 +816,52 @@ kthread_unpark(this_cpu_read(cpuhp_state.thread)); } +/* + * + * Serialize hotplug trainwrecks outside of the cpu_hotplug_lock + * protected region. + * + * The operation is still serialized against concurrent CPU hotplug via + * cpu_add_remove_lock, i.e. CPU map protection. But it is _not_ + * serialized against other hotplug related activity like adding or + * removing of state callbacks and state instances, which invoke either the + * startup or the teardown callback of the affected state. + * + * This is required for subsystems which are unfixable vs. CPU hotplug and + * evade lock inversion problems by scheduling work which has to be + * completed _before_ cpu_up()/_cpu_down() returns. + * + * Don't even think about adding anything to this for any new code or even + * drivers. It's only purpose is to keep existing lock order trainwrecks + * working. + * + * For cpu_down() there might be valid reasons to finish cleanups which are + * not required to be done under cpu_hotplug_lock, but that's a different + * story and would be not invoked via this. + */ +static void cpu_up_down_serialize_trainwrecks(bool tasks_frozen) +{ + /* + * cpusets delegate hotplug operations to a worker to "solve" the + * lock order problems. Wait for the worker, but only if tasks are + * _not_ frozen (suspend, hibernate) as that would wait forever. + * + * The wait is required because otherwise the hotplug operation + * returns with inconsistent state, which could even be observed in + * user space when a new CPU is brought up. The CPU plug uevent + * would be delivered and user space reacting on it would fail to + * move tasks to the newly plugged CPU up to the point where the + * work has finished because up to that point the newly plugged CPU + * is not assignable in cpusets/cgroups. On unplug that's not + * necessarily a visible issue, but it is still inconsistent state, + * which is the real problem which needs to be "fixed". This can't + * prevent the transient state between scheduling the work and + * returning from waiting for it. + */ + if (!tasks_frozen) + cpuset_wait_for_hotplug(); +} + #ifdef CONFIG_HOTPLUG_CPU #ifndef arch_clear_mm_cpumask_cpu #define arch_clear_mm_cpumask_cpu(cpu, mm) cpumask_clear_cpu(cpu, mm_cpumask(mm)) @@ -1051,6 +1099,7 @@ */ lockup_detector_cleanup(); arch_smt_update(); + cpu_up_down_serialize_trainwrecks(tasks_frozen); return ret; } @@ -1186,6 +1235,7 @@ out: cpus_write_unlock(); arch_smt_update(); + cpu_up_down_serialize_trainwrecks(tasks_frozen); return ret; } @@ -1410,6 +1460,11 @@ .startup.single = perf_event_init_cpu, .teardown.single = perf_event_exit_cpu, }, + [CPUHP_RANDOM_PREPARE] = { + .name = "random:prepare", + .startup.single = random_prepare_cpu, + .teardown.single = NULL, + }, [CPUHP_WORKQUEUE_PREP] = { .name = "workqueue:prepare", .startup.single = workqueue_prepare_cpu, @@ -1526,6 +1581,11 @@ .startup.single = workqueue_online_cpu, .teardown.single = workqueue_offline_cpu, }, + [CPUHP_AP_RANDOM_ONLINE] = { + .name = "random:online", + .startup.single = random_online_cpu, + .teardown.single = NULL, + }, [CPUHP_AP_RCUTREE_ONLINE] = { .name = "RCU/tree:online", .startup.single = rcutree_online_cpu, diff -u linux-azure-5.4.0/kernel/debug/debug_core.c linux-azure-5.4.0/kernel/debug/debug_core.c --- linux-azure-5.4.0/kernel/debug/debug_core.c +++ linux-azure-5.4.0/kernel/debug/debug_core.c @@ -56,6 +56,7 @@ #include #include #include +#include #include #include @@ -678,6 +679,8 @@ while (1) { cpu_master_loop: + if (security_locked_down(LOCKDOWN_KGDB)) + break; if (dbg_kdb_mode) { kgdb_connected = 1; error = kdb_stub(ks); diff -u linux-azure-5.4.0/kernel/dma/debug.c linux-azure-5.4.0/kernel/dma/debug.c --- linux-azure-5.4.0/kernel/dma/debug.c +++ linux-azure-5.4.0/kernel/dma/debug.c @@ -450,7 +450,7 @@ * At any time debug_dma_assert_idle() can be called to trigger a * warning if any cachelines in the given page are in the active set. */ -static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT); +static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC); static DEFINE_SPINLOCK(radix_lock); #define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1) #define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT) @@ -616,7 +616,7 @@ rc = active_cacheline_insert(entry); if (rc == -ENOMEM) { - pr_err("cacheline tracking ENOMEM, dma-debug disabled\n"); + pr_err_once("cacheline tracking ENOMEM, dma-debug disabled\n"); global_disable = true; } @@ -846,7 +846,7 @@ } DEFINE_SHOW_ATTRIBUTE(dump); -static void dma_debug_fs_init(void) +static int __init dma_debug_fs_init(void) { struct dentry *dentry = debugfs_create_dir("dma-api", NULL); @@ -859,7 +859,10 @@ debugfs_create_u32("nr_total_entries", 0444, dentry, &nr_total_entries); debugfs_create_file("driver_filter", 0644, dentry, NULL, &filter_fops); debugfs_create_file("dump", 0444, dentry, NULL, &dump_fops); + + return 0; } +core_initcall_sync(dma_debug_fs_init); static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry) { @@ -944,8 +947,6 @@ spin_lock_init(&dma_entry_hash[i].lock); } - dma_debug_fs_init(); - nr_pages = DIV_ROUND_UP(nr_prealloc_entries, DMA_DEBUG_DYNAMIC_ENTRIES); for (i = 0; i < nr_pages; ++i) dma_debug_create_entries(GFP_KERNEL); @@ -979,7 +980,7 @@ global_disable = true; } - return 0; + return 1; } static __init int dma_debug_entries_cmdline(char *str) @@ -988,7 +989,7 @@ return -EINVAL; if (!get_option(&str, &nr_prealloc_entries)) nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES; - return 0; + return 1; } __setup("dma_debug=", dma_debug_cmdline); @@ -1353,6 +1354,12 @@ if (unlikely(dma_debug_disabled())) return; + for_each_sg(sg, s, nents, i) { + check_for_stack(dev, sg_page(s), s->offset); + if (!PageHighMem(sg_page(s))) + check_for_illegal_area(dev, sg_virt(s), s->length); + } + for_each_sg(sg, s, mapped_ents, i) { entry = dma_entry_alloc(); if (!entry) @@ -1368,12 +1375,6 @@ entry->sg_call_ents = nents; entry->sg_mapped_ents = mapped_ents; - check_for_stack(dev, sg_page(s), s->offset); - - if (!PageHighMem(sg_page(s))) { - check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s)); - } - check_sg_segment(dev, s); add_dma_entry(entry); diff -u linux-azure-5.4.0/kernel/dma/direct.c linux-azure-5.4.0/kernel/dma/direct.c --- linux-azure-5.4.0/kernel/dma/direct.c +++ linux-azure-5.4.0/kernel/dma/direct.c @@ -306,7 +306,8 @@ dma_direct_sync_single_for_cpu(dev, addr, size, dir); if (unlikely(is_swiotlb_buffer(phys))) - swiotlb_tbl_unmap_single(dev, phys, size, size, dir, attrs); + swiotlb_tbl_unmap_single(dev, phys, size, size, dir, + attrs | DMA_ATTR_SKIP_CPU_SYNC); } EXPORT_SYMBOL(dma_direct_unmap_page); diff -u linux-azure-5.4.0/kernel/dma/swiotlb.c linux-azure-5.4.0/kernel/dma/swiotlb.c --- linux-azure-5.4.0/kernel/dma/swiotlb.c +++ linux-azure-5.4.0/kernel/dma/swiotlb.c @@ -571,10 +571,14 @@ */ for (i = 0; i < nslots; i++) io_tlb_orig_addr[index+i] = orig_addr + (i << IO_TLB_SHIFT); - if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC) && - (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)) - swiotlb_bounce(orig_addr, tlb_addr, mapping_size, DMA_TO_DEVICE); - + /* + * When dir == DMA_FROM_DEVICE we could omit the copy from the orig + * to the tlb buffer, if we knew for sure the device will + * overwirte the entire current content. But we don't. Thus + * unconditional bounce may prevent leaking swiotlb content (i.e. + * kernel memory) to user-space. + */ + swiotlb_bounce(orig_addr, tlb_addr, mapping_size, DMA_TO_DEVICE); return tlb_addr; } diff -u linux-azure-5.4.0/kernel/events/core.c linux-azure-5.4.0/kernel/events/core.c --- linux-azure-5.4.0/kernel/events/core.c +++ linux-azure-5.4.0/kernel/events/core.c @@ -804,7 +804,7 @@ */ static void perf_cgroup_switch(struct task_struct *task, int mode) { - struct perf_cpu_context *cpuctx; + struct perf_cpu_context *cpuctx, *tmp; struct list_head *list; unsigned long flags; @@ -815,7 +815,7 @@ local_irq_save(flags); list = this_cpu_ptr(&cgrp_cpuctx_list); - list_for_each_entry(cpuctx, list, cgrp_cpuctx_entry) { + list_for_each_entry_safe(cpuctx, tmp, list, cgrp_cpuctx_entry) { WARN_ON_ONCE(cpuctx->ctx.nr_cgroups == 0); perf_ctx_lock(cpuctx, cpuctx->task_ctx); @@ -4254,7 +4254,9 @@ cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu); ctx = &cpuctx->ctx; get_ctx(ctx); + raw_spin_lock_irqsave(&ctx->lock, flags); ++ctx->pin_count; + raw_spin_unlock_irqrestore(&ctx->lock, flags); return ctx; } @@ -5822,10 +5824,10 @@ if (!atomic_inc_not_zero(&event->rb->mmap_count)) { /* - * Raced against perf_mmap_close() through - * perf_event_set_output(). Try again, hope for better - * luck. + * Raced against perf_mmap_close(); remove the + * event and try again. */ + ring_buffer_attach(event, NULL); mutex_unlock(&event->mmap_mutex); goto again; } @@ -6048,18 +6050,25 @@ * Later on, we might change it to a list if there is * another virtualization implementation supporting the callbacks. */ -struct perf_guest_info_callbacks *perf_guest_cbs; +struct perf_guest_info_callbacks __rcu *perf_guest_cbs; int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) { - perf_guest_cbs = cbs; + if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs))) + return -EBUSY; + + rcu_assign_pointer(perf_guest_cbs, cbs); return 0; } EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks); int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs) { - perf_guest_cbs = NULL; + if (WARN_ON_ONCE(rcu_access_pointer(perf_guest_cbs) != cbs)) + return -EINVAL; + + rcu_assign_pointer(perf_guest_cbs, NULL); + synchronize_rcu(); return 0; } EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks); @@ -6539,7 +6548,6 @@ static u64 perf_virt_to_phys(u64 virt) { u64 phys_addr = 0; - struct page *p = NULL; if (!virt) return 0; @@ -6558,14 +6566,15 @@ * If failed, leave phys_addr as 0. */ if (current->mm != NULL) { + struct page *p; + pagefault_disable(); - if (__get_user_pages_fast(virt, 1, 0, &p) == 1) + if (__get_user_pages_fast(virt, 1, 0, &p) == 1) { phys_addr = page_to_phys(p) + virt % PAGE_SIZE; + put_page(p); + } pagefault_enable(); } - - if (p) - put_page(p); } return phys_addr; @@ -9262,7 +9271,7 @@ return; if (ifh->nr_file_filters) { - mm = get_task_mm(event->ctx->task); + mm = get_task_mm(task); if (!mm) goto restart; @@ -9486,8 +9495,11 @@ } /* ready to consume more filters */ + kfree(filename); + filename = NULL; state = IF_STATE_ACTION; filter = NULL; + kernel = 0; } } @@ -10756,14 +10768,25 @@ goto out; } +static void mutex_lock_double(struct mutex *a, struct mutex *b) +{ + if (b < a) + swap(a, b); + + mutex_lock(a); + mutex_lock_nested(b, SINGLE_DEPTH_NESTING); +} + static int perf_event_set_output(struct perf_event *event, struct perf_event *output_event) { struct ring_buffer *rb = NULL; int ret = -EINVAL; - if (!output_event) + if (!output_event) { + mutex_lock(&event->mmap_mutex); goto set; + } /* don't allow circular references */ if (event == output_event) @@ -10801,8 +10824,15 @@ event->pmu != output_event->pmu) goto out; + /* + * Hold both mmap_mutex to serialize against perf_mmap_close(). Since + * output_event is already on rb->event_list, and the list iteration + * restarts after every removal, it is guaranteed this new event is + * observed *OR* if output_event is already removed, it's guaranteed we + * observe !rb->mmap_count. + */ + mutex_lock_double(&event->mmap_mutex, &output_event->mmap_mutex); set: - mutex_lock(&event->mmap_mutex); /* Can't redirect output if we've got an active mmap() */ if (atomic_read(&event->mmap_count)) goto unlock; @@ -10812,6 +10842,12 @@ rb = ring_buffer_get(output_event); if (!rb) goto unlock; + + /* did we race against perf_mmap_close() */ + if (!atomic_read(&rb->mmap_count)) { + ring_buffer_put(rb); + goto unlock; + } } ring_buffer_attach(event, rb); @@ -10819,20 +10855,13 @@ ret = 0; unlock: mutex_unlock(&event->mmap_mutex); + if (output_event) + mutex_unlock(&output_event->mmap_mutex); out: return ret; } -static void mutex_lock_double(struct mutex *a, struct mutex *b) -{ - if (b < a) - swap(a, b); - - mutex_lock(a); - mutex_lock_nested(b, SINGLE_DEPTH_NESTING); -} - static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id) { bool nmi_safe = false; @@ -11110,6 +11139,9 @@ * Do not allow to attach to a group in a different task * or CPU context. If we're moving SW events, we'll fix * this up later, so allow that. + * + * Racy, not holding group_leader->ctx->mutex, see comment with + * perf_event_ctx_lock(). */ if (!move_group && group_leader->ctx != ctx) goto err_context; @@ -11177,6 +11209,7 @@ } else { perf_event_ctx_unlock(group_leader, gctx); move_group = 0; + goto not_move_group; } } @@ -11193,7 +11226,17 @@ } } else { mutex_lock(&ctx->mutex); + + /* + * Now that we hold ctx->lock, (re)validate group_leader->ctx == ctx, + * see the group_leader && !move_group test earlier. + */ + if (group_leader && group_leader->ctx != ctx) { + err = -EINVAL; + goto err_locked; + } } +not_move_group: if (ctx->task == TASK_TOMBSTONE) { err = -ESRCH; diff -u linux-azure-5.4.0/kernel/fork.c linux-azure-5.4.0/kernel/fork.c --- linux-azure-5.4.0/kernel/fork.c +++ linux-azure-5.4.0/kernel/fork.c @@ -1033,6 +1033,7 @@ mm->pmd_huge_pte = NULL; #endif mm_init_uprobes_state(mm); + hugetlb_count_init(mm); if (current->mm) { mm->flags = current->mm->flags & MMF_INIT_MASK; @@ -2191,10 +2192,6 @@ goto bad_fork_cancel_cgroup; } - /* past the last point of failure */ - if (pidfile) - fd_install(pidfd, pidfile); - init_task_pid_links(p); if (likely(p->pid)) { ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace); @@ -2243,6 +2240,9 @@ syscall_tracepoint_update(p); write_unlock_irq(&tasklist_lock); + if (pidfile) + fd_install(pidfd, pidfile); + proc_fork_connector(p); cgroup_post_fork(p); cgroup_threadgroup_change_end(current); diff -u linux-azure-5.4.0/kernel/futex.c linux-azure-5.4.0/kernel/futex.c --- linux-azure-5.4.0/kernel/futex.c +++ linux-azure-5.4.0/kernel/futex.c @@ -737,7 +737,7 @@ key->both.offset |= FUT_OFF_INODE; /* inode-based key */ key->shared.i_seq = get_inode_sequence_number(inode); - key->shared.pgoff = basepage_index(tail); + key->shared.pgoff = page_to_pgoff(tail); rcu_read_unlock(); } diff -u linux-azure-5.4.0/kernel/gcov/gcc_4_7.c linux-azure-5.4.0/kernel/gcov/gcc_4_7.c --- linux-azure-5.4.0/kernel/gcov/gcc_4_7.c +++ linux-azure-5.4.0/kernel/gcov/gcc_4_7.c @@ -33,6 +33,13 @@ #define GCOV_TAG_FUNCTION_LENGTH 3 +/* Since GCC 12.1 sizes are in BYTES and not in WORDS (4B). */ +#if (__GNUC__ >= 12) +#define GCOV_UNIT_SIZE 4 +#else +#define GCOV_UNIT_SIZE 1 +#endif + static struct gcov_info *gcov_info_head; /** @@ -451,12 +458,18 @@ pos += store_gcov_u32(buffer, pos, info->version); pos += store_gcov_u32(buffer, pos, info->stamp); +#if (__GNUC__ >= 12) + /* Use zero as checksum of the compilation unit. */ + pos += store_gcov_u32(buffer, pos, 0); +#endif + for (fi_idx = 0; fi_idx < info->n_functions; fi_idx++) { fi_ptr = info->functions[fi_idx]; /* Function record. */ pos += store_gcov_u32(buffer, pos, GCOV_TAG_FUNCTION); - pos += store_gcov_u32(buffer, pos, GCOV_TAG_FUNCTION_LENGTH); + pos += store_gcov_u32(buffer, pos, + GCOV_TAG_FUNCTION_LENGTH * GCOV_UNIT_SIZE); pos += store_gcov_u32(buffer, pos, fi_ptr->ident); pos += store_gcov_u32(buffer, pos, fi_ptr->lineno_checksum); pos += store_gcov_u32(buffer, pos, fi_ptr->cfg_checksum); @@ -470,7 +483,8 @@ /* Counter record. */ pos += store_gcov_u32(buffer, pos, GCOV_TAG_FOR_COUNTER(ct_idx)); - pos += store_gcov_u32(buffer, pos, ci_ptr->num * 2); + pos += store_gcov_u32(buffer, pos, + ci_ptr->num * 2 * GCOV_UNIT_SIZE); for (cv_idx = 0; cv_idx < ci_ptr->num; cv_idx++) { pos += store_gcov_u64(buffer, pos, diff -u linux-azure-5.4.0/kernel/irq/internals.h linux-azure-5.4.0/kernel/irq/internals.h --- linux-azure-5.4.0/kernel/irq/internals.h +++ linux-azure-5.4.0/kernel/irq/internals.h @@ -29,12 +29,14 @@ * IRQTF_WARNED - warning "IRQ_WAKE_THREAD w/o thread_fn" has been printed * IRQTF_AFFINITY - irq thread is requested to adjust affinity * IRQTF_FORCED_THREAD - irq action is force threaded + * IRQTF_READY - signals that irq thread is ready */ enum { IRQTF_RUNTHREAD, IRQTF_WARNED, IRQTF_AFFINITY, IRQTF_FORCED_THREAD, + IRQTF_READY, }; /* diff -u linux-azure-5.4.0/kernel/irq/manage.c linux-azure-5.4.0/kernel/irq/manage.c --- linux-azure-5.4.0/kernel/irq/manage.c +++ linux-azure-5.4.0/kernel/irq/manage.c @@ -1109,6 +1109,31 @@ } /* + * Internal function to notify that a interrupt thread is ready. + */ +static void irq_thread_set_ready(struct irq_desc *desc, + struct irqaction *action) +{ + set_bit(IRQTF_READY, &action->thread_flags); + wake_up(&desc->wait_for_threads); +} + +/* + * Internal function to wake up a interrupt thread and wait until it is + * ready. + */ +static void wake_up_and_wait_for_irq_thread_ready(struct irq_desc *desc, + struct irqaction *action) +{ + if (!action || !action->thread) + return; + + wake_up_process(action->thread); + wait_event(desc->wait_for_threads, + test_bit(IRQTF_READY, &action->thread_flags)); +} + +/* * Interrupt handler thread */ static int irq_thread(void *data) @@ -1119,6 +1144,8 @@ irqreturn_t (*handler_fn)(struct irq_desc *desc, struct irqaction *action); + irq_thread_set_ready(desc, action); + if (force_irqthreads && test_bit(IRQTF_FORCED_THREAD, &action->thread_flags)) handler_fn = irq_forced_thread_fn; @@ -1547,8 +1574,6 @@ } if (!shared) { - init_waitqueue_head(&desc->wait_for_threads); - /* Setup the type (level, edge polarity) if configured: */ if (new->flags & IRQF_TRIGGER_MASK) { ret = __irq_set_trigger(desc, @@ -1638,14 +1663,8 @@ irq_setup_timings(desc, new); - /* - * Strictly no need to wake it up, but hung_task complains - * when no hard interrupt wakes the thread up. - */ - if (new->thread) - wake_up_process(new->thread); - if (new->secondary) - wake_up_process(new->secondary->thread); + wake_up_and_wait_for_irq_thread_ready(desc, new); + wake_up_and_wait_for_irq_thread_ready(desc, new->secondary); register_irq_proc(irq, desc); new->dir = NULL; diff -u linux-azure-5.4.0/kernel/irq/msi.c linux-azure-5.4.0/kernel/irq/msi.c --- linux-azure-5.4.0/kernel/irq/msi.c +++ linux-azure-5.4.0/kernel/irq/msi.c @@ -477,11 +477,6 @@ return 0; cleanup: - for_each_msi_vector(desc, i, dev) { - irq_data = irq_domain_get_irq_data(domain, i); - if (irqd_is_activated(irq_data)) - irq_domain_deactivate_irq(irq_data); - } msi_domain_free_irqs(domain, dev); return ret; } @@ -494,7 +489,15 @@ */ void msi_domain_free_irqs(struct irq_domain *domain, struct device *dev) { + struct irq_data *irq_data; struct msi_desc *desc; + int i; + + for_each_msi_vector(desc, i, dev) { + irq_data = irq_domain_get_irq_data(domain, i); + if (irqd_is_activated(irq_data)) + irq_domain_deactivate_irq(irq_data); + } for_each_msi_entry(desc, dev) { /* diff -u linux-azure-5.4.0/kernel/kexec_file.c linux-azure-5.4.0/kernel/kexec_file.c --- linux-azure-5.4.0/kernel/kexec_file.c +++ linux-azure-5.4.0/kernel/kexec_file.c @@ -108,40 +108,6 @@ #endif /* - * arch_kexec_apply_relocations_add - apply relocations of type RELA - * @pi: Purgatory to be relocated. - * @section: Section relocations applying to. - * @relsec: Section containing RELAs. - * @symtab: Corresponding symtab. - * - * Return: 0 on success, negative errno on error. - */ -int __weak -arch_kexec_apply_relocations_add(struct purgatory_info *pi, Elf_Shdr *section, - const Elf_Shdr *relsec, const Elf_Shdr *symtab) -{ - pr_err("RELA relocation unsupported.\n"); - return -ENOEXEC; -} - -/* - * arch_kexec_apply_relocations - apply relocations of type REL - * @pi: Purgatory to be relocated. - * @section: Section relocations applying to. - * @relsec: Section containing RELs. - * @symtab: Corresponding symtab. - * - * Return: 0 on success, negative errno on error. - */ -int __weak -arch_kexec_apply_relocations(struct purgatory_info *pi, Elf_Shdr *section, - const Elf_Shdr *relsec, const Elf_Shdr *symtab) -{ - pr_err("REL relocation unsupported.\n"); - return -ENOEXEC; -} - -/* * Free up memory used by kernel, initrd, and command line. This is temporary * memory allocation which is not needed any more after these buffers have * been loaded into separate segments and have been copied elsewhere. diff -u linux-azure-5.4.0/kernel/kprobes.c linux-azure-5.4.0/kernel/kprobes.c --- linux-azure-5.4.0/kernel/kprobes.c +++ linux-azure-5.4.0/kernel/kprobes.c @@ -1594,7 +1594,9 @@ preempt_disable(); /* Ensure it is not in reserved area nor out of text */ - if (!kernel_text_address((unsigned long) p->addr) || + if (!(core_kernel_text((unsigned long) p->addr) || + is_module_text_address((unsigned long) p->addr)) || + in_gate_area_no_mm((unsigned long) p->addr) || within_kprobe_blacklist((unsigned long) p->addr) || jump_label_text_reserved(p->addr, p->addr) || find_bug((unsigned long)p->addr)) { @@ -1736,11 +1738,12 @@ /* Try to disarm and disable this/parent probe */ if (p == orig_p || aggr_kprobe_disabled(orig_p)) { /* - * If kprobes_all_disarmed is set, orig_p - * should have already been disarmed, so - * skip unneed disarming process. + * Don't be lazy here. Even if 'kprobes_all_disarmed' + * is false, 'orig_p' might not have been armed yet. + * Note arm_all_kprobes() __tries__ to arm all kprobes + * on the best effort basis. */ - if (!kprobes_all_disarmed) { + if (!kprobes_all_disarmed && !kprobe_disabled(orig_p)) { ret = disarm_kprobe(orig_p, true); if (ret) { p->flags &= ~KPROBE_FLAG_DISABLED; @@ -2003,6 +2006,9 @@ } } + if (rp->data_size > KRETPROBE_MAX_DATA_SIZE) + return -E2BIG; + rp->kp.pre_handler = pre_handler_kretprobe; rp->kp.post_handler = NULL; rp->kp.fault_handler = NULL; @@ -2193,8 +2199,11 @@ if (!kprobes_all_disarmed && kprobe_disabled(p)) { p->flags &= ~KPROBE_FLAG_DISABLED; ret = arm_kprobe(p); - if (ret) + if (ret) { p->flags |= KPROBE_FLAG_DISABLED; + if (p != kp) + kp->flags |= KPROBE_FLAG_DISABLED; + } } out: mutex_unlock(&kprobe_mutex); @@ -2712,14 +2721,13 @@ static int __init debugfs_kprobe_init(void) { struct dentry *dir; - unsigned int value = 1; dir = debugfs_create_dir("kprobes", NULL); debugfs_create_file("list", 0400, dir, NULL, &debugfs_kprobes_operations); - debugfs_create_file("enabled", 0600, dir, &value, &fops_kp); + debugfs_create_file("enabled", 0600, dir, NULL, &fops_kp); debugfs_create_file("blacklist", 0400, dir, NULL, &debugfs_kprobe_blacklist_ops); diff -u linux-azure-5.4.0/kernel/kthread.c linux-azure-5.4.0/kernel/kthread.c --- linux-azure-5.4.0/kernel/kthread.c +++ linux-azure-5.4.0/kernel/kthread.c @@ -76,6 +76,25 @@ return (__force void *)k->set_child_tid; } +/* + * Variant of to_kthread() that doesn't assume @p is a kthread. + * + * Per construction; when: + * + * (p->flags & PF_KTHREAD) && p->set_child_tid + * + * the task is both a kthread and struct kthread is persistent. However + * PF_KTHREAD on it's own is not, kernel_thread() can exec() (See umh.c and + * begin_new_exec()). + */ +static inline struct kthread *__to_kthread(struct task_struct *p) +{ + void *kthread = (__force void *)p->set_child_tid; + if (kthread && !(p->flags & PF_KTHREAD)) + kthread = NULL; + return kthread; +} + void free_kthread_struct(struct task_struct *k) { struct kthread *kthread; @@ -176,10 +195,11 @@ */ void *kthread_probe_data(struct task_struct *task) { - struct kthread *kthread = to_kthread(task); + struct kthread *kthread = __to_kthread(task); void *data = NULL; - probe_kernel_read(&data, &kthread->data, sizeof(data)); + if (kthread) + probe_kernel_read(&data, &kthread->data, sizeof(data)); return data; } @@ -502,9 +522,9 @@ set_bit(KTHREAD_IS_PER_CPU, &kthread->flags); } -bool kthread_is_per_cpu(struct task_struct *k) +bool kthread_is_per_cpu(struct task_struct *p) { - struct kthread *kthread = to_kthread(k); + struct kthread *kthread = __to_kthread(p); if (!kthread) return false; @@ -1032,8 +1052,38 @@ EXPORT_SYMBOL_GPL(kthread_flush_work); /* - * This function removes the work from the worker queue. Also it makes sure - * that it won't get queued later via the delayed work's timer. + * Make sure that the timer is neither set nor running and could + * not manipulate the work list_head any longer. + * + * The function is called under worker->lock. The lock is temporary + * released but the timer can't be set again in the meantime. + */ +static void kthread_cancel_delayed_work_timer(struct kthread_work *work, + unsigned long *flags) +{ + struct kthread_delayed_work *dwork = + container_of(work, struct kthread_delayed_work, work); + struct kthread_worker *worker = work->worker; + + /* + * del_timer_sync() must be called to make sure that the timer + * callback is not running. The lock must be temporary released + * to avoid a deadlock with the callback. In the meantime, + * any queuing is blocked by setting the canceling counter. + */ + work->canceling++; + raw_spin_unlock_irqrestore(&worker->lock, *flags); + del_timer_sync(&dwork->timer); + raw_spin_lock_irqsave(&worker->lock, *flags); + work->canceling--; +} + +/* + * This function removes the work from the worker queue. + * + * It is called under worker->lock. The caller must make sure that + * the timer used by delayed work is not running, e.g. by calling + * kthread_cancel_delayed_work_timer(). * * The work might still be in use when this function finishes. See the * current_work proceed by the worker. @@ -1041,28 +1091,8 @@ * Return: %true if @work was pending and successfully canceled, * %false if @work was not pending */ -static bool __kthread_cancel_work(struct kthread_work *work, bool is_dwork, - unsigned long *flags) +static bool __kthread_cancel_work(struct kthread_work *work) { - /* Try to cancel the timer if exists. */ - if (is_dwork) { - struct kthread_delayed_work *dwork = - container_of(work, struct kthread_delayed_work, work); - struct kthread_worker *worker = work->worker; - - /* - * del_timer_sync() must be called to make sure that the timer - * callback is not running. The lock must be temporary released - * to avoid a deadlock with the callback. In the meantime, - * any queuing is blocked by setting the canceling counter. - */ - work->canceling++; - raw_spin_unlock_irqrestore(&worker->lock, *flags); - del_timer_sync(&dwork->timer); - raw_spin_lock_irqsave(&worker->lock, *flags); - work->canceling--; - } - /* * Try to remove the work from a worker list. It might either * be from worker->work_list or from worker->delayed_work_list. @@ -1085,14 +1115,14 @@ * modify @dwork's timer so that it expires after @delay. If @delay is zero, * @work is guaranteed to be queued immediately. * - * Return: %true if @dwork was pending and its timer was modified, - * %false otherwise. + * Return: %false if @dwork was idle and queued, %true otherwise. * * A special case is when the work is being canceled in parallel. * It might be caused either by the real kthread_cancel_delayed_work_sync() * or yet another kthread_mod_delayed_work() call. We let the other command - * win and return %false here. The caller is supposed to synchronize these - * operations a reasonable way. + * win and return %true here. The return value can be used for reference + * counting and the number of queued works stays the same. Anyway, the caller + * is supposed to synchronize these operations a reasonable way. * * This function is safe to call from any context including IRQ handler. * See __kthread_cancel_work() and kthread_delayed_work_timer_fn() @@ -1104,22 +1134,39 @@ { struct kthread_work *work = &dwork->work; unsigned long flags; - int ret = false; + int ret; raw_spin_lock_irqsave(&worker->lock, flags); /* Do not bother with canceling when never queued. */ - if (!work->worker) + if (!work->worker) { + ret = false; goto fast_queue; + } /* Work must not be used with >1 worker, see kthread_queue_work() */ WARN_ON_ONCE(work->worker != worker); - /* Do not fight with another command that is canceling this work. */ - if (work->canceling) + /* + * Temporary cancel the work but do not fight with another command + * that is canceling the work as well. + * + * It is a bit tricky because of possible races with another + * mod_delayed_work() and cancel_delayed_work() callers. + * + * The timer must be canceled first because worker->lock is released + * when doing so. But the work can be removed from the queue (list) + * only when it can be queued again so that the return value can + * be used for reference counting. + */ + kthread_cancel_delayed_work_timer(work, &flags); + if (work->canceling) { + /* The number of works in the queue does not change. */ + ret = true; goto out; + } + ret = __kthread_cancel_work(work); - ret = __kthread_cancel_work(work, true, &flags); fast_queue: __kthread_queue_delayed_work(worker, dwork, delay); out: @@ -1141,7 +1188,10 @@ /* Work must not be used with >1 worker, see kthread_queue_work(). */ WARN_ON_ONCE(work->worker != worker); - ret = __kthread_cancel_work(work, is_dwork, &flags); + if (is_dwork) + kthread_cancel_delayed_work_timer(work, &flags); + + ret = __kthread_cancel_work(work); if (worker->current_work != work) goto out_fast; @@ -1254,11 +1304,9 @@ */ void kthread_associate_blkcg(struct cgroup_subsys_state *css) { - struct kthread *kthread; + struct kthread *kthread = __to_kthread(current); + - if (!(current->flags & PF_KTHREAD)) - return; - kthread = to_kthread(current); if (!kthread) return; @@ -1280,13 +1328,10 @@ */ struct cgroup_subsys_state *kthread_blkcg(void) { - struct kthread *kthread; + struct kthread *kthread = __to_kthread(current); - if (current->flags & PF_KTHREAD) { - kthread = to_kthread(current); - if (kthread) - return kthread->blkcg_css; - } + if (kthread) + return kthread->blkcg_css; return NULL; } EXPORT_SYMBOL(kthread_blkcg); diff -u linux-azure-5.4.0/kernel/locking/lockdep.c linux-azure-5.4.0/kernel/locking/lockdep.c --- linux-azure-5.4.0/kernel/locking/lockdep.c +++ linux-azure-5.4.0/kernel/locking/lockdep.c @@ -832,7 +832,7 @@ if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) return NULL; - hlist_for_each_entry_rcu(class, hash_head, hash_entry) { + hlist_for_each_entry_rcu_notrace(class, hash_head, hash_entry) { if (class->key == key) { /* * Huh! same key, different name? Did someone trample @@ -1943,7 +1943,56 @@ } /* - * printk the shortest lock dependencies from @start to @end in reverse order: + * Dependency path printing: + * + * After BFS we get a lock dependency path (linked via ->parent of lock_list), + * printing out each lock in the dependency path will help on understanding how + * the deadlock could happen. Here are some details about dependency path + * printing: + * + * 1) A lock_list can be either forwards or backwards for a lock dependency, + * for a lock dependency A -> B, there are two lock_lists: + * + * a) lock_list in the ->locks_after list of A, whose ->class is B and + * ->links_to is A. In this case, we can say the lock_list is + * "A -> B" (forwards case). + * + * b) lock_list in the ->locks_before list of B, whose ->class is A + * and ->links_to is B. In this case, we can say the lock_list is + * "B <- A" (bacwards case). + * + * The ->trace of both a) and b) point to the call trace where B was + * acquired with A held. + * + * 2) A "helper" lock_list is introduced during BFS, this lock_list doesn't + * represent a certain lock dependency, it only provides an initial entry + * for BFS. For example, BFS may introduce a "helper" lock_list whose + * ->class is A, as a result BFS will search all dependencies starting with + * A, e.g. A -> B or A -> C. + * + * The notation of a forwards helper lock_list is like "-> A", which means + * we should search the forwards dependencies starting with "A", e.g A -> B + * or A -> C. + * + * The notation of a bacwards helper lock_list is like "<- B", which means + * we should search the backwards dependencies ending with "B", e.g. + * B <- A or B <- C. + */ + +/* + * printk the shortest lock dependencies from @root to @leaf in reverse order. + * + * We have a lock dependency path as follow: + * + * @root @leaf + * | | + * V V + * ->parent ->parent + * | lock_list | <--------- | lock_list | ... | lock_list | <--------- | lock_list | + * | -> L1 | | L1 -> L2 | ... |Ln-2 -> Ln-1| | Ln-1 -> Ln| + * + * , so it's natural that we start from @leaf and print every ->class and + * ->trace until we reach the @root. */ static void __used print_shortest_lock_dependencies(struct lock_list *leaf, @@ -1971,6 +2020,61 @@ } while (entry && (depth >= 0)); } +/* + * printk the shortest lock dependencies from @leaf to @root. + * + * We have a lock dependency path (from a backwards search) as follow: + * + * @leaf @root + * | | + * V V + * ->parent ->parent + * | lock_list | ---------> | lock_list | ... | lock_list | ---------> | lock_list | + * | L2 <- L1 | | L3 <- L2 | ... | Ln <- Ln-1 | | <- Ln | + * + * , so when we iterate from @leaf to @root, we actually print the lock + * dependency path L1 -> L2 -> .. -> Ln in the non-reverse order. + * + * Another thing to notice here is that ->class of L2 <- L1 is L1, while the + * ->trace of L2 <- L1 is the call trace of L2, in fact we don't have the call + * trace of L1 in the dependency path, which is alright, because most of the + * time we can figure out where L1 is held from the call trace of L2. + */ +static void __used +print_shortest_lock_dependencies_backwards(struct lock_list *leaf, + struct lock_list *root) +{ + struct lock_list *entry = leaf; + const struct lock_trace *trace = NULL; + int depth; + + /*compute depth from generated tree by BFS*/ + depth = get_lock_depth(leaf); + + do { + print_lock_class_header(entry->class, depth); + if (trace) { + printk("%*s ... acquired at:\n", depth, ""); + print_lock_trace(trace, 2); + printk("\n"); + } + + /* + * Record the pointer to the trace for the next lock_list + * entry, see the comments for the function. + */ + trace = entry->trace; + + if (depth == 0 && (entry != root)) { + printk("lockdep:%s bad path found in chain graph\n", __func__); + break; + } + + entry = get_lock_parent(entry); + depth--; + } while (entry && (depth >= 0)); +} + static void print_irq_lock_scenario(struct lock_list *safe_entry, struct lock_list *unsafe_entry, @@ -2088,7 +2192,7 @@ prev_root->trace = save_trace(); if (!prev_root->trace) return; - print_shortest_lock_dependencies(backwards_entry, prev_root); + print_shortest_lock_dependencies_backwards(backwards_entry, prev_root); pr_warn("\nthe dependencies between the lock to be acquired"); pr_warn(" and %s-irq-unsafe lock:\n", irqclass); @@ -2275,8 +2379,18 @@ * Step 3: we found a bad match! Now retrieve a lock from the backward * list whose usage mask matches the exclusive usage mask from the * lock found on the forward list. + * + * Note, we should only keep the LOCKF_ENABLED_IRQ_ALL bits, considering + * the follow case: + * + * When trying to add A -> B to the graph, we find that there is a + * hardirq-safe L, that L -> ... -> A, and another hardirq-unsafe M, + * that B -> ... -> M. However M is **softirq-safe**, if we use exact + * invert bits of M's usage_mask, we will find another lock N that is + * **softirq-unsafe** and N -> ... -> A, however N -> .. -> M will not + * cause a inversion deadlock. */ - backward_mask = original_mask(target_entry1->class->usage_mask); + backward_mask = original_mask(target_entry1->class->usage_mask & LOCKF_ENABLED_IRQ_ALL); ret = find_usage_backwards(&this, backward_mask, &target_entry); if (ret < 0) { diff -u linux-azure-5.4.0/kernel/locking/mutex.c linux-azure-5.4.0/kernel/locking/mutex.c --- linux-azure-5.4.0/kernel/locking/mutex.c +++ linux-azure-5.4.0/kernel/locking/mutex.c @@ -938,7 +938,6 @@ struct ww_acquire_ctx *ww_ctx, const bool use_ww_ctx) { struct mutex_waiter waiter; - bool first = false; struct ww_mutex *ww; int ret; @@ -1017,6 +1016,8 @@ set_current_state(state); for (;;) { + bool first; + /* * Once we hold wait_lock, we're serialized against * mutex_unlock() handing the lock off to us, do a trylock @@ -1045,15 +1046,9 @@ spin_unlock(&lock->wait_lock); schedule_preempt_disabled(); - /* - * ww_mutex needs to always recheck its position since its waiter - * list is not FIFO ordered. - */ - if (ww_ctx || !first) { - first = __mutex_waiter_is_first(lock, &waiter); - if (first) - __mutex_set_flag(lock, MUTEX_FLAG_HANDOFF); - } + first = __mutex_waiter_is_first(lock, &waiter); + if (first) + __mutex_set_flag(lock, MUTEX_FLAG_HANDOFF); set_current_state(state); /* diff -u linux-azure-5.4.0/kernel/module.c linux-azure-5.4.0/kernel/module.c --- linux-azure-5.4.0/kernel/module.c +++ linux-azure-5.4.0/kernel/module.c @@ -268,9 +268,18 @@ #endif } +#ifdef CONFIG_MODULE_SIG static bool sig_enforce = IS_ENABLED(CONFIG_MODULE_SIG_FORCE); module_param(sig_enforce, bool_enable_only, 0644); +void set_module_sig_enforced(void) +{ + sig_enforce = true; +} +#else +#define sig_enforce false +#endif + /* * Export sig_enforce kernel cmdline parameter to allow other subsystems rely * on that instead of directly to CONFIG_MODULE_SIG_FORCE config. @@ -281,11 +290,6 @@ } EXPORT_SYMBOL(is_module_sig_enforced); -void set_module_sig_enforced(void) -{ - sig_enforce = true; -} - /* Block module loading/unloading? */ int modules_disabled = 0; core_param(nomodule, modules_disabled, bint, 0); @@ -3345,7 +3349,7 @@ #endif #ifdef CONFIG_FTRACE_MCOUNT_RECORD /* sechdrs[0].sh_size is always zero */ - mod->ftrace_callsites = section_objs(info, "__mcount_loc", + mod->ftrace_callsites = section_objs(info, FTRACE_CALLSITE_SECTION, sizeof(*mod->ftrace_callsites), &mod->num_ftrace_callsites); #endif @@ -3679,12 +3683,6 @@ } freeinit->module_init = mod->init_layout.base; - /* - * We want to find out whether @mod uses async during init. Clear - * PF_USED_ASYNC. async_schedule*() will set it. - */ - current->flags &= ~PF_USED_ASYNC; - do_mod_ctors(mod); /* Start the module */ if (mod->init != NULL) @@ -3710,22 +3708,13 @@ /* * We need to finish all async code before the module init sequence - * is done. This has potential to deadlock. For example, a newly - * detected block device can trigger request_module() of the - * default iosched from async probing task. Once userland helper - * reaches here, async_synchronize_full() will wait on the async - * task waiting on request_module() and deadlock. - * - * This deadlock is avoided by perfomring async_synchronize_full() - * iff module init queued any async jobs. This isn't a full - * solution as it will deadlock the same if module loading from - * async jobs nests more than once; however, due to the various - * constraints, this hack seems to be the best option for now. - * Please refer to the following thread for details. + * is done. This has potential to deadlock if synchronous module + * loading is requested from async (which is not allowed!). * - * http://thread.gmane.org/gmane.linux.kernel/1420814 + * See commit 0fdff3ec6d87 ("async, kmod: warn on synchronous + * request_module() from async workers") for more details. */ - if (!mod->async_probe_requested && (current->flags & PF_USED_ASYNC)) + if (!mod->async_probe_requested) async_synchronize_full(); ftrace_free_mem(mod, mod->init_layout.base, mod->init_layout.base + diff -u linux-azure-5.4.0/kernel/power/energy_model.c linux-azure-5.4.0/kernel/power/energy_model.c --- linux-azure-5.4.0/kernel/power/energy_model.c +++ linux-azure-5.4.0/kernel/power/energy_model.c @@ -149,7 +149,9 @@ /* Compute the cost of each capacity_state. */ fmax = (u64) table[nr_states - 1].frequency; for (i = 0; i < nr_states; i++) { - table[i].cost = div64_u64(fmax * table[i].power, + unsigned long power_res = em_scale_power(table[i].power); + + table[i].cost = div64_u64(fmax * power_res, table[i].frequency); } diff -u linux-azure-5.4.0/kernel/power/hibernate.c linux-azure-5.4.0/kernel/power/hibernate.c --- linux-azure-5.4.0/kernel/power/hibernate.c +++ linux-azure-5.4.0/kernel/power/hibernate.c @@ -625,7 +625,7 @@ int error; if (hibernation_mode == HIBERNATION_SUSPEND) { - error = suspend_devices_and_enter(PM_SUSPEND_MEM); + error = suspend_devices_and_enter(mem_sleep_current); if (error) { hibernation_mode = hibernation_ops ? HIBERNATION_PLATFORM : @@ -676,7 +676,7 @@ goto Unlock; error = swsusp_read(&flags); - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); if (!error) error = hibernation_restore(flags & SF_PLATFORM_MODE); @@ -871,7 +871,7 @@ /* The snapshot device should not be opened while we're running */ if (!atomic_add_unless(&snapshot_device_available, -1, 0)) { error = -EBUSY; - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); goto Unlock; } @@ -907,7 +907,7 @@ pm_pr_dbg("Hibernation image not present or could not be loaded.\n"); return error; Close_Finish: - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); goto Finish; } @@ -1216,7 +1216,7 @@ int rc = kstrtouint(str, 0, &resume_delay); if (rc) - return rc; + pr_warn("resumedelay: bad option string '%s'\n", str); return 1; } diff -u linux-azure-5.4.0/kernel/power/snapshot.c linux-azure-5.4.0/kernel/power/snapshot.c --- linux-azure-5.4.0/kernel/power/snapshot.c +++ linux-azure-5.4.0/kernel/power/snapshot.c @@ -945,8 +945,7 @@ * Register a range of page frames the contents of which should not be saved * during hibernation (to be used in the early initialization code). */ -void __init __register_nosave_region(unsigned long start_pfn, - unsigned long end_pfn, int use_kmalloc) +void __init register_nosave_region(unsigned long start_pfn, unsigned long end_pfn) { struct nosave_region *region; @@ -962,18 +961,12 @@ goto Report; } } - if (use_kmalloc) { - /* During init, this shouldn't fail */ - region = kmalloc(sizeof(struct nosave_region), GFP_KERNEL); - BUG_ON(!region); - } else { - /* This allocation cannot fail */ - region = memblock_alloc(sizeof(struct nosave_region), - SMP_CACHE_BYTES); - if (!region) - panic("%s: Failed to allocate %zu bytes\n", __func__, - sizeof(struct nosave_region)); - } + /* This allocation cannot fail */ + region = memblock_alloc(sizeof(struct nosave_region), + SMP_CACHE_BYTES); + if (!region) + panic("%s: Failed to allocate %zu bytes\n", __func__, + sizeof(struct nosave_region)); region->start_pfn = start_pfn; region->end_pfn = end_pfn; list_add_tail(®ion->list, &nosave_regions); diff -u linux-azure-5.4.0/kernel/power/suspend.c linux-azure-5.4.0/kernel/power/suspend.c --- linux-azure-5.4.0/kernel/power/suspend.c +++ linux-azure-5.4.0/kernel/power/suspend.c @@ -139,6 +139,4 @@ } - pm_wakeup_clear(false); - s2idle_enter(); } diff -u linux-azure-5.4.0/kernel/power/swap.c linux-azure-5.4.0/kernel/power/swap.c --- linux-azure-5.4.0/kernel/power/swap.c +++ linux-azure-5.4.0/kernel/power/swap.c @@ -299,7 +299,7 @@ return error; } -static blk_status_t hib_wait_io(struct hib_bio_batch *hb) +static int hib_wait_io(struct hib_bio_batch *hb) { /* * We are relying on the behavior of blk_plug that a thread with @@ -1524,9 +1524,10 @@ int swsusp_check(void) { int error; + void *holder; hib_resume_bdev = blkdev_get_by_dev(swsusp_resume_device, - FMODE_READ, NULL); + FMODE_READ | FMODE_EXCL, &holder); if (!IS_ERR(hib_resume_bdev)) { set_blocksize(hib_resume_bdev, PAGE_SIZE); clear_page(swsusp_header); @@ -1548,7 +1549,7 @@ put: if (error) - blkdev_put(hib_resume_bdev, FMODE_READ); + blkdev_put(hib_resume_bdev, FMODE_READ | FMODE_EXCL); else pr_debug("Image signature found, resuming\n"); } else { diff -u linux-azure-5.4.0/kernel/printk/printk.c linux-azure-5.4.0/kernel/printk/printk.c --- linux-azure-5.4.0/kernel/printk/printk.c +++ linux-azure-5.4.0/kernel/printk/printk.c @@ -146,8 +146,10 @@ static int __init control_devkmsg(char *str) { - if (__control_devkmsg(str) < 0) + if (__control_devkmsg(str) < 0) { + pr_warn("printk.devkmsg: bad option string '%s'\n", str); return 1; + } /* * Set sysctl string accordingly: @@ -166,7 +168,7 @@ */ devkmsg_log |= DEVKMSG_LOG_MASK_LOCK; - return 0; + return 1; } __setup("printk.devkmsg=", control_devkmsg); @@ -280,6 +282,7 @@ static struct console_cmdline console_cmdline[MAX_CMDLINECONSOLES]; static int preferred_console = -1; +static bool has_preferred_console; int console_set_on_cmdline; EXPORT_SYMBOL(console_set_on_cmdline); @@ -2143,7 +2146,7 @@ #endif static int __add_preferred_console(char *name, int idx, char *options, - char *brl_options) + char *brl_options, bool user_specified) { struct console_cmdline *c; int i; @@ -2158,6 +2161,8 @@ if (strcmp(c->name, name) == 0 && c->index == idx) { if (!brl_options) preferred_console = i; + if (user_specified) + c->user_specified = true; return 0; } } @@ -2167,6 +2172,7 @@ preferred_console = i; strlcpy(c->name, name, sizeof(c->name)); c->options = options; + c->user_specified = user_specified; braille_set_options(c, brl_options); c->index = idx; @@ -2193,8 +2199,15 @@ char *s, *options, *brl_options = NULL; int idx; - if (str[0] == 0) + /* + * console="" or console=null have been suggested as a way to + * disable console output. Use ttynull that has been created + * for exacly this purpose. + */ + if (str[0] == 0 || strcmp(str, "null") == 0) { + __add_preferred_console("ttynull", 0, NULL, NULL, true); return 1; + } if (_braille_console_setup(&str, &brl_options)) return 1; @@ -2224,7 +2237,7 @@ idx = simple_strtoul(s, NULL, 10); *s = 0; - __add_preferred_console(buf, idx, options, brl_options); + __add_preferred_console(buf, idx, options, brl_options, true); console_set_on_cmdline = 1; return 1; } @@ -2245,7 +2258,7 @@ */ int add_preferred_console(char *name, int idx, char *options) { - return __add_preferred_console(name, idx, options, NULL); + return __add_preferred_console(name, idx, options, NULL, false); } bool console_suspend_enabled = true; @@ -2658,6 +2671,63 @@ early_param("keep_bootcon", keep_bootcon_setup); /* + * This is called by register_console() to try to match + * the newly registered console with any of the ones selected + * by either the command line or add_preferred_console() and + * setup/enable it. + * + * Care need to be taken with consoles that are statically + * enabled such as netconsole + */ +static int try_enable_new_console(struct console *newcon, bool user_specified) +{ + struct console_cmdline *c; + int i; + + for (i = 0, c = console_cmdline; + i < MAX_CMDLINECONSOLES && c->name[0]; + i++, c++) { + if (c->user_specified != user_specified) + continue; + if (!newcon->match || + newcon->match(newcon, c->name, c->index, c->options) != 0) { + /* default matching */ + BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name)); + if (strcmp(c->name, newcon->name) != 0) + continue; + if (newcon->index >= 0 && + newcon->index != c->index) + continue; + if (newcon->index < 0) + newcon->index = c->index; + + if (_braille_register_console(newcon, c)) + return 0; + + if (newcon->setup && + newcon->setup(newcon, c->options) != 0) + return -EIO; + } + newcon->flags |= CON_ENABLED; + if (i == preferred_console) { + newcon->flags |= CON_CONSDEV; + has_preferred_console = true; + } + return 0; + } + + /* + * Some consoles, such as pstore and netconsole, can be enabled even + * without matching. Accept the pre-enabled consoles only when match() + * and setup() had a change to be called. + */ + if (newcon->flags & CON_ENABLED && c->user_specified == user_specified) + return 0; + + return -ENOENT; +} + +/* * The console driver calls this routine during kernel initialization * to register the console printing procedure with printk() and to * print any messages that were printed by the kernel before the @@ -2678,11 +2748,9 @@ */ void register_console(struct console *newcon) { - int i; unsigned long flags; struct console *bcon = NULL; - struct console_cmdline *c; - static bool has_preferred; + int err; if (console_drivers) for_each_console(bcon) @@ -2709,15 +2777,15 @@ if (console_drivers && console_drivers->flags & CON_BOOT) bcon = console_drivers; - if (!has_preferred || bcon || !console_drivers) - has_preferred = preferred_console >= 0; + if (!has_preferred_console || bcon || !console_drivers) + has_preferred_console = preferred_console >= 0; /* * See if we want to use this console driver. If we * didn't select a console we take the first one * that registers here. */ - if (!has_preferred) { + if (!has_preferred_console) { if (newcon->index < 0) newcon->index = 0; if (newcon->setup == NULL || @@ -2725,47 +2793,20 @@ newcon->flags |= CON_ENABLED; if (newcon->device) { newcon->flags |= CON_CONSDEV; - has_preferred = true; + has_preferred_console = true; } } } - /* - * See if this console matches one we selected on - * the command line. - */ - for (i = 0, c = console_cmdline; - i < MAX_CMDLINECONSOLES && c->name[0]; - i++, c++) { - if (!newcon->match || - newcon->match(newcon, c->name, c->index, c->options) != 0) { - /* default matching */ - BUILD_BUG_ON(sizeof(c->name) != sizeof(newcon->name)); - if (strcmp(c->name, newcon->name) != 0) - continue; - if (newcon->index >= 0 && - newcon->index != c->index) - continue; - if (newcon->index < 0) - newcon->index = c->index; - - if (_braille_register_console(newcon, c)) - return; + /* See if this console matches one we selected on the command line */ + err = try_enable_new_console(newcon, true); - if (newcon->setup && - newcon->setup(newcon, c->options) != 0) - break; - } - - newcon->flags |= CON_ENABLED; - if (i == preferred_console) { - newcon->flags |= CON_CONSDEV; - has_preferred = true; - } - break; - } + /* If not, try to match against the platform default(s) */ + if (err == -ENOENT) + err = try_enable_new_console(newcon, false); - if (!(newcon->flags & CON_ENABLED)) + /* printk() messages are not printed to the Braille console. */ + if (err || newcon->flags & CON_BRL) return; /* diff -u linux-azure-5.4.0/kernel/ptrace.c linux-azure-5.4.0/kernel/ptrace.c --- linux-azure-5.4.0/kernel/ptrace.c +++ linux-azure-5.4.0/kernel/ptrace.c @@ -370,6 +370,26 @@ return !err; } +static int check_ptrace_options(unsigned long data) +{ + if (data & ~(unsigned long)PTRACE_O_MASK) + return -EINVAL; + + if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) { + if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) || + !IS_ENABLED(CONFIG_SECCOMP)) + return -EINVAL; + + if (!capable(CAP_SYS_ADMIN)) + return -EPERM; + + if (seccomp_mode(¤t->seccomp) != SECCOMP_MODE_DISABLED || + current->ptrace & PT_SUSPEND_SECCOMP) + return -EPERM; + } + return 0; +} + static int ptrace_attach(struct task_struct *task, long request, unsigned long addr, unsigned long flags) @@ -381,8 +401,16 @@ if (seize) { if (addr != 0) goto out; + /* + * This duplicates the check in check_ptrace_options() because + * ptrace_attach() and ptrace_setoptions() have historically + * used different error codes for unknown ptrace options. + */ if (flags & ~(unsigned long)PTRACE_O_MASK) goto out; + retval = check_ptrace_options(flags); + if (retval) + return retval; flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT); } else { flags = PT_PTRACED; @@ -655,22 +683,11 @@ static int ptrace_setoptions(struct task_struct *child, unsigned long data) { unsigned flags; + int ret; - if (data & ~(unsigned long)PTRACE_O_MASK) - return -EINVAL; - - if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) { - if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) || - !IS_ENABLED(CONFIG_SECCOMP)) - return -EINVAL; - - if (!capable(CAP_SYS_ADMIN)) - return -EPERM; - - if (seccomp_mode(¤t->seccomp) != SECCOMP_MODE_DISABLED || - current->ptrace & PT_SUSPEND_SECCOMP) - return -EPERM; - } + ret = check_ptrace_options(data); + if (ret) + return ret; /* Avoid intermediate state when all opts are cleared */ flags = child->ptrace; @@ -1202,9 +1219,8 @@ return ptrace_resume(child, request, data); case PTRACE_KILL: - if (child->exit_state) /* already dead */ - return 0; - return ptrace_resume(child, request, SIGKILL); + send_sig_info(SIGKILL, SEND_SIG_NOINFO, child); + return 0; #ifdef CONFIG_HAVE_ARCH_TRACEHOOK case PTRACE_GETREGSET: diff -u linux-azure-5.4.0/kernel/rcu/srcutree.c linux-azure-5.4.0/kernel/rcu/srcutree.c --- linux-azure-5.4.0/kernel/rcu/srcutree.c +++ linux-azure-5.4.0/kernel/rcu/srcutree.c @@ -90,6 +90,9 @@ struct srcu_node *snp; struct srcu_node *snp_first; + /* Initialize geometry if it has not already been initialized. */ + rcu_init_geometry(); + /* Work out the overall tree geometry. */ ssp->level[0] = &ssp->node[0]; for (i = 1; i < rcu_num_lvls; i++) diff -u linux-azure-5.4.0/kernel/rcu/tree.c linux-azure-5.4.0/kernel/rcu/tree.c --- linux-azure-5.4.0/kernel/rcu/tree.c +++ linux-azure-5.4.0/kernel/rcu/tree.c @@ -1358,10 +1358,11 @@ struct rcu_data *rdp) { rcu_lockdep_assert_cblist_protected(rdp); - if (!rcu_seq_state(rcu_seq_current(&rnp->gp_seq)) || - !raw_spin_trylock_rcu_node(rnp)) + if (!rcu_seq_state(rcu_seq_current(&rnp->gp_seq)) || !raw_spin_trylock_rcu_node(rnp)) return; - WARN_ON_ONCE(rcu_advance_cbs(rnp, rdp)); + // The grace period cannot end while we hold the rcu_node lock. + if (rcu_seq_state(rcu_seq_current(&rnp->gp_seq))) + WARN_ON_ONCE(rcu_advance_cbs(rnp, rdp)); raw_spin_unlock_rcu_node(rnp); } @@ -1602,7 +1603,7 @@ struct rcu_node *rnp = rcu_get_root(); WRITE_ONCE(rcu_state.gp_activity, jiffies); - rcu_state.n_force_qs++; + WRITE_ONCE(rcu_state.n_force_qs, rcu_state.n_force_qs + 1); if (first_time) { /* Collect dyntick-idle snapshots. */ force_qs_rnp(dyntick_save_progress_counter); @@ -2207,7 +2208,7 @@ /* Reset ->qlen_last_fqs_check trigger if enough CBs have drained. */ if (count == 0 && rdp->qlen_last_fqs_check != 0) { rdp->qlen_last_fqs_check = 0; - rdp->n_force_qs_snap = rcu_state.n_force_qs; + rdp->n_force_qs_snap = READ_ONCE(rcu_state.n_force_qs); } else if (count < rdp->qlen_last_fqs_check - qhimark) rdp->qlen_last_fqs_check = count; @@ -2498,7 +2499,6 @@ "%s: Could not start rcuc kthread, OOM is now expected behavior\n", __func__); return 0; } -early_initcall(rcu_spawn_core_kthreads); /* * Handle any core-RCU processing required by a call_rcu() invocation. @@ -2536,10 +2536,10 @@ } else { /* Give the grace period a kick. */ rdp->blimit = DEFAULT_MAX_RCU_BLIMIT; - if (rcu_state.n_force_qs == rdp->n_force_qs_snap && + if (READ_ONCE(rcu_state.n_force_qs) == rdp->n_force_qs_snap && rcu_segcblist_first_pend_cb(&rdp->cblist) != head) rcu_force_quiescent_state(); - rdp->n_force_qs_snap = rcu_state.n_force_qs; + rdp->n_force_qs_snap = READ_ONCE(rcu_state.n_force_qs); rdp->qlen_last_fqs_check = rcu_segcblist_n_cbs(&rdp->cblist); } } @@ -3030,7 +3030,7 @@ /* Set up local state, ensuring consistent view of global state. */ raw_spin_lock_irqsave_rcu_node(rnp, flags); rdp->qlen_last_fqs_check = 0; - rdp->n_force_qs_snap = rcu_state.n_force_qs; + rdp->n_force_qs_snap = READ_ONCE(rcu_state.n_force_qs); rdp->blimit = blimit; if (rcu_segcblist_empty(&rdp->cblist) && /* No early-boot CBs? */ !rcu_segcblist_is_offloaded(&rdp->cblist)) @@ -3315,6 +3315,7 @@ wake_up_process(t); rcu_spawn_nocb_kthreads(); rcu_spawn_boost_kthreads(); + rcu_spawn_core_kthreads(); return 0; } early_initcall(rcu_spawn_gp_kthread); @@ -3425,11 +3426,25 @@ * replace the definitions in tree.h because those are needed to size * the ->node array in the rcu_state structure. */ -static void __init rcu_init_geometry(void) +void rcu_init_geometry(void) { ulong d; int i; + static unsigned long old_nr_cpu_ids; int rcu_capacity[RCU_NUM_LVLS]; + static bool initialized; + + if (initialized) { + /* + * Warn if setup_nr_cpu_ids() had not yet been invoked, + * unless nr_cpus_ids == NR_CPUS, in which case who cares? + */ + WARN_ON_ONCE(old_nr_cpu_ids != nr_cpu_ids); + return; + } + + old_nr_cpu_ids = nr_cpu_ids; + initialized = true; /* * Initialize any unspecified boot parameters. diff -u linux-azure-5.4.0/kernel/rcu/tree_exp.h linux-azure-5.4.0/kernel/rcu/tree_exp.h --- linux-azure-5.4.0/kernel/rcu/tree_exp.h +++ linux-azure-5.4.0/kernel/rcu/tree_exp.h @@ -382,6 +382,7 @@ continue; } if (get_cpu() == cpu) { + mask_ofl_test |= mask; put_cpu(); continue; } @@ -738,7 +739,7 @@ my_cpu = get_cpu(); /* Quiescent state either not needed or already requested, leave. */ if (!(READ_ONCE(rnp->expmask) & rdp->grpmask) || - __this_cpu_read(rcu_data.cpu_no_qs.b.exp)) { + rdp->cpu_no_qs.b.exp) { put_cpu(); return; } diff -u linux-azure-5.4.0/kernel/rcu/tree_plugin.h linux-azure-5.4.0/kernel/rcu/tree_plugin.h --- linux-azure-5.4.0/kernel/rcu/tree_plugin.h +++ linux-azure-5.4.0/kernel/rcu/tree_plugin.h @@ -523,16 +523,17 @@ raw_spin_unlock_irqrestore_rcu_node(rnp, flags); } - /* Unboost if we were boosted. */ - if (IS_ENABLED(CONFIG_RCU_BOOST) && drop_boost_mutex) - rt_mutex_futex_unlock(&rnp->boost_mtx); - /* * If this was the last task on the expedited lists, * then we need to report up the rcu_node hierarchy. */ if (!empty_exp && empty_exp_now) rcu_report_exp_rnp(rnp, true); + + /* Unboost if we were boosted. */ + if (IS_ENABLED(CONFIG_RCU_BOOST) && drop_boost_mutex) + rt_mutex_futex_unlock(&rnp->boost_mtx); + } else { local_irq_restore(flags); } diff -u linux-azure-5.4.0/kernel/reboot.c linux-azure-5.4.0/kernel/reboot.c --- linux-azure-5.4.0/kernel/reboot.c +++ linux-azure-5.4.0/kernel/reboot.c @@ -244,8 +244,6 @@ void kernel_restart(char *cmd) { kernel_restart_prepare(cmd); - if (pm_power_off_prepare) - pm_power_off_prepare(); migrate_to_reboot_cpu(); syscore_shutdown(); if (!cmd) diff -u linux-azure-5.4.0/kernel/sched/core.c linux-azure-5.4.0/kernel/sched/core.c --- linux-azure-5.4.0/kernel/sched/core.c +++ linux-azure-5.4.0/kernel/sched/core.c @@ -894,9 +894,10 @@ static inline struct uclamp_se uclamp_tg_restrict(struct task_struct *p, enum uclamp_id clamp_id) { + /* Copy by value as we could modify it */ struct uclamp_se uc_req = p->uclamp_req[clamp_id]; #ifdef CONFIG_UCLAMP_TASK_GROUP - struct uclamp_se uc_max; + unsigned int tg_min, tg_max, value; /* * Tasks in autogroups or root task group will be @@ -907,9 +908,11 @@ if (task_group(p) == &root_task_group) return uc_req; - uc_max = task_group(p)->uclamp[clamp_id]; - if (uc_req.value > uc_max.value || !uc_req.user_defined) - return uc_max; + tg_min = task_group(p)->uclamp[UCLAMP_MIN].value; + tg_max = task_group(p)->uclamp[UCLAMP_MAX].value; + value = uc_req.value; + value = clamp(value, tg_min, tg_max); + uclamp_se_set(&uc_req, value, false); #endif return uc_req; @@ -1107,9 +1110,27 @@ uclamp_rq_dec_id(rq, p, clamp_id); } +static inline void uclamp_rq_reinc_id(struct rq *rq, struct task_struct *p, + enum uclamp_id clamp_id) +{ + if (!p->uclamp[clamp_id].active) + return; + + uclamp_rq_dec_id(rq, p, clamp_id); + uclamp_rq_inc_id(rq, p, clamp_id); + + /* + * Make sure to clear the idle flag if we've transiently reached 0 + * active tasks on rq. + */ + if (clamp_id == UCLAMP_MAX && (rq->uclamp_flags & UCLAMP_FLAG_IDLE)) + rq->uclamp_flags &= ~UCLAMP_FLAG_IDLE; +} + static inline void -uclamp_update_active(struct task_struct *p, enum uclamp_id clamp_id) +uclamp_update_active(struct task_struct *p) { + enum uclamp_id clamp_id; struct rq_flags rf; struct rq *rq; @@ -1129,30 +1150,22 @@ * affecting a valid clamp bucket, the next time it's enqueued, * it will already see the updated clamp bucket value. */ - if (p->uclamp[clamp_id].active) { - uclamp_rq_dec_id(rq, p, clamp_id); - uclamp_rq_inc_id(rq, p, clamp_id); - } + for_each_clamp_id(clamp_id) + uclamp_rq_reinc_id(rq, p, clamp_id); task_rq_unlock(rq, p, &rf); } #ifdef CONFIG_UCLAMP_TASK_GROUP static inline void -uclamp_update_active_tasks(struct cgroup_subsys_state *css, - unsigned int clamps) +uclamp_update_active_tasks(struct cgroup_subsys_state *css) { - enum uclamp_id clamp_id; struct css_task_iter it; struct task_struct *p; css_task_iter_start(css, 0, &it); - while ((p = css_task_iter_next(&it))) { - for_each_clamp_id(clamp_id) { - if ((0x1 << clamp_id) & clamps) - uclamp_update_active(p, clamp_id); - } - } + while ((p = css_task_iter_next(&it))) + uclamp_update_active(p); css_task_iter_end(&it); } @@ -1324,7 +1337,7 @@ }; } - rq->uclamp_flags = 0; + rq->uclamp_flags = UCLAMP_FLAG_IDLE; } static void __init init_uclamp(void) @@ -2469,6 +2482,9 @@ bool cpus_share_cache(int this_cpu, int that_cpu) { + if (this_cpu == that_cpu) + return true; + return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu); } #endif /* CONFIG_SMP */ @@ -4538,20 +4554,21 @@ if (!dl_prio(p->normal_prio) || (pi_task && dl_prio(pi_task->prio) && dl_entity_preempt(&pi_task->dl, &p->dl))) { - p->dl.dl_boosted = 1; + p->dl.pi_se = pi_task->dl.pi_se; queue_flag |= ENQUEUE_REPLENISH; - } else - p->dl.dl_boosted = 0; + } else { + p->dl.pi_se = &p->dl; + } p->sched_class = &dl_sched_class; } else if (rt_prio(prio)) { if (dl_prio(oldprio)) - p->dl.dl_boosted = 0; + p->dl.pi_se = &p->dl; if (oldprio < prio) queue_flag |= ENQUEUE_HEAD; p->sched_class = &rt_sched_class; } else { if (dl_prio(oldprio)) - p->dl.dl_boosted = 0; + p->dl.pi_se = &p->dl; if (rt_prio(oldprio)) p->rt.timeout = 0; p->sched_class = &fair_sched_class; @@ -7187,7 +7204,11 @@ #ifdef CONFIG_UCLAMP_TASK_GROUP /* Propagate the effective uclamp value for the new group */ + mutex_lock(&uclamp_mutex); + rcu_read_lock(); cpu_util_update_eff(css); + rcu_read_unlock(); + mutex_unlock(&uclamp_mutex); #endif return 0; @@ -7277,6 +7298,9 @@ enum uclamp_id clamp_id; unsigned int clamps; + lockdep_assert_held(&uclamp_mutex); + SCHED_WARN_ON(!rcu_read_lock_held()); + css_for_each_descendant_pre(css, top_css) { uc_parent = css_tg(css)->parent ? css_tg(css)->parent->uclamp : NULL; @@ -7309,7 +7333,7 @@ } /* Immediately update descendants RUNNABLE tasks */ - uclamp_update_active_tasks(css, clamps); + uclamp_update_active_tasks(css); } } diff -u linux-azure-5.4.0/kernel/sched/cpufreq_schedutil.c linux-azure-5.4.0/kernel/sched/cpufreq_schedutil.c --- linux-azure-5.4.0/kernel/sched/cpufreq_schedutil.c +++ linux-azure-5.4.0/kernel/sched/cpufreq_schedutil.c @@ -624,9 +624,17 @@ }; ATTRIBUTE_GROUPS(sugov); +static void sugov_tunables_free(struct kobject *kobj) +{ + struct gov_attr_set *attr_set = container_of(kobj, struct gov_attr_set, kobj); + + kfree(to_sugov_tunables(attr_set)); +} + static struct kobj_type sugov_tunables_ktype = { .default_groups = sugov_groups, .sysfs_ops = &governor_sysfs_ops, + .release = &sugov_tunables_free, }; /********************** cpufreq governor interface *********************/ @@ -726,12 +734,10 @@ return tunables; } -static void sugov_tunables_free(struct sugov_tunables *tunables) +static void sugov_clear_global_tunables(void) { if (!have_governor_per_policy()) global_tunables = NULL; - - kfree(tunables); } static int sugov_init(struct cpufreq_policy *policy) @@ -794,7 +800,7 @@ fail: kobject_put(&tunables->attr_set.kobj); policy->governor_data = NULL; - sugov_tunables_free(tunables); + sugov_clear_global_tunables(); stop_kthread: sugov_kthread_stop(sg_policy); @@ -821,7 +827,7 @@ count = gov_attr_set_put(&tunables->attr_set, &sg_policy->tunables_hook); policy->governor_data = NULL; if (!count) - sugov_tunables_free(tunables); + sugov_clear_global_tunables(); mutex_unlock(&global_tunables_lock); diff -u linux-azure-5.4.0/kernel/sched/deadline.c linux-azure-5.4.0/kernel/sched/deadline.c --- linux-azure-5.4.0/kernel/sched/deadline.c +++ linux-azure-5.4.0/kernel/sched/deadline.c @@ -43,6 +43,28 @@ return !RB_EMPTY_NODE(&dl_se->rb_node); } +#ifdef CONFIG_RT_MUTEXES +static inline struct sched_dl_entity *pi_of(struct sched_dl_entity *dl_se) +{ + return dl_se->pi_se; +} + +static inline bool is_dl_boosted(struct sched_dl_entity *dl_se) +{ + return pi_of(dl_se) != dl_se; +} +#else +static inline struct sched_dl_entity *pi_of(struct sched_dl_entity *dl_se) +{ + return dl_se; +} + +static inline bool is_dl_boosted(struct sched_dl_entity *dl_se) +{ + return false; +} +#endif + #ifdef CONFIG_SMP static inline struct dl_bw *dl_bw_of(int i) { @@ -657,7 +679,7 @@ struct dl_rq *dl_rq = dl_rq_of_se(dl_se); struct rq *rq = rq_of_dl_rq(dl_rq); - WARN_ON(dl_se->dl_boosted); + WARN_ON(is_dl_boosted(dl_se)); WARN_ON(dl_time_before(rq_clock(rq), dl_se->deadline)); /* @@ -695,21 +717,20 @@ * could happen are, typically, a entity voluntarily trying to overcome its * runtime, or it just underestimated it during sched_setattr(). */ -static void replenish_dl_entity(struct sched_dl_entity *dl_se, - struct sched_dl_entity *pi_se) +static void replenish_dl_entity(struct sched_dl_entity *dl_se) { struct dl_rq *dl_rq = dl_rq_of_se(dl_se); struct rq *rq = rq_of_dl_rq(dl_rq); - BUG_ON(pi_se->dl_runtime <= 0); + BUG_ON(pi_of(dl_se)->dl_runtime <= 0); /* * This could be the case for a !-dl task that is boosted. * Just go with full inherited parameters. */ if (dl_se->dl_deadline == 0) { - dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline; - dl_se->runtime = pi_se->dl_runtime; + dl_se->deadline = rq_clock(rq) + pi_of(dl_se)->dl_deadline; + dl_se->runtime = pi_of(dl_se)->dl_runtime; } if (dl_se->dl_yielded && dl_se->runtime > 0) @@ -722,8 +743,8 @@ * arbitrary large. */ while (dl_se->runtime <= 0) { - dl_se->deadline += pi_se->dl_period; - dl_se->runtime += pi_se->dl_runtime; + dl_se->deadline += pi_of(dl_se)->dl_period; + dl_se->runtime += pi_of(dl_se)->dl_runtime; } /* @@ -737,8 +758,8 @@ */ if (dl_time_before(dl_se->deadline, rq_clock(rq))) { printk_deferred_once("sched: DL replenish lagged too much\n"); - dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline; - dl_se->runtime = pi_se->dl_runtime; + dl_se->deadline = rq_clock(rq) + pi_of(dl_se)->dl_deadline; + dl_se->runtime = pi_of(dl_se)->dl_runtime; } if (dl_se->dl_yielded) @@ -771,8 +792,7 @@ * task with deadline equal to period this is the same of using * dl_period instead of dl_deadline in the equation above. */ -static bool dl_entity_overflow(struct sched_dl_entity *dl_se, - struct sched_dl_entity *pi_se, u64 t) +static bool dl_entity_overflow(struct sched_dl_entity *dl_se, u64 t) { u64 left, right; @@ -794,9 +814,9 @@ * of anything below microseconds resolution is actually fiction * (but still we want to give the user that illusion >;). */ - left = (pi_se->dl_deadline >> DL_SCALE) * (dl_se->runtime >> DL_SCALE); + left = (pi_of(dl_se)->dl_deadline >> DL_SCALE) * (dl_se->runtime >> DL_SCALE); right = ((dl_se->deadline - t) >> DL_SCALE) * - (pi_se->dl_runtime >> DL_SCALE); + (pi_of(dl_se)->dl_runtime >> DL_SCALE); return dl_time_before(right, left); } @@ -881,24 +901,23 @@ * Please refer to the comments update_dl_revised_wakeup() function to find * more about the Revised CBS rule. */ -static void update_dl_entity(struct sched_dl_entity *dl_se, - struct sched_dl_entity *pi_se) +static void update_dl_entity(struct sched_dl_entity *dl_se) { struct dl_rq *dl_rq = dl_rq_of_se(dl_se); struct rq *rq = rq_of_dl_rq(dl_rq); if (dl_time_before(dl_se->deadline, rq_clock(rq)) || - dl_entity_overflow(dl_se, pi_se, rq_clock(rq))) { + dl_entity_overflow(dl_se, rq_clock(rq))) { if (unlikely(!dl_is_implicit(dl_se) && !dl_time_before(dl_se->deadline, rq_clock(rq)) && - !dl_se->dl_boosted)){ + !is_dl_boosted(dl_se))) { update_dl_revised_wakeup(dl_se, rq); return; } - dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline; - dl_se->runtime = pi_se->dl_runtime; + dl_se->deadline = rq_clock(rq) + pi_of(dl_se)->dl_deadline; + dl_se->runtime = pi_of(dl_se)->dl_runtime; } } @@ -997,7 +1016,7 @@ * The task might have been boosted by someone else and might be in the * boosting/deboosting path, its not throttled. */ - if (dl_se->dl_boosted) + if (is_dl_boosted(dl_se)) goto unlock; /* @@ -1025,7 +1044,7 @@ * but do not enqueue -- wait for our wakeup to do that. */ if (!task_on_rq_queued(p)) { - replenish_dl_entity(dl_se, dl_se); + replenish_dl_entity(dl_se); goto unlock; } @@ -1115,7 +1134,7 @@ if (dl_time_before(dl_se->deadline, rq_clock(rq)) && dl_time_before(rq_clock(rq), dl_next_period(dl_se))) { - if (unlikely(dl_se->dl_boosted || !start_dl_timer(p))) + if (unlikely(is_dl_boosted(dl_se) || !start_dl_timer(p))) return; dl_se->dl_throttled = 1; if (dl_se->runtime > 0) @@ -1246,7 +1265,7 @@ dl_se->dl_overrun = 1; __dequeue_task_dl(rq, curr, 0); - if (unlikely(dl_se->dl_boosted || !start_dl_timer(curr))) + if (unlikely(is_dl_boosted(dl_se) || !start_dl_timer(curr))) enqueue_task_dl(rq, curr, ENQUEUE_REPLENISH); if (!is_leftmost(curr, &rq->dl)) @@ -1440,8 +1459,7 @@ } static void -enqueue_dl_entity(struct sched_dl_entity *dl_se, - struct sched_dl_entity *pi_se, int flags) +enqueue_dl_entity(struct sched_dl_entity *dl_se, int flags) { BUG_ON(on_dl_rq(dl_se)); @@ -1452,9 +1470,9 @@ */ if (flags & ENQUEUE_WAKEUP) { task_contending(dl_se, flags); - update_dl_entity(dl_se, pi_se); + update_dl_entity(dl_se); } else if (flags & ENQUEUE_REPLENISH) { - replenish_dl_entity(dl_se, pi_se); + replenish_dl_entity(dl_se); } else if ((flags & ENQUEUE_RESTORE) && dl_time_before(dl_se->deadline, rq_clock(rq_of_dl_rq(dl_rq_of_se(dl_se))))) { @@ -1471,28 +1489,40 @@ static void enqueue_task_dl(struct rq *rq, struct task_struct *p, int flags) { - struct task_struct *pi_task = rt_mutex_get_top_task(p); - struct sched_dl_entity *pi_se = &p->dl; - - /* - * Use the scheduling parameters of the top pi-waiter task if: - * - we have a top pi-waiter which is a SCHED_DEADLINE task AND - * - our dl_boosted is set (i.e. the pi-waiter's (absolute) deadline is - * smaller than our deadline OR we are a !SCHED_DEADLINE task getting - * boosted due to a SCHED_DEADLINE pi-waiter). - * Otherwise we keep our runtime and deadline. - */ - if (pi_task && dl_prio(pi_task->normal_prio) && p->dl.dl_boosted) { - pi_se = &pi_task->dl; + if (is_dl_boosted(&p->dl)) { + /* + * Because of delays in the detection of the overrun of a + * thread's runtime, it might be the case that a thread + * goes to sleep in a rt mutex with negative runtime. As + * a consequence, the thread will be throttled. + * + * While waiting for the mutex, this thread can also be + * boosted via PI, resulting in a thread that is throttled + * and boosted at the same time. + * + * In this case, the boost overrides the throttle. + */ + if (p->dl.dl_throttled) { + /* + * The replenish timer needs to be canceled. No + * problem if it fires concurrently: boosted threads + * are ignored in dl_task_timer(). + */ + hrtimer_try_to_cancel(&p->dl.dl_timer); + p->dl.dl_throttled = 0; + } } else if (!dl_prio(p->normal_prio)) { /* - * Special case in which we have a !SCHED_DEADLINE task - * that is going to be deboosted, but exceeds its - * runtime while doing so. No point in replenishing - * it, as it's going to return back to its original - * scheduling class after this. + * Special case in which we have a !SCHED_DEADLINE task that is going + * to be deboosted, but exceeds its runtime while doing so. No point in + * replenishing it, as it's going to return back to its original + * scheduling class after this. If it has been throttled, we need to + * clear the flag, otherwise the task may wake up as throttled after + * being boosted again with no means to replenish the runtime and clear + * the throttle. */ - BUG_ON(!p->dl.dl_boosted || flags != ENQUEUE_REPLENISH); + p->dl.dl_throttled = 0; + BUG_ON(!is_dl_boosted(&p->dl) || flags != ENQUEUE_REPLENISH); return; } @@ -1529,7 +1559,7 @@ return; } - enqueue_dl_entity(&p->dl, pi_se, flags); + enqueue_dl_entity(&p->dl, flags); if (!task_current(rq, p) && p->nr_cpus_allowed > 1) enqueue_pushable_dl_task(rq, p); @@ -1654,6 +1684,7 @@ */ raw_spin_lock(&rq->lock); if (p->dl.dl_non_contending) { + update_rq_clock(rq); sub_running_bw(&p->dl, &rq->dl); p->dl.dl_non_contending = 0; /* @@ -2392,6 +2423,8 @@ check_preempt_curr_dl(rq, p, 0); else resched_curr(rq); + } else { + update_dl_rq_load_avg(rq_clock_pelt(rq), rq, 0); } } @@ -2620,7 +2653,7 @@ dl_se->dl_runtime = attr->sched_runtime; dl_se->dl_deadline = attr->sched_deadline; dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline; - dl_se->flags = attr->sched_flags; + dl_se->flags = attr->sched_flags & SCHED_DL_FLAGS; dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime); dl_se->dl_density = to_ratio(dl_se->dl_deadline, dl_se->dl_runtime); } @@ -2633,7 +2666,8 @@ attr->sched_runtime = dl_se->dl_runtime; attr->sched_deadline = dl_se->dl_deadline; attr->sched_period = dl_se->dl_period; - attr->sched_flags = dl_se->flags; + attr->sched_flags &= ~SCHED_DL_FLAGS; + attr->sched_flags |= dl_se->flags; } /* @@ -2694,11 +2728,14 @@ dl_se->dl_bw = 0; dl_se->dl_density = 0; - dl_se->dl_boosted = 0; dl_se->dl_throttled = 0; dl_se->dl_yielded = 0; dl_se->dl_non_contending = 0; dl_se->dl_overrun = 0; + +#ifdef CONFIG_RT_MUTEXES + dl_se->pi_se = dl_se; +#endif } bool dl_param_changed(struct task_struct *p, const struct sched_attr *attr) @@ -2708,7 +2745,7 @@ if (dl_se->dl_runtime != attr->sched_runtime || dl_se->dl_deadline != attr->sched_deadline || dl_se->dl_period != attr->sched_period || - dl_se->flags != attr->sched_flags) + dl_se->flags != (attr->sched_flags & SCHED_DL_FLAGS)) return true; return false; diff -u linux-azure-5.4.0/kernel/sched/debug.c linux-azure-5.4.0/kernel/sched/debug.c --- linux-azure-5.4.0/kernel/sched/debug.c +++ linux-azure-5.4.0/kernel/sched/debug.c @@ -847,25 +847,15 @@ static void sched_show_numa(struct task_struct *p, struct seq_file *m) { #ifdef CONFIG_NUMA_BALANCING - struct mempolicy *pol; - if (p->mm) P(mm->numa_scan_seq); - task_lock(p); - pol = p->mempolicy; - if (pol && !(pol->flags & MPOL_F_MORON)) - pol = NULL; - mpol_get(pol); - task_unlock(p); - P(numa_pages_migrated); P(numa_preferred_nid); P(total_numa_faults); SEQ_printf(m, "current_node=%d, numa_group_id=%d\n", task_node(p), task_numa_group_id(p)); show_numa_stats(p, m); - mpol_put(pol); #endif } diff -u linux-azure-5.4.0/kernel/sched/fair.c linux-azure-5.4.0/kernel/sched/fair.c --- linux-azure-5.4.0/kernel/sched/fair.c +++ linux-azure-5.4.0/kernel/sched/fair.c @@ -2927,7 +2927,7 @@ * * tg->weight * grq->load.weight * ge->load.weight = ----------------------------- (1) - * \Sum grq->load.weight + * \Sum grq->load.weight * * Now, because computing that sum is prohibitively expensive to compute (been * there, done that) we approximate it with this average stuff. The average @@ -2941,7 +2941,7 @@ * * tg->weight * grq->avg.load_avg * ge->load.weight = ------------------------------ (3) - * tg->load_avg + * tg->load_avg * * Where: tg->load_avg ~= \Sum grq->avg.load_avg * @@ -2957,7 +2957,7 @@ * * tg->weight * grq->load.weight * ge->load.weight = ----------------------------- = tg->weight (4) - * grp->load.weight + * grp->load.weight * * That is, the sum collapses because all other CPUs are idle; the UP scenario. * @@ -2976,7 +2976,7 @@ * * tg->weight * grq->load.weight * ge->load.weight = ----------------------------- (6) - * tg_load_avg' + * tg_load_avg' * * Where: * @@ -4485,8 +4485,8 @@ cfs_rq->throttle_count--; if (!cfs_rq->throttle_count) { - cfs_rq->throttled_clock_task_time += rq_clock_task(rq) - - cfs_rq->throttled_clock_task; + cfs_rq->throttled_clock_pelt_time += rq_clock_pelt(rq) - + cfs_rq->throttled_clock_pelt; /* Add cfs_rq with already running entity in the list */ if (cfs_rq->nr_running >= 1) @@ -4503,7 +4503,7 @@ /* group is entering throttled state, stop time */ if (!cfs_rq->throttle_count) { - cfs_rq->throttled_clock_task = rq_clock_task(rq); + cfs_rq->throttled_clock_pelt = rq_clock_pelt(rq); list_del_leaf_cfs_rq(cfs_rq); } cfs_rq->throttle_count++; @@ -4786,7 +4786,7 @@ static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire) { struct hrtimer *refresh_timer = &cfs_b->period_timer; - u64 remaining; + s64 remaining; /* if the call-back is running a quota refresh is already occurring */ if (hrtimer_callback_running(refresh_timer)) @@ -4794,7 +4794,7 @@ /* is a quota refresh about to occur? */ remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer)); - if (remaining < min_expire) + if (remaining < (s64)min_expire) return 1; return 0; @@ -4932,7 +4932,7 @@ pcfs_rq = tg->parent->cfs_rq[cpu]; cfs_rq->throttle_count = pcfs_rq->throttle_count; - cfs_rq->throttled_clock_task = rq_clock_task(cpu_rq(cpu)); + cfs_rq->throttled_clock_pelt = rq_clock_pelt(cpu_rq(cpu)); } /* conditionally throttle active cfs_rq's from put_prev_entity() */ @@ -7301,7 +7301,7 @@ return 0; /* Disregard pcpu kthreads; they are where they need to be. */ - if ((p->flags & PF_KTHREAD) && kthread_is_per_cpu(p)) + if (kthread_is_per_cpu(p)) return 0; if (!cpumask_test_cpu(env->dst_cpu, p->cpus_ptr)) { @@ -7660,7 +7660,7 @@ /* Propagate pending load changes to the parent, if any: */ se = cfs_rq->tg->se[cpu]; if (se && !skip_blocked_update(se)) - update_load_avg(cfs_rq_of(se), se, 0); + update_load_avg(cfs_rq_of(se), se, UPDATE_TG); /* * There can be a lot of idle CPU cgroups. Don't let fully diff -u linux-azure-5.4.0/kernel/sched/psi.c linux-azure-5.4.0/kernel/sched/psi.c --- linux-azure-5.4.0/kernel/sched/psi.c +++ linux-azure-5.4.0/kernel/sched/psi.c @@ -1046,7 +1046,6 @@ t->event = 0; t->last_event_time = 0; init_waitqueue_head(&t->event_wait); - kref_init(&t->refcount); mutex_lock(&group->trigger_lock); @@ -1079,15 +1078,19 @@ return t; } -static void psi_trigger_destroy(struct kref *ref) +void psi_trigger_destroy(struct psi_trigger *t) { - struct psi_trigger *t = container_of(ref, struct psi_trigger, refcount); - struct psi_group *group = t->group; + struct psi_group *group; struct kthread_worker *kworker_to_destroy = NULL; - if (static_branch_likely(&psi_disabled)) + /* + * We do not check psi_disabled since it might have been disabled after + * the trigger got created. + */ + if (!t) return; + group = t->group; /* * Wakeup waiters to stop polling. Can happen if cgroup is deleted * from under a polling process. @@ -1122,9 +1125,9 @@ mutex_unlock(&group->trigger_lock); /* - * Wait for both *trigger_ptr from psi_trigger_replace and - * poll_kworker RCUs to complete their read-side critical sections - * before destroying the trigger and optionally the poll_kworker + * Wait for psi_schedule_poll_work RCU to complete its read-side + * critical section before destroying the trigger and optionally the + * poll_task. */ synchronize_rcu(); /* @@ -1146,18 +1149,6 @@ kfree(t); } -void psi_trigger_replace(void **trigger_ptr, struct psi_trigger *new) -{ - struct psi_trigger *old = *trigger_ptr; - - if (static_branch_likely(&psi_disabled)) - return; - - rcu_assign_pointer(*trigger_ptr, new); - if (old) - kref_put(&old->refcount, psi_trigger_destroy); -} - __poll_t psi_trigger_poll(void **trigger_ptr, struct file *file, poll_table *wait) { @@ -1167,24 +1158,15 @@ if (static_branch_likely(&psi_disabled)) return DEFAULT_POLLMASK | EPOLLERR | EPOLLPRI; - rcu_read_lock(); - - t = rcu_dereference(*(void __rcu __force **)trigger_ptr); - if (!t) { - rcu_read_unlock(); + t = smp_load_acquire(trigger_ptr); + if (!t) return DEFAULT_POLLMASK | EPOLLERR | EPOLLPRI; - } - kref_get(&t->refcount); - - rcu_read_unlock(); poll_wait(file, &t->event_wait, wait); if (cmpxchg(&t->event, 1, 0) == 1) ret |= EPOLLPRI; - kref_put(&t->refcount, psi_trigger_destroy); - return ret; } @@ -1208,14 +1190,24 @@ buf[buf_size - 1] = '\0'; - new = psi_trigger_create(&psi_system, buf, nbytes, res); - if (IS_ERR(new)) - return PTR_ERR(new); - seq = file->private_data; + /* Take seq->lock to protect seq->private from concurrent writes */ mutex_lock(&seq->lock); - psi_trigger_replace(&seq->private, new); + + /* Allow only one trigger per file descriptor */ + if (seq->private) { + mutex_unlock(&seq->lock); + return -EBUSY; + } + + new = psi_trigger_create(&psi_system, buf, nbytes, res); + if (IS_ERR(new)) { + mutex_unlock(&seq->lock); + return PTR_ERR(new); + } + + smp_store_release(&seq->private, new); mutex_unlock(&seq->lock); return nbytes; @@ -1250,7 +1242,7 @@ { struct seq_file *seq = file->private_data; - psi_trigger_replace(&seq->private, NULL); + psi_trigger_destroy(seq->private); return single_release(inode, file); } diff -u linux-azure-5.4.0/kernel/sched/rt.c linux-azure-5.4.0/kernel/sched/rt.c --- linux-azure-5.4.0/kernel/sched/rt.c +++ linux-azure-5.4.0/kernel/sched/rt.c @@ -52,11 +52,8 @@ rt_b->rt_period_timer.function = sched_rt_period_timer; } -static void start_rt_bandwidth(struct rt_bandwidth *rt_b) +static inline void do_start_rt_bandwidth(struct rt_bandwidth *rt_b) { - if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF) - return; - raw_spin_lock(&rt_b->rt_runtime_lock); if (!rt_b->rt_period_active) { rt_b->rt_period_active = 1; @@ -75,6 +72,14 @@ raw_spin_unlock(&rt_b->rt_runtime_lock); } +static void start_rt_bandwidth(struct rt_bandwidth *rt_b) +{ + if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF) + return; + + do_start_rt_bandwidth(rt_b); +} + void init_rt_rq(struct rt_rq *rt_rq) { struct rt_prio_array *array; @@ -432,7 +437,7 @@ #endif /* CONFIG_SMP */ static void enqueue_top_rt_rq(struct rt_rq *rt_rq); -static void dequeue_top_rt_rq(struct rt_rq *rt_rq); +static void dequeue_top_rt_rq(struct rt_rq *rt_rq, unsigned int count); static inline int on_rt_rq(struct sched_rt_entity *rt_se) { @@ -514,7 +519,7 @@ rt_se = rt_rq->tg->rt_se[cpu]; if (!rt_se) { - dequeue_top_rt_rq(rt_rq); + dequeue_top_rt_rq(rt_rq, rt_rq->rt_nr_running); /* Kick cpufreq (see the comment in kernel/sched/sched.h). */ cpufreq_update_util(rq_of_rt_rq(rt_rq), 0); } @@ -600,7 +605,7 @@ static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq) { - dequeue_top_rt_rq(rt_rq); + dequeue_top_rt_rq(rt_rq, rt_rq->rt_nr_running); } static inline int rt_rq_throttled(struct rt_rq *rt_rq) @@ -983,19 +988,23 @@ for_each_sched_rt_entity(rt_se) { struct rt_rq *rt_rq = rt_rq_of_se(rt_se); + int exceeded; if (sched_rt_runtime(rt_rq) != RUNTIME_INF) { raw_spin_lock(&rt_rq->rt_runtime_lock); rt_rq->rt_time += delta_exec; - if (sched_rt_runtime_exceeded(rt_rq)) + exceeded = sched_rt_runtime_exceeded(rt_rq); + if (exceeded) resched_curr(rq); raw_spin_unlock(&rt_rq->rt_runtime_lock); + if (exceeded) + do_start_rt_bandwidth(sched_rt_bandwidth(rt_rq)); } } } static void -dequeue_top_rt_rq(struct rt_rq *rt_rq) +dequeue_top_rt_rq(struct rt_rq *rt_rq, unsigned int count) { struct rq *rq = rq_of_rt_rq(rt_rq); @@ -1006,7 +1015,7 @@ BUG_ON(!rq->nr_running); - sub_nr_running(rq, rt_rq->rt_nr_running); + sub_nr_running(rq, count); rt_rq->rt_queued = 0; } @@ -1285,18 +1294,21 @@ static void dequeue_rt_stack(struct sched_rt_entity *rt_se, unsigned int flags) { struct sched_rt_entity *back = NULL; + unsigned int rt_nr_running; for_each_sched_rt_entity(rt_se) { rt_se->back = back; back = rt_se; } - dequeue_top_rt_rq(rt_rq_of_se(back)); + rt_nr_running = rt_rq_of_se(back)->rt_nr_running; for (rt_se = back; rt_se; rt_se = rt_se->back) { if (on_rt_rq(rt_se)) __dequeue_rt_entity(rt_se, flags); } + + dequeue_top_rt_rq(rt_rq_of_se(back), rt_nr_running); } static void enqueue_rt_entity(struct sched_rt_entity *rt_se, unsigned int flags) @@ -2221,13 +2233,20 @@ static void switched_to_rt(struct rq *rq, struct task_struct *p) { /* - * If we are already running, then there's nothing - * that needs to be done. But if we are not running - * we may need to preempt the current running task. - * If that current running task is also an RT task + * If we are running, update the avg_rt tracking, as the running time + * will now on be accounted into the latter. + */ + if (task_current(rq, p)) { + update_rt_rq_load_avg(rq_clock_pelt(rq), rq, 0); + return; + } + + /* + * If we are not running we may need to preempt the current + * running task. If that current running task is also an RT task * then see if we can move to another run queue. */ - if (task_on_rq_queued(p) && rq->curr != p) { + if (task_on_rq_queued(p)) { #ifdef CONFIG_SMP if (p->nr_cpus_allowed > 1 && rq->rt.overloaded) rt_queue_push_tasks(rq); @@ -2652,8 +2671,12 @@ static void sched_rt_do_global(void) { + unsigned long flags; + + raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags); def_rt_bandwidth.rt_runtime = global_rt_runtime(); def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period()); + raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags); } int sched_rt_handler(struct ctl_table *table, int write, diff -u linux-azure-5.4.0/kernel/sched/sched.h linux-azure-5.4.0/kernel/sched/sched.h --- linux-azure-5.4.0/kernel/sched/sched.h +++ linux-azure-5.4.0/kernel/sched/sched.h @@ -209,6 +209,8 @@ */ #define SCHED_FLAG_SUGOV 0x10000000 +#define SCHED_DL_FLAGS (SCHED_FLAG_RECLAIM | SCHED_FLAG_DL_OVERRUN | SCHED_FLAG_SUGOV) + static inline bool dl_entity_is_special(struct sched_dl_entity *dl_se) { #ifdef CONFIG_CPU_FREQ_GOV_SCHEDUTIL @@ -568,8 +570,8 @@ s64 runtime_remaining; u64 throttled_clock; - u64 throttled_clock_task; - u64 throttled_clock_task_time; + u64 throttled_clock_pelt; + u64 throttled_clock_pelt_time; int throttled; int throttle_count; struct list_head throttled_list; diff -u linux-azure-5.4.0/kernel/sched/topology.c linux-azure-5.4.0/kernel/sched/topology.c --- linux-azure-5.4.0/kernel/sched/topology.c +++ linux-azure-5.4.0/kernel/sched/topology.c @@ -1552,66 +1552,58 @@ } } + +#define NR_DISTANCE_VALUES (1 << DISTANCE_BITS) + void sched_init_numa(void) { - int next_distance, curr_distance = node_distance(0, 0); struct sched_domain_topology_level *tl; - int level = 0; - int i, j, k; - - sched_domains_numa_distance = kzalloc(sizeof(int) * (nr_node_ids + 1), GFP_KERNEL); - if (!sched_domains_numa_distance) - return; - - /* Includes NUMA identity node at level 0. */ - sched_domains_numa_distance[level++] = curr_distance; - sched_domains_numa_levels = level; + unsigned long *distance_map; + int nr_levels = 0; + int i, j; /* * O(nr_nodes^2) deduplicating selection sort -- in order to find the * unique distances in the node_distance() table. - * - * Assumes node_distance(0,j) includes all distances in - * node_distance(i,j) in order to avoid cubic time. */ - next_distance = curr_distance; + distance_map = bitmap_alloc(NR_DISTANCE_VALUES, GFP_KERNEL); + if (!distance_map) + return; + + bitmap_zero(distance_map, NR_DISTANCE_VALUES); for (i = 0; i < nr_node_ids; i++) { for (j = 0; j < nr_node_ids; j++) { - for (k = 0; k < nr_node_ids; k++) { - int distance = node_distance(i, k); + int distance = node_distance(i, j); - if (distance > curr_distance && - (distance < next_distance || - next_distance == curr_distance)) - next_distance = distance; - - /* - * While not a strong assumption it would be nice to know - * about cases where if node A is connected to B, B is not - * equally connected to A. - */ - if (sched_debug() && node_distance(k, i) != distance) - sched_numa_warn("Node-distance not symmetric"); - - if (sched_debug() && i && !find_numa_distance(distance)) - sched_numa_warn("Node-0 not representative"); + if (distance < LOCAL_DISTANCE || distance >= NR_DISTANCE_VALUES) { + sched_numa_warn("Invalid distance value range"); + return; } - if (next_distance != curr_distance) { - sched_domains_numa_distance[level++] = next_distance; - sched_domains_numa_levels = level; - curr_distance = next_distance; - } else break; + + bitmap_set(distance_map, distance, 1); } + } + /* + * We can now figure out how many unique distance values there are and + * allocate memory accordingly. + */ + nr_levels = bitmap_weight(distance_map, NR_DISTANCE_VALUES); - /* - * In case of sched_debug() we verify the above assumption. - */ - if (!sched_debug()) - break; + sched_domains_numa_distance = kcalloc(nr_levels, sizeof(int), GFP_KERNEL); + if (!sched_domains_numa_distance) { + bitmap_free(distance_map); + return; } + for (i = 0, j = 0; i < nr_levels; i++, j++) { + j = find_next_bit(distance_map, NR_DISTANCE_VALUES, j); + sched_domains_numa_distance[i] = j; + } + + bitmap_free(distance_map); + /* - * 'level' contains the number of unique distances + * 'nr_levels' contains the number of unique distances * * The sched_domains_numa_distance[] array includes the actual distance * numbers. @@ -1620,15 +1612,15 @@ /* * Here, we should temporarily reset sched_domains_numa_levels to 0. * If it fails to allocate memory for array sched_domains_numa_masks[][], - * the array will contain less then 'level' members. This could be + * the array will contain less then 'nr_levels' members. This could be * dangerous when we use it to iterate array sched_domains_numa_masks[][] * in other functions. * - * We reset it to 'level' at the end of this function. + * We reset it to 'nr_levels' at the end of this function. */ sched_domains_numa_levels = 0; - sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL); + sched_domains_numa_masks = kzalloc(sizeof(void *) * nr_levels, GFP_KERNEL); if (!sched_domains_numa_masks) return; @@ -1636,7 +1628,7 @@ * Now for each level, construct a mask per node which contains all * CPUs of nodes that are that many hops away from us. */ - for (i = 0; i < level; i++) { + for (i = 0; i < nr_levels; i++) { sched_domains_numa_masks[i] = kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL); if (!sched_domains_numa_masks[i]) @@ -1644,12 +1636,17 @@ for (j = 0; j < nr_node_ids; j++) { struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL); + int k; + if (!mask) return; sched_domains_numa_masks[i][j] = mask; for_each_node(k) { + if (sched_debug() && (node_distance(j, k) != node_distance(k, j))) + sched_numa_warn("Node-distance not symmetric"); + if (node_distance(j, k) > sched_domains_numa_distance[i]) continue; @@ -1661,7 +1658,7 @@ /* Compute default topology size */ for (i = 0; sched_domain_topology[i].mask; i++); - tl = kzalloc((i + level + 1) * + tl = kzalloc((i + nr_levels + 1) * sizeof(struct sched_domain_topology_level), GFP_KERNEL); if (!tl) return; @@ -1684,7 +1681,7 @@ /* * .. and append 'j' levels of NUMA goodness. */ - for (j = 1; j < level; i++, j++) { + for (j = 1; j < nr_levels; i++, j++) { tl[i] = (struct sched_domain_topology_level){ .mask = sd_numa_mask, .sd_flags = cpu_numa_flags, @@ -1696,8 +1693,8 @@ sched_domain_topology = tl; - sched_domains_numa_levels = level; - sched_max_numa_distance = sched_domains_numa_distance[level - 1]; + sched_domains_numa_levels = nr_levels; + sched_max_numa_distance = sched_domains_numa_distance[nr_levels - 1]; init_numa_topology_type(); } diff -u linux-azure-5.4.0/kernel/seccomp.c linux-azure-5.4.0/kernel/seccomp.c --- linux-azure-5.4.0/kernel/seccomp.c +++ linux-azure-5.4.0/kernel/seccomp.c @@ -28,6 +28,9 @@ #include #include +/* Not exposed in headers: strictly internal use only. */ +#define SECCOMP_MODE_DEAD (SECCOMP_MODE_FILTER + 1) + #ifdef CONFIG_HAVE_ARCH_SECCOMP_FILTER #include #endif @@ -707,6 +710,7 @@ #ifdef SECCOMP_DEBUG dump_stack(); #endif + current->seccomp.mode = SECCOMP_MODE_DEAD; seccomp_log(this_syscall, SIGKILL, SECCOMP_RET_KILL_THREAD, true); do_exit(SIGKILL); } @@ -903,6 +907,7 @@ case SECCOMP_RET_KILL_THREAD: case SECCOMP_RET_KILL_PROCESS: default: + current->seccomp.mode = SECCOMP_MODE_DEAD; seccomp_log(this_syscall, SIGSYS, action, true); /* Dump core only if this is the last remaining thread. */ if (action == SECCOMP_RET_KILL_PROCESS || @@ -955,6 +960,11 @@ return 0; case SECCOMP_MODE_FILTER: return __seccomp_filter(this_syscall, sd, false); + /* Surviving SECCOMP_RET_KILL_* must be proactively impossible. */ + case SECCOMP_MODE_DEAD: + WARN_ON_ONCE(1); + do_exit(SIGKILL); + return -1; default: BUG(); } diff -u linux-azure-5.4.0/kernel/signal.c linux-azure-5.4.0/kernel/signal.c --- linux-azure-5.4.0/kernel/signal.c +++ linux-azure-5.4.0/kernel/signal.c @@ -1916,12 +1916,12 @@ bool autoreap = false; u64 utime, stime; - BUG_ON(sig == -1); + WARN_ON_ONCE(sig == -1); - /* do_notify_parent_cldstop should have been called instead. */ - BUG_ON(task_is_stopped_or_traced(tsk)); + /* do_notify_parent_cldstop should have been called instead. */ + WARN_ON_ONCE(task_is_stopped_or_traced(tsk)); - BUG_ON(!tsk->ptrace && + WARN_ON_ONCE(!tsk->ptrace && (tsk->group_leader != tsk || !thread_group_empty(tsk))); /* Wake up all pidfd waiters */ @@ -2101,15 +2101,6 @@ return true; } -/* - * Return non-zero if there is a SIGKILL that should be waking us up. - * Called with the siglock held. - */ -static bool sigkill_pending(struct task_struct *tsk) -{ - return sigismember(&tsk->pending.signal, SIGKILL) || - sigismember(&tsk->signal->shared_pending.signal, SIGKILL); -} /* * This must be called with current->sighand->siglock held. @@ -2136,17 +2127,16 @@ * calling arch_ptrace_stop, so we must release it now. * To preserve proper semantics, we must do this before * any signal bookkeeping like checking group_stop_count. - * Meanwhile, a SIGKILL could come in before we retake the - * siglock. That must prevent us from sleeping in TASK_TRACED. - * So after regaining the lock, we must check for SIGKILL. */ spin_unlock_irq(¤t->sighand->siglock); arch_ptrace_stop(exit_code, info); spin_lock_irq(¤t->sighand->siglock); - if (sigkill_pending(current)) - return; } + /* + * schedule() will not sleep if there is a pending signal that + * can awaken the task. + */ set_special_state(TASK_TRACED); /* diff -u linux-azure-5.4.0/kernel/smp.c linux-azure-5.4.0/kernel/smp.c --- linux-azure-5.4.0/kernel/smp.c +++ linux-azure-5.4.0/kernel/smp.c @@ -222,7 +222,7 @@ /* There shouldn't be any pending callbacks on an offline CPU. */ if (unlikely(warn_cpu_offline && !cpu_online(smp_processor_id()) && - !warned && !llist_empty(head))) { + !warned && entry != NULL)) { warned = true; WARN(1, "IPI on offline CPU %d\n", smp_processor_id()); diff -u linux-azure-5.4.0/kernel/sys.c linux-azure-5.4.0/kernel/sys.c --- linux-azure-5.4.0/kernel/sys.c +++ linux-azure-5.4.0/kernel/sys.c @@ -1943,13 +1943,6 @@ error = -EINVAL; /* - * @brk should be after @end_data in traditional maps. - */ - if (prctl_map->start_brk <= prctl_map->end_data || - prctl_map->brk <= prctl_map->end_data) - goto out; - - /* * Neither we should allow to override limits if they set. */ if (check_data_rlimit(rlimit(RLIMIT_DATA), prctl_map->brk, diff -u linux-azure-5.4.0/kernel/sysctl.c linux-azure-5.4.0/kernel/sysctl.c --- linux-azure-5.4.0/kernel/sysctl.c +++ linux-azure-5.4.0/kernel/sysctl.c @@ -253,6 +253,36 @@ #endif +#ifdef CONFIG_BPF_SYSCALL + +void __weak unpriv_ebpf_notify(int new_state) +{ +} + +static int bpf_unpriv_handler(struct ctl_table *table, int write, + void *buffer, size_t *lenp, loff_t *ppos) +{ + int ret, unpriv_enable = *(int *)table->data; + bool locked_state = unpriv_enable == 1; + struct ctl_table tmp = *table; + + if (write && !capable(CAP_SYS_ADMIN)) + return -EPERM; + + tmp.data = &unpriv_enable; + ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos); + if (write && !ret) { + if (locked_state && unpriv_enable != 1) + return -EPERM; + *(int *)table->data = unpriv_enable; + } + + unpriv_ebpf_notify(unpriv_enable); + + return ret; +} +#endif + static struct ctl_table kern_table[]; static struct ctl_table vm_table[]; static struct ctl_table fs_table[]; @@ -1267,10 +1297,9 @@ .data = &sysctl_unprivileged_bpf_disabled, .maxlen = sizeof(sysctl_unprivileged_bpf_disabled), .mode = 0644, - /* only handle a transition from default "0" to "1" */ - .proc_handler = proc_dointvec_minmax, - .extra1 = SYSCTL_ONE, - .extra2 = SYSCTL_ONE, + .proc_handler = bpf_unpriv_handler, + .extra1 = SYSCTL_ZERO, + .extra2 = &two, }, { .procname = "bpf_stats_enabled", @@ -1426,6 +1455,17 @@ .extra1 = SYSCTL_ZERO, .extra2 = &one_hundred, }, +#ifdef CONFIG_NUMA + { + .procname = "numa_stat", + .data = &sysctl_vm_numa_stat, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = sysctl_vm_numa_stat_handler, + .extra1 = SYSCTL_ZERO, + .extra2 = SYSCTL_ONE, + }, +#endif #ifdef CONFIG_HUGETLB_PAGE { .procname = "nr_hugepages", @@ -1442,15 +1482,6 @@ .mode = 0644, .proc_handler = &hugetlb_mempolicy_sysctl_handler, }, - { - .procname = "numa_stat", - .data = &sysctl_vm_numa_stat, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = sysctl_vm_numa_stat_handler, - .extra1 = SYSCTL_ZERO, - .extra2 = SYSCTL_ONE, - }, #endif { .procname = "hugetlb_shm_group", diff -u linux-azure-5.4.0/kernel/time/clocksource.c linux-azure-5.4.0/kernel/time/clocksource.c --- linux-azure-5.4.0/kernel/time/clocksource.c +++ linux-azure-5.4.0/kernel/time/clocksource.c @@ -124,6 +124,13 @@ #define WATCHDOG_INTERVAL (HZ >> 1) #define WATCHDOG_THRESHOLD (NSEC_PER_SEC >> 4) +/* + * Maximum permissible delay between two readouts of the watchdog + * clocksource surrounding a read of the clocksource being validated. + * This delay could be due to SMIs, NMIs, or to VCPU preemptions. + */ +#define WATCHDOG_MAX_SKEW (100 * NSEC_PER_USEC) + static void clocksource_watchdog_work(struct work_struct *work) { /* @@ -184,12 +191,45 @@ spin_unlock_irqrestore(&watchdog_lock, flags); } +static ulong max_cswd_read_retries = 3; +module_param(max_cswd_read_retries, ulong, 0644); + +static bool cs_watchdog_read(struct clocksource *cs, u64 *csnow, u64 *wdnow) +{ + unsigned int nretries; + u64 wd_end, wd_delta; + int64_t wd_delay; + + for (nretries = 0; nretries <= max_cswd_read_retries; nretries++) { + local_irq_disable(); + *wdnow = watchdog->read(watchdog); + *csnow = cs->read(cs); + wd_end = watchdog->read(watchdog); + local_irq_enable(); + + wd_delta = clocksource_delta(wd_end, *wdnow, watchdog->mask); + wd_delay = clocksource_cyc2ns(wd_delta, watchdog->mult, + watchdog->shift); + if (wd_delay <= WATCHDOG_MAX_SKEW) { + if (nretries > 1 || nretries >= max_cswd_read_retries) { + pr_warn("timekeeping watchdog on CPU%d: %s retried %d times before success\n", + smp_processor_id(), watchdog->name, nretries); + } + return true; + } + } + + pr_warn("timekeeping watchdog on CPU%d: %s read-back delay of %lldns, attempt %d, marking unstable\n", + smp_processor_id(), watchdog->name, wd_delay, nretries); + return false; +} + static void clocksource_watchdog(struct timer_list *unused) { - struct clocksource *cs; u64 csnow, wdnow, cslast, wdlast, delta; - int64_t wd_nsec, cs_nsec; int next_cpu, reset_pending; + int64_t wd_nsec, cs_nsec; + struct clocksource *cs; spin_lock(&watchdog_lock); if (!watchdog_running) @@ -206,10 +246,11 @@ continue; } - local_irq_disable(); - csnow = cs->read(cs); - wdnow = watchdog->read(watchdog); - local_irq_enable(); + if (!cs_watchdog_read(cs, &csnow, &wdnow)) { + /* Clock readout unreliable, so give it up. */ + __clocksource_unstable(cs); + continue; + } /* Clocksource initialized ? */ if (!(cs->flags & CLOCK_SOURCE_WATCHDOG) || diff -u linux-azure-5.4.0/kernel/time/hrtimer.c linux-azure-5.4.0/kernel/time/hrtimer.c --- linux-azure-5.4.0/kernel/time/hrtimer.c +++ linux-azure-5.4.0/kernel/time/hrtimer.c @@ -759,22 +759,6 @@ retrigger_next_event(NULL); } -static void clock_was_set_work(struct work_struct *work) -{ - clock_was_set(); -} - -static DECLARE_WORK(hrtimer_work, clock_was_set_work); - -/* - * Called from timekeeping and resume code to reprogram the hrtimer - * interrupt device on all cpus. - */ -void clock_was_set_delayed(void) -{ - schedule_work(&hrtimer_work); -} - #else static inline int hrtimer_is_hres_enabled(void) { return 0; } @@ -892,6 +876,22 @@ timerfd_clock_was_set(); } +static void clock_was_set_work(struct work_struct *work) +{ + clock_was_set(); +} + +static DECLARE_WORK(hrtimer_work, clock_was_set_work); + +/* + * Called from timekeeping and resume code to reprogram the hrtimer + * interrupt device on all cpus and to notify timerfd. + */ +void clock_was_set_delayed(void) +{ + schedule_work(&hrtimer_work); +} + /* * During resume we might have to reprogram the high resolution timer * interrupt on all online CPUs. However, all other CPUs will be @@ -1031,12 +1031,13 @@ * remove hrtimer, called with base lock held */ static inline int -remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base, bool restart) +remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base, + bool restart, bool keep_local) { u8 state = timer->state; if (state & HRTIMER_STATE_ENQUEUED) { - int reprogram; + bool reprogram; /* * Remove the timer and force reprogramming when high @@ -1049,8 +1050,16 @@ debug_deactivate(timer); reprogram = base->cpu_base == this_cpu_ptr(&hrtimer_bases); + /* + * If the timer is not restarted then reprogramming is + * required if the timer is local. If it is local and about + * to be restarted, avoid programming it twice (on removal + * and a moment later when it's requeued). + */ if (!restart) state = HRTIMER_STATE_INACTIVE; + else + reprogram &= !keep_local; __remove_hrtimer(timer, base, state, reprogram); return 1; @@ -1104,9 +1113,31 @@ struct hrtimer_clock_base *base) { struct hrtimer_clock_base *new_base; + bool force_local, first; - /* Remove an active timer from the queue: */ - remove_hrtimer(timer, base, true); + /* + * If the timer is on the local cpu base and is the first expiring + * timer then this might end up reprogramming the hardware twice + * (on removal and on enqueue). To avoid that by prevent the + * reprogram on removal, keep the timer local to the current CPU + * and enforce reprogramming after it is queued no matter whether + * it is the new first expiring timer again or not. + */ + force_local = base->cpu_base == this_cpu_ptr(&hrtimer_bases); + force_local &= base->cpu_base->next_timer == timer; + + /* + * Remove an active timer from the queue. In case it is not queued + * on the current CPU, make sure that remove_hrtimer() updates the + * remote data correctly. + * + * If it's on the current CPU and the first expiring timer, then + * skip reprogramming, keep the timer local and enforce + * reprogramming later if it was the first expiring timer. This + * avoids programming the underlying clock event twice (once at + * removal and once after enqueue). + */ + remove_hrtimer(timer, base, true, force_local); if (mode & HRTIMER_MODE_REL) tim = ktime_add_safe(tim, base->get_time()); @@ -1116,9 +1147,24 @@ hrtimer_set_expires_range_ns(timer, tim, delta_ns); /* Switch the timer base, if necessary: */ - new_base = switch_hrtimer_base(timer, base, mode & HRTIMER_MODE_PINNED); - - return enqueue_hrtimer(timer, new_base, mode); + if (!force_local) { + new_base = switch_hrtimer_base(timer, base, + mode & HRTIMER_MODE_PINNED); + } else { + new_base = base; + } + + first = enqueue_hrtimer(timer, new_base, mode); + if (!force_local) + return first; + + /* + * Timer was forced to stay on the current CPU to avoid + * reprogramming on removal and enqueue. Force reprogram the + * hardware by evaluating the new first expiring timer. + */ + hrtimer_force_reprogram(new_base->cpu_base, 1); + return 0; } /** @@ -1184,7 +1230,7 @@ base = lock_hrtimer_base(timer, &flags); if (!hrtimer_callback_running(timer)) - ret = remove_hrtimer(timer, base, false); + ret = remove_hrtimer(timer, base, false, false); unlock_hrtimer_base(timer, &flags); diff -u linux-azure-5.4.0/kernel/time/tick-sched.c linux-azure-5.4.0/kernel/time/tick-sched.c --- linux-azure-5.4.0/kernel/time/tick-sched.c +++ linux-azure-5.4.0/kernel/time/tick-sched.c @@ -131,7 +131,7 @@ */ if (unlikely(tick_do_timer_cpu == TICK_DO_TIMER_NONE)) { #ifdef CONFIG_NO_HZ_FULL - WARN_ON(tick_nohz_full_running); + WARN_ON_ONCE(tick_nohz_full_running); #endif tick_do_timer_cpu = cpu; } diff -u linux-azure-5.4.0/kernel/time/timekeeping.c linux-azure-5.4.0/kernel/time/timekeeping.c --- linux-azure-5.4.0/kernel/time/timekeeping.c +++ linux-azure-5.4.0/kernel/time/timekeeping.c @@ -17,11 +17,13 @@ #include #include #include +#include #include #include #include #include #include +#include #include "tick-internal.h" #include "ntp_internal.h" @@ -1236,8 +1238,7 @@ timekeeping_forward_now(tk); xt = tk_xtime(tk); - ts_delta.tv_sec = ts->tv_sec - xt.tv_sec; - ts_delta.tv_nsec = ts->tv_nsec - xt.tv_nsec; + ts_delta = timespec64_sub(*ts, xt); if (timespec64_compare(&tk->wall_to_monotonic, &ts_delta) > 0) { ret = -EINVAL; @@ -1256,8 +1257,10 @@ /* signal hrtimers about time change */ clock_was_set(); - if (!ret) + if (!ret) { audit_tk_injoffset(ts_delta); + add_device_randomness(ts, sizeof(*ts)); + } return ret; } @@ -2305,6 +2308,20 @@ return 0; } +/** + * random_get_entropy_fallback - Returns the raw clock source value, + * used by random.c for platforms with no valid random_get_entropy(). + */ +unsigned long random_get_entropy_fallback(void) +{ + struct tk_read_base *tkr = &tk_core.timekeeper.tkr_mono; + struct clocksource *clock = READ_ONCE(tkr->clock); + + if (unlikely(timekeeping_suspended || !clock)) + return 0; + return clock->read(clock); +} +EXPORT_SYMBOL_GPL(random_get_entropy_fallback); /** * do_adjtimex() - Accessor function to NTP __do_adjtimex function @@ -2322,6 +2339,7 @@ ret = timekeeping_validate_timex(txc); if (ret) return ret; + add_device_randomness(txc, sizeof(*txc)); if (txc->modes & ADJ_SETOFFSET) { struct timespec64 delta; @@ -2339,6 +2357,7 @@ audit_ntp_init(&ad); ktime_get_real_ts64(&ts); + add_device_randomness(&ts, sizeof(ts)); raw_spin_lock_irqsave(&timekeeper_lock, flags); write_seqcount_begin(&tk_core.seq); diff -u linux-azure-5.4.0/kernel/time/timer.c linux-azure-5.4.0/kernel/time/timer.c --- linux-azure-5.4.0/kernel/time/timer.c +++ linux-azure-5.4.0/kernel/time/timer.c @@ -1269,8 +1269,10 @@ static void timer_sync_wait_running(struct timer_base *base) { if (atomic_read(&base->timer_waiters)) { + raw_spin_unlock_irq(&base->lock); spin_unlock(&base->expiry_lock); spin_lock(&base->expiry_lock); + raw_spin_lock_irq(&base->lock); } } @@ -1454,14 +1456,14 @@ if (timer->flags & TIMER_IRQSAFE) { raw_spin_unlock(&base->lock); call_timer_fn(timer, fn, baseclk); - base->running_timer = NULL; raw_spin_lock(&base->lock); + base->running_timer = NULL; } else { raw_spin_unlock_irq(&base->lock); call_timer_fn(timer, fn, baseclk); + raw_spin_lock_irq(&base->lock); base->running_timer = NULL; timer_sync_wait_running(base); - raw_spin_lock_irq(&base->lock); } } } diff -u linux-azure-5.4.0/kernel/trace/blktrace.c linux-azure-5.4.0/kernel/trace/blktrace.c --- linux-azure-5.4.0/kernel/trace/blktrace.c +++ linux-azure-5.4.0/kernel/trace/blktrace.c @@ -1656,6 +1656,14 @@ if (bt == NULL) return -EINVAL; + if (bt->trace_state == Blktrace_running) { + bt->trace_state = Blktrace_stopped; + spin_lock_irq(&running_trace_lock); + list_del_init(&bt->running_list); + spin_unlock_irq(&running_trace_lock); + relay_flush(bt->rchan); + } + put_probe_ref(); synchronize_rcu(); blk_trace_free(bt); diff -u linux-azure-5.4.0/kernel/trace/bpf_trace.c linux-azure-5.4.0/kernel/trace/bpf_trace.c --- linux-azure-5.4.0/kernel/trace/bpf_trace.c +++ linux-azure-5.4.0/kernel/trace/bpf_trace.c @@ -138,24 +138,125 @@ }; #endif -BPF_CALL_3(bpf_probe_read, void *, dst, u32, size, const void *, unsafe_ptr) +BPF_CALL_3(bpf_probe_read_user, void *, dst, u32, size, + const void __user *, unsafe_ptr) { - int ret; + int ret = probe_user_read(dst, unsafe_ptr, size); - ret = security_locked_down(LOCKDOWN_BPF_READ); - if (ret < 0) - goto out; + if (unlikely(ret < 0)) + memset(dst, 0, size); + + return ret; +} + +static const struct bpf_func_proto bpf_probe_read_user_proto = { + .func = bpf_probe_read_user, + .gpl_only = true, + .ret_type = RET_INTEGER, + .arg1_type = ARG_PTR_TO_UNINIT_MEM, + .arg2_type = ARG_CONST_SIZE_OR_ZERO, + .arg3_type = ARG_ANYTHING, +}; + +BPF_CALL_3(bpf_probe_read_user_str, void *, dst, u32, size, + const void __user *, unsafe_ptr) +{ + int ret = strncpy_from_unsafe_user(dst, unsafe_ptr, size); - ret = probe_kernel_read(dst, unsafe_ptr, size); + if (unlikely(ret < 0)) + memset(dst, 0, size); + + return ret; +} + +static const struct bpf_func_proto bpf_probe_read_user_str_proto = { + .func = bpf_probe_read_user_str, + .gpl_only = true, + .ret_type = RET_INTEGER, + .arg1_type = ARG_PTR_TO_UNINIT_MEM, + .arg2_type = ARG_CONST_SIZE_OR_ZERO, + .arg3_type = ARG_ANYTHING, +}; + +static __always_inline int +bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr, + const bool compat) +{ + int ret = security_locked_down(LOCKDOWN_BPF_READ); + + if (unlikely(ret < 0)) + goto out; + ret = compat ? probe_kernel_read(dst, unsafe_ptr, size) : + probe_kernel_read_strict(dst, unsafe_ptr, size); if (unlikely(ret < 0)) out: memset(dst, 0, size); + return ret; +} + +BPF_CALL_3(bpf_probe_read_kernel, void *, dst, u32, size, + const void *, unsafe_ptr) +{ + return bpf_probe_read_kernel_common(dst, size, unsafe_ptr, false); +} + +static const struct bpf_func_proto bpf_probe_read_kernel_proto = { + .func = bpf_probe_read_kernel, + .gpl_only = true, + .ret_type = RET_INTEGER, + .arg1_type = ARG_PTR_TO_UNINIT_MEM, + .arg2_type = ARG_CONST_SIZE_OR_ZERO, + .arg3_type = ARG_ANYTHING, +}; + +BPF_CALL_3(bpf_probe_read_compat, void *, dst, u32, size, + const void *, unsafe_ptr) +{ + return bpf_probe_read_kernel_common(dst, size, unsafe_ptr, true); +} + +static const struct bpf_func_proto bpf_probe_read_compat_proto = { + .func = bpf_probe_read_compat, + .gpl_only = true, + .ret_type = RET_INTEGER, + .arg1_type = ARG_PTR_TO_UNINIT_MEM, + .arg2_type = ARG_CONST_SIZE_OR_ZERO, + .arg3_type = ARG_ANYTHING, +}; +static __always_inline int +bpf_probe_read_kernel_str_common(void *dst, u32 size, const void *unsafe_ptr, + const bool compat) +{ + int ret = security_locked_down(LOCKDOWN_BPF_READ); + + if (unlikely(ret < 0)) + goto out; + /* + * The strncpy_from_unsafe_*() call will likely not fill the entire + * buffer, but that's okay in this circumstance as we're probing + * arbitrary memory anyway similar to bpf_probe_read_*() and might + * as well probe the stack. Thus, memory is explicitly cleared + * only in error case, so that improper users ignoring return + * code altogether don't copy garbage; otherwise length of string + * is returned that can be used for bpf_perf_event_output() et al. + */ + ret = compat ? strncpy_from_unsafe(dst, unsafe_ptr, size) : + strncpy_from_unsafe_strict(dst, unsafe_ptr, size); + if (unlikely(ret < 0)) +out: + memset(dst, 0, size); return ret; } -static const struct bpf_func_proto bpf_probe_read_proto = { - .func = bpf_probe_read, +BPF_CALL_3(bpf_probe_read_kernel_str, void *, dst, u32, size, + const void *, unsafe_ptr) +{ + return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr, false); +} + +static const struct bpf_func_proto bpf_probe_read_kernel_str_proto = { + .func = bpf_probe_read_kernel_str, .gpl_only = true, .ret_type = RET_INTEGER, .arg1_type = ARG_PTR_TO_UNINIT_MEM, @@ -163,6 +264,21 @@ .arg3_type = ARG_ANYTHING, }; +BPF_CALL_3(bpf_probe_read_compat_str, void *, dst, u32, size, + const void *, unsafe_ptr) +{ + return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr, true); +} + +static const struct bpf_func_proto bpf_probe_read_compat_str_proto = { + .func = bpf_probe_read_compat_str, + .gpl_only = true, + .ret_type = RET_INTEGER, + .arg1_type = ARG_PTR_TO_UNINIT_MEM, + .arg2_type = ARG_CONST_SIZE_OR_ZERO, + .arg3_type = ARG_ANYTHING, +}; + BPF_CALL_3(bpf_probe_write_user, void __user *, unsafe_ptr, const void *, src, u32, size) { @@ -583,41 +699,6 @@ .arg2_type = ARG_ANYTHING, }; -BPF_CALL_3(bpf_probe_read_str, void *, dst, u32, size, - const void *, unsafe_ptr) -{ - int ret; - - ret = security_locked_down(LOCKDOWN_BPF_READ); - if (ret < 0) - goto out; - - /* - * The strncpy_from_unsafe() call will likely not fill the entire - * buffer, but that's okay in this circumstance as we're probing - * arbitrary memory anyway similar to bpf_probe_read() and might - * as well probe the stack. Thus, memory is explicitly cleared - * only in error case, so that improper users ignoring return - * code altogether don't copy garbage; otherwise length of string - * is returned that can be used for bpf_perf_event_output() et al. - */ - ret = strncpy_from_unsafe(dst, unsafe_ptr, size); - if (unlikely(ret < 0)) -out: - memset(dst, 0, size); - - return ret; -} - -static const struct bpf_func_proto bpf_probe_read_str_proto = { - .func = bpf_probe_read_str, - .gpl_only = true, - .ret_type = RET_INTEGER, - .arg1_type = ARG_PTR_TO_UNINIT_MEM, - .arg2_type = ARG_CONST_SIZE_OR_ZERO, - .arg3_type = ARG_ANYTHING, -}; - struct send_signal_irq_work { struct irq_work irq_work; struct task_struct *task; @@ -697,8 +778,6 @@ return &bpf_map_pop_elem_proto; case BPF_FUNC_map_peek_elem: return &bpf_map_peek_elem_proto; - case BPF_FUNC_probe_read: - return &bpf_probe_read_proto; case BPF_FUNC_ktime_get_ns: return &bpf_ktime_get_ns_proto; case BPF_FUNC_tail_call: @@ -725,8 +804,18 @@ return &bpf_current_task_under_cgroup_proto; case BPF_FUNC_get_prandom_u32: return &bpf_get_prandom_u32_proto; + case BPF_FUNC_probe_read_user: + return &bpf_probe_read_user_proto; + case BPF_FUNC_probe_read_kernel: + return &bpf_probe_read_kernel_proto; + case BPF_FUNC_probe_read: + return &bpf_probe_read_compat_proto; + case BPF_FUNC_probe_read_user_str: + return &bpf_probe_read_user_str_proto; + case BPF_FUNC_probe_read_kernel_str: + return &bpf_probe_read_kernel_str_proto; case BPF_FUNC_probe_read_str: - return &bpf_probe_read_str_proto; + return &bpf_probe_read_compat_str_proto; #ifdef CONFIG_CGROUPS case BPF_FUNC_get_current_cgroup_id: return &bpf_get_current_cgroup_id_proto; @@ -1397,7 +1486,8 @@ if (prog->aux->max_tp_access > btp->writable_size) return -EINVAL; - return tracepoint_probe_register(tp, (void *)btp->bpf_func, prog); + return tracepoint_probe_register_may_exist(tp, (void *)btp->bpf_func, + prog); } int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog) diff -u linux-azure-5.4.0/kernel/trace/ftrace.c linux-azure-5.4.0/kernel/trace/ftrace.c --- linux-azure-5.4.0/kernel/trace/ftrace.c +++ linux-azure-5.4.0/kernel/trace/ftrace.c @@ -1953,12 +1953,18 @@ static void print_ip_ins(const char *fmt, const unsigned char *p) { + char ins[MCOUNT_INSN_SIZE]; int i; + if (probe_kernel_read(ins, p, MCOUNT_INSN_SIZE)) { + printk(KERN_CONT "%s[FAULT] %px\n", fmt, p); + return; + } + printk(KERN_CONT "%s", fmt); for (i = 0; i < MCOUNT_INSN_SIZE; i++) - printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]); + printk(KERN_CONT "%s%02x", i ? ":" : "", ins[i]); } enum ftrace_bug_type ftrace_bug_type; @@ -2514,14 +2520,14 @@ } static int -ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec) +ftrace_nop_initialize(struct module *mod, struct dyn_ftrace *rec) { int ret; if (unlikely(ftrace_disabled)) return 0; - ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR); + ret = ftrace_init_nop(mod, rec); if (ret) { ftrace_bug_type = FTRACE_BUG_INIT; ftrace_bug(ret, rec); @@ -2726,6 +2732,16 @@ ftrace_startup_enable(command); + /* + * If ftrace is in an undefined state, we just remove ops from list + * to prevent the NULL pointer, instead of totally rolling it back and + * free trampoline, because those actions could cause further damage. + */ + if (unlikely(ftrace_disabled)) { + __unregister_ftrace_function(ops); + return -ENODEV; + } + ops->flags &= ~FTRACE_OPS_FL_ADDING; return 0; @@ -2963,7 +2979,7 @@ * to the NOP instructions. */ if (!__is_defined(CC_USING_NOP_MCOUNT) && - !ftrace_code_disable(mod, p)) + !ftrace_nop_initialize(mod, p)) break; update_cnt++; @@ -5068,8 +5084,12 @@ if (filter_hash) { orig_hash = &iter->ops->func_hash->filter_hash; - if (iter->tr && !list_empty(&iter->tr->mod_trace)) - iter->hash->flags |= FTRACE_HASH_FL_MOD; + if (iter->tr) { + if (list_empty(&iter->tr->mod_trace)) + iter->hash->flags &= ~FTRACE_HASH_FL_MOD; + else + iter->hash->flags |= FTRACE_HASH_FL_MOD; + } } else orig_hash = &iter->ops->func_hash->notrace_hash; @@ -6330,7 +6350,7 @@ struct ftrace_ops *op; int bit; - bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX); + bit = trace_test_and_set_recursion(TRACE_LIST_START); if (bit < 0) return; @@ -6405,7 +6425,7 @@ { int bit; - bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX); + bit = trace_test_and_set_recursion(TRACE_LIST_START); if (bit < 0) return; diff -u linux-azure-5.4.0/kernel/trace/ring_buffer.c linux-azure-5.4.0/kernel/trace/ring_buffer.c --- linux-azure-5.4.0/kernel/trace/ring_buffer.c +++ linux-azure-5.4.0/kernel/trace/ring_buffer.c @@ -568,8 +568,9 @@ struct rb_irq_work *rbwork = container_of(work, struct rb_irq_work, work); wake_up_all(&rbwork->waiters); - if (rbwork->wakeup_full) { + if (rbwork->full_waiters_pending || rbwork->wakeup_full) { rbwork->wakeup_full = false; + rbwork->full_waiters_pending = false; wake_up_all(&rbwork->full_waiters); } } @@ -662,7 +663,7 @@ nr_pages = cpu_buffer->nr_pages; dirty = ring_buffer_nr_dirty_pages(buffer, cpu); if (!cpu_buffer->shortest_full || - cpu_buffer->shortest_full < full) + cpu_buffer->shortest_full > full) cpu_buffer->shortest_full = full; raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags); if (!pagebusy && @@ -2190,6 +2191,9 @@ /* Mark the rest of the page with padding */ rb_event_set_padding(event); + /* Make sure the padding is visible before the write update */ + smp_wmb(); + /* Set the write back to the previous setting */ local_sub(length, &tail_page->write); return; @@ -2201,6 +2205,9 @@ /* time delta must be non zero */ event->time_delta = 1; + /* Make sure the padding is visible before the tail_page->write update */ + smp_wmb(); + /* Set write to end of buffer */ length = (tail + length) - BUF_PAGE_SIZE; local_sub(length, &tail_page->write); @@ -3221,10 +3228,30 @@ if (unlikely(!head)) return true; - return reader->read == rb_page_commit(reader) && - (commit == reader || - (commit == head && - head->read == rb_page_commit(commit))); + /* Reader should exhaust content in reader page */ + if (reader->read != rb_page_commit(reader)) + return false; + + /* + * If writers are committing on the reader page, knowing all + * committed content has been read, the ring buffer is empty. + */ + if (commit == reader) + return true; + + /* + * If writers are committing on a page other than reader page + * and head page, there should always be content to read. + */ + if (commit != head) + return false; + + /* + * Writers are committing on the head page, we just need + * to care about there're committed data, and the reader will + * swap reader page with head page when it is to read data. + */ + return rb_page_commit(commit) == 0; } /** @@ -3843,6 +3870,33 @@ arch_spin_unlock(&cpu_buffer->lock); local_irq_restore(flags); + /* + * The writer has preempt disable, wait for it. But not forever + * Although, 1 second is pretty much "forever" + */ +#define USECS_WAIT 1000000 + for (nr_loops = 0; nr_loops < USECS_WAIT; nr_loops++) { + /* If the write is past the end of page, a writer is still updating it */ + if (likely(!reader || rb_page_write(reader) <= BUF_PAGE_SIZE)) + break; + + udelay(1); + + /* Get the latest version of the reader write value */ + smp_rmb(); + } + + /* The writer is not moving forward? Something is wrong */ + if (RB_WARN_ON(cpu_buffer, nr_loops == USECS_WAIT)) + reader = NULL; + + /* + * Make sure we see any padding after the write update + * (see rb_reset_tail()) + */ + smp_rmb(); + + return reader; } @@ -4805,7 +4859,15 @@ unsigned int pos = 0; unsigned int size; - if (full) + /* + * If a full page is expected, this can still be returned + * if there's been a previous partial read and the + * rest of the page can be read and the commit page is off + * the reader page. + */ + if (full && + (!read || (len < (commit - read)) || + cpu_buffer->reader_page == cpu_buffer->commit_page)) goto out_unlock; if (len > (commit - read)) diff -u linux-azure-5.4.0/kernel/trace/trace.c linux-azure-5.4.0/kernel/trace/trace.c --- linux-azure-5.4.0/kernel/trace/trace.c +++ linux-azure-5.4.0/kernel/trace/trace.c @@ -219,7 +219,7 @@ static int __init set_trace_boot_options(char *str) { strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE); - return 0; + return 1; } __setup("trace_options=", set_trace_boot_options); @@ -230,12 +230,16 @@ { strlcpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE); trace_boot_clock = trace_boot_clock_buf; - return 0; + return 1; } __setup("trace_clock=", set_trace_boot_clock); static int __init set_tracepoint_printk(char *str) { + /* Ignore the "tp_printk_stop_on_boot" param */ + if (*str == '_') + return 0; + if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0)) tracepoint_printk = 1; return 1; @@ -1011,12 +1015,14 @@ { void *cond_data = NULL; + local_irq_disable(); arch_spin_lock(&tr->max_lock); if (tr->cond_snapshot) cond_data = tr->cond_snapshot->cond_data; arch_spin_unlock(&tr->max_lock); + local_irq_enable(); return cond_data; } @@ -1152,9 +1158,11 @@ goto fail_unlock; } + local_irq_disable(); arch_spin_lock(&tr->max_lock); tr->cond_snapshot = cond_snapshot; arch_spin_unlock(&tr->max_lock); + local_irq_enable(); mutex_unlock(&trace_types_lock); @@ -1181,6 +1189,7 @@ { int ret = 0; + local_irq_disable(); arch_spin_lock(&tr->max_lock); if (!tr->cond_snapshot) @@ -1191,6 +1200,7 @@ } arch_spin_unlock(&tr->max_lock); + local_irq_enable(); return ret; } @@ -1301,10 +1311,12 @@ if (!str) return 0; buf_size = memparse(str, &str); - /* nr_entries can not be zero */ - if (buf_size == 0) - return 0; - trace_buf_size = buf_size; + /* + * nr_entries can not be zero and the startup + * tests require some buffer space. Therefore + * ensure we have at least 4096 bytes of buffer. + */ + trace_buf_size = max(4096UL, buf_size); return 1; } __setup("trace_buf_size=", set_buf_size); @@ -1934,10 +1946,22 @@ } } +/* + * The tgid_map array maps from pid to tgid; i.e. the value stored at index i + * is the tgid last observed corresponding to pid=i. + */ static int *tgid_map; +/* The maximum valid index into tgid_map. */ +static size_t tgid_map_max; + #define SAVED_CMDLINES_DEFAULT 128 #define NO_CMDLINE_MAP UINT_MAX +/* + * Preemption must be disabled before acquiring trace_cmdline_lock. + * The various trace_arrays' max_lock must be acquired in a context + * where interrupt is disabled. + */ static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED; struct saved_cmdlines_buffer { unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1]; @@ -1948,9 +1972,6 @@ }; static struct saved_cmdlines_buffer *savedcmd; -/* temporary disable recording */ -static atomic_t trace_record_taskinfo_disabled __read_mostly; - static inline char *get_saved_cmdlines(int idx) { return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN]; @@ -2153,6 +2174,9 @@ * the lock, but we also don't want to spin * nor do we want to disable interrupts, * so if we miss here, then better luck next time. + * + * This is called within the scheduler and wake up, so interrupts + * had better been disabled and run queue lock been held. */ if (!arch_spin_trylock(&trace_cmdline_lock)) return 0; @@ -2211,24 +2235,41 @@ preempt_enable(); } +static int *trace_find_tgid_ptr(int pid) +{ + /* + * Pairs with the smp_store_release in set_tracer_flag() to ensure that + * if we observe a non-NULL tgid_map then we also observe the correct + * tgid_map_max. + */ + int *map = smp_load_acquire(&tgid_map); + + if (unlikely(!map || pid > tgid_map_max)) + return NULL; + + return &map[pid]; +} + int trace_find_tgid(int pid) { - if (unlikely(!tgid_map || !pid || pid > PID_MAX_DEFAULT)) - return 0; + int *ptr = trace_find_tgid_ptr(pid); - return tgid_map[pid]; + return ptr ? *ptr : 0; } static int trace_save_tgid(struct task_struct *tsk) { + int *ptr; + /* treat recording of idle task as a success */ if (!tsk->pid) return 1; - if (unlikely(!tgid_map || tsk->pid > PID_MAX_DEFAULT)) + ptr = trace_find_tgid_ptr(tsk->pid); + if (!ptr) return 0; - tgid_map[tsk->pid] = tsk->tgid; + *ptr = tsk->tgid; return 1; } @@ -2236,8 +2277,6 @@ { if (unlikely(!(flags & (TRACE_RECORD_CMDLINE | TRACE_RECORD_TGID)))) return true; - if (atomic_read(&trace_record_taskinfo_disabled) || !tracing_is_on()) - return true; if (!__this_cpu_read(trace_taskinfo_save)) return true; return false; @@ -2487,7 +2526,7 @@ (entry = this_cpu_read(trace_buffered_event))) { /* Try to use the per cpu buffer first */ val = this_cpu_inc_return(trace_buffered_event_cnt); - if ((len < (PAGE_SIZE - sizeof(*entry))) && val == 1) { + if ((len < (PAGE_SIZE - sizeof(*entry) - sizeof(entry->array[0]))) && val == 1) { trace_event_setup(entry, type, flags, pc); entry->array[0] = len; return entry; @@ -2512,7 +2551,7 @@ } EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve); -static DEFINE_SPINLOCK(tracepoint_iter_lock); +static DEFINE_RAW_SPINLOCK(tracepoint_iter_lock); static DEFINE_MUTEX(tracepoint_printk_mutex); static void output_printk(struct trace_event_buffer *fbuffer) @@ -2533,14 +2572,14 @@ event = &fbuffer->trace_file->event_call->event; - spin_lock_irqsave(&tracepoint_iter_lock, flags); + raw_spin_lock_irqsave(&tracepoint_iter_lock, flags); trace_seq_init(&iter->seq); iter->ent = fbuffer->entry; event_call->event.funcs->trace(iter, 0, event); trace_seq_putc(&iter->seq, 0); printk("%s", iter->seq.buffer); - spin_unlock_irqrestore(&tracepoint_iter_lock, flags); + raw_spin_unlock_irqrestore(&tracepoint_iter_lock, flags); } int tracepoint_printk_sysctl(struct ctl_table *table, int write, @@ -2988,7 +3027,7 @@ char buffer[4][TRACE_BUF_SIZE]; }; -static struct trace_buffer_struct *trace_percpu_buffer; +static struct trace_buffer_struct __percpu *trace_percpu_buffer; /* * Thise allows for lockless recording. If we're nested too deeply, then @@ -2998,7 +3037,7 @@ { struct trace_buffer_struct *buffer = this_cpu_ptr(trace_percpu_buffer); - if (!buffer || buffer->nesting >= 4) + if (!trace_percpu_buffer || buffer->nesting >= 4) return NULL; buffer->nesting++; @@ -3017,7 +3056,7 @@ static int alloc_percpu_trace_buffer(void) { - struct trace_buffer_struct *buffers; + struct trace_buffer_struct __percpu *buffers; buffers = alloc_percpu(struct trace_buffer_struct); if (WARN(!buffers, "Could not allocate percpu trace_printk buffer")) @@ -3460,9 +3499,6 @@ return ERR_PTR(-EBUSY); #endif - if (!iter->snapshot) - atomic_inc(&trace_record_taskinfo_disabled); - if (*pos != iter->pos) { iter->ent = NULL; iter->cpu = 0; @@ -3505,9 +3541,6 @@ return; #endif - if (!iter->snapshot) - atomic_dec(&trace_record_taskinfo_disabled); - trace_access_unlock(iter->cpu_file); trace_event_read_unlock(); } @@ -4594,6 +4627,8 @@ int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled) { + int *map; + if ((mask == TRACE_ITER_RECORD_TGID) || (mask == TRACE_ITER_RECORD_CMD)) lockdep_assert_held(&event_mutex); @@ -4616,10 +4651,19 @@ trace_event_enable_cmd_record(enabled); if (mask == TRACE_ITER_RECORD_TGID) { - if (!tgid_map) - tgid_map = kvcalloc(PID_MAX_DEFAULT + 1, - sizeof(*tgid_map), - GFP_KERNEL); + if (!tgid_map) { + tgid_map_max = pid_max; + map = kvcalloc(tgid_map_max + 1, sizeof(*tgid_map), + GFP_KERNEL); + + /* + * Pairs with smp_load_acquire() in + * trace_find_tgid_ptr() to ensure that if it observes + * the tgid_map we just allocated then it also observes + * the corresponding tgid_map_max value. + */ + smp_store_release(&tgid_map, map); + } if (!tgid_map) { tr->trace_flags &= ~TRACE_ITER_RECORD_TGID; return -ENOMEM; @@ -4951,6 +4995,10 @@ "\t [:name=histname1]\n" "\t [:.]\n" "\t [if ]\n\n" + "\t Note, special fields can be used as well:\n" + "\t common_timestamp - to record current timestamp\n" + "\t common_cpu - to record the CPU the event happened on\n" + "\n" "\t When a matching event is hit, an entry is added to a hash\n" "\t table using the key(s) and value(s) named, and the value of a\n" "\t sum called 'hitcount' is incremented. Keys and values\n" @@ -5024,37 +5072,16 @@ static void *saved_tgids_next(struct seq_file *m, void *v, loff_t *pos) { - int *ptr = v; - - if (*pos || m->count) - ptr++; - - (*pos)++; - - for (; ptr <= &tgid_map[PID_MAX_DEFAULT]; ptr++) { - if (trace_find_tgid(*ptr)) - return ptr; - } + int pid = ++(*pos); - return NULL; + return trace_find_tgid_ptr(pid); } static void *saved_tgids_start(struct seq_file *m, loff_t *pos) { - void *v; - loff_t l = 0; + int pid = *pos; - if (!tgid_map) - return NULL; - - v = &tgid_map[0]; - while (l <= *pos) { - v = saved_tgids_next(m, v, &l); - if (!v) - return NULL; - } - - return v; + return trace_find_tgid_ptr(pid); } static void saved_tgids_stop(struct seq_file *m, void *v) @@ -5063,9 +5090,14 @@ static int saved_tgids_show(struct seq_file *m, void *v) { - int pid = (int *)v - tgid_map; + int *entry = (int *)v; + int pid = entry - tgid_map; + int tgid = *entry; + + if (tgid == 0) + return SEQ_SKIP; - seq_printf(m, "%d %d\n", pid, trace_find_tgid(pid)); + seq_printf(m, "%d %d\n", pid, tgid); return 0; } @@ -5181,9 +5213,11 @@ char buf[64]; int r; + preempt_disable(); arch_spin_lock(&trace_cmdline_lock); r = scnprintf(buf, sizeof(buf), "%u\n", savedcmd->cmdline_num); arch_spin_unlock(&trace_cmdline_lock); + preempt_enable(); return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); } @@ -5208,10 +5242,12 @@ return -ENOMEM; } + preempt_disable(); arch_spin_lock(&trace_cmdline_lock); savedcmd_temp = savedcmd; savedcmd = s; arch_spin_unlock(&trace_cmdline_lock); + preempt_enable(); free_saved_cmdlines_buffer(savedcmd_temp); return 0; @@ -5620,12 +5656,18 @@ tr->current_trace = &nop_trace; } +static bool tracer_options_updated; + static void add_tracer_options(struct trace_array *tr, struct tracer *t) { /* Only enable if the directory has been created already. */ if (!tr->dir) return; + /* Only create trace option files after update_tracer_options finish */ + if (!tracer_options_updated) + return; + create_trace_option_files(tr, t); } @@ -5660,10 +5702,12 @@ #ifdef CONFIG_TRACER_SNAPSHOT if (t->use_max_tr) { + local_irq_disable(); arch_spin_lock(&tr->max_lock); if (tr->cond_snapshot) ret = -EBUSY; arch_spin_unlock(&tr->max_lock); + local_irq_enable(); if (ret) goto out; } @@ -6743,10 +6787,12 @@ goto out; } + local_irq_disable(); arch_spin_lock(&tr->max_lock); if (tr->cond_snapshot) ret = -EBUSY; arch_spin_unlock(&tr->max_lock); + local_irq_enable(); if (ret) goto out; @@ -6982,7 +7028,8 @@ err = kzalloc(sizeof(*err), GFP_KERNEL); if (!err) err = ERR_PTR(-ENOMEM); - tr->n_err_log_entries++; + else + tr->n_err_log_entries++; return err; } @@ -8372,6 +8419,7 @@ static void update_tracer_options(struct trace_array *tr) { mutex_lock(&trace_types_lock); + tracer_options_updated = true; __update_tracer_options(tr); mutex_unlock(&trace_types_lock); } diff -u linux-azure-5.4.0/kernel/trace/trace.h linux-azure-5.4.0/kernel/trace/trace.h --- linux-azure-5.4.0/kernel/trace/trace.h +++ linux-azure-5.4.0/kernel/trace/trace.h @@ -518,23 +518,8 @@ * When function tracing occurs, the following steps are made: * If arch does not support a ftrace feature: * call internal function (uses INTERNAL bits) which calls... - * If callback is registered to the "global" list, the list - * function is called and recursion checks the GLOBAL bits. - * then this function calls... * The function callback, which can use the FTRACE bits to * check for recursion. - * - * Now if the arch does not suppport a feature, and it calls - * the global list function which calls the ftrace callback - * all three of these steps will do a recursion protection. - * There's no reason to do one if the previous caller already - * did. The recursion that we are protecting against will - * go through the same steps again. - * - * To prevent the multiple recursion checks, if a recursion - * bit is set that is higher than the MAX bit of the current - * check, then we know that the check was made by the previous - * caller, and we can skip the current check. */ enum { TRACE_BUFFER_BIT, @@ -547,12 +532,14 @@ TRACE_FTRACE_NMI_BIT, TRACE_FTRACE_IRQ_BIT, TRACE_FTRACE_SIRQ_BIT, + TRACE_FTRACE_TRANSITION_BIT, - /* INTERNAL_BITs must be greater than FTRACE_BITs */ + /* Internal use recursion bits */ TRACE_INTERNAL_BIT, TRACE_INTERNAL_NMI_BIT, TRACE_INTERNAL_IRQ_BIT, TRACE_INTERNAL_SIRQ_BIT, + TRACE_INTERNAL_TRANSITION_BIT, TRACE_BRANCH_BIT, /* @@ -592,12 +579,6 @@ * function is called to clear it. */ TRACE_GRAPH_NOTRACE_BIT, - - /* - * When transitioning between context, the preempt_count() may - * not be correct. Allow for a single recursion to cover this case. - */ - TRACE_TRANSITION_BIT, }; #define trace_recursion_set(bit) do { (current)->trace_recursion |= (1<<(bit)); } while (0) @@ -617,12 +598,18 @@ #define TRACE_CONTEXT_BITS 4 #define TRACE_FTRACE_START TRACE_FTRACE_BIT -#define TRACE_FTRACE_MAX ((1 << (TRACE_FTRACE_START + TRACE_CONTEXT_BITS)) - 1) #define TRACE_LIST_START TRACE_INTERNAL_BIT -#define TRACE_LIST_MAX ((1 << (TRACE_LIST_START + TRACE_CONTEXT_BITS)) - 1) -#define TRACE_CONTEXT_MASK TRACE_LIST_MAX +#define TRACE_CONTEXT_MASK ((1 << (TRACE_LIST_START + TRACE_CONTEXT_BITS)) - 1) + +enum { + TRACE_CTX_NMI, + TRACE_CTX_IRQ, + TRACE_CTX_SOFTIRQ, + TRACE_CTX_NORMAL, + TRACE_CTX_TRANSITION, +}; static __always_inline int trace_get_context_bit(void) { @@ -630,59 +617,48 @@ if (in_interrupt()) { if (in_nmi()) - bit = 0; + bit = TRACE_CTX_NMI; else if (in_irq()) - bit = 1; + bit = TRACE_CTX_IRQ; else - bit = 2; + bit = TRACE_CTX_SOFTIRQ; } else - bit = 3; + bit = TRACE_CTX_NORMAL; return bit; } -static __always_inline int trace_test_and_set_recursion(int start, int max) +static __always_inline int trace_test_and_set_recursion(int start) { unsigned int val = current->trace_recursion; int bit; - /* A previous recursion check was made */ - if ((val & TRACE_CONTEXT_MASK) > max) - return 0; - bit = trace_get_context_bit() + start; if (unlikely(val & (1 << bit))) { /* * It could be that preempt_count has not been updated during * a switch between contexts. Allow for a single recursion. */ - bit = TRACE_TRANSITION_BIT; + bit = start + TRACE_CTX_TRANSITION; if (trace_recursion_test(bit)) return -1; trace_recursion_set(bit); barrier(); - return bit + 1; + return bit; } - /* Normal check passed, clear the transition to allow it again */ - trace_recursion_clear(TRACE_TRANSITION_BIT); - val |= 1 << bit; current->trace_recursion = val; barrier(); - return bit + 1; + return bit; } static __always_inline void trace_clear_recursion(int bit) { unsigned int val = current->trace_recursion; - if (!bit) - return; - - bit--; bit = 1 << bit; val &= ~bit; @@ -1447,14 +1423,26 @@ if (eflags & EVENT_FILE_FL_TRIGGER_COND) *tt = event_triggers_call(file, entry, event); - if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) || - (unlikely(file->flags & EVENT_FILE_FL_FILTERED) && - !filter_match_preds(file->filter, entry))) { - __trace_event_discard_commit(buffer, event); - return true; - } + if (likely(!(file->flags & (EVENT_FILE_FL_SOFT_DISABLED | + EVENT_FILE_FL_FILTERED | + EVENT_FILE_FL_PID_FILTER)))) + return false; + + if (file->flags & EVENT_FILE_FL_SOFT_DISABLED) + goto discard; + + if (file->flags & EVENT_FILE_FL_FILTERED && + !filter_match_preds(file->filter, entry)) + goto discard; + + if ((file->flags & EVENT_FILE_FL_PID_FILTER) && + trace_event_ignore_this_pid(file)) + goto discard; return false; + discard: + __trace_event_discard_commit(buffer, event); + return true; } /** diff -u linux-azure-5.4.0/kernel/trace/trace_clock.c linux-azure-5.4.0/kernel/trace/trace_clock.c --- linux-azure-5.4.0/kernel/trace/trace_clock.c +++ linux-azure-5.4.0/kernel/trace/trace_clock.c @@ -115,9 +115,9 @@ prev_time = READ_ONCE(trace_clock_struct.prev_time); now = sched_clock_cpu(this_cpu); - /* Make sure that now is always greater than prev_time */ + /* Make sure that now is always greater than or equal to prev_time */ if ((s64)(now - prev_time) < 0) - now = prev_time + 1; + now = prev_time; /* * If in an NMI context then dont risk lockups and simply return @@ -131,7 +131,7 @@ /* Reread prev_time in case it was already updated */ prev_time = READ_ONCE(trace_clock_struct.prev_time); if ((s64)(now - prev_time) < 0) - now = prev_time + 1; + now = prev_time; trace_clock_struct.prev_time = now; diff -u linux-azure-5.4.0/kernel/trace/trace_events.c linux-azure-5.4.0/kernel/trace/trace_events.c --- linux-azure-5.4.0/kernel/trace/trace_events.c +++ linux-azure-5.4.0/kernel/trace/trace_events.c @@ -166,6 +166,7 @@ __generic_field(int, CPU, FILTER_CPU); __generic_field(int, cpu, FILTER_CPU); + __generic_field(int, common_cpu, FILTER_CPU); __generic_field(char *, COMM, FILTER_COMM); __generic_field(char *, comm, FILTER_COMM); @@ -2247,12 +2248,19 @@ trace_create_new_event(struct trace_event_call *call, struct trace_array *tr) { + struct trace_pid_list *pid_list; struct trace_event_file *file; file = kmem_cache_alloc(file_cachep, GFP_TRACE); if (!file) return NULL; + pid_list = rcu_dereference_protected(tr->filtered_pids, + lockdep_is_held(&event_mutex)); + + if (pid_list) + file->flags |= EVENT_FILE_FL_PID_FILTER; + file->event_call = call; file->tr = tr; atomic_set(&file->sm_ref, 0); diff -u linux-azure-5.4.0/kernel/trace/trace_events_hist.c linux-azure-5.4.0/kernel/trace/trace_events_hist.c --- linux-azure-5.4.0/kernel/trace/trace_events_hist.c +++ linux-azure-5.4.0/kernel/trace/trace_events_hist.c @@ -66,7 +66,8 @@ C(INVALID_SUBSYS_EVENT, "Invalid subsystem or event name"), \ C(INVALID_REF_KEY, "Using variable references in keys not supported"), \ C(VAR_NOT_FOUND, "Couldn't find variable"), \ - C(FIELD_NOT_FOUND, "Couldn't find field"), + C(FIELD_NOT_FOUND, "Couldn't find field"), \ + C(INVALID_STR_OPERAND, "String type can not be an operand in expression"), #undef C #define C(a, b) HIST_ERR_##a @@ -148,6 +149,8 @@ */ unsigned int var_ref_idx; bool read_once; + + unsigned int var_str_idx; }; static u64 hist_field_none(struct hist_field *field, @@ -350,6 +353,7 @@ unsigned int n_keys; unsigned int n_fields; unsigned int n_vars; + unsigned int n_var_str; unsigned int key_size; struct tracing_map_sort_key sort_keys[TRACING_MAP_SORT_KEYS_MAX]; unsigned int n_sort_keys; @@ -2001,7 +2005,7 @@ field->flags & HIST_FIELD_FL_ALIAS) field_name = hist_field_name(field->operands[0], ++level); else if (field->flags & HIST_FIELD_FL_CPU) - field_name = "cpu"; + field_name = "common_cpu"; else if (field->flags & HIST_FIELD_FL_EXPR || field->flags & HIST_FIELD_FL_VAR_REF) { if (field->system) { @@ -2304,7 +2308,12 @@ } } - n_str = hist_data->n_field_var_str + hist_data->n_save_var_str; + n_str = hist_data->n_field_var_str + hist_data->n_save_var_str + + hist_data->n_var_str; + if (n_str > SYNTH_FIELDS_MAX) { + hist_elt_data_free(elt_data); + return -EINVAL; + } size = STR_VAR_LEN_MAX; @@ -2437,6 +2446,13 @@ switch (*op) { case '-': + /* + * Unfortunately, the modifier ".sym-offset" + * can confuse things. + */ + if (op - str >= 4 && !strncmp(op - 4, ".sym-offset", 11)) + return FIELD_OP_NONE; + if (*str == '-') field_op = FIELD_OP_UNARY_MINUS; else @@ -2564,7 +2580,9 @@ if (WARN_ON_ONCE(!field)) goto out; - if (is_string_field(field)) { + /* Pointers to strings are just pointers and dangerous to dereference */ + if (is_string_field(field) && + (field->filter_type != FILTER_PTR_STRING)) { flags |= HIST_FIELD_FL_STRING; hist_field->size = MAX_FILTER_STR_VAL; @@ -2572,9 +2590,10 @@ if (!hist_field->type) goto free; - if (field->filter_type == FILTER_STATIC_STRING) + if (field->filter_type == FILTER_STATIC_STRING) { hist_field->fn = hist_field_string; - else if (field->filter_type == FILTER_DYN_STRING) + hist_field->size = field->size; + } else if (field->filter_type == FILTER_DYN_STRING) hist_field->fn = hist_field_dynstring; else hist_field->fn = hist_field_pstring; @@ -2676,8 +2695,11 @@ return err; free: kfree(ref_field->system); + ref_field->system = NULL; kfree(ref_field->event_name); + ref_field->event_name = NULL; kfree(ref_field->name); + ref_field->name = NULL; goto out; } @@ -2864,14 +2886,24 @@ hist_data->enable_timestamps = true; if (*flags & HIST_FIELD_FL_TIMESTAMP_USECS) hist_data->attrs->ts_in_usecs = true; - } else if (strcmp(field_name, "cpu") == 0) + } else if (strcmp(field_name, "common_cpu") == 0) *flags |= HIST_FIELD_FL_CPU; else { field = trace_find_event_field(file->event_call, field_name); if (!field || !field->size) { - hist_err(tr, HIST_ERR_FIELD_NOT_FOUND, errpos(field_name)); - field = ERR_PTR(-EINVAL); - goto out; + /* + * For backward compatibility, if field_name + * was "cpu", then we treat this the same as + * common_cpu. This also works for "CPU". + */ + if (field && field->filter_type == FILTER_CPU) { + *flags |= HIST_FIELD_FL_CPU; + } else { + hist_err(tr, HIST_ERR_FIELD_NOT_FOUND, + errpos(field_name)); + field = ERR_PTR(-EINVAL); + goto out; + } } } out: @@ -3019,6 +3051,13 @@ ret = PTR_ERR(operand1); goto free; } + if (operand1->flags & HIST_FIELD_FL_STRING) { + /* String type can not be the operand of unary operator. */ + hist_err(file->tr, HIST_ERR_INVALID_STR_OPERAND, errpos(str)); + destroy_hist_field(operand1, 0); + ret = -EINVAL; + goto free; + } expr->flags |= operand1->flags & (HIST_FIELD_FL_TIMESTAMP | HIST_FIELD_FL_TIMESTAMP_USECS); @@ -3120,6 +3159,11 @@ operand1 = NULL; goto free; } + if (operand1->flags & HIST_FIELD_FL_STRING) { + hist_err(file->tr, HIST_ERR_INVALID_STR_OPERAND, errpos(operand1_str)); + ret = -EINVAL; + goto free; + } /* rest of string could be another expression e.g. b+c in a+b+c */ operand_flags = 0; @@ -3129,6 +3173,11 @@ operand2 = NULL; goto free; } + if (operand2->flags & HIST_FIELD_FL_STRING) { + hist_err(file->tr, HIST_ERR_INVALID_STR_OPERAND, errpos(str)); + ret = -EINVAL; + goto free; + } ret = check_expr_operands(file->tr, operand1, operand2); if (ret) @@ -3150,6 +3199,10 @@ expr->operands[0] = operand1; expr->operands[1] = operand2; + + /* The operand sizes should be the same, so just pick one */ + expr->size = operand1->size; + expr->operator = field_op; expr->name = expr_str(expr, 0); expr->type = kstrdup(operand1->type, GFP_KERNEL); @@ -3481,7 +3534,7 @@ char *str = elt_data->field_var_str[j++]; char *val_str = (char *)(uintptr_t)var_val; - strscpy(str, val_str, STR_VAR_LEN_MAX); + strscpy(str, val_str, val->size); var_val = (u64)(uintptr_t)str; } tracing_map_set_var(elt, var_idx, var_val); @@ -4250,6 +4303,8 @@ event = data->match_data.event; } + if (!event) + goto free; /* * At this point, we're looking at a field on another * event. Because we can't modify a hist trigger on @@ -4346,6 +4401,7 @@ var_ref_idx = find_var_ref_idx(hist_data, var_ref); if (WARN_ON(var_ref_idx < 0)) { + kfree(p); ret = var_ref_idx; goto err; } @@ -4556,6 +4612,7 @@ { struct trace_array *tr = hist_data->event_file->tr; unsigned long flags = 0; + int ret; if (WARN_ON(val_idx >= TRACING_MAP_VALS_MAX + TRACING_MAP_VARS_MAX)) return -EINVAL; @@ -4570,7 +4627,12 @@ if (WARN_ON(hist_data->n_vars > TRACING_MAP_VARS_MAX)) return -EINVAL; - return __create_val_field(hist_data, val_idx, file, var_name, expr_str, flags); + ret = __create_val_field(hist_data, val_idx, file, var_name, expr_str, flags); + + if (hist_data->fields[val_idx]->flags & HIST_FIELD_FL_STRING) + hist_data->fields[val_idx]->var_str_idx = hist_data->n_var_str++; + + return ret; } static int create_val_fields(struct hist_trigger_data *hist_data, @@ -4770,6 +4832,8 @@ s = kstrdup(field_str, GFP_KERNEL); if (!s) { + kfree(hist_data->attrs->var_defs.name[n_vars]); + hist_data->attrs->var_defs.name[n_vars] = NULL; ret = -ENOMEM; goto free; } @@ -5188,7 +5252,7 @@ if (hist_field->flags & HIST_FIELD_FL_STACKTRACE) cmp_fn = tracing_map_cmp_none; - else if (!field) + else if (!field || hist_field->flags & HIST_FIELD_FL_CPU) cmp_fn = tracing_map_cmp_num(hist_field->size, hist_field->is_signed); else if (is_string_field(field)) @@ -5290,6 +5354,22 @@ hist_val = hist_field->fn(hist_field, elt, rbe, rec); if (hist_field->flags & HIST_FIELD_FL_VAR) { var_idx = hist_field->var.idx; + + if (hist_field->flags & HIST_FIELD_FL_STRING) { + unsigned int str_start, var_str_idx, idx; + char *str, *val_str; + + str_start = hist_data->n_field_var_str + + hist_data->n_save_var_str; + var_str_idx = hist_field->var_str_idx; + idx = str_start + var_str_idx; + + str = elt_data->field_var_str[idx]; + val_str = (char *)(uintptr_t)hist_val; + strscpy(str, val_str, hist_field->size); + + hist_val = (u64)(uintptr_t)str; + } tracing_map_set_var(elt, var_idx, hist_val); continue; } @@ -5319,8 +5399,6 @@ field = key_field->field; if (field->filter_type == FILTER_DYN_STRING) size = *(u32 *)(rec + field->offset) >> 16; - else if (field->filter_type == FILTER_PTR_STRING) - size = strlen(key); else if (field->filter_type == FILTER_STATIC_STRING) size = field->size; @@ -5634,7 +5712,7 @@ seq_printf(m, "%s=", hist_field->var.name); if (hist_field->flags & HIST_FIELD_FL_CPU) - seq_puts(m, "cpu"); + seq_puts(m, "common_cpu"); else if (field_name) { if (hist_field->flags & HIST_FIELD_FL_VAR_REF || hist_field->flags & HIST_FIELD_FL_ALIAS) diff -u linux-azure-5.4.0/kernel/trace/trace_events_trigger.c linux-azure-5.4.0/kernel/trace/trace_events_trigger.c --- linux-azure-5.4.0/kernel/trace/trace_events_trigger.c +++ linux-azure-5.4.0/kernel/trace/trace_events_trigger.c @@ -940,6 +940,16 @@ traceon_trigger(struct event_trigger_data *data, void *rec, struct ring_buffer_event *event) { + struct trace_event_file *file = data->private_data; + + if (file) { + if (tracer_tracing_is_on(file->tr)) + return; + + tracer_tracing_on(file->tr); + return; + } + if (tracing_is_on()) return; @@ -950,8 +960,15 @@ traceon_count_trigger(struct event_trigger_data *data, void *rec, struct ring_buffer_event *event) { - if (tracing_is_on()) - return; + struct trace_event_file *file = data->private_data; + + if (file) { + if (tracer_tracing_is_on(file->tr)) + return; + } else { + if (tracing_is_on()) + return; + } if (!data->count) return; @@ -959,13 +976,26 @@ if (data->count != -1) (data->count)--; - tracing_on(); + if (file) + tracer_tracing_on(file->tr); + else + tracing_on(); } static void traceoff_trigger(struct event_trigger_data *data, void *rec, struct ring_buffer_event *event) { + struct trace_event_file *file = data->private_data; + + if (file) { + if (!tracer_tracing_is_on(file->tr)) + return; + + tracer_tracing_off(file->tr); + return; + } + if (!tracing_is_on()) return; @@ -976,8 +1006,15 @@ traceoff_count_trigger(struct event_trigger_data *data, void *rec, struct ring_buffer_event *event) { - if (!tracing_is_on()) - return; + struct trace_event_file *file = data->private_data; + + if (file) { + if (!tracer_tracing_is_on(file->tr)) + return; + } else { + if (!tracing_is_on()) + return; + } if (!data->count) return; @@ -985,7 +1022,10 @@ if (data->count != -1) (data->count)--; - tracing_off(); + if (file) + tracer_tracing_off(file->tr); + else + tracing_off(); } static int @@ -1179,7 +1219,14 @@ stacktrace_trigger(struct event_trigger_data *data, void *rec, struct ring_buffer_event *event) { - trace_dump_stack(STACK_SKIP); + struct trace_event_file *file = data->private_data; + unsigned long flags; + + if (file) { + local_save_flags(flags); + __trace_stack(file->tr, flags, STACK_SKIP, preempt_count()); + } else + trace_dump_stack(STACK_SKIP); } static void diff -u linux-azure-5.4.0/kernel/trace/trace_kprobe.c linux-azure-5.4.0/kernel/trace/trace_kprobe.c --- linux-azure-5.4.0/kernel/trace/trace_kprobe.c +++ linux-azure-5.4.0/kernel/trace/trace_kprobe.c @@ -430,7 +430,7 @@ */ trace_probe_remove_file(tp, file); - return 0; + return 1; } #if defined(CONFIG_DYNAMIC_FTRACE) && \ @@ -646,7 +646,11 @@ /* Register new event */ ret = register_kprobe_event(tk); if (ret) { - pr_warn("Failed to register probe event(%d)\n", ret); + if (ret == -EEXIST) { + trace_probe_log_set_index(0); + trace_probe_log_err(0, EVENT_EXIST); + } else + pr_warn("Failed to register probe event(%d)\n", ret); goto end; } @@ -995,15 +999,18 @@ { struct dyn_event *ev = v; struct trace_kprobe *tk; + unsigned long nmissed; if (!is_trace_kprobe(ev)) return 0; tk = to_trace_kprobe(ev); + nmissed = trace_kprobe_is_return(tk) ? + tk->rp.kp.nmissed + tk->rp.nmissed : tk->rp.kp.nmissed; seq_printf(m, " %-44s %15lu %15lu\n", trace_probe_name(&tk->tp), trace_kprobe_nhit(tk), - tk->rp.kp.nmissed); + nmissed); return 0; } diff -u linux-azure-5.4.0/kernel/trace/trace_preemptirq.c linux-azure-5.4.0/kernel/trace/trace_preemptirq.c --- linux-azure-5.4.0/kernel/trace/trace_preemptirq.c +++ linux-azure-5.4.0/kernel/trace/trace_preemptirq.c @@ -56,14 +56,14 @@ this_cpu_write(tracing_irq_cpu, 0); } - lockdep_hardirqs_on(CALLER_ADDR0); + lockdep_hardirqs_on(caller_addr); } EXPORT_SYMBOL(trace_hardirqs_on_caller); NOKPROBE_SYMBOL(trace_hardirqs_on_caller); __visible void trace_hardirqs_off_caller(unsigned long caller_addr) { - lockdep_hardirqs_off(CALLER_ADDR0); + lockdep_hardirqs_off(caller_addr); if (!this_cpu_read(tracing_irq_cpu)) { this_cpu_write(tracing_irq_cpu, 1); diff -u linux-azure-5.4.0/kernel/trace/trace_probe.c linux-azure-5.4.0/kernel/trace/trace_probe.c --- linux-azure-5.4.0/kernel/trace/trace_probe.c +++ linux-azure-5.4.0/kernel/trace/trace_probe.c @@ -300,7 +300,7 @@ } } else goto inval_var; - } else if (strcmp(arg, "comm") == 0) { + } else if (strcmp(arg, "comm") == 0 || strcmp(arg, "COMM") == 0) { code->op = FETCH_OP_COMM; #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API } else if (((flags & TPARG_FL_MASK) == @@ -595,7 +595,8 @@ * Since $comm and immediate string can not be dereferred, * we can find those by strcmp. */ - if (strcmp(arg, "$comm") == 0 || strncmp(arg, "\\\"", 2) == 0) { + if (strcmp(arg, "$comm") == 0 || strcmp(arg, "$COMM") == 0 || + strncmp(arg, "\\\"", 2) == 0) { /* The type of $comm must be "string", and not an array. */ if (parg->count || (t && strcmp(t, "string"))) return -EINVAL; @@ -1029,11 +1030,36 @@ return ret; } +static struct trace_event_call * +find_trace_event_call(const char *system, const char *event_name) +{ + struct trace_event_call *tp_event; + const char *name; + + list_for_each_entry(tp_event, &ftrace_events, list) { + if (!tp_event->class->system || + strcmp(system, tp_event->class->system)) + continue; + name = trace_event_name(tp_event); + if (!name || strcmp(event_name, name)) + continue; + return tp_event; + } + + return NULL; +} + int trace_probe_register_event_call(struct trace_probe *tp) { struct trace_event_call *call = trace_probe_event_call(tp); int ret; + lockdep_assert_held(&event_mutex); + + if (find_trace_event_call(trace_probe_group_name(tp), + trace_probe_name(tp))) + return -EEXIST; + ret = register_trace_event(&call->event); if (!ret) return -ENODEV; diff -u linux-azure-5.4.0/kernel/trace/trace_probe.h linux-azure-5.4.0/kernel/trace/trace_probe.h --- linux-azure-5.4.0/kernel/trace/trace_probe.h +++ linux-azure-5.4.0/kernel/trace/trace_probe.h @@ -410,6 +410,7 @@ C(NO_EVENT_NAME, "Event name is not specified"), \ C(EVENT_TOO_LONG, "Event name is too long"), \ C(BAD_EVENT_NAME, "Event name must follow the same rules as C identifiers"), \ + C(EVENT_EXIST, "Given group/event name is already used by another event"), \ C(RETVAL_ON_PROBE, "$retval is not available on probe"), \ C(BAD_STACK_NUM, "Invalid stack number"), \ C(BAD_ARG_NUM, "Invalid argument number"), \ diff -u linux-azure-5.4.0/kernel/trace/trace_uprobe.c linux-azure-5.4.0/kernel/trace/trace_uprobe.c --- linux-azure-5.4.0/kernel/trace/trace_uprobe.c +++ linux-azure-5.4.0/kernel/trace/trace_uprobe.c @@ -514,7 +514,11 @@ ret = register_uprobe_event(tu); if (ret) { - pr_warn("Failed to register probe event(%d)\n", ret); + if (ret == -EEXIST) { + trace_probe_log_set_index(0); + trace_probe_log_err(0, EVENT_EXIST); + } else + pr_warn("Failed to register probe event(%d)\n", ret); goto end; } @@ -1295,6 +1299,7 @@ return 0; list_for_each_entry(pos, trace_probe_probe_list(tp), list) { + tu = container_of(pos, struct trace_uprobe, tp); err = uprobe_apply(tu->inode, tu->offset, &tu->consumer, true); if (err) { uprobe_perf_close(call, event); diff -u linux-azure-5.4.0/kernel/trace/tracing_map.c linux-azure-5.4.0/kernel/trace/tracing_map.c --- linux-azure-5.4.0/kernel/trace/tracing_map.c +++ linux-azure-5.4.0/kernel/trace/tracing_map.c @@ -15,6 +15,7 @@ #include #include #include +#include #include "tracing_map.h" #include "trace.h" @@ -307,6 +308,7 @@ for (i = 0; i < a->n_pages; i++) { if (!a->pages[i]) break; + kmemleak_free(a->pages[i]); free_page((unsigned long)a->pages[i]); } @@ -342,6 +344,7 @@ a->pages[i] = (void *)get_zeroed_page(GFP_KERNEL); if (!a->pages[i]) goto free; + kmemleak_alloc(a->pages[i], PAGE_SIZE, 1, GFP_KERNEL); } out: return a; @@ -834,29 +837,35 @@ return err; } -static int cmp_entries_dup(const struct tracing_map_sort_entry **a, - const struct tracing_map_sort_entry **b) +static int cmp_entries_dup(const void *A, const void *B) { + const struct tracing_map_sort_entry *a, *b; int ret = 0; - if (memcmp((*a)->key, (*b)->key, (*a)->elt->map->key_size)) + a = *(const struct tracing_map_sort_entry **)A; + b = *(const struct tracing_map_sort_entry **)B; + + if (memcmp(a->key, b->key, a->elt->map->key_size)) ret = 1; return ret; } -static int cmp_entries_sum(const struct tracing_map_sort_entry **a, - const struct tracing_map_sort_entry **b) +static int cmp_entries_sum(const void *A, const void *B) { const struct tracing_map_elt *elt_a, *elt_b; + const struct tracing_map_sort_entry *a, *b; struct tracing_map_sort_key *sort_key; struct tracing_map_field *field; tracing_map_cmp_fn_t cmp_fn; void *val_a, *val_b; int ret = 0; - elt_a = (*a)->elt; - elt_b = (*b)->elt; + a = *(const struct tracing_map_sort_entry **)A; + b = *(const struct tracing_map_sort_entry **)B; + + elt_a = a->elt; + elt_b = b->elt; sort_key = &elt_a->map->sort_key; @@ -873,18 +882,21 @@ return ret; } -static int cmp_entries_key(const struct tracing_map_sort_entry **a, - const struct tracing_map_sort_entry **b) +static int cmp_entries_key(const void *A, const void *B) { const struct tracing_map_elt *elt_a, *elt_b; + const struct tracing_map_sort_entry *a, *b; struct tracing_map_sort_key *sort_key; struct tracing_map_field *field; tracing_map_cmp_fn_t cmp_fn; void *val_a, *val_b; int ret = 0; - elt_a = (*a)->elt; - elt_b = (*b)->elt; + a = *(const struct tracing_map_sort_entry **)A; + b = *(const struct tracing_map_sort_entry **)B; + + elt_a = a->elt; + elt_b = b->elt; sort_key = &elt_a->map->sort_key; @@ -989,10 +1001,8 @@ struct tracing_map_sort_key *primary_key, struct tracing_map_sort_key *secondary_key) { - int (*primary_fn)(const struct tracing_map_sort_entry **, - const struct tracing_map_sort_entry **); - int (*secondary_fn)(const struct tracing_map_sort_entry **, - const struct tracing_map_sort_entry **); + int (*primary_fn)(const void *, const void *); + int (*secondary_fn)(const void *, const void *); unsigned i, start = 0, n_sub = 1; if (is_key(map, primary_key->field_idx)) @@ -1061,8 +1071,7 @@ unsigned int n_sort_keys, struct tracing_map_sort_entry ***sort_entries) { - int (*cmp_entries_fn)(const struct tracing_map_sort_entry **, - const struct tracing_map_sort_entry **); + int (*cmp_entries_fn)(const void *, const void *); struct tracing_map_sort_entry *sort_entry, **entries; int i, n_entries, ret; diff -u linux-azure-5.4.0/kernel/tracepoint.c linux-azure-5.4.0/kernel/tracepoint.c --- linux-azure-5.4.0/kernel/tracepoint.c +++ linux-azure-5.4.0/kernel/tracepoint.c @@ -271,7 +271,8 @@ * Add the probe function to a tracepoint. */ static int tracepoint_add_func(struct tracepoint *tp, - struct tracepoint_func *func, int prio) + struct tracepoint_func *func, int prio, + bool warn) { struct tracepoint_func *old, *tp_funcs; int ret; @@ -286,7 +287,7 @@ lockdep_is_held(&tracepoints_mutex)); old = func_add(&tp_funcs, func, prio); if (IS_ERR(old)) { - WARN_ON_ONCE(PTR_ERR(old) != -ENOMEM); + WARN_ON_ONCE(warn && PTR_ERR(old) != -ENOMEM); return PTR_ERR(old); } @@ -338,6 +339,32 @@ } /** + * tracepoint_probe_register_prio_may_exist - Connect a probe to a tracepoint with priority + * @tp: tracepoint + * @probe: probe handler + * @data: tracepoint data + * @prio: priority of this function over other registered functions + * + * Same as tracepoint_probe_register_prio() except that it will not warn + * if the tracepoint is already registered. + */ +int tracepoint_probe_register_prio_may_exist(struct tracepoint *tp, void *probe, + void *data, int prio) +{ + struct tracepoint_func tp_func; + int ret; + + mutex_lock(&tracepoints_mutex); + tp_func.func = probe; + tp_func.data = data; + tp_func.prio = prio; + ret = tracepoint_add_func(tp, &tp_func, prio, false); + mutex_unlock(&tracepoints_mutex); + return ret; +} +EXPORT_SYMBOL_GPL(tracepoint_probe_register_prio_may_exist); + +/** * tracepoint_probe_register_prio - Connect a probe to a tracepoint with priority * @tp: tracepoint * @probe: probe handler @@ -360,7 +387,7 @@ tp_func.func = probe; tp_func.data = data; tp_func.prio = prio; - ret = tracepoint_add_func(tp, &tp_func, prio); + ret = tracepoint_add_func(tp, &tp_func, prio, true); mutex_unlock(&tracepoints_mutex); return ret; } diff -u linux-azure-5.4.0/kernel/watchdog.c linux-azure-5.4.0/kernel/watchdog.c --- linux-azure-5.4.0/kernel/watchdog.c +++ linux-azure-5.4.0/kernel/watchdog.c @@ -568,7 +568,7 @@ return 0; } -static void lockup_detector_reconfigure(void) +static void __lockup_detector_reconfigure(void) { cpus_read_lock(); watchdog_nmi_stop(); @@ -588,6 +588,13 @@ __lockup_detector_cleanup(); } +void lockup_detector_reconfigure(void) +{ + mutex_lock(&watchdog_mutex); + __lockup_detector_reconfigure(); + mutex_unlock(&watchdog_mutex); +} + /* * Create the watchdog thread infrastructure and configure the detector(s). * @@ -608,13 +615,13 @@ return; mutex_lock(&watchdog_mutex); - lockup_detector_reconfigure(); + __lockup_detector_reconfigure(); softlockup_initialized = true; mutex_unlock(&watchdog_mutex); } #else /* CONFIG_SOFTLOCKUP_DETECTOR */ -static void lockup_detector_reconfigure(void) +static void __lockup_detector_reconfigure(void) { cpus_read_lock(); watchdog_nmi_stop(); @@ -622,9 +629,13 @@ watchdog_nmi_start(); cpus_read_unlock(); } +void lockup_detector_reconfigure(void) +{ + __lockup_detector_reconfigure(); +} static inline void lockup_detector_setup(void) { - lockup_detector_reconfigure(); + __lockup_detector_reconfigure(); } #endif /* !CONFIG_SOFTLOCKUP_DETECTOR */ @@ -664,7 +675,7 @@ { /* Remove impossible cpus to keep sysctl output clean. */ cpumask_and(&watchdog_cpumask, &watchdog_cpumask, cpu_possible_mask); - lockup_detector_reconfigure(); + __lockup_detector_reconfigure(); } /* diff -u linux-azure-5.4.0/kernel/workqueue.c linux-azure-5.4.0/kernel/workqueue.c --- linux-azure-5.4.0/kernel/workqueue.c +++ linux-azure-5.4.0/kernel/workqueue.c @@ -50,6 +50,7 @@ #include #include #include +#include #include "workqueue_internal.h" @@ -854,8 +855,17 @@ if (!worker->sleeping) return; + + /* + * If preempted by unbind_workers() between the WORKER_NOT_RUNNING check + * and the nr_running increment below, we may ruin the nr_running reset + * and leave with an unexpected pool->nr_running == 1 on the newly unbound + * pool. Protect against such race. + */ + preempt_disable(); if (!(worker->flags & WORKER_NOT_RUNNING)) atomic_inc(&worker->pool->nr_running); + preempt_enable(); worker->sleeping = 0; } @@ -3039,10 +3049,8 @@ if (WARN_ON(!work->func)) return false; - if (!from_cancel) { - lock_map_acquire(&work->lockdep_map); - lock_map_release(&work->lockdep_map); - } + lock_map_acquire(&work->lockdep_map); + lock_map_release(&work->lockdep_map); if (start_flush_work(work, &barr, from_cancel)) { wait_for_completion(&barr.done); @@ -3659,15 +3667,21 @@ unbound_release_work); struct workqueue_struct *wq = pwq->wq; struct worker_pool *pool = pwq->pool; - bool is_last; + bool is_last = false; - if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND))) - return; + /* + * when @pwq is not linked, it doesn't hold any reference to the + * @wq, and @wq is invalid to access. + */ + if (!list_empty(&pwq->pwqs_node)) { + if (WARN_ON_ONCE(!(wq->flags & WQ_UNBOUND))) + return; - mutex_lock(&wq->mutex); - list_del_rcu(&pwq->pwqs_node); - is_last = list_empty(&wq->pwqs); - mutex_unlock(&wq->mutex); + mutex_lock(&wq->mutex); + list_del_rcu(&pwq->pwqs_node); + is_last = list_empty(&wq->pwqs); + mutex_unlock(&wq->mutex); + } mutex_lock(&wq_pool_mutex); put_unbound_pool(pool); @@ -5295,9 +5309,6 @@ int ret = -EINVAL; cpumask_var_t saved_cpumask; - if (!zalloc_cpumask_var(&saved_cpumask, GFP_KERNEL)) - return -ENOMEM; - /* * Not excluding isolated cpus on purpose. * If the user wishes to include them, we allow that. @@ -5305,6 +5316,15 @@ cpumask_and(cpumask, cpumask, cpu_possible_mask); if (!cpumask_empty(cpumask)) { apply_wqattrs_lock(); + if (cpumask_equal(cpumask, wq_unbound_cpumask)) { + ret = 0; + goto out_unlock; + } + + if (!zalloc_cpumask_var(&saved_cpumask, GFP_KERNEL)) { + ret = -ENOMEM; + goto out_unlock; + } /* save the old wq_unbound_cpumask. */ cpumask_copy(saved_cpumask, wq_unbound_cpumask); @@ -5317,10 +5337,11 @@ if (ret < 0) cpumask_copy(wq_unbound_cpumask, saved_cpumask); + free_cpumask_var(saved_cpumask); +out_unlock: apply_wqattrs_unlock(); } - free_cpumask_var(saved_cpumask); return ret; } @@ -5734,6 +5755,7 @@ { unsigned long thresh = READ_ONCE(wq_watchdog_thresh) * HZ; bool lockup_detected = false; + unsigned long now = jiffies; struct worker_pool *pool; int pi; @@ -5748,6 +5770,12 @@ if (list_empty(&pool->worklist)) continue; + /* + * If a virtual machine is stopped by the host it can look to + * the watchdog like a stall. + */ + kvm_check_and_clear_guest_paused(); + /* get the latest of pool and touched timestamps */ pool_ts = READ_ONCE(pool->watchdog_ts); touched = READ_ONCE(wq_watchdog_touched); @@ -5766,12 +5794,12 @@ } /* did we stall? */ - if (time_after(jiffies, ts + thresh)) { + if (time_after(now, ts + thresh)) { lockup_detected = true; pr_emerg("BUG: workqueue lockup - pool"); pr_cont_pool_info(pool); pr_cont(" stuck for %us!\n", - jiffies_to_msecs(jiffies - pool_ts) / 1000); + jiffies_to_msecs(now - pool_ts) / 1000); } } @@ -5855,6 +5883,13 @@ return; } + for_each_possible_cpu(cpu) { + if (WARN_ON(cpu_to_node(cpu) == NUMA_NO_NODE)) { + pr_warn("workqueue: NUMA node mapping not available for cpu%d, disabling NUMA support\n", cpu); + return; + } + } + wq_update_unbound_numa_attrs_buf = alloc_workqueue_attrs(); BUG_ON(!wq_update_unbound_numa_attrs_buf); @@ -5872,11 +5907,6 @@ for_each_possible_cpu(cpu) { node = cpu_to_node(cpu); - if (WARN_ON(node == NUMA_NO_NODE)) { - pr_warn("workqueue: NUMA node mapping not available for cpu%d, disabling NUMA support\n", cpu); - /* happens iff arch is bonkers, let's just proceed */ - return; - } cpumask_set_cpu(cpu, tbl[node]); } diff -u linux-azure-5.4.0/lib/Kconfig linux-azure-5.4.0/lib/Kconfig --- linux-azure-5.4.0/lib/Kconfig +++ linux-azure-5.4.0/lib/Kconfig @@ -42,7 +42,6 @@ config HAVE_ARCH_BITREVERSE bool default n - depends on BITREVERSE help This option enables the use of hardware bit-reversal instructions on architectures which support such operations. diff -u linux-azure-5.4.0/lib/Kconfig.debug linux-azure-5.4.0/lib/Kconfig.debug --- linux-azure-5.4.0/lib/Kconfig.debug +++ linux-azure-5.4.0/lib/Kconfig.debug @@ -868,7 +868,6 @@ depends on HAVE_HARDLOCKUP_DETECTOR_PERF || HAVE_HARDLOCKUP_DETECTOR_ARCH select LOCKUP_DETECTOR select HARDLOCKUP_DETECTOR_PERF if HAVE_HARDLOCKUP_DETECTOR_PERF - select HARDLOCKUP_DETECTOR_ARCH if HAVE_HARDLOCKUP_DETECTOR_ARCH help Say Y here to enable the kernel to act as a watchdog to detect hard lockups. @@ -1293,8 +1292,7 @@ so architecture maintainers really need to do what they can to get the CRNG seeded sooner after the system is booted. However, since users cannot do anything actionable to - address this, by default the kernel will issue only a single - warning for the first use of unseeded randomness. + address this, by default this option is disabled. Say Y here if you want to receive warnings for all uses of unseeded randomness. This will be of use primarily for diff -u linux-azure-5.4.0/lib/dynamic_debug.c linux-azure-5.4.0/lib/dynamic_debug.c --- linux-azure-5.4.0/lib/dynamic_debug.c +++ linux-azure-5.4.0/lib/dynamic_debug.c @@ -329,10 +329,6 @@ } memset(query, 0, sizeof(*query)); - if (modname) - /* support $modname.dyndbg= */ - query->module = modname; - for (i = 0; i < nwords; i += 2) { if (!strcmp(words[i], "func")) { rc = check_set(&query->function, words[i+1], "func"); @@ -381,6 +377,13 @@ if (rc) return rc; } + if (!query->module && modname) + /* + * support $modname.dyndbg=, when + * not given in the query itself + */ + query->module = modname; + vpr_info_dq(query, "parsed"); return 0; } diff -u linux-azure-5.4.0/lib/idr.c linux-azure-5.4.0/lib/idr.c --- linux-azure-5.4.0/lib/idr.c +++ linux-azure-5.4.0/lib/idr.c @@ -489,7 +489,8 @@ struct ida_bitmap *bitmap; unsigned long flags; - BUG_ON((int)id < 0); + if ((int)id < 0) + return; xas_lock_irqsave(&xas, flags); bitmap = xas_load(&xas); diff -u linux-azure-5.4.0/lib/iov_iter.c linux-azure-5.4.0/lib/iov_iter.c --- linux-azure-5.4.0/lib/iov_iter.c +++ linux-azure-5.4.0/lib/iov_iter.c @@ -398,6 +398,7 @@ return 0; pipe->nrbufs++; buf->ops = &page_cache_pipe_buf_ops; + buf->flags = 0; get_page(buf->page = page); buf->offset = offset; buf->len = bytes; @@ -422,7 +423,7 @@ int err; struct iovec v; - if (!(i->type & (ITER_BVEC|ITER_KVEC))) { + if (iter_is_iovec(i)) { iterate_iovec(i, bytes, v, iov, skip, ({ err = fault_in_pages_readable(v.iov_base, v.iov_len); if (unlikely(err)) @@ -524,6 +525,7 @@ break; pipe->nrbufs++; pipe->bufs[idx].ops = &default_pipe_buf_ops; + pipe->bufs[idx].flags = 0; pipe->bufs[idx].page = page; pipe->bufs[idx].offset = 0; if (left <= PAGE_SIZE) { @@ -896,9 +898,12 @@ size_t wanted = copy_to_iter(kaddr + offset, bytes, i); kunmap_atomic(kaddr); return wanted; - } else if (unlikely(iov_iter_is_discard(i))) + } else if (unlikely(iov_iter_is_discard(i))) { + if (unlikely(i->count < bytes)) + bytes = i->count; + i->count -= bytes; return bytes; - else if (likely(!iov_iter_is_pipe(i))) + } else if (likely(!iov_iter_is_pipe(i))) return copy_page_to_iter_iovec(page, offset, bytes, i); else return copy_page_to_iter_pipe(page, offset, bytes, i); @@ -1299,7 +1304,7 @@ res = get_user_pages_fast(addr, n, iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0, pages); - if (unlikely(res < 0)) + if (unlikely(res <= 0)) return res; return (res == n ? len : res * PAGE_SIZE) - *start; 0;}),({ @@ -1381,8 +1386,9 @@ return -ENOMEM; res = get_user_pages_fast(addr, n, iov_iter_rw(i) != WRITE ? FOLL_WRITE : 0, p); - if (unlikely(res < 0)) { + if (unlikely(res <= 0)) { kvfree(p); + *pages = NULL; return res; } *pages = p; diff -u linux-azure-5.4.0/lib/raid6/test/Makefile linux-azure-5.4.0/lib/raid6/test/Makefile --- linux-azure-5.4.0/lib/raid6/test/Makefile +++ linux-azure-5.4.0/lib/raid6/test/Makefile @@ -4,6 +4,8 @@ # from userspace. # +pound := \# + CC = gcc OPTFLAGS = -O2 # Adjust as desired CFLAGS = -I.. -I ../../../include -g $(OPTFLAGS) @@ -47,7 +49,7 @@ OBJS += neon.o neon1.o neon2.o neon4.o neon8.o recov_neon.o recov_neon_inner.o CFLAGS += -DCONFIG_KERNEL_MODE_NEON=1 else - HAS_ALTIVEC := $(shell printf '\#include \nvector int a;\n' |\ + HAS_ALTIVEC := $(shell printf '$(pound)include \nvector int a;\n' |\ gcc -c -x c - >/dev/null && rm ./-.o && echo yes) ifeq ($(HAS_ALTIVEC),yes) CFLAGS += -I../../../arch/powerpc/include diff -u linux-azure-5.4.0/lib/random32.c linux-azure-5.4.0/lib/random32.c --- linux-azure-5.4.0/lib/random32.c +++ linux-azure-5.4.0/lib/random32.c @@ -38,6 +38,9 @@ #include #include #include +#include +#include +#include #include /** @@ -544,9 +547,11 @@ * To avoid worrying about whether it's safe to delay that interrupt * long enough to seed all CPUs, just schedule an immediate timer event. */ -static void prandom_timer_start(struct random_ready_callback *unused) +static int prandom_timer_start(struct notifier_block *nb, + unsigned long action, void *data) { mod_timer(&seed_timer, jiffies); + return 0; } /* @@ -555,13 +560,13 @@ */ static int __init prandom_init_late(void) { - static struct random_ready_callback random_ready = { - .func = prandom_timer_start + static struct notifier_block random_ready = { + .notifier_call = prandom_timer_start }; - int ret = add_random_ready_callback(&random_ready); + int ret = register_random_ready_notifier(&random_ready); if (ret == -EALREADY) { - prandom_timer_start(&random_ready); + prandom_timer_start(&random_ready, 0, NULL); ret = 0; } return ret; diff -u linux-azure-5.4.0/lib/test_bpf.c linux-azure-5.4.0/lib/test_bpf.c --- linux-azure-5.4.0/lib/test_bpf.c +++ linux-azure-5.4.0/lib/test_bpf.c @@ -4286,8 +4286,8 @@ .u.insns_int = { BPF_LD_IMM64(R0, 0), BPF_LD_IMM64(R1, 0xffffffffffffffffLL), - BPF_STX_MEM(BPF_W, R10, R1, -40), - BPF_LDX_MEM(BPF_W, R0, R10, -40), + BPF_STX_MEM(BPF_DW, R10, R1, -40), + BPF_LDX_MEM(BPF_DW, R0, R10, -40), BPF_EXIT_INSN(), }, INTERNAL, @@ -6680,7 +6680,14 @@ u64 duration; u32 ret; - if (test->test[i].data_size == 0 && + /* + * NOTE: Several sub-tests may be present, in which case + * a zero {data_size, result} tuple indicates the end of + * the sub-test array. The first test is always run, + * even if both data_size and result happen to be zero. + */ + if (i > 0 && + test->test[i].data_size == 0 && test->test[i].result == 0) break; diff -u linux-azure-5.4.0/lib/test_kmod.c linux-azure-5.4.0/lib/test_kmod.c --- linux-azure-5.4.0/lib/test_kmod.c +++ linux-azure-5.4.0/lib/test_kmod.c @@ -1155,6 +1155,7 @@ if (ret) { pr_err("could not register misc device: %d\n", ret); free_test_dev_kmod(test_dev); + test_dev = NULL; goto out; } diff -u linux-azure-5.4.0/lib/test_xarray.c linux-azure-5.4.0/lib/test_xarray.c --- linux-azure-5.4.0/lib/test_xarray.c +++ linux-azure-5.4.0/lib/test_xarray.c @@ -1438,6 +1438,25 @@ XA_BUG_ON(xa, !xa_empty(xa)); } +static noinline void check_create_range_5(struct xarray *xa, + unsigned long index, unsigned int order) +{ + XA_STATE_ORDER(xas, xa, index, order); + unsigned int i; + + xa_store_order(xa, index, order, xa_mk_index(index), GFP_KERNEL); + + for (i = 0; i < order + 10; i++) { + do { + xas_lock(&xas); + xas_create_range(&xas); + xas_unlock(&xas); + } while (xas_nomem(&xas, GFP_KERNEL)); + } + + xa_destroy(xa); +} + static noinline void check_create_range(struct xarray *xa) { unsigned int order; @@ -1465,6 +1484,9 @@ check_create_range_4(xa, (3U << order) + 1, order); check_create_range_4(xa, (3U << order) - 1, order); check_create_range_4(xa, (1U << 24) + 1, order); + + check_create_range_5(xa, 0, order); + check_create_range_5(xa, (1U << order), order); } check_create_range_3(); @@ -1503,6 +1525,49 @@ } } +#ifdef CONFIG_XARRAY_MULTI +static void check_split_1(struct xarray *xa, unsigned long index, + unsigned int order) +{ + XA_STATE(xas, xa, index); + void *entry; + unsigned int i = 0; + + xa_store_order(xa, index, order, xa, GFP_KERNEL); + + xas_split_alloc(&xas, xa, order, GFP_KERNEL); + xas_lock(&xas); + xas_split(&xas, xa, order); + xas_unlock(&xas); + + xa_for_each(xa, index, entry) { + XA_BUG_ON(xa, entry != xa); + i++; + } + XA_BUG_ON(xa, i != 1 << order); + + xa_set_mark(xa, index, XA_MARK_0); + XA_BUG_ON(xa, !xa_get_mark(xa, index, XA_MARK_0)); + + xa_destroy(xa); +} + +static noinline void check_split(struct xarray *xa) +{ + unsigned int order; + + XA_BUG_ON(xa, !xa_empty(xa)); + + for (order = 1; order < 2 * XA_CHUNK_SHIFT; order++) { + check_split_1(xa, 0, order); + check_split_1(xa, 1UL << order, order); + check_split_1(xa, 3UL << order, order); + } +} +#else +static void check_split(struct xarray *xa) { } +#endif + static void check_align_1(struct xarray *xa, char *name) { int i; @@ -1649,6 +1714,26 @@ #endif } +static noinline void check_get_order(struct xarray *xa) +{ + unsigned int max_order = IS_ENABLED(CONFIG_XARRAY_MULTI) ? 20 : 1; + unsigned int order; + unsigned long i, j; + + for (i = 0; i < 3; i++) + XA_BUG_ON(xa, xa_get_order(xa, i) != 0); + + for (order = 0; order < max_order; order++) { + for (i = 0; i < 10; i++) { + xa_store_order(xa, i << order, order, + xa_mk_index(i << order), GFP_KERNEL); + for (j = i << order; j < (i + 1) << order; j++) + XA_BUG_ON(xa, xa_get_order(xa, j) != order); + xa_erase(xa, i << order); + } + } +} + static noinline void check_destroy(struct xarray *xa) { unsigned long index; @@ -1697,6 +1782,7 @@ check_reserve(&array); check_reserve(&xa0); check_multi_store(&array); + check_get_order(&array); check_xa_alloc(); check_find(&array); check_find_entry(&array); @@ -1708,6 +1794,7 @@ check_store_range(&array); check_store_iter(&array); check_align(&xa0); + check_split(&array); check_workingset(&array, 0); check_workingset(&array, 64); diff -u linux-azure-5.4.0/lib/vsprintf.c linux-azure-5.4.0/lib/vsprintf.c --- linux-azure-5.4.0/lib/vsprintf.c +++ linux-azure-5.4.0/lib/vsprintf.c @@ -50,6 +50,31 @@ #include #include "kstrtox.h" +static unsigned long long simple_strntoull(const char *startp, size_t max_chars, + char **endp, unsigned int base) +{ + const char *cp; + unsigned long long result = 0ULL; + size_t prefix_chars; + unsigned int rv; + + cp = _parse_integer_fixup_radix(startp, &base); + prefix_chars = cp - startp; + if (prefix_chars < max_chars) { + rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); + /* FIXME */ + cp += (rv & ~KSTRTOX_OVERFLOW); + } else { + /* Field too short for prefix + digit, skip over without converting */ + cp = startp + max_chars; + } + + if (endp) + *endp = (char *)cp; + + return result; +} + /** * simple_strtoull - convert a string to an unsigned long long * @cp: The start of the string @@ -60,18 +85,7 @@ */ unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) { - unsigned long long result; - unsigned int rv; - - cp = _parse_integer_fixup_radix(cp, &base); - rv = _parse_integer(cp, base, &result); - /* FIXME */ - cp += (rv & ~KSTRTOX_OVERFLOW); - - if (endp) - *endp = (char *)cp; - - return result; + return simple_strntoull(cp, INT_MAX, endp, base); } EXPORT_SYMBOL(simple_strtoull); @@ -106,6 +120,21 @@ } EXPORT_SYMBOL(simple_strtol); +static long long simple_strntoll(const char *cp, size_t max_chars, char **endp, + unsigned int base) +{ + /* + * simple_strntoull() safely handles receiving max_chars==0 in the + * case cp[0] == '-' && max_chars == 1. + * If max_chars == 0 we can drop through and pass it to simple_strntoull() + * and the content of *cp is irrelevant. + */ + if (*cp == '-' && max_chars > 0) + return -simple_strntoull(cp + 1, max_chars - 1, endp, base); + + return simple_strntoull(cp, max_chars, endp, base); +} + /** * simple_strtoll - convert a string to a signed long long * @cp: The start of the string @@ -116,10 +145,7 @@ */ long long simple_strtoll(const char *cp, char **endp, unsigned int base) { - if (*cp == '-') - return -simple_strtoull(cp + 1, endp, base); - - return simple_strtoull(cp, endp, base); + return simple_strntoll(cp, INT_MAX, endp, base); } EXPORT_SYMBOL(simple_strtoll); @@ -705,14 +731,16 @@ static DECLARE_WORK(enable_ptr_key_work, enable_ptr_key_workfn); -static void fill_random_ptr_key(struct random_ready_callback *unused) +static int fill_random_ptr_key(struct notifier_block *nb, + unsigned long action, void *data) { /* This may be in an interrupt handler. */ queue_work(system_unbound_wq, &enable_ptr_key_work); + return 0; } -static struct random_ready_callback random_ready = { - .func = fill_random_ptr_key +static struct notifier_block random_ready = { + .notifier_call = fill_random_ptr_key }; static int __init initialize_ptr_random(void) @@ -726,7 +754,7 @@ return 0; } - ret = add_random_ready_callback(&random_ready); + ret = register_random_ready_notifier(&random_ready); if (!ret) { return 0; } else if (ret == -EALREADY) { @@ -3371,25 +3399,13 @@ break; if (is_sign) - val.s = qualifier != 'L' ? - simple_strtol(str, &next, base) : - simple_strtoll(str, &next, base); + val.s = simple_strntoll(str, + field_width >= 0 ? field_width : INT_MAX, + &next, base); else - val.u = qualifier != 'L' ? - simple_strtoul(str, &next, base) : - simple_strtoull(str, &next, base); - - if (field_width > 0 && next - str > field_width) { - if (base == 0) - _parse_integer_fixup_radix(str, &base); - while (next - str > field_width) { - if (is_sign) - val.s = div_s64(val.s, base); - else - val.u = div_u64(val.u, base); - --next; - } - } + val.u = simple_strntoull(str, + field_width >= 0 ? field_width : INT_MAX, + &next, base); switch (qualifier) { case 'H': /* that's 'hh' in format */ diff -u linux-azure-5.4.0/lib/xarray.c linux-azure-5.4.0/lib/xarray.c --- linux-azure-5.4.0/lib/xarray.c +++ linux-azure-5.4.0/lib/xarray.c @@ -266,13 +266,14 @@ */ static void xas_destroy(struct xa_state *xas) { - struct xa_node *node = xas->xa_alloc; + struct xa_node *next, *node = xas->xa_alloc; - if (!node) - return; - XA_NODE_BUG_ON(node, !list_empty(&node->private_list)); - kmem_cache_free(radix_tree_node_cachep, node); - xas->xa_alloc = NULL; + while (node) { + XA_NODE_BUG_ON(node, !list_empty(&node->private_list)); + next = rcu_dereference_raw(node->parent); + radix_tree_node_rcu_free(&node->rcu_head); + xas->xa_alloc = node = next; + } } /** @@ -304,6 +305,7 @@ xas->xa_alloc = kmem_cache_alloc(radix_tree_node_cachep, gfp); if (!xas->xa_alloc) return false; + xas->xa_alloc->parent = NULL; XA_NODE_BUG_ON(xas->xa_alloc, !list_empty(&xas->xa_alloc->private_list)); xas->xa_node = XAS_RESTART; return true; @@ -339,6 +341,7 @@ } if (!xas->xa_alloc) return false; + xas->xa_alloc->parent = NULL; XA_NODE_BUG_ON(xas->xa_alloc, !list_empty(&xas->xa_alloc->private_list)); xas->xa_node = XAS_RESTART; return true; @@ -403,7 +406,7 @@ /* * Use this to calculate the maximum index that will need to be created * in order to add the entry described by @xas. Because we cannot store a - * multiple-index entry at index 0, the calculation is a little more complex + * multi-index entry at index 0, the calculation is a little more complex * than you might expect. */ static unsigned long xas_max(struct xa_state *xas) @@ -719,6 +722,8 @@ for (;;) { struct xa_node *node = xas->xa_node; + if (node->shift >= shift) + break; xas->xa_node = xa_parent_locked(xas->xa, node); xas->xa_offset = node->offset - 1; if (node->offset != 0) @@ -946,6 +951,155 @@ } EXPORT_SYMBOL_GPL(xas_init_marks); +#ifdef CONFIG_XARRAY_MULTI +static unsigned int node_get_marks(struct xa_node *node, unsigned int offset) +{ + unsigned int marks = 0; + xa_mark_t mark = XA_MARK_0; + + for (;;) { + if (node_get_mark(node, offset, mark)) + marks |= 1 << (__force unsigned int)mark; + if (mark == XA_MARK_MAX) + break; + mark_inc(mark); + } + + return marks; +} + +static void node_set_marks(struct xa_node *node, unsigned int offset, + struct xa_node *child, unsigned int marks) +{ + xa_mark_t mark = XA_MARK_0; + + for (;;) { + if (marks & (1 << (__force unsigned int)mark)) { + node_set_mark(node, offset, mark); + if (child) + node_mark_all(child, mark); + } + if (mark == XA_MARK_MAX) + break; + mark_inc(mark); + } +} + +/** + * xas_split_alloc() - Allocate memory for splitting an entry. + * @xas: XArray operation state. + * @entry: New entry which will be stored in the array. + * @order: New entry order. + * @gfp: Memory allocation flags. + * + * This function should be called before calling xas_split(). + * If necessary, it will allocate new nodes (and fill them with @entry) + * to prepare for the upcoming split of an entry of @order size into + * entries of the order stored in the @xas. + * + * Context: May sleep if @gfp flags permit. + */ +void xas_split_alloc(struct xa_state *xas, void *entry, unsigned int order, + gfp_t gfp) +{ + unsigned int sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1; + unsigned int mask = xas->xa_sibs; + + /* XXX: no support for splitting really large entries yet */ + if (WARN_ON(xas->xa_shift + 2 * XA_CHUNK_SHIFT < order)) + goto nomem; + if (xas->xa_shift + XA_CHUNK_SHIFT > order) + return; + + do { + unsigned int i; + void *sibling; + struct xa_node *node; + + node = kmem_cache_alloc(radix_tree_node_cachep, gfp); + if (!node) + goto nomem; + node->array = xas->xa; + for (i = 0; i < XA_CHUNK_SIZE; i++) { + if ((i & mask) == 0) { + RCU_INIT_POINTER(node->slots[i], entry); + sibling = xa_mk_sibling(0); + } else { + RCU_INIT_POINTER(node->slots[i], sibling); + } + } + RCU_INIT_POINTER(node->parent, xas->xa_alloc); + xas->xa_alloc = node; + } while (sibs-- > 0); + + return; +nomem: + xas_destroy(xas); + xas_set_err(xas, -ENOMEM); +} +EXPORT_SYMBOL_GPL(xas_split_alloc); + +/** + * xas_split() - Split a multi-index entry into smaller entries. + * @xas: XArray operation state. + * @entry: New entry to store in the array. + * @order: New entry order. + * + * The value in the entry is copied to all the replacement entries. + * + * Context: Any context. The caller should hold the xa_lock. + */ +void xas_split(struct xa_state *xas, void *entry, unsigned int order) +{ + unsigned int sibs = (1 << (order % XA_CHUNK_SHIFT)) - 1; + unsigned int offset, marks; + struct xa_node *node; + void *curr = xas_load(xas); + int values = 0; + + node = xas->xa_node; + if (xas_top(node)) + return; + + marks = node_get_marks(node, xas->xa_offset); + + offset = xas->xa_offset + sibs; + do { + if (xas->xa_shift < node->shift) { + struct xa_node *child = xas->xa_alloc; + + xas->xa_alloc = rcu_dereference_raw(child->parent); + child->shift = node->shift - XA_CHUNK_SHIFT; + child->offset = offset; + child->count = XA_CHUNK_SIZE; + child->nr_values = xa_is_value(entry) ? + XA_CHUNK_SIZE : 0; + RCU_INIT_POINTER(child->parent, node); + node_set_marks(node, offset, child, marks); + rcu_assign_pointer(node->slots[offset], + xa_mk_node(child)); + if (xa_is_value(curr)) + values--; + xas_update(xas, child); + } else { + unsigned int canon = offset - xas->xa_sibs; + + node_set_marks(node, canon, NULL, marks); + rcu_assign_pointer(node->slots[canon], entry); + while (offset > canon) + rcu_assign_pointer(node->slots[offset--], + xa_mk_sibling(canon)); + values += (xa_is_value(entry) - xa_is_value(curr)) * + (xas->xa_sibs + 1); + } + } while (offset-- > xas->xa_offset); + + node->nr_values += values; + xas_update(xas, node); +} +EXPORT_SYMBOL_GPL(xas_split); +#endif + /** * xas_pause() - Pause a walk to drop a lock. * @xas: XArray operation state. @@ -1407,7 +1561,7 @@ * @gfp: Memory allocation flags. * * After this function returns, loads from this index will return @entry. - * Storing into an existing multislot entry updates the entry of every index. + * Storing into an existing multi-index entry updates the entry of every index. * The marks associated with @index are unaffected unless @entry is %NULL. * * Context: Any context. Takes and releases the xa_lock. @@ -1549,7 +1703,7 @@ * * After this function returns, loads from any index between @first and @last, * inclusive will return @entry. - * Storing into an existing multislot entry updates the entry of every index. + * Storing into an existing multi-index entry updates the entry of every index. * The marks associated with @index are unaffected unless @entry is %NULL. * * Context: Process context. Takes and releases the xa_lock. May sleep @@ -1592,6 +1746,46 @@ return xas_result(&xas, NULL); } EXPORT_SYMBOL(xa_store_range); + +/** + * xa_get_order() - Get the order of an entry. + * @xa: XArray. + * @index: Index of the entry. + * + * Return: A number between 0 and 63 indicating the order of the entry. + */ +int xa_get_order(struct xarray *xa, unsigned long index) +{ + XA_STATE(xas, xa, index); + void *entry; + int order = 0; + + rcu_read_lock(); + entry = xas_load(&xas); + + if (!entry) + goto unlock; + + if (!xas.xa_node) + goto unlock; + + for (;;) { + unsigned int slot = xas.xa_offset + (1 << order); + + if (slot >= XA_CHUNK_SIZE) + break; + if (!xa_is_sibling(xas.xa_node->slots[slot])) + break; + order++; + } + + order += xas.xa_node->shift; +unlock: + rcu_read_unlock(); + + return order; +} +EXPORT_SYMBOL(xa_get_order); #endif /* CONFIG_XARRAY_MULTI */ /** diff -u linux-azure-5.4.0/mm/backing-dev.c linux-azure-5.4.0/mm/backing-dev.c --- linux-azure-5.4.0/mm/backing-dev.c +++ linux-azure-5.4.0/mm/backing-dev.c @@ -1013,6 +1013,13 @@ wb_shutdown(&bdi->wb); cgwb_bdi_unregister(bdi); + /* + * If this BDI's min ratio has been set, use bdi_set_min_ratio() to + * update the global bdi_min_ratio. + */ + if (bdi->min_ratio) + bdi_set_min_ratio(bdi, 0); + if (bdi->dev) { bdi_debug_unregister(bdi); device_unregister(bdi->dev); diff -u linux-azure-5.4.0/mm/compaction.c linux-azure-5.4.0/mm/compaction.c --- linux-azure-5.4.0/mm/compaction.c +++ linux-azure-5.4.0/mm/compaction.c @@ -1709,6 +1709,8 @@ update_fast_start_pfn(cc, free_pfn); pfn = pageblock_start_pfn(free_pfn); + if (pfn < cc->zone->zone_start_pfn) + pfn = cc->zone->zone_start_pfn; cc->fast_search_fail = 0; found_block = true; set_pageblock_skip(freepage); diff -u linux-azure-5.4.0/mm/filemap.c linux-azure-5.4.0/mm/filemap.c --- linux-azure-5.4.0/mm/filemap.c +++ linux-azure-5.4.0/mm/filemap.c @@ -856,7 +856,6 @@ int huge = PageHuge(page); struct mem_cgroup *memcg; int error; - void *old; VM_BUG_ON_PAGE(!PageLocked(page), page); VM_BUG_ON_PAGE(PageSwapBacked(page), page); @@ -872,21 +871,41 @@ get_page(page); page->mapping = mapping; page->index = offset; + gfp_mask &= GFP_RECLAIM_MASK; do { + unsigned int order = xa_get_order(xas.xa, xas.xa_index); + void *entry, *old = NULL; + + if (order > thp_order(page)) + xas_split_alloc(&xas, xa_load(xas.xa, xas.xa_index), + order, gfp_mask); xas_lock_irq(&xas); - old = xas_load(&xas); - if (old && !xa_is_value(old)) - xas_set_err(&xas, -EEXIST); + xas_for_each_conflict(&xas, entry) { + old = entry; + if (!xa_is_value(entry)) { + xas_set_err(&xas, -EEXIST); + goto unlock; + } + } + + if (old) { + if (shadowp) + *shadowp = old; + /* entry may have been split before we acquired lock */ + order = xa_get_order(xas.xa, xas.xa_index); + if (order > thp_order(page)) { + xas_split(&xas, old, order); + xas_reset(&xas); + } + } + xas_store(&xas, page); if (xas_error(&xas)) goto unlock; - if (xa_is_value(old)) { + if (old) mapping->nrexceptional--; - if (shadowp) - *shadowp = old; - } mapping->nrpages++; /* hugetlb pages do not participate in page cache accounting */ @@ -894,7 +913,7 @@ __inc_node_page_state(page, NR_FILE_PAGES); unlock: xas_unlock_irq(&xas); - } while (xas_nomem(&xas, gfp_mask & GFP_RECLAIM_MASK)); + } while (xas_nomem(&xas, gfp_mask)); if (xas_error(&xas)) goto error; diff -u linux-azure-5.4.0/mm/huge_memory.c linux-azure-5.4.0/mm/huge_memory.c --- linux-azure-5.4.0/mm/huge_memory.c +++ linux-azure-5.4.0/mm/huge_memory.c @@ -61,6 +61,7 @@ static atomic_t huge_zero_refcount; struct page *huge_zero_page __read_mostly; +unsigned long huge_zero_pfn __read_mostly = ~0UL; bool transparent_hugepage_enabled(struct vm_area_struct *vma) { @@ -97,6 +98,7 @@ __free_pages(zero_page, compound_order(zero_page)); goto retry; } + WRITE_ONCE(huge_zero_pfn, page_to_pfn(zero_page)); /* We take additional reference here. It will be put back by shrinker */ atomic_set(&huge_zero_refcount, 2); @@ -146,6 +148,7 @@ if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) { struct page *zero_page = xchg(&huge_zero_page, NULL); BUG_ON(zero_page == NULL); + WRITE_ONCE(huge_zero_pfn, ~0UL); __free_pages(zero_page, compound_order(zero_page)); return HPAGE_PMD_NR; } @@ -1720,7 +1723,7 @@ * If other processes are mapping this page, we couldn't discard * the page unless they all do MADV_FREE so let's skip the page. */ - if (page_mapcount(page) != 1) + if (total_mapcount(page) != 1) goto out; if (!trylock_page(page)) @@ -2155,7 +2158,7 @@ count_vm_event(THP_SPLIT_PMD); if (!vma_is_anonymous(vma)) { - _pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd); + old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd); /* * We are going to unmap this huge page. So * just go ahead and zap it @@ -2164,16 +2167,25 @@ zap_deposited_table(mm, pmd); if (vma_is_dax(vma)) return; - page = pmd_page(_pmd); - if (!PageDirty(page) && pmd_dirty(_pmd)) - set_page_dirty(page); - if (!PageReferenced(page) && pmd_young(_pmd)) - SetPageReferenced(page); - page_remove_rmap(page, true); - put_page(page); + if (unlikely(is_pmd_migration_entry(old_pmd))) { + swp_entry_t entry; + + entry = pmd_to_swp_entry(old_pmd); + page = migration_entry_to_page(entry); + } else { + page = pmd_page(old_pmd); + if (!PageDirty(page) && pmd_dirty(old_pmd)) + set_page_dirty(page); + if (!PageReferenced(page) && pmd_young(old_pmd)) + SetPageReferenced(page); + page_remove_rmap(page, true); + put_page(page); + } add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR); return; - } else if (pmd_trans_huge(*pmd) && is_huge_zero_pmd(*pmd)) { + } + + if (is_huge_zero_pmd(*pmd)) { /* * FIXME: Do we want to invalidate secondary mmu by calling * mmu_notifier_invalidate_range() see comments below inside @@ -2449,16 +2461,16 @@ static void unmap_page(struct page *page) { enum ttu_flags ttu_flags = TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS | - TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD; - bool unmap_success; + TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD | TTU_SYNC; VM_BUG_ON_PAGE(!PageHead(page), page); if (PageAnon(page)) ttu_flags |= TTU_SPLIT_FREEZE; - unmap_success = try_to_unmap(page, ttu_flags); - VM_BUG_ON_PAGE(!unmap_success, page); + try_to_unmap(page, ttu_flags); + + VM_WARN_ON_ONCE_PAGE(page_mapped(page), page); } static void remap_page(struct page *page) @@ -2737,7 +2749,7 @@ struct deferred_split *ds_queue = get_deferred_split_queue(page); struct anon_vma *anon_vma = NULL; struct address_space *mapping = NULL; - int count, mapcount, extra_pins, ret; + int extra_pins, ret; bool mlocked; unsigned long flags; pgoff_t end; @@ -2799,7 +2811,6 @@ mlocked = PageMlocked(page); unmap_page(head); - VM_BUG_ON_PAGE(compound_mapcount(head), head); /* Make sure the page is not on per-CPU pagevec as it takes pin */ if (mlocked) @@ -2822,9 +2833,7 @@ /* Prevent deferred_split_scan() touching ->_refcount */ spin_lock(&ds_queue->split_queue_lock); - count = page_count(head); - mapcount = total_mapcount(head); - if (!mapcount && page_ref_freeze(head, 1 + extra_pins)) { + if (page_ref_freeze(head, 1 + extra_pins)) { if (!list_empty(page_deferred_list(head))) { ds_queue->split_queue_len--; list_del(page_deferred_list(head)); @@ -2845,16 +2854,9 @@ } else ret = 0; } else { - if (IS_ENABLED(CONFIG_DEBUG_VM) && mapcount) { - pr_alert("total_mapcount: %u, page_count(): %u\n", - mapcount, count); - if (PageTail(page)) - dump_page(head, NULL); - dump_page(page, "total_mapcount(head) > 0"); - BUG(); - } spin_unlock(&ds_queue->split_queue_lock); -fail: if (mapping) +fail: + if (mapping) xa_unlock(&mapping->i_pages); spin_unlock_irqrestore(&pgdata->lru_lock, flags); remap_page(head); diff -u linux-azure-5.4.0/mm/hugetlb.c linux-azure-5.4.0/mm/hugetlb.c --- linux-azure-5.4.0/mm/hugetlb.c +++ linux-azure-5.4.0/mm/hugetlb.c @@ -1461,15 +1461,12 @@ return get_compound_page_dtor(page_head) == free_huge_page; } -pgoff_t __basepage_index(struct page *page) +pgoff_t hugetlb_basepage_index(struct page *page) { struct page *page_head = compound_head(page); pgoff_t index = page_index(page_head); unsigned long compound_idx; - if (!PageHuge(page_head)) - return page_index(page); - if (compound_order(page_head) >= MAX_ORDER) compound_idx = page_to_pfn(page) - page_to_pfn(page_head); else @@ -2221,11 +2218,11 @@ page = alloc_buddy_huge_page_with_mpol(h, vma, addr); if (!page) goto out_uncharge_cgroup; + spin_lock(&hugetlb_lock); if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) { SetPagePrivate(page); h->resv_huge_pages--; } - spin_lock(&hugetlb_lock); list_move(&page->lru, &h->hugepage_activelist); /* Fall through */ } @@ -3592,6 +3589,7 @@ struct hstate *h = hstate_vma(vma); unsigned long sz = huge_page_size(h); struct mmu_notifier_range range; + bool force_flush = false; WARN_ON(!is_vm_hugetlb_page(vma)); BUG_ON(start & ~huge_page_mask(h)); @@ -3620,10 +3618,8 @@ ptl = huge_pte_lock(h, mm, ptep); if (huge_pmd_unshare(mm, &address, ptep)) { spin_unlock(ptl); - /* - * We just unmapped a page of PMDs by clearing a PUD. - * The caller's TLB flush range should cover this area. - */ + tlb_flush_pmd_range(tlb, address & PUD_MASK, PUD_SIZE); + force_flush = true; continue; } @@ -3680,6 +3676,22 @@ } mmu_notifier_invalidate_range_end(&range); tlb_end_vma(tlb, vma); + + /* + * If we unshared PMDs, the TLB flush was not recorded in mmu_gather. We + * could defer the flush until now, since by holding i_mmap_rwsem we + * guaranteed that the last refernece would not be dropped. But we must + * do the flushing before we return, as otherwise i_mmap_rwsem will be + * dropped and the last reference to the shared PMDs page might be + * dropped as well. + * + * In theory we could defer the freeing of the PMD pages as well, but + * huge_pmd_unshare() relies on the exact page_count for the PMD page to + * detect sharing, so we cannot defer the release of the page either. + * Instead, do flush now. + */ + if (force_flush) + tlb_flush_mmu_tlbonly(tlb); } void __unmap_hugepage_range_final(struct mmu_gather *tlb, @@ -4338,10 +4350,20 @@ struct page *page; if (!*pagep) { - ret = -ENOMEM; + /* If a page already exists, then it's UFFDIO_COPY for + * a non-missing case. Return -EEXIST. + */ + if (vm_shared && + hugetlbfs_pagecache_present(h, dst_vma, dst_addr)) { + ret = -EEXIST; + goto out; + } + page = alloc_huge_page(dst_vma, dst_addr, 0); - if (IS_ERR(page)) + if (IS_ERR(page)) { + ret = -ENOMEM; goto out; + } ret = copy_huge_page_from_user(page, (const void __user *) src_addr, @@ -5011,7 +5033,14 @@ pud_clear(pud); put_page(virt_to_page(ptep)); mm_dec_nr_pmds(mm); - *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE; + /* + * This update of passed address optimizes loops sequentially + * processing addresses in increments of huge page size (PMD_SIZE + * in this case). By clearing the pud, a PUD_SIZE area is unmapped. + * Update address to the 'last page' in the cleared area so that + * calling loop can move to first page past this area. + */ + *addr |= PUD_SIZE - PMD_SIZE; return 1; } #define want_pmd_share() (1) diff -u linux-azure-5.4.0/mm/internal.h linux-azure-5.4.0/mm/internal.h --- linux-azure-5.4.0/mm/internal.h +++ linux-azure-5.4.0/mm/internal.h @@ -339,27 +339,52 @@ extern pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma); /* - * At what user virtual address is page expected in @vma? + * At what user virtual address is page expected in vma? + * Returns -EFAULT if all of the page is outside the range of vma. + * If page is a compound head, the entire compound page is considered. */ static inline unsigned long -__vma_address(struct page *page, struct vm_area_struct *vma) +vma_address(struct page *page, struct vm_area_struct *vma) { - pgoff_t pgoff = page_to_pgoff(page); - return vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT); + pgoff_t pgoff; + unsigned long address; + + VM_BUG_ON_PAGE(PageKsm(page), page); /* KSM page->index unusable */ + pgoff = page_to_pgoff(page); + if (pgoff >= vma->vm_pgoff) { + address = vma->vm_start + + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT); + /* Check for address beyond vma (or wrapped through 0?) */ + if (address < vma->vm_start || address >= vma->vm_end) + address = -EFAULT; + } else if (PageHead(page) && + pgoff + compound_nr(page) - 1 >= vma->vm_pgoff) { + /* Test above avoids possibility of wrap to 0 on 32-bit */ + address = vma->vm_start; + } else { + address = -EFAULT; + } + return address; } +/* + * Then at what user virtual address will none of the page be found in vma? + * Assumes that vma_address() already returned a good starting address. + * If page is a compound head, the entire compound page is considered. + */ static inline unsigned long -vma_address(struct page *page, struct vm_area_struct *vma) +vma_address_end(struct page *page, struct vm_area_struct *vma) { - unsigned long start, end; - - start = __vma_address(page, vma); - end = start + PAGE_SIZE * (hpage_nr_pages(page) - 1); - - /* page should be within @vma mapping range */ - VM_BUG_ON_VMA(end < vma->vm_start || start >= vma->vm_end, vma); + pgoff_t pgoff; + unsigned long address; - return max(start, vma->vm_start); + VM_BUG_ON_PAGE(PageKsm(page), page); /* KSM page->index unusable */ + pgoff = page_to_pgoff(page) + compound_nr(page); + address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT); + /* Check for address beyond vma (or wrapped through 0?) */ + if (address < vma->vm_start || address > vma->vm_end) + address = vma->vm_end; + return address; } static inline struct file *maybe_unlock_mmap_for_io(struct vm_fault *vmf, diff -u linux-azure-5.4.0/mm/kmemleak.c linux-azure-5.4.0/mm/kmemleak.c --- linux-azure-5.4.0/mm/kmemleak.c +++ linux-azure-5.4.0/mm/kmemleak.c @@ -787,6 +787,8 @@ unsigned long flags; struct kmemleak_object *object; struct kmemleak_scan_area *area = NULL; + unsigned long untagged_ptr; + unsigned long untagged_objp; object = find_and_get_object(ptr, 1); if (!object) { @@ -795,6 +797,9 @@ return; } + untagged_ptr = (unsigned long)kasan_reset_tag((void *)ptr); + untagged_objp = (unsigned long)kasan_reset_tag((void *)object->pointer); + if (scan_area_cache) area = kmem_cache_alloc(scan_area_cache, gfp_kmemleak_mask(gfp)); @@ -806,8 +811,8 @@ goto out_unlock; } if (size == SIZE_MAX) { - size = object->pointer + object->size - ptr; - } else if (ptr + size > object->pointer + object->size) { + size = untagged_objp + object->size - untagged_ptr; + } else if (untagged_ptr + size > untagged_objp + object->size) { kmemleak_warn("Scan area larger than object 0x%08lx\n", ptr); dump_object_info(object); kmem_cache_free(scan_area_cache, area); @@ -1399,7 +1404,8 @@ { unsigned long flags; struct kmemleak_object *object; - int i; + struct zone *zone; + int __maybe_unused i; int new_leaks = 0; jiffies_last_scan = jiffies; @@ -1439,9 +1445,9 @@ * Struct page scanning for each node. */ get_online_mems(); - for_each_online_node(i) { - unsigned long start_pfn = node_start_pfn(i); - unsigned long end_pfn = node_end_pfn(i); + for_each_populated_zone(zone) { + unsigned long start_pfn = zone->zone_start_pfn; + unsigned long end_pfn = zone_end_pfn(zone); unsigned long pfn; for (pfn = start_pfn; pfn < end_pfn; pfn++) { @@ -1450,8 +1456,8 @@ if (!page) continue; - /* only scan pages belonging to this node */ - if (page_to_nid(page) != i) + /* only scan pages belonging to this zone */ + if (page_zone(page) != zone) continue; /* only scan if page is in use */ if (page_count(page) == 0) diff -u linux-azure-5.4.0/mm/maccess.c linux-azure-5.4.0/mm/maccess.c --- linux-azure-5.4.0/mm/maccess.c +++ linux-azure-5.4.0/mm/maccess.c @@ -43,11 +43,20 @@ * do_page_fault() doesn't attempt to take mmap_sem. This makes * probe_kernel_read() suitable for use within regions where the caller * already holds mmap_sem, or other locks which nest inside mmap_sem. + * + * probe_kernel_read_strict() is the same as probe_kernel_read() except for + * the case where architectures have non-overlapping user and kernel address + * ranges: probe_kernel_read_strict() will additionally return -EFAULT for + * probing memory on a user address range where probe_user_read() is supposed + * to be used instead. */ long __weak probe_kernel_read(void *dst, const void *src, size_t size) __attribute__((alias("__probe_kernel_read"))); +long __weak probe_kernel_read_strict(void *dst, const void *src, size_t size) + __attribute__((alias("__probe_kernel_read"))); + long __probe_kernel_read(void *dst, const void *src, size_t size) { long ret; @@ -157,8 +166,22 @@ * * If @count is smaller than the length of the string, copies @count-1 bytes, * sets the last byte of @dst buffer to NUL and returns @count. + * + * strncpy_from_unsafe_strict() is the same as strncpy_from_unsafe() except + * for the case where architectures have non-overlapping user and kernel address + * ranges: strncpy_from_unsafe_strict() will additionally return -EFAULT for + * probing memory on a user address range where strncpy_from_unsafe_user() is + * supposed to be used instead. */ -long strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count) + +long __weak strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count) + __attribute__((alias("__strncpy_from_unsafe"))); + +long __weak strncpy_from_unsafe_strict(char *dst, const void *unsafe_addr, + long count) + __attribute__((alias("__strncpy_from_unsafe"))); + +long __strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count) { mm_segment_t old_fs = get_fs(); const void *src = unsafe_addr; diff -u linux-azure-5.4.0/mm/madvise.c linux-azure-5.4.0/mm/madvise.c --- linux-azure-5.4.0/mm/madvise.c +++ linux-azure-5.4.0/mm/madvise.c @@ -429,8 +429,11 @@ continue; } - /* Do not interfere with other mappings of this page */ - if (page_mapcount(page) != 1) + /* + * Do not interfere with other mappings of this page and + * non-LRU page. + */ + if (!PageLRU(page) || page_mapcount(page) != 1) continue; VM_BUG_ON_PAGE(PageTransCompound(page), page); diff -u linux-azure-5.4.0/mm/memblock.c linux-azure-5.4.0/mm/memblock.c --- linux-azure-5.4.0/mm/memblock.c +++ linux-azure-5.4.0/mm/memblock.c @@ -164,6 +164,8 @@ { unsigned long i; + memblock_cap_size(base, &size); + for (i = 0; i < type->cnt; i++) if (memblock_addrs_overlap(base, size, type->regions[i].base, type->regions[i].size)) @@ -346,14 +348,20 @@ addr = __pa(memblock.reserved.regions); size = PAGE_ALIGN(sizeof(struct memblock_region) * memblock.reserved.max); - __memblock_free_late(addr, size); + if (memblock_reserved_in_slab) + kfree(memblock.reserved.regions); + else + __memblock_free_late(addr, size); } if (memblock.memory.regions != memblock_memory_init_regions) { addr = __pa(memblock.memory.regions); size = PAGE_ALIGN(sizeof(struct memblock_region) * memblock.memory.max); - __memblock_free_late(addr, size); + if (memblock_memory_in_slab) + kfree(memblock.memory.regions); + else + __memblock_free_late(addr, size); } } #endif @@ -1760,7 +1768,6 @@ */ bool __init_memblock memblock_is_region_reserved(phys_addr_t base, phys_addr_t size) { - memblock_cap_size(base, &size); return memblock_overlaps_region(&memblock.reserved, base, size); } diff -u linux-azure-5.4.0/mm/memcontrol.c linux-azure-5.4.0/mm/memcontrol.c --- linux-azure-5.4.0/mm/memcontrol.c +++ linux-azure-5.4.0/mm/memcontrol.c @@ -6446,6 +6446,14 @@ if (!root) root = root_mem_cgroup; + + /* + * Effective values of the reclaim targets are ignored so they + * can be stale. Have a look at mem_cgroup_protection for more + * details. + * TODO: calculation should be more robust so that we do not need + * that special casing. + */ if (memcg == root) return MEMCG_PROT_NONE; @@ -6965,7 +6973,7 @@ if (!strcmp(token, "nokmem")) cgroup_memory_nokmem = true; } - return 0; + return 1; } __setup("cgroup.memory=", cgroup_memory); diff -u linux-azure-5.4.0/mm/memory-failure.c linux-azure-5.4.0/mm/memory-failure.c --- linux-azure-5.4.0/mm/memory-failure.c +++ linux-azure-5.4.0/mm/memory-failure.c @@ -1382,7 +1382,12 @@ return 0; } - if (!PageTransTail(p) && !PageLRU(p)) + /* + * __munlock_pagevec may clear a writeback page's LRU flag without + * page_lock. We need wait writeback completion for this page or it + * may trigger vfs BUG while evict inode. + */ + if (!PageTransTail(p) && !PageLRU(p) && !PageWriteback(p)) goto identify_page_state; /* diff -u linux-azure-5.4.0/mm/memory.c linux-azure-5.4.0/mm/memory.c --- linux-azure-5.4.0/mm/memory.c +++ linux-azure-5.4.0/mm/memory.c @@ -1013,6 +1013,17 @@ return ret; } +/* Whether we should zap all COWed (private) pages too */ +static inline bool should_zap_cows(struct zap_details *details) +{ + /* By default, zap all pages */ + if (!details) + return true; + + /* Or, we zap COWed pages only if the caller wants to */ + return !details->check_mapping; +} + static unsigned long zap_pte_range(struct mmu_gather *tlb, struct vm_area_struct *vma, pmd_t *pmd, unsigned long addr, unsigned long end, @@ -1104,16 +1115,18 @@ continue; } - /* If details->check_mapping, we leave swap entries. */ - if (unlikely(details)) - continue; - - if (!non_swap_entry(entry)) + if (!non_swap_entry(entry)) { + /* Genuine swap entry, hence a private anon page */ + if (!should_zap_cows(details)) + continue; rss[MM_SWAPENTS]--; - else if (is_migration_entry(entry)) { + } else if (is_migration_entry(entry)) { struct page *page; page = migration_entry_to_page(entry); + if (details && details->check_mapping && + details->check_mapping != page_rmapping(page)) + continue; rss[mm_counter(page)]--; } if (unlikely(!free_swap_and_cache(entry))) @@ -1165,7 +1178,18 @@ else if (zap_huge_pmd(tlb, vma, pmd, addr)) goto next; /* fall through */ + } else if (details && details->single_page && + PageTransCompound(details->single_page) && + next - addr == HPAGE_PMD_SIZE && pmd_none(*pmd)) { + spinlock_t *ptl = pmd_lock(tlb->mm, pmd); + /* + * Take and drop THP pmd lock so that we cannot return + * prematurely, while zap_huge_pmd() has cleared *pmd, + * but not yet decremented compound_mapcount(). + */ + spin_unlock(ptl); } + /* * Here there can be other concurrent MADV_DONTNEED or * trans huge page faults running, and if the pmd is @@ -2771,6 +2795,36 @@ } /** + * unmap_mapping_page() - Unmap single page from processes. + * @page: The locked page to be unmapped. + * + * Unmap this page from any userspace process which still has it mmaped. + * Typically, for efficiency, the range of nearby pages has already been + * unmapped by unmap_mapping_pages() or unmap_mapping_range(). But once + * truncation or invalidation holds the lock on a page, it may find that + * the page has been remapped again: and then uses unmap_mapping_page() + * to unmap it finally. + */ +void unmap_mapping_page(struct page *page) +{ + struct address_space *mapping = page->mapping; + struct zap_details details = { }; + + VM_BUG_ON(!PageLocked(page)); + VM_BUG_ON(PageTail(page)); + + details.check_mapping = mapping; + details.first_index = page->index; + details.last_index = page->index + hpage_nr_pages(page) - 1; + details.single_page = page; + + i_mmap_lock_write(mapping); + if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root))) + unmap_mapping_range_tree(&mapping->i_mmap, &details); + i_mmap_unlock_write(mapping); +} + +/** * unmap_mapping_pages() - Unmap pages from processes. * @mapping: The address space containing pages to be unmapped. * @start: Index of first page to be unmapped. @@ -3205,11 +3259,20 @@ return ret; if (unlikely(PageHWPoison(vmf->page))) { - if (ret & VM_FAULT_LOCKED) - unlock_page(vmf->page); - put_page(vmf->page); + struct page *page = vmf->page; + vm_fault_t poisonret = VM_FAULT_HWPOISON; + if (ret & VM_FAULT_LOCKED) { + if (page_mapped(page)) + unmap_mapping_pages(page_mapping(page), + page->index, 1, false); + /* Retry if a clean page was removed from the cache. */ + if (invalidate_inode_page(page)) + poisonret = VM_FAULT_NOPAGE; + unlock_page(page); + } + put_page(page); vmf->page = NULL; - return VM_FAULT_HWPOISON; + return poisonret; } if (unlikely(!(ret & VM_FAULT_LOCKED))) @@ -4739,6 +4802,8 @@ if (rc) break; + flush_dcache_page(subpage); + cond_resched(); } return ret_val; diff -u linux-azure-5.4.0/mm/memory_hotplug.c linux-azure-5.4.0/mm/memory_hotplug.c --- linux-azure-5.4.0/mm/memory_hotplug.c +++ linux-azure-5.4.0/mm/memory_hotplug.c @@ -788,8 +788,8 @@ return movable_node_enabled ? movable_zone : kernel_zone; } -struct zone * zone_for_pfn_range(int online_type, int nid, unsigned start_pfn, - unsigned long nr_pages) +struct zone *zone_for_pfn_range(int online_type, int nid, + unsigned long start_pfn, unsigned long nr_pages) { if (online_type == MMOP_ONLINE_KERNEL) return default_kernel_zone_for_pfn(nid, start_pfn, nr_pages); diff -u linux-azure-5.4.0/mm/mempolicy.c linux-azure-5.4.0/mm/mempolicy.c --- linux-azure-5.4.0/mm/mempolicy.c +++ linux-azure-5.4.0/mm/mempolicy.c @@ -127,6 +127,36 @@ static struct mempolicy preferred_node_policy[MAX_NUMNODES]; +/** + * numa_map_to_online_node - Find closest online node + * @node: Node id to start the search + * + * Lookup the next closest node by distance if @nid is not online. + */ +int numa_map_to_online_node(int node) +{ + int min_node; + + if (node == NUMA_NO_NODE) + node = 0; + + min_node = node; + if (!node_online(node)) { + int min_dist = INT_MAX, dist, n; + + for_each_online_node(n) { + dist = node_distance(node, n); + if (dist < min_dist) { + min_dist = dist; + min_node = n; + } + } + } + + return min_node; +} +EXPORT_SYMBOL_GPL(numa_map_to_online_node); + struct mempolicy *get_task_policy(struct task_struct *p) { struct mempolicy *pol = p->mempolicy; @@ -348,7 +378,7 @@ */ static void mpol_rebind_policy(struct mempolicy *pol, const nodemask_t *newmask) { - if (!pol) + if (!pol || pol->mode == MPOL_LOCAL) return; if (!mpol_store_user_nodemask(pol) && !(pol->flags & MPOL_F_LOCAL) && nodes_equal(pol->w.cpuset_mems_allowed, *newmask)) @@ -731,7 +761,6 @@ static int mbind_range(struct mm_struct *mm, unsigned long start, unsigned long end, struct mempolicy *new_pol) { - struct vm_area_struct *next; struct vm_area_struct *prev; struct vm_area_struct *vma; int err = 0; @@ -747,8 +776,7 @@ if (start > vma->vm_start) prev = vma; - for (; vma && vma->vm_start < end; prev = vma, vma = next) { - next = vma->vm_next; + for (; vma && vma->vm_start < end; prev = vma, vma = vma->vm_next) { vmstart = max(start, vma->vm_start); vmend = min(end, vma->vm_end); @@ -762,10 +790,6 @@ new_pol, vma->vm_userfaultfd_ctx); if (prev) { vma = prev; - next = vma->vm_next; - if (mpol_equal(vma_policy(vma), new_pol)) - continue; - /* vma_merge() joined vma && vma->next, case 8 */ goto replace; } if (vma->vm_start != vmstart) { @@ -2143,8 +2167,9 @@ * memory as well. */ if (!page && (gfp & __GFP_DIRECT_RECLAIM)) - page = __alloc_pages_node(hpage_node, - gfp | __GFP_NORETRY, order); + page = __alloc_pages_nodemask(gfp | __GFP_NORETRY, + order, hpage_node, + nmask); goto out; } @@ -2564,6 +2589,7 @@ mpol_new = kmem_cache_alloc(policy_cache, GFP_KERNEL); if (!mpol_new) goto err_out; + atomic_set(&mpol_new->refcnt, 1); goto restart; } diff -u linux-azure-5.4.0/mm/migrate.c linux-azure-5.4.0/mm/migrate.c --- linux-azure-5.4.0/mm/migrate.c +++ linux-azure-5.4.0/mm/migrate.c @@ -321,6 +321,7 @@ goto out; page = migration_entry_to_page(entry); + page = compound_head(page); /* * Once page cache replacement of page migration started, page_count @@ -993,9 +994,12 @@ if (!PageMappingFlags(page)) page->mapping = NULL; - if (likely(!is_zone_device_page(newpage))) - flush_dcache_page(newpage); + if (likely(!is_zone_device_page(newpage))) { + int i, nr = compound_nr(newpage); + for (i = 0; i < nr; i++) + flush_dcache_page(newpage + i); + } } out: return rc; @@ -2339,13 +2343,14 @@ migrate->dst[migrate->npages] = 0; migrate->src[migrate->npages++] = mpfn; } - arch_leave_lazy_mmu_mode(); - pte_unmap_unlock(ptep - 1, ptl); /* Only flush the TLB if we actually modified any entries */ if (unmapped) flush_tlb_range(walk->vma, start, end); + arch_leave_lazy_mmu_mode(); + pte_unmap_unlock(ptep - 1, ptl); + return 0; } diff -u linux-azure-5.4.0/mm/mmap.c linux-azure-5.4.0/mm/mmap.c --- linux-azure-5.4.0/mm/mmap.c +++ linux-azure-5.4.0/mm/mmap.c @@ -1679,8 +1679,12 @@ pgprot_val(vm_pgprot_modify(vm_page_prot, vm_flags))) return 0; - /* Do we need to track softdirty? */ - if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY)) + /* + * Do we need to track softdirty? hugetlb does not support softdirty + * tracking yet. + */ + if (IS_ENABLED(CONFIG_MEM_SOFT_DIRTY) && !(vm_flags & VM_SOFTDIRTY) && + !is_vm_hugetlb_page(vma)) return 1; /* Specialty mapping? */ @@ -1860,7 +1864,6 @@ /* Undo any partial mapping done by a device driver. */ unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end); - charged = 0; if (vm_flags & VM_SHARED) mapping_unmap_writable(file->f_mapping); allow_write_and_free_vma: @@ -2077,14 +2080,6 @@ } -#ifndef arch_get_mmap_end -#define arch_get_mmap_end(addr) (TASK_SIZE) -#endif - -#ifndef arch_get_mmap_base -#define arch_get_mmap_base(addr, base) (base) -#endif - /* Get an address range which is currently unmapped. * For shmat() with addr=0. * @@ -2515,7 +2510,7 @@ if (!*endptr) stack_guard_gap = val << PAGE_SHIFT; - return 0; + return 1; } __setup("stack_guard_gap=", cmdline_parse_stack_guard_gap); @@ -2610,11 +2605,28 @@ { struct vm_area_struct *next = prev ? prev->vm_next : mm->mmap; struct mmu_gather tlb; + struct vm_area_struct *cur_vma; lru_add_drain(); tlb_gather_mmu(&tlb, mm, start, end); update_hiwater_rss(mm); unmap_vmas(&tlb, vma, start, end); + + /* + * Ensure we have no stale TLB entries by the time this mapping is + * removed from the rmap. + * Note that we don't have to worry about nested flushes here because + * we're holding the mm semaphore for removing the mapping - so any + * concurrent flush in this region has to be coming through the rmap, + * and we synchronize against that using the rmap lock. + */ + for (cur_vma = vma; cur_vma; cur_vma = cur_vma->vm_next) { + if ((cur_vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) != 0) { + tlb_flush_mmu(&tlb); + break; + } + } + free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS, next ? next->vm_start : USER_PGTABLES_CEILING); tlb_finish_mmu(&tlb, start, end); diff -u linux-azure-5.4.0/mm/mremap.c linux-azure-5.4.0/mm/mremap.c --- linux-azure-5.4.0/mm/mremap.c +++ linux-azure-5.4.0/mm/mremap.c @@ -246,6 +246,9 @@ struct mmu_notifier_range range; pmd_t *old_pmd, *new_pmd; + if (!len) + return 0; + old_end = old_addr + len; flush_cache_range(vma, old_addr, old_end); @@ -290,12 +293,10 @@ */ bool moved; - if (need_rmap_locks) - take_rmap_locks(vma); + take_rmap_locks(vma); moved = move_normal_pmd(vma, old_addr, new_addr, old_end, old_pmd, new_pmd); - if (need_rmap_locks) - drop_rmap_locks(vma); + drop_rmap_locks(vma); if (moved) continue; #endif diff -u linux-azure-5.4.0/mm/oom_kill.c linux-azure-5.4.0/mm/oom_kill.c --- linux-azure-5.4.0/mm/oom_kill.c +++ linux-azure-5.4.0/mm/oom_kill.c @@ -197,17 +197,17 @@ * predictable as possible. The goal is to return the highest value for the * task consuming the most memory to avoid subsequent oom failures. */ -unsigned long oom_badness(struct task_struct *p, unsigned long totalpages) +long oom_badness(struct task_struct *p, unsigned long totalpages) { long points; long adj; if (oom_unkillable_task(p)) - return 0; + return LONG_MIN; p = find_lock_task_mm(p); if (!p) - return 0; + return LONG_MIN; /* * Do not even consider tasks which are explicitly marked oom @@ -219,7 +219,7 @@ test_bit(MMF_OOM_SKIP, &p->mm->flags) || in_vfork(p)) { task_unlock(p); - return 0; + return LONG_MIN; } /* @@ -234,11 +234,7 @@ adj *= totalpages / 1000; points += adj; - /* - * Never return 0 for an eligible task regardless of the root bonus and - * oom_score_adj (oom_score_adj can't be OOM_SCORE_ADJ_MIN here). - */ - return points > 0 ? points : 1; + return points; } static const char * const oom_constraint_text[] = { @@ -311,7 +307,7 @@ static int oom_evaluate_task(struct task_struct *task, void *arg) { struct oom_control *oc = arg; - unsigned long points; + long points; if (oom_unkillable_task(task)) goto next; @@ -337,12 +333,12 @@ * killed first if it triggers an oom, then select it. */ if (oom_task_origin(task)) { - points = ULONG_MAX; + points = LONG_MAX; goto select; } points = oom_badness(task, oc->totalpages); - if (!points || points < oc->chosen_points) + if (points == LONG_MIN || points < oc->chosen_points) goto next; select: @@ -366,6 +362,8 @@ */ static void select_bad_process(struct oom_control *oc) { + oc->chosen_points = LONG_MIN; + if (is_memcg_oom(oc)) mem_cgroup_scan_tasks(oc->memcg, oom_evaluate_task, oc); else { @@ -633,7 +631,7 @@ */ set_bit(MMF_OOM_SKIP, &mm->flags); - /* Drop a reference taken by wake_oom_reaper */ + /* Drop a reference taken by queue_oom_reaper */ put_task_struct(tsk); } @@ -643,12 +641,12 @@ struct task_struct *tsk = NULL; wait_event_freezable(oom_reaper_wait, oom_reaper_list != NULL); - spin_lock(&oom_reaper_lock); + spin_lock_irq(&oom_reaper_lock); if (oom_reaper_list != NULL) { tsk = oom_reaper_list; oom_reaper_list = tsk->oom_reaper_list; } - spin_unlock(&oom_reaper_lock); + spin_unlock_irq(&oom_reaper_lock); if (tsk) oom_reap_task(tsk); @@ -657,22 +655,48 @@ return 0; } -static void wake_oom_reaper(struct task_struct *tsk) +static void wake_oom_reaper(struct timer_list *timer) { - /* mm is already queued? */ - if (test_and_set_bit(MMF_OOM_REAP_QUEUED, &tsk->signal->oom_mm->flags)) + struct task_struct *tsk = container_of(timer, struct task_struct, + oom_reaper_timer); + struct mm_struct *mm = tsk->signal->oom_mm; + unsigned long flags; + + /* The victim managed to terminate on its own - see exit_mmap */ + if (test_bit(MMF_OOM_SKIP, &mm->flags)) { + put_task_struct(tsk); return; + } - get_task_struct(tsk); - - spin_lock(&oom_reaper_lock); + spin_lock_irqsave(&oom_reaper_lock, flags); tsk->oom_reaper_list = oom_reaper_list; oom_reaper_list = tsk; - spin_unlock(&oom_reaper_lock); + spin_unlock_irqrestore(&oom_reaper_lock, flags); trace_wake_reaper(tsk->pid); wake_up(&oom_reaper_wait); } +/* + * Give the OOM victim time to exit naturally before invoking the oom_reaping. + * The timers timeout is arbitrary... the longer it is, the longer the worst + * case scenario for the OOM can take. If it is too small, the oom_reaper can + * get in the way and release resources needed by the process exit path. + * e.g. The futex robust list can sit in Anon|Private memory that gets reaped + * before the exit path is able to wake the futex waiters. + */ +#define OOM_REAPER_DELAY (2*HZ) +static void queue_oom_reaper(struct task_struct *tsk) +{ + /* mm is already queued? */ + if (test_and_set_bit(MMF_OOM_REAP_QUEUED, &tsk->signal->oom_mm->flags)) + return; + + get_task_struct(tsk); + timer_setup(&tsk->oom_reaper_timer, wake_oom_reaper, 0); + tsk->oom_reaper_timer.expires = jiffies + OOM_REAPER_DELAY; + add_timer(&tsk->oom_reaper_timer); +} + static int __init oom_init(void) { oom_reaper_th = kthread_run(oom_reaper, NULL, "oom_reaper"); @@ -680,7 +704,7 @@ } subsys_initcall(oom_init) #else -static inline void wake_oom_reaper(struct task_struct *tsk) +static inline void queue_oom_reaper(struct task_struct *tsk) { } #endif /* CONFIG_MMU */ @@ -929,7 +953,7 @@ rcu_read_unlock(); if (can_oom_reap) - wake_oom_reaper(victim); + queue_oom_reaper(victim); mmdrop(mm); put_task_struct(victim); @@ -965,7 +989,7 @@ task_lock(victim); if (task_will_free_mem(victim)) { mark_oom_victim(victim); - wake_oom_reaper(victim); + queue_oom_reaper(victim); task_unlock(victim); put_task_struct(victim); return; @@ -1063,7 +1087,7 @@ */ if (task_will_free_mem(current)) { mark_oom_victim(current); - wake_oom_reaper(current); + queue_oom_reaper(current); return true; } @@ -1118,23 +1142,20 @@ /* - * The pagefault handler calls here because it is out of memory, so kill a - * memory-hogging task. If oom_lock is held by somebody else, a parallel oom - * killing is already in progress so do nothing. + * The pagefault handler calls here because some allocation has failed. We have + * to take care of the memcg OOM here because this is the only safe context without + * any locks held but let the oom killer triggered from the allocation context care + * about the global OOM. */ void pagefault_out_of_memory(void) { - struct oom_control oc = { - .zonelist = NULL, - .nodemask = NULL, - .memcg = NULL, - .gfp_mask = 0, - .order = 0, - }; + static DEFINE_RATELIMIT_STATE(pfoom_rs, DEFAULT_RATELIMIT_INTERVAL, + DEFAULT_RATELIMIT_BURST); if (mem_cgroup_oom_synchronize(true)) return; - if (!mutex_trylock(&oom_lock)) + if (fatal_signal_pending(current)) return; - out_of_memory(&oc); - mutex_unlock(&oom_lock); + + if (__ratelimit(&pfoom_rs)) + pr_warn("Huh VM_FAULT_OOM leaked out to the #PF handler. Retrying PF\n"); } diff -u linux-azure-5.4.0/mm/page_alloc.c linux-azure-5.4.0/mm/page_alloc.c --- linux-azure-5.4.0/mm/page_alloc.c +++ linux-azure-5.4.0/mm/page_alloc.c @@ -893,7 +893,7 @@ unsigned int max_order; struct capture_control *capc = task_capc(zone); - max_order = min_t(unsigned int, MAX_ORDER, pageblock_order + 1); + max_order = min_t(unsigned int, MAX_ORDER - 1, pageblock_order); VM_BUG_ON(!zone_is_initialized(zone)); VM_BUG_ON_PAGE(page->flags & PAGE_FLAGS_CHECK_AT_PREP, page); @@ -906,7 +906,7 @@ VM_BUG_ON_PAGE(bad_range(zone, page), page); continue_merging: - while (order < max_order - 1) { + while (order < max_order) { if (compaction_capture(capc, page, order, migratetype)) { __mod_zone_freepage_state(zone, -(1 << order), migratetype); @@ -932,7 +932,7 @@ pfn = combined_pfn; order++; } - if (max_order < MAX_ORDER) { + if (order < MAX_ORDER - 1) { /* If we are here, it means order is >= pageblock_order. * We want to prevent merge between freepages on isolate * pageblock and normal pageblock. Without this, pageblock @@ -953,7 +953,7 @@ is_migrate_isolate(buddy_mt))) goto done_merging; } - max_order++; + max_order = order + 1; goto continue_merging; } @@ -3754,7 +3754,9 @@ va_list args; static DEFINE_RATELIMIT_STATE(nopage_rs, 10*HZ, 1); - if ((gfp_mask & __GFP_NOWARN) || !__ratelimit(&nopage_rs)) + if ((gfp_mask & __GFP_NOWARN) || + !__ratelimit(&nopage_rs) || + ((gfp_mask & __GFP_DMA) && !has_managed_dma())) return; va_start(args, fmt); @@ -4108,6 +4110,30 @@ EXPORT_SYMBOL_GPL(fs_reclaim_release); #endif +/* + * Zonelists may change due to hotplug during allocation. Detect when zonelists + * have been rebuilt so allocation retries. Reader side does not lock and + * retries the allocation if zonelist changes. Writer side is protected by the + * embedded spin_lock. + */ +static DEFINE_SEQLOCK(zonelist_update_seq); + +static unsigned int zonelist_iter_begin(void) +{ + if (IS_ENABLED(CONFIG_MEMORY_HOTREMOVE)) + return read_seqbegin(&zonelist_update_seq); + + return 0; +} + +static unsigned int check_retry_zonelist(unsigned int seq) +{ + if (IS_ENABLED(CONFIG_MEMORY_HOTREMOVE)) + return read_seqretry(&zonelist_update_seq, seq); + + return seq; +} + /* Perform direct synchronous page reclaim */ static int __perform_reclaim(gfp_t gfp_mask, unsigned int order, @@ -4415,6 +4441,7 @@ int compaction_retries; int no_progress_loops; unsigned int cpuset_mems_cookie; + unsigned int zonelist_iter_cookie; int reserve_flags; /* @@ -4425,11 +4452,12 @@ (__GFP_ATOMIC|__GFP_DIRECT_RECLAIM))) gfp_mask &= ~__GFP_ATOMIC; -retry_cpuset: +restart: compaction_retries = 0; no_progress_loops = 0; compact_priority = DEF_COMPACT_PRIORITY; cpuset_mems_cookie = read_mems_allowed_begin(); + zonelist_iter_cookie = zonelist_iter_begin(); /* * The fast path uses conservative alloc_flags to succeed only until @@ -4602,9 +4630,13 @@ goto retry; - /* Deal with possible cpuset update races before we start OOM killing */ - if (check_retry_cpuset(cpuset_mems_cookie, ac)) - goto retry_cpuset; + /* + * Deal with possible cpuset update races or zonelist updates to avoid + * a unnecessary OOM kill. + */ + if (check_retry_cpuset(cpuset_mems_cookie, ac) || + check_retry_zonelist(zonelist_iter_cookie)) + goto restart; /* Reclaim has failed us, start killing things */ page = __alloc_pages_may_oom(gfp_mask, order, ac, &did_some_progress); @@ -4624,9 +4656,13 @@ } nopage: - /* Deal with possible cpuset update races before we fail */ - if (check_retry_cpuset(cpuset_mems_cookie, ac)) - goto retry_cpuset; + /* + * Deal with possible cpuset update races or zonelist updates to avoid + * a unnecessary OOM kill. + */ + if (check_retry_cpuset(cpuset_mems_cookie, ac) || + check_retry_zonelist(zonelist_iter_cookie)) + goto restart; /* * Make sure that __GFP_NOFAIL request doesn't leak out and make sure @@ -4930,6 +4966,18 @@ /* reset page count bias and offset to start of new frag */ nc->pagecnt_bias = PAGE_FRAG_CACHE_MAX_SIZE + 1; offset = size - fragsz; + if (unlikely(offset < 0)) { + /* + * The caller is trying to allocate a fragment + * with fragsz > PAGE_SIZE but the cache isn't big + * enough to satisfy the request, this may + * happen in low memory conditions. + * We don't release the cache page because + * it could make memory pressure worse + * so we simply return NULL here. + */ + return NULL; + } } nc->pagecnt_bias--; @@ -5466,7 +5514,7 @@ do { zone_type--; zone = pgdat->node_zones + zone_type; - if (managed_zone(zone)) { + if (populated_zone(zone)) { zoneref_set_zone(zone, &zonerefs[nr_zones++]); check_highest_zone(zone_type); } @@ -5755,9 +5803,8 @@ int nid; int __maybe_unused cpu; pg_data_t *self = data; - static DEFINE_SPINLOCK(lock); - spin_lock(&lock); + write_seqlock(&zonelist_update_seq); #ifdef CONFIG_NUMA memset(node_load, 0, sizeof(node_load)); @@ -5790,7 +5837,7 @@ #endif } - spin_unlock(&lock); + write_sequnlock(&zonelist_update_seq); } static noinline void __init @@ -7311,10 +7358,17 @@ out2: /* Align start of ZONE_MOVABLE on all nids to MAX_ORDER_NR_PAGES */ - for (nid = 0; nid < MAX_NUMNODES; nid++) + for (nid = 0; nid < MAX_NUMNODES; nid++) { + unsigned long start_pfn, end_pfn; + zone_movable_pfn[nid] = roundup(zone_movable_pfn[nid], MAX_ORDER_NR_PAGES); + get_pfn_range_for_nid(nid, &start_pfn, &end_pfn); + if (zone_movable_pfn[nid] >= end_pfn) + zone_movable_pfn[nid] = 0; + } + out: /* restore the node_state */ node_states[N_MEMORY] = saved_node_state; @@ -7566,7 +7620,7 @@ */ #define adj_init_size(start, end, size, pos, adj) \ do { \ - if (start <= pos && pos < end && size > adj) \ + if (&start[0] <= &pos[0] && &pos[0] < &end[0] && size > adj) \ size -= adj; \ } while (0) @@ -8683,0 +8738,15 @@ + +#ifdef CONFIG_ZONE_DMA +bool has_managed_dma(void) +{ + struct pglist_data *pgdat; + + for_each_online_pgdat(pgdat) { + struct zone *zone = &pgdat->node_zones[ZONE_DMA]; + + if (managed_zone(zone)) + return true; + } + return false; +} +#endif /* CONFIG_ZONE_DMA */ diff -u linux-azure-5.4.0/mm/page_io.c linux-azure-5.4.0/mm/page_io.c --- linux-azure-5.4.0/mm/page_io.c +++ linux-azure-5.4.0/mm/page_io.c @@ -69,54 +69,6 @@ bio_put(bio); } -static void swap_slot_free_notify(struct page *page) -{ - struct swap_info_struct *sis; - struct gendisk *disk; - swp_entry_t entry; - - /* - * There is no guarantee that the page is in swap cache - the software - * suspend code (at least) uses end_swap_bio_read() against a non- - * swapcache page. So we must check PG_swapcache before proceeding with - * this optimization. - */ - if (unlikely(!PageSwapCache(page))) - return; - - sis = page_swap_info(page); - if (!(sis->flags & SWP_BLKDEV)) - return; - - /* - * The swap subsystem performs lazy swap slot freeing, - * expecting that the page will be swapped out again. - * So we can avoid an unnecessary write if the page - * isn't redirtied. - * This is good for real swap storage because we can - * reduce unnecessary I/O and enhance wear-leveling - * if an SSD is used as the as swap device. - * But if in-memory swap device (eg zram) is used, - * this causes a duplicated copy between uncompressed - * data in VM-owned memory and compressed data in - * zram-owned memory. So let's free zram-owned memory - * and make the VM-owned decompressed page *dirty*, - * so the page should be swapped out somewhere again if - * we again wish to reclaim it. - */ - disk = sis->bdev->bd_disk; - entry.val = page_private(page); - if (disk->fops->swap_slot_free_notify && __swap_count(entry) == 1) { - unsigned long offset; - - offset = swp_offset(entry); - - SetPageDirty(page); - disk->fops->swap_slot_free_notify(sis->bdev, - offset); - } -} - static void end_swap_bio_read(struct bio *bio) { struct page *page = bio_first_page_all(bio); @@ -132,7 +84,6 @@ } SetPageUptodate(page); - swap_slot_free_notify(page); out: unlock_page(page); WRITE_ONCE(bio->bi_private, NULL); @@ -371,11 +322,6 @@ ret = bdev_read_page(sis->bdev, swap_page_sector(page), page); if (!ret) { - if (trylock_page(page)) { - swap_slot_free_notify(page); - unlock_page(page); - } - count_vm_event(PSWPIN); return 0; } diff -u linux-azure-5.4.0/mm/pagewalk.c linux-azure-5.4.0/mm/pagewalk.c --- linux-azure-5.4.0/mm/pagewalk.c +++ linux-azure-5.4.0/mm/pagewalk.c @@ -38,7 +38,7 @@ do { again: next = pmd_addr_end(addr, end); - if (pmd_none(*pmd) || !walk->vma) { + if (pmd_none(*pmd)) { if (ops->pte_hole) err = ops->pte_hole(addr, next, walk); if (err) @@ -84,7 +84,7 @@ do { again: next = pud_addr_end(addr, end); - if (pud_none(*pud) || !walk->vma) { + if (pud_none(*pud)) { if (ops->pte_hole) err = ops->pte_hole(addr, next, walk); if (err) @@ -254,7 +254,7 @@ int err = 0; struct vm_area_struct *vma = walk->vma; - if (vma && is_vm_hugetlb_page(vma)) { + if (is_vm_hugetlb_page(vma)) { if (walk->ops->hugetlb_entry) err = walk_hugetlb_range(start, end, walk); } else @@ -324,9 +324,13 @@ if (!vma) { /* after the last vma */ walk.vma = NULL; next = end; + if (ops->pte_hole) + err = ops->pte_hole(start, next, &walk); } else if (start < vma->vm_start) { /* outside vma */ walk.vma = NULL; next = min(end, vma->vm_start); + if (ops->pte_hole) + err = ops->pte_hole(start, next, &walk); } else { /* inside vma */ walk.vma = vma; next = min(end, vma->vm_end); @@ -344,9 +348,8 @@ } if (err < 0) break; - } - if (walk.vma || walk.ops->pte_hole) err = __walk_page_range(start, next, &walk); + } if (err) break; } while (start = next, start < end); diff -u linux-azure-5.4.0/mm/shmem.c linux-azure-5.4.0/mm/shmem.c --- linux-azure-5.4.0/mm/shmem.c +++ linux-azure-5.4.0/mm/shmem.c @@ -469,7 +469,7 @@ struct shmem_inode_info *info; struct page *page; unsigned long batch = sc ? sc->nr_to_scan : 128; - int removed = 0, split = 0; + int split = 0; if (list_empty(&sbinfo->shrinklist)) return SHRINK_STOP; @@ -484,7 +484,6 @@ /* inode is about to be evicted */ if (!inode) { list_del_init(&info->shrinklist); - removed++; goto next; } @@ -492,12 +491,12 @@ if (round_up(inode->i_size, PAGE_SIZE) == round_up(inode->i_size, HPAGE_PMD_SIZE)) { list_move(&info->shrinklist, &to_remove); - removed++; goto next; } list_move(&info->shrinklist, &list); next: + sbinfo->shrinklist_len--; if (!--batch) break; } @@ -517,7 +516,7 @@ inode = &info->vfs_inode; if (nr_to_split && split >= nr_to_split) - goto leave; + goto move_back; page = find_get_page(inode->i_mapping, (inode->i_size & HPAGE_PMD_MASK) >> PAGE_SHIFT); @@ -531,38 +530,44 @@ } /* - * Leave the inode on the list if we failed to lock - * the page at this time. + * Move the inode on the list back to shrinklist if we failed + * to lock the page at this time. * * Waiting for the lock may lead to deadlock in the * reclaim path. */ if (!trylock_page(page)) { put_page(page); - goto leave; + goto move_back; } ret = split_huge_page(page); unlock_page(page); put_page(page); - /* If split failed leave the inode on the list */ + /* If split failed move the inode on the list back to shrinklist */ if (ret) - goto leave; + goto move_back; split++; drop: list_del_init(&info->shrinklist); - removed++; -leave: + goto put; +move_back: + /* + * Make sure the inode is either on the global list or deleted + * from any local list before iput() since it could be deleted + * in another thread once we put the inode (then the local list + * is corrupted). + */ + spin_lock(&sbinfo->shrinklist_lock); + list_move(&info->shrinklist, &sbinfo->shrinklist); + sbinfo->shrinklist_len++; + spin_unlock(&sbinfo->shrinklist_lock); +put: iput(inode); } - spin_lock(&sbinfo->shrinklist_lock); - list_splice_tail(&list, &sbinfo->shrinklist); - sbinfo->shrinklist_len -= removed; - spin_unlock(&sbinfo->shrinklist_lock); - return split; } diff -u linux-azure-5.4.0/mm/slab_common.c linux-azure-5.4.0/mm/slab_common.c --- linux-azure-5.4.0/mm/slab_common.c +++ linux-azure-5.4.0/mm/slab_common.c @@ -85,8 +85,7 @@ #ifdef CONFIG_DEBUG_VM static int kmem_cache_sanity_check(const char *name, unsigned int size) { - if (!name || in_interrupt() || size < sizeof(void *) || - size > KMALLOC_MAX_SIZE) { + if (!name || in_interrupt() || size > KMALLOC_MAX_SIZE) { pr_err("kmem_cache_create(%s) integrity check failed\n", name); return -EINVAL; } @@ -886,12 +885,15 @@ return 0; } -static void flush_memcg_workqueue(struct kmem_cache *s) +static void memcg_set_kmem_cache_dying(struct kmem_cache *s) { spin_lock_irq(&memcg_kmem_wq_lock); s->memcg_params.dying = true; spin_unlock_irq(&memcg_kmem_wq_lock); +} +static void flush_memcg_workqueue(struct kmem_cache *s) +{ /* * SLAB and SLUB deactivate the kmem_caches through call_rcu. Make * sure all registered rcu callbacks have been invoked. @@ -923,10 +925,6 @@ { return 0; } - -static inline void flush_memcg_workqueue(struct kmem_cache *s) -{ -} #endif /* CONFIG_MEMCG_KMEM */ void slab_kmem_cache_release(struct kmem_cache *s) @@ -944,8 +942,6 @@ if (unlikely(!s)) return; - flush_memcg_workqueue(s); - get_online_cpus(); get_online_mems(); @@ -955,6 +951,32 @@ if (s->refcount) goto out_unlock; +#ifdef CONFIG_MEMCG_KMEM + memcg_set_kmem_cache_dying(s); + + mutex_unlock(&slab_mutex); + + put_online_mems(); + put_online_cpus(); + + flush_memcg_workqueue(s); + + get_online_cpus(); + get_online_mems(); + + mutex_lock(&slab_mutex); + + /* + * Another thread referenced it again + */ + if (READ_ONCE(s->refcount)) { + spin_lock_irq(&memcg_kmem_wq_lock); + s->memcg_params.dying = false; + spin_unlock_irq(&memcg_kmem_wq_lock); + goto out_unlock; + } +#endif + err = shutdown_memcg_caches(s); if (!err) err = shutdown_cache(s); @@ -1296,7 +1318,7 @@ BUG_ON(!n); kmalloc_caches[KMALLOC_DMA][i] = create_kmalloc_cache( - n, size, SLAB_CACHE_DMA | flags, 0, 0); + n, size, SLAB_CACHE_DMA | flags, 0, kmalloc_info[i].size); } } #endif diff -u linux-azure-5.4.0/mm/slub.c linux-azure-5.4.0/mm/slub.c --- linux-azure-5.4.0/mm/slub.c +++ linux-azure-5.4.0/mm/slub.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include "slab.h" @@ -688,15 +689,15 @@ p, p - addr, get_freepointer(s, p)); if (s->flags & SLAB_RED_ZONE) - print_section(KERN_ERR, "Redzone ", p - s->red_left_pad, + print_section(KERN_ERR, "Redzone ", p - s->red_left_pad, s->red_left_pad); else if (p > addr + 16) print_section(KERN_ERR, "Bytes b4 ", p - 16, 16); - print_section(KERN_ERR, "Object ", p, + print_section(KERN_ERR, "Object ", p, min_t(unsigned int, s->object_size, PAGE_SIZE)); if (s->flags & SLAB_RED_ZONE) - print_section(KERN_ERR, "Redzone ", p + s->object_size, + print_section(KERN_ERR, "Redzone ", p + s->object_size, s->inuse - s->object_size); off = get_info_end(s); @@ -708,7 +709,7 @@ if (off != size_from_object(s)) /* Beginning of the filler is the free pointer */ - print_section(KERN_ERR, "Padding ", p + off, + print_section(KERN_ERR, "Padding ", p + off, size_from_object(s) - off); dump_stack(); @@ -882,11 +883,11 @@ u8 *endobject = object + s->object_size; if (s->flags & SLAB_RED_ZONE) { - if (!check_bytes_and_report(s, page, object, "Redzone", + if (!check_bytes_and_report(s, page, object, "Left Redzone", object - s->red_left_pad, val, s->red_left_pad)) return 0; - if (!check_bytes_and_report(s, page, object, "Redzone", + if (!check_bytes_and_report(s, page, object, "Right Redzone", endobject, val, s->inuse - s->object_size)) return 0; } else { @@ -901,7 +902,7 @@ if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) && (!check_bytes_and_report(s, page, p, "Poison", p, POISON_FREE, s->object_size - 1) || - !check_bytes_and_report(s, page, p, "Poison", + !check_bytes_and_report(s, page, p, "End Poison", p + s->object_size - 1, POISON_END, 1))) return 0; /* @@ -1454,7 +1455,8 @@ } static inline bool slab_free_freelist_hook(struct kmem_cache *s, - void **head, void **tail) + void **head, void **tail, + int *cnt) { void *object; @@ -1489,6 +1491,12 @@ *head = object; if (!*tail) *tail = object; + } else { + /* + * Adjust the reconstructed freelist depth + * accordingly if object's reuse is delayed. + */ + --(*cnt); } } while (object != old_tail); @@ -2206,6 +2214,7 @@ c->page = NULL; c->freelist = NULL; + c->tid = next_tid(c->tid); } /* @@ -2339,8 +2348,6 @@ { stat(s, CPUSLAB_FLUSH); deactivate_slab(s, c->page, c->freelist, c); - - c->tid = next_tid(c->tid); } /* @@ -2624,6 +2631,7 @@ if (!freelist) { c->page = NULL; + c->tid = next_tid(c->tid); stat(s, DEACTIVATE_BYPASS); goto new_slab; } @@ -3048,7 +3056,7 @@ * With KASAN enabled slab_free_freelist_hook modifies the freelist * to remove objects, whose reuse must be delayed. */ - if (slab_free_freelist_hook(s, &head, &tail)) + if (slab_free_freelist_hook(s, &head, &tail, &cnt)) do_slab_free(s, page, head, tail, cnt, addr); } @@ -3586,15 +3594,17 @@ */ s->inuse = size; - if (((flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON)) || - s->ctor)) { + if ((flags & (SLAB_TYPESAFE_BY_RCU | SLAB_POISON)) || + ((flags & SLAB_RED_ZONE) && s->object_size < sizeof(void *)) || + s->ctor) { /* * Relocate free pointer after the object if it is not * permitted to overwrite the first word of the object on * kmem_cache_free. * * This is the case if we do RCU, have a constructor or - * destructor or are poisoning the objects. + * destructor, are poisoning the objects, or are + * redzoning an object smaller than sizeof(void *). * * The assumption that s->offset >= s->inuse means free * pointer is outside of the object is used in the @@ -3724,8 +3734,8 @@ if (alloc_kmem_cache_cpus(s)) return 0; - free_kmem_cache_nodes(s); error: + __kmem_cache_release(s); return -EINVAL; } @@ -5733,7 +5743,8 @@ char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL); char *p = name; - BUG_ON(!name); + if (!name) + return ERR_PTR(-ENOMEM); *p++ = ':'; /* @@ -5815,6 +5826,8 @@ * for the symlinks. */ name = create_unique_id(s); + if (IS_ERR(name)) + return PTR_ERR(name); } s->kobj.kset = kset; diff -u linux-azure-5.4.0/mm/userfaultfd.c linux-azure-5.4.0/mm/userfaultfd.c --- linux-azure-5.4.0/mm/userfaultfd.c +++ linux-azure-5.4.0/mm/userfaultfd.c @@ -53,6 +53,8 @@ /* don't free the page */ goto out; } + + flush_dcache_page(page); } else { page = *pagep; *pagep = NULL; @@ -572,6 +574,7 @@ err = -EFAULT; goto out; } + flush_dcache_page(page); goto retry; } else BUG_ON(page); diff -u linux-azure-5.4.0/mm/util.c linux-azure-5.4.0/mm/util.c --- linux-azure-5.4.0/mm/util.c +++ linux-azure-5.4.0/mm/util.c @@ -320,6 +320,38 @@ #endif } +/** + * randomize_page - Generate a random, page aligned address + * @start: The smallest acceptable address the caller will take. + * @range: The size of the area, starting at @start, within which the + * random address must fall. + * + * If @start + @range would overflow, @range is capped. + * + * NOTE: Historical use of randomize_range, which this replaces, presumed that + * @start was already page aligned. We now align it regardless. + * + * Return: A page aligned address within [start, start + range). On error, + * @start is returned. + */ +unsigned long randomize_page(unsigned long start, unsigned long range) +{ + if (!PAGE_ALIGNED(start)) { + range -= PAGE_ALIGN(start) - start; + start = PAGE_ALIGN(start); + } + + if (start > ULONG_MAX - range) + range = ULONG_MAX - start; + + range >>= PAGE_SHIFT; + + if (range == 0) + return start; + + return start + (get_random_long() % range << PAGE_SHIFT); +} + #ifdef CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT unsigned long arch_randomize_brk(struct mm_struct *mm) { diff -u linux-azure-5.4.0/mm/vmscan.c linux-azure-5.4.0/mm/vmscan.c --- linux-azure-5.4.0/mm/vmscan.c +++ linux-azure-5.4.0/mm/vmscan.c @@ -89,9 +89,12 @@ unsigned int may_swap:1; /* - * Cgroups are not reclaimed below their configured memory.low, - * unless we threaten to OOM. If any cgroups are skipped due to - * memory.low and nothing was reclaimed, go back for memory.low. + * Cgroup memory below memory.low is protected as long as we + * don't threaten to OOM. If any cgroup is reclaimed at + * reduced force or passed over entirely due to its memory.low + * setting (memcg_low_skipped), and nothing is reclaimed as a + * result, then go back for one more cycle that reclaims the protected + * memory (memcg_low_reclaim) to avert OOM. */ unsigned int memcg_low_reclaim:1; unsigned int memcg_low_skipped:1; @@ -2458,14 +2461,14 @@ for_each_evictable_lru(lru) { int file = is_file_lru(lru); unsigned long lruvec_size; + unsigned long low, min; unsigned long scan; - unsigned long protection; lruvec_size = lruvec_lru_size(lruvec, lru, sc->reclaim_idx); - protection = mem_cgroup_protection(memcg, - sc->memcg_low_reclaim); + mem_cgroup_protection(sc->target_mem_cgroup, memcg, + &min, &low); - if (protection) { + if (min || low) { /* * Scale a cgroup's reclaim pressure by proportioning * its current usage to its memory.low or memory.min @@ -2496,12 +2499,21 @@ * hard protection. */ unsigned long cgroup_size = mem_cgroup_size(memcg); + unsigned long protection; + + /* memory.low scaling, make sure we retry before OOM */ + if (!sc->memcg_low_reclaim && low > min) { + protection = low; + sc->memcg_low_skipped = 1; + } else { + protection = min; + } /* Avoid TOCTOU with earlier protection check */ cgroup_size = max(cgroup_size, protection); scan = lruvec_size - lruvec_size * protection / - cgroup_size; + (cgroup_size + 1); /* * Minimally target SWAP_CLUSTER_MAX pages to keep diff -u linux-azure-5.4.0/mm/zsmalloc.c linux-azure-5.4.0/mm/zsmalloc.c --- linux-azure-5.4.0/mm/zsmalloc.c +++ linux-azure-5.4.0/mm/zsmalloc.c @@ -1748,11 +1748,40 @@ */ static void lock_zspage(struct zspage *zspage) { - struct page *page = get_first_page(zspage); + struct page *curr_page, *page; - do { - lock_page(page); - } while ((page = get_next_page(page)) != NULL); + /* + * Pages we haven't locked yet can be migrated off the list while we're + * trying to lock them, so we need to be careful and only attempt to + * lock each page under migrate_read_lock(). Otherwise, the page we lock + * may no longer belong to the zspage. This means that we may wait for + * the wrong page to unlock, so we must take a reference to the page + * prior to waiting for it to unlock outside migrate_read_lock(). + */ + while (1) { + migrate_read_lock(zspage); + page = get_first_page(zspage); + if (trylock_page(page)) + break; + get_page(page); + migrate_read_unlock(zspage); + wait_on_page_locked(page); + put_page(page); + } + + curr_page = page; + while ((page = get_next_page(curr_page))) { + if (trylock_page(page)) { + curr_page = page; + } else { + get_page(page); + migrate_read_unlock(zspage); + wait_on_page_locked(page); + put_page(page); + migrate_read_lock(zspage); + } + } + migrate_read_unlock(zspage); } static int zs_init_fs_context(struct fs_context *fc) @@ -1835,10 +1864,11 @@ VM_BUG_ON(atomic_long_read(&pool->isolated_pages) <= 0); atomic_long_dec(&pool->isolated_pages); /* - * There's no possibility of racing, since wait_for_isolated_drain() - * checks the isolated count under &class->lock after enqueuing - * on migration_wait. + * Checking pool->destroying must happen after atomic_long_dec() + * for pool->isolated_pages above. Paired with the smp_mb() in + * zs_unregister_migration(). */ + smp_mb__after_atomic(); if (atomic_long_read(&pool->isolated_pages) == 0 && pool->destroying) wake_up_all(&pool->migration_wait); } diff -u linux-azure-5.4.0/net/8021q/vlan.c linux-azure-5.4.0/net/8021q/vlan.c --- linux-azure-5.4.0/net/8021q/vlan.c +++ linux-azure-5.4.0/net/8021q/vlan.c @@ -116,9 +116,6 @@ } vlan_vid_del(real_dev, vlan->vlan_proto, vlan_id); - - /* Get rid of the vlan's reference to real_dev */ - dev_put(real_dev); } int vlan_check_real_dev(struct net_device *real_dev, @@ -180,9 +177,6 @@ if (err) goto out_unregister_netdev; - /* Account for reference in struct vlan_dev_priv */ - dev_hold(real_dev); - vlan_stacked_transfer_operstate(real_dev, dev, vlan); linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */ diff -u linux-azure-5.4.0/net/8021q/vlan_dev.c linux-azure-5.4.0/net/8021q/vlan_dev.c --- linux-azure-5.4.0/net/8021q/vlan_dev.c +++ linux-azure-5.4.0/net/8021q/vlan_dev.c @@ -583,6 +583,9 @@ if (!vlan->vlan_pcpu_stats) return -ENOMEM; + /* Get vlan's reference to real_dev */ + dev_hold(real_dev); + return 0; } @@ -790,6 +793,9 @@ free_percpu(vlan->vlan_pcpu_stats); vlan->vlan_pcpu_stats = NULL; + + /* Get rid of the vlan's reference to real_dev */ + dev_put(vlan->real_dev); } void vlan_setup(struct net_device *dev) diff -u linux-azure-5.4.0/net/ax25/af_ax25.c linux-azure-5.4.0/net/ax25/af_ax25.c --- linux-azure-5.4.0/net/ax25/af_ax25.c +++ linux-azure-5.4.0/net/ax25/af_ax25.c @@ -77,6 +77,7 @@ { ax25_dev *ax25_dev; ax25_cb *s; + struct sock *sk; if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL) return; @@ -85,11 +86,26 @@ again: ax25_for_each(s, &ax25_list) { if (s->ax25_dev == ax25_dev) { - s->ax25_dev = NULL; + sk = s->sk; + if (!sk) { + spin_unlock_bh(&ax25_list_lock); + ax25_disconnect(s, ENETUNREACH); + s->ax25_dev = NULL; + spin_lock_bh(&ax25_list_lock); + goto again; + } + sock_hold(sk); spin_unlock_bh(&ax25_list_lock); + lock_sock(sk); ax25_disconnect(s, ENETUNREACH); + s->ax25_dev = NULL; + if (sk->sk_socket) { + dev_put(ax25_dev->dev); + ax25_dev_put(ax25_dev); + } + release_sock(sk); spin_lock_bh(&ax25_list_lock); - + sock_put(sk); /* The entry could have been deleted from the * list meanwhile and thus the next pointer is * no longer valid. Play it safe and restart @@ -353,21 +369,25 @@ if (copy_from_user(&ax25_ctl, arg, sizeof(ax25_ctl))) return -EFAULT; - if ((ax25_dev = ax25_addr_ax25dev(&ax25_ctl.port_addr)) == NULL) - return -ENODEV; - if (ax25_ctl.digi_count > AX25_MAX_DIGIS) return -EINVAL; if (ax25_ctl.arg > ULONG_MAX / HZ && ax25_ctl.cmd != AX25_KILL) return -EINVAL; + ax25_dev = ax25_addr_ax25dev(&ax25_ctl.port_addr); + if (!ax25_dev) + return -ENODEV; + digi.ndigi = ax25_ctl.digi_count; for (k = 0; k < digi.ndigi; k++) digi.calls[k] = ax25_ctl.digi_addr[k]; - if ((ax25 = ax25_find_cb(&ax25_ctl.source_addr, &ax25_ctl.dest_addr, &digi, ax25_dev->dev)) == NULL) + ax25 = ax25_find_cb(&ax25_ctl.source_addr, &ax25_ctl.dest_addr, &digi, ax25_dev->dev); + if (!ax25) { + ax25_dev_put(ax25_dev); return -ENOTCONN; + } switch (ax25_ctl.cmd) { case AX25_KILL: @@ -434,6 +454,7 @@ } out_put: + ax25_dev_put(ax25_dev); ax25_cb_put(ax25); return ret; @@ -959,14 +980,16 @@ { struct sock *sk = sock->sk; ax25_cb *ax25; + ax25_dev *ax25_dev; if (sk == NULL) return 0; sock_hold(sk); - sock_orphan(sk); lock_sock(sk); + sock_orphan(sk); ax25 = sk_to_ax25(sk); + ax25_dev = ax25->ax25_dev; if (sk->sk_type == SOCK_SEQPACKET) { switch (ax25->state) { @@ -1028,6 +1051,15 @@ sk->sk_state_change(sk); ax25_destroy_socket(ax25); } + if (ax25_dev) { + del_timer_sync(&ax25->timer); + del_timer_sync(&ax25->t1timer); + del_timer_sync(&ax25->t2timer); + del_timer_sync(&ax25->t3timer); + del_timer_sync(&ax25->idletimer); + dev_put(ax25_dev->dev); + ax25_dev_put(ax25_dev); + } sock->sk = NULL; release_sock(sk); @@ -1104,8 +1136,10 @@ } } - if (ax25_dev != NULL) + if (ax25_dev) { ax25_fillin_cb(ax25, ax25_dev); + dev_hold(ax25_dev->dev); + } done: ax25_cb_add(ax25); diff -u linux-azure-5.4.0/net/batman-adv/bat_iv_ogm.c linux-azure-5.4.0/net/batman-adv/bat_iv_ogm.c --- linux-azure-5.4.0/net/batman-adv/bat_iv_ogm.c +++ linux-azure-5.4.0/net/batman-adv/bat_iv_ogm.c @@ -409,8 +409,10 @@ if (WARN_ON(!forw_packet->if_outgoing)) return; - if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface)) + if (forw_packet->if_outgoing->soft_iface != soft_iface) { + pr_warn("%s: soft interface switch for queued OGM\n", __func__); return; + } if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE) return; diff -u linux-azure-5.4.0/net/batman-adv/bridge_loop_avoidance.c linux-azure-5.4.0/net/batman-adv/bridge_loop_avoidance.c --- linux-azure-5.4.0/net/batman-adv/bridge_loop_avoidance.c +++ linux-azure-5.4.0/net/batman-adv/bridge_loop_avoidance.c @@ -1561,10 +1561,14 @@ return 0; bat_priv->bla.claim_hash = batadv_hash_new(128); - bat_priv->bla.backbone_hash = batadv_hash_new(32); + if (!bat_priv->bla.claim_hash) + return -ENOMEM; - if (!bat_priv->bla.claim_hash || !bat_priv->bla.backbone_hash) + bat_priv->bla.backbone_hash = batadv_hash_new(32); + if (!bat_priv->bla.backbone_hash) { + batadv_hash_destroy(bat_priv->bla.claim_hash); return -ENOMEM; + } batadv_hash_set_lock_class(bat_priv->bla.claim_hash, &batadv_claim_hash_lock_class_key); diff -u linux-azure-5.4.0/net/batman-adv/multicast.c linux-azure-5.4.0/net/batman-adv/multicast.c --- linux-azure-5.4.0/net/batman-adv/multicast.c +++ linux-azure-5.4.0/net/batman-adv/multicast.c @@ -136,7 +136,7 @@ { struct inet6_dev *in6_dev = __in6_dev_get(dev); - if (in6_dev && in6_dev->cnf.mc_forwarding) + if (in6_dev && atomic_read(&in6_dev->cnf.mc_forwarding)) return BATADV_NO_FLAGS; else return BATADV_MCAST_WANT_NO_RTR6; @@ -1373,6 +1373,7 @@ * @bat_priv: the bat priv with all the soft interface information * @skb: The multicast packet to check * @orig: an originator to be set to forward the skb to + * @is_routable: stores whether the destination is routable * * Return: the forwarding mode as enum batadv_forw_mode and in case of * BATADV_FORW_SINGLE set the orig to the single originator the skb @@ -1380,17 +1381,16 @@ */ enum batadv_forw_mode batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, - struct batadv_orig_node **orig) + struct batadv_orig_node **orig, int *is_routable) { int ret, tt_count, ip_count, unsnoop_count, total_count; bool is_unsnoopable = false; unsigned int mcast_fanout; struct ethhdr *ethhdr; - int is_routable = 0; int rtr_count = 0; ret = batadv_mcast_forw_mode_check(bat_priv, skb, &is_unsnoopable, - &is_routable); + is_routable); if (ret == -ENOMEM) return BATADV_FORW_NONE; else if (ret < 0) @@ -1403,7 +1403,7 @@ ip_count = batadv_mcast_forw_want_all_ip_count(bat_priv, ethhdr); unsnoop_count = !is_unsnoopable ? 0 : atomic_read(&bat_priv->mcast.num_want_all_unsnoopables); - rtr_count = batadv_mcast_forw_rtr_count(bat_priv, is_routable); + rtr_count = batadv_mcast_forw_rtr_count(bat_priv, *is_routable); total_count = tt_count + ip_count + unsnoop_count + rtr_count; @@ -1723,6 +1723,7 @@ * @bat_priv: the bat priv with all the soft interface information * @skb: the multicast packet to transmit * @vid: the vlan identifier + * @is_routable: stores whether the destination is routable * * Sends copies of a frame with multicast destination to any node that signaled * interest in it, that is either via the translation table or the according @@ -1735,7 +1736,7 @@ * is neither IPv4 nor IPv6. NET_XMIT_SUCCESS otherwise. */ int batadv_mcast_forw_send(struct batadv_priv *bat_priv, struct sk_buff *skb, - unsigned short vid) + unsigned short vid, int is_routable) { int ret; @@ -1751,12 +1752,16 @@ return ret; } + if (!is_routable) + goto skip_mc_router; + ret = batadv_mcast_forw_want_rtr(bat_priv, skb, vid); if (ret != NET_XMIT_SUCCESS) { kfree_skb(skb); return ret; } +skip_mc_router: consume_skb(skb); return ret; } diff -u linux-azure-5.4.0/net/batman-adv/multicast.h linux-azure-5.4.0/net/batman-adv/multicast.h --- linux-azure-5.4.0/net/batman-adv/multicast.h +++ linux-azure-5.4.0/net/batman-adv/multicast.h @@ -44,7 +44,8 @@ enum batadv_forw_mode batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, - struct batadv_orig_node **mcast_single_orig); + struct batadv_orig_node **mcast_single_orig, + int *is_routable); int batadv_mcast_forw_send_orig(struct batadv_priv *bat_priv, struct sk_buff *skb, @@ -52,7 +53,7 @@ struct batadv_orig_node *orig_node); int batadv_mcast_forw_send(struct batadv_priv *bat_priv, struct sk_buff *skb, - unsigned short vid); + unsigned short vid, int is_routable); void batadv_mcast_init(struct batadv_priv *bat_priv); @@ -71,7 +72,8 @@ static inline enum batadv_forw_mode batadv_mcast_forw_mode(struct batadv_priv *bat_priv, struct sk_buff *skb, - struct batadv_orig_node **mcast_single_orig) + struct batadv_orig_node **mcast_single_orig, + int *is_routable) { return BATADV_FORW_ALL; } @@ -88,7 +90,7 @@ static inline int batadv_mcast_forw_send(struct batadv_priv *bat_priv, struct sk_buff *skb, - unsigned short vid) + unsigned short vid, int is_routable) { kfree_skb(skb); return NET_XMIT_DROP; diff -u linux-azure-5.4.0/net/batman-adv/network-coding.c linux-azure-5.4.0/net/batman-adv/network-coding.c --- linux-azure-5.4.0/net/batman-adv/network-coding.c +++ linux-azure-5.4.0/net/batman-adv/network-coding.c @@ -155,8 +155,10 @@ &batadv_nc_coding_hash_lock_class_key); bat_priv->nc.decoding_hash = batadv_hash_new(128); - if (!bat_priv->nc.decoding_hash) + if (!bat_priv->nc.decoding_hash) { + batadv_hash_destroy(bat_priv->nc.coding_hash); goto err; + } batadv_hash_set_lock_class(bat_priv->nc.decoding_hash, &batadv_nc_decoding_hash_lock_class_key); diff -u linux-azure-5.4.0/net/batman-adv/soft-interface.c linux-azure-5.4.0/net/batman-adv/soft-interface.c --- linux-azure-5.4.0/net/batman-adv/soft-interface.c +++ linux-azure-5.4.0/net/batman-adv/soft-interface.c @@ -200,6 +200,7 @@ int gw_mode; enum batadv_forw_mode forw_mode = BATADV_FORW_SINGLE; struct batadv_orig_node *mcast_single_orig = NULL; + int mcast_is_routable = 0; int network_offset = ETH_HLEN; __be16 proto; @@ -302,7 +303,8 @@ send: if (do_bcast && !is_broadcast_ether_addr(ethhdr->h_dest)) { forw_mode = batadv_mcast_forw_mode(bat_priv, skb, - &mcast_single_orig); + &mcast_single_orig, + &mcast_is_routable); if (forw_mode == BATADV_FORW_NONE) goto dropped; @@ -367,7 +369,8 @@ ret = batadv_mcast_forw_send_orig(bat_priv, skb, vid, mcast_single_orig); } else if (forw_mode == BATADV_FORW_SOME) { - ret = batadv_mcast_forw_send(bat_priv, skb, vid); + ret = batadv_mcast_forw_send(bat_priv, skb, vid, + mcast_is_routable); } else { if (batadv_dat_snoop_outgoing_arp_request(bat_priv, skb)) diff -u linux-azure-5.4.0/net/batman-adv/translation-table.c linux-azure-5.4.0/net/batman-adv/translation-table.c --- linux-azure-5.4.0/net/batman-adv/translation-table.c +++ linux-azure-5.4.0/net/batman-adv/translation-table.c @@ -4405,8 +4405,10 @@ return ret; ret = batadv_tt_global_init(bat_priv); - if (ret < 0) + if (ret < 0) { + batadv_tt_local_table_free(bat_priv); return ret; + } batadv_tvlv_handler_register(bat_priv, batadv_tt_tvlv_ogm_handler_v1, batadv_tt_tvlv_unicast_handler_v1, diff -u linux-azure-5.4.0/net/bluetooth/cmtp/core.c linux-azure-5.4.0/net/bluetooth/cmtp/core.c --- linux-azure-5.4.0/net/bluetooth/cmtp/core.c +++ linux-azure-5.4.0/net/bluetooth/cmtp/core.c @@ -501,9 +501,7 @@ { BT_INFO("CMTP (CAPI Emulation) ver %s", VERSION); - cmtp_init_sockets(); - - return 0; + return cmtp_init_sockets(); } static void __exit cmtp_exit(void) diff -u linux-azure-5.4.0/net/bluetooth/hci_core.c linux-azure-5.4.0/net/bluetooth/hci_core.c --- linux-azure-5.4.0/net/bluetooth/hci_core.c +++ linux-azure-5.4.0/net/bluetooth/hci_core.c @@ -1297,6 +1297,12 @@ goto done; } + /* Restrict maximum inquiry length to 60 seconds */ + if (ir.length > 60) { + err = -EINVAL; + goto done; + } + hci_dev_lock(hdev); if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX || inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) { @@ -1561,8 +1567,13 @@ } else { /* Init failed, cleanup */ flush_work(&hdev->tx_work); - flush_work(&hdev->cmd_work); + + /* Since hci_rx_work() is possible to awake new cmd_work + * it should be flushed first to avoid unexpected call of + * hci_cmd_work() + */ flush_work(&hdev->rx_work); + flush_work(&hdev->cmd_work); skb_queue_purge(&hdev->cmd_q); skb_queue_purge(&hdev->rx_q); @@ -3293,10 +3304,10 @@ */ switch (hdev->dev_type) { case HCI_PRIMARY: - id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL); + id = ida_simple_get(&hci_index_ida, 0, HCI_MAX_ID, GFP_KERNEL); break; case HCI_AMP: - id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL); + id = ida_simple_get(&hci_index_ida, 1, HCI_MAX_ID, GFP_KERNEL); break; default: return -EINVAL; @@ -3305,7 +3316,7 @@ if (id < 0) return id; - sprintf(hdev->name, "hci%d", id); + snprintf(hdev->name, sizeof(hdev->name), "hci%d", id); hdev->id = id; BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); @@ -3376,6 +3387,7 @@ return id; err_wqueue: + debugfs_remove_recursive(hdev->debugfs); destroy_workqueue(hdev->workqueue); destroy_workqueue(hdev->req_workqueue); err: @@ -3388,14 +3400,10 @@ /* Unregister HCI device */ void hci_unregister_dev(struct hci_dev *hdev) { - int id; - BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); hci_dev_set_flag(hdev, HCI_UNREGISTER); - id = hdev->id; - write_lock(&hci_dev_list_lock); list_del(&hdev->list); write_unlock(&hci_dev_list_lock); @@ -3424,7 +3432,14 @@ } device_del(&hdev->dev); + /* Actual cleanup is deferred until hci_cleanup_dev(). */ + hci_dev_put(hdev); +} +EXPORT_SYMBOL(hci_unregister_dev); +/* Cleanup HCI device */ +void hci_cleanup_dev(struct hci_dev *hdev) +{ debugfs_remove_recursive(hdev->debugfs); kfree_const(hdev->hw_info); kfree_const(hdev->fw_info); @@ -3447,11 +3462,8 @@ hci_discovery_filter_clear(hdev); hci_dev_unlock(hdev); - hci_dev_put(hdev); - - ida_simple_remove(&hci_index_ida, id); + ida_simple_remove(&hci_index_ida, hdev->id); } -EXPORT_SYMBOL(hci_unregister_dev); /* Suspend HCI device */ int hci_suspend_dev(struct hci_dev *hdev) diff -u linux-azure-5.4.0/net/bluetooth/hci_event.c linux-azure-5.4.0/net/bluetooth/hci_event.c --- linux-azure-5.4.0/net/bluetooth/hci_event.c +++ linux-azure-5.4.0/net/bluetooth/hci_event.c @@ -4202,6 +4202,21 @@ switch (ev->status) { case 0x00: + /* The synchronous connection complete event should only be + * sent once per new connection. Receiving a successful + * complete event when the connection status is already + * BT_CONNECTED means that the device is misbehaving and sent + * multiple complete event packets for the same new connection. + * + * Registering the device more than once can corrupt kernel + * memory, hence upon detecting this invalid event, we report + * an error and ignore the packet. + */ + if (conn->state == BT_CONNECTED) { + bt_dev_err(hdev, "Ignoring connect complete event for existing connection"); + goto unlock; + } + conn->handle = __le16_to_cpu(ev->handle); conn->state = BT_CONNECTED; conn->type = ev->link_type; @@ -4896,8 +4911,9 @@ hci_dev_lock(hdev); hcon = hci_conn_hash_lookup_handle(hdev, ev->phy_handle); - if (hcon) { + if (hcon && hcon->type == AMP_LINK) { hcon->state = BT_CLOSED; + hci_disconn_cfm(hcon, ev->reason); hci_conn_del(hcon); } @@ -4905,9 +4921,64 @@ } #endif +static void le_conn_update_addr(struct hci_conn *conn, bdaddr_t *bdaddr, + u8 bdaddr_type, bdaddr_t *local_rpa) +{ + if (conn->out) { + conn->dst_type = bdaddr_type; + conn->resp_addr_type = bdaddr_type; + bacpy(&conn->resp_addr, bdaddr); + + /* Check if the controller has set a Local RPA then it must be + * used instead or hdev->rpa. + */ + if (local_rpa && bacmp(local_rpa, BDADDR_ANY)) { + conn->init_addr_type = ADDR_LE_DEV_RANDOM; + bacpy(&conn->init_addr, local_rpa); + } else if (hci_dev_test_flag(conn->hdev, HCI_PRIVACY)) { + conn->init_addr_type = ADDR_LE_DEV_RANDOM; + bacpy(&conn->init_addr, &conn->hdev->rpa); + } else { + hci_copy_identity_address(conn->hdev, &conn->init_addr, + &conn->init_addr_type); + } + } else { + conn->resp_addr_type = conn->hdev->adv_addr_type; + /* Check if the controller has set a Local RPA then it must be + * used instead or hdev->rpa. + */ + if (local_rpa && bacmp(local_rpa, BDADDR_ANY)) { + conn->resp_addr_type = ADDR_LE_DEV_RANDOM; + bacpy(&conn->resp_addr, local_rpa); + } else if (conn->hdev->adv_addr_type == ADDR_LE_DEV_RANDOM) { + /* In case of ext adv, resp_addr will be updated in + * Adv Terminated event. + */ + if (!ext_adv_capable(conn->hdev)) + bacpy(&conn->resp_addr, + &conn->hdev->random_addr); + } else { + bacpy(&conn->resp_addr, &conn->hdev->bdaddr); + } + + conn->init_addr_type = bdaddr_type; + bacpy(&conn->init_addr, bdaddr); + + /* For incoming connections, set the default minimum + * and maximum connection interval. They will be used + * to check if the parameters are in range and if not + * trigger the connection update procedure. + */ + conn->le_conn_min_interval = conn->hdev->le_conn_min_interval; + conn->le_conn_max_interval = conn->hdev->le_conn_max_interval; + } +} + static void le_conn_complete_evt(struct hci_dev *hdev, u8 status, - bdaddr_t *bdaddr, u8 bdaddr_type, u8 role, u16 handle, - u16 interval, u16 latency, u16 supervision_timeout) + bdaddr_t *bdaddr, u8 bdaddr_type, + bdaddr_t *local_rpa, u8 role, u16 handle, + u16 interval, u16 latency, + u16 supervision_timeout) { struct hci_conn_params *params; struct hci_conn *conn; @@ -4955,32 +5026,7 @@ cancel_delayed_work(&conn->le_conn_timeout); } - if (!conn->out) { - /* Set the responder (our side) address type based on - * the advertising address type. - */ - conn->resp_addr_type = hdev->adv_addr_type; - if (hdev->adv_addr_type == ADDR_LE_DEV_RANDOM) { - /* In case of ext adv, resp_addr will be updated in - * Adv Terminated event. - */ - if (!ext_adv_capable(hdev)) - bacpy(&conn->resp_addr, &hdev->random_addr); - } else { - bacpy(&conn->resp_addr, &hdev->bdaddr); - } - - conn->init_addr_type = bdaddr_type; - bacpy(&conn->init_addr, bdaddr); - - /* For incoming connections, set the default minimum - * and maximum connection interval. They will be used - * to check if the parameters are in range and if not - * trigger the connection update procedure. - */ - conn->le_conn_min_interval = hdev->le_conn_min_interval; - conn->le_conn_max_interval = hdev->le_conn_max_interval; - } + le_conn_update_addr(conn, bdaddr, bdaddr_type, local_rpa); /* Lookup the identity address from the stored connection * address and address type. @@ -5074,7 +5120,7 @@ BT_DBG("%s status 0x%2.2x", hdev->name, ev->status); le_conn_complete_evt(hdev, ev->status, &ev->bdaddr, ev->bdaddr_type, - ev->role, le16_to_cpu(ev->handle), + NULL, ev->role, le16_to_cpu(ev->handle), le16_to_cpu(ev->interval), le16_to_cpu(ev->latency), le16_to_cpu(ev->supervision_timeout)); @@ -5088,7 +5134,7 @@ BT_DBG("%s status 0x%2.2x", hdev->name, ev->status); le_conn_complete_evt(hdev, ev->status, &ev->bdaddr, ev->bdaddr_type, - ev->role, le16_to_cpu(ev->handle), + &ev->local_rpa, ev->role, le16_to_cpu(ev->handle), le16_to_cpu(ev->interval), le16_to_cpu(ev->latency), le16_to_cpu(ev->supervision_timeout)); @@ -5101,14 +5147,26 @@ BT_DBG("%s status 0x%2.2x", hdev->name, ev->status); - if (ev->status) + if (ev->status) { + struct adv_info *adv; + + adv = hci_find_adv_instance(hdev, ev->handle); + if (!adv) + return; + + /* Remove advertising as it has been terminated */ + hci_remove_adv_instance(hdev, ev->handle); + mgmt_advertising_removed(NULL, hdev, ev->handle); + return; + } conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->conn_handle)); if (conn) { struct adv_info *adv_instance; - if (hdev->adv_addr_type != ADDR_LE_DEV_RANDOM) + if (hdev->adv_addr_type != ADDR_LE_DEV_RANDOM || + bacmp(&conn->resp_addr, BDADDR_ANY)) return; if (!hdev->cur_adv_instance) { @@ -5449,7 +5507,13 @@ struct hci_ev_le_advertising_info *ev = ptr; s8 rssi; - if (ev->length <= HCI_MAX_AD_LENGTH) { + if (ptr > (void *)skb_tail_pointer(skb) - sizeof(*ev)) { + bt_dev_err(hdev, "Malicious advertising data."); + break; + } + + if (ev->length <= HCI_MAX_AD_LENGTH && + ev->data + ev->length <= skb_tail_pointer(skb)) { rssi = ev->data[ev->length]; process_adv_report(hdev, ev->evt_type, &ev->bdaddr, ev->bdaddr_type, NULL, 0, rssi, diff -u linux-azure-5.4.0/net/bluetooth/hci_sock.c linux-azure-5.4.0/net/bluetooth/hci_sock.c --- linux-azure-5.4.0/net/bluetooth/hci_sock.c +++ linux-azure-5.4.0/net/bluetooth/hci_sock.c @@ -59,6 +59,17 @@ char comm[TASK_COMM_LEN]; }; +static struct hci_dev *hci_hdev_from_sock(struct sock *sk) +{ + struct hci_dev *hdev = hci_pi(sk)->hdev; + + if (!hdev) + return ERR_PTR(-EBADFD); + if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) + return ERR_PTR(-EPIPE); + return hdev; +} + void hci_sock_set_flag(struct sock *sk, int nr) { set_bit(nr, &hci_pi(sk)->flags); @@ -752,19 +763,13 @@ if (event == HCI_DEV_UNREG) { struct sock *sk; - /* Detach sockets from device */ + /* Wake up sockets using this dead device */ read_lock(&hci_sk_list.lock); sk_for_each(sk, &hci_sk_list.head) { - bh_lock_sock_nested(sk); if (hci_pi(sk)->hdev == hdev) { - hci_pi(sk)->hdev = NULL; sk->sk_err = EPIPE; - sk->sk_state = BT_OPEN; sk->sk_state_change(sk); - - hci_dev_put(hdev); } - bh_unlock_sock(sk); } read_unlock(&hci_sk_list.lock); } @@ -923,10 +928,10 @@ static int hci_sock_bound_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg) { - struct hci_dev *hdev = hci_pi(sk)->hdev; + struct hci_dev *hdev = hci_hdev_from_sock(sk); - if (!hdev) - return -EBADFD; + if (IS_ERR(hdev)) + return PTR_ERR(hdev); if (hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) return -EBUSY; @@ -1080,6 +1085,18 @@ lock_sock(sk); + /* Allow detaching from dead device and attaching to alive device, if + * the caller wants to re-bind (instead of close) this socket in + * response to hci_sock_dev_event(HCI_DEV_UNREG) notification. + */ + hdev = hci_pi(sk)->hdev; + if (hdev && hci_dev_test_flag(hdev, HCI_UNREGISTER)) { + hci_pi(sk)->hdev = NULL; + sk->sk_state = BT_OPEN; + hci_dev_put(hdev); + } + hdev = NULL; + if (sk->sk_state == BT_BOUND) { err = -EALREADY; goto done; @@ -1356,9 +1373,9 @@ lock_sock(sk); - hdev = hci_pi(sk)->hdev; - if (!hdev) { - err = -EBADFD; + hdev = hci_hdev_from_sock(sk); + if (IS_ERR(hdev)) { + err = PTR_ERR(hdev); goto done; } @@ -1718,9 +1735,9 @@ goto done; } - hdev = hci_pi(sk)->hdev; - if (!hdev) { - err = -EBADFD; + hdev = hci_hdev_from_sock(sk); + if (IS_ERR(hdev)) { + err = PTR_ERR(hdev); goto done; } diff -u linux-azure-5.4.0/net/bluetooth/l2cap_core.c linux-azure-5.4.0/net/bluetooth/l2cap_core.c --- linux-azure-5.4.0/net/bluetooth/l2cap_core.c +++ linux-azure-5.4.0/net/bluetooth/l2cap_core.c @@ -60,6 +60,9 @@ static void l2cap_tx(struct l2cap_chan *chan, struct l2cap_ctrl *control, struct sk_buff_head *skbs, u8 event); +static void l2cap_retrans_timeout(struct work_struct *work); +static void l2cap_monitor_timeout(struct work_struct *work); +static void l2cap_ack_timeout(struct work_struct *work); static inline u8 bdaddr_type(u8 link_type, u8 bdaddr_type) { @@ -110,7 +113,8 @@ } /* Find channel with given SCID. - * Returns locked channel. */ + * Returns a reference locked channel. + */ static struct l2cap_chan *l2cap_get_chan_by_scid(struct l2cap_conn *conn, u16 cid) { @@ -118,15 +122,19 @@ mutex_lock(&conn->chan_lock); c = __l2cap_get_chan_by_scid(conn, cid); - if (c) - l2cap_chan_lock(c); + if (c) { + /* Only lock if chan reference is not 0 */ + c = l2cap_chan_hold_unless_zero(c); + if (c) + l2cap_chan_lock(c); + } mutex_unlock(&conn->chan_lock); return c; } /* Find channel with given DCID. - * Returns locked channel. + * Returns a reference locked channel. */ static struct l2cap_chan *l2cap_get_chan_by_dcid(struct l2cap_conn *conn, u16 cid) @@ -135,8 +143,12 @@ mutex_lock(&conn->chan_lock); c = __l2cap_get_chan_by_dcid(conn, cid); - if (c) - l2cap_chan_lock(c); + if (c) { + /* Only lock if chan reference is not 0 */ + c = l2cap_chan_hold_unless_zero(c); + if (c) + l2cap_chan_lock(c); + } mutex_unlock(&conn->chan_lock); return c; @@ -161,8 +173,12 @@ mutex_lock(&conn->chan_lock); c = __l2cap_get_chan_by_ident(conn, ident); - if (c) - l2cap_chan_lock(c); + if (c) { + /* Only lock if chan reference is not 0 */ + c = l2cap_chan_hold_unless_zero(c); + if (c) + l2cap_chan_lock(c); + } mutex_unlock(&conn->chan_lock); return c; @@ -462,6 +478,9 @@ write_unlock(&chan_list_lock); INIT_DELAYED_WORK(&chan->chan_timer, l2cap_chan_timeout); + INIT_DELAYED_WORK(&chan->retrans_timer, l2cap_retrans_timeout); + INIT_DELAYED_WORK(&chan->monitor_timer, l2cap_monitor_timeout); + INIT_DELAYED_WORK(&chan->ack_timer, l2cap_ack_timeout); chan->state = BT_OPEN; @@ -496,6 +515,16 @@ kref_get(&c->kref); } +struct l2cap_chan *l2cap_chan_hold_unless_zero(struct l2cap_chan *c) +{ + BT_DBG("chan %p orig refcnt %u", c, kref_read(&c->kref)); + + if (!kref_get_unless_zero(&c->kref)) + return NULL; + + return c; +} + void l2cap_chan_put(struct l2cap_chan *c) { BT_DBG("chan %p orig refcnt %d", c, kref_read(&c->kref)); @@ -1790,11 +1819,11 @@ bdaddr_t *dst, u8 link_type) { - struct l2cap_chan *c, *c1 = NULL; + struct l2cap_chan *c, *tmp, *c1 = NULL; read_lock(&chan_list_lock); - list_for_each_entry(c, &chan_list, global_l) { + list_for_each_entry_safe(c, tmp, &chan_list, global_l) { if (state && c->state != state) continue; @@ -1804,7 +1833,7 @@ if (link_type == LE_LINK && c->src_type == BDADDR_BREDR) continue; - if (c->psm == psm) { + if (c->chan_type != L2CAP_CHAN_FIXED && c->psm == psm) { int src_match, dst_match; int src_any, dst_any; @@ -1812,7 +1841,9 @@ src_match = !bacmp(&c->src, src); dst_match = !bacmp(&c->dst, dst); if (src_match && dst_match) { - l2cap_chan_hold(c); + if (!l2cap_chan_hold_unless_zero(c)) + continue; + read_unlock(&chan_list_lock); return c; } @@ -1827,7 +1858,7 @@ } if (c1) - l2cap_chan_hold(c1); + c1 = l2cap_chan_hold_unless_zero(c1); read_unlock(&chan_list_lock); @@ -3138,10 +3169,6 @@ chan->rx_state = L2CAP_RX_STATE_RECV; chan->tx_state = L2CAP_TX_STATE_XMIT; - INIT_DELAYED_WORK(&chan->retrans_timer, l2cap_retrans_timeout); - INIT_DELAYED_WORK(&chan->monitor_timer, l2cap_monitor_timeout); - INIT_DELAYED_WORK(&chan->ack_timer, l2cap_ack_timeout); - skb_queue_head_init(&chan->srej_q); err = l2cap_seq_list_init(&chan->srej_list, chan->tx_win); @@ -3533,7 +3560,8 @@ l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC, sizeof(rfc), (unsigned long) &rfc, endptr - ptr); - if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) { + if (remote_efs && + test_bit(FLAG_EFS_ENABLE, &chan->flags)) { chan->remote_id = efs.id; chan->remote_stype = efs.stype; chan->remote_msdu = le16_to_cpu(efs.msdu); @@ -4039,6 +4067,12 @@ } } + chan = l2cap_chan_hold_unless_zero(chan); + if (!chan) { + err = -EBADSLT; + goto unlock; + } + err = 0; l2cap_chan_lock(chan); @@ -4068,6 +4102,7 @@ } l2cap_chan_unlock(chan); + l2cap_chan_put(chan); unlock: mutex_unlock(&conn->chan_lock); @@ -4175,7 +4210,8 @@ chan->ident = cmd->ident; l2cap_send_cmd(conn, cmd->ident, L2CAP_CONF_RSP, len, rsp); - chan->num_conf_rsp++; + if (chan->num_conf_rsp < L2CAP_CONF_MAX_CONF_RSP) + chan->num_conf_rsp++; /* Reset config buffer. */ chan->conf_len = 0; @@ -4221,6 +4257,7 @@ unlock: l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return err; } @@ -4334,6 +4371,7 @@ done: l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return err; } @@ -5062,6 +5100,7 @@ l2cap_send_move_chan_rsp(chan, result); l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return 0; } @@ -5154,6 +5193,7 @@ } l2cap_chan_unlock(chan); + l2cap_chan_put(chan); } static void l2cap_move_fail(struct l2cap_conn *conn, u8 ident, u16 icid, @@ -5183,6 +5223,7 @@ l2cap_send_move_chan_cfm(chan, L2CAP_MC_UNCONFIRMED); l2cap_chan_unlock(chan); + l2cap_chan_put(chan); } static int l2cap_move_channel_rsp(struct l2cap_conn *conn, @@ -5246,6 +5287,7 @@ l2cap_send_move_chan_cfm_rsp(conn, cmd->ident, icid); l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return 0; } @@ -5281,6 +5323,7 @@ } l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return 0; } @@ -5529,6 +5572,19 @@ BT_DBG("psm 0x%2.2x scid 0x%4.4x mtu %u mps %u", __le16_to_cpu(psm), scid, mtu, mps); + /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 3, Part A + * page 1059: + * + * Valid range: 0x0001-0x00ff + * + * Table 4.15: L2CAP_LE_CREDIT_BASED_CONNECTION_REQ SPSM ranges + */ + if (!psm || __le16_to_cpu(psm) > L2CAP_PSM_LE_DYN_END) { + result = L2CAP_CR_LE_BAD_PSM; + chan = NULL; + goto response; + } + /* Check if we have socket listening on psm */ pchan = l2cap_global_chan_by_psm(BT_LISTEN, psm, &conn->hcon->src, &conn->hcon->dst, LE_LINK); @@ -5653,12 +5709,11 @@ if (credits > max_credits) { BT_ERR("LE credits overflow"); l2cap_send_disconn_req(chan, ECONNRESET); - l2cap_chan_unlock(chan); /* Return 0 so that we don't trigger an unnecessary * command reject packet. */ - return 0; + goto unlock; } chan->tx_credits += credits; @@ -5669,7 +5724,9 @@ if (chan->tx_credits) chan->ops->resume(chan); +unlock: l2cap_chan_unlock(chan); + l2cap_chan_put(chan); return 0; } @@ -6231,6 +6288,7 @@ struct l2cap_ctrl *control, struct sk_buff *skb, u8 event) { + struct l2cap_ctrl local_control; int err = 0; bool skb_in_use = false; @@ -6255,15 +6313,32 @@ chan->buffer_seq = chan->expected_tx_seq; skb_in_use = true; + /* l2cap_reassemble_sdu may free skb, hence invalidate + * control, so make a copy in advance to use it after + * l2cap_reassemble_sdu returns and to avoid the race + * condition, for example: + * + * The current thread calls: + * l2cap_reassemble_sdu + * chan->ops->recv == l2cap_sock_recv_cb + * __sock_queue_rcv_skb + * Another thread calls: + * bt_sock_recvmsg + * skb_recv_datagram + * skb_free_datagram + * Then the current thread tries to access control, but + * it was freed by skb_free_datagram. + */ + local_control = *control; err = l2cap_reassemble_sdu(chan, skb, control); if (err) break; - if (control->final) { + if (local_control.final) { if (!test_and_clear_bit(CONN_REJ_ACT, &chan->conn_state)) { - control->final = 0; - l2cap_retransmit_all(chan, control); + local_control.final = 0; + l2cap_retransmit_all(chan, &local_control); l2cap_ertm_send(chan); } } @@ -6643,11 +6718,27 @@ static int l2cap_stream_rx(struct l2cap_chan *chan, struct l2cap_ctrl *control, struct sk_buff *skb) { + /* l2cap_reassemble_sdu may free skb, hence invalidate control, so store + * the txseq field in advance to use it after l2cap_reassemble_sdu + * returns and to avoid the race condition, for example: + * + * The current thread calls: + * l2cap_reassemble_sdu + * chan->ops->recv == l2cap_sock_recv_cb + * __sock_queue_rcv_skb + * Another thread calls: + * bt_sock_recvmsg + * skb_recv_datagram + * skb_free_datagram + * Then the current thread tries to access control, but it was freed by + * skb_free_datagram. + */ + u16 txseq = control->txseq; + BT_DBG("chan %p, control %p, skb %p, state %d", chan, control, skb, chan->rx_state); - if (l2cap_classify_txseq(chan, control->txseq) == - L2CAP_TXSEQ_EXPECTED) { + if (l2cap_classify_txseq(chan, txseq) == L2CAP_TXSEQ_EXPECTED) { l2cap_pass_to_tx(chan, control); BT_DBG("buffer_seq %d->%d", chan->buffer_seq, @@ -6670,8 +6761,8 @@ } } - chan->last_acked_seq = control->txseq; - chan->expected_tx_seq = __next_seq(chan, control->txseq); + chan->last_acked_seq = txseq; + chan->expected_tx_seq = __next_seq(chan, txseq); return 0; } @@ -6925,6 +7016,7 @@ return; } + l2cap_chan_hold(chan); l2cap_chan_lock(chan); } else { BT_DBG("unknown cid 0x%4.4x", cid); @@ -6983,6 +7075,7 @@ done: l2cap_chan_unlock(chan); + l2cap_chan_put(chan); } static void l2cap_conless_channel(struct l2cap_conn *conn, __le16 psm, @@ -7386,7 +7479,7 @@ if (src_type != c->src_type) continue; - l2cap_chan_hold(c); + c = l2cap_chan_hold_unless_zero(c); read_unlock(&chan_list_lock); return c; } diff -u linux-azure-5.4.0/net/bluetooth/l2cap_sock.c linux-azure-5.4.0/net/bluetooth/l2cap_sock.c --- linux-azure-5.4.0/net/bluetooth/l2cap_sock.c +++ linux-azure-5.4.0/net/bluetooth/l2cap_sock.c @@ -1347,6 +1347,9 @@ { struct sock *sk = chan->data; + if (!sk) + return; + l2cap_sock_kill(sk); } @@ -1355,6 +1358,9 @@ struct sock *sk = chan->data; struct sock *parent; + if (!sk) + return; + BT_DBG("chan %p state %s", chan, state_to_string(chan->state)); /* This callback can be called both for server (BT_LISTEN) @@ -1538,8 +1544,10 @@ { BT_DBG("sk %p", sk); - if (l2cap_pi(sk)->chan) + if (l2cap_pi(sk)->chan) { + l2cap_pi(sk)->chan->data = NULL; l2cap_chan_put(l2cap_pi(sk)->chan); + } if (l2cap_pi(sk)->rx_busy_skb) { kfree_skb(l2cap_pi(sk)->rx_busy_skb); diff -u linux-azure-5.4.0/net/bluetooth/mgmt.c linux-azure-5.4.0/net/bluetooth/mgmt.c --- linux-azure-5.4.0/net/bluetooth/mgmt.c +++ linux-azure-5.4.0/net/bluetooth/mgmt.c @@ -219,12 +219,15 @@ MGMT_STATUS_TIMEOUT, /* Instant Passed */ MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */ MGMT_STATUS_FAILED, /* Transaction Collision */ + MGMT_STATUS_FAILED, /* Reserved for future use */ MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */ MGMT_STATUS_REJECTED, /* QoS Rejected */ MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */ MGMT_STATUS_REJECTED, /* Insufficient Security */ MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */ + MGMT_STATUS_FAILED, /* Reserved for future use */ MGMT_STATUS_BUSY, /* Role Switch Pending */ + MGMT_STATUS_FAILED, /* Reserved for future use */ MGMT_STATUS_FAILED, /* Slot Violation */ MGMT_STATUS_FAILED, /* Role Switch Failed */ MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */ @@ -6461,6 +6464,9 @@ for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) { cur_len = data[i]; + if (!cur_len) + continue; + if (data[i + 1] == EIR_FLAGS && (!is_adv_data || flags_managed(adv_flags))) return false; diff -u linux-azure-5.4.0/net/bpfilter/main.c linux-azure-5.4.0/net/bpfilter/main.c --- linux-azure-5.4.0/net/bpfilter/main.c +++ linux-azure-5.4.0/net/bpfilter/main.c @@ -57,7 +57,7 @@ { debug_f = fopen("/dev/kmsg", "w"); setvbuf(debug_f, 0, _IOLBF, 0); - fprintf(debug_f, "Started bpfilter\n"); + fprintf(debug_f, "<5>Started bpfilter\n"); loop(); fclose(debug_f); return 0; diff -u linux-azure-5.4.0/net/bridge/br_device.c linux-azure-5.4.0/net/bridge/br_device.c --- linux-azure-5.4.0/net/bridge/br_device.c +++ linux-azure-5.4.0/net/bridge/br_device.c @@ -33,7 +33,6 @@ struct pcpu_sw_netstats *brstats = this_cpu_ptr(br->stats); const struct nf_br_ops *nf_ops; const unsigned char *dest; - struct ethhdr *eth; u16 vid = 0; rcu_read_lock(); @@ -53,15 +52,14 @@ BR_INPUT_SKB_CB(skb)->frag_max_size = 0; skb_reset_mac_header(skb); - eth = eth_hdr(skb); skb_pull(skb, ETH_HLEN); if (!br_allowed_ingress(br, br_vlan_group_rcu(br), skb, &vid)) goto out; if (IS_ENABLED(CONFIG_INET) && - (eth->h_proto == htons(ETH_P_ARP) || - eth->h_proto == htons(ETH_P_RARP)) && + (eth_hdr(skb)->h_proto == htons(ETH_P_ARP) || + eth_hdr(skb)->h_proto == htons(ETH_P_RARP)) && br_opt_get(br, BROPT_NEIGH_SUPPRESS_ENABLED)) { br_do_proxy_suppress_arp(skb, br, vid, NULL); } else if (IS_ENABLED(CONFIG_IPV6) && diff -u linux-azure-5.4.0/net/bridge/br_netfilter_hooks.c linux-azure-5.4.0/net/bridge/br_netfilter_hooks.c --- linux-azure-5.4.0/net/bridge/br_netfilter_hooks.c +++ linux-azure-5.4.0/net/bridge/br_netfilter_hooks.c @@ -384,6 +384,7 @@ /* - Bridged-and-DNAT'ed traffic doesn't * require ip_forwarding. */ if (rt->dst.dev == dev) { + skb_dst_drop(skb); skb_dst_set(skb, &rt->dst); goto bridged_dnat; } @@ -413,6 +414,7 @@ kfree_skb(skb); return 0; } + skb_dst_drop(skb); skb_dst_set_noref(skb, &rt->dst); } @@ -743,6 +745,9 @@ if (nf_bridge->frag_max_size && nf_bridge->frag_max_size < mtu) mtu = nf_bridge->frag_max_size; + nf_bridge_update_protocol(skb); + nf_bridge_push_encap_header(skb); + if (skb_is_gso(skb) || skb->len + mtu_reserved <= mtu) { nf_bridge_info_free(skb); return br_dev_queue_push_xmit(net, sk, skb); @@ -760,8 +765,6 @@ IPCB(skb)->frag_max_size = nf_bridge->frag_max_size; - nf_bridge_update_protocol(skb); - data = this_cpu_ptr(&brnf_frag_data_storage); if (skb_vlan_tag_present(skb)) { @@ -789,8 +792,6 @@ IP6CB(skb)->frag_max_size = nf_bridge->frag_max_size; - nf_bridge_update_protocol(skb); - data = this_cpu_ptr(&brnf_frag_data_storage); data->encap_size = nf_bridge_encap_header_len(skb); data->size = ETH_HLEN + data->encap_size; @@ -1013,9 +1014,24 @@ return okfn(net, sk, skb); ops = nf_hook_entries_get_hook_ops(e); - for (i = 0; i < e->num_hook_entries && - ops[i]->priority <= NF_BR_PRI_BRNF; i++) - ; + for (i = 0; i < e->num_hook_entries; i++) { + /* These hooks have already been called */ + if (ops[i]->priority < NF_BR_PRI_BRNF) + continue; + + /* These hooks have not been called yet, run them. */ + if (ops[i]->priority > NF_BR_PRI_BRNF) + break; + + /* take a closer look at NF_BR_PRI_BRNF. */ + if (ops[i]->hook == br_nf_pre_routing) { + /* This hook diverted the skb to this function, + * hooks after this have not been run yet. + */ + i++; + break; + } + } nf_hook_state_init(&state, hook, NFPROTO_BRIDGE, indev, outdev, sk, net, okfn); diff -u linux-azure-5.4.0/net/bridge/br_netlink.c linux-azure-5.4.0/net/bridge/br_netlink.c --- linux-azure-5.4.0/net/bridge/br_netlink.c +++ linux-azure-5.4.0/net/bridge/br_netlink.c @@ -1536,7 +1536,7 @@ } return numvls * nla_total_size(sizeof(struct bridge_vlan_xstats)) + - nla_total_size(sizeof(struct br_mcast_stats)) + + nla_total_size_64bit(sizeof(struct br_mcast_stats)) + nla_total_size(0); } diff -u linux-azure-5.4.0/net/bridge/br_private.h linux-azure-5.4.0/net/bridge/br_private.h --- linux-azure-5.4.0/net/bridge/br_private.h +++ linux-azure-5.4.0/net/bridge/br_private.h @@ -96,8 +96,8 @@ }; struct br_tunnel_info { - __be64 tunnel_id; - struct metadata_dst *tunnel_dst; + __be64 tunnel_id; + struct metadata_dst __rcu *tunnel_dst; }; /* private vlan flags */ diff -u linux-azure-5.4.0/net/bridge/netfilter/ebtable_broute.c linux-azure-5.4.0/net/bridge/netfilter/ebtable_broute.c --- linux-azure-5.4.0/net/bridge/netfilter/ebtable_broute.c +++ linux-azure-5.4.0/net/bridge/netfilter/ebtable_broute.c @@ -36,18 +36,10 @@ .entries = (char *)&initial_chain, }; -static int check(const struct ebt_table_info *info, unsigned int valid_hooks) -{ - if (valid_hooks & ~(1 << NF_BR_BROUTING)) - return -EINVAL; - return 0; -} - static const struct ebt_table broute_table = { .name = "broute", .table = &initial_table, .valid_hooks = 1 << NF_BR_BROUTING, - .check = check, .me = THIS_MODULE, }; diff -u linux-azure-5.4.0/net/bridge/netfilter/ebtable_filter.c linux-azure-5.4.0/net/bridge/netfilter/ebtable_filter.c --- linux-azure-5.4.0/net/bridge/netfilter/ebtable_filter.c +++ linux-azure-5.4.0/net/bridge/netfilter/ebtable_filter.c @@ -43,18 +43,10 @@ .entries = (char *)initial_chains, }; -static int check(const struct ebt_table_info *info, unsigned int valid_hooks) -{ - if (valid_hooks & ~FILTER_VALID_HOOKS) - return -EINVAL; - return 0; -} - static const struct ebt_table frame_filter = { .name = "filter", .table = &initial_table, .valid_hooks = FILTER_VALID_HOOKS, - .check = check, .me = THIS_MODULE, }; diff -u linux-azure-5.4.0/net/bridge/netfilter/ebtable_nat.c linux-azure-5.4.0/net/bridge/netfilter/ebtable_nat.c --- linux-azure-5.4.0/net/bridge/netfilter/ebtable_nat.c +++ linux-azure-5.4.0/net/bridge/netfilter/ebtable_nat.c @@ -43,18 +43,10 @@ .entries = (char *)initial_chains, }; -static int check(const struct ebt_table_info *info, unsigned int valid_hooks) -{ - if (valid_hooks & ~NAT_VALID_HOOKS) - return -EINVAL; - return 0; -} - static const struct ebt_table frame_nat = { .name = "nat", .table = &initial_table, .valid_hooks = NAT_VALID_HOOKS, - .check = check, .me = THIS_MODULE, }; diff -u linux-azure-5.4.0/net/bridge/netfilter/ebtables.c linux-azure-5.4.0/net/bridge/netfilter/ebtables.c --- linux-azure-5.4.0/net/bridge/netfilter/ebtables.c +++ linux-azure-5.4.0/net/bridge/netfilter/ebtables.c @@ -999,9 +999,10 @@ goto free_iterate; } - /* the table doesn't like it */ - if (t->check && (ret = t->check(newinfo, repl->valid_hooks))) + if (repl->valid_hooks != t->valid_hooks) { + ret = -EINVAL; goto free_unlock; + } if (repl->num_counters && repl->num_counters != t->private->nentries) { ret = -EINVAL; @@ -1193,11 +1194,6 @@ if (ret != 0) goto free_chainstack; - if (table->check && table->check(newinfo, table->valid_hooks)) { - ret = -EINVAL; - goto free_chainstack; - } - table->private = newinfo; rwlock_init(&table->lock); mutex_lock(&ebt_mutex); diff -u linux-azure-5.4.0/net/bridge/netfilter/nf_conntrack_bridge.c linux-azure-5.4.0/net/bridge/netfilter/nf_conntrack_bridge.c --- linux-azure-5.4.0/net/bridge/netfilter/nf_conntrack_bridge.c +++ linux-azure-5.4.0/net/bridge/netfilter/nf_conntrack_bridge.c @@ -88,6 +88,12 @@ skb = ip_fraglist_next(&iter); } + + if (!err) + return 0; + + kfree_skb_list(iter.frag); + return err; } slow_path: diff -u linux-azure-5.4.0/net/can/bcm.c linux-azure-5.4.0/net/can/bcm.c --- linux-azure-5.4.0/net/can/bcm.c +++ linux-azure-5.4.0/net/can/bcm.c @@ -102,6 +102,7 @@ struct bcm_op { struct list_head list; + struct rcu_head rcu; int ifindex; canid_t can_id; u32 flags; @@ -127,7 +128,7 @@ struct sock sk; int bound; int ifindex; - struct notifier_block notifier; + struct list_head notifier; struct list_head rx_ops; struct list_head tx_ops; unsigned long dropped_usr_msgs; @@ -135,6 +136,10 @@ char procname [32]; /* inode number in decimal with \0 */ }; +static LIST_HEAD(bcm_notifier_list); +static DEFINE_SPINLOCK(bcm_notifier_lock); +static struct bcm_sock *bcm_busy_notifier; + static inline struct bcm_sock *bcm_sk(const struct sock *sk) { return (struct bcm_sock *)sk; @@ -271,6 +276,7 @@ struct sk_buff *skb; struct net_device *dev; struct canfd_frame *cf = op->frames + op->cfsiz * op->currframe; + int err; /* no target device? => exit */ if (!op->ifindex) @@ -295,11 +301,11 @@ /* send with loopback */ skb->dev = dev; can_skb_set_owner(skb, op->sk); - can_send(skb, 1); + err = can_send(skb, 1); + if (!err) + op->frames_abs++; - /* update statistics */ op->currframe++; - op->frames_abs++; /* reached last frame? */ if (op->currframe >= op->nframes) @@ -404,6 +410,7 @@ if (!op->count && (op->flags & TX_COUNTEVT)) { /* create notification to user */ + memset(&msg_head, 0, sizeof(msg_head)); msg_head.opcode = TX_EXPIRED; msg_head.flags = op->flags; msg_head.count = op->count; @@ -441,6 +448,7 @@ /* this element is not throttled anymore */ data->flags &= (BCM_CAN_FLAGS_MASK|RX_RECV); + memset(&head, 0, sizeof(head)); head.opcode = RX_CHANGED; head.flags = op->flags; head.count = op->count; @@ -562,6 +570,7 @@ } /* create notification to user */ + memset(&msg_head, 0, sizeof(msg_head)); msg_head.opcode = RX_TIMEOUT; msg_head.flags = op->flags; msg_head.count = op->count; @@ -713,10 +722,9 @@ return NULL; } -static void bcm_remove_op(struct bcm_op *op) +static void bcm_free_op_rcu(struct rcu_head *rcu_head) { - hrtimer_cancel(&op->timer); - hrtimer_cancel(&op->thrtimer); + struct bcm_op *op = container_of(rcu_head, struct bcm_op, rcu); if ((op->frames) && (op->frames != &op->sframe)) kfree(op->frames); @@ -727,6 +735,14 @@ kfree(op); } +static void bcm_remove_op(struct bcm_op *op) +{ + hrtimer_cancel(&op->timer); + hrtimer_cancel(&op->thrtimer); + + call_rcu(&op->rcu, bcm_free_op_rcu); +} + static void bcm_rx_unreg(struct net_device *dev, struct bcm_op *op) { if (op->rx_reg_dev == dev) { @@ -752,6 +768,9 @@ if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) && (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME)) { + /* disable automatic timer on frame reception */ + op->flags |= RX_NO_AUTOTIMER; + /* * Don't care if we're bound or not (due to netdev * problems) can_rx_unregister() is always a save @@ -780,7 +799,6 @@ bcm_rx_handler, op); list_del(&op->list); - synchronize_rcu(); bcm_remove_op(op); return 1; /* done */ } @@ -1381,20 +1399,15 @@ /* * notification handler for netdevice status changes */ -static int bcm_notifier(struct notifier_block *nb, unsigned long msg, - void *ptr) +static void bcm_notify(struct bcm_sock *bo, unsigned long msg, + struct net_device *dev) { - struct net_device *dev = netdev_notifier_info_to_dev(ptr); - struct bcm_sock *bo = container_of(nb, struct bcm_sock, notifier); struct sock *sk = &bo->sk; struct bcm_op *op; int notify_enodev = 0; if (!net_eq(dev_net(dev), sock_net(sk))) - return NOTIFY_DONE; - - if (dev->type != ARPHRD_CAN) - return NOTIFY_DONE; + return; switch (msg) { @@ -1429,7 +1442,28 @@ sk->sk_error_report(sk); } } +} + +static int bcm_notifier(struct notifier_block *nb, unsigned long msg, + void *ptr) +{ + struct net_device *dev = netdev_notifier_info_to_dev(ptr); + + if (dev->type != ARPHRD_CAN) + return NOTIFY_DONE; + if (msg != NETDEV_UNREGISTER && msg != NETDEV_DOWN) + return NOTIFY_DONE; + if (unlikely(bcm_busy_notifier)) /* Check for reentrant bug. */ + return NOTIFY_DONE; + spin_lock(&bcm_notifier_lock); + list_for_each_entry(bcm_busy_notifier, &bcm_notifier_list, notifier) { + spin_unlock(&bcm_notifier_lock); + bcm_notify(bcm_busy_notifier, msg, dev); + spin_lock(&bcm_notifier_lock); + } + bcm_busy_notifier = NULL; + spin_unlock(&bcm_notifier_lock); return NOTIFY_DONE; } @@ -1449,9 +1483,9 @@ INIT_LIST_HEAD(&bo->rx_ops); /* set notifier */ - bo->notifier.notifier_call = bcm_notifier; - - register_netdevice_notifier(&bo->notifier); + spin_lock(&bcm_notifier_lock); + list_add_tail(&bo->notifier, &bcm_notifier_list); + spin_unlock(&bcm_notifier_lock); return 0; } @@ -1474,7 +1508,14 @@ /* remove bcm_ops, timer, rx_unregister(), etc. */ - unregister_netdevice_notifier(&bo->notifier); + spin_lock(&bcm_notifier_lock); + while (bcm_busy_notifier == bo) { + spin_unlock(&bcm_notifier_lock); + schedule_timeout_uninterruptible(1); + spin_lock(&bcm_notifier_lock); + } + list_del(&bo->notifier); + spin_unlock(&bcm_notifier_lock); lock_sock(sk); @@ -1702,6 +1743,10 @@ .exit = canbcm_pernet_exit, }; +static struct notifier_block canbcm_notifier = { + .notifier_call = bcm_notifier +}; + static int __init bcm_module_init(void) { int err; @@ -1715,12 +1760,14 @@ } register_pernet_subsys(&canbcm_pernet_ops); + register_netdevice_notifier(&canbcm_notifier); return 0; } static void __exit bcm_module_exit(void) { can_proto_unregister(&bcm_can_proto); + unregister_netdevice_notifier(&canbcm_notifier); unregister_pernet_subsys(&canbcm_pernet_ops); } diff -u linux-azure-5.4.0/net/can/j1939/main.c linux-azure-5.4.0/net/can/j1939/main.c --- linux-azure-5.4.0/net/can/j1939/main.c +++ linux-azure-5.4.0/net/can/j1939/main.c @@ -75,6 +75,13 @@ skcb->addr.pgn = (cf->can_id >> 8) & J1939_PGN_MAX; /* set default message type */ skcb->addr.type = J1939_TP; + + if (!j1939_address_is_valid(skcb->addr.sa)) { + netdev_err_once(priv->ndev, "%s: sa is broadcast address, ignoring!\n", + __func__); + goto done; + } + if (j1939_pgn_is_pdu1(skcb->addr.pgn)) { /* Type 1: with destination address */ skcb->addr.da = skcb->addr.pgn; @@ -245,11 +252,14 @@ struct j1939_priv *priv, *priv_new; int ret; - priv = j1939_priv_get_by_ndev(ndev); + spin_lock(&j1939_netdev_lock); + priv = j1939_priv_get_by_ndev_locked(ndev); if (priv) { kref_get(&priv->rx_kref); + spin_unlock(&j1939_netdev_lock); return priv; } + spin_unlock(&j1939_netdev_lock); priv = j1939_priv_create(ndev); if (!priv) @@ -265,10 +275,10 @@ /* Someone was faster than us, use their priv and roll * back our's. */ + kref_get(&priv_new->rx_kref); spin_unlock(&j1939_netdev_lock); dev_put(ndev); kfree(priv); - kref_get(&priv_new->rx_kref); return priv_new; } j1939_priv_set(ndev, priv); @@ -360,6 +370,10 @@ break; } + /* The last reference of priv is dropped by the RCU deferred + * j1939_sk_sock_destruct() of the last socket, so we can + * safely drop this reference here. + */ j1939_priv_put(priv); notify_done: diff -u linux-azure-5.4.0/net/can/j1939/socket.c linux-azure-5.4.0/net/can/j1939/socket.c --- linux-azure-5.4.0/net/can/j1939/socket.c +++ linux-azure-5.4.0/net/can/j1939/socket.c @@ -178,7 +178,10 @@ if (!first) return; - if (WARN_ON_ONCE(j1939_session_activate(first))) { + if (j1939_session_activate(first)) { + netdev_warn_once(first->priv->ndev, + "%s: 0x%p: Identical session is already activated.\n", + __func__, first); first->err = -EBUSY; goto activate_next; } else { @@ -398,6 +401,9 @@ atomic_set(&jsk->skb_pending, 0); spin_lock_init(&jsk->sk_session_queue_lock); INIT_LIST_HEAD(&jsk->sk_session_queue); + + /* j1939_sk_sock_destruct() depends on SOCK_RCU_FREE flag */ + sock_set_flag(sk, SOCK_RCU_FREE); sk->sk_destruct = j1939_sk_sock_destruct; sk->sk_protocol = CAN_J1939; diff -u linux-azure-5.4.0/net/can/j1939/transport.c linux-azure-5.4.0/net/can/j1939/transport.c --- linux-azure-5.4.0/net/can/j1939/transport.c +++ linux-azure-5.4.0/net/can/j1939/transport.c @@ -260,6 +260,8 @@ static void j1939_session_destroy(struct j1939_session *session) { + struct sk_buff *skb; + if (session->err) j1939_sk_errqueue(session, J1939_ERRQUEUE_ABORT); else @@ -270,7 +272,11 @@ WARN_ON_ONCE(!list_empty(&session->sk_session_queue_entry)); WARN_ON_ONCE(!list_empty(&session->active_session_list_entry)); - skb_queue_purge(&session->skb_queue); + while ((skb = skb_dequeue(&session->skb_queue)) != NULL) { + /* drop ref taken in j1939_session_skb_queue() */ + skb_unref(skb); + kfree_skb(skb); + } __j1939_session_drop(session); j1939_priv_put(session->priv); kfree(session); @@ -330,9 +336,14 @@ if ((do_skcb->offset + do_skb->len) < offset_start) { __skb_unlink(do_skb, &session->skb_queue); + /* drop ref taken in j1939_session_skb_queue() */ + skb_unref(do_skb); + spin_unlock_irqrestore(&session->skb_queue.lock, flags); + kfree_skb(do_skb); + } else { + spin_unlock_irqrestore(&session->skb_queue.lock, flags); } - spin_unlock_irqrestore(&session->skb_queue.lock, flags); } void j1939_session_skb_queue(struct j1939_session *session, @@ -349,12 +360,13 @@ skcb->flags |= J1939_ECU_LOCAL_SRC; + skb_get(skb); skb_queue_tail(&session->skb_queue, skb); } static struct -sk_buff *j1939_session_skb_find_by_offset(struct j1939_session *session, - unsigned int offset_start) +sk_buff *j1939_session_skb_get_by_offset(struct j1939_session *session, + unsigned int offset_start) { struct j1939_priv *priv = session->priv; struct j1939_sk_buff_cb *do_skcb; @@ -371,6 +383,10 @@ skb = do_skb; } } + + if (skb) + skb_get(skb); + spin_unlock_irqrestore(&session->skb_queue.lock, flags); if (!skb) @@ -381,12 +397,12 @@ return skb; } -static struct sk_buff *j1939_session_skb_find(struct j1939_session *session) +static struct sk_buff *j1939_session_skb_get(struct j1939_session *session) { unsigned int offset_start; offset_start = session->pkt.dpo * 7; - return j1939_session_skb_find_by_offset(session, offset_start); + return j1939_session_skb_get_by_offset(session, offset_start); } /* see if we are receiver @@ -776,7 +792,7 @@ int ret = 0; u8 dat[8]; - se_skb = j1939_session_skb_find_by_offset(session, session->pkt.tx * 7); + se_skb = j1939_session_skb_get_by_offset(session, session->pkt.tx * 7); if (!se_skb) return -ENOBUFS; @@ -801,7 +817,8 @@ netdev_err_once(priv->ndev, "%s: 0x%p: requested data outside of queued buffer: offset %i, len %i, pkt.tx: %i\n", __func__, session, skcb->offset, se_skb->len , session->pkt.tx); - return -EOVERFLOW; + ret = -EOVERFLOW; + goto out_free; } if (!len) { @@ -835,6 +852,12 @@ if (pkt_done) j1939_tp_set_rxtimeout(session, 250); + out_free: + if (ret) + kfree_skb(se_skb); + else + consume_skb(se_skb); + return ret; } @@ -1007,7 +1030,7 @@ static int j1939_simple_txnext(struct j1939_session *session) { struct j1939_priv *priv = session->priv; - struct sk_buff *se_skb = j1939_session_skb_find(session); + struct sk_buff *se_skb = j1939_session_skb_get(session); struct sk_buff *skb; int ret; @@ -1015,8 +1038,10 @@ return 0; skb = skb_clone(se_skb, GFP_ATOMIC); - if (!skb) - return -ENOMEM; + if (!skb) { + ret = -ENOMEM; + goto out_free; + } can_skb_set_owner(skb, se_skb->sk); @@ -1024,12 +1049,18 @@ ret = j1939_send_one(priv, skb); if (ret) - return ret; + goto out_free; j1939_sk_errqueue(session, J1939_ERRQUEUE_SCHED); j1939_sk_queue_activate_next(session); - return 0; + out_free: + if (ret) + kfree_skb(se_skb); + else + consume_skb(se_skb); + + return ret; } static bool j1939_session_deactivate_locked(struct j1939_session *session) @@ -1052,11 +1083,16 @@ static bool j1939_session_deactivate(struct j1939_session *session) { + struct j1939_priv *priv = session->priv; bool active; - j1939_session_list_lock(session->priv); + j1939_session_list_lock(priv); + /* This function should be called with a session ref-count of at + * least 2. + */ + WARN_ON_ONCE(kref_read(&session->kref) < 2); active = j1939_session_deactivate_locked(session); - j1939_session_list_unlock(session->priv); + j1939_session_list_unlock(priv); return active; } @@ -1170,9 +1206,10 @@ struct sk_buff *skb; if (!session->transmission) { - skb = j1939_session_skb_find(session); + skb = j1939_session_skb_get(session); /* distribute among j1939 receivers */ j1939_sk_recv(session->priv, skb); + consume_skb(skb); } j1939_session_deactivate_activate_next(session); @@ -1201,12 +1238,11 @@ session->err = -ETIME; j1939_session_deactivate(session); } else { - netdev_alert(priv->ndev, "%s: 0x%p: rx timeout, send abort\n", - __func__, session); - j1939_session_list_lock(session->priv); if (session->state >= J1939_SESSION_ACTIVE && session->state < J1939_SESSION_ACTIVE_MAX) { + netdev_alert(priv->ndev, "%s: 0x%p: rx timeout, send abort\n", + __func__, session); j1939_session_get(session); hrtimer_start(&session->rxtimer, ms_to_ktime(J1939_XTP_ABORT_TIMEOUT_MS), @@ -1568,6 +1604,8 @@ abort = J1939_XTP_ABORT_FAULT; else if (len > priv->tp_max_packet_size) abort = J1939_XTP_ABORT_RESOURCE; + else if (len < J1939_MIN_TP_PACKET_SIZE) + abort = J1939_XTP_ABORT_FAULT; } if (abort != J1939_XTP_NO_ABORT) { @@ -1742,9 +1780,10 @@ static void j1939_xtp_rx_dat_one(struct j1939_session *session, struct sk_buff *skb) { + enum j1939_xtp_abort abort = J1939_XTP_ABORT_FAULT; struct j1939_priv *priv = session->priv; struct j1939_sk_buff_cb *skcb; - struct sk_buff *se_skb; + struct sk_buff *se_skb = NULL; const u8 *dat; u8 *tpdat; int offset; @@ -1756,9 +1795,11 @@ skcb = j1939_skb_to_cb(skb); dat = skb->data; - if (skb->len <= 1) + if (skb->len != 8) { /* makes no sense */ + abort = J1939_XTP_ABORT_UNEXPECTED_DATA; goto out_session_cancel; + } switch (session->last_cmd) { case 0xff: @@ -1786,7 +1827,7 @@ goto out_session_cancel; } - se_skb = j1939_session_skb_find_by_offset(session, packet * 7); + se_skb = j1939_session_skb_get_by_offset(session, packet * 7); if (!se_skb) { netdev_warn(priv->ndev, "%s: 0x%p: no skb found\n", __func__, session); @@ -1845,16 +1886,18 @@ if (!session->transmission) j1939_tp_schedule_txtimer(session, 0); } else { - j1939_tp_set_rxtimeout(session, 250); + j1939_tp_set_rxtimeout(session, 750); } session->last_cmd = 0xff; + consume_skb(se_skb); j1939_session_put(session); return; out_session_cancel: + kfree_skb(se_skb); j1939_session_timers_cancel(session); - j1939_session_cancel(session, J1939_XTP_ABORT_FAULT); + j1939_session_cancel(session, abort); j1939_session_put(session); } @@ -1969,6 +2012,12 @@ extd = J1939_ETP; /* fall through */ case J1939_TP_CMD_BAM: /* fall through */ + if (cmd == J1939_TP_CMD_BAM && !j1939_cb_is_broadcast(skcb)) { + netdev_err_once(priv->ndev, "%s: BAM to unicast (%02x), ignoring!\n", + __func__, skcb->addr.sa); + return; + } + fallthrough; case J1939_TP_CMD_RTS: /* fall through */ if (skcb->addr.type != extd) return; @@ -2030,6 +2079,12 @@ break; case J1939_ETP_CMD_ABORT: /* && J1939_TP_CMD_ABORT */ + if (j1939_cb_is_broadcast(skcb)) { + netdev_err_once(priv->ndev, "%s: abort to broadcast (%02x), ignoring!\n", + __func__, skcb->addr.sa); + return; + } + if (j1939_tp_im_transmitter(skcb)) j1939_xtp_rx_abort(priv, skb, true); diff -u linux-azure-5.4.0/net/can/raw.c linux-azure-5.4.0/net/can/raw.c --- linux-azure-5.4.0/net/can/raw.c +++ linux-azure-5.4.0/net/can/raw.c @@ -85,7 +85,7 @@ struct sock sk; int bound; int ifindex; - struct notifier_block notifier; + struct list_head notifier; int loopback; int recv_own_msgs; int fd_frames; @@ -97,6 +97,10 @@ struct uniqframe __percpu *uniq; }; +static LIST_HEAD(raw_notifier_list); +static DEFINE_SPINLOCK(raw_notifier_lock); +static struct raw_sock *raw_busy_notifier; + /* Return pointer to store the extra msg flags for raw_recvmsg(). * We use the space of one unsigned int beyond the 'struct sockaddr_can' * in skb->cb. @@ -265,21 +269,16 @@ return err; } -static int raw_notifier(struct notifier_block *nb, - unsigned long msg, void *ptr) +static void raw_notify(struct raw_sock *ro, unsigned long msg, + struct net_device *dev) { - struct net_device *dev = netdev_notifier_info_to_dev(ptr); - struct raw_sock *ro = container_of(nb, struct raw_sock, notifier); struct sock *sk = &ro->sk; if (!net_eq(dev_net(dev), sock_net(sk))) - return NOTIFY_DONE; - - if (dev->type != ARPHRD_CAN) - return NOTIFY_DONE; + return; if (ro->ifindex != dev->ifindex) - return NOTIFY_DONE; + return; switch (msg) { case NETDEV_UNREGISTER: @@ -307,7 +306,28 @@ sk->sk_error_report(sk); break; } +} + +static int raw_notifier(struct notifier_block *nb, unsigned long msg, + void *ptr) +{ + struct net_device *dev = netdev_notifier_info_to_dev(ptr); + if (dev->type != ARPHRD_CAN) + return NOTIFY_DONE; + if (msg != NETDEV_UNREGISTER && msg != NETDEV_DOWN) + return NOTIFY_DONE; + if (unlikely(raw_busy_notifier)) /* Check for reentrant bug. */ + return NOTIFY_DONE; + + spin_lock(&raw_notifier_lock); + list_for_each_entry(raw_busy_notifier, &raw_notifier_list, notifier) { + spin_unlock(&raw_notifier_lock); + raw_notify(raw_busy_notifier, msg, dev); + spin_lock(&raw_notifier_lock); + } + raw_busy_notifier = NULL; + spin_unlock(&raw_notifier_lock); return NOTIFY_DONE; } @@ -336,9 +356,9 @@ return -ENOMEM; /* set notifier */ - ro->notifier.notifier_call = raw_notifier; - - register_netdevice_notifier(&ro->notifier); + spin_lock(&raw_notifier_lock); + list_add_tail(&ro->notifier, &raw_notifier_list); + spin_unlock(&raw_notifier_lock); return 0; } @@ -353,7 +373,14 @@ ro = raw_sk(sk); - unregister_netdevice_notifier(&ro->notifier); + spin_lock(&raw_notifier_lock); + while (raw_busy_notifier == ro) { + spin_unlock(&raw_notifier_lock); + schedule_timeout_uninterruptible(1); + spin_lock(&raw_notifier_lock); + } + list_del(&ro->notifier); + spin_unlock(&raw_notifier_lock); lock_sock(sk); @@ -521,10 +548,18 @@ return -EFAULT; } + rtnl_lock(); lock_sock(sk); - if (ro->bound && ro->ifindex) + if (ro->bound && ro->ifindex) { dev = dev_get_by_index(sock_net(sk), ro->ifindex); + if (!dev) { + if (count > 1) + kfree(filter); + err = -ENODEV; + goto out_fil; + } + } if (ro->bound) { /* (try to) register the new filters */ @@ -563,6 +598,7 @@ dev_put(dev); release_sock(sk); + rtnl_unlock(); break; @@ -575,10 +611,16 @@ err_mask &= CAN_ERR_MASK; + rtnl_lock(); lock_sock(sk); - if (ro->bound && ro->ifindex) + if (ro->bound && ro->ifindex) { dev = dev_get_by_index(sock_net(sk), ro->ifindex); + if (!dev) { + err = -ENODEV; + goto out_err; + } + } /* remove current error mask */ if (ro->bound) { @@ -602,6 +644,7 @@ dev_put(dev); release_sock(sk); + rtnl_unlock(); break; @@ -879,6 +922,10 @@ .prot = &raw_proto, }; +static struct notifier_block canraw_notifier = { + .notifier_call = raw_notifier +}; + static __init int raw_module_init(void) { int err; @@ -888,6 +935,8 @@ err = can_proto_register(&raw_can_proto); if (err < 0) pr_err("can: registration of raw protocol failed\n"); + else + register_netdevice_notifier(&canraw_notifier); return err; } @@ -895,6 +944,7 @@ static __exit void raw_module_exit(void) { can_proto_unregister(&raw_can_proto); + unregister_netdevice_notifier(&canraw_notifier); } module_init(raw_module_init); diff -u linux-azure-5.4.0/net/compat.c linux-azure-5.4.0/net/compat.c --- linux-azure-5.4.0/net/compat.c +++ linux-azure-5.4.0/net/compat.c @@ -160,7 +160,7 @@ if (kcmlen > stackbuf_size) kcmsg_base = kcmsg = sock_kmalloc(sk, kcmlen, GFP_KERNEL); if (kcmsg == NULL) - return -ENOBUFS; + return -ENOMEM; /* Now copy them over neatly. */ memset(kcmsg, 0, kcmlen); diff -u linux-azure-5.4.0/net/core/dev.c linux-azure-5.4.0/net/core/dev.c --- linux-azure-5.4.0/net/core/dev.c +++ linux-azure-5.4.0/net/core/dev.c @@ -2589,6 +2589,8 @@ if (dev->num_tc) netif_setup_tc(dev, txq); + dev_qdisc_change_real_num_tx(dev, txq); + dev->real_num_tx_queues = txq; if (disabling) { @@ -2787,6 +2789,12 @@ qoffset = sb_dev->tc_to_txq[tc].offset; qcount = sb_dev->tc_to_txq[tc].count; + if (unlikely(!qcount)) { + net_warn_ratelimited("%s: invalid qcount, qoffset %u for tc %u\n", + sb_dev->name, qoffset, tc); + qoffset = 0; + qcount = dev->real_num_tx_queues; + } } if (skb_rx_queue_recorded(skb)) { @@ -3481,7 +3489,8 @@ skb_reset_mac_header(skb); __skb_pull(skb, skb_network_offset(skb)); skb->pkt_type = PACKET_LOOPBACK; - skb->ip_summed = CHECKSUM_UNNECESSARY; + if (skb->ip_summed == CHECKSUM_NONE) + skb->ip_summed = CHECKSUM_UNNECESSARY; WARN_ON(!skb_dst(skb)); skb_dst_force(skb); netif_rx_ni(skb); @@ -3703,6 +3712,7 @@ bool again = false; skb_reset_mac_header(skb); + skb_assert_len(skb); if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP)) __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED); @@ -3757,7 +3767,10 @@ if (dev->flags & IFF_UP) { int cpu = smp_processor_id(); /* ok because BHs are off */ - if (txq->xmit_lock_owner != cpu) { + /* Other cpus might concurrently change txq->xmit_lock_owner + * to -1 or to their cpu id, but not to our id. + */ + if (READ_ONCE(txq->xmit_lock_owner) != cpu) { if (dev_xmit_recursion()) goto recursion_alert; @@ -4399,7 +4412,7 @@ { int ret; - net_timestamp_check(netdev_tstamp_prequeue, skb); + net_timestamp_check(READ_ONCE(netdev_tstamp_prequeue), skb); trace_netif_rx(skb); @@ -4741,7 +4754,7 @@ int ret = NET_RX_DROP; __be16 type; - net_timestamp_check(!netdev_tstamp_prequeue, skb); + net_timestamp_check(!READ_ONCE(netdev_tstamp_prequeue), skb); trace_netif_receive_skb(skb); @@ -5123,7 +5136,7 @@ { int ret; - net_timestamp_check(netdev_tstamp_prequeue, skb); + net_timestamp_check(READ_ONCE(netdev_tstamp_prequeue), skb); if (skb_defer_rx_timestamp(skb)) return NET_RX_SUCCESS; @@ -5153,7 +5166,7 @@ INIT_LIST_HEAD(&sublist); list_for_each_entry_safe(skb, next, head, list) { - net_timestamp_check(netdev_tstamp_prequeue, skb); + net_timestamp_check(READ_ONCE(netdev_tstamp_prequeue), skb); skb_list_del_init(skb); if (!skb_defer_rx_timestamp(skb)) list_add_tail(&skb->list, &sublist); @@ -5880,7 +5893,7 @@ net_rps_action_and_irq_enable(sd); } - napi->weight = dev_rx_weight; + napi->weight = READ_ONCE(dev_rx_weight); while (again) { struct sk_buff *skb; @@ -5972,11 +5985,18 @@ * __napi_schedule_irqoff - schedule for receive * @n: entry to schedule * - * Variant of __napi_schedule() assuming hard irqs are masked + * Variant of __napi_schedule() assuming hard irqs are masked. + * + * On PREEMPT_RT enabled kernels this maps to __napi_schedule() + * because the interrupt disabled assumption might not be true + * due to force-threaded interrupts and spinlock substitution. */ void __napi_schedule_irqoff(struct napi_struct *n) { - ____napi_schedule(this_cpu_ptr(&softnet_data), n); + if (!IS_ENABLED(CONFIG_PREEMPT_RT)) + ____napi_schedule(this_cpu_ptr(&softnet_data), n); + else + __napi_schedule(n); } EXPORT_SYMBOL(__napi_schedule_irqoff); @@ -6376,8 +6396,8 @@ { struct softnet_data *sd = this_cpu_ptr(&softnet_data); unsigned long time_limit = jiffies + - usecs_to_jiffies(netdev_budget_usecs); - int budget = netdev_budget; + usecs_to_jiffies(READ_ONCE(netdev_budget_usecs)); + int budget = READ_ONCE(netdev_budget); LIST_HEAD(list); LIST_HEAD(repoll); diff -u linux-azure-5.4.0/net/core/devlink.c linux-azure-5.4.0/net/core/devlink.c --- linux-azure-5.4.0/net/core/devlink.c +++ linux-azure-5.4.0/net/core/devlink.c @@ -2958,7 +2958,7 @@ const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->get) + if (!param->get || devlink->reload_failed) return -EOPNOTSUPP; return param->get(devlink, param->id, ctx); } @@ -2967,7 +2967,7 @@ const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->set) + if (!param->set || devlink->reload_failed) return -EOPNOTSUPP; return param->set(devlink, param->id, ctx); } diff -u linux-azure-5.4.0/net/core/drop_monitor.c linux-azure-5.4.0/net/core/drop_monitor.c --- linux-azure-5.4.0/net/core/drop_monitor.c +++ linux-azure-5.4.0/net/core/drop_monitor.c @@ -277,13 +277,17 @@ rcu_read_lock(); list_for_each_entry_rcu(new_stat, &hw_stats_list, list) { + struct net_device *dev; + /* * only add a note to our monitor buffer if: * 1) this is the dev we received on * 2) its after the last_rx delta * 3) our rx_dropped count has gone up */ - if ((new_stat->dev == napi->dev) && + /* Paired with WRITE_ONCE() in dropmon_net_event() */ + dev = READ_ONCE(new_stat->dev); + if ((dev == napi->dev) && (time_after(jiffies, new_stat->last_rx + dm_hw_check_delta)) && (napi->dev->stats.rx_dropped != new_stat->last_drop_val)) { trace_drop_common(NULL, NULL); @@ -1497,7 +1501,10 @@ mutex_lock(&net_dm_mutex); list_for_each_entry_safe(new_stat, tmp, &hw_stats_list, list) { if (new_stat->dev == dev) { - new_stat->dev = NULL; + + /* Paired with READ_ONCE() in trace_napi_poll_hit() */ + WRITE_ONCE(new_stat->dev, NULL); + if (trace_state == TRACE_OFF) { list_del_rcu(&new_stat->list); kfree_rcu(new_stat, rcu); diff -u linux-azure-5.4.0/net/core/ethtool.c linux-azure-5.4.0/net/core/ethtool.c --- linux-azure-5.4.0/net/core/ethtool.c +++ linux-azure-5.4.0/net/core/ethtool.c @@ -1508,7 +1508,7 @@ if (eeprom.offset + eeprom.len > total_len) return -EINVAL; - data = kmalloc(PAGE_SIZE, GFP_USER); + data = kzalloc(PAGE_SIZE, GFP_USER); if (!data) return -ENOMEM; @@ -1573,7 +1573,7 @@ if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev)) return -EINVAL; - data = kmalloc(PAGE_SIZE, GFP_USER); + data = kzalloc(PAGE_SIZE, GFP_USER); if (!data) return -ENOMEM; @@ -1764,7 +1764,7 @@ return -EFAULT; test.len = test_len; - data = kmalloc_array(test_len, sizeof(u64), GFP_USER); + data = kcalloc(test_len, sizeof(u64), GFP_USER); if (!data) return -ENOMEM; @@ -2295,7 +2295,7 @@ ret = ethtool_tunable_valid(&tuna); if (ret) return ret; - data = kmalloc(tuna.len, GFP_USER); + data = kzalloc(tuna.len, GFP_USER); if (!data) return -ENOMEM; ret = ops->get_tunable(dev, &tuna, data); @@ -2481,7 +2481,7 @@ ret = ethtool_phy_tunable_valid(&tuna); if (ret) return ret; - data = kmalloc(tuna.len, GFP_USER); + data = kzalloc(tuna.len, GFP_USER); if (!data) return -ENOMEM; mutex_lock(&phydev->lock); diff -u linux-azure-5.4.0/net/core/fib_rules.c linux-azure-5.4.0/net/core/fib_rules.c --- linux-azure-5.4.0/net/core/fib_rules.c +++ linux-azure-5.4.0/net/core/fib_rules.c @@ -300,7 +300,7 @@ else err = ops->action(rule, fl, flags, arg); - if (!err && ops->suppress && ops->suppress(rule, arg)) + if (!err && ops->suppress && ops->suppress(rule, flags, arg)) continue; if (err != -EAGAIN) { @@ -1138,7 +1138,7 @@ { struct net *net; struct sk_buff *skb; - int err = -ENOBUFS; + int err = -ENOMEM; net = ops->fro_net; skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL); diff -u linux-azure-5.4.0/net/core/filter.c linux-azure-5.4.0/net/core/filter.c --- linux-azure-5.4.0/net/core/filter.c +++ linux-azure-5.4.0/net/core/filter.c @@ -1668,7 +1668,7 @@ if (unlikely(flags & ~(BPF_F_RECOMPUTE_CSUM | BPF_F_INVALIDATE_HASH))) return -EINVAL; - if (unlikely(offset > 0xffff)) + if (unlikely(offset > INT_MAX)) return -EFAULT; if (unlikely(bpf_try_make_writable(skb, offset + len))) return -EFAULT; @@ -1703,7 +1703,7 @@ { void *ptr; - if (unlikely(offset > 0xffff)) + if (unlikely(offset > INT_MAX)) goto err_clear; ptr = skb_header_pointer(skb, offset, len, to); @@ -2516,6 +2516,9 @@ if (unlikely(flags)) return -EINVAL; + if (unlikely(len == 0)) + return 0; + /* First find the starting scatterlist element */ i = msg->sg.start; do { @@ -2861,8 +2864,6 @@ shinfo->gso_type |= SKB_GSO_TCPV6; } - /* Due to IPv6 header, MSS needs to be downgraded. */ - skb_decrease_gso_size(shinfo, len_diff); /* Header must be checked, and gso_segs recomputed. */ shinfo->gso_type |= SKB_GSO_DODGY; shinfo->gso_segs = 0; @@ -2902,8 +2903,6 @@ shinfo->gso_type |= SKB_GSO_TCPV4; } - /* Due to IPv4 header, MSS can be upgraded. */ - skb_increase_gso_size(shinfo, len_diff); /* Header must be checked, and gso_segs recomputed. */ shinfo->gso_type |= SKB_GSO_DODGY; shinfo->gso_segs = 0; @@ -4252,12 +4251,14 @@ switch (optname) { case SO_RCVBUF: val = min_t(u32, val, sysctl_rmem_max); + val = min_t(int, val, INT_MAX / 2); sk->sk_userlocks |= SOCK_RCVBUF_LOCK; WRITE_ONCE(sk->sk_rcvbuf, max_t(int, val * 2, SOCK_MIN_RCVBUF)); break; case SO_SNDBUF: val = min_t(u32, val, sysctl_wmem_max); + val = min_t(int, val, INT_MAX / 2); sk->sk_userlocks |= SOCK_SNDBUF_LOCK; WRITE_ONCE(sk->sk_sndbuf, max_t(int, val * 2, SOCK_MIN_SNDBUF)); @@ -4954,7 +4955,6 @@ if (err) return err; - ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr)); skb_set_transport_header(skb, sizeof(struct ipv6hdr)); return seg6_lookup_nexthop(skb, NULL, 0); @@ -5312,10 +5312,21 @@ ifindex, proto, netns_id, flags); if (sk) { - sk = sk_to_full_sk(sk); - if (!sk_fullsock(sk)) { + struct sock *sk2 = sk_to_full_sk(sk); + + /* sk_to_full_sk() may return (sk)->rsk_listener, so make sure the original sk + * sock refcnt is decremented to prevent a request_sock leak. + */ + if (!sk_fullsock(sk2)) + sk2 = NULL; + if (sk2 != sk) { sock_gen_put(sk); - return NULL; + /* Ensure there is no need to bump sk2 refcnt */ + if (unlikely(sk2 && !sock_flag(sk2, SOCK_RCU_FREE))) { + WARN_ONCE(1, "Found non-RCU, unreferenced socket!"); + return NULL; + } + sk = sk2; } } @@ -5349,10 +5360,21 @@ flags); if (sk) { - sk = sk_to_full_sk(sk); - if (!sk_fullsock(sk)) { + struct sock *sk2 = sk_to_full_sk(sk); + + /* sk_to_full_sk() may return (sk)->rsk_listener, so make sure the original sk + * sock refcnt is decremented to prevent a request_sock leak. + */ + if (!sk_fullsock(sk2)) + sk2 = NULL; + if (sk2 != sk) { sock_gen_put(sk); - return NULL; + /* Ensure there is no need to bump sk2 refcnt */ + if (unlikely(sk2 && !sock_flag(sk2, SOCK_RCU_FREE))) { + WARN_ONCE(1, "Found non-RCU, unreferenced socket!"); + return NULL; + } + sk = sk2; } } @@ -5817,30 +5839,39 @@ if (sk->sk_protocol != IPPROTO_TCP || sk->sk_state != TCP_LISTEN) return -EINVAL; - if (!sock_net(sk)->ipv4.sysctl_tcp_syncookies) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_syncookies)) return -EINVAL; if (!th->ack || th->rst || th->syn) return -ENOENT; + if (unlikely(iph_len < sizeof(struct iphdr))) + return -EINVAL; + if (tcp_synq_no_recent_overflow(sk)) return -ENOENT; cookie = ntohl(th->ack_seq) - 1; - switch (sk->sk_family) { - case AF_INET: - if (unlikely(iph_len < sizeof(struct iphdr))) + /* Both struct iphdr and struct ipv6hdr have the version field at the + * same offset so we can cast to the shorter header (struct iphdr). + */ + switch (((struct iphdr *)iph)->version) { + case 4: + if (sk->sk_family == AF_INET6 && ipv6_only_sock(sk)) return -EINVAL; ret = __cookie_v4_check((struct iphdr *)iph, th, cookie); break; #if IS_BUILTIN(CONFIG_IPV6) - case AF_INET6: + case 6: if (unlikely(iph_len < sizeof(struct ipv6hdr))) return -EINVAL; + if (sk->sk_family != AF_INET6) + return -EINVAL; + ret = __cookie_v6_check((struct ipv6hdr *)iph, th, cookie); break; #endif /* CONFIG_IPV6 */ @@ -5883,7 +5914,7 @@ if (sk->sk_protocol != IPPROTO_TCP || sk->sk_state != TCP_LISTEN) return -EINVAL; - if (!sock_net(sk)->ipv4.sysctl_tcp_syncookies) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_syncookies)) return -ENOENT; if (!th->syn || th->ack || th->fin || th->rst) @@ -6709,6 +6740,7 @@ struct bpf_insn_access_aux *info) { const int size_default = sizeof(__u32); + int field_size; if (off < 0 || off >= sizeof(struct bpf_sock)) return false; @@ -6720,7 +6752,6 @@ case offsetof(struct bpf_sock, family): case offsetof(struct bpf_sock, type): case offsetof(struct bpf_sock, protocol): - case offsetof(struct bpf_sock, dst_port): case offsetof(struct bpf_sock, src_port): case bpf_ctx_range(struct bpf_sock, src_ip4): case bpf_ctx_range_till(struct bpf_sock, src_ip6[0], src_ip6[3]): @@ -6728,6 +6759,14 @@ case bpf_ctx_range_till(struct bpf_sock, dst_ip6[0], dst_ip6[3]): bpf_ctx_record_field_size(info, size_default); return bpf_ctx_narrow_access_ok(off, size, size_default); + case bpf_ctx_range(struct bpf_sock, dst_port): + field_size = size == size_default ? + size_default : sizeof_field(struct bpf_sock, dst_port); + bpf_ctx_record_field_size(info, field_size); + return bpf_ctx_narrow_access_ok(off, size, field_size); + case offsetofend(struct bpf_sock, dst_port) ... + offsetof(struct bpf_sock, dst_ip4) - 1: + return false; } return size == size_default; @@ -6916,9 +6955,9 @@ { const u32 act_max = XDP_REDIRECT; - WARN_ONCE(1, "%s XDP return value %u, expect packet loss!\n", - act > act_max ? "Illegal" : "Driver unsupported", - act); + pr_warn_once("%s XDP return value %u, expect packet loss!\n", + act > act_max ? "Illegal" : "Driver unsupported", + act); } EXPORT_SYMBOL_GPL(bpf_warn_invalid_xdp_action); @@ -8362,6 +8401,27 @@ *insn++ = BPF_LDX_MEM(BPF_SIZEOF(void *), si->dst_reg, si->src_reg, off); break; + case offsetof(struct __sk_buff, cb[0]) ... + offsetofend(struct __sk_buff, cb[4]) - 1: + BUILD_BUG_ON(sizeof_field(struct sk_skb_cb, data) < 20); + BUILD_BUG_ON((offsetof(struct sk_buff, cb) + + offsetof(struct sk_skb_cb, data)) % + sizeof(__u64)); + + prog->cb_access = 1; + off = si->off; + off -= offsetof(struct __sk_buff, cb[0]); + off += offsetof(struct sk_buff, cb); + off += offsetof(struct sk_skb_cb, data); + if (type == BPF_WRITE) + *insn++ = BPF_STX_MEM(BPF_SIZE(si->code), si->dst_reg, + si->src_reg, off); + else + *insn++ = BPF_LDX_MEM(BPF_SIZE(si->code), si->dst_reg, + si->src_reg, off); + break; + + default: return bpf_convert_ctx_access(type, si, insn_buf, prog, target_size); diff -u linux-azure-5.4.0/net/core/flow_dissector.c linux-azure-5.4.0/net/core/flow_dissector.c --- linux-azure-5.4.0/net/core/flow_dissector.c +++ linux-azure-5.4.0/net/core/flow_dissector.c @@ -1025,8 +1025,10 @@ FLOW_DISSECTOR_KEY_IPV4_ADDRS, target_container); - memcpy(&key_addrs->v4addrs, &iph->saddr, - sizeof(key_addrs->v4addrs)); + memcpy(&key_addrs->v4addrs.src, &iph->saddr, + sizeof(key_addrs->v4addrs.src)); + memcpy(&key_addrs->v4addrs.dst, &iph->daddr, + sizeof(key_addrs->v4addrs.dst)); key_control->addr_type = FLOW_DISSECTOR_KEY_IPV4_ADDRS; } @@ -1070,8 +1072,10 @@ FLOW_DISSECTOR_KEY_IPV6_ADDRS, target_container); - memcpy(&key_addrs->v6addrs, &iph->saddr, - sizeof(key_addrs->v6addrs)); + memcpy(&key_addrs->v6addrs.src, &iph->saddr, + sizeof(key_addrs->v6addrs.src)); + memcpy(&key_addrs->v6addrs.dst, &iph->daddr, + sizeof(key_addrs->v6addrs.dst)); key_control->addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; } @@ -1145,6 +1149,7 @@ VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT; } key_vlan->vlan_tpid = saved_vlan_tpid; + key_vlan->vlan_eth_type = proto; } fdret = FLOW_DISSECT_RET_PROTO_AGAIN; diff -u linux-azure-5.4.0/net/core/lwt_bpf.c linux-azure-5.4.0/net/core/lwt_bpf.c --- linux-azure-5.4.0/net/core/lwt_bpf.c +++ linux-azure-5.4.0/net/core/lwt_bpf.c @@ -158,10 +158,8 @@ return dst->lwtstate->orig_output(net, sk, skb); } -static int xmit_check_hhlen(struct sk_buff *skb) +static int xmit_check_hhlen(struct sk_buff *skb, int hh_len) { - int hh_len = skb_dst(skb)->dev->hard_header_len; - if (skb_headroom(skb) < hh_len) { int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); @@ -273,6 +271,7 @@ bpf = bpf_lwt_lwtunnel(dst->lwtstate); if (bpf->xmit.prog) { + int hh_len = dst->dev->hard_header_len; __be16 proto = skb->protocol; int ret; @@ -290,7 +289,7 @@ /* If the header was expanded, headroom might be too * small for L2 header to come, expand as needed. */ - ret = xmit_check_hhlen(skb); + ret = xmit_check_hhlen(skb, hh_len); if (unlikely(ret)) return ret; diff -u linux-azure-5.4.0/net/core/neighbour.c linux-azure-5.4.0/net/core/neighbour.c --- linux-azure-5.4.0/net/core/neighbour.c +++ linux-azure-5.4.0/net/core/neighbour.c @@ -239,6 +239,7 @@ write_lock(&n->lock); if ((n->nud_state == NUD_FAILED) || + (n->nud_state == NUD_NOARP) || (tbl->is_multicast && tbl->is_multicast(n->primary_key)) || time_after(tref, n->updated)) @@ -279,11 +280,26 @@ return 0; } -static void pneigh_queue_purge(struct sk_buff_head *list) +static void pneigh_queue_purge(struct sk_buff_head *list, struct net *net) { + struct sk_buff_head tmp; + unsigned long flags; struct sk_buff *skb; - while ((skb = skb_dequeue(list)) != NULL) { + skb_queue_head_init(&tmp); + spin_lock_irqsave(&list->lock, flags); + skb = skb_peek(list); + while (skb != NULL) { + struct sk_buff *skb_next = skb_peek_next(skb, list); + if (net == NULL || net_eq(dev_net(skb->dev), net)) { + __skb_unlink(skb, list); + __skb_queue_tail(&tmp, skb); + } + skb = skb_next; + } + spin_unlock_irqrestore(&list->lock, flags); + + while ((skb = __skb_dequeue(&tmp))) { dev_put(skb->dev); kfree_skb(skb); } @@ -357,9 +373,9 @@ write_lock_bh(&tbl->lock); neigh_flush_dev(tbl, dev, skip_perm); pneigh_ifdown_and_unlock(tbl, dev); - - del_timer_sync(&tbl->proxy_timer); - pneigh_queue_purge(&tbl->proxy_queue); + pneigh_queue_purge(&tbl->proxy_queue, dev ? dev_net(dev) : NULL); + if (skb_queue_empty_lockless(&tbl->proxy_queue)) + del_timer_sync(&tbl->proxy_timer); return 0; } @@ -379,7 +395,7 @@ static struct neighbour *neigh_alloc(struct neigh_table *tbl, struct net_device *dev, - bool exempt_from_gc) + u8 flags, bool exempt_from_gc) { struct neighbour *n = NULL; unsigned long now = jiffies; @@ -412,6 +428,7 @@ n->updated = n->used = now; n->nud_state = NUD_NONE; n->output = neigh_blackhole; + n->flags = flags; seqlock_init(&n->hh.hh_lock); n->parms = neigh_parms_clone(&tbl->parms); timer_setup(&n->timer, neigh_timer_handler, 0); @@ -575,19 +592,18 @@ } EXPORT_SYMBOL(neigh_lookup_nodev); -static struct neighbour *___neigh_create(struct neigh_table *tbl, - const void *pkey, - struct net_device *dev, - bool exempt_from_gc, bool want_ref) +static struct neighbour * +___neigh_create(struct neigh_table *tbl, const void *pkey, + struct net_device *dev, u8 flags, + bool exempt_from_gc, bool want_ref) { - struct neighbour *n1, *rc, *n = neigh_alloc(tbl, dev, exempt_from_gc); - u32 hash_val; - unsigned int key_len = tbl->key_len; - int error; + u32 hash_val, key_len = tbl->key_len; + struct neighbour *n1, *rc, *n; struct neigh_hash_table *nht; + int error; + n = neigh_alloc(tbl, dev, flags, exempt_from_gc); trace_neigh_create(tbl, dev, pkey, n, exempt_from_gc); - if (!n) { rc = ERR_PTR(-ENOBUFS); goto out; @@ -674,7 +690,7 @@ struct neighbour *__neigh_create(struct neigh_table *tbl, const void *pkey, struct net_device *dev, bool want_ref) { - return ___neigh_create(tbl, pkey, dev, false, want_ref); + return ___neigh_create(tbl, pkey, dev, 0, false, want_ref); } EXPORT_SYMBOL(__neigh_create); @@ -733,11 +749,10 @@ ASSERT_RTNL(); - n = kmalloc(sizeof(*n) + key_len, GFP_KERNEL); + n = kzalloc(sizeof(*n) + key_len, GFP_KERNEL); if (!n) goto out; - n->protocol = 0; write_pnet(&n->net, net); memcpy(n->key, pkey, key_len); n->dev = dev; @@ -1220,7 +1235,7 @@ lladdr instead of overriding it if it is different. NEIGH_UPDATE_F_ADMIN means that the change is administrative. - + NEIGH_UPDATE_F_USE means that the entry is user triggered. NEIGH_UPDATE_F_OVERRIDE_ISROUTER allows to override existing NTF_ROUTER flag. NEIGH_UPDATE_F_ISROUTER indicates if the neighbour is known as @@ -1258,6 +1273,12 @@ goto out; ext_learn_change = neigh_update_ext_learned(neigh, flags, ¬ify); + if (flags & NEIGH_UPDATE_F_USE) { + new = old & ~NUD_PERMANENT; + neigh->nud_state = new; + err = 0; + goto out; + } if (!(new & NUD_VALID)) { neigh_del_timer(neigh); @@ -1735,7 +1756,7 @@ /* It is not clean... Fix it to unload IPv6 module safely */ cancel_delayed_work_sync(&tbl->gc_work); del_timer_sync(&tbl->proxy_timer); - pneigh_queue_purge(&tbl->proxy_queue); + pneigh_queue_purge(&tbl->proxy_queue, NULL); neigh_ifdown(tbl, NULL); if (atomic_read(&tbl->entries)) pr_crit("neighbour leakage\n"); @@ -1944,7 +1965,9 @@ exempt_from_gc = ndm->ndm_state & NUD_PERMANENT || ndm->ndm_flags & NTF_EXT_LEARNED; - neigh = ___neigh_create(tbl, dst, dev, exempt_from_gc, true); + neigh = ___neigh_create(tbl, dst, dev, + ndm->ndm_flags & NTF_EXT_LEARNED, + exempt_from_gc, true); if (IS_ERR(neigh)) { err = PTR_ERR(neigh); goto out; @@ -1963,22 +1986,20 @@ if (protocol) neigh->protocol = protocol; - if (ndm->ndm_flags & NTF_EXT_LEARNED) flags |= NEIGH_UPDATE_F_EXT_LEARNED; - if (ndm->ndm_flags & NTF_ROUTER) flags |= NEIGH_UPDATE_F_ISROUTER; + if (ndm->ndm_flags & NTF_USE) + flags |= NEIGH_UPDATE_F_USE; - if (ndm->ndm_flags & NTF_USE) { + err = __neigh_update(neigh, lladdr, ndm->ndm_state, flags, + NETLINK_CB(skb).portid, extack); + if (!err && ndm->ndm_flags & NTF_USE) { neigh_event_send(neigh, NULL); err = 0; - } else - err = __neigh_update(neigh, lladdr, ndm->ndm_state, flags, - NETLINK_CB(skb).portid, extack); - + } neigh_release(neigh); - out: return err; } diff -u linux-azure-5.4.0/net/core/net-sysfs.c linux-azure-5.4.0/net/core/net-sysfs.c --- linux-azure-5.4.0/net/core/net-sysfs.c +++ linux-azure-5.4.0/net/core/net-sysfs.c @@ -174,6 +174,14 @@ static ssize_t carrier_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t len) { + struct net_device *netdev = to_net_dev(dev); + + /* The check is also done in change_carrier; this helps returning early + * without hitting the trylock/restart in netdev_store. + */ + if (!netdev->netdev_ops->ndo_change_carrier) + return -EOPNOTSUPP; + return netdev_store(dev, attr, buf, len, change_carrier); } @@ -195,10 +203,16 @@ struct net_device *netdev = to_net_dev(dev); int ret = -EINVAL; + /* The check is also done in __ethtool_get_link_ksettings; this helps + * returning early without hitting the trylock/restart below. + */ + if (!netdev->ethtool_ops->get_link_ksettings) + return ret; + if (!rtnl_trylock()) return restart_syscall(); - if (netif_running(netdev)) { + if (netif_running(netdev) && netif_device_present(netdev)) { struct ethtool_link_ksettings cmd; if (!__ethtool_get_link_ksettings(netdev, &cmd)) @@ -215,6 +229,12 @@ struct net_device *netdev = to_net_dev(dev); int ret = -EINVAL; + /* The check is also done in __ethtool_get_link_ksettings; this helps + * returning early without hitting the trylock/restart below. + */ + if (!netdev->ethtool_ops->get_link_ksettings) + return ret; + if (!rtnl_trylock()) return restart_syscall(); @@ -438,6 +458,14 @@ struct device_attribute *attr, const char *buf, size_t len) { + struct net_device *netdev = to_net_dev(dev); + + /* The check is also done in change_proto_down; this helps returning + * early without hitting the trylock/restart in netdev_store. + */ + if (!netdev->netdev_ops->ndo_change_proto_down) + return -EOPNOTSUPP; + return netdev_store(dev, attr, buf, len, change_proto_down); } NETDEVICE_SHOW_RW(proto_down, fmt_dec); @@ -448,6 +476,12 @@ struct net_device *netdev = to_net_dev(dev); ssize_t ret = -EINVAL; + /* The check is also done in dev_get_phys_port_id; this helps returning + * early without hitting the trylock/restart below. + */ + if (!netdev->netdev_ops->ndo_get_phys_port_id) + return -EOPNOTSUPP; + if (!rtnl_trylock()) return restart_syscall(); @@ -470,6 +504,13 @@ struct net_device *netdev = to_net_dev(dev); ssize_t ret = -EINVAL; + /* The checks are also done in dev_get_phys_port_name; this helps + * returning early without hitting the trylock/restart below. + */ + if (!netdev->netdev_ops->ndo_get_phys_port_name && + !netdev->netdev_ops->ndo_get_devlink_port) + return -EOPNOTSUPP; + if (!rtnl_trylock()) return restart_syscall(); @@ -492,6 +533,14 @@ struct net_device *netdev = to_net_dev(dev); ssize_t ret = -EINVAL; + /* The checks are also done in dev_get_phys_port_name; this helps + * returning early without hitting the trylock/restart below. This works + * because recurse is false when calling dev_get_port_parent_id. + */ + if (!netdev->netdev_ops->ndo_get_port_parent_id && + !netdev->netdev_ops->ndo_get_devlink_port) + return -EOPNOTSUPP; + if (!rtnl_trylock()) return restart_syscall(); @@ -1138,6 +1187,12 @@ if (!capable(CAP_NET_ADMIN)) return -EPERM; + /* The check is also done later; this helps returning early without + * hitting the trylock/restart below. + */ + if (!dev->netdev_ops->ndo_set_tx_maxrate) + return -EOPNOTSUPP; + err = kstrtou32(buf, 10, &rate); if (err < 0) return err; @@ -1708,6 +1763,9 @@ net_rx_queue_update_kobjects(dev, real_rx, 0); netdev_queue_update_kobjects(dev, real_tx, 0); + + dev->real_num_rx_queues = 0; + dev->real_num_tx_queues = 0; #ifdef CONFIG_SYSFS kset_unregister(dev->queues_kset); #endif diff -u linux-azure-5.4.0/net/core/rtnetlink.c linux-azure-5.4.0/net/core/rtnetlink.c --- linux-azure-5.4.0/net/core/rtnetlink.c +++ linux-azure-5.4.0/net/core/rtnetlink.c @@ -2414,6 +2414,7 @@ return err; if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD] || tb[IFLA_TARGET_NETNSID]) { + const char *pat = ifname && ifname[0] ? ifname : NULL; struct net *net = rtnl_link_get_net_capable(skb, dev_net(dev), tb, CAP_NET_ADMIN); if (IS_ERR(net)) { @@ -2421,7 +2422,7 @@ goto errout; } - err = dev_change_net_namespace(dev, net, ifname); + err = dev_change_net_namespace(dev, net, pat); put_net(net); if (err) goto errout; @@ -3021,8 +3022,8 @@ struct nlattr *slave_attr[RTNL_SLAVE_MAX_TYPE + 1]; unsigned char name_assign_type = NET_NAME_USER; struct nlattr *linkinfo[IFLA_INFO_MAX + 1]; - const struct rtnl_link_ops *m_ops = NULL; - struct net_device *master_dev = NULL; + const struct rtnl_link_ops *m_ops; + struct net_device *master_dev; struct net *net = sock_net(skb->sk); const struct rtnl_link_ops *ops; struct nlattr *tb[IFLA_MAX + 1]; @@ -3062,6 +3063,8 @@ dev = NULL; } + master_dev = NULL; + m_ops = NULL; if (dev) { master_dev = netdev_master_upper_dev_get(dev); if (master_dev) @@ -3728,7 +3731,7 @@ /* Support fdb on master device the net/bridge default case */ if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && - (dev->priv_flags & IFF_BRIDGE_PORT)) { + netif_is_bridge_port(dev)) { struct net_device *br_dev = netdev_master_upper_dev_get(dev); const struct net_device_ops *ops = br_dev->netdev_ops; @@ -3839,7 +3842,7 @@ /* Support fdb on master device the net/bridge default case */ if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && - (dev->priv_flags & IFF_BRIDGE_PORT)) { + netif_is_bridge_port(dev)) { struct net_device *br_dev = netdev_master_upper_dev_get(dev); const struct net_device_ops *ops = br_dev->netdev_ops; @@ -4065,13 +4068,13 @@ continue; if (!br_idx) { /* user did not specify a specific bridge */ - if (dev->priv_flags & IFF_BRIDGE_PORT) { + if (netif_is_bridge_port(dev)) { br_dev = netdev_master_upper_dev_get(dev); cops = br_dev->netdev_ops; } } else { if (dev != br_dev && - !(dev->priv_flags & IFF_BRIDGE_PORT)) + !netif_is_bridge_port(dev)) continue; if (br_dev != netdev_master_upper_dev_get(dev) && @@ -4083,7 +4086,7 @@ if (idx < s_idx) goto cont; - if (dev->priv_flags & IFF_BRIDGE_PORT) { + if (netif_is_bridge_port(dev)) { if (cops && cops->ndo_fdb_dump) { err = cops->ndo_fdb_dump(skb, cb, br_dev, dev, @@ -4233,7 +4236,7 @@ if (dev) { if (!ndm_flags || (ndm_flags & NTF_MASTER)) { - if (!(dev->priv_flags & IFF_BRIDGE_PORT)) { + if (!netif_is_bridge_port(dev)) { NL_SET_ERR_MSG(extack, "Device is not a bridge port"); return -EINVAL; } @@ -4535,6 +4538,10 @@ if (err < 0) goto errout; + /* Notification info is only filled for bridge ports, not the bridge + * device itself. Therefore, a zero notification length is valid and + * should not result in an error. + */ if (!skb->len) goto errout; @@ -4945,7 +4952,7 @@ static size_t if_nlmsg_stats_size(const struct net_device *dev, u32 filter_mask) { - size_t size = 0; + size_t size = NLMSG_ALIGN(sizeof(struct if_stats_msg)); if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, 0)) size += nla_total_size_64bit(sizeof(struct rtnl_link_stats64)); diff -u linux-azure-5.4.0/net/core/skbuff.c linux-azure-5.4.0/net/core/skbuff.c --- linux-azure-5.4.0/net/core/skbuff.c +++ linux-azure-5.4.0/net/core/skbuff.c @@ -768,7 +768,7 @@ ntohs(skb->protocol), skb->pkt_type, skb->skb_iif); if (dev) - printk("%sdev name=%s feat=0x%pNF\n", + printk("%sdev name=%s feat=%pNF\n", level, dev->name, &dev->features); if (sk) printk("%ssk family=%hu type=%u proto=%u\n", @@ -2139,7 +2139,7 @@ /* Free pulled out fragments. */ while ((list = skb_shinfo(skb)->frag_list) != insp) { skb_shinfo(skb)->frag_list = list->next; - kfree_skb(list); + consume_skb(list); } /* And insert new clone at head. */ if (clone) { @@ -2921,8 +2921,11 @@ if (!from->head_frag || skb_headlen(from) < L1_CACHE_BYTES || - skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) + skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) { hlen = skb_headlen(from); + if (!hlen) + hlen = from->len; + } if (skb_has_frag_list(from)) hlen = from->len; @@ -4561,7 +4564,7 @@ { bool ret; - if (likely(sysctl_tstamp_allow_data || tsonly)) + if (likely(READ_ONCE(sysctl_tstamp_allow_data) || tsonly)) return true; read_lock_bh(&sk->sk_callback_lock); @@ -5843,7 +5846,7 @@ /* Free pulled out fragments. */ while ((list = shinfo->frag_list) != insp) { shinfo->frag_list = list->next; - kfree_skb(list); + consume_skb(list); } /* And insert new clone at head. */ if (clone) { diff -u linux-azure-5.4.0/net/core/skmsg.c linux-azure-5.4.0/net/core/skmsg.c --- linux-azure-5.4.0/net/core/skmsg.c +++ linux-azure-5.4.0/net/core/skmsg.c @@ -27,6 +27,7 @@ int elem_first_coalesce) { struct page_frag *pfrag = sk_page_frag(sk); + u32 osize = msg->sg.size; int ret = 0; len -= msg->sg.size; @@ -35,13 +36,17 @@ u32 orig_offset; int use, i; - if (!sk_page_frag_refill(sk, pfrag)) - return -ENOMEM; + if (!sk_page_frag_refill(sk, pfrag)) { + ret = -ENOMEM; + goto msg_trim; + } orig_offset = pfrag->offset; use = min_t(int, len, pfrag->size - orig_offset); - if (!sk_wmem_schedule(sk, use)) - return -ENOMEM; + if (!sk_wmem_schedule(sk, use)) { + ret = -ENOMEM; + goto msg_trim; + } i = msg->sg.end; sk_msg_iter_var_prev(i); @@ -71,6 +76,10 @@ } return ret; + +msg_trim: + sk_msg_trim(sk, msg, osize); + return ret; } EXPORT_SYMBOL_GPL(sk_msg_alloc); diff -u linux-azure-5.4.0/net/core/sock.c linux-azure-5.4.0/net/core/sock.c --- linux-azure-5.4.0/net/core/sock.c +++ linux-azure-5.4.0/net/core/sock.c @@ -1098,7 +1098,7 @@ if (val < 0) ret = -EINVAL; else - sk->sk_ll_usec = val; + WRITE_ONCE(sk->sk_ll_usec, val); } break; #endif @@ -1181,6 +1181,16 @@ } EXPORT_SYMBOL(sock_setsockopt); +static const struct cred *sk_get_peer_cred(struct sock *sk) +{ + const struct cred *cred; + + spin_lock(&sk->sk_peer_lock); + cred = get_cred(sk->sk_peer_cred); + spin_unlock(&sk->sk_peer_lock); + + return cred; +} static void cred_to_ucred(struct pid *pid, const struct cred *cred, struct ucred *ucred) @@ -1355,7 +1365,11 @@ struct ucred peercred; if (len > sizeof(peercred)) len = sizeof(peercred); + + spin_lock(&sk->sk_peer_lock); cred_to_ucred(sk->sk_peer_pid, sk->sk_peer_cred, &peercred); + spin_unlock(&sk->sk_peer_lock); + if (copy_to_user(optval, &peercred, len)) return -EFAULT; goto lenout; @@ -1363,20 +1377,23 @@ case SO_PEERGROUPS: { + const struct cred *cred; int ret, n; - if (!sk->sk_peer_cred) + cred = sk_get_peer_cred(sk); + if (!cred) return -ENODATA; - n = sk->sk_peer_cred->group_info->ngroups; + n = cred->group_info->ngroups; if (len < n * sizeof(gid_t)) { len = n * sizeof(gid_t); + put_cred(cred); return put_user(len, optlen) ? -EFAULT : -ERANGE; } len = n * sizeof(gid_t); - ret = groups_to_user((gid_t __user *)optval, - sk->sk_peer_cred->group_info); + ret = groups_to_user((gid_t __user *)optval, cred->group_info); + put_cred(cred); if (ret) return ret; goto lenout; @@ -1714,9 +1731,10 @@ sk->sk_frag.page = NULL; } - if (sk->sk_peer_cred) - put_cred(sk->sk_peer_cred); + /* We do not need to acquire sk->sk_peer_lock, we are the last user. */ + put_cred(sk->sk_peer_cred); put_pid(sk->sk_peer_pid); + if (likely(sk->sk_net_refcnt)) put_net(sock_net(sk)); sk_prot_free(sk->sk_prot_creator, sk); @@ -2915,6 +2933,8 @@ sk->sk_peer_pid = NULL; sk->sk_peer_cred = NULL; + spin_lock_init(&sk->sk_peer_lock); + sk->sk_write_pending = 0; sk->sk_rcvlowat = 1; sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT; @@ -2928,7 +2948,7 @@ #ifdef CONFIG_NET_RX_BUSY_POLL sk->sk_napi_id = 0; - sk->sk_ll_usec = sysctl_net_busy_read; + sk->sk_ll_usec = READ_ONCE(sysctl_net_busy_read); #endif sk->sk_max_pacing_rate = ~0UL; @@ -3122,7 +3142,8 @@ { struct sock *sk = sock->sk; - return sk->sk_prot->getsockopt(sk, level, optname, optval, optlen); + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + return READ_ONCE(sk->sk_prot)->getsockopt(sk, level, optname, optval, optlen); } EXPORT_SYMBOL(sock_common_getsockopt); @@ -3163,7 +3184,8 @@ { struct sock *sk = sock->sk; - return sk->sk_prot->setsockopt(sk, level, optname, optval, optlen); + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + return READ_ONCE(sk->sk_prot)->setsockopt(sk, level, optname, optval, optlen); } EXPORT_SYMBOL(sock_common_setsockopt); diff -u linux-azure-5.4.0/net/core/sock_map.c linux-azure-5.4.0/net/core/sock_map.c --- linux-azure-5.4.0/net/core/sock_map.c +++ linux-azure-5.4.0/net/core/sock_map.c @@ -48,7 +48,7 @@ if (err) goto free_stab; - stab->sks = bpf_map_area_alloc(stab->map.max_entries * + stab->sks = bpf_map_area_alloc((u64) stab->map.max_entries * sizeof(struct sock *), stab->map.numa_node); if (stab->sks) diff -u linux-azure-5.4.0/net/core/sysctl_net_core.c linux-azure-5.4.0/net/core/sysctl_net_core.c --- linux-azure-5.4.0/net/core/sysctl_net_core.c +++ linux-azure-5.4.0/net/core/sysctl_net_core.c @@ -238,14 +238,17 @@ static int proc_do_dev_weight(struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos) { - int ret; + static DEFINE_MUTEX(dev_weight_mutex); + int ret, weight; + mutex_lock(&dev_weight_mutex); ret = proc_dointvec(table, write, buffer, lenp, ppos); - if (ret != 0) - return ret; - - dev_rx_weight = weight_p * dev_weight_rx_bias; - dev_tx_weight = weight_p * dev_weight_tx_bias; + if (!ret && write) { + weight = READ_ONCE(weight_p); + WRITE_ONCE(dev_rx_weight, weight * dev_weight_rx_bias); + WRITE_ONCE(dev_tx_weight, weight * dev_weight_tx_bias); + } + mutex_unlock(&dev_weight_mutex); return ret; } @@ -424,7 +427,7 @@ .mode = 0600, .proc_handler = proc_dolongvec_minmax_bpf_restricted, .extra1 = &long_one, - .extra2 = &long_max, + .extra2 = &bpf_jit_limit_max, }, #endif { diff -u linux-azure-5.4.0/net/dcb/dcbnl.c linux-azure-5.4.0/net/dcb/dcbnl.c --- linux-azure-5.4.0/net/dcb/dcbnl.c +++ linux-azure-5.4.0/net/dcb/dcbnl.c @@ -2063,10 +2063,54 @@ } EXPORT_SYMBOL(dcb_ieee_getapp_default_prio_mask); +static void dcbnl_flush_dev(struct net_device *dev) +{ + struct dcb_app_type *itr, *tmp; + + spin_lock_bh(&dcb_lock); + + list_for_each_entry_safe(itr, tmp, &dcb_app_list, list) { + if (itr->ifindex == dev->ifindex) { + list_del(&itr->list); + kfree(itr); + } + } + + spin_unlock_bh(&dcb_lock); +} + +static int dcbnl_netdevice_event(struct notifier_block *nb, + unsigned long event, void *ptr) +{ + struct net_device *dev = netdev_notifier_info_to_dev(ptr); + + switch (event) { + case NETDEV_UNREGISTER: + if (!dev->dcbnl_ops) + return NOTIFY_DONE; + + dcbnl_flush_dev(dev); + + return NOTIFY_OK; + default: + return NOTIFY_DONE; + } +} + +static struct notifier_block dcbnl_nb __read_mostly = { + .notifier_call = dcbnl_netdevice_event, +}; + static int __init dcbnl_init(void) { + int err; + INIT_LIST_HEAD(&dcb_app_list); + err = register_netdevice_notifier(&dcbnl_nb); + if (err) + return err; + rtnl_register(PF_UNSPEC, RTM_GETDCB, dcb_doit, NULL, 0); rtnl_register(PF_UNSPEC, RTM_SETDCB, dcb_doit, NULL, 0); diff -u linux-azure-5.4.0/net/dccp/ipv6.c linux-azure-5.4.0/net/dccp/ipv6.c --- linux-azure-5.4.0/net/dccp/ipv6.c +++ linux-azure-5.4.0/net/dccp/ipv6.c @@ -538,7 +538,7 @@ dccp_done(newsk); goto out; } - *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash)); + *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash), NULL); /* Clone pktoptions received with SYN, if we own the req */ if (*own_req && ireq->pktopts) { newnp->pktoptions = skb_clone(ireq->pktopts, GFP_ATOMIC); diff -u linux-azure-5.4.0/net/dccp/proto.c linux-azure-5.4.0/net/dccp/proto.c --- linux-azure-5.4.0/net/dccp/proto.c +++ linux-azure-5.4.0/net/dccp/proto.c @@ -765,11 +765,6 @@ lock_sock(sk); - if (dccp_qpolicy_full(sk)) { - rc = -EAGAIN; - goto out_release; - } - timeo = sock_sndtimeo(sk, noblock); /* @@ -788,6 +783,11 @@ if (skb == NULL) goto out_release; + if (dccp_qpolicy_full(sk)) { + rc = -EAGAIN; + goto out_discard; + } + if (sk->sk_state == DCCP_CLOSED) { rc = -ENOTCONN; goto out_discard; diff -u linux-azure-5.4.0/net/dsa/dsa2.c linux-azure-5.4.0/net/dsa/dsa2.c --- linux-azure-5.4.0/net/dsa/dsa2.c +++ linux-azure-5.4.0/net/dsa/dsa2.c @@ -669,6 +669,7 @@ struct net_device *master; master = of_find_net_device_by_node(ethernet); + of_node_put(ethernet); if (!master) return -EPROBE_DEFER; diff -u linux-azure-5.4.0/net/dsa/slave.c linux-azure-5.4.0/net/dsa/slave.c --- linux-azure-5.4.0/net/dsa/slave.c +++ linux-azure-5.4.0/net/dsa/slave.c @@ -1327,13 +1327,11 @@ * use the switch internal MDIO bus instead */ ret = dsa_slave_phy_connect(slave_dev, dp->index); - if (ret) { - netdev_err(slave_dev, - "failed to connect to port %d: %d\n", - dp->index, ret); - phylink_destroy(dp->pl); - return ret; - } + } + if (ret) { + netdev_err(slave_dev, "failed to connect to PHY: %pe\n", + ERR_PTR(ret)); + phylink_destroy(dp->pl); } return ret; diff -u linux-azure-5.4.0/net/ieee802154/nl-mac.c linux-azure-5.4.0/net/ieee802154/nl-mac.c --- linux-azure-5.4.0/net/ieee802154/nl-mac.c +++ linux-azure-5.4.0/net/ieee802154/nl-mac.c @@ -680,8 +680,10 @@ nla_put_u8(msg, IEEE802154_ATTR_LLSEC_SECLEVEL, params.out_level) || nla_put_u32(msg, IEEE802154_ATTR_LLSEC_FRAME_COUNTER, be32_to_cpu(params.frame_counter)) || - ieee802154_llsec_fill_key_id(msg, ¶ms.out_key)) + ieee802154_llsec_fill_key_id(msg, ¶ms.out_key)) { + rc = -ENOBUFS; goto out_free; + } dev_put(dev); diff -u linux-azure-5.4.0/net/ieee802154/nl802154.c linux-azure-5.4.0/net/ieee802154/nl802154.c --- linux-azure-5.4.0/net/ieee802154/nl802154.c +++ linux-azure-5.4.0/net/ieee802154/nl802154.c @@ -1314,19 +1314,20 @@ if (!nla || nla_parse_nested_deprecated(attrs, NL802154_DEV_ADDR_ATTR_MAX, nla, nl802154_dev_addr_policy, NULL)) return -EINVAL; - if (!attrs[NL802154_DEV_ADDR_ATTR_PAN_ID] || - !attrs[NL802154_DEV_ADDR_ATTR_MODE] || - !(attrs[NL802154_DEV_ADDR_ATTR_SHORT] || - attrs[NL802154_DEV_ADDR_ATTR_EXTENDED])) + if (!attrs[NL802154_DEV_ADDR_ATTR_PAN_ID] || !attrs[NL802154_DEV_ADDR_ATTR_MODE]) return -EINVAL; addr->pan_id = nla_get_le16(attrs[NL802154_DEV_ADDR_ATTR_PAN_ID]); addr->mode = nla_get_u32(attrs[NL802154_DEV_ADDR_ATTR_MODE]); switch (addr->mode) { case NL802154_DEV_ADDR_SHORT: + if (!attrs[NL802154_DEV_ADDR_ATTR_SHORT]) + return -EINVAL; addr->short_addr = nla_get_le16(attrs[NL802154_DEV_ADDR_ATTR_SHORT]); break; case NL802154_DEV_ADDR_EXTENDED: + if (!attrs[NL802154_DEV_ADDR_ATTR_EXTENDED]) + return -EINVAL; addr->extended_addr = nla_get_le64(attrs[NL802154_DEV_ADDR_ATTR_EXTENDED]); break; default: @@ -1456,7 +1457,7 @@ hdr = nl802154hdr_put(msg, portid, seq, flags, cmd); if (!hdr) - return -1; + return -ENOBUFS; if (nla_put_u32(msg, NL802154_ATTR_IFINDEX, dev->ifindex)) goto nla_put_failure; @@ -1649,7 +1650,7 @@ hdr = nl802154hdr_put(msg, portid, seq, flags, cmd); if (!hdr) - return -1; + return -ENOBUFS; if (nla_put_u32(msg, NL802154_ATTR_IFINDEX, dev->ifindex)) goto nla_put_failure; @@ -1827,7 +1828,7 @@ hdr = nl802154hdr_put(msg, portid, seq, flags, cmd); if (!hdr) - return -1; + return -ENOBUFS; if (nla_put_u32(msg, NL802154_ATTR_IFINDEX, dev->ifindex)) goto nla_put_failure; @@ -2003,7 +2004,7 @@ hdr = nl802154hdr_put(msg, portid, seq, flags, cmd); if (!hdr) - return -1; + return -ENOBUFS; if (nla_put_u32(msg, NL802154_ATTR_IFINDEX, dev->ifindex)) goto nla_put_failure; diff -u linux-azure-5.4.0/net/ipv4/arp.c linux-azure-5.4.0/net/ipv4/arp.c --- linux-azure-5.4.0/net/ipv4/arp.c +++ linux-azure-5.4.0/net/ipv4/arp.c @@ -1116,13 +1116,18 @@ return err; } -static int arp_invalidate(struct net_device *dev, __be32 ip) +int arp_invalidate(struct net_device *dev, __be32 ip, bool force) { struct neighbour *neigh = neigh_lookup(&arp_tbl, &ip, dev); int err = -ENXIO; struct neigh_table *tbl = &arp_tbl; if (neigh) { + if ((neigh->nud_state & NUD_VALID) && !force) { + neigh_release(neigh); + return 0; + } + if (neigh->nud_state & ~NUD_NOARP) err = neigh_update(neigh, NULL, NUD_FAILED, NEIGH_UPDATE_F_OVERRIDE| @@ -1169,7 +1174,7 @@ if (!dev) return -EINVAL; } - return arp_invalidate(dev, ip); + return arp_invalidate(dev, ip, true); } /* diff -u linux-azure-5.4.0/net/ipv4/cipso_ipv4.c linux-azure-5.4.0/net/ipv4/cipso_ipv4.c --- linux-azure-5.4.0/net/ipv4/cipso_ipv4.c +++ linux-azure-5.4.0/net/ipv4/cipso_ipv4.c @@ -240,7 +240,7 @@ struct cipso_v4_map_cache_entry *prev_entry = NULL; u32 hash; - if (!cipso_v4_cache_enabled) + if (!READ_ONCE(cipso_v4_cache_enabled)) return -ENOENT; hash = cipso_v4_map_cache_hash(key, key_len); @@ -297,13 +297,14 @@ int cipso_v4_cache_add(const unsigned char *cipso_ptr, const struct netlbl_lsm_secattr *secattr) { + int bkt_size = READ_ONCE(cipso_v4_cache_bucketsize); int ret_val = -EPERM; u32 bkt; struct cipso_v4_map_cache_entry *entry = NULL; struct cipso_v4_map_cache_entry *old_entry = NULL; u32 cipso_ptr_len; - if (!cipso_v4_cache_enabled || cipso_v4_cache_bucketsize <= 0) + if (!READ_ONCE(cipso_v4_cache_enabled) || bkt_size <= 0) return 0; cipso_ptr_len = cipso_ptr[1]; @@ -323,7 +324,7 @@ bkt = entry->hash & (CIPSO_V4_CACHE_BUCKETS - 1); spin_lock_bh(&cipso_v4_cache[bkt].lock); - if (cipso_v4_cache[bkt].size < cipso_v4_cache_bucketsize) { + if (cipso_v4_cache[bkt].size < bkt_size) { list_add(&entry->list, &cipso_v4_cache[bkt].list); cipso_v4_cache[bkt].size += 1; } else { @@ -472,6 +473,7 @@ kfree(doi_def->map.std->lvl.local); kfree(doi_def->map.std->cat.cipso); kfree(doi_def->map.std->cat.local); + kfree(doi_def->map.std); break; } kfree(doi_def); @@ -1199,7 +1201,8 @@ /* This will send packets using the "optimized" format when * possible as specified in section 3.4.2.6 of the * CIPSO draft. */ - if (cipso_v4_rbm_optfmt && ret_val > 0 && ret_val <= 10) + if (READ_ONCE(cipso_v4_rbm_optfmt) && ret_val > 0 && + ret_val <= 10) tag_len = 14; else tag_len = 4 + ret_val; @@ -1602,7 +1605,7 @@ * all the CIPSO validations here but it doesn't * really specify _exactly_ what we need to validate * ... so, just make it a sysctl tunable. */ - if (cipso_v4_rbm_strictvalid) { + if (READ_ONCE(cipso_v4_rbm_strictvalid)) { if (cipso_v4_map_lvl_valid(doi_def, tag[3]) < 0) { err_offset = opt_iter + 3; diff -u linux-azure-5.4.0/net/ipv4/devinet.c linux-azure-5.4.0/net/ipv4/devinet.c --- linux-azure-5.4.0/net/ipv4/devinet.c +++ linux-azure-5.4.0/net/ipv4/devinet.c @@ -1989,7 +1989,7 @@ return -EAFNOSUPPORT; if (nla_parse_nested_deprecated(tb, IFLA_INET_MAX, nla, NULL, NULL) < 0) - BUG(); + return -EINVAL; if (tb[IFLA_INET_CONF]) { nla_for_each_nested(a, tb[IFLA_INET_CONF], rem) @@ -2585,7 +2585,7 @@ free: kfree(t); out: - return -ENOBUFS; + return -ENOMEM; } static void __devinet_sysctl_unregister(struct net *net, diff -u linux-azure-5.4.0/net/ipv4/esp4.c linux-azure-5.4.0/net/ipv4/esp4.c --- linux-azure-5.4.0/net/ipv4/esp4.c +++ linux-azure-5.4.0/net/ipv4/esp4.c @@ -286,6 +286,10 @@ return err; } + if (ALIGN(tailen, L1_CACHE_BYTES) > PAGE_SIZE || + ALIGN(skb->data_len, L1_CACHE_BYTES) > PAGE_SIZE) + goto cow; + if (!skb_cloned(skb)) { if (tailen <= skb_tailroom(skb)) { nfrags = 1; diff -u linux-azure-5.4.0/net/ipv4/fib_frontend.c linux-azure-5.4.0/net/ipv4/fib_frontend.c --- linux-azure-5.4.0/net/ipv4/fib_frontend.c +++ linux-azure-5.4.0/net/ipv4/fib_frontend.c @@ -381,6 +381,8 @@ fl4.flowi4_proto = 0; fl4.fl4_sport = 0; fl4.fl4_dport = 0; + } else { + swap(fl4.fl4_sport, fl4.fl4_dport); } if (fib_lookup(net, &fl4, &res, 0)) @@ -397,7 +399,7 @@ dev_match = dev_match || (res.type == RTN_LOCAL && dev == net->loopback_dev); if (dev_match) { - ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_HOST; + ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_LINK; return ret; } if (no_addr) @@ -409,7 +411,7 @@ ret = 0; if (fib_lookup(net, &fl4, &res, FIB_LOOKUP_IGNORE_LINKSTATE) == 0) { if (res.type == RTN_UNICAST) - ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_HOST; + ret = FIB_RES_NHC(res)->nhc_scope >= RT_SCOPE_LINK; } return ret; @@ -1120,9 +1122,11 @@ return; /* Add broadcast address, if it is explicitly assigned. */ - if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF)) + if (ifa->ifa_broadcast && ifa->ifa_broadcast != htonl(0xFFFFFFFF)) { fib_magic(RTM_NEWROUTE, RTN_BROADCAST, ifa->ifa_broadcast, 32, prim, 0); + arp_invalidate(dev, ifa->ifa_broadcast, false); + } if (!ipv4_is_zeronet(prefix) && !(ifa->ifa_flags & IFA_F_SECONDARY) && (prefix != addr || ifa->ifa_prefixlen < 32)) { @@ -1138,6 +1142,7 @@ prim, 0); fib_magic(RTM_NEWROUTE, RTN_BROADCAST, prefix | ~mask, 32, prim, 0); + arp_invalidate(dev, prefix | ~mask, false); } } } @@ -1586,7 +1591,7 @@ int error; #ifdef CONFIG_IP_ROUTE_CLASSID - net->ipv4.fib_num_tclassid_users = 0; + atomic_set(&net->ipv4.fib_num_tclassid_users, 0); #endif error = ip_fib_net_init(net); if (error < 0) diff -u linux-azure-5.4.0/net/ipv4/fib_semantics.c linux-azure-5.4.0/net/ipv4/fib_semantics.c --- linux-azure-5.4.0/net/ipv4/fib_semantics.c +++ linux-azure-5.4.0/net/ipv4/fib_semantics.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include @@ -222,7 +223,7 @@ { #ifdef CONFIG_IP_ROUTE_CLASSID if (fib_nh->nh_tclassid) - net->ipv4.fib_num_tclassid_users--; + atomic_dec(&net->ipv4.fib_num_tclassid_users); #endif fib_nh_common_release(&fib_nh->nh_common); } @@ -318,11 +319,15 @@ static inline unsigned int fib_devindex_hashfn(unsigned int val) { - unsigned int mask = DEVINDEX_HASHSIZE - 1; + return hash_32(val, DEVINDEX_HASHBITS); +} + +static struct hlist_head * +fib_info_devhash_bucket(const struct net_device *dev) +{ + u32 val = net_hash_mix(dev_net(dev)) ^ dev->ifindex; - return (val ^ - (val >> DEVINDEX_HASHBITS) ^ - (val >> (DEVINDEX_HASHBITS * 2))) & mask; + return &fib_info_devhash[fib_devindex_hashfn(val)]; } static unsigned int fib_info_hashfn_1(int init_val, u8 protocol, u8 scope, @@ -432,12 +437,11 @@ { struct hlist_head *head; struct fib_nh *nh; - unsigned int hash; spin_lock(&fib_info_lock); - hash = fib_devindex_hashfn(dev->ifindex); - head = &fib_info_devhash[hash]; + head = fib_info_devhash_bucket(dev); + hlist_for_each_entry(nh, head, nh_hash) { if (nh->fib_nh_dev == dev && nh->fib_nh_gw4 == gw && @@ -624,7 +628,7 @@ #ifdef CONFIG_IP_ROUTE_CLASSID nh->nh_tclassid = cfg->fc_flow; if (nh->nh_tclassid) - net->ipv4.fib_num_tclassid_users++; + atomic_inc(&net->ipv4.fib_num_tclassid_users); #endif #ifdef CONFIG_IP_ROUTE_MULTIPATH nh->fib_nh_weight = nh_weight; @@ -654,6 +658,19 @@ return nhs; } +static int fib_gw_from_attr(__be32 *gw, struct nlattr *nla, + struct netlink_ext_ack *extack) +{ + if (nla_len(nla) < sizeof(*gw)) { + NL_SET_ERR_MSG(extack, "Invalid IPv4 address in RTA_GATEWAY"); + return -EINVAL; + } + + *gw = nla_get_in_addr(nla); + + return 0; +} + /* only called when fib_nh is integrated into fib_info */ static int fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, int remaining, struct fib_config *cfg, @@ -696,7 +713,11 @@ return -EINVAL; } if (nla) { - fib_cfg.fc_gw4 = nla_get_in_addr(nla); + ret = fib_gw_from_attr(&fib_cfg.fc_gw4, nla, + extack); + if (ret) + goto errout; + if (fib_cfg.fc_gw4) fib_cfg.fc_gw_family = AF_INET; } else if (nlav) { @@ -706,10 +727,18 @@ } nla = nla_find(attrs, attrlen, RTA_FLOW); - if (nla) + if (nla) { + if (nla_len(nla) < sizeof(u32)) { + NL_SET_ERR_MSG(extack, "Invalid RTA_FLOW"); + return -EINVAL; + } fib_cfg.fc_flow = nla_get_u32(nla); + } fib_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); + /* RTA_ENCAP_TYPE length checked in + * lwtunnel_valid_encap_type_attr + */ nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); if (nla) fib_cfg.fc_encap_type = nla_get_u16(nla); @@ -847,8 +876,13 @@ } if (cfg->fc_oif || cfg->fc_gw_family) { - struct fib_nh *nh = fib_info_nh(fi, 0); + struct fib_nh *nh; + /* cannot match on nexthop object attributes */ + if (fi->nh) + return 1; + + nh = fib_info_nh(fi, 0); if (cfg->fc_encap) { if (fib_encap_match(cfg->fc_encap_type, cfg->fc_encap, nh, cfg, extack)) @@ -894,6 +928,7 @@ attrlen = rtnh_attrlen(rtnh); if (attrlen > 0) { struct nlattr *nla, *nlav, *attrs = rtnh_attrs(rtnh); + int err; nla = nla_find(attrs, attrlen, RTA_GATEWAY); nlav = nla_find(attrs, attrlen, RTA_VIA); @@ -904,12 +939,17 @@ } if (nla) { + __be32 gw; + + err = fib_gw_from_attr(&gw, nla, extack); + if (err) + return err; + if (nh->fib_nh_gw_family != AF_INET || - nla_get_in_addr(nla) != nh->fib_nh_gw4) + gw != nh->fib_nh_gw4) return 1; } else if (nlav) { struct fib_config cfg2; - int err; err = fib_gw_from_via(&cfg2, nlav, extack); if (err) @@ -932,8 +972,14 @@ #ifdef CONFIG_IP_ROUTE_CLASSID nla = nla_find(attrs, attrlen, RTA_FLOW); - if (nla && nla_get_u32(nla) != nh->nh_tclassid) - return 1; + if (nla) { + if (nla_len(nla) < sizeof(u32)) { + NL_SET_ERR_MSG(extack, "Invalid RTA_FLOW"); + return -EINVAL; + } + if (nla_get_u32(nla) != nh->nh_tclassid) + return 1; + } #endif } @@ -1171,7 +1217,7 @@ nh->fib_nh_dev = in_dev->dev; dev_hold(nh->fib_nh_dev); - nh->fib_nh_scope = RT_SCOPE_HOST; + nh->fib_nh_scope = RT_SCOPE_LINK; if (!netif_carrier_ok(nh->fib_nh_dev)) nh->fib_nh_flags |= RTNH_F_LINKDOWN; err = 0; @@ -1557,12 +1603,10 @@ } else { change_nexthops(fi) { struct hlist_head *head; - unsigned int hash; if (!nexthop_nh->fib_nh_dev) continue; - hash = fib_devindex_hashfn(nexthop_nh->fib_nh_dev->ifindex); - head = &fib_info_devhash[hash]; + head = fib_info_devhash_bucket(nexthop_nh->fib_nh_dev); hlist_add_head(&nexthop_nh->nh_hash, head); } endfor_nexthops(fi) } @@ -1654,7 +1698,7 @@ #if IS_ENABLED(CONFIG_IP_ROUTE_MULTIPATH) || IS_ENABLED(CONFIG_IPV6) int fib_add_nexthop(struct sk_buff *skb, const struct fib_nh_common *nhc, - int nh_weight, u8 rt_family) + int nh_weight, u8 rt_family, u32 nh_tclassid) { const struct net_device *dev = nhc->nhc_dev; struct rtnexthop *rtnh; @@ -1672,6 +1716,9 @@ rtnh->rtnh_flags = flags; + if (nh_tclassid && nla_put_u32(skb, RTA_FLOW, nh_tclassid)) + goto nla_put_failure; + /* length of rtnetlink header + attributes */ rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh; @@ -1699,14 +1746,13 @@ } for_nexthops(fi) { - if (fib_add_nexthop(skb, &nh->nh_common, nh->fib_nh_weight, - AF_INET) < 0) - goto nla_put_failure; + u32 nh_tclassid = 0; #ifdef CONFIG_IP_ROUTE_CLASSID - if (nh->nh_tclassid && - nla_put_u32(skb, RTA_FLOW, nh->nh_tclassid)) - goto nla_put_failure; + nh_tclassid = nh->nh_tclassid; #endif + if (fib_add_nexthop(skb, &nh->nh_common, nh->fib_nh_weight, + AF_INET, nh_tclassid) < 0) + goto nla_put_failure; } endfor_nexthops(fi); mp_end: @@ -1901,8 +1947,7 @@ void fib_sync_mtu(struct net_device *dev, u32 orig_mtu) { - unsigned int hash = fib_devindex_hashfn(dev->ifindex); - struct hlist_head *head = &fib_info_devhash[hash]; + struct hlist_head *head = fib_info_devhash_bucket(dev); struct fib_nh *nh; hlist_for_each_entry(nh, head, nh_hash) { @@ -1921,12 +1966,11 @@ */ int fib_sync_down_dev(struct net_device *dev, unsigned long event, bool force) { - int ret = 0; - int scope = RT_SCOPE_NOWHERE; + struct hlist_head *head = fib_info_devhash_bucket(dev); struct fib_info *prev_fi = NULL; - unsigned int hash = fib_devindex_hashfn(dev->ifindex); - struct hlist_head *head = &fib_info_devhash[hash]; + int scope = RT_SCOPE_NOWHERE; struct fib_nh *nh; + int ret = 0; if (force) scope = -1; @@ -2071,7 +2115,6 @@ int fib_sync_up(struct net_device *dev, unsigned char nh_flags) { struct fib_info *prev_fi; - unsigned int hash; struct hlist_head *head; struct fib_nh *nh; int ret; @@ -2087,8 +2130,7 @@ } prev_fi = NULL; - hash = fib_devindex_hashfn(dev->ifindex); - head = &fib_info_devhash[hash]; + head = fib_info_devhash_bucket(dev); ret = 0; hlist_for_each_entry(nh, head, nh_hash) { @@ -2167,7 +2209,7 @@ } change_nexthops(fi) { - if (net->ipv4.sysctl_fib_multipath_use_neigh) { + if (READ_ONCE(net->ipv4.sysctl_fib_multipath_use_neigh)) { if (!fib_good_nh(nexthop_nh)) continue; if (!first) { diff -u linux-azure-5.4.0/net/ipv4/fib_trie.c linux-azure-5.4.0/net/ipv4/fib_trie.c --- linux-azure-5.4.0/net/ipv4/fib_trie.c +++ linux-azure-5.4.0/net/ipv4/fib_trie.c @@ -500,7 +500,7 @@ tn = container_of(head, struct tnode, rcu)->kv; } - if (tnode_free_size >= sysctl_fib_sync_mem) { + if (tnode_free_size >= READ_ONCE(sysctl_fib_sync_mem)) { tnode_free_size = 0; synchronize_rcu(); } diff -u linux-azure-5.4.0/net/ipv4/icmp.c linux-azure-5.4.0/net/ipv4/icmp.c --- linux-azure-5.4.0/net/ipv4/icmp.c +++ linux-azure-5.4.0/net/ipv4/icmp.c @@ -261,11 +261,12 @@ spin_lock(&icmp_global.lock); delta = min_t(u32, now - icmp_global.stamp, HZ); if (delta >= HZ / 50) { - incr = sysctl_icmp_msgs_per_sec * delta / HZ ; + incr = READ_ONCE(sysctl_icmp_msgs_per_sec) * delta / HZ; if (incr) WRITE_ONCE(icmp_global.stamp, now); } - credit = min_t(u32, icmp_global.credit + incr, sysctl_icmp_msgs_burst); + credit = min_t(u32, icmp_global.credit + incr, + READ_ONCE(sysctl_icmp_msgs_burst)); if (credit) { /* We want to use a credit of one in average, but need to randomize * it for security reasons. @@ -289,7 +290,7 @@ return true; /* Limit if icmp type is enabled in ratemask. */ - if (!((1 << type) & net->ipv4.sysctl_icmp_ratemask)) + if (!((1 << type) & READ_ONCE(net->ipv4.sysctl_icmp_ratemask))) return true; return false; @@ -327,7 +328,8 @@ vif = l3mdev_master_ifindex(dst->dev); peer = inet_getpeer_v4(net->ipv4.peers, fl4->daddr, vif, 1); - rc = inet_peer_xrlim_allow(peer, net->ipv4.sysctl_icmp_ratelimit); + rc = inet_peer_xrlim_allow(peer, + READ_ONCE(net->ipv4.sysctl_icmp_ratelimit)); if (peer) inet_putpeer(peer); out: @@ -460,6 +462,23 @@ local_bh_enable(); } +/* + * The device used for looking up which routing table to use for sending an ICMP + * error is preferably the source whenever it is set, which should ensure the + * icmp error can be sent to the source host, else lookup using the routing + * table of the destination device, else use the main routing table (index 0). + */ +static struct net_device *icmp_get_route_lookup_dev(struct sk_buff *skb) +{ + struct net_device *route_lookup_dev = NULL; + + if (skb->dev) + route_lookup_dev = skb->dev; + else if (skb_dst(skb)) + route_lookup_dev = skb_dst(skb)->dev; + return route_lookup_dev; +} + static struct rtable *icmp_route_lookup(struct net *net, struct flowi4 *fl4, struct sk_buff *skb_in, @@ -468,6 +487,7 @@ int type, int code, struct icmp_bxm *param) { + struct net_device *route_lookup_dev; struct rtable *rt, *rt2; struct flowi4 fl4_dec; int err; @@ -482,7 +502,8 @@ fl4->flowi4_proto = IPPROTO_ICMP; fl4->fl4_icmp_type = type; fl4->fl4_icmp_code = code; - fl4->flowi4_oif = l3mdev_master_ifindex(skb_dst(skb_in)->dev); + route_lookup_dev = icmp_get_route_lookup_dev(skb_in); + fl4->flowi4_oif = l3mdev_master_ifindex(route_lookup_dev); security_skb_classify_flow(skb_in, flowi4_to_flowi(fl4)); rt = ip_route_output_key_hash(net, fl4, skb_in); @@ -506,7 +527,7 @@ if (err) goto relookup_failed; - if (inet_addr_type_dev_table(net, skb_dst(skb_in)->dev, + if (inet_addr_type_dev_table(net, route_lookup_dev, fl4_dec.saddr) == RTN_LOCAL) { rt2 = __ip_route_output_key(net, &fl4_dec); if (IS_ERR(rt2)) @@ -739,6 +760,13 @@ icmp_param.data_len = room; icmp_param.head_len = sizeof(struct icmphdr); + /* if we don't have a source address at this point, fall back to the + * dummy address instead of sending out a packet with a source address + * of 0.0.0.0 + */ + if (!fl4.saddr) + fl4.saddr = htonl(INADDR_DUMMY); + icmp_push_reply(&icmp_param, &fl4, &ipc, &rt); ende: ip_rt_put(rt); @@ -858,7 +886,7 @@ * values please see * Documentation/networking/ip-sysctl.txt */ - switch (net->ipv4.sysctl_ip_no_pmtu_disc) { + switch (READ_ONCE(net->ipv4.sysctl_ip_no_pmtu_disc)) { default: net_dbg_ratelimited("%pI4: fragmentation needed and DF set\n", &iph->daddr); diff -u linux-azure-5.4.0/net/ipv4/inet_connection_sock.c linux-azure-5.4.0/net/ipv4/inet_connection_sock.c --- linux-azure-5.4.0/net/ipv4/inet_connection_sock.c +++ linux-azure-5.4.0/net/ipv4/inet_connection_sock.c @@ -791,7 +791,7 @@ timer_setup(&req->rsk_timer, reqsk_timer_handler, TIMER_PINNED); mod_timer(&req->rsk_timer, jiffies + timeout); - inet_ehash_insert(req_to_sk(req), NULL); + inet_ehash_insert(req_to_sk(req), NULL, NULL); /* before letting lookups find us, make sure all req fields * are committed to memory and refcnt initialized. */ diff -u linux-azure-5.4.0/net/ipv4/inet_diag.c linux-azure-5.4.0/net/ipv4/inet_diag.c --- linux-azure-5.4.0/net/ipv4/inet_diag.c +++ linux-azure-5.4.0/net/ipv4/inet_diag.c @@ -200,6 +200,7 @@ r->idiag_state = sk->sk_state; r->idiag_timer = 0; r->idiag_retrans = 0; + r->idiag_expires = 0; if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns, net_admin)) goto errout; @@ -240,20 +241,17 @@ r->idiag_timer = 1; r->idiag_retrans = icsk->icsk_retransmits; r->idiag_expires = - jiffies_to_msecs(icsk->icsk_timeout - jiffies); + jiffies_delta_to_msecs(icsk->icsk_timeout - jiffies); } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) { r->idiag_timer = 4; r->idiag_retrans = icsk->icsk_probes_out; r->idiag_expires = - jiffies_to_msecs(icsk->icsk_timeout - jiffies); + jiffies_delta_to_msecs(icsk->icsk_timeout - jiffies); } else if (timer_pending(&sk->sk_timer)) { r->idiag_timer = 2; r->idiag_retrans = icsk->icsk_probes_out; r->idiag_expires = - jiffies_to_msecs(sk->sk_timer.expires - jiffies); - } else { - r->idiag_timer = 0; - r->idiag_expires = 0; + jiffies_delta_to_msecs(sk->sk_timer.expires - jiffies); } if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) { @@ -338,16 +336,13 @@ r = nlmsg_data(nlh); BUG_ON(tw->tw_state != TCP_TIME_WAIT); - tmo = tw->tw_timer.expires - jiffies; - if (tmo < 0) - tmo = 0; - inet_diag_msg_common_fill(r, sk); r->idiag_retrans = 0; r->idiag_state = tw->tw_substate; r->idiag_timer = 3; - r->idiag_expires = jiffies_to_msecs(tmo); + tmo = tw->tw_timer.expires - jiffies; + r->idiag_expires = jiffies_delta_to_msecs(tmo); r->idiag_rqueue = 0; r->idiag_wqueue = 0; r->idiag_uid = 0; @@ -381,7 +376,7 @@ offsetof(struct sock, sk_cookie)); tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies; - r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0; + r->idiag_expires = jiffies_delta_to_msecs(tmo); r->idiag_rqueue = 0; r->idiag_wqueue = 0; r->idiag_uid = 0; diff -u linux-azure-5.4.0/net/ipv4/inet_hashtables.c linux-azure-5.4.0/net/ipv4/inet_hashtables.c --- linux-azure-5.4.0/net/ipv4/inet_hashtables.c +++ linux-azure-5.4.0/net/ipv4/inet_hashtables.c @@ -20,6 +20,9 @@ #include #include #include +#if IS_ENABLED(CONFIG_IPV6) +#include +#endif #include #include #include @@ -239,8 +242,10 @@ if (!inet_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif)) return -1; + score = sk->sk_bound_dev_if ? 2 : 1; - score = sk->sk_family == PF_INET ? 2 : 1; + if (sk->sk_family == PF_INET) + score++; if (READ_ONCE(sk->sk_incoming_cpu) == raw_smp_processor_id()) score++; } @@ -459,7 +464,7 @@ return -EADDRNOTAVAIL; } -static u32 inet_sk_port_offset(const struct sock *sk) +static u64 inet_sk_port_offset(const struct sock *sk) { const struct inet_sock *inet = inet_sk(sk); @@ -468,10 +473,52 @@ inet->inet_dport); } -/* insert a socket into ehash, and eventually remove another one - * (The another one can be a SYN_RECV or TIMEWAIT +/* Searches for an exsiting socket in the ehash bucket list. + * Returns true if found, false otherwise. + */ +static bool inet_ehash_lookup_by_sk(struct sock *sk, + struct hlist_nulls_head *list) +{ + const __portpair ports = INET_COMBINED_PORTS(sk->sk_dport, sk->sk_num); + const int sdif = sk->sk_bound_dev_if; + const int dif = sk->sk_bound_dev_if; + const struct hlist_nulls_node *node; + struct net *net = sock_net(sk); + struct sock *esk; + + INET_ADDR_COOKIE(acookie, sk->sk_daddr, sk->sk_rcv_saddr); + + sk_nulls_for_each_rcu(esk, node, list) { + if (esk->sk_hash != sk->sk_hash) + continue; + if (sk->sk_family == AF_INET) { + if (unlikely(INET_MATCH(esk, net, acookie, + sk->sk_daddr, + sk->sk_rcv_saddr, + ports, dif, sdif))) { + return true; + } + } +#if IS_ENABLED(CONFIG_IPV6) + else if (sk->sk_family == AF_INET6) { + if (unlikely(INET6_MATCH(esk, net, + &sk->sk_v6_daddr, + &sk->sk_v6_rcv_saddr, + ports, dif, sdif))) { + return true; + } + } +#endif + } + return false; +} + +/* Insert a socket into ehash, and eventually remove another one + * (The another one can be a SYN_RECV or TIMEWAIT) + * If an existing socket already exists, socket sk is not inserted, + * and sets found_dup_sk parameter to true. */ -bool inet_ehash_insert(struct sock *sk, struct sock *osk) +bool inet_ehash_insert(struct sock *sk, struct sock *osk, bool *found_dup_sk) { struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo; struct hlist_nulls_head *list; @@ -490,16 +537,23 @@ if (osk) { WARN_ON_ONCE(sk->sk_hash != osk->sk_hash); ret = sk_nulls_del_node_init_rcu(osk); + } else if (found_dup_sk) { + *found_dup_sk = inet_ehash_lookup_by_sk(sk, list); + if (*found_dup_sk) + ret = false; } + if (ret) __sk_nulls_add_node_rcu(sk, list); + spin_unlock(lock); + return ret; } -bool inet_ehash_nolisten(struct sock *sk, struct sock *osk) +bool inet_ehash_nolisten(struct sock *sk, struct sock *osk, bool *found_dup_sk) { - bool ok = inet_ehash_insert(sk, osk); + bool ok = inet_ehash_insert(sk, osk, found_dup_sk); if (ok) { sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); @@ -543,7 +597,7 @@ int err = 0; if (sk->sk_state != TCP_LISTEN) { - inet_ehash_nolisten(sk, osk); + inet_ehash_nolisten(sk, osk, NULL); return 0; } WARN_ON(!sk_unhashed(sk)); @@ -617,8 +671,21 @@ } EXPORT_SYMBOL_GPL(inet_unhash); +/* RFC 6056 3.3.4. Algorithm 4: Double-Hash Port Selection Algorithm + * Note that we use 32bit integers (vs RFC 'short integers') + * because 2^16 is not a multiple of num_ephemeral and this + * property might be used by clever attacker. + * RFC claims using TABLE_LENGTH=10 buckets gives an improvement, though + * attacks were since demonstrated, thus we use 65536 instead to really + * give more isolation and privacy, at the expense of 256kB of kernel + * memory. + */ +#define INET_TABLE_PERTURB_SHIFT 16 +#define INET_TABLE_PERTURB_SIZE (1 << INET_TABLE_PERTURB_SHIFT) +static u32 *table_perturb; + int __inet_hash_connect(struct inet_timewait_death_row *death_row, - struct sock *sk, u32 port_offset, + struct sock *sk, u64 port_offset, int (*check_established)(struct inet_timewait_death_row *, struct sock *, __u16, struct inet_timewait_sock **)) { @@ -630,8 +697,8 @@ struct inet_bind_bucket *tb; u32 remaining, offset; int ret, i, low, high; - static u32 hint; int l3mdev; + u32 index; if (port) { head = &hinfo->bhash[inet_bhashfn(net, port, @@ -639,7 +706,7 @@ tb = inet_csk(sk)->icsk_bind_hash; spin_lock_bh(&head->lock); if (sk_head(&tb->owners) == sk && !sk->sk_bind_node.next) { - inet_ehash_nolisten(sk, NULL); + inet_ehash_nolisten(sk, NULL, NULL); spin_unlock_bh(&head->lock); return 0; } @@ -658,7 +725,13 @@ if (likely(remaining > 1)) remaining &= ~1U; - offset = (hint + port_offset) % remaining; + get_random_slow_once(table_perturb, + INET_TABLE_PERTURB_SIZE * sizeof(*table_perturb)); + index = port_offset & (INET_TABLE_PERTURB_SIZE - 1); + + offset = READ_ONCE(table_perturb[index]) + (port_offset >> 32); + offset %= remaining; + /* In first pass we try ports of @low parity. * inet_csk_get_port() does the opposite choice. */ @@ -712,13 +785,19 @@ return -EADDRNOTAVAIL; ok: - hint += i + 2; + /* Here we want to add a little bit of randomness to the next source + * port that will be chosen. We use a max() with a random here so that + * on low contention the randomness is maximal and on high contention + * it may be inexistent. + */ + i = max_t(int, i, (prandom_u32() & 7) * 2); + WRITE_ONCE(table_perturb[index], READ_ONCE(table_perturb[index]) + i + 2); /* Head lock still held and bh's disabled */ inet_bind_hash(sk, tb, port); if (sk_unhashed(sk)) { inet_sk(sk)->inet_sport = htons(port); - inet_ehash_nolisten(sk, (struct sock *)tw); + inet_ehash_nolisten(sk, (struct sock *)tw, NULL); } if (tw) inet_twsk_bind_unhash(tw, hinfo); @@ -735,7 +814,7 @@ int inet_hash_connect(struct inet_timewait_death_row *death_row, struct sock *sk) { - u32 port_offset = 0; + u64 port_offset = 0; if (!inet_sk(sk)->inet_num) port_offset = inet_sk_port_offset(sk); @@ -785,6 +864,12 @@ low_limit, high_limit); init_hashinfo_lhash2(h); + + /* this one is used for source ports of outgoing connections */ + table_perturb = kmalloc_array(INET_TABLE_PERTURB_SIZE, + sizeof(*table_perturb), GFP_KERNEL); + if (!table_perturb) + panic("TCP: failed to alloc table_perturb"); } int inet_hashinfo2_init_mod(struct inet_hashinfo *h) diff -u linux-azure-5.4.0/net/ipv4/inetpeer.c linux-azure-5.4.0/net/ipv4/inetpeer.c --- linux-azure-5.4.0/net/ipv4/inetpeer.c +++ linux-azure-5.4.0/net/ipv4/inetpeer.c @@ -148,16 +148,20 @@ struct inet_peer *gc_stack[], unsigned int gc_cnt) { + int peer_threshold, peer_maxttl, peer_minttl; struct inet_peer *p; __u32 delta, ttl; int i; - if (base->total >= inet_peer_threshold) + peer_threshold = READ_ONCE(inet_peer_threshold); + peer_maxttl = READ_ONCE(inet_peer_maxttl); + peer_minttl = READ_ONCE(inet_peer_minttl); + + if (base->total >= peer_threshold) ttl = 0; /* be aggressive */ else - ttl = inet_peer_maxttl - - (inet_peer_maxttl - inet_peer_minttl) / HZ * - base->total / inet_peer_threshold * HZ; + ttl = peer_maxttl - (peer_maxttl - peer_minttl) / HZ * + base->total / peer_threshold * HZ; for (i = 0; i < gc_cnt; i++) { p = gc_stack[i]; diff -u linux-azure-5.4.0/net/ipv4/ip_gre.c linux-azure-5.4.0/net/ipv4/ip_gre.c --- linux-azure-5.4.0/net/ipv4/ip_gre.c +++ linux-azure-5.4.0/net/ipv4/ip_gre.c @@ -432,14 +432,12 @@ __be16 proto) { struct ip_tunnel *tunnel = netdev_priv(dev); - - if (tunnel->parms.o_flags & TUNNEL_SEQ) - tunnel->o_seqno++; + __be16 flags = tunnel->parms.o_flags; /* Push GRE header. */ gre_build_header(skb, tunnel->tun_hlen, - tunnel->parms.o_flags, proto, tunnel->parms.o_key, - htonl(tunnel->o_seqno)); + flags, proto, tunnel->parms.o_key, + (flags & TUNNEL_SEQ) ? htonl(tunnel->o_seqno++) : 0); ip_tunnel_xmit(skb, dev, tnl_params, tnl_params->protocol); } @@ -499,7 +497,6 @@ int tunnel_hlen; int version; int nhoff; - int thoff; tun_info = skb_tunnel_info(skb); if (unlikely(!tun_info || !(tun_info->mode & IP_TUNNEL_INFO_TX) || @@ -533,10 +530,16 @@ (ntohs(ip_hdr(skb)->tot_len) > skb->len - nhoff)) truncate = true; - thoff = skb_transport_header(skb) - skb_mac_header(skb); - if (skb->protocol == htons(ETH_P_IPV6) && - (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff)) - truncate = true; + if (skb->protocol == htons(ETH_P_IPV6)) { + int thoff; + + if (skb_transport_header_was_set(skb)) + thoff = skb_transport_header(skb) - skb_mac_header(skb); + else + thoff = nhoff + sizeof(struct ipv6hdr); + if (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff) + truncate = true; + } if (version == 1) { erspan_build_header(skb, ntohl(tunnel_id_to_key32(key->tun_id)), @@ -577,8 +580,9 @@ key = &info->key; ip_tunnel_init_flow(&fl4, IPPROTO_GRE, key->u.ipv4.dst, key->u.ipv4.src, - tunnel_id_to_key32(key->tun_id), key->tos, 0, - skb->mark, skb_get_hash(skb)); + tunnel_id_to_key32(key->tun_id), + key->tos & ~INET_ECN_MASK, 0, skb->mark, + skb_get_hash(skb)); rt = ip_route_output_key(dev_net(dev), &fl4); if (IS_ERR(rt)) return PTR_ERR(rt); @@ -613,6 +617,10 @@ */ skb_pull(skb, tunnel->hlen + sizeof(struct iphdr)); skb_reset_mac_header(skb); + + if (skb->ip_summed == CHECKSUM_PARTIAL && + skb_checksum_start(skb) < skb->data) + goto free_skb; } else { if (skb_cow_head(skb, dev->needed_headroom)) goto free_skb; diff -u linux-azure-5.4.0/net/ipv4/ip_output.c linux-azure-5.4.0/net/ipv4/ip_output.c --- linux-azure-5.4.0/net/ipv4/ip_output.c +++ linux-azure-5.4.0/net/ipv4/ip_output.c @@ -161,12 +161,19 @@ iph->daddr = (opt && opt->opt.srr ? opt->opt.faddr : daddr); iph->saddr = saddr; iph->protocol = sk->sk_protocol; - if (ip_dont_fragment(sk, &rt->dst)) { + /* Do not bother generating IPID for small packets (eg SYNACK) */ + if (skb->len <= IPV4_MIN_MTU || ip_dont_fragment(sk, &rt->dst)) { iph->frag_off = htons(IP_DF); iph->id = 0; } else { iph->frag_off = 0; - __ip_select_ident(net, iph, 1); + /* TCP packets here are SYNACK with fat IPv4/TCP options. + * Avoid using the hashed IP ident generator. + */ + if (sk->sk_protocol == IPPROTO_TCP) + iph->id = (__force __be16)prandom_u32(); + else + __ip_select_ident(net, iph, 1); } if (opt && opt->opt.optlen) { @@ -446,8 +453,9 @@ { BUILD_BUG_ON(offsetof(typeof(*fl4), daddr) != offsetof(typeof(*fl4), saddr) + sizeof(fl4->saddr)); - memcpy(&iph->saddr, &fl4->saddr, - sizeof(fl4->saddr) + sizeof(fl4->daddr)); + + iph->saddr = fl4->saddr; + iph->daddr = fl4->daddr; } /* Note: skb->sk can be different from sk, in case of tunnels */ @@ -1048,7 +1056,7 @@ unsigned int datalen; unsigned int fraglen; unsigned int fraggap; - unsigned int alloclen; + unsigned int alloclen, alloc_extra; unsigned int pagedlen; struct sk_buff *skb_prev; alloc_new_skb: @@ -1068,35 +1076,39 @@ fraglen = datalen + fragheaderlen; pagedlen = 0; + alloc_extra = hh_len + 15; + alloc_extra += exthdrlen; + + /* The last fragment gets additional space at tail. + * Note, with MSG_MORE we overallocate on fragments, + * because we have no idea what fragment will be + * the last. + */ + if (datalen == length + fraggap) + alloc_extra += rt->dst.trailer_len; + if ((flags & MSG_MORE) && !(rt->dst.dev->features&NETIF_F_SG)) alloclen = mtu; - else if (!paged) + else if (!paged && + (fraglen + alloc_extra < SKB_MAX_ALLOC || + !(rt->dst.dev->features & NETIF_F_SG))) alloclen = fraglen; else { alloclen = min_t(int, fraglen, MAX_HEADER); pagedlen = fraglen - alloclen; } - alloclen += exthdrlen; - - /* The last fragment gets additional space at tail. - * Note, with MSG_MORE we overallocate on fragments, - * because we have no idea what fragment will be - * the last. - */ - if (datalen == length + fraggap) - alloclen += rt->dst.trailer_len; + alloclen += alloc_extra; if (transhdrlen) { - skb = sock_alloc_send_skb(sk, - alloclen + hh_len + 15, + skb = sock_alloc_send_skb(sk, alloclen, (flags & MSG_DONTWAIT), &err); } else { skb = NULL; if (refcount_read(&sk->sk_wmem_alloc) + wmem_alloc_delta <= 2 * sk->sk_sndbuf) - skb = alloc_skb(alloclen + hh_len + 15, + skb = alloc_skb(alloclen, sk->sk_allocation); if (unlikely(!skb)) err = -ENOBUFS; diff -u linux-azure-5.4.0/net/ipv4/ip_tunnel.c linux-azure-5.4.0/net/ipv4/ip_tunnel.c --- linux-azure-5.4.0/net/ipv4/ip_tunnel.c +++ linux-azure-5.4.0/net/ipv4/ip_tunnel.c @@ -317,7 +317,7 @@ } dev->needed_headroom = t_hlen + hlen; - mtu -= t_hlen; + mtu -= t_hlen + (dev->type == ARPHRD_ETHER ? dev->hard_header_len : 0); if (mtu < IPV4_MIN_MTU) mtu = IPV4_MIN_MTU; @@ -348,6 +348,9 @@ t_hlen = nt->hlen + sizeof(struct iphdr); dev->min_mtu = ETH_MIN_MTU; dev->max_mtu = IP_MAX_MTU - t_hlen; + if (dev->type == ARPHRD_ETHER) + dev->max_mtu -= dev->hard_header_len; + ip_tunnel_add(itn, nt); return nt; @@ -388,7 +391,7 @@ tunnel->i_seqno = ntohl(tpi->seq) + 1; } - skb_reset_network_header(skb); + skb_set_network_header(skb, (tunnel->dev->type == ARPHRD_ETHER) ? ETH_HLEN : 0); err = IP_ECN_decapsulate(iph, skb); if (unlikely(err)) { @@ -495,11 +498,14 @@ tunnel_hlen = md ? tunnel_hlen : tunnel->hlen; pkt_size = skb->len - tunnel_hlen; + pkt_size -= dev->type == ARPHRD_ETHER ? dev->hard_header_len : 0; - if (df) + if (df) { mtu = dst_mtu(&rt->dst) - (sizeof(struct iphdr) + tunnel_hlen); - else + mtu -= dev->type == ARPHRD_ETHER ? dev->hard_header_len : 0; + } else { mtu = skb_valid_dst(skb) ? dst_mtu(skb_dst(skb)) : dev->mtu; + } if (skb_valid_dst(skb)) skb_dst_update_pmtu_no_confirm(skb, mtu); @@ -966,4 +972,7 @@ int max_mtu = IP_MAX_MTU - t_hlen; + if (dev->type == ARPHRD_ETHER) + max_mtu -= dev->hard_header_len; + if (new_mtu < ETH_MIN_MTU) return -EINVAL; @@ -1142,6 +1151,9 @@ if (tb[IFLA_MTU]) { unsigned int max = IP_MAX_MTU - (nt->hlen + sizeof(struct iphdr)); + if (dev->type == ARPHRD_ETHER) + max -= dev->hard_header_len; + mtu = clamp(dev->mtu, (unsigned int)ETH_MIN_MTU, max); } diff -u linux-azure-5.4.0/net/ipv4/ipmr.c linux-azure-5.4.0/net/ipv4/ipmr.c --- linux-azure-5.4.0/net/ipv4/ipmr.c +++ linux-azure-5.4.0/net/ipv4/ipmr.c @@ -259,7 +259,9 @@ return 0; err2: + rtnl_lock(); ipmr_free_table(mrt); + rtnl_unlock(); err1: fib_rules_unregister(ops); return err; diff -u linux-azure-5.4.0/net/ipv4/nexthop.c linux-azure-5.4.0/net/ipv4/nexthop.c --- linux-azure-5.4.0/net/ipv4/nexthop.c +++ linux-azure-5.4.0/net/ipv4/nexthop.c @@ -839,15 +839,36 @@ /* if any FIB entries reference this nexthop, any dst entries * need to be regenerated */ -static void nh_rt_cache_flush(struct net *net, struct nexthop *nh) +static void nh_rt_cache_flush(struct net *net, struct nexthop *nh, + struct nexthop *replaced_nh) { struct fib6_info *f6i; + struct nh_group *nhg; + int i; if (!list_empty(&nh->fi_list)) rt_cache_flush(net); list_for_each_entry(f6i, &nh->f6i_list, nh_list) ipv6_stub->fib6_update_sernum(net, f6i); + + /* if an IPv6 group was replaced, we have to release all old + * dsts to make sure all refcounts are released + */ + if (!replaced_nh->is_group) + return; + + /* new dsts must use only the new nexthop group */ + synchronize_net(); + + nhg = rtnl_dereference(replaced_nh->nh_grp); + for (i = 0; i < nhg->num_nh; i++) { + struct nh_grp_entry *nhge = &nhg->nh_entries[i]; + struct nh_info *nhi = rtnl_dereference(nhge->nh->nh_info); + + if (nhi->family == AF_INET6) + ipv6_stub->fib6_nh_release_dsts(&nhi->fib6_nh); + } } static int replace_nexthop_grp(struct net *net, struct nexthop *old, @@ -994,7 +1015,7 @@ err = replace_nexthop_single(net, old, new, extack); if (!err) { - nh_rt_cache_flush(net, old); + nh_rt_cache_flush(net, old, new); __remove_nexthop(net, new, NULL); nexthop_put(new); @@ -1183,6 +1204,7 @@ .fc_gw4 = cfg->gw.ipv4, .fc_gw_family = cfg->gw.ipv4 ? AF_INET : 0, .fc_flags = cfg->nh_flags, + .fc_nlinfo = cfg->nlinfo, .fc_encap = cfg->nh_encap, .fc_encap_type = cfg->nh_encap_type, }; @@ -1200,7 +1222,7 @@ if (!err) { nh->nh_flags = fib_nh->fib_nh_flags; fib_info_update_nhc_saddr(net, &fib_nh->nh_common, - fib_nh->fib_nh_scope); + !fib_nh->fib_nh_scope ? 0 : fib_nh->fib_nh_scope - 1); } else { fib_nh_release(net, fib_nh); } @@ -1218,6 +1240,7 @@ .fc_ifindex = cfg->nh_ifindex, .fc_gateway = cfg->gw.ipv6, .fc_flags = cfg->nh_flags, + .fc_nlinfo = cfg->nlinfo, .fc_encap = cfg->nh_encap, .fc_encap_type = cfg->nh_encap_type, }; @@ -1229,11 +1252,15 @@ /* sets nh_dev if successful */ err = ipv6_stub->fib6_nh_init(net, fib6_nh, &fib6_cfg, GFP_KERNEL, extack); - if (err) + if (err) { + /* IPv6 is not enabled, don't call fib6_nh_release */ + if (err == -EAFNOSUPPORT) + goto out; ipv6_stub->fib6_nh_release(fib6_nh); - else + } else { nh->nh_flags = fib6_nh->fib_nh_flags; - + } +out: return err; } diff -u linux-azure-5.4.0/net/ipv4/ping.c linux-azure-5.4.0/net/ipv4/ping.c --- linux-azure-5.4.0/net/ipv4/ping.c +++ linux-azure-5.4.0/net/ipv4/ping.c @@ -172,16 +172,22 @@ struct sock *sk = NULL; struct inet_sock *isk; struct hlist_nulls_node *hnode; - int dif = skb->dev->ifindex; + int dif, sdif; if (skb->protocol == htons(ETH_P_IP)) { + dif = inet_iif(skb); + sdif = inet_sdif(skb); pr_debug("try to find: num = %d, daddr = %pI4, dif = %d\n", (int)ident, &ip_hdr(skb)->daddr, dif); #if IS_ENABLED(CONFIG_IPV6) } else if (skb->protocol == htons(ETH_P_IPV6)) { + dif = inet6_iif(skb); + sdif = inet6_sdif(skb); pr_debug("try to find: num = %d, daddr = %pI6c, dif = %d\n", (int)ident, &ipv6_hdr(skb)->daddr, dif); #endif + } else { + return NULL; } read_lock_bh(&ping_table.lock); @@ -220,7 +226,8 @@ continue; } - if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) + if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif && + sk->sk_bound_dev_if != sdif) continue; sock_hold(sk); @@ -297,6 +304,7 @@ struct net *net = sock_net(sk); if (sk->sk_family == AF_INET) { struct sockaddr_in *addr = (struct sockaddr_in *) uaddr; + u32 tb_id = RT_TABLE_LOCAL; int chk_addr_ret; if (addr_len < sizeof(*addr)) @@ -310,7 +318,8 @@ pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n", sk, &addr->sin_addr.s_addr, ntohs(addr->sin_port)); - chk_addr_ret = inet_addr_type(net, addr->sin_addr.s_addr); + tb_id = l3mdev_fib_table_by_index(net, sk->sk_bound_dev_if) ? : tb_id; + chk_addr_ret = inet_addr_type_table(net, addr->sin_addr.s_addr, tb_id); if (addr->sin_addr.s_addr == htonl(INADDR_ANY)) chk_addr_ret = RTN_LOCAL; @@ -351,6 +360,14 @@ return -ENODEV; } } + + if (!dev && sk->sk_bound_dev_if) { + dev = dev_get_by_index_rcu(net, sk->sk_bound_dev_if); + if (!dev) { + rcu_read_unlock(); + return -ENODEV; + } + } has_addr = pingv6_ops.ipv6_chk_addr(net, &addr->sin6_addr, dev, scoped); rcu_read_unlock(); @@ -963,6 +980,7 @@ struct sock *sk; struct net *net = dev_net(skb->dev); struct icmphdr *icmph = icmp_hdr(skb); + bool rc = false; /* We assume the packet has already been checked by icmp_rcv */ @@ -977,14 +995,15 @@ struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); pr_debug("rcv on socket %p\n", sk); - if (skb2) - ping_queue_rcv_skb(sk, skb2); + if (skb2 && !ping_queue_rcv_skb(sk, skb2)) + rc = true; sock_put(sk); - return true; } - pr_debug("no socket, dropping\n"); - return false; + if (!rc) + pr_debug("no socket, dropping\n"); + + return rc; } EXPORT_SYMBOL_GPL(ping_rcv); diff -u linux-azure-5.4.0/net/ipv4/route.c linux-azure-5.4.0/net/ipv4/route.c --- linux-azure-5.4.0/net/ipv4/route.c +++ linux-azure-5.4.0/net/ipv4/route.c @@ -610,28 +610,35 @@ } } -static struct fib_nh_exception *fnhe_oldest(struct fnhe_hash_bucket *hash) +static void fnhe_remove_oldest(struct fnhe_hash_bucket *hash) { - struct fib_nh_exception *fnhe, *oldest; + struct fib_nh_exception __rcu **fnhe_p, **oldest_p; + struct fib_nh_exception *fnhe, *oldest = NULL; - oldest = rcu_dereference(hash->chain); - for (fnhe = rcu_dereference(oldest->fnhe_next); fnhe; - fnhe = rcu_dereference(fnhe->fnhe_next)) { - if (time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp)) + for (fnhe_p = &hash->chain; ; fnhe_p = &fnhe->fnhe_next) { + fnhe = rcu_dereference_protected(*fnhe_p, + lockdep_is_held(&fnhe_lock)); + if (!fnhe) + break; + if (!oldest || + time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp)) { oldest = fnhe; + oldest_p = fnhe_p; + } } fnhe_flush_routes(oldest); - return oldest; + *oldest_p = oldest->fnhe_next; + kfree_rcu(oldest, rcu); } -static inline u32 fnhe_hashfun(__be32 daddr) +static u32 fnhe_hashfun(__be32 daddr) { - static u32 fnhe_hashrnd __read_mostly; - u32 hval; + static siphash_key_t fnhe_hash_key __read_mostly; + u64 hval; - net_get_random_once(&fnhe_hashrnd, sizeof(fnhe_hashrnd)); - hval = jhash_1word((__force u32) daddr, fnhe_hashrnd); - return hash_32(hval, FNHE_HASH_SHIFT); + net_get_random_once(&fnhe_hash_key, sizeof(fnhe_hash_key)); + hval = siphash_1u32((__force u32)daddr, &fnhe_hash_key); + return hash_64(hval, FNHE_HASH_SHIFT); } static void fill_route_from_fnhe(struct rtable *rt, struct fib_nh_exception *fnhe) @@ -700,16 +707,21 @@ if (rt) fill_route_from_fnhe(rt, fnhe); } else { - if (depth > FNHE_RECLAIM_DEPTH) - fnhe = fnhe_oldest(hash); - else { - fnhe = kzalloc(sizeof(*fnhe), GFP_ATOMIC); - if (!fnhe) - goto out_unlock; - - fnhe->fnhe_next = hash->chain; - rcu_assign_pointer(hash->chain, fnhe); + /* Randomize max depth to avoid some side channels attacks. */ + int max_depth = FNHE_RECLAIM_DEPTH + + prandom_u32_max(FNHE_RECLAIM_DEPTH); + + while (depth > max_depth) { + fnhe_remove_oldest(hash); + depth--; } + + fnhe = kzalloc(sizeof(*fnhe), GFP_ATOMIC); + if (!fnhe) + goto out_unlock; + + fnhe->fnhe_next = hash->chain; + fnhe->fnhe_genid = genid; fnhe->fnhe_daddr = daddr; fnhe->fnhe_gw = gw; @@ -717,6 +729,8 @@ fnhe->fnhe_mtu_locked = lock; fnhe->fnhe_expires = max(1UL, expires); + rcu_assign_pointer(hash->chain, fnhe); + /* Exception created; mark the cached routes for the nexthop * stale, so anyone caching it rechecks if this exception * applies to them. @@ -1321,7 +1335,7 @@ mtu = dst_metric_raw(dst, RTAX_MTU); if (mtu) - return mtu; + goto out; mtu = READ_ONCE(dst->dev->mtu); @@ -1330,6 +1344,7 @@ mtu = 576; } +out: mtu = min_t(unsigned int, mtu, IP_MAX_MTU); return mtu - lwtunnel_headroom(dst->lwtstate, mtu); @@ -1408,7 +1423,7 @@ struct fib_info *fi = res->fi; u32 mtu = 0; - if (dev_net(dev)->ipv4.sysctl_ip_fwd_use_pmtu || + if (READ_ONCE(dev_net(dev)->ipv4.sysctl_ip_fwd_use_pmtu) || fi->fib_metrics->metrics[RTAX_LOCK - 1] & (1 << RTAX_MTU)) mtu = fi->fib_mtu; @@ -1760,6 +1775,7 @@ #endif RT_CACHE_STAT_INC(in_slow_mc); + skb_dst_drop(skb); skb_dst_set(skb, &rth->dst); return 0; } @@ -2035,6 +2051,20 @@ return __mkroute_input(skb, res, in_dev, daddr, saddr, tos); } + +/* get device for dst_alloc with local routes */ +static struct net_device *ip_rt_get_dev(struct net *net, + const struct fib_result *res) +{ + struct fib_nh_common *nhc = res->fi ? res->nhc : NULL; + struct net_device *dev = NULL; + + if (nhc) + dev = l3mdev_master_dev_rcu(nhc->nhc_dev); + + return dev ? : net->loopback_dev; +} + /* * NOTE. We drop all the packets that has local source * addresses, because every properly looped back packet @@ -2189,7 +2219,7 @@ } } - rth = rt_dst_alloc(l3mdev_master_dev_rcu(dev) ? : net->loopback_dev, + rth = rt_dst_alloc(ip_rt_get_dev(net, res), flags | RTCF_LOCAL, res->type, IN_DEV_CONF_GET(in_dev, NOPOLICY), false, do_cache); if (!rth) @@ -2989,7 +3019,7 @@ udph = skb_put_zero(skb, sizeof(struct udphdr)); udph->source = sport; udph->dest = dport; - udph->len = sizeof(struct udphdr); + udph->len = htons(sizeof(struct udphdr)); udph->check = 0; break; } diff -u linux-azure-5.4.0/net/ipv4/syncookies.c linux-azure-5.4.0/net/ipv4/syncookies.c --- linux-azure-5.4.0/net/ipv4/syncookies.c +++ linux-azure-5.4.0/net/ipv4/syncookies.c @@ -243,12 +243,12 @@ return true; } - if (!net->ipv4.sysctl_tcp_timestamps) + if (!READ_ONCE(net->ipv4.sysctl_tcp_timestamps)) return false; tcp_opt->sack_ok = (options & TS_OPT_SACK) ? TCP_SACK_SEEN : 0; - if (tcp_opt->sack_ok && !net->ipv4.sysctl_tcp_sack) + if (tcp_opt->sack_ok && !READ_ONCE(net->ipv4.sysctl_tcp_sack)) return false; if ((options & TS_OPT_WSCALE_MASK) == TS_OPT_WSCALE_MASK) @@ -257,7 +257,7 @@ tcp_opt->wscale_ok = 1; tcp_opt->snd_wscale = options & TS_OPT_WSCALE_MASK; - return net->ipv4.sysctl_tcp_window_scaling != 0; + return READ_ONCE(net->ipv4.sysctl_tcp_window_scaling) != 0; } EXPORT_SYMBOL(cookie_timestamp_decode); @@ -297,7 +297,8 @@ struct flowi4 fl4; u32 tsoff = 0; - if (!sock_net(sk)->ipv4.sysctl_tcp_syncookies || !th->ack || th->rst) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_syncookies) || + !th->ack || th->rst) goto out; if (tcp_synq_no_recent_overflow(sk)) @@ -332,6 +333,7 @@ ireq = inet_rsk(req); treq = tcp_rsk(req); + treq->af_specific = &tcp_request_sock_ipv4_ops; treq->rcv_isn = ntohl(th->seq) - 1; treq->snt_isn = cookie; treq->ts_off = 0; diff -u linux-azure-5.4.0/net/ipv4/sysctl_net_ipv4.c linux-azure-5.4.0/net/ipv4/sysctl_net_ipv4.c --- linux-azure-5.4.0/net/ipv4/sysctl_net_ipv4.c +++ linux-azure-5.4.0/net/ipv4/sysctl_net_ipv4.c @@ -363,61 +363,6 @@ return ret; } -static void proc_configure_early_demux(int enabled, int protocol) -{ - struct net_protocol *ipprot; -#if IS_ENABLED(CONFIG_IPV6) - struct inet6_protocol *ip6prot; -#endif - - rcu_read_lock(); - - ipprot = rcu_dereference(inet_protos[protocol]); - if (ipprot) - ipprot->early_demux = enabled ? ipprot->early_demux_handler : - NULL; - -#if IS_ENABLED(CONFIG_IPV6) - ip6prot = rcu_dereference(inet6_protos[protocol]); - if (ip6prot) - ip6prot->early_demux = enabled ? ip6prot->early_demux_handler : - NULL; -#endif - rcu_read_unlock(); -} - -static int proc_tcp_early_demux(struct ctl_table *table, int write, - void __user *buffer, size_t *lenp, loff_t *ppos) -{ - int ret = 0; - - ret = proc_dointvec(table, write, buffer, lenp, ppos); - - if (write && !ret) { - int enabled = init_net.ipv4.sysctl_tcp_early_demux; - - proc_configure_early_demux(enabled, IPPROTO_TCP); - } - - return ret; -} - -static int proc_udp_early_demux(struct ctl_table *table, int write, - void __user *buffer, size_t *lenp, loff_t *ppos) -{ - int ret = 0; - - ret = proc_dointvec(table, write, buffer, lenp, ppos); - - if (write && !ret) { - int enabled = init_net.ipv4.sysctl_udp_early_demux; - - proc_configure_early_demux(enabled, IPPROTO_UDP); - } - - return ret; -} - static int proc_tfo_blackhole_detect_timeout(struct ctl_table *table, int write, void __user *buffer, @@ -701,14 +646,14 @@ .data = &init_net.ipv4.sysctl_udp_early_demux, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_udp_early_demux + .proc_handler = proc_douintvec_minmax, }, { .procname = "tcp_early_demux", .data = &init_net.ipv4.sysctl_tcp_early_demux, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_tcp_early_demux + .proc_handler = proc_douintvec_minmax, }, { .procname = "ip_default_ttl", diff -u linux-azure-5.4.0/net/ipv4/tcp.c linux-azure-5.4.0/net/ipv4/tcp.c --- linux-azure-5.4.0/net/ipv4/tcp.c +++ linux-azure-5.4.0/net/ipv4/tcp.c @@ -437,7 +437,7 @@ tp->snd_cwnd_clamp = ~0; tp->mss_cache = TCP_MSS_DEFAULT; - tp->reordering = sock_net(sk)->ipv4.sysctl_tcp_reordering; + tp->reordering = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_reordering); tcp_assign_congestion_control(sk); tp->tsoffset = 0; @@ -697,7 +697,7 @@ int size_goal) { return skb->len < size_goal && - sock_net(sk)->ipv4.sysctl_tcp_autocorking && + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_autocorking) && !tcp_rtx_queue_empty(sk) && refcount_read(&sk->sk_wmem_alloc) > skb->truesize; } @@ -955,7 +955,7 @@ */ static void tcp_remove_empty_skb(struct sock *sk, struct sk_buff *skb) { - if (skb && !skb->len) { + if (skb && TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq) { tcp_unlink_write_queue(skb, sk); if (tcp_write_queue_empty(sk)) tcp_chrono_stop(sk, TCP_CHRONO_BUSY); @@ -1148,7 +1148,8 @@ struct sockaddr *uaddr = msg->msg_name; int err, flags; - if (!(sock_net(sk)->ipv4.sysctl_tcp_fastopen & TFO_CLIENT_ENABLE) || + if (!(READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_fastopen) & + TFO_CLIENT_ENABLE) || (uaddr && msg->msg_namelen >= sizeof(uaddr->sa_family) && uaddr->sa_family == AF_UNSPEC)) return -EOPNOTSUPP; @@ -1652,11 +1653,13 @@ if (!copied) copied = used; break; - } else if (used <= len) { - seq += used; - copied += used; - offset += used; } + if (WARN_ON_ONCE(used > len)) + used = len; + seq += used; + copied += used; + offset += used; + /* If recv_actor drops the lock (e.g. TCP splice * receive) the skb pointer might be invalid when * getting here: tcp_collapse might have deleted it @@ -2632,6 +2635,8 @@ tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; tp->snd_cwnd = TCP_INIT_CWND; tp->snd_cwnd_cnt = 0; + tp->is_cwnd_limited = 0; + tp->max_packets_out = 0; tp->window_clamp = 0; tp->delivered = 0; tp->delivered_ce = 0; @@ -2649,8 +2654,7 @@ icsk->icsk_ack.rcv_mss = TCP_MIN_MSS; memset(&tp->rx_opt, 0, sizeof(tp->rx_opt)); __sk_dst_reset(sk); - dst_release(sk->sk_rx_dst); - sk->sk_rx_dst = NULL; + dst_release(xchg((__force struct dst_entry **)&sk->sk_rx_dst, NULL)); tcp_saved_syn_free(tp); tp->compressed_ack = 0; tp->segs_in = 0; @@ -3125,7 +3129,8 @@ case TCP_FASTOPEN_CONNECT: if (val > 1 || val < 0) { err = -EINVAL; - } else if (net->ipv4.sysctl_tcp_fastopen & TFO_CLIENT_ENABLE) { + } else if (READ_ONCE(net->ipv4.sysctl_tcp_fastopen) & + TFO_CLIENT_ENABLE) { if (sk->sk_state == TCP_CLOSE) tp->fastopen_connect = val; else @@ -3181,8 +3186,9 @@ const struct inet_connection_sock *icsk = inet_csk(sk); if (level != SOL_TCP) - return icsk->icsk_af_ops->setsockopt(sk, level, optname, - optval, optlen); + /* Paired with WRITE_ONCE() in do_ipv6_setsockopt() and tcp_v6_connect() */ + return READ_ONCE(icsk->icsk_af_ops)->setsockopt(sk, level, optname, + optval, optlen); return do_tcp_setsockopt(sk, level, optname, optval, optlen); } EXPORT_SYMBOL(tcp_setsockopt); @@ -3464,7 +3470,7 @@ case TCP_LINGER2: val = tp->linger2; if (val >= 0) - val = (val ? : net->ipv4.sysctl_tcp_fin_timeout) / HZ; + val = (val ? : READ_ONCE(net->ipv4.sysctl_tcp_fin_timeout)) / HZ; break; case TCP_DEFER_ACCEPT: val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept, @@ -3704,8 +3710,9 @@ struct inet_connection_sock *icsk = inet_csk(sk); if (level != SOL_TCP) - return icsk->icsk_af_ops->getsockopt(sk, level, optname, - optval, optlen); + /* Paired with WRITE_ONCE() in do_ipv6_setsockopt() and tcp_v6_connect() */ + return READ_ONCE(icsk->icsk_af_ops)->getsockopt(sk, level, optname, + optval, optlen); return do_tcp_getsockopt(sk, level, optname, optval, optlen); } EXPORT_SYMBOL(tcp_getsockopt); @@ -3764,12 +3771,16 @@ * to memory. See smp_rmb() in tcp_get_md5sig_pool() */ smp_wmb(); - tcp_md5sig_pool_populated = true; + /* Paired with READ_ONCE() from tcp_alloc_md5sig_pool() + * and tcp_get_md5sig_pool(). + */ + WRITE_ONCE(tcp_md5sig_pool_populated, true); } bool tcp_alloc_md5sig_pool(void) { - if (unlikely(!tcp_md5sig_pool_populated)) { + /* Paired with WRITE_ONCE() from __tcp_alloc_md5sig_pool() */ + if (unlikely(!READ_ONCE(tcp_md5sig_pool_populated))) { mutex_lock(&tcp_md5sig_mutex); if (!tcp_md5sig_pool_populated) { @@ -3780,7 +3791,8 @@ mutex_unlock(&tcp_md5sig_mutex); } - return tcp_md5sig_pool_populated; + /* Paired with WRITE_ONCE() from __tcp_alloc_md5sig_pool() */ + return READ_ONCE(tcp_md5sig_pool_populated); } EXPORT_SYMBOL(tcp_alloc_md5sig_pool); @@ -3796,7 +3808,8 @@ { local_bh_disable(); - if (tcp_md5sig_pool_populated) { + /* Paired with WRITE_ONCE() from __tcp_alloc_md5sig_pool() */ + if (READ_ONCE(tcp_md5sig_pool_populated)) { /* coupled with smp_wmb() in __tcp_alloc_md5sig_pool() */ smp_rmb(); return this_cpu_ptr(&tcp_md5sig_pool); diff -u linux-azure-5.4.0/net/ipv4/tcp_bbr.c linux-azure-5.4.0/net/ipv4/tcp_bbr.c --- linux-azure-5.4.0/net/ipv4/tcp_bbr.c +++ linux-azure-5.4.0/net/ipv4/tcp_bbr.c @@ -1041,7 +1041,7 @@ bbr->prior_cwnd = 0; tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; bbr->rtt_cnt = 0; - bbr->next_rtt_delivered = 0; + bbr->next_rtt_delivered = tp->delivered; bbr->prev_ca_state = TCP_CA_Open; bbr->packet_conservation = 0; diff -u linux-azure-5.4.0/net/ipv4/tcp_bpf.c linux-azure-5.4.0/net/ipv4/tcp_bpf.c --- linux-azure-5.4.0/net/ipv4/tcp_bpf.c +++ linux-azure-5.4.0/net/ipv4/tcp_bpf.c @@ -296,10 +296,9 @@ struct sk_psock *psock = sk_psock_get(sk); int ret; - if (unlikely(!psock)) { - sk_msg_free(sk, msg); - return 0; - } + if (unlikely(!psock)) + return -EPIPE; + ret = ingress ? bpf_tcp_ingress(sk, psock, msg, bytes, flags) : tcp_bpf_push_locked(sk, msg, bytes, flags, false); sk_psock_put(sk, psock); @@ -313,6 +312,7 @@ bool cork = false, enospc = sk_msg_full(msg); struct sock *sk_redir; u32 tosend, delta = 0; + u32 eval = __SK_NONE; int ret; more_data: @@ -356,13 +356,24 @@ case __SK_REDIRECT: sk_redir = psock->sk_redir; sk_msg_apply_bytes(psock, tosend); + if (!psock->apply_bytes) { + /* Clean up before releasing the sock lock. */ + eval = psock->eval; + psock->eval = __SK_NONE; + psock->sk_redir = NULL; + } if (psock->cork) { cork = true; psock->cork = NULL; } - sk_msg_return(sk, msg, tosend); + sk_msg_return(sk, msg, msg->sg.size); release_sock(sk); + ret = tcp_bpf_sendmsg_redir(sk_redir, msg, tosend, flags); + + if (eval == __SK_REDIRECT) + sock_put(sk_redir); + lock_sock(sk); if (unlikely(ret < 0)) { int free = sk_msg_free_nocharge(sk, msg); @@ -395,8 +406,11 @@ } if (msg && msg->sg.data[msg->sg.start].page_link && - msg->sg.data[msg->sg.start].length) + msg->sg.data[msg->sg.start].length) { + if (eval == __SK_REDIRECT) + sk_mem_charge(sk, msg->sg.size); goto more_data; + } } return ret; } @@ -636,7 +650,7 @@ tcp_bpf_rebuild_protos(tcp_bpf_prots[TCP_BPF_IPV4], &tcp_prot); return 0; } -core_initcall(tcp_bpf_v4_build_proto); +late_initcall(tcp_bpf_v4_build_proto); static void tcp_bpf_update_sk_prot(struct sock *sk, struct sk_psock *psock) { diff -u linux-azure-5.4.0/net/ipv4/tcp_cubic.c linux-azure-5.4.0/net/ipv4/tcp_cubic.c --- linux-azure-5.4.0/net/ipv4/tcp_cubic.c +++ linux-azure-5.4.0/net/ipv4/tcp_cubic.c @@ -341,8 +341,6 @@ return; if (tcp_in_slow_start(tp)) { - if (hystart && after(ack, ca->end_seq)) - bictcp_hystart_reset(sk); acked = tcp_slow_start(tp, acked); if (!acked) return; @@ -384,6 +382,9 @@ if (ca->found & hystart_detect) return; + if (after(tp->snd_una, ca->end_seq)) + bictcp_hystart_reset(sk); + if (hystart_detect & HYSTART_ACK_TRAIN) { u32 now = bictcp_clock(); diff -u linux-azure-5.4.0/net/ipv4/tcp_fastopen.c linux-azure-5.4.0/net/ipv4/tcp_fastopen.c --- linux-azure-5.4.0/net/ipv4/tcp_fastopen.c +++ linux-azure-5.4.0/net/ipv4/tcp_fastopen.c @@ -349,7 +349,7 @@ const struct dst_entry *dst, int flag) { - return (sock_net(sk)->ipv4.sysctl_tcp_fastopen & flag) || + return (READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_fastopen) & flag) || tcp_sk(sk)->fastopen_no_cookie || (dst && dst_metric(dst, RTAX_FASTOPEN_NO_COOKIE)); } @@ -364,7 +364,7 @@ const struct dst_entry *dst) { bool syn_data = TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq + 1; - int tcp_fastopen = sock_net(sk)->ipv4.sysctl_tcp_fastopen; + int tcp_fastopen = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_fastopen); struct tcp_fastopen_cookie valid_foc = { .len = -1 }; struct sock *child; int ret = 0; @@ -379,8 +379,7 @@ return NULL; } - if (syn_data && - tcp_fastopen_no_cookie(sk, dst, TFO_SERVER_COOKIE_NOT_REQD)) + if (tcp_fastopen_no_cookie(sk, dst, TFO_SERVER_COOKIE_NOT_REQD)) goto fastopen; if (foc->len == 0) { @@ -504,8 +503,15 @@ { struct net *net = sock_net(sk); + /* Paired with READ_ONCE() in tcp_fastopen_active_should_disable() */ + WRITE_ONCE(net->ipv4.tfo_active_disable_stamp, jiffies); + + /* Paired with smp_rmb() in tcp_fastopen_active_should_disable(). + * We want net->ipv4.tfo_active_disable_stamp to be updated first. + */ + smp_mb__before_atomic(); atomic_inc(&net->ipv4.tfo_active_disable_times); - net->ipv4.tfo_active_disable_stamp = jiffies; + NET_INC_STATS(net, LINUX_MIB_TCPFASTOPENBLACKHOLE); } @@ -523,10 +529,16 @@ if (!tfo_da_times) return false; + /* Paired with smp_mb__before_atomic() in tcp_fastopen_active_disable() */ + smp_rmb(); + /* Limit timout to max: 2^6 * initial timeout */ multiplier = 1 << min(tfo_da_times - 1, 6); - timeout = multiplier * tfo_bh_timeout * HZ; - if (time_before(jiffies, sock_net(sk)->ipv4.tfo_active_disable_stamp + timeout)) + + /* Paired with the WRITE_ONCE() in tcp_fastopen_active_disable(). */ + timeout = READ_ONCE(sock_net(sk)->ipv4.tfo_active_disable_stamp) + + multiplier * tfo_bh_timeout * HZ; + if (time_before(jiffies, timeout)) return true; /* Mark check bit so we can check for successful active TFO diff -u linux-azure-5.4.0/net/ipv4/tcp_input.c linux-azure-5.4.0/net/ipv4/tcp_input.c --- linux-azure-5.4.0/net/ipv4/tcp_input.c +++ linux-azure-5.4.0/net/ipv4/tcp_input.c @@ -439,7 +439,7 @@ */ void tcp_init_buffer_space(struct sock *sk) { - int tcp_app_win = sock_net(sk)->ipv4.sysctl_tcp_app_win; + int tcp_app_win = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_app_win); struct tcp_sock *tp = tcp_sk(sk); int maxwin; @@ -905,7 +905,7 @@ tp->undo_marker ? tp->undo_retrans : 0); #endif tp->reordering = min_t(u32, (metric + mss - 1) / mss, - sock_net(sk)->ipv4.sysctl_tcp_max_reordering); + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_max_reordering)); } /* This exciting event is worth to be remembered. 8) */ @@ -1209,7 +1209,7 @@ if (dup_sack && (sacked & TCPCB_RETRANS)) { if (tp->undo_marker && tp->undo_retrans > 0 && after(end_seq, tp->undo_marker)) - tp->undo_retrans--; + tp->undo_retrans = max_t(int, 0, tp->undo_retrans - pcount); if ((sacked & TCPCB_SACKED_ACKED) && before(start_seq, state->reord)) state->reord = start_seq; @@ -1886,7 +1886,7 @@ return; tp->reordering = min_t(u32, tp->packets_out + addend, - sock_net(sk)->ipv4.sysctl_tcp_max_reordering); + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_max_reordering)); tp->reord_seen++; NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPRENOREORDER); } @@ -1950,7 +1950,8 @@ static bool tcp_is_rack(const struct sock *sk) { - return sock_net(sk)->ipv4.sysctl_tcp_recovery & TCP_RACK_LOSS_DETECTION; + return READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_recovery) & + TCP_RACK_LOSS_DETECTION; } /* If we detect SACK reneging, forget all SACK information @@ -1994,6 +1995,7 @@ struct tcp_sock *tp = tcp_sk(sk); struct net *net = sock_net(sk); bool new_recovery = icsk->icsk_ca_state < TCP_CA_Recovery; + u8 reordering; tcp_timeout_mark_lost(sk); @@ -2014,10 +2016,12 @@ /* Timeout in disordered state after receiving substantial DUPACKs * suggests that the degree of reordering is over-estimated. */ + reordering = READ_ONCE(net->ipv4.sysctl_tcp_reordering); if (icsk->icsk_ca_state <= TCP_CA_Disorder && - tp->sacked_out >= net->ipv4.sysctl_tcp_reordering) + tp->sacked_out >= reordering) tp->reordering = min_t(unsigned int, tp->reordering, - net->ipv4.sysctl_tcp_reordering); + reordering); + tcp_set_ca_state(sk, TCP_CA_Loss); tp->high_seq = tp->snd_nxt; tcp_ecn_queue_cwr(tp); @@ -2026,7 +2030,7 @@ * loss recovery is underway except recurring timeout(s) on * the same SND.UNA (sec 3.2). Disable F-RTO on path MTU probing */ - tp->frto = net->ipv4.sysctl_tcp_frto && + tp->frto = READ_ONCE(net->ipv4.sysctl_tcp_frto) && (new_recovery || icsk->icsk_retransmits) && !inet_csk(sk)->icsk_mtup.probe_size; } @@ -2043,7 +2047,8 @@ */ static bool tcp_check_sack_reneging(struct sock *sk, int flag) { - if (flag & FLAG_SACK_RENEGING) { + if (flag & FLAG_SACK_RENEGING && + flag & FLAG_SND_UNA_ADVANCED) { struct tcp_sock *tp = tcp_sk(sk); unsigned long delay = max(usecs_to_jiffies(tp->srtt_us >> 4), msecs_to_jiffies(10)); @@ -2380,6 +2385,21 @@ return tp->undo_marker && (!tp->undo_retrans || tcp_packet_delayed(tp)); } +static bool tcp_is_non_sack_preventing_reopen(struct sock *sk) +{ + struct tcp_sock *tp = tcp_sk(sk); + + if (tp->snd_una == tp->high_seq && tcp_is_reno(tp)) { + /* Hold old state until something *above* high_seq + * is ACKed. For Reno it is MUST to prevent false + * fast retransmits (RFC2582). SACK TCP is safe. */ + if (!tcp_any_retrans_done(sk)) + tp->retrans_stamp = 0; + return true; + } + return false; +} + /* People celebrate: "We love our President!" */ static bool tcp_try_undo_recovery(struct sock *sk) { @@ -2402,14 +2422,8 @@ } else if (tp->rack.reo_wnd_persist) { tp->rack.reo_wnd_persist--; } - if (tp->snd_una == tp->high_seq && tcp_is_reno(tp)) { - /* Hold old state until something *above* high_seq - * is ACKed. For Reno it is MUST to prevent false - * fast retransmits (RFC2582). SACK TCP is safe. */ - if (!tcp_any_retrans_done(sk)) - tp->retrans_stamp = 0; + if (tcp_is_non_sack_preventing_reopen(sk)) return true; - } tcp_set_ca_state(sk, TCP_CA_Open); tp->is_sack_reneg = 0; return false; @@ -2445,6 +2459,8 @@ NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSPURIOUSRTOS); inet_csk(sk)->icsk_retransmits = 0; + if (tcp_is_non_sack_preventing_reopen(sk)) + return true; if (frto_undo || tcp_is_sack(tp)) { tcp_set_ca_state(sk, TCP_CA_Open); tp->is_sack_reneg = 0; @@ -2578,12 +2594,15 @@ { struct tcp_sock *tp = tcp_sk(sk); struct inet_connection_sock *icsk = inet_csk(sk); + u64 val; - /* FIXME: breaks with very large cwnd */ tp->prior_ssthresh = tcp_current_ssthresh(sk); - tp->snd_cwnd = tp->snd_cwnd * - tcp_mss_to_mtu(sk, tp->mss_cache) / - icsk->icsk_mtup.probe_size; + + val = (u64)tp->snd_cwnd * tcp_mss_to_mtu(sk, tp->mss_cache); + do_div(val, icsk->icsk_mtup.probe_size); + WARN_ON_ONCE((u32)val != val); + tp->snd_cwnd = max_t(u32, 1U, val); + tp->snd_cwnd_cnt = 0; tp->snd_cwnd_stamp = tcp_jiffies32; tp->snd_ssthresh = tcp_current_ssthresh(sk); @@ -2907,7 +2926,7 @@ static void tcp_update_rtt_min(struct sock *sk, u32 rtt_us, const int flag) { - u32 wlen = sock_net(sk)->ipv4.sysctl_tcp_min_rtt_wlen * HZ; + u32 wlen = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_min_rtt_wlen) * HZ; struct tcp_sock *tp = tcp_sk(sk); if ((flag & FLAG_ACK_MAYBE_DELAYED) && rtt_us > tcp_min_rtt(tp)) { @@ -3316,7 +3335,8 @@ * new SACK or ECE mark may first advance cwnd here and later reduce * cwnd in tcp_fastretrans_alert() based on more states. */ - if (tcp_sk(sk)->reordering > sock_net(sk)->ipv4.sysctl_tcp_reordering) + if (tcp_sk(sk)->reordering > + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_reordering)) return flag & FLAG_FORWARD_PROGRESS; return flag & FLAG_DATA_ACKED; @@ -3428,7 +3448,8 @@ if (*last_oow_ack_time) { s32 elapsed = (s32)(tcp_jiffies32 - *last_oow_ack_time); - if (0 <= elapsed && elapsed < net->ipv4.sysctl_tcp_invalid_ratelimit) { + if (0 <= elapsed && + elapsed < READ_ONCE(net->ipv4.sysctl_tcp_invalid_ratelimit)) { NET_INC_STATS(net, mib_idx); return true; /* rate-limited: don't send yet! */ } @@ -3475,11 +3496,11 @@ /* Then check host-wide RFC 5961 rate limit. */ now = jiffies / HZ; - if (now != challenge_timestamp) { - u32 ack_limit = net->ipv4.sysctl_tcp_challenge_ack_limit; + if (now != READ_ONCE(challenge_timestamp)) { + u32 ack_limit = READ_ONCE(net->ipv4.sysctl_tcp_challenge_ack_limit); u32 half = (ack_limit + 1) >> 1; - challenge_timestamp = now; + WRITE_ONCE(challenge_timestamp, now); WRITE_ONCE(challenge_count, half + prandom_u32_max(ack_limit)); } count = READ_ONCE(challenge_count); @@ -3717,7 +3738,8 @@ tcp_process_tlp_ack(sk, ack, flag); if (tcp_ack_is_dubious(sk, flag)) { - if (!(flag & (FLAG_SND_UNA_ADVANCED | FLAG_NOT_DUP))) { + if (!(flag & (FLAG_SND_UNA_ADVANCED | + FLAG_NOT_DUP | FLAG_DSACKING_ACK))) { num_dupack = 1; /* Consider if pure acks were aggregated in tcp_add_backlog() */ if (!(flag & FLAG_DATA)) @@ -3898,7 +3920,7 @@ break; case TCPOPT_WINDOW: if (opsize == TCPOLEN_WINDOW && th->syn && - !estab && net->ipv4.sysctl_tcp_window_scaling) { + !estab && READ_ONCE(net->ipv4.sysctl_tcp_window_scaling)) { __u8 snd_wscale = *(__u8 *)ptr; opt_rx->wscale_ok = 1; if (snd_wscale > TCP_MAX_WSCALE) { @@ -3914,7 +3936,7 @@ case TCPOPT_TIMESTAMP: if ((opsize == TCPOLEN_TIMESTAMP) && ((estab && opt_rx->tstamp_ok) || - (!estab && net->ipv4.sysctl_tcp_timestamps))) { + (!estab && READ_ONCE(net->ipv4.sysctl_tcp_timestamps)))) { opt_rx->saw_tstamp = 1; opt_rx->rcv_tsval = get_unaligned_be32(ptr); opt_rx->rcv_tsecr = get_unaligned_be32(ptr + 4); @@ -3922,7 +3944,7 @@ break; case TCPOPT_SACK_PERM: if (opsize == TCPOLEN_SACK_PERM && th->syn && - !estab && net->ipv4.sysctl_tcp_sack) { + !estab && READ_ONCE(net->ipv4.sysctl_tcp_sack)) { opt_rx->sack_ok = TCP_SACK_SEEN; tcp_sack_reset(opt_rx); } @@ -4251,7 +4273,7 @@ { struct tcp_sock *tp = tcp_sk(sk); - if (tcp_is_sack(tp) && sock_net(sk)->ipv4.sysctl_tcp_dsack) { + if (tcp_is_sack(tp) && READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_dsack)) { int mib_idx; if (before(seq, tp->rcv_nxt)) @@ -4297,7 +4319,7 @@ NET_INC_STATS(sock_net(sk), LINUX_MIB_DELAYEDACKLOST); tcp_enter_quickack_mode(sk, TCP_MAX_QUICKACKS); - if (tcp_is_sack(tp) && sock_net(sk)->ipv4.sysctl_tcp_dsack) { + if (tcp_is_sack(tp) && READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_dsack)) { u32 end_seq = TCP_SKB_CB(skb)->end_seq; tcp_rcv_spurious_retrans(sk, skb); @@ -5230,7 +5252,17 @@ sk->sk_write_space(sk); } -static void tcp_check_space(struct sock *sk) +/* Caller made space either from: + * 1) Freeing skbs in rtx queues (after tp->snd_una has advanced) + * 2) Sent skbs from output queue (and thus advancing tp->snd_nxt) + * + * We might be able to generate EPOLLOUT to the application if: + * 1) Space consumed in output/rtx queues is below sk->sk_sndbuf/2 + * 2) notsent amount (tp->write_seq - tp->snd_nxt) became + * small enough that tcp_stream_memory_free() decides it + * is time to generate EPOLLOUT. + */ +void tcp_check_space(struct sock *sk) { if (sock_flag(sk, SOCK_QUEUE_SHRUNK)) { sock_reset_flag(sk, SOCK_QUEUE_SHRUNK); @@ -5283,7 +5315,7 @@ } if (!tcp_is_sack(tp) || - tp->compressed_ack >= sock_net(sk)->ipv4.sysctl_tcp_comp_sack_nr) + tp->compressed_ack >= READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_comp_sack_nr)) goto send_now; if (tp->compressed_ack_rcv_nxt != tp->rcv_nxt) { @@ -5306,7 +5338,8 @@ if (tp->srtt_us && tp->srtt_us < rtt) rtt = tp->srtt_us; - delay = min_t(unsigned long, sock_net(sk)->ipv4.sysctl_tcp_comp_sack_delay_ns, + delay = min_t(unsigned long, + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_comp_sack_delay_ns), rtt * (NSEC_PER_USEC >> 3)/20); sock_hold(sk); hrtimer_start(&tp->compressed_ack_timer, ns_to_ktime(delay), @@ -5337,7 +5370,7 @@ struct tcp_sock *tp = tcp_sk(sk); u32 ptr = ntohs(th->urg_ptr); - if (ptr && !sock_net(sk)->ipv4.sysctl_tcp_stdurg) + if (ptr && !READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_stdurg)) ptr--; ptr += ntohl(th->seq); @@ -5584,7 +5617,7 @@ trace_tcp_probe(sk, skb); tcp_mstamp_refresh(tp); - if (unlikely(!sk->sk_rx_dst)) + if (unlikely(!rcu_access_pointer(sk->sk_rx_dst))) inet_csk(sk)->icsk_af_ops->sk_rx_dst_set(sk, skb); /* * Header prediction. @@ -6516,11 +6549,14 @@ { struct request_sock_queue *queue = &inet_csk(sk)->icsk_accept_queue; const char *msg = "Dropping request"; - bool want_cookie = false; struct net *net = sock_net(sk); + bool want_cookie = false; + u8 syncookies; + + syncookies = READ_ONCE(net->ipv4.sysctl_tcp_syncookies); #ifdef CONFIG_SYN_COOKIES - if (net->ipv4.sysctl_tcp_syncookies) { + if (syncookies) { msg = "Sending cookies"; want_cookie = true; __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPREQQFULLDOCOOKIES); @@ -6528,8 +6564,7 @@ #endif __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPREQQFULLDROP); - if (!queue->synflood_warned && - net->ipv4.sysctl_tcp_syncookies != 2 && + if (!queue->synflood_warned && syncookies != 2 && xchg(&queue->synflood_warned, 1) == 0) net_info_ratelimited("%s: Possible SYN flooding on port %d. %s. Check SNMP counters.\n", proto, sk->sk_num, msg); @@ -6564,7 +6599,7 @@ struct tcp_sock *tp = tcp_sk(sk); u16 mss; - if (sock_net(sk)->ipv4.sysctl_tcp_syncookies != 2 && + if (READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_syncookies) != 2 && !inet_csk_reqsk_queue_is_full(sk)) return 0; @@ -6598,13 +6633,15 @@ bool want_cookie = false; struct dst_entry *dst; struct flowi fl; + u8 syncookies; + + syncookies = READ_ONCE(net->ipv4.sysctl_tcp_syncookies); /* TW buckets are converted to open requests without * limitations, they conserve resources and peer is * evidently real one. */ - if ((net->ipv4.sysctl_tcp_syncookies == 2 || - inet_csk_reqsk_queue_is_full(sk)) && !isn) { + if ((syncookies == 2 || inet_csk_reqsk_queue_is_full(sk)) && !isn) { want_cookie = tcp_syn_flood_action(sk, rsk_ops->slab_name); if (!want_cookie) goto drop; @@ -6654,10 +6691,12 @@ goto drop_and_free; if (!want_cookie && !isn) { + int max_syn_backlog = READ_ONCE(net->ipv4.sysctl_max_syn_backlog); + /* Kill the following clause, if you dislike this way. */ - if (!net->ipv4.sysctl_tcp_syncookies && - (net->ipv4.sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) < - (net->ipv4.sysctl_max_syn_backlog >> 2)) && + if (!syncookies && + (max_syn_backlog - inet_csk_reqsk_queue_len(sk) < + (max_syn_backlog >> 2)) && !tcp_peer_is_proven(req, dst)) { /* Without syncookies last quarter of * backlog is filled with destinations, diff -u linux-azure-5.4.0/net/ipv4/tcp_ipv4.c linux-azure-5.4.0/net/ipv4/tcp_ipv4.c --- linux-azure-5.4.0/net/ipv4/tcp_ipv4.c +++ linux-azure-5.4.0/net/ipv4/tcp_ipv4.c @@ -105,10 +105,10 @@ int tcp_twsk_unique(struct sock *sk, struct sock *sktw, void *twp) { + int reuse = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_tw_reuse); const struct inet_timewait_sock *tw = inet_twsk(sktw); const struct tcp_timewait_sock *tcptw = tcp_twsk(sktw); struct tcp_sock *tp = tcp_sk(sk); - int reuse = sock_net(sk)->ipv4.sysctl_tcp_tw_reuse; if (reuse == 2) { /* Still does not detect *everything* that goes through @@ -343,7 +343,7 @@ if ((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) return; - mtu = tcp_sk(sk)->mtu_info; + mtu = READ_ONCE(tcp_sk(sk)->mtu_info); dst = inet_csk_update_pmtu(sk, mtu); if (!dst) return; @@ -512,7 +512,7 @@ if (sk->sk_state == TCP_LISTEN) goto out; - tp->mtu_info = info; + WRITE_ONCE(tp->mtu_info, info); if (!sock_owned_by_user(sk)) { tcp_v4_mtu_reduced(sk); } else { @@ -1383,7 +1383,7 @@ .syn_ack_timeout = tcp_syn_ack_timeout, }; -static const struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = { +const struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = { .mss_clamp = TCP_MSS_DEFAULT, #ifdef CONFIG_TCP_MD5SIG .req_md5_lookup = tcp_v4_md5_lookup, @@ -1426,6 +1426,7 @@ bool *own_req) { struct inet_request_sock *ireq; + bool found_dup_sk = false; struct inet_sock *newinet; struct tcp_sock *newtp; struct sock *newsk; @@ -1496,12 +1497,22 @@ if (__inet_inherit_port(sk, newsk) < 0) goto put_and_exit; - *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash)); + *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash), + &found_dup_sk); if (likely(*own_req)) { tcp_move_syn(newtp, req); ireq->ireq_opt = NULL; } else { newinet->inet_opt = NULL; + + if (!req_unhash && found_dup_sk) { + /* This code path should only be executed in the + * syncookie case only + */ + bh_unlock_sock(newsk); + sock_put(newsk); + newsk = NULL; + } } return newsk; @@ -1559,15 +1570,18 @@ struct sock *rsk; if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */ - struct dst_entry *dst = sk->sk_rx_dst; + struct dst_entry *dst; + + dst = rcu_dereference_protected(sk->sk_rx_dst, + lockdep_sock_is_held(sk)); sock_rps_save_rxhash(sk, skb); sk_mark_napi_id(sk, skb); if (dst) { if (inet_sk(sk)->rx_dst_ifindex != skb->skb_iif || !dst->ops->check(dst, 0)) { + RCU_INIT_POINTER(sk->sk_rx_dst, NULL); dst_release(dst); - sk->sk_rx_dst = NULL; } } tcp_rcv_established(sk, skb); @@ -1642,7 +1656,7 @@ skb->sk = sk; skb->destructor = sock_edemux; if (sk_fullsock(sk)) { - struct dst_entry *dst = READ_ONCE(sk->sk_rx_dst); + struct dst_entry *dst = rcu_dereference(sk->sk_rx_dst); if (dst) dst = dst_check(dst, 0); @@ -2048,7 +2062,7 @@ struct dst_entry *dst = skb_dst(skb); if (dst && dst_hold_safe(dst)) { - sk->sk_rx_dst = dst; + rcu_assign_pointer(sk->sk_rx_dst, dst); inet_sk(sk)->rx_dst_ifindex = skb->skb_iif; } } @@ -2304,6 +2318,7 @@ static void *tcp_seek_last_pos(struct seq_file *seq) { struct tcp_iter_state *st = seq->private; + int bucket = st->bucket; int offset = st->offset; int orig_num = st->num; void *rc = NULL; @@ -2314,7 +2329,7 @@ break; st->state = TCP_SEQ_STATE_LISTENING; rc = listening_get_next(seq, NULL); - while (offset-- && rc) + while (offset-- && rc && bucket == st->bucket) rc = listening_get_next(seq, rc); if (rc) break; @@ -2325,7 +2340,7 @@ if (st->bucket > tcp_hashinfo.ehash_mask) break; rc = established_get_first(seq); - while (offset-- && rc) + while (offset-- && rc && bucket == st->bucket) rc = established_get_next(seq, rc); } diff -u linux-azure-5.4.0/net/ipv4/tcp_minisocks.c linux-azure-5.4.0/net/ipv4/tcp_minisocks.c --- linux-azure-5.4.0/net/ipv4/tcp_minisocks.c +++ linux-azure-5.4.0/net/ipv4/tcp_minisocks.c @@ -180,7 +180,7 @@ * Oh well... nobody has a sufficient solution to this * protocol bug yet. */ - if (twsk_net(tw)->ipv4.sysctl_tcp_rfc1337 == 0) { + if (!READ_ONCE(twsk_net(tw)->ipv4.sysctl_tcp_rfc1337)) { kill: inet_twsk_deschedule_put(tw); return TCP_TW_SUCCESS; @@ -538,7 +538,7 @@ newtp->tsoffset = treq->ts_off; #ifdef CONFIG_TCP_MD5SIG newtp->md5sig_info = NULL; /*XXX*/ - if (newtp->af_specific->md5_lookup(sk, newsk)) + if (treq->af_specific->req_md5_lookup(sk, req_to_sk(req))) newtp->tcp_header_len += TCPOLEN_MD5SIG_ALIGNED; #endif if (skb->len >= TCP_MSS_DEFAULT + newtp->tcp_header_len) diff -u linux-azure-5.4.0/net/ipv4/tcp_output.c linux-azure-5.4.0/net/ipv4/tcp_output.c --- linux-azure-5.4.0/net/ipv4/tcp_output.c +++ linux-azure-5.4.0/net/ipv4/tcp_output.c @@ -81,6 +81,7 @@ NET_ADD_STATS(sock_net(sk), LINUX_MIB_TCPORIGDATASENT, tcp_skb_pcount(skb)); + tcp_check_space(sk); } /* SND.NXT, if window was not shrunk or the amount of shrunk was less than one @@ -619,18 +620,18 @@ opts->mss = tcp_advertise_mss(sk); remaining -= TCPOLEN_MSS_ALIGNED; - if (likely(sock_net(sk)->ipv4.sysctl_tcp_timestamps && !*md5)) { + if (likely(READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_timestamps) && !*md5)) { opts->options |= OPTION_TS; opts->tsval = tcp_skb_timestamp(skb) + tp->tsoffset; opts->tsecr = tp->rx_opt.ts_recent; remaining -= TCPOLEN_TSTAMP_ALIGNED; } - if (likely(sock_net(sk)->ipv4.sysctl_tcp_window_scaling)) { + if (likely(READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_window_scaling))) { opts->ws = tp->rx_opt.rcv_wscale; opts->options |= OPTION_WSCALE; remaining -= TCPOLEN_WSCALE_ALIGNED; } - if (likely(sock_net(sk)->ipv4.sysctl_tcp_sack)) { + if (likely(READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_sack))) { opts->options |= OPTION_SACK_ADVERTISE; if (unlikely(!(OPTION_TS & opts->options))) remaining -= TCPOLEN_SACKPERM_ALIGNED; @@ -1493,7 +1494,8 @@ mss_now -= icsk->icsk_ext_hdr_len; /* Then reserve room for full set of TCP options and 8 bytes of data */ - mss_now = max(mss_now, sock_net(sk)->ipv4.sysctl_tcp_min_snd_mss); + mss_now = max(mss_now, + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_min_snd_mss)); return mss_now; } @@ -1504,6 +1506,7 @@ return __tcp_mtu_to_mss(sk, pmtu) - (tcp_sk(sk)->tcp_header_len - sizeof(struct tcphdr)); } +EXPORT_SYMBOL(tcp_mtu_to_mss); /* Inverse of above */ int tcp_mss_to_mtu(struct sock *sk, int mss) @@ -1535,10 +1538,10 @@ struct inet_connection_sock *icsk = inet_csk(sk); struct net *net = sock_net(sk); - icsk->icsk_mtup.enabled = net->ipv4.sysctl_tcp_mtu_probing > 1; + icsk->icsk_mtup.enabled = READ_ONCE(net->ipv4.sysctl_tcp_mtu_probing) > 1; icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + sizeof(struct tcphdr) + icsk->icsk_af_ops->net_header_len; - icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, net->ipv4.sysctl_tcp_base_mss); + icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, READ_ONCE(net->ipv4.sysctl_tcp_base_mss)); icsk->icsk_mtup.probe_size = 0; if (icsk->icsk_mtup.enabled) icsk->icsk_mtup.probe_timestamp = tcp_jiffies32; @@ -1650,15 +1653,20 @@ const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops; struct tcp_sock *tp = tcp_sk(sk); - /* Track the maximum number of outstanding packets in each - * window, and remember whether we were cwnd-limited then. + /* Track the strongest available signal of the degree to which the cwnd + * is fully utilized. If cwnd-limited then remember that fact for the + * current window. If not cwnd-limited then track the maximum number of + * outstanding packets in the current window. (If cwnd-limited then we + * chose to not update tp->max_packets_out to avoid an extra else + * clause with no functional impact.) */ - if (!before(tp->snd_una, tp->max_packets_seq) || - tp->packets_out > tp->max_packets_out || - is_cwnd_limited) { - tp->max_packets_out = tp->packets_out; - tp->max_packets_seq = tp->snd_nxt; + if (!before(tp->snd_una, tp->cwnd_usage_seq) || + is_cwnd_limited || + (!tp->is_cwnd_limited && + tp->packets_out > tp->max_packets_out)) { tp->is_cwnd_limited = is_cwnd_limited; + tp->max_packets_out = tp->packets_out; + tp->cwnd_usage_seq = tp->snd_nxt; } if (tcp_is_cwnd_limited(sk)) { @@ -1670,7 +1678,7 @@ if (tp->packets_out > tp->snd_cwnd_used) tp->snd_cwnd_used = tp->packets_out; - if (sock_net(sk)->ipv4.sysctl_tcp_slow_start_after_idle && + if (READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_slow_start_after_idle) && (s32)(tcp_jiffies32 - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto && !ca_ops->cong_control) tcp_cwnd_application_limited(sk); @@ -1758,7 +1766,7 @@ min_tso = ca_ops->min_tso_segs ? ca_ops->min_tso_segs(sk) : - sock_net(sk)->ipv4.sysctl_tcp_min_tso_segs; + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_min_tso_segs); tso_segs = tcp_tso_autosize(sk, mss_now, min_tso); return min_t(u32, tso_segs, sk->sk_gso_max_segs); @@ -2049,7 +2057,7 @@ u32 interval; s32 delta; - interval = net->ipv4.sysctl_tcp_probe_interval; + interval = READ_ONCE(net->ipv4.sysctl_tcp_probe_interval); delta = tcp_jiffies32 - icsk->icsk_mtup.probe_timestamp; if (unlikely(delta >= interval * HZ)) { int mss = tcp_current_mss(sk); @@ -2131,7 +2139,7 @@ * probing process by not resetting search range to its orignal. */ if (probe_size > tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_high) || - interval < net->ipv4.sysctl_tcp_probe_threshold) { + interval < READ_ONCE(net->ipv4.sysctl_tcp_probe_threshold)) { /* Check whether enough time has elaplased for * another round of probing. */ @@ -2273,7 +2281,7 @@ sk->sk_pacing_rate >> READ_ONCE(sk->sk_pacing_shift)); if (sk->sk_pacing_status == SK_PACING_NONE) limit = min_t(unsigned long, limit, - sock_net(sk)->ipv4.sysctl_tcp_limit_output_bytes); + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_limit_output_bytes)); limit <<= factor; if (static_branch_unlikely(&tcp_tx_delay_enabled) && @@ -2506,7 +2514,7 @@ if (rcu_access_pointer(tp->fastopen_rsk)) return false; - early_retrans = sock_net(sk)->ipv4.sysctl_tcp_early_retrans; + early_retrans = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_early_retrans); /* Schedule a loss probe in 2*RTT for SACK capable connections * not in loss recovery, that are either limited by cwnd or application. */ @@ -2868,7 +2876,7 @@ struct sk_buff *skb = to, *tmp; bool first = true; - if (!sock_net(sk)->ipv4.sysctl_tcp_retrans_collapse) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_retrans_collapse)) return; if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN) return; @@ -2908,7 +2916,7 @@ struct tcp_sock *tp = tcp_sk(sk); unsigned int cur_mss; int diff, len, err; - + int avail_wnd; /* Inconclusive MTU probe */ if (icsk->icsk_mtup.probe_size) @@ -2938,17 +2946,25 @@ return -EHOSTUNREACH; /* Routing failure or similar. */ cur_mss = tcp_current_mss(sk); + avail_wnd = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; /* If receiver has shrunk his window, and skb is out of * new window, do not retransmit it. The exception is the * case, when window is shrunk to zero. In this case - * our retransmit serves as a zero window probe. + * our retransmit of one segment serves as a zero window probe. */ - if (!before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp)) && - TCP_SKB_CB(skb)->seq != tp->snd_una) - return -EAGAIN; + if (avail_wnd <= 0) { + if (TCP_SKB_CB(skb)->seq != tp->snd_una) + return -EAGAIN; + avail_wnd = cur_mss; + } len = cur_mss * segs; + if (len > avail_wnd) { + len = rounddown(avail_wnd, cur_mss); + if (!len) + len = avail_wnd; + } if (skb->len > len) { if (tcp_fragment(sk, TCP_FRAG_IN_RTX_QUEUE, skb, len, cur_mss, GFP_ATOMIC)) @@ -2962,8 +2978,9 @@ diff -= tcp_skb_pcount(skb); if (diff) tcp_adjust_pcount(sk, skb, diff); - if (skb->len < cur_mss) - tcp_retrans_try_collapse(sk, skb, cur_mss); + avail_wnd = min_t(int, avail_wnd, cur_mss); + if (skb->len < avail_wnd) + tcp_retrans_try_collapse(sk, skb, avail_wnd); } /* RFC3168, section 6.1.1.1. ECN fallback */ @@ -3131,11 +3148,12 @@ */ void sk_forced_mem_schedule(struct sock *sk, int size) { - int amt; + int delta, amt; - if (size <= sk->sk_forward_alloc) + delta = size - sk->sk_forward_alloc; + if (delta <= 0) return; - amt = sk_mem_pages(size); + amt = sk_mem_pages(delta); sk->sk_forward_alloc += amt * SK_MEM_QUANTUM; sk_memory_allocated_add(sk, amt); @@ -3404,7 +3422,7 @@ * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT. */ tp->tcp_header_len = sizeof(struct tcphdr); - if (sock_net(sk)->ipv4.sysctl_tcp_timestamps) + if (READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_timestamps)) tp->tcp_header_len += TCPOLEN_TSTAMP_ALIGNED; #ifdef CONFIG_TCP_MD5SIG @@ -3440,7 +3458,7 @@ tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0), &tp->rcv_wnd, &tp->window_clamp, - sock_net(sk)->ipv4.sysctl_tcp_window_scaling, + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_window_scaling), &rcv_wscale, rcv_wnd); @@ -3491,6 +3509,7 @@ */ static int tcp_send_syn_data(struct sock *sk, struct sk_buff *syn) { + struct inet_connection_sock *icsk = inet_csk(sk); struct tcp_sock *tp = tcp_sk(sk); struct tcp_fastopen_request *fo = tp->fastopen_req; int space, err = 0; @@ -3505,8 +3524,10 @@ * private TCP options. The cost is reduced data space in SYN :( */ tp->rx_opt.mss_clamp = tcp_mss_clamp(tp, tp->rx_opt.mss_clamp); + /* Sync mss_cache after updating the mss_clamp */ + tcp_sync_mss(sk, icsk->icsk_pmtu_cookie); - space = __tcp_mtu_to_mss(sk, inet_csk(sk)->icsk_pmtu_cookie) - + space = __tcp_mtu_to_mss(sk, icsk->icsk_pmtu_cookie) - MAX_TCP_OPTION_SPACE; space = min_t(size_t, space, fo->size); @@ -3841,7 +3862,7 @@ icsk->icsk_probes_out++; if (err <= 0) { - if (icsk->icsk_backoff < net->ipv4.sysctl_tcp_retries2) + if (icsk->icsk_backoff < READ_ONCE(net->ipv4.sysctl_tcp_retries2)) icsk->icsk_backoff++; timeout = tcp_probe0_when(sk, TCP_RTO_MAX); } else { @@ -3864,8 +3885,8 @@ tcp_rsk(req)->txhash = net_tx_rndhash(); res = af_ops->send_synack(sk, NULL, &fl, req, NULL, TCP_SYNACK_NORMAL); if (!res) { - __TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS); - __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSYNRETRANS); + TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS); + NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSYNRETRANS); if (unlikely(tcp_passive_fastopen(sk))) tcp_sk(sk)->total_retrans++; trace_tcp_retransmit_synack(sk, req); diff -u linux-azure-5.4.0/net/ipv4/tcp_recovery.c linux-azure-5.4.0/net/ipv4/tcp_recovery.c --- linux-azure-5.4.0/net/ipv4/tcp_recovery.c +++ linux-azure-5.4.0/net/ipv4/tcp_recovery.c @@ -33,7 +33,8 @@ return 0; if (tp->sacked_out >= tp->reordering && - !(sock_net(sk)->ipv4.sysctl_tcp_recovery & TCP_RACK_NO_DUPTHRESH)) + !(READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_recovery) & + TCP_RACK_NO_DUPTHRESH)) return 0; } @@ -204,7 +205,8 @@ { struct tcp_sock *tp = tcp_sk(sk); - if (sock_net(sk)->ipv4.sysctl_tcp_recovery & TCP_RACK_STATIC_REO_WND || + if ((READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_recovery) & + TCP_RACK_STATIC_REO_WND) || !rs->prior_delivered) return; diff -u linux-azure-5.4.0/net/ipv4/tcp_timer.c linux-azure-5.4.0/net/ipv4/tcp_timer.c --- linux-azure-5.4.0/net/ipv4/tcp_timer.c +++ linux-azure-5.4.0/net/ipv4/tcp_timer.c @@ -143,7 +143,7 @@ */ static int tcp_orphan_retries(struct sock *sk, bool alive) { - int retries = sock_net(sk)->ipv4.sysctl_tcp_orphan_retries; /* May be zero. */ + int retries = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_orphan_retries); /* May be zero. */ /* We know from an ICMP that something is wrong. */ if (sk->sk_err_soft && !alive) @@ -163,7 +163,7 @@ int mss; /* Black hole detection */ - if (!net->ipv4.sysctl_tcp_mtu_probing) + if (!READ_ONCE(net->ipv4.sysctl_tcp_mtu_probing)) return; if (!icsk->icsk_mtup.enabled) { @@ -171,9 +171,9 @@ icsk->icsk_mtup.probe_timestamp = tcp_jiffies32; } else { mss = tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_low) >> 1; - mss = min(net->ipv4.sysctl_tcp_base_mss, mss); - mss = max(mss, net->ipv4.sysctl_tcp_mtu_probe_floor); - mss = max(mss, net->ipv4.sysctl_tcp_min_snd_mss); + mss = min(READ_ONCE(net->ipv4.sysctl_tcp_base_mss), mss); + mss = max(mss, READ_ONCE(net->ipv4.sysctl_tcp_mtu_probe_floor)); + mss = max(mss, READ_ONCE(net->ipv4.sysctl_tcp_min_snd_mss)); icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, mss); } tcp_sync_mss(sk, icsk->icsk_pmtu_cookie); @@ -245,7 +245,7 @@ retry_until = icsk->icsk_syn_retries ? : net->ipv4.sysctl_tcp_syn_retries; expired = icsk->icsk_retransmits >= retry_until; } else { - if (retransmits_timed_out(sk, net->ipv4.sysctl_tcp_retries1, 0)) { + if (retransmits_timed_out(sk, READ_ONCE(net->ipv4.sysctl_tcp_retries1), 0)) { /* Black hole detection */ tcp_mtu_probing(icsk, sk); @@ -254,7 +254,7 @@ sk_rethink_txhash(sk); } - retry_until = net->ipv4.sysctl_tcp_retries2; + retry_until = READ_ONCE(net->ipv4.sysctl_tcp_retries2); if (sock_flag(sk, SOCK_DEAD)) { const bool alive = icsk->icsk_rto < TCP_RTO_MAX; @@ -381,7 +381,7 @@ msecs_to_jiffies(icsk->icsk_user_timeout)) goto abort; - max_probes = sock_net(sk)->ipv4.sysctl_tcp_retries2; + max_probes = READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_retries2); if (sock_flag(sk, SOCK_DEAD)) { const bool alive = inet_csk_rto_backoff(icsk, TCP_RTO_MAX) < TCP_RTO_MAX; @@ -569,7 +569,7 @@ * linear-timeout retransmissions into a black hole */ if (sk->sk_state == TCP_ESTABLISHED && - (tp->thin_lto || net->ipv4.sysctl_tcp_thin_linear_timeouts) && + (tp->thin_lto || READ_ONCE(net->ipv4.sysctl_tcp_thin_linear_timeouts)) && tcp_stream_is_thin(tp) && icsk->icsk_retransmits <= TCP_THIN_LINEAR_RETRIES) { icsk->icsk_backoff = 0; @@ -580,7 +580,7 @@ } inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, tcp_clamp_rto_to_user_timeout(sk), TCP_RTO_MAX); - if (retransmits_timed_out(sk, net->ipv4.sysctl_tcp_retries1 + 1, 0)) + if (retransmits_timed_out(sk, READ_ONCE(net->ipv4.sysctl_tcp_retries1) + 1, 0)) __sk_dst_reset(sk); out:; diff -u linux-azure-5.4.0/net/ipv4/udp.c linux-azure-5.4.0/net/ipv4/udp.c --- linux-azure-5.4.0/net/ipv4/udp.c +++ linux-azure-5.4.0/net/ipv4/udp.c @@ -386,7 +386,8 @@ dif, sdif); if (!dev_match) return -1; - score += 4; + if (sk->sk_bound_dev_if) + score += 4; if (READ_ONCE(sk->sk_incoming_cpu) == raw_smp_processor_id()) score++; @@ -543,6 +544,12 @@ } EXPORT_SYMBOL(udp_encap_enable); +void udp_encap_disable(void) +{ + static_branch_dec(&udp_encap_needed_key); +} +EXPORT_SYMBOL(udp_encap_disable); + /* Handler for tunnels with arbitrary destination ports: no socket lookup, go * through error handlers in encapsulations looking for a match. */ @@ -844,7 +851,7 @@ kfree_skb(skb); return -EINVAL; } - if (skb->len > cork->gso_size * UDP_MAX_SEGMENTS) { + if (datalen > cork->gso_size * UDP_MAX_SEGMENTS) { kfree_skb(skb); return -EINVAL; } @@ -981,7 +988,7 @@ __be16 dport; u8 tos; int err, is_udplite = IS_UDPLITE(sk); - int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; + int corkreq = READ_ONCE(up->corkflag) || msg->msg_flags&MSG_MORE; int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); struct sk_buff *skb; struct ip_options_data opt_copy; @@ -1043,7 +1050,7 @@ } ipcm_init_sk(&ipc, inet); - ipc.gso_size = up->gso_size; + ipc.gso_size = READ_ONCE(up->gso_size); if (msg->msg_controllen) { err = udp_cmsg_send(sk, msg, &ipc.gso_size); @@ -1289,7 +1296,7 @@ } up->len += size; - if (!(up->corkflag || (flags&MSG_MORE))) + if (!(READ_ONCE(up->corkflag) || (flags&MSG_MORE))) ret = udp_push_pending_frames(sk); if (!ret) ret = size; @@ -2130,7 +2137,7 @@ struct dst_entry *old; if (dst_hold_safe(dst)) { - old = xchg(&sk->sk_rx_dst, dst); + old = xchg((__force struct dst_entry **)&sk->sk_rx_dst, dst); dst_release(old); return old != dst; } @@ -2319,7 +2326,7 @@ struct dst_entry *dst = skb_dst(skb); int ret; - if (unlikely(sk->sk_rx_dst != dst)) + if (unlikely(rcu_dereference(sk->sk_rx_dst) != dst)) udp_sk_rx_dst_set(sk, dst); ret = udp_unicast_rcv_skb(sk, skb, uh); @@ -2477,7 +2484,7 @@ skb->sk = sk; skb->destructor = sock_efree; - dst = READ_ONCE(sk->sk_rx_dst); + dst = rcu_dereference(sk->sk_rx_dst); if (dst) dst = dst_check(dst, 0); @@ -2511,6 +2518,9 @@ { struct udp_sock *up = udp_sk(sk); bool slow = lock_sock_fast(sk); + + /* protects from races with udp_abort() */ + sock_set_flag(sk, SOCK_DEAD); udp_flush_pending_frames(sk); unlock_sock_fast(sk, slow); if (static_branch_unlikely(&udp_encap_needed_key)) { @@ -2548,9 +2558,9 @@ switch (optname) { case UDP_CORK: if (val != 0) { - up->corkflag = 1; + WRITE_ONCE(up->corkflag, 1); } else { - up->corkflag = 0; + WRITE_ONCE(up->corkflag, 0); lock_sock(sk); push_pending_frames(sk); release_sock(sk); @@ -2587,7 +2597,7 @@ case UDP_SEGMENT: if (val < 0 || val > USHRT_MAX) return -EINVAL; - up->gso_size = val; + WRITE_ONCE(up->gso_size, val); break; case UDP_GRO: @@ -2673,7 +2683,7 @@ switch (optname) { case UDP_CORK: - val = up->corkflag; + val = READ_ONCE(up->corkflag); break; case UDP_ENCAP: @@ -2689,7 +2699,7 @@ break; case UDP_SEGMENT: - val = up->gso_size; + val = READ_ONCE(up->gso_size); break; case UDP_GRO: @@ -2770,10 +2780,17 @@ { lock_sock(sk); + /* udp{v6}_destroy_sock() sets it under the sk lock, avoid racing + * with close() + */ + if (sock_flag(sk, SOCK_DEAD)) + goto out; + sk->sk_err = err; sk->sk_error_report(sk); __udp_disconnect(sk, 0); +out: release_sock(sk); return 0; @@ -2932,7 +2949,7 @@ { seq_setwidth(seq, 127); if (v == SEQ_START_TOKEN) - seq_puts(seq, " sl local_address rem_address st tx_queue " + seq_puts(seq, " sl local_address rem_address st tx_queue " "rx_queue tr tm->when retrnsmt uid timeout " "inode ref pointer drops"); else { diff -u linux-azure-5.4.0/net/ipv4/udp_offload.c linux-azure-5.4.0/net/ipv4/udp_offload.c --- linux-azure-5.4.0/net/ipv4/udp_offload.c +++ linux-azure-5.4.0/net/ipv4/udp_offload.c @@ -501,6 +501,10 @@ skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count; skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_L4; + + if (skb->encapsulation) + skb->inner_transport_header = skb->transport_header; + return 0; } diff -u linux-azure-5.4.0/net/ipv6/addrconf.c linux-azure-5.4.0/net/ipv6/addrconf.c --- linux-azure-5.4.0/net/ipv6/addrconf.c +++ linux-azure-5.4.0/net/ipv6/addrconf.c @@ -542,7 +542,7 @@ #ifdef CONFIG_IPV6_MROUTE if ((all || type == NETCONFA_MC_FORWARDING) && nla_put_s32(skb, NETCONFA_MC_FORWARDING, - devconf->mc_forwarding) < 0) + atomic_read(&devconf->mc_forwarding)) < 0) goto nla_put_failure; #endif if ((all || type == NETCONFA_PROXY_NEIGH) && @@ -789,6 +789,7 @@ { struct net_device *dev; struct inet6_ifaddr *ifa; + LIST_HEAD(tmp_addr_list); if (!idev) return; @@ -807,14 +808,24 @@ } } + read_lock_bh(&idev->lock); list_for_each_entry(ifa, &idev->addr_list, if_list) { if (ifa->flags&IFA_F_TENTATIVE) continue; + list_add_tail(&ifa->if_list_aux, &tmp_addr_list); + } + read_unlock_bh(&idev->lock); + + while (!list_empty(&tmp_addr_list)) { + ifa = list_first_entry(&tmp_addr_list, + struct inet6_ifaddr, if_list_aux); + list_del(&ifa->if_list_aux); if (idev->cnf.forwarding) addrconf_join_anycast(ifa); else addrconf_leave_anycast(ifa); } + inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, NETCONFA_FORWARDING, dev->ifindex, &idev->cnf); @@ -1091,10 +1102,6 @@ goto out; } - if (net->ipv6.devconf_all->disable_policy || - idev->cnf.disable_policy) - f6i->dst_nopolicy = true; - neigh_parms_data_state_setall(idev->nd_parms); ifa->addr = *cfg->pfx; @@ -3111,6 +3118,9 @@ memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4); if (idev->dev->flags&IFF_POINTOPOINT) { + if (idev->cnf.addr_gen_mode == IN6_ADDR_GEN_MODE_NONE) + return; + addr.s6_addr32[0] = htonl(0xfe800000); scope = IFA_LINK; plen = 64; @@ -3710,8 +3720,10 @@ unsigned long event = how ? NETDEV_UNREGISTER : NETDEV_DOWN; struct net *net = dev_net(dev); struct inet6_dev *idev; - struct inet6_ifaddr *ifa, *tmp; + struct inet6_ifaddr *ifa; + LIST_HEAD(tmp_addr_list); bool keep_addr = false; + bool was_ready; int state, i; ASSERT_RTNL(); @@ -3777,7 +3789,10 @@ addrconf_del_rs_timer(idev); - /* Step 2: clear flags for stateless addrconf */ + /* Step 2: clear flags for stateless addrconf, repeated down + * detection + */ + was_ready = idev->if_flags & IF_READY; if (!how) idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY); @@ -3798,16 +3813,23 @@ write_lock_bh(&idev->lock); } - list_for_each_entry_safe(ifa, tmp, &idev->addr_list, if_list) { + list_for_each_entry(ifa, &idev->addr_list, if_list) + list_add_tail(&ifa->if_list_aux, &tmp_addr_list); + write_unlock_bh(&idev->lock); + + while (!list_empty(&tmp_addr_list)) { struct fib6_info *rt = NULL; bool keep; + ifa = list_first_entry(&tmp_addr_list, + struct inet6_ifaddr, if_list_aux); + list_del(&ifa->if_list_aux); + addrconf_del_dad_work(ifa); keep = keep_addr && (ifa->flags & IFA_F_PERMANENT) && !addr_is_local(&ifa->addr); - write_unlock_bh(&idev->lock); spin_lock_bh(&ifa->lock); if (keep) { @@ -3838,20 +3860,19 @@ addrconf_leave_solict(ifa->idev, &ifa->addr); } - write_lock_bh(&idev->lock); if (!keep) { + write_lock_bh(&idev->lock); list_del_rcu(&ifa->if_list); + write_unlock_bh(&idev->lock); in6_ifa_put(ifa); } } - write_unlock_bh(&idev->lock); - /* Step 5: Discard anycast and multicast list */ if (how) { ipv6_ac_destroy_dev(idev); ipv6_mc_destroy_dev(idev); - } else { + } else if (was_ready) { ipv6_mc_down(idev); } @@ -4177,7 +4198,8 @@ send_rs = send_mld && ipv6_accept_ra(ifp->idev) && ifp->idev->cnf.rtr_solicits != 0 && - (dev->flags&IFF_LOOPBACK) == 0; + (dev->flags & IFF_LOOPBACK) == 0 && + (dev->type != ARPHRD_TUNNEL); read_unlock_bh(&ifp->idev->lock); /* While dad is in progress mld report's source address is in6_addrany. @@ -4921,6 +4943,7 @@ nla_put_s32(skb, IFA_TARGET_NETNSID, args->netnsid)) goto error; + spin_lock_bh(&ifa->lock); if (!((ifa->flags&IFA_F_PERMANENT) && (ifa->prefered_lft == INFINITY_LIFE_TIME))) { preferred = ifa->prefered_lft; @@ -4942,6 +4965,7 @@ preferred = INFINITY_LIFE_TIME; valid = INFINITY_LIFE_TIME; } + spin_unlock_bh(&ifa->lock); if (!ipv6_addr_any(&ifa->peer_addr)) { if (nla_put_in6_addr(skb, IFA_LOCAL, &ifa->addr) < 0 || @@ -5455,7 +5479,7 @@ array[DEVCONF_USE_OPTIMISTIC] = cnf->use_optimistic; #endif #ifdef CONFIG_IPV6_MROUTE - array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding; + array[DEVCONF_MC_FORWARDING] = atomic_read(&cnf->mc_forwarding); #endif array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6; array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad; @@ -5761,7 +5785,7 @@ return -EAFNOSUPPORT; if (nla_parse_nested_deprecated(tb, IFLA_INET6_MAX, nla, NULL, NULL) < 0) - BUG(); + return -EINVAL; if (tb[IFLA_INET6_TOKEN]) { err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN])); diff -u linux-azure-5.4.0/net/ipv6/af_inet6.c linux-azure-5.4.0/net/ipv6/af_inet6.c --- linux-azure-5.4.0/net/ipv6/af_inet6.c +++ linux-azure-5.4.0/net/ipv6/af_inet6.c @@ -222,7 +222,7 @@ inet->mc_list = NULL; inet->rcv_tos = 0; - if (net->ipv4.sysctl_ip_no_pmtu_disc) + if (READ_ONCE(net->ipv4.sysctl_ip_no_pmtu_disc)) inet->pmtudisc = IP_PMTUDISC_DONT; else inet->pmtudisc = IP_PMTUDISC_WANT; @@ -434,11 +434,14 @@ int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) { struct sock *sk = sock->sk; + const struct proto *prot; int err = 0; + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + prot = READ_ONCE(sk->sk_prot); /* If the socket has its own bind function then use it. */ - if (sk->sk_prot->bind) - return sk->sk_prot->bind(sk, uaddr, addr_len); + if (prot->bind) + return prot->bind(sk, uaddr, addr_len); if (addr_len < SIN6_LEN_RFC2133) return -EINVAL; @@ -541,6 +544,7 @@ { struct sock *sk = sock->sk; struct net *net = sock_net(sk); + const struct proto *prot; switch (cmd) { case SIOCADDRT: @@ -555,9 +559,11 @@ case SIOCSIFDSTADDR: return addrconf_set_dstaddr(net, (void __user *) arg); default: - if (!sk->sk_prot->ioctl) + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + prot = READ_ONCE(sk->sk_prot); + if (!prot->ioctl) return -ENOIOCTLCMD; - return sk->sk_prot->ioctl(sk, cmd, arg); + return prot->ioctl(sk, cmd, arg); } /*NOTREACHED*/ return 0; @@ -569,11 +575,14 @@ int inet6_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) { struct sock *sk = sock->sk; + const struct proto *prot; if (unlikely(inet_send_prepare(sk))) return -EAGAIN; - return INDIRECT_CALL_2(sk->sk_prot->sendmsg, tcp_sendmsg, udpv6_sendmsg, + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + prot = READ_ONCE(sk->sk_prot); + return INDIRECT_CALL_2(prot->sendmsg, tcp_sendmsg, udpv6_sendmsg, sk, msg, size); } @@ -583,13 +592,16 @@ int flags) { struct sock *sk = sock->sk; + const struct proto *prot; int addr_len = 0; int err; if (likely(!(flags & MSG_ERRQUEUE))) sock_rps_record_flow(sk); - err = INDIRECT_CALL_2(sk->sk_prot->recvmsg, tcp_recvmsg, udpv6_recvmsg, + /* IPV6_ADDRFORM can change sk->sk_prot under us. */ + prot = READ_ONCE(sk->sk_prot); + err = INDIRECT_CALL_2(prot->recvmsg, tcp_recvmsg, udpv6_recvmsg, sk, msg, size, flags & MSG_DONTWAIT, flags & ~MSG_DONTWAIT, &addr_len); if (err >= 0) @@ -955,6 +967,7 @@ .ip6_mtu_from_fib6 = ip6_mtu_from_fib6, .fib6_nh_init = fib6_nh_init, .fib6_nh_release = fib6_nh_release, + .fib6_nh_release_dsts = fib6_nh_release_dsts, .fib6_update_sernum = fib6_update_sernum_stub, .fib6_rt_update = fib6_rt_update, .ip6_del_rt = ip6_del_rt, diff -u linux-azure-5.4.0/net/ipv6/esp6.c linux-azure-5.4.0/net/ipv6/esp6.c --- linux-azure-5.4.0/net/ipv6/esp6.c +++ linux-azure-5.4.0/net/ipv6/esp6.c @@ -231,6 +231,10 @@ struct sk_buff *trailer; int tailen = esp->tailen; + if (ALIGN(tailen, L1_CACHE_BYTES) > PAGE_SIZE || + ALIGN(skb->data_len, L1_CACHE_BYTES) > PAGE_SIZE) + goto cow; + if (!skb_cloned(skb)) { if (tailen <= skb_tailroom(skb)) { nfrags = 1; diff -u linux-azure-5.4.0/net/ipv6/ip6_fib.c linux-azure-5.4.0/net/ipv6/ip6_fib.c --- linux-azure-5.4.0/net/ipv6/ip6_fib.c +++ linux-azure-5.4.0/net/ipv6/ip6_fib.c @@ -110,7 +110,7 @@ fn = rcu_dereference_protected(f6i->fib6_node, lockdep_is_held(&f6i->fib6_table->tb6_lock)); if (fn) - fn->fn_sernum = fib6_new_sernum(net); + WRITE_ONCE(fn->fn_sernum, fib6_new_sernum(net)); } /* @@ -535,12 +535,13 @@ spin_unlock_bh(&table->tb6_lock); if (res > 0) { cb->args[4] = 1; - cb->args[5] = w->root->fn_sernum; + cb->args[5] = READ_ONCE(w->root->fn_sernum); } } else { - if (cb->args[5] != w->root->fn_sernum) { + int sernum = READ_ONCE(w->root->fn_sernum); + if (cb->args[5] != sernum) { /* Begin at the root if the tree changed */ - cb->args[5] = w->root->fn_sernum; + cb->args[5] = sernum; w->state = FWS_INIT; w->node = w->root; w->skip = w->count; @@ -1276,7 +1277,7 @@ /* paired with smp_rmb() in rt6_get_cookie_safe() */ smp_wmb(); while (fn) { - fn->fn_sernum = sernum; + WRITE_ONCE(fn->fn_sernum, sernum); fn = rcu_dereference_protected(fn->parent, lockdep_is_held(&rt->fib6_table->tb6_lock)); } @@ -1310,7 +1311,6 @@ int err = -ENOMEM; int allow_create = 1; int replace_required = 0; - int sernum = fib6_new_sernum(info->nl_net); if (info->nlh) { if (!(info->nlh->nlmsg_flags & NLM_F_CREATE)) @@ -1410,7 +1410,7 @@ if (!err) { if (rt->nh) list_add(&rt->nh_list, &rt->nh->f6i_list); - __fib6_update_sernum_upto_root(rt, sernum); + __fib6_update_sernum_upto_root(rt, fib6_new_sernum(info->nl_net)); fib6_start_gc(info->nl_net, rt); } @@ -2069,8 +2069,8 @@ }; if (c->sernum != FIB6_NO_SERNUM_CHANGE && - w->node->fn_sernum != c->sernum) - w->node->fn_sernum = c->sernum; + READ_ONCE(w->node->fn_sernum) != c->sernum) + WRITE_ONCE(w->node->fn_sernum, c->sernum); if (!c->func) { WARN_ON_ONCE(c->sernum == FIB6_NO_SERNUM_CHANGE); @@ -2434,7 +2434,7 @@ iter->w.state = FWS_INIT; iter->w.node = iter->w.root; iter->w.args = iter; - iter->sernum = iter->w.root->fn_sernum; + iter->sernum = READ_ONCE(iter->w.root->fn_sernum); INIT_LIST_HEAD(&iter->w.lh); fib6_walker_link(net, &iter->w); } @@ -2462,8 +2462,10 @@ static void ipv6_route_check_sernum(struct ipv6_route_iter *iter) { - if (iter->sernum != iter->w.root->fn_sernum) { - iter->sernum = iter->w.root->fn_sernum; + int sernum = READ_ONCE(iter->w.root->fn_sernum); + + if (iter->sernum != sernum) { + iter->sernum = sernum; iter->w.state = FWS_INIT; iter->w.node = iter->w.root; WARN_ON(iter->w.skip); diff -u linux-azure-5.4.0/net/ipv6/ip6_gre.c linux-azure-5.4.0/net/ipv6/ip6_gre.c --- linux-azure-5.4.0/net/ipv6/ip6_gre.c +++ linux-azure-5.4.0/net/ipv6/ip6_gre.c @@ -730,6 +730,7 @@ struct ip_tunnel_info *tun_info; const struct ip_tunnel_key *key; __be16 flags; + int tun_hlen; tun_info = skb_tunnel_info(skb); if (unlikely(!tun_info || @@ -743,13 +744,14 @@ fl6->daddr = key->u.ipv6.dst; fl6->flowlabel = key->label; fl6->flowi6_uid = sock_net_uid(dev_net(dev), NULL); + fl6->fl6_gre_key = tunnel_id_to_key32(key->tun_id); dsfield = key->tos; flags = key->tun_flags & (TUNNEL_CSUM | TUNNEL_KEY | TUNNEL_SEQ); - tunnel->tun_hlen = gre_calc_hlen(flags); + tun_hlen = gre_calc_hlen(flags); - gre_build_header(skb, tunnel->tun_hlen, + gre_build_header(skb, tun_hlen, flags, protocol, tunnel_id_to_key32(tun_info->key.tun_id), (flags & TUNNEL_SEQ) ? htonl(tunnel->o_seqno++) @@ -925,7 +927,6 @@ __be16 proto; __u32 mtu; int nhoff; - int thoff; if (!pskb_inet_may_pull(skb)) goto tx_err; @@ -946,10 +947,16 @@ (ntohs(ip_hdr(skb)->tot_len) > skb->len - nhoff)) truncate = true; - thoff = skb_transport_header(skb) - skb_mac_header(skb); - if (skb->protocol == htons(ETH_P_IPV6) && - (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff)) - truncate = true; + if (skb->protocol == htons(ETH_P_IPV6)) { + int thoff; + + if (skb_transport_header_was_set(skb)) + thoff = skb_transport_header(skb) - skb_mac_header(skb); + else + thoff = nhoff + sizeof(struct ipv6hdr); + if (ntohs(ipv6_hdr(skb)->payload_len) > skb->len - thoff) + truncate = true; + } if (skb_cow_head(skb, dev->needed_headroom ?: t->hlen)) goto tx_err; @@ -978,6 +985,7 @@ fl6.daddr = key->u.ipv6.dst; fl6.flowlabel = key->label; fl6.flowi6_uid = sock_net_uid(dev_net(dev), NULL); + fl6.fl6_gre_key = tunnel_id_to_key32(key->tun_id); dsfield = key->tos; if (!(tun_info->key.tun_flags & TUNNEL_ERSPAN_OPT)) @@ -1085,6 +1093,7 @@ fl6->flowi6_oif = p->link; fl6->flowlabel = 0; fl6->flowi6_proto = IPPROTO_GRE; + fl6->fl6_gre_key = t->parms.o_key; if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS)) fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo; @@ -1530,7 +1539,7 @@ static struct inet6_protocol ip6gre_protocol __read_mostly = { .handler = gre_rcv, .err_handler = ip6gre_err, - .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, + .flags = INET6_PROTO_FINAL, }; static void ip6gre_destroy_tunnels(struct net *net, struct list_head *head) diff -u linux-azure-5.4.0/net/ipv6/ip6_input.c linux-azure-5.4.0/net/ipv6/ip6_input.c --- linux-azure-5.4.0/net/ipv6/ip6_input.c +++ linux-azure-5.4.0/net/ipv6/ip6_input.c @@ -44,21 +44,25 @@ #include #include -INDIRECT_CALLABLE_DECLARE(void udp_v6_early_demux(struct sk_buff *)); -INDIRECT_CALLABLE_DECLARE(void tcp_v6_early_demux(struct sk_buff *)); +void udp_v6_early_demux(struct sk_buff *); +void tcp_v6_early_demux(struct sk_buff *); static void ip6_rcv_finish_core(struct net *net, struct sock *sk, struct sk_buff *skb) { - void (*edemux)(struct sk_buff *skb); - - if (net->ipv4.sysctl_ip_early_demux && !skb_dst(skb) && skb->sk == NULL) { - const struct inet6_protocol *ipprot; - - ipprot = rcu_dereference(inet6_protos[ipv6_hdr(skb)->nexthdr]); - if (ipprot && (edemux = READ_ONCE(ipprot->early_demux))) - INDIRECT_CALL_2(edemux, tcp_v6_early_demux, - udp_v6_early_demux, skb); + if (READ_ONCE(net->ipv4.sysctl_ip_early_demux) && + !skb_dst(skb) && !skb->sk) { + switch (ipv6_hdr(skb)->nexthdr) { + case IPPROTO_TCP: + if (READ_ONCE(net->ipv4.sysctl_tcp_early_demux)) + tcp_v6_early_demux(skb); + break; + case IPPROTO_UDP: + if (READ_ONCE(net->ipv4.sysctl_udp_early_demux)) + udp_v6_early_demux(skb); + break; + } } + if (!skb_valid_dst(skb)) ip6_route_input(skb); } @@ -485,7 +489,7 @@ /* * IPv6 multicast router mode is now supported ;) */ - if (dev_net(skb->dev)->ipv6.devconf_all->mc_forwarding && + if (atomic_read(&dev_net(skb->dev)->ipv6.devconf_all->mc_forwarding) && !(ipv6_addr_type(&hdr->daddr) & (IPV6_ADDR_LOOPBACK|IPV6_ADDR_LINKLOCAL)) && likely(!(IP6CB(skb)->flags & IP6SKB_FORWARDED))) { diff -u linux-azure-5.4.0/net/ipv6/ip6_output.c linux-azure-5.4.0/net/ipv6/ip6_output.c --- linux-azure-5.4.0/net/ipv6/ip6_output.c +++ linux-azure-5.4.0/net/ipv6/ip6_output.c @@ -59,10 +59,38 @@ { struct dst_entry *dst = skb_dst(skb); struct net_device *dev = dst->dev; + unsigned int hh_len = LL_RESERVED_SPACE(dev); + int delta = hh_len - skb_headroom(skb); const struct in6_addr *nexthop; struct neighbour *neigh; int ret; + /* Be paranoid, rather than too clever. */ + if (unlikely(delta > 0) && dev->header_ops) { + /* pskb_expand_head() might crash, if skb is shared */ + if (skb_shared(skb)) { + struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC); + + if (likely(nskb)) { + if (skb->sk) + skb_set_owner_w(nskb, skb->sk); + consume_skb(skb); + } else { + kfree_skb(skb); + } + skb = nskb; + } + if (skb && + pskb_expand_head(skb, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) { + kfree_skb(skb); + skb = NULL; + } + if (!skb) { + IP6_INC_STATS(net, ip6_dst_idev(dst), IPSTATS_MIB_OUTDISCARDS); + return -ENOMEM; + } + } + if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) { struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb)); @@ -164,7 +192,7 @@ #if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM) /* Policy lookup after SNAT yielded a new policy */ if (skb_dst(skb)->xfrm) { - IPCB(skb)->flags |= IPSKB_REROUTED; + IP6CB(skb)->flags |= IP6SKB_REROUTED; return dst_output(net, sk, skb); } #endif @@ -477,7 +505,9 @@ if (skb_warn_if_lro(skb)) goto drop; - if (!xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) { + if (!net->ipv6.devconf_all->disable_policy && + (!idev || !idev->cnf.disable_policy) && + !xfrm6_policy_check(NULL, XFRM_POLICY_FWD, skb)) { __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDISCARDS); goto drop; } @@ -1331,8 +1361,6 @@ if (np->frag_size) mtu = np->frag_size; } - if (mtu < IPV6_MIN_MTU) - return -EINVAL; cork->base.fragsize = mtu; cork->base.gso_size = ipc6->gso_size; cork->base.tx_flags = 0; @@ -1394,8 +1422,6 @@ fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len + (opt ? opt->opt_nflen : 0); - maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - - sizeof(struct frag_hdr); headersize = sizeof(struct ipv6hdr) + (opt ? opt->opt_flen + opt->opt_nflen : 0) + @@ -1403,6 +1429,13 @@ sizeof(struct frag_hdr) : 0) + rt->rt6i_nfheader_len; + if (mtu <= fragheaderlen || + ((mtu - fragheaderlen) & ~7) + fragheaderlen <= sizeof(struct frag_hdr)) + goto emsgsize; + + maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen - + sizeof(struct frag_hdr); + /* as per RFC 7112 section 5, the entire IPv6 Header Chain must fit * the first fragment */ @@ -1484,7 +1517,7 @@ unsigned int datalen; unsigned int fraglen; unsigned int fraggap; - unsigned int alloclen; + unsigned int alloclen, alloc_extra; unsigned int pagedlen; alloc_new_skb: /* There's no room in the current skb */ @@ -1511,17 +1544,28 @@ fraglen = datalen + fragheaderlen; pagedlen = 0; + alloc_extra = hh_len; + alloc_extra += dst_exthdrlen; + alloc_extra += rt->dst.trailer_len; + + /* We just reserve space for fragment header. + * Note: this may be overallocation if the message + * (without MSG_MORE) fits into the MTU. + */ + alloc_extra += sizeof(struct frag_hdr); + if ((flags & MSG_MORE) && !(rt->dst.dev->features&NETIF_F_SG)) alloclen = mtu; - else if (!paged) + else if (!paged && + (fraglen + alloc_extra < SKB_MAX_ALLOC || + !(rt->dst.dev->features & NETIF_F_SG))) alloclen = fraglen; else { alloclen = min_t(int, fraglen, MAX_HEADER); pagedlen = fraglen - alloclen; } - - alloclen += dst_exthdrlen; + alloclen += alloc_extra; if (datalen != length + fraggap) { /* @@ -1531,30 +1575,21 @@ datalen += rt->dst.trailer_len; } - alloclen += rt->dst.trailer_len; fraglen = datalen + fragheaderlen; - /* - * We just reserve space for fragment header. - * Note: this may be overallocation if the message - * (without MSG_MORE) fits into the MTU. - */ - alloclen += sizeof(struct frag_hdr); - copy = datalen - transhdrlen - fraggap - pagedlen; if (copy < 0) { err = -EINVAL; goto error; } if (transhdrlen) { - skb = sock_alloc_send_skb(sk, - alloclen + hh_len, + skb = sock_alloc_send_skb(sk, alloclen, (flags & MSG_DONTWAIT), &err); } else { skb = NULL; if (refcount_read(&sk->sk_wmem_alloc) + wmem_alloc_delta <= 2 * sk->sk_sndbuf) - skb = alloc_skb(alloclen + hh_len, + skb = alloc_skb(alloclen, sk->sk_allocation); if (unlikely(!skb)) err = -ENOBUFS; diff -u linux-azure-5.4.0/net/ipv6/ip6_tunnel.c linux-azure-5.4.0/net/ipv6/ip6_tunnel.c --- linux-azure-5.4.0/net/ipv6/ip6_tunnel.c +++ linux-azure-5.4.0/net/ipv6/ip6_tunnel.c @@ -1000,14 +1000,14 @@ if (unlikely(!ipv6_chk_addr_and_flags(net, laddr, ldev, false, 0, IFA_F_TENTATIVE))) - pr_warn("%s xmit: Local address not yet configured!\n", - p->name); + pr_warn_ratelimited("%s xmit: Local address not yet configured!\n", + p->name); else if (!(p->flags & IP6_TNL_F_ALLOW_LOCAL_REMOTE) && !ipv6_addr_is_multicast(raddr) && unlikely(ipv6_chk_addr_and_flags(net, raddr, ldev, true, 0, IFA_F_TENTATIVE))) - pr_warn("%s xmit: Routing loop! Remote address found on this node!\n", - p->name); + pr_warn_ratelimited("%s xmit: Routing loop! Remote address found on this node!\n", + p->name); else ret = 1; rcu_read_unlock(); diff -u linux-azure-5.4.0/net/ipv6/ip6_vti.c linux-azure-5.4.0/net/ipv6/ip6_vti.c --- linux-azure-5.4.0/net/ipv6/ip6_vti.c +++ linux-azure-5.4.0/net/ipv6/ip6_vti.c @@ -794,6 +794,8 @@ struct net *net = dev_net(dev); struct vti6_net *ip6n = net_generic(net, vti6_net_id); + memset(&p1, 0, sizeof(p1)); + switch (cmd) { case SIOCGETTUNNEL: if (dev == ip6n->fb_tnl_dev) { diff -u linux-azure-5.4.0/net/ipv6/ip6mr.c linux-azure-5.4.0/net/ipv6/ip6mr.c --- linux-azure-5.4.0/net/ipv6/ip6mr.c +++ linux-azure-5.4.0/net/ipv6/ip6mr.c @@ -246,7 +246,9 @@ return 0; err2: + rtnl_lock(); ip6mr_free_table(mrt); + rtnl_unlock(); err1: fib_rules_unregister(ops); return err; @@ -734,7 +736,7 @@ in6_dev = __in6_dev_get(dev); if (in6_dev) { - in6_dev->cnf.mc_forwarding--; + atomic_dec(&in6_dev->cnf.mc_forwarding); inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, NETCONFA_MC_FORWARDING, dev->ifindex, &in6_dev->cnf); @@ -902,7 +904,7 @@ in6_dev = __in6_dev_get(dev); if (in6_dev) { - in6_dev->cnf.mc_forwarding++; + atomic_inc(&in6_dev->cnf.mc_forwarding); inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, NETCONFA_MC_FORWARDING, dev->ifindex, &in6_dev->cnf); @@ -1551,7 +1553,7 @@ } else { rcu_assign_pointer(mrt->mroute_sk, sk); sock_set_flag(sk, SOCK_RCU_FREE); - net->ipv6.devconf_all->mc_forwarding++; + atomic_inc(&net->ipv6.devconf_all->mc_forwarding); } write_unlock_bh(&mrt_lock); @@ -1584,7 +1586,7 @@ * so the RCU grace period before sk freeing * is guaranteed by sk_destruct() */ - net->ipv6.devconf_all->mc_forwarding--; + atomic_dec(&net->ipv6.devconf_all->mc_forwarding); write_unlock_bh(&mrt_lock); inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_MC_FORWARDING, diff -u linux-azure-5.4.0/net/ipv6/ipv6_sockglue.c linux-azure-5.4.0/net/ipv6/ipv6_sockglue.c --- linux-azure-5.4.0/net/ipv6/ipv6_sockglue.c +++ linux-azure-5.4.0/net/ipv6/ipv6_sockglue.c @@ -164,6 +164,12 @@ rtnl_lock(); lock_sock(sk); + /* Another thread has converted the socket into IPv4 with + * IPV6_ADDRFORM concurrently. + */ + if (unlikely(sk->sk_family != AF_INET6)) + goto unlock; + switch (optname) { case IPV6_ADDRFORM: @@ -220,8 +226,11 @@ sock_prot_inuse_add(net, sk->sk_prot, -1); sock_prot_inuse_add(net, &tcp_prot, 1); local_bh_enable(); - sk->sk_prot = &tcp_prot; - icsk->icsk_af_ops = &ipv4_specific; + + /* Paired with READ_ONCE(sk->sk_prot) in inet6_stream_ops */ + WRITE_ONCE(sk->sk_prot, &tcp_prot); + /* Paired with READ_ONCE() in tcp_(get|set)sockopt() */ + WRITE_ONCE(icsk->icsk_af_ops, &ipv4_specific); sk->sk_socket->ops = &inet_stream_ops; sk->sk_family = PF_INET; tcp_sync_mss(sk, icsk->icsk_pmtu_cookie); @@ -234,7 +243,9 @@ sock_prot_inuse_add(net, sk->sk_prot, -1); sock_prot_inuse_add(net, prot, 1); local_bh_enable(); - sk->sk_prot = prot; + + /* Paired with READ_ONCE(sk->sk_prot) in inet6_dgram_ops */ + WRITE_ONCE(sk->sk_prot, prot); sk->sk_socket->ops = &inet_dgram_ops; sk->sk_family = PF_INET; } @@ -924,6 +935,7 @@ break; } +unlock: release_sock(sk); if (needs_rtnl) rtnl_unlock(); diff -u linux-azure-5.4.0/net/ipv6/netfilter/ip6_tables.c linux-azure-5.4.0/net/ipv6/netfilter/ip6_tables.c --- linux-azure-5.4.0/net/ipv6/netfilter/ip6_tables.c +++ linux-azure-5.4.0/net/ipv6/netfilter/ip6_tables.c @@ -273,6 +273,7 @@ * things we don't know, ie. tcp syn flag or ports). If the * rule is also a fragment-specific rule, non-fragments won't * match it. */ + acpar.fragoff = 0; acpar.hotdrop = false; acpar.state = state; diff -u linux-azure-5.4.0/net/ipv6/route.c linux-azure-5.4.0/net/ipv6/route.c --- linux-azure-5.4.0/net/ipv6/route.c +++ linux-azure-5.4.0/net/ipv6/route.c @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include @@ -1502,17 +1503,24 @@ static u32 rt6_exception_hash(const struct in6_addr *dst, const struct in6_addr *src) { - static u32 seed __read_mostly; - u32 val; + static siphash_key_t rt6_exception_key __read_mostly; + struct { + struct in6_addr dst; + struct in6_addr src; + } __aligned(SIPHASH_ALIGNMENT) combined = { + .dst = *dst, + }; + u64 val; - net_get_random_once(&seed, sizeof(seed)); - val = jhash(dst, sizeof(*dst), seed); + net_get_random_once(&rt6_exception_key, sizeof(rt6_exception_key)); #ifdef CONFIG_IPV6_SUBTREES if (src) - val = jhash(src, sizeof(*src), val); + combined.src = *src; #endif - return hash_32(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT); + val = siphash(&combined, sizeof(combined), &rt6_exception_key); + + return hash_64(val, FIB6_EXCEPTION_BUCKET_SIZE_SHIFT); } /* Helper function to find the cached rt in the hash table @@ -1667,6 +1675,7 @@ struct in6_addr *src_key = NULL; struct rt6_exception *rt6_ex; struct fib6_nh *nh = res->nh; + int max_depth; int err = 0; spin_lock_bh(&rt6_exception_lock); @@ -1721,7 +1730,9 @@ bucket->depth++; net->ipv6.rt6_stats->fib_rt_cache++; - if (bucket->depth > FIB6_MAX_DEPTH) + /* Randomize max depth to avoid some side channels attacks. */ + max_depth = FIB6_MAX_DEPTH + prandom_u32_max(FIB6_MAX_DEPTH); + while (bucket->depth > max_depth) rt6_exception_remove_oldest(bucket); out: @@ -2686,7 +2697,7 @@ if (from) { fn = rcu_dereference(from->fib6_node); if (fn && (rt->rt6i_flags & RTF_DEFAULT)) - fn->fn_sernum = -1; + WRITE_ONCE(fn->fn_sernum, -1); } } rcu_read_unlock(); @@ -3574,6 +3585,25 @@ fib_nh_common_release(&fib6_nh->nh_common); } +void fib6_nh_release_dsts(struct fib6_nh *fib6_nh) +{ + int cpu; + + if (!fib6_nh->rt6i_pcpu) + return; + + for_each_possible_cpu(cpu) { + struct rt6_info *pcpu_rt, **ppcpu_rt; + + ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu); + pcpu_rt = xchg(ppcpu_rt, NULL); + if (pcpu_rt) { + dst_dev_put(&pcpu_rt->dst); + dst_release(&pcpu_rt->dst); + } + } +} + static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack) @@ -3655,7 +3685,7 @@ err = PTR_ERR(rt->fib6_metrics); /* Do not leave garbage there. */ rt->fib6_metrics = (struct dst_metrics *)&dst_default_metrics; - goto out; + goto out_free; } if (cfg->fc_flags & RTF_ADDRCONF) @@ -3688,11 +3718,11 @@ if (nh) { if (rt->fib6_src.plen) { NL_SET_ERR_MSG(extack, "Nexthops can not be used with source routing"); - goto out; + goto out_free; } if (!nexthop_get(nh)) { NL_SET_ERR_MSG(extack, "Nexthop has been deleted"); - goto out; + goto out_free; } rt->nh = nh; fib6_nh = nexthop_fib6_nh(rt->nh); @@ -3729,6 +3759,10 @@ out: fib6_info_release(rt); return ERR_PTR(err); +out_free: + ip_fib_metrics_put(rt->fib6_metrics); + kfree(rt); + return ERR_PTR(err); } int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags, @@ -4369,7 +4403,7 @@ struct inet6_dev *idev; int type; - if (netif_is_l3_master(skb->dev) && + if (netif_is_l3_master(skb->dev) || dst->dev == net->loopback_dev) idev = __in6_dev_get_safely(dev_get_by_index_rcu(net, IP6CB(skb)->iif)); else @@ -4449,8 +4483,15 @@ } f6i = ip6_route_info_create(&cfg, gfp_flags, NULL); - if (!IS_ERR(f6i)) + if (!IS_ERR(f6i)) { f6i->dst_nocount = true; + + if (!anycast && + (net->ipv6.devconf_all->disable_policy || + idev->cnf.disable_policy)) + f6i->dst_nopolicy = true; + } + return f6i; } @@ -5058,6 +5099,19 @@ inet6_rt_notify(RTM_NEWROUTE, rt, info, nlflags); } +static int fib6_gw_from_attr(struct in6_addr *gw, struct nlattr *nla, + struct netlink_ext_ack *extack) +{ + if (nla_len(nla) < sizeof(*gw)) { + NL_SET_ERR_MSG(extack, "Invalid IPv6 address in RTA_GATEWAY"); + return -EINVAL; + } + + *gw = nla_get_in6_addr(nla); + + return 0; +} + static int ip6_route_multipath_add(struct fib6_config *cfg, struct netlink_ext_ack *extack) { @@ -5099,10 +5153,18 @@ nla = nla_find(attrs, attrlen, RTA_GATEWAY); if (nla) { - r_cfg.fc_gateway = nla_get_in6_addr(nla); + err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, + extack); + if (err) + goto cleanup; + r_cfg.fc_flags |= RTF_GATEWAY; } r_cfg.fc_encap = nla_find(attrs, attrlen, RTA_ENCAP); + + /* RTA_ENCAP_TYPE length checked in + * lwtunnel_valid_encap_type_attr + */ nla = nla_find(attrs, attrlen, RTA_ENCAP_TYPE); if (nla) r_cfg.fc_encap_type = nla_get_u16(nla); @@ -5254,7 +5316,13 @@ nla = nla_find(attrs, attrlen, RTA_GATEWAY); if (nla) { - nla_memcpy(&r_cfg.fc_gateway, nla, 16); + err = fib6_gw_from_attr(&r_cfg.fc_gateway, nla, + extack); + if (err) { + last_err = err; + goto next_rtnh; + } + r_cfg.fc_flags |= RTF_GATEWAY; } } @@ -5262,6 +5330,7 @@ if (err) last_err = err; +next_rtnh: rtnh = rtnh_next(rtnh, &remaining); } @@ -5516,14 +5585,15 @@ goto nla_put_failure; if (fib_add_nexthop(skb, &rt->fib6_nh->nh_common, - rt->fib6_nh->fib_nh_weight, AF_INET6) < 0) + rt->fib6_nh->fib_nh_weight, AF_INET6, + 0) < 0) goto nla_put_failure; list_for_each_entry_safe(sibling, next_sibling, &rt->fib6_siblings, fib6_siblings) { if (fib_add_nexthop(skb, &sibling->fib6_nh->nh_common, sibling->fib6_nh->fib_nh_weight, - AF_INET6) < 0) + AF_INET6, 0) < 0) goto nla_put_failure; } @@ -6289,10 +6359,16 @@ static int __net_init ip6_route_net_init_late(struct net *net) { #ifdef CONFIG_PROC_FS - proc_create_net("ipv6_route", 0, net->proc_net, &ipv6_route_seq_ops, - sizeof(struct ipv6_route_iter)); - proc_create_net_single("rt6_stats", 0444, net->proc_net, - rt6_stats_seq_show, NULL); + if (!proc_create_net("ipv6_route", 0, net->proc_net, + &ipv6_route_seq_ops, + sizeof(struct ipv6_route_iter))) + return -ENOMEM; + + if (!proc_create_net_single("rt6_stats", 0444, net->proc_net, + rt6_stats_seq_show, NULL)) { + remove_proc_entry("ipv6_route", net->proc_net); + return -ENOMEM; + } #endif return 0; } diff -u linux-azure-5.4.0/net/ipv6/seg6_local.c linux-azure-5.4.0/net/ipv6/seg6_local.c --- linux-azure-5.4.0/net/ipv6/seg6_local.c +++ linux-azure-5.4.0/net/ipv6/seg6_local.c @@ -421,7 +421,6 @@ if (err) goto drop; - ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr)); skb_set_transport_header(skb, sizeof(struct ipv6hdr)); seg6_lookup_nexthop(skb, NULL, 0); @@ -453,7 +452,6 @@ if (err) goto drop; - ipv6_hdr(skb)->payload_len = htons(skb->len - sizeof(struct ipv6hdr)); skb_set_transport_header(skb, sizeof(struct ipv6hdr)); seg6_lookup_nexthop(skb, NULL, 0); diff -u linux-azure-5.4.0/net/ipv6/sit.c linux-azure-5.4.0/net/ipv6/sit.c --- linux-azure-5.4.0/net/ipv6/sit.c +++ linux-azure-5.4.0/net/ipv6/sit.c @@ -310,9 +310,7 @@ kcalloc(cmax, sizeof(*kp), GFP_KERNEL | __GFP_NOWARN) : NULL; - rcu_read_lock(); - - ca = t->prl_count < cmax ? t->prl_count : cmax; + ca = min(t->prl_count, cmax); if (!kp) { /* We don't try hard to allocate much memory for @@ -327,7 +325,7 @@ } } - c = 0; + rcu_read_lock(); for_each_prl_rcu(t->prl) { if (c >= cmax) break; @@ -339,7 +337,7 @@ if (kprl.addr != htonl(INADDR_ANY)) break; } -out: + rcu_read_unlock(); len = sizeof(*kp) * c; @@ -348,7 +346,7 @@ ret = -EFAULT; kfree(kp); - +out: return ret; } @@ -1876,7 +1874,6 @@ return 0; err_reg_dev: - ipip6_dev_free(sitn->fb_tunnel_dev); free_netdev(sitn->fb_tunnel_dev); err_alloc_dev: return err; diff -u linux-azure-5.4.0/net/ipv6/syncookies.c linux-azure-5.4.0/net/ipv6/syncookies.c --- linux-azure-5.4.0/net/ipv6/syncookies.c +++ linux-azure-5.4.0/net/ipv6/syncookies.c @@ -141,7 +141,8 @@ __u8 rcv_wscale; u32 tsoff = 0; - if (!sock_net(sk)->ipv4.sysctl_tcp_syncookies || !th->ack || th->rst) + if (!READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_syncookies) || + !th->ack || th->rst) goto out; if (tcp_synq_no_recent_overflow(sk)) @@ -176,6 +177,7 @@ ireq = inet_rsk(req); treq = tcp_rsk(req); + treq->af_specific = &tcp_request_sock_ipv6_ops; treq->tfo_listener = false; if (security_inet_conn_request(sk, skb, req)) diff -u linux-azure-5.4.0/net/ipv6/tcp_ipv6.c linux-azure-5.4.0/net/ipv6/tcp_ipv6.c --- linux-azure-5.4.0/net/ipv6/tcp_ipv6.c +++ linux-azure-5.4.0/net/ipv6/tcp_ipv6.c @@ -106,7 +106,7 @@ if (dst && dst_hold_safe(dst)) { const struct rt6_info *rt = (const struct rt6_info *)dst; - sk->sk_rx_dst = dst; + rcu_assign_pointer(sk->sk_rx_dst, dst); inet_sk(sk)->rx_dst_ifindex = skb->skb_iif; tcp_inet6_sk(sk)->rx_dst_cookie = rt6_get_cookie(rt); } @@ -236,7 +236,8 @@ sin.sin_port = usin->sin6_port; sin.sin_addr.s_addr = usin->sin6_addr.s6_addr32[3]; - icsk->icsk_af_ops = &ipv6_mapped; + /* Paired with READ_ONCE() in tcp_(get|set)sockopt() */ + WRITE_ONCE(icsk->icsk_af_ops, &ipv6_mapped); sk->sk_backlog_rcv = tcp_v4_do_rcv; #ifdef CONFIG_TCP_MD5SIG tp->af_specific = &tcp_sock_ipv6_mapped_specific; @@ -246,7 +247,8 @@ if (err) { icsk->icsk_ext_hdr_len = exthdrlen; - icsk->icsk_af_ops = &ipv6_specific; + /* Paired with READ_ONCE() in tcp_(get|set)sockopt() */ + WRITE_ONCE(icsk->icsk_af_ops, &ipv6_specific); sk->sk_backlog_rcv = tcp_v6_do_rcv; #ifdef CONFIG_TCP_MD5SIG tp->af_specific = &tcp_sock_ipv6_specific; @@ -343,11 +345,20 @@ static void tcp_v6_mtu_reduced(struct sock *sk) { struct dst_entry *dst; + u32 mtu; if ((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) return; - dst = inet6_csk_update_pmtu(sk, tcp_sk(sk)->mtu_info); + mtu = READ_ONCE(tcp_sk(sk)->mtu_info); + + /* Drop requests trying to increase our current mss. + * Check done in __ip6_rt_update_pmtu() is too late. + */ + if (tcp_mtu_to_mss(sk, mtu) >= tcp_sk(sk)->mss_cache) + return; + + dst = inet6_csk_update_pmtu(sk, mtu); if (!dst) return; @@ -428,6 +439,8 @@ } if (type == ICMPV6_PKT_TOOBIG) { + u32 mtu = ntohl(info); + /* We are not interested in TCP_LISTEN and open_requests * (SYN-ACKs send out by Linux are always <576bytes so * they should go through unfragmented). @@ -438,7 +451,11 @@ if (!ip6_sk_accept_pmtu(sk)) goto out; - tp->mtu_info = ntohl(info); + if (mtu < IPV6_MIN_MTU) + goto out; + + WRITE_ONCE(tp->mtu_info, mtu); + if (!sock_owned_by_user(sk)) tcp_v6_mtu_reduced(sk); else if (!test_and_set_bit(TCP_MTU_REDUCED_DEFERRED, @@ -513,8 +530,8 @@ opt = ireq->ipv6_opt; if (!opt) opt = rcu_dereference(np->opt); - err = ip6_xmit(sk, skb, fl6, sk->sk_mark, opt, np->tclass, - sk->sk_priority); + err = ip6_xmit(sk, skb, fl6, skb->mark ? : sk->sk_mark, opt, + np->tclass, sk->sk_priority); rcu_read_unlock(); err = net_xmit_eval(err); } @@ -785,7 +802,7 @@ .syn_ack_timeout = tcp_syn_ack_timeout, }; -static const struct tcp_request_sock_ops tcp_request_sock_ipv6_ops = { +const struct tcp_request_sock_ops tcp_request_sock_ipv6_ops = { .mss_clamp = IPV6_MIN_MTU - sizeof(struct tcphdr) - sizeof(struct ipv6hdr), #ifdef CONFIG_TCP_MD5SIG @@ -1127,6 +1144,7 @@ const struct ipv6_pinfo *np = tcp_inet6_sk(sk); struct ipv6_txoptions *opt; struct inet_sock *newinet; + bool found_dup_sk = false; struct tcp_sock *newtp; struct sock *newsk; #ifdef CONFIG_TCP_MD5SIG @@ -1293,7 +1311,8 @@ tcp_done(newsk); goto out; } - *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash)); + *own_req = inet_ehash_nolisten(newsk, req_to_sk(req_unhash), + &found_dup_sk); if (*own_req) { tcp_move_syn(newtp, req); @@ -1308,6 +1327,15 @@ skb_set_owner_r(newnp->pktoptions, newsk); } } + } else { + if (!req_unhash && found_dup_sk) { + /* This code path should only be executed in the + * syncookie case only + */ + bh_unlock_sock(newsk); + sock_put(newsk); + newsk = NULL; + } } return newsk; @@ -1368,15 +1396,18 @@ opt_skb = skb_clone(skb, sk_gfp_mask(sk, GFP_ATOMIC)); if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */ - struct dst_entry *dst = sk->sk_rx_dst; + struct dst_entry *dst; + + dst = rcu_dereference_protected(sk->sk_rx_dst, + lockdep_sock_is_held(sk)); sock_rps_save_rxhash(sk, skb); sk_mark_napi_id(sk, skb); if (dst) { if (inet_sk(sk)->rx_dst_ifindex != skb->skb_iif || dst->ops->check(dst, np->rx_dst_cookie) == NULL) { + RCU_INIT_POINTER(sk->sk_rx_dst, NULL); dst_release(dst); - sk->sk_rx_dst = NULL; } } @@ -1700,7 +1731,7 @@ goto discard_it; } -INDIRECT_CALLABLE_SCOPE void tcp_v6_early_demux(struct sk_buff *skb) +void tcp_v6_early_demux(struct sk_buff *skb) { const struct ipv6hdr *hdr; const struct tcphdr *th; @@ -1727,7 +1758,7 @@ skb->sk = sk; skb->destructor = sock_edemux; if (sk_fullsock(sk)) { - struct dst_entry *dst = READ_ONCE(sk->sk_rx_dst); + struct dst_entry *dst = rcu_dereference(sk->sk_rx_dst); if (dst) dst = dst_check(dst, tcp_inet6_sk(sk)->rx_dst_cookie); @@ -2055,12 +2086,7 @@ .diag_destroy = tcp_abort, }; -/* thinking of making this const? Don't. - * early_demux can change based on sysctl. - */ -static struct inet6_protocol tcpv6_protocol = { - .early_demux = tcp_v6_early_demux, - .early_demux_handler = tcp_v6_early_demux, +static const struct inet6_protocol tcpv6_protocol = { .handler = tcp_v6_rcv, .err_handler = tcp_v6_err, .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, diff -u linux-azure-5.4.0/net/ipv6/udp.c linux-azure-5.4.0/net/ipv6/udp.c --- linux-azure-5.4.0/net/ipv6/udp.c +++ linux-azure-5.4.0/net/ipv6/udp.c @@ -133,7 +133,8 @@ dev_match = udp_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif); if (!dev_match) return -1; - score++; + if (sk->sk_bound_dev_if) + score++; if (READ_ONCE(sk->sk_incoming_cpu) == raw_smp_processor_id()) score++; @@ -888,7 +889,7 @@ struct dst_entry *dst = skb_dst(skb); int ret; - if (unlikely(sk->sk_rx_dst != dst)) + if (unlikely(rcu_dereference(sk->sk_rx_dst) != dst)) udp6_sk_rx_dst_set(sk, dst); if (!uh->check && !udp_sk(sk)->no_check6_rx) { @@ -972,7 +973,7 @@ return NULL; } -INDIRECT_CALLABLE_SCOPE void udp_v6_early_demux(struct sk_buff *skb) +void udp_v6_early_demux(struct sk_buff *skb) { struct net *net = dev_net(skb->dev); const struct udphdr *uh; @@ -1000,7 +1001,7 @@ skb->sk = sk; skb->destructor = sock_efree; - dst = READ_ONCE(sk->sk_rx_dst); + dst = rcu_dereference(sk->sk_rx_dst); if (dst) dst = dst_check(dst, inet6_sk(sk)->rx_dst_cookie); @@ -1131,7 +1132,7 @@ kfree_skb(skb); return -EINVAL; } - if (skb->len > cork->gso_size * UDP_MAX_SEGMENTS) { + if (datalen > cork->gso_size * UDP_MAX_SEGMENTS) { kfree_skb(skb); return -EINVAL; } @@ -1231,13 +1232,13 @@ int addr_len = msg->msg_namelen; bool connected = false; int ulen = len; - int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; + int corkreq = READ_ONCE(up->corkflag) || msg->msg_flags&MSG_MORE; int err; int is_udplite = IS_UDPLITE(sk); int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); ipcm6_init(&ipc6); - ipc6.gso_size = up->gso_size; + ipc6.gso_size = READ_ONCE(up->gso_size); ipc6.sockc.tsflags = sk->sk_tsflags; ipc6.sockc.mark = sk->sk_mark; @@ -1362,7 +1363,6 @@ if (!fl6.flowi6_oif) fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex; - fl6.flowi6_mark = ipc6.sockc.mark; fl6.flowi6_uid = sk->sk_uid; if (msg->msg_controllen) { @@ -1398,6 +1398,7 @@ ipc6.opt = opt; fl6.flowi6_proto = sk->sk_protocol; + fl6.flowi6_mark = ipc6.sockc.mark; fl6.daddr = *daddr; if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr)) fl6.saddr = np->saddr; @@ -1539,6 +1540,9 @@ { struct udp_sock *up = udp_sk(sk); lock_sock(sk); + + /* protects from races with udp_abort() */ + sock_set_flag(sk, SOCK_DEAD); udp_v6_flush_pending_frames(sk); release_sock(sk); @@ -1549,8 +1553,10 @@ if (encap_destroy) encap_destroy(sk); } - if (up->encap_enabled) + if (up->encap_enabled) { static_branch_dec(&udpv6_encap_needed_key); + udp_encap_disable(); + } } inet6_destroy_sock(sk); @@ -1597,12 +1603,7 @@ } #endif -/* thinking of making this const? Don't. - * early_demux can change based on sysctl. - */ -static struct inet6_protocol udpv6_protocol = { - .early_demux = udp_v6_early_demux, - .early_demux_handler = udp_v6_early_demux, +static const struct inet6_protocol udpv6_protocol = { .handler = udpv6_rcv, .err_handler = udpv6_err, .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, diff -u linux-azure-5.4.0/net/ipv6/xfrm6_output.c linux-azure-5.4.0/net/ipv6/xfrm6_output.c --- linux-azure-5.4.0/net/ipv6/xfrm6_output.c +++ linux-azure-5.4.0/net/ipv6/xfrm6_output.c @@ -140,11 +140,24 @@ return __xfrm6_output_state_finish(x, sk, skb); } +static int xfrm6_noneed_fragment(struct sk_buff *skb) +{ + struct frag_hdr *fh; + u8 prevhdr = ipv6_hdr(skb)->nexthdr; + + if (prevhdr != NEXTHDR_FRAGMENT) + return 0; + fh = (struct frag_hdr *)(skb->data + sizeof(struct ipv6hdr)); + if (fh->nexthdr == NEXTHDR_ESP || fh->nexthdr == NEXTHDR_AUTH) + return 1; + return 0; +} + static int __xfrm6_output(struct net *net, struct sock *sk, struct sk_buff *skb) { struct dst_entry *dst = skb_dst(skb); struct xfrm_state *x = dst->xfrm; - int mtu; + unsigned int mtu; bool toobig; #ifdef CONFIG_NETFILTER @@ -168,6 +181,9 @@ xfrm6_local_rxpmtu(skb, mtu); kfree_skb(skb); return -EMSGSIZE; + } else if (toobig && xfrm6_noneed_fragment(skb)) { + skb->ignore_df = 1; + goto skip_frag; } else if (!skb->ignore_df && toobig && skb->sk) { xfrm_local_error(skb, mtu); kfree_skb(skb); diff -u linux-azure-5.4.0/net/key/af_key.c linux-azure-5.4.0/net/key/af_key.c --- linux-azure-5.4.0/net/key/af_key.c +++ linux-azure-5.4.0/net/key/af_key.c @@ -1701,9 +1701,12 @@ pfk->registered |= (1<sadb_msg_satype); } + mutex_lock(&pfkey_mutex); xfrm_probe_algs(); - supp_skb = compose_sadb_supported(hdr, GFP_KERNEL); + supp_skb = compose_sadb_supported(hdr, GFP_KERNEL | __GFP_ZERO); + mutex_unlock(&pfkey_mutex); + if (!supp_skb) { if (hdr->sadb_msg_satype != SADB_SATYPE_UNSPEC) pfk->registered &= ~(1<sadb_msg_satype); @@ -2627,7 +2630,7 @@ } return xfrm_migrate(&sel, dir, XFRM_POLICY_TYPE_MAIN, m, i, - kma ? &k : NULL, net, NULL); + kma ? &k : NULL, net, NULL, 0); out: return err; @@ -2902,7 +2905,7 @@ break; if (!aalg->pfkey_supported) continue; - if (aalg_tmpl_set(t, aalg)) + if (aalg_tmpl_set(t, aalg) && aalg->available) sz += sizeof(struct sadb_comb); } return sz + sizeof(struct sadb_prop); @@ -2920,7 +2923,7 @@ if (!ealg->pfkey_supported) continue; - if (!(ealg_tmpl_set(t, ealg))) + if (!(ealg_tmpl_set(t, ealg) && ealg->available)) continue; for (k = 1; ; k++) { @@ -2931,7 +2934,7 @@ if (!aalg->pfkey_supported) continue; - if (aalg_tmpl_set(t, aalg)) + if (aalg_tmpl_set(t, aalg) && aalg->available) sz += sizeof(struct sadb_comb); } } diff -u linux-azure-5.4.0/net/l2tp/l2tp_core.c linux-azure-5.4.0/net/l2tp/l2tp_core.c --- linux-azure-5.4.0/net/l2tp/l2tp_core.c +++ linux-azure-5.4.0/net/l2tp/l2tp_core.c @@ -886,8 +886,10 @@ } if (tunnel->version == L2TP_HDR_VER_3 && - l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr)) + l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr)) { + l2tp_session_dec_refcount(session); goto error; + } l2tp_recv_common(session, skb, ptr, optr, hdrflags, length); l2tp_session_dec_refcount(session); diff -u linux-azure-5.4.0/net/l2tp/l2tp_ip6.c linux-azure-5.4.0/net/l2tp/l2tp_ip6.c --- linux-azure-5.4.0/net/l2tp/l2tp_ip6.c +++ linux-azure-5.4.0/net/l2tp/l2tp_ip6.c @@ -515,14 +515,15 @@ struct ipcm6_cookie ipc6; int addr_len = msg->msg_namelen; int transhdrlen = 4; /* zero session-id */ - int ulen = len + transhdrlen; + int ulen; int err; /* Rough check on arithmetic overflow, better check is made in ip6_append_data(). */ - if (len > INT_MAX) + if (len > INT_MAX - transhdrlen) return -EMSGSIZE; + ulen = len + transhdrlen; /* Mirror BSD error message compatibility */ if (msg->msg_flags & MSG_OOB) diff -u linux-azure-5.4.0/net/llc/af_llc.c linux-azure-5.4.0/net/llc/af_llc.c --- linux-azure-5.4.0/net/llc/af_llc.c +++ linux-azure-5.4.0/net/llc/af_llc.c @@ -98,8 +98,16 @@ { u8 rc = LLC_PDU_LEN_U; - if (addr->sllc_test || addr->sllc_xid) + if (addr->sllc_test) rc = LLC_PDU_LEN_U; + else if (addr->sllc_xid) + /* We need to expand header to sizeof(struct llc_xid_info) + * since llc_pdu_init_as_xid_cmd() sets 4,5,6 bytes of LLC header + * as XID PDU. In llc_ui_sendmsg() we reserved header size and then + * filled all other space with user data. If we won't reserve this + * bytes, llc_pdu_init_as_xid_cmd() will overwrite user data + */ + rc = LLC_PDU_LEN_U_XID; else if (sk->sk_type == SOCK_STREAM) rc = LLC_PDU_LEN_I; return rc; @@ -268,6 +276,7 @@ { struct sock *sk = sock->sk; struct llc_sock *llc = llc_sk(sk); + struct net_device *dev = NULL; struct llc_sap *sap; int rc = -EINVAL; @@ -279,14 +288,14 @@ goto out; rc = -ENODEV; if (sk->sk_bound_dev_if) { - llc->dev = dev_get_by_index(&init_net, sk->sk_bound_dev_if); - if (llc->dev && addr->sllc_arphrd != llc->dev->type) { - dev_put(llc->dev); - llc->dev = NULL; + dev = dev_get_by_index(&init_net, sk->sk_bound_dev_if); + if (dev && addr->sllc_arphrd != dev->type) { + dev_put(dev); + dev = NULL; } } else - llc->dev = dev_getfirstbyhwtype(&init_net, addr->sllc_arphrd); - if (!llc->dev) + dev = dev_getfirstbyhwtype(&init_net, addr->sllc_arphrd); + if (!dev) goto out; rc = -EUSERS; llc->laddr.lsap = llc_ui_autoport(); @@ -296,6 +305,11 @@ sap = llc_sap_open(llc->laddr.lsap, NULL); if (!sap) goto out; + + /* Note: We do not expect errors from this point. */ + llc->dev = dev; + dev = NULL; + memcpy(llc->laddr.mac, llc->dev->dev_addr, IFHWADDRLEN); memcpy(&llc->addr, addr, sizeof(llc->addr)); /* assign new connection to its SAP */ @@ -303,6 +317,7 @@ sock_reset_flag(sk, SOCK_ZAPPED); rc = 0; out: + dev_put(dev); return rc; } @@ -325,6 +340,7 @@ struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr; struct sock *sk = sock->sk; struct llc_sock *llc = llc_sk(sk); + struct net_device *dev = NULL; struct llc_sap *sap; int rc = -EINVAL; @@ -340,25 +356,26 @@ rc = -ENODEV; rcu_read_lock(); if (sk->sk_bound_dev_if) { - llc->dev = dev_get_by_index_rcu(&init_net, sk->sk_bound_dev_if); - if (llc->dev) { + dev = dev_get_by_index_rcu(&init_net, sk->sk_bound_dev_if); + if (dev) { if (is_zero_ether_addr(addr->sllc_mac)) - memcpy(addr->sllc_mac, llc->dev->dev_addr, + memcpy(addr->sllc_mac, dev->dev_addr, IFHWADDRLEN); - if (addr->sllc_arphrd != llc->dev->type || + if (addr->sllc_arphrd != dev->type || !ether_addr_equal(addr->sllc_mac, - llc->dev->dev_addr)) { + dev->dev_addr)) { rc = -EINVAL; - llc->dev = NULL; + dev = NULL; } } - } else - llc->dev = dev_getbyhwaddr_rcu(&init_net, addr->sllc_arphrd, + } else { + dev = dev_getbyhwaddr_rcu(&init_net, addr->sllc_arphrd, addr->sllc_mac); - if (llc->dev) - dev_hold(llc->dev); + } + if (dev) + dev_hold(dev); rcu_read_unlock(); - if (!llc->dev) + if (!dev) goto out; if (!addr->sllc_sap) { rc = -EUSERS; @@ -391,6 +408,11 @@ goto out_put; } } + + /* Note: We do not expect errors from this point. */ + llc->dev = dev; + dev = NULL; + llc->laddr.lsap = addr->sllc_sap; memcpy(llc->laddr.mac, addr->sllc_mac, IFHWADDRLEN); memcpy(&llc->addr, addr, sizeof(llc->addr)); @@ -401,6 +423,7 @@ out_put: llc_sap_put(sap); out: + dev_put(dev); release_sock(sk); return rc; } diff -u linux-azure-5.4.0/net/mac80211/agg-tx.c linux-azure-5.4.0/net/mac80211/agg-tx.c --- linux-azure-5.4.0/net/mac80211/agg-tx.c +++ linux-azure-5.4.0/net/mac80211/agg-tx.c @@ -9,7 +9,7 @@ * Copyright 2007, Michael Wu * Copyright 2007-2010, Intel Corporation * Copyright(c) 2015-2017 Intel Deutschland GmbH - * Copyright (C) 2018 - 2019 Intel Corporation + * Copyright (C) 2018 - 2022 Intel Corporation */ #include @@ -106,7 +106,7 @@ mgmt->u.action.u.addba_req.start_seq_num = cpu_to_le16(start_seq_num << 4); - ieee80211_tx_skb(sdata, skb); + ieee80211_tx_skb_tid(sdata, skb, tid); } void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn) @@ -213,6 +213,8 @@ struct ieee80211_txq *txq = sta->sta.txq[tid]; struct txq_info *txqi; + lockdep_assert_held(&sta->ampdu_mlme.mtx); + if (!txq) return; @@ -290,7 +292,6 @@ ieee80211_assign_tid_tx(sta, tid, NULL); ieee80211_agg_splice_finish(sta->sdata, tid); - ieee80211_agg_start_txq(sta, tid, false); kfree_rcu(tid_tx, rcu_head); } @@ -448,6 +449,42 @@ ieee80211_stop_tx_ba_session(&sta->sta, tid); } +static void ieee80211_send_addba_with_timeout(struct sta_info *sta, + struct tid_ampdu_tx *tid_tx) +{ + struct ieee80211_sub_if_data *sdata = sta->sdata; + struct ieee80211_local *local = sta->local; + u8 tid = tid_tx->tid; + u16 buf_size; + + /* activate the timer for the recipient's addBA response */ + mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL); + ht_dbg(sdata, "activated addBA response timer on %pM tid %d\n", + sta->sta.addr, tid); + + spin_lock_bh(&sta->lock); + sta->ampdu_mlme.last_addba_req_time[tid] = jiffies; + sta->ampdu_mlme.addba_req_num[tid]++; + spin_unlock_bh(&sta->lock); + + if (sta->sta.he_cap.has_he) { + buf_size = local->hw.max_tx_aggregation_subframes; + } else { + /* + * We really should use what the driver told us it will + * transmit as the maximum, but certain APs (e.g. the + * LinkSys WRT120N with FW v1.0.07 build 002 Jun 18 2012) + * will crash when we use a lower number. + */ + buf_size = IEEE80211_MAX_AMPDU_BUF_HT; + } + + /* send AddBA request */ + ieee80211_send_addba_request(sdata, sta->sta.addr, tid, + tid_tx->dialog_token, tid_tx->ssn, + buf_size, tid_tx->timeout); +} + void ieee80211_tx_ba_session_handle_start(struct sta_info *sta, int tid) { struct tid_ampdu_tx *tid_tx; @@ -462,7 +499,6 @@ .timeout = 0, }; int ret; - u16 buf_size; tid_tx = rcu_dereference_protected_tid_tx(sta, tid); @@ -485,6 +521,7 @@ params.ssn = sta->tid_seq[tid] >> 4; ret = drv_ampdu_action(local, sdata, ¶ms); + tid_tx->ssn = params.ssn; if (ret == IEEE80211_AMPDU_TX_START_IMMEDIATE) { /* * We didn't send the request yet, so don't need to check @@ -508,32 +545,7 @@ return; } - /* activate the timer for the recipient's addBA response */ - mod_timer(&tid_tx->addba_resp_timer, jiffies + ADDBA_RESP_INTERVAL); - ht_dbg(sdata, "activated addBA response timer on %pM tid %d\n", - sta->sta.addr, tid); - - spin_lock_bh(&sta->lock); - sta->ampdu_mlme.last_addba_req_time[tid] = jiffies; - sta->ampdu_mlme.addba_req_num[tid]++; - spin_unlock_bh(&sta->lock); - - if (sta->sta.he_cap.has_he) { - buf_size = local->hw.max_tx_aggregation_subframes; - } else { - /* - * We really should use what the driver told us it will - * transmit as the maximum, but certain APs (e.g. the - * LinkSys WRT120N with FW v1.0.07 build 002 Jun 18 2012) - * will crash when we use a lower number. - */ - buf_size = IEEE80211_MAX_AMPDU_BUF_HT; - } - - /* send AddBA request */ - ieee80211_send_addba_request(sdata, sta->sta.addr, tid, - tid_tx->dialog_token, params.ssn, - buf_size, tid_tx->timeout); + ieee80211_send_addba_with_timeout(sta, tid_tx); } /* @@ -578,7 +590,8 @@ "Requested to start BA session on reserved tid=%d", tid)) return -EINVAL; - if (!pubsta->ht_cap.ht_supported) + if (!pubsta->ht_cap.ht_supported && + sta->sdata->vif.bss_conf.chandef.chan->band != NL80211_BAND_6GHZ) return -EINVAL; if (WARN_ON_ONCE(!local->ops->ampdu_action)) @@ -609,6 +622,14 @@ return -EINVAL; } + if (test_sta_flag(sta, WLAN_STA_MFP) && + !test_sta_flag(sta, WLAN_STA_AUTHORIZED)) { + ht_dbg(sdata, + "MFP STA not authorized - deny BA session request %pM tid %d\n", + sta->sta.addr, tid); + return -EINVAL; + } + /* * 802.11n-2009 11.5.1.1: If the initiating STA is an HT STA, is a * member of an IBSS, and has no other existing Block Ack agreement @@ -867,6 +888,7 @@ { struct ieee80211_sub_if_data *sdata = sta->sdata; bool send_delba = false; + bool start_txq = false; ht_dbg(sdata, "Stopping Tx BA session for %pM tid %d\n", sta->sta.addr, tid); @@ -884,10 +906,14 @@ send_delba = true; ieee80211_remove_tid_tx(sta, tid); + start_txq = true; unlock_sta: spin_unlock_bh(&sta->lock); + if (start_txq) + ieee80211_agg_start_txq(sta, tid, false); + if (send_delba) ieee80211_send_delba(sdata, sta->sta.addr, tid, WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE); diff -u linux-azure-5.4.0/net/mac80211/cfg.c linux-azure-5.4.0/net/mac80211/cfg.c --- linux-azure-5.4.0/net/mac80211/cfg.c +++ linux-azure-5.4.0/net/mac80211/cfg.c @@ -1949,13 +1949,11 @@ const struct mesh_setup *setup) { u8 *new_ie; - const u8 *old_ie; struct ieee80211_sub_if_data *sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh); /* allocate information elements */ new_ie = NULL; - old_ie = ifmsh->ie; if (setup->ie_len) { new_ie = kmemdup(setup->ie, setup->ie_len, @@ -1965,7 +1963,6 @@ } ifmsh->ie_len = setup->ie_len; ifmsh->ie = new_ie; - kfree(old_ie); /* now copy the rest of the setup parameters */ ifmsh->mesh_id_len = setup->mesh_id_len; @@ -3283,9 +3280,6 @@ case NL80211_IFTYPE_MESH_POINT: { struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; - if (params->chandef.width != sdata->vif.bss_conf.chandef.width) - return -EINVAL; - /* changes into another band are not supported */ if (sdata->vif.bss_conf.chandef.chan->band != params->chandef.chan->band) diff -u linux-azure-5.4.0/net/mac80211/ibss.c linux-azure-5.4.0/net/mac80211/ibss.c --- linux-azure-5.4.0/net/mac80211/ibss.c +++ linux-azure-5.4.0/net/mac80211/ibss.c @@ -542,6 +542,10 @@ sdata_assert_lock(sdata); + /* When not connected/joined, sending CSA doesn't make sense. */ + if (ifibss->state != IEEE80211_IBSS_MLME_JOINED) + return -ENOLINK; + /* update cfg80211 bss information with the new channel */ if (!is_zero_ether_addr(ifibss->bssid)) { cbss = cfg80211_get_bss(sdata->local->hw.wiphy, diff -u linux-azure-5.4.0/net/mac80211/ieee80211_i.h linux-azure-5.4.0/net/mac80211/ieee80211_i.h --- linux-azure-5.4.0/net/mac80211/ieee80211_i.h +++ linux-azure-5.4.0/net/mac80211/ieee80211_i.h @@ -1082,6 +1082,9 @@ * a scan complete for an aborted scan. * @SCAN_HW_CANCELLED: Set for our scan work function when the scan is being * cancelled. + * @SCAN_BEACON_WAIT: Set whenever we're passive scanning because of radar/no-IR + * and could send a probe request after receiving a beacon. + * @SCAN_BEACON_DONE: Beacon received, we can now send a probe request */ enum { SCAN_SW_SCANNING, @@ -1090,6 +1093,8 @@ SCAN_COMPLETED, SCAN_ABORTED, SCAN_HW_CANCELLED, + SCAN_BEACON_WAIT, + SCAN_BEACON_DONE, }; /** @@ -1420,7 +1425,7 @@ rcu_read_lock(); chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); - if (WARN_ON_ONCE(!chanctx_conf)) { + if (!chanctx_conf) { rcu_read_unlock(); return NULL; } @@ -1455,7 +1460,6 @@ const u8 *supp_rates; const u8 *ds_params; const struct ieee80211_tim_ie *tim; - const u8 *challenge; const u8 *rsn; const u8 *erp_info; const u8 *ext_supp_rates; @@ -1502,7 +1506,6 @@ u8 ssid_len; u8 supp_rates_len; u8 tim_len; - u8 challenge_len; u8 rsn_len; u8 ext_supp_rates_len; u8 wmm_info_len; @@ -1516,6 +1519,8 @@ u8 country_elem_len; u8 bssid_index_len; + void *nontx_profile; + /* whether a parse error occurred while retrieving these elements */ bool parse_error; }; diff -u linux-azure-5.4.0/net/mac80211/iface.c linux-azure-5.4.0/net/mac80211/iface.c --- linux-azure-5.4.0/net/mac80211/iface.c +++ linux-azure-5.4.0/net/mac80211/iface.c @@ -1875,9 +1875,16 @@ netdev_set_default_ethtool_ops(ndev, &ieee80211_ethtool_ops); - /* MTU range: 256 - 2304 */ + /* MTU range is normally 256 - 2304, where the upper limit is + * the maximum MSDU size. Monitor interfaces send and receive + * MPDU and A-MSDU frames which may be much larger so we do + * not impose an upper limit in that case. + */ ndev->min_mtu = 256; - ndev->max_mtu = local->hw.max_mtu; + if (type == NL80211_IFTYPE_MONITOR) + ndev->max_mtu = 0; + else + ndev->max_mtu = local->hw.max_mtu; ret = register_netdevice(ndev); if (ret) { diff -u linux-azure-5.4.0/net/mac80211/mesh_pathtbl.c linux-azure-5.4.0/net/mac80211/mesh_pathtbl.c --- linux-azure-5.4.0/net/mac80211/mesh_pathtbl.c +++ linux-azure-5.4.0/net/mac80211/mesh_pathtbl.c @@ -60,7 +60,10 @@ atomic_set(&newtbl->entries, 0); spin_lock_init(&newtbl->gates_lock); spin_lock_init(&newtbl->walk_lock); - rhashtable_init(&newtbl->rhead, &mesh_rht_params); + if (rhashtable_init(&newtbl->rhead, &mesh_rht_params)) { + kfree(newtbl); + return NULL; + } return newtbl; } diff -u linux-azure-5.4.0/net/mac80211/mlme.c linux-azure-5.4.0/net/mac80211/mlme.c --- linux-azure-5.4.0/net/mac80211/mlme.c +++ linux-azure-5.4.0/net/mac80211/mlme.c @@ -1014,11 +1014,6 @@ struct ieee80211_hdr_3addr *nullfunc; struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; - /* Don't send NDPs when STA is connected HE */ - if (sdata->vif.type == NL80211_IFTYPE_STATION && - !(ifmgd->flags & IEEE80211_STA_DISABLE_HE)) - return; - skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif, !ieee80211_hw_check(&local->hw, DOESNT_SUPPORT_QOS_NDP)); if (!skb) @@ -1050,10 +1045,6 @@ if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION)) return; - /* Don't send NDPs when connected HE */ - if (!(sdata->u.mgd.flags & IEEE80211_STA_DISABLE_HE)) - return; - skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30); if (!skb) return; @@ -2427,11 +2418,18 @@ u16 tx_time) { struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; - u16 tid = ieee80211_get_tid(hdr); - int ac = ieee80211_ac_from_tid(tid); - struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac]; + u16 tid; + int ac; + struct ieee80211_sta_tx_tspec *tx_tspec; unsigned long now = jiffies; + if (!ieee80211_is_data_qos(hdr->frame_control)) + return; + + tid = ieee80211_get_tid(hdr); + ac = ieee80211_ac_from_tid(tid); + tx_tspec = &ifmgd->tx_tspec[ac]; + if (likely(!tx_tspec->admitted_time)) return; @@ -2831,14 +2829,14 @@ { struct ieee80211_local *local = sdata->local; struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data; + const struct element *challenge; u8 *pos; - struct ieee802_11_elems elems; u32 tx_flags = 0; pos = mgmt->u.auth.variable; - ieee802_11_parse_elems(pos, len - (pos - (u8 *)mgmt), false, &elems, - mgmt->bssid, auth_data->bss->bssid); - if (!elems.challenge) + challenge = cfg80211_find_elem(WLAN_EID_CHALLENGE, pos, + len - (pos - (u8 *)mgmt)); + if (!challenge) return; auth_data->expected_transaction = 4; drv_mgd_prepare_tx(sdata->local, sdata, 0); @@ -2846,7 +2844,8 @@ tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS | IEEE80211_TX_INTFL_MLME_CONN_TX; ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0, - elems.challenge - 2, elems.challenge_len + 2, + (void *)challenge, + challenge->datalen + sizeof(*challenge), auth_data->bss->bssid, auth_data->bss->bssid, auth_data->key, auth_data->key_len, auth_data->key_idx, tx_flags); @@ -3225,7 +3224,7 @@ pos = mgmt->u.assoc_resp.variable; ieee802_11_parse_elems(pos, len - (pos - (u8 *)mgmt), false, &elems, - mgmt->bssid, assoc_data->bss->bssid); + mgmt->bssid, NULL); if (!elems.supp_rates) { sdata_info(sdata, "no SuppRates element in AssocResp\n"); @@ -3300,6 +3299,7 @@ sdata_info(sdata, "AP bug: VHT operation missing from AssocResp\n"); } + kfree(bss_elems.nontx_profile); } /* @@ -3408,6 +3408,12 @@ cbss->transmitted_bss->bssid); bss_conf->bssid_indicator = cbss->max_bssid_indicator; bss_conf->bssid_index = cbss->bssid_index; + } else { + bss_conf->nontransmitted = false; + memset(bss_conf->transmitter_bssid, 0, + sizeof(bss_conf->transmitter_bssid)); + bss_conf->bssid_indicator = 0; + bss_conf->bssid_index = 0; } /* @@ -3571,7 +3577,7 @@ pos = mgmt->u.assoc_resp.variable; ieee802_11_parse_elems(pos, len - (pos - (u8 *)mgmt), false, &elems, - mgmt->bssid, assoc_data->bss->bssid); + mgmt->bssid, NULL); if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY && elems.timeout_int && @@ -3878,6 +3884,7 @@ ifmgd->assoc_data->timeout = jiffies; ifmgd->assoc_data->timeout_started = true; run_again(sdata, ifmgd->assoc_data->timeout); + kfree(elems.nontx_profile); return; } @@ -4045,7 +4052,7 @@ ieee80211_report_disconnect(sdata, deauth_buf, sizeof(deauth_buf), true, WLAN_REASON_DEAUTH_LEAVING); - return; + goto free; } if (sta && elems.opmode_notif) @@ -4060,6 +4067,8 @@ elems.cisco_dtpc_elem); ieee80211_bss_info_change_notify(sdata, changed); +free: + kfree(elems.nontx_profile); } void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, @@ -4955,7 +4964,7 @@ */ if (new_sta) { u32 rates = 0, basic_rates = 0; - bool have_higher_than_11mbit; + bool have_higher_than_11mbit = false; int min_rate = INT_MAX, min_rate_index = -1; const struct cfg80211_bss_ies *ies; int shift = ieee80211_vif_get_shift(&sdata->vif); diff -u linux-azure-5.4.0/net/mac80211/rx.c linux-azure-5.4.0/net/mac80211/rx.c --- linux-azure-5.4.0/net/mac80211/rx.c +++ linux-azure-5.4.0/net/mac80211/rx.c @@ -1400,8 +1400,7 @@ goto dont_reorder; /* not part of a BA session */ - if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK && - ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL) + if (ack_policy == IEEE80211_QOS_CTL_ACK_POLICY_NOACK) goto dont_reorder; /* new, potentially un-ordered, ampdu frame - process it */ @@ -1918,7 +1917,8 @@ int keyid = rx->sta->ptk_idx; sta_ptk = rcu_dereference(rx->sta->ptk[keyid]); - if (ieee80211_has_protected(fc)) { + if (ieee80211_has_protected(fc) && + !(status->flag & RX_FLAG_IV_STRIPPED)) { cs = rx->sta->cipher_scheme; keyid = ieee80211_get_keyid(rx->skb, cs); @@ -2200,17 +2200,15 @@ sc = le16_to_cpu(hdr->seq_ctrl); frag = sc & IEEE80211_SCTL_FRAG; - if (is_multicast_ether_addr(hdr->addr1)) { - I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount); - goto out_no_led; - } - if (rx->sta) cache = &rx->sta->frags; if (likely(!ieee80211_has_morefrags(fc) && frag == 0)) goto out; + if (is_multicast_ether_addr(hdr->addr1)) + return RX_DROP_MONITOR; + I802_DEBUG_INC(rx->local->rx_handlers_fragments); if (skb_linearize(rx->skb)) @@ -2336,7 +2334,6 @@ out: ieee80211_led_rx(rx->local); - out_no_led: if (rx->sta) rx->sta->rx_stats.packets++; return RX_CONTINUE; @@ -2854,13 +2851,13 @@ ether_addr_equal(sdata->vif.addr, hdr->addr3)) return RX_CONTINUE; - ac = ieee80211_select_queue_80211(sdata, skb, hdr); + ac = ieee802_1d_to_ac[skb->priority]; q = sdata->vif.hw_queue[ac]; if (ieee80211_queue_stopped(&local->hw, q)) { IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion); return RX_DROP_MONITOR; } - skb_set_queue_mapping(skb, q); + skb_set_queue_mapping(skb, ac); if (!--mesh_hdr->ttl) { if (!is_multicast_ether_addr(hdr->addr1)) @@ -3955,7 +3952,8 @@ if (!bssid) return false; if (ether_addr_equal(sdata->vif.addr, hdr->addr2) || - ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2)) + ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2) || + !is_valid_ether_addr(hdr->addr2)) return false; if (ieee80211_is_beacon(hdr->frame_control)) return true; @@ -4694,7 +4692,7 @@ goto drop; break; case RX_ENC_VHT: - if (WARN_ONCE(status->rate_idx > 9 || + if (WARN_ONCE(status->rate_idx > 11 || !status->nss || status->nss > 8, "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n", diff -u linux-azure-5.4.0/net/mac80211/sta_info.c linux-azure-5.4.0/net/mac80211/sta_info.c --- linux-azure-5.4.0/net/mac80211/sta_info.c +++ linux-azure-5.4.0/net/mac80211/sta_info.c @@ -1395,11 +1395,6 @@ struct ieee80211_tx_info *info; struct ieee80211_chanctx_conf *chanctx_conf; - /* Don't send NDPs when STA is connected HE */ - if (sdata->vif.type == NL80211_IFTYPE_STATION && - !(sdata->u.mgd.flags & IEEE80211_STA_DISABLE_HE)) - return; - if (qos) { fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_QOS_NULLFUNC | diff -u linux-azure-5.4.0/net/mac80211/sta_info.h linux-azure-5.4.0/net/mac80211/sta_info.h --- linux-azure-5.4.0/net/mac80211/sta_info.h +++ linux-azure-5.4.0/net/mac80211/sta_info.h @@ -180,6 +180,7 @@ u8 stop_initiator; bool tx_stop; u16 buf_size; + u16 ssn; u16 failed_bar_ssn; bool bar_pending; diff -u linux-azure-5.4.0/net/mac80211/tx.c linux-azure-5.4.0/net/mac80211/tx.c --- linux-azure-5.4.0/net/mac80211/tx.c +++ linux-azure-5.4.0/net/mac80211/tx.c @@ -2156,7 +2156,11 @@ } vht_mcs = iterator.this_arg[4] >> 4; + if (vht_mcs > 11) + vht_mcs = 0; vht_nss = iterator.this_arg[4] & 0xF; + if (!vht_nss || vht_nss > 8) + vht_nss = 1; break; /* @@ -3189,7 +3193,9 @@ if (info->control.flags & IEEE80211_TX_CTRL_AMSDU) return true; - if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr))) + if (!ieee80211_amsdu_realloc_pad(local, skb, + sizeof(*amsdu_hdr) + + local->hw.extra_tx_headroom)) return false; data = skb_push(skb, sizeof(*amsdu_hdr)); @@ -3323,6 +3329,14 @@ if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head)) goto out; + /* If n == 2, the "while (*frag_tail)" loop above didn't execute + * and frag_tail should be &skb_shinfo(head)->frag_list. + * However, ieee80211_amsdu_prepare_head() can reallocate it. + * Reload frag_tail to have it pointing to the correct place. + */ + if (n == 2) + frag_tail = &skb_shinfo(head)->frag_list; + /* * Pad out the previous subframe to a multiple of 4 by adding the * padding to the next one, that's being added. Note that head->len diff -u linux-azure-5.4.0/net/mac80211/util.c linux-azure-5.4.0/net/mac80211/util.c --- linux-azure-5.4.0/net/mac80211/util.c +++ linux-azure-5.4.0/net/mac80211/util.c @@ -1006,10 +1006,6 @@ } else elem_parse_failed = true; break; - case WLAN_EID_CHALLENGE: - elems->challenge = pos; - elems->challenge_len = elen; - break; case WLAN_EID_VENDOR_SPECIFIC: if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 && pos[2] == 0xf2) { @@ -1227,6 +1223,8 @@ elems->max_idle_period_ie = (void *)pos; break; case WLAN_EID_EXTENSION: + if (!elen) + break; if (pos[0] == WLAN_EID_EXT_HE_MU_EDCA && elen >= (sizeof(*elems->mu_edca_param_set) + 1)) { elems->mu_edca_param_set = (void *)&pos[1]; @@ -1287,6 +1285,8 @@ for_each_element_id(elem, WLAN_EID_MULTIPLE_BSSID, start, len) { if (elem->datalen < 2) continue; + if (elem->data[0] < 1 || elem->data[0] > 8) + continue; for_each_element(sub, elem->data + 1, elem->datalen - 1) { u8 new_bssid[ETH_ALEN]; @@ -1363,6 +1363,11 @@ cfg80211_find_ext_elem(WLAN_EID_EXT_NON_INHERITANCE, nontransmitted_profile, nontransmitted_profile_len); + if (!nontransmitted_profile_len) { + nontransmitted_profile_len = 0; + kfree(nontransmitted_profile); + nontransmitted_profile = NULL; + } } crc = _ieee802_11_parse_elems_crc(start, len, action, elems, filter, @@ -1392,7 +1397,7 @@ offsetofend(struct ieee80211_bssid_index, dtim_count)) elems->dtim_count = elems->bssid_index->dtim_count; - kfree(nontransmitted_profile); + elems->nontx_profile = nontransmitted_profile; return crc; } diff -u linux-azure-5.4.0/net/mac80211/wpa.c linux-azure-5.4.0/net/mac80211/wpa.c --- linux-azure-5.4.0/net/mac80211/wpa.c +++ linux-azure-5.4.0/net/mac80211/wpa.c @@ -520,6 +520,9 @@ return RX_DROP_UNUSABLE; } + /* reload hdr - skb might have been reallocated */ + hdr = (void *)rx->skb->data; + data_len = skb->len - hdrlen - IEEE80211_CCMP_HDR_LEN - mic_len; if (!rx->sta || data_len < 0) return RX_DROP_UNUSABLE; @@ -749,6 +752,9 @@ return RX_DROP_UNUSABLE; } + /* reload hdr - skb might have been reallocated */ + hdr = (void *)rx->skb->data; + data_len = skb->len - hdrlen - IEEE80211_GCMP_HDR_LEN - mic_len; if (!rx->sta || data_len < 0) return RX_DROP_UNUSABLE; diff -u linux-azure-5.4.0/net/mpls/af_mpls.c linux-azure-5.4.0/net/mpls/af_mpls.c --- linux-azure-5.4.0/net/mpls/af_mpls.c +++ linux-azure-5.4.0/net/mpls/af_mpls.c @@ -1491,22 +1491,52 @@ kfree(mdev); } -static void mpls_ifdown(struct net_device *dev, int event) +static int mpls_ifdown(struct net_device *dev, int event) { struct mpls_route __rcu **platform_label; struct net *net = dev_net(dev); - u8 alive, deleted; unsigned index; platform_label = rtnl_dereference(net->mpls.platform_label); for (index = 0; index < net->mpls.platform_labels; index++) { struct mpls_route *rt = rtnl_dereference(platform_label[index]); + bool nh_del = false; + u8 alive = 0; if (!rt) continue; - alive = 0; - deleted = 0; + if (event == NETDEV_UNREGISTER) { + u8 deleted = 0; + + for_nexthops(rt) { + struct net_device *nh_dev = + rtnl_dereference(nh->nh_dev); + + if (!nh_dev || nh_dev == dev) + deleted++; + if (nh_dev == dev) + nh_del = true; + } endfor_nexthops(rt); + + /* if there are no more nexthops, delete the route */ + if (deleted == rt->rt_nhn) { + mpls_route_update(net, index, NULL, NULL); + continue; + } + + if (nh_del) { + size_t size = sizeof(*rt) + rt->rt_nhn * + rt->rt_nh_size; + struct mpls_route *orig = rt; + + rt = kmalloc(size, GFP_KERNEL); + if (!rt) + return -ENOMEM; + memcpy(rt, orig, size); + } + } + change_nexthops(rt) { unsigned int nh_flags = nh->nh_flags; @@ -1530,16 +1560,15 @@ next: if (!(nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))) alive++; - if (!rtnl_dereference(nh->nh_dev)) - deleted++; } endfor_nexthops(rt); WRITE_ONCE(rt->rt_nhn_alive, alive); - /* if there are no more nexthops, delete the route */ - if (event == NETDEV_UNREGISTER && deleted == rt->rt_nhn) - mpls_route_update(net, index, NULL, NULL); + if (nh_del) + mpls_route_update(net, index, rt, NULL); } + + return 0; } static void mpls_ifup(struct net_device *dev, unsigned int flags) @@ -1607,8 +1636,12 @@ return NOTIFY_OK; switch (event) { + int err; + case NETDEV_DOWN: - mpls_ifdown(dev, event); + err = mpls_ifdown(dev, event); + if (err) + return notifier_from_errno(err); break; case NETDEV_UP: flags = dev_get_flags(dev); @@ -1619,13 +1652,18 @@ break; case NETDEV_CHANGE: flags = dev_get_flags(dev); - if (flags & (IFF_RUNNING | IFF_LOWER_UP)) + if (flags & (IFF_RUNNING | IFF_LOWER_UP)) { mpls_ifup(dev, RTNH_F_DEAD | RTNH_F_LINKDOWN); - else - mpls_ifdown(dev, event); + } else { + err = mpls_ifdown(dev, event); + if (err) + return notifier_from_errno(err); + } break; case NETDEV_UNREGISTER: - mpls_ifdown(dev, event); + err = mpls_ifdown(dev, event); + if (err) + return notifier_from_errno(err); mdev = mpls_dev_get(dev); if (mdev) { mpls_dev_sysctl_unregister(dev, mdev); @@ -1636,8 +1674,6 @@ case NETDEV_CHANGENAME: mdev = mpls_dev_get(dev); if (mdev) { - int err; - mpls_dev_sysctl_unregister(dev, mdev); err = mpls_dev_sysctl_register(dev, mdev); if (err) diff -u linux-azure-5.4.0/net/ncsi/ncsi-netlink.c linux-azure-5.4.0/net/ncsi/ncsi-netlink.c --- linux-azure-5.4.0/net/ncsi/ncsi-netlink.c +++ linux-azure-5.4.0/net/ncsi/ncsi-netlink.c @@ -112,7 +112,11 @@ pnest = nla_nest_start_noflag(skb, NCSI_PKG_ATTR); if (!pnest) return -ENOMEM; - nla_put_u32(skb, NCSI_PKG_ATTR_ID, np->id); + rc = nla_put_u32(skb, NCSI_PKG_ATTR_ID, np->id); + if (rc) { + nla_nest_cancel(skb, pnest); + return rc; + } if ((0x1 << np->id) == ndp->package_whitelist) nla_put_flag(skb, NCSI_PKG_ATTR_FORCED); cnest = nla_nest_start_noflag(skb, NCSI_PKG_ATTR_CHANNEL_LIST); diff -u linux-azure-5.4.0/net/netfilter/ipset/ip_set_hash_gen.h linux-azure-5.4.0/net/netfilter/ipset/ip_set_hash_gen.h --- linux-azure-5.4.0/net/netfilter/ipset/ip_set_hash_gen.h +++ linux-azure-5.4.0/net/netfilter/ipset/ip_set_hash_gen.h @@ -132,11 +132,11 @@ { size_t hsize; - /* We must fit both into u32 in jhash and size_t */ + /* We must fit both into u32 in jhash and INT_MAX in kvmalloc_node() */ if (hbits > 31) return 0; hsize = jhash_size(hbits); - if ((((size_t)-1) - sizeof(struct htable)) / sizeof(struct hbucket *) + if ((INT_MAX - sizeof(struct htable)) / sizeof(struct hbucket *) < hsize) return 0; diff -u linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_core.c linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_core.c --- linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_core.c +++ linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_core.c @@ -1982,7 +1982,6 @@ struct ip_vs_proto_data *pd; struct ip_vs_conn *cp; int ret, pkts; - int conn_reuse_mode; struct sock *sk; /* Already marked as IPVS request or reply? */ @@ -2059,15 +2058,16 @@ cp = INDIRECT_CALL_1(pp->conn_in_get, ip_vs_conn_in_get_proto, ipvs, af, skb, &iph); - conn_reuse_mode = sysctl_conn_reuse_mode(ipvs); - if (conn_reuse_mode && !iph.fragoffs && is_new_conn(skb, &iph) && cp) { + if (!iph.fragoffs && is_new_conn(skb, &iph) && cp) { + int conn_reuse_mode = sysctl_conn_reuse_mode(ipvs); bool old_ct = false, resched = false; if (unlikely(sysctl_expire_nodest_conn(ipvs)) && cp->dest && unlikely(!atomic_read(&cp->dest->weight))) { resched = true; old_ct = ip_vs_conn_uses_old_conntrack(cp, skb); - } else if (is_new_conn_expected(cp, conn_reuse_mode)) { + } else if (conn_reuse_mode && + is_new_conn_expected(cp, conn_reuse_mode)) { old_ct = ip_vs_conn_uses_old_conntrack(cp, skb); if (!atomic_read(&cp->n_control)) { resched = true; diff -u linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_ctl.c linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_ctl.c --- linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_ctl.c +++ linux-azure-5.4.0/net/netfilter/ipvs/ip_vs_ctl.c @@ -1340,7 +1340,7 @@ ip_vs_addr_copy(svc->af, &svc->addr, &u->addr); svc->port = u->port; svc->fwmark = u->fwmark; - svc->flags = u->flags; + svc->flags = u->flags & ~IP_VS_SVC_F_HASHED; svc->timeout = u->timeout * HZ; svc->netmask = u->netmask; svc->ipvs = ipvs; @@ -4047,6 +4047,11 @@ tbl[idx++].data = &ipvs->sysctl_conn_reuse_mode; tbl[idx++].data = &ipvs->sysctl_schedule_icmp; tbl[idx++].data = &ipvs->sysctl_ignore_tunneled; +#ifdef CONFIG_IP_VS_DEBUG + /* Global sysctls must be ro in non-init netns */ + if (!net_eq(net, &init_net)) + tbl[idx++].mode = 0444; +#endif ipvs->sysctl_hdr = register_net_sysctl(net, "net/ipv4/vs", tbl); if (ipvs->sysctl_hdr == NULL) { diff -u linux-azure-5.4.0/net/netfilter/nf_conntrack_core.c linux-azure-5.4.0/net/netfilter/nf_conntrack_core.c --- linux-azure-5.4.0/net/netfilter/nf_conntrack_core.c +++ linux-azure-5.4.0/net/netfilter/nf_conntrack_core.c @@ -66,22 +66,17 @@ struct conntrack_gc_work { struct delayed_work dwork; - u32 last_bucket; + u32 next_bucket; bool exiting; bool early_drop; - long next_gc_run; }; static __read_mostly struct kmem_cache *nf_conntrack_cachep; static DEFINE_SPINLOCK(nf_conntrack_locks_all_lock); static __read_mostly bool nf_conntrack_locks_all; -/* every gc cycle scans at most 1/GC_MAX_BUCKETS_DIV part of table */ -#define GC_MAX_BUCKETS_DIV 128u -/* upper bound of full table scan */ -#define GC_MAX_SCAN_JIFFIES (16u * HZ) -/* desired ratio of entries found to be expired */ -#define GC_EVICT_RATIO 50u +#define GC_SCAN_INTERVAL (120u * HZ) +#define GC_SCAN_MAX_DURATION msecs_to_jiffies(10) static struct conntrack_gc_work conntrack_gc_work; @@ -660,8 +655,13 @@ return false; tstamp = nf_conn_tstamp_find(ct); - if (tstamp && tstamp->stop == 0) + if (tstamp) { + s32 timeout = ct->timeout - nfct_time_stamp; + tstamp->stop = ktime_get_real_ns(); + if (timeout < 0) + tstamp->stop -= jiffies_to_nsecs(-timeout); + } if (nf_conntrack_event_report(IPCT_DESTROY, ct, portid, report) < 0) { @@ -1221,17 +1221,13 @@ static void gc_worker(struct work_struct *work) { - unsigned int min_interval = max(HZ / GC_MAX_BUCKETS_DIV, 1u); - unsigned int i, goal, buckets = 0, expired_count = 0; - unsigned int nf_conntrack_max95 = 0; + unsigned long end_time = jiffies + GC_SCAN_MAX_DURATION; + unsigned int i, hashsz, nf_conntrack_max95 = 0; + unsigned long next_run = GC_SCAN_INTERVAL; struct conntrack_gc_work *gc_work; - unsigned int ratio, scanned = 0; - unsigned long next_run; - gc_work = container_of(work, struct conntrack_gc_work, dwork.work); - goal = nf_conntrack_htable_size / GC_MAX_BUCKETS_DIV; - i = gc_work->last_bucket; + i = gc_work->next_bucket; if (gc_work->early_drop) nf_conntrack_max95 = nf_conntrack_max / 100u * 95u; @@ -1239,22 +1235,21 @@ struct nf_conntrack_tuple_hash *h; struct hlist_nulls_head *ct_hash; struct hlist_nulls_node *n; - unsigned int hashsz; struct nf_conn *tmp; - i++; rcu_read_lock(); nf_conntrack_get_ht(&ct_hash, &hashsz); - if (i >= hashsz) - i = 0; + if (i >= hashsz) { + rcu_read_unlock(); + break; + } hlist_nulls_for_each_entry_rcu(h, n, &ct_hash[i], hnnode) { struct net *net; tmp = nf_ct_tuplehash_to_ctrack(h); - scanned++; if (test_bit(IPS_OFFLOAD_BIT, &tmp->status)) { nf_ct_offload_timeout(tmp); continue; @@ -1262,7 +1257,6 @@ if (nf_ct_is_expired(tmp)) { nf_ct_gc_expired(tmp); - expired_count++; continue; } @@ -1294,7 +1288,14 @@ */ rcu_read_unlock(); cond_resched(); - } while (++buckets < goal); + i++; + + if (time_after(jiffies, end_time) && i < hashsz) { + gc_work->next_bucket = i; + next_run = 0; + break; + } + } while (i < hashsz); if (gc_work->exiting) return; @@ -1305,40 +1306,17 @@ * * This worker is only here to reap expired entries when system went * idle after a busy period. - * - * The heuristics below are supposed to balance conflicting goals: - * - * 1. Minimize time until we notice a stale entry - * 2. Maximize scan intervals to not waste cycles - * - * Normally, expire ratio will be close to 0. - * - * As soon as a sizeable fraction of the entries have expired - * increase scan frequency. */ - ratio = scanned ? expired_count * 100 / scanned : 0; - if (ratio > GC_EVICT_RATIO) { - gc_work->next_gc_run = min_interval; - } else { - unsigned int max = GC_MAX_SCAN_JIFFIES / GC_MAX_BUCKETS_DIV; - - BUILD_BUG_ON((GC_MAX_SCAN_JIFFIES / GC_MAX_BUCKETS_DIV) == 0); - - gc_work->next_gc_run += min_interval; - if (gc_work->next_gc_run > max) - gc_work->next_gc_run = max; + if (next_run) { + gc_work->early_drop = false; + gc_work->next_bucket = 0; } - - next_run = gc_work->next_gc_run; - gc_work->last_bucket = i; - gc_work->early_drop = false; queue_delayed_work(system_power_efficient_wq, &gc_work->dwork, next_run); } static void conntrack_gc_work_init(struct conntrack_gc_work *gc_work) { INIT_DEFERRABLE_WORK(&gc_work->dwork, gc_worker); - gc_work->next_gc_run = HZ; gc_work->exiting = false; } @@ -1731,15 +1709,17 @@ pr_debug("nf_conntrack_in: Can't track with proto module\n"); nf_conntrack_put(&ct->ct_general); skb->_nfct = 0; - NF_CT_STAT_INC_ATOMIC(state->net, invalid); - if (ret == -NF_DROP) - NF_CT_STAT_INC_ATOMIC(state->net, drop); /* Special case: TCP tracker reports an attempt to reopen a * closed/aborted connection. We have to go back and create a * fresh conntrack. */ if (ret == -NF_REPEAT) goto repeat; + + NF_CT_STAT_INC_ATOMIC(state->net, invalid); + if (ret == -NF_DROP) + NF_CT_STAT_INC_ATOMIC(state->net, drop); + ret = -ret; goto out; } diff -u linux-azure-5.4.0/net/netfilter/nf_conntrack_netlink.c linux-azure-5.4.0/net/netfilter/nf_conntrack_netlink.c --- linux-azure-5.4.0/net/netfilter/nf_conntrack_netlink.c +++ linux-azure-5.4.0/net/netfilter/nf_conntrack_netlink.c @@ -211,6 +211,7 @@ if (!help) return 0; + rcu_read_lock(); helper = rcu_dereference(help->helper); if (!helper) goto out; @@ -226,9 +227,11 @@ nla_nest_end(skb, nest_helper); out: + rcu_read_unlock(); return 0; nla_put_failure: + rcu_read_unlock(); return -1; } diff -u linux-azure-5.4.0/net/netfilter/nf_conntrack_proto.c linux-azure-5.4.0/net/netfilter/nf_conntrack_proto.c --- linux-azure-5.4.0/net/netfilter/nf_conntrack_proto.c +++ linux-azure-5.4.0/net/netfilter/nf_conntrack_proto.c @@ -660,7 +660,7 @@ #if IS_ENABLED(CONFIG_IPV6) cleanup_sockopt: - nf_unregister_sockopt(&so_getorigdst6); + nf_unregister_sockopt(&so_getorigdst); #endif return ret; } diff -u linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_sctp.c linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_sctp.c --- linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_sctp.c +++ linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_sctp.c @@ -489,6 +489,15 @@ pr_debug("Setting vtag %x for dir %d\n", ih->init_tag, !dir); ct->proto.sctp.vtag[!dir] = ih->init_tag; + + /* don't renew timeout on init retransmit so + * port reuse by client or NAT middlebox cannot + * keep entry alive indefinitely (incl. nat info). + */ + if (new_state == SCTP_CONNTRACK_CLOSED && + old_state == SCTP_CONNTRACK_CLOSED && + nf_ct_is_confirmed(ct)) + ignore = true; } ct->proto.sctp.state = new_state; diff -u linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_tcp.c linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_tcp.c --- linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_tcp.c +++ linux-azure-5.4.0/net/netfilter/nf_conntrack_proto_tcp.c @@ -354,8 +354,8 @@ length, buff); BUG_ON(ptr == NULL); - state->td_scale = - state->flags = 0; + state->td_scale = 0; + state->flags &= IP_CT_TCP_FLAG_BE_LIBERAL; while (length > 0) { int opcode=*ptr++; @@ -840,6 +840,16 @@ test_bit(IPS_ASSURED_BIT, &ct->status); } +static void nf_ct_tcp_state_reset(struct ip_ct_tcp_state *state) +{ + state->td_end = 0; + state->td_maxend = 0; + state->td_maxwin = 0; + state->td_maxack = 0; + state->td_scale = 0; + state->flags &= IP_CT_TCP_FLAG_BE_LIBERAL; +} + /* Returns verdict for packet, or -1 for invalid. */ int nf_conntrack_tcp_packet(struct nf_conn *ct, struct sk_buff *skb, @@ -946,8 +956,7 @@ ct->proto.tcp.last_flags &= ~IP_CT_EXP_CHALLENGE_ACK; ct->proto.tcp.seen[ct->proto.tcp.last_dir].flags = ct->proto.tcp.last_flags; - memset(&ct->proto.tcp.seen[dir], 0, - sizeof(struct ip_ct_tcp_state)); + nf_ct_tcp_state_reset(&ct->proto.tcp.seen[dir]); break; } ct->proto.tcp.last_index = index; diff -u linux-azure-5.4.0/net/netfilter/nf_queue.c linux-azure-5.4.0/net/netfilter/nf_queue.c --- linux-azure-5.4.0/net/netfilter/nf_queue.c +++ linux-azure-5.4.0/net/netfilter/nf_queue.c @@ -64,6 +64,15 @@ #endif } +static void nf_queue_sock_put(struct sock *sk) +{ +#ifdef CONFIG_INET + sock_gen_put(sk); +#else + sock_put(sk); +#endif +} + void nf_queue_entry_release_refs(struct nf_queue_entry *entry) { struct nf_hook_state *state = &entry->state; @@ -74,7 +83,7 @@ if (state->out) dev_put(state->out); if (state->sk) - sock_put(state->sk); + nf_queue_sock_put(state->sk); nf_queue_entry_release_br_nf_refs(entry->skb); } @@ -99,18 +108,20 @@ } /* Bump dev refs so they don't vanish while packet is out */ -void nf_queue_entry_get_refs(struct nf_queue_entry *entry) +bool nf_queue_entry_get_refs(struct nf_queue_entry *entry) { struct nf_hook_state *state = &entry->state; + if (state->sk && !refcount_inc_not_zero(&state->sk->sk_refcnt)) + return false; + if (state->in) dev_hold(state->in); if (state->out) dev_hold(state->out); - if (state->sk) - sock_hold(state->sk); nf_queue_entry_get_br_nf_refs(entry->skb); + return true; } EXPORT_SYMBOL_GPL(nf_queue_entry_get_refs); @@ -201,7 +212,10 @@ .size = sizeof(*entry) + route_key_size, }; - nf_queue_entry_get_refs(entry); + if (!nf_queue_entry_get_refs(entry)) { + kfree(entry); + return -ENOTCONN; + } switch (entry->state.pf) { case AF_INET: diff -u linux-azure-5.4.0/net/netfilter/nf_synproxy_core.c linux-azure-5.4.0/net/netfilter/nf_synproxy_core.c --- linux-azure-5.4.0/net/netfilter/nf_synproxy_core.c +++ linux-azure-5.4.0/net/netfilter/nf_synproxy_core.c @@ -31,6 +31,9 @@ int length = (th->doff * 4) - sizeof(*th); u8 buf[40], *ptr; + if (unlikely(length < 0)) + return false; + ptr = skb_header_pointer(skb, doff + sizeof(*th), length, buf); if (ptr == NULL) return false; @@ -47,6 +50,8 @@ length--; continue; default: + if (length < 2) + return true; opsize = *ptr++; if (opsize < 2) return true; diff -u linux-azure-5.4.0/net/netfilter/nf_tables_api.c linux-azure-5.4.0/net/netfilter/nf_tables_api.c --- linux-azure-5.4.0/net/netfilter/nf_tables_api.c +++ linux-azure-5.4.0/net/netfilter/nf_tables_api.c @@ -113,6 +113,7 @@ if (trans == NULL) return NULL; + INIT_LIST_HEAD(&trans->list); trans->msg_type = msg_type; trans->ctx = *ctx; @@ -2267,27 +2268,31 @@ err = nf_tables_expr_parse(ctx, nla, &info); if (err < 0) - goto err1; + goto err_expr_parse; + + err = -EOPNOTSUPP; + if (!(info.ops->type->flags & NFT_EXPR_STATEFUL)) + goto err_expr_stateful; err = -ENOMEM; expr = kzalloc(info.ops->size, GFP_KERNEL); if (expr == NULL) - goto err2; + goto err_expr_stateful; err = nf_tables_newexpr(ctx, &info, expr); if (err < 0) - goto err3; + goto err_expr_new; return expr; -err3: +err_expr_new: kfree(expr); -err2: +err_expr_stateful: owner = info.ops->type->owner; if (info.ops->type->release_ops) info.ops->type->release_ops(info.ops); module_put(owner); -err1: +err_expr_parse: return ERR_PTR(err); } @@ -2709,6 +2714,7 @@ } static struct nft_rule *nft_rule_lookup_byid(const struct net *net, + const struct nft_chain *chain, const struct nlattr *nla); #define NFT_RULE_MAXEXPRS 128 @@ -2782,7 +2788,7 @@ return PTR_ERR(old_rule); } } else if (nla[NFTA_RULE_POSITION_ID]) { - old_rule = nft_rule_lookup_byid(net, nla[NFTA_RULE_POSITION_ID]); + old_rule = nft_rule_lookup_byid(net, chain, nla[NFTA_RULE_POSITION_ID]); if (IS_ERR(old_rule)) { NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_POSITION_ID]); return PTR_ERR(old_rule); @@ -2917,6 +2923,7 @@ } static struct nft_rule *nft_rule_lookup_byid(const struct net *net, + const struct nft_chain *chain, const struct nlattr *nla) { u32 id = ntohl(nla_get_be32(nla)); @@ -2926,6 +2933,7 @@ struct nft_rule *rule = nft_trans_rule(trans); if (trans->msg_type == NFT_MSG_NEWRULE && + trans->ctx.chain == chain && id == nft_trans_rule_id(trans)) return rule; } @@ -2972,7 +2980,7 @@ err = nft_delrule(&ctx, rule); } else if (nla[NFTA_RULE_ID]) { - rule = nft_rule_lookup_byid(net, nla[NFTA_RULE_ID]); + rule = nft_rule_lookup_byid(net, chain, nla[NFTA_RULE_ID]); if (IS_ERR(rule)) { NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_ID]); return PTR_ERR(rule); @@ -3187,6 +3195,7 @@ } static struct nft_set *nft_set_lookup_byid(const struct net *net, + const struct nft_table *table, const struct nlattr *nla, u8 genmask) { struct nft_trans *trans; @@ -3197,6 +3206,7 @@ struct nft_set *set = nft_trans_set(trans); if (id == nft_trans_set_id(trans) && + set->table == table && nft_active_genmask(set, genmask)) return set; } @@ -3217,7 +3227,7 @@ if (!nla_set_id) return set; - set = nft_set_lookup_byid(net, nla_set_id, genmask); + set = nft_set_lookup_byid(net, table, nla_set_id, genmask); } return set; } @@ -3243,7 +3253,7 @@ list_for_each_entry(i, &ctx->table->sets, list) { int tmp; - if (!nft_is_active_next(ctx->net, set)) + if (!nft_is_active_next(ctx->net, i)) continue; if (!sscanf(i->name, name, &tmp)) continue; @@ -4415,6 +4425,33 @@ return trans; } +struct nft_expr *nft_set_elem_expr_alloc(const struct nft_ctx *ctx, + const struct nft_set *set, + const struct nlattr *attr) +{ + struct nft_expr *expr; + int err; + + expr = nft_expr_init(ctx, attr); + if (IS_ERR(expr)) + return expr; + + err = -EOPNOTSUPP; + if (expr->ops->type->flags & NFT_EXPR_GC) { + if (set->flags & NFT_SET_TIMEOUT) + goto err_set_elem_expr; + if (!set->ops->gc_init) + goto err_set_elem_expr; + set->ops->gc_init(set); + } + + return expr; + +err_set_elem_expr: + nft_expr_destroy(ctx, expr); + return ERR_PTR(err); +} + void *nft_set_elem_init(const struct nft_set *set, const struct nft_set_ext_tmpl *tmpl, const u32 *key, const u32 *data, @@ -4500,6 +4537,7 @@ struct nft_data data; enum nft_registers dreg; struct nft_trans *trans; + u32 dtype; u32 flags = 0; u64 timeout; u64 expiration; @@ -4599,7 +4637,13 @@ goto err2; err = -EINVAL; - if (set->dtype != NFT_DATA_VERDICT && d2.len != set->dlen) + + if (set->dtype == NFT_DATA_VERDICT) + dtype = NFT_DATA_VERDICT; + else + dtype = NFT_DATA_VALUE; + + if (dtype != d2.type || set->dlen != d2.len) goto err3; dreg = nft_type_to_reg(set->dtype); @@ -5184,12 +5228,15 @@ { struct nft_object *newobj; struct nft_trans *trans; - int err; + int err = -ENOMEM; + + if (!try_module_get(type->owner)) + return -ENOENT; trans = nft_trans_alloc(ctx, NFT_MSG_NEWOBJ, sizeof(struct nft_trans_obj)); if (!trans) - return -ENOMEM; + goto err_trans; newobj = nft_obj_init(ctx, type, attr); if (IS_ERR(newobj)) { @@ -5206,6 +5253,8 @@ err_free_trans: kfree(trans); +err_trans: + module_put(type->owner); return err; } @@ -6544,7 +6593,7 @@ if (obj->ops->update) obj->ops->update(obj, newobj); - kfree(newobj); + nft_obj_destroy(&trans->ctx, newobj); } static void nft_commit_release(struct nft_trans *trans) @@ -6882,6 +6931,9 @@ nf_tables_rule_notify(&trans->ctx, nft_trans_rule(trans), NFT_MSG_NEWRULE); + if (trans->ctx.chain->flags & NFT_CHAIN_HW_OFFLOAD) + nft_flow_rule_destroy(nft_trans_flow_rule(trans)); + nft_trans_destroy(trans); break; case NFT_MSG_DELRULE: @@ -6892,6 +6944,9 @@ nft_rule_expr_deactivate(&trans->ctx, nft_trans_rule(trans), NFT_TRANS_COMMIT); + + if (trans->ctx.chain->flags & NFT_CHAIN_HW_OFFLOAD) + nft_flow_rule_destroy(nft_trans_flow_rule(trans)); break; case NFT_MSG_NEWSET: nft_clear(net, nft_trans_set(trans)); @@ -7109,7 +7164,7 @@ break; case NFT_MSG_NEWOBJ: if (nft_trans_obj_update(trans)) { - kfree(nft_trans_obj_newobj(trans)); + nft_obj_destroy(&trans->ctx, nft_trans_obj_newobj(trans)); nft_trans_destroy(trans); } else { trans->ctx.table->use--; diff -u linux-azure-5.4.0/net/netfilter/nf_tables_offload.c linux-azure-5.4.0/net/netfilter/nf_tables_offload.c --- linux-azure-5.4.0/net/netfilter/nf_tables_offload.c +++ linux-azure-5.4.0/net/netfilter/nf_tables_offload.c @@ -55,7 +55,8 @@ expr = nft_expr_first(rule); while (nft_expr_more(rule, expr)) { - if (expr->ops->offload_flags & NFT_OFFLOAD_F_ACTION) + if (expr->ops->offload_action && + expr->ops->offload_action(expr)) num_actions++; expr = nft_expr_next(expr); diff -u linux-azure-5.4.0/net/netfilter/nfnetlink_cthelper.c linux-azure-5.4.0/net/netfilter/nfnetlink_cthelper.c --- linux-azure-5.4.0/net/netfilter/nfnetlink_cthelper.c +++ linux-azure-5.4.0/net/netfilter/nfnetlink_cthelper.c @@ -380,10 +380,14 @@ nfnl_cthelper_update(const struct nlattr * const tb[], struct nf_conntrack_helper *helper) { + u32 size; int ret; - if (tb[NFCTH_PRIV_DATA_LEN]) - return -EBUSY; + if (tb[NFCTH_PRIV_DATA_LEN]) { + size = ntohl(nla_get_be32(tb[NFCTH_PRIV_DATA_LEN])); + if (size != helper->data_len) + return -EBUSY; + } if (tb[NFCTH_POLICY]) { ret = nfnl_cthelper_update_policy(helper, tb[NFCTH_POLICY]); diff -u linux-azure-5.4.0/net/netfilter/nfnetlink_log.c linux-azure-5.4.0/net/netfilter/nfnetlink_log.c --- linux-azure-5.4.0/net/netfilter/nfnetlink_log.c +++ linux-azure-5.4.0/net/netfilter/nfnetlink_log.c @@ -557,7 +557,8 @@ goto nla_put_failure; if (indev && skb->dev && - skb->mac_header != skb->network_header) { + skb_mac_header_was_set(skb) && + skb_mac_header_len(skb) != 0) { struct nfulnl_msg_packet_hw phw; int len; diff -u linux-azure-5.4.0/net/netfilter/nfnetlink_osf.c linux-azure-5.4.0/net/netfilter/nfnetlink_osf.c --- linux-azure-5.4.0/net/netfilter/nfnetlink_osf.c +++ linux-azure-5.4.0/net/netfilter/nfnetlink_osf.c @@ -269,6 +269,7 @@ struct nf_osf_hdr_ctx ctx; const struct tcphdr *tcp; struct tcphdr _tcph; + bool found = false; memset(&ctx, 0, sizeof(ctx)); @@ -283,10 +284,11 @@ data->genre = f->genre; data->version = f->version; + found = true; break; } - return true; + return found; } EXPORT_SYMBOL_GPL(nf_osf_find); diff -u linux-azure-5.4.0/net/netfilter/nfnetlink_queue.c linux-azure-5.4.0/net/netfilter/nfnetlink_queue.c --- linux-azure-5.4.0/net/netfilter/nfnetlink_queue.c +++ linux-azure-5.4.0/net/netfilter/nfnetlink_queue.c @@ -562,7 +562,8 @@ goto nla_put_failure; if (indev && entskb->dev && - entskb->mac_header != entskb->network_header) { + skb_mac_header_was_set(entskb) && + skb_mac_header_len(entskb) != 0) { struct nfqnl_msg_packet_hw phw; int len; @@ -711,9 +712,15 @@ nf_queue_entry_dup(struct nf_queue_entry *e) { struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC); - if (entry) - nf_queue_entry_get_refs(entry); - return entry; + + if (!entry) + return NULL; + + if (nf_queue_entry_get_refs(entry)) + return entry; + + kfree(entry); + return NULL; } #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER) @@ -839,11 +846,16 @@ } static int -nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff) +nfqnl_mangle(void *data, unsigned int data_len, struct nf_queue_entry *e, int diff) { struct sk_buff *nskb; if (diff < 0) { + unsigned int min_len = skb_transport_offset(e->skb); + + if (data_len < min_len) + return -EINVAL; + if (pskb_trim(e->skb, data_len)) return -ENOMEM; } else if (diff > 0) { diff -u linux-azure-5.4.0/net/netfilter/nft_ct.c linux-azure-5.4.0/net/netfilter/nft_ct.c --- linux-azure-5.4.0/net/netfilter/nft_ct.c +++ linux-azure-5.4.0/net/netfilter/nft_ct.c @@ -1218,7 +1218,7 @@ struct nf_conn *ct; ct = nf_ct_get(pkt->skb, &ctinfo); - if (!ct || ctinfo == IP_CT_UNTRACKED) { + if (!ct || nf_ct_is_confirmed(ct) || nf_ct_is_template(ct)) { regs->verdict.code = NFT_BREAK; return; } diff -u linux-azure-5.4.0/net/netfilter/nft_dynset.c linux-azure-5.4.0/net/netfilter/nft_dynset.c --- linux-azure-5.4.0/net/netfilter/nft_dynset.c +++ linux-azure-5.4.0/net/netfilter/nft_dynset.c @@ -164,17 +164,8 @@ return -EBUSY; priv->op = ntohl(nla_get_be32(tb[NFTA_DYNSET_OP])); - switch (priv->op) { - case NFT_DYNSET_OP_ADD: - case NFT_DYNSET_OP_DELETE: - break; - case NFT_DYNSET_OP_UPDATE: - if (!(set->flags & NFT_SET_TIMEOUT)) - return -EOPNOTSUPP; - break; - default: + if (priv->op > NFT_DYNSET_OP_DELETE) return -EOPNOTSUPP; - } timeout = 0; if (tb[NFTA_DYNSET_TIMEOUT] != NULL) { @@ -208,21 +199,10 @@ if (!(set->flags & NFT_SET_EVAL)) return -EINVAL; - priv->expr = nft_expr_init(ctx, tb[NFTA_DYNSET_EXPR]); + priv->expr = nft_set_elem_expr_alloc(ctx, set, + tb[NFTA_DYNSET_EXPR]); if (IS_ERR(priv->expr)) return PTR_ERR(priv->expr); - - err = -EOPNOTSUPP; - if (!(priv->expr->ops->type->flags & NFT_EXPR_STATEFUL)) - goto err1; - - if (priv->expr->ops->type->flags & NFT_EXPR_GC) { - if (set->flags & NFT_SET_TIMEOUT) - goto err1; - if (!set->ops->gc_init) - goto err1; - set->ops->gc_init(set); - } } nft_set_ext_prepare(&priv->tmpl); diff -u linux-azure-5.4.0/net/netfilter/nft_exthdr.c linux-azure-5.4.0/net/netfilter/nft_exthdr.c --- linux-azure-5.4.0/net/netfilter/nft_exthdr.c +++ linux-azure-5.4.0/net/netfilter/nft_exthdr.c @@ -42,6 +42,9 @@ unsigned int offset = 0; int err; + if (pkt->skb->protocol != htons(ETH_P_IPV6)) + goto err; + err = ipv6_find_hdr(pkt->skb, &offset, priv->type, NULL, NULL); if (priv->flags & NFT_EXTHDR_F_PRESENT) { nft_reg_store8(dest, err >= 0); @@ -228,7 +231,6 @@ unsigned int i, optl, tcphdr_len, offset; struct tcphdr *tcph; u8 *opt; - u32 src; tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff, &tcphdr_len); if (!tcph) @@ -237,7 +239,6 @@ opt = (u8 *)tcph; for (i = sizeof(*tcph); i < tcphdr_len - 1; i += optl) { union { - u8 octet; __be16 v16; __be32 v32; } old, new; @@ -259,13 +260,13 @@ if (!tcph) return; - src = regs->data[priv->sreg]; offset = i + priv->offset; switch (priv->len) { case 2: old.v16 = get_unaligned((u16 *)(opt + offset)); - new.v16 = src; + new.v16 = (__force __be16)nft_reg_load16( + ®s->data[priv->sreg]); switch (priv->type) { case TCPOPT_MSS: @@ -283,7 +284,7 @@ old.v16, new.v16, false); break; case 4: - new.v32 = src; + new.v32 = regs->data[priv->sreg]; old.v32 = get_unaligned((u32 *)(opt + offset)); if (old.v32 == new.v32) diff -u linux-azure-5.4.0/net/netfilter/nft_fwd_netdev.c linux-azure-5.4.0/net/netfilter/nft_fwd_netdev.c --- linux-azure-5.4.0/net/netfilter/nft_fwd_netdev.c +++ linux-azure-5.4.0/net/netfilter/nft_fwd_netdev.c @@ -77,6 +77,11 @@ return nft_fwd_dup_netdev_offload(ctx, flow, FLOW_ACTION_REDIRECT, oif); } +static bool nft_fwd_netdev_offload_action(const struct nft_expr *expr) +{ + return true; +} + struct nft_fwd_neigh { enum nft_registers sreg_dev:8; enum nft_registers sreg_addr:8; @@ -219,6 +224,7 @@ .dump = nft_fwd_netdev_dump, .validate = nft_fwd_validate, .offload = nft_fwd_netdev_offload, + .offload_action = nft_fwd_netdev_offload_action, }; static const struct nft_expr_ops * diff -u linux-azure-5.4.0/net/netfilter/nft_nat.c linux-azure-5.4.0/net/netfilter/nft_nat.c --- linux-azure-5.4.0/net/netfilter/nft_nat.c +++ linux-azure-5.4.0/net/netfilter/nft_nat.c @@ -147,7 +147,9 @@ alen = FIELD_SIZEOF(struct nf_nat_range, min_addr.ip6); break; default: - return -EAFNOSUPPORT; + if (tb[NFTA_NAT_REG_ADDR_MIN]) + return -EAFNOSUPPORT; + break; } priv->family = family; @@ -281,7 +283,8 @@ { const struct nft_nat *priv = nft_expr_priv(expr); - if (priv->family == nft_pf(pkt)) + if (priv->family == nft_pf(pkt) || + priv->family == NFPROTO_INET) nft_nat_eval(expr, regs, pkt); } diff -u linux-azure-5.4.0/net/netfilter/nft_osf.c linux-azure-5.4.0/net/netfilter/nft_osf.c --- linux-azure-5.4.0/net/netfilter/nft_osf.c +++ linux-azure-5.4.0/net/netfilter/nft_osf.c @@ -28,6 +28,11 @@ struct nf_osf_data data; struct tcphdr _tcph; + if (pkt->tprot != IPPROTO_TCP) { + regs->verdict.code = NFT_BREAK; + return; + } + tcp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(struct tcphdr), &_tcph); if (!tcp) { @@ -110,9 +115,21 @@ const struct nft_expr *expr, const struct nft_data **data) { - return nft_chain_validate_hooks(ctx->chain, (1 << NF_INET_LOCAL_IN) | - (1 << NF_INET_PRE_ROUTING) | - (1 << NF_INET_FORWARD)); + unsigned int hooks; + + switch (ctx->family) { + case NFPROTO_IPV4: + case NFPROTO_IPV6: + case NFPROTO_INET: + hooks = (1 << NF_INET_LOCAL_IN) | + (1 << NF_INET_PRE_ROUTING) | + (1 << NF_INET_FORWARD); + break; + default: + return -EOPNOTSUPP; + } + + return nft_chain_validate_hooks(ctx->chain, hooks); } static struct nft_expr_type nft_osf_type; diff -u linux-azure-5.4.0/net/netfilter/nft_payload.c linux-azure-5.4.0/net/netfilter/nft_payload.c --- linux-azure-5.4.0/net/netfilter/nft_payload.c +++ linux-azure-5.4.0/net/netfilter/nft_payload.c @@ -420,6 +420,9 @@ struct sk_buff *skb, unsigned int *l4csum_offset) { + if (pkt->xt.fragoff) + return -1; + switch (pkt->tprot) { case IPPROTO_TCP: *l4csum_offset = offsetof(struct tcphdr, check); @@ -555,6 +558,8 @@ const struct nlattr * const tb[]) { struct nft_payload_set *priv = nft_expr_priv(expr); + u32 csum_offset, csum_type = NFT_PAYLOAD_CSUM_NONE; + int err; priv->base = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_BASE])); priv->offset = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_OFFSET])); @@ -562,11 +567,15 @@ priv->sreg = nft_parse_register(tb[NFTA_PAYLOAD_SREG]); if (tb[NFTA_PAYLOAD_CSUM_TYPE]) - priv->csum_type = - ntohl(nla_get_be32(tb[NFTA_PAYLOAD_CSUM_TYPE])); - if (tb[NFTA_PAYLOAD_CSUM_OFFSET]) - priv->csum_offset = - ntohl(nla_get_be32(tb[NFTA_PAYLOAD_CSUM_OFFSET])); + csum_type = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_CSUM_TYPE])); + if (tb[NFTA_PAYLOAD_CSUM_OFFSET]) { + err = nft_parse_u32_check(tb[NFTA_PAYLOAD_CSUM_OFFSET], U8_MAX, + &csum_offset); + if (err < 0) + return err; + + priv->csum_offset = csum_offset; + } if (tb[NFTA_PAYLOAD_CSUM_FLAGS]) { u32 flags; @@ -577,13 +586,14 @@ priv->csum_flags = flags; } - switch (priv->csum_type) { + switch (csum_type) { case NFT_PAYLOAD_CSUM_NONE: case NFT_PAYLOAD_CSUM_INET: break; default: return -EOPNOTSUPP; } + priv->csum_type = csum_type; return nft_validate_register_load(priv->sreg, priv->len); } @@ -621,6 +631,7 @@ { enum nft_payload_bases base; unsigned int offset, len; + int err; if (tb[NFTA_PAYLOAD_BASE] == NULL || tb[NFTA_PAYLOAD_OFFSET] == NULL || @@ -646,8 +657,13 @@ if (tb[NFTA_PAYLOAD_DREG] == NULL) return ERR_PTR(-EINVAL); - offset = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_OFFSET])); - len = ntohl(nla_get_be32(tb[NFTA_PAYLOAD_LEN])); + err = nft_parse_u32_check(tb[NFTA_PAYLOAD_OFFSET], U8_MAX, &offset); + if (err < 0) + return ERR_PTR(err); + + err = nft_parse_u32_check(tb[NFTA_PAYLOAD_LEN], U8_MAX, &len); + if (err < 0) + return ERR_PTR(err); if (len <= 4 && is_power_of_2(len) && IS_ALIGNED(offset, len) && base != NFT_PAYLOAD_LL_HEADER) diff -u linux-azure-5.4.0/net/netfilter/nft_set_hash.c linux-azure-5.4.0/net/netfilter/nft_set_hash.c --- linux-azure-5.4.0/net/netfilter/nft_set_hash.c +++ linux-azure-5.4.0/net/netfilter/nft_set_hash.c @@ -142,6 +142,7 @@ /* Another cpu may race to insert the element with the same key */ if (prev) { nft_set_elem_destroy(set, he, true); + atomic_dec(&set->nelems); he = prev; } @@ -151,6 +152,7 @@ err2: nft_set_elem_destroy(set, he, true); + atomic_dec(&set->nelems); err1: return false; } diff -u linux-azure-5.4.0/net/netfilter/nft_tproxy.c linux-azure-5.4.0/net/netfilter/nft_tproxy.c --- linux-azure-5.4.0/net/netfilter/nft_tproxy.c +++ linux-azure-5.4.0/net/netfilter/nft_tproxy.c @@ -30,6 +30,12 @@ __be16 tport = 0; struct sock *sk; + if (pkt->tprot != IPPROTO_TCP && + pkt->tprot != IPPROTO_UDP) { + regs->verdict.code = NFT_BREAK; + return; + } + hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); if (!hp) { regs->verdict.code = NFT_BREAK; @@ -91,7 +97,8 @@ memset(&taddr, 0, sizeof(taddr)); - if (!pkt->tprot_set) { + if (pkt->tprot != IPPROTO_TCP && + pkt->tprot != IPPROTO_UDP) { regs->verdict.code = NFT_BREAK; return; } diff -u linux-azure-5.4.0/net/netfilter/nft_tunnel.c linux-azure-5.4.0/net/netfilter/nft_tunnel.c --- linux-azure-5.4.0/net/netfilter/nft_tunnel.c +++ linux-azure-5.4.0/net/netfilter/nft_tunnel.c @@ -134,6 +134,7 @@ static struct nft_expr_type nft_tunnel_type __read_mostly = { .name = "tunnel", + .family = NFPROTO_NETDEV, .ops = &nft_tunnel_get_ops, .policy = nft_tunnel_policy, .maxattr = NFTA_TUNNEL_MAX, diff -u linux-azure-5.4.0/net/netlabel/netlabel_cipso_v4.c linux-azure-5.4.0/net/netlabel/netlabel_cipso_v4.c --- linux-azure-5.4.0/net/netlabel/netlabel_cipso_v4.c +++ linux-azure-5.4.0/net/netlabel/netlabel_cipso_v4.c @@ -144,8 +144,8 @@ return -ENOMEM; doi_def->map.std = kzalloc(sizeof(*doi_def->map.std), GFP_KERNEL); if (doi_def->map.std == NULL) { - ret_val = -ENOMEM; - goto add_std_failure; + kfree(doi_def); + return -ENOMEM; } doi_def->type = CIPSO_V4_MAP_TRANS; @@ -187,14 +187,14 @@ } doi_def->map.std->lvl.local = kcalloc(doi_def->map.std->lvl.local_size, sizeof(u32), - GFP_KERNEL); + GFP_KERNEL | __GFP_NOWARN); if (doi_def->map.std->lvl.local == NULL) { ret_val = -ENOMEM; goto add_std_failure; } doi_def->map.std->lvl.cipso = kcalloc(doi_def->map.std->lvl.cipso_size, sizeof(u32), - GFP_KERNEL); + GFP_KERNEL | __GFP_NOWARN); if (doi_def->map.std->lvl.cipso == NULL) { ret_val = -ENOMEM; goto add_std_failure; @@ -263,7 +263,7 @@ doi_def->map.std->cat.local = kcalloc( doi_def->map.std->cat.local_size, sizeof(u32), - GFP_KERNEL); + GFP_KERNEL | __GFP_NOWARN); if (doi_def->map.std->cat.local == NULL) { ret_val = -ENOMEM; goto add_std_failure; @@ -271,7 +271,7 @@ doi_def->map.std->cat.cipso = kcalloc( doi_def->map.std->cat.cipso_size, sizeof(u32), - GFP_KERNEL); + GFP_KERNEL | __GFP_NOWARN); if (doi_def->map.std->cat.cipso == NULL) { ret_val = -ENOMEM; goto add_std_failure; diff -u linux-azure-5.4.0/net/netlabel/netlabel_kapi.c linux-azure-5.4.0/net/netlabel/netlabel_kapi.c --- linux-azure-5.4.0/net/netlabel/netlabel_kapi.c +++ linux-azure-5.4.0/net/netlabel/netlabel_kapi.c @@ -885,6 +885,8 @@ unsigned char bitmask; unsigned char byte; + if (offset >= bitmap_len) + return -1; byte_offset = offset / 8; byte = bitmap[byte_offset]; bit_spot = offset; diff -u linux-azure-5.4.0/net/netlink/af_netlink.c linux-azure-5.4.0/net/netlink/af_netlink.c --- linux-azure-5.4.0/net/netlink/af_netlink.c +++ linux-azure-5.4.0/net/netlink/af_netlink.c @@ -148,6 +148,8 @@ static inline u32 netlink_group_mask(u32 group) { + if (group > 32) + return 0; return group ? 1 << (group - 1) : 0; } @@ -452,11 +454,13 @@ static inline void netlink_lock_table(void) { + unsigned long flags; + /* read_lock() synchronizes us to netlink_table_grab */ - read_lock(&nl_table_lock); + read_lock_irqsave(&nl_table_lock, flags); atomic_inc(&nl_table_users); - read_unlock(&nl_table_lock); + read_unlock_irqrestore(&nl_table_lock, flags); } static inline void @@ -583,7 +587,10 @@ /* We need to ensure that the socket is hashed and visible. */ smp_wmb(); - nlk_sk(sk)->bound = portid; + /* Paired with lockless reads from netlink_bind(), + * netlink_connect() and netlink_sendmsg(). + */ + WRITE_ONCE(nlk_sk(sk)->bound, portid); err: release_sock(sk); @@ -1001,7 +1008,8 @@ if (nlk->ngroups < BITS_PER_LONG) groups &= (1UL << nlk->ngroups) - 1; - bound = nlk->bound; + /* Paired with WRITE_ONCE() in netlink_insert() */ + bound = READ_ONCE(nlk->bound); if (bound) { /* Ensure nlk->portid is up-to-date. */ smp_rmb(); @@ -1087,8 +1095,9 @@ /* No need for barriers here as we return to user-space without * using any of the bound attributes. + * Paired with WRITE_ONCE() in netlink_insert(). */ - if (!nlk->bound) + if (!READ_ONCE(nlk->bound)) err = netlink_autobind(sock); if (err == 0) { @@ -1855,6 +1864,11 @@ if (msg->msg_flags&MSG_OOB) return -EOPNOTSUPP; + if (len == 0) { + pr_warn_once("Zero length message leads to an empty skb\n"); + return -ENODATA; + } + err = scm_send(sock, msg, &scm, true); if (err < 0) return err; @@ -1877,7 +1891,8 @@ dst_group = nlk->dst_group; } - if (!nlk->bound) { + /* Paired with WRITE_ONCE() in netlink_insert() */ + if (!READ_ONCE(nlk->bound)) { err = netlink_autobind(sock); if (err) goto out; @@ -1972,7 +1987,6 @@ copied = len; } - skb_reset_transport_header(data_skb); err = skb_copy_datagram_msg(data_skb, 0, msg, copied); if (msg->msg_name) { @@ -2238,6 +2252,13 @@ * single netdev. The outcome is MSG_TRUNC error. */ skb_reserve(skb, skb_tailroom(skb) - alloc_size); + + /* Make sure malicious BPF programs can not read unitialized memory + * from skb->head -> skb->data + */ + skb_reset_network_header(skb); + skb_reset_mac_header(skb); + netlink_skb_set_owner_r(skb, sk); if (nlk->dump_done_errno > 0) { @@ -2519,13 +2540,15 @@ /* errors reported via destination sk->sk_err, but propagate * delivery errors if NETLINK_BROADCAST_ERROR flag is set */ err = nlmsg_multicast(sk, skb, exclude_portid, group, flags); + if (err == -ESRCH) + err = 0; } if (report) { int err2; err2 = nlmsg_unicast(sk, skb, portid); - if (!err || err == -ESRCH) + if (!err) err = err2; } diff -u linux-azure-5.4.0/net/nfc/llcp_sock.c linux-azure-5.4.0/net/nfc/llcp_sock.c --- linux-azure-5.4.0/net/nfc/llcp_sock.c +++ linux-azure-5.4.0/net/nfc/llcp_sock.c @@ -110,6 +110,7 @@ if (!llcp_sock->service_name) { nfc_llcp_local_put(llcp_sock->local); llcp_sock->local = NULL; + llcp_sock->dev = NULL; ret = -ENOMEM; goto put_dev; } @@ -119,6 +120,7 @@ llcp_sock->local = NULL; kfree(llcp_sock->service_name); llcp_sock->service_name = NULL; + llcp_sock->dev = NULL; ret = -EADDRINUSE; goto put_dev; } @@ -787,6 +789,11 @@ lock_sock(sk); + if (!llcp_sock->local) { + release_sock(sk); + return -ENODEV; + } + if (sk->sk_type == SOCK_DGRAM) { DECLARE_SOCKADDR(struct sockaddr_nfc_llcp *, addr, msg->msg_name); diff -u linux-azure-5.4.0/net/nfc/nci/core.c linux-azure-5.4.0/net/nfc/nci/core.c --- linux-azure-5.4.0/net/nfc/nci/core.c +++ linux-azure-5.4.0/net/nfc/nci/core.c @@ -144,12 +144,15 @@ { int rc; - if (!test_bit(NCI_UP, &ndev->flags)) - return -ENETDOWN; - /* Serialize all requests */ mutex_lock(&ndev->req_lock); - rc = __nci_request(ndev, req, opt, timeout); + /* check the state after obtaing the lock against any races + * from nci_close_device when the device gets removed. + */ + if (test_bit(NCI_UP, &ndev->flags)) + rc = __nci_request(ndev, req, opt, timeout); + else + rc = -ENETDOWN; mutex_unlock(&ndev->req_lock); return rc; @@ -470,6 +473,11 @@ mutex_lock(&ndev->req_lock); + if (test_bit(NCI_UNREG, &ndev->flags)) { + rc = -ENODEV; + goto done; + } + if (test_bit(NCI_UP, &ndev->flags)) { rc = -EALREADY; goto done; @@ -533,9 +541,17 @@ static int nci_close_device(struct nci_dev *ndev) { nci_req_cancel(ndev, ENODEV); + + /* This mutex needs to be held as a barrier for + * caller nci_unregister_device + */ mutex_lock(&ndev->req_lock); if (!test_and_clear_bit(NCI_UP, &ndev->flags)) { + /* Need to flush the cmd wq in case + * there is a queued/running cmd_work + */ + flush_workqueue(ndev->cmd_wq); del_timer_sync(&ndev->cmd_timer); del_timer_sync(&ndev->data_timer); mutex_unlock(&ndev->req_lock); @@ -570,8 +586,8 @@ /* Flush cmd wq */ flush_workqueue(ndev->cmd_wq); - /* Clear flags */ - ndev->flags = 0; + /* Clear flags except NCI_UNREG */ + ndev->flags &= BIT(NCI_UNREG); mutex_unlock(&ndev->req_lock); @@ -1253,6 +1269,12 @@ { struct nci_conn_info *conn_info, *n; + /* This set_bit is not protected with specialized barrier, + * However, it is fine because the mutex_lock(&ndev->req_lock); + * in nci_close_device() will help to emit one. + */ + set_bit(NCI_UNREG, &ndev->flags); + nci_close_device(ndev); destroy_workqueue(ndev->cmd_wq); diff -u linux-azure-5.4.0/net/nfc/nci/hci.c linux-azure-5.4.0/net/nfc/nci/hci.c --- linux-azure-5.4.0/net/nfc/nci/hci.c +++ linux-azure-5.4.0/net/nfc/nci/hci.c @@ -153,7 +153,7 @@ i = 0; skb = nci_skb_alloc(ndev, conn_info->max_pkt_payload_len + - NCI_DATA_HDR_SIZE, GFP_KERNEL); + NCI_DATA_HDR_SIZE, GFP_ATOMIC); if (!skb) return -ENOMEM; @@ -186,7 +186,7 @@ if (i < data_len) { skb = nci_skb_alloc(ndev, conn_info->max_pkt_payload_len + - NCI_DATA_HDR_SIZE, GFP_KERNEL); + NCI_DATA_HDR_SIZE, GFP_ATOMIC); if (!skb) return -ENOMEM; diff -u linux-azure-5.4.0/net/nfc/netlink.c linux-azure-5.4.0/net/nfc/netlink.c --- linux-azure-5.4.0/net/nfc/netlink.c +++ linux-azure-5.4.0/net/nfc/netlink.c @@ -644,8 +644,10 @@ { struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; - nfc_device_iter_exit(iter); - kfree(iter); + if (iter) { + nfc_device_iter_exit(iter); + kfree(iter); + } return 0; } @@ -1250,7 +1252,7 @@ struct sk_buff *msg; void *hdr; - msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); + msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); if (!msg) return -ENOMEM; @@ -1266,7 +1268,7 @@ genlmsg_end(msg, hdr); - genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_KERNEL); + genlmsg_multicast(&nfc_genl_family, msg, 0, 0, GFP_ATOMIC); return 0; @@ -1400,8 +1402,10 @@ { struct class_dev_iter *iter = (struct class_dev_iter *) cb->args[0]; - nfc_device_iter_exit(iter); - kfree(iter); + if (iter) { + nfc_device_iter_exit(iter); + kfree(iter); + } return 0; } diff -u linux-azure-5.4.0/net/nfc/rawsock.c linux-azure-5.4.0/net/nfc/rawsock.c --- linux-azure-5.4.0/net/nfc/rawsock.c +++ linux-azure-5.4.0/net/nfc/rawsock.c @@ -333,7 +333,7 @@ return -ESOCKTNOSUPPORT; if (sock->type == SOCK_RAW) { - if (!capable(CAP_NET_RAW)) + if (!ns_capable(net->user_ns, CAP_NET_RAW)) return -EPERM; sock->ops = &rawsock_raw_ops; } else { diff -u linux-azure-5.4.0/net/openvswitch/actions.c linux-azure-5.4.0/net/openvswitch/actions.c --- linux-azure-5.4.0/net/openvswitch/actions.c +++ linux-azure-5.4.0/net/openvswitch/actions.c @@ -377,6 +377,7 @@ update_ip_l4_checksum(skb, nh, *addr, new_addr); csum_replace4(&nh->check, *addr, new_addr); skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); *addr = new_addr; } @@ -424,15 +425,47 @@ update_ipv6_checksum(skb, l4_proto, addr, new_addr); skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); memcpy(addr, new_addr, sizeof(__be32[4])); } -static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl, u32 mask) +static void set_ipv6_dsfield(struct sk_buff *skb, struct ipv6hdr *nh, u8 ipv6_tclass, u8 mask) { + u8 old_ipv6_tclass = ipv6_get_dsfield(nh); + + ipv6_tclass = OVS_MASKED(old_ipv6_tclass, ipv6_tclass, mask); + + if (skb->ip_summed == CHECKSUM_COMPLETE) + csum_replace(&skb->csum, (__force __wsum)(old_ipv6_tclass << 12), + (__force __wsum)(ipv6_tclass << 12)); + + ipv6_change_dsfield(nh, ~mask, ipv6_tclass); +} + +static void set_ipv6_fl(struct sk_buff *skb, struct ipv6hdr *nh, u32 fl, u32 mask) +{ + u32 ofl; + + ofl = nh->flow_lbl[0] << 16 | nh->flow_lbl[1] << 8 | nh->flow_lbl[2]; + fl = OVS_MASKED(ofl, fl, mask); + /* Bits 21-24 are always unmasked, so this retains their values. */ - OVS_SET_MASKED(nh->flow_lbl[0], (u8)(fl >> 16), (u8)(mask >> 16)); - OVS_SET_MASKED(nh->flow_lbl[1], (u8)(fl >> 8), (u8)(mask >> 8)); - OVS_SET_MASKED(nh->flow_lbl[2], (u8)fl, (u8)mask); + nh->flow_lbl[0] = (u8)(fl >> 16); + nh->flow_lbl[1] = (u8)(fl >> 8); + nh->flow_lbl[2] = (u8)fl; + + if (skb->ip_summed == CHECKSUM_COMPLETE) + csum_replace(&skb->csum, (__force __wsum)htonl(ofl), (__force __wsum)htonl(fl)); +} + +static void set_ipv6_ttl(struct sk_buff *skb, struct ipv6hdr *nh, u8 new_ttl, u8 mask) +{ + new_ttl = OVS_MASKED(nh->hop_limit, new_ttl, mask); + + if (skb->ip_summed == CHECKSUM_COMPLETE) + csum_replace(&skb->csum, (__force __wsum)(nh->hop_limit << 8), + (__force __wsum)(new_ttl << 8)); + nh->hop_limit = new_ttl; } static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl, @@ -550,18 +583,17 @@ } } if (mask->ipv6_tclass) { - ipv6_change_dsfield(nh, ~mask->ipv6_tclass, key->ipv6_tclass); + set_ipv6_dsfield(skb, nh, key->ipv6_tclass, mask->ipv6_tclass); flow_key->ip.tos = ipv6_get_dsfield(nh); } if (mask->ipv6_label) { - set_ipv6_fl(nh, ntohl(key->ipv6_label), + set_ipv6_fl(skb, nh, ntohl(key->ipv6_label), ntohl(mask->ipv6_label)); flow_key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL); } if (mask->ipv6_hlimit) { - OVS_SET_MASKED(nh->hop_limit, key->ipv6_hlimit, - mask->ipv6_hlimit); + set_ipv6_ttl(skb, nh, key->ipv6_hlimit, mask->ipv6_hlimit); flow_key->ip.ttl = nh->hop_limit; } return 0; @@ -634,6 +666,7 @@ static void set_tp_port(struct sk_buff *skb, __be16 *port, __be16 new_port, __sum16 *check) { + ovs_ct_clear(skb, NULL); inet_proto_csum_replace2(check, skb, *port, new_port, false); *port = new_port; } @@ -673,6 +706,7 @@ uh->dest = dst; flow_key->tp.src = src; flow_key->tp.dst = dst; + ovs_ct_clear(skb, NULL); } skb_clear_hash(skb); @@ -735,6 +769,8 @@ sh->checksum = old_csum ^ old_correct_csum ^ new_csum; skb_clear_hash(skb); + ovs_ct_clear(skb, NULL); + flow_key->tp.src = sh->source; flow_key->tp.dst = sh->dest; @@ -1007,7 +1043,7 @@ int rem = nla_len(attr); bool dont_clone_flow_key; - /* The first action is always 'OVS_CLONE_ATTR_ARG'. */ + /* The first action is always 'OVS_CLONE_ATTR_EXEC'. */ clone_arg = nla_data(attr); dont_clone_flow_key = nla_get_u32(clone_arg); actions = nla_next(clone_arg, &rem); diff -u linux-azure-5.4.0/net/openvswitch/conntrack.c linux-azure-5.4.0/net/openvswitch/conntrack.c --- linux-azure-5.4.0/net/openvswitch/conntrack.c +++ linux-azure-5.4.0/net/openvswitch/conntrack.c @@ -730,6 +730,57 @@ } #if IS_ENABLED(CONFIG_NF_NAT) +static void ovs_nat_update_key(struct sw_flow_key *key, + const struct sk_buff *skb, + enum nf_nat_manip_type maniptype) +{ + if (maniptype == NF_NAT_MANIP_SRC) { + __be16 src; + + key->ct_state |= OVS_CS_F_SRC_NAT; + if (key->eth.type == htons(ETH_P_IP)) + key->ipv4.addr.src = ip_hdr(skb)->saddr; + else if (key->eth.type == htons(ETH_P_IPV6)) + memcpy(&key->ipv6.addr.src, &ipv6_hdr(skb)->saddr, + sizeof(key->ipv6.addr.src)); + else + return; + + if (key->ip.proto == IPPROTO_UDP) + src = udp_hdr(skb)->source; + else if (key->ip.proto == IPPROTO_TCP) + src = tcp_hdr(skb)->source; + else if (key->ip.proto == IPPROTO_SCTP) + src = sctp_hdr(skb)->source; + else + return; + + key->tp.src = src; + } else { + __be16 dst; + + key->ct_state |= OVS_CS_F_DST_NAT; + if (key->eth.type == htons(ETH_P_IP)) + key->ipv4.addr.dst = ip_hdr(skb)->daddr; + else if (key->eth.type == htons(ETH_P_IPV6)) + memcpy(&key->ipv6.addr.dst, &ipv6_hdr(skb)->daddr, + sizeof(key->ipv6.addr.dst)); + else + return; + + if (key->ip.proto == IPPROTO_UDP) + dst = udp_hdr(skb)->dest; + else if (key->ip.proto == IPPROTO_TCP) + dst = tcp_hdr(skb)->dest; + else if (key->ip.proto == IPPROTO_SCTP) + dst = sctp_hdr(skb)->dest; + else + return; + + key->tp.dst = dst; + } +} + /* Modelled after nf_nat_ipv[46]_fn(). * range is only used for new, uninitialized NAT state. * Returns either NF_ACCEPT or NF_DROP. @@ -737,7 +788,7 @@ static int ovs_ct_nat_execute(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info ctinfo, const struct nf_nat_range2 *range, - enum nf_nat_manip_type maniptype) + enum nf_nat_manip_type maniptype, struct sw_flow_key *key) { int hooknum, nh_off, err = NF_ACCEPT; @@ -810,58 +861,11 @@ skb_push(skb, nh_off); skb_postpush_rcsum(skb, skb->data, nh_off); - return err; -} - -static void ovs_nat_update_key(struct sw_flow_key *key, - const struct sk_buff *skb, - enum nf_nat_manip_type maniptype) -{ - if (maniptype == NF_NAT_MANIP_SRC) { - __be16 src; - - key->ct_state |= OVS_CS_F_SRC_NAT; - if (key->eth.type == htons(ETH_P_IP)) - key->ipv4.addr.src = ip_hdr(skb)->saddr; - else if (key->eth.type == htons(ETH_P_IPV6)) - memcpy(&key->ipv6.addr.src, &ipv6_hdr(skb)->saddr, - sizeof(key->ipv6.addr.src)); - else - return; - - if (key->ip.proto == IPPROTO_UDP) - src = udp_hdr(skb)->source; - else if (key->ip.proto == IPPROTO_TCP) - src = tcp_hdr(skb)->source; - else if (key->ip.proto == IPPROTO_SCTP) - src = sctp_hdr(skb)->source; - else - return; - - key->tp.src = src; - } else { - __be16 dst; - - key->ct_state |= OVS_CS_F_DST_NAT; - if (key->eth.type == htons(ETH_P_IP)) - key->ipv4.addr.dst = ip_hdr(skb)->daddr; - else if (key->eth.type == htons(ETH_P_IPV6)) - memcpy(&key->ipv6.addr.dst, &ipv6_hdr(skb)->daddr, - sizeof(key->ipv6.addr.dst)); - else - return; - - if (key->ip.proto == IPPROTO_UDP) - dst = udp_hdr(skb)->dest; - else if (key->ip.proto == IPPROTO_TCP) - dst = tcp_hdr(skb)->dest; - else if (key->ip.proto == IPPROTO_SCTP) - dst = sctp_hdr(skb)->dest; - else - return; + /* Update the flow key if NAT successful. */ + if (err == NF_ACCEPT) + ovs_nat_update_key(key, skb, maniptype); - key->tp.dst = dst; - } + return err; } /* Returns NF_DROP if the packet should be dropped, NF_ACCEPT otherwise. */ @@ -903,7 +907,7 @@ } else { return NF_ACCEPT; /* Connection is not NATed. */ } - err = ovs_ct_nat_execute(skb, ct, ctinfo, &info->range, maniptype); + err = ovs_ct_nat_execute(skb, ct, ctinfo, &info->range, maniptype, key); if (err == NF_ACCEPT && ct->status & IPS_DST_NAT) { if (ct->status & IPS_SRC_NAT) { @@ -914,15 +918,11 @@ err = ovs_ct_nat_execute(skb, ct, ctinfo, &info->range, - maniptype); + maniptype, key); } else if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL) { err = ovs_ct_nat_execute(skb, ct, ctinfo, NULL, - NF_NAT_MANIP_SRC); + NF_NAT_MANIP_SRC, key); } } - /* Mark NAT done if successful and update the flow key. */ - if (err == NF_ACCEPT) - ovs_nat_update_key(key, skb, maniptype); - return err; } @@ -1319,7 +1319,8 @@ if (skb_nfct(skb)) { nf_conntrack_put(skb_nfct(skb)); nf_ct_set(skb, NULL, IP_CT_UNTRACKED); - ovs_ct_fill_key(skb, key); + if (key) + ovs_ct_fill_key(skb, key); } return 0; diff -u linux-azure-5.4.0/net/openvswitch/datapath.c linux-azure-5.4.0/net/openvswitch/datapath.c --- linux-azure-5.4.0/net/openvswitch/datapath.c +++ linux-azure-5.4.0/net/openvswitch/datapath.c @@ -236,10 +236,17 @@ upcall.portid = ovs_vport_find_upcall_portid(p, skb); upcall.mru = OVS_CB(skb)->mru; error = ovs_dp_upcall(dp, skb, key, &upcall, 0); - if (unlikely(error)) - kfree_skb(skb); - else + switch (error) { + case 0: + case -EAGAIN: + case -ERESTARTSYS: + case -EINTR: consume_skb(skb); + break; + default: + kfree_skb(skb); + break; + } stats_counter = &stats->n_missed; goto out; } @@ -525,8 +532,9 @@ out: if (err) skb_tx_error(skb); - kfree_skb(user_skb); - kfree_skb(nskb); + consume_skb(user_skb); + consume_skb(nskb); + return err; } @@ -1552,7 +1560,8 @@ if (IS_ERR(dp)) return; - WARN(dp->user_features, "Dropping previously announced user features\n"); + pr_warn("%s: Dropping previously announced user features\n", + ovs_dp_name(dp)); dp->user_features = 0; } diff -u linux-azure-5.4.0/net/packet/af_packet.c linux-azure-5.4.0/net/packet/af_packet.c --- linux-azure-5.4.0/net/packet/af_packet.c +++ linux-azure-5.4.0/net/packet/af_packet.c @@ -1715,6 +1715,7 @@ match->prot_hook.dev = po->prot_hook.dev; match->prot_hook.func = packet_rcv_fanout; match->prot_hook.af_packet_priv = match; + match->prot_hook.af_packet_net = read_pnet(&match->net); match->prot_hook.id_match = match_fanout_group; list_add(&match->list, &fanout_list); } @@ -1728,7 +1729,10 @@ err = -ENOSPC; if (refcount_read(&match->sk_ref) < PACKET_FANOUT_MAX) { __dev_remove_pack(&po->prot_hook); - po->fanout = match; + + /* Paired with packet_setsockopt(PACKET_FANOUT_DATA) */ + WRITE_ONCE(po->fanout, match); + po->rollover = rollover; rollover = NULL; refcount_set(&match->sk_ref, refcount_read(&match->sk_ref) + 1); @@ -2253,8 +2257,11 @@ copy_skb = skb_get(skb); skb_head = skb->data; } - if (copy_skb) + if (copy_skb) { + memset(&PACKET_SKB_CB(copy_skb)->sa.ll, 0, + sizeof(PACKET_SKB_CB(copy_skb)->sa.ll)); skb_set_owner_r(copy_skb, sk); + } } snaplen = po->rx_ring.frame_size - macoff; if ((int)snaplen < 0) { @@ -2656,7 +2663,7 @@ } if (likely(saddr == NULL)) { dev = packet_cached_dev_get(po); - proto = po->num; + proto = READ_ONCE(po->num); } else { err = -EINVAL; if (msg->msg_namelen < sizeof(struct sockaddr_ll)) @@ -2784,8 +2791,9 @@ status = TP_STATUS_SEND_REQUEST; err = po->xmit(skb); - if (unlikely(err > 0)) { - err = net_xmit_errno(err); + if (unlikely(err != 0)) { + if (err > 0) + err = net_xmit_errno(err); if (err && __packet_get_status(po, ph) == TP_STATUS_AVAILABLE) { /* skb was destructed already */ @@ -2869,7 +2877,7 @@ if (likely(saddr == NULL)) { dev = packet_cached_dev_get(po); - proto = po->num; + proto = READ_ONCE(po->num); } else { err = -EINVAL; if (msg->msg_namelen < sizeof(struct sockaddr_ll)) @@ -2952,8 +2960,8 @@ if (err) goto out_free; - if (sock->type == SOCK_RAW && - !dev_validate_header(dev, skb->data, len)) { + if ((sock->type == SOCK_RAW && + !dev_validate_header(dev, skb->data, len)) || !skb->len) { err = -EINVAL; goto out_free; } @@ -2986,8 +2994,12 @@ skb->no_fcs = 1; err = po->xmit(skb); - if (err > 0 && (err = net_xmit_errno(err)) != 0) - goto out_unlock; + if (unlikely(err != 0)) { + if (err > 0) + err = net_xmit_errno(err); + if (err) + goto out_unlock; + } dev_put(dev); @@ -3141,7 +3153,7 @@ /* prevents packet_notifier() from calling * register_prot_hook() */ - po->num = 0; + WRITE_ONCE(po->num, 0); __unregister_prot_hook(sk, true); rcu_read_lock(); dev_curr = po->prot_hook.dev; @@ -3151,17 +3163,17 @@ } BUG_ON(po->running); - po->num = proto; + WRITE_ONCE(po->num, proto); po->prot_hook.type = proto; if (unlikely(unlisted)) { dev_put(dev); po->prot_hook.dev = NULL; - po->ifindex = -1; + WRITE_ONCE(po->ifindex, -1); packet_cached_dev_reset(po); } else { po->prot_hook.dev = dev; - po->ifindex = dev ? dev->ifindex : 0; + WRITE_ONCE(po->ifindex, dev ? dev->ifindex : 0); packet_cached_dev_assign(po, dev); } } @@ -3294,6 +3306,7 @@ po->prot_hook.func = packet_rcv_spkt; po->prot_hook.af_packet_priv = sk; + po->prot_hook.af_packet_net = sock_net(sk); if (proto) { po->prot_hook.type = proto; @@ -3400,6 +3413,8 @@ sock_recv_ts_and_drops(msg, sk, skb); if (msg->msg_name) { + const size_t max_len = min(sizeof(skb->cb), + sizeof(struct sockaddr_storage)); int copy_len; /* If the address length field is there to be filled @@ -3422,6 +3437,10 @@ msg->msg_namelen = sizeof(struct sockaddr_ll); } } + if (WARN_ON_ONCE(copy_len > max_len)) { + copy_len = max_len; + msg->msg_namelen = copy_len; + } memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa, copy_len); } @@ -3475,7 +3494,7 @@ uaddr->sa_family = AF_PACKET; memset(uaddr->sa_data, 0, sizeof(uaddr->sa_data)); rcu_read_lock(); - dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex); + dev = dev_get_by_index_rcu(sock_net(sk), READ_ONCE(pkt_sk(sk)->ifindex)); if (dev) strlcpy(uaddr->sa_data, dev->name, sizeof(uaddr->sa_data)); rcu_read_unlock(); @@ -3490,16 +3509,18 @@ struct sock *sk = sock->sk; struct packet_sock *po = pkt_sk(sk); DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr); + int ifindex; if (peer) return -EOPNOTSUPP; + ifindex = READ_ONCE(po->ifindex); sll->sll_family = AF_PACKET; - sll->sll_ifindex = po->ifindex; - sll->sll_protocol = po->num; + sll->sll_ifindex = ifindex; + sll->sll_protocol = READ_ONCE(po->num); sll->sll_pkttype = 0; rcu_read_lock(); - dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex); + dev = dev_get_by_index_rcu(sock_net(sk), ifindex); if (dev) { sll->sll_hatype = dev->type; sll->sll_halen = dev->addr_len; @@ -3872,7 +3893,8 @@ } case PACKET_FANOUT_DATA: { - if (!po->fanout) + /* Paired with the WRITE_ONCE() in fanout_add() */ + if (!READ_ONCE(po->fanout)) return -EINVAL; return fanout_set_data(po, optval, optlen); @@ -4099,7 +4121,7 @@ } if (msg == NETDEV_UNREGISTER) { packet_cached_dev_reset(po); - po->ifindex = -1; + WRITE_ONCE(po->ifindex, -1); if (po->prot_hook.dev) dev_put(po->prot_hook.dev); po->prot_hook.dev = NULL; @@ -4405,7 +4427,7 @@ was_running = po->running; num = po->num; if (was_running) { - po->num = 0; + WRITE_ONCE(po->num, 0); __unregister_prot_hook(sk, false); } spin_unlock(&po->bind_lock); @@ -4440,7 +4462,7 @@ spin_lock(&po->bind_lock); if (was_running) { - po->num = num; + WRITE_ONCE(po->num, num); register_prot_hook(sk); } spin_unlock(&po->bind_lock); @@ -4451,9 +4473,10 @@ } out_free_pg_vec: - bitmap_free(rx_owner_map); - if (pg_vec) + if (pg_vec) { + bitmap_free(rx_owner_map); free_pg_vec(pg_vec, order, req->tp_block_nr); + } out: return err; } @@ -4613,8 +4636,8 @@ s, refcount_read(&s->sk_refcnt), s->sk_type, - ntohs(po->num), - po->ifindex, + ntohs(READ_ONCE(po->num)), + READ_ONCE(po->ifindex), po->running, atomic_read(&s->sk_rmem_alloc), from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)), diff -u linux-azure-5.4.0/net/qrtr/qrtr.c linux-azure-5.4.0/net/qrtr/qrtr.c --- linux-azure-5.4.0/net/qrtr/qrtr.c +++ linux-azure-5.4.0/net/qrtr/qrtr.c @@ -257,7 +257,7 @@ const struct qrtr_hdr_v2 *v2; struct sk_buff *skb; struct qrtr_cb *cb; - unsigned int size; + size_t size; unsigned int ver; size_t hdrlen; @@ -314,7 +314,7 @@ goto err; } - if (len != ALIGN(size, 4) + hdrlen) + if (!size || len != ALIGN(size, 4) + hdrlen) goto err; if (cb->dst_port != QRTR_PORT_CTRL && cb->type != QRTR_TYPE_DATA) diff -u linux-azure-5.4.0/net/rds/recv.c linux-azure-5.4.0/net/rds/recv.c --- linux-azure-5.4.0/net/rds/recv.c +++ linux-azure-5.4.0/net/rds/recv.c @@ -714,7 +714,7 @@ if (rds_cmsg_recv(inc, msg, rs)) { ret = -EFAULT; - goto out; + break; } rds_recvmsg_zcookie(rs, msg); diff -u linux-azure-5.4.0/net/rose/rose_loopback.c linux-azure-5.4.0/net/rose/rose_loopback.c --- linux-azure-5.4.0/net/rose/rose_loopback.c +++ linux-azure-5.4.0/net/rose/rose_loopback.c @@ -96,7 +96,8 @@ } if (frametype == ROSE_CALL_REQUEST) { - if (!rose_loopback_neigh->dev) { + if (!rose_loopback_neigh->dev && + !rose_loopback_neigh->loopback) { kfree_skb(skb); continue; } diff -u linux-azure-5.4.0/net/rxrpc/ar-internal.h linux-azure-5.4.0/net/rxrpc/ar-internal.h --- linux-azure-5.4.0/net/rxrpc/ar-internal.h +++ linux-azure-5.4.0/net/rxrpc/ar-internal.h @@ -665,20 +665,21 @@ spinlock_t input_lock; /* Lock for packet input to this call */ - /* receive-phase ACK management */ + /* Receive-phase ACK management (ACKs we send). */ u8 ackr_reason; /* reason to ACK */ rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */ - rxrpc_serial_t ackr_first_seq; /* first sequence number received */ - rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */ - rxrpc_seq_t ackr_consumed; /* Highest packet shown consumed */ - rxrpc_seq_t ackr_seen; /* Highest packet shown seen */ + rxrpc_seq_t ackr_highest_seq; /* Higest sequence number received */ + atomic_t ackr_nr_unacked; /* Number of unacked packets */ + atomic_t ackr_nr_consumed; /* Number of packets needing hard ACK */ /* ping management */ rxrpc_serial_t ping_serial; /* Last ping sent */ ktime_t ping_time; /* Time last ping sent */ - /* transmission-phase ACK management */ + /* Transmission-phase ACK management (ACKs we've received). */ ktime_t acks_latest_ts; /* Timestamp of latest ACK received */ + rxrpc_seq_t acks_first_seq; /* first sequence number received */ + rxrpc_seq_t acks_prev_seq; /* Highest previousPacket received */ rxrpc_seq_t acks_lowest_nak; /* Lowest NACK in the buffer (or ==tx_hard_ack) */ rxrpc_seq_t acks_lost_top; /* tx_top at the time lost-ack ping sent */ rxrpc_serial_t acks_lost_ping; /* Serial number of probe ACK */ diff -u linux-azure-5.4.0/net/rxrpc/call_event.c linux-azure-5.4.0/net/rxrpc/call_event.c --- linux-azure-5.4.0/net/rxrpc/call_event.c +++ linux-azure-5.4.0/net/rxrpc/call_event.c @@ -157,7 +157,7 @@ static void rxrpc_resend(struct rxrpc_call *call, unsigned long now_j) { struct sk_buff *skb; - unsigned long resend_at, rto_j; + unsigned long resend_at; rxrpc_seq_t cursor, seq, top; ktime_t now, max_age, oldest, ack_ts; int ix; @@ -165,10 +165,8 @@ _enter("{%d,%d}", call->tx_hard_ack, call->tx_top); - rto_j = call->peer->rto_j; - now = ktime_get_real(); - max_age = ktime_sub(now, jiffies_to_usecs(rto_j)); + max_age = ktime_sub_us(now, jiffies_to_usecs(call->peer->rto_j)); spin_lock_bh(&call->lock); @@ -213,7 +211,7 @@ } resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest))); - resend_at += jiffies + rto_j; + resend_at += jiffies + rxrpc_get_rto_backoff(call->peer, retrans); WRITE_ONCE(call->resend_at, resend_at); if (unacked) @@ -409,7 +407,8 @@ goto recheck_state; } - if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) { + if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events) && + call->state != RXRPC_CALL_CLIENT_RECV_REPLY) { rxrpc_resend(call, now); goto recheck_state; } diff -u linux-azure-5.4.0/net/rxrpc/input.c linux-azure-5.4.0/net/rxrpc/input.c --- linux-azure-5.4.0/net/rxrpc/input.c +++ linux-azure-5.4.0/net/rxrpc/input.c @@ -413,8 +413,8 @@ { struct rxrpc_skb_priv *sp = rxrpc_skb(skb); enum rxrpc_call_state state; - unsigned int j, nr_subpackets; - rxrpc_serial_t serial = sp->hdr.serial, ack_serial = 0; + unsigned int j, nr_subpackets, nr_unacked = 0; + rxrpc_serial_t serial = sp->hdr.serial, ack_serial = serial; rxrpc_seq_t seq0 = sp->hdr.seq, hard_ack; bool immediate_ack = false, jumbo_bad = false; u8 ack = 0; @@ -454,7 +454,6 @@ !rxrpc_receiving_reply(call)) goto unlock; - call->ackr_prev_seq = seq0; hard_ack = READ_ONCE(call->rx_hard_ack); nr_subpackets = sp->nr_subpackets; @@ -535,6 +534,9 @@ ack_serial = serial; } + if (after(seq0, call->ackr_highest_seq)) + call->ackr_highest_seq = seq0; + /* Queue the packet. We use a couple of memory barriers here as need * to make sure that rx_top is perceived to be set after the buffer * pointer and that the buffer pointer is set after the annotation and @@ -568,6 +570,8 @@ sp = NULL; } + nr_unacked++; + if (last) { set_bit(RXRPC_CALL_RX_LAST, &call->flags); if (!ack) { @@ -587,9 +591,14 @@ } call->rx_expect_next = seq + 1; } + if (!ack) + ack_serial = serial; } ack: + if (atomic_add_return(nr_unacked, &call->ackr_nr_unacked) > 2 && !ack) + ack = RXRPC_ACK_IDLE; + if (ack) rxrpc_propose_ACK(call, ack, ack_serial, immediate_ack, true, @@ -808,7 +817,7 @@ static bool rxrpc_is_ack_valid(struct rxrpc_call *call, rxrpc_seq_t first_pkt, rxrpc_seq_t prev_pkt) { - rxrpc_seq_t base = READ_ONCE(call->ackr_first_seq); + rxrpc_seq_t base = READ_ONCE(call->acks_first_seq); if (after(first_pkt, base)) return true; /* The window advanced */ @@ -816,7 +825,7 @@ if (before(first_pkt, base)) return false; /* firstPacket regressed */ - if (after_eq(prev_pkt, call->ackr_prev_seq)) + if (after_eq(prev_pkt, call->acks_prev_seq)) return true; /* previousPacket hasn't regressed. */ /* Some rx implementations put a serial number in previousPacket. */ @@ -891,8 +900,8 @@ /* Discard any out-of-order or duplicate ACKs (outside lock). */ if (!rxrpc_is_ack_valid(call, first_soft_ack, prev_pkt)) { trace_rxrpc_rx_discard_ack(call->debug_id, ack_serial, - first_soft_ack, call->ackr_first_seq, - prev_pkt, call->ackr_prev_seq); + first_soft_ack, call->acks_first_seq, + prev_pkt, call->acks_prev_seq); return; } @@ -907,14 +916,14 @@ /* Discard any out-of-order or duplicate ACKs (inside lock). */ if (!rxrpc_is_ack_valid(call, first_soft_ack, prev_pkt)) { trace_rxrpc_rx_discard_ack(call->debug_id, ack_serial, - first_soft_ack, call->ackr_first_seq, - prev_pkt, call->ackr_prev_seq); + first_soft_ack, call->acks_first_seq, + prev_pkt, call->acks_prev_seq); goto out; } call->acks_latest_ts = skb->tstamp; - call->ackr_first_seq = first_soft_ack; - call->ackr_prev_seq = prev_pkt; + call->acks_first_seq = first_soft_ack; + call->acks_prev_seq = prev_pkt; /* Parse rwind and mtu sizes if provided. */ if (buf.info.rxMTU) diff -u linux-azure-5.4.0/net/rxrpc/local_object.c linux-azure-5.4.0/net/rxrpc/local_object.c --- linux-azure-5.4.0/net/rxrpc/local_object.c +++ linux-azure-5.4.0/net/rxrpc/local_object.c @@ -448,6 +448,9 @@ container_of(work, struct rxrpc_local, processor); bool again; + if (local->dead) + return; + trace_rxrpc_local(local->debug_id, rxrpc_local_processing, atomic_read(&local->usage), NULL); diff -u linux-azure-5.4.0/net/rxrpc/output.c linux-azure-5.4.0/net/rxrpc/output.c --- linux-azure-5.4.0/net/rxrpc/output.c +++ linux-azure-5.4.0/net/rxrpc/output.c @@ -74,11 +74,18 @@ u8 reason) { rxrpc_serial_t serial; + unsigned int tmp; rxrpc_seq_t hard_ack, top, seq; int ix; u32 mtu, jmax; u8 *ackp = pkt->acks; + tmp = atomic_xchg(&call->ackr_nr_unacked, 0); + tmp |= atomic_xchg(&call->ackr_nr_consumed, 0); + if (!tmp && (reason == RXRPC_ACK_DELAY || + reason == RXRPC_ACK_IDLE)) + return 0; + /* Barrier against rxrpc_input_data(). */ serial = call->ackr_serial; hard_ack = READ_ONCE(call->rx_hard_ack); @@ -89,7 +96,7 @@ pkt->ack.bufferSpace = htons(8); pkt->ack.maxSkew = htons(0); pkt->ack.firstPacket = htonl(hard_ack + 1); - pkt->ack.previousPacket = htonl(call->ackr_prev_seq); + pkt->ack.previousPacket = htonl(call->ackr_highest_seq); pkt->ack.serial = htonl(serial); pkt->ack.reason = reason; pkt->ack.nAcks = top - hard_ack; @@ -180,6 +187,10 @@ n = rxrpc_fill_out_ack(conn, call, pkt, &hard_ack, &top, reason); spin_unlock_bh(&call->lock); + if (n == 0) { + kfree(pkt); + return 0; + } iov[0].iov_base = pkt; iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n; @@ -227,13 +238,6 @@ ntohl(pkt->ack.serial), false, true, rxrpc_propose_ack_retry_tx); - } else { - spin_lock_bh(&call->lock); - if (after(hard_ack, call->ackr_consumed)) - call->ackr_consumed = hard_ack; - if (after(top, call->ackr_seen)) - call->ackr_seen = top; - spin_unlock_bh(&call->lock); } rxrpc_set_keepalive(call); @@ -426,7 +430,7 @@ if (call->peer->rtt_count > 1) { unsigned long nowj = jiffies, ack_lost_at; - ack_lost_at = rxrpc_get_rto_backoff(call->peer, retrans); + ack_lost_at = rxrpc_get_rto_backoff(call->peer, false); ack_lost_at += nowj; WRITE_ONCE(call->ack_lost_at, ack_lost_at); rxrpc_reduce_call_timer(call, ack_lost_at, nowj, diff -u linux-azure-5.4.0/net/rxrpc/peer_object.c linux-azure-5.4.0/net/rxrpc/peer_object.c --- linux-azure-5.4.0/net/rxrpc/peer_object.c +++ linux-azure-5.4.0/net/rxrpc/peer_object.c @@ -297,6 +297,12 @@ return peer; } +static void rxrpc_free_peer(struct rxrpc_peer *peer) +{ + rxrpc_put_local(peer->local); + kfree_rcu(peer, rcu); +} + /* * Set up a new incoming peer. There shouldn't be any other matching peers * since we've already done a search in the list from the non-reentrant context @@ -363,7 +369,7 @@ spin_unlock_bh(&rxnet->peer_hash_lock); if (peer) - kfree(candidate); + rxrpc_free_peer(candidate); else peer = candidate; } @@ -418,8 +424,7 @@ list_del_init(&peer->keepalive_link); spin_unlock_bh(&rxnet->peer_hash_lock); - rxrpc_put_local(peer->local); - kfree_rcu(peer, rcu); + rxrpc_free_peer(peer); } /* @@ -455,8 +460,7 @@ if (n == 0) { hash_del_rcu(&peer->hash_link); list_del_init(&peer->keepalive_link); - rxrpc_put_local(peer->local); - kfree_rcu(peer, rcu); + rxrpc_free_peer(peer); } } diff -u linux-azure-5.4.0/net/rxrpc/recvmsg.c linux-azure-5.4.0/net/rxrpc/recvmsg.c --- linux-azure-5.4.0/net/rxrpc/recvmsg.c +++ linux-azure-5.4.0/net/rxrpc/recvmsg.c @@ -212,11 +212,9 @@ rxrpc_end_rx_phase(call, serial); } else { /* Check to see if there's an ACK that needs sending. */ - if (after_eq(hard_ack, call->ackr_consumed + 2) || - after_eq(top, call->ackr_seen + 2) || - (hard_ack == top && after(hard_ack, call->ackr_consumed))) - rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial, - true, true, + if (atomic_inc_return(&call->ackr_nr_consumed) > 2) + rxrpc_propose_ACK(call, RXRPC_ACK_IDLE, serial, + true, false, rxrpc_propose_ack_rotate_rx); if (call->ackr_reason && call->ackr_reason != RXRPC_ACK_DELAY) rxrpc_send_ack_packet(call, false, NULL); diff -u linux-azure-5.4.0/net/rxrpc/rtt.c linux-azure-5.4.0/net/rxrpc/rtt.c --- linux-azure-5.4.0/net/rxrpc/rtt.c +++ linux-azure-5.4.0/net/rxrpc/rtt.c @@ -23,7 +23,7 @@ static u32 __rxrpc_set_rto(const struct rxrpc_peer *peer) { - return _usecs_to_jiffies((peer->srtt_us >> 3) + peer->rttvar_us); + return usecs_to_jiffies((peer->srtt_us >> 3) + peer->rttvar_us); } static u32 rxrpc_bound_rto(u32 rto) diff -u linux-azure-5.4.0/net/rxrpc/rxkad.c linux-azure-5.4.0/net/rxrpc/rxkad.c --- linux-azure-5.4.0/net/rxrpc/rxkad.c +++ linux-azure-5.4.0/net/rxrpc/rxkad.c @@ -451,7 +451,7 @@ * directly into the target buffer. */ sg = _sg; - nsg = skb_shinfo(skb)->nr_frags; + nsg = skb_shinfo(skb)->nr_frags + 1; if (nsg <= 4) { nsg = 4; } else { diff -u linux-azure-5.4.0/net/rxrpc/sendmsg.c linux-azure-5.4.0/net/rxrpc/sendmsg.c --- linux-azure-5.4.0/net/rxrpc/sendmsg.c +++ linux-azure-5.4.0/net/rxrpc/sendmsg.c @@ -463,6 +463,12 @@ success: ret = copied; + if (READ_ONCE(call->state) == RXRPC_CALL_COMPLETE) { + read_lock_bh(&call->state_lock); + if (call->error < 0) + ret = call->error; + read_unlock_bh(&call->state_lock); + } out: call->tx_pending = skb; _leave(" = %d", ret); diff -u linux-azure-5.4.0/net/rxrpc/sysctl.c linux-azure-5.4.0/net/rxrpc/sysctl.c --- linux-azure-5.4.0/net/rxrpc/sysctl.c +++ linux-azure-5.4.0/net/rxrpc/sysctl.c @@ -12,7 +12,7 @@ static struct ctl_table_header *rxrpc_sysctl_reg_table; static const unsigned int four = 4; -static const unsigned int thirtytwo = 32; +static const unsigned int max_backlog = RXRPC_BACKLOG_MAX - 1; static const unsigned int n_65535 = 65535; static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1; static const unsigned long one_jiffy = 1; @@ -97,7 +97,7 @@ .mode = 0644, .proc_handler = proc_dointvec_minmax, .extra1 = (void *)&four, - .extra2 = (void *)&thirtytwo, + .extra2 = (void *)&max_backlog, }, { .procname = "rx_window_size", diff -u linux-azure-5.4.0/net/sched/act_api.c linux-azure-5.4.0/net/sched/act_api.c --- linux-azure-5.4.0/net/sched/act_api.c +++ linux-azure-5.4.0/net/sched/act_api.c @@ -231,6 +231,8 @@ index++; if (index < s_i) continue; + if (IS_ERR(p)) + continue; if (jiffy_since && time_after(jiffy_since, @@ -285,7 +287,8 @@ } static int tcf_del_walker(struct tcf_idrinfo *idrinfo, struct sk_buff *skb, - const struct tc_action_ops *ops) + const struct tc_action_ops *ops, + struct netlink_ext_ack *extack) { struct nlattr *nest; int n_i = 0; @@ -301,22 +304,28 @@ if (nla_put_string(skb, TCA_KIND, ops->kind)) goto nla_put_failure; + ret = 0; mutex_lock(&idrinfo->lock); idr_for_each_entry_ul(idr, p, tmp, id) { if (IS_ERR(p)) continue; ret = tcf_idr_release_unsafe(p); - if (ret == ACT_P_DELETED) { + if (ret == ACT_P_DELETED) module_put(ops->owner); - n_i++; - } else if (ret < 0) { - mutex_unlock(&idrinfo->lock); - goto nla_put_failure; - } + else if (ret < 0) + break; + n_i++; } mutex_unlock(&idrinfo->lock); + if (ret < 0) { + if (n_i) + NL_SET_ERR_MSG(extack, "Unable to flush all TC actions"); + else + goto nla_put_failure; + } - if (nla_put_u32(skb, TCA_FCNT, n_i)) + ret = nla_put_u32(skb, TCA_FCNT, n_i); + if (ret) goto nla_put_failure; nla_nest_end(skb, nest); @@ -334,7 +343,7 @@ struct tcf_idrinfo *idrinfo = tn->idrinfo; if (type == RTM_DELACTION) { - return tcf_del_walker(idrinfo, skb, ops); + return tcf_del_walker(idrinfo, skb, ops, extack); } else if (type == RTM_GETACTION) { return tcf_dump_walker(idrinfo, skb, cb); } else { @@ -649,15 +658,24 @@ restart_act_graph: for (i = 0; i < nr_actions; i++) { const struct tc_action *a = actions[i]; + int repeat_ttl; if (jmp_prgcnt > 0) { jmp_prgcnt -= 1; continue; } + + repeat_ttl = 32; repeat: ret = a->ops->act(skb, a, res); - if (ret == TC_ACT_REPEAT) - goto repeat; /* we need a ttl - JHS */ + + if (unlikely(ret == TC_ACT_REPEAT)) { + if (--repeat_ttl != 0) + goto repeat; + /* suspicious opcode, stop pipeline */ + net_warn_ratelimited("TC_ACT_REPEAT abuse ?\n"); + return TC_ACT_OK; + } if (TC_ACT_EXT_CMP(ret, TC_ACT_JUMP)) { jmp_prgcnt = ret & TCA_ACT_MAX_PRIO_MASK; diff -u linux-azure-5.4.0/net/sched/act_ct.c linux-azure-5.4.0/net/sched/act_ct.c --- linux-azure-5.4.0/net/sched/act_ct.c +++ linux-azure-5.4.0/net/sched/act_ct.c @@ -361,14 +361,19 @@ } err = ct_nat_execute(skb, ct, ctinfo, range, maniptype); - if (err == NF_ACCEPT && - ct->status & IPS_SRC_NAT && ct->status & IPS_DST_NAT) { - if (maniptype == NF_NAT_MANIP_SRC) - maniptype = NF_NAT_MANIP_DST; - else - maniptype = NF_NAT_MANIP_SRC; + if (err == NF_ACCEPT && ct->status & IPS_DST_NAT) { + if (ct->status & IPS_SRC_NAT) { + if (maniptype == NF_NAT_MANIP_SRC) + maniptype = NF_NAT_MANIP_DST; + else + maniptype = NF_NAT_MANIP_SRC; - err = ct_nat_execute(skb, ct, ctinfo, range, maniptype); + err = ct_nat_execute(skb, ct, ctinfo, range, + maniptype); + } else if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL) { + err = ct_nat_execute(skb, ct, ctinfo, NULL, + NF_NAT_MANIP_SRC); + } } return err; #else @@ -469,7 +474,8 @@ /* This will take care of sending queued events * even if the connection is already confirmed. */ - nf_conntrack_confirm(skb); + if (nf_conntrack_confirm(skb) != NF_ACCEPT) + goto drop; } out_push: @@ -648,9 +654,6 @@ sizeof(p->zone)); } - if (p->zone == NF_CT_DEFAULT_ZONE_ID) - return 0; - nf_ct_zone_init(&zone, p->zone, NF_CT_DEFAULT_ZONE_DIR, 0); tmpl = nf_ct_tmpl_alloc(net, &zone, GFP_KERNEL); if (!tmpl) { diff -u linux-azure-5.4.0/net/sched/act_mirred.c linux-azure-5.4.0/net/sched/act_mirred.c --- linux-azure-5.4.0/net/sched/act_mirred.c +++ linux-azure-5.4.0/net/sched/act_mirred.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -218,6 +219,7 @@ bool want_ingress; bool is_redirect; bool expects_nh; + bool at_ingress; int m_eaction; int mac_len; bool at_nh; @@ -253,7 +255,8 @@ * ingress - that covers the TC S/W datapath. */ is_redirect = tcf_mirred_is_act_redirect(m_eaction); - use_reinsert = skb_at_tc_ingress(skb) && is_redirect && + at_ingress = skb_at_tc_ingress(skb); + use_reinsert = at_ingress && is_redirect && tcf_mirred_can_reinsert(retval); if (!use_reinsert) { skb2 = skb_clone(skb, GFP_ATOMIC); @@ -263,6 +266,11 @@ want_ingress = tcf_mirred_act_wants_ingress(m_eaction); + /* All mirred/redirected skbs should clear previous ct info */ + nf_reset_ct(skb2); + if (want_ingress && !at_ingress) /* drop dst for egress -> ingress */ + skb_dst_drop(skb2); + expects_nh = want_ingress || !m_mac_header_xmit; at_nh = skb->data == skb_network_header(skb); if (at_nh != expects_nh) { diff -u linux-azure-5.4.0/net/sched/act_pedit.c linux-azure-5.4.0/net/sched/act_pedit.c --- linux-azure-5.4.0/net/sched/act_pedit.c +++ linux-azure-5.4.0/net/sched/act_pedit.c @@ -148,7 +148,7 @@ struct nlattr *pattr; struct tcf_pedit *p; int ret = 0, err; - int ksize; + int i, ksize; u32 index; if (!nla) { @@ -227,6 +227,22 @@ p->tcfp_nkeys = parm->nkeys; } memcpy(p->tcfp_keys, parm->keys, ksize); + p->tcfp_off_max_hint = 0; + for (i = 0; i < p->tcfp_nkeys; ++i) { + u32 cur = p->tcfp_keys[i].off; + + /* sanitize the shift value for any later use */ + p->tcfp_keys[i].shift = min_t(size_t, BITS_PER_TYPE(int) - 1, + p->tcfp_keys[i].shift); + + /* The AT option can read a single byte, we can bound the actual + * value with uchar max. + */ + cur += (0xff & p->tcfp_keys[i].offmask) >> p->tcfp_keys[i].shift; + + /* Each key touches 4 bytes starting from the computed offset */ + p->tcfp_off_max_hint = max(p->tcfp_off_max_hint, cur + 4); + } p->tcfp_flags = parm->flags; goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch); @@ -307,13 +323,18 @@ struct tcf_result *res) { struct tcf_pedit *p = to_pedit(a); + u32 max_offset; int i; - if (skb_unclone(skb, GFP_ATOMIC)) - return p->tcf_action; - spin_lock(&p->tcf_lock); + max_offset = (skb_transport_header_was_set(skb) ? + skb_transport_offset(skb) : + skb_network_offset(skb)) + + p->tcfp_off_max_hint; + if (skb_ensure_writable(skb, min(skb->len, max_offset))) + goto unlock; + tcf_lastuse_update(&p->tcf_tm); if (p->tcfp_nkeys > 0) { @@ -402,6 +423,7 @@ p->tcf_qstats.overlimits++; done: bstats_update(&p->tcf_bstats, skb); +unlock: spin_unlock(&p->tcf_lock); return p->tcf_action; } diff -u linux-azure-5.4.0/net/sched/act_police.c linux-azure-5.4.0/net/sched/act_police.c --- linux-azure-5.4.0/net/sched/act_police.c +++ linux-azure-5.4.0/net/sched/act_police.c @@ -213,6 +213,20 @@ return err; } +static bool tcf_police_mtu_check(struct sk_buff *skb, u32 limit) +{ + u32 len; + + if (skb_is_gso(skb)) + return skb_gso_validate_mac_len(skb, limit); + + len = qdisc_pkt_len(skb); + if (skb_at_tc_ingress(skb)) + len += skb->mac_len; + + return len <= limit; +} + static int tcf_police_act(struct sk_buff *skb, const struct tc_action *a, struct tcf_result *res) { @@ -235,7 +249,7 @@ goto inc_overlimits; } - if (qdisc_pkt_len(skb) <= p->tcfp_mtu) { + if (tcf_police_mtu_check(skb, p->tcfp_mtu)) { if (!p->rate_present) { ret = p->tcfp_result; goto end; diff -u linux-azure-5.4.0/net/sched/act_sample.c linux-azure-5.4.0/net/sched/act_sample.c --- linux-azure-5.4.0/net/sched/act_sample.c +++ linux-azure-5.4.0/net/sched/act_sample.c @@ -265,14 +265,12 @@ struct tcf_sample *s = to_sample(a); struct psample_group *group; - spin_lock_bh(&s->tcf_lock); group = rcu_dereference_protected(s->psample_group, lockdep_is_held(&s->tcf_lock)); if (group) { psample_group_take(group); *destructor = tcf_psample_group_put; } - spin_unlock_bh(&s->tcf_lock); return group; } diff -u linux-azure-5.4.0/net/sched/act_skbmod.c linux-azure-5.4.0/net/sched/act_skbmod.c --- linux-azure-5.4.0/net/sched/act_skbmod.c +++ linux-azure-5.4.0/net/sched/act_skbmod.c @@ -6,6 +6,7 @@ */ #include +#include #include #include #include @@ -33,6 +34,13 @@ tcf_lastuse_update(&d->tcf_tm); bstats_cpu_update(this_cpu_ptr(d->common.cpu_bstats), skb); + action = READ_ONCE(d->tcf_action); + if (unlikely(action == TC_ACT_SHOT)) + goto drop; + + if (!skb->dev || skb->dev->type != ARPHRD_ETHER) + return action; + /* XXX: if you are going to edit more fields beyond ethernet header * (example when you add IP header replacement or vlan swap) * then MAX_EDIT_LEN needs to change appropriately @@ -41,10 +49,6 @@ if (unlikely(err)) /* best policy is to drop on the floor */ goto drop; - action = READ_ONCE(d->tcf_action); - if (unlikely(action == TC_ACT_SHOT)) - goto drop; - p = rcu_dereference_bh(d->skbmod_p); flags = p->flags; if (flags & SKBMOD_F_DMAC) diff -u linux-azure-5.4.0/net/sched/act_vlan.c linux-azure-5.4.0/net/sched/act_vlan.c --- linux-azure-5.4.0/net/sched/act_vlan.c +++ linux-azure-5.4.0/net/sched/act_vlan.c @@ -70,7 +70,7 @@ /* replace the vid */ tci = (tci & ~VLAN_VID_MASK) | p->tcfv_push_vid; /* replace prio bits, if tcfv_push_prio specified */ - if (p->tcfv_push_prio) { + if (p->tcfv_push_prio_exists) { tci &= ~VLAN_PRIO_MASK; tci |= p->tcfv_push_prio << VLAN_PRIO_SHIFT; } @@ -107,6 +107,7 @@ struct tc_action_net *tn = net_generic(net, vlan_net_id); struct nlattr *tb[TCA_VLAN_MAX + 1]; struct tcf_chain *goto_ch = NULL; + bool push_prio_exists = false; struct tcf_vlan_params *p; struct tc_vlan *parm; struct tcf_vlan *v; @@ -175,7 +176,8 @@ push_proto = htons(ETH_P_8021Q); } - if (tb[TCA_VLAN_PUSH_VLAN_PRIORITY]) + push_prio_exists = !!tb[TCA_VLAN_PUSH_VLAN_PRIORITY]; + if (push_prio_exists) push_prio = nla_get_u8(tb[TCA_VLAN_PUSH_VLAN_PRIORITY]); break; default: @@ -216,6 +218,7 @@ p->tcfv_action = action; p->tcfv_push_vid = push_vid; p->tcfv_push_prio = push_prio; + p->tcfv_push_prio_exists = push_prio_exists || action == TCA_VLAN_ACT_PUSH; p->tcfv_push_proto = push_proto; spin_lock_bh(&v->tcf_lock); diff -u linux-azure-5.4.0/net/sched/cls_api.c linux-azure-5.4.0/net/sched/cls_api.c --- linux-azure-5.4.0/net/sched/cls_api.c +++ linux-azure-5.4.0/net/sched/cls_api.c @@ -1639,10 +1639,10 @@ if (chain->flushing) return -EAGAIN; + RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info)); if (*chain_info->pprev == chain->filter_chain) tcf_chain0_head_change(chain, tp); tcf_proto_get(tp); - RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info)); rcu_assign_pointer(*chain_info->pprev, tp); return 0; @@ -1928,9 +1928,9 @@ bool prio_allocate; u32 parent; u32 chain_index; - struct Qdisc *q = NULL; + struct Qdisc *q; struct tcf_chain_info chain_info; - struct tcf_chain *chain = NULL; + struct tcf_chain *chain; struct tcf_block *block; struct tcf_proto *tp; unsigned long cl; @@ -1958,6 +1958,8 @@ tp = NULL; cl = 0; block = NULL; + q = NULL; + chain = NULL; if (prio == 0) { /* If no priority is provided by the user, @@ -2096,6 +2098,7 @@ } if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) { + tfilter_put(tp, fh); NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind"); err = -EINVAL; goto errout; @@ -2764,8 +2767,8 @@ struct tcmsg *t; u32 parent; u32 chain_index; - struct Qdisc *q = NULL; - struct tcf_chain *chain = NULL; + struct Qdisc *q; + struct tcf_chain *chain; struct tcf_block *block; unsigned long cl; int err; @@ -2775,6 +2778,7 @@ return -EPERM; replay: + q = NULL; err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX, rtm_tca_policy, extack); if (err < 0) @@ -2866,7 +2870,7 @@ break; case RTM_GETCHAIN: err = tc_chain_notify(chain, skb, n->nlmsg_seq, - n->nlmsg_seq, n->nlmsg_type, true); + n->nlmsg_flags, n->nlmsg_type, true); if (err < 0) NL_SET_ERR_MSG(extack, "Failed to send chain notify message"); break; @@ -3436,7 +3440,7 @@ int tc_setup_flow_action(struct flow_action *flow_action, const struct tcf_exts *exts, bool rtnl_held) { - const struct tc_action *act; + struct tc_action *act; int i, j, k, err = 0; if (!exts) @@ -3450,6 +3454,7 @@ struct flow_action_entry *entry; entry = &flow_action->entries[j]; + spin_lock_bh(&act->tcfa_lock); if (is_tcf_gact_ok(act)) { entry->id = FLOW_ACTION_ACCEPT; } else if (is_tcf_gact_shot(act)) { @@ -3490,13 +3495,13 @@ break; default: err = -EOPNOTSUPP; - goto err_out; + goto err_out_locked; } } else if (is_tcf_tunnel_set(act)) { entry->id = FLOW_ACTION_TUNNEL_ENCAP; err = tcf_tunnel_encap_get_tunnel(entry, act); if (err) - goto err_out; + goto err_out_locked; } else if (is_tcf_tunnel_release(act)) { entry->id = FLOW_ACTION_TUNNEL_DECAP; } else if (is_tcf_pedit(act)) { @@ -3510,7 +3515,7 @@ break; default: err = -EOPNOTSUPP; - goto err_out; + goto err_out_locked; } entry->mangle.htype = tcf_pedit_htype(act, k); entry->mangle.mask = tcf_pedit_mask(act, k); @@ -3561,15 +3566,17 @@ entry->mpls_mangle.ttl = tcf_mpls_ttl(act); break; default: - goto err_out; + err = -EOPNOTSUPP; + goto err_out_locked; } } else if (is_tcf_skbedit_ptype(act)) { entry->id = FLOW_ACTION_PTYPE; entry->ptype = tcf_skbedit_ptype(act); } else { err = -EOPNOTSUPP; - goto err_out; + goto err_out_locked; } + spin_unlock_bh(&act->tcfa_lock); if (!is_tcf_pedit(act)) j++; @@ -3583,6 +3590,9 @@ tc_cleanup_flow_action(flow_action); return err; +err_out_locked: + spin_unlock_bh(&act->tcfa_lock); + goto err_out; } EXPORT_SYMBOL(tc_setup_flow_action); diff -u linux-azure-5.4.0/net/sched/cls_flower.c linux-azure-5.4.0/net/sched/cls_flower.c --- linux-azure-5.4.0/net/sched/cls_flower.c +++ linux-azure-5.4.0/net/sched/cls_flower.c @@ -784,6 +784,7 @@ static void fl_set_key_vlan(struct nlattr **tb, __be16 ethertype, int vlan_id_key, int vlan_prio_key, + int vlan_next_eth_type_key, struct flow_dissector_key_vlan *key_val, struct flow_dissector_key_vlan *key_mask) { @@ -802,6 +803,11 @@ } key_val->vlan_tpid = ethertype; key_mask->vlan_tpid = cpu_to_be16(~0); + if (tb[vlan_next_eth_type_key]) { + key_val->vlan_eth_type = + nla_get_be16(tb[vlan_next_eth_type_key]); + key_mask->vlan_eth_type = cpu_to_be16(~0); + } } static void fl_set_key_flag(u32 flower_key, u32 flower_mask, @@ -1076,8 +1082,9 @@ if (eth_type_vlan(ethertype)) { fl_set_key_vlan(tb, ethertype, TCA_FLOWER_KEY_VLAN_ID, - TCA_FLOWER_KEY_VLAN_PRIO, &key->vlan, - &mask->vlan); + TCA_FLOWER_KEY_VLAN_PRIO, + TCA_FLOWER_KEY_VLAN_ETH_TYPE, + &key->vlan, &mask->vlan); if (tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]) { ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_VLAN_ETH_TYPE]); @@ -1085,6 +1092,7 @@ fl_set_key_vlan(tb, ethertype, TCA_FLOWER_KEY_CVLAN_ID, TCA_FLOWER_KEY_CVLAN_PRIO, + TCA_FLOWER_KEY_CVLAN_ETH_TYPE, &key->cvlan, &mask->cvlan); fl_set_key_val(tb, &key->basic.n_proto, TCA_FLOWER_KEY_CVLAN_ETH_TYPE, @@ -1741,18 +1749,24 @@ arg->count = arg->skip; + rcu_read_lock(); idr_for_each_entry_continue_ul(&head->handle_idr, f, tmp, id) { /* don't return filters that are being deleted */ if (!refcount_inc_not_zero(&f->refcnt)) continue; + rcu_read_unlock(); + if (arg->fn(tp, f, arg) < 0) { __fl_put(f); arg->stop = 1; + rcu_read_lock(); break; } __fl_put(f); arg->count++; + rcu_read_lock(); } + rcu_read_unlock(); arg->cookie = id; } @@ -2266,13 +2280,13 @@ goto nla_put_failure; if (mask->basic.n_proto) { - if (mask->cvlan.vlan_tpid) { + if (mask->cvlan.vlan_eth_type) { if (nla_put_be16(skb, TCA_FLOWER_KEY_CVLAN_ETH_TYPE, key->basic.n_proto)) goto nla_put_failure; - } else if (mask->vlan.vlan_tpid) { + } else if (mask->vlan.vlan_eth_type) { if (nla_put_be16(skb, TCA_FLOWER_KEY_VLAN_ETH_TYPE, - key->basic.n_proto)) + key->vlan.vlan_eth_type)) goto nla_put_failure; } } diff -u linux-azure-5.4.0/net/sched/cls_route.c linux-azure-5.4.0/net/sched/cls_route.c --- linux-azure-5.4.0/net/sched/cls_route.c +++ linux-azure-5.4.0/net/sched/cls_route.c @@ -424,6 +424,11 @@ return -EINVAL; } + if (!nhandle) { + NL_SET_ERR_MSG(extack, "Replacing with handle of 0 is invalid"); + return -EINVAL; + } + h1 = to_hash(nhandle); b = rtnl_dereference(head->table[h1]); if (!b) { @@ -477,6 +482,11 @@ int err; bool new = true; + if (!handle) { + NL_SET_ERR_MSG(extack, "Creating with handle of 0 is invalid"); + return -EINVAL; + } + if (opt == NULL) return handle ? -EINVAL : 0; @@ -526,7 +536,7 @@ rcu_assign_pointer(f->next, f1); rcu_assign_pointer(*fp, f); - if (fold && fold->handle && f->handle != fold->handle) { + if (fold) { th = to_hash(fold->handle); h = from_hash(fold->handle >> 16); b = rtnl_dereference(head->table[th]); diff -u linux-azure-5.4.0/net/sched/cls_tcindex.c linux-azure-5.4.0/net/sched/cls_tcindex.c --- linux-azure-5.4.0/net/sched/cls_tcindex.c +++ linux-azure-5.4.0/net/sched/cls_tcindex.c @@ -278,6 +278,8 @@ TCA_TCINDEX_POLICE); } +static void tcindex_free_perfect_hash(struct tcindex_data *cp); + static void tcindex_partial_destroy_work(struct work_struct *work) { struct tcindex_data *p = container_of(to_rcu_work(work), @@ -285,7 +287,8 @@ rwork); rtnl_lock(); - kfree(p->perfect); + if (p->perfect) + tcindex_free_perfect_hash(p); kfree(p); rtnl_unlock(); } @@ -304,7 +307,7 @@ int i, err = 0; cp->perfect = kcalloc(cp->hash, sizeof(struct tcindex_filter_result), - GFP_KERNEL); + GFP_KERNEL | __GFP_NOWARN); if (!cp->perfect) return -ENOMEM; diff -u linux-azure-5.4.0/net/sched/cls_u32.c linux-azure-5.4.0/net/sched/cls_u32.c --- linux-azure-5.4.0/net/sched/cls_u32.c +++ linux-azure-5.4.0/net/sched/cls_u32.c @@ -386,14 +386,19 @@ return 0; } -static int u32_destroy_key(struct tc_u_knode *n, bool free_pf) +static void __u32_destroy_key(struct tc_u_knode *n) { struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); tcf_exts_destroy(&n->exts); - tcf_exts_put_net(&n->exts); if (ht && --ht->refcnt == 0) kfree(ht); + kfree(n); +} + +static void u32_destroy_key(struct tc_u_knode *n, bool free_pf) +{ + tcf_exts_put_net(&n->exts); #ifdef CONFIG_CLS_U32_PERF if (free_pf) free_percpu(n->pf); @@ -402,8 +407,7 @@ if (free_pf) free_percpu(n->pcpu_success); #endif - kfree(n); - return 0; + __u32_destroy_key(n); } /* u32_delete_key_rcu should be called when free'ing a copied @@ -812,10 +816,6 @@ new->flags = n->flags; RCU_INIT_POINTER(new->ht_down, ht); - /* bump reference count as long as we hold pointer to structure */ - if (ht) - ht->refcnt++; - #ifdef CONFIG_CLS_U32_PERF /* Statistics may be incremented by readers during update * so we must keep them in tact. When the node is later destroyed @@ -837,6 +837,10 @@ return NULL; } + /* bump reference count as long as we hold pointer to structure */ + if (ht) + ht->refcnt++; + return new; } @@ -903,13 +907,13 @@ tca[TCA_RATE], ovr, extack); if (err) { - u32_destroy_key(new, false); + __u32_destroy_key(new); return err; } err = u32_replace_hw_knode(tp, new, flags, extack); if (err) { - u32_destroy_key(new, false); + __u32_destroy_key(new); return err; } diff -u linux-azure-5.4.0/net/sched/sch_api.c linux-azure-5.4.0/net/sched/sch_api.c --- linux-azure-5.4.0/net/sched/sch_api.c +++ linux-azure-5.4.0/net/sched/sch_api.c @@ -510,6 +510,12 @@ return stab; } + if (s->size_log > STAB_SIZE_LOG_MAX || + s->cell_log > STAB_SIZE_LOG_MAX) { + NL_SET_ERR_MSG(extack, "Invalid logarithmic size of size table"); + return ERR_PTR(-EINVAL); + } + stab = kmalloc(sizeof(*stab) + tsize * sizeof(u16), GFP_KERNEL); if (!stab) return ERR_PTR(-ENOMEM); @@ -1189,7 +1195,7 @@ err = -ENOENT; if (!ops) { - NL_SET_ERR_MSG(extack, "Specified qdisc not found"); + NL_SET_ERR_MSG(extack, "Specified qdisc kind is unknown"); goto err_out; } diff -u linux-azure-5.4.0/net/sched/sch_cake.c linux-azure-5.4.0/net/sched/sch_cake.c --- linux-azure-5.4.0/net/sched/sch_cake.c +++ linux-azure-5.4.0/net/sched/sch_cake.c @@ -907,7 +907,7 @@ } tcph = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); - if (!tcph) + if (!tcph || tcph->doff < 5) return NULL; return skb_header_pointer(skb, offset, @@ -931,6 +931,8 @@ length--; continue; } + if (length < 2) + break; opsize = *ptr++; if (opsize < 2 || opsize > length) break; @@ -1068,6 +1070,8 @@ length--; continue; } + if (length < 2) + break; opsize = *ptr++; if (opsize < 2 || opsize > length) break; @@ -2186,8 +2190,12 @@ static void cake_reset(struct Qdisc *sch) { + struct cake_sched_data *q = qdisc_priv(sch); u32 c; + if (!q->tins) + return; + for (c = 0; c < CAKE_MAX_TINS; c++) cake_clear_tin(sch, c); } @@ -2720,7 +2728,7 @@ q->tins = kvcalloc(CAKE_MAX_TINS, sizeof(struct cake_tin_data), GFP_KERNEL); if (!q->tins) - goto nomem; + return -ENOMEM; for (i = 0; i < CAKE_MAX_TINS; i++) { struct cake_tin_data *b = q->tins + i; @@ -2750,10 +2758,6 @@ q->min_netlen = ~0; q->min_adjlen = ~0; return 0; - -nomem: - cake_destroy(sch); - return -ENOMEM; } static int cake_dump(struct Qdisc *sch, struct sk_buff *skb) diff -u linux-azure-5.4.0/net/sched/sch_fq_codel.c linux-azure-5.4.0/net/sched/sch_fq_codel.c --- linux-azure-5.4.0/net/sched/sch_fq_codel.c +++ linux-azure-5.4.0/net/sched/sch_fq_codel.c @@ -370,6 +370,7 @@ { struct fq_codel_sched_data *q = qdisc_priv(sch); struct nlattr *tb[TCA_FQ_CODEL_MAX + 1]; + u32 quantum = 0; int err; if (!opt) @@ -387,6 +388,13 @@ q->flows_cnt > 65536) return -EINVAL; } + if (tb[TCA_FQ_CODEL_QUANTUM]) { + quantum = max(256U, nla_get_u32(tb[TCA_FQ_CODEL_QUANTUM])); + if (quantum > FQ_CODEL_QUANTUM_MAX) { + NL_SET_ERR_MSG(extack, "Invalid quantum"); + return -EINVAL; + } + } sch_tree_lock(sch); if (tb[TCA_FQ_CODEL_TARGET]) { @@ -413,8 +421,8 @@ if (tb[TCA_FQ_CODEL_ECN]) q->cparams.ecn = !!nla_get_u32(tb[TCA_FQ_CODEL_ECN]); - if (tb[TCA_FQ_CODEL_QUANTUM]) - q->quantum = max(256U, nla_get_u32(tb[TCA_FQ_CODEL_QUANTUM])); + if (quantum) + q->quantum = quantum; if (tb[TCA_FQ_CODEL_DROP_BATCH_SIZE]) q->drop_batch_size = max(1U, nla_get_u32(tb[TCA_FQ_CODEL_DROP_BATCH_SIZE])); diff -u linux-azure-5.4.0/net/sched/sch_generic.c linux-azure-5.4.0/net/sched/sch_generic.c --- linux-azure-5.4.0/net/sched/sch_generic.c +++ linux-azure-5.4.0/net/sched/sch_generic.c @@ -403,7 +403,7 @@ void __qdisc_run(struct Qdisc *q) { - int quota = dev_tx_weight; + int quota = READ_ONCE(dev_tx_weight); int packets; while (qdisc_restart(q, &packets)) { @@ -1313,6 +1313,15 @@ return 0; } +void dev_qdisc_change_real_num_tx(struct net_device *dev, + unsigned int new_real_tx) +{ + struct Qdisc *qdisc = dev->qdisc; + + if (qdisc->ops->change_real_num_tx) + qdisc->ops->change_real_num_tx(qdisc, new_real_tx); +} + int dev_qdisc_change_tx_queue_len(struct net_device *dev) { bool up = dev->flags & IFF_UP; @@ -1387,6 +1396,7 @@ { memset(r, 0, sizeof(*r)); r->overhead = conf->overhead; + r->mpu = conf->mpu; r->rate_bytes_ps = max_t(u64, conf->rate, rate64); r->linklayer = (conf->linklayer & TC_LINKLAYER_MASK); r->mult = 1; diff -u linux-azure-5.4.0/net/sched/sch_mq.c linux-azure-5.4.0/net/sched/sch_mq.c --- linux-azure-5.4.0/net/sched/sch_mq.c +++ linux-azure-5.4.0/net/sched/sch_mq.c @@ -125,6 +125,29 @@ priv->qdiscs = NULL; } +static void mq_change_real_num_tx(struct Qdisc *sch, unsigned int new_real_tx) +{ +#ifdef CONFIG_NET_SCHED + struct net_device *dev = qdisc_dev(sch); + struct Qdisc *qdisc; + unsigned int i; + + for (i = new_real_tx; i < dev->real_num_tx_queues; i++) { + qdisc = netdev_get_tx_queue(dev, i)->qdisc_sleeping; + /* Only update the default qdiscs we created, + * qdiscs with handles are always hashed. + */ + if (qdisc != &noop_qdisc && !qdisc->handle) + qdisc_hash_del(qdisc); + } + for (i = dev->real_num_tx_queues; i < new_real_tx; i++) { + qdisc = netdev_get_tx_queue(dev, i)->qdisc_sleeping; + if (qdisc != &noop_qdisc && !qdisc->handle) + qdisc_hash_add(qdisc, false); + } +#endif +} + static int mq_dump(struct Qdisc *sch, struct sk_buff *skb) { struct net_device *dev = qdisc_dev(sch); @@ -288,6 +311,7 @@ .init = mq_init, .destroy = mq_destroy, .attach = mq_attach, + .change_real_num_tx = mq_change_real_num_tx, .dump = mq_dump, .owner = THIS_MODULE, }; diff -u linux-azure-5.4.0/net/sched/sch_mqprio.c linux-azure-5.4.0/net/sched/sch_mqprio.c --- linux-azure-5.4.0/net/sched/sch_mqprio.c +++ linux-azure-5.4.0/net/sched/sch_mqprio.c @@ -306,6 +306,28 @@ priv->qdiscs = NULL; } +static void mqprio_change_real_num_tx(struct Qdisc *sch, + unsigned int new_real_tx) +{ + struct net_device *dev = qdisc_dev(sch); + struct Qdisc *qdisc; + unsigned int i; + + for (i = new_real_tx; i < dev->real_num_tx_queues; i++) { + qdisc = netdev_get_tx_queue(dev, i)->qdisc_sleeping; + /* Only update the default qdiscs we created, + * qdiscs with handles are always hashed. + */ + if (qdisc != &noop_qdisc && !qdisc->handle) + qdisc_hash_del(qdisc); + } + for (i = dev->real_num_tx_queues; i < new_real_tx; i++) { + qdisc = netdev_get_tx_queue(dev, i)->qdisc_sleeping; + if (qdisc != &noop_qdisc && !qdisc->handle) + qdisc_hash_add(qdisc, false); + } +} + static struct netdev_queue *mqprio_queue_get(struct Qdisc *sch, unsigned long cl) { @@ -529,22 +551,28 @@ for (i = tc.offset; i < tc.offset + tc.count; i++) { struct netdev_queue *q = netdev_get_tx_queue(dev, i); struct Qdisc *qdisc = rtnl_dereference(q->qdisc); - struct gnet_stats_basic_cpu __percpu *cpu_bstats = NULL; - struct gnet_stats_queue __percpu *cpu_qstats = NULL; spin_lock_bh(qdisc_lock(qdisc)); + if (qdisc_is_percpu_stats(qdisc)) { - cpu_bstats = qdisc->cpu_bstats; - cpu_qstats = qdisc->cpu_qstats; - } + qlen = qdisc_qlen_sum(qdisc); - qlen = qdisc_qlen_sum(qdisc); - __gnet_stats_copy_basic(NULL, &sch->bstats, - cpu_bstats, &qdisc->bstats); - __gnet_stats_copy_queue(&sch->qstats, - cpu_qstats, - &qdisc->qstats, - qlen); + __gnet_stats_copy_basic(NULL, &bstats, + qdisc->cpu_bstats, + &qdisc->bstats); + __gnet_stats_copy_queue(&qstats, + qdisc->cpu_qstats, + &qdisc->qstats, + qlen); + } else { + qlen += qdisc->q.qlen; + bstats.bytes += qdisc->bstats.bytes; + bstats.packets += qdisc->bstats.packets; + qstats.backlog += qdisc->qstats.backlog; + qstats.drops += qdisc->qstats.drops; + qstats.requeues += qdisc->qstats.requeues; + qstats.overlimits += qdisc->qstats.overlimits; + } spin_unlock_bh(qdisc_lock(qdisc)); } @@ -623,6 +651,7 @@ .init = mqprio_init, .destroy = mqprio_destroy, .attach = mqprio_attach, + .change_real_num_tx = mqprio_change_real_num_tx, .dump = mqprio_dump, .owner = THIS_MODULE, }; diff -u linux-azure-5.4.0/net/sched/sch_netem.c linux-azure-5.4.0/net/sched/sch_netem.c --- linux-azure-5.4.0/net/sched/sch_netem.c +++ linux-azure-5.4.0/net/sched/sch_netem.c @@ -1146,9 +1146,9 @@ struct tc_netem_rate rate; struct tc_netem_slot slot; - qopt.latency = min_t(psched_tdiff_t, PSCHED_NS2TICKS(q->latency), + qopt.latency = min_t(psched_time_t, PSCHED_NS2TICKS(q->latency), UINT_MAX); - qopt.jitter = min_t(psched_tdiff_t, PSCHED_NS2TICKS(q->jitter), + qopt.jitter = min_t(psched_time_t, PSCHED_NS2TICKS(q->jitter), UINT_MAX); qopt.limit = q->limit; qopt.loss = q->loss; diff -u linux-azure-5.4.0/net/sched/sch_red.c linux-azure-5.4.0/net/sched/sch_red.c --- linux-azure-5.4.0/net/sched/sch_red.c +++ linux-azure-5.4.0/net/sched/sch_red.c @@ -59,6 +59,7 @@ { struct red_sched_data *q = qdisc_priv(sch); struct Qdisc *child = q->qdisc; + unsigned int len; int ret; q->vars.qavg = red_calc_qavg(&q->parms, @@ -94,9 +95,10 @@ break; } + len = qdisc_pkt_len(skb); ret = qdisc_enqueue(skb, child, to_free); if (likely(ret == NET_XMIT_SUCCESS)) { - qdisc_qstats_backlog_inc(sch, skb); + sch->qstats.backlog += len; sch->q.qlen++; } else if (net_xmit_drop_count(ret)) { q->stats.pdrop++; diff -u linux-azure-5.4.0/net/sched/sch_taprio.c linux-azure-5.4.0/net/sched/sch_taprio.c --- linux-azure-5.4.0/net/sched/sch_taprio.c +++ linux-azure-5.4.0/net/sched/sch_taprio.c @@ -65,6 +65,7 @@ u32 flags; enum tk_offsets tk_offset; int clockid; + bool offloaded; atomic64_t picos_per_byte; /* Using picoseconds because for 10Gbps+ * speeds it's sub-nanoseconds per byte */ @@ -94,18 +95,22 @@ return ns_to_ktime(sched->base_time); } -static ktime_t taprio_get_time(struct taprio_sched *q) +static ktime_t taprio_mono_to_any(const struct taprio_sched *q, ktime_t mono) { - ktime_t mono = ktime_get(); + /* This pairs with WRITE_ONCE() in taprio_parse_clockid() */ + enum tk_offsets tk_offset = READ_ONCE(q->tk_offset); - switch (q->tk_offset) { + switch (tk_offset) { case TK_OFFS_MAX: return mono; default: - return ktime_mono_to_any(mono, q->tk_offset); + return ktime_mono_to_any(mono, tk_offset); } +} - return KTIME_MAX; +static ktime_t taprio_get_time(const struct taprio_sched *q) +{ + return taprio_mono_to_any(q, ktime_get()); } static void taprio_free_sched_cb(struct rcu_head *head) @@ -321,7 +326,7 @@ return 0; } - return ktime_mono_to_any(skb->skb_mstamp_ns, q->tk_offset); + return taprio_mono_to_any(q, skb->skb_mstamp_ns); } /* There are a few scenarios where we will have to modify the txtime from @@ -423,7 +428,8 @@ if (unlikely(!child)) return qdisc_drop(skb, sch, to_free); - if (skb->sk && sock_flag(skb->sk, SOCK_TXTIME)) { + /* sk_flags are only safe to use on full sockets. */ + if (skb->sk && sk_fullsock(skb->sk) && sock_flag(skb->sk, SOCK_TXTIME)) { if (!is_valid_interval(skb, sch)) return qdisc_drop(skb, sch, to_free); } else if (TXTIME_ASSIST_IS_ENABLED(q->flags)) { @@ -1263,6 +1269,8 @@ goto done; } + q->offloaded = true; + done: taprio_offload_free(offload); @@ -1277,12 +1285,9 @@ struct tc_taprio_qopt_offload *offload; int err; - if (!FULL_OFFLOAD_IS_ENABLED(q->flags)) + if (!q->offloaded) return 0; - if (!ops->ndo_setup_tc) - return -EOPNOTSUPP; - offload = taprio_offload_alloc(0); if (!offload) { NL_SET_ERR_MSG(extack, @@ -1298,6 +1303,8 @@ goto out; } + q->offloaded = false; + out: taprio_offload_free(offload); @@ -1342,6 +1349,7 @@ } } else if (tb[TCA_TAPRIO_ATTR_SCHED_CLOCKID]) { int clockid = nla_get_s32(tb[TCA_TAPRIO_ATTR_SCHED_CLOCKID]); + enum tk_offsets tk_offset; /* We only support static clockids and we don't allow * for it to be modified after the first init. @@ -1356,22 +1364,24 @@ switch (clockid) { case CLOCK_REALTIME: - q->tk_offset = TK_OFFS_REAL; + tk_offset = TK_OFFS_REAL; break; case CLOCK_MONOTONIC: - q->tk_offset = TK_OFFS_MAX; + tk_offset = TK_OFFS_MAX; break; case CLOCK_BOOTTIME: - q->tk_offset = TK_OFFS_BOOT; + tk_offset = TK_OFFS_BOOT; break; case CLOCK_TAI: - q->tk_offset = TK_OFFS_TAI; + tk_offset = TK_OFFS_TAI; break; default: NL_SET_ERR_MSG(extack, "Invalid 'clockid'"); err = -EINVAL; goto out; } + /* This pairs with READ_ONCE() in taprio_mono_to_any */ + WRITE_ONCE(q->tk_offset, tk_offset); q->clockid = clockid; } else { @@ -1503,7 +1513,9 @@ taprio_set_picos_per_byte(dev, q); if (mqprio) { - netdev_set_num_tc(dev, mqprio->num_tc); + err = netdev_set_num_tc(dev, mqprio->num_tc); + if (err) + goto free_sched; for (i = 0; i < mqprio->num_tc; i++) netdev_set_tc_queue(dev, i, mqprio->count[i], @@ -1628,6 +1640,10 @@ list_del(&q->taprio_list); spin_unlock(&taprio_list_lock); + /* Note that taprio_reset() might not be called if an error + * happens in qdisc_create(), after taprio_init() has been called. + */ + hrtimer_cancel(&q->advance_timer); taprio_disable_offload(dev, q, NULL); @@ -1890,12 +1906,14 @@ static struct Qdisc *taprio_leaf(struct Qdisc *sch, unsigned long cl) { - struct netdev_queue *dev_queue = taprio_queue_get(sch, cl); + struct taprio_sched *q = qdisc_priv(sch); + struct net_device *dev = qdisc_dev(sch); + unsigned int ntx = cl - 1; - if (!dev_queue) + if (ntx >= dev->num_tx_queues) return NULL; - return dev_queue->qdisc_sleeping; + return q->qdiscs[ntx]; } static unsigned long taprio_find(struct Qdisc *sch, u32 classid) diff -u linux-azure-5.4.0/net/sctp/associola.c linux-azure-5.4.0/net/sctp/associola.c --- linux-azure-5.4.0/net/sctp/associola.c +++ linux-azure-5.4.0/net/sctp/associola.c @@ -224,9 +224,8 @@ if (!sctp_ulpq_init(&asoc->ulpq, asoc)) goto fail_init; - if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams, - 0, gfp)) - goto fail_init; + if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams, 0, gfp)) + goto stream_free; /* Initialize default path MTU. */ asoc->pathmtu = sp->pathmtu; diff -u linux-azure-5.4.0/net/sctp/auth.c linux-azure-5.4.0/net/sctp/auth.c --- linux-azure-5.4.0/net/sctp/auth.c +++ linux-azure-5.4.0/net/sctp/auth.c @@ -863,12 +863,23 @@ memcpy(key->data, &auth_key->sca_key[0], auth_key->sca_keylength); cur_key->key = key; - if (replace) { - list_del_init(&shkey->key_list); - sctp_auth_shkey_release(shkey); + if (!replace) { + list_add(&cur_key->key_list, sh_keys); + return 0; } + + list_del_init(&shkey->key_list); list_add(&cur_key->key_list, sh_keys); + if (asoc && asoc->active_key_id == auth_key->sca_keynumber && + sctp_auth_asoc_init_active_key(asoc, GFP_KERNEL)) { + list_del_init(&cur_key->key_list); + sctp_auth_shkey_release(cur_key); + list_add(&shkey->key_list, sh_keys); + return -ENOMEM; + } + + sctp_auth_shkey_release(shkey); return 0; } @@ -902,8 +913,13 @@ return -EINVAL; if (asoc) { + __u16 active_key_id = asoc->active_key_id; + asoc->active_key_id = key_id; - sctp_auth_asoc_init_active_key(asoc, GFP_KERNEL); + if (sctp_auth_asoc_init_active_key(asoc, GFP_KERNEL)) { + asoc->active_key_id = active_key_id; + return -ENOMEM; + } } else ep->active_key_id = key_id; diff -u linux-azure-5.4.0/net/sctp/bind_addr.c linux-azure-5.4.0/net/sctp/bind_addr.c --- linux-azure-5.4.0/net/sctp/bind_addr.c +++ linux-azure-5.4.0/net/sctp/bind_addr.c @@ -270,22 +270,19 @@ rawaddr = (union sctp_addr_param *)raw_addr_list; af = sctp_get_af_specific(param_type2af(param->type)); - if (unlikely(!af)) { + if (unlikely(!af) || + !af->from_addr_param(&addr, rawaddr, htons(port), 0)) { retval = -EINVAL; - sctp_bind_addr_clean(bp); - break; + goto out_err; } - af->from_addr_param(&addr, rawaddr, htons(port), 0); if (sctp_bind_addr_state(bp, &addr) != -1) goto next; retval = sctp_add_bind_addr(bp, &addr, sizeof(addr), SCTP_ADDR_SRC, gfp); - if (retval) { + if (retval) /* Can't finish building the list, clean up. */ - sctp_bind_addr_clean(bp); - break; - } + goto out_err; next: len = ntohs(param->length); @@ -294,6 +291,12 @@ } return retval; + +out_err: + if (retval) + sctp_bind_addr_clean(bp); + + return retval; } /******************************************************************** diff -u linux-azure-5.4.0/net/sctp/diag.c linux-azure-5.4.0/net/sctp/diag.c --- linux-azure-5.4.0/net/sctp/diag.c +++ linux-azure-5.4.0/net/sctp/diag.c @@ -61,10 +61,6 @@ r->idiag_timer = SCTP_EVENT_TIMEOUT_T3_RTX; r->idiag_retrans = asoc->rtx_data_chunks; r->idiag_expires = jiffies_to_msecs(t3_rtx->expires - jiffies); - } else { - r->idiag_timer = 0; - r->idiag_retrans = 0; - r->idiag_expires = 0; } } @@ -144,13 +140,14 @@ r = nlmsg_data(nlh); BUG_ON(!sk_fullsock(sk)); + r->idiag_timer = 0; + r->idiag_retrans = 0; + r->idiag_expires = 0; if (asoc) { inet_diag_msg_sctpasoc_fill(r, sk, asoc); } else { inet_diag_msg_common_fill(r, sk); r->idiag_state = sk->sk_state; - r->idiag_timer = 0; - r->idiag_retrans = 0; } if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns, net_admin)) @@ -292,9 +289,8 @@ return err; } -static int sctp_sock_dump(struct sctp_transport *tsp, void *p) +static int sctp_sock_dump(struct sctp_endpoint *ep, struct sctp_transport *tsp, void *p) { - struct sctp_endpoint *ep = tsp->asoc->ep; struct sctp_comm_param *commp = p; struct sock *sk = ep->base.sk; struct sk_buff *skb = commp->skb; @@ -304,6 +300,8 @@ int err = 0; lock_sock(sk); + if (ep != tsp->asoc->ep) + goto release; list_for_each_entry(assoc, &ep->asocs, asocs) { if (cb->args[4] < cb->args[1]) goto next; @@ -346,9 +344,8 @@ return err; } -static int sctp_sock_filter(struct sctp_transport *tsp, void *p) +static int sctp_sock_filter(struct sctp_endpoint *ep, struct sctp_transport *tsp, void *p) { - struct sctp_endpoint *ep = tsp->asoc->ep; struct sctp_comm_param *commp = p; struct sock *sk = ep->base.sk; const struct inet_diag_req_v2 *r = commp->r; @@ -506,8 +503,8 @@ if (!(idiag_states & ~(TCPF_LISTEN | TCPF_CLOSE))) goto done; - sctp_for_each_transport(sctp_sock_filter, sctp_sock_dump, - net, &pos, &commp); + sctp_transport_traverse_process(sctp_sock_filter, sctp_sock_dump, + net, &pos, &commp); cb->args[2] = pos; done: diff -u linux-azure-5.4.0/net/sctp/endpointola.c linux-azure-5.4.0/net/sctp/endpointola.c --- linux-azure-5.4.0/net/sctp/endpointola.c +++ linux-azure-5.4.0/net/sctp/endpointola.c @@ -184,6 +184,18 @@ } /* Final destructor for endpoint. */ +static void sctp_endpoint_destroy_rcu(struct rcu_head *head) +{ + struct sctp_endpoint *ep = container_of(head, struct sctp_endpoint, rcu); + struct sock *sk = ep->base.sk; + + sctp_sk(sk)->ep = NULL; + sock_put(sk); + + kfree(ep); + SCTP_DBG_OBJCNT_DEC(ep); +} + static void sctp_endpoint_destroy(struct sctp_endpoint *ep) { struct sock *sk; @@ -213,18 +225,13 @@ if (sctp_sk(sk)->bind_hash) sctp_put_port(sk); - sctp_sk(sk)->ep = NULL; - /* Give up our hold on the sock */ - sock_put(sk); - - kfree(ep); - SCTP_DBG_OBJCNT_DEC(ep); + call_rcu(&ep->rcu, sctp_endpoint_destroy_rcu); } /* Hold a reference to an endpoint. */ -void sctp_endpoint_hold(struct sctp_endpoint *ep) +int sctp_endpoint_hold(struct sctp_endpoint *ep) { - refcount_inc(&ep->base.refcnt); + return refcount_inc_not_zero(&ep->base.refcnt); } /* Release a reference to an endpoint and clean up if there are diff -u linux-azure-5.4.0/net/sctp/input.c linux-azure-5.4.0/net/sctp/input.c --- linux-azure-5.4.0/net/sctp/input.c +++ linux-azure-5.4.0/net/sctp/input.c @@ -92,6 +92,7 @@ struct sctp_chunk *chunk; union sctp_addr src; union sctp_addr dest; + int bound_dev_if; int family; struct sctp_af *af; struct net *net = dev_net(skb->dev); @@ -169,7 +170,8 @@ * If a frame arrives on an interface and the receiving socket is * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB */ - if (sk->sk_bound_dev_if && (sk->sk_bound_dev_if != af->skb_iif(skb))) { + bound_dev_if = READ_ONCE(sk->sk_bound_dev_if); + if (bound_dev_if && (bound_dev_if != af->skb_iif(skb))) { if (transport) { sctp_transport_put(transport); asoc = NULL; @@ -676,7 +678,7 @@ ch = skb_header_pointer(skb, offset, sizeof(*ch), &_ch); /* Break out if chunk length is less then minimal. */ - if (ntohs(ch->length) < sizeof(_ch)) + if (!ch || ntohs(ch->length) < sizeof(_ch)) break; ch_end = offset + SCTP_PAD4(ntohs(ch->length)); @@ -1131,7 +1133,8 @@ if (!af) continue; - af->from_addr_param(paddr, params.addr, sh->source, 0); + if (!af->from_addr_param(paddr, params.addr, sh->source, 0)) + continue; asoc = __sctp_lookup_association(net, laddr, paddr, transportp); if (asoc) @@ -1167,6 +1170,9 @@ union sctp_addr_param *param; union sctp_addr paddr; + if (ntohs(ch->length) < sizeof(*asconf) + sizeof(struct sctp_paramhdr)) + return NULL; + /* Skip over the ADDIP header and find the Address parameter */ param = (union sctp_addr_param *)(asconf + 1); @@ -1174,7 +1180,8 @@ if (unlikely(!af)) return NULL; - af->from_addr_param(&paddr, param, peer_port, 0); + if (!af->from_addr_param(&paddr, param, peer_port, 0)) + return NULL; return __sctp_lookup_association(net, laddr, &paddr, transportp); } @@ -1245,7 +1252,7 @@ ch = (struct sctp_chunkhdr *)ch_end; chunk_num++; - } while (ch_end < skb_tail_pointer(skb)); + } while (ch_end + sizeof(*ch) < skb_tail_pointer(skb)); return asoc; } diff -u linux-azure-5.4.0/net/sctp/ipv6.c linux-azure-5.4.0/net/sctp/ipv6.c --- linux-azure-5.4.0/net/sctp/ipv6.c +++ linux-azure-5.4.0/net/sctp/ipv6.c @@ -530,15 +530,20 @@ } /* Initialize a sctp_addr from an address parameter. */ -static void sctp_v6_from_addr_param(union sctp_addr *addr, +static bool sctp_v6_from_addr_param(union sctp_addr *addr, union sctp_addr_param *param, __be16 port, int iif) { + if (ntohs(param->v6.param_hdr.length) < sizeof(struct sctp_ipv6addr_param)) + return false; + addr->v6.sin6_family = AF_INET6; addr->v6.sin6_port = port; addr->v6.sin6_flowinfo = 0; /* BUG */ addr->v6.sin6_addr = param->v6.addr; addr->v6.sin6_scope_id = iif; + + return true; } /* Initialize an address parameter from a sctp_addr and return the length diff -u linux-azure-5.4.0/net/sctp/protocol.c linux-azure-5.4.0/net/sctp/protocol.c --- linux-azure-5.4.0/net/sctp/protocol.c +++ linux-azure-5.4.0/net/sctp/protocol.c @@ -253,14 +253,19 @@ } /* Initialize a sctp_addr from an address parameter. */ -static void sctp_v4_from_addr_param(union sctp_addr *addr, +static bool sctp_v4_from_addr_param(union sctp_addr *addr, union sctp_addr_param *param, __be16 port, int iif) { + if (ntohs(param->v4.param_hdr.length) < sizeof(struct sctp_ipv4addr_param)) + return false; + addr->v4.sin_family = AF_INET; addr->v4.sin_port = port; addr->v4.sin_addr.s_addr = param->v4.addr.s_addr; memset(addr->v4.sin_zero, 0, sizeof(addr->v4.sin_zero)); + + return true; } /* Initialize an address parameter from a sctp_addr and return the length @@ -353,7 +358,7 @@ if (addr->v4.sin_addr.s_addr != htonl(INADDR_ANY) && ret != RTN_LOCAL && !sp->inet.freebind && - !net->ipv4.sysctl_ip_nonlocal_bind) + !READ_ONCE(net->ipv4.sysctl_ip_nonlocal_bind)) return 0; if (ipv6_only_sock(sctp_opt2sk(sp))) @@ -392,7 +397,8 @@ retval = SCTP_SCOPE_LINK; } else if (ipv4_is_private_10(addr->v4.sin_addr.s_addr) || ipv4_is_private_172(addr->v4.sin_addr.s_addr) || - ipv4_is_private_192(addr->v4.sin_addr.s_addr)) { + ipv4_is_private_192(addr->v4.sin_addr.s_addr) || + ipv4_is_test_198(addr->v4.sin_addr.s_addr)) { retval = SCTP_SCOPE_PRIVATE; } else { retval = SCTP_SCOPE_GLOBAL; diff -u linux-azure-5.4.0/net/sctp/sm_make_chunk.c linux-azure-5.4.0/net/sctp/sm_make_chunk.c --- linux-azure-5.4.0/net/sctp/sm_make_chunk.c +++ linux-azure-5.4.0/net/sctp/sm_make_chunk.c @@ -2157,9 +2157,16 @@ break; case SCTP_PARAM_SET_PRIMARY: - if (ep->asconf_enable) - break; - goto unhandled; + if (!ep->asconf_enable) + goto unhandled; + + if (ntohs(param.p->length) < sizeof(struct sctp_addip_param) + + sizeof(struct sctp_paramhdr)) { + sctp_process_inv_paramlength(asoc, param.p, + chunk, err_chunk); + retval = SCTP_IERROR_ABORT; + } + break; case SCTP_PARAM_HOST_NAME_ADDRESS: /* Tell the peer, we won't support this param. */ @@ -2337,11 +2344,13 @@ /* Process the initialization parameters. */ sctp_walk_params(param, peer_init, init_hdr.params) { - if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS || - param.p->type == SCTP_PARAM_IPV6_ADDRESS)) { + if (!src_match && + (param.p->type == SCTP_PARAM_IPV4_ADDRESS || + param.p->type == SCTP_PARAM_IPV6_ADDRESS)) { af = sctp_get_af_specific(param_type2af(param.p->type)); - af->from_addr_param(&addr, param.addr, - chunk->sctp_hdr->source, 0); + if (!af->from_addr_param(&addr, param.addr, + chunk->sctp_hdr->source, 0)) + continue; if (sctp_cmp_addr_exact(sctp_source(chunk), &addr)) src_match = 1; } @@ -2522,7 +2531,8 @@ break; do_addr_param: af = sctp_get_af_specific(param_type2af(param.p->type)); - af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0); + if (!af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0)) + break; scope = sctp_scope(peer_addr); if (sctp_in_scope(net, &addr, scope)) if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED)) @@ -2623,15 +2633,13 @@ addr_param = param.v + sizeof(struct sctp_addip_param); af = sctp_get_af_specific(param_type2af(addr_param->p.type)); - if (af == NULL) + if (!af) break; - af->from_addr_param(&addr, addr_param, - htons(asoc->peer.port), 0); + if (!af->from_addr_param(&addr, addr_param, + htons(asoc->peer.port), 0)) + break; - /* if the address is invalid, we can't process it. - * XXX: see spec for what to do. - */ if (!af->addr_valid(&addr, NULL, NULL)) break; @@ -3045,7 +3053,8 @@ if (unlikely(!af)) return SCTP_ERROR_DNS_FAILED; - af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0); + if (!af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0)) + return SCTP_ERROR_DNS_FAILED; /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast * or multicast address. @@ -3322,7 +3331,8 @@ /* We have checked the packet before, so we do not check again. */ af = sctp_get_af_specific(param_type2af(addr_param->p.type)); - af->from_addr_param(&addr, addr_param, htons(bp->port), 0); + if (!af->from_addr_param(&addr, addr_param, htons(bp->port), 0)) + return; switch (asconf_param->param_hdr.type) { case SCTP_PARAM_ADD_IP: @@ -3649,7 +3659,7 @@ outlen = (sizeof(outreq) + stream_len) * out; inlen = (sizeof(inreq) + stream_len) * in; - retval = sctp_make_reconf(asoc, outlen + inlen); + retval = sctp_make_reconf(asoc, SCTP_PAD4(outlen) + SCTP_PAD4(inlen)); if (!retval) return NULL; diff -u linux-azure-5.4.0/net/sctp/sm_sideeffect.c linux-azure-5.4.0/net/sctp/sm_sideeffect.c --- linux-azure-5.4.0/net/sctp/sm_sideeffect.c +++ linux-azure-5.4.0/net/sctp/sm_sideeffect.c @@ -458,6 +458,10 @@ goto out_unlock; } + /* This happens when the response arrives after the timer is triggered. */ + if (!asoc->strreset_chunk) + goto out_unlock; + error = sctp_do_sm(net, SCTP_EVENT_T_TIMEOUT, SCTP_ST_TIMEOUT(SCTP_EVENT_TIMEOUT_RECONF), asoc->state, asoc->ep, asoc, diff -u linux-azure-5.4.0/net/sctp/sm_statefuns.c linux-azure-5.4.0/net/sctp/sm_statefuns.c --- linux-azure-5.4.0/net/sctp/sm_statefuns.c +++ linux-azure-5.4.0/net/sctp/sm_statefuns.c @@ -149,6 +149,12 @@ void *arg, struct sctp_cmd_seq *commands); +static enum sctp_disposition +__sctp_sf_do_9_2_reshutack(struct net *net, const struct sctp_endpoint *ep, + const struct sctp_association *asoc, + const union sctp_subtype type, void *arg, + struct sctp_cmd_seq *commands); + /* Small helper function that checks if the chunk length * is of the appropriate length. The 'required_length' argument * is set to be the size of a specific chunk we are testing. @@ -330,6 +336,14 @@ if (!chunk->singleton) return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* Make sure that the INIT chunk has a valid length. + * Normally, this would cause an ABORT with a Protocol Violation + * error, but since we don't have an association, we'll + * just discard the packet. + */ + if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_init_chunk))) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* If the packet is an OOTB packet which is temporarily on the * control endpoint, respond with an ABORT. */ @@ -344,14 +358,6 @@ if (chunk->sctp_hdr->vtag != 0) return sctp_sf_tabort_8_4_8(net, ep, asoc, type, arg, commands); - /* Make sure that the INIT chunk has a valid length. - * Normally, this would cause an ABORT with a Protocol Violation - * error, but since we don't have an association, we'll - * just discard the packet. - */ - if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_init_chunk))) - return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); - /* If the INIT is coming toward a closing socket, we'll send back * and ABORT. Essentially, this catches the race of INIT being * backloged to the socket at the same time as the user isses close(). @@ -697,6 +703,9 @@ struct sock *sk; int error = 0; + if (asoc && !sctp_vtag_verify(chunk, asoc)) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* If the packet is an OOTB packet which is temporarily on the * control endpoint, respond with an ABORT. */ @@ -711,7 +720,8 @@ * in sctp_unpack_cookie(). */ if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) - return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, + commands); /* If the endpoint is not listening or if the number of associations * on the TCP-style socket exceed the max backlog, respond with an @@ -1480,19 +1490,16 @@ if (!chunk->singleton) return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* Make sure that the INIT chunk has a valid length. */ + if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_init_chunk))) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* 3.1 A packet containing an INIT chunk MUST have a zero Verification * Tag. */ if (chunk->sctp_hdr->vtag != 0) return sctp_sf_tabort_8_4_8(net, ep, asoc, type, arg, commands); - /* Make sure that the INIT chunk has a valid length. - * In this case, we generate a protocol violation since we have - * an association established. - */ - if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_init_chunk))) - return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, - commands); /* Grab the INIT header. */ chunk->subh.init_hdr = (struct sctp_inithdr *)chunk->skb->data; @@ -1810,9 +1817,9 @@ * its peer. */ if (sctp_state(asoc, SHUTDOWN_ACK_SENT)) { - disposition = sctp_sf_do_9_2_reshutack(net, ep, asoc, - SCTP_ST_CHUNK(chunk->chunk_hdr->type), - chunk, commands); + disposition = __sctp_sf_do_9_2_reshutack(net, ep, asoc, + SCTP_ST_CHUNK(chunk->chunk_hdr->type), + chunk, commands); if (SCTP_DISPOSITION_NOMEM == disposition) goto nomem; @@ -2141,9 +2148,11 @@ * enough for the chunk header. Cookie length verification is * done later. */ - if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) - return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, - commands); + if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) { + if (!sctp_vtag_verify(chunk, asoc)) + asoc = NULL; + return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, commands); + } /* "Decode" the chunk. We have no optional parameters so we * are in good shape. @@ -2280,7 +2289,7 @@ */ if (SCTP_ADDR_DEL == sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest)) - return sctp_sf_discard_chunk(net, ep, asoc, type, arg, commands); + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); if (!sctp_err_chunk_valid(chunk)) return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); @@ -2326,7 +2335,7 @@ */ if (SCTP_ADDR_DEL == sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest)) - return sctp_sf_discard_chunk(net, ep, asoc, type, arg, commands); + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); if (!sctp_err_chunk_valid(chunk)) return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); @@ -2596,7 +2605,7 @@ */ if (SCTP_ADDR_DEL == sctp_bind_addr_state(&asoc->base.bind_addr, &chunk->dest)) - return sctp_sf_discard_chunk(net, ep, asoc, type, arg, commands); + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); if (!sctp_err_chunk_valid(chunk)) return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); @@ -2909,13 +2918,11 @@ * that belong to this association, it should discard the INIT chunk and * retransmit the SHUTDOWN ACK chunk. */ -enum sctp_disposition sctp_sf_do_9_2_reshutack( - struct net *net, - const struct sctp_endpoint *ep, - const struct sctp_association *asoc, - const union sctp_subtype type, - void *arg, - struct sctp_cmd_seq *commands) +static enum sctp_disposition +__sctp_sf_do_9_2_reshutack(struct net *net, const struct sctp_endpoint *ep, + const struct sctp_association *asoc, + const union sctp_subtype type, void *arg, + struct sctp_cmd_seq *commands) { struct sctp_chunk *chunk = arg; struct sctp_chunk *reply; @@ -2949,6 +2956,26 @@ return SCTP_DISPOSITION_NOMEM; } +enum sctp_disposition +sctp_sf_do_9_2_reshutack(struct net *net, const struct sctp_endpoint *ep, + const struct sctp_association *asoc, + const union sctp_subtype type, void *arg, + struct sctp_cmd_seq *commands) +{ + struct sctp_chunk *chunk = arg; + + if (!chunk->singleton) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + + if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_init_chunk))) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + + if (chunk->sctp_hdr->vtag != 0) + return sctp_sf_tabort_8_4_8(net, ep, asoc, type, arg, commands); + + return __sctp_sf_do_9_2_reshutack(net, ep, asoc, type, arg, commands); +} + /* * sctp_sf_do_ecn_cwr * @@ -3562,6 +3589,9 @@ SCTP_INC_STATS(net, SCTP_MIB_OUTOFBLUES); + if (asoc && !sctp_vtag_verify(chunk, asoc)) + asoc = NULL; + ch = (struct sctp_chunkhdr *)chunk->chunk_hdr; do { /* Report violation if the chunk is less then minimal */ @@ -3677,12 +3707,6 @@ SCTP_INC_STATS(net, SCTP_MIB_OUTCTRLCHUNKS); - /* If the chunk length is invalid, we don't want to process - * the reset of the packet. - */ - if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) - return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); - /* We need to discard the rest of the packet to prevent * potential bomming attacks from additional bundled chunks. * This is documented in SCTP Threats ID. @@ -3710,6 +3734,9 @@ { struct sctp_chunk *chunk = arg; + if (!sctp_vtag_verify(chunk, asoc)) + asoc = NULL; + /* Make sure that the SHUTDOWN_ACK chunk has a valid length. */ if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, @@ -3745,6 +3772,11 @@ return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); } + /* Make sure that the ASCONF ADDIP chunk has a valid length. */ + if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_addip_chunk))) + return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, + commands); + /* ADD-IP: Section 4.1.1 * This chunk MUST be sent in an authenticated way by using * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk @@ -3753,13 +3785,7 @@ */ if (!asoc->peer.asconf_capable || (!net->sctp.addip_noauth && !chunk->auth)) - return sctp_sf_discard_chunk(net, ep, asoc, type, arg, - commands); - - /* Make sure that the ASCONF ADDIP chunk has a valid length. */ - if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_addip_chunk))) - return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, - commands); + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); hdr = (struct sctp_addiphdr *)chunk->skb->data; serial = ntohl(hdr->serial); @@ -3888,6 +3914,12 @@ return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); } + /* Make sure that the ADDIP chunk has a valid length. */ + if (!sctp_chunk_length_valid(asconf_ack, + sizeof(struct sctp_addip_chunk))) + return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, + commands); + /* ADD-IP, Section 4.1.2: * This chunk MUST be sent in an authenticated way by using * the mechanism defined in [I-D.ietf-tsvwg-sctp-auth]. If this chunk @@ -3896,14 +3928,7 @@ */ if (!asoc->peer.asconf_capable || (!net->sctp.addip_noauth && !asconf_ack->auth)) - return sctp_sf_discard_chunk(net, ep, asoc, type, arg, - commands); - - /* Make sure that the ADDIP chunk has a valid length. */ - if (!sctp_chunk_length_valid(asconf_ack, - sizeof(struct sctp_addip_chunk))) - return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, - commands); + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); addip_hdr = (struct sctp_addiphdr *)asconf_ack->skb->data; rcvd_serial = ntohl(addip_hdr->serial); @@ -4475,6 +4500,9 @@ { struct sctp_chunk *chunk = arg; + if (asoc && !sctp_vtag_verify(chunk, asoc)) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* Make sure that the chunk has a valid length. * Since we don't know the chunk type, we use a general * chunkhdr structure to make a comparison. @@ -4542,6 +4570,9 @@ { struct sctp_chunk *chunk = arg; + if (!sctp_vtag_verify(chunk, asoc)) + return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands); + /* Make sure that the chunk has a valid length. */ if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_chunkhdr))) return sctp_sf_violation_chunklen(net, ep, asoc, type, arg, @@ -6248,6 +6279,7 @@ * yet. */ switch (chunk->chunk_hdr->type) { + case SCTP_CID_INIT: case SCTP_CID_INIT_ACK: { struct sctp_initack_chunk *initack; diff -u linux-azure-5.4.0/net/sctp/socket.c linux-azure-5.4.0/net/sctp/socket.c --- linux-azure-5.4.0/net/sctp/socket.c +++ linux-azure-5.4.0/net/sctp/socket.c @@ -5395,11 +5395,12 @@ } EXPORT_SYMBOL_GPL(sctp_transport_lookup_process); -int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *), - int (*cb_done)(struct sctp_transport *, void *), - struct net *net, int *pos, void *p) { +int sctp_transport_traverse_process(sctp_callback_t cb, sctp_callback_t cb_done, + struct net *net, int *pos, void *p) +{ struct rhashtable_iter hti; struct sctp_transport *tsp; + struct sctp_endpoint *ep; int ret; again: @@ -5408,26 +5409,32 @@ tsp = sctp_transport_get_idx(net, &hti, *pos + 1); for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) { - ret = cb(tsp, p); - if (ret) - break; + ep = tsp->asoc->ep; + if (sctp_endpoint_hold(ep)) { /* asoc can be peeled off */ + ret = cb(ep, tsp, p); + if (ret) + break; + sctp_endpoint_put(ep); + } (*pos)++; sctp_transport_put(tsp); } sctp_transport_walk_stop(&hti); if (ret) { - if (cb_done && !cb_done(tsp, p)) { + if (cb_done && !cb_done(ep, tsp, p)) { (*pos)++; + sctp_endpoint_put(ep); sctp_transport_put(tsp); goto again; } + sctp_endpoint_put(ep); sctp_transport_put(tsp); } return ret; } -EXPORT_SYMBOL_GPL(sctp_for_each_transport); +EXPORT_SYMBOL_GPL(sctp_transport_traverse_process); /* 7.2.1 Association Status (SCTP_STATUS) @@ -5675,7 +5682,7 @@ * Set the daddr and initialize id to something more random and also * copy over any ip options. */ - sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk); + sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sock->sk); sp->pf->copy_ip_options(sk, sock->sk); /* Populate the fields of the newsk from the oldsk and migrate the diff -u linux-azure-5.4.0/net/sctp/stream.c linux-azure-5.4.0/net/sctp/stream.c --- linux-azure-5.4.0/net/sctp/stream.c +++ linux-azure-5.4.0/net/sctp/stream.c @@ -137,7 +137,7 @@ ret = sctp_stream_alloc_out(stream, outcnt, gfp); if (ret) - goto out_err; + return ret; for (i = 0; i < stream->outcnt; i++) SCTP_SO(stream, i)->state = SCTP_STREAM_OPEN; @@ -145,22 +145,9 @@ handle_in: sctp_stream_interleave_init(stream); if (!incnt) - goto out; + return 0; - ret = sctp_stream_alloc_in(stream, incnt, gfp); - if (ret) - goto in_err; - - goto out; - -in_err: - sched->free(stream); - genradix_free(&stream->in); -out_err: - genradix_free(&stream->out); - stream->outcnt = 0; -out: - return ret; + return sctp_stream_alloc_in(stream, incnt, gfp); } int sctp_stream_init_ext(struct sctp_stream *stream, __u16 sid) diff -u linux-azure-5.4.0/net/smc/af_smc.c linux-azure-5.4.0/net/smc/af_smc.c --- linux-azure-5.4.0/net/smc/af_smc.c +++ linux-azure-5.4.0/net/smc/af_smc.c @@ -139,14 +139,18 @@ sock_set_flag(sk, SOCK_DEAD); sk->sk_shutdown |= SHUTDOWN_MASK; } else { - if (sk->sk_state != SMC_LISTEN && sk->sk_state != SMC_INIT) - sock_put(sk); /* passive closing */ - if (sk->sk_state == SMC_LISTEN) { - /* wake up clcsock accept */ - rc = kernel_sock_shutdown(smc->clcsock, SHUT_RDWR); + if (sk->sk_state != SMC_CLOSED) { + if (sk->sk_state != SMC_LISTEN && + sk->sk_state != SMC_INIT) + sock_put(sk); /* passive closing */ + if (sk->sk_state == SMC_LISTEN) { + /* wake up clcsock accept */ + rc = kernel_sock_shutdown(smc->clcsock, + SHUT_RDWR); + } + sk->sk_state = SMC_CLOSED; + sk->sk_state_change(sk); } - sk->sk_state = SMC_CLOSED; - sk->sk_state_change(sk); smc_restore_fallback_changes(smc); } @@ -179,7 +183,9 @@ /* cleanup for a dangling non-blocking connect */ if (smc->connect_nonblock && sk->sk_state == SMC_INIT) tcp_abort(smc->clcsock->sk, ECONNABORTED); - flush_work(&smc->connect_work); + + if (cancel_work_sync(&smc->connect_work)) + sock_put(&smc->sk); /* sock_hold in smc_connect for passive closing */ if (sk->sk_state == SMC_LISTEN) /* smc_close_non_accepted() is called and acquires @@ -463,12 +469,26 @@ static void smc_switch_to_fallback(struct smc_sock *smc) { + wait_queue_head_t *smc_wait = sk_sleep(&smc->sk); + wait_queue_head_t *clc_wait = sk_sleep(smc->clcsock->sk); + unsigned long flags; + smc->use_fallback = true; if (smc->sk.sk_socket && smc->sk.sk_socket->file) { smc->clcsock->file = smc->sk.sk_socket->file; smc->clcsock->file->private_data = smc->clcsock; smc->clcsock->wq.fasync_list = smc->sk.sk_socket->wq.fasync_list; + + /* There may be some entries remaining in + * smc socket->wq, which should be removed + * to clcsocket->wq during the fallback. + */ + spin_lock_irqsave(&smc_wait->lock, flags); + spin_lock_nested(&clc_wait->lock, SINGLE_DEPTH_NESTING); + list_splice_init(&smc_wait->head, &clc_wait->head); + spin_unlock(&clc_wait->lock); + spin_unlock_irqrestore(&smc_wait->lock, flags); } } @@ -783,7 +803,7 @@ if (smc->clcsock->sk->sk_err) { smc->sk.sk_err = smc->clcsock->sk->sk_err; } else if ((1 << smc->clcsock->sk->sk_state) & - (TCPF_SYN_SENT | TCP_SYN_RECV)) { + (TCPF_SYN_SENT | TCPF_SYN_RECV)) { rc = sk_stream_wait_connect(smc->clcsock->sk, &timeo); if ((rc == -EPIPE) && ((1 << smc->clcsock->sk->sk_state) & @@ -796,6 +816,8 @@ smc->sk.sk_state = SMC_CLOSED; if (rc == -EPIPE || rc == -EAGAIN) smc->sk.sk_err = EPIPE; + else if (rc == -ECONNREFUSED) + smc->sk.sk_err = ECONNREFUSED; else if (signal_pending(current)) smc->sk.sk_err = -sock_intr_errno(timeo); sock_put(&smc->sk); /* passive closing */ @@ -855,9 +877,9 @@ if (rc && rc != -EINPROGRESS) goto out; - sock_hold(&smc->sk); /* sock put in passive closing */ if (smc->use_fallback) goto out; + sock_hold(&smc->sk); /* sock put in passive closing */ if (flags & O_NONBLOCK) { if (schedule_work(&smc->connect_work)) smc->connect_nonblock = 1; @@ -1071,7 +1093,6 @@ { struct sock *newsmcsk = &new_smc->sk; - sk_refcnt_debug_inc(newsmcsk); if (newsmcsk->sk_state == SMC_INIT) newsmcsk->sk_state = SMC_ACTIVE; @@ -1654,8 +1675,10 @@ static int smc_shutdown(struct socket *sock, int how) { struct sock *sk = sock->sk; + bool do_shutdown = true; struct smc_sock *smc; int rc = -EINVAL; + int old_state; int rc1 = 0; smc = smc_sk(sk); @@ -1676,13 +1699,19 @@ if (smc->use_fallback) { rc = kernel_sock_shutdown(smc->clcsock, how); sk->sk_shutdown = smc->clcsock->sk->sk_shutdown; - if (sk->sk_shutdown == SHUTDOWN_MASK) + if (sk->sk_shutdown == SHUTDOWN_MASK) { sk->sk_state = SMC_CLOSED; + sock_put(sk); + } goto out; } switch (how) { case SHUT_RDWR: /* shutdown in both directions */ + old_state = sk->sk_state; rc = smc_close_active(smc); + if (old_state == SMC_ACTIVE && + sk->sk_state == SMC_PEERCLOSEWAIT1) + do_shutdown = false; break; case SHUT_WR: rc = smc_close_shutdown_write(smc); @@ -1692,7 +1721,7 @@ /* nothing more to do because peer is not involved */ break; } - if (smc->clcsock) + if (do_shutdown && smc->clcsock) rc1 = kernel_sock_shutdown(smc->clcsock, how); /* map sock_shutdown_cmd constants to sk_shutdown value range */ sk->sk_shutdown |= how + 1; diff -u linux-azure-5.4.0/net/smc/smc_clc.c linux-azure-5.4.0/net/smc/smc_clc.c --- linux-azure-5.4.0/net/smc/smc_clc.c +++ linux-azure-5.4.0/net/smc/smc_clc.c @@ -163,7 +163,8 @@ goto out_rel; } /* get address to which the internal TCP socket is bound */ - kernel_getsockname(clcsock, (struct sockaddr *)&addrs); + if (kernel_getsockname(clcsock, (struct sockaddr *)&addrs) < 0) + goto out_rel; /* analyze IP specific data of net_device belonging to TCP socket */ addr6 = (struct sockaddr_in6 *)&addrs; rcu_read_lock(); diff -u linux-azure-5.4.0/net/smc/smc_core.c linux-azure-5.4.0/net/smc/smc_core.c --- linux-azure-5.4.0/net/smc/smc_core.c +++ linux-azure-5.4.0/net/smc/smc_core.c @@ -342,8 +342,8 @@ } else { smc_cdc_tx_dismiss_slots(conn); } - smc_lgr_unregister_conn(conn); smc_buf_unuse(conn, lgr); /* allow buffer reuse */ + smc_lgr_unregister_conn(conn); conn->lgr = NULL; if (!lgr->conns_num) @@ -632,7 +632,8 @@ !lgr->sync_err && lgr->vlan_id == ini->vlan_id && (role == SMC_CLNT || - lgr->conns_num < SMC_RMBS_PER_LGR_MAX)) { + (lgr->conns_num < SMC_RMBS_PER_LGR_MAX && + !bitmap_full(lgr->rtokens_used_mask, SMC_RMBS_PER_LGR_MAX)))) { /* link group found */ ini->cln_first_contact = SMC_REUSE_CONTACT; conn->lgr = lgr; @@ -733,7 +734,7 @@ */ static inline int smc_rmb_wnd_update_limit(int rmbe_size) { - return min_t(int, rmbe_size / 10, SOCK_MIN_SNDBUF / 2); + return max_t(int, rmbe_size / 10, SOCK_MIN_SNDBUF / 2); } static struct smc_buf_desc *smcr_new_buf_create(struct smc_link_group *lgr, diff -u linux-azure-5.4.0/net/socket.c linux-azure-5.4.0/net/socket.c --- linux-azure-5.4.0/net/socket.c +++ linux-azure-5.4.0/net/socket.c @@ -1053,7 +1053,7 @@ rtnl_unlock(); if (!err && copy_to_user(argp, &ifc, sizeof(struct ifconf))) err = -EFAULT; - } else { + } else if (is_socket_ioctl_cmd(cmd)) { struct ifreq ifr; bool need_copyout; if (copy_from_user(&ifr, argp, sizeof(struct ifreq))) @@ -1062,6 +1062,8 @@ if (!err && need_copyout) if (copy_to_user(argp, &ifr, sizeof(struct ifreq))) return -EFAULT; + } else { + err = -ENOTTY; } return err; } @@ -1071,19 +1073,6 @@ * what to do with it - that's up to the protocol still. */ -/** - * get_net_ns - increment the refcount of the network namespace - * @ns: common namespace (net) - * - * Returns the net's common namespace. - */ - -struct ns_common *get_net_ns(struct ns_common *ns) -{ - return &get_net(container_of(ns, struct net, ns))->ns; -} -EXPORT_SYMBOL_GPL(get_net_ns); - static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg) { struct socket *sock; @@ -1672,7 +1661,7 @@ sock = sockfd_lookup_light(fd, &err, &fput_needed); if (sock) { - somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn; + somaxconn = READ_ONCE(sock_net(sock->sk)->core.sysctl_somaxconn); if ((unsigned int)backlog > somaxconn) backlog = somaxconn; @@ -3241,6 +3230,8 @@ struct ifreq ifreq; u32 data32; + if (!is_socket_ioctl_cmd(cmd)) + return -ENOTTY; if (copy_from_user(ifreq.ifr_name, u_ifreq32->ifr_name, IFNAMSIZ)) return -EFAULT; if (get_user(data32, &u_ifreq32->ifr_data)) diff -u linux-azure-5.4.0/net/sunrpc/auth_gss/svcauth_gss.c linux-azure-5.4.0/net/sunrpc/auth_gss/svcauth_gss.c --- linux-azure-5.4.0/net/sunrpc/auth_gss/svcauth_gss.c +++ linux-azure-5.4.0/net/sunrpc/auth_gss/svcauth_gss.c @@ -1937,7 +1937,7 @@ goto out2; return 0; out2: - destroy_use_gss_proxy_proc_entry(net); + rsi_cache_destroy_net(net); out1: rsc_cache_destroy_net(net); return rv; diff -u linux-azure-5.4.0/net/sunrpc/clnt.c linux-azure-5.4.0/net/sunrpc/clnt.c --- linux-azure-5.4.0/net/sunrpc/clnt.c +++ linux-azure-5.4.0/net/sunrpc/clnt.c @@ -33,6 +33,23 @@ #include #include +/* + * Note #1: + * Accessing NFS structures inside sunrpc code is layering violation, but + * that's the best we can do w/o making changes to existing structures, + * which would prevent the updated module from being loaded into existing + * pre-built kernels. + * + * Note #2: + * We define __LINUX_NFSACL_H to prevent nfsacl.h from being included o/w + * some of the rpc* methods get different modversion than the kernel, due + * to some nfs acl structures being forward declared. + */ +#define __LINUX_NFSACL_H +#include +#undef ifdebug +#define ifdebug(fac) if (0) + #include #include #include @@ -52,6 +69,28 @@ __func__, t->tk_status) /* + * If enable_azure_nconnect is true, RPC requests for a file are sent over + * one connection. RPC requests for different files may be sent over different + * connections. + */ +static bool enable_azure_nconnect __read_mostly = false; +module_param(enable_azure_nconnect, bool, 0644); +MODULE_PARM_DESC(enable_azure_nconnect, + "Send RPC requests for one file over one connection (requests for different files go over different connections)"); + +/* + * By default read requests to one file are sent over one connection. + * azure_nconnect_readscaling module parameter can be used to control that + * behavior. By distributing READ RPCs for one file over multiple connections + * we can get much higher single-file READ throughput. This can be used if + * we have a readonly mount or if files are mostly read and not written. + */ +static bool azure_nconnect_readscaling __read_mostly = false; +module_param(azure_nconnect_readscaling, bool, 0644); +MODULE_PARM_DESC(azure_nconnect_readscaling, + "Scale single file reads by sending them round-robin over all the available connections. Use only for readonly mounts or for read-mostly workloads"); + +/* * All RPC clients are linked into this list */ @@ -1055,6 +1094,200 @@ return rpc_task_get_xprt(clnt, xprt_iter_get_next(&clnt->cl_xpi)); } +/* + * For the given rpc_task, compute the hash for the target filehandle. + */ +static u32 +rpc_task_fh_hash(const struct rpc_task *task) +{ + const struct rpc_message *rpc_message = &task->tk_msg; + const struct rpc_procinfo *rpc_proc = rpc_message->rpc_proc; + const u32 p_proc = (rpc_proc ? rpc_proc->p_proc : NFS3PROC_NULL); + const struct nfs_fh *fh = NULL; + + switch (p_proc) { + case NFS3PROC_GETATTR: + { + fh = rpc_message->rpc_argp; + break; + } + case NFS3PROC_SETATTR: + { + const struct nfs3_sattrargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_LOOKUP: + case NFS3PROC_RMDIR: + { + const struct nfs3_diropargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_ACCESS: + { + const struct nfs3_accessargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_READLINK: + { + const struct nfs3_readlinkargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_READ: + case NFS3PROC_WRITE: + { + const struct nfs_pgio_args *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_COMMIT: + { + const struct nfs_commitargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_CREATE: + { + const struct nfs3_createargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_MKDIR: + { + const struct nfs3_mkdirargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_SYMLINK: + { + const struct nfs3_symlinkargs *args = rpc_message->rpc_argp; + fh = args->fromfh; + break; + } + case NFS3PROC_MKNOD: + { + const struct nfs3_mknodargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_REMOVE: + { + const struct nfs_removeargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_RENAME: + { + const struct nfs_renameargs *args = rpc_message->rpc_argp; + /* + * In case of cross-dir rename, we have to choose between + * old and new dir to have the updated cache. We prefer + * new_dir as that's where the user expects the file to + * show up. + */ + fh = args->new_dir; + if (!fh) + fh = args->old_dir; + break; + } + case NFS3PROC_LINK: + { + const struct nfs3_linkargs *args = rpc_message->rpc_argp; + fh = args->tofh; + break; + } + case NFS3PROC_READDIR: + case NFS3PROC_READDIRPLUS: + { + const struct nfs3_readdirargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + /* + * Rest are not targeted to a file and map to the first + * transport connection. + */ + } + + return (fh ? jhash(fh->data, fh->size, 0) : 0); +} + +static +bool xprt_is_active(const struct rpc_xprt *xprt) +{ + return kref_read(&xprt->kref) != 0; +} + +/* + * For the given rpc_task return the hashed xprt to use. + * This will ensure RPCs targeted to the same file get the same xprt. + */ +static struct rpc_xprt * +rpc_task_get_hashed_xprt(struct rpc_clnt *clnt, const struct rpc_task *task) +{ + const struct rpc_xprt_switch *xps = NULL; + struct rpc_xprt *xprt = NULL; + const u32 hash = rpc_task_fh_hash(task); + + rcu_read_lock(); + xps = rcu_dereference(clnt->cl_xpi.xpi_xpswitch); + + if (xps && hash) { + const struct list_head *head = &xps->xps_xprt_list; + struct rpc_xprt *pos; + const u32 nactive = READ_ONCE(xps->xps_nactive); + const u32 xprt_idx = (hash % nactive); + u32 idx = 0; + + list_for_each_entry_rcu(pos, head, xprt_switch) { + if (xprt_idx > idx++) + continue; + if (xprt_is_active(pos)) { + xprt = xprt_get(pos); + break; + } else { + if (printk_ratelimit()) + printk(KERN_ERR "!xprt_is_active idx=%u, xprt_idx=%u, hash=%u\n", + idx, xprt_idx, hash); + } + } + } + + /* + * Use first transport, if not found any, or if RPC is not targeted + * to a specific file, e.g., FSINFO. + */ + if (!xprt) + xprt = xprt_get(rcu_dereference(clnt->cl_xprt)); + rcu_read_unlock(); + + return rpc_task_get_xprt(clnt, xprt); +} + +static struct rpc_xprt * +rpc_task_get_azure_xprt(struct rpc_clnt *clnt, const struct rpc_task *task) +{ + /* + * Use special azure nconnect only for NFSv3 RPC requests. + */ + if (clnt->cl_prog != NFS_PROGRAM || clnt->cl_vers != NFS3_VERSION) + return rpc_task_get_next_xprt(clnt); + + if (enable_azure_nconnect) { + if (azure_nconnect_readscaling) { + const struct rpc_procinfo *rpc_proc = + task->tk_msg.rpc_proc; + if (rpc_proc && rpc_proc->p_proc == NFS3PROC_READ) + return rpc_task_get_next_xprt(clnt); + } + return rpc_task_get_hashed_xprt(clnt, task); + } else + return rpc_task_get_next_xprt(clnt); +} + static void rpc_task_set_transport(struct rpc_task *task, struct rpc_clnt *clnt) { @@ -1063,7 +1296,7 @@ if (task->tk_flags & RPC_TASK_NO_ROUND_ROBIN) task->tk_xprt = rpc_task_get_first_xprt(clnt); else - task->tk_xprt = rpc_task_get_next_xprt(clnt); + task->tk_xprt = rpc_task_get_azure_xprt(clnt, task); } static @@ -1123,8 +1356,8 @@ task = rpc_new_task(task_setup_data); - rpc_task_set_client(task, task_setup_data->rpc_client); rpc_task_set_rpc_message(task, task_setup_data->rpc_message); + rpc_task_set_client(task, task_setup_data->rpc_client); if (task->tk_action == NULL) rpc_call_start(task); @@ -1896,7 +2129,7 @@ break; case -EKEYEXPIRED: if (!task->tk_cred_retry) { - rpc_exit(task, task->tk_status); + rpc_call_rpcerror(task, task->tk_status); } else { task->tk_action = call_refresh; task->tk_cred_retry--; @@ -2223,6 +2456,7 @@ * socket just returned a connection error, * then hold onto the transport lock. */ + case -ENOMEM: case -ENOBUFS: rpc_delay(task, HZ>>2); /* fall through */ @@ -2308,6 +2542,7 @@ case -ENOTCONN: case -EPIPE: break; + case -ENOMEM: case -ENOBUFS: rpc_delay(task, HZ>>2); /* fall through */ @@ -2392,6 +2627,11 @@ case -EPIPE: case -EAGAIN: break; + case -ENFILE: + case -ENOBUFS: + case -ENOMEM: + rpc_delay(task, HZ>>2); + break; case -EIO: /* shutdown or soft timeout */ goto out_exit; diff -u linux-azure-5.4.0/net/sunrpc/rpc_pipe.c linux-azure-5.4.0/net/sunrpc/rpc_pipe.c --- linux-azure-5.4.0/net/sunrpc/rpc_pipe.c +++ linux-azure-5.4.0/net/sunrpc/rpc_pipe.c @@ -599,9 +599,9 @@ dget(dentry); ret = simple_rmdir(dir, dentry); + d_drop(dentry); if (!ret) fsnotify_rmdir(dir, dentry); - d_delete(dentry); dput(dentry); return ret; } @@ -612,9 +612,9 @@ dget(dentry); ret = simple_unlink(dir, dentry); + d_drop(dentry); if (!ret) fsnotify_unlink(dir, dentry); - d_delete(dentry); dput(dentry); return ret; } diff -u linux-azure-5.4.0/net/sunrpc/sched.c linux-azure-5.4.0/net/sunrpc/sched.c --- linux-azure-5.4.0/net/sunrpc/sched.c +++ linux-azure-5.4.0/net/sunrpc/sched.c @@ -614,10 +614,20 @@ struct rpc_task *task; /* + * Service the privileged queue. + */ + q = &queue->tasks[RPC_NR_PRIORITY - 1]; + if (queue->maxpriority > RPC_PRIORITY_PRIVILEGED && !list_empty(q)) { + task = list_first_entry(q, struct rpc_task, u.tk_wait.list); + goto out; + } + + /* * Service a batch of tasks from a single owner. */ q = &queue->tasks[queue->priority]; - if (!list_empty(q) && --queue->nr) { + if (!list_empty(q) && queue->nr) { + queue->nr--; task = list_first_entry(q, struct rpc_task, u.tk_wait.list); goto out; } @@ -1029,8 +1039,10 @@ struct rpc_buffer *buf; gfp_t gfp = GFP_NOFS; + if (RPC_IS_ASYNC(task)) + gfp = GFP_NOWAIT | __GFP_NOWARN; if (RPC_IS_SWAPPER(task)) - gfp = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN; + gfp |= __GFP_MEMALLOC; size += sizeof(struct rpc_buffer); if (size <= RPC_BUFFER_MAXSIZE) diff -u linux-azure-5.4.0/net/sunrpc/xdr.c linux-azure-5.4.0/net/sunrpc/xdr.c --- linux-azure-5.4.0/net/sunrpc/xdr.c +++ linux-azure-5.4.0/net/sunrpc/xdr.c @@ -608,7 +608,11 @@ */ xdr->p = (void *)p + frag2bytes; space_left = xdr->buf->buflen - xdr->buf->len; - xdr->end = (void *)p + min_t(int, space_left, PAGE_SIZE); + if (space_left - frag1bytes >= PAGE_SIZE) + xdr->end = (void *)p + PAGE_SIZE; + else + xdr->end = (void *)p + space_left - frag1bytes; + xdr->buf->page_len += frag2bytes; xdr->buf->len += nbytes; return p; diff -u linux-azure-5.4.0/net/sunrpc/xprt.c linux-azure-5.4.0/net/sunrpc/xprt.c --- linux-azure-5.4.0/net/sunrpc/xprt.c +++ linux-azure-5.4.0/net/sunrpc/xprt.c @@ -717,6 +717,21 @@ EXPORT_SYMBOL_GPL(xprt_disconnect_done); /** + * xprt_schedule_autoclose_locked - Try to schedule an autoclose RPC call + * @xprt: transport to disconnect + */ +static void xprt_schedule_autoclose_locked(struct rpc_xprt *xprt) +{ + if (test_and_set_bit(XPRT_CLOSE_WAIT, &xprt->state)) + return; + if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0) + queue_work(xprtiod_workqueue, &xprt->task_cleanup); + else if (xprt->snd_task && !test_bit(XPRT_SND_IS_COOKIE, &xprt->state)) + rpc_wake_up_queued_task_set_status(&xprt->pending, + xprt->snd_task, -ENOTCONN); +} + +/** * xprt_force_disconnect - force a transport to disconnect * @xprt: transport to disconnect * @@ -725,13 +740,7 @@ { /* Don't race with the test_bit() in xprt_clear_locked() */ spin_lock(&xprt->transport_lock); - set_bit(XPRT_CLOSE_WAIT, &xprt->state); - /* Try to schedule an autoclose RPC call */ - if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0) - queue_work(xprtiod_workqueue, &xprt->task_cleanup); - else if (xprt->snd_task) - rpc_wake_up_queued_task_set_status(&xprt->pending, - xprt->snd_task, -ENOTCONN); + xprt_schedule_autoclose_locked(xprt); spin_unlock(&xprt->transport_lock); } EXPORT_SYMBOL_GPL(xprt_force_disconnect); @@ -771,11 +780,7 @@ goto out; if (test_bit(XPRT_CLOSING, &xprt->state)) goto out; - set_bit(XPRT_CLOSE_WAIT, &xprt->state); - /* Try to schedule an autoclose RPC call */ - if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0) - queue_work(xprtiod_workqueue, &xprt->task_cleanup); - xprt_wake_pending_tasks(xprt, -EAGAIN); + xprt_schedule_autoclose_locked(xprt); out: spin_unlock(&xprt->transport_lock); } @@ -820,6 +825,7 @@ goto out; if (xprt->snd_task != task) goto out; + set_bit(XPRT_SND_IS_COOKIE, &xprt->state); xprt->snd_task = cookie; ret = true; out: @@ -835,6 +841,7 @@ if (!test_bit(XPRT_LOCKED, &xprt->state)) goto out; xprt->snd_task =NULL; + clear_bit(XPRT_SND_IS_COOKIE, &xprt->state); xprt->ops->release_xprt(xprt, NULL); xprt_schedule_autodisconnect(xprt); out: @@ -861,10 +868,7 @@ if (!xprt_lock_write(xprt, task)) return; - if (test_and_clear_bit(XPRT_CLOSE_WAIT, &xprt->state)) - xprt->ops->close(xprt); - - if (!xprt_connected(xprt)) { + if (!xprt_connected(xprt) && !test_bit(XPRT_CLOSE_WAIT, &xprt->state)) { task->tk_rqstp->rq_connect_cookie = xprt->connect_cookie; rpc_sleep_on_timeout(&xprt->pending, task, NULL, xprt_request_timeout(task->tk_rqstp)); @@ -1536,15 +1540,14 @@ { struct rpc_rqst *next, *req = task->tk_rqstp; struct rpc_xprt *xprt = req->rq_xprt; - int counter, status; + int status; spin_lock(&xprt->queue_lock); - counter = 0; - while (!list_empty(&xprt->xmit_queue)) { - if (++counter == 20) + for (;;) { + next = list_first_entry_or_null(&xprt->xmit_queue, + struct rpc_rqst, rq_xmit); + if (!next) break; - next = list_first_entry(&xprt->xmit_queue, - struct rpc_rqst, rq_xmit); xprt_pin_rqst(next); spin_unlock(&xprt->queue_lock); status = xprt_request_transmit(next, task); @@ -1552,13 +1555,16 @@ status = 0; spin_lock(&xprt->queue_lock); xprt_unpin_rqst(next); - if (status == 0) { - if (!xprt_request_data_received(task) || - test_bit(RPC_TASK_NEED_XMIT, &task->tk_runstate)) - continue; - } else if (test_bit(RPC_TASK_NEED_XMIT, &task->tk_runstate)) - task->tk_status = status; - break; + if (status < 0) { + if (test_bit(RPC_TASK_NEED_XMIT, &task->tk_runstate)) + task->tk_status = status; + break; + } + /* Was @task transmitted, and has it received a reply? */ + if (xprt_request_data_received(task) && + !test_bit(RPC_TASK_NEED_XMIT, &task->tk_runstate)) + break; + cond_resched_lock(&xprt->queue_lock); } spin_unlock(&xprt->queue_lock); } @@ -2002,7 +2008,14 @@ */ wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_UNINTERRUPTIBLE); + /* + * xprt_schedule_autodisconnect() can run after XPRT_LOCKED + * is cleared. We use ->transport_lock to ensure the mod_timer() + * can only run *before* del_time_sync(), never after. + */ + spin_lock(&xprt->transport_lock); del_timer_sync(&xprt->timer); + spin_unlock(&xprt->transport_lock); /* * Destroy sockets etc from the system workqueue so they can diff -u linux-azure-5.4.0/net/sunrpc/xprtrdma/rpc_rdma.c linux-azure-5.4.0/net/sunrpc/xprtrdma/rpc_rdma.c --- linux-azure-5.4.0/net/sunrpc/xprtrdma/rpc_rdma.c +++ linux-azure-5.4.0/net/sunrpc/xprtrdma/rpc_rdma.c @@ -1042,6 +1042,7 @@ rpcrdma_is_bcall(struct rpcrdma_xprt *r_xprt, struct rpcrdma_rep *rep) #if defined(CONFIG_SUNRPC_BACKCHANNEL) { + struct rpc_xprt *xprt = &r_xprt->rx_xprt; struct xdr_stream *xdr = &rep->rr_stream; __be32 *p; @@ -1065,6 +1066,10 @@ if (*p != cpu_to_be32(RPC_CALL)) return false; + /* No bc service. */ + if (xprt->bc_serv == NULL) + return false; + /* Now that we are sure this is a backchannel call, * advance to the RPC header. */ diff -u linux-azure-5.4.0/net/sunrpc/xprtrdma/transport.c linux-azure-5.4.0/net/sunrpc/xprtrdma/transport.c --- linux-azure-5.4.0/net/sunrpc/xprtrdma/transport.c +++ linux-azure-5.4.0/net/sunrpc/xprtrdma/transport.c @@ -626,8 +626,10 @@ gfp_t flags; flags = RPCRDMA_DEF_GFP; + if (RPC_IS_ASYNC(task)) + flags = GFP_NOWAIT | __GFP_NOWARN; if (RPC_IS_SWAPPER(task)) - flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN; + flags |= __GFP_MEMALLOC; if (!rpcrdma_check_regbuf(r_xprt, req->rl_sendbuf, rqst->rq_callsize, flags)) diff -u linux-azure-5.4.0/net/sunrpc/xprtsock.c linux-azure-5.4.0/net/sunrpc/xprtsock.c --- linux-azure-5.4.0/net/sunrpc/xprtsock.c +++ linux-azure-5.4.0/net/sunrpc/xprtsock.c @@ -872,12 +872,12 @@ /** * xs_nospace - handle transmit was incomplete * @req: pointer to RPC request + * @transport: pointer to struct sock_xprt * */ -static int xs_nospace(struct rpc_rqst *req) +static int xs_nospace(struct rpc_rqst *req, struct sock_xprt *transport) { - struct rpc_xprt *xprt = req->rq_xprt; - struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); + struct rpc_xprt *xprt = &transport->xprt; struct sock *sk = transport->inet; int ret = -EAGAIN; @@ -891,25 +891,49 @@ /* Don't race with disconnect */ if (xprt_connected(xprt)) { + struct socket_wq *wq; + + rcu_read_lock(); + wq = rcu_dereference(sk->sk_wq); + set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags); + rcu_read_unlock(); + /* wait for more buffer space */ + set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); sk->sk_write_pending++; xprt_wait_for_buffer_space(xprt); } else ret = -ENOTCONN; spin_unlock(&xprt->transport_lock); + return ret; +} - /* Race breaker in case memory is freed before above code is called */ - if (ret == -EAGAIN) { - struct socket_wq *wq; +static int xs_sock_nospace(struct rpc_rqst *req) +{ + struct sock_xprt *transport = + container_of(req->rq_xprt, struct sock_xprt, xprt); + struct sock *sk = transport->inet; + int ret = -EAGAIN; - rcu_read_lock(); - wq = rcu_dereference(sk->sk_wq); - set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags); - rcu_read_unlock(); + lock_sock(sk); + if (!sock_writeable(sk)) + ret = xs_nospace(req, transport); + release_sock(sk); + return ret; +} - sk->sk_write_space(sk); - } +static int xs_stream_nospace(struct rpc_rqst *req) +{ + struct sock_xprt *transport = + container_of(req->rq_xprt, struct sock_xprt, xprt); + struct sock *sk = transport->inet; + int ret = -EAGAIN; + + lock_sock(sk); + if (!sk_stream_memory_free(sk)) + ret = xs_nospace(req, transport); + release_sock(sk); return ret; } @@ -965,7 +989,7 @@ /* Close the stream if the previous transmission was incomplete */ if (xs_send_request_was_aborted(transport, req)) { - xs_close(xprt); + xprt_force_disconnect(xprt); return -ENOTCONN; } @@ -996,14 +1020,14 @@ case -ENOBUFS: break; case -EAGAIN: - status = xs_nospace(req); + status = xs_stream_nospace(req); break; default: dprintk("RPC: sendmsg returned unrecognized error %d\n", -status); /* fall through */ case -EPIPE: - xs_close(xprt); + xprt_force_disconnect(xprt); status = -ENOTCONN; } @@ -1068,7 +1092,7 @@ /* Should we call xs_close() here? */ break; case -EAGAIN: - status = xs_nospace(req); + status = xs_sock_nospace(req); break; case -ENETUNREACH: case -ENOBUFS: @@ -1181,7 +1205,7 @@ /* Should we call xs_close() here? */ break; case -EAGAIN: - status = xs_nospace(req); + status = xs_stream_nospace(req); break; case -ECONNRESET: case -ECONNREFUSED: @@ -1279,6 +1303,16 @@ if (sk == NULL) return; + /* + * Make sure we're calling this in a context from which it is safe + * to call __fput_sync(). In practice that means rpciod and the + * system workqueue. + */ + if (!(current->flags & PF_WQ_WORKER)) { + WARN_ON_ONCE(1); + set_bit(XPRT_CLOSE_WAIT, &xprt->state); + return; + } if (atomic_read(&transport->xprt.swapper)) sk_clear_memalloc(sk); @@ -1302,7 +1336,7 @@ mutex_unlock(&transport->recv_mutex); trace_rpc_socket_close(xprt, sock); - fput(filp); + __fput_sync(filp); xprt_disconnect_done(xprt); } @@ -2029,6 +2063,9 @@ struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); int ret; + if (transport->file) + goto force_disconnect; + if (RPC_IS_ASYNC(task)) { /* * We want the AF_LOCAL connect to be resolved in the @@ -2041,11 +2078,17 @@ */ task->tk_rpc_status = -ENOTCONN; rpc_exit(task, -ENOTCONN); - return; + goto out_wake; } ret = xs_local_setup_socket(transport); if (ret && !RPC_IS_SOFTCONN(task)) msleep_interruptible(15000); + return; +force_disconnect: + xprt_force_disconnect(xprt); +out_wake: + xprt_clear_connecting(xprt); + xprt_wake_pending_tasks(xprt, -ENOTCONN); } #if IS_ENABLED(CONFIG_SUNRPC_SWAP) @@ -2360,10 +2403,14 @@ struct rpc_xprt *xprt = &transport->xprt; int status = -EIO; - if (!sock) { - sock = xs_create_sock(xprt, transport, - xs_addr(xprt)->sa_family, SOCK_STREAM, - IPPROTO_TCP, true); + if (xprt_connected(xprt)) + goto out; + if (test_and_clear_bit(XPRT_SOCK_CONNECT_SENT, + &transport->sock_state) || + !sock) { + xs_reset_transport(transport); + sock = xs_create_sock(xprt, transport, xs_addr(xprt)->sa_family, + SOCK_STREAM, IPPROTO_TCP, true); if (IS_ERR(sock)) { status = PTR_ERR(sock); goto out; @@ -2394,6 +2441,8 @@ break; case 0: case -EINPROGRESS: + set_bit(XPRT_SOCK_CONNECT_SENT, &transport->sock_state); + fallthrough; case -EALREADY: xprt_unlock_connect(xprt, transport); return; @@ -2447,11 +2496,7 @@ if (transport->sock != NULL) { dprintk("RPC: xs_connect delayed xprt %p for %lu " - "seconds\n", - xprt, xprt->reestablish_timeout / HZ); - - /* Start by resetting any existing state */ - xs_reset_transport(transport); + "seconds\n", xprt, xprt->reestablish_timeout / HZ); delay = xprt_reconnect_delay(xprt); xprt_reconnect_backoff(xprt, XS_TCP_INIT_REEST_TO); @@ -2939,9 +2984,6 @@ } xprt_set_bound(xprt); xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL); - ret = ERR_PTR(xs_local_setup_socket(transport)); - if (ret) - goto out_err; break; default: ret = ERR_PTR(-EAFNOSUPPORT); diff -u linux-azure-5.4.0/net/switchdev/switchdev.c linux-azure-5.4.0/net/switchdev/switchdev.c --- linux-azure-5.4.0/net/switchdev/switchdev.c +++ linux-azure-5.4.0/net/switchdev/switchdev.c @@ -476,6 +476,9 @@ * necessary to go through this helper. */ netdev_for_each_lower_dev(dev, lower_dev, iter) { + if (netif_is_bridge_master(lower_dev)) + continue; + err = __switchdev_handle_port_obj_add(lower_dev, port_obj_info, check_cb, add_cb); if (err && err != -EOPNOTSUPP) @@ -528,6 +531,9 @@ * necessary to go through this helper. */ netdev_for_each_lower_dev(dev, lower_dev, iter) { + if (netif_is_bridge_master(lower_dev)) + continue; + err = __switchdev_handle_port_obj_del(lower_dev, port_obj_info, check_cb, del_cb); if (err && err != -EOPNOTSUPP) @@ -579,6 +585,9 @@ * necessary to go through this helper. */ netdev_for_each_lower_dev(dev, lower_dev, iter) { + if (netif_is_bridge_master(lower_dev)) + continue; + err = __switchdev_handle_port_attr_set(lower_dev, port_attr_info, check_cb, set_cb); if (err && err != -EOPNOTSUPP) diff -u linux-azure-5.4.0/net/tipc/link.c linux-azure-5.4.0/net/tipc/link.c --- linux-azure-5.4.0/net/tipc/link.c +++ linux-azure-5.4.0/net/tipc/link.c @@ -1953,15 +1953,18 @@ u16 peers_tol = msg_link_tolerance(hdr); u16 peers_prio = msg_linkprio(hdr); u16 rcv_nxt = l->rcv_nxt; - u16 dlen = msg_data_sz(hdr); + u32 dlen = msg_data_sz(hdr), glen = 0; int mtyp = msg_type(hdr); bool reply = msg_probe(hdr); - u16 glen = 0; void *data; char *if_name; int rc = 0; trace_tipc_proto_rcv(skb, false, l->name); + + if (dlen > U16_MAX) + goto exit; + if (tipc_link_is_blocked(l) || !xmitq) goto exit; @@ -2063,7 +2066,8 @@ if (glen != tipc_gap_ack_blks_sz(ga->gack_cnt)) ga = NULL; } - + if(glen > dlen) + break; tipc_mon_rcv(l->net, data + glen, dlen - glen, l->addr, &l->mon_state, l->bearer_id); diff -u linux-azure-5.4.0/net/tipc/monitor.c linux-azure-5.4.0/net/tipc/monitor.c --- linux-azure-5.4.0/net/tipc/monitor.c +++ linux-azure-5.4.0/net/tipc/monitor.c @@ -130,7 +130,7 @@ static int map_get(u64 up_map, int i) { - return (up_map & (1 << i)) >> i; + return (up_map & (1ULL << i)) >> i; } static struct tipc_peer *peer_prev(struct tipc_peer *peer) @@ -457,6 +457,8 @@ state->probing = false; /* Sanity check received domain record */ + if (new_member_cnt > MAX_MON_DOMAIN) + return; if (dlen < dom_rec_len(arrv_dom, 0)) return; if (dlen != dom_rec_len(arrv_dom, new_member_cnt)) diff -u linux-azure-5.4.0/net/tipc/socket.c linux-azure-5.4.0/net/tipc/socket.c --- linux-azure-5.4.0/net/tipc/socket.c +++ linux-azure-5.4.0/net/tipc/socket.c @@ -455,6 +455,7 @@ sock_init_data(sock, sk); tipc_set_sk_state(sk, TIPC_OPEN); if (tipc_sk_insert(tsk)) { + sk_free(sk); pr_warn("Socket create failed; port number exhausted\n"); return -EINVAL; } @@ -1756,6 +1757,7 @@ bool connected = !tipc_sk_type_connectionless(sk); struct tipc_sock *tsk = tipc_sk(sk); int rc, err, hlen, dlen, copy; + struct tipc_skb_cb *skb_cb; struct sk_buff_head xmitq; struct tipc_msg *hdr; struct sk_buff *skb; @@ -1779,6 +1781,7 @@ if (unlikely(rc)) goto exit; skb = skb_peek(&sk->sk_receive_queue); + skb_cb = TIPC_SKB_CB(skb); hdr = buf_msg(skb); dlen = msg_data_sz(hdr); hlen = msg_hdr_sz(hdr); @@ -1798,18 +1801,33 @@ /* Capture data if non-error msg, otherwise just set return value */ if (likely(!err)) { - copy = min_t(int, dlen, buflen); - if (unlikely(copy != dlen)) - m->msg_flags |= MSG_TRUNC; - rc = skb_copy_datagram_msg(skb, hlen, m, copy); + int offset = skb_cb->bytes_read; + + copy = min_t(int, dlen - offset, buflen); + rc = skb_copy_datagram_msg(skb, hlen + offset, m, copy); + if (unlikely(rc)) + goto exit; + if (unlikely(offset + copy < dlen)) { + if (flags & MSG_EOR) { + if (!(flags & MSG_PEEK)) + skb_cb->bytes_read = offset + copy; + } else { + m->msg_flags |= MSG_TRUNC; + skb_cb->bytes_read = 0; + } + } else { + if (flags & MSG_EOR) + m->msg_flags |= MSG_EOR; + skb_cb->bytes_read = 0; + } } else { copy = 0; rc = 0; - if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control) + if (err != TIPC_CONN_SHUTDOWN && connected && !m->msg_control) { rc = -ECONNRESET; + goto exit; + } } - if (unlikely(rc)) - goto exit; /* Mark message as group event if applicable */ if (unlikely(grp_evt)) { @@ -1832,6 +1850,9 @@ tipc_node_distr_xmit(sock_net(sk), &xmitq); } + if (skb_cb->bytes_read) + goto exit; + tsk_advance_rx_queue(sk); if (likely(!connected)) @@ -2255,7 +2276,7 @@ static void tipc_sk_enqueue(struct sk_buff_head *inputq, struct sock *sk, u32 dport, struct sk_buff_head *xmitq) { - unsigned long time_limit = jiffies + 2; + unsigned long time_limit = jiffies + usecs_to_jiffies(20000); struct sk_buff *skb; unsigned int lim; atomic_t *dcnt; @@ -2501,7 +2522,7 @@ static int tipc_wait_for_accept(struct socket *sock, long timeo) { struct sock *sk = sock->sk; - DEFINE_WAIT(wait); + DEFINE_WAIT_FUNC(wait, woken_wake_function); int err; /* True wake-one mechanism for incoming connections: only @@ -2510,12 +2531,12 @@ * anymore, the common case will execute the loop only once. */ for (;;) { - prepare_to_wait_exclusive(sk_sleep(sk), &wait, - TASK_INTERRUPTIBLE); if (timeo && skb_queue_empty(&sk->sk_receive_queue)) { + add_wait_queue(sk_sleep(sk), &wait); release_sock(sk); - timeo = schedule_timeout(timeo); + timeo = wait_woken(&wait, TASK_INTERRUPTIBLE, timeo); lock_sock(sk); + remove_wait_queue(sk_sleep(sk), &wait); } err = 0; if (!skb_queue_empty(&sk->sk_receive_queue)) @@ -2527,7 +2548,6 @@ if (signal_pending(current)) break; } - finish_wait(sk_sleep(sk), &wait); return err; } @@ -2679,7 +2699,8 @@ /* Try again later if dest link is congested */ if (tsk->cong_link_cnt) { - sk_reset_timer(sk, &sk->sk_timer, msecs_to_jiffies(100)); + sk_reset_timer(sk, &sk->sk_timer, + jiffies + msecs_to_jiffies(100)); return; } /* Prepare SYN for retransmit */ @@ -3571,7 +3592,7 @@ if (p->key == *last_publ) break; } - if (p->key != *last_publ) { + if (list_entry_is_head(p, &tsk->publications, binding_sock)) { /* We never set seq or call nl_dump_check_consistent() * this means that setting prev_seq here will cause the * consistence check to fail in the netlink callback diff -u linux-azure-5.4.0/net/tipc/topsrv.c linux-azure-5.4.0/net/tipc/topsrv.c --- linux-azure-5.4.0/net/tipc/topsrv.c +++ linux-azure-5.4.0/net/tipc/topsrv.c @@ -450,12 +450,19 @@ static void tipc_topsrv_accept(struct work_struct *work) { struct tipc_topsrv *srv = container_of(work, struct tipc_topsrv, awork); - struct socket *lsock = srv->listener; - struct socket *newsock; + struct socket *newsock, *lsock; struct tipc_conn *con; struct sock *newsk; int ret; + spin_lock_bh(&srv->idr_lock); + if (!srv->listener) { + spin_unlock_bh(&srv->idr_lock); + return; + } + lsock = srv->listener; + spin_unlock_bh(&srv->idr_lock); + while (1) { ret = kernel_accept(lsock, &newsock, O_NONBLOCK); if (ret < 0) @@ -489,7 +496,7 @@ read_lock_bh(&sk->sk_callback_lock); srv = sk->sk_user_data; - if (srv->listener) + if (srv) queue_work(srv->rcv_wq, &srv->awork); read_unlock_bh(&sk->sk_callback_lock); } @@ -568,7 +575,7 @@ sub.seq.upper = upper; sub.timeout = TIPC_WAIT_FOREVER; sub.filter = filter; - *(u32 *)&sub.usr_handle = port; + *(u64 *)&sub.usr_handle = (u64)port; con = tipc_conn_alloc(tipc_topsrv(net)); if (IS_ERR(con)) @@ -699,8 +706,9 @@ __module_get(lsock->sk->sk_prot_creator->owner); srv->listener = NULL; spin_unlock_bh(&srv->idr_lock); - sock_release(lsock); + tipc_topsrv_work_stop(srv); + sock_release(lsock); idr_destroy(&srv->conn_idr); kfree(srv); } diff -u linux-azure-5.4.0/net/tls/tls_device.c linux-azure-5.4.0/net/tls/tls_device.c --- linux-azure-5.4.0/net/tls/tls_device.c +++ linux-azure-5.4.0/net/tls/tls_device.c @@ -94,13 +94,16 @@ unsigned long flags; spin_lock_irqsave(&tls_device_lock, flags); + if (unlikely(!refcount_dec_and_test(&ctx->refcount))) + goto unlock; + list_move_tail(&ctx->list, &tls_device_gc_list); /* schedule_work inside the spinlock * to make sure tls_device_down waits for that work. */ schedule_work(&tls_device_gc_work); - +unlock: spin_unlock_irqrestore(&tls_device_lock, flags); } @@ -191,8 +194,7 @@ clean_acked_data_disable(inet_csk(sk)); } - if (refcount_dec_and_test(&tls_ctx->refcount)) - tls_device_queue_ctx_destruction(tls_ctx); + tls_device_queue_ctx_destruction(tls_ctx); } void tls_device_free_resources_tx(struct sock *sk) @@ -470,11 +472,13 @@ copy = min_t(size_t, size, (pfrag->size - pfrag->offset)); copy = min_t(size_t, copy, (max_open_record_len - record->len)); - rc = tls_device_copy_data(page_address(pfrag->page) + - pfrag->offset, copy, msg_iter); - if (rc) - goto handle_error; - tls_append_frag(record, pfrag, copy); + if (copy) { + rc = tls_device_copy_data(page_address(pfrag->page) + + pfrag->offset, copy, msg_iter); + if (rc) + goto handle_error; + tls_append_frag(record, pfrag, copy); + } size -= copy; if (!size) { diff -u linux-azure-5.4.0/net/tls/tls_sw.c linux-azure-5.4.0/net/tls/tls_sw.c --- linux-azure-5.4.0/net/tls/tls_sw.c +++ linux-azure-5.4.0/net/tls/tls_sw.c @@ -35,6 +35,7 @@ * SOFTWARE. */ +#include #include #include #include @@ -43,6 +44,14 @@ #include #include +noinline void tls_err_abort(struct sock *sk, int err) +{ + WARN_ON_ONCE(err >= 0); + /* sk->sk_err should contain a positive error code. */ + sk->sk_err = -err; + sk->sk_error_report(sk); +} + static int __skb_nsg(struct sk_buff *skb, int offset, int len, unsigned int recursion_level) { @@ -416,7 +425,7 @@ tx_err: if (rc < 0 && rc != -EAGAIN) - tls_err_abort(sk, EBADMSG); + tls_err_abort(sk, -EBADMSG); return rc; } @@ -447,7 +456,7 @@ /* If err is already set on socket, return the same code */ if (sk->sk_err) { - ctx->async_wait.err = sk->sk_err; + ctx->async_wait.err = -sk->sk_err; } else { ctx->async_wait.err = err; tls_err_abort(sk, err); @@ -503,7 +512,7 @@ memcpy(&rec->iv_data[iv_offset], tls_ctx->tx.iv, prot->iv_size + prot->salt_size); - xor_iv_with_seq(prot->version, rec->iv_data, tls_ctx->tx.rec_seq); + xor_iv_with_seq(prot->version, rec->iv_data + iv_offset, tls_ctx->tx.rec_seq); sge->offset += prot->prepend_size; sge->length -= prot->prepend_size; @@ -761,7 +770,7 @@ msg_pl->sg.size + prot->tail_size, i); if (rc < 0) { if (rc != -EINPROGRESS) { - tls_err_abort(sk, EBADMSG); + tls_err_abort(sk, -EBADMSG); if (split) { tls_ctx->pending_open_record_frags = true; tls_merge_open_record(sk, rec, tmp, orig_end); @@ -1150,7 +1159,7 @@ int ret = 0; bool eor; - eor = !(flags & (MSG_MORE | MSG_SENDPAGE_NOTLAST)); + eor = !(flags & MSG_SENDPAGE_NOTLAST); sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk); /* Call the sk_stream functions to manage the sndbuf mem. */ @@ -1470,11 +1479,11 @@ } if (prot->version == TLS_1_3_VERSION) memcpy(iv + iv_offset, tls_ctx->rx.iv, - crypto_aead_ivsize(ctx->aead_recv)); + prot->iv_size + prot->salt_size); else memcpy(iv + iv_offset, tls_ctx->rx.iv, prot->salt_size); - xor_iv_with_seq(prot->version, iv, tls_ctx->rx.rec_seq); + xor_iv_with_seq(prot->version, iv + iv_offset, tls_ctx->rx.rec_seq); /* Prepare AAD */ tls_make_aad(aad, rxm->full_len - prot->overhead_size + @@ -1822,7 +1831,7 @@ err = decrypt_skb_update(sk, skb, &msg->msg_iter, &chunk, &zc, async_capable); if (err < 0 && err != -EINPROGRESS) { - tls_err_abort(sk, EBADMSG); + tls_err_abort(sk, -EBADMSG); goto recv_end; } @@ -2002,7 +2011,7 @@ } if (err < 0) { - tls_err_abort(sk, EBADMSG); + tls_err_abort(sk, -EBADMSG); goto splice_read_end; } ctx->decrypted = true; diff -u linux-azure-5.4.0/net/unix/af_unix.c linux-azure-5.4.0/net/unix/af_unix.c --- linux-azure-5.4.0/net/unix/af_unix.c +++ linux-azure-5.4.0/net/unix/af_unix.c @@ -440,7 +440,7 @@ * -ECONNREFUSED. Otherwise, if we haven't queued any skbs * to other and its full, we will hang waiting for POLLOUT. */ - if (unix_recvq_full(other) && !sock_flag(other, SOCK_DEAD)) + if (unix_recvq_full_lockless(other) && !sock_flag(other, SOCK_DEAD)) return 1; if (connected) @@ -537,12 +537,14 @@ u->path.mnt = NULL; state = sk->sk_state; sk->sk_state = TCP_CLOSE; + + skpair = unix_peer(sk); + unix_peer(sk) = NULL; + unix_state_unlock(sk); wake_up_interruptible_all(&u->peer_wait); - skpair = unix_peer(sk); - if (skpair != NULL) { if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) { unix_state_lock(skpair); @@ -557,7 +559,6 @@ unix_dgram_peer_wake_disconnect(sk, skpair); sock_put(skpair); /* It may now die */ - unix_peer(sk) = NULL; } /* Try to flush out this socket. Throw out buffers at least */ @@ -594,20 +595,42 @@ static void init_peercred(struct sock *sk) { - put_pid(sk->sk_peer_pid); - if (sk->sk_peer_cred) - put_cred(sk->sk_peer_cred); + const struct cred *old_cred; + struct pid *old_pid; + + spin_lock(&sk->sk_peer_lock); + old_pid = sk->sk_peer_pid; + old_cred = sk->sk_peer_cred; sk->sk_peer_pid = get_pid(task_tgid(current)); sk->sk_peer_cred = get_current_cred(); + spin_unlock(&sk->sk_peer_lock); + + put_pid(old_pid); + put_cred(old_cred); } static void copy_peercred(struct sock *sk, struct sock *peersk) { - put_pid(sk->sk_peer_pid); - if (sk->sk_peer_cred) - put_cred(sk->sk_peer_cred); + const struct cred *old_cred; + struct pid *old_pid; + + if (sk < peersk) { + spin_lock(&sk->sk_peer_lock); + spin_lock_nested(&peersk->sk_peer_lock, SINGLE_DEPTH_NESTING); + } else { + spin_lock(&peersk->sk_peer_lock); + spin_lock_nested(&sk->sk_peer_lock, SINGLE_DEPTH_NESTING); + } + old_pid = sk->sk_peer_pid; + old_cred = sk->sk_peer_cred; sk->sk_peer_pid = get_pid(peersk->sk_peer_pid); sk->sk_peer_cred = get_cred(peersk->sk_peer_cred); + + spin_unlock(&sk->sk_peer_lock); + spin_unlock(&peersk->sk_peer_lock); + + put_pid(old_pid); + put_cred(old_cred); } static int unix_listen(struct socket *sock, int backlog) @@ -1511,6 +1534,53 @@ return err; } +static void unix_peek_fds(struct scm_cookie *scm, struct sk_buff *skb) +{ + scm->fp = scm_fp_dup(UNIXCB(skb).fp); + + /* + * Garbage collection of unix sockets starts by selecting a set of + * candidate sockets which have reference only from being in flight + * (total_refs == inflight_refs). This condition is checked once during + * the candidate collection phase, and candidates are marked as such, so + * that non-candidates can later be ignored. While inflight_refs is + * protected by unix_gc_lock, total_refs (file count) is not, hence this + * is an instantaneous decision. + * + * Once a candidate, however, the socket must not be reinstalled into a + * file descriptor while the garbage collection is in progress. + * + * If the above conditions are met, then the directed graph of + * candidates (*) does not change while unix_gc_lock is held. + * + * Any operations that changes the file count through file descriptors + * (dup, close, sendmsg) does not change the graph since candidates are + * not installed in fds. + * + * Dequeing a candidate via recvmsg would install it into an fd, but + * that takes unix_gc_lock to decrement the inflight count, so it's + * serialized with garbage collection. + * + * MSG_PEEK is special in that it does not change the inflight count, + * yet does install the socket into an fd. The following lock/unlock + * pair is to ensure serialization with garbage collection. It must be + * done between incrementing the file count and installing the file into + * an fd. + * + * If garbage collection starts after the barrier provided by the + * lock/unlock, then it will see the elevated refcount and not mark this + * as a candidate. If a garbage collection is already in progress + * before the file count was incremented, then the lock/unlock pair will + * ensure that garbage collection is finished before progressing to + * installing the fd. + * + * (*) A -> B where B is on the queue of A or B is on the queue of C + * which is on the queue of listening socket A. + */ + spin_lock(&unix_gc_lock); + spin_unlock(&unix_gc_lock); +} + static int unix_scm_to_skb(struct scm_cookie *scm, struct sk_buff *skb, bool send_fds) { int err = 0; @@ -2136,7 +2206,7 @@ sk_peek_offset_fwd(sk, size); if (UNIXCB(skb).fp) - scm.fp = scm_fp_dup(UNIXCB(skb).fp); + unix_peek_fds(&scm, skb); } err = (flags & MSG_TRUNC) ? skb->len - skip : size; @@ -2377,7 +2447,7 @@ /* It is questionable, see note in unix_dgram_recvmsg. */ if (UNIXCB(skb).fp) - scm.fp = scm_fp_dup(UNIXCB(skb).fp); + unix_peek_fds(&scm, skb); sk_peek_offset_fwd(sk, chunk); @@ -2686,7 +2756,7 @@ other = unix_peer(sk); if (other && unix_peer(other) != sk && - unix_recvq_full(other) && + unix_recvq_full_lockless(other) && unix_dgram_peer_wake_me(sk, other)) writable = 0; diff -u linux-azure-5.4.0/net/vmw_vsock/af_vsock.c linux-azure-5.4.0/net/vmw_vsock/af_vsock.c --- linux-azure-5.4.0/net/vmw_vsock/af_vsock.c +++ linux-azure-5.4.0/net/vmw_vsock/af_vsock.c @@ -1110,6 +1110,7 @@ if (sk->sk_state == TCP_SYN_SENT && (sk->sk_shutdown != SHUTDOWN_MASK)) { sk->sk_state = TCP_CLOSE; + sk->sk_socket->state = SS_UNCONNECTED; sk->sk_err = ETIMEDOUT; sk->sk_error_report(sk); vsock_transport_cancel_pkt(vsk); @@ -1151,6 +1152,8 @@ * non-blocking call. */ err = -EALREADY; + if (flags & O_NONBLOCK) + goto out; break; default: if ((sk->sk_state == TCP_LISTEN) || @@ -1205,7 +1208,14 @@ * timeout fires. */ sock_hold(sk); - schedule_delayed_work(&vsk->connect_work, timeout); + + /* If the timeout function is already scheduled, + * reschedule it, then ungrab the socket refcount to + * keep it balanced. + */ + if (mod_delayed_work(system_wq, &vsk->connect_work, + timeout)) + sock_put(sk); /* Skip ahead to preserve error code set above. */ goto out_wait; @@ -1217,9 +1227,10 @@ if (signal_pending(current)) { err = sock_intr_errno(timeout); - sk->sk_state = TCP_CLOSE; + sk->sk_state = sk->sk_state == TCP_ESTABLISHED ? TCP_CLOSING : TCP_CLOSE; sock->state = SS_UNCONNECTED; vsock_transport_cancel_pkt(vsk); + vsock_remove_connected(vsk); goto out_wait; } else if (timeout == 0) { err = -ETIMEDOUT; @@ -1887,7 +1898,6 @@ break; default: - pr_err("Unknown ioctl %d\n", cmd); retval = -EINVAL; } diff -u linux-azure-5.4.0/net/vmw_vsock/hyperv_transport.c linux-azure-5.4.0/net/vmw_vsock/hyperv_transport.c --- linux-azure-5.4.0/net/vmw_vsock/hyperv_transport.c +++ linux-azure-5.4.0/net/vmw_vsock/hyperv_transport.c @@ -13,15 +13,16 @@ #include #include #include +#include /* Older (VMBUS version 'VERSION_WIN10' or before) Windows hosts have some - * stricter requirements on the hv_sock ring buffer size of six 4K pages. Newer - * hosts don't have this limitation; but, keep the defaults the same for compat. + * stricter requirements on the hv_sock ring buffer size of six 4K pages. + * hyperv-tlfs defines HV_HYP_PAGE_SIZE as 4K. Newer hosts don't have this + * limitation; but, keep the defaults the same for compat. */ -#define PAGE_SIZE_4K 4096 -#define RINGBUFFER_HVS_RCV_SIZE (PAGE_SIZE_4K * 6) -#define RINGBUFFER_HVS_SND_SIZE (PAGE_SIZE_4K * 6) -#define RINGBUFFER_HVS_MAX_SIZE (PAGE_SIZE_4K * 64) +#define RINGBUFFER_HVS_RCV_SIZE (HV_HYP_PAGE_SIZE * 6) +#define RINGBUFFER_HVS_SND_SIZE (HV_HYP_PAGE_SIZE * 6) +#define RINGBUFFER_HVS_MAX_SIZE (HV_HYP_PAGE_SIZE * 64) /* The MTU is 16KB per the host side's design */ #define HVS_MTU_SIZE (1024 * 16) @@ -54,7 +55,8 @@ * ringbuffer APIs that allow us to directly copy data from userspace buffer * to VMBus ringbuffer. */ -#define HVS_SEND_BUF_SIZE (PAGE_SIZE_4K - sizeof(struct vmpipe_proto_header)) +#define HVS_SEND_BUF_SIZE \ + (HV_HYP_PAGE_SIZE - sizeof(struct vmpipe_proto_header)) struct hvs_send_buf { /* The header before the payload data */ @@ -355,10 +357,10 @@ } else { sndbuf = max_t(int, sk->sk_sndbuf, RINGBUFFER_HVS_SND_SIZE); sndbuf = min_t(int, sndbuf, RINGBUFFER_HVS_MAX_SIZE); - sndbuf = ALIGN(sndbuf, PAGE_SIZE); + sndbuf = ALIGN(sndbuf, HV_HYP_PAGE_SIZE); rcvbuf = max_t(int, sk->sk_rcvbuf, RINGBUFFER_HVS_RCV_SIZE); rcvbuf = min_t(int, rcvbuf, RINGBUFFER_HVS_MAX_SIZE); - rcvbuf = ALIGN(rcvbuf, PAGE_SIZE); + rcvbuf = ALIGN(rcvbuf, HV_HYP_PAGE_SIZE); } ret = vmbus_open(chan, sndbuf, rcvbuf, NULL, 0, hvs_channel_cb, @@ -626,7 +628,7 @@ ssize_t ret = 0; ssize_t bytes_written = 0; - BUILD_BUG_ON(sizeof(*send_buf) != PAGE_SIZE_4K); + BUILD_BUG_ON(sizeof(*send_buf) != HV_HYP_PAGE_SIZE); send_buf = kmalloc(sizeof(*send_buf), GFP_KERNEL); if (!send_buf) diff -u linux-azure-5.4.0/net/vmw_vsock/virtio_transport.c linux-azure-5.4.0/net/vmw_vsock/virtio_transport.c --- linux-azure-5.4.0/net/vmw_vsock/virtio_transport.c +++ linux-azure-5.4.0/net/vmw_vsock/virtio_transport.c @@ -373,11 +373,14 @@ static void virtio_vsock_reset_sock(struct sock *sk) { - lock_sock(sk); + /* vmci_transport.c doesn't take sk_lock here either. At least we're + * under vsock_table_lock so the sock cannot disappear while we're + * executing. + */ + sk->sk_state = TCP_CLOSE; sk->sk_err = ECONNRESET; sk->sk_error_report(sk); - release_sock(sk); } static void virtio_vsock_update_guest_cid(struct virtio_vsock *vsock) diff -u linux-azure-5.4.0/net/vmw_vsock/virtio_transport_common.c linux-azure-5.4.0/net/vmw_vsock/virtio_transport_common.c --- linux-azure-5.4.0/net/vmw_vsock/virtio_transport_common.c +++ linux-azure-5.4.0/net/vmw_vsock/virtio_transport_common.c @@ -1146,7 +1146,7 @@ void virtio_transport_free_pkt(struct virtio_vsock_pkt *pkt) { - kfree(pkt->buf); + kvfree(pkt->buf); kfree(pkt); } EXPORT_SYMBOL_GPL(virtio_transport_free_pkt); diff -u linux-azure-5.4.0/net/wireless/core.c linux-azure-5.4.0/net/wireless/core.c --- linux-azure-5.4.0/net/wireless/core.c +++ linux-azure-5.4.0/net/wireless/core.c @@ -5,7 +5,7 @@ * Copyright 2006-2010 Johannes Berg * Copyright 2013-2014 Intel Mobile Communications GmbH * Copyright 2015-2017 Intel Deutschland GmbH - * Copyright (C) 2018-2019 Intel Corporation + * Copyright (C) 2018-2021 Intel Corporation */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt @@ -891,9 +891,6 @@ return res; } - /* set up regulatory info */ - wiphy_regulatory_register(wiphy); - list_add_rcu(&rdev->list, &cfg80211_rdev_list); cfg80211_rdev_list_generation++; @@ -904,6 +901,9 @@ cfg80211_debugfs_rdev_add(rdev); nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY); + /* set up regulatory info */ + wiphy_regulatory_register(wiphy); + if (wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) { struct regulatory_request request; diff -u linux-azure-5.4.0/net/wireless/core.h linux-azure-5.4.0/net/wireless/core.h --- linux-azure-5.4.0/net/wireless/core.h +++ linux-azure-5.4.0/net/wireless/core.h @@ -433,6 +433,8 @@ /* internal helpers */ bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher); +bool cfg80211_valid_key_idx(struct cfg80211_registered_device *rdev, + int key_idx, bool pairwise); int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev, struct key_params *params, int key_idx, bool pairwise, const u8 *mac_addr); diff -u linux-azure-5.4.0/net/wireless/nl80211.c linux-azure-5.4.0/net/wireless/nl80211.c --- linux-azure-5.4.0/net/wireless/nl80211.c +++ linux-azure-5.4.0/net/wireless/nl80211.c @@ -3240,6 +3240,7 @@ wdev_lock(wdev); switch (wdev->iftype) { case NL80211_IFTYPE_AP: + case NL80211_IFTYPE_P2P_GO: if (wdev->ssid_len && nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid)) goto nla_put_failure_locked; @@ -3480,7 +3481,7 @@ enum nl80211_iftype iftype) { if (!use_4addr) { - if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT)) + if (netdev && netif_is_bridge_port(netdev)) return -EBUSY; return 0; } @@ -3979,9 +3980,6 @@ if (err) return err; - if (key.idx < 0) - return -EINVAL; - if (info->attrs[NL80211_ATTR_MAC]) mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); @@ -3997,6 +3995,10 @@ key.type != NL80211_KEYTYPE_GROUP) return -EINVAL; + if (!cfg80211_valid_key_idx(rdev, key.idx, + key.type == NL80211_KEYTYPE_PAIRWISE)) + return -EINVAL; + if (!rdev->ops->del_key) return -EOPNOTSUPP; @@ -12319,6 +12321,9 @@ i = 0; nla_for_each_nested(attr, attr_filter, rem) { filter[i].filter = nla_memdup(attr, GFP_KERNEL); + if (!filter[i].filter) + goto err; + filter[i].len = nla_len(attr); i++; } @@ -12331,6 +12336,15 @@ } return 0; + +err: + i = 0; + nla_for_each_nested(attr, attr_filter, rem) { + kfree(filter[i].filter); + i++; + } + kfree(filter); + return -ENOMEM; } static int nl80211_nan_add_func(struct sk_buff *skb, @@ -16301,7 +16315,8 @@ wdev->chandef = *chandef; wdev->preset_chandef = *chandef; - if (wdev->iftype == NL80211_IFTYPE_STATION && + if ((wdev->iftype == NL80211_IFTYPE_STATION || + wdev->iftype == NL80211_IFTYPE_P2P_CLIENT) && !WARN_ON(!wdev->current_bss)) cfg80211_update_assoc_bss_entry(wdev, chandef->chan); diff -u linux-azure-5.4.0/net/wireless/reg.c linux-azure-5.4.0/net/wireless/reg.c --- linux-azure-5.4.0/net/wireless/reg.c +++ linux-azure-5.4.0/net/wireless/reg.c @@ -3790,6 +3790,7 @@ wiphy_update_regulatory(wiphy, lr->initiator); wiphy_all_share_dfs_chan_state(wiphy); + reg_process_self_managed_hints(); } void wiphy_regulatory_deregister(struct wiphy *wiphy) diff -u linux-azure-5.4.0/net/wireless/scan.c linux-azure-5.4.0/net/wireless/scan.c --- linux-azure-5.4.0/net/wireless/scan.c +++ linux-azure-5.4.0/net/wireless/scan.c @@ -104,18 +104,12 @@ lockdep_assert_held(&rdev->bss_lock); bss->refcount++; - if (bss->pub.hidden_beacon_bss) { - bss = container_of(bss->pub.hidden_beacon_bss, - struct cfg80211_internal_bss, - pub); - bss->refcount++; - } - if (bss->pub.transmitted_bss) { - bss = container_of(bss->pub.transmitted_bss, - struct cfg80211_internal_bss, - pub); - bss->refcount++; - } + + if (bss->pub.hidden_beacon_bss) + bss_from_pub(bss->pub.hidden_beacon_bss)->refcount++; + + if (bss->pub.transmitted_bss) + bss_from_pub(bss->pub.transmitted_bss)->refcount++; } static inline void bss_ref_put(struct cfg80211_registered_device *rdev, @@ -265,7 +259,8 @@ tmp_old = cfg80211_find_ie(WLAN_EID_SSID, ie, ielen); tmp_old = (tmp_old) ? tmp_old + tmp_old[1] + 2 : ie; - while (tmp_old + tmp_old[1] + 2 - ie <= ielen) { + while (tmp_old + 2 - ie <= ielen && + tmp_old + tmp_old[1] + 2 - ie <= ielen) { if (tmp_old[0] == 0) { tmp_old++; continue; @@ -325,7 +320,8 @@ * copied to new ie, skip ssid, capability, bssid-index ie */ tmp_new = sub_copy; - while (tmp_new + tmp_new[1] + 2 - sub_copy <= subie_len) { + while (tmp_new + 2 - sub_copy <= subie_len && + tmp_new + tmp_new[1] + 2 - sub_copy <= subie_len) { if (!(tmp_new[0] == WLAN_EID_NON_TX_BSSID_CAP || tmp_new[0] == WLAN_EID_SSID)) { memcpy(pos, tmp_new, tmp_new[1] + 2); @@ -379,14 +375,26 @@ } ssid_len = ssid[1]; ssid = ssid + 2; - rcu_read_unlock(); /* check if nontrans_bss is in the list */ list_for_each_entry(bss, &trans_bss->nontrans_list, nontrans_list) { - if (is_bss(bss, nontrans_bss->bssid, ssid, ssid_len)) + if (is_bss(bss, nontrans_bss->bssid, ssid, ssid_len)) { + rcu_read_unlock(); return 0; + } } + rcu_read_unlock(); + + /* + * This is a bit weird - it's not on the list, but already on another + * one! The only way that could happen is if there's some BSSID/SSID + * shared by multiple APs in their multi-BSSID profiles, potentially + * with hidden SSID mixed in ... ignore it. + */ + if (!list_empty(&nontrans_bss->nontrans_list)) + return -EINVAL; + /* add to the list */ list_add_tail(&nontrans_bss->nontrans_list, &trans_bss->nontrans_list); return 0; @@ -1091,6 +1099,23 @@ u8 bssid_index; }; +static void cfg80211_update_hidden_bsses(struct cfg80211_internal_bss *known, + const struct cfg80211_bss_ies *new_ies, + const struct cfg80211_bss_ies *old_ies) +{ + struct cfg80211_internal_bss *bss; + + /* Assign beacon IEs to all sub entries */ + list_for_each_entry(bss, &known->hidden_list, hidden_list) { + const struct cfg80211_bss_ies *ies; + + ies = rcu_access_pointer(bss->pub.beacon_ies); + WARN_ON(ies != old_ies); + + rcu_assign_pointer(bss->pub.beacon_ies, new_ies); + } +} + static bool cfg80211_update_known_bss(struct cfg80211_registered_device *rdev, struct cfg80211_internal_bss *known, @@ -1114,7 +1139,6 @@ kfree_rcu((struct cfg80211_bss_ies *)old, rcu_head); } else if (rcu_access_pointer(new->pub.beacon_ies)) { const struct cfg80211_bss_ies *old; - struct cfg80211_internal_bss *bss; if (known->pub.hidden_beacon_bss && !list_empty(&known->hidden_list)) { @@ -1142,16 +1166,7 @@ if (old == rcu_access_pointer(known->pub.ies)) rcu_assign_pointer(known->pub.ies, new->pub.beacon_ies); - /* Assign beacon IEs to all sub entries */ - list_for_each_entry(bss, &known->hidden_list, hidden_list) { - const struct cfg80211_bss_ies *ies; - - ies = rcu_access_pointer(bss->pub.beacon_ies); - WARN_ON(ies != old); - - rcu_assign_pointer(bss->pub.beacon_ies, - new->pub.beacon_ies); - } + cfg80211_update_hidden_bsses(known, new->pub.beacon_ies, old); if (old) kfree_rcu((struct cfg80211_bss_ies *)old, rcu_head); @@ -1228,6 +1243,8 @@ new->refcount = 1; INIT_LIST_HEAD(&new->hidden_list); INIT_LIST_HEAD(&new->pub.nontrans_list); + /* we'll set this later if it was non-NULL */ + new->pub.transmitted_bss = NULL; if (rcu_access_pointer(tmp->pub.proberesp_ies)) { hidden = rb_find_bss(rdev, tmp, BSS_CMP_HIDE_ZLEN); @@ -1250,16 +1267,14 @@ * be grouped with this beacon for updates ... */ if (!cfg80211_combine_bsses(rdev, new)) { - kfree(new); + bss_ref_put(rdev, new); goto drop; } } if (rdev->bss_entries >= bss_entries_limit && !cfg80211_bss_expire_oldest(rdev)) { - if (!list_empty(&new->hidden_list)) - list_del(&new->hidden_list); - kfree(new); + bss_ref_put(rdev, new); goto drop; } @@ -1456,11 +1471,18 @@ /* this is a nontransmitting bss, we need to add it to * transmitting bss' list if it is not there */ + spin_lock_bh(&rdev->bss_lock); if (cfg80211_add_nontrans_list(non_tx_data->tx_bss, &res->pub)) { - if (__cfg80211_unlink_bss(rdev, res)) + if (__cfg80211_unlink_bss(rdev, res)) { rdev->bss_generation++; + res = NULL; + } } + spin_unlock_bh(&rdev->bss_lock); + + if (!res) + return NULL; } trace_cfg80211_return_bss(&res->pub); @@ -1579,6 +1601,8 @@ for_each_element_id(elem, WLAN_EID_MULTIPLE_BSSID, ie, ielen) { if (elem->datalen < 4) continue; + if (elem->data[0] < 1 || (int)elem->data[0] > 8) + continue; for_each_element(sub, elem->data + 1, elem->datalen - 1) { u8 profile_len; @@ -1714,7 +1738,7 @@ size_t new_ie_len; struct cfg80211_bss_ies *new_ies; const struct cfg80211_bss_ies *old; - u8 cpy_len; + size_t cpy_len; lockdep_assert_held(&wiphy_to_rdev(wiphy)->bss_lock); @@ -1781,6 +1805,8 @@ } else { old = rcu_access_pointer(nontrans_bss->beacon_ies); rcu_assign_pointer(nontrans_bss->beacon_ies, new_ies); + cfg80211_update_hidden_bsses(bss_from_pub(nontrans_bss), + new_ies, old); rcu_assign_pointer(nontrans_bss->ies, new_ies); if (old) kfree_rcu((struct cfg80211_bss_ies *)old, rcu_head); diff -u linux-azure-5.4.0/net/wireless/util.c linux-azure-5.4.0/net/wireless/util.c --- linux-azure-5.4.0/net/wireless/util.c +++ linux-azure-5.4.0/net/wireless/util.c @@ -229,11 +229,48 @@ return false; } +static bool +cfg80211_igtk_cipher_supported(struct cfg80211_registered_device *rdev) +{ + struct wiphy *wiphy = &rdev->wiphy; + int i; + + for (i = 0; i < wiphy->n_cipher_suites; i++) { + switch (wiphy->cipher_suites[i]) { + case WLAN_CIPHER_SUITE_AES_CMAC: + case WLAN_CIPHER_SUITE_BIP_CMAC_256: + case WLAN_CIPHER_SUITE_BIP_GMAC_128: + case WLAN_CIPHER_SUITE_BIP_GMAC_256: + return true; + } + } + + return false; +} + +bool cfg80211_valid_key_idx(struct cfg80211_registered_device *rdev, + int key_idx, bool pairwise) +{ + int max_key_idx; + + if (pairwise) + max_key_idx = 3; + else if (cfg80211_igtk_cipher_supported(rdev)) + max_key_idx = 5; + else + max_key_idx = 3; + + if (key_idx < 0 || key_idx > max_key_idx) + return false; + + return true; +} + int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev, struct key_params *params, int key_idx, bool pairwise, const u8 *mac_addr) { - if (key_idx < 0 || key_idx > 5) + if (!cfg80211_valid_key_idx(rdev, key_idx, pairwise)) return -EINVAL; if (!pairwise && mac_addr && !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN)) @@ -938,14 +975,14 @@ !(rdev->wiphy.interface_modes & (1 << ntype))) return -EOPNOTSUPP; - /* if it's part of a bridge, reject changing type to station/ibss */ - if ((dev->priv_flags & IFF_BRIDGE_PORT) && - (ntype == NL80211_IFTYPE_ADHOC || - ntype == NL80211_IFTYPE_STATION || - ntype == NL80211_IFTYPE_P2P_CLIENT)) - return -EBUSY; - if (ntype != otype) { + /* if it's part of a bridge, reject changing type to station/ibss */ + if (netif_is_bridge_port(dev) && + (ntype == NL80211_IFTYPE_ADHOC || + ntype == NL80211_IFTYPE_STATION || + ntype == NL80211_IFTYPE_P2P_CLIENT)) + return -EBUSY; + dev->ieee80211_ptr->use_4addr = false; dev->ieee80211_ptr->mesh_id_up_len = 0; wdev_lock(dev->ieee80211_ptr); @@ -954,6 +991,7 @@ switch (otype) { case NL80211_IFTYPE_AP: + case NL80211_IFTYPE_P2P_GO: cfg80211_stop_ap(rdev, dev, true); break; case NL80211_IFTYPE_ADHOC: @@ -969,6 +1007,9 @@ case NL80211_IFTYPE_MESH_POINT: /* mesh should be handled? */ break; + case NL80211_IFTYPE_OCB: + cfg80211_leave_ocb(rdev, dev); + break; default: break; } diff -u linux-azure-5.4.0/net/x25/af_x25.c linux-azure-5.4.0/net/x25/af_x25.c --- linux-azure-5.4.0/net/x25/af_x25.c +++ linux-azure-5.4.0/net/x25/af_x25.c @@ -546,7 +546,7 @@ if (protocol) goto out; - rc = -ENOBUFS; + rc = -ENOMEM; if ((sk = x25_alloc_socket(net, kern)) == NULL) goto out; @@ -1767,10 +1767,15 @@ write_lock_bh(&x25_list_lock); - sk_for_each(s, &x25_list) - if (x25_sk(s)->neighbour == nb) + sk_for_each(s, &x25_list) { + if (x25_sk(s)->neighbour == nb) { + write_unlock_bh(&x25_list_lock); + lock_sock(s); x25_disconnect(s, ENETUNREACH, 0, 0); - + release_sock(s); + write_lock_bh(&x25_list_lock); + } + } write_unlock_bh(&x25_list_lock); /* Remove any related forwards */ diff -u linux-azure-5.4.0/net/xfrm/xfrm_device.c linux-azure-5.4.0/net/xfrm/xfrm_device.c --- linux-azure-5.4.0/net/xfrm/xfrm_device.c +++ linux-azure-5.4.0/net/xfrm/xfrm_device.c @@ -206,6 +206,9 @@ if (x->encap || x->tfcpad) return -EINVAL; + if (xuo->flags & ~(XFRM_OFFLOAD_IPV6 | XFRM_OFFLOAD_INBOUND)) + return -EINVAL; + dev = dev_get_by_index(net, xuo->ifindex); if (!dev) { if (!(xuo->flags & XFRM_OFFLOAD_INBOUND)) { @@ -243,7 +246,8 @@ xso->dev = dev; xso->num_exthdrs = 1; - xso->flags = xuo->flags; + /* Don't forward bit that is not implemented */ + xso->flags = xuo->flags & ~XFRM_OFFLOAD_IPV6; err = dev->xfrmdev_ops->xdo_dev_state_add(x); if (err) { diff -u linux-azure-5.4.0/net/xfrm/xfrm_interface.c linux-azure-5.4.0/net/xfrm/xfrm_interface.c --- linux-azure-5.4.0/net/xfrm/xfrm_interface.c +++ linux-azure-5.4.0/net/xfrm/xfrm_interface.c @@ -300,7 +300,10 @@ if (mtu < IPV6_MIN_MTU) mtu = IPV6_MIN_MTU; - icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); + if (skb->len > 1280) + icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); + else + goto xmit; } else { if (!(ip_hdr(skb)->frag_off & htons(IP_DF))) goto xmit; @@ -659,11 +662,16 @@ struct netlink_ext_ack *extack) { struct net *net = dev_net(dev); - struct xfrm_if_parms p; + struct xfrm_if_parms p = {}; struct xfrm_if *xi; int err; xfrmi_netlink_parms(data, &p); + if (!p.if_id) { + NL_SET_ERR_MSG(extack, "if_id must be non zero"); + return -EINVAL; + } + xi = xfrmi_locate(net, &p); if (xi) return -EEXIST; @@ -688,9 +696,14 @@ { struct xfrm_if *xi = netdev_priv(dev); struct net *net = xi->net; - struct xfrm_if_parms p; + struct xfrm_if_parms p = {}; xfrmi_netlink_parms(data, &p); + if (!p.if_id) { + NL_SET_ERR_MSG(extack, "if_id must be non zero"); + return -EINVAL; + } + xi = xfrmi_locate(net, &p); if (!xi) { xi = netdev_priv(dev); diff -u linux-azure-5.4.0/net/xfrm/xfrm_policy.c linux-azure-5.4.0/net/xfrm/xfrm_policy.c --- linux-azure-5.4.0/net/xfrm/xfrm_policy.c +++ linux-azure-5.4.0/net/xfrm/xfrm_policy.c @@ -31,8 +31,10 @@ #include #include #include +#include #include #include +#include #if IS_ENABLED(CONFIG_IPV6_MIP6) #include #endif @@ -2677,8 +2679,10 @@ *num_xfrms = 0; return 0; } - if (IS_ERR(pols[0])) + if (IS_ERR(pols[0])) { + *num_pols = 0; return PTR_ERR(pols[0]); + } *num_xfrms = pols[0]->xfrm_nr; @@ -2693,6 +2697,7 @@ if (pols[1]) { if (IS_ERR(pols[1])) { xfrm_pols_put(pols, *num_pols); + *num_pols = 0; return PTR_ERR(pols[1]); } (*num_pols)++; @@ -3281,7 +3286,7 @@ fl4->flowi4_proto = iph->protocol; fl4->daddr = reverse ? iph->saddr : iph->daddr; fl4->saddr = reverse ? iph->daddr : iph->saddr; - fl4->flowi4_tos = iph->tos; + fl4->flowi4_tos = iph->tos & ~INET_ECN_MASK; if (!ip_is_fragment(iph)) { switch (iph->protocol) { @@ -3443,6 +3448,26 @@ } fl6->flowi6_proto = nexthdr; return; + case IPPROTO_GRE: + if (!onlyproto && + (nh + offset + 12 < skb->data || + pskb_may_pull(skb, nh + offset + 12 - skb->data))) { + struct gre_base_hdr *gre_hdr; + __be32 *gre_key; + + nh = skb_network_header(skb); + gre_hdr = (struct gre_base_hdr *)(nh + offset); + gre_key = (__be32 *)(gre_hdr + 1); + + if (gre_hdr->flags & GRE_KEY) { + if (gre_hdr->flags & GRE_CSUM) + gre_key++; + fl6->fl6_gre_key = *gre_key; + } + } + fl6->flowi6_proto = nexthdr; + return; + #if IS_ENABLED(CONFIG_IPV6_MIP6) case IPPROTO_MH: offset += ipv6_optlen(exthdr); @@ -3594,6 +3619,7 @@ if (pols[1]) { if (IS_ERR(pols[1])) { XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR); + xfrm_pol_put(pols[0]); return 0; } pols[1]->curlft.use_time = ktime_get_real_seconds(); @@ -4249,7 +4275,7 @@ } static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel, - u8 dir, u8 type, struct net *net) + u8 dir, u8 type, struct net *net, u32 if_id) { struct xfrm_policy *pol, *ret = NULL; struct hlist_head *chain; @@ -4258,7 +4284,8 @@ spin_lock_bh(&net->xfrm.xfrm_policy_lock); chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir); hlist_for_each_entry(pol, chain, bydst) { - if (xfrm_migrate_selector_match(sel, &pol->selector) && + if ((if_id == 0 || pol->if_id == if_id) && + xfrm_migrate_selector_match(sel, &pol->selector) && pol->type == type) { ret = pol; priority = ret->priority; @@ -4270,7 +4297,8 @@ if ((pol->priority >= priority) && ret) break; - if (xfrm_migrate_selector_match(sel, &pol->selector) && + if ((if_id == 0 || pol->if_id == if_id) && + xfrm_migrate_selector_match(sel, &pol->selector) && pol->type == type) { ret = pol; break; @@ -4386,7 +4414,7 @@ int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, struct xfrm_migrate *m, int num_migrate, struct xfrm_kmaddress *k, struct net *net, - struct xfrm_encap_tmpl *encap) + struct xfrm_encap_tmpl *encap, u32 if_id) { int i, err, nx_cur = 0, nx_new = 0; struct xfrm_policy *pol = NULL; @@ -4405,14 +4433,14 @@ } /* Stage 1 - find policy */ - if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) { + if ((pol = xfrm_migrate_policy_find(sel, dir, type, net, if_id)) == NULL) { err = -ENOENT; goto out; } /* Stage 2 - find and update state(s) */ for (i = 0, mp = m; i < num_migrate; i++, mp++) { - if ((x = xfrm_migrate_state_find(mp, net))) { + if ((x = xfrm_migrate_state_find(mp, net, if_id))) { x_cur[nx_cur] = x; nx_cur++; xc = xfrm_state_migrate(x, mp, encap); diff -u linux-azure-5.4.0/net/xfrm/xfrm_state.c linux-azure-5.4.0/net/xfrm/xfrm_state.c --- linux-azure-5.4.0/net/xfrm/xfrm_state.c +++ linux-azure-5.4.0/net/xfrm/xfrm_state.c @@ -1540,7 +1540,4 @@ memcpy(&x->props.smark, &orig->props.smark, sizeof(x->props.smark)); - if (xfrm_init_state(x) < 0) - goto error; - x->props.flags = orig->props.flags; x->props.extra_flags = orig->props.extra_flags; @@ -1563,7 +1560,8 @@ return NULL; } -struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net) +struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net, + u32 if_id) { unsigned int h; struct xfrm_state *x = NULL; @@ -1579,6 +1577,8 @@ continue; if (m->reqid && x->props.reqid != m->reqid) continue; + if (if_id != 0 && x->if_id != if_id) + continue; if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr, m->old_family) || !xfrm_addr_equal(&x->props.saddr, &m->old_saddr, @@ -1594,6 +1594,8 @@ if (x->props.mode != m->mode || x->id.proto != m->proto) continue; + if (if_id != 0 && x->if_id != if_id) + continue; if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr, m->old_family) || !xfrm_addr_equal(&x->props.saddr, &m->old_saddr, @@ -1620,6 +1622,11 @@ if (!xc) return NULL; + xc->props.family = m->new_family; + + if (xfrm_init_state(xc) < 0) + goto error; + memcpy(&xc->id.daddr, &m->new_daddr, sizeof(xc->id.daddr)); memcpy(&xc->props.saddr, &m->new_saddr, sizeof(xc->props.saddr)); @@ -2481,7 +2488,7 @@ int err; if (family == AF_INET && - xs_net(x)->ipv4.sysctl_ip_no_pmtu_disc) + READ_ONCE(xs_net(x)->ipv4.sysctl_ip_no_pmtu_disc)) x->props.flags |= XFRM_STATE_NOPMTUDISC; err = -EPROTONOSUPPORT; diff -u linux-azure-5.4.0/net/xfrm/xfrm_user.c linux-azure-5.4.0/net/xfrm/xfrm_user.c --- linux-azure-5.4.0/net/xfrm/xfrm_user.c +++ linux-azure-5.4.0/net/xfrm/xfrm_user.c @@ -580,6 +580,20 @@ copy_from_user_state(x, p); + if (attrs[XFRMA_ENCAP]) { + x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]), + sizeof(*x->encap), GFP_KERNEL); + if (x->encap == NULL) + goto error; + } + + if (attrs[XFRMA_COADDR]) { + x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]), + sizeof(*x->coaddr), GFP_KERNEL); + if (x->coaddr == NULL) + goto error; + } + if (attrs[XFRMA_SA_EXTRA_FLAGS]) x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]); @@ -600,23 +614,9 @@ attrs[XFRMA_ALG_COMP]))) goto error; - if (attrs[XFRMA_ENCAP]) { - x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]), - sizeof(*x->encap), GFP_KERNEL); - if (x->encap == NULL) - goto error; - } - if (attrs[XFRMA_TFCPAD]) x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]); - if (attrs[XFRMA_COADDR]) { - x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]), - sizeof(*x->coaddr), GFP_KERNEL); - if (x->coaddr == NULL) - goto error; - } - xfrm_mark_get(attrs, &x->mark); xfrm_smark_init(attrs, &x->props.smark); @@ -2374,6 +2374,7 @@ int n = 0; struct net *net = sock_net(skb->sk); struct xfrm_encap_tmpl *encap = NULL; + u32 if_id = 0; if (attrs[XFRMA_MIGRATE] == NULL) return -EINVAL; @@ -2398,7 +2399,10 @@ return 0; } - err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap); + if (attrs[XFRMA_IF_ID]) + if_id = nla_get_u32(attrs[XFRMA_IF_ID]); + + err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap, if_id); kfree(encap); @@ -2816,7 +2820,7 @@ if (x->props.extra_flags) l += nla_total_size(sizeof(x->props.extra_flags)); if (x->xso.dev) - l += nla_total_size(sizeof(x->xso)); + l += nla_total_size(sizeof(struct xfrm_user_offload)); if (x->props.smark.v | x->props.smark.m) { l += nla_total_size(sizeof(x->props.smark.v)); l += nla_total_size(sizeof(x->props.smark.m)); diff -u linux-azure-5.4.0/scripts/Kbuild.include linux-azure-5.4.0/scripts/Kbuild.include --- linux-azure-5.4.0/scripts/Kbuild.include +++ linux-azure-5.4.0/scripts/Kbuild.include @@ -182,8 +182,34 @@ echo-cmd = $(if $($(quiet)cmd_$(1)),\ echo ' $(call escsq,$($(quiet)cmd_$(1)))$(echo-why)';) +# sink stdout for 'make -s' + redirect := + quiet_redirect := +silent_redirect := exec >/dev/null; + +# Delete the target on interruption +# +# GNU Make automatically deletes the target if it has already been changed by +# the interrupted recipe. So, you can safely stop the build by Ctrl-C (Make +# will delete incomplete targets), and resume it later. +# +# However, this does not work when the stderr is piped to another program, like +# $ make >&2 | tee log +# Make dies with SIGPIPE before cleaning the targets. +# +# To address it, we clean the target in signal traps. +# +# Make deletes the target when it catches SIGHUP, SIGINT, SIGQUIT, SIGTERM. +# So, we cover them, and also SIGPIPE just in case. +# +# Of course, this is unneeded for phony targets. +delete-on-interrupt = \ + $(if $(filter-out $(PHONY), $@), \ + $(foreach sig, HUP INT QUIT TERM PIPE, \ + trap 'rm -f $@; trap - $(sig); kill -s $(sig) $$$$' $(sig);)) + # printing commands -cmd = @set -e; $(echo-cmd) $(cmd_$(1)) +cmd = @set -e; $(echo-cmd) $($(quiet)redirect) $(delete-on-interrupt) $(cmd_$(1)) ### # if_changed - execute command if any prerequisite is newer than diff -u linux-azure-5.4.0/scripts/Makefile linux-azure-5.4.0/scripts/Makefile --- linux-azure-5.4.0/scripts/Makefile +++ linux-azure-5.4.0/scripts/Makefile @@ -23,6 +23,7 @@ hostprogs-$(CONFIG_MODULE_SIG_FORMAT) += sign-file hostprogs-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += extract-cert hostprogs-$(CONFIG_SYSTEM_EXTRA_CERTIFICATE) += insert-sys-cert +hostprogs-$(CONFIG_SYSTEM_REVOCATION_LIST) += extract-cert HOSTCFLAGS_sortextable.o = -I$(srctree)/tools/include HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include diff -u linux-azure-5.4.0/scripts/Makefile.build linux-azure-5.4.0/scripts/Makefile.build --- linux-azure-5.4.0/scripts/Makefile.build +++ linux-azure-5.4.0/scripts/Makefile.build @@ -246,9 +246,9 @@ endif define rule_cc_o_c - $(call cmd,checksrc) $(call cmd_and_fixdep,cc_o_c) $(call cmd,gen_ksymdeps) + $(call cmd,checksrc) $(call cmd,checkdoc) $(call cmd,objtool) $(call cmd,modversions_c) @@ -265,10 +265,11 @@ endef # Built-in and composite module parts -$(obj)/%.o: $(src)/%.c $(recordmcount_source) $(objtool_dep) FORCE +.SECONDEXPANSION: +$(obj)/%.o: $(src)/%.c $(recordmcount_source) $$(objtool_dep) FORCE + $(call if_changed_rule,cc_o_c) $(call cmd,force_checksrc) $(call cmd,force_check_kmsg) - $(call if_changed_rule,cc_o_c) cmd_mod = { \ echo $(if $($*-objs)$($*-y)$($*-m), $(addprefix $(obj)/, $($*-objs) $($*-y) $($*-m)), $(@:.mod=.o)); \ @@ -349,7 +350,7 @@ fi endif -$(obj)/%.o: $(src)/%.S $(objtool_dep) FORCE +$(obj)/%.o: $(src)/%.S $$(objtool_dep) FORCE $(call if_changed_rule,as_o_S) targets += $(filter-out $(subdir-obj-y), $(real-obj-y)) $(real-obj-m) $(lib-y) diff -u linux-azure-5.4.0/scripts/Makefile.extrawarn linux-azure-5.4.0/scripts/Makefile.extrawarn --- linux-azure-5.4.0/scripts/Makefile.extrawarn +++ linux-azure-5.4.0/scripts/Makefile.extrawarn @@ -49,6 +49,8 @@ KBUILD_CFLAGS += -Wno-sign-compare KBUILD_CFLAGS += -Wno-format-zero-length KBUILD_CFLAGS += $(call cc-disable-warning, pointer-to-enum-cast) +KBUILD_CFLAGS += $(call cc-disable-warning, unaligned-access) +KBUILD_CFLAGS += $(call cc-disable-warning, cast-function-type-strict) endif endif diff -u linux-azure-5.4.0/scripts/kconfig/confdata.c linux-azure-5.4.0/scripts/kconfig/confdata.c --- linux-azure-5.4.0/scripts/kconfig/confdata.c +++ linux-azure-5.4.0/scripts/kconfig/confdata.c @@ -987,14 +987,19 @@ static int conf_touch_deps(void) { - const char *name; + const char *name, *tmp; struct symbol *sym; int res, i; - strcpy(depfile_path, "include/config/"); - depfile_prefix_len = strlen(depfile_path); - name = conf_get_autoconfig_name(); + tmp = strrchr(name, '/'); + depfile_prefix_len = tmp ? tmp - name + 1 : 0; + if (depfile_prefix_len + 1 > sizeof(depfile_path)) + return -1; + + strncpy(depfile_path, name, depfile_prefix_len); + depfile_path[depfile_prefix_len] = 0; + conf_read_simple(name, S_DEF_AUTO); sym_calc_value(modules_sym); diff -u linux-azure-5.4.0/scripts/kconfig/preprocess.c linux-azure-5.4.0/scripts/kconfig/preprocess.c --- linux-azure-5.4.0/scripts/kconfig/preprocess.c +++ linux-azure-5.4.0/scripts/kconfig/preprocess.c @@ -141,7 +141,7 @@ static char *do_shell(int argc, char *argv[]) { FILE *p; - char buf[256]; + char buf[4096]; char *cmd; size_t nread; int i; diff -u linux-azure-5.4.0/scripts/mksysmap linux-azure-5.4.0/scripts/mksysmap --- linux-azure-5.4.0/scripts/mksysmap +++ linux-azure-5.4.0/scripts/mksysmap @@ -44 +44 @@ -$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)\|\( \.L\)' > $2 +$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)\|\( \.L\)\|\( L0\)' > $2 diff -u linux-azure-5.4.0/scripts/mod/modpost.c linux-azure-5.4.0/scripts/mod/modpost.c --- linux-azure-5.4.0/scripts/mod/modpost.c +++ linux-azure-5.4.0/scripts/mod/modpost.c @@ -1131,7 +1131,7 @@ }, /* Do not export init/exit functions or data */ { - .fromsec = { "__ksymtab*", NULL }, + .fromsec = { "___ksymtab*", NULL }, .bad_tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL }, .mismatch = EXPORT_TO_INIT_EXIT, .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL }, @@ -1283,7 +1283,8 @@ static inline int is_arm_mapping_symbol(const char *str) { - return str[0] == '$' && strchr("axtd", str[1]) + return str[0] == '$' && + (str[1] == 'a' || str[1] == 'd' || str[1] == 't' || str[1] == 'x') && (str[2] == '\0' || str[2] == '.'); } @@ -1998,7 +1999,7 @@ if (n && s[n]) { size_t m = strspn(s + n + 1, "0123456789"); - if (m && (s[n + m] == '.' || s[n + m] == 0)) + if (m && (s[n + m + 1] == '.' || s[n + m + 1] == 0)) s[n] = 0; } return s; diff -u linux-azure-5.4.0/scripts/recordmcount.h linux-azure-5.4.0/scripts/recordmcount.h --- linux-azure-5.4.0/scripts/recordmcount.h +++ linux-azure-5.4.0/scripts/recordmcount.h @@ -192,15 +192,20 @@ Elf32_Word const *symtab_shndx) { unsigned long offset; + unsigned short shndx = w2(sym->st_shndx); int index; - if (sym->st_shndx != SHN_XINDEX) - return w2(sym->st_shndx); + if (shndx > SHN_UNDEF && shndx < SHN_LORESERVE) + return shndx; - offset = (unsigned long)sym - (unsigned long)symtab; - index = offset / sizeof(*sym); + if (shndx == SHN_XINDEX) { + offset = (unsigned long)sym - (unsigned long)symtab; + index = offset / sizeof(*sym); - return w(symtab_shndx[index]); + return w(symtab_shndx[index]); + } + + return 0; } static unsigned int get_shnum(Elf_Ehdr const *ehdr, Elf_Shdr const *shdr0) diff -u linux-azure-5.4.0/scripts/recordmcount.pl linux-azure-5.4.0/scripts/recordmcount.pl --- linux-azure-5.4.0/scripts/recordmcount.pl +++ linux-azure-5.4.0/scripts/recordmcount.pl @@ -222,7 +222,7 @@ $local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\S+)"; $weak_regex = "^[0-9a-fA-F]+\\s+([wW])\\s+(\\S+)"; $section_regex = "Disassembly of section\\s+(\\S+):"; -$function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:"; +$function_regex = "^([0-9a-fA-F]+)\\s+<([^^]*?)>:"; $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s(mcount|__fentry__)\$"; $section_type = '@progbits'; $mcount_adjust = 0; @@ -252,7 +252,7 @@ } elsif ($arch eq "s390" && $bits == 64) { if ($cc =~ /-DCC_USING_HOTPATCH/) { - $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*c0 04 00 00 00 00\\s*brcl\\s*0,[0-9a-f]+ <([^\+]*)>\$"; + $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*c0 04 00 00 00 00\\s*(brcl\\s*0,|jgnop\\s*)[0-9a-f]+ <([^\+]*)>\$"; $mcount_adjust = 0; } else { $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_390_(PC|PLT)32DBL\\s+_mcount\\+0x2\$"; diff -u linux-azure-5.4.0/scripts/tracing/draw_functrace.py linux-azure-5.4.0/scripts/tracing/draw_functrace.py --- linux-azure-5.4.0/scripts/tracing/draw_functrace.py +++ linux-azure-5.4.0/scripts/tracing/draw_functrace.py @@ -17,7 +17,7 @@ $ cat /sys/kernel/debug/tracing/trace_pipe > ~/raw_trace_func Wait some times but not too much, the script is a bit slow. Break the pipe (Ctrl + Z) - $ scripts/draw_functrace.py < raw_trace_func > draw_functrace + $ scripts/tracing/draw_functrace.py < ~/raw_trace_func > draw_functrace Then you have your drawn trace in draw_functrace """ @@ -103,10 +103,10 @@ line = line.strip() if line.startswith("#"): raise CommentLineException - m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line) + m = re.match("[^]]+?\\] +([a-z.]+) +([0-9.]+): (\\w+) <-(\\w+)", line) if m is None: raise BrokenLineException - return (m.group(1), m.group(2), m.group(3)) + return (m.group(2), m.group(3), m.group(4)) def main(): diff -u linux-azure-5.4.0/security/Kconfig linux-azure-5.4.0/security/Kconfig --- linux-azure-5.4.0/security/Kconfig +++ linux-azure-5.4.0/security/Kconfig @@ -200,6 +200,9 @@ config FORTIFY_SOURCE bool "Harden common str/mem functions against buffer overflows" depends on ARCH_HAS_FORTIFY_SOURCE + # https://bugs.llvm.org/show_bug.cgi?id=50322 + # https://bugs.llvm.org/show_bug.cgi?id=41459 + depends on !CC_IS_CLANG help Detect overflows of buffers in common string and memory functions where the compiler can determine and validate the buffer sizes. diff -u linux-azure-5.4.0/security/apparmor/apparmorfs.c linux-azure-5.4.0/security/apparmor/apparmorfs.c --- linux-azure-5.4.0/security/apparmor/apparmorfs.c +++ linux-azure-5.4.0/security/apparmor/apparmorfs.c @@ -371,7 +371,7 @@ data->size = copy_size; if (copy_from_user(data->data, userbuf, copy_size)) { - kvfree(data); + aa_put_loaddata(data); return ERR_PTR(-EFAULT); } @@ -1928,9 +1928,6 @@ return error; } - -#define list_entry_is_head(pos, head, member) (&pos->member == (head)) - /** * __next_ns - find the next namespace to list * @root: root namespace to stop search at (NOT NULL) diff -u linux-azure-5.4.0/security/apparmor/audit.c linux-azure-5.4.0/security/apparmor/audit.c --- linux-azure-5.4.0/security/apparmor/audit.c +++ linux-azure-5.4.0/security/apparmor/audit.c @@ -139,7 +139,7 @@ } if (AUDIT_MODE(profile) == AUDIT_QUIET || (type == AUDIT_APPARMOR_DENIED && - AUDIT_MODE(profile) == AUDIT_QUIET)) + AUDIT_MODE(profile) == AUDIT_QUIET_DENIED)) return aad(sa)->error; if (KILL_MODE(profile) && type == AUDIT_APPARMOR_DENIED) diff -u linux-azure-5.4.0/security/apparmor/domain.c linux-azure-5.4.0/security/apparmor/domain.c --- linux-azure-5.4.0/security/apparmor/domain.c +++ linux-azure-5.4.0/security/apparmor/domain.c @@ -460,7 +460,7 @@ * xattrs, or a longer match */ candidate = profile; - candidate_len = profile->xmatch_len; + candidate_len = max(count, profile->xmatch_len); candidate_xattrs = ret; conflict = false; } diff -u linux-azure-5.4.0/security/apparmor/include/label.h linux-azure-5.4.0/security/apparmor/include/label.h --- linux-azure-5.4.0/security/apparmor/include/label.h +++ linux-azure-5.4.0/security/apparmor/include/label.h @@ -275,6 +275,7 @@ void aa_labelset_init(struct aa_labelset *ls); void __aa_labelset_update_subtree(struct aa_ns *ns); +void aa_label_destroy(struct aa_label *label); void aa_label_free(struct aa_label *label); void aa_label_kref(struct kref *kref); bool aa_label_init(struct aa_label *label, int size); diff -u linux-azure-5.4.0/security/apparmor/include/policy.h linux-azure-5.4.0/security/apparmor/include/policy.h --- linux-azure-5.4.0/security/apparmor/include/policy.h +++ linux-azure-5.4.0/security/apparmor/include/policy.h @@ -136,7 +136,7 @@ const char *attach; struct aa_dfa *xmatch; - int xmatch_len; + unsigned int xmatch_len; enum audit_mode audit; long mode; u32 path_flags; diff -u linux-azure-5.4.0/security/apparmor/label.c linux-azure-5.4.0/security/apparmor/label.c --- linux-azure-5.4.0/security/apparmor/label.c +++ linux-azure-5.4.0/security/apparmor/label.c @@ -309,7 +309,7 @@ } -static void label_destroy(struct aa_label *label) +void aa_label_destroy(struct aa_label *label) { AA_BUG(!label); @@ -326,12 +326,13 @@ } } - if (rcu_dereference_protected(label->proxy->label, true) == label) - rcu_assign_pointer(label->proxy->label, NULL); - + if (label->proxy) { + if (rcu_dereference_protected(label->proxy->label, true) == label) + rcu_assign_pointer(label->proxy->label, NULL); + aa_put_proxy(label->proxy); + } aa_free_secid(label->secid); - aa_put_proxy(label->proxy); label->proxy = (struct aa_proxy *) PROXY_POISON + 1; } @@ -340,7 +341,7 @@ if (!label) return; - label_destroy(label); + aa_label_destroy(label); kfree(label); } @@ -1454,7 +1455,7 @@ if (label->hname || labels_ns(label) != ns) return res; - if (aa_label_acntsxprint(&name, ns, label, FLAGS_NONE, gfp) == -1) + if (aa_label_acntsxprint(&name, ns, label, FLAGS_NONE, gfp) < 0) return res; ls = labels_set(label); @@ -1632,9 +1633,9 @@ AA_BUG(!str && size != 0); AA_BUG(!label); - if (flags & FLAG_ABS_ROOT) { + if (AA_DEBUG_LABEL && (flags & FLAG_ABS_ROOT)) { ns = root_ns; - len = snprintf(str, size, "="); + len = snprintf(str, size, "_"); update_for_len(total, len, size, str); } else if (!ns) { ns = labels_ns(label); @@ -1704,7 +1705,7 @@ /** * aa_label_acntsxprint - allocate a __counted string buffer and print label - * @strp: buffer to write to. (MAY BE NULL if @size == 0) + * @strp: buffer to write to. * @ns: namespace profile is being viewed from * @label: label to view (NOT NULL) * @flags: flags controlling what label info is printed @@ -1745,7 +1746,7 @@ if (!use_label_hname(ns, label, flags) || display_mode(ns, label, flags)) { len = aa_label_asxprint(&name, ns, label, flags, gfp); - if (len == -1) { + if (len < 0) { AA_DEBUG("label print error"); return; } @@ -1773,7 +1774,7 @@ int len; len = aa_label_asxprint(&str, ns, label, flags, gfp); - if (len == -1) { + if (len < 0) { AA_DEBUG("label print error"); return; } @@ -1796,7 +1797,7 @@ int len; len = aa_label_asxprint(&str, ns, label, flags, gfp); - if (len == -1) { + if (len < 0) { AA_DEBUG("label print error"); return; } @@ -1896,7 +1897,8 @@ AA_BUG(!str); str = skipn_spaces(str, n); - if (str == NULL || (*str == '=' && base != &root_ns->unconfined->label)) + if (str == NULL || (AA_DEBUG_LABEL && *str == '_' && + base != &root_ns->unconfined->label)) return ERR_PTR(-EINVAL); len = label_count_strn_entries(str, end - str); diff -u linux-azure-5.4.0/security/apparmor/policy.c linux-azure-5.4.0/security/apparmor/policy.c --- linux-azure-5.4.0/security/apparmor/policy.c +++ linux-azure-5.4.0/security/apparmor/policy.c @@ -240,6 +240,7 @@ kzfree(profile->hash); aa_put_loaddata(profile->rawdata); + aa_label_destroy(&profile->label); kzfree(profile); } diff -u linux-azure-5.4.0/security/commoncap.c linux-azure-5.4.0/security/commoncap.c --- linux-azure-5.4.0/security/commoncap.c +++ linux-azure-5.4.0/security/commoncap.c @@ -391,8 +391,10 @@ &tmpbuf, size, GFP_NOFS); dput(dentry); - if (ret < 0 || !tmpbuf) - return ret; + if (ret < 0 || !tmpbuf) { + size = ret; + goto out_free; + } fs_ns = inode->i_sb->s_user_ns; cap = (struct vfs_cap_data *) tmpbuf; diff -u linux-azure-5.4.0/security/integrity/evm/evm_crypto.c linux-azure-5.4.0/security/integrity/evm/evm_crypto.c --- linux-azure-5.4.0/security/integrity/evm/evm_crypto.c +++ linux-azure-5.4.0/security/integrity/evm/evm_crypto.c @@ -75,7 +75,7 @@ { long rc; const char *algo; - struct crypto_shash **tfm, *tmp_tfm = NULL; + struct crypto_shash **tfm, *tmp_tfm; struct shash_desc *desc; if (type == EVM_XATTR_HMAC) { @@ -120,16 +120,13 @@ alloc: desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(*tfm), GFP_KERNEL); - if (!desc) { - crypto_free_shash(tmp_tfm); + if (!desc) return ERR_PTR(-ENOMEM); - } desc->tfm = *tfm; rc = crypto_shash_init(desc); if (rc) { - crypto_free_shash(tmp_tfm); kfree(desc); return ERR_PTR(rc); } diff -u linux-azure-5.4.0/security/integrity/evm/evm_main.c linux-azure-5.4.0/security/integrity/evm/evm_main.c --- linux-azure-5.4.0/security/integrity/evm/evm_main.c +++ linux-azure-5.4.0/security/integrity/evm/evm_main.c @@ -56,7 +56,7 @@ LIST_HEAD(evm_config_xattrnames); -static int evm_fixmode; +static int evm_fixmode __ro_after_init; static int __init evm_set_fixmode(char *str) { if (strncmp(str, "fix", 3) == 0) @@ -520,7 +520,7 @@ } /* - * evm_inode_init_security - initializes security.evm + * evm_inode_init_security - initializes security.evm HMAC value */ int evm_inode_init_security(struct inode *inode, const struct xattr *lsm_xattr, @@ -529,7 +529,8 @@ struct evm_xattr *xattr_data; int rc; - if (!evm_key_loaded() || !evm_protected_xattr(lsm_xattr->name)) + if (!(evm_initialized & EVM_INIT_HMAC) || + !evm_protected_xattr(lsm_xattr->name)) return 0; xattr_data = kzalloc(sizeof(*xattr_data), GFP_NOFS); diff -u linux-azure-5.4.0/security/integrity/evm/evm_secfs.c linux-azure-5.4.0/security/integrity/evm/evm_secfs.c --- linux-azure-5.4.0/security/integrity/evm/evm_secfs.c +++ linux-azure-5.4.0/security/integrity/evm/evm_secfs.c @@ -68,12 +68,13 @@ static ssize_t evm_write_key(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { - int i, ret; + unsigned int i; + int ret; if (!capable(CAP_SYS_ADMIN) || (evm_initialized & EVM_SETUP_COMPLETE)) return -EPERM; - ret = kstrtoint_from_user(buf, count, 0, &i); + ret = kstrtouint_from_user(buf, count, 0, &i); if (ret) return ret; @@ -82,12 +83,12 @@ if (!i || (i & ~EVM_INIT_MASK) != 0) return -EINVAL; - /* Don't allow a request to freshly enable metadata writes if - * keys are loaded. + /* + * Don't allow a request to enable metadata writes if + * an HMAC key is loaded. */ if ((i & EVM_ALLOW_METADATA_WRITES) && - ((evm_initialized & EVM_KEY_MASK) != 0) && - !(evm_initialized & EVM_ALLOW_METADATA_WRITES)) + (evm_initialized & EVM_INIT_HMAC) != 0) return -EPERM; if (i & EVM_INIT_HMAC) { diff -u linux-azure-5.4.0/security/integrity/ima/Kconfig linux-azure-5.4.0/security/integrity/ima/Kconfig --- linux-azure-5.4.0/security/integrity/ima/Kconfig +++ linux-azure-5.4.0/security/integrity/ima/Kconfig @@ -6,7 +6,6 @@ select SECURITYFS select CRYPTO select CRYPTO_HMAC - select CRYPTO_MD5 select CRYPTO_SHA1 select CRYPTO_HASH_INFO select TCG_TPM if HAS_IOMEM && !UML @@ -70,10 +69,9 @@ hash, defined as 20 bytes, and a null terminated pathname, limited to 255 characters. The 'ima-ng' measurement list template permits both larger hash digests and longer - pathnames. + pathnames. The configured default template can be replaced + by specifying "ima_template=" on the boot command line. - config IMA_TEMPLATE - bool "ima" config IMA_NG_TEMPLATE bool "ima-ng (default)" config IMA_SIG_TEMPLATE @@ -83,7 +81,6 @@ config IMA_DEFAULT_TEMPLATE string depends on IMA - default "ima" if IMA_TEMPLATE default "ima-ng" if IMA_NG_TEMPLATE default "ima-sig" if IMA_SIG_TEMPLATE @@ -103,15 +100,15 @@ config IMA_DEFAULT_HASH_SHA256 bool "SHA256" - depends on CRYPTO_SHA256=y && !IMA_TEMPLATE + depends on CRYPTO_SHA256=y config IMA_DEFAULT_HASH_SHA512 bool "SHA512" - depends on CRYPTO_SHA512=y && !IMA_TEMPLATE + depends on CRYPTO_SHA512=y config IMA_DEFAULT_HASH_WP512 bool "WP512" - depends on CRYPTO_WP512=y && !IMA_TEMPLATE + depends on CRYPTO_WP512=y endchoice config IMA_DEFAULT_HASH diff -u linux-azure-5.4.0/security/integrity/ima/ima_appraise.c linux-azure-5.4.0/security/integrity/ima/ima_appraise.c --- linux-azure-5.4.0/security/integrity/ima/ima_appraise.c +++ linux-azure-5.4.0/security/integrity/ima/ima_appraise.c @@ -385,7 +385,8 @@ goto out; } - status = evm_verifyxattr(dentry, XATTR_NAME_IMA, xattr_value, rc, iint); + status = evm_verifyxattr(dentry, XATTR_NAME_IMA, xattr_value, + rc < 0 ? 0 : rc, iint); switch (status) { case INTEGRITY_PASS: case INTEGRITY_PASS_IMMUTABLE: diff -u linux-azure-5.4.0/security/integrity/ima/ima_fs.c linux-azure-5.4.0/security/integrity/ima/ima_fs.c --- linux-azure-5.4.0/security/integrity/ima/ima_fs.c +++ linux-azure-5.4.0/security/integrity/ima/ima_fs.c @@ -495,11 +495,11 @@ return 0; out: + securityfs_remove(ima_policy); securityfs_remove(violations); securityfs_remove(runtime_measurements_count); securityfs_remove(ascii_runtime_measurements); securityfs_remove(binary_runtime_measurements); securityfs_remove(ima_symlink); securityfs_remove(ima_dir); - securityfs_remove(ima_policy); return -1; } diff -u linux-azure-5.4.0/security/integrity/ima/ima_mok.c linux-azure-5.4.0/security/integrity/ima/ima_mok.c --- linux-azure-5.4.0/security/integrity/ima/ima_mok.c +++ linux-azure-5.4.0/security/integrity/ima/ima_mok.c @@ -21,7 +21,7 @@ /* * Allocate the IMA blacklist keyring */ -__init int ima_mok_init(void) +static __init int ima_mok_init(void) { struct key_restriction *restriction; diff -u linux-azure-5.4.0/security/integrity/ima/ima_policy.c linux-azure-5.4.0/security/integrity/ima/ima_policy.c --- linux-azure-5.4.0/security/integrity/ima/ima_policy.c +++ linux-azure-5.4.0/security/integrity/ima/ima_policy.c @@ -1388,6 +1388,14 @@ rcu_read_lock(); + /* Do not print rules with inactive LSM labels */ + for (i = 0; i < MAX_LSM_RULES; i++) { + if (entry->lsm[i].args_p && !entry->lsm[i].rule) { + rcu_read_unlock(); + return 0; + } + } + if (entry->action & MEASURE) seq_puts(m, pt(Opt_measure)); if (entry->action & DONT_MEASURE) @@ -1542,6 +1550,10 @@ if (id >= READING_MAX_ID) return false; + if (id == READING_KEXEC_IMAGE && !(ima_appraise & IMA_APPRAISE_ENFORCE) + && security_locked_down(LOCKDOWN_KEXEC)) + return false; + func = read_idmap[id] ?: FILE_CHECK; rcu_read_lock(); diff -u linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.c linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.c --- linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.c +++ linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.c @@ -56,6 +56,16 @@ } /* + * Add an X509 cert to the revocation list. + */ +static __init void uefi_revocation_list_x509(const char *source, + const void *data, size_t len) +{ + pr_info("Revoking X.509 certificate: %s\n", source); + add_key_to_revocation_list(data, len); +} + +/* * Return the appropriate handler for particular signature list types found in * the UEFI db and MokListRT tables. */ @@ -77,4 +87,6 @@ if (efi_guidcmp(*sig_type, efi_cert_sha256_guid) == 0) return uefi_blacklist_binary; + if (efi_guidcmp(*sig_type, efi_cert_x509_guid) == 0) + return uefi_revocation_list_x509; return 0; } diff -u linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.h linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.h --- linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.h +++ linux-azure-5.4.0/security/integrity/platform_certs/keyring_handler.h @@ -32,0 +33,8 @@ + +#ifndef UEFI_QUIRK_SKIP_CERT +#define UEFI_QUIRK_SKIP_CERT(vendor, product) \ + .matches = { \ + DMI_MATCH(DMI_BOARD_VENDOR, vendor), \ + DMI_MATCH(DMI_PRODUCT_NAME, product), \ + }, +#endif diff -u linux-azure-5.4.0/security/integrity/platform_certs/load_uefi.c linux-azure-5.4.0/security/integrity/platform_certs/load_uefi.c --- linux-azure-5.4.0/security/integrity/platform_certs/load_uefi.c +++ linux-azure-5.4.0/security/integrity/platform_certs/load_uefi.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -14,2 +15,27 @@ /* + * On T2 Macs reading the db and dbx efi variables to load UEFI Secure Boot + * certificates causes occurrence of a page fault in Apple's firmware and + * a crash disabling EFI runtime services. The following quirk skips reading + * these variables. + */ +static const struct dmi_system_id uefi_skip_cert[] = { + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,3") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro15,4") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,3") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookPro16,4") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir8,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir8,2") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacBookAir9,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "Macmini8,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "MacPro7,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,1") }, + { UEFI_QUIRK_SKIP_CERT("Apple Inc.", "iMac20,2") }, + { } +}; + +/* * Look to see if a UEFI variable called MokIgnoreDB exists and return true if @@ -34,45 +60,114 @@ /* * Get a certificate list blob from the named EFI variable. */ -static __init int get_cert_list(efi_char16_t *name, efi_guid_t *guid, - unsigned long *size , void **cert_list, - efi_status_t *status) +static __init void *get_cert_list(efi_char16_t *name, efi_guid_t *guid, + unsigned long *size, efi_status_t *status) { unsigned long lsize = 4; unsigned long tmpdb[4]; void *db; *status = efi.get_variable(name, guid, NULL, &lsize, &tmpdb); - if (*status == EFI_NOT_FOUND) { - *size = 0; - *cert_list = NULL; - return 0; - } + if (*status == EFI_NOT_FOUND) + return NULL; if (*status != EFI_BUFFER_TOO_SMALL) { pr_err("Couldn't get size: %s (0x%lx)\n", efi_status_to_str(*status), *status); - return efi_status_to_err(*status); + return NULL; } db = kmalloc(lsize, GFP_KERNEL); if (!db) - return -ENOMEM; + return NULL; *status = efi.get_variable(name, guid, NULL, &lsize, db); if (*status != EFI_SUCCESS) { kfree(db); pr_err("Error reading db var: %s (0x%lx)\n", efi_status_to_str(*status), *status); - return efi_status_to_err(*status); + return NULL; } *size = lsize; - *cert_list = db; + return db; +} + +/* + * load_moklist_certs() - Load Mok(X)List certs + * @load_db: Load MokListRT into db when true; MokListXRT into dbx when false + * + * Load the certs contained in the UEFI MokList(X)RT database into the + * platform trusted/denied keyring. + * + * This routine checks the EFI MOK config table first. If and only if + * that fails, this routine uses the MokList(X)RT ordinary UEFI variable. + * + * Return: Status + */ +static int __init load_moklist_certs(const bool load_db) +{ + struct efi_mokvar_table_entry *mokvar_entry; + efi_guid_t mok_var = EFI_SHIM_LOCK_GUID; + void *mok; + unsigned long moksize; + efi_status_t status; + int rc; + const char *mokvar_name = "MokListRT"; + /* Should be const, but get_cert_list() doesn't have it as const yet */ + efi_char16_t *efivar_name = L"MokListRT"; + const char *parse_mokvar_name = "UEFI:MokListRT (MOKvar table)"; + const char *parse_efivar_name = "UEFI:MokListRT"; + efi_element_handler_t (*get_handler_for_guid)(const efi_guid_t *) = get_handler_for_db; + + if (!load_db) { + mokvar_name = "MokListXRT"; + efivar_name = L"MokListXRT"; + parse_mokvar_name = "UEFI:MokListXRT (MOKvar table)"; + parse_efivar_name = "UEFI:MokListXRT"; + get_handler_for_guid = get_handler_for_dbx; + } + + /* First try to load certs from the EFI MOKvar config table. + * It's not an error if the MOKvar config table doesn't exist + * or the MokListRT entry is not found in it. + */ + mokvar_entry = efi_mokvar_entry_find(mokvar_name); + if (mokvar_entry) { + rc = parse_efi_signature_list(parse_mokvar_name, + mokvar_entry->data, + mokvar_entry->data_size, + get_handler_for_guid); + /* All done if that worked. */ + if (!rc) + return rc; + + pr_err("Couldn't parse %s signatures from EFI MOKvar config table: %d\n", + mokvar_name, rc); + } + + /* Get MokListRT. It might not exist, so it isn't an error + * if we can't get it. + */ + mok = get_cert_list(efivar_name, &mok_var, &moksize, &status); + if (mok) { + rc = parse_efi_signature_list(parse_efivar_name, + mok, moksize, get_handler_for_guid); + kfree(mok); + if (rc) + pr_err("Couldn't parse %s signatures: %d\n", mokvar_name, rc); + return rc; + } + if (status == EFI_NOT_FOUND) + pr_debug("%s variable wasn't found\n", mokvar_name); + else + pr_info("Couldn't get UEFI %s\n", mokvar_name); return 0; } /* + * load_uefi_certs() - Load certs from UEFI sources + * * Load the certs contained in the UEFI databases into the platform trusted * keyring and the UEFI blacklisted X.509 cert SHA256 hashes into the blacklist * keyring. @@ -80,26 +175,32 @@ static int __init load_uefi_certs(void) { efi_guid_t secure_var = EFI_IMAGE_SECURITY_DATABASE_GUID; - efi_guid_t mok_var = EFI_SHIM_LOCK_GUID; - void *db = NULL, *dbx = NULL, *mok = NULL; - unsigned long dbsize = 0, dbxsize = 0, moksize = 0; + void *db = NULL, *dbx = NULL; + unsigned long dbsize = 0, dbxsize = 0; efi_status_t status; int rc = 0; + const struct dmi_system_id *dmi_id; + + dmi_id = dmi_first_match(uefi_skip_cert); + if (dmi_id) { + pr_err("Reading UEFI Secure Boot Certs is not supported on T2 Macs.\n"); + return false; + } if (!efi.get_variable) return false; - /* Get db, MokListRT, and dbx. They might not exist, so it isn't - * an error if we can't get them. + /* Get db and dbx. They might not exist, so it isn't an error + * if we can't get them. */ if (!uefi_check_ignore_db()) { - rc = get_cert_list(L"db", &secure_var, &dbsize, &db, &status); - if (rc < 0) { + db = get_cert_list(L"db", &secure_var, &dbsize, &status); + if (!db) { if (status == EFI_NOT_FOUND) pr_debug("MODSIGN: db variable wasn't found\n"); else pr_err("MODSIGN: Couldn't get UEFI db list\n"); - } else if (dbsize != 0) { + } else { rc = parse_efi_signature_list("UEFI:db", db, dbsize, get_handler_for_db); if (rc) @@ -109,27 +210,13 @@ } } - rc = get_cert_list(L"MokListRT", &mok_var, &moksize, &mok, &status); - if (rc < 0) { - if (status == EFI_NOT_FOUND) - pr_debug("MokListRT variable wasn't found\n"); - else - pr_info("Couldn't get UEFI MokListRT\n"); - } else if (moksize != 0) { - rc = parse_efi_signature_list("UEFI:MokListRT", - mok, moksize, get_handler_for_db); - if (rc) - pr_err("Couldn't parse MokListRT signatures: %d\n", rc); - kfree(mok); - } - - rc = get_cert_list(L"dbx", &secure_var, &dbxsize, &dbx, &status); - if (rc < 0) { + dbx = get_cert_list(L"dbx", &secure_var, &dbxsize, &status); + if (!dbx) { if (status == EFI_NOT_FOUND) pr_debug("dbx variable wasn't found\n"); else pr_info("Couldn't get UEFI dbx list\n"); - } else if (dbxsize != 0) { + } else { rc = parse_efi_signature_list("UEFI:dbx", dbx, dbxsize, get_handler_for_dbx); @@ -138,6 +225,16 @@ kfree(dbx); } + /* Load the MokListXRT certs */ + rc = load_moklist_certs(false); + if (rc) + pr_err("Couldn't parse mokx signatures: %d\n", rc); + + /* Load the MokListRT certs */ + rc = load_moklist_certs(true); + if (rc) + pr_err("Couldn't parse mok signatures: %d\n", rc); + return rc; } late_initcall(load_uefi_certs); diff -u linux-azure-5.4.0/security/lockdown/lockdown.c linux-azure-5.4.0/security/lockdown/lockdown.c --- linux-azure-5.4.0/security/lockdown/lockdown.c +++ linux-azure-5.4.0/security/lockdown/lockdown.c @@ -33,6 +33,7 @@ [LOCKDOWN_MMIOTRACE] = "unsafe mmio", [LOCKDOWN_DEBUGFS] = "debugfs access", [LOCKDOWN_XMON_WR] = "xmon write access", + [LOCKDOWN_KGDB] = "KDB or KGDB access", [LOCKDOWN_INTEGRITY_MAX] = "integrity", [LOCKDOWN_KCORE] = "/proc/kcore access", [LOCKDOWN_KPROBES] = "use of kprobes", diff -u linux-azure-5.4.0/security/security.c linux-azure-5.4.0/security/security.c --- linux-azure-5.4.0/security/security.c +++ linux-azure-5.4.0/security/security.c @@ -744,28 +744,28 @@ /* Security operations */ -int security_binder_set_context_mgr(struct task_struct *mgr) +int security_binder_set_context_mgr(const struct cred *mgr) { return call_int_hook(binder_set_context_mgr, 0, mgr); } EXPORT_SYMBOL(security_binder_set_context_mgr); -int security_binder_transaction(struct task_struct *from, - struct task_struct *to) +int security_binder_transaction(const struct cred *from, + const struct cred *to) { return call_int_hook(binder_transaction, 0, from, to); } EXPORT_SYMBOL(security_binder_transaction); -int security_binder_transfer_binder(struct task_struct *from, - struct task_struct *to) +int security_binder_transfer_binder(const struct cred *from, + const struct cred *to) { return call_int_hook(binder_transfer_binder, 0, from, to); } EXPORT_SYMBOL(security_binder_transfer_binder); -int security_binder_transfer_file(struct task_struct *from, - struct task_struct *to, struct file *file) +int security_binder_transfer_file(const struct cred *from, + const struct cred *to, struct file *file) { return call_int_hook(binder_transfer_file, 0, from, to, file); } @@ -880,9 +880,22 @@ return call_int_hook(fs_context_dup, 0, fc, src_fc); } -int security_fs_context_parse_param(struct fs_context *fc, struct fs_parameter *param) +int security_fs_context_parse_param(struct fs_context *fc, + struct fs_parameter *param) { - return call_int_hook(fs_context_parse_param, -ENOPARAM, fc, param); + struct security_hook_list *hp; + int trc; + int rc = -ENOPARAM; + + hlist_for_each_entry(hp, &security_hook_heads.fs_context_parse_param, + list) { + trc = hp->hook.fs_context_parse_param(fc, param); + if (trc == 0) + rc = 0; + else if (trc != -ENOPARAM) + return trc; + } + return rc; } int security_sb_alloc(struct super_block *sb) diff -u linux-azure-5.4.0/security/selinux/avc.c linux-azure-5.4.0/security/selinux/avc.c --- linux-azure-5.4.0/security/selinux/avc.c +++ linux-azure-5.4.0/security/selinux/avc.c @@ -294,26 +294,27 @@ struct avc_xperms_decision_node *xpd_node; struct extended_perms_decision *xpd; - xpd_node = kmem_cache_zalloc(avc_xperms_decision_cachep, GFP_NOWAIT); + xpd_node = kmem_cache_zalloc(avc_xperms_decision_cachep, + GFP_NOWAIT | __GFP_NOWARN); if (!xpd_node) return NULL; xpd = &xpd_node->xpd; if (which & XPERMS_ALLOWED) { xpd->allowed = kmem_cache_zalloc(avc_xperms_data_cachep, - GFP_NOWAIT); + GFP_NOWAIT | __GFP_NOWARN); if (!xpd->allowed) goto error; } if (which & XPERMS_AUDITALLOW) { xpd->auditallow = kmem_cache_zalloc(avc_xperms_data_cachep, - GFP_NOWAIT); + GFP_NOWAIT | __GFP_NOWARN); if (!xpd->auditallow) goto error; } if (which & XPERMS_DONTAUDIT) { xpd->dontaudit = kmem_cache_zalloc(avc_xperms_data_cachep, - GFP_NOWAIT); + GFP_NOWAIT | __GFP_NOWARN); if (!xpd->dontaudit) goto error; } @@ -341,7 +342,7 @@ { struct avc_xperms_node *xp_node; - xp_node = kmem_cache_zalloc(avc_xperms_cachep, GFP_NOWAIT); + xp_node = kmem_cache_zalloc(avc_xperms_cachep, GFP_NOWAIT | __GFP_NOWARN); if (!xp_node) return xp_node; INIT_LIST_HEAD(&xp_node->xpd_head); @@ -497,7 +498,7 @@ { struct avc_node *node; - node = kmem_cache_zalloc(avc_node_cachep, GFP_NOWAIT); + node = kmem_cache_zalloc(avc_node_cachep, GFP_NOWAIT | __GFP_NOWARN); if (!node) goto out; diff -u linux-azure-5.4.0/security/selinux/hooks.c linux-azure-5.4.0/security/selinux/hooks.c --- linux-azure-5.4.0/security/selinux/hooks.c +++ linux-azure-5.4.0/security/selinux/hooks.c @@ -995,18 +995,22 @@ static int selinux_add_opt(int token, const char *s, void **mnt_opts) { struct selinux_mnt_opts *opts = *mnt_opts; + bool is_alloc_opts = false; if (token == Opt_seclabel) /* eaten and completely ignored */ return 0; + if (!s) + return -ENOMEM; + if (!opts) { opts = kzalloc(sizeof(struct selinux_mnt_opts), GFP_KERNEL); if (!opts) return -ENOMEM; *mnt_opts = opts; + is_alloc_opts = true; } - if (!s) - return -ENOMEM; + switch (token) { case Opt_context: if (opts->context || opts->defcontext) @@ -1031,6 +1035,10 @@ } return 0; Einval: + if (is_alloc_opts) { + kfree(opts); + *mnt_opts = NULL; + } pr_warn(SEL_MOUNT_FAIL_MSG); return -EINVAL; } @@ -2050,22 +2058,19 @@ /* Hook functions begin here. */ -static int selinux_binder_set_context_mgr(struct task_struct *mgr) +static int selinux_binder_set_context_mgr(const struct cred *mgr) { - u32 mysid = current_sid(); - u32 mgrsid = task_sid(mgr); - return avc_has_perm(&selinux_state, - mysid, mgrsid, SECCLASS_BINDER, + current_sid(), cred_sid(mgr), SECCLASS_BINDER, BINDER__SET_CONTEXT_MGR, NULL); } -static int selinux_binder_transaction(struct task_struct *from, - struct task_struct *to) +static int selinux_binder_transaction(const struct cred *from, + const struct cred *to) { u32 mysid = current_sid(); - u32 fromsid = task_sid(from); - u32 tosid = task_sid(to); + u32 fromsid = cred_sid(from); + u32 tosid = cred_sid(to); int rc; if (mysid != fromsid) { @@ -2076,27 +2081,24 @@ return rc; } - return avc_has_perm(&selinux_state, - fromsid, tosid, SECCLASS_BINDER, BINDER__CALL, - NULL); + return avc_has_perm(&selinux_state, fromsid, tosid, + SECCLASS_BINDER, BINDER__CALL, NULL); } -static int selinux_binder_transfer_binder(struct task_struct *from, - struct task_struct *to) +static int selinux_binder_transfer_binder(const struct cred *from, + const struct cred *to) { - u32 fromsid = task_sid(from); - u32 tosid = task_sid(to); - return avc_has_perm(&selinux_state, - fromsid, tosid, SECCLASS_BINDER, BINDER__TRANSFER, + cred_sid(from), cred_sid(to), + SECCLASS_BINDER, BINDER__TRANSFER, NULL); } -static int selinux_binder_transfer_file(struct task_struct *from, - struct task_struct *to, +static int selinux_binder_transfer_file(const struct cred *from, + const struct cred *to, struct file *file) { - u32 sid = task_sid(to); + u32 sid = cred_sid(to); struct file_security_struct *fsec = selinux_file(file); struct dentry *dentry = file->f_path.dentry; struct inode_security_struct *isec; @@ -2853,10 +2855,9 @@ return opt; rc = selinux_add_opt(opt, param->string, &fc->security); - if (!rc) { + if (!rc) param->string = NULL; - rc = 1; - } + return rc; } @@ -5735,7 +5736,7 @@ struct common_audit_data ad; struct lsm_network_audit net = {0,}; char *addrp; - u8 proto; + u8 proto = 0; if (sk == NULL) return NF_ACCEPT; diff -u linux-azure-5.4.0/security/selinux/ss/services.c linux-azure-5.4.0/security/selinux/ss/services.c --- linux-azure-5.4.0/security/selinux/ss/services.c +++ linux-azure-5.4.0/security/selinux/ss/services.c @@ -2251,6 +2251,43 @@ } /** + * ocontext_to_sid - Helper to safely get sid for an ocontext + * @sidtab: SID table + * @c: ocontext structure + * @index: index of the context entry (0 or 1) + * @out_sid: pointer to the resulting SID value + * + * For all ocontexts except OCON_ISID the SID fields are populated + * on-demand when needed. Since updating the SID value is an SMP-sensitive + * operation, this helper must be used to do that safely. + * + * WARNING: This function may return -ESTALE, indicating that the caller + * must retry the operation after re-acquiring the policy pointer! + */ +static int ocontext_to_sid(struct sidtab *sidtab, struct ocontext *c, + size_t index, u32 *out_sid) +{ + int rc; + u32 sid; + + /* Ensure the associated sidtab entry is visible to this thread. */ + sid = smp_load_acquire(&c->sid[index]); + if (!sid) { + rc = sidtab_context_to_sid(sidtab, &c->context[index], &sid); + if (rc) + return rc; + + /* + * Ensure the new sidtab entry is visible to other threads + * when they see the SID. + */ + smp_store_release(&c->sid[index], sid); + } + *out_sid = sid; + return 0; +} + +/** * security_port_sid - Obtain the SID for a port. * @protocol: protocol number * @port: port number @@ -2262,10 +2299,12 @@ struct policydb *policydb; struct sidtab *sidtab; struct ocontext *c; - int rc = 0; + int rc; read_lock(&state->ss->policy_rwlock); +retry: + rc = 0; policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2279,14 +2318,11 @@ } if (c) { - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, - &c->context[0], - &c->sid[0]); - if (rc) - goto out; - } - *out_sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, out_sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else { *out_sid = SECINITSID_PORT; } @@ -2308,10 +2344,12 @@ struct policydb *policydb; struct sidtab *sidtab; struct ocontext *c; - int rc = 0; + int rc; read_lock(&state->ss->policy_rwlock); +retry: + rc = 0; policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2326,14 +2364,11 @@ } if (c) { - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, - &c->context[0], - &c->sid[0]); - if (rc) - goto out; - } - *out_sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, out_sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else *out_sid = SECINITSID_UNLABELED; @@ -2354,10 +2389,12 @@ struct policydb *policydb; struct sidtab *sidtab; struct ocontext *c; - int rc = 0; + int rc; read_lock(&state->ss->policy_rwlock); +retry: + rc = 0; policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2373,14 +2410,11 @@ } if (c) { - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, - &c->context[0], - &c->sid[0]); - if (rc) - goto out; - } - *out_sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, out_sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else *out_sid = SECINITSID_UNLABELED; @@ -2399,11 +2433,13 @@ { struct policydb *policydb; struct sidtab *sidtab; - int rc = 0; + int rc; struct ocontext *c; read_lock(&state->ss->policy_rwlock); +retry: + rc = 0; policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2415,19 +2451,11 @@ } if (c) { - if (!c->sid[0] || !c->sid[1]) { - rc = sidtab_context_to_sid(sidtab, - &c->context[0], - &c->sid[0]); - if (rc) - goto out; - rc = sidtab_context_to_sid(sidtab, - &c->context[1], - &c->sid[1]); - if (rc) - goto out; - } - *if_sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, if_sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else *if_sid = SECINITSID_NETIF; @@ -2469,6 +2497,7 @@ read_lock(&state->ss->policy_rwlock); +retry: policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2511,14 +2540,11 @@ } if (c) { - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, - &c->context[0], - &c->sid[0]); - if (rc) - goto out; - } - *out_sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, out_sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else { *out_sid = SECINITSID_NODE; } @@ -2677,7 +2703,7 @@ u16 sclass; struct genfs *genfs; struct ocontext *c; - int rc, cmp = 0; + int cmp = 0; while (path[0] == '/' && path[1] == '/') path++; @@ -2691,9 +2717,8 @@ break; } - rc = -ENOENT; if (!genfs || cmp) - goto out; + return -ENOENT; for (c = genfs->head; c; c = c->next) { len = strlen(c->u.name); @@ -2702,20 +2727,10 @@ break; } - rc = -ENOENT; if (!c) - goto out; + return -ENOENT; - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, &c->context[0], &c->sid[0]); - if (rc) - goto out; - } - - *sid = c->sid[0]; - rc = 0; -out: - return rc; + return ocontext_to_sid(sidtab, c, 0, sid); } /** @@ -2750,13 +2765,15 @@ { struct policydb *policydb; struct sidtab *sidtab; - int rc = 0; + int rc; struct ocontext *c; struct superblock_security_struct *sbsec = sb->s_security; const char *fstype = sb->s_type->name; read_lock(&state->ss->policy_rwlock); +retry: + rc = 0; policydb = &state->ss->policydb; sidtab = state->ss->sidtab; @@ -2769,13 +2786,11 @@ if (c) { sbsec->behavior = c->v.behavior; - if (!c->sid[0]) { - rc = sidtab_context_to_sid(sidtab, &c->context[0], - &c->sid[0]); - if (rc) - goto out; - } - sbsec->sid = c->sid[0]; + rc = ocontext_to_sid(sidtab, c, 0, &sbsec->sid); + if (rc == -ESTALE) + goto retry; + if (rc) + goto out; } else { rc = __security_genfs_sid(state, fstype, "/", SECCLASS_DIR, &sbsec->sid); diff -u linux-azure-5.4.0/security/smack/smack_lsm.c linux-azure-5.4.0/security/smack/smack_lsm.c --- linux-azure-5.4.0/security/smack/smack_lsm.c +++ linux-azure-5.4.0/security/smack/smack_lsm.c @@ -2494,7 +2494,7 @@ #ifdef CONFIG_AUDIT smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net); ad.a.u.net->family = PF_INET6; - ad.a.u.net->dport = ntohs(address->sin6_port); + ad.a.u.net->dport = address->sin6_port; if (act == SMK_RECEIVING) ad.a.u.net->v6info.saddr = address->sin6_addr; else diff -u linux-azure-5.4.0/security/smack/smackfs.c linux-azure-5.4.0/security/smack/smackfs.c --- linux-azure-5.4.0/security/smack/smackfs.c +++ linux-azure-5.4.0/security/smack/smackfs.c @@ -693,9 +693,7 @@ printk(KERN_WARNING "%s:%d remove rc = %d\n", __func__, __LINE__, rc); - doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL); - if (doip == NULL) - panic("smack: Failed to initialize cipso DOI.\n"); + doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL | __GFP_NOFAIL); doip->map.std = NULL; doip->doi = smk_cipso_doi_value; doip->type = CIPSO_V4_MAP_PASS; @@ -714,7 +712,7 @@ if (rc != 0) { printk(KERN_WARNING "%s:%d map add rc = %d\n", __func__, __LINE__, rc); - kfree(doip); + netlbl_cfg_cipsov4_del(doip->doi, &nai); return; } } @@ -831,6 +829,7 @@ static ssize_t smk_set_cipso(struct file *file, const char __user *buf, size_t count, loff_t *ppos, int format) { + struct netlbl_lsm_catmap *old_cat; struct smack_known *skp; struct netlbl_lsm_secattr ncats; char mapcatset[SMK_CIPSOLEN]; @@ -855,6 +854,8 @@ if (format == SMK_FIXED24_FMT && (count < SMK_CIPSOMIN || count > SMK_CIPSOMAX)) return -EINVAL; + if (count > PAGE_SIZE) + return -EINVAL; data = memdup_user_nul(buf, count); if (IS_ERR(data)) @@ -918,9 +919,11 @@ rc = smk_netlbl_mls(maplevel, mapcatset, &ncats, SMK_CIPSOLEN); if (rc >= 0) { - netlbl_catmap_free(skp->smk_netlabel.attr.mls.cat); + old_cat = skp->smk_netlabel.attr.mls.cat; skp->smk_netlabel.attr.mls.cat = ncats.attr.mls.cat; skp->smk_netlabel.attr.mls.lvl = ncats.attr.mls.lvl; + synchronize_rcu(); + netlbl_catmap_free(old_cat); rc = count; } diff -u linux-azure-5.4.0/security/tomoyo/util.c linux-azure-5.4.0/security/tomoyo/util.c --- linux-azure-5.4.0/security/tomoyo/util.c +++ linux-azure-5.4.0/security/tomoyo/util.c @@ -1029,6 +1029,8 @@ return false; if (!domain) return true; + if (READ_ONCE(domain->flags[TOMOYO_DIF_QUOTA_WARNED])) + return false; list_for_each_entry_rcu(ptr, &domain->acl_info_list, list, srcu_read_lock_held(&tomoyo_ss)) { u16 perm; @@ -1075,13 +1077,11 @@ pref[TOMOYO_PREF_MAX_LEARNING_ENTRY]) return true; - if (!domain->flags[TOMOYO_DIF_QUOTA_WARNED]) { - domain->flags[TOMOYO_DIF_QUOTA_WARNED] = true; - /* r->granted = false; */ - tomoyo_write_log(r, "%s", tomoyo_dif[TOMOYO_DIF_QUOTA_WARNED]); + WRITE_ONCE(domain->flags[TOMOYO_DIF_QUOTA_WARNED], true); + /* r->granted = false; */ + tomoyo_write_log(r, "%s", tomoyo_dif[TOMOYO_DIF_QUOTA_WARNED]); #ifndef CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING - pr_warn("WARNING: Domain '%s' has too many ACLs to hold. Stopped learning mode.\n", - domain->domainname->name); + pr_warn("WARNING: Domain '%s' has too many ACLs to hold. Stopped learning mode.\n", + domain->domainname->name); #endif - } return false; } diff -u linux-azure-5.4.0/sound/core/info.c linux-azure-5.4.0/sound/core/info.c --- linux-azure-5.4.0/sound/core/info.c +++ linux-azure-5.4.0/sound/core/info.c @@ -112,9 +112,9 @@ entry = data->entry; mutex_lock(&entry->access); if (entry->c.ops->llseek) { - offset = entry->c.ops->llseek(entry, - data->file_private_data, - file, offset, orig); + ret = entry->c.ops->llseek(entry, + data->file_private_data, + file, offset, orig); goto out; } diff -u linux-azure-5.4.0/sound/core/memalloc.c linux-azure-5.4.0/sound/core/memalloc.c --- linux-azure-5.4.0/sound/core/memalloc.c +++ linux-azure-5.4.0/sound/core/memalloc.c @@ -124,6 +124,7 @@ if (WARN_ON(!device)) return -EINVAL; + size = PAGE_ALIGN(size); dmab->dev.type = type; dmab->dev.dev = device; dmab->bytes = 0; diff -u linux-azure-5.4.0/sound/core/oss/pcm_oss.c linux-azure-5.4.0/sound/core/oss/pcm_oss.c --- linux-azure-5.4.0/sound/core/oss/pcm_oss.c +++ linux-azure-5.4.0/sound/core/oss/pcm_oss.c @@ -147,7 +147,7 @@ * * Return the maximum value for field PAR. */ -static unsigned int +static int snd_pcm_hw_param_value_max(const struct snd_pcm_hw_params *params, snd_pcm_hw_param_t var, int *dir) { @@ -682,18 +682,24 @@ struct snd_pcm_hw_params *oss_params, struct snd_pcm_hw_params *slave_params) { - size_t s; - size_t oss_buffer_size, oss_period_size, oss_periods; - size_t min_period_size, max_period_size; + ssize_t s; + ssize_t oss_buffer_size; + ssize_t oss_period_size, oss_periods; + ssize_t min_period_size, max_period_size; struct snd_pcm_runtime *runtime = substream->runtime; size_t oss_frame_size; oss_frame_size = snd_pcm_format_physical_width(params_format(oss_params)) * params_channels(oss_params) / 8; + oss_buffer_size = snd_pcm_hw_param_value_max(slave_params, + SNDRV_PCM_HW_PARAM_BUFFER_SIZE, + NULL); + if (oss_buffer_size <= 0) + return -EINVAL; oss_buffer_size = snd_pcm_plug_client_size(substream, - snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, NULL)) * oss_frame_size; - if (!oss_buffer_size) + oss_buffer_size * oss_frame_size); + if (oss_buffer_size <= 0) return -EINVAL; oss_buffer_size = rounddown_pow_of_two(oss_buffer_size); if (atomic_read(&substream->mmap_count)) { @@ -730,7 +736,7 @@ min_period_size = snd_pcm_plug_client_size(substream, snd_pcm_hw_param_value_min(slave_params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, NULL)); - if (min_period_size) { + if (min_period_size > 0) { min_period_size *= oss_frame_size; min_period_size = roundup_pow_of_two(min_period_size); if (oss_period_size < min_period_size) @@ -739,7 +745,7 @@ max_period_size = snd_pcm_plug_client_size(substream, snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, NULL)); - if (max_period_size) { + if (max_period_size > 0) { max_period_size *= oss_frame_size; max_period_size = rounddown_pow_of_two(max_period_size); if (oss_period_size > max_period_size) @@ -752,7 +758,7 @@ oss_periods = substream->oss.setup.periods; s = snd_pcm_hw_param_value_max(slave_params, SNDRV_PCM_HW_PARAM_PERIODS, NULL); - if (runtime->oss.maxfrags && s > runtime->oss.maxfrags) + if (s > 0 && runtime->oss.maxfrags && s > runtime->oss.maxfrags) s = runtime->oss.maxfrags; if (oss_periods > s) oss_periods = s; @@ -768,6 +774,11 @@ if (oss_period_size < 16) return -EINVAL; + + /* don't allocate too large period; 1MB period must be enough */ + if (oss_period_size > 1024 * 1024) + return -ENOMEM; + runtime->oss.period_bytes = oss_period_size; runtime->oss.period_frames = 1; runtime->oss.periods = oss_periods; @@ -878,8 +889,15 @@ err = -EINVAL; goto failure; } - choose_rate(substream, sparams, runtime->oss.rate); - snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_CHANNELS, runtime->oss.channels, NULL); + + err = choose_rate(substream, sparams, runtime->oss.rate); + if (err < 0) + goto failure; + err = snd_pcm_hw_param_near(substream, sparams, + SNDRV_PCM_HW_PARAM_CHANNELS, + runtime->oss.channels, NULL); + if (err < 0) + goto failure; format = snd_pcm_oss_format_from(runtime->oss.format); @@ -1032,10 +1050,9 @@ goto failure; } #endif - oss_period_size *= oss_frame_size; - - oss_buffer_size = oss_period_size * runtime->oss.periods; - if (oss_buffer_size < 0) { + oss_period_size = array_size(oss_period_size, oss_frame_size); + oss_buffer_size = array_size(oss_period_size, runtime->oss.periods); + if (oss_buffer_size <= 0) { err = -EINVAL; goto failure; } @@ -1644,13 +1661,14 @@ runtime = substream->runtime; if (atomic_read(&substream->mmap_count)) goto __direct; - if ((err = snd_pcm_oss_make_ready(substream)) < 0) - return err; atomic_inc(&runtime->oss.rw_ref); if (mutex_lock_interruptible(&runtime->oss.params_lock)) { atomic_dec(&runtime->oss.rw_ref); return -ERESTARTSYS; } + err = snd_pcm_oss_make_ready_locked(substream); + if (err < 0) + goto unlock; format = snd_pcm_oss_format_from(runtime->oss.format); width = snd_pcm_format_physical_width(format); if (runtime->oss.buffer_used > 0) { @@ -1946,7 +1964,7 @@ if (runtime->oss.subdivision || runtime->oss.fragshift) return -EINVAL; fragshift = val & 0xffff; - if (fragshift >= 31) + if (fragshift >= 25) /* should be large enough */ return -EINVAL; runtime->oss.fragshift = fragshift; runtime->oss.maxfrags = (val >> 16) & 0xffff; @@ -2042,7 +2060,7 @@ int err, cmd; #ifdef OSS_DEBUG - pcm_dbg(substream->pcm, "pcm_oss: trigger = 0x%x\n", trigger); + pr_debug("pcm_oss: trigger = 0x%x\n", trigger); #endif psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK]; diff -u linux-azure-5.4.0/sound/core/oss/pcm_plugin.c linux-azure-5.4.0/sound/core/oss/pcm_plugin.c --- linux-azure-5.4.0/sound/core/oss/pcm_plugin.c +++ linux-azure-5.4.0/sound/core/oss/pcm_plugin.c @@ -61,7 +61,10 @@ } if ((width = snd_pcm_format_physical_width(format->format)) < 0) return width; - size = frames * format->channels * width; + size = array3_size(frames, format->channels, width); + /* check for too large period size once again */ + if (size > 1024 * 1024) + return -ENOMEM; if (snd_BUG_ON(size % 8)) return -ENXIO; size /= 8; diff -u linux-azure-5.4.0/sound/core/pcm_lib.c linux-azure-5.4.0/sound/core/pcm_lib.c --- linux-azure-5.4.0/sound/core/pcm_lib.c +++ linux-azure-5.4.0/sound/core/pcm_lib.c @@ -1736,7 +1736,7 @@ channels = params_channels(params); frame_size = snd_pcm_format_size(format, channels); if (frame_size > 0) - params->fifo_size /= (unsigned)frame_size; + params->fifo_size /= frame_size; } return 0; } @@ -2211,10 +2211,15 @@ err = -EINVAL; goto _end_unlock; } + if (!atomic_inc_unless_negative(&runtime->buffer_accessing)) { + err = -EBUSY; + goto _end_unlock; + } snd_pcm_stream_unlock_irq(substream); err = writer(substream, appl_ofs, data, offset, frames, transfer); snd_pcm_stream_lock_irq(substream); + atomic_dec(&runtime->buffer_accessing); if (err < 0) goto _end_unlock; err = pcm_accessible_state(runtime); diff -u linux-azure-5.4.0/sound/core/pcm_native.c linux-azure-5.4.0/sound/core/pcm_native.c --- linux-azure-5.4.0/sound/core/pcm_native.c +++ linux-azure-5.4.0/sound/core/pcm_native.c @@ -630,6 +630,30 @@ return 0; } +/* acquire buffer_mutex; if it's in r/w operation, return -EBUSY, otherwise + * block the further r/w operations + */ +static int snd_pcm_buffer_access_lock(struct snd_pcm_runtime *runtime) +{ + if (!atomic_dec_unless_positive(&runtime->buffer_accessing)) + return -EBUSY; + mutex_lock(&runtime->buffer_mutex); + return 0; /* keep buffer_mutex, unlocked by below */ +} + +/* release buffer_mutex and clear r/w access flag */ +static void snd_pcm_buffer_access_unlock(struct snd_pcm_runtime *runtime) +{ + mutex_unlock(&runtime->buffer_mutex); + atomic_inc(&runtime->buffer_accessing); +} + +#if IS_ENABLED(CONFIG_SND_PCM_OSS) +#define is_oss_stream(substream) ((substream)->oss.oss) +#else +#define is_oss_stream(substream) false +#endif + static int snd_pcm_hw_params(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *params) { @@ -641,22 +665,25 @@ if (PCM_RUNTIME_CHECK(substream)) return -ENXIO; runtime = substream->runtime; + err = snd_pcm_buffer_access_lock(runtime); + if (err < 0) + return err; snd_pcm_stream_lock_irq(substream); switch (runtime->status->state) { case SNDRV_PCM_STATE_OPEN: case SNDRV_PCM_STATE_SETUP: case SNDRV_PCM_STATE_PREPARED: + if (!is_oss_stream(substream) && + atomic_read(&substream->mmap_count)) + err = -EBADFD; break; default: - snd_pcm_stream_unlock_irq(substream); - return -EBADFD; + err = -EBADFD; + break; } snd_pcm_stream_unlock_irq(substream); -#if IS_ENABLED(CONFIG_SND_PCM_OSS) - if (!substream->oss.oss) -#endif - if (atomic_read(&substream->mmap_count)) - return -EBADFD; + if (err) + goto unlock; params->rmask = ~0U; err = snd_pcm_hw_refine(substream, params); @@ -733,14 +760,19 @@ if ((usecs = period_to_usecs(runtime)) >= 0) pm_qos_add_request(&substream->latency_pm_qos_req, PM_QOS_CPU_DMA_LATENCY, usecs); - return 0; + err = 0; _error: - /* hardware might be unusable from this time, - so we force application to retry to set - the correct hardware parameter settings */ - snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN); - if (substream->ops->hw_free != NULL) - substream->ops->hw_free(substream); + if (err) { + /* hardware might be unusable from this time, + * so we force application to retry to set + * the correct hardware parameter settings + */ + snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN); + if (substream->ops->hw_free != NULL) + substream->ops->hw_free(substream); + } + unlock: + snd_pcm_buffer_access_unlock(runtime); return err; } @@ -773,22 +805,29 @@ if (PCM_RUNTIME_CHECK(substream)) return -ENXIO; runtime = substream->runtime; + result = snd_pcm_buffer_access_lock(runtime); + if (result < 0) + return result; snd_pcm_stream_lock_irq(substream); switch (runtime->status->state) { case SNDRV_PCM_STATE_SETUP: case SNDRV_PCM_STATE_PREPARED: + if (atomic_read(&substream->mmap_count)) + result = -EBADFD; break; default: - snd_pcm_stream_unlock_irq(substream); - return -EBADFD; + result = -EBADFD; + break; } snd_pcm_stream_unlock_irq(substream); - if (atomic_read(&substream->mmap_count)) - return -EBADFD; + if (result) + goto unlock; if (substream->ops->hw_free) result = substream->ops->hw_free(substream); snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN); pm_qos_remove_request(&substream->latency_pm_qos_req); + unlock: + snd_pcm_buffer_access_unlock(runtime); return result; } @@ -1025,15 +1064,17 @@ */ static int snd_pcm_action_group(const struct action_ops *ops, struct snd_pcm_substream *substream, - int state, int do_lock) + int state, int stream_lock) { struct snd_pcm_substream *s = NULL; struct snd_pcm_substream *s1; int res = 0, depth = 1; snd_pcm_group_for_each_entry(s, substream) { - if (do_lock && s != substream) { - if (s->pcm->nonatomic) + if (s != substream) { + if (!stream_lock) + mutex_lock_nested(&s->runtime->buffer_mutex, depth); + else if (s->pcm->nonatomic) mutex_lock_nested(&s->self_group.mutex, depth); else spin_lock_nested(&s->self_group.lock, depth); @@ -1061,18 +1102,18 @@ ops->post_action(s, state); } _unlock: - if (do_lock) { - /* unlock streams */ - snd_pcm_group_for_each_entry(s1, substream) { - if (s1 != substream) { - if (s1->pcm->nonatomic) - mutex_unlock(&s1->self_group.mutex); - else - spin_unlock(&s1->self_group.lock); - } - if (s1 == s) /* end */ - break; + /* unlock streams */ + snd_pcm_group_for_each_entry(s1, substream) { + if (s1 != substream) { + if (!stream_lock) + mutex_unlock(&s1->runtime->buffer_mutex); + else if (s1->pcm->nonatomic) + mutex_unlock(&s1->self_group.mutex); + else + spin_unlock(&s1->self_group.lock); } + if (s1 == s) /* end */ + break; } return res; } @@ -1202,10 +1243,15 @@ /* Guarantee the group members won't change during non-atomic action */ down_read(&snd_pcm_link_rwsem); + res = snd_pcm_buffer_access_lock(substream->runtime); + if (res < 0) + goto unlock; if (snd_pcm_stream_linked(substream)) res = snd_pcm_action_group(ops, substream, state, 0); else res = snd_pcm_action_single(ops, substream, state); + snd_pcm_buffer_access_unlock(substream->runtime); + unlock: up_read(&snd_pcm_link_rwsem); return res; } @@ -1656,21 +1702,25 @@ int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL); if (err < 0) return err; + snd_pcm_stream_lock_irq(substream); runtime->hw_ptr_base = 0; runtime->hw_ptr_interrupt = runtime->status->hw_ptr - runtime->status->hw_ptr % runtime->period_size; runtime->silence_start = runtime->status->hw_ptr; runtime->silence_filled = 0; + snd_pcm_stream_unlock_irq(substream); return 0; } static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state) { struct snd_pcm_runtime *runtime = substream->runtime; + snd_pcm_stream_lock_irq(substream); runtime->control->appl_ptr = runtime->status->hw_ptr; if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && runtime->silence_size > 0) snd_pcm_playback_silence(substream, ULONG_MAX); + snd_pcm_stream_unlock_irq(substream); } static const struct action_ops snd_pcm_action_reset = { diff -u linux-azure-5.4.0/sound/core/rawmidi.c linux-azure-5.4.0/sound/core/rawmidi.c --- linux-azure-5.4.0/sound/core/rawmidi.c +++ linux-azure-5.4.0/sound/core/rawmidi.c @@ -1662,10 +1662,8 @@ snd_info_free_entry(rmidi->proc_entry); rmidi->proc_entry = NULL; - mutex_lock(®ister_mutex); if (rmidi->ops && rmidi->ops->dev_unregister) rmidi->ops->dev_unregister(rmidi); - mutex_unlock(®ister_mutex); snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]); snd_rawmidi_free_substreams(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]); diff -u linux-azure-5.4.0/sound/core/seq/oss/seq_oss_midi.c linux-azure-5.4.0/sound/core/seq/oss/seq_oss_midi.c --- linux-azure-5.4.0/sound/core/seq/oss/seq_oss_midi.c +++ linux-azure-5.4.0/sound/core/seq/oss/seq_oss_midi.c @@ -267,7 +267,9 @@ void snd_seq_oss_midi_setup(struct seq_oss_devinfo *dp) { + spin_lock_irq(®ister_lock); dp->max_mididev = max_midi_devs; + spin_unlock_irq(®ister_lock); } /* diff -u linux-azure-5.4.0/sound/core/seq/seq_clientmgr.c linux-azure-5.4.0/sound/core/seq/seq_clientmgr.c --- linux-azure-5.4.0/sound/core/seq/seq_clientmgr.c +++ linux-azure-5.4.0/sound/core/seq/seq_clientmgr.c @@ -121,13 +121,13 @@ spin_unlock_irqrestore(&clients_lock, flags); #ifdef CONFIG_MODULES if (!in_interrupt()) { - static char client_requested[SNDRV_SEQ_GLOBAL_CLIENTS]; - static char card_requested[SNDRV_CARDS]; + static DECLARE_BITMAP(client_requested, SNDRV_SEQ_GLOBAL_CLIENTS); + static DECLARE_BITMAP(card_requested, SNDRV_CARDS); + if (clientid < SNDRV_SEQ_GLOBAL_CLIENTS) { int idx; - if (!client_requested[clientid]) { - client_requested[clientid] = 1; + if (!test_and_set_bit(clientid, client_requested)) { for (idx = 0; idx < 15; idx++) { if (seq_client_load[idx] < 0) break; @@ -142,10 +142,8 @@ int card = (clientid - SNDRV_SEQ_GLOBAL_CLIENTS) / SNDRV_SEQ_CLIENTS_PER_CARD; if (card < snd_ecards_limit) { - if (! card_requested[card]) { - card_requested[card] = 1; + if (!test_and_set_bit(card, card_requested)) snd_request_card(card); - } snd_seq_device_load_drivers(); } } diff -u linux-azure-5.4.0/sound/core/seq/seq_queue.c linux-azure-5.4.0/sound/core/seq/seq_queue.c --- linux-azure-5.4.0/sound/core/seq/seq_queue.c +++ linux-azure-5.4.0/sound/core/seq/seq_queue.c @@ -234,12 +234,15 @@ /* -------------------------------------------------------- */ +#define MAX_CELL_PROCESSES_IN_QUEUE 1000 + void snd_seq_check_queue(struct snd_seq_queue *q, int atomic, int hop) { unsigned long flags; struct snd_seq_event_cell *cell; snd_seq_tick_time_t cur_tick; snd_seq_real_time_t cur_time; + int processed = 0; if (q == NULL) return; @@ -262,6 +265,8 @@ if (!cell) break; snd_seq_dispatch_event(cell, atomic, hop); + if (++processed >= MAX_CELL_PROCESSES_IN_QUEUE) + goto out; /* the rest processed at the next batch */ } /* Process time queue... */ @@ -271,14 +276,19 @@ if (!cell) break; snd_seq_dispatch_event(cell, atomic, hop); + if (++processed >= MAX_CELL_PROCESSES_IN_QUEUE) + goto out; /* the rest processed at the next batch */ } + out: /* free lock */ spin_lock_irqsave(&q->check_lock, flags); if (q->check_again) { q->check_again = 0; - spin_unlock_irqrestore(&q->check_lock, flags); - goto __again; + if (processed < MAX_CELL_PROCESSES_IN_QUEUE) { + spin_unlock_irqrestore(&q->check_lock, flags); + goto __again; + } } q->check_blocked = 0; spin_unlock_irqrestore(&q->check_lock, flags); diff -u linux-azure-5.4.0/sound/core/timer.c linux-azure-5.4.0/sound/core/timer.c --- linux-azure-5.4.0/sound/core/timer.c +++ linux-azure-5.4.0/sound/core/timer.c @@ -61,7 +61,7 @@ unsigned int filter; struct timespec tstamp; /* trigger tstamp */ wait_queue_head_t qchange_sleep; - struct fasync_struct *fasync; + struct snd_fasync *fasync; struct mutex ioctl_lock; }; @@ -491,9 +491,10 @@ return; if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE) return; + event += 10; /* convert to SNDRV_TIMER_EVENT_MXXX */ list_for_each_entry(ts, &ti->slave_active_head, active_list) if (ts->ccallback) - ts->ccallback(ts, event + 100, &tstamp, resolution); + ts->ccallback(ts, event, &tstamp, resolution); } /* start/continue a master timer */ @@ -594,13 +595,13 @@ if (!timer) return -EINVAL; spin_lock_irqsave(&timer->lock, flags); + list_del_init(&timeri->ack_list); + list_del_init(&timeri->active_list); if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START))) { result = -EBUSY; goto unlock; } - list_del_init(&timeri->ack_list); - list_del_init(&timeri->active_list); if (timer->card && timer->card->shutdown) goto unlock; if (stop) { @@ -635,23 +636,22 @@ static int snd_timer_stop_slave(struct snd_timer_instance *timeri, bool stop) { unsigned long flags; + bool running; spin_lock_irqsave(&slave_active_lock, flags); - if (!(timeri->flags & SNDRV_TIMER_IFLG_RUNNING)) { - spin_unlock_irqrestore(&slave_active_lock, flags); - return -EBUSY; - } + running = timeri->flags & SNDRV_TIMER_IFLG_RUNNING; timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING; if (timeri->timer) { spin_lock(&timeri->timer->lock); list_del_init(&timeri->ack_list); list_del_init(&timeri->active_list); - snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : - SNDRV_TIMER_EVENT_PAUSE); + if (running) + snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : + SNDRV_TIMER_EVENT_PAUSE); spin_unlock(&timeri->timer->lock); } spin_unlock_irqrestore(&slave_active_lock, flags); - return 0; + return running ? 0 : -EBUSY; } /* @@ -1317,7 +1317,7 @@ } __wake: spin_unlock(&tu->qlock); - kill_fasync(&tu->fasync, SIGIO, POLL_IN); + snd_kill_fasync(tu->fasync, SIGIO, POLL_IN); wake_up(&tu->qchange_sleep); } @@ -1354,7 +1354,7 @@ spin_lock_irqsave(&tu->qlock, flags); snd_timer_user_append_to_tqueue(tu, &r1); spin_unlock_irqrestore(&tu->qlock, flags); - kill_fasync(&tu->fasync, SIGIO, POLL_IN); + snd_kill_fasync(tu->fasync, SIGIO, POLL_IN); wake_up(&tu->qchange_sleep); } @@ -1421,7 +1421,7 @@ spin_unlock(&tu->qlock); if (append == 0) return; - kill_fasync(&tu->fasync, SIGIO, POLL_IN); + snd_kill_fasync(tu->fasync, SIGIO, POLL_IN); wake_up(&tu->qchange_sleep); } @@ -1487,6 +1487,7 @@ if (tu->timeri) snd_timer_close(tu->timeri); mutex_unlock(&tu->ioctl_lock); + snd_fasync_free(tu->fasync); kfree(tu->queue); kfree(tu->tqueue); kfree(tu); @@ -2050,7 +2051,7 @@ struct snd_timer_user *tu; tu = file->private_data; - return fasync_helper(fd, file, on, &tu->fasync); + return snd_fasync_helper(fd, file, on, &tu->fasync); } static ssize_t snd_timer_user_read(struct file *file, char __user *buffer, diff -u linux-azure-5.4.0/sound/drivers/aloop.c linux-azure-5.4.0/sound/drivers/aloop.c --- linux-azure-5.4.0/sound/drivers/aloop.c +++ linux-azure-5.4.0/sound/drivers/aloop.c @@ -463,17 +463,18 @@ cable->streams[SNDRV_PCM_STREAM_PLAYBACK]; struct loopback_pcm *dpcm_capt = cable->streams[SNDRV_PCM_STREAM_CAPTURE]; - unsigned long delta_play = 0, delta_capt = 0; + unsigned long delta_play = 0, delta_capt = 0, cur_jiffies; unsigned int running, count1, count2; + cur_jiffies = jiffies; running = cable->running ^ cable->pause; if (running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) { - delta_play = jiffies - dpcm_play->last_jiffies; + delta_play = cur_jiffies - dpcm_play->last_jiffies; dpcm_play->last_jiffies += delta_play; } if (running & (1 << SNDRV_PCM_STREAM_CAPTURE)) { - delta_capt = jiffies - dpcm_capt->last_jiffies; + delta_capt = cur_jiffies - dpcm_capt->last_jiffies; dpcm_capt->last_jiffies += delta_capt; } diff -u linux-azure-5.4.0/sound/firewire/Kconfig linux-azure-5.4.0/sound/firewire/Kconfig --- linux-azure-5.4.0/sound/firewire/Kconfig +++ linux-azure-5.4.0/sound/firewire/Kconfig @@ -38,7 +38,7 @@ * Mackie(Loud) Onyx 1640i (former model) * Mackie(Loud) Onyx Satellite * Mackie(Loud) Tapco Link.Firewire - * Mackie(Loud) d.4 pro + * Mackie(Loud) d.2 pro/d.4 pro (built-in FireWire card with OXFW971 ASIC) * Mackie(Loud) U.420/U.420d * TASCAM FireOne * Stanton Controllers & Systems 1 Deck/Mixer @@ -84,7 +84,7 @@ * PreSonus FIREBOX/FIREPOD/FP10/Inspire1394 * BridgeCo RDAudio1/Audio5 * Mackie Onyx 1220/1620/1640 (FireWire I/O Card) - * Mackie d.2 (FireWire Option) and d.2 Pro + * Mackie d.2 (optional FireWire card with DM1000 ASIC) * Stanton FinalScratch 2 (ScratchAmp) * Tascam IF-FW/DM * Behringer XENIX UFX 1204/1604 @@ -110,6 +110,7 @@ * M-Audio Ozonic/NRV10/ProfireLightBridge * M-Audio FireWire 1814/ProjectMix IO * Digidesign Mbox 2 Pro + * ToneWeal FW66 To compile this driver as a module, choose M here: the module will be called snd-bebob. diff -u linux-azure-5.4.0/sound/firewire/bebob/bebob.c linux-azure-5.4.0/sound/firewire/bebob/bebob.c --- linux-azure-5.4.0/sound/firewire/bebob/bebob.c +++ linux-azure-5.4.0/sound/firewire/bebob/bebob.c @@ -59,6 +59,7 @@ #define VEN_MAUDIO1 0x00000d6c #define VEN_MAUDIO2 0x000007f5 #define VEN_DIGIDESIGN 0x00a07e +#define OUI_SHOUYO 0x002327 #define MODEL_FOCUSRITE_SAFFIRE_BOTH 0x00000000 #define MODEL_MAUDIO_AUDIOPHILE_BOTH 0x00010060 @@ -387,7 +388,7 @@ SND_BEBOB_DEV_ENTRY(VEN_BRIDGECO, 0x00010049, &spec_normal), /* Mackie, Onyx 1220/1620/1640 (Firewire I/O Card) */ SND_BEBOB_DEV_ENTRY(VEN_MACKIE2, 0x00010065, &spec_normal), - // Mackie, d.2 (Firewire option card) and d.2 Pro (the card is built-in). + // Mackie, d.2 (optional Firewire card with DM1000). SND_BEBOB_DEV_ENTRY(VEN_MACKIE1, 0x00010067, &spec_normal), /* Stanton, ScratchAmp */ SND_BEBOB_DEV_ENTRY(VEN_STANTON, 0x00000001, &spec_normal), @@ -486,6 +487,8 @@ &maudio_special_spec), /* Digidesign Mbox 2 Pro */ SND_BEBOB_DEV_ENTRY(VEN_DIGIDESIGN, 0x0000a9, &spec_normal), + // Toneweal FW66. + SND_BEBOB_DEV_ENTRY(OUI_SHOUYO, 0x020002, &spec_normal), /* IDs are unknown but able to be supported */ /* Apogee, Mini-ME Firewire */ /* Apogee, Mini-DAC Firewire */ diff -u linux-azure-5.4.0/sound/firewire/oxfw/oxfw.c linux-azure-5.4.0/sound/firewire/oxfw/oxfw.c --- linux-azure-5.4.0/sound/firewire/oxfw/oxfw.c +++ linux-azure-5.4.0/sound/firewire/oxfw/oxfw.c @@ -350,7 +350,7 @@ * Onyx-i series (former models): 0x081216 * Mackie Onyx Satellite: 0x00200f * Tapco LINK.firewire 4x6: 0x000460 - * d.4 pro: Unknown + * d.2 pro/d.4 pro (built-in card): Unknown * U.420: Unknown * U.420d: Unknown */ diff -u linux-azure-5.4.0/sound/hda/hdac_device.c linux-azure-5.4.0/sound/hda/hdac_device.c --- linux-azure-5.4.0/sound/hda/hdac_device.c +++ linux-azure-5.4.0/sound/hda/hdac_device.c @@ -656,6 +656,7 @@ { 0x14f1, "Conexant" }, { 0x17e8, "Chrontel" }, { 0x1854, "LG" }, + { 0x19e5, "Huawei" }, { 0x1aec, "Wolfson Microelectronics" }, { 0x1af4, "QEMU" }, { 0x434d, "C-Media" }, diff -u linux-azure-5.4.0/sound/hda/hdac_stream.c linux-azure-5.4.0/sound/hda/hdac_stream.c --- linux-azure-5.4.0/sound/hda/hdac_stream.c +++ linux-azure-5.4.0/sound/hda/hdac_stream.c @@ -289,6 +289,7 @@ int key = (substream->pcm->device << 16) | (substream->number << 2) | (substream->stream + 1); + spin_lock_irq(&bus->reg_lock); list_for_each_entry(azx_dev, &bus->stream_list, list) { if (azx_dev->direction != substream->stream) continue; @@ -302,13 +303,12 @@ res = azx_dev; } if (res) { - spin_lock_irq(&bus->reg_lock); res->opened = 1; res->running = 0; res->assigned_key = key; res->substream = substream; - spin_unlock_irq(&bus->reg_lock); } + spin_unlock_irq(&bus->reg_lock); return res; } EXPORT_SYMBOL_GPL(snd_hdac_stream_assign); diff -u linux-azure-5.4.0/sound/isa/cs423x/cs4236.c linux-azure-5.4.0/sound/isa/cs423x/cs4236.c --- linux-azure-5.4.0/sound/isa/cs423x/cs4236.c +++ linux-azure-5.4.0/sound/isa/cs423x/cs4236.c @@ -544,7 +544,7 @@ static int dev; int err; struct snd_card *card; - struct pnp_dev *cdev; + struct pnp_dev *cdev, *iter; char cid[PNP_ID_LEN]; if (pnp_device_is_isapnp(pdev)) @@ -560,9 +560,11 @@ strcpy(cid, pdev->id[0].id); cid[5] = '1'; cdev = NULL; - list_for_each_entry(cdev, &(pdev->protocol->devices), protocol_list) { - if (!strcmp(cdev->id[0].id, cid)) + list_for_each_entry(iter, &(pdev->protocol->devices), protocol_list) { + if (!strcmp(iter->id[0].id, cid)) { + cdev = iter; break; + } } err = snd_cs423x_card_new(&pdev->dev, dev, &card); if (err < 0) diff -u linux-azure-5.4.0/sound/isa/sb/sb16_csp.c linux-azure-5.4.0/sound/isa/sb/sb16_csp.c --- linux-azure-5.4.0/sound/isa/sb/sb16_csp.c +++ linux-azure-5.4.0/sound/isa/sb/sb16_csp.c @@ -814,6 +814,7 @@ mixR = snd_sbmixer_read(p->chip, SB_DSP4_PCM_DEV + 1); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV, mixL & 0x7); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV + 1, mixR & 0x7); + spin_unlock_irqrestore(&p->chip->mixer_lock, flags); spin_lock(&p->chip->reg_lock); set_mode_register(p->chip, 0xc0); /* c0 = STOP */ @@ -853,6 +854,7 @@ spin_unlock(&p->chip->reg_lock); /* restore PCM volume */ + spin_lock_irqsave(&p->chip->mixer_lock, flags); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV, mixL); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV + 1, mixR); spin_unlock_irqrestore(&p->chip->mixer_lock, flags); @@ -878,6 +880,7 @@ mixR = snd_sbmixer_read(p->chip, SB_DSP4_PCM_DEV + 1); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV, mixL & 0x7); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV + 1, mixR & 0x7); + spin_unlock_irqrestore(&p->chip->mixer_lock, flags); spin_lock(&p->chip->reg_lock); if (p->running & SNDRV_SB_CSP_ST_QSOUND) { @@ -892,6 +895,7 @@ spin_unlock(&p->chip->reg_lock); /* restore PCM volume */ + spin_lock_irqsave(&p->chip->mixer_lock, flags); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV, mixL); snd_sbmixer_write(p->chip, SB_DSP4_PCM_DEV + 1, mixR); spin_unlock_irqrestore(&p->chip->mixer_lock, flags); @@ -1072,10 +1076,14 @@ card = p->chip->card; down_write(&card->controls_rwsem); - if (p->qsound_switch) + if (p->qsound_switch) { snd_ctl_remove(card, p->qsound_switch); - if (p->qsound_space) + p->qsound_switch = NULL; + } + if (p->qsound_space) { snd_ctl_remove(card, p->qsound_space); + p->qsound_space = NULL; + } up_write(&card->controls_rwsem); /* cancel pending transfer of QSound parameters */ diff -u linux-azure-5.4.0/sound/isa/wavefront/wavefront_synth.c linux-azure-5.4.0/sound/isa/wavefront/wavefront_synth.c --- linux-azure-5.4.0/sound/isa/wavefront/wavefront_synth.c +++ linux-azure-5.4.0/sound/isa/wavefront/wavefront_synth.c @@ -1088,7 +1088,8 @@ if (dataptr < data_end) { - __get_user (sample_short, dataptr); + if (get_user(sample_short, dataptr)) + return -EFAULT; dataptr += skip; if (data_is_unsigned) { /* GUS ? */ diff -u linux-azure-5.4.0/sound/pci/hda/hda_beep.c linux-azure-5.4.0/sound/pci/hda/hda_beep.c --- linux-azure-5.4.0/sound/pci/hda/hda_beep.c +++ linux-azure-5.4.0/sound/pci/hda/hda_beep.c @@ -118,6 +118,12 @@ return 0; } +static void turn_on_beep(struct hda_beep *beep) +{ + if (beep->keep_power_at_enable) + snd_hda_power_up_pm(beep->codec); +} + static void turn_off_beep(struct hda_beep *beep) { cancel_work_sync(&beep->beep_work); @@ -125,6 +131,8 @@ /* turn off beep */ generate_tone(beep, 0); } + if (beep->keep_power_at_enable) + snd_hda_power_down_pm(beep->codec); } /** @@ -140,7 +148,9 @@ enable = !!enable; if (beep->enabled != enable) { beep->enabled = enable; - if (!enable) + if (enable) + turn_on_beep(beep); + else turn_off_beep(beep); return 1; } @@ -167,7 +177,8 @@ input_unregister_device(beep->dev); else input_free_device(beep->dev); - turn_off_beep(beep); + if (beep->enabled) + turn_off_beep(beep); return 0; } diff -u linux-azure-5.4.0/sound/pci/hda/hda_codec.c linux-azure-5.4.0/sound/pci/hda/hda_codec.c --- linux-azure-5.4.0/sound/pci/hda/hda_codec.c +++ linux-azure-5.4.0/sound/pci/hda/hda_codec.c @@ -1721,8 +1721,11 @@ { int i; struct hda_nid_item *items = codec->mixers.list; + + down_write(&codec->card->controls_rwsem); for (i = 0; i < codec->mixers.used; i++) snd_ctl_remove(codec->card, items[i].kctl); + up_write(&codec->card->controls_rwsem); snd_array_free(&codec->mixers); snd_array_free(&codec->nids); } diff -u linux-azure-5.4.0/sound/pci/hda/hda_generic.c linux-azure-5.4.0/sound/pci/hda/hda_generic.c --- linux-azure-5.4.0/sound/pci/hda/hda_generic.c +++ linux-azure-5.4.0/sound/pci/hda/hda_generic.c @@ -3458,7 +3458,7 @@ struct hda_gen_spec *spec = codec->spec; const struct hda_input_mux *imux; struct nid_path *path; - int i, adc_idx, err = 0; + int i, adc_idx, ret, err = 0; imux = &spec->input_mux; adc_idx = kcontrol->id.index; @@ -3468,9 +3468,13 @@ if (!path || !path->ctls[type]) continue; kcontrol->private_value = path->ctls[type]; - err = func(kcontrol, ucontrol); - if (err < 0) + ret = func(kcontrol, ucontrol); + if (ret < 0) { + err = ret; break; + } + if (ret > 0) + err = 1; } mutex_unlock(&codec->control_mutex); if (err >= 0 && spec->cap_sync_hook) diff -u linux-azure-5.4.0/sound/pci/hda/hda_intel.c linux-azure-5.4.0/sound/pci/hda/hda_intel.c --- linux-azure-5.4.0/sound/pci/hda/hda_intel.c +++ linux-azure-5.4.0/sound/pci/hda/hda_intel.c @@ -673,13 +673,17 @@ * the update-IRQ timing. The IRQ is issued before actually the * data is processed. So, we need to process it afterwords in a * workqueue. + * + * Returns 1 if OK to proceed, 0 for delay handling, -1 for skipping update */ static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev) { struct snd_pcm_substream *substream = azx_dev->core.substream; + struct snd_pcm_runtime *runtime = substream->runtime; int stream = substream->stream; u32 wallclk; unsigned int pos; + snd_pcm_uframes_t hwptr, target; wallclk = azx_readl(chip, WALLCLK) - azx_dev->core.start_wallclk; if (wallclk < (azx_dev->core.period_wallclk * 2) / 3) @@ -716,6 +720,24 @@ /* NG - it's below the first next period boundary */ return chip->bdl_pos_adj ? 0 : -1; azx_dev->core.start_wallclk += wallclk; + + if (azx_dev->core.no_period_wakeup) + return 1; /* OK, no need to check period boundary */ + + if (runtime->hw_ptr_base != runtime->hw_ptr_interrupt) + return 1; /* OK, already in hwptr updating process */ + + /* check whether the period gets really elapsed */ + pos = bytes_to_frames(runtime, pos); + hwptr = runtime->hw_ptr_base + pos; + if (hwptr < runtime->status->hw_ptr) + hwptr += runtime->buffer_size; + target = runtime->hw_ptr_interrupt + runtime->period_size; + if (hwptr < target) { + /* too early wakeup, process it later */ + return chip->bdl_pos_adj ? 0 : -1; + } + return 1; /* OK, it's fine */ } @@ -909,11 +931,7 @@ if (azx_dev->core.substream->stream == SNDRV_PCM_STREAM_PLAYBACK) return azx_skl_get_dpib_pos(chip, azx_dev); - /* For capture, we need to read posbuf, but it requires a delay - * for the possible boundary overlap; the read of DPIB fetches the - * actual posbuf - */ - udelay(20); + /* read of DPIB fetches the actual posbuf */ azx_skl_get_dpib_pos(chip, azx_dev); return azx_get_pos_posbuf(chip, azx_dev); } @@ -1592,6 +1610,7 @@ /* forced codec slots */ SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103), SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103), + SND_PCI_QUIRK(0x1558, 0x0351, "Schenker Dock 15", 0x105), /* WinFast VP200 H (Teradici) user reported broken communication */ SND_PCI_QUIRK(0x3a21, 0x040d, "WinFast VP200 H", 0x101), {} @@ -1777,8 +1796,6 @@ assign_position_fix(chip, check_position_fix(chip, position_fix[dev])); - check_probe_mask(chip, dev); - if (single_cmd < 0) /* allow fallback to single_cmd at errors */ chip->fallback_to_single_cmd = 1; else /* explicitly set to single_cmd or not */ @@ -1810,6 +1827,8 @@ chip->bus.needs_damn_long_delay = 1; } + check_probe_mask(chip, dev); + err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); if (err < 0) { dev_err(card->dev, "Error creating device [card]!\n"); @@ -2493,9 +2512,12 @@ /* 5 Series/3400 */ { PCI_DEVICE(0x8086, 0x3b56), .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, + { PCI_DEVICE(0x8086, 0x3b57), + .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, /* Poulsbo */ { PCI_DEVICE(0x8086, 0x811b), - .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE }, + .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE | + AZX_DCAPS_POSFIX_LPIB }, /* Oaktrail */ { PCI_DEVICE(0x8086, 0x080a), .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE }, diff -u linux-azure-5.4.0/sound/pci/hda/hda_tegra.c linux-azure-5.4.0/sound/pci/hda/hda_tegra.c --- linux-azure-5.4.0/sound/pci/hda/hda_tegra.c +++ linux-azure-5.4.0/sound/pci/hda/hda_tegra.c @@ -292,6 +292,9 @@ const char *sname, *drv_name = "tegra-hda"; struct device_node *np = pdev->dev.of_node; + if (irq_id < 0) + return irq_id; + err = hda_tegra_init_chip(chip, pdev); if (err) return err; @@ -425,7 +428,8 @@ static int hda_tegra_probe(struct platform_device *pdev) { const unsigned int driver_flags = AZX_DCAPS_CORBRP_SELF_CLEAR | - AZX_DCAPS_PM_RUNTIME; + AZX_DCAPS_PM_RUNTIME | + AZX_DCAPS_4K_BDLE_BOUNDARY; struct snd_card *card; struct azx *chip; struct hda_tegra *hda; diff -u linux-azure-5.4.0/sound/pci/hda/patch_conexant.c linux-azure-5.4.0/sound/pci/hda/patch_conexant.c --- linux-azure-5.4.0/sound/pci/hda/patch_conexant.c +++ linux-azure-5.4.0/sound/pci/hda/patch_conexant.c @@ -197,6 +197,7 @@ CXT_PINCFG_LEMOTE_A1205, CXT_PINCFG_COMPAQ_CQ60, CXT_FIXUP_STEREO_DMIC, + CXT_PINCFG_LENOVO_NOTEBOOK, CXT_FIXUP_INC_MIC_BOOST, CXT_FIXUP_HEADPHONE_MIC_PIN, CXT_FIXUP_HEADPHONE_MIC, @@ -737,6 +738,14 @@ .type = HDA_FIXUP_FUNC, .v.func = cxt_fixup_stereo_dmic, }, + [CXT_PINCFG_LENOVO_NOTEBOOK] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x1a, 0x05d71030 }, + { } + }, + .chain_id = CXT_FIXUP_STEREO_DMIC, + }, [CXT_FIXUP_INC_MIC_BOOST] = { .type = HDA_FIXUP_FUNC, .v.func = cxt5066_increase_mic_boost, @@ -905,6 +914,7 @@ SND_PCI_QUIRK(0x103c, 0x828c, "HP EliteBook 840 G4", CXT_FIXUP_HP_DOCK), SND_PCI_QUIRK(0x103c, 0x8299, "HP 800 G3 SFF", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x829a, "HP 800 G3 DM", CXT_FIXUP_HP_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x103c, 0x82b4, "HP ProDesk 600 G3", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x836e, "HP ProBook 455 G5", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x837f, "HP ProBook 470 G5", CXT_FIXUP_MUTE_LED_GPIO), SND_PCI_QUIRK(0x103c, 0x83b2, "HP EliteBook 840 G5", CXT_FIXUP_HP_DOCK), @@ -929,7 +939,7 @@ SND_PCI_QUIRK(0x17aa, 0x3905, "Lenovo G50-30", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x390b, "Lenovo G50-80", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC), - SND_PCI_QUIRK(0x17aa, 0x3977, "Lenovo IdeaPad U310", CXT_FIXUP_STEREO_DMIC), + SND_PCI_QUIRK(0x17aa, 0x3977, "Lenovo IdeaPad U310", CXT_PINCFG_LENOVO_NOTEBOOK), SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo G50-70", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x17aa, 0x397b, "Lenovo S205", CXT_FIXUP_STEREO_DMIC), SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI), @@ -1012,6 +1022,13 @@ snd_hda_pick_fixup(codec, cxt5051_fixup_models, cxt5051_fixups, cxt_fixups); break; + case 0x14f15098: + codec->pin_amp_workaround = 1; + spec->gen.mixer_nid = 0x22; + spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO; + snd_hda_pick_fixup(codec, cxt5066_fixup_models, + cxt5066_fixups, cxt_fixups); + break; case 0x14f150f2: codec->power_save_node = 1; /* Fall through */ @@ -1041,11 +1058,11 @@ if (err < 0) goto error; - err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); + err = cx_auto_parse_beep(codec); if (err < 0) goto error; - err = cx_auto_parse_beep(codec); + err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); if (err < 0) goto error; diff -u linux-azure-5.4.0/sound/pci/hda/patch_hdmi.c linux-azure-5.4.0/sound/pci/hda/patch_hdmi.c --- linux-azure-5.4.0/sound/pci/hda/patch_hdmi.c +++ linux-azure-5.4.0/sound/pci/hda/patch_hdmi.c @@ -1823,6 +1823,7 @@ static const struct snd_pci_quirk force_connect_list[] = { SND_PCI_QUIRK(0x103c, 0x870f, "HP", 1), SND_PCI_QUIRK(0x103c, 0x871a, "HP", 1), + SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1), {} }; @@ -2541,7 +2542,4 @@ if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) return; - /* ditto during suspend/resume process itself */ - if (snd_hdac_is_in_pm(&codec->core)) - return; check_presence_and_report(codec, pin_nid, dev_id); @@ -2729,7 +2727,4 @@ if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) return; - /* ditto during suspend/resume process itself */ - if (snd_hdac_is_in_pm(&codec->core)) - return; snd_hdac_i915_set_bclk(&codec->bus->core); @@ -3690,6 +3685,7 @@ if (err) return err; + codec->depop_delay = 10; codec->patch_ops.build_pcms = tegra_hdmi_build_pcms; spec = codec->spec; spec->chmap.ops.chmap_cea_alloc_validate_get_type = diff -u linux-azure-5.4.0/sound/pci/hda/patch_realtek.c linux-azure-5.4.0/sound/pci/hda/patch_realtek.c --- linux-azure-5.4.0/sound/pci/hda/patch_realtek.c +++ linux-azure-5.4.0/sound/pci/hda/patch_realtek.c @@ -376,12 +376,14 @@ alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); /* fallthrough */ case 0x10ec0215: + case 0x10ec0230: case 0x10ec0233: case 0x10ec0235: case 0x10ec0236: case 0x10ec0245: case 0x10ec0255: case 0x10ec0256: + case 0x19e58326: case 0x10ec0257: case 0x10ec0282: case 0x10ec0283: @@ -517,6 +519,9 @@ struct alc_spec *spec = codec->spec; switch (codec->core.vendor_id) { + case 0x10ec0236: + case 0x10ec0256: + case 0x19e58326: case 0x10ec0283: case 0x10ec0286: case 0x10ec0288: @@ -1924,11 +1929,13 @@ ALC887_FIXUP_ASUS_BASS, ALC887_FIXUP_BASS_CHMAP, ALC1220_FIXUP_GB_DUAL_CODECS, + ALC1220_FIXUP_GB_X570, ALC1220_FIXUP_CLEVO_P950, ALC1220_FIXUP_CLEVO_PB51ED, ALC1220_FIXUP_CLEVO_PB51ED_PINS, ALC887_FIXUP_ASUS_AUDIO, ALC887_FIXUP_ASUS_HMIC, + ALCS1200A_FIXUP_MIC_VREF, }; static void alc889_fixup_coef(struct hda_codec *codec, @@ -2113,6 +2120,30 @@ } } +static void alc1220_fixup_gb_x570(struct hda_codec *codec, + const struct hda_fixup *fix, + int action) +{ + static const hda_nid_t conn1[] = { 0x0c }; + static const struct coef_fw gb_x570_coefs[] = { + WRITE_COEF(0x07, 0x03c0), + WRITE_COEF(0x1a, 0x01c1), + WRITE_COEF(0x1b, 0x0202), + WRITE_COEF(0x43, 0x3005), + {} + }; + + switch (action) { + case HDA_FIXUP_ACT_PRE_PROBE: + snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); + snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1); + break; + case HDA_FIXUP_ACT_INIT: + alc_process_coef_fw(codec, gb_x570_coefs); + break; + } +} + static void alc1220_fixup_clevo_p950(struct hda_codec *codec, const struct hda_fixup *fix, int action) @@ -2415,6 +2446,10 @@ .type = HDA_FIXUP_FUNC, .v.func = alc1220_fixup_gb_dual_codecs, }, + [ALC1220_FIXUP_GB_X570] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc1220_fixup_gb_x570, + }, [ALC1220_FIXUP_CLEVO_P950] = { .type = HDA_FIXUP_FUNC, .v.func = alc1220_fixup_clevo_p950, @@ -2446,6 +2481,14 @@ .chained = true, .chain_id = ALC887_FIXUP_ASUS_AUDIO, }, + [ALCS1200A_FIXUP_MIC_VREF] = { + .type = HDA_FIXUP_PINCTLS, + .v.pins = (const struct hda_pintbl[]) { + { 0x18, PIN_VREF50 }, /* rear mic */ + { 0x19, PIN_VREF50 }, /* front mic */ + {} + } + }, }; static const struct snd_pci_quirk alc882_fixup_tbl[] = { @@ -2483,6 +2526,7 @@ SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS), SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), + SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF), SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), @@ -2517,8 +2561,9 @@ SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD), SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE), SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), - SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_CLEVO_P950), - SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_CLEVO_P950), + SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570), + SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570), + SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570), SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950), @@ -2535,11 +2580,16 @@ SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), - SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED), SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950), @@ -2590,6 +2640,7 @@ {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"}, {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"}, {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"}, + {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"}, {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"}, {} }; @@ -3144,8 +3195,10 @@ alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_write_coef_idx(codec, 0x48, 0x0); alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); break; @@ -3171,8 +3224,10 @@ alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_write_coef_idx(codec, 0x48, 0xd011); alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); break; @@ -3519,7 +3574,8 @@ /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly * when booting with headset plugged. So skip setting it for the codec alc257 */ - if (codec->core.vendor_id != 0x10ec0257) + if (codec->core.vendor_id != 0x10ec0236 && + codec->core.vendor_id != 0x10ec0257) alc_update_coef_idx(codec, 0x46, 0, 3 << 12); if (!spec->no_shutup_pins) @@ -4671,8 +4727,10 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_process_coef_fw(codec, coef0256); break; case 0x10ec0234: @@ -4785,8 +4843,10 @@ alc_process_coef_fw(codec, coef0255); snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_write_coef_idx(codec, 0x45, 0xc489); snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); alc_process_coef_fw(codec, coef0256); @@ -4934,8 +4994,10 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_write_coef_idx(codec, 0x1b, 0x0e4b); alc_write_coef_idx(codec, 0x45, 0xc089); msleep(50); @@ -5032,8 +5094,10 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_process_coef_fw(codec, coef0256); break; case 0x10ec0234: @@ -5145,8 +5209,10 @@ case 0x10ec0255: alc_process_coef_fw(codec, coef0255); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_process_coef_fw(codec, coef0256); break; case 0x10ec0234: @@ -5240,8 +5306,10 @@ val = alc_read_coef_idx(codec, 0x46); is_ctia = (val & 0x0070) == 0x0070; break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_write_coef_idx(codec, 0x1b, 0x0e4b); alc_write_coef_idx(codec, 0x06, 0x6104); alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3); @@ -5533,8 +5601,10 @@ case 0x10ec0255: alc_process_coef_fw(codec, alc255fw); break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: alc_process_coef_fw(codec, alc256fw); break; } @@ -6133,10 +6203,12 @@ alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */ alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15); break; + case 0x10ec0230: case 0x10ec0235: case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: + case 0x19e58326: alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */ alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15); break; @@ -6250,2 +6322,20 @@ +static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec, + const struct hda_fixup *fix, int action) +{ + static const hda_nid_t conn[] = { 0x02 }; + static const struct hda_pintbl pincfgs[] = { + { 0x14, 0x90170110 }, /* rear speaker */ + { } + }; + + switch (action) { + case HDA_FIXUP_ACT_PRE_PROBE: + snd_hda_apply_pincfgs(codec, pincfgs); + /* force front speaker to DAC1 */ + snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); + break; + } +} + /* for hda_fixup_thinkpad_acpi() */ @@ -6258,6 +6348,20 @@ hda_fixup_thinkpad_acpi(codec, fix, action); } +/* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */ +static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec, + const struct hda_fixup *fix, + int action) +{ + struct alc_spec *spec = codec->spec; + + switch (action) { + case HDA_FIXUP_ACT_PRE_PROBE: + spec->gen.suppress_auto_mute = 1; + break; + } +} + /* for alc295_fixup_hp_top_speakers */ #include "hp_x360_helper.c" @@ -6315,6 +6419,7 @@ ALC269_FIXUP_LIMIT_INT_MIC_BOOST, ALC269VB_FIXUP_ASUS_ZENBOOK, ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, + ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE, ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED, ALC269VB_FIXUP_ORDISSIMO_EVE2, ALC283_FIXUP_CHROME_BOOK, @@ -6372,6 +6477,7 @@ ALC298_FIXUP_LENOVO_SPK_VOLUME, ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, ALC269_FIXUP_ATIV_BOOK_8, + ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE, ALC221_FIXUP_HP_MIC_NO_PRESENCE, ALC256_FIXUP_ASUS_HEADSET_MODE, ALC256_FIXUP_ASUS_MIC, @@ -6427,11 +6533,14 @@ ALC294_FIXUP_ASUS_GU502_HP, ALC294_FIXUP_ASUS_GU502_PINS, ALC294_FIXUP_ASUS_GU502_VERBS, + ALC294_FIXUP_ASUS_G513_PINS, + ALC285_FIXUP_ASUS_G533Z_PINS, ALC285_FIXUP_HP_GPIO_LED, ALC285_FIXUP_HP_MUTE_LED, ALC236_FIXUP_HP_GPIO_LED, ALC236_FIXUP_HP_MUTE_LED, ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, + ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, ALC285_FIXUP_HP_GPIO_AMP_INIT, ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS, @@ -6457,6 +6566,11 @@ ALC295_FIXUP_ASUS_DACS, ALC295_FIXUP_HP_OMEN, ALC285_FIXUP_HP_SPECTRE_X360, + ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, + ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS, + ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, + ALC287_FIXUP_YOGA7_14ITL_SPEAKERS, + ALC287_FIXUP_13S_GEN2_SPEAKERS }; static const struct hda_fixup alc269_fixups[] = { @@ -6844,6 +6958,15 @@ .chained = true, .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK, }, + [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x18, 0x01a110f0 }, /* use as headset mic */ + { } + }, + .chained = true, + .chain_id = ALC269_FIXUP_HEADSET_MIC + }, [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = { .type = HDA_FIXUP_FUNC, .v.func = alc269_fixup_limit_int_mic_boost, @@ -7249,6 +7372,16 @@ .chained = true, .chain_id = ALC269_FIXUP_NO_SHUTUP }, + [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ + { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */ + { } + }, + .chained = true, + .chain_id = ALC269_FIXUP_HEADSET_MODE + }, [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = { .type = HDA_FIXUP_PINS, .v.pins = (const struct hda_pintbl[]) { @@ -7684,6 +7817,26 @@ .type = HDA_FIXUP_FUNC, .v.func = alc294_fixup_gu502_hp, }, + [ALC294_FIXUP_ASUS_G513_PINS] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x19, 0x03a11050 }, /* front HP mic */ + { 0x1a, 0x03a11c30 }, /* rear external mic */ + { 0x21, 0x03211420 }, /* front HP out */ + { } + }, + }, + [ALC285_FIXUP_ASUS_G533Z_PINS] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */ + { 0x19, 0x03a19020 }, /* Mic Boost Volume */ + { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */ + { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */ + { 0x21, 0x03211420 }, + { } + }, + }, [ALC294_FIXUP_ASUS_COEF_1B] = { .type = HDA_FIXUP_VERBS, .v.verbs = (const struct hda_verb[]) { @@ -7694,6 +7847,8 @@ { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b }, { } }, + .chained = true, + .chain_id = ALC289_FIXUP_ASUS_GA401, }, [ALC285_FIXUP_HP_GPIO_LED] = { .type = HDA_FIXUP_FUNC, @@ -7718,6 +7873,14 @@ { } }, }, + [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = { + .type = HDA_FIXUP_VERBS, + .v.verbs = (const struct hda_verb[]) { + { 0x20, AC_VERB_SET_COEF_INDEX, 0x08}, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf}, + { } + }, + }, [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = { .type = HDA_FIXUP_PINS, .v.pins = (const struct hda_pintbl[]) { @@ -7951,13 +8114,124 @@ .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED, }, [ALC285_FIXUP_HP_SPECTRE_X360] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc285_fixup_hp_spectre_x360, + }, + [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = { .type = HDA_FIXUP_PINS, .v.pins = (const struct hda_pintbl[]) { - { 0x14, 0x90170110 }, /* enable top speaker */ + { 0x21, 0x03211030 }, /* Change the Headphone location to Left */ + { } + }, + .chained = true, + .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC + }, + [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = { + .type = HDA_FIXUP_VERBS, + //.v.verbs = legion_15imhg05_coefs, + .v.verbs = (const struct hda_verb[]) { + // set left speaker Legion 7i. + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + // set right speaker Legion 7i. + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + {} + }, + .chained = true, + .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, + }, + [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc287_fixup_legion_15imhg05_speakers, + .chained = true, + .chain_id = ALC269_FIXUP_HEADSET_MODE, + }, + [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = { + .type = HDA_FIXUP_VERBS, + .v.verbs = (const struct hda_verb[]) { + // set left speaker Yoga 7i. + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + // set right speaker Yoga 7i. + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x46 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + {} + }, + .chained = true, + .chain_id = ALC269_FIXUP_HEADSET_MODE, + }, + [ALC287_FIXUP_13S_GEN2_SPEAKERS] = { + .type = HDA_FIXUP_VERBS, + .v.verbs = (const struct hda_verb[]) { + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, + { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, + { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, {} }, .chained = true, - .chain_id = ALC285_FIXUP_SPEAKER2_TO_DAC1, + .chain_id = ALC269_FIXUP_HEADSET_MODE, }, }; @@ -7991,8 +8265,12 @@ SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC), SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC), + SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC), SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), + SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X), SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS), SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X), SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X), @@ -8099,6 +8377,7 @@ SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), + SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), @@ -8108,12 +8387,16 @@ SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), + SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN), SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360), + SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT), + SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED), @@ -8124,6 +8407,7 @@ SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), @@ -8140,9 +8424,12 @@ SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC), + SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK), SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A), + SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK), + SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS), SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK), @@ -8150,6 +8437,7 @@ SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE), + SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE), SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE), SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE), @@ -8159,12 +8447,17 @@ SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC), SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), + SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS), SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC), + SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE), SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502), SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS), + SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS), SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401), + SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401), + SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2), SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC), @@ -8186,6 +8479,7 @@ SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE), SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE), SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), + SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE), @@ -8197,6 +8491,7 @@ SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8), SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), + SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC), SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC), SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC), @@ -8310,6 +8605,10 @@ SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940", ALC298_FIXUP_LENOVO_SPK_VOLUME), + SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS), + SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), + SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), + SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI), SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC), SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI), @@ -8334,6 +8633,7 @@ SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), + SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20), SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI), SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101), @@ -8343,6 +8643,7 @@ SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC), + SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC), SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED), @@ -8520,10 +8821,12 @@ {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"}, {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"}, {.id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc298-samsung-headphone"}, + {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"}, {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"}, {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"}, {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"}, {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"}, + {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"}, {} }; #define ALC225_STANDARD_PINS \ @@ -9089,8 +9392,10 @@ spec->shutup = alc256_shutup; spec->init_hook = alc256_init; break; + case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x19e58326: spec->codec_variant = ALC269_TYPE_ALC256; spec->shutup = alc256_shutup; spec->init_hook = alc256_init; @@ -9156,6 +9461,16 @@ snd_hda_pick_fixup(codec, alc269_fixup_models, alc269_fixup_tbl, alc269_fixups); + /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and + * the quirk breaks the latter (bko#214101). + * Clear the wrong entry. + */ + if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 && + codec->core.vendor_id == 0x10ec0294) { + codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n"); + codec->fixup_id = HDA_FIXUP_ID_NOT_SET; + } + snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true); snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false); snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl, @@ -9597,6 +9912,27 @@ } } +static void alc897_hp_automute_hook(struct hda_codec *codec, + struct hda_jack_callback *jack) +{ + struct alc_spec *spec = codec->spec; + int vref; + + snd_hda_gen_hp_automute(codec, jack); + vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP; + snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, + vref); +} + +static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec, + const struct hda_fixup *fix, int action) +{ + struct alc_spec *spec = codec->spec; + if (action == HDA_FIXUP_ACT_PRE_PROBE) { + spec->gen.hp_automute_hook = alc897_hp_automute_hook; + } +} + static const struct coef_fw alc668_coefs[] = { WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0), WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80), @@ -9674,6 +10010,12 @@ ALC671_FIXUP_HP_HEADSET_MIC2, ALC662_FIXUP_ACER_X2660G_HEADSET_MODE, ALC662_FIXUP_ACER_NITRO_HEADSET_MODE, + ALC668_FIXUP_ASUS_NO_HEADSET_MIC, + ALC668_FIXUP_HEADSET_MIC, + ALC668_FIXUP_MIC_DET_COEF, + ALC897_FIXUP_LENOVO_HEADSET_MIC, + ALC897_FIXUP_HEADSET_MIC_PIN, + ALC897_FIXUP_HP_HSMIC_VERB, }; static const struct hda_fixup alc662_fixups[] = { @@ -10058,4 +10400,47 @@ .chain_id = ALC662_FIXUP_USI_FUNC }, + [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x1b, 0x04a1112c }, + { } + }, + .chained = true, + .chain_id = ALC668_FIXUP_HEADSET_MIC + }, + [ALC668_FIXUP_HEADSET_MIC] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc269_fixup_headset_mic, + .chained = true, + .chain_id = ALC668_FIXUP_MIC_DET_COEF + }, + [ALC668_FIXUP_MIC_DET_COEF] = { + .type = HDA_FIXUP_VERBS, + .v.verbs = (const struct hda_verb[]) { + { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 }, + { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 }, + {} + }, + }, + [ALC897_FIXUP_LENOVO_HEADSET_MIC] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc897_fixup_lenovo_headset_mic, + }, + [ALC897_FIXUP_HEADSET_MIC_PIN] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x1a, 0x03a11050 }, + { } + }, + .chained = true, + .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC + }, + [ALC897_FIXUP_HP_HSMIC_VERB] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ + { } + }, + }, }; @@ -10082,7 +10467,10 @@ SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), + SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB), SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2), + SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2), + SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2), SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE), SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50), SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50), @@ -10092,6 +10480,7 @@ SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16), SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51), SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51), + SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC), SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8), SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16), SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), @@ -10100,6 +10489,11 @@ SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE), SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS), + SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO), @@ -10380,6 +10774,7 @@ HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269), HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269), HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269), + HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269), HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269), HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269), HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269), @@ -10453,6 +10848,7 @@ HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882), HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882), HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882), + HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269), {} /* terminator */ }; MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek); diff -u linux-azure-5.4.0/sound/pci/hda/patch_sigmatel.c linux-azure-5.4.0/sound/pci/hda/patch_sigmatel.c --- linux-azure-5.4.0/sound/pci/hda/patch_sigmatel.c +++ linux-azure-5.4.0/sound/pci/hda/patch_sigmatel.c @@ -209,6 +209,7 @@ /* beep widgets */ hda_nid_t anabeep_nid; + bool beep_power_on; /* SPDIF-out mux */ const char * const *spdif_labels; @@ -4301,6 +4302,8 @@ if (codec->beep) { /* IDT/STAC codecs have linear beep tone parameter */ codec->beep->linear_tone = spec->linear_tone_beep; + /* keep power up while beep is enabled */ + codec->beep->keep_power_at_enable = 1; /* if no beep switch is available, make its own one */ caps = query_amp_caps(codec, nid, HDA_OUTPUT); if (!(caps & AC_AMPCAP_MUTE)) { diff -u linux-azure-5.4.0/sound/pci/hda/patch_via.c linux-azure-5.4.0/sound/pci/hda/patch_via.c --- linux-azure-5.4.0/sound/pci/hda/patch_via.c +++ linux-azure-5.4.0/sound/pci/hda/patch_via.c @@ -520,11 +520,11 @@ if (err < 0) return err; - err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); + err = auto_parse_beep(codec); if (err < 0) return err; - err = auto_parse_beep(codec); + err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); if (err < 0) return err; diff -u linux-azure-5.4.0/sound/pci/intel8x0.c linux-azure-5.4.0/sound/pci/intel8x0.c --- linux-azure-5.4.0/sound/pci/intel8x0.c +++ linux-azure-5.4.0/sound/pci/intel8x0.c @@ -715,7 +715,7 @@ int status, civ, i, step; int ack = 0; - if (!ichdev->prepared || ichdev->suspended) + if (!(ichdev->prepared || chip->in_measurement) || ichdev->suspended) return; spin_lock_irqsave(&chip->reg_lock, flags); diff -u linux-azure-5.4.0/sound/soc/atmel/Kconfig linux-azure-5.4.0/sound/soc/atmel/Kconfig --- linux-azure-5.4.0/sound/soc/atmel/Kconfig +++ linux-azure-5.4.0/sound/soc/atmel/Kconfig @@ -11,7 +11,6 @@ config SND_ATMEL_SOC_PDC bool - depends on HAS_DMA config SND_ATMEL_SOC_DMA bool diff -u linux-azure-5.4.0/sound/soc/codecs/cpcap.c linux-azure-5.4.0/sound/soc/codecs/cpcap.c --- linux-azure-5.4.0/sound/soc/codecs/cpcap.c +++ linux-azure-5.4.0/sound/soc/codecs/cpcap.c @@ -1541,6 +1541,8 @@ { struct device_node *codec_node = of_get_child_by_name(pdev->dev.parent->of_node, "audio-codec"); + if (!codec_node) + return -ENODEV; pdev->dev.of_node = codec_node; diff -u linux-azure-5.4.0/sound/soc/codecs/cs42l42.c linux-azure-5.4.0/sound/soc/codecs/cs42l42.c --- linux-azure-5.4.0/sound/soc/codecs/cs42l42.c +++ linux-azure-5.4.0/sound/soc/codecs/cs42l42.c @@ -91,7 +91,7 @@ { CS42L42_ASP_RX_INT_MASK, 0x1F }, { CS42L42_ASP_TX_INT_MASK, 0x0F }, { CS42L42_CODEC_INT_MASK, 0x03 }, - { CS42L42_SRCPL_INT_MASK, 0xFF }, + { CS42L42_SRCPL_INT_MASK, 0x7F }, { CS42L42_VPMON_INT_MASK, 0x01 }, { CS42L42_PLL_LOCK_INT_MASK, 0x01 }, { CS42L42_TSRS_PLUG_INT_MASK, 0x0F }, @@ -128,7 +128,7 @@ { CS42L42_MIXER_CHA_VOL, 0x3F }, { CS42L42_MIXER_ADC_VOL, 0x3F }, { CS42L42_MIXER_CHB_VOL, 0x3F }, - { CS42L42_EQ_COEF_IN0, 0x22 }, + { CS42L42_EQ_COEF_IN0, 0x00 }, { CS42L42_EQ_COEF_IN1, 0x00 }, { CS42L42_EQ_COEF_IN2, 0x00 }, { CS42L42_EQ_COEF_IN3, 0x00 }, @@ -403,7 +403,7 @@ .use_single_write = true, }; -static DECLARE_TLV_DB_SCALE(adc_tlv, -9600, 100, false); +static DECLARE_TLV_DB_SCALE(adc_tlv, -9700, 100, true); static DECLARE_TLV_DB_SCALE(mixer_tlv, -6300, 100, true); static const char * const cs42l42_hpf_freq_text[] = { @@ -423,34 +423,23 @@ CS42L42_ADC_WNF_CF_SHIFT, cs42l42_wnf3_freq_text); -static const char * const cs42l42_wnf05_freq_text[] = { - "280Hz", "315Hz", "350Hz", "385Hz", - "420Hz", "455Hz", "490Hz", "525Hz" -}; - -static SOC_ENUM_SINGLE_DECL(cs42l42_wnf05_freq_enum, CS42L42_ADC_WNF_HPF_CTL, - CS42L42_ADC_WNF_CF_SHIFT, - cs42l42_wnf05_freq_text); - static const struct snd_kcontrol_new cs42l42_snd_controls[] = { /* ADC Volume and Filter Controls */ SOC_SINGLE("ADC Notch Switch", CS42L42_ADC_CTL, - CS42L42_ADC_NOTCH_DIS_SHIFT, true, false), + CS42L42_ADC_NOTCH_DIS_SHIFT, true, true), SOC_SINGLE("ADC Weak Force Switch", CS42L42_ADC_CTL, CS42L42_ADC_FORCE_WEAK_VCM_SHIFT, true, false), SOC_SINGLE("ADC Invert Switch", CS42L42_ADC_CTL, CS42L42_ADC_INV_SHIFT, true, false), SOC_SINGLE("ADC Boost Switch", CS42L42_ADC_CTL, CS42L42_ADC_DIG_BOOST_SHIFT, true, false), - SOC_SINGLE_SX_TLV("ADC Volume", CS42L42_ADC_VOLUME, - CS42L42_ADC_VOL_SHIFT, 0xA0, 0x6C, adc_tlv), + SOC_SINGLE_S8_TLV("ADC Volume", CS42L42_ADC_VOLUME, -97, 12, adc_tlv), SOC_SINGLE("ADC WNF Switch", CS42L42_ADC_WNF_HPF_CTL, CS42L42_ADC_WNF_EN_SHIFT, true, false), SOC_SINGLE("ADC HPF Switch", CS42L42_ADC_WNF_HPF_CTL, CS42L42_ADC_HPF_EN_SHIFT, true, false), SOC_ENUM("HPF Corner Freq", cs42l42_hpf_freq_enum), SOC_ENUM("WNF 3dB Freq", cs42l42_wnf3_freq_enum), - SOC_ENUM("WNF 05dB Freq", cs42l42_wnf05_freq_enum), /* DAC Volume and Filter Controls */ SOC_SINGLE("DACA Invert Switch", CS42L42_DAC_CTL1, @@ -669,15 +658,6 @@ CS42L42_FSYNC_PULSE_WIDTH_MASK, CS42L42_FRAC1_VAL(fsync - 1) << CS42L42_FSYNC_PULSE_WIDTH_SHIFT); - snd_soc_component_update_bits(component, - CS42L42_ASP_FRM_CFG, - CS42L42_ASP_5050_MASK, - CS42L42_ASP_5050_MASK); - /* Set the frame delay to 1.0 SCLK clocks */ - snd_soc_component_update_bits(component, CS42L42_ASP_FRM_CFG, - CS42L42_ASP_FSD_MASK, - CS42L42_ASP_FSD_1_0 << - CS42L42_ASP_FSD_SHIFT); /* Set the sample rates (96k or lower) */ snd_soc_component_update_bits(component, CS42L42_FS_RATE_EN, CS42L42_FS_EN_MASK, @@ -773,7 +753,18 @@ /* interface format */ switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { case SND_SOC_DAIFMT_I2S: - case SND_SOC_DAIFMT_LEFT_J: + /* + * 5050 mode, frame starts on falling edge of LRCLK, + * frame delayed by 1.0 SCLKs + */ + snd_soc_component_update_bits(component, + CS42L42_ASP_FRM_CFG, + CS42L42_ASP_STP_MASK | + CS42L42_ASP_5050_MASK | + CS42L42_ASP_FSD_MASK, + CS42L42_ASP_5050_MASK | + (CS42L42_ASP_FSD_1_0 << + CS42L42_ASP_FSD_SHIFT)); break; default: return -EINVAL; @@ -1807,8 +1798,9 @@ NULL, cs42l42_irq_thread, IRQF_ONESHOT | IRQF_TRIGGER_LOW, "cs42l42", cs42l42); - - if (ret != 0) + if (ret == -EPROBE_DEFER) + goto err_disable; + else if (ret != 0) dev_err(&i2c_client->dev, "Failed to request IRQ: %d\n", ret); diff -u linux-azure-5.4.0/sound/soc/codecs/cs42l42.h linux-azure-5.4.0/sound/soc/codecs/cs42l42.h --- linux-azure-5.4.0/sound/soc/codecs/cs42l42.h +++ linux-azure-5.4.0/sound/soc/codecs/cs42l42.h @@ -77,7 +77,7 @@ #define CS42L42_HP_PDN_SHIFT 3 #define CS42L42_HP_PDN_MASK (1 << CS42L42_HP_PDN_SHIFT) #define CS42L42_ADC_PDN_SHIFT 2 -#define CS42L42_ADC_PDN_MASK (1 << CS42L42_HP_PDN_SHIFT) +#define CS42L42_ADC_PDN_MASK (1 << CS42L42_ADC_PDN_SHIFT) #define CS42L42_PDN_ALL_SHIFT 0 #define CS42L42_PDN_ALL_MASK (1 << CS42L42_PDN_ALL_SHIFT) diff -u linux-azure-5.4.0/sound/soc/codecs/cs42l56.c linux-azure-5.4.0/sound/soc/codecs/cs42l56.c --- linux-azure-5.4.0/sound/soc/codecs/cs42l56.c +++ linux-azure-5.4.0/sound/soc/codecs/cs42l56.c @@ -391,9 +391,9 @@ SOC_DOUBLE("ADC Boost Switch", CS42L56_GAIN_BIAS_CTL, 3, 2, 1, 1), SOC_DOUBLE_R_SX_TLV("Headphone Volume", CS42L56_HPA_VOLUME, - CS42L56_HPB_VOLUME, 0, 0x84, 0x48, hl_tlv), + CS42L56_HPB_VOLUME, 0, 0x44, 0x48, hl_tlv), SOC_DOUBLE_R_SX_TLV("LineOut Volume", CS42L56_LOA_VOLUME, - CS42L56_LOB_VOLUME, 0, 0x84, 0x48, hl_tlv), + CS42L56_LOB_VOLUME, 0, 0x44, 0x48, hl_tlv), SOC_SINGLE_TLV("Bass Shelving Volume", CS42L56_TONE_CTL, 0, 0x00, 1, tone_tlv), diff -u linux-azure-5.4.0/sound/soc/codecs/max98090.c linux-azure-5.4.0/sound/soc/codecs/max98090.c --- linux-azure-5.4.0/sound/soc/codecs/max98090.c +++ linux-azure-5.4.0/sound/soc/codecs/max98090.c @@ -413,6 +413,9 @@ val = (val >> mc->shift) & mask; + if (sel < 0 || sel > mc->max) + return -EINVAL; + *select = sel; /* Setting a volume is only valid if it is already On */ @@ -427,7 +430,7 @@ mask << mc->shift, sel << mc->shift); - return 0; + return *select != val; } static const char *max98090_perf_pwr_text[] = diff -u linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-analog.c linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-analog.c --- linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-analog.c +++ linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-analog.c @@ -1195,8 +1195,10 @@ } irq = platform_get_irq_byname(pdev, "mbhc_switch_int"); - if (irq < 0) - return irq; + if (irq < 0) { + ret = irq; + goto err_disable_clk; + } ret = devm_request_threaded_irq(dev, irq, NULL, pm8916_mbhc_switch_irq_handler, @@ -1208,8 +1210,10 @@ if (priv->mbhc_btn_enabled) { irq = platform_get_irq_byname(pdev, "mbhc_but_press_det"); - if (irq < 0) - return irq; + if (irq < 0) { + ret = irq; + goto err_disable_clk; + } ret = devm_request_threaded_irq(dev, irq, NULL, mbhc_btn_press_irq_handler, @@ -1220,8 +1224,10 @@ dev_err(dev, "cannot request mbhc button press irq\n"); irq = platform_get_irq_byname(pdev, "mbhc_but_rel_det"); - if (irq < 0) - return irq; + if (irq < 0) { + ret = irq; + goto err_disable_clk; + } ret = devm_request_threaded_irq(dev, irq, NULL, mbhc_btn_release_irq_handler, @@ -1238,6 +1244,10 @@ return devm_snd_soc_register_component(dev, &pm8916_wcd_analog, pm8916_wcd_analog_dai, ARRAY_SIZE(pm8916_wcd_analog_dai)); + +err_disable_clk: + clk_disable_unprepare(priv->mclk); + return ret; } static int pm8916_wcd_analog_spmi_remove(struct platform_device *pdev) diff -u linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-digital.c linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-digital.c --- linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-digital.c +++ linux-azure-5.4.0/sound/soc/codecs/msm8916-wcd-digital.c @@ -328,8 +328,8 @@ static const struct snd_kcontrol_new rx2_mix2_inp1_mux = SOC_DAPM_ENUM( "RX2 MIX2 INP1 Mux", rx2_mix2_inp1_chain_enum); -/* Digital Gain control -38.4 dB to +38.4 dB in 0.3 dB steps */ -static const DECLARE_TLV_DB_SCALE(digital_gain, -3840, 30, 0); +/* Digital Gain control -84 dB to +40 dB in 1 dB steps */ +static const DECLARE_TLV_DB_SCALE(digital_gain, -8400, 100, -8400); /* Cutoff Freq for High Pass Filter at -3dB */ static const char * const hpf_cutoff_text[] = { @@ -510,15 +510,15 @@ static const struct snd_kcontrol_new msm8916_wcd_digital_snd_controls[] = { SOC_SINGLE_S8_TLV("RX1 Digital Volume", LPASS_CDC_RX1_VOL_CTL_B2_CTL, - -128, 127, digital_gain), + -84, 40, digital_gain), SOC_SINGLE_S8_TLV("RX2 Digital Volume", LPASS_CDC_RX2_VOL_CTL_B2_CTL, - -128, 127, digital_gain), + -84, 40, digital_gain), SOC_SINGLE_S8_TLV("RX3 Digital Volume", LPASS_CDC_RX3_VOL_CTL_B2_CTL, - -128, 127, digital_gain), + -84, 40, digital_gain), SOC_SINGLE_S8_TLV("TX1 Digital Volume", LPASS_CDC_TX1_VOL_CTL_GAIN, - -128, 127, digital_gain), + -84, 40, digital_gain), SOC_SINGLE_S8_TLV("TX2 Digital Volume", LPASS_CDC_TX2_VOL_CTL_GAIN, - -128, 127, digital_gain), + -84, 40, digital_gain), SOC_ENUM("TX1 HPF Cutoff", tx1_hpf_cutoff_enum), SOC_ENUM("TX2 HPF Cutoff", tx2_hpf_cutoff_enum), SOC_SINGLE("TX1 HPF Switch", LPASS_CDC_TX1_MUX_CTL, 3, 1, 0), @@ -553,22 +553,22 @@ WCD_IIR_FILTER_CTL("IIR2 Band3", IIR2, BAND3), WCD_IIR_FILTER_CTL("IIR2 Band4", IIR2, BAND4), WCD_IIR_FILTER_CTL("IIR2 Band5", IIR2, BAND5), - SOC_SINGLE_SX_TLV("IIR1 INP1 Volume", LPASS_CDC_IIR1_GAIN_B1_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR1 INP2 Volume", LPASS_CDC_IIR1_GAIN_B2_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR1 INP3 Volume", LPASS_CDC_IIR1_GAIN_B3_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR1 INP4 Volume", LPASS_CDC_IIR1_GAIN_B4_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR2 INP1 Volume", LPASS_CDC_IIR2_GAIN_B1_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR2 INP2 Volume", LPASS_CDC_IIR2_GAIN_B2_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR2 INP3 Volume", LPASS_CDC_IIR2_GAIN_B3_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("IIR2 INP4 Volume", LPASS_CDC_IIR2_GAIN_B4_CTL, - 0, -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR1 INP1 Volume", LPASS_CDC_IIR1_GAIN_B1_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR1 INP2 Volume", LPASS_CDC_IIR1_GAIN_B2_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR1 INP3 Volume", LPASS_CDC_IIR1_GAIN_B3_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR1 INP4 Volume", LPASS_CDC_IIR1_GAIN_B4_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR2 INP1 Volume", LPASS_CDC_IIR2_GAIN_B1_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR2 INP2 Volume", LPASS_CDC_IIR2_GAIN_B2_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR2 INP3 Volume", LPASS_CDC_IIR2_GAIN_B3_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("IIR2 INP4 Volume", LPASS_CDC_IIR2_GAIN_B4_CTL, + -84, 40, digital_gain), }; @@ -1201,14 +1201,24 @@ ret = clk_prepare_enable(priv->mclk); if (ret < 0) { dev_err(dev, "failed to enable mclk %d\n", ret); - return ret; + goto err_clk; } dev_set_drvdata(dev, priv); - return devm_snd_soc_register_component(dev, &msm8916_wcd_digital, + ret = devm_snd_soc_register_component(dev, &msm8916_wcd_digital, msm8916_wcd_digital_dai, ARRAY_SIZE(msm8916_wcd_digital_dai)); + if (ret) + goto err_mclk; + + return 0; + +err_mclk: + clk_disable_unprepare(priv->mclk); +err_clk: + clk_disable_unprepare(priv->ahbclk); + return ret; } static int msm8916_wcd_digital_remove(struct platform_device *pdev) diff -u linux-azure-5.4.0/sound/soc/codecs/rt5645.c linux-azure-5.4.0/sound/soc/codecs/rt5645.c --- linux-azure-5.4.0/sound/soc/codecs/rt5645.c +++ linux-azure-5.4.0/sound/soc/codecs/rt5645.c @@ -4074,9 +4074,14 @@ if (i2c->irq) free_irq(i2c->irq, rt5645); + /* + * Since the rt5645_btn_check_callback() can queue jack_detect_work, + * the timer need to be delted first + */ + del_timer_sync(&rt5645->btn_check_timer); + cancel_delayed_work_sync(&rt5645->jack_detect_work); cancel_delayed_work_sync(&rt5645->rcclock_work); - del_timer_sync(&rt5645->btn_check_timer); regulator_bulk_disable(ARRAY_SIZE(rt5645->supplies), rt5645->supplies); diff -u linux-azure-5.4.0/sound/soc/codecs/rt5659.c linux-azure-5.4.0/sound/soc/codecs/rt5659.c --- linux-azure-5.4.0/sound/soc/codecs/rt5659.c +++ linux-azure-5.4.0/sound/soc/codecs/rt5659.c @@ -2470,13 +2470,18 @@ return 0; } -static const struct snd_soc_dapm_widget rt5659_dapm_widgets[] = { +static const struct snd_soc_dapm_widget rt5659_particular_dapm_widgets[] = { SND_SOC_DAPM_SUPPLY("LDO2", RT5659_PWR_ANLG_3, RT5659_PWR_LDO2_BIT, 0, NULL, 0), - SND_SOC_DAPM_SUPPLY("PLL", RT5659_PWR_ANLG_3, RT5659_PWR_PLL_BIT, 0, - NULL, 0), + SND_SOC_DAPM_SUPPLY("MICBIAS1", RT5659_PWR_ANLG_2, RT5659_PWR_MB1_BIT, + 0, NULL, 0), SND_SOC_DAPM_SUPPLY("Mic Det Power", RT5659_PWR_VOL, RT5659_PWR_MIC_DET_BIT, 0, NULL, 0), +}; + +static const struct snd_soc_dapm_widget rt5659_dapm_widgets[] = { + SND_SOC_DAPM_SUPPLY("PLL", RT5659_PWR_ANLG_3, RT5659_PWR_PLL_BIT, 0, + NULL, 0), SND_SOC_DAPM_SUPPLY("Mono Vref", RT5659_PWR_ANLG_1, RT5659_PWR_VREF3_BIT, 0, NULL, 0), @@ -2501,8 +2506,6 @@ RT5659_ADC_MONO_R_ASRC_SFT, 0, NULL, 0), /* Input Side */ - SND_SOC_DAPM_SUPPLY("MICBIAS1", RT5659_PWR_ANLG_2, RT5659_PWR_MB1_BIT, - 0, NULL, 0), SND_SOC_DAPM_SUPPLY("MICBIAS2", RT5659_PWR_ANLG_2, RT5659_PWR_MB2_BIT, 0, NULL, 0), SND_SOC_DAPM_SUPPLY("MICBIAS3", RT5659_PWR_ANLG_2, RT5659_PWR_MB3_BIT, @@ -3697,10 +3700,23 @@ static int rt5659_probe(struct snd_soc_component *component) { + struct snd_soc_dapm_context *dapm = + snd_soc_component_get_dapm(component); struct rt5659_priv *rt5659 = snd_soc_component_get_drvdata(component); rt5659->component = component; + switch (rt5659->pdata.jd_src) { + case RT5659_JD_HDA_HEADER: + break; + + default: + snd_soc_dapm_new_controls(dapm, + rt5659_particular_dapm_widgets, + ARRAY_SIZE(rt5659_particular_dapm_widgets)); + break; + } + return 0; } diff -u linux-azure-5.4.0/sound/soc/codecs/rt5682.c linux-azure-5.4.0/sound/soc/codecs/rt5682.c --- linux-azure-5.4.0/sound/soc/codecs/rt5682.c +++ linux-azure-5.4.0/sound/soc/codecs/rt5682.c @@ -1052,11 +1052,13 @@ container_of(work, struct rt5682_priv, jack_detect_work.work); int val, btn_type; - while (!rt5682->component) - usleep_range(10000, 15000); - - while (!rt5682->component->card->instantiated) - usleep_range(10000, 15000); + if (!rt5682->component || !rt5682->component->card || + !rt5682->component->card->instantiated) { + /* card not yet ready, try later */ + mod_delayed_work(system_power_efficient_wq, + &rt5682->jack_detect_work, msecs_to_jiffies(15)); + return; + } mutex_lock(&rt5682->calibrate_mutex); diff -u linux-azure-5.4.0/sound/soc/codecs/sgtl5000.c linux-azure-5.4.0/sound/soc/codecs/sgtl5000.c --- linux-azure-5.4.0/sound/soc/codecs/sgtl5000.c +++ linux-azure-5.4.0/sound/soc/codecs/sgtl5000.c @@ -1788,6 +1788,9 @@ { struct sgtl5000_priv *sgtl5000 = i2c_get_clientdata(client); + regmap_write(sgtl5000->regmap, SGTL5000_CHIP_DIG_POWER, SGTL5000_DIG_POWER_DEFAULT); + regmap_write(sgtl5000->regmap, SGTL5000_CHIP_ANA_POWER, SGTL5000_ANA_POWER_DEFAULT); + clk_disable_unprepare(sgtl5000->mclk); regulator_bulk_disable(sgtl5000->num_supplies, sgtl5000->supplies); regulator_bulk_free(sgtl5000->num_supplies, sgtl5000->supplies); @@ -1795,6 +1798,11 @@ return 0; } +static void sgtl5000_i2c_shutdown(struct i2c_client *client) +{ + sgtl5000_i2c_remove(client); +} + static const struct i2c_device_id sgtl5000_id[] = { {"sgtl5000", 0}, {}, @@ -1815,6 +1823,7 @@ }, .probe = sgtl5000_i2c_probe, .remove = sgtl5000_i2c_remove, + .shutdown = sgtl5000_i2c_shutdown, .id_table = sgtl5000_id, }; diff -u linux-azure-5.4.0/sound/soc/codecs/sgtl5000.h linux-azure-5.4.0/sound/soc/codecs/sgtl5000.h --- linux-azure-5.4.0/sound/soc/codecs/sgtl5000.h +++ linux-azure-5.4.0/sound/soc/codecs/sgtl5000.h @@ -80,6 +80,7 @@ /* * SGTL5000_CHIP_DIG_POWER */ +#define SGTL5000_DIG_POWER_DEFAULT 0x0000 #define SGTL5000_ADC_EN 0x0040 #define SGTL5000_DAC_EN 0x0020 #define SGTL5000_DAP_POWERUP 0x0010 diff -u linux-azure-5.4.0/sound/soc/codecs/wcd9335.c linux-azure-5.4.0/sound/soc/codecs/wcd9335.c --- linux-azure-5.4.0/sound/soc/codecs/wcd9335.c +++ linux-azure-5.4.0/sound/soc/codecs/wcd9335.c @@ -1971,8 +1971,8 @@ case SNDRV_PCM_TRIGGER_STOP: case SNDRV_PCM_TRIGGER_SUSPEND: case SNDRV_PCM_TRIGGER_PAUSE_PUSH: - slim_stream_unprepare(dai_data->sruntime); slim_stream_disable(dai_data->sruntime); + slim_stream_unprepare(dai_data->sruntime); break; default: break; @@ -2252,51 +2252,42 @@ static const struct snd_kcontrol_new wcd9335_snd_controls[] = { /* -84dB min - 40dB max */ - SOC_SINGLE_SX_TLV("RX0 Digital Volume", WCD9335_CDC_RX0_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX1 Digital Volume", WCD9335_CDC_RX1_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX2 Digital Volume", WCD9335_CDC_RX2_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX3 Digital Volume", WCD9335_CDC_RX3_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX4 Digital Volume", WCD9335_CDC_RX4_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX5 Digital Volume", WCD9335_CDC_RX5_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX6 Digital Volume", WCD9335_CDC_RX6_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX7 Digital Volume", WCD9335_CDC_RX7_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX8 Digital Volume", WCD9335_CDC_RX8_RX_VOL_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX0 Mix Digital Volume", - WCD9335_CDC_RX0_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX1 Mix Digital Volume", - WCD9335_CDC_RX1_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX2 Mix Digital Volume", - WCD9335_CDC_RX2_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX3 Mix Digital Volume", - WCD9335_CDC_RX3_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX4 Mix Digital Volume", - WCD9335_CDC_RX4_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX5 Mix Digital Volume", - WCD9335_CDC_RX5_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX6 Mix Digital Volume", - WCD9335_CDC_RX6_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX7 Mix Digital Volume", - WCD9335_CDC_RX7_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), - SOC_SINGLE_SX_TLV("RX8 Mix Digital Volume", - WCD9335_CDC_RX8_RX_VOL_MIX_CTL, - 0, -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX0 Digital Volume", WCD9335_CDC_RX0_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX1 Digital Volume", WCD9335_CDC_RX1_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX2 Digital Volume", WCD9335_CDC_RX2_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX3 Digital Volume", WCD9335_CDC_RX3_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX4 Digital Volume", WCD9335_CDC_RX4_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX5 Digital Volume", WCD9335_CDC_RX5_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX6 Digital Volume", WCD9335_CDC_RX6_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX7 Digital Volume", WCD9335_CDC_RX7_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX8 Digital Volume", WCD9335_CDC_RX8_RX_VOL_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX0 Mix Digital Volume", WCD9335_CDC_RX0_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX1 Mix Digital Volume", WCD9335_CDC_RX1_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX2 Mix Digital Volume", WCD9335_CDC_RX2_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX3 Mix Digital Volume", WCD9335_CDC_RX3_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX4 Mix Digital Volume", WCD9335_CDC_RX4_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX5 Mix Digital Volume", WCD9335_CDC_RX5_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX6 Mix Digital Volume", WCD9335_CDC_RX6_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX7 Mix Digital Volume", WCD9335_CDC_RX7_RX_VOL_MIX_CTL, + -84, 40, digital_gain), + SOC_SINGLE_S8_TLV("RX8 Mix Digital Volume", WCD9335_CDC_RX8_RX_VOL_MIX_CTL, + -84, 40, digital_gain), SOC_ENUM("RX INT0_1 HPF cut off", cf_int0_1_enum), SOC_ENUM("RX INT0_2 HPF cut off", cf_int0_2_enum), SOC_ENUM("RX INT1_1 HPF cut off", cf_int1_1_enum), @@ -4076,6 +4067,16 @@ return ret; } +static void wcd9335_teardown_irqs(struct wcd9335_codec *wcd) +{ + int i; + + /* disable interrupts on all slave ports */ + for (i = 0; i < WCD9335_SLIM_NUM_PORT_REG; i++) + regmap_write(wcd->if_regmap, WCD9335_SLIM_PGD_PORT_INT_EN0 + i, + 0x00); +} + static void wcd9335_cdc_sido_ccl_enable(struct wcd9335_codec *wcd, bool ccl_flag) { @@ -4844,6 +4845,7 @@ static int wcd9335_codec_probe(struct snd_soc_component *component) { struct wcd9335_codec *wcd = dev_get_drvdata(component->dev); + int ret; int i; snd_soc_component_init_regmap(component, wcd->regmap); @@ -4861,7 +4863,15 @@ for (i = 0; i < NUM_CODEC_DAIS; i++) INIT_LIST_HEAD(&wcd->dai[i].slim_ch_list); - return wcd9335_setup_irqs(wcd); + ret = wcd9335_setup_irqs(wcd); + if (ret) + goto free_clsh_ctrl; + + return 0; + +free_clsh_ctrl: + wcd_clsh_ctrl_free(wcd->clsh_ctrl); + return ret; } static void wcd9335_codec_remove(struct snd_soc_component *comp) @@ -4869,7 +4879,7 @@ struct wcd9335_codec *wcd = dev_get_drvdata(comp->dev); wcd_clsh_ctrl_free(wcd->clsh_ctrl); - free_irq(regmap_irq_get_virq(wcd->irq_data, WCD9335_IRQ_SLIMBUS), wcd); + wcd9335_teardown_irqs(wcd); } static int wcd9335_codec_set_sysclk(struct snd_soc_component *comp, diff -u linux-azure-5.4.0/sound/soc/codecs/wm8958-dsp2.c linux-azure-5.4.0/sound/soc/codecs/wm8958-dsp2.c --- linux-azure-5.4.0/sound/soc/codecs/wm8958-dsp2.c +++ linux-azure-5.4.0/sound/soc/codecs/wm8958-dsp2.c @@ -534,7 +534,7 @@ wm8958_dsp_apply(component, mbc, wm8994->mbc_ena[mbc]); - return 0; + return 1; } #define WM8958_MBC_SWITCH(xname, xval) {\ @@ -660,7 +660,7 @@ wm8958_dsp_apply(component, vss, wm8994->vss_ena[vss]); - return 0; + return 1; } @@ -734,7 +734,7 @@ wm8958_dsp_apply(component, hpf % 3, ucontrol->value.integer.value[0]); - return 0; + return 1; } #define WM8958_HPF_SWITCH(xname, xval) {\ @@ -828,7 +828,7 @@ wm8958_dsp_apply(component, eq, ucontrol->value.integer.value[0]); - return 0; + return 1; } #define WM8958_ENH_EQ_SWITCH(xname, xval) {\ diff -u linux-azure-5.4.0/sound/soc/codecs/wm8960.c linux-azure-5.4.0/sound/soc/codecs/wm8960.c --- linux-azure-5.4.0/sound/soc/codecs/wm8960.c +++ linux-azure-5.4.0/sound/soc/codecs/wm8960.c @@ -752,9 +752,16 @@ int i, j, k; int ret; - if (!(iface1 & (1<<6))) { - dev_dbg(component->dev, - "Codec is slave mode, no need to configure clock\n"); + /* + * For Slave mode clocking should still be configured, + * so this if statement should be removed, but some platform + * may not work if the sysclk is not configured, to avoid such + * compatible issue, just add '!wm8960->sysclk' condition in + * this if statement. + */ + if (!(iface1 & (1 << 6)) && !wm8960->sysclk) { + dev_warn(component->dev, + "slave mode, but proceeding with no clock configuration\n"); return 0; } diff -u linux-azure-5.4.0/sound/soc/codecs/wm8962.c linux-azure-5.4.0/sound/soc/codecs/wm8962.c --- linux-azure-5.4.0/sound/soc/codecs/wm8962.c +++ linux-azure-5.4.0/sound/soc/codecs/wm8962.c @@ -3854,6 +3854,7 @@ #endif static const struct dev_pm_ops wm8962_pm = { + SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume) SET_RUNTIME_PM_OPS(wm8962_runtime_suspend, wm8962_runtime_resume, NULL) }; diff -u linux-azure-5.4.0/sound/soc/codecs/wm8997.c linux-azure-5.4.0/sound/soc/codecs/wm8997.c --- linux-azure-5.4.0/sound/soc/codecs/wm8997.c +++ linux-azure-5.4.0/sound/soc/codecs/wm8997.c @@ -1156,9 +1156,6 @@ regmap_update_bits(arizona->regmap, wm8997_digital_vu[i], WM8997_DIG_VU, WM8997_DIG_VU); - pm_runtime_enable(&pdev->dev); - pm_runtime_idle(&pdev->dev); - arizona_init_common(arizona); ret = arizona_init_vol_limit(arizona); @@ -1177,6 +1174,9 @@ goto err_spk_irqs; } + pm_runtime_enable(&pdev->dev); + pm_runtime_idle(&pdev->dev); + return ret; err_spk_irqs: diff -u linux-azure-5.4.0/sound/soc/codecs/wm_adsp.c linux-azure-5.4.0/sound/soc/codecs/wm_adsp.c --- linux-azure-5.4.0/sound/soc/codecs/wm_adsp.c +++ linux-azure-5.4.0/sound/soc/codecs/wm_adsp.c @@ -791,7 +791,7 @@ struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; struct wm_adsp *dsp = snd_soc_component_get_drvdata(component); - int ret = 0; + int ret = 1; if (ucontrol->value.enumerated.item[0] == dsp[e->shift_l].fw) return 0; diff -u linux-azure-5.4.0/sound/soc/fsl/fsl_sai.h linux-azure-5.4.0/sound/soc/fsl/fsl_sai.h --- linux-azure-5.4.0/sound/soc/fsl/fsl_sai.h +++ linux-azure-5.4.0/sound/soc/fsl/fsl_sai.h @@ -67,8 +67,8 @@ #define FSL_SAI_xCR3(tx, ofs) (tx ? FSL_SAI_TCR3(ofs) : FSL_SAI_RCR3(ofs)) #define FSL_SAI_xCR4(tx, ofs) (tx ? FSL_SAI_TCR4(ofs) : FSL_SAI_RCR4(ofs)) #define FSL_SAI_xCR5(tx, ofs) (tx ? FSL_SAI_TCR5(ofs) : FSL_SAI_RCR5(ofs)) -#define FSL_SAI_xDR(tx, ofs) (tx ? FSL_SAI_TDR(ofs) : FSL_SAI_RDR(ofs)) -#define FSL_SAI_xFR(tx, ofs) (tx ? FSL_SAI_TFR(ofs) : FSL_SAI_RFR(ofs)) +#define FSL_SAI_xDR0(tx) (tx ? FSL_SAI_TDR0 : FSL_SAI_RDR0) +#define FSL_SAI_xFR0(tx) (tx ? FSL_SAI_TFR0 : FSL_SAI_RFR0) #define FSL_SAI_xMR(tx) (tx ? FSL_SAI_TMR : FSL_SAI_RMR) /* SAI Transmit/Receive Control Register */ diff -u linux-azure-5.4.0/sound/soc/fsl/imx-es8328.c linux-azure-5.4.0/sound/soc/fsl/imx-es8328.c --- linux-azure-5.4.0/sound/soc/fsl/imx-es8328.c +++ linux-azure-5.4.0/sound/soc/fsl/imx-es8328.c @@ -87,6 +87,7 @@ if (int_port > MUX_PORT_MAX || int_port == 0) { dev_err(dev, "mux-int-port: hardware only has %d mux ports\n", MUX_PORT_MAX); + ret = -EINVAL; goto fail; } diff -u linux-azure-5.4.0/sound/soc/generic/audio-graph-card.c linux-azure-5.4.0/sound/soc/generic/audio-graph-card.c --- linux-azure-5.4.0/sound/soc/generic/audio-graph-card.c +++ linux-azure-5.4.0/sound/soc/generic/audio-graph-card.c @@ -149,8 +149,10 @@ * if he unbinded CPU or Codec. */ ret = snd_soc_get_dai_name(&args, &dlc->dai_name); - if (ret < 0) + if (ret < 0) { + of_node_put(node); return ret; + } dlc->of_node = node; diff -u linux-azure-5.4.0/sound/soc/img/img-i2s-in.c linux-azure-5.4.0/sound/soc/img/img-i2s-in.c --- linux-azure-5.4.0/sound/soc/img/img-i2s-in.c +++ linux-azure-5.4.0/sound/soc/img/img-i2s-in.c @@ -464,7 +464,7 @@ if (ret) goto err_pm_disable; } - ret = pm_runtime_get_sync(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret < 0) goto err_suspend; diff -u linux-azure-5.4.0/sound/soc/intel/atom/sst-mfld-platform-pcm.c linux-azure-5.4.0/sound/soc/intel/atom/sst-mfld-platform-pcm.c --- linux-azure-5.4.0/sound/soc/intel/atom/sst-mfld-platform-pcm.c +++ linux-azure-5.4.0/sound/soc/intel/atom/sst-mfld-platform-pcm.c @@ -127,7 +127,7 @@ snd_pcm_uframes_t period_size; ssize_t periodbytes; ssize_t buffer_bytes = snd_pcm_lib_buffer_bytes(substream); - u32 buffer_addr = virt_to_phys(substream->dma_buffer.area); + u32 buffer_addr = virt_to_phys(substream->runtime->dma_area); channels = substream->runtime->channels; period_size = substream->runtime->period_size; @@ -233,7 +233,6 @@ /* set codec params and inform SST driver the same */ sst_fill_pcm_params(substream, ¶m); sst_fill_alloc_params(substream, &alloc_params); - substream->runtime->dma_area = substream->dma_buffer.area; str_params.sparams = param; str_params.aparams = alloc_params; str_params.codec = SST_CODEC_TYPE_PCM; diff -u linux-azure-5.4.0/sound/soc/intel/boards/bytcr_rt5640.c linux-azure-5.4.0/sound/soc/intel/boards/bytcr_rt5640.c --- linux-azure-5.4.0/sound/soc/intel/boards/bytcr_rt5640.c +++ linux-azure-5.4.0/sound/soc/intel/boards/bytcr_rt5640.c @@ -284,9 +284,6 @@ static const struct snd_soc_dapm_route byt_rt5640_audio_map[] = { {"Headphone", NULL, "Platform Clock"}, {"Headset Mic", NULL, "Platform Clock"}, - {"Internal Mic", NULL, "Platform Clock"}, - {"Speaker", NULL, "Platform Clock"}, - {"Headset Mic", NULL, "MICBIAS1"}, {"IN2P", NULL, "Headset Mic"}, {"Headphone", NULL, "HPOL"}, @@ -294,19 +291,23 @@ }; static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic1_map[] = { + {"Internal Mic", NULL, "Platform Clock"}, {"DMIC1", NULL, "Internal Mic"}, }; static const struct snd_soc_dapm_route byt_rt5640_intmic_dmic2_map[] = { + {"Internal Mic", NULL, "Platform Clock"}, {"DMIC2", NULL, "Internal Mic"}, }; static const struct snd_soc_dapm_route byt_rt5640_intmic_in1_map[] = { + {"Internal Mic", NULL, "Platform Clock"}, {"Internal Mic", NULL, "MICBIAS1"}, {"IN1P", NULL, "Internal Mic"}, }; static const struct snd_soc_dapm_route byt_rt5640_intmic_in3_map[] = { + {"Internal Mic", NULL, "Platform Clock"}, {"Internal Mic", NULL, "MICBIAS1"}, {"IN3P", NULL, "Internal Mic"}, }; @@ -348,6 +349,7 @@ }; static const struct snd_soc_dapm_route byt_rt5640_stereo_spk_map[] = { + {"Speaker", NULL, "Platform Clock"}, {"Speaker", NULL, "SPOLP"}, {"Speaker", NULL, "SPOLN"}, {"Speaker", NULL, "SPORP"}, @@ -355,6 +357,7 @@ }; static const struct snd_soc_dapm_route byt_rt5640_mono_spk_map[] = { + {"Speaker", NULL, "Platform Clock"}, {"Speaker", NULL, "SPOLP"}, {"Speaker", NULL, "SPOLN"}, }; @@ -568,6 +571,17 @@ BYT_RT5640_SSP0_AIF1 | BYT_RT5640_MCLK_EN), }, + { /* Glavey TM800A550L */ + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"), + DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"), + /* Above strings are too generic, also match on BIOS version */ + DMI_MATCH(DMI_BIOS_VERSION, "ZY-8-BI-PX4S70VTR400-X423B-005-D"), + }, + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS | + BYT_RT5640_SSP0_AIF1 | + BYT_RT5640_MCLK_EN), + }, { .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), @@ -635,6 +649,20 @@ BYT_RT5640_MONO_SPEAKER | BYT_RT5640_MCLK_EN), }, + { /* Lenovo Miix 3-830 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 3-830"), + }, + .driver_data = (void *)(BYT_RT5640_IN1_MAP | + BYT_RT5640_JD_SRC_JD2_IN4N | + BYT_RT5640_OVCD_TH_2000UA | + BYT_RT5640_OVCD_SF_0P75 | + BYT_RT5640_MONO_SPEAKER | + BYT_RT5640_DIFF_MIC | + BYT_RT5640_SSP0_AIF1 | + BYT_RT5640_MCLK_EN), + }, { /* Linx Linx7 tablet */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LINX"), diff -u linux-azure-5.4.0/sound/soc/intel/skylake/skl-topology.c linux-azure-5.4.0/sound/soc/intel/skylake/skl-topology.c --- linux-azure-5.4.0/sound/soc/intel/skylake/skl-topology.c +++ linux-azure-5.4.0/sound/soc/intel/skylake/skl-topology.c @@ -113,7 +113,7 @@ static void skl_dump_mconfig(struct skl_dev *skl, struct skl_module_cfg *mcfg) { - struct skl_module_iface *iface = &mcfg->module->formats[0]; + struct skl_module_iface *iface = &mcfg->module->formats[mcfg->fmt_idx]; dev_dbg(skl->dev, "Dumping config\n"); dev_dbg(skl->dev, "Input Format:\n"); @@ -195,8 +195,8 @@ struct skl_module_fmt *in_fmt, *out_fmt; /* Fixups will be applied to pin 0 only */ - in_fmt = &m_cfg->module->formats[0].inputs[0].fmt; - out_fmt = &m_cfg->module->formats[0].outputs[0].fmt; + in_fmt = &m_cfg->module->formats[m_cfg->fmt_idx].inputs[0].fmt; + out_fmt = &m_cfg->module->formats[m_cfg->fmt_idx].outputs[0].fmt; if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) { if (is_fe) { @@ -239,9 +239,9 @@ /* Since fixups is applied to pin 0 only, ibs, obs needs * change for pin 0 only */ - res = &mcfg->module->resources[0]; - in_fmt = &mcfg->module->formats[0].inputs[0].fmt; - out_fmt = &mcfg->module->formats[0].outputs[0].fmt; + res = &mcfg->module->resources[mcfg->res_idx]; + in_fmt = &mcfg->module->formats[mcfg->fmt_idx].inputs[0].fmt; + out_fmt = &mcfg->module->formats[mcfg->fmt_idx].outputs[0].fmt; if (mcfg->m_type == SKL_MODULE_TYPE_SRCINT) multiplier = 5; @@ -1463,12 +1463,6 @@ struct skl_dev *skl = get_skl_ctx(w->dapm->dev); if (ac->params) { - /* - * Widget data is expected to be stripped of T and L - */ - size -= 2 * sizeof(unsigned int); - data += 2; - if (size > ac->max) return -EINVAL; ac->size = size; @@ -1637,11 +1631,12 @@ struct skl_module_cfg *mconfig, struct skl_pipe_params *params) { - struct skl_module_res *res = &mconfig->module->resources[0]; + struct skl_module_res *res; struct skl_dev *skl = get_skl_ctx(dev); struct skl_module_fmt *format = NULL; u8 cfg_idx = mconfig->pipe->cur_config_idx; + res = &mconfig->module->resources[mconfig->res_idx]; skl_tplg_fill_dma_id(mconfig, params); mconfig->fmt_idx = mconfig->mod_cfg[cfg_idx].fmt_idx; mconfig->res_idx = mconfig->mod_cfg[cfg_idx].res_idx; @@ -1650,9 +1645,9 @@ return 0; if (params->stream == SNDRV_PCM_STREAM_PLAYBACK) - format = &mconfig->module->formats[0].inputs[0].fmt; + format = &mconfig->module->formats[mconfig->fmt_idx].inputs[0].fmt; else - format = &mconfig->module->formats[0].outputs[0].fmt; + format = &mconfig->module->formats[mconfig->fmt_idx].outputs[0].fmt; /* set the hw_params */ format->s_freq = params->s_freq; diff -u linux-azure-5.4.0/sound/soc/qcom/qdsp6/q6routing.c linux-azure-5.4.0/sound/soc/qcom/qdsp6/q6routing.c --- linux-azure-5.4.0/sound/soc/qcom/qdsp6/q6routing.c +++ linux-azure-5.4.0/sound/soc/qcom/qdsp6/q6routing.c @@ -440,9 +440,15 @@ struct session_data *session = &data->sessions[session_id]; if (ucontrol->value.integer.value[0]) { + if (session->port_id == be_id) + return 0; + session->port_id = be_id; snd_soc_dapm_mixer_update_power(dapm, kcontrol, 1, update); } else { + if (session->port_id == -1 || session->port_id != be_id) + return 0; + session->port_id = -1; snd_soc_dapm_mixer_update_power(dapm, kcontrol, 0, update); } diff -u linux-azure-5.4.0/sound/soc/sh/rcar/ssi.c linux-azure-5.4.0/sound/soc/sh/rcar/ssi.c --- linux-azure-5.4.0/sound/soc/sh/rcar/ssi.c +++ linux-azure-5.4.0/sound/soc/sh/rcar/ssi.c @@ -518,7 +518,9 @@ ssi->usrcnt++; - rsnd_mod_power_on(mod); + ret = rsnd_mod_power_on(mod); + if (ret < 0) + return ret; rsnd_ssi_config_init(mod, io); diff -u linux-azure-5.4.0/sound/soc/soc-core.c linux-azure-5.4.0/sound/soc/soc-core.c --- linux-azure-5.4.0/sound/soc/soc-core.c +++ linux-azure-5.4.0/sound/soc/soc-core.c @@ -3176,7 +3176,7 @@ if (!routes) { dev_err(card->dev, "ASoC: Could not allocate DAPM route table\n"); - return -EINVAL; + return -ENOMEM; } for (i = 0; i < num_routes; i++) { @@ -3360,7 +3360,7 @@ for_each_component(pos) { component_of_node = soc_component_to_node(pos); - if (component_of_node != args->np) + if (component_of_node != args->np || !pos->num_dai) continue; ret = snd_soc_component_of_xlate_dai_name(pos, args, dai_name); diff -u linux-azure-5.4.0/sound/soc/soc-dapm.c linux-azure-5.4.0/sound/soc/soc-dapm.c --- linux-azure-5.4.0/sound/soc/soc-dapm.c +++ linux-azure-5.4.0/sound/soc/soc-dapm.c @@ -1676,8 +1676,7 @@ switch (w->id) { case snd_soc_dapm_pre: if (!w->event) - list_for_each_entry_safe_continue(w, n, list, - power_list); + continue; if (event == SND_SOC_DAPM_STREAM_START) ret = w->event(w, @@ -1689,8 +1688,7 @@ case snd_soc_dapm_post: if (!w->event) - list_for_each_entry_safe_continue(w, n, list, - power_list); + continue; if (event == SND_SOC_DAPM_STREAM_START) ret = w->event(w, @@ -2542,10 +2540,16 @@ return NULL; } -static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm, - const char *pin, int status) +/* + * set the DAPM pin status: + * returns 1 when the value has been updated, 0 when unchanged, or a negative + * error code; called from kcontrol put callback + */ +static int __snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm, + const char *pin, int status) { struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); + int ret = 0; dapm_assert_locked(dapm); @@ -2558,13 +2562,26 @@ dapm_mark_dirty(w, "pin configuration"); dapm_widget_invalidate_input_paths(w); dapm_widget_invalidate_output_paths(w); + ret = 1; } w->connected = status; if (status == 0) w->force = 0; - return 0; + return ret; +} + +/* + * similar as __snd_soc_dapm_set_pin(), but returns 0 when successful; + * called from several API functions below + */ +static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm, + const char *pin, int status) +{ + int ret = __snd_soc_dapm_set_pin(dapm, pin, status); + + return ret < 0 ? ret : 0; } /** @@ -3404,7 +3421,6 @@ update.val = val; card->update = &update; } - change |= reg_change; ret = soc_dapm_mixer_update_power(card, kcontrol, connect, rconnect); @@ -3510,7 +3526,6 @@ update.val = val; card->update = &update; } - change |= reg_change; ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e); @@ -3580,14 +3595,15 @@ { struct snd_soc_card *card = snd_kcontrol_chip(kcontrol); const char *pin = (const char *)kcontrol->private_value; + int ret; - if (ucontrol->value.integer.value[0]) - snd_soc_dapm_enable_pin(&card->dapm, pin); - else - snd_soc_dapm_disable_pin(&card->dapm, pin); + mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); + ret = __snd_soc_dapm_set_pin(&card->dapm, pin, + !!ucontrol->value.integer.value[0]); + mutex_unlock(&card->dapm_mutex); snd_soc_dapm_sync(&card->dapm); - return 0; + return ret; } EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch); @@ -4029,7 +4045,7 @@ rtd->params_select = ucontrol->value.enumerated.item[0]; - return 0; + return 1; } static void diff -u linux-azure-5.4.0/sound/soc/soc-ops.c linux-azure-5.4.0/sound/soc/soc-ops.c --- linux-azure-5.4.0/sound/soc/soc-ops.c +++ linux-azure-5.4.0/sound/soc/soc-ops.c @@ -314,7 +314,7 @@ unsigned int sign_bit = mc->sign_bit; unsigned int mask = (1 << fls(max)) - 1; unsigned int invert = mc->invert; - int err; + int err, ret; bool type_2r = false; unsigned int val2 = 0; unsigned int val, val_mask; @@ -322,13 +322,27 @@ if (sign_bit) mask = BIT(sign_bit + 1) - 1; - val = ((ucontrol->value.integer.value[0] + min) & mask); + val = ucontrol->value.integer.value[0]; + if (mc->platform_max && ((int)val + min) > mc->platform_max) + return -EINVAL; + if (val > max - min) + return -EINVAL; + if (val < 0) + return -EINVAL; + val = (val + min) & mask; if (invert) val = max - val; val_mask = mask << shift; val = val << shift; if (snd_soc_volsw_is_stereo(mc)) { - val2 = ((ucontrol->value.integer.value[1] + min) & mask); + val2 = ucontrol->value.integer.value[1]; + if (mc->platform_max && ((int)val2 + min) > mc->platform_max) + return -EINVAL; + if (val2 > max - min) + return -EINVAL; + if (val2 < 0) + return -EINVAL; + val2 = (val2 + min) & mask; if (invert) val2 = max - val2; if (reg == reg2) { @@ -342,12 +356,18 @@ err = snd_soc_component_update_bits(component, reg, val_mask, val); if (err < 0) return err; + ret = err; - if (type_2r) + if (type_2r) { err = snd_soc_component_update_bits(component, reg2, val_mask, - val2); + val2); + /* Don't discard any error code or drop change flag */ + if (ret == 0 || err < 0) { + ret = err; + } + } - return err; + return ret; } EXPORT_SYMBOL_GPL(snd_soc_put_volsw); @@ -422,8 +442,15 @@ int err = 0; unsigned int val, val_mask, val2 = 0; + val = ucontrol->value.integer.value[0]; + if (mc->platform_max && val > mc->platform_max) + return -EINVAL; + if (val > max - min) + return -EINVAL; + if (val < 0) + return -EINVAL; val_mask = mask << shift; - val = (ucontrol->value.integer.value[0] + min) & mask; + val = (val + min) & mask; val = val << shift; err = snd_soc_component_update_bits(component, reg, val_mask, val); @@ -496,7 +523,15 @@ unsigned int mask = (1 << fls(max)) - 1; unsigned int invert = mc->invert; unsigned int val, val_mask; - int ret; + int err, ret, tmp; + + tmp = ucontrol->value.integer.value[0]; + if (tmp < 0) + return -EINVAL; + if (mc->platform_max && tmp > mc->platform_max) + return -EINVAL; + if (tmp > mc->max - mc->min) + return -EINVAL; if (invert) val = (max - ucontrol->value.integer.value[0]) & mask; @@ -505,11 +540,20 @@ val_mask = mask << shift; val = val << shift; - ret = snd_soc_component_update_bits(component, reg, val_mask, val); - if (ret < 0) - return ret; + err = snd_soc_component_update_bits(component, reg, val_mask, val); + if (err < 0) + return err; + ret = err; if (snd_soc_volsw_is_stereo(mc)) { + tmp = ucontrol->value.integer.value[1]; + if (tmp < 0) + return -EINVAL; + if (mc->platform_max && tmp > mc->platform_max) + return -EINVAL; + if (tmp > mc->max - mc->min) + return -EINVAL; + if (invert) val = (max - ucontrol->value.integer.value[1]) & mask; else @@ -517,8 +561,12 @@ val_mask = mask << shift; val = val << shift; - ret = snd_soc_component_update_bits(component, rreg, val_mask, + err = snd_soc_component_update_bits(component, rreg, val_mask, val); + /* Don't discard any error code or drop change flag */ + if (ret == 0 || err < 0) { + ret = err; + } } return ret; @@ -889,6 +937,8 @@ unsigned int i, regval, regmask; int err; + if (val < mc->min || val > mc->max) + return -EINVAL; if (invert) val = max - val; val &= mask; diff -u linux-azure-5.4.0/sound/soc/soc-topology.c linux-azure-5.4.0/sound/soc/soc-topology.c --- linux-azure-5.4.0/sound/soc/soc-topology.c +++ linux-azure-5.4.0/sound/soc/soc-topology.c @@ -587,7 +587,8 @@ if (le32_to_cpu(hdr->ops.info) == SND_SOC_TPLG_CTL_BYTES && k->iface & SNDRV_CTL_ELEM_IFACE_MIXER - && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE + && (k->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ + || k->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) && k->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { struct soc_bytes_ext *sbe; struct snd_soc_tplg_bytes_control *be; @@ -2777,6 +2778,7 @@ /* remove dynamic controls from the component driver */ int snd_soc_tplg_component_remove(struct snd_soc_component *comp, u32 index) { + struct snd_card *card = comp->card->snd_card; struct snd_soc_dobj *dobj, *next_dobj; int pass = SOC_TPLG_PASS_END; @@ -2784,6 +2786,7 @@ while (pass >= SOC_TPLG_PASS_START) { /* remove mixer controls */ + down_write(&card->controls_rwsem); list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list, list) { @@ -2827,6 +2830,7 @@ break; } } + up_write(&card->controls_rwsem); pass--; } diff -u linux-azure-5.4.0/sound/soc/sof/intel/hda-dai.c linux-azure-5.4.0/sound/soc/sof/intel/hda-dai.c --- linux-azure-5.4.0/sound/soc/sof/intel/hda-dai.c +++ linux-azure-5.4.0/sound/soc/sof/intel/hda-dai.c @@ -67,6 +67,7 @@ return NULL; } + spin_lock_irq(&bus->reg_lock); list_for_each_entry(stream, &bus->stream_list, list) { struct hdac_ext_stream *hstream = stream_to_hdac_ext_stream(stream); @@ -106,12 +107,12 @@ * is updated in snd_hdac_ext_stream_decouple(). */ if (!res->decoupled) - snd_hdac_ext_stream_decouple(bus, res, true); - spin_lock_irq(&bus->reg_lock); + snd_hdac_ext_stream_decouple_locked(bus, res, true); + res->link_locked = 1; res->link_substream = substream; - spin_unlock_irq(&bus->reg_lock); } + spin_unlock_irq(&bus->reg_lock); return res; } diff -u linux-azure-5.4.0/sound/soc/sof/intel/hda-loader.c linux-azure-5.4.0/sound/soc/sof/intel/hda-loader.c --- linux-azure-5.4.0/sound/soc/sof/intel/hda-loader.c +++ linux-azure-5.4.0/sound/soc/sof/intel/hda-loader.c @@ -50,7 +50,7 @@ ret = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV_SG, &pci->dev, size, dmab); if (ret < 0) { dev_err(sdev->dev, "error: memory alloc failed: %x\n", ret); - goto error; + goto out_put; } hstream->period_bytes = 0;/* initialize period_bytes */ @@ -60,16 +60,17 @@ ret = hda_dsp_stream_hw_params(sdev, dsp_stream, dmab, NULL); if (ret < 0) { dev_err(sdev->dev, "error: hdac prepare failed: %x\n", ret); - goto error; + goto out_free; } hda_dsp_stream_spib_config(sdev, dsp_stream, HDA_DSP_SPIB_ENABLE, size); return hstream->stream_tag; -error: - hda_dsp_stream_put(sdev, direction, hstream->stream_tag); +out_free: snd_dma_free_pages(dmab); +out_put: + hda_dsp_stream_put(sdev, direction, hstream->stream_tag); return ret; } diff -u linux-azure-5.4.0/sound/soc/sti/uniperif_player.c linux-azure-5.4.0/sound/soc/sti/uniperif_player.c --- linux-azure-5.4.0/sound/soc/sti/uniperif_player.c +++ linux-azure-5.4.0/sound/soc/sti/uniperif_player.c @@ -91,7 +91,7 @@ SET_UNIPERIF_ITM_BCLR_FIFO_ERROR(player); /* Stop the player */ - snd_pcm_stop_xrun(player->substream); + snd_pcm_stop(player->substream, SNDRV_PCM_STATE_XRUN); } ret = IRQ_HANDLED; @@ -105,7 +105,7 @@ SET_UNIPERIF_ITM_BCLR_DMA_ERROR(player); /* Stop the player */ - snd_pcm_stop_xrun(player->substream); + snd_pcm_stop(player->substream, SNDRV_PCM_STATE_XRUN); ret = IRQ_HANDLED; } @@ -138,7 +138,7 @@ dev_err(player->dev, "Underflow recovery failed\n"); /* Stop the player */ - snd_pcm_stop_xrun(player->substream); + snd_pcm_stop(player->substream, SNDRV_PCM_STATE_XRUN); ret = IRQ_HANDLED; } diff -u linux-azure-5.4.0/sound/soc/tegra/tegra_wm8903.c linux-azure-5.4.0/sound/soc/tegra/tegra_wm8903.c --- linux-azure-5.4.0/sound/soc/tegra/tegra_wm8903.c +++ linux-azure-5.4.0/sound/soc/tegra/tegra_wm8903.c @@ -217,6 +217,7 @@ static struct snd_soc_card snd_soc_tegra_wm8903 = { .name = "tegra-wm8903", + .driver_name = "tegra", .owner = THIS_MODULE, .dai_link = &tegra_wm8903_dai, .num_links = 1, diff -u linux-azure-5.4.0/sound/usb/clock.c linux-azure-5.4.0/sound/usb/clock.c --- linux-azure-5.4.0/sound/usb/clock.c +++ linux-azure-5.4.0/sound/usb/clock.c @@ -319,6 +319,12 @@ selector->baCSourceID[ret - 1], visited, validate); if (ret > 0) { + /* + * For Samsung USBC Headset (AKG), setting clock selector again + * will result in incorrect default clock setting problems + */ + if (chip->usb_id == USB_ID(0x04e8, 0xa051)) + return ret; err = uac_clock_selector_set_val(chip, entity_id, cur); if (err < 0) return err; diff -u linux-azure-5.4.0/sound/usb/endpoint.c linux-azure-5.4.0/sound/usb/endpoint.c --- linux-azure-5.4.0/sound/usb/endpoint.c +++ linux-azure-5.4.0/sound/usb/endpoint.c @@ -73,12 +73,13 @@ */ static void release_urb_ctx(struct snd_urb_ctx *u) { - if (u->buffer_size) + if (u->urb && u->buffer_size) usb_free_coherent(u->ep->chip->dev, u->buffer_size, u->urb->transfer_buffer, u->urb->transfer_dma); usb_free_urb(u->urb); u->urb = NULL; + u->buffer_size = 0; } static const char *usb_error_string(int err) @@ -977,6 +978,7 @@ if (!ep->syncbuf) return -ENOMEM; + ep->nurbs = SYNC_URBS; for (i = 0; i < SYNC_URBS; i++) { struct snd_urb_ctx *u = &ep->urb[i]; u->index = i; @@ -996,8 +998,6 @@ u->urb->complete = snd_complete_urb; } - ep->nurbs = SYNC_URBS; - return 0; out_of_memory: diff -u linux-azure-5.4.0/sound/usb/format.c linux-azure-5.4.0/sound/usb/format.c --- linux-azure-5.4.0/sound/usb/format.c +++ linux-azure-5.4.0/sound/usb/format.c @@ -195,9 +195,11 @@ continue; /* C-Media CM6501 mislabels its 96 kHz altsetting */ /* Terratec Aureon 7.1 USB C-Media 6206, too */ + /* Ozone Z90 USB C-Media, too */ if (rate == 48000 && nr_rates == 1 && (chip->usb_id == USB_ID(0x0d8c, 0x0201) || chip->usb_id == USB_ID(0x0d8c, 0x0102) || + chip->usb_id == USB_ID(0x0d8c, 0x0078) || chip->usb_id == USB_ID(0x0ccd, 0x00b1)) && fp->altsetting == 5 && fp->maxpacksize == 392) rate = 96000; diff -u linux-azure-5.4.0/sound/usb/line6/driver.c linux-azure-5.4.0/sound/usb/line6/driver.c --- linux-azure-5.4.0/sound/usb/line6/driver.c +++ linux-azure-5.4.0/sound/usb/line6/driver.c @@ -113,12 +113,12 @@ retval = usb_interrupt_msg(line6->usbdev, usb_sndintpipe(line6->usbdev, properties->ep_ctrl_w), (char *)frag_buf, frag_size, - &partial, LINE6_TIMEOUT * HZ); + &partial, LINE6_TIMEOUT); } else { retval = usb_bulk_msg(line6->usbdev, usb_sndbulkpipe(line6->usbdev, properties->ep_ctrl_w), (char *)frag_buf, frag_size, - &partial, LINE6_TIMEOUT * HZ); + &partial, LINE6_TIMEOUT); } if (retval) { @@ -350,7 +350,7 @@ ret = usb_control_msg(usbdev, usb_sndctrlpipe(usbdev, 0), 0x67, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, (datalen << 8) | 0x21, address, - NULL, 0, LINE6_TIMEOUT * HZ); + NULL, 0, LINE6_TIMEOUT); if (ret < 0) { dev_err(line6->ifcdev, "read request failed (error %d)\n", ret); @@ -365,7 +365,7 @@ USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 0x0012, 0x0000, len, 1, - LINE6_TIMEOUT * HZ); + LINE6_TIMEOUT); if (ret < 0) { dev_err(line6->ifcdev, "receive length failed (error %d)\n", ret); @@ -393,7 +393,7 @@ ret = usb_control_msg(usbdev, usb_rcvctrlpipe(usbdev, 0), 0x67, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 0x0013, 0x0000, data, datalen, - LINE6_TIMEOUT * HZ); + LINE6_TIMEOUT); if (ret < 0) dev_err(line6->ifcdev, "read failed (error %d)\n", ret); @@ -425,7 +425,7 @@ ret = usb_control_msg(usbdev, usb_sndctrlpipe(usbdev, 0), 0x67, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, 0x0022, address, data, datalen, - LINE6_TIMEOUT * HZ); + LINE6_TIMEOUT); if (ret < 0) { dev_err(line6->ifcdev, @@ -441,7 +441,7 @@ USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 0x0012, 0x0000, - status, 1, LINE6_TIMEOUT * HZ); + status, 1, LINE6_TIMEOUT); if (ret < 0) { dev_err(line6->ifcdev, diff -u linux-azure-5.4.0/sound/usb/line6/podhd.c linux-azure-5.4.0/sound/usb/line6/podhd.c --- linux-azure-5.4.0/sound/usb/line6/podhd.c +++ linux-azure-5.4.0/sound/usb/line6/podhd.c @@ -190,7 +190,7 @@ ret = usb_control_msg(usbdev, usb_sndctrlpipe(usbdev, 0), 0x67, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, 0x11, 0, - NULL, 0, LINE6_TIMEOUT * HZ); + NULL, 0, LINE6_TIMEOUT); if (ret < 0) { dev_err(pod->line6.ifcdev, "read request failed (error %d)\n", ret); goto exit; @@ -200,7 +200,7 @@ ret = usb_control_msg(usbdev, usb_rcvctrlpipe(usbdev, 0), 0x67, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 0x11, 0x0, - init_bytes, 3, LINE6_TIMEOUT * HZ); + init_bytes, 3, LINE6_TIMEOUT); if (ret < 0) { dev_err(pod->line6.ifcdev, "receive length failed (error %d)\n", ret); @@ -220,7 +220,7 @@ USB_REQ_SET_FEATURE, USB_TYPE_STANDARD | USB_RECIP_DEVICE | USB_DIR_OUT, 1, 0, - NULL, 0, LINE6_TIMEOUT * HZ); + NULL, 0, LINE6_TIMEOUT); exit: kfree(init_bytes); return ret; diff -u linux-azure-5.4.0/sound/usb/midi.c linux-azure-5.4.0/sound/usb/midi.c --- linux-azure-5.4.0/sound/usb/midi.c +++ linux-azure-5.4.0/sound/usb/midi.c @@ -1210,6 +1210,7 @@ } while (drain_urbs && timeout); finish_wait(&ep->drain_wait, &wait); } + port->active = 0; spin_unlock_irq(&ep->buffer_lock); } diff -u linux-azure-5.4.0/sound/usb/mixer.c linux-azure-5.4.0/sound/usb/mixer.c --- linux-azure-5.4.0/sound/usb/mixer.c +++ linux-azure-5.4.0/sound/usb/mixer.c @@ -3241,8 +3241,17 @@ struct usb_mixer_elem_list *list) { struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list); - static const char * const val_types[] = {"BOOLEAN", "INV_BOOLEAN", - "S8", "U8", "S16", "U16"}; + static const char * const val_types[] = { + [USB_MIXER_BOOLEAN] = "BOOLEAN", + [USB_MIXER_INV_BOOLEAN] = "INV_BOOLEAN", + [USB_MIXER_S8] = "S8", + [USB_MIXER_U8] = "U8", + [USB_MIXER_S16] = "S16", + [USB_MIXER_U16] = "U16", + [USB_MIXER_S32] = "S32", + [USB_MIXER_U32] = "U32", + [USB_MIXER_BESPOKEN] = "BESPOKEN", + }; snd_iprintf(buffer, " Info: id=%i, control=%i, cmask=0x%x, " "channels=%i, type=\"%s\"\n", cval->head.id, cval->control, cval->cmask, cval->channels, @@ -3598,6 +3607,9 @@ struct usb_mixer_elem_info *cval = mixer_elem_list_to_info(list); int c, err, idx; + if (cval->val_type == USB_MIXER_BESPOKEN) + return 0; + if (cval->cmask) { idx = 0; for (c = 0; c < MAX_CHANNELS; c++) { diff -u linux-azure-5.4.0/sound/usb/mixer.h linux-azure-5.4.0/sound/usb/mixer.h --- linux-azure-5.4.0/sound/usb/mixer.h +++ linux-azure-5.4.0/sound/usb/mixer.h @@ -55,6 +55,7 @@ USB_MIXER_U16, USB_MIXER_S32, USB_MIXER_U32, + USB_MIXER_BESPOKEN, /* non-standard type */ }; typedef void (*usb_mixer_elem_dump_func_t)(struct snd_info_buffer *buffer, diff -u linux-azure-5.4.0/sound/usb/mixer_quirks.c linux-azure-5.4.0/sound/usb/mixer_quirks.c --- linux-azure-5.4.0/sound/usb/mixer_quirks.c +++ linux-azure-5.4.0/sound/usb/mixer_quirks.c @@ -1697,7 +1697,7 @@ static int snd_microii_controls_create(struct usb_mixer_interface *mixer) { int err, i; - const static usb_mixer_elem_resume_func_t resume_funcs[] = { + static const usb_mixer_elem_resume_func_t resume_funcs[] = { snd_microii_spdif_default_update, NULL, snd_microii_spdif_switch_update @@ -2370,9 +2370,10 @@ if (unitid == 7 && cval->control == UAC_FU_VOLUME) snd_dragonfly_quirk_db_scale(mixer, cval, kctl); break; - /* lowest playback value is muted on C-Media devices */ - case USB_ID(0x0d8c, 0x000c): - case USB_ID(0x0d8c, 0x0014): + /* lowest playback value is muted on some devices */ + case USB_ID(0x0d8c, 0x000c): /* C-Media */ + case USB_ID(0x0d8c, 0x0014): /* C-Media */ + case USB_ID(0x19f7, 0x0003): /* RODE NT-USB */ if (strstr(kctl->id.name, "Playback")) cval->min_mute = 1; break; diff -u linux-azure-5.4.0/sound/usb/mixer_scarlett_gen2.c linux-azure-5.4.0/sound/usb/mixer_scarlett_gen2.c --- linux-azure-5.4.0/sound/usb/mixer_scarlett_gen2.c +++ linux-azure-5.4.0/sound/usb/mixer_scarlett_gen2.c @@ -254,10 +254,10 @@ .pad_input_count = 2, .line_out_descrs = { - "Monitor L", - "Monitor R", - "Headphones L", - "Headphones R", + "Headphones 1 L", + "Headphones 1 R", + "Headphones 2 L", + "Headphones 2 R", }, .ports = { @@ -356,7 +356,7 @@ }, [SCARLETT2_PORT_TYPE_PCM] = { .id = 0x600, - .num = { 20, 18, 18, 14, 10 }, + .num = { 8, 18, 18, 14, 10 }, .src_descr = "PCM %d", .src_num_offset = 1, .dst_descr = "PCM %02d Capture" @@ -949,10 +949,15 @@ if (!elem) return -ENOMEM; + /* We set USB_MIXER_BESPOKEN type, so that the core USB mixer code + * ignores them for resume and other operations. + * Also, the head.id field is set to 0, as we don't use this field. + */ elem->head.mixer = mixer; elem->control = index; - elem->head.id = index; + elem->head.id = 0; elem->channels = channels; + elem->val_type = USB_MIXER_BESPOKEN; kctl = snd_ctl_new1(ncontrol, elem); if (!kctl) { @@ -1028,11 +1033,10 @@ struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_mixer_data *private = mixer->private_data; - if (private->vol_updated) { - mutex_lock(&private->data_mutex); + mutex_lock(&private->data_mutex); + if (private->vol_updated) scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); - } + mutex_unlock(&private->data_mutex); ucontrol->value.integer.value[0] = private->master_vol; return 0; @@ -1046,11 +1050,10 @@ struct scarlett2_mixer_data *private = mixer->private_data; int index = elem->control; - if (private->vol_updated) { - mutex_lock(&private->data_mutex); + mutex_lock(&private->data_mutex); + if (private->vol_updated) scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); - } + mutex_unlock(&private->data_mutex); ucontrol->value.integer.value[0] = private->vol[index]; return 0; @@ -1181,6 +1184,8 @@ /* Send SW/HW switch change to the device */ err = scarlett2_usb_set_config(mixer, SCARLETT2_CONFIG_SW_HW_SWITCH, index, val); + if (err == 0) + err = 1; unlock: mutex_unlock(&private->data_mutex); @@ -1241,6 +1246,8 @@ /* Send switch change to the device */ err = scarlett2_usb_set_config(mixer, SCARLETT2_CONFIG_LEVEL_SWITCH, index, val); + if (err == 0) + err = 1; unlock: mutex_unlock(&private->data_mutex); @@ -1291,6 +1298,8 @@ /* Send switch change to the device */ err = scarlett2_usb_set_config(mixer, SCARLETT2_CONFIG_PAD_SWITCH, index, val); + if (err == 0) + err = 1; unlock: mutex_unlock(&private->data_mutex); @@ -1314,11 +1323,10 @@ struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_mixer_data *private = mixer->private_data; - if (private->vol_updated) { - mutex_lock(&private->data_mutex); + mutex_lock(&private->data_mutex); + if (private->vol_updated) scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); - } + mutex_unlock(&private->data_mutex); ucontrol->value.enumerated.item[0] = private->buttons[elem->control]; return 0; @@ -1347,6 +1355,8 @@ /* Send switch change to the device */ err = scarlett2_usb_set_config(mixer, SCARLETT2_CONFIG_BUTTONS, index, val); + if (err == 0) + err = 1; unlock: mutex_unlock(&private->data_mutex); diff -u linux-azure-5.4.0/sound/usb/quirks-table.h linux-azure-5.4.0/sound/usb/quirks-table.h --- linux-azure-5.4.0/sound/usb/quirks-table.h +++ linux-azure-5.4.0/sound/usb/quirks-table.h @@ -25,6 +25,16 @@ .idProduct = prod, \ .bInterfaceClass = USB_CLASS_VENDOR_SPEC +/* A standard entry matching with vid/pid and the audio class/subclass */ +#define USB_AUDIO_DEVICE(vend, prod) \ + .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \ + USB_DEVICE_ID_MATCH_INT_CLASS | \ + USB_DEVICE_ID_MATCH_INT_SUBCLASS, \ + .idVendor = vend, \ + .idProduct = prod, \ + .bInterfaceClass = USB_CLASS_AUDIO, \ + .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL + /* HP Thunderbolt Dock Audio Headset */ { USB_DEVICE(0x03f0, 0x0269), @@ -126,6 +136,48 @@ }, /* + * Creative Technology, Ltd Live! Cam Sync HD [VF0770] + * The device advertises 8 formats, but only a rate of 48kHz is honored by the + * hardware and 24 bits give chopped audio, so only report the one working + * combination. + */ +{ + USB_DEVICE(0x041e, 0x4095), + .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) { + .ifnum = QUIRK_ANY_INTERFACE, + .type = QUIRK_COMPOSITE, + .data = &(const struct snd_usb_audio_quirk[]) { + { + .ifnum = 2, + .type = QUIRK_AUDIO_STANDARD_MIXER, + }, + { + .ifnum = 3, + .type = QUIRK_AUDIO_FIXED_ENDPOINT, + .data = &(const struct audioformat) { + .formats = SNDRV_PCM_FMTBIT_S16_LE, + .channels = 2, + .fmt_bits = 16, + .iface = 3, + .altsetting = 4, + .altset_idx = 4, + .endpoint = 0x82, + .ep_attr = 0x05, + .rates = SNDRV_PCM_RATE_48000, + .rate_min = 48000, + .rate_max = 48000, + .nr_rates = 1, + .rate_table = (unsigned int[]) { 48000 }, + }, + }, + { + .ifnum = -1 + }, + }, + }, +}, + +/* * HP Wireless Audio * When not ignored, causes instability issues for some users, forcing them to * blacklist the entire module. @@ -3708,6 +3760,64 @@ }, /* + * MacroSilicon MS2100/MS2106 based AV capture cards + * + * These claim 96kHz 1ch in the descriptors, but are actually 48kHz 2ch. + * They also need QUIRK_AUDIO_ALIGN_TRANSFER, which makes one wonder if + * they pretend to be 96kHz mono as a workaround for stereo being broken + * by that... + * + * They also have an issue with initial stream alignment that causes the + * channels to be swapped and out of phase, which is dealt with in quirks.c. + */ +{ + .match_flags = USB_DEVICE_ID_MATCH_DEVICE | + USB_DEVICE_ID_MATCH_INT_CLASS | + USB_DEVICE_ID_MATCH_INT_SUBCLASS, + .idVendor = 0x534d, + .idProduct = 0x0021, + .bInterfaceClass = USB_CLASS_AUDIO, + .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL, + .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) { + .vendor_name = "MacroSilicon", + .product_name = "MS210x", + .ifnum = QUIRK_ANY_INTERFACE, + .type = QUIRK_COMPOSITE, + .data = &(const struct snd_usb_audio_quirk[]) { + { + .ifnum = 2, + .type = QUIRK_AUDIO_ALIGN_TRANSFER, + }, + { + .ifnum = 2, + .type = QUIRK_AUDIO_STANDARD_MIXER, + }, + { + .ifnum = 3, + .type = QUIRK_AUDIO_FIXED_ENDPOINT, + .data = &(const struct audioformat) { + .formats = SNDRV_PCM_FMTBIT_S16_LE, + .channels = 2, + .iface = 3, + .altsetting = 1, + .altset_idx = 1, + .attributes = 0, + .endpoint = 0x82, + .ep_attr = USB_ENDPOINT_XFER_ISOC | + USB_ENDPOINT_SYNC_ASYNC, + .rates = SNDRV_PCM_RATE_CONTINUOUS, + .rate_min = 48000, + .rate_max = 48000, + } + }, + { + .ifnum = -1 + } + } + } +}, + +/* * MacroSilicon MS2109 based HDMI capture cards * * These claim 96kHz 1ch in the descriptors, but are actually 48kHz 2ch. @@ -3760,6 +3870,38 @@ }, { .ifnum = -1 + } + } + } +}, +{ + /* + * Sennheiser GSP670 + * Change order of interfaces loaded + */ + USB_DEVICE(0x1395, 0x0300), + .bInterfaceClass = USB_CLASS_PER_INTERFACE, + .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) { + .ifnum = QUIRK_ANY_INTERFACE, + .type = QUIRK_COMPOSITE, + .data = &(const struct snd_usb_audio_quirk[]) { + // Communication + { + .ifnum = 3, + .type = QUIRK_AUDIO_STANDARD_INTERFACE + }, + // Recording + { + .ifnum = 4, + .type = QUIRK_AUDIO_STANDARD_INTERFACE + }, + // Main + { + .ifnum = 1, + .type = QUIRK_AUDIO_STANDARD_INTERFACE + }, + { + .ifnum = -1 } } } diff -u linux-azure-5.4.0/sound/usb/quirks.c linux-azure-5.4.0/sound/usb/quirks.c --- linux-azure-5.4.0/sound/usb/quirks.c +++ linux-azure-5.4.0/sound/usb/quirks.c @@ -1440,6 +1440,7 @@ case USB_ID(0x041e, 0x3f19): /* E-Mu 0204 USB */ set_format_emu_quirk(subs, fmt); break; + case USB_ID(0x534d, 0x0021): /* MacroSilicon MS2100/MS2106 */ case USB_ID(0x534d, 0x2109): /* MacroSilicon MS2109 */ subs->stream_offset_adj = 2; break; @@ -1840,6 +1841,12 @@ REG_QUIRK_ENTRY(0x0951, 0x16d8, 2), /* Kingston HyperX AMP */ REG_QUIRK_ENTRY(0x0951, 0x16ed, 2), /* Kingston HyperX Cloud Alpha S */ REG_QUIRK_ENTRY(0x0951, 0x16ea, 2), /* Kingston HyperX Cloud Flight S */ + REG_QUIRK_ENTRY(0x0ecb, 0x1f46, 2), /* JBL Quantum 600 */ + REG_QUIRK_ENTRY(0x0ecb, 0x1f47, 2), /* JBL Quantum 800 */ + REG_QUIRK_ENTRY(0x0ecb, 0x1f4c, 2), /* JBL Quantum 400 */ + REG_QUIRK_ENTRY(0x0ecb, 0x2039, 2), /* JBL Quantum 400 */ + REG_QUIRK_ENTRY(0x0ecb, 0x203c, 2), /* JBL Quantum 600 */ + REG_QUIRK_ENTRY(0x0ecb, 0x203e, 2), /* JBL Quantum 800 */ { 0 } /* terminator */ }; diff -u linux-azure-5.4.0/sound/usb/stream.c linux-azure-5.4.0/sound/usb/stream.c --- linux-azure-5.4.0/sound/usb/stream.c +++ linux-azure-5.4.0/sound/usb/stream.c @@ -1103,7 +1103,7 @@ * Dallas DS4201 workaround: It presents 5 altsettings, but the last * one misses syncpipe, and does not produce any sound. */ - if (chip->usb_id == USB_ID(0x04fa, 0x4201)) + if (chip->usb_id == USB_ID(0x04fa, 0x4201) && num >= 4) num = 4; for (i = 0; i < num; i++) { diff -u linux-azure-5.4.0/sound/usb/usbaudio.h linux-azure-5.4.0/sound/usb/usbaudio.h --- linux-azure-5.4.0/sound/usb/usbaudio.h +++ linux-azure-5.4.0/sound/usb/usbaudio.h @@ -8,7 +8,7 @@ */ /* handling of USB vendor/product ID pairs as 32-bit numbers */ -#define USB_ID(vendor, product) (((vendor) << 16) | (product)) +#define USB_ID(vendor, product) (((unsigned int)(vendor) << 16) | (product)) #define USB_ID_VENDOR(id) ((id) >> 16) #define USB_ID_PRODUCT(id) ((u16)(id)) diff -u linux-azure-5.4.0/tools/arch/x86/include/asm/insn.h linux-azure-5.4.0/tools/arch/x86/include/asm/insn.h --- linux-azure-5.4.0/tools/arch/x86/include/asm/insn.h +++ linux-azure-5.4.0/tools/arch/x86/include/asm/insn.h @@ -45,6 +45,7 @@ struct insn_field immediate2; /* for 64bit imm or seg16 */ }; + int emulate_prefix_size; insn_attr_t attr; unsigned char opnd_bytes; unsigned char addr_bytes; @@ -128,6 +129,11 @@ return (insn->vex_prefix.nbytes == 4); } +static inline int insn_has_emulate_prefix(struct insn *insn) +{ + return !!insn->emulate_prefix_size; +} + /* Ensure this instruction is decoded completely */ static inline int insn_complete(struct insn *insn) { diff -u linux-azure-5.4.0/tools/bpf/bpftool/btf_dumper.c linux-azure-5.4.0/tools/bpf/bpftool/btf_dumper.c --- linux-azure-5.4.0/tools/bpf/bpftool/btf_dumper.c +++ linux-azure-5.4.0/tools/bpf/bpftool/btf_dumper.c @@ -251,7 +251,7 @@ *(char *)data); break; case BTF_INT_BOOL: - jsonw_bool(jw, *(int *)data); + jsonw_bool(jw, *(bool *)data); break; default: /* shouldn't happen */ diff -u linux-azure-5.4.0/tools/build/Makefile.feature linux-azure-5.4.0/tools/build/Makefile.feature --- linux-azure-5.4.0/tools/build/Makefile.feature +++ linux-azure-5.4.0/tools/build/Makefile.feature @@ -52,7 +52,6 @@ numa_num_possible_cpus \ libperl \ libpython \ - libpython-version \ libslang \ libslang-include-subdir \ libcrypto \ diff -u linux-azure-5.4.0/tools/build/feature/Makefile linux-azure-5.4.0/tools/build/feature/Makefile --- linux-azure-5.4.0/tools/build/feature/Makefile +++ linux-azure-5.4.0/tools/build/feature/Makefile @@ -30,7 +30,6 @@ test-numa_num_possible_cpus.bin \ test-libperl.bin \ test-libpython.bin \ - test-libpython-version.bin \ test-libslang.bin \ test-libslang-include-subdir.bin \ test-libcrypto.bin \ @@ -205,18 +204,22 @@ PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null) PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) -PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null` +PERL_EMBED_CCOPTS = $(shell perl -MExtUtils::Embed -e ccopts 2>/dev/null) FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS) +ifeq ($(CC_NO_CLANG), 0) + PERL_EMBED_LDOPTS := $(filter-out -specs=%,$(PERL_EMBED_LDOPTS)) + PERL_EMBED_CCOPTS := $(filter-out -flto=auto -ffat-lto-objects, $(PERL_EMBED_CCOPTS)) + PERL_EMBED_CCOPTS := $(filter-out -specs=%,$(PERL_EMBED_CCOPTS)) + FLAGS_PERL_EMBED += -Wno-compound-token-split-by-macro +endif + $(OUTPUT)test-libperl.bin: $(BUILD) $(FLAGS_PERL_EMBED) $(OUTPUT)test-libpython.bin: $(BUILD) $(FLAGS_PYTHON_EMBED) -$(OUTPUT)test-libpython-version.bin: - $(BUILD) - $(OUTPUT)test-libbfd.bin: $(BUILD) -DPACKAGE='"perf"' -lbfd -ldl diff -u linux-azure-5.4.0/tools/include/uapi/linux/bpf.h linux-azure-5.4.0/tools/include/uapi/linux/bpf.h --- linux-azure-5.4.0/tools/include/uapi/linux/bpf.h +++ linux-azure-5.4.0/tools/include/uapi/linux/bpf.h @@ -560,10 +560,13 @@ * Return * 0 on success, or a negative error in case of failure. * - * int bpf_probe_read(void *dst, u32 size, const void *src) + * int bpf_probe_read(void *dst, u32 size, const void *unsafe_ptr) * Description * For tracing programs, safely attempt to read *size* bytes from - * address *src* and store the data in *dst*. + * kernel space address *unsafe_ptr* and store the data in *dst*. + * + * Generally, use bpf_probe_read_user() or bpf_probe_read_kernel() + * instead. * Return * 0 on success, or a negative error in case of failure. * @@ -1294,8 +1297,8 @@ * Return * The return value depends on the result of the test, and can be: * - * * 0, if current task belongs to the cgroup2. - * * 1, if current task does not belong to the cgroup2. + * * 1, if current task belongs to the cgroup2. + * * 0, if current task does not belong to the cgroup2. * * A negative error code, if an error occurred. * * int bpf_skb_change_tail(struct sk_buff *skb, u32 len, u64 flags) @@ -1425,45 +1428,14 @@ * Return * 0 on success, or a negative error in case of failure. * - * int bpf_probe_read_str(void *dst, int size, const void *unsafe_ptr) + * int bpf_probe_read_str(void *dst, u32 size, const void *unsafe_ptr) * Description - * Copy a NUL terminated string from an unsafe address - * *unsafe_ptr* to *dst*. The *size* should include the - * terminating NUL byte. In case the string length is smaller than - * *size*, the target is not padded with further NUL bytes. If the - * string length is larger than *size*, just *size*-1 bytes are - * copied and the last byte is set to NUL. - * - * On success, the length of the copied string is returned. This - * makes this helper useful in tracing programs for reading - * strings, and more importantly to get its length at runtime. See - * the following snippet: - * - * :: - * - * SEC("kprobe/sys_open") - * void bpf_sys_open(struct pt_regs *ctx) - * { - * char buf[PATHLEN]; // PATHLEN is defined to 256 - * int res = bpf_probe_read_str(buf, sizeof(buf), - * ctx->di); - * - * // Consume buf, for example push it to - * // userspace via bpf_perf_event_output(); we - * // can use res (the string length) as event - * // size, after checking its boundaries. - * } - * - * In comparison, using **bpf_probe_read()** helper here instead - * to read the string would require to estimate the length at - * compile time, and would often result in copying more memory - * than necessary. + * Copy a NUL terminated string from an unsafe kernel address + * *unsafe_ptr* to *dst*. See bpf_probe_read_kernel_str() for + * more details. * - * Another useful use case is when parsing individual process - * arguments or individual environment variables navigating - * *current*\ **->mm->arg_start** and *current*\ - * **->mm->env_start**: using this helper and the return value, - * one can quickly iterate at the right offset of the memory area. + * Generally, use bpf_probe_read_user_str() or bpf_probe_read_kernel_str() + * instead. * Return * On success, the strictly positive length of the string, * including the trailing NUL character. On error, a negative @@ -2264,7 +2236,7 @@ * int bpf_sk_select_reuseport(struct sk_reuseport_md *reuse, struct bpf_map *map, void *key, u64 flags) * Description * Select a **SO_REUSEPORT** socket from a - * **BPF_MAP_TYPE_REUSEPORT_ARRAY** *map*. + * **BPF_MAP_TYPE_REUSEPORT_SOCKARRAY** *map*. * It checks the selected socket is matching the incoming * request in the socket buffer. * Return @@ -2862,7 +2834,12 @@ FN(sk_storage_get), \ FN(sk_storage_delete), \ FN(send_signal), \ - FN(tcp_gen_syncookie), + FN(tcp_gen_syncookie), \ + FN(skb_output), \ + FN(probe_read_user), \ + FN(probe_read_kernel), \ + FN(probe_read_user_str), \ + FN(probe_read_kernel_str), /* integer value in 'imm' field of BPF_CALL instruction selects which helper * function eBPF program intends to call @@ -3068,7 +3045,8 @@ __u32 src_ip4; __u32 src_ip6[4]; __u32 src_port; /* host byte order */ - __u32 dst_port; /* network byte order */ + __be16 dst_port; /* network byte order */ + __u16 :16; /* zero padding */ __u32 dst_ip4; __u32 dst_ip6[4]; __u32 state; diff -u linux-azure-5.4.0/tools/lib/bpf/btf.c linux-azure-5.4.0/tools/lib/bpf/btf.c --- linux-azure-5.4.0/tools/lib/bpf/btf.c +++ linux-azure-5.4.0/tools/lib/bpf/btf.c @@ -100,22 +100,18 @@ return -EINVAL; } - if (meta_left < hdr->type_off) { - pr_debug("Invalid BTF type section offset:%u\n", hdr->type_off); + if (meta_left < hdr->str_off + hdr->str_len) { + pr_debug("Invalid BTF total size:%u\n", btf->data_size); return -EINVAL; } - if (meta_left < hdr->str_off) { - pr_debug("Invalid BTF string section offset:%u\n", hdr->str_off); + if (hdr->type_off + hdr->type_len > hdr->str_off) { + pr_debug("Invalid BTF data sections layout: type data at %u + %u, strings data at %u + %u\n", + hdr->type_off, hdr->type_len, hdr->str_off, hdr->str_len); return -EINVAL; } - if (hdr->type_off >= hdr->str_off) { - pr_debug("BTF type section offset >= string section offset. No type?\n"); - return -EINVAL; - } - - if (hdr->type_off & 0x02) { + if (hdr->type_off % 4) { pr_debug("BTF type section is not aligned to 4 bytes\n"); return -EINVAL; } diff -u linux-azure-5.4.0/tools/lib/bpf/btf_dump.c linux-azure-5.4.0/tools/lib/bpf/btf_dump.c --- linux-azure-5.4.0/tools/lib/bpf/btf_dump.c +++ linux-azure-5.4.0/tools/lib/bpf/btf_dump.c @@ -1366,6 +1366,11 @@ if (s->name_resolved) return *cached_name ? *cached_name : orig_name; + if (btf_is_fwd(t) || (btf_is_enum(t) && btf_vlen(t) == 0)) { + s->name_resolved = 1; + return orig_name; + } + dup_cnt = btf_dump_name_dups(d, name_map, orig_name); if (dup_cnt > 1) { const size_t max_len = 256; diff -u linux-azure-5.4.0/tools/lib/bpf/libbpf.c linux-azure-5.4.0/tools/lib/bpf/libbpf.c --- linux-azure-5.4.0/tools/lib/bpf/libbpf.c +++ linux-azure-5.4.0/tools/lib/bpf/libbpf.c @@ -1884,7 +1884,7 @@ int bpf_map__reuse_fd(struct bpf_map *map, int fd) { struct bpf_map_info info = {}; - __u32 len = sizeof(info); + __u32 len = sizeof(info), name_len; int new_fd, err; char *new_name; @@ -1892,7 +1892,12 @@ if (err) return err; - new_name = strdup(info.name); + name_len = strlen(info.name); + if (name_len == BPF_OBJ_NAME_LEN - 1 && strncmp(map->name, info.name, name_len) == 0) + new_name = strdup(map->name); + else + new_name = strdup(info.name); + if (!new_name) return -errno; diff -u linux-azure-5.4.0/tools/objtool/check.c linux-azure-5.4.0/tools/objtool/check.c --- linux-azure-5.4.0/tools/objtool/check.c +++ linux-azure-5.4.0/tools/objtool/check.c @@ -144,6 +144,7 @@ "usercopy_abort", "machine_real_restart", "rewind_stack_do_exit", + "cpu_bringup_and_idle", }; if (!func) diff -u linux-azure-5.4.0/tools/objtool/sync-check.sh linux-azure-5.4.0/tools/objtool/sync-check.sh --- linux-azure-5.4.0/tools/objtool/sync-check.sh +++ linux-azure-5.4.0/tools/objtool/sync-check.sh @@ -4,6 +4,7 @@ FILES=' arch/x86/include/asm/inat_types.h arch/x86/include/asm/orc_types.h +arch/x86/include/asm/emulate_prefix.h arch/x86/lib/x86-opcode-map.txt arch/x86/tools/gen-insn-attr-x86.awk ' @@ -49 +50 @@ -check arch/x86/lib/insn.c '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]"' +check arch/x86/lib/insn.c '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]" -I "^#include [\"<]\(../include/\)*asm/emulate_prefix.h[\">]"' diff -u linux-azure-5.4.0/tools/perf/Makefile.config linux-azure-5.4.0/tools/perf/Makefile.config --- linux-azure-5.4.0/tools/perf/Makefile.config +++ linux-azure-5.4.0/tools/perf/Makefile.config @@ -118,10 +118,10 @@ FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS) FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS) $(LIBUNWIND_LIBS) -FEATURE_CHECK_LDFLAGS-libunwind-arm = -lunwind -lunwind-arm -FEATURE_CHECK_LDFLAGS-libunwind-aarch64 = -lunwind -lunwind-aarch64 -FEATURE_CHECK_LDFLAGS-libunwind-x86 = -lunwind -llzma -lunwind-x86 -FEATURE_CHECK_LDFLAGS-libunwind-x86_64 = -lunwind -llzma -lunwind-x86_64 +FEATURE_CHECK_LDFLAGS-libunwind-arm += -lunwind -lunwind-arm +FEATURE_CHECK_LDFLAGS-libunwind-aarch64 += -lunwind -lunwind-aarch64 +FEATURE_CHECK_LDFLAGS-libunwind-x86 += -lunwind -llzma -lunwind-x86 +FEATURE_CHECK_LDFLAGS-libunwind-x86_64 += -lunwind -llzma -lunwind-x86_64 FEATURE_CHECK_LDFLAGS-libcrypto = -lcrypto @@ -247,8 +247,6 @@ FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS) FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS) -FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS) -FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS) FEATURE_CHECK_LDFLAGS-libaio = -lrt @@ -708,6 +706,9 @@ LDFLAGS += $(PERL_EMBED_LDFLAGS) EXTLIBS += $(PERL_EMBED_LIBADD) CFLAGS += -DHAVE_LIBPERL_SUPPORT + ifeq ($(CC_NO_CLANG), 0) + CFLAGS += -Wno-compound-token-split-by-macro + endif $(call detected,CONFIG_LIBPERL) endif endif diff -u linux-azure-5.4.0/tools/perf/bench/futex-lock-pi.c linux-azure-5.4.0/tools/perf/bench/futex-lock-pi.c --- linux-azure-5.4.0/tools/perf/bench/futex-lock-pi.c +++ linux-azure-5.4.0/tools/perf/bench/futex-lock-pi.c @@ -224,6 +224,7 @@ print_summary(); free(worker); + perf_cpu_map__put(cpu); return ret; err: usage_with_options(bench_futex_lock_pi_usage, options); diff -u linux-azure-5.4.0/tools/perf/bench/futex-wake.c linux-azure-5.4.0/tools/perf/bench/futex-wake.c --- linux-azure-5.4.0/tools/perf/bench/futex-wake.c +++ linux-azure-5.4.0/tools/perf/bench/futex-wake.c @@ -210,4 +210,5 @@ free(worker); + perf_cpu_map__put(cpu); return ret; } diff -u linux-azure-5.4.0/tools/perf/builtin-c2c.c linux-azure-5.4.0/tools/perf/builtin-c2c.c --- linux-azure-5.4.0/tools/perf/builtin-c2c.c +++ linux-azure-5.4.0/tools/perf/builtin-c2c.c @@ -953,8 +953,8 @@ double per_left; double per_right; - per_left = PERCENT(left, lcl_hitm); - per_right = PERCENT(right, lcl_hitm); + per_left = PERCENT(left, rmt_hitm); + per_right = PERCENT(right, rmt_hitm); return per_left - per_right; } @@ -2733,9 +2733,7 @@ "the input file to process"), OPT_INCR('N', "node-info", &c2c.node_info, "show extra node info in report (repeat for more info)"), -#ifdef HAVE_SLANG_SUPPORT OPT_BOOLEAN(0, "stdio", &c2c.use_stdio, "Use the stdio interface"), -#endif OPT_BOOLEAN(0, "stats", &c2c.stats_only, "Display only statistic tables (implies --stdio)"), OPT_BOOLEAN(0, "full-symbols", &c2c.symbol_full, @@ -2762,6 +2760,10 @@ if (argc) usage_with_options(report_c2c_usage, options); +#ifndef HAVE_SLANG_SUPPORT + c2c.use_stdio = true; +#endif + if (c2c.stats_only) c2c.use_stdio = true; diff -u linux-azure-5.4.0/tools/perf/builtin-inject.c linux-azure-5.4.0/tools/perf/builtin-inject.c --- linux-azure-5.4.0/tools/perf/builtin-inject.c +++ linux-azure-5.4.0/tools/perf/builtin-inject.c @@ -836,8 +836,10 @@ data.path = inject.input_name; inject.session = perf_session__new(&data, inject.output.is_pipe, &inject.tool); - if (IS_ERR(inject.session)) - return PTR_ERR(inject.session); + if (IS_ERR(inject.session)) { + ret = PTR_ERR(inject.session); + goto out_close_output; + } if (zstd_init(&(inject.session->zstd_data), 0) < 0) pr_warning("Decompression initialization failed.\n"); @@ -875,4 +877,6 @@ zstd_fini(&(inject.session->zstd_data)); perf_session__delete(inject.session); +out_close_output: + perf_data__close(&inject.output); return ret; } diff -u linux-azure-5.4.0/tools/perf/builtin-report.c linux-azure-5.4.0/tools/perf/builtin-report.c --- linux-azure-5.4.0/tools/perf/builtin-report.c +++ linux-azure-5.4.0/tools/perf/builtin-report.c @@ -569,14 +569,17 @@ int ret; struct perf_session *session = rep->session; struct evlist *evlist = session->evlist; - const char *help = perf_tip(system_path(TIPDIR)); + char *help = NULL, *path = NULL; - if (help == NULL) { + path = system_path(TIPDIR); + if (perf_tip(&help, path) || help == NULL) { /* fallback for people who don't install perf ;-) */ - help = perf_tip(DOCDIR); - if (help == NULL) - help = "Cannot load tips.txt file, please install perf!"; + free(path); + path = system_path(DOCDIR); + if (perf_tip(&help, path) || help == NULL) + help = strdup("Cannot load tips.txt file, please install perf!"); } + free(path); switch (use_browser) { case 1: @@ -598,7 +601,7 @@ ret = perf_evlist__tty_browse_hists(evlist, rep, help); break; } - + free(help); return ret; } diff -u linux-azure-5.4.0/tools/perf/builtin-script.c linux-azure-5.4.0/tools/perf/builtin-script.c --- linux-azure-5.4.0/tools/perf/builtin-script.c +++ linux-azure-5.4.0/tools/perf/builtin-script.c @@ -2308,7 +2308,7 @@ if (perf_event__process_switch(tool, event, sample, machine) < 0) return -1; - if (scripting_ops && scripting_ops->process_switch) + if (scripting_ops && scripting_ops->process_switch && !filter_cpu(sample)) scripting_ops->process_switch(event, sample, machine); if (!script->show_switch_events) @@ -2474,6 +2474,12 @@ } } +static void perf_script__exit(struct perf_script *script) +{ + perf_thread_map__put(script->threads); + perf_cpu_map__put(script->cpus); +} + static int __cmd_script(struct perf_script *script) { int ret; @@ -3773,11 +3779,15 @@ goto out_delete; uname(&uts); - if (data.is_pipe || /* assume pipe_mode indicates native_arch */ - !strcmp(uts.machine, session->header.env.arch) || - (!strcmp(uts.machine, "x86_64") && - !strcmp(session->header.env.arch, "i386"))) + if (data.is_pipe) { /* Assume pipe_mode indicates native_arch */ native_arch = true; + } else if (session->header.env.arch) { + if (!strcmp(uts.machine, session->header.env.arch)) + native_arch = true; + else if (!strcmp(uts.machine, "x86_64") && + !strcmp(session->header.env.arch, "i386")) + native_arch = true; + } script.session = session; script__setup_sample_type(&script); @@ -3893,6 +3903,7 @@ perf_evlist__free_stats(session->evlist); perf_session__delete(session); + perf_script__exit(&script); if (script_started) cleanup_scripting(); diff -u linux-azure-5.4.0/tools/perf/pmu-events/jevents.c linux-azure-5.4.0/tools/perf/pmu-events/jevents.c --- linux-azure-5.4.0/tools/perf/pmu-events/jevents.c +++ linux-azure-5.4.0/tools/perf/pmu-events/jevents.c @@ -567,7 +567,7 @@ } else if (json_streq(map, field, "ExtSel")) { char *code = NULL; addfield(map, &code, "", "", val); - eventcode |= strtoul(code, NULL, 0) << 21; + eventcode |= strtoul(code, NULL, 0) << 8; free(code); } else if (json_streq(map, field, "EventName")) { addfield(map, &name, "", "", val); diff -u linux-azure-5.4.0/tools/perf/tests/shell/record+zstd_comp_decomp.sh linux-azure-5.4.0/tools/perf/tests/shell/record+zstd_comp_decomp.sh --- linux-azure-5.4.0/tools/perf/tests/shell/record+zstd_comp_decomp.sh +++ linux-azure-5.4.0/tools/perf/tests/shell/record+zstd_comp_decomp.sh @@ -12,7 +12,7 @@ collect_z_record() { echo "Collecting compressed record file:" - [[ "$(uname -m)" != s390x ]] && gflag='-g' + [ "$(uname -m)" != s390x ] && gflag='-g' $perf_tool record -o $trace_file $gflag -z -F 5000 -- \ dd count=500 if=/dev/urandom of=/dev/null } diff -u linux-azure-5.4.0/tools/perf/tests/topology.c linux-azure-5.4.0/tools/perf/tests/topology.c --- linux-azure-5.4.0/tools/perf/tests/topology.c +++ linux-azure-5.4.0/tools/perf/tests/topology.c @@ -52,6 +52,7 @@ TEST_ASSERT_VAL("failed to write header", !perf_session__write_header(session, session->evlist, data.file.fd, true)); + evlist__delete(session->evlist); perf_session__delete(session); return 0; diff -u linux-azure-5.4.0/tools/perf/util/auxtrace.c linux-azure-5.4.0/tools/perf/util/auxtrace.c --- linux-azure-5.4.0/tools/perf/util/auxtrace.c +++ linux-azure-5.4.0/tools/perf/util/auxtrace.c @@ -1710,11 +1710,19 @@ bool near; }; +static bool kern_sym_name_match(const char *kname, const char *name) +{ + size_t n = strlen(name); + + return !strcmp(kname, name) || + (!strncmp(kname, name, n) && kname[n] == '\t'); +} + static bool kern_sym_match(struct sym_args *args, const char *name, char type) { /* A function with the same name, and global or the n'th found or any */ return kallsyms__is_function(type) && - !strcmp(name, args->name) && + kern_sym_name_match(name, args->name) && ((args->global && isupper(type)) || (args->selected && ++(args->cnt) == args->idx) || (!args->global && !args->selected)); diff -u linux-azure-5.4.0/tools/perf/util/data.c linux-azure-5.4.0/tools/perf/util/data.c --- linux-azure-5.4.0/tools/perf/util/data.c +++ linux-azure-5.4.0/tools/perf/util/data.c @@ -20,7 +20,7 @@ static void close_dir(struct perf_data_file *files, int nr) { - while (--nr >= 1) { + while (--nr >= 0) { close(files[nr].fd); zfree(&files[nr].path); } @@ -44,10 +44,6 @@ if (!files) return -ENOMEM; - data->dir.version = PERF_DIR_VERSION; - data->dir.files = files; - data->dir.nr = nr; - for (i = 0; i < nr; i++) { struct perf_data_file *file = &files[i]; @@ -62,6 +58,9 @@ file->fd = ret; } + data->dir.version = PERF_DIR_VERSION; + data->dir.files = files; + data->dir.nr = nr; return 0; out_err: diff -u linux-azure-5.4.0/tools/perf/util/dso.c linux-azure-5.4.0/tools/perf/util/dso.c --- linux-azure-5.4.0/tools/perf/util/dso.c +++ linux-azure-5.4.0/tools/perf/util/dso.c @@ -1086,8 +1086,10 @@ struct map *map = NULL; struct dso *dso = dso__new(name); - if (dso) + if (dso) { map = map__new2(0, dso); + dso__put(dso); + } return map; } diff -u linux-azure-5.4.0/tools/perf/util/env.c linux-azure-5.4.0/tools/perf/util/env.c --- linux-azure-5.4.0/tools/perf/util/env.c +++ linux-azure-5.4.0/tools/perf/util/env.c @@ -69,12 +69,13 @@ return node; } -void perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node) +bool perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node) { struct rb_node *parent = NULL; __u32 btf_id = btf_node->id; struct btf_node *node; struct rb_node **p; + bool ret = true; down_write(&env->bpf_progs.lock); p = &env->bpf_progs.btfs.rb_node; @@ -88,6 +89,7 @@ p = &(*p)->rb_right; } else { pr_debug("duplicated btf %u\n", btf_id); + ret = false; goto out; } } @@ -97,6 +99,7 @@ env->bpf_progs.btfs_cnt++; out: up_write(&env->bpf_progs.lock); + return ret; } struct btf_node *perf_env__find_btf(struct perf_env *env, __u32 btf_id) @@ -175,6 +178,7 @@ zfree(&env->cpuid); zfree(&env->cmdline); zfree(&env->cmdline_argv); + zfree(&env->sibling_dies); zfree(&env->sibling_cores); zfree(&env->sibling_threads); zfree(&env->pmu_mappings); diff -u linux-azure-5.4.0/tools/perf/util/hist.h linux-azure-5.4.0/tools/perf/util/hist.h --- linux-azure-5.4.0/tools/perf/util/hist.h +++ linux-azure-5.4.0/tools/perf/util/hist.h @@ -361,7 +361,6 @@ }; void perf_hpp__init(void); -void perf_hpp__column_unregister(struct perf_hpp_fmt *format); void perf_hpp__cancel_cumulate(void); void perf_hpp__setup_output_field(struct perf_hpp_list *list); void perf_hpp__reset_output_field(struct perf_hpp_list *list); diff -u linux-azure-5.4.0/tools/perf/util/intel-pt.c linux-azure-5.4.0/tools/perf/util/intel-pt.c --- linux-azure-5.4.0/tools/perf/util/intel-pt.c +++ linux-azure-5.4.0/tools/perf/util/intel-pt.c @@ -3038,6 +3038,7 @@ [INTEL_PT_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n", [INTEL_PT_PER_CPU_MMAPS] = " Per-cpu maps %"PRId64"\n", [INTEL_PT_MTC_BIT] = " MTC bit %#"PRIx64"\n", + [INTEL_PT_MTC_FREQ_BITS] = " MTC freq bits %#"PRIx64"\n", [INTEL_PT_TSC_CTC_N] = " TSC:CTC numerator %"PRIu64"\n", [INTEL_PT_TSC_CTC_D] = " TSC:CTC denominator %"PRIu64"\n", [INTEL_PT_CYC_BIT] = " CYC bit %#"PRIx64"\n", @@ -3052,8 +3053,12 @@ if (!dump_trace) return; - for (i = start; i <= finish; i++) - fprintf(stdout, intel_pt_info_fmts[i], arr[i]); + for (i = start; i <= finish; i++) { + const char *fmt = intel_pt_info_fmts[i]; + + if (fmt) + fprintf(stdout, fmt, arr[i]); + } } static void intel_pt_print_info_str(const char *name, const char *str) diff -u linux-azure-5.4.0/tools/perf/util/machine.c linux-azure-5.4.0/tools/perf/util/machine.c --- linux-azure-5.4.0/tools/perf/util/machine.c +++ linux-azure-5.4.0/tools/perf/util/machine.c @@ -2020,6 +2020,7 @@ al.filtered = 0; al.sym = NULL; + al.srcline = NULL; if (!cpumode) { thread__find_cpumode_addr_location(thread, ip, &al); } else { diff -u linux-azure-5.4.0/tools/perf/util/probe-event.c linux-azure-5.4.0/tools/perf/util/probe-event.c --- linux-azure-5.4.0/tools/perf/util/probe-event.c +++ linux-azure-5.4.0/tools/perf/util/probe-event.c @@ -175,8 +175,10 @@ struct map *map; map = dso__new_map(target); - if (map && map->dso) + if (map && map->dso) { + nsinfo__put(map->dso->nsinfo); map->dso->nsinfo = nsinfo__get(nsi); + } return map; } else { return kernel_get_module_map(target); @@ -2952,6 +2954,9 @@ for (j = 0; j < num_matched_functions; j++) { sym = syms[j]; + if (sym->type != STT_FUNC) + continue; + tev = (*tevs) + ret; tp = &tev->point; if (ret == num_matched_functions) { diff -u linux-azure-5.4.0/tools/perf/util/probe-file.c linux-azure-5.4.0/tools/perf/util/probe-file.c --- linux-azure-5.4.0/tools/perf/util/probe-file.c +++ linux-azure-5.4.0/tools/perf/util/probe-file.c @@ -337,11 +337,11 @@ ret = probe_file__get_events(fd, filter, namelist); if (ret < 0) - return ret; + goto out; ret = probe_file__del_strlist(fd, namelist); +out: strlist__delete(namelist); - return ret; } diff -u linux-azure-5.4.0/tools/perf/util/session.c linux-azure-5.4.0/tools/perf/util/session.c --- linux-azure-5.4.0/tools/perf/util/session.c +++ linux-azure-5.4.0/tools/perf/util/session.c @@ -1631,6 +1631,7 @@ if (event->header.size < hdr_sz || event->header.size > buf_sz) return -1; + buf += hdr_sz; rest = event->header.size - hdr_sz; if (readn(fd, buf, rest) != (ssize_t)rest) @@ -1959,6 +1960,7 @@ bool needs_swap, union perf_event *error) { union perf_event *event; + u16 event_size; /* * Ensure we have enough space remaining to read @@ -1971,15 +1973,23 @@ if (needs_swap) perf_event_header__bswap(&event->header); - if (head + event->header.size <= mmap_size) + event_size = event->header.size; + if (head + event_size <= mmap_size) return event; /* We're not fetching the event so swap back again */ if (needs_swap) perf_event_header__bswap(&event->header); - pr_debug("%s: head=%#" PRIx64 " event->header_size=%#x, mmap_size=%#zx:" - " fuzzed or compressed perf.data?\n",__func__, head, event->header.size, mmap_size); + /* Check if the event fits into the next mmapped buf. */ + if (event_size <= mmap_size - head % page_size) { + /* Remap buf and fetch again. */ + return NULL; + } + + /* Invalid input. Event size should never exceed mmap_size. */ + pr_debug("%s: head=%#" PRIx64 " event->header.size=%#x, mmap_size=%#zx:" + " fuzzed or compressed perf.data?\n", __func__, head, event_size, mmap_size); return error; } diff -u linux-azure-5.4.0/tools/perf/util/symbol-elf.c linux-azure-5.4.0/tools/perf/util/symbol-elf.c --- linux-azure-5.4.0/tools/perf/util/symbol-elf.c +++ linux-azure-5.4.0/tools/perf/util/symbol-elf.c @@ -230,6 +230,33 @@ return NULL; } +static int elf_read_program_header(Elf *elf, u64 vaddr, GElf_Phdr *phdr) +{ + size_t i, phdrnum; + u64 sz; + + if (elf_getphdrnum(elf, &phdrnum)) + return -1; + + for (i = 0; i < phdrnum; i++) { + if (gelf_getphdr(elf, i, phdr) == NULL) + return -1; + + if (phdr->p_type != PT_LOAD) + continue; + + sz = max(phdr->p_memsz, phdr->p_filesz); + if (!sz) + continue; + + if (vaddr >= phdr->p_vaddr && (vaddr < phdr->p_vaddr + sz)) + return 0; + } + + /* Not found any valid program header */ + return -1; +} + static bool want_demangle(bool is_kernel_sym) { return is_kernel_sym ? symbol_conf.demangle_kernel : symbol_conf.demangle; @@ -1091,6 +1118,7 @@ sym.st_value); used_opd = true; } + /* * When loading symbols in a data mapping, ABS symbols (which * has a value of SHN_ABS in its st_shndx) failed at @@ -1127,11 +1155,33 @@ goto out_elf_end; } else if ((used_opd && runtime_ss->adjust_symbols) || (!used_opd && syms_ss->adjust_symbols)) { - pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " " - "sh_addr: %#" PRIx64 " sh_offset: %#" PRIx64 "\n", __func__, - (u64)sym.st_value, (u64)shdr.sh_addr, - (u64)shdr.sh_offset); - sym.st_value -= shdr.sh_addr - shdr.sh_offset; + GElf_Phdr phdr; + + if (elf_read_program_header(syms_ss->elf, + (u64)sym.st_value, &phdr)) { + pr_debug4("%s: failed to find program header for " + "symbol: %s st_value: %#" PRIx64 "\n", + __func__, elf_name, (u64)sym.st_value); + pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " " + "sh_addr: %#" PRIx64 " sh_offset: %#" PRIx64 "\n", + __func__, (u64)sym.st_value, (u64)shdr.sh_addr, + (u64)shdr.sh_offset); + /* + * Fail to find program header, let's rollback + * to use shdr.sh_addr and shdr.sh_offset to + * calibrate symbol's file address, though this + * is not necessary for normal C ELF file, we + * still need to handle java JIT symbols in this + * case. + */ + sym.st_value -= shdr.sh_addr - shdr.sh_offset; + } else { + pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " " + "p_vaddr: %#" PRIx64 " p_offset: %#" PRIx64 "\n", + __func__, (u64)sym.st_value, (u64)phdr.p_vaddr, + (u64)phdr.p_offset); + sym.st_value -= phdr.p_vaddr - phdr.p_offset; + } } demangled = demangle_sym(dso, kmodule, elf_name); @@ -1862,8 +1912,8 @@ * unusual. One significant peculiarity is that the mapping (start -> pgoff) * is not the same for the kernel map and the modules map. That happens because * the data is copied adjacently whereas the original kcore has gaps. Finally, - * kallsyms and modules files are compared with their copies to check that - * modules have not been loaded or unloaded while the copies were taking place. + * kallsyms file is compared with its copy to check that modules have not been + * loaded or unloaded while the copies were taking place. * * Return: %0 on success, %-1 on failure. */ @@ -1926,9 +1976,6 @@ goto out_extract_close; } - if (kcore_copy__compare_file(from_dir, to_dir, "modules")) - goto out_extract_close; - if (kcore_copy__compare_file(from_dir, to_dir, "kallsyms")) goto out_extract_close; diff -u linux-azure-5.4.0/tools/perf/util/symbol.c linux-azure-5.4.0/tools/perf/util/symbol.c --- linux-azure-5.4.0/tools/perf/util/symbol.c +++ linux-azure-5.4.0/tools/perf/util/symbol.c @@ -231,7 +231,7 @@ prev = curr; curr = rb_entry(nd, struct symbol, rb_node); - if (prev->end == prev->start && prev->end != curr->start) + if (prev->end == prev->start || prev->end != curr->start) arch__symbols__fixup_end(prev, curr); } diff -u linux-azure-5.4.0/tools/power/x86/turbostat/turbostat.c linux-azure-5.4.0/tools/power/x86/turbostat/turbostat.c --- linux-azure-5.4.0/tools/power/x86/turbostat/turbostat.c +++ linux-azure-5.4.0/tools/power/x86/turbostat/turbostat.c @@ -3865,6 +3865,7 @@ case INTEL_FAM6_HASWELL_X: /* HSX */ case INTEL_FAM6_BROADWELL_X: /* BDX */ case INTEL_FAM6_XEON_PHI_KNL: /* KNL */ + case INTEL_FAM6_ICELAKE_X: /* ICX */ return (rapl_dram_energy_units = 15.3 / 1000000); default: return (rapl_energy_units); diff -u linux-azure-5.4.0/tools/scripts/Makefile.include linux-azure-5.4.0/tools/scripts/Makefile.include --- linux-azure-5.4.0/tools/scripts/Makefile.include +++ linux-azure-5.4.0/tools/scripts/Makefile.include @@ -39,8 +39,6 @@ EXTRA_WARNINGS += -Wwrite-strings EXTRA_WARNINGS += -Wformat -CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?) - # Makefiles suck: This macro sets a default value of $(2) for the # variable named by $(1), unless the variable has been set by # environment or command line. This is necessary for CC and AR @@ -52,12 +50,22 @@ $(eval $(1) = $(2))) endef +ifneq ($(LLVM),) +$(call allow-override,CC,clang) +$(call allow-override,AR,llvm-ar) +$(call allow-override,LD,ld.lld) +$(call allow-override,CXX,clang++) +$(call allow-override,STRIP,llvm-strip) +else # Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix. $(call allow-override,CC,$(CROSS_COMPILE)gcc) $(call allow-override,AR,$(CROSS_COMPILE)ar) $(call allow-override,LD,$(CROSS_COMPILE)ld) $(call allow-override,CXX,$(CROSS_COMPILE)g++) $(call allow-override,STRIP,$(CROSS_COMPILE)strip) +endif + +CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?) ifneq ($(LLVM),) HOSTAR ?= llvm-ar diff -u linux-azure-5.4.0/tools/testing/selftests/bpf/test_maps.c linux-azure-5.4.0/tools/testing/selftests/bpf/test_maps.c --- linux-azure-5.4.0/tools/testing/selftests/bpf/test_maps.c +++ linux-azure-5.4.0/tools/testing/selftests/bpf/test_maps.c @@ -972,7 +972,7 @@ FD_ZERO(&w); FD_SET(sfd[3], &w); - to.tv_sec = 1; + to.tv_sec = 30; to.tv_usec = 0; s = select(sfd[3] + 1, &w, NULL, NULL, &to); if (s == -1) { diff -u linux-azure-5.4.0/tools/testing/selftests/bpf/test_progs.c linux-azure-5.4.0/tools/testing/selftests/bpf/test_progs.c --- linux-azure-5.4.0/tools/testing/selftests/bpf/test_progs.c +++ linux-azure-5.4.0/tools/testing/selftests/bpf/test_progs.c @@ -289,7 +289,7 @@ if (getline(&line, &len, fp) == -1) goto err; - fclose(fp); + pclose(fp); if (len > size) len = size; @@ -298,7 +298,7 @@ free(line); return 0; err: - fclose(fp); + pclose(fp); return -1; } diff -u linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/unpriv.c linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/unpriv.c --- linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/unpriv.c +++ linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/unpriv.c @@ -418,6 +418,8 @@ BPF_LDX_MEM(BPF_DW, BPF_REG_0, BPF_REG_7, 0), BPF_EXIT_INSN(), }, + .errstr_unpriv = "R7 invalid mem access 'inv'", + .result_unpriv = REJECT, .result = ACCEPT, .retval = 0, }, diff -u linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/value_ptr_arith.c linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/value_ptr_arith.c --- linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/value_ptr_arith.c +++ linux-azure-5.4.0/tools/testing/selftests/bpf/verifier/value_ptr_arith.c @@ -120,7 +120,7 @@ .fixup_map_array_48b = { 1 }, .result = ACCEPT, .result_unpriv = REJECT, - .errstr_unpriv = "R2 tried to add from different maps, paths or scalars", + .errstr_unpriv = "R2 pointer comparison prohibited", .retval = 0, }, { @@ -159,7 +159,8 @@ BPF_MOV64_IMM(BPF_REG_0, 0), BPF_EXIT_INSN(), // fake-dead code; targeted from branch A to - // prevent dead code sanitization + // prevent dead code sanitization, rejected + // via branch B however BPF_LDX_MEM(BPF_B, BPF_REG_0, BPF_REG_0, 0), BPF_MOV64_IMM(BPF_REG_0, 0), BPF_EXIT_INSN(), @@ -167,7 +168,7 @@ .fixup_map_array_48b = { 1 }, .result = ACCEPT, .result_unpriv = REJECT, - .errstr_unpriv = "R2 tried to add from different maps, paths or scalars", + .errstr_unpriv = "R0 invalid mem access 'inv'", .retval = 0, }, { @@ -300,8 +301,6 @@ }, .fixup_map_array_48b = { 3 }, .result = ACCEPT, - .result_unpriv = REJECT, - .errstr_unpriv = "R0 pointer arithmetic of map value goes out of range", .retval = 1, }, { @@ -371,8 +370,6 @@ }, .fixup_map_array_48b = { 3 }, .result = ACCEPT, - .result_unpriv = REJECT, - .errstr_unpriv = "R0 pointer arithmetic of map value goes out of range", .retval = 1, }, { @@ -472,8 +469,6 @@ }, .fixup_map_array_48b = { 3 }, .result = ACCEPT, - .result_unpriv = REJECT, - .errstr_unpriv = "R0 pointer arithmetic of map value goes out of range", .retval = 1, }, { @@ -766,8 +761,6 @@ }, .fixup_map_array_48b = { 3 }, .result = ACCEPT, - .result_unpriv = REJECT, - .errstr_unpriv = "R0 pointer arithmetic of map value goes out of range", .retval = 1, }, { diff -u linux-azure-5.4.0/tools/testing/selftests/cgroup/cgroup_util.c linux-azure-5.4.0/tools/testing/selftests/cgroup/cgroup_util.c --- linux-azure-5.4.0/tools/testing/selftests/cgroup/cgroup_util.c +++ linux-azure-5.4.0/tools/testing/selftests/cgroup/cgroup_util.c @@ -202,7 +202,7 @@ int cg_create(const char *cgroup) { - return mkdir(cgroup, 0644); + return mkdir(cgroup, 0755); } int cg_wait_for_proc_count(const char *cgroup, int count) diff -u linux-azure-5.4.0/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc linux-azure-5.4.0/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc --- linux-azure-5.4.0/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc +++ linux-azure-5.4.0/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc @@ -24,7 +24,6 @@ check_error 'p:^12345678901234567890123456789012345678901234567890123456789012345/bar vfs_read' # GROUP_TOO_LONG check_error 'p:^foo.1/bar vfs_read' # BAD_GROUP_NAME -check_error 'p:foo/^ vfs_read' # NO_EVENT_NAME check_error 'p:foo/^12345678901234567890123456789012345678901234567890123456789012345 vfs_read' # EVENT_TOO_LONG check_error 'p:foo/^bar.1 vfs_read' # BAD_EVENT_NAME diff -u linux-azure-5.4.0/tools/testing/selftests/lib.mk linux-azure-5.4.0/tools/testing/selftests/lib.mk --- linux-azure-5.4.0/tools/testing/selftests/lib.mk +++ linux-azure-5.4.0/tools/testing/selftests/lib.mk @@ -48,6 +48,7 @@ # When local build is done, headers are installed in the default # INSTALL_HDR_PATH usr/include. .PHONY: khdr +.NOTPARALLEL: khdr: ifndef KSFT_KHDR_INSTALL_DONE ifeq (1,$(DEFAULT_INSTALL_HDR_PATH)) diff -u linux-azure-5.4.0/tools/testing/selftests/memfd/fuse_test.c linux-azure-5.4.0/tools/testing/selftests/memfd/fuse_test.c --- linux-azure-5.4.0/tools/testing/selftests/memfd/fuse_test.c +++ linux-azure-5.4.0/tools/testing/selftests/memfd/fuse_test.c @@ -32,6 +32,7 @@ #include #include #include +#include #include "common.h" diff -u linux-azure-5.4.0/tools/testing/selftests/memfd/memfd_test.c linux-azure-5.4.0/tools/testing/selftests/memfd/memfd_test.c --- linux-azure-5.4.0/tools/testing/selftests/memfd/memfd_test.c +++ linux-azure-5.4.0/tools/testing/selftests/memfd/memfd_test.c @@ -28,6 +28,10 @@ #define MFD_DEF_SIZE 8192 #define STACK_SIZE 65536 +#ifndef F_SEAL_FUTURE_WRITE +#define F_SEAL_FUTURE_WRITE 0x0010 +#endif + /* * Default is not to test hugetlbfs */ @@ -421,6 +425,7 @@ printf("mmap()+mprotect() didn't fail as expected\n"); abort(); } + munmap(p, mfd_def_size); } /* verify PUNCH_HOLE fails */ diff -u linux-azure-5.4.0/tools/testing/selftests/net/Makefile linux-azure-5.4.0/tools/testing/selftests/net/Makefile --- linux-azure-5.4.0/tools/testing/selftests/net/Makefile +++ linux-azure-5.4.0/tools/testing/selftests/net/Makefile @@ -10,7 +10,10 @@ TEST_PROGS += udpgso_bench.sh fib_rule_tests.sh msg_zerocopy.sh psock_snd.sh TEST_PROGS += udpgro_bench.sh udpgro.sh test_vxlan_under_vrf.sh reuseport_addr_any.sh TEST_PROGS += test_vxlan_fdb_changelink.sh so_txtime.sh ipv6_flowlabel.sh -TEST_PROGS += tcp_fastopen_backup_key.sh fcnal-test.sh +TEST_PROGS += tcp_fastopen_backup_key.sh fcnal-test.sh l2tp.sh +TEST_PROGS += fib_nexthop_multiprefix.sh fib_nexthops.sh fib_nexthop_nongw.sh +TEST_PROGS += icmp_redirect.sh ip6_gre_headroom.sh +TEST_PROGS += route_localnet.sh TEST_PROGS_EXTENDED := in_netns.sh TEST_GEN_FILES = socket nettest TEST_GEN_FILES += psock_fanout psock_tpacket msg_zerocopy reuseport_addr_any diff -u linux-azure-5.4.0/tools/testing/selftests/net/fcnal-test.sh linux-azure-5.4.0/tools/testing/selftests/net/fcnal-test.sh --- linux-azure-5.4.0/tools/testing/selftests/net/fcnal-test.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/fcnal-test.sh @@ -757,10 +757,16 @@ setup set_sysctl net.ipv4.raw_l3mdev_accept=1 2>/dev/null ipv4_ping_novrf + setup + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv4_ping_novrf log_subsection "With VRF" setup "yes" ipv4_ping_vrf + setup "yes" + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv4_ping_vrf } ################################################################################ @@ -1491,8 +1497,9 @@ for a in ${NSA_IP} ${VRF_IP} do log_start + show_hint "Socket not bound to VRF, but address is in VRF" run_cmd nettest -s -R -P icmp -l ${a} -b - log_test_addr ${a} $? 0 "Raw socket bind to local address" + log_test_addr ${a} $? 1 "Raw socket bind to local address" log_start run_cmd nettest -s -R -P icmp -l ${a} -d ${NSA_DEV} -b @@ -1884,7 +1891,7 @@ log_start show_hint "Fails since VRF device does not support linklocal or multicast" run_cmd ${ping6} -c1 -w1 ${a} - log_test_addr ${a} $? 2 "ping out, VRF bind" + log_test_addr ${a} $? 1 "ping out, VRF bind" done for a in ${NSB_IP6} ${NSB_LO_IP6} ${NSB_LINKIP6}%${NSA_DEV} ${MCAST}%${NSA_DEV} @@ -2004,10 +2011,16 @@ log_subsection "No VRF" setup ipv6_ping_novrf + setup + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv6_ping_novrf log_subsection "With VRF" setup "yes" ipv6_ping_vrf + setup "yes" + set_sysctl net.ipv4.ping_group_range='0 2147483647' 2>/dev/null + ipv6_ping_vrf } ################################################################################ @@ -2890,11 +2903,14 @@ run_cmd nettest -6 -s -l ${a} -d ${NSA_DEV} -t1 -b log_test_addr ${a} $? 0 "TCP socket bind to local address after device bind" + # Sadly, the kernel allows binding a socket to a device and then + # binding to an address not on the device. So this test passes + # when it really should not a=${NSA_LO_IP6} log_start - show_hint "Should fail with 'Cannot assign requested address'" - run_cmd nettest -6 -s -l ${a} -d ${NSA_DEV} -t1 -b - log_test_addr ${a} $? 1 "TCP socket bind to out of scope local address" + show_hint "Tecnically should fail since address is not on device but kernel allows" + run_cmd nettest -6 -s -l ${a} -I ${NSA_DEV} -t1 -b + log_test_addr ${a} $? 0 "TCP socket bind to out of scope local address" } ipv6_addr_bind_vrf() @@ -2935,10 +2951,15 @@ run_cmd nettest -6 -s -l ${a} -d ${NSA_DEV} -t1 -b log_test_addr ${a} $? 0 "TCP socket bind to local address with device bind" + # Sadly, the kernel allows binding a socket to a device and then + # binding to an address not on the device. The only restriction + # is that the address is valid in the L3 domain. So this test + # passes when it really should not a=${VRF_IP6} log_start - run_cmd nettest -6 -s -l ${a} -d ${NSA_DEV} -t1 -b - log_test_addr ${a} $? 1 "TCP socket bind to VRF address with device bind" + show_hint "Tecnically should fail since address is not on device but kernel allows" + run_cmd nettest -6 -s -l ${a} -I ${NSA_DEV} -t1 -b + log_test_addr ${a} $? 0 "TCP socket bind to VRF address with device bind" a=${NSA_LO_IP6} log_start @@ -3450,8 +3471,8 @@ ################################################################################ # main -TESTS_IPV4="ipv4_ping ipv4_tcp ipv4_udp ipv4_addr_bind ipv4_runtime ipv4_netfilter" -TESTS_IPV6="ipv6_ping ipv6_tcp ipv6_udp ipv6_addr_bind ipv6_runtime ipv6_netfilter" +TESTS_IPV4="ipv4_ping ipv4_tcp ipv4_udp ipv4_bind ipv4_runtime ipv4_netfilter" +TESTS_IPV6="ipv6_ping ipv6_tcp ipv6_udp ipv6_bind ipv6_runtime ipv6_netfilter" TESTS_OTHER="use_cases" PAUSE_ON_FAIL=no diff -u linux-azure-5.4.0/tools/testing/selftests/net/fib_tests.sh linux-azure-5.4.0/tools/testing/selftests/net/fib_tests.sh --- linux-azure-5.4.0/tools/testing/selftests/net/fib_tests.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/fib_tests.sh @@ -444,25 +444,63 @@ setup set -e + ip netns add ns2 + ip netns set ns2 auto + + ip -netns ns2 link set dev lo up + + $IP link add name veth1 type veth peer name veth2 + $IP link set dev veth2 netns ns2 + $IP address add 192.0.2.1/24 dev veth1 + ip -netns ns2 address add 192.0.2.1/24 dev veth2 + $IP link set dev veth1 up + ip -netns ns2 link set dev veth2 up + $IP link set dev lo address 52:54:00:6a:c7:5e - $IP link set dummy0 address 52:54:00:6a:c7:5e - $IP link add dummy1 type dummy - $IP link set dummy1 address 52:54:00:6a:c7:5e - $IP link set dev dummy1 up - $IP address add 192.0.2.1/24 dev dummy1 + $IP link set dev veth1 address 52:54:00:6a:c7:5e + ip -netns ns2 link set dev lo address 52:54:00:6a:c7:5e + ip -netns ns2 link set dev veth2 address 52:54:00:6a:c7:5e + + # 1. (ns2) redirect lo's egress to veth2's egress + ip netns exec ns2 tc qdisc add dev lo parent root handle 1: fq_codel + ip netns exec ns2 tc filter add dev lo parent 1: protocol arp basic \ + action mirred egress redirect dev veth2 + ip netns exec ns2 tc filter add dev lo parent 1: protocol ip basic \ + action mirred egress redirect dev veth2 + + # 2. (ns1) redirect veth1's ingress to lo's ingress + $NS_EXEC tc qdisc add dev veth1 ingress + $NS_EXEC tc filter add dev veth1 ingress protocol arp basic \ + action mirred ingress redirect dev lo + $NS_EXEC tc filter add dev veth1 ingress protocol ip basic \ + action mirred ingress redirect dev lo + + # 3. (ns1) redirect lo's egress to veth1's egress + $NS_EXEC tc qdisc add dev lo parent root handle 1: fq_codel + $NS_EXEC tc filter add dev lo parent 1: protocol arp basic \ + action mirred egress redirect dev veth1 + $NS_EXEC tc filter add dev lo parent 1: protocol ip basic \ + action mirred egress redirect dev veth1 + + # 4. (ns2) redirect veth2's ingress to lo's ingress + ip netns exec ns2 tc qdisc add dev veth2 ingress + ip netns exec ns2 tc filter add dev veth2 ingress protocol arp basic \ + action mirred ingress redirect dev lo + ip netns exec ns2 tc filter add dev veth2 ingress protocol ip basic \ + action mirred ingress redirect dev lo + $NS_EXEC sysctl -qw net.ipv4.conf.all.rp_filter=1 $NS_EXEC sysctl -qw net.ipv4.conf.all.accept_local=1 $NS_EXEC sysctl -qw net.ipv4.conf.all.route_localnet=1 - - $NS_EXEC tc qd add dev dummy1 parent root handle 1: fq_codel - $NS_EXEC tc filter add dev dummy1 parent 1: protocol arp basic action mirred egress redirect dev lo - $NS_EXEC tc filter add dev dummy1 parent 1: protocol ip basic action mirred egress redirect dev lo + ip netns exec ns2 sysctl -qw net.ipv4.conf.all.rp_filter=1 + ip netns exec ns2 sysctl -qw net.ipv4.conf.all.accept_local=1 + ip netns exec ns2 sysctl -qw net.ipv4.conf.all.route_localnet=1 set +e - run_cmd "ip netns exec ns1 ping -I dummy1 -w1 -c1 198.51.100.1" + run_cmd "ip netns exec ns2 ping -w1 -c1 192.0.2.1" log_test $? 0 "rp_filter passes local packets" - run_cmd "ip netns exec ns1 ping -I dummy1 -w1 -c1 127.0.0.1" + run_cmd "ip netns exec ns2 ping -w1 -c1 127.0.0.1" log_test $? 0 "rp_filter passes loopback packets" cleanup @@ -1385,12 +1423,37 @@ ipv4_rt_replace_mpath } +# checks that cached input route on VRF port is deleted +# when VRF is deleted +ipv4_local_rt_cache() +{ + run_cmd "ip addr add 10.0.0.1/32 dev lo" + run_cmd "ip netns add test-ns" + run_cmd "ip link add veth-outside type veth peer name veth-inside" + run_cmd "ip link add vrf-100 type vrf table 1100" + run_cmd "ip link set veth-outside master vrf-100" + run_cmd "ip link set veth-inside netns test-ns" + run_cmd "ip link set veth-outside up" + run_cmd "ip link set vrf-100 up" + run_cmd "ip route add 10.1.1.1/32 dev veth-outside table 1100" + run_cmd "ip netns exec test-ns ip link set veth-inside up" + run_cmd "ip netns exec test-ns ip addr add 10.1.1.1/32 dev veth-inside" + run_cmd "ip netns exec test-ns ip route add 10.0.0.1/32 dev veth-inside" + run_cmd "ip netns exec test-ns ip route add default via 10.0.0.1" + run_cmd "ip netns exec test-ns ping 10.0.0.1 -c 1 -i 1" + run_cmd "ip link delete vrf-100" + + # if we do not hang test is a success + log_test $? 0 "Cached route removed from VRF port device" +} + ipv4_route_test() { route_setup ipv4_rt_add ipv4_rt_replace + ipv4_local_rt_cache route_cleanup } diff -u linux-azure-5.4.0/tools/testing/selftests/net/icmp_redirect.sh linux-azure-5.4.0/tools/testing/selftests/net/icmp_redirect.sh --- linux-azure-5.4.0/tools/testing/selftests/net/icmp_redirect.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/icmp_redirect.sh @@ -63,10 +63,14 @@ local rc=$1 local expected=$2 local msg="$3" + local xfail=$4 if [ ${rc} -eq ${expected} ]; then printf "TEST: %-60s [ OK ]\n" "${msg}" nsuccess=$((nsuccess+1)) + elif [ ${rc} -eq ${xfail} ]; then + printf "TEST: %-60s [XFAIL]\n" "${msg}" + nxfail=$((nxfail+1)) else ret=1 nfail=$((nfail+1)) @@ -307,11 +311,12 @@ ip -netns h1 ro get ${H1_VRF_ARG} ${H2_N2_IP} | \ grep -E -v 'mtu|redirected' | grep -q "cache" fi - log_test $? 0 "IPv4: ${desc}" + log_test $? 0 "IPv4: ${desc}" 0 - if [ "$with_redirect" = "yes" ]; then + # No PMTU info for test "redirect" and "mtu exception plus redirect" + if [ "$with_redirect" = "yes" ] && [ "$desc" != "redirect exception plus mtu" ]; then ip -netns h1 -6 ro get ${H1_VRF_ARG} ${H2_N2_IP6} | \ - grep -q "${H2_N2_IP6} from :: via ${R2_LLADDR} dev br0.*${mtu}" + grep -v "mtu" | grep -q "${H2_N2_IP6} .*via ${R2_LLADDR} dev br0" elif [ -n "${mtu}" ]; then ip -netns h1 -6 ro get ${H1_VRF_ARG} ${H2_N2_IP6} | \ grep -q "${mtu}" @@ -322,7 +327,7 @@ ip -netns h1 -6 ro get ${H1_VRF_ARG} ${H2_N2_IP6} | \ grep -v "mtu" | grep -q "${R1_LLADDR}" fi - log_test $? 0 "IPv6: ${desc}" + log_test $? 0 "IPv6: ${desc}" 1 } run_ping() @@ -488,6 +493,7 @@ ret=0 nsuccess=0 nfail=0 +nxfail=0 while getopts :pv o do @@ -533,4 +539,5 @@ printf "\nTests passed: %3d\n" ${nsuccess} printf "Tests failed: %3d\n" ${nfail} +printf "Tests xfailed: %3d\n" ${nxfail} exit $ret diff -u linux-azure-5.4.0/tools/testing/selftests/net/pmtu.sh linux-azure-5.4.0/tools/testing/selftests/net/pmtu.sh --- linux-azure-5.4.0/tools/testing/selftests/net/pmtu.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/pmtu.sh @@ -579,7 +579,6 @@ setup() { [ "$(id -u)" -ne 0 ] && echo " need to run as root" && return $ksft_skip - cleanup for arg do eval setup_${arg} || { echo " ${arg} not supported"; return 1; } done @@ -590,7 +589,7 @@ for arg do [ "${ns_cmd}" = "" ] && ns_cmd="${arg}" && continue - ${ns_cmd} tcpdump -s 0 -i "${arg}" -w "${name}_${arg}.pcap" 2> /dev/null & + ${ns_cmd} tcpdump --immediate-mode -s 0 -i "${arg}" -w "${name}_${arg}.pcap" 2> /dev/null & tcpdump_pids="${tcpdump_pids} $!" ns_cmd= done @@ -1182,6 +1181,10 @@ unset IFS + # Since cleanup() relies on variables modified by this subshell, it + # has to run in this context. + trap cleanup EXIT + if [ "$VERBOSE" = "1" ]; then printf "\n##########################################################################\n\n" fi @@ -1208,7 +1211,19 @@ return $ret ) ret=$? - [ $ret -ne 0 ] && exitcode=1 + case $ret in + 0) + all_skipped=false + [ $exitcode=$ksft_skip ] && exitcode=0 + ;; + $ksft_skip) + [ $all_skipped = true ] && exitcode=$ksft_skip + ;; + *) + all_skipped=false + exitcode=1 + ;; + esac return $ret } @@ -1399,6 +1414,7 @@ # exitcode=0 desc=0 +all_skipped=true while getopts :ptv o do diff -u linux-azure-5.4.0/tools/testing/selftests/net/psock_snd.sh linux-azure-5.4.0/tools/testing/selftests/net/psock_snd.sh --- linux-azure-5.4.0/tools/testing/selftests/net/psock_snd.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/psock_snd.sh @@ -86,9 +86,6 @@ echo "raw gso min size" ./in_netns.sh ./psock_snd -v -c -g -l "${mss_exceeds}" -echo "raw gso min size - 1 (expected to fail)" -(! ./in_netns.sh ./psock_snd -v -c -g -l "${mss}") - echo "raw gso max size" ./in_netns.sh ./psock_snd -v -c -g -l "${max_mss}" diff -u linux-azure-5.4.0/tools/testing/selftests/net/rtnetlink.sh linux-azure-5.4.0/tools/testing/selftests/net/rtnetlink.sh --- linux-azure-5.4.0/tools/testing/selftests/net/rtnetlink.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/rtnetlink.sh @@ -928,11 +928,16 @@ check_err $? # test external mode - ip -netns "$testns" link add dev "$DEV_NS" type ip6gretap external - check_err $? + ip link help ip6gretap 2>&1 | grep -q "\[ external \]" + if [ $? -ne 0 ];then + echo "SKIP: ip6gretap: external mode: iproute2 too old" + else + ip -netns "$testns" link add dev "$DEV_NS" type ip6gretap external + check_err $? - ip -netns "$testns" link del "$DEV_NS" - check_err $? + ip -netns "$testns" link del "$DEV_NS" + check_err $? + fi if [ $ret -ne 0 ]; then echo "FAIL: ip6gretap" @@ -962,35 +967,53 @@ return $ksft_skip fi - # test native tunnel erspan v1 - ip -netns "$testns" link add dev "$DEV_NS" type erspan seq \ - key 102 local 172.16.1.100 remote 172.16.1.200 \ - erspan_ver 1 erspan 488 - check_err $? - - ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 - check_err $? - - ip -netns "$testns" link set dev $DEV_NS up - check_err $? - - ip -netns "$testns" link del "$DEV_NS" - check_err $? + ip link help erspan 2>&1 | grep -q "erspan_ver" + if [ $? -ne 0 ];then + # test native tunnel erspan v1 (default on older iproute2) + ip -netns "$testns" link add dev "$DEV_NS" type erspan seq \ + key 102 local 172.16.1.100 remote 172.16.1.200 \ + erspan 488 + check_err $? + + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? + + ip -netns "$testns" link set dev $DEV_NS up + check_err $? + + ip -netns "$testns" link del "$DEV_NS" + check_err $? + else + # test native tunnel erspan v1 + ip -netns "$testns" link add dev "$DEV_NS" type erspan seq \ + key 102 local 172.16.1.100 remote 172.16.1.200 \ + erspan_ver 1 erspan 488 + check_err $? + + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? + + ip -netns "$testns" link set dev $DEV_NS up + check_err $? + + ip -netns "$testns" link del "$DEV_NS" + check_err $? + + # test native tunnel erspan v2 + ip -netns "$testns" link add dev "$DEV_NS" type erspan seq \ + key 102 local 172.16.1.100 remote 172.16.1.200 \ + erspan_ver 2 erspan_dir ingress erspan_hwid 7 + check_err $? - # test native tunnel erspan v2 - ip -netns "$testns" link add dev "$DEV_NS" type erspan seq \ - key 102 local 172.16.1.100 remote 172.16.1.200 \ - erspan_ver 2 erspan_dir ingress erspan_hwid 7 - check_err $? + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? - ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 - check_err $? + ip -netns "$testns" link set dev $DEV_NS up + check_err $? - ip -netns "$testns" link set dev $DEV_NS up - check_err $? - - ip -netns "$testns" link del "$DEV_NS" - check_err $? + ip -netns "$testns" link del "$DEV_NS" + check_err $? + fi # test external mode ip -netns "$testns" link add dev "$DEV_NS" type erspan external @@ -1027,43 +1050,67 @@ return $ksft_skip fi - # test native tunnel ip6erspan v1 - ip -netns "$testns" link add dev "$DEV_NS" type ip6erspan seq \ - key 102 local fc00:100::1 remote fc00:100::2 \ - erspan_ver 1 erspan 488 - check_err $? - - ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 - check_err $? - - ip -netns "$testns" link set dev $DEV_NS up - check_err $? - - ip -netns "$testns" link del "$DEV_NS" - check_err $? - - # test native tunnel ip6erspan v2 - ip -netns "$testns" link add dev "$DEV_NS" type ip6erspan seq \ - key 102 local fc00:100::1 remote fc00:100::2 \ - erspan_ver 2 erspan_dir ingress erspan_hwid 7 - check_err $? + ip link help erspan 2>&1 | grep -q "erspan_ver" + if [ $? -ne 0 ];then + # test native tunnel ip6erspan v1 (default on older iproute2) + ip -netns "$testns" link add dev "$DEV_NS" type ip6erspan seq \ + key 102 local fc00:100::1 remote fc00:100::2 \ + erspan 488 + check_err $? + + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? + + ip -netns "$testns" link set dev $DEV_NS up + check_err $? + + ip -netns "$testns" link del "$DEV_NS" + check_err $? + else + # test native tunnel ip6erspan v1 + ip -netns "$testns" link add dev "$DEV_NS" type ip6erspan seq \ + key 102 local fc00:100::1 remote fc00:100::2 \ + erspan_ver 1 erspan 488 + check_err $? + + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? + + ip -netns "$testns" link set dev $DEV_NS up + check_err $? + + ip -netns "$testns" link del "$DEV_NS" + check_err $? + + # test native tunnel ip6erspan v2 + ip -netns "$testns" link add dev "$DEV_NS" type ip6erspan seq \ + key 102 local fc00:100::1 remote fc00:100::2 \ + erspan_ver 2 erspan_dir ingress erspan_hwid 7 + check_err $? - ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 - check_err $? + ip -netns "$testns" addr add dev "$DEV_NS" 10.1.1.100/24 + check_err $? - ip -netns "$testns" link set dev $DEV_NS up - check_err $? + ip -netns "$testns" link set dev $DEV_NS up + check_err $? - ip -netns "$testns" link del "$DEV_NS" - check_err $? + ip -netns "$testns" link del "$DEV_NS" + check_err $? + fi # test external mode - ip -netns "$testns" link add dev "$DEV_NS" \ - type ip6erspan external - check_err $? + ip link help ip6erspan | grep -q "\[ external \]" + if [ $? -ne 0 ];then + echo "SKIP: ip6erspan: external mode: iproute2 too old" + ret=0 + else + ip -netns "$testns" link add dev "$DEV_NS" \ + type ip6erspan external + check_err $? - ip -netns "$testns" link del "$DEV_NS" - check_err $? + ip -netns "$testns" link del "$DEV_NS" + check_err $? + fi if [ $ret -ne 0 ]; then echo "FAIL: ip6erspan" diff -u linux-azure-5.4.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh linux-azure-5.4.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh --- linux-azure-5.4.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh +++ linux-azure-5.4.0/tools/testing/selftests/net/test_vxlan_under_vrf.sh @@ -101,6 +101,8 @@ ip -netns hv-$id link set veth-tap master br0 ip -netns hv-$id link set veth-tap up + ip link set veth-hv address 02:1d:8d:dd:0c:6$id + ip link set veth-hv netns vm-$id ip -netns vm-$id addr add 10.0.0.$id/24 dev veth-hv ip -netns vm-$id link set veth-hv up @@ -121,12 +123,9 @@ -ip -netns hv-1 link set veth0 down -ip -netns hv-1 link set veth0 up +ip -netns hv-1 link set vxlan0 down +ip -netns hv-1 link set vxlan0 up ip -netns hv-2 link set veth0 vrf vrf-underlay -ip -netns hv-2 link set veth0 down -ip -netns hv-2 link set veth0 up +ip -netns hv-2 link set vxlan0 down +ip -netns hv-2 link set vxlan0 up echo -n "Check VM connectivity through VXLAN (underlay in a VRF) " -if ! ip netns exec vm-1 ping -c 1 -W 1 10.0.0.2 &> /dev/null; then - echo "[XFAIL]" -else - echo "[ OK ]" -fi +ip netns exec vm-1 ping -c 1 -W 1 10.0.0.2 &> /dev/null || (echo "[FAIL]"; false) +echo "[ OK ]" diff -u linux-azure-5.4.0/tools/testing/selftests/net/udpgso.c linux-azure-5.4.0/tools/testing/selftests/net/udpgso.c --- linux-azure-5.4.0/tools/testing/selftests/net/udpgso.c +++ linux-azure-5.4.0/tools/testing/selftests/net/udpgso.c @@ -156,13 +156,13 @@ }, { /* send max number of min sized segments */ - .tlen = UDP_MAX_SEGMENTS - CONST_HDRLEN_V4, + .tlen = UDP_MAX_SEGMENTS, .gso_len = 1, - .r_num_mss = UDP_MAX_SEGMENTS - CONST_HDRLEN_V4, + .r_num_mss = UDP_MAX_SEGMENTS, }, { /* send max number + 1 of min sized segments: fail */ - .tlen = UDP_MAX_SEGMENTS - CONST_HDRLEN_V4 + 1, + .tlen = UDP_MAX_SEGMENTS + 1, .gso_len = 1, .tfail = true, }, @@ -259,13 +259,13 @@ }, { /* send max number of min sized segments */ - .tlen = UDP_MAX_SEGMENTS - CONST_HDRLEN_V6, + .tlen = UDP_MAX_SEGMENTS, .gso_len = 1, - .r_num_mss = UDP_MAX_SEGMENTS - CONST_HDRLEN_V6, + .r_num_mss = UDP_MAX_SEGMENTS, }, { /* send max number + 1 of min sized segments: fail */ - .tlen = UDP_MAX_SEGMENTS - CONST_HDRLEN_V6 + 1, + .tlen = UDP_MAX_SEGMENTS + 1, .gso_len = 1, .tfail = true, }, diff -u linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_rx.c linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_rx.c --- linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_rx.c +++ linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_rx.c @@ -293,19 +293,17 @@ static void parse_opts(int argc, char **argv) { + const char *bind_addr = NULL; int c; - /* bind to any by default */ - setup_sockaddr(PF_INET6, "::", &cfg_bind_addr); while ((c = getopt(argc, argv, "4b:C:Gl:n:p:rR:S:tv")) != -1) { switch (c) { case '4': cfg_family = PF_INET; cfg_alen = sizeof(struct sockaddr_in); - setup_sockaddr(PF_INET, "0.0.0.0", &cfg_bind_addr); break; case 'b': - setup_sockaddr(cfg_family, optarg, &cfg_bind_addr); + bind_addr = optarg; break; case 'C': cfg_connect_timeout_ms = strtoul(optarg, NULL, 0); @@ -341,6 +339,11 @@ } } + if (!bind_addr) + bind_addr = cfg_family == PF_INET6 ? "::" : "0.0.0.0"; + + setup_sockaddr(cfg_family, bind_addr, &cfg_bind_addr); + if (optind != argc) usage(argv[0]); diff -u linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_tx.c linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_tx.c --- linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_tx.c +++ linux-azure-5.4.0/tools/testing/selftests/net/udpgso_bench_tx.c @@ -419,6 +419,7 @@ static void parse_opts(int argc, char **argv) { + const char *bind_addr = NULL; int max_len, hdrlen; int c; @@ -446,7 +447,7 @@ cfg_cpu = strtol(optarg, NULL, 0); break; case 'D': - setup_sockaddr(cfg_family, optarg, &cfg_dst_addr); + bind_addr = optarg; break; case 'l': cfg_runtime_ms = strtoul(optarg, NULL, 10) * 1000; @@ -492,6 +493,11 @@ } } + if (!bind_addr) + bind_addr = cfg_family == PF_INET6 ? "::" : "0.0.0.0"; + + setup_sockaddr(cfg_family, bind_addr, &cfg_dst_addr); + if (optind != argc) usage(argv[0]); diff -u linux-azure-5.4.0/tools/testing/selftests/netfilter/nft_nat.sh linux-azure-5.4.0/tools/testing/selftests/netfilter/nft_nat.sh --- linux-azure-5.4.0/tools/testing/selftests/netfilter/nft_nat.sh +++ linux-azure-5.4.0/tools/testing/selftests/netfilter/nft_nat.sh @@ -374,6 +374,45 @@ return $lret } +test_local_dnat_portonly() +{ + local family=$1 + local daddr=$2 + local lret=0 + local sr_s + local sr_r + +ip netns exec "$ns0" nft -f /dev/stdin <reps; for (i = 0; i < reps; i++) { - int cpu = rseq_cpu_start(); - - cpu = rseq_this_cpu_lock(&data->lock); + int cpu = rseq_this_cpu_lock(&data->lock); data->c[cpu].count++; rseq_percpu_unlock(&data->lock, cpu); #ifndef BENCHMARK @@ -549,7 +547,7 @@ for (;;) { struct percpu_list_node *head; intptr_t *targetptr, expectnot, *load; - off_t offset; + long offset; int ret; cpu = rseq_cpu_start(); diff -u linux-azure-5.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c linux-azure-5.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c --- linux-azure-5.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c +++ linux-azure-5.4.0/tools/testing/selftests/seccomp/seccomp_bpf.c @@ -26,7 +26,6 @@ #include #include #include -#include #include #include #include @@ -45,6 +44,7 @@ #include #include #include +#include #include #include @@ -158,12 +158,17 @@ #ifndef PTRACE_SECCOMP_GET_METADATA #define PTRACE_SECCOMP_GET_METADATA 0x420d +#endif +/* + * There are conflicting definitions in ptrace system headers that lead to + * struct seccomp_metadata to not be defined. So until those conflicts get + * sorted out, we should rely on some of our own in-tree ptrace definitions. + */ struct seccomp_metadata { __u64 filter_off; /* Input: which filter */ __u64 flags; /* Output: filter's flags */ }; -#endif #ifndef SECCOMP_FILTER_FLAG_NEW_LISTENER #define SECCOMP_FILTER_FLAG_NEW_LISTENER (1UL << 3) diff -u linux-azure-5.4.0/tools/testing/selftests/x86/protection_keys.c linux-azure-5.4.0/tools/testing/selftests/x86/protection_keys.c --- linux-azure-5.4.0/tools/testing/selftests/x86/protection_keys.c +++ linux-azure-5.4.0/tools/testing/selftests/x86/protection_keys.c @@ -613,7 +613,6 @@ int nr_alloced = 0; int random_index; memset(alloced_pkeys, 0, sizeof(alloced_pkeys)); - srand((unsigned int)time(NULL)); /* allocate every possible key and make a note of which ones we got */ max_nr_pkey_allocs = NR_PKEYS; @@ -1479,6 +1478,8 @@ { int nr_iterations = 22; + srand((unsigned int)time(NULL)); + setup_handlers(); printf("has pku: %d\n", cpu_has_pku()); diff -u linux-azure-5.4.0/ubuntu/Makefile linux-azure-5.4.0/ubuntu/Makefile --- linux-azure-5.4.0/ubuntu/Makefile +++ linux-azure-5.4.0/ubuntu/Makefile @@ -25,7 +25,9 @@ ## ## ## +ifeq ($(ARCH),x86) obj-y += sgx/ +endif ## ## ## diff -u linux-azure-5.4.0/ubuntu/sgx/Makefile linux-azure-5.4.0/ubuntu/sgx/Makefile --- linux-azure-5.4.0/ubuntu/sgx/Makefile +++ linux-azure-5.4.0/ubuntu/sgx/Makefile @@ -3,14 +3,25 @@ ifneq ($(KERNELRELEASE),) +EXTRA_CFLAGS += -DHAVE_MMPUT_ASYNC +EXTRA_CFLAGS += -DHAVE_KSYM_LOOKUP + obj-m += intel_sgx.o intel_sgx-y := encl.o main.o reclaim.o driver.o ioctl.o else KDIR := /lib/modules/$(shell uname -r)/build - -INKERNEL_SGX :=$(shell cat $(KDIR)/.config | grep "CONFIG_INTEL_SGX=y") +KSYM_MMPUT_ASYNC := $(shell grep "mmput_async\svmlinux\sEXPORT" $(KDIR)/Module.symvers) +KSYM_LOOKUP := $(shell grep "kallsyms_lookup_name\svmlinux\sEXPORT" $(KDIR)/Module.symvers) +EXTRA_CFLAGS := +ifneq ($(KSYM_MMPUT_ASYNC),) + EXTRA_CFLAGS += -DHAVE_MMPUT_ASYNC +endif +ifneq ($(KSYM_LOOKUP),) + EXTRA_CFLAGS += -DHAVE_KSYM_LOOKUP +endif +INKERNEL_SGX :=$(shell cat $(KDIR)/.config | grep "CONFIG_X86_SGX=y\|CONFIG_INTEL_SGX=y") ifneq ($(INKERNEL_SGX),) default: $(error Can't install DCAP SGX driver with inkernel SGX support) @@ -18,8 +29,11 @@ else PWD := $(shell pwd) +EXTRA_CFLAGS += -I$(PWD) -I$(PWD)/include -D_FORTIFY_SOURCE=2 -Wl,-z,relro,-z,now +EXTRA_LDFLAGS := -z noexecstack + default: - $(MAKE) -C $(KDIR) M=$(PWD) CFLAGS_MODULE="-I$(PWD) -I$(PWD)/include" modules + $(MAKE) -C $(KDIR) M=$(PWD) LDFLAGS_MODULE="$(EXTRA_LDFLAGS)" CFLAGS_MODULE="$(EXTRA_CFLAGS)" modules endif endif diff -u linux-azure-5.4.0/ubuntu/sgx/dkms.conf linux-azure-5.4.0/ubuntu/sgx/dkms.conf --- linux-azure-5.4.0/ubuntu/sgx/dkms.conf +++ linux-azure-5.4.0/ubuntu/sgx/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="sgx" -PACKAGE_VERSION="1.33" +PACKAGE_VERSION="1.33.2" BUILT_MODULE_NAME[0]="intel_sgx" DEST_MODULE_LOCATION[0]="/kernel/drivers/intel/sgx" AUTOINSTALL="yes" diff -u linux-azure-5.4.0/ubuntu/sgx/driver.c linux-azure-5.4.0/ubuntu/sgx/driver.c --- linux-azure-5.4.0/ubuntu/sgx/driver.c +++ linux-azure-5.4.0/ubuntu/sgx/driver.c @@ -123,7 +123,7 @@ unsigned long pgoff, unsigned long flags) { - if (flags & MAP_PRIVATE) + if ((flags & MAP_TYPE) == MAP_PRIVATE) return -EINVAL; if (flags & MAP_FIXED) diff -u linux-azure-5.4.0/ubuntu/sgx/driver.h linux-azure-5.4.0/ubuntu/sgx/driver.h --- linux-azure-5.4.0/ubuntu/sgx/driver.h +++ linux-azure-5.4.0/ubuntu/sgx/driver.h @@ -9,7 +9,7 @@ #include #include #include -#include "uapi/asm/sgx_oot.h" +#include "sgx_user.h" #include "sgx.h" #define SGX_EINIT_SPIN_COUNT 20 diff -u linux-azure-5.4.0/ubuntu/sgx/encl.c linux-azure-5.4.0/ubuntu/sgx/encl.c --- linux-azure-5.4.0/ubuntu/sgx/encl.c +++ linux-azure-5.4.0/ubuntu/sgx/encl.c @@ -228,7 +228,9 @@ * multiple encl_mm instances for a single mm_struct, i.e. it prevents * races between checking sgx_encl_find_mm() and adding to mm_list. */ -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)) +#if(LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0)) + mmap_assert_write_locked(mm); +#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(5,3,0)) lockdep_assert_held_write(&mm->mmap_sem); #else lockdep_assert_held_exclusive(&mm->mmap_sem); @@ -589,7 +591,8 @@ if (encl->backing) fput(encl->backing); - + synchronize_srcu_expedited(&encl->srcu); + cleanup_srcu_struct(&encl->srcu); WARN_ON_ONCE(!list_empty(&encl->mm_list)); /* Detect EPC page leak's. */ diff -u linux-azure-5.4.0/ubuntu/sgx/ioctl.c linux-azure-5.4.0/ubuntu/sgx/ioctl.c --- linux-azure-5.4.0/ubuntu/sgx/ioctl.c +++ linux-azure-5.4.0/ubuntu/sgx/ioctl.c @@ -66,7 +66,7 @@ int i; for (i = 2; i < 64; i++) { - if (!((1 << i) & xfrm)) + if (!((1UL << i) & xfrm)) continue; size = SGX_SSA_GPRS_SIZE + sgx_xsave_size_tbl[i]; @@ -332,7 +332,7 @@ ret = get_user_pages(src, 1, 0, &src_page, NULL); if (ret < 1) - return ret; + return -EFAULT; pginfo.secs = (unsigned long)sgx_epc_addr(encl->secs.epc_page); pginfo.addr = SGX_ENCL_PAGE_ADDR(encl_page); @@ -459,8 +459,11 @@ * Destroy enclave on ENCLS failure as this means that EPC has been * invalidated. */ - if (ret == -EIO) + if (ret == -EIO){ + mutex_lock(&encl->lock); sgx_encl_destroy(encl); + mutex_unlock(&encl->lock); + } return ret; } @@ -802,8 +805,10 @@ if (encl_flags & SGX_ENCL_IOCTL) return -EBUSY; - if (encl_flags & SGX_ENCL_DEAD) - return -EFAULT; + if (encl_flags & SGX_ENCL_DEAD){ + ret = -EFAULT; + goto out; + } switch (cmd) { case SGX_IOC_ENCLAVE_CREATE: @@ -822,7 +827,7 @@ ret = -ENOIOCTLCMD; break; } - +out: atomic_andnot(SGX_ENCL_IOCTL, &encl->flags); return ret; diff -u linux-azure-5.4.0/ubuntu/sgx/main.c linux-azure-5.4.0/ubuntu/sgx/main.c --- linux-azure-5.4.0/ubuntu/sgx/main.c +++ linux-azure-5.4.0/ubuntu/sgx/main.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include "driver.h" @@ -21,6 +22,7 @@ #ifndef FEAT_CTL_LOCKED #define FEAT_CTL_LOCKED FEATURE_CONTROL_LOCKED #endif +void (*k_mmput_async)(struct mm_struct* mm); struct sgx_epc_section sgx_epc_sections[SGX_MAX_EPC_SECTIONS]; int sgx_nr_epc_sections; @@ -299,6 +301,19 @@ if (!sgx_page_cache_init()) return -EFAULT; +#ifdef HAVE_MMPUT_ASYNC + k_mmput_async = mmput_async; +#else +#ifdef HAVE_KSYM_LOOKUP + k_mmput_async = (void*)kallsyms_lookup_name("mmput_async"); +#else + #error "kernel version is not supported. We need either mmput_async or kallsyms_lookup_name exported from the kernel" +#endif +#endif + if (!k_mmput_async){ + pr_err("intel_sgx: mmput_async support missing from kernel.\n"); + return -EFAULT; + } if (!sgx_page_reclaimer_init()) goto err_page_cache; diff -u linux-azure-5.4.0/ubuntu/sgx/reclaim.c linux-azure-5.4.0/ubuntu/sgx/reclaim.c --- linux-azure-5.4.0/ubuntu/sgx/reclaim.c +++ linux-azure-5.4.0/ubuntu/sgx/reclaim.c @@ -14,7 +14,7 @@ #include "driver.h" #include - +extern void (*k_mmput_async)(struct mm_struct* mm); struct task_struct *ksgxswapd_tsk; DECLARE_WAIT_QUEUE_HEAD(ksgxswapd_waitq); LIST_HEAD(sgx_active_page_list); @@ -45,6 +45,9 @@ cond_resched(); } + spin_lock(§ion->lock); + list_splice(&secs_list, §ion->unsanitized_page_list); + spin_unlock(§ion->lock); } static int ksgxswapd(void *p) @@ -172,11 +175,7 @@ ret = !sgx_encl_test_and_clear_young(encl_mm->mm, page); up_read(&encl_mm->mm->mmap_sem); -#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0) || LINUX_VERSION_CODE > KERNEL_VERSION(5, 4, 0) ) - mmput(encl_mm->mm); -#else - mmput_async(encl_mm->mm); -#endif + k_mmput_async(encl_mm->mm); if (!ret || (atomic_read(&encl->flags) & SGX_ENCL_DEAD)) break; @@ -223,11 +222,7 @@ up_read(&encl_mm->mm->mmap_sem); -#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0) || LINUX_VERSION_CODE > KERNEL_VERSION(5, 4, 0) ) - mmput(encl_mm->mm); -#else - mmput_async(encl_mm->mm); -#endif + k_mmput_async(encl_mm->mm); } srcu_read_unlock(&encl->srcu, idx); @@ -303,11 +298,7 @@ cpumask_or(cpumask, cpumask, mm_cpumask(encl_mm->mm)); -#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0) || LINUX_VERSION_CODE > KERNEL_VERSION(5, 4, 0) ) - mmput(encl_mm->mm); -#else - mmput_async(encl_mm->mm); -#endif + k_mmput_async(encl_mm->mm); } srcu_read_unlock(&encl->srcu, idx); @@ -469,11 +460,11 @@ continue; skip: - kref_put(&encl_page->encl->refcount, sgx_encl_release); spin_lock(&sgx_active_page_list_lock); list_add_tail(&epc_page->list, &sgx_active_page_list); spin_unlock(&sgx_active_page_list_lock); + kref_put(&encl_page->encl->refcount, sgx_encl_release); chunk[i] = NULL; } diff -u linux-azure-5.4.0/ubuntu/sgx/version.h linux-azure-5.4.0/ubuntu/sgx/version.h --- linux-azure-5.4.0/ubuntu/sgx/version.h +++ linux-azure-5.4.0/ubuntu/sgx/version.h @@ -6,5 +6,5 @@ #define DRV_DESCRIPTION "Intel SGX DCAP Driver" -#define DRV_VERSION "1.33" +#define DRV_VERSION "1.33.2" #endif /* _SGX_VERSION_H */ diff -u linux-azure-5.4.0/update-version-dkms linux-azure-5.4.0/update-version-dkms --- linux-azure-5.4.0/update-version-dkms +++ linux-azure-5.4.0/update-version-dkms @@ -3,56 +3,2 @@ -if [ "$#" -ne 1 ]; then - echo "Usage: $0 " 1>&2 - exit 1 -fi -pocket="$1" - -case "$pocket" in -proposed) pocket_list="-$pocket -updates -release" ;; -updates|security) pocket_list="-$pocket -release" ;; -release) pocket_list="-release" ;; -*) - echo "$0: $pocket: unknown archive pocket" 1>&2 - exit 1 - ;; -esac - -# find our changelog. -debian=$(awk -F= '($1 == "DEBIAN") { print $2 }' "debian/dkms-versions.new" -while read package version remainder -do - for pocket_raw in $pocket_list - do - pocket="${pocket_raw#-release}" - read x x pocket_version x <&2 - exit 1 - else - echo "$package: $pocket_version found in $pocket_raw" - fi - if [ "$version" != "$pocket_version" ]; then - echo "$package: updated to $pocket_version" - fi - echo "$package $pocket_version $remainder" | sed -e 's/ *$//' >>"debian/dkms-versions.new" -done <"debian/dkms-versions" -if ! cmp -s "debian/dkms-versions.new" "debian/dkms-versions"; then - mv -f "debian/dkms-versions.new" "debian/dkms-versions" - git commit -s -m "UBUNTU: update dkms package versions" \ - -m "BugLink: https://bugs.launchpad.net/bugs/1786013" \ - "debian/dkms-versions" -else - rm -f "debian/dkms-versions.new" -fi +echo "EE: run update-dkms-versions after link-to-tracker" 1>&2 +exit 1 diff -u linux-azure-5.4.0/virt/kvm/arm/arm.c linux-azure-5.4.0/virt/kvm/arm/arm.c --- linux-azure-5.4.0/virt/kvm/arm/arm.c +++ linux-azure-5.4.0/virt/kvm/arm/arm.c @@ -1141,6 +1141,14 @@ if (copy_from_user(®, argp, sizeof(reg))) break; + /* + * We could owe a reset due to PSCI. Handle the pending reset + * here to ensure userspace register accesses are ordered after + * the reset. + */ + if (kvm_check_request(KVM_REQ_VCPU_RESET, vcpu)) + kvm_reset_vcpu(vcpu); + if (ioctl == KVM_SET_ONE_REG) r = kvm_arm_set_reg(vcpu, ®); else diff -u linux-azure-5.4.0/virt/kvm/arm/psci.c linux-azure-5.4.0/virt/kvm/arm/psci.c --- linux-azure-5.4.0/virt/kvm/arm/psci.c +++ linux-azure-5.4.0/virt/kvm/arm/psci.c @@ -426,6 +426,20 @@ break; } break; +#ifdef CONFIG_ARM64 + case ARM_SMCCC_ARCH_WORKAROUND_3: + switch (arm64_get_spectre_bhb_state()) { + case SPECTRE_VULNERABLE: + break; + case SPECTRE_MITIGATED: + val = SMCCC_RET_SUCCESS; + break; + case SPECTRE_UNAFFECTED: + val = SMCCC_ARCH_WORKAROUND_RET_UNAFFECTED; + break; + } + break; +#endif } break; default: @@ -438,7 +452,7 @@ int kvm_arm_get_fw_num_regs(struct kvm_vcpu *vcpu) { - return 3; /* PSCI version and two workaround registers */ + return 4; /* PSCI version and three workaround registers */ } int kvm_arm_copy_fw_reg_indices(struct kvm_vcpu *vcpu, u64 __user *uindices) @@ -452,6 +466,11 @@ if (put_user(KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2, uindices++)) return -EFAULT; +#ifdef CONFIG_ARM64 + if (put_user(KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3, uindices++)) + return -EFAULT; +#endif + return 0; } @@ -486,9 +505,22 @@ return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2_NOT_REQUIRED; case KVM_SSBD_UNKNOWN: default: - return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2_UNKNOWN; + break; } - } + return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2_UNKNOWN; +#ifdef CONFIG_ARM64 + case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3: + switch (arm64_get_spectre_bhb_state()) { + case SPECTRE_VULNERABLE: + return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_NOT_AVAIL; + case SPECTRE_MITIGATED: + return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_AVAIL; + case SPECTRE_UNAFFECTED: + return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_NOT_REQUIRED; + } + return KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_NOT_AVAIL; +#endif + } return -EINVAL; } @@ -503,6 +535,9 @@ val = kvm_psci_version(vcpu, vcpu->kvm); break; case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_1: +#ifdef CONFIG_ARM64 + case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3: +#endif val = get_kernel_wa_level(reg->id) & KVM_REG_FEATURE_LEVEL_MASK; break; case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2: @@ -555,6 +590,9 @@ } case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_1: +#ifdef CONFIG_ARM64 + case KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3: +#endif if (val & ~KVM_REG_FEATURE_LEVEL_MASK) return -EINVAL; diff -u linux-azure-5.4.0/virt/kvm/arm/vgic/vgic-its.c linux-azure-5.4.0/virt/kvm/arm/vgic/vgic-its.c --- linux-azure-5.4.0/virt/kvm/arm/vgic/vgic-its.c +++ linux-azure-5.4.0/virt/kvm/arm/vgic/vgic-its.c @@ -2095,7 +2095,7 @@ memset(entry, 0, esz); - while (len > 0) { + while (true) { int next_offset; size_t byte_offset; @@ -2108,6 +2108,9 @@ return next_offset; byte_offset = next_offset * esz; + if (byte_offset >= len) + break; + id += next_offset; gpa += byte_offset; len -= byte_offset; diff -u linux-azure-5.4.0/virt/kvm/coalesced_mmio.c linux-azure-5.4.0/virt/kvm/coalesced_mmio.c --- linux-azure-5.4.0/virt/kvm/coalesced_mmio.c +++ linux-azure-5.4.0/virt/kvm/coalesced_mmio.c @@ -190,7 +190,6 @@ coalesced_mmio_in_range(dev, zone->addr, zone->size)) { r = kvm_io_bus_unregister_dev(kvm, zone->pio ? KVM_PIO_BUS : KVM_MMIO_BUS, &dev->dev); - kvm_iodevice_destructor(&dev->dev); /* * On failure, unregister destroys all devices on the @@ -200,6 +199,7 @@ */ if (r) break; + kvm_iodevice_destructor(&dev->dev); } } diff -u linux-azure-5.4.0/virt/kvm/kvm_main.c linux-azure-5.4.0/virt/kvm/kvm_main.c --- linux-azure-5.4.0/virt/kvm/kvm_main.c +++ linux-azure-5.4.0/virt/kvm/kvm_main.c @@ -115,6 +115,8 @@ static int kvm_debugfs_num_entries; static const struct file_operations *stat_fops_per_vm[]; +static struct file_operations kvm_chardev_ops; + static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl, unsigned long arg); #ifdef CONFIG_KVM_COMPAT @@ -635,6 +637,8 @@ static int kvm_create_vm_debugfs(struct kvm *kvm, int fd) { + static DEFINE_MUTEX(kvm_debugfs_lock); + struct dentry *dent; char dir_name[ITOA_MAX_LEN * 2]; struct kvm_stat_data *stat_data; struct kvm_stats_debugfs_item *p; @@ -643,8 +647,20 @@ return 0; snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd); - kvm->debugfs_dentry = debugfs_create_dir(dir_name, kvm_debugfs_dir); + mutex_lock(&kvm_debugfs_lock); + dent = debugfs_lookup(dir_name, kvm_debugfs_dir); + if (dent) { + pr_warn_ratelimited("KVM: debugfs: duplicate directory %s\n", dir_name); + dput(dent); + mutex_unlock(&kvm_debugfs_lock); + return 0; + } + dent = debugfs_create_dir(dir_name, kvm_debugfs_dir); + mutex_unlock(&kvm_debugfs_lock); + if (IS_ERR(dent)) + return 0; + kvm->debugfs_dentry = dent; kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries, sizeof(*kvm->debugfs_stat_data), GFP_KERNEL_ACCOUNT); @@ -752,6 +768,16 @@ preempt_notifier_inc(); + /* + * When the fd passed to this ioctl() is opened it pins the module, + * but try_module_get() also prevents getting a reference if the module + * is in MODULE_STATE_GOING (e.g. if someone ran "rmmod --wait"). + */ + if (!try_module_get(kvm_chardev_ops.owner)) { + r = -ENODEV; + goto out_err; + } + return kvm; out_err: @@ -830,6 +856,7 @@ preempt_notifier_dec(); hardware_disable_all(); mmdrop(mm); + module_put(kvm_chardev_ops.owner); } void kvm_get_kvm(struct kvm *kvm) @@ -1593,6 +1620,13 @@ return true; } +static int kvm_try_get_pfn(kvm_pfn_t pfn) +{ + if (kvm_is_reserved_pfn(pfn)) + return 1; + return get_page_unless_zero(pfn_to_page(pfn)); +} + static int hva_to_pfn_remapped(struct vm_area_struct *vma, unsigned long addr, bool *async, bool write_fault, bool *writable, @@ -1642,13 +1676,21 @@ * Whoever called remap_pfn_range is also going to call e.g. * unmap_mapping_range before the underlying pages are freed, * causing a call to our MMU notifier. + * + * Certain IO or PFNMAP mappings can be backed with valid + * struct pages, but be allocated without refcounting e.g., + * tail pages of non-compound higher order allocations, which + * would then underflow the refcount when the caller does the + * required put_page. Don't allow those pages here. */ - kvm_get_pfn(pfn); + if (!kvm_try_get_pfn(pfn)) + r = -EFAULT; out: pte_unmap_unlock(ptep, ptl); *p_pfn = pfn; - return 0; + + return r; } /* @@ -2441,15 +2483,19 @@ static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu) { - unsigned int old, val, shrink; + unsigned int old, val, shrink, grow_start; old = val = vcpu->halt_poll_ns; shrink = READ_ONCE(halt_poll_ns_shrink); + grow_start = READ_ONCE(halt_poll_ns_grow_start); if (shrink == 0) val = 0; else val /= shrink; + if (val < grow_start) + val = 0; + vcpu->halt_poll_ns = val; trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old); } @@ -2835,7 +2881,8 @@ goto unlock_vcpu_destroy; } - BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]); + vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus); + BUG_ON(kvm->vcpus[vcpu->vcpu_idx]); /* Now it's all set up, let userspace reach it */ kvm_get_kvm(kvm); @@ -2845,7 +2892,7 @@ goto unlock_vcpu_destroy; } - kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu; + kvm->vcpus[vcpu->vcpu_idx] = vcpu; /* * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus @@ -2890,7 +2937,7 @@ struct kvm_fpu *fpu = NULL; struct kvm_sregs *kvm_sregs = NULL; - if (vcpu->kvm->mm != current->mm) + if (vcpu->kvm->mm != current->mm || vcpu->kvm->vm_bugged) return -EIO; if (unlikely(_IOC_TYPE(ioctl) != KVMIO)) @@ -3097,7 +3144,7 @@ void __user *argp = compat_ptr(arg); int r; - if (vcpu->kvm->mm != current->mm) + if (vcpu->kvm->mm != current->mm || vcpu->kvm->vm_bugged) return -EIO; switch (ioctl) { @@ -3162,7 +3209,7 @@ { struct kvm_device *dev = filp->private_data; - if (dev->kvm->mm != current->mm) + if (dev->kvm->mm != current->mm || dev->kvm->vm_bugged) return -EIO; switch (ioctl) { @@ -3282,8 +3329,11 @@ kvm_put_kvm(kvm); mutex_lock(&kvm->lock); list_del(&dev->vm_node); + if (ops->release) + ops->release(dev); mutex_unlock(&kvm->lock); - ops->destroy(dev); + if (ops->destroy) + ops->destroy(dev); return ret; } @@ -3363,7 +3413,7 @@ void __user *argp = (void __user *)arg; int r; - if (kvm->mm != current->mm) + if (kvm->mm != current->mm || kvm->vm_bugged) return -EIO; switch (ioctl) { case KVM_CREATE_VCPU: @@ -3555,15 +3605,43 @@ }; }; +struct compat_kvm_clear_dirty_log { + __u32 slot; + __u32 num_pages; + __u64 first_page; + union { + compat_uptr_t dirty_bitmap; /* one bit per page */ + __u64 padding2; + }; +}; + static long kvm_vm_compat_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) { struct kvm *kvm = filp->private_data; int r; - if (kvm->mm != current->mm) + if (kvm->mm != current->mm || kvm->vm_bugged) return -EIO; switch (ioctl) { +#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT + case KVM_CLEAR_DIRTY_LOG: { + struct compat_kvm_clear_dirty_log compat_log; + struct kvm_clear_dirty_log log; + + if (copy_from_user(&compat_log, (void __user *)arg, + sizeof(compat_log))) + return -EFAULT; + log.slot = compat_log.slot; + log.num_pages = compat_log.num_pages; + log.first_page = compat_log.first_page; + log.padding2 = compat_log.padding2; + log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap); + + r = kvm_vm_ioctl_clear_dirty_log(kvm, &log); + break; + } +#endif case KVM_GET_DIRTY_LOG: { struct compat_kvm_dirty_log compat_log; struct kvm_dirty_log log; @@ -4324,7 +4402,7 @@ } add_uevent_var(env, "PID=%d", kvm->userspace_pid); - if (!IS_ERR_OR_NULL(kvm->debugfs_dentry)) { + if (kvm->debugfs_dentry) { char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT); if (p) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/ABI/testing/evm +++ linux-azure-5.4.0/Documentation/ABI/testing/evm @@ -42,8 +42,30 @@ modification of EVM-protected metadata and disable all further modification of policy - Note that once a key has been loaded, it will no longer be - possible to enable metadata modification. + Echoing a value is additive, the new value is added to the + existing initialization flags. + + For example, after:: + + echo 2 >/evm + + another echo can be performed:: + + echo 1 >/evm + + and the resulting value will be 3. + + Note that once an HMAC key has been loaded, it will no longer + be possible to enable metadata modification. Signaling that an + HMAC key has been loaded will clear the corresponding flag. + For example, if the current value is 6 (2 and 4 set):: + + echo 1 >/evm + + will set the new value to 3 (4 cleared). + + Loading an HMAC key is the only way to disable metadata + modification. Until key loading has been signaled EVM can not create or validate the 'security.evm' xattr, but returns only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/ABI/testing/sysfs-ata +++ linux-azure-5.4.0/Documentation/ABI/testing/sysfs-ata @@ -107,13 +107,14 @@ described in ATA8 7.16 and 7.17. Only valid if the device is not a PM. - pio_mode: (RO) Transfer modes supported by the device when - in PIO mode. Mostly used by PATA device. + pio_mode: (RO) PIO transfer mode used by the device. + Mostly used by PATA devices. - xfer_mode: (RO) Current transfer mode + xfer_mode: (RO) Current transfer mode. Mostly used by + PATA devices. - dma_mode: (RO) Transfer modes supported by the device when - in DMA mode. Mostly used by PATA device. + dma_mode: (RO) DMA transfer mode used by the device. + Mostly used by PATA devices. class: (RO) Device class. Can be "ata" for disk, "atapi" for packet device, "pmp" for PM, or only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/ABI/testing/sysfs-bus-iio-vf610 +++ linux-azure-5.4.0/Documentation/ABI/testing/sysfs-bus-iio-vf610 @@ -1,4 +1,4 @@ -What: /sys/bus/iio/devices/iio:deviceX/conversion_mode +What: /sys/bus/iio/devices/iio:deviceX/in_conversion_mode KernelVersion: 4.2 Contact: linux-iio@vger.kernel.org Description: only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/accounting/psi.rst +++ linux-azure-5.4.0/Documentation/accounting/psi.rst @@ -90,7 +90,8 @@ for the same psi metric can be specified. However for each trigger a separate file descriptor is required to be able to poll it separately from others, therefore for each trigger a separate open() syscall should be made even -when opening the same psi interface file. +when opening the same psi interface file. Write operations to a file descriptor +with an already existing psi trigger will fail with EBUSY. Monitors activate only when system enters stall state for the monitored psi metric and deactivates upon exit from the stall state. While system is only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/admin-guide/devices.txt +++ linux-azure-5.4.0/Documentation/admin-guide/devices.txt @@ -3002,10 +3002,10 @@ 65 = /dev/infiniband/issm1 Second InfiniBand IsSM device ... 127 = /dev/infiniband/issm63 63rd InfiniBand IsSM device - 128 = /dev/infiniband/uverbs0 First InfiniBand verbs device - 129 = /dev/infiniband/uverbs1 Second InfiniBand verbs device + 192 = /dev/infiniband/uverbs0 First InfiniBand verbs device + 193 = /dev/infiniband/uverbs1 Second InfiniBand verbs device ... - 159 = /dev/infiniband/uverbs31 31st InfiniBand verbs device + 223 = /dev/infiniband/uverbs31 31st InfiniBand verbs device 232 char Biometric Devices 0 = /dev/biometric/sensor0/fingerprint first fingerprint sensor on first device only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst +++ linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst @@ -0,0 +1,260 @@ +========================================= +Processor MMIO Stale Data Vulnerabilities +========================================= + +Processor MMIO Stale Data Vulnerabilities are a class of memory-mapped I/O +(MMIO) vulnerabilities that can expose data. The sequences of operations for +exposing data range from simple to very complex. Because most of the +vulnerabilities require the attacker to have access to MMIO, many environments +are not affected. System environments using virtualization where MMIO access is +provided to untrusted guests may need mitigation. These vulnerabilities are +not transient execution attacks. However, these vulnerabilities may propagate +stale data into core fill buffers where the data can subsequently be inferred +by an unmitigated transient execution attack. Mitigation for these +vulnerabilities includes a combination of microcode update and software +changes, depending on the platform and usage model. Some of these mitigations +are similar to those used to mitigate Microarchitectural Data Sampling (MDS) or +those used to mitigate Special Register Buffer Data Sampling (SRBDS). + +Data Propagators +================ +Propagators are operations that result in stale data being copied or moved from +one microarchitectural buffer or register to another. Processor MMIO Stale Data +Vulnerabilities are operations that may result in stale data being directly +read into an architectural, software-visible state or sampled from a buffer or +register. + +Fill Buffer Stale Data Propagator (FBSDP) +----------------------------------------- +Stale data may propagate from fill buffers (FB) into the non-coherent portion +of the uncore on some non-coherent writes. Fill buffer propagation by itself +does not make stale data architecturally visible. Stale data must be propagated +to a location where it is subject to reading or sampling. + +Sideband Stale Data Propagator (SSDP) +------------------------------------- +The sideband stale data propagator (SSDP) is limited to the client (including +Intel Xeon server E3) uncore implementation. The sideband response buffer is +shared by all client cores. For non-coherent reads that go to sideband +destinations, the uncore logic returns 64 bytes of data to the core, including +both requested data and unrequested stale data, from a transaction buffer and +the sideband response buffer. As a result, stale data from the sideband +response and transaction buffers may now reside in a core fill buffer. + +Primary Stale Data Propagator (PSDP) +------------------------------------ +The primary stale data propagator (PSDP) is limited to the client (including +Intel Xeon server E3) uncore implementation. Similar to the sideband response +buffer, the primary response buffer is shared by all client cores. For some +processors, MMIO primary reads will return 64 bytes of data to the core fill +buffer including both requested data and unrequested stale data. This is +similar to the sideband stale data propagator. + +Vulnerabilities +=============== +Device Register Partial Write (DRPW) (CVE-2022-21166) +----------------------------------------------------- +Some endpoint MMIO registers incorrectly handle writes that are smaller than +the register size. Instead of aborting the write or only copying the correct +subset of bytes (for example, 2 bytes for a 2-byte write), more bytes than +specified by the write transaction may be written to the register. On +processors affected by FBSDP, this may expose stale data from the fill buffers +of the core that created the write transaction. + +Shared Buffers Data Sampling (SBDS) (CVE-2022-21125) +---------------------------------------------------- +After propagators may have moved data around the uncore and copied stale data +into client core fill buffers, processors affected by MFBDS can leak data from +the fill buffer. It is limited to the client (including Intel Xeon server E3) +uncore implementation. + +Shared Buffers Data Read (SBDR) (CVE-2022-21123) +------------------------------------------------ +It is similar to Shared Buffer Data Sampling (SBDS) except that the data is +directly read into the architectural software-visible state. It is limited to +the client (including Intel Xeon server E3) uncore implementation. + +Affected Processors +=================== +Not all the CPUs are affected by all the variants. For instance, most +processors for the server market (excluding Intel Xeon E3 processors) are +impacted by only Device Register Partial Write (DRPW). + +Below is the list of affected Intel processors [#f1]_: + + =================== ============ ========= + Common name Family_Model Steppings + =================== ============ ========= + HASWELL_X 06_3FH 2,4 + SKYLAKE_L 06_4EH 3 + BROADWELL_X 06_4FH All + SKYLAKE_X 06_55H 3,4,6,7,11 + BROADWELL_D 06_56H 3,4,5 + SKYLAKE 06_5EH 3 + ICELAKE_X 06_6AH 4,5,6 + ICELAKE_D 06_6CH 1 + ICELAKE_L 06_7EH 5 + ATOM_TREMONT_D 06_86H All + LAKEFIELD 06_8AH 1 + KABYLAKE_L 06_8EH 9 to 12 + ATOM_TREMONT 06_96H 1 + ATOM_TREMONT_L 06_9CH 0 + KABYLAKE 06_9EH 9 to 13 + COMETLAKE 06_A5H 2,3,5 + COMETLAKE_L 06_A6H 0,1 + ROCKETLAKE 06_A7H 1 + =================== ============ ========= + +If a CPU is in the affected processor list, but not affected by a variant, it +is indicated by new bits in MSR IA32_ARCH_CAPABILITIES. As described in a later +section, mitigation largely remains the same for all the variants, i.e. to +clear the CPU fill buffers via VERW instruction. + +New bits in MSRs +================ +Newer processors and microcode update on existing affected processors added new +bits to IA32_ARCH_CAPABILITIES MSR. These bits can be used to enumerate +specific variants of Processor MMIO Stale Data vulnerabilities and mitigation +capability. + +MSR IA32_ARCH_CAPABILITIES +-------------------------- +Bit 13 - SBDR_SSDP_NO - When set, processor is not affected by either the + Shared Buffers Data Read (SBDR) vulnerability or the sideband stale + data propagator (SSDP). +Bit 14 - FBSDP_NO - When set, processor is not affected by the Fill Buffer + Stale Data Propagator (FBSDP). +Bit 15 - PSDP_NO - When set, processor is not affected by Primary Stale Data + Propagator (PSDP). +Bit 17 - FB_CLEAR - When set, VERW instruction will overwrite CPU fill buffer + values as part of MD_CLEAR operations. Processors that do not + enumerate MDS_NO (meaning they are affected by MDS) but that do + enumerate support for both L1D_FLUSH and MD_CLEAR implicitly enumerate + FB_CLEAR as part of their MD_CLEAR support. +Bit 18 - FB_CLEAR_CTRL - Processor supports read and write to MSR + IA32_MCU_OPT_CTRL[FB_CLEAR_DIS]. On such processors, the FB_CLEAR_DIS + bit can be set to cause the VERW instruction to not perform the + FB_CLEAR action. Not all processors that support FB_CLEAR will support + FB_CLEAR_CTRL. + +MSR IA32_MCU_OPT_CTRL +--------------------- +Bit 3 - FB_CLEAR_DIS - When set, VERW instruction does not perform the FB_CLEAR +action. This may be useful to reduce the performance impact of FB_CLEAR in +cases where system software deems it warranted (for example, when performance +is more critical, or the untrusted software has no MMIO access). Note that +FB_CLEAR_DIS has no impact on enumeration (for example, it does not change +FB_CLEAR or MD_CLEAR enumeration) and it may not be supported on all processors +that enumerate FB_CLEAR. + +Mitigation +========== +Like MDS, all variants of Processor MMIO Stale Data vulnerabilities have the +same mitigation strategy to force the CPU to clear the affected buffers before +an attacker can extract the secrets. + +This is achieved by using the otherwise unused and obsolete VERW instruction in +combination with a microcode update. The microcode clears the affected CPU +buffers when the VERW instruction is executed. + +Kernel reuses the MDS function to invoke the buffer clearing: + + mds_clear_cpu_buffers() + +On MDS affected CPUs, the kernel already invokes CPU buffer clear on +kernel/userspace, hypervisor/guest and C-state (idle) transitions. No +additional mitigation is needed on such CPUs. + +For CPUs not affected by MDS or TAA, mitigation is needed only for the attacker +with MMIO capability. Therefore, VERW is not required for kernel/userspace. For +virtualization case, VERW is only needed at VMENTER for a guest with MMIO +capability. + +Mitigation points +----------------- +Return to user space +^^^^^^^^^^^^^^^^^^^^ +Same mitigation as MDS when affected by MDS/TAA, otherwise no mitigation +needed. + +C-State transition +^^^^^^^^^^^^^^^^^^ +Control register writes by CPU during C-state transition can propagate data +from fill buffer to uncore buffers. Execute VERW before C-state transition to +clear CPU fill buffers. + +Guest entry point +^^^^^^^^^^^^^^^^^ +Same mitigation as MDS when processor is also affected by MDS/TAA, otherwise +execute VERW at VMENTER only for MMIO capable guests. On CPUs not affected by +MDS/TAA, guest without MMIO access cannot extract secrets using Processor MMIO +Stale Data vulnerabilities, so there is no need to execute VERW for such guests. + +Mitigation control on the kernel command line +--------------------------------------------- +The kernel command line allows to control the Processor MMIO Stale Data +mitigations at boot time with the option "mmio_stale_data=". The valid +arguments for this option are: + + ========== ================================================================= + full If the CPU is vulnerable, enable mitigation; CPU buffer clearing + on exit to userspace and when entering a VM. Idle transitions are + protected as well. It does not automatically disable SMT. + full,nosmt Same as full, with SMT disabled on vulnerable CPUs. This is the + complete mitigation. + off Disables mitigation completely. + ========== ================================================================= + +If the CPU is affected and mmio_stale_data=off is not supplied on the kernel +command line, then the kernel selects the appropriate mitigation. + +Mitigation status information +----------------------------- +The Linux kernel provides a sysfs interface to enumerate the current +vulnerability status of the system: whether the system is vulnerable, and +which mitigations are active. The relevant sysfs file is: + + /sys/devices/system/cpu/vulnerabilities/mmio_stale_data + +The possible values in this file are: + + .. list-table:: + + * - 'Not affected' + - The processor is not vulnerable + * - 'Vulnerable' + - The processor is vulnerable, but no mitigation enabled + * - 'Vulnerable: Clear CPU buffers attempted, no microcode' + - The processor is vulnerable, but microcode is not updated. The + mitigation is enabled on a best effort basis. + * - 'Mitigation: Clear CPU buffers' + - The processor is vulnerable and the CPU buffer clearing mitigation is + enabled. + * - 'Unknown: No mitigations' + - The processor vulnerability status is unknown because it is + out of Servicing period. Mitigation is not attempted. + +Definitions: +------------ + +Servicing period: The process of providing functional and security updates to +Intel processors or platforms, utilizing the Intel Platform Update (IPU) +process or other similar mechanisms. + +End of Servicing Updates (ESU): ESU is the date at which Intel will no +longer provide Servicing, such as through IPU or other similar update +processes. ESU dates will typically be aligned to end of quarter. + +If the processor is vulnerable then the following information is appended to +the above information: + + ======================== =========================================== + 'SMT vulnerable' SMT is enabled + 'SMT disabled' SMT is disabled + 'SMT Host state unknown' Kernel runs in a VM, Host SMT state unknown + ======================== =========================================== + +References +---------- +.. [#f1] Affected Processors + https://www.intel.com/content/www/us/en/developer/topic-technology/software-security-guidance/processors-affected-consolidated-product-cpu-model.html only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/admin-guide/hw-vuln/spectre.rst +++ linux-azure-5.4.0/Documentation/admin-guide/hw-vuln/spectre.rst @@ -60,8 +60,8 @@ Spectre variant 1 attacks take advantage of speculative execution of conditional branches, while Spectre variant 2 attacks use speculative execution of indirect branches to leak privileged memory. -See :ref:`[1] ` :ref:`[5] ` :ref:`[7] ` -:ref:`[10] ` :ref:`[11] `. +See :ref:`[1] ` :ref:`[5] ` :ref:`[6] ` +:ref:`[7] ` :ref:`[10] ` :ref:`[11] `. Spectre variant 1 (Bounds Check Bypass) --------------------------------------- @@ -131,6 +131,19 @@ speculative execution's side effects left in level 1 cache to infer the victim's data. +Yet another variant 2 attack vector is for the attacker to poison the +Branch History Buffer (BHB) to speculatively steer an indirect branch +to a specific Branch Target Buffer (BTB) entry, even if the entry isn't +associated with the source address of the indirect branch. Specifically, +the BHB might be shared across privilege levels even in the presence of +Enhanced IBRS. + +Currently the only known real-world BHB attack vector is via +unprivileged eBPF. Therefore, it's highly recommended to not enable +unprivileged eBPF, especially when eIBRS is used (without retpolines). +For a full mitigation against BHB attacks, it's recommended to use +retpolines (or eIBRS combined with retpolines). + Attack scenarios ---------------- @@ -364,13 +377,15 @@ - Kernel status: - ==================================== ================================= - 'Not affected' The processor is not vulnerable - 'Vulnerable' Vulnerable, no mitigation - 'Mitigation: Full generic retpoline' Software-focused mitigation - 'Mitigation: Full AMD retpoline' AMD-specific software mitigation - 'Mitigation: Enhanced IBRS' Hardware-focused mitigation - ==================================== ================================= + ======================================== ================================= + 'Not affected' The processor is not vulnerable + 'Mitigation: None' Vulnerable, no mitigation + 'Mitigation: Retpolines' Use Retpoline thunks + 'Mitigation: LFENCE' Use LFENCE instructions + 'Mitigation: Enhanced IBRS' Hardware-focused mitigation + 'Mitigation: Enhanced IBRS + Retpolines' Hardware-focused + Retpolines + 'Mitigation: Enhanced IBRS + LFENCE' Hardware-focused + LFENCE + ======================================== ================================= - Firmware status: Show if Indirect Branch Restricted Speculation (IBRS) is used to protect against Spectre variant 2 attacks when calling firmware (x86 only). @@ -407,6 +422,14 @@ 'RSB filling' Protection of RSB on context switch enabled ============= =========================================== + - EIBRS Post-barrier Return Stack Buffer (PBRSB) protection status: + + =========================== ======================================================= + 'PBRSB-eIBRS: SW sequence' CPU is affected and protection of RSB on VMEXIT enabled + 'PBRSB-eIBRS: Vulnerable' CPU is vulnerable + 'PBRSB-eIBRS: Not affected' CPU is not affected by PBRSB + =========================== ======================================================= + Full mitigation might require a microcode update from the CPU vendor. When the necessary microcode is not available, the kernel will report vulnerability. @@ -468,7 +491,7 @@ before invoking any firmware code to prevent Spectre variant 2 exploits using the firmware. - Using kernel address space randomization (CONFIG_RANDOMIZE_SLAB=y + Using kernel address space randomization (CONFIG_RANDOMIZE_BASE=y and CONFIG_SLAB_FREELIST_RANDOM=y in the kernel configuration) makes attacks on the kernel generally more difficult. @@ -584,12 +607,13 @@ Specific mitigations can also be selected manually: - retpoline - replace indirect branches - retpoline,generic - google's original retpoline - retpoline,amd - AMD-specific minimal thunk + retpoline auto pick between generic,lfence + retpoline,generic Retpolines + retpoline,lfence LFENCE; indirect branch + retpoline,amd alias for retpoline,lfence + eibrs enhanced IBRS + eibrs,retpoline enhanced IBRS + Retpolines + eibrs,lfence enhanced IBRS + LFENCE Not specifying this option is equivalent to spectre_v2=auto. @@ -730,7 +754,7 @@ .. _spec_ref6: -[6] `Software techniques for managing speculation on AMD processors `_. +[6] `Software techniques for managing speculation on AMD processors `_. ARM white papers: only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/admin-guide/pm/cpuidle.rst +++ linux-azure-5.4.0/Documentation/admin-guide/pm/cpuidle.rst @@ -676,8 +676,8 @@ by default this way, for example. The other kernel command line parameters controlling CPU idle time management -described below are only relevant for the *x86* architecture and some of -them affect Intel processors only. +described below are only relevant for the *x86* architecture and references +to ``intel_idle`` affect Intel processors only. The *x86* architecture support code recognizes three kernel command line options related to CPU idle time management: ``idle=poll``, ``idle=halt``, @@ -699,10 +699,13 @@ energy-efficiency. Thus using it for performance reasons may not be a good idea at all.] -The ``idle=nomwait`` option disables the ``intel_idle`` driver and causes -``acpi_idle`` to be used (as long as all of the information needed by it is -there in the system's ACPI tables), but it is not allowed to use the -``MWAIT`` instruction of the CPUs to ask the hardware to enter idle states. +The ``idle=nomwait`` option prevents the use of ``MWAIT`` instruction of +the CPU to enter idle states. When this option is used, the ``acpi_idle`` +driver will use the ``HLT`` instruction instead of ``MWAIT``. On systems +running Intel processors, this option disables the ``intel_idle`` driver +and forces the use of the ``acpi_idle`` driver instead. Note that in either +case, ``acpi_idle`` driver will function only if all the information needed +by it is in the system's ACPI tables. In addition to the architecture-level kernel command line options affecting CPU idle time management, there are parameters affecting individual ``CPUIdle`` only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/admin-guide/sysctl/kernel.rst +++ linux-azure-5.4.0/Documentation/admin-guide/sysctl/kernel.rst @@ -862,9 +862,40 @@ a one-time setting until next reboot: once set, it cannot be changed by this sysctl interface anymore. +pty +=== -randomize_va_space: -=================== +See Documentation/filesystems/devpts.rst. + + +random +====== + +This is a directory, with the following entries: + +* ``boot_id``: a UUID generated the first time this is retrieved, and + unvarying after that; + +* ``uuid``: a UUID generated every time this is retrieved (this can + thus be used to generate UUIDs at will); + +* ``entropy_avail``: the pool's entropy count, in bits; + +* ``poolsize``: the entropy pool size, in bits; + +* ``urandom_min_reseed_secs``: obsolete (used to determine the minimum + number of seconds between urandom pool reseeding). This file is + writable for compatibility purposes, but writing to it has no effect + on any RNG behavior; + +* ``write_wakeup_threshold``: when the entropy count drops below this + (as a number of bits), processes waiting to write to ``/dev/random`` + are woken up. This file is writable for compatibility purposes, but + writing to it has no effect on any RNG behavior. + + +randomize_va_space +================== This option can be used to select the type of process address space randomization that is used in the system, for architectures @@ -1125,6 +1156,27 @@ example. If a system hangs up, try pressing the NMI switch. +unprivileged_bpf_disabled: +========================== + +Writing 1 to this entry will disable unprivileged calls to ``bpf()``; +once disabled, calling ``bpf()`` without ``CAP_SYS_ADMIN`` will return +``-EPERM``. Once set to 1, this can't be cleared from the running kernel +anymore. + +Writing 2 to this entry will also disable unprivileged calls to ``bpf()``, +however, an admin can still change this setting later on, if needed, by +writing 0 or 1 to this entry. + +If ``BPF_UNPRIV_DEFAULT_OFF`` is enabled in the kernel config, then this +entry will default to 2 instead of 0. + += ============================================================= +0 Unprivileged calls to ``bpf()`` are enabled +1 Unprivileged calls to ``bpf()`` are disabled without recovery +2 Unprivileged calls to ``bpf()`` are disabled += ============================================================= + watchdog: ========= only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/atomic_bitops.txt +++ linux-azure-5.4.0/Documentation/atomic_bitops.txt @@ -59,7 +59,7 @@ - RMW operations that have a return value are fully ordered. - RMW operations that are conditional are unordered on FAILURE, - otherwise the above rules apply. In the case of test_and_{}_bit() operations, + otherwise the above rules apply. In the case of test_and_set_bit_lock(), if the bit in memory is unchanged by the operation then it is deemed to have failed. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/conf.py +++ linux-azure-5.4.0/Documentation/conf.py @@ -98,7 +98,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/core-api/xarray.rst +++ linux-azure-5.4.0/Documentation/core-api/xarray.rst @@ -461,13 +461,15 @@ Each entry will only be returned once, no matter how many indices it occupies. -Using xas_next() or xas_prev() with a multi-index xa_state -is not supported. Using either of these functions on a multi-index entry -will reveal sibling entries; these should be skipped over by the caller. +Using xas_next() or xas_prev() with a multi-index xa_state is not +supported. Using either of these functions on a multi-index entry will +reveal sibling entries; these should be skipped over by the caller. -Storing ``NULL`` into any index of a multi-index entry will set the entry -at every index to ``NULL`` and dissolve the tie. Splitting a multi-index -entry into entries occupying smaller ranges is not yet supported. +Storing ``NULL`` into any index of a multi-index entry will set the +entry at every index to ``NULL`` and dissolve the tie. A multi-index +entry can be split into entries occupying smaller ranges by calling +xas_split_alloc() without the xa_lock held, followed by taking the lock +and calling xas_split(). Functions and structures ======================== only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/arm/qcom.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/arm/qcom.yaml @@ -112,8 +112,8 @@ - const: qcom,msm8974 - items: - - const: qcom,msm8916-mtp/1 - const: qcom,msm8916-mtp + - const: qcom,msm8916-mtp/1 - const: qcom,msm8916 - items: only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/arm/tegra.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/arm/tegra.yaml @@ -49,7 +49,7 @@ - const: toradex,apalis_t30 - const: nvidia,tegra30 - items: - - const: toradex,apalis_t30-eval-v1.1 + - const: toradex,apalis_t30-v1.1-eval - const: toradex,apalis_t30-eval - const: toradex,apalis_t30-v1.1 - const: toradex,apalis_t30 only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml @@ -10,6 +10,9 @@ maintainers: - Neil Armstrong +allOf: + - $ref: /schemas/sound/name-prefix.yaml# + description: | The Amlogic Meson Synopsys Designware Integration is composed of - A Synopsys DesignWare HDMI Controller IP @@ -101,6 +104,8 @@ "#sound-dai-cells": const: 0 + sound-name-prefix: true + required: - compatible - reg only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml @@ -78,6 +78,10 @@ interrupts: maxItems: 1 + amlogic,canvas: + description: should point to a canvas provider node + $ref: /schemas/types.yaml#/definitions/phandle + power-domains: maxItems: 1 description: phandle to the associated power domain @@ -106,6 +110,7 @@ - port@1 - "#address-cells" - "#size-cells" + - amlogic,canvas examples: - | @@ -116,6 +121,7 @@ interrupts = <3>; #address-cells = <1>; #size-cells = <0>; + amlogic,canvas = <&canvas>; /* CVBS VDAC output port */ port@0 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/dma/allwinner,sun50i-a64-dma.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/dma/allwinner,sun50i-a64-dma.yaml @@ -58,7 +58,7 @@ then: properties: clocks: - maxItems: 2 + minItems: 2 required: - clock-names only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/dma/moxa,moxart-dma.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/dma/moxa,moxart-dma.txt @@ -34,8 +34,8 @@ Use specific request line passing from dma For example, MMC request line is 5 - sdhci: sdhci@98e00000 { - compatible = "moxa,moxart-sdhci"; + mmc: mmc@98e00000 { + compatible = "moxa,moxart-mmc"; reg = <0x98e00000 0x5C>; interrupts = <5 0>; clocks = <&clk_apb>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/gpio/gpio-altera.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/gpio/gpio-altera.txt @@ -9,8 +9,9 @@ - The second cell is reserved and is currently unused. - gpio-controller : Marks the device node as a GPIO controller. - interrupt-controller: Mark the device node as an interrupt controller -- #interrupt-cells : Should be 1. The interrupt type is fixed in the hardware. +- #interrupt-cells : Should be 2. The interrupt type is fixed in the hardware. - The first cell is the GPIO offset number within the GPIO controller. + - The second cell is the interrupt trigger type and level flags. - interrupts: Specify the interrupt. - altr,interrupt-type: Specifies the interrupt trigger type the GPIO hardware is synthesized. This field is required if the Altera GPIO controller @@ -38,6 +39,6 @@ altr,interrupt-type = ; #gpio-cells = <2>; gpio-controller; - #interrupt-cells = <1>; + #interrupt-cells = <2>; interrupt-controller; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/mtd/gpmc-nand.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/mtd/gpmc-nand.txt @@ -122,7 +122,7 @@ so the device should have enough free bytes available its OOB/Spare area to accommodate ECC for entire page. In general following expression helps in determining if given device can accommodate ECC syndrome: - "2 + (PAGESIZE / 512) * ECC_BYTES" >= OOBSIZE" + "2 + (PAGESIZE / 512) * ECC_BYTES" <= OOBSIZE" where OOBSIZE number of bytes in OOB/spare area PAGESIZE number of bytes in main-area of device page only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/mtd/nand-controller.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/mtd/nand-controller.yaml @@ -44,7 +44,7 @@ properties: reg: description: - Contains the native Ready/Busy IDs. + Contains the chip-select IDs. nand-ecc-mode: allOf: @@ -139,6 +139,6 @@ nand-ecc-mode = "soft"; nand-ecc-algo = "bch"; - /* controller specific properties */ + /* NAND chip specific properties */ }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/net/ethernet-phy.yaml +++ linux-azure-5.4.0/Documentation/devicetree/bindings/net/ethernet-phy.yaml @@ -87,6 +87,14 @@ compensate for the board being designed with the lanes swapped. + enet-phy-lane-no-swap: + $ref: /schemas/types.yaml#/definitions/flag + description: + If set, indicates that PHY will disable swap of the + TX/RX lanes. This property allows the PHY to work correcly after + e.g. wrong bootstrap configuration caused by issues in PCB + layout design. + eee-broken-100tx: $ref: /schemas/types.yaml#definitions/flag description: only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/pinctrl/marvell,armada-37xx-pinctrl.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/pinctrl/marvell,armada-37xx-pinctrl.txt @@ -43,19 +43,19 @@ group pwm0 - pin 11 (GPIO1-11) - - functions pwm, gpio + - functions pwm, led, gpio group pwm1 - pin 12 - - functions pwm, gpio + - functions pwm, led, gpio group pwm2 - pin 13 - - functions pwm, gpio + - functions pwm, led, gpio group pwm3 - pin 14 - - functions pwm, gpio + - functions pwm, led, gpio group pmic1 - pin 7 only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/regulator/samsung,s5m8767.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/regulator/samsung,s5m8767.txt @@ -13,6 +13,14 @@ Required properties of the main device node (the parent!): + - s5m8767,pmic-buck-ds-gpios: GPIO specifiers for three host gpio's used + for selecting GPIO DVS lines. It is one-to-one mapped to dvs gpio lines. + + [1] If either of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional + property is specified, then all the eight voltage values for the + 's5m8767,pmic-buck[2/3/4]-dvs-voltage' should be specified. + +Optional properties of the main device node (the parent!): - s5m8767,pmic-buck2-dvs-voltage: A set of 8 voltage values in micro-volt (uV) units for buck2 when changing voltage using gpio dvs. Refer to [1] below for additional information. @@ -25,26 +33,13 @@ units for buck4 when changing voltage using gpio dvs. Refer to [1] below for additional information. - - s5m8767,pmic-buck-ds-gpios: GPIO specifiers for three host gpio's used - for selecting GPIO DVS lines. It is one-to-one mapped to dvs gpio lines. - - [1] If none of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional - property is specified, the 's5m8767,pmic-buck[2/3/4]-dvs-voltage' - property should specify atleast one voltage level (which would be a - safe operating voltage). - - If either of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional - property is specified, then all the eight voltage values for the - 's5m8767,pmic-buck[2/3/4]-dvs-voltage' should be specified. - -Optional properties of the main device node (the parent!): - s5m8767,pmic-buck2-uses-gpio-dvs: 'buck2' can be controlled by gpio dvs. - s5m8767,pmic-buck3-uses-gpio-dvs: 'buck3' can be controlled by gpio dvs. - s5m8767,pmic-buck4-uses-gpio-dvs: 'buck4' can be controlled by gpio dvs. Additional properties required if either of the optional properties are used: - - s5m8767,pmic-buck234-default-dvs-idx: Default voltage setting selected from + - s5m8767,pmic-buck-default-dvs-idx: Default voltage setting selected from the possible 8 options selectable by the dvs gpios. The value of this property should be between 0 and 7. If not specified or if out of range, the default value of this property is set to 0. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/devicetree/bindings/spi/spi-mxic.txt +++ linux-azure-5.4.0/Documentation/devicetree/bindings/spi/spi-mxic.txt @@ -8,11 +8,13 @@ - reg: should contain 2 entries, one for the registers and one for the direct mapping area - reg-names: should contain "regs" and "dirmap" -- interrupts: interrupt line connected to the SPI controller - clock-names: should contain "ps_clk", "send_clk" and "send_dly_clk" - clocks: should contain 3 entries for the "ps_clk", "send_clk" and "send_dly_clk" clocks +Optional properties: +- interrupts: interrupt line connected to the SPI controller + Example: spi@43c30000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/driver-api/dmaengine/dmatest.rst +++ linux-azure-5.4.0/Documentation/driver-api/dmaengine/dmatest.rst @@ -143,13 +143,14 @@ Allocating Channels ------------------- -Channels are required to be configured prior to starting the test run. -Attempting to run the test without configuring the channels will fail. +Channels do not need to be configured prior to starting a test run. Attempting +to run the test without configuring the channels will result in testing any +channels that are available. Example:: % echo 1 > /sys/module/dmatest/parameters/run - dmatest: Could not start test, no channels configured + dmatest: No channels configured, continue with any Channels are registered using the "channel" parameter. Channels can be requested by their name, once requested, the channel is registered and a pending thread is added to the test list. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/driver-api/firewire.rst +++ linux-azure-5.4.0/Documentation/driver-api/firewire.rst @@ -19,7 +19,7 @@ Firewire char device data structures ==================================== -.. include:: /ABI/stable/firewire-cdev +.. include:: ../ABI/stable/firewire-cdev :literal: .. kernel-doc:: include/uapi/linux/firewire-cdev.h @@ -28,7 +28,7 @@ Firewire device probing and sysfs interfaces ============================================ -.. include:: /ABI/stable/sysfs-bus-firewire +.. include:: ../ABI/stable/sysfs-bus-firewire :literal: .. kernel-doc:: drivers/firewire/core-device.c only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/filesystems/ext4/attributes.rst +++ linux-azure-5.4.0/Documentation/filesystems/ext4/attributes.rst @@ -76,7 +76,7 @@ - Checksum of the extended attribute block. * - 0x14 - \_\_u32 - - h\_reserved[2] + - h\_reserved[3] - Zero. The checksum is calculated against the FS UUID, the 64-bit block number only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/firmware-guide/acpi/apei/einj.rst +++ linux-azure-5.4.0/Documentation/firmware-guide/acpi/apei/einj.rst @@ -168,7 +168,7 @@ 0x00000008 Memory Correctable 0x00000010 Memory Uncorrectable non-fatal # echo 0x12345000 > param1 # Set memory address for injection - # echo $((-1 << 12)) > param2 # Mask 0xfffffffffffff000 - anywhere in this page + # echo 0xfffffffffffff000 > param2 # Mask - anywhere in this page # echo 0x8 > error_type # Choose correctable memory error # echo 1 > error_inject # Inject now only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/firmware-guide/acpi/dsd/data-node-references.rst +++ linux-azure-5.4.0/Documentation/firmware-guide/acpi/dsd/data-node-references.rst @@ -5,7 +5,7 @@ Referencing hierarchical data nodes =================================== -:Copyright: |copy| 2018 Intel Corporation +:Copyright: |copy| 2018, 2021 Intel Corporation :Author: Sakari Ailus ACPI in general allows referring to device objects in the tree only. @@ -52,12 +52,14 @@ Name (NOD0, Package() { ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), Package () { + Package () { "reg", 0 }, Package () { "random-property", 3 }, } }) Name (NOD1, Package() { ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"), Package () { + Package () { "reg", 1 }, Package () { "anothernode", "ANOD" }, } }) @@ -74,7 +76,11 @@ Name (_DSD, Package () { ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), Package () { - Package () { "reference", ^DEV0, "node@1", "anothernode" }, + Package () { + "reference", Package () { + ^DEV0, "node@1", "anothernode" + } + }, } }) } only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/hwmon/lm90.rst +++ linux-azure-5.4.0/Documentation/hwmon/lm90.rst @@ -123,6 +123,18 @@ http://www.maxim-ic.com/quick_view2.cfm/qv_pk/3497 + * Maxim MAX6654 + + Prefix: 'max6654' + + Addresses scanned: I2C 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, + + 0x4c, 0x4d and 0x4e + + Datasheet: Publicly available at the Maxim website + + https://www.maximintegrated.com/en/products/sensors/MAX6654.html + * Maxim MAX6657 Prefix: 'max6657' @@ -253,6 +265,16 @@ http://www.ti.com/litv/pdf/sbos686 + * Texas Instruments TMP461 + + Prefix: 'tmp461' + + Addresses scanned: I2C 0x48 through 0x4F + + Datasheet: Publicly available at TI website + + https://www.ti.com/lit/gpn/tmp461 + Author: Jean Delvare @@ -301,6 +323,13 @@ * Extended temperature range (breaks compatibility) * Lower resolution for remote temperature +MAX6654: + * Better local resolution + * Selectable address + * Remote sensor type selection + * Extended temperature range + * Extended resolution only available when conversion rate <= 1 Hz + MAX6657 and MAX6658: * Better local resolution * Remote sensor type selection @@ -336,8 +365,8 @@ All temperature values are given in degrees Celsius. Resolution is 1.0 degree for the local temperature, 0.125 degree for the remote -temperature, except for the MAX6657, MAX6658 and MAX6659 which have a -resolution of 0.125 degree for both temperatures. +temperature, except for the MAX6654, MAX6657, MAX6658 and MAX6659 which have +a resolution of 0.125 degree for both temperatures. Each sensor has its own high and low limits, plus a critical limit. Additionally, there is a relative hysteresis value common to both critical only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/hwmon/max31790.rst +++ linux-azure-5.4.0/Documentation/hwmon/max31790.rst @@ -38,6 +38,7 @@ fan[1-12]_input RO fan tachometer speed in RPM fan[1-12]_fault RO fan experienced fault fan[1-6]_target RW desired fan speed in RPM -pwm[1-6]_enable RW regulator mode, 0=disabled, 1=manual mode, 2=rpm mode -pwm[1-6] RW fan target duty cycle (0-255) +pwm[1-6]_enable RW regulator mode, 0=disabled (duty cycle=0%), 1=manual mode, 2=rpm mode +pwm[1-6] RW read: current pwm duty cycle, + write: target pwm duty cycle (0-255) ================== === ======================================================= only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/input/joydev/joystick.rst +++ linux-azure-5.4.0/Documentation/input/joydev/joystick.rst @@ -517,6 +517,7 @@ * AVB Mag Turbo Force * AVB Top Shot Pegasus * AVB Top Shot Force Feedback Racing Wheel +* Boeder Force Feedback Wheel * Logitech WingMan Force * Logitech WingMan Force Wheel * Guillemot Race Leader Force Feedback only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/networking/bonding.txt +++ linux-azure-5.4.0/Documentation/networking/bonding.txt @@ -191,11 +191,12 @@ ad_actor_system In an AD system, this specifies the mac-address for the actor in - protocol packet exchanges (LACPDUs). The value cannot be NULL or - multicast. It is preferred to have the local-admin bit set for this - mac but driver does not enforce it. If the value is not given then - system defaults to using the masters' mac address as actors' system - address. + protocol packet exchanges (LACPDUs). The value cannot be a multicast + address. If the all-zeroes MAC is specified, bonding will internally + use the MAC of the bond itself. It is preferred to have the + local-admin bit set for this mac but driver does not enforce it. If + the value is not given then system defaults to using the masters' + mac address as actors' system address. This parameter has effect only in 802.3ad mode and is available through SysFs interface. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/networking/ipvs-sysctl.txt +++ linux-azure-5.4.0/Documentation/networking/ipvs-sysctl.txt @@ -30,8 +30,7 @@ 0: disable any special handling on port reuse. The new connection will be delivered to the same real server that was - servicing the previous connection. This will effectively - disable expire_nodest_conn. + servicing the previous connection. bit 1: enable rescheduling of new connections when it is safe. That is, whenever expire_nodest_conn and for TCP sockets, when only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/process/code-of-conduct-interpretation.rst +++ linux-azure-5.4.0/Documentation/process/code-of-conduct-interpretation.rst @@ -51,7 +51,7 @@ uncertain how to handle situations that come up. It will not be considered a violation report unless you want it to be. If you are uncertain about approaching the TAB or any other maintainers, please -reach out to our conflict mediator, Mishi Choudhary . +reach out to our conflict mediator, Joanna Lee . In the end, "be kind to each other" is really what the end goal is for everybody. We know everyone is human and we all fail at times, but the only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/process/stable-kernel-rules.rst +++ linux-azure-5.4.0/Documentation/process/stable-kernel-rules.rst @@ -174,7 +174,16 @@ - The finalized and tagged releases of all stable kernels can be found in separate branches per version at: - https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git + https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git + + - The release candidate of all stable kernel versions can be found at: + + https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git/ + + .. warning:: + The -stable-rc tree is a snapshot in time of the stable-queue tree and + will change frequently, hence will be rebased often. It should only be + used for testing purposes (e.g. to be consumed by CI systems). Review committee only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/process/submitting-patches.rst +++ linux-azure-5.4.0/Documentation/process/submitting-patches.rst @@ -133,7 +133,7 @@ The maintainer will thank you if you write your patch description in a form which can be easily pulled into Linux's source code management -system, ``git``, as a "commit log". See :ref:`explicit_in_reply_to`. +system, ``git``, as a "commit log". See :ref:`the_canonical_patch_format`. Solve only one problem per patch. If your description starts to get long, that's a sign that you probably need to split up your patch. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/trace/histogram.rst +++ linux-azure-5.4.0/Documentation/trace/histogram.rst @@ -39,7 +39,7 @@ will use the event's kernel stacktrace as the key. The keywords 'keys' or 'key' can be used to specify keys, and the keywords 'values', 'vals', or 'val' can be used to specify values. Compound - keys consisting of up to two fields can be specified by the 'keys' + keys consisting of up to three fields can be specified by the 'keys' keyword. Hashing a compound key produces a unique entry in the table for each unique combination of component keys, and can be useful for providing more fine-grained summaries of event data. @@ -191,7 +191,7 @@ with the event, in nanoseconds. May be modified by .usecs to have timestamps interpreted as microseconds. - cpu int the cpu on which the event occurred. + common_cpu int the cpu on which the event occurred. ====================== ==== ======================================= Extended error information only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/vm/memory-model.rst +++ linux-azure-5.4.0/Documentation/vm/memory-model.rst @@ -52,8 +52,7 @@ usable until the call to :c:func:`memblock_free_all` that hands all the memory to the page allocator. -If an architecture enables `CONFIG_ARCH_HAS_HOLES_MEMORYMODEL` option, -it may free parts of the `mem_map` array that do not cover the +An architecture may free parts of the `mem_map` array that do not cover the actual physical pages. In such case, the architecture specific :c:func:`pfn_valid` implementation should take the holes in the `mem_map` into account. only in patch2: unchanged: --- linux-azure-5.4.0.orig/Documentation/vm/slub.rst +++ linux-azure-5.4.0/Documentation/vm/slub.rst @@ -160,7 +160,7 @@ Here is a sample of slub debug output:: ==================================================================== - BUG kmalloc-8: Redzone overwritten + BUG kmalloc-8: Right Redzone overwritten -------------------------------------------------------------------- INFO: 0xc90f6d28-0xc90f6d2b. First byte 0x00 instead of 0xcc @@ -168,10 +168,10 @@ INFO: Object 0xc90f6d20 @offset=3360 fp=0xc90f6d58 INFO: Allocated in get_modalias+0x61/0xf5 age=53 cpu=1 pid=554 - Bytes b4 0xc90f6d10: 00 00 00 00 00 00 00 00 5a 5a 5a 5a 5a 5a 5a 5a ........ZZZZZZZZ - Object 0xc90f6d20: 31 30 31 39 2e 30 30 35 1019.005 - Redzone 0xc90f6d28: 00 cc cc cc . - Padding 0xc90f6d50: 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZ + Bytes b4 (0xc90f6d10): 00 00 00 00 00 00 00 00 5a 5a 5a 5a 5a 5a 5a 5a ........ZZZZZZZZ + Object (0xc90f6d20): 31 30 31 39 2e 30 30 35 1019.005 + Redzone (0xc90f6d28): 00 cc cc cc . + Padding (0xc90f6d50): 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZ [] dump_trace+0x63/0x1eb [] show_trace_log_lvl+0x1a/0x2f only in patch2: unchanged: --- linux-azure-5.4.0.orig/Ubuntu.md +++ linux-azure-5.4.0/Ubuntu.md @@ -0,0 +1,8 @@ +Name: linux-azure +Version: 5.4.0 +Series: 20.04 (focal) +Description: + This is the source code for the Ubuntu linux kernel for the 20.04 series. This + source tree is used to produce the flavours: azure. + This kernel is configured to support the widest range of desktop, laptop and + server configurations. only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/alpha/include/asm/timex.h +++ linux-azure-5.4.0/arch/alpha/include/asm/timex.h @@ -28,5 +28,6 @@ __asm__ __volatile__ ("rpcc %0" : "=r"(ret)); return ret; } +#define get_cycles get_cycles #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/alpha/kernel/smp.c +++ linux-azure-5.4.0/arch/alpha/kernel/smp.c @@ -585,7 +585,7 @@ smp_send_stop(void) { cpumask_t to_whom; - cpumask_copy(&to_whom, cpu_possible_mask); + cpumask_copy(&to_whom, cpu_online_mask); cpumask_clear_cpu(smp_processor_id(), &to_whom); #ifdef DEBUG_IPI_MSG if (hard_smp_processor_id() != boot_cpu_id) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/alpha/kernel/srmcons.c +++ linux-azure-5.4.0/arch/alpha/kernel/srmcons.c @@ -59,7 +59,7 @@ } while((result.bits.status & 1) && (++loops < 10)); if (count) - tty_schedule_flip(port); + tty_flip_buffer_push(port); return count; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/Kconfig +++ linux-azure-5.4.0/arch/arc/Kconfig @@ -29,6 +29,7 @@ select GENERIC_SMP_IDLE_THREAD select HAVE_ARCH_KGDB select HAVE_ARCH_TRACEHOOK + select HAVE_COPY_THREAD_TLS select HAVE_DEBUG_STACKOVERFLOW select HAVE_FUTEX_CMPXCHG if FUTEX select HAVE_IOREMAP_PROT only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/include/asm/io.h +++ linux-azure-5.4.0/arch/arc/include/asm/io.h @@ -32,7 +32,7 @@ { } -extern void iounmap(const void __iomem *addr); +extern void iounmap(const volatile void __iomem *addr); #define ioremap_nocache(phy, sz) ioremap(phy, sz) #define ioremap_wc(phy, sz) ioremap(phy, sz) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/include/asm/syscalls.h +++ linux-azure-5.4.0/arch/arc/include/asm/syscalls.h @@ -11,6 +11,7 @@ #include int sys_clone_wrapper(int, int, int, int, int); +int sys_clone3_wrapper(void *, size_t); int sys_cacheflush(uint32_t, uint32_t uint32_t); int sys_arc_settls(void *); int sys_arc_gettls(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/include/uapi/asm/sigcontext.h +++ linux-azure-5.4.0/arch/arc/include/uapi/asm/sigcontext.h @@ -18,6 +18,7 @@ */ struct sigcontext { struct user_regs_struct regs; + struct user_regs_arcv2 v2abi; }; #endif /* _ASM_ARC_SIGCONTEXT_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/include/uapi/asm/unistd.h +++ linux-azure-5.4.0/arch/arc/include/uapi/asm/unistd.h @@ -21,6 +21,7 @@ #define __ARCH_WANT_SET_GET_RLIMIT #define __ARCH_WANT_SYS_EXECVE #define __ARCH_WANT_SYS_CLONE +#define __ARCH_WANT_SYS_CLONE3 #define __ARCH_WANT_SYS_VFORK #define __ARCH_WANT_SYS_FORK #define __ARCH_WANT_TIME32_SYSCALLS only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/kernel/process.c +++ linux-azure-5.4.0/arch/arc/kernel/process.c @@ -171,9 +171,8 @@ * | user_r25 | * ------------------ <===== END of PAGE */ -int copy_thread(unsigned long clone_flags, - unsigned long usp, unsigned long kthread_arg, - struct task_struct *p) +int copy_thread_tls(unsigned long clone_flags, unsigned long usp, + unsigned long kthread_arg, struct task_struct *p, unsigned long tls) { struct pt_regs *c_regs; /* child's pt_regs */ unsigned long *childksp; /* to unwind out of __switch_to() */ @@ -231,7 +230,7 @@ * set task's userland tls data ptr from 4th arg * clone C-lib call is difft from clone sys-call */ - task_thread_info(p)->thr_ptr = regs->r3; + task_thread_info(p)->thr_ptr = tls; } else { /* Normal fork case: set parent's TLS ptr in child */ task_thread_info(p)->thr_ptr = only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/kernel/sys.c +++ linux-azure-5.4.0/arch/arc/kernel/sys.c @@ -7,6 +7,7 @@ #include #define sys_clone sys_clone_wrapper +#define sys_clone3 sys_clone3_wrapper #undef __SYSCALL #define __SYSCALL(nr, call) [nr] = (call), only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/kernel/vmlinux.lds.S +++ linux-azure-5.4.0/arch/arc/kernel/vmlinux.lds.S @@ -88,6 +88,8 @@ CPUIDLE_TEXT LOCK_TEXT KPROBES_TEXT + IRQENTRY_TEXT + SOFTIRQENTRY_TEXT *(.fixup) *(.gnu.warning) } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arc/mm/cache.c +++ linux-azure-5.4.0/arch/arc/mm/cache.c @@ -1123,7 +1123,7 @@ clear_page(to); clear_bit(PG_dc_clean, &page->flags); } - +EXPORT_SYMBOL(clear_user_page); /********************************************************************** * Explicit Cache flush request from user space via syscall only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/bootp/init.S +++ linux-azure-5.4.0/arch/arm/boot/bootp/init.S @@ -13,7 +13,7 @@ * size immediately following the kernel, we could build this into * a binary blob, and concatenate the zImage using the cat command. */ - .section .start,#alloc,#execinstr + .section .start, "ax" .type _start, #function .globl _start only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/compressed/big-endian.S +++ linux-azure-5.4.0/arch/arm/boot/compressed/big-endian.S @@ -6,7 +6,7 @@ * Author: Nicolas Pitre */ - .section ".start", #alloc, #execinstr + .section ".start", "ax" mrc p15, 0, r0, c1, c0, 0 @ read control reg orr r0, r0, #(1 << 7) @ enable big endian mode only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/compressed/decompress.c +++ linux-azure-5.4.0/arch/arm/boot/compressed/decompress.c @@ -47,7 +47,10 @@ #endif #ifdef CONFIG_KERNEL_XZ +/* Prevent KASAN override of string helpers in decompressor */ +#undef memmove #define memmove memmove +#undef memcpy #define memcpy memcpy #include "../../../../lib/decompress_unxz.c" #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/compressed/efi-header.S +++ linux-azure-5.4.0/arch/arm/boot/compressed/efi-header.S @@ -9,16 +9,22 @@ #include .macro __nop -#ifdef CONFIG_EFI_STUB - @ This is almost but not quite a NOP, since it does clobber the - @ condition flags. But it is the best we can do for EFI, since - @ PE/COFF expects the magic string "MZ" at offset 0, while the - @ ARM/Linux boot protocol expects an executable instruction - @ there. - .inst MZ_MAGIC | (0x1310 << 16) @ tstne r0, #0x4d000 -#else AR_CLASS( mov r0, r0 ) M_CLASS( nop.w ) + .endm + + .macro __initial_nops +#ifdef CONFIG_EFI_STUB + @ This is a two-instruction NOP, which happens to bear the + @ PE/COFF signature "MZ" in the first two bytes, so the kernel + @ is accepted as an EFI binary. Booting via the UEFI stub + @ will not execute those instructions, but the ARM/Linux + @ boot protocol does, so we need some NOPs here. + .inst MZ_MAGIC | (0xe225 << 16) @ eor r5, r5, 0x4d000 + eor r5, r5, 0x4d000 @ undo previous insn +#else + __nop + __nop #endif .endm only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/compressed/piggy.S +++ linux-azure-5.4.0/arch/arm/boot/compressed/piggy.S @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ - .section .piggydata,#alloc + .section .piggydata, "a" .globl input_data input_data: .incbin "arch/arm/boot/compressed/piggy_data" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-baltos.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-baltos.dtsi @@ -381,7 +381,7 @@ &mmc2 { status = "okay"; vmmc-supply = <&wl12xx_vmmc>; - ti,non-removable; + non-removable; bus-width = <4>; cap-power-off-card; pinctrl-names = "default"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-boneblack-wireless.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblack-wireless.dts @@ -75,7 +75,6 @@ bus-width = <4>; non-removable; cap-power-off-card; - ti,needs-special-hs-handling; keep-power-in-suspend; pinctrl-names = "default"; pinctrl-0 = <&mmc3_pins &wl18xx_pins>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-boneblue.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-boneblue.dts @@ -389,7 +389,6 @@ bus-width = <4>; non-removable; cap-power-off-card; - ti,needs-special-hs-handling; keep-power-in-suspend; pinctrl-names = "default"; pinctrl-0 = <&mmc3_pins &wl18xx_pins>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-bonegreen-wireless.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-bonegreen-wireless.dts @@ -75,7 +75,6 @@ bus-width = <4>; non-removable; cap-power-off-card; - ti,needs-special-hs-handling; keep-power-in-suspend; pinctrl-names = "default"; pinctrl-0 = <&mmc3_pins &wl18xx_pins>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-cm-t335.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-cm-t335.dts @@ -516,7 +516,7 @@ status = "okay"; pinctrl-names = "default"; pinctrl-0 = <&spi0_pins>; - ti,pindir-d0-out-d1-in = <1>; + ti,pindir-d0-out-d1-in; /* WLS1271 WiFi */ wlcore: wlcore@1 { compatible = "ti,wl1271"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-evm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-evm.dts @@ -782,8 +782,7 @@ bus-width = <4>; pinctrl-names = "default"; pinctrl-0 = <&mmc3_pins &wlan_pins>; - ti,non-removable; - ti,needs-special-hs-handling; + non-removable; cap-power-off-card; keep-power-in-suspend; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-evmsk.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-evmsk.dts @@ -700,7 +700,7 @@ &mmc2 { status = "okay"; vmmc-supply = <&wl12xx_vmmc>; - ti,non-removable; + non-removable; bus-width = <4>; cap-power-off-card; keep-power-in-suspend; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-lxm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-lxm.dts @@ -361,7 +361,7 @@ pinctrl-0 = <&emmc_pins>; vmmc-supply = <&vmmcsd_fixed>; bus-width = <8>; - ti,non-removable; + non-removable; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-moxa-uc-2100-common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-moxa-uc-2100-common.dtsi @@ -176,7 +176,7 @@ vmmc-supply = <&vmmcsd_fixed>; bus-width = <8>; pinctrl-0 = <&mmc1_pins_default>; - ti,non-removable; + non-removable; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-moxa-uc-8100-me-t.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-moxa-uc-8100-me-t.dts @@ -473,7 +473,7 @@ vmmc-supply = <&vmmcsd_fixed>; bus-width = <8>; pinctrl-0 = <&mmc2_pins_default>; - ti,non-removable; + non-removable; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-pepper.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-pepper.dts @@ -341,7 +341,7 @@ pinctrl-0 = <&emmc_pins>; vmmc-supply = <&ldo3_reg>; bus-width = <8>; - ti,non-removable; + non-removable; }; &mmc3 { @@ -351,7 +351,7 @@ pinctrl-0 = <&wireless_pins>; vmmmc-supply = <&v3v3c_reg>; bus-width = <4>; - ti,non-removable; + non-removable; dmas = <&edma_xbar 12 0 1 &edma_xbar 13 0 2>; dma-names = "tx", "rx"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am335x-phycore-som.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am335x-phycore-som.dtsi @@ -69,7 +69,7 @@ pinctrl-0 = <&emmc_pins>; vmmc-supply = <&vmmc_reg>; bus-width = <8>; - ti,non-removable; + non-removable; status = "disabled"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am33xx-l4.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am33xx-l4.dtsi @@ -1333,12 +1333,9 @@ ranges = <0x0 0x60000 0x1000>; mmc1: mmc@0 { - compatible = "ti,omap4-hsmmc"; - ti,dual-volt; + compatible = "ti,am335-sdhci"; ti,needs-special-reset; - ti,needs-special-hs-handling; - dmas = <&edma_xbar 24 0 0 - &edma_xbar 25 0 0>; + dmas = <&edma 24 0>, <&edma 25 0>; dma-names = "tx", "rx"; interrupts = <64>; reg = <0x0 0x1000>; @@ -1827,7 +1824,7 @@ ranges = <0x0 0xd8000 0x1000>; mmc2: mmc@0 { - compatible = "ti,omap4-hsmmc"; + compatible = "ti,am335-sdhci"; ti,needs-special-reset; dmas = <&edma 2 0 &edma 3 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am3517-evm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am3517-evm.dts @@ -160,6 +160,8 @@ /* HS USB Host PHY on PORT 1 */ hsusb1_phy: hsusb1_phy { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb1_rst_pins>; compatible = "usb-nop-xceiv"; reset-gpios = <&gpio2 25 GPIO_ACTIVE_LOW>; /* gpio_57 */ #phy-cells = <0>; @@ -167,7 +169,9 @@ }; &davinci_emac { - status = "okay"; + pinctrl-names = "default"; + pinctrl-0 = <ðernet_pins>; + status = "okay"; }; &davinci_mdio { @@ -192,6 +196,8 @@ }; &i2c2 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c2_pins>; clock-frequency = <400000>; /* User DIP swithes [1:8] / User LEDS [1:2] */ tca6416: gpio@21 { @@ -204,6 +210,8 @@ }; &i2c3 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c3_pins>; clock-frequency = <400000>; }; @@ -222,6 +230,8 @@ }; &usbhshost { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb1_pins>; port1-mode = "ehci-phy"; }; @@ -230,8 +240,35 @@ }; &omap3_pmx_core { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb1_rst_pins>; + + ethernet_pins: pinmux_ethernet_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21fe, PIN_INPUT | MUX_MODE0) /* rmii_mdio_data */ + OMAP3_CORE1_IOPAD(0x2200, MUX_MODE0) /* rmii_mdio_clk */ + OMAP3_CORE1_IOPAD(0x2202, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_rxd0 */ + OMAP3_CORE1_IOPAD(0x2204, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_rxd1 */ + OMAP3_CORE1_IOPAD(0x2206, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_crs_dv */ + OMAP3_CORE1_IOPAD(0x2208, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_rxer */ + OMAP3_CORE1_IOPAD(0x220a, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_txd0 */ + OMAP3_CORE1_IOPAD(0x220c, PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* rmii_txd1 */ + OMAP3_CORE1_IOPAD(0x220e, PIN_OUTPUT_PULLDOWN |MUX_MODE0) /* rmii_txen */ + OMAP3_CORE1_IOPAD(0x2210, PIN_INPUT_PULLDOWN | MUX_MODE0) /* rmii_50mhz_clk */ + >; + }; + + i2c2_pins: pinmux_i2c2_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21be, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_scl */ + OMAP3_CORE1_IOPAD(0x21c0, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_sda */ + >; + }; + + i2c3_pins: pinmux_i2c3_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */ + OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */ + >; + }; leds_pins: pinmux_leds_pins { pinctrl-single,pins = < @@ -299,8 +336,6 @@ }; &omap3_pmx_core2 { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb1_pins>; hsusb1_pins: pinmux_hsusb1_pins { pinctrl-single,pins = < only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am3517-som.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am3517-som.dtsi @@ -69,6 +69,8 @@ }; &i2c1 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c1_pins>; clock-frequency = <400000>; s35390a: s35390a@30 { @@ -179,6 +181,13 @@ &omap3_pmx_core { + i2c1_pins: pinmux_i2c1_pins { + pinctrl-single,pins = < + OMAP3_CORE1_IOPAD(0x21ba, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */ + OMAP3_CORE1_IOPAD(0x21bc, PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_sda */ + >; + }; + wl12xx_buffer_pins: pinmux_wl12xx_buffer_pins { pinctrl-single,pins = < OMAP3_CORE1_IOPAD(0x2156, PIN_OUTPUT | MUX_MODE4) /* mmc1_dat7.gpio_129 */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am4372.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/am4372.dtsi @@ -250,10 +250,11 @@ ranges = <0x0 0x47810000 0x1000>; mmc3: mmc@0 { - compatible = "ti,omap4-hsmmc"; + compatible = "ti,am437-sdhci"; ti,needs-special-reset; interrupts = ; reg = <0x0 0x1000>; + status = "disabled"; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am437x-cm-t43.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am437x-cm-t43.dts @@ -291,7 +291,7 @@ pinctrl-0 = <&emmc_pins>; vmmc-supply = <&vmmc_3v3>; bus-width = <8>; - ti,non-removable; + non-removable; }; &spi0 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am437x-sk-evm.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am437x-sk-evm.dts @@ -694,7 +694,7 @@ pinctrl-1 = <&mmc3_pins_sleep>; cap-power-off-card; keep-power-in-suspend; - ti,non-removable; + non-removable; #address-cells = <1>; #size-cells = <0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/am57xx-cl-som-am57x.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/am57xx-cl-som-am57x.dts @@ -611,12 +611,11 @@ >; }; -&gpio3 { - status = "okay"; +&gpio3_target { ti,no-reset-on-init; }; -&gpio2 { +&gpio2_target { status = "okay"; ti,no-reset-on-init; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/aspeed-ast2500-evb.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/aspeed-ast2500-evb.dts @@ -5,7 +5,7 @@ / { model = "AST2500 EVB"; - compatible = "aspeed,ast2500"; + compatible = "aspeed,ast2500-evb", "aspeed,ast2500"; aliases { serial4 = &uart5; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/aspeed-ast2600-evb.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/aspeed-ast2600-evb.dts @@ -7,7 +7,7 @@ / { model = "AST2600 EVB"; - compatible = "aspeed,ast2600"; + compatible = "aspeed,ast2600-evb-a1", "aspeed,ast2600"; aliases { serial4 = &uart5; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi @@ -117,11 +117,6 @@ groups = "FWSPID"; }; - pinctrl_fwqspid_default: fwqspid_default { - function = "FWQSPID"; - groups = "FWQSPID"; - }; - pinctrl_fwspiwp_default: fwspiwp_default { function = "FWSPIWP"; groups = "FWSPIWP"; @@ -208,12 +203,12 @@ }; pinctrl_hvi3c3_default: hvi3c3_default { - function = "HVI3C3"; + function = "I3C3"; groups = "HVI3C3"; }; pinctrl_hvi3c4_default: hvi3c4_default { - function = "HVI3C4"; + function = "I3C4"; groups = "HVI3C4"; }; @@ -653,12 +648,12 @@ }; pinctrl_qspi1_default: qspi1_default { - function = "QSPI1"; + function = "SPI1"; groups = "QSPI1"; }; pinctrl_qspi2_default: qspi2_default { - function = "QSPI2"; + function = "SPI2"; groups = "QSPI2"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts @@ -69,7 +69,6 @@ isc: isc@f0008000 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_isc_base &pinctrl_isc_data_8bit &pinctrl_isc_data_9_10 &pinctrl_isc_data_11_12>; - status = "okay"; }; qspi1: spi@f0024000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/at91-tse850-3.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/at91-tse850-3.dts @@ -262,7 +262,7 @@ &macb1 { status = "okay"; - phy-mode = "rgmii"; + phy-mode = "rmii"; #address-cells = <1>; #size-cells = <0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/at91sam9g20ek_common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/at91sam9g20ek_common.dtsi @@ -217,6 +217,12 @@ wm8731: wm8731@1b { compatible = "wm8731"; reg = <0x1b>; + + /* PCK0 at 12MHz */ + clocks = <&pmc PMC_TYPE_SYSTEM 8>; + clock-names = "mclk"; + assigned-clocks = <&pmc PMC_TYPE_SYSTEM 8>; + assigned-clock-rates = <12000000>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm2835-rpi-b.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm2835-rpi-b.dts @@ -53,18 +53,17 @@ "GPIO18", "NC", /* GPIO19 */ "NC", /* GPIO20 */ - "GPIO21", + "CAM_GPIO0", "GPIO22", "GPIO23", "GPIO24", "GPIO25", "NC", /* GPIO26 */ - "CAM_GPIO0", - /* Binary number representing build/revision */ - "CONFIG0", - "CONFIG1", - "CONFIG2", - "CONFIG3", + "GPIO27", + "GPIO28", + "GPIO29", + "GPIO30", + "GPIO31", "NC", /* GPIO32 */ "NC", /* GPIO33 */ "NC", /* GPIO34 */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts @@ -43,7 +43,7 @@ #gpio-cells = <2>; gpio-line-names = "BT_ON", "WL_ON", - "STATUS_LED_R", + "PWR_LED_R", "LAN_RUN", "", "CAM_GPIO0", only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts @@ -63,8 +63,8 @@ "GPIO43", "GPIO44", "GPIO45", - "GPIO46", - "GPIO47", + "SMPS_SCL", + "SMPS_SDA", /* Used by eMMC */ "SD_CLK_R", "SD_CMD_R", only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm2837.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm2837.dtsi @@ -38,12 +38,26 @@ #size-cells = <0>; enable-method = "brcm,bcm2836-smp"; // for ARM 32-bit + /* Source for d/i-cache-line-size and d/i-cache-sets + * https://developer.arm.com/documentation/ddi0500/e/level-1-memory-system + * /about-the-l1-memory-system?lang=en + * + * Source for d/i-cache-size + * https://magpi.raspberrypi.com/articles/raspberry-pi-3-specs-benchmarks + */ cpu0: cpu@0 { device_type = "cpu"; compatible = "arm,cortex-a53"; reg = <0>; enable-method = "spin-table"; cpu-release-addr = <0x0 0x000000d8>; + d-cache-size = <0x8000>; + d-cache-line-size = <64>; + d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set + i-cache-size = <0x8000>; + i-cache-line-size = <64>; + i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set + next-level-cache = <&l2>; }; cpu1: cpu@1 { @@ -52,6 +66,13 @@ reg = <1>; enable-method = "spin-table"; cpu-release-addr = <0x0 0x000000e0>; + d-cache-size = <0x8000>; + d-cache-line-size = <64>; + d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set + i-cache-size = <0x8000>; + i-cache-line-size = <64>; + i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set + next-level-cache = <&l2>; }; cpu2: cpu@2 { @@ -60,6 +81,13 @@ reg = <2>; enable-method = "spin-table"; cpu-release-addr = <0x0 0x000000e8>; + d-cache-size = <0x8000>; + d-cache-line-size = <64>; + d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set + i-cache-size = <0x8000>; + i-cache-line-size = <64>; + i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set + next-level-cache = <&l2>; }; cpu3: cpu@3 { @@ -68,6 +96,27 @@ reg = <3>; enable-method = "spin-table"; cpu-release-addr = <0x0 0x000000f0>; + d-cache-size = <0x8000>; + d-cache-line-size = <64>; + d-cache-sets = <128>; // 32KiB(size)/64(line-size)=512ways/4-way set + i-cache-size = <0x8000>; + i-cache-line-size = <64>; + i-cache-sets = <256>; // 32KiB(size)/64(line-size)=512ways/2-way set + next-level-cache = <&l2>; + }; + + /* Source for cache-line-size + cache-sets + * https://developer.arm.com/documentation/ddi0500 + * /e/level-2-memory-system/about-the-l2-memory-system?lang=en + * Source for cache-size + * https://datasheets.raspberrypi.com/cm/cm1-and-cm3-datasheet.pdf + */ + l2: l2-cache0 { + compatible = "cache"; + cache-size = <0x80000>; + cache-line-size = <64>; + cache-sets = <512>; // 512KiB(size)/64(line-size)=8192ways/16-way set + cache-level = <2>; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm63138.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm63138.dtsi @@ -203,7 +203,7 @@ status = "disabled"; }; - nand: nand@2000 { + nand_controller: nand-controller@2000 { #address-cells = <1>; #size-cells = <0>; compatible = "brcm,nand-bcm63138", "brcm,brcmnand-v7.0", "brcm,brcmnand"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm7445-bcm97445svmb.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm7445-bcm97445svmb.dts @@ -14,10 +14,10 @@ }; }; -&nand { +&nand_controller { status = "okay"; - nandcs@1 { + nand@1 { compatible = "brcm,nandcs"; reg = <1>; nand-ecc-step-size = <512>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm7445.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm7445.dtsi @@ -148,7 +148,7 @@ reg-names = "aon-ctrl", "aon-sram"; }; - nand: nand@3e2800 { + nand_controller: nand-controller@3e2800 { status = "disabled"; #address-cells = <1>; #size-cells = <0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm911360_entphn.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm911360_entphn.dts @@ -82,8 +82,8 @@ status = "okay"; }; -&nand { - nandcs@1 { +&nand_controller { + nand@1 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958300k.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958300k.dts @@ -60,8 +60,8 @@ status = "okay"; }; -&nand { - nandcs@1 { +&nand_controller { + nand@1 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958305k.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958305k.dts @@ -68,8 +68,8 @@ status = "okay"; }; -&nand { - nandcs@1 { +&nand_controller { + nand@1 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958522er.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958522er.dts @@ -70,8 +70,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958525er.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958525er.dts @@ -70,8 +70,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958525xmc.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958525xmc.dts @@ -86,8 +86,8 @@ }; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958622hr.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958622hr.dts @@ -74,8 +74,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958623hr.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958623hr.dts @@ -74,8 +74,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958625hr.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958625hr.dts @@ -90,8 +90,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm958625k.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm958625k.dts @@ -64,8 +64,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm963138dvt.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm963138dvt.dts @@ -31,10 +31,10 @@ status = "okay"; }; -&nand { +&nand_controller { status = "okay"; - nandcs@0 { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-ecc-strength = <4>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/bcm988312hr.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/bcm988312hr.dts @@ -74,8 +74,8 @@ status = "okay"; }; -&nand { - nandcs@0 { +&nand_controller { + nand@0 { compatible = "brcm,nandcs"; reg = <0>; nand-on-flash-bbt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos4412-origen.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos4412-origen.dts @@ -86,7 +86,7 @@ }; &ehci { - samsung,vbus-gpio = <&gpx3 5 1>; + samsung,vbus-gpio = <&gpx3 5 GPIO_ACTIVE_HIGH>; status = "okay"; phys = <&exynos_usbphy 2>, <&exynos_usbphy 3>; phy-names = "hsic0", "hsic1"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos5250-pinctrl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos5250-pinctrl.dtsi @@ -260,7 +260,7 @@ }; uart3_data: uart3-data { - samsung,pins = "gpa1-4", "gpa1-4"; + samsung,pins = "gpa1-4", "gpa1-5"; samsung,pin-function = ; samsung,pin-pud = ; samsung,pin-drv = ; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos5420-smdk5420.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos5420-smdk5420.dts @@ -132,6 +132,9 @@ hpd-gpios = <&gpx3 7 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&hdmi_hpd_irq>; + vdd-supply = <&ldo6_reg>; + vdd_osc-supply = <&ldo7_reg>; + vdd_pll-supply = <&ldo6_reg>; }; &hsi2c_4 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos5422-odroidhc1.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos5422-odroidhc1.dts @@ -22,7 +22,7 @@ label = "blue:heartbeat"; pwms = <&pwm 2 2000000 0>; pwm-names = "pwm2"; - max_brightness = <255>; + max-brightness = <255>; linux,default-trigger = "heartbeat"; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos5422-odroidxu4.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos5422-odroidxu4.dts @@ -24,7 +24,7 @@ label = "blue:heartbeat"; pwms = <&pwm 2 2000000 0>; pwm-names = "pwm2"; - max_brightness = <255>; + max-brightness = <255>; linux,default-trigger = "heartbeat"; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/exynos54xx-odroidxu-leds.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/exynos54xx-odroidxu-leds.dtsi @@ -22,7 +22,7 @@ * Green LED is much brighter than the others * so limit its max brightness */ - max_brightness = <127>; + max-brightness = <127>; linux,default-trigger = "mmc0"; }; @@ -30,7 +30,7 @@ label = "blue:heartbeat"; pwms = <&pwm 2 2000000 0>; pwm-names = "pwm2"; - max_brightness = <255>; + max-brightness = <255>; linux,default-trigger = "heartbeat"; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini-dlink-dns-313.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini-dlink-dns-313.dts @@ -140,7 +140,7 @@ }; }; - mdio0: ethernet-phy { + mdio0: mdio { compatible = "virtual,mdio-gpio"; /* Uses MDC and MDIO */ gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini-nas4220b.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini-nas4220b.dts @@ -62,7 +62,7 @@ }; }; - mdio0: ethernet-phy { + mdio0: mdio { compatible = "virtual,mdio-gpio"; gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */ <&gpio0 21 GPIO_ACTIVE_HIGH>; /* MDIO */ @@ -84,7 +84,7 @@ partitions { compatible = "redboot-fis"; /* Eraseblock at 0xfe0000 */ - fis-index-block = <0x1fc>; + fis-index-block = <0x7f>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini-rut1xx.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini-rut1xx.dts @@ -56,7 +56,7 @@ }; }; - mdio0: ethernet-phy { + mdio0: mdio { compatible = "virtual,mdio-gpio"; gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */ <&gpio0 21 GPIO_ACTIVE_HIGH>; /* MDIO */ @@ -114,18 +114,6 @@ }; ethernet@60000000 { - status = "okay"; - - ethernet-port@0 { - phy-mode = "rgmii"; - phy-handle = <&phy0>; - }; - ethernet-port@1 { - /* Not used in this platform */ - }; - }; - - ethernet@60000000 { status = "okay"; ethernet-port@0 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini-wbd111.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini-wbd111.dts @@ -68,7 +68,7 @@ }; }; - mdio0: ethernet-phy { + mdio0: mdio { compatible = "virtual,mdio-gpio"; gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */ <&gpio0 21 GPIO_ACTIVE_HIGH>; /* MDIO */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini-wbd222.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini-wbd222.dts @@ -67,7 +67,7 @@ }; }; - mdio0: ethernet-phy { + mdio0: mdio { compatible = "virtual,mdio-gpio"; gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */ <&gpio0 21 GPIO_ACTIVE_HIGH>; /* MDIO */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/gemini.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/gemini.dtsi @@ -286,6 +286,7 @@ clock-names = "PCLK", "PCICLK"; pinctrl-names = "default"; pinctrl-0 = <&pci_default_pins>; + device_type = "pci"; #address-cells = <3>; #size-cells = <2>; #interrupt-cells = <1>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx23-evk.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx23-evk.dts @@ -79,7 +79,6 @@ MX23_PAD_LCD_RESET__GPIO_1_18 MX23_PAD_PWM3__GPIO_1_29 MX23_PAD_PWM4__GPIO_1_30 - MX23_PAD_SSP1_DETECT__SSP1_DETECT >; fsl,drive-strength = ; fsl,voltage = ; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx53-m53menlo.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx53-m53menlo.dts @@ -53,14 +53,40 @@ }; }; + lvds-decoder { + compatible = "ti,ds90cf364a", "lvds-decoder"; + + ports { + #address-cells = <1>; + #size-cells = <0>; + + port@0 { + reg = <0>; + + lvds_decoder_in: endpoint { + remote-endpoint = <&lvds0_out>; + }; + }; + + port@1 { + reg = <1>; + + lvds_decoder_out: endpoint { + remote-endpoint = <&panel_in>; + }; + }; + }; + }; + panel { compatible = "edt,etm0700g0dh6"; pinctrl-0 = <&pinctrl_display_gpio>; + pinctrl-names = "default"; enable-gpios = <&gpio6 0 GPIO_ACTIVE_HIGH>; port { panel_in: endpoint { - remote-endpoint = <&lvds0_out>; + remote-endpoint = <&lvds_decoder_out>; }; }; }; @@ -76,8 +102,7 @@ regulator-name = "vbus"; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; - gpio = <&gpio1 2 GPIO_ACTIVE_HIGH>; - enable-active-high; + gpio = <&gpio1 2 0>; }; }; @@ -388,13 +413,13 @@ pinctrl_power_button: powerbutgrp { fsl,pins = < - MX53_PAD_SD2_DATA2__GPIO1_13 0x1e4 + MX53_PAD_SD2_DATA0__GPIO1_15 0x1e4 >; }; pinctrl_power_out: poweroutgrp { fsl,pins = < - MX53_PAD_SD2_DATA0__GPIO1_15 0x1e4 + MX53_PAD_SD2_DATA2__GPIO1_13 0x1e4 >; }; @@ -450,7 +475,7 @@ reg = <2>; lvds0_out: endpoint { - remote-endpoint = <&panel_in>; + remote-endpoint = <&lvds_decoder_in>; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx53-ppd.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx53-ppd.dts @@ -70,6 +70,12 @@ clock-frequency = <11289600>; }; + achc_24M: achc-clock { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <24000000>; + }; + sgtlsound: sound { compatible = "fsl,imx53-cpuvo-sgtl5000", "fsl,imx-audio-sgtl5000"; @@ -287,16 +293,13 @@ &gpio4 12 GPIO_ACTIVE_LOW>; status = "okay"; - spidev0: spi@0 { - compatible = "ge,achc"; - reg = <0>; - spi-max-frequency = <1000000>; - }; - - spidev1: spi@1 { - compatible = "ge,achc"; - reg = <1>; - spi-max-frequency = <1000000>; + spidev0: spi@1 { + compatible = "ge,achc", "nxp,kinetis-k20"; + reg = <1>, <0>; + vdd-supply = <®_3v3>; + vdda-supply = <®_3v3>; + clocks = <&achc_24M>; + reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>; }; gpioxra0: gpio@2 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6dl-yapp4-common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6dl-yapp4-common.dtsi @@ -99,9 +99,13 @@ phy-reset-gpios = <&gpio1 25 GPIO_ACTIVE_LOW>; phy-reset-duration = <20>; phy-supply = <&sw2_reg>; - phy-handle = <ðphy0>; status = "okay"; + fixed-link { + speed = <1000>; + full-duplex; + }; + mdio { #address-cells = <1>; #size-cells = <0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6dl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6dl.dtsi @@ -81,6 +81,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6q.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6q.dtsi @@ -158,6 +158,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x40000>; + ranges = <0 0x00900000 0x40000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6QDL_CLK_OCRAM>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6qdl-apalis.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-apalis.dtsi @@ -314,6 +314,8 @@ codec: sgtl5000@a { compatible = "fsl,sgtl5000"; reg = <0x0a>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_sgtl5000>; clocks = <&clks IMX6QDL_CLK_CKO>; VDDA-supply = <®_module_3v3_audio>; VDDIO-supply = <®_module_3v3>; @@ -543,8 +545,6 @@ MX6QDL_PAD_DISP0_DAT21__AUD4_TXD 0x130b0 MX6QDL_PAD_DISP0_DAT22__AUD4_TXFS 0x130b0 MX6QDL_PAD_DISP0_DAT23__AUD4_RXD 0x130b0 - /* SGTL5000 sys_mclk */ - MX6QDL_PAD_GPIO_5__CCM_CLKO1 0x130b0 >; }; @@ -810,6 +810,12 @@ >; }; + pinctrl_sgtl5000: sgtl5000grp { + fsl,pins = < + MX6QDL_PAD_GPIO_5__CCM_CLKO1 0x130b0 + >; + }; + pinctrl_spdif: spdifgrp { fsl,pins = < MX6QDL_PAD_GPIO_16__SPDIF_IN 0x1b0b0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6qdl-emcon-avari.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-emcon-avari.dtsi @@ -126,7 +126,7 @@ compatible = "nxp,pca8574"; reg = <0x3a>; gpio-controller; - #gpio-cells = <1>; + #gpio-cells = <2>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6qdl-sr-som.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-sr-som.dtsi @@ -54,7 +54,13 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_microsom_enet_ar8035>; phy-mode = "rgmii-id"; - phy-reset-duration = <2>; + + /* + * The PHY seems to require a long-enough reset duration to avoid + * some rare issues where the PHY gets stuck in an inconsistent and + * non-functional state at boot-up. 10ms proved to be fine . + */ + phy-reset-duration = <10>; phy-reset-gpios = <&gpio4 15 GPIO_ACTIVE_LOW>; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6qdl-ts7970.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6qdl-ts7970.dtsi @@ -226,7 +226,7 @@ reg = <0x28>; #gpio-cells = <2>; gpio-controller; - ngpio = <32>; + ngpios = <62>; }; sgtl5000: codec@a { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6sll.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6sll.dtsi @@ -123,6 +123,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; }; intc: interrupt-controller@a01000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6sx.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6sx.dtsi @@ -163,12 +163,18 @@ ocram_s: sram@8f8000 { compatible = "mmio-sram"; reg = <0x008f8000 0x4000>; + ranges = <0 0x008f8000 0x4000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6SX_CLK_OCRAM_S>; }; ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; clocks = <&clks IMX6SX_CLK_OCRAM>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6ul.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6ul.dtsi @@ -62,20 +62,18 @@ clock-frequency = <696000000>; clock-latency = <61036>; /* two CLK32 periods */ #cooling-cells = <2>; - operating-points = < + operating-points = /* kHz uV */ - 696000 1275000 - 528000 1175000 - 396000 1025000 - 198000 950000 - >; - fsl,soc-operating-points = < + <696000 1275000>, + <528000 1175000>, + <396000 1025000>, + <198000 950000>; + fsl,soc-operating-points = /* KHz uV */ - 696000 1275000 - 528000 1175000 - 396000 1175000 - 198000 1175000 - >; + <696000 1275000>, + <528000 1175000>, + <396000 1175000>, + <198000 1175000>; clocks = <&clks IMX6UL_CLK_ARM>, <&clks IMX6UL_CLK_PLL2_BUS>, <&clks IMX6UL_CLK_PLL2_PFD2>, @@ -157,6 +155,9 @@ ocram: sram@900000 { compatible = "mmio-sram"; reg = <0x00900000 0x20000>; + ranges = <0 0x00900000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; }; intc: interrupt-controller@a01000 { @@ -966,7 +967,7 @@ }; csi: csi@21c4000 { - compatible = "fsl,imx6ul-csi", "fsl,imx7-csi"; + compatible = "fsl,imx6ul-csi"; reg = <0x021c4000 0x4000>; interrupts = ; clocks = <&clks IMX6UL_CLK_CSI>; @@ -975,7 +976,7 @@ }; lcdif: lcdif@21c8000 { - compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; + compatible = "fsl,imx6ul-lcdif", "fsl,imx6sx-lcdif"; reg = <0x021c8000 0x4000>; interrupts = ; clocks = <&clks IMX6UL_CLK_LCDIF_PIX>, @@ -996,7 +997,7 @@ qspi: spi@21e0000 { #address-cells = <1>; #size-cells = <0>; - compatible = "fsl,imx6ul-qspi", "fsl,imx6sx-qspi"; + compatible = "fsl,imx6ul-qspi"; reg = <0x021e0000 0x4000>, <0x60000000 0x10000000>; reg-names = "QuadSPI", "QuadSPI-memory"; interrupts = ; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6ull-colibri-wifi.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6ull-colibri-wifi.dtsi @@ -43,6 +43,7 @@ assigned-clock-rates = <0>, <198000000>; cap-power-off-card; keep-power-in-suspend; + max-frequency = <25000000>; mmc-pwrseq = <&wifi_pwrseq>; no-1-8-v; non-removable; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6ull-colibri.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6ull-colibri.dtsi @@ -37,7 +37,7 @@ reg_sd1_vmmc: regulator-sd1-vmmc { compatible = "regulator-gpio"; - gpio = <&gpio5 9 GPIO_ACTIVE_HIGH>; + gpios = <&gpio5 9 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_snvs_reg_sd>; regulator-always-on; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx6ull-pinfunc.h +++ linux-azure-5.4.0/arch/arm/boot/dts/imx6ull-pinfunc.h @@ -82,6 +82,6 @@ #define MX6ULL_PAD_CSI_DATA04__ESAI_TX_FS 0x01F4 0x0480 0x0000 0x9 0x0 #define MX6ULL_PAD_CSI_DATA05__ESAI_TX_CLK 0x01F8 0x0484 0x0000 0x9 0x0 #define MX6ULL_PAD_CSI_DATA06__ESAI_TX5_RX0 0x01FC 0x0488 0x0000 0x9 0x0 -#define MX6ULL_PAD_CSI_DATA07__ESAI_T0 0x0200 0x048C 0x0000 0x9 0x0 +#define MX6ULL_PAD_CSI_DATA07__ESAI_TX0 0x0200 0x048C 0x0000 0x9 0x0 #endif /* __DTS_IMX6ULL_PINFUNC_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7-mba7.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7-mba7.dtsi @@ -250,7 +250,7 @@ tlv320aic32x4: audio-codec@18 { compatible = "ti,tlv320aic32x4"; reg = <0x18>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; clock-names = "mclk"; ldoin-supply = <®_audio_3v3>; iov-supply = <®_audio_3v3>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-meerkat96.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-meerkat96.dts @@ -193,7 +193,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_usdhc1>; keep-power-in-suspend; - tuning-step = <2>; + fsl,tuning-step = <2>; vmmc-supply = <®_3p3v>; no-1-8-v; broken-cd; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-nitrogen7.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-nitrogen7.dts @@ -284,7 +284,7 @@ codec: wm8960@1a { compatible = "wlf,wm8960"; reg = <0x1a>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; clock-names = "mclk"; wlf,shared-lrclk; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-pico-hobbit.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-pico-hobbit.dts @@ -31,7 +31,7 @@ dailink_master: simple-audio-card,codec { sound-dai = <&sgtl5000>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; }; }; }; @@ -41,7 +41,7 @@ #sound-dai-cells = <0>; reg = <0x0a>; compatible = "fsl,sgtl5000"; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; VDDA-supply = <®_2p5v>; VDDIO-supply = <®_vref_1v8>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-pico-pi.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-pico-pi.dts @@ -31,7 +31,7 @@ dailink_master: simple-audio-card,codec { sound-dai = <&sgtl5000>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; }; }; }; @@ -41,7 +41,7 @@ #sound-dai-cells = <0>; reg = <0x0a>; compatible = "fsl,sgtl5000"; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; VDDA-supply = <®_2p5v>; VDDIO-supply = <®_vref_1v8>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-pico.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-pico.dtsi @@ -307,7 +307,7 @@ pinctrl-2 = <&pinctrl_usdhc1_200mhz>; cd-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>; bus-width = <4>; - tuning-step = <2>; + fsl,tuning-step = <2>; vmmc-supply = <®_3p3v>; wakeup-source; no-1-8-v; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7d-sdb.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7d-sdb.dts @@ -177,12 +177,7 @@ interrupt-parent = <&gpio2>; interrupts = <29 0>; pendown-gpio = <&gpio2 29 GPIO_ACTIVE_HIGH>; - ti,x-min = /bits/ 16 <0>; - ti,x-max = /bits/ 16 <0>; - ti,y-min = /bits/ 16 <0>; - ti,y-max = /bits/ 16 <0>; - ti,pressure-max = /bits/ 16 <0>; - ti,x-plate-ohms = /bits/ 16 <400>; + touchscreen-max-pressure = <255>; wakeup-source; }; }; @@ -356,7 +351,7 @@ codec: wm8960@1a { compatible = "wlf,wm8960"; reg = <0x1a>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; clock-names = "mclk"; wlf,shared-lrclk; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/imx7s-warp.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/imx7s-warp.dts @@ -75,7 +75,7 @@ dailink_master: simple-audio-card,codec { sound-dai = <&codec>; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; }; }; }; @@ -232,7 +232,7 @@ #sound-dai-cells = <0>; reg = <0x0a>; compatible = "fsl,sgtl5000"; - clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_CLK>; + clocks = <&clks IMX7D_AUDIO_MCLK_ROOT_DIV>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_sai1_mclk>; VDDA-supply = <&vgen4_reg>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/integratorap.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/integratorap.dts @@ -155,6 +155,7 @@ pci: pciv3@62000000 { compatible = "arm,integrator-ap-pci", "v3,v360epc-pci"; + device_type = "pci"; #interrupt-cells = <1>; #size-cells = <2>; #address-cells = <3>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/kirkwood-lsxl.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/kirkwood-lsxl.dtsi @@ -10,6 +10,11 @@ ocp@f1000000 { pinctrl: pin-controller@10000 { + /* Non-default UART pins */ + pmx_uart0: pmx-uart0 { + marvell,pins = "mpp4", "mpp5"; + }; + pmx_power_hdd: pmx-power-hdd { marvell,pins = "mpp10"; marvell,function = "gpo"; @@ -213,22 +218,11 @@ &mdio { status = "okay"; - ethphy0: ethernet-phy@0 { - reg = <0>; - }; - ethphy1: ethernet-phy@8 { reg = <8>; }; }; -ð0 { - status = "okay"; - ethernet0-port@0 { - phy-handle = <ðphy0>; - }; -}; - ð1 { status = "okay"; ethernet1-port@0 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts @@ -11,3 +11,18 @@ model = "LogicPD Zoom OMAP35xx SOM-LV Development Kit"; compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3"; }; + +&omap3_pmx_core2 { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb2_2_pins>; + hsusb2_2_pins: pinmux_hsusb2_2_pins { + pinctrl-single,pins = < + OMAP3430_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ + OMAP3430_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ + OMAP3430_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ + OMAP3430_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ + OMAP3430_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ + OMAP3430_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ + >; + }; +}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts @@ -11,3 +11,18 @@ model = "LogicPD Zoom DM3730 SOM-LV Development Kit"; compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3630", "ti,omap3"; }; + +&omap3_pmx_core2 { + pinctrl-names = "default"; + pinctrl-0 = <&hsusb2_2_pins>; + hsusb2_2_pins: pinmux_hsusb2_2_pins { + pinctrl-single,pins = < + OMAP3630_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ + OMAP3630_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ + OMAP3630_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ + OMAP3630_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ + OMAP3630_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ + OMAP3630_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ + >; + }; +}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/logicpd-som-lv.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/logicpd-som-lv.dtsi @@ -265,21 +265,6 @@ }; }; -&omap3_pmx_core2 { - pinctrl-names = "default"; - pinctrl-0 = <&hsusb2_2_pins>; - hsusb2_2_pins: pinmux_hsusb2_2_pins { - pinctrl-single,pins = < - OMAP3630_CORE2_IOPAD(0x25f0, PIN_OUTPUT | MUX_MODE3) /* etk_d10.hsusb2_clk */ - OMAP3630_CORE2_IOPAD(0x25f2, PIN_OUTPUT | MUX_MODE3) /* etk_d11.hsusb2_stp */ - OMAP3630_CORE2_IOPAD(0x25f4, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d12.hsusb2_dir */ - OMAP3630_CORE2_IOPAD(0x25f6, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d13.hsusb2_nxt */ - OMAP3630_CORE2_IOPAD(0x25f8, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d14.hsusb2_data0 */ - OMAP3630_CORE2_IOPAD(0x25fa, PIN_INPUT_PULLDOWN | MUX_MODE3) /* etk_d15.hsusb2_data1 */ - >; - }; -}; - &uart2 { interrupts-extended = <&intc 73 &omap3_pmx_core OMAP3_UART2_RX>; pinctrl-names = "default"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/ls1021a-tsn.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/ls1021a-tsn.dts @@ -247,7 +247,7 @@ flash@0 { /* Rev. A uses 64MB flash, Rev. B & C use 32MB flash */ - compatible = "jedec,spi-nor", "s25fl256s1", "s25fl512s"; + compatible = "jedec,spi-nor"; spi-max-frequency = <20000000>; #address-cells = <1>; #size-cells = <1>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/meson.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/meson.dtsi @@ -49,14 +49,14 @@ }; uart_A: serial@84c0 { - compatible = "amlogic,meson6-uart", "amlogic,meson-uart"; + compatible = "amlogic,meson6-uart"; reg = <0x84c0 0x18>; interrupts = ; status = "disabled"; }; uart_B: serial@84dc { - compatible = "amlogic,meson6-uart", "amlogic,meson-uart"; + compatible = "amlogic,meson6-uart"; reg = <0x84dc 0x18>; interrupts = ; status = "disabled"; @@ -94,7 +94,7 @@ }; uart_C: serial@8700 { - compatible = "amlogic,meson6-uart", "amlogic,meson-uart"; + compatible = "amlogic,meson6-uart"; reg = <0x8700 0x18>; interrupts = ; status = "disabled"; @@ -196,7 +196,7 @@ }; uart_AO: serial@4c0 { - compatible = "amlogic,meson6-uart", "amlogic,meson-ao-uart", "amlogic,meson-uart"; + compatible = "amlogic,meson6-uart", "amlogic,meson-ao-uart"; reg = <0x4c0 0x18>; interrupts = ; status = "disabled"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/meson8b-ec100.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/meson8b-ec100.dts @@ -148,7 +148,7 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; - vin-supply = <&vcc_5v>; + pwm-supply = <&vcc_5v>; pwms = <&pwm_cd 0 1148 0>; pwm-dutycycle-range = <100 0>; @@ -232,7 +232,7 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; - vin-supply = <&vcc_5v>; + pwm-supply = <&vcc_5v>; pwms = <&pwm_cd 1 1148 0>; pwm-dutycycle-range = <100 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/meson8b-mxq.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/meson8b-mxq.dts @@ -39,6 +39,8 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; + pwm-supply = <&vcc_5v>; + pwms = <&pwm_cd 0 1148 0>; pwm-dutycycle-range = <100 0>; @@ -84,7 +86,7 @@ regulator-min-microvolt = <860000>; regulator-max-microvolt = <1140000>; - vin-supply = <&vcc_5v>; + pwm-supply = <&vcc_5v>; pwms = <&pwm_cd 1 1148 0>; pwm-dutycycle-range = <100 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/moxart-uc7112lx.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/moxart-uc7112lx.dts @@ -79,7 +79,7 @@ clocks = <&ref12>; }; -&sdhci { +&mmc { status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/moxart.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/moxart.dtsi @@ -93,8 +93,8 @@ clock-names = "PCLK"; }; - sdhci: sdhci@98e00000 { - compatible = "moxa,moxart-sdhci"; + mmc: mmc@98e00000 { + compatible = "moxa,moxart-mmc"; reg = <0x98e00000 0x5C>; interrupts = <5 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clk_apb>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi @@ -29,7 +29,7 @@ compatible = "smsc,lan9221","smsc,lan9115"; bank-width = <2>; - gpmc,mux-add-data; + gpmc,mux-add-data = <0>; gpmc,cs-on-ns = <0>; gpmc,cs-rd-off-ns = <42>; gpmc,cs-wr-off-ns = <36>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/omap3-gta04.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/omap3-gta04.dtsi @@ -31,6 +31,8 @@ aliases { display0 = &lcd; display1 = &tv0; + /delete-property/ mmc2; + /delete-property/ mmc3; }; ldo_3v3: fixedregulator { @@ -515,7 +517,7 @@ compatible = "bosch,bma180"; reg = <0x41>; pinctrl-names = "default"; - pintcrl-0 = <&bma180_pins>; + pinctrl-0 = <&bma180_pins>; interrupt-parent = <&gpio4>; interrupts = <19 IRQ_TYPE_LEVEL_HIGH>; /* GPIO_115 */ }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/omap3-overo-tobiduo-common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/omap3-overo-tobiduo-common.dtsi @@ -22,7 +22,7 @@ compatible = "smsc,lan9221","smsc,lan9115"; bank-width = <2>; - gpmc,mux-add-data; + gpmc,mux-add-data = <0>; gpmc,cs-on-ns = <0>; gpmc,cs-rd-off-ns = <42>; gpmc,cs-wr-off-ns = <36>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/omap3430-sdp.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/omap3430-sdp.dts @@ -101,7 +101,7 @@ nand@1,0 { compatible = "ti,omap2-nand"; - reg = <0 0 4>; /* CS0, offset 0, IO size 4 */ + reg = <1 0 4>; /* CS1, offset 0, IO size 4 */ interrupt-parent = <&gpmc>; interrupts = <0 IRQ_TYPE_NONE>, /* fifoevent */ <1 IRQ_TYPE_NONE>; /* termcount */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/omap5-board-common.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/omap5-board-common.dtsi @@ -30,14 +30,6 @@ regulator-max-microvolt = <5000000>; }; - vdds_1v8_main: fixedregulator-vdds_1v8_main { - compatible = "regulator-fixed"; - regulator-name = "vdds_1v8_main"; - vin-supply = <&smps7_reg>; - regulator-min-microvolt = <1800000>; - regulator-max-microvolt = <1800000>; - }; - vmmcsd_fixed: fixedregulator-mmcsd { compatible = "regulator-fixed"; regulator-name = "vmmcsd_fixed"; @@ -487,6 +479,7 @@ regulator-boot-on; }; + vdds_1v8_main: smps7_reg: smps7 { /* VDDS_1v8_OMAP over VDDS_1v8_MAIN */ regulator-name = "smps7"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-apq8064.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-apq8064.dtsi @@ -198,7 +198,7 @@ clock-frequency = <19200000>; }; - pxo_board { + pxo_board: pxo_board { compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <27000000>; @@ -1147,7 +1147,7 @@ }; gpu: adreno-3xx@4300000 { - compatible = "qcom,adreno-3xx"; + compatible = "qcom,adreno-320.2", "qcom,adreno"; reg = <0x04300000 0x20000>; reg-names = "kgsl_3d0_reg_memory"; interrupts = ; @@ -1162,7 +1162,6 @@ <&mmcc GFX3D_AHB_CLK>, <&mmcc GFX3D_AXI_CLK>, <&mmcc MMSS_IMEM_AHB_CLK>; - qcom,chipid = <0x03020002>; iommus = <&gfx3d 0 &gfx3d 1 @@ -1261,9 +1260,9 @@ <&mmcc DSI1_BYTE_CLK>, <&mmcc DSI_PIXEL_CLK>, <&mmcc DSI1_ESC_CLK>; - clock-names = "iface_clk", "bus_clk", "core_mmss_clk", - "src_clk", "byte_clk", "pixel_clk", - "core_clk"; + clock-names = "iface", "bus", "core_mmss", + "src", "byte", "pixel", + "core"; assigned-clocks = <&mmcc DSI1_BYTE_SRC>, <&mmcc DSI1_ESC_SRC>, @@ -1305,7 +1304,7 @@ reg-names = "dsi_pll", "dsi_phy", "dsi_phy_regulator"; clock-names = "iface_clk", "ref"; clocks = <&mmcc DSI_M_AHB_CLK>, - <&cxo_board>; + <&pxo_board>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-ipq4019.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-ipq4019.dtsi @@ -141,7 +141,8 @@ clocks { sleep_clk: sleep_clk { compatible = "fixed-clock"; - clock-frequency = <32768>; + clock-frequency = <32000>; + clock-output-names = "gcc_sleep_clk_src"; #clock-cells = <0>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-mdm9615.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-mdm9615.dtsi @@ -323,6 +323,7 @@ pmicgpio: gpio@150 { compatible = "qcom,pm8018-gpio", "qcom,ssbi-gpio"; + reg = <0x150>; interrupt-controller; #interrupt-cells = <2>; gpio-controller; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-msm8960.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-msm8960.dtsi @@ -145,7 +145,9 @@ reg = <0x108000 0x1000>; qcom,ipc = <&l2cc 0x8 2>; - interrupts = <0 19 0>, <0 21 0>, <0 22 0>; + interrupts = , + , + ; interrupt-names = "ack", "err", "wakeup"; regulators { @@ -191,7 +193,7 @@ compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm"; reg = <0x16440000 0x1000>, <0x16400000 0x1000>; - interrupts = <0 154 0x0>; + interrupts = ; clocks = <&gcc GSBI5_UART_CLK>, <&gcc GSBI5_H_CLK>; clock-names = "core", "iface"; status = "disabled"; @@ -317,7 +319,7 @@ #address-cells = <1>; #size-cells = <0>; reg = <0x16080000 0x1000>; - interrupts = <0 147 0>; + interrupts = ; spi-max-frequency = <24000000>; cs-gpios = <&msmgpio 8 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-msm8974.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-msm8974.dtsi @@ -1213,8 +1213,8 @@ #phy-cells = <0>; qcom,dsi-phy-index = <0>; - clocks = <&mmcc MDSS_AHB_CLK>; - clock-names = "iface"; + clocks = <&mmcc MDSS_AHB_CLK>, <&xo_board>; + clock-names = "iface", "ref"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/qcom-pm8841.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/qcom-pm8841.dtsi @@ -25,6 +25,7 @@ compatible = "qcom,spmi-temp-alarm"; reg = <0x2400>; interrupts = <4 0x24 0 IRQ_TYPE_EDGE_RISING>; + #thermal-sensor-cells = <0>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/r8a7779-marzen.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/r8a7779-marzen.dts @@ -146,7 +146,7 @@ status = "okay"; clocks = <&mstp1_clks R8A7779_CLK_DU>, <&x3_clk>; - clock-names = "du", "dclkin.0"; + clock-names = "du.0", "dclkin.0"; ports { port@0 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3036-kylin.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3036-kylin.dts @@ -390,7 +390,7 @@ }; }; - sleep { + suspend { global_pwroff: global-pwroff { rockchip,pins = <2 RK_PA7 1 &pcfg_pull_none>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3066a.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3066a.dtsi @@ -761,7 +761,7 @@ #address-cells = <1>; #size-cells = <0>; - pd_vio@RK3066_PD_VIO { + power-domain@RK3066_PD_VIO { reg = ; clocks = <&cru ACLK_LCDC0>, <&cru ACLK_LCDC1>, @@ -788,7 +788,7 @@ <&qos_rga>; }; - pd_video@RK3066_PD_VIDEO { + power-domain@RK3066_PD_VIDEO { reg = ; clocks = <&cru ACLK_VDPU>, <&cru ACLK_VEPU>, @@ -797,7 +797,7 @@ pm_qos = <&qos_vpu>; }; - pd_gpu@RK3066_PD_GPU { + power-domain@RK3066_PD_GPU { reg = ; clocks = <&cru ACLK_GPU>; pm_qos = <&qos_gpu>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3188.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3188.dtsi @@ -150,16 +150,16 @@ compatible = "rockchip,rk3188-timer", "rockchip,rk3288-timer"; reg = <0x2000e000 0x20>; interrupts = ; - clocks = <&cru SCLK_TIMER3>, <&cru PCLK_TIMER3>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER3>, <&cru SCLK_TIMER3>; + clock-names = "pclk", "timer"; }; timer6: timer@200380a0 { compatible = "rockchip,rk3188-timer", "rockchip,rk3288-timer"; reg = <0x200380a0 0x20>; interrupts = ; - clocks = <&cru SCLK_TIMER6>, <&cru PCLK_TIMER0>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER0>, <&cru SCLK_TIMER6>; + clock-names = "pclk", "timer"; }; i2s0: i2s@1011a000 { @@ -701,7 +701,7 @@ #address-cells = <1>; #size-cells = <0>; - pd_vio@RK3188_PD_VIO { + power-domain@RK3188_PD_VIO { reg = ; clocks = <&cru ACLK_LCDC0>, <&cru ACLK_LCDC1>, @@ -723,7 +723,7 @@ <&qos_rga>; }; - pd_video@RK3188_PD_VIDEO { + power-domain@RK3188_PD_VIDEO { reg = ; clocks = <&cru ACLK_VDPU>, <&cru ACLK_VEPU>, @@ -732,7 +732,7 @@ pm_qos = <&qos_vpu>; }; - pd_gpu@RK3188_PD_GPU { + power-domain@RK3188_PD_GPU { reg = ; clocks = <&cru ACLK_GPU>; pm_qos = <&qos_gpu>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3288-rock2-som.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3288-rock2-som.dtsi @@ -218,7 +218,7 @@ flash0-supply = <&vcc_flash>; flash1-supply = <&vccio_pmu>; gpio30-supply = <&vccio_pmu>; - gpio1830 = <&vcc_io>; + gpio1830-supply = <&vcc_io>; lcdc-supply = <&vcc_io>; sdcard-supply = <&vccio_sd>; wifi-supply = <&vcc_18>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3288-vyasa.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3288-vyasa.dts @@ -357,10 +357,10 @@ audio-supply = <&vcc_18>; bb-supply = <&vcc_io>; dvp-supply = <&vcc_io>; - flash0-suuply = <&vcc_18>; + flash0-supply = <&vcc_18>; flash1-supply = <&vcc_lan>; gpio30-supply = <&vcc_io>; - gpio1830 = <&vcc_io>; + gpio1830-supply = <&vcc_io>; lcdc-supply = <&vcc_io>; sdcard-supply = <&vccio_sd>; wifi-supply = <&vcc_18>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/rk3288.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/rk3288.dtsi @@ -238,8 +238,8 @@ compatible = "rockchip,rk3288-timer"; reg = <0x0 0xff810000 0x0 0x20>; interrupts = ; - clocks = <&xin24m>, <&cru PCLK_TIMER>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER>, <&xin24m>; + clock-names = "pclk", "timer"; }; display-subsystem { @@ -771,7 +771,7 @@ * *_HDMI HDMI * *_MIPI_* MIPI */ - pd_vio@RK3288_PD_VIO { + power-domain@RK3288_PD_VIO { reg = ; clocks = <&cru ACLK_IEP>, <&cru ACLK_ISP>, @@ -813,7 +813,7 @@ * Note: The following 3 are HEVC(H.265) clocks, * and on the ACLK_HEVC_NIU (NOC). */ - pd_hevc@RK3288_PD_HEVC { + power-domain@RK3288_PD_HEVC { reg = ; clocks = <&cru ACLK_HEVC>, <&cru SCLK_HEVC_CABAC>, @@ -827,7 +827,7 @@ * (video endecoder & decoder) clocks that on the * ACLK_VCODEC_NIU and HCLK_VCODEC_NIU (NOC). */ - pd_video@RK3288_PD_VIDEO { + power-domain@RK3288_PD_VIDEO { reg = ; clocks = <&cru ACLK_VCODEC>, <&cru HCLK_VCODEC>; @@ -838,7 +838,7 @@ * Note: ACLK_GPU is the GPU clock, * and on the ACLK_GPU_NIU (NOC). */ - pd_gpu@RK3288_PD_GPU { + power-domain@RK3288_PD_GPU { reg = ; clocks = <&cru ACLK_GPU>; pm_qos = <&qos_gpu_r>, @@ -975,7 +975,7 @@ status = "disabled"; }; - crypto: cypto-controller@ff8a0000 { + crypto: crypto@ff8a0000 { compatible = "rockchip,rk3288-crypto"; reg = <0x0 0xff8a0000 0x0 0x4000>; interrupts = ; @@ -1575,7 +1575,7 @@ drive-strength = <12>; }; - sleep { + suspend { global_pwroff: global-pwroff { rockchip,pins = <0 RK_PA0 1 &pcfg_pull_none>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/sama5d4.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/sama5d4.dtsi @@ -914,7 +914,7 @@ 0xffffffff 0x3ffcfe7c 0x1c010101 /* pioA */ 0x7fffffff 0xfffccc3a 0x3f00cc3a /* pioB */ 0xffffffff 0x3ff83fff 0xff00ffff /* pioC */ - 0x0003ff00 0x8002a800 0x00000000 /* pioD */ + 0xb003ff00 0x8002a800 0x00000000 /* pioD */ 0xffffffff 0x7fffffff 0x76fff1bf /* pioE */ >; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_arria10_socdk_qspi.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_arria10_socdk_qspi.dts @@ -12,7 +12,7 @@ flash0: n25q00@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q00aa"; + compatible = "micron,mt25qu02g", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <100000000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_arria5_socdk.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_arria5_socdk.dts @@ -119,7 +119,7 @@ flash: flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q256a"; + compatible = "micron,n25q256a", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <100000000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_cyclone5_socdk.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_cyclone5_socdk.dts @@ -124,7 +124,7 @@ flash0: n25q00@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q00"; + compatible = "micron,mt25qu02g", "jedec,spi-nor"; reg = <0>; /* chip select */ spi-max-frequency = <100000000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_cyclone5_sockit.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_cyclone5_sockit.dts @@ -169,7 +169,7 @@ flash: flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q00"; + compatible = "micron,mt25qu02g", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <100000000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts @@ -80,7 +80,7 @@ flash: flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q256a"; + compatible = "micron,n25q256a", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <100000000>; m25p,fast-read; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_cyclone5_sodia.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_cyclone5_sodia.dts @@ -116,7 +116,7 @@ flash0: n25q512a@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q512a"; + compatible = "micron,n25q512a", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <100000000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts @@ -224,7 +224,7 @@ n25q128@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q128"; + compatible = "micron,n25q128", "jedec,spi-nor"; reg = <0>; /* chip select */ spi-max-frequency = <100000000>; m25p,fast-read; @@ -241,7 +241,7 @@ n25q00@1 { #address-cells = <1>; #size-cells = <1>; - compatible = "n25q00"; + compatible = "micron,mt25qu02g", "jedec,spi-nor"; reg = <1>; /* chip select */ spi-max-frequency = <100000000>; m25p,fast-read; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/spear1340.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/spear1340.dtsi @@ -136,9 +136,9 @@ reg = <0xb4100000 0x1000>; interrupts = <0 105 0x4>; status = "disabled"; - dmas = <&dwdma0 12 0 1>, - <&dwdma0 13 1 0>; - dma-names = "tx", "rx"; + dmas = <&dwdma0 13 0 1>, + <&dwdma0 12 1 0>; + dma-names = "rx", "tx"; }; thermal@e07008c4 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/spear13xx.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/spear13xx.dtsi @@ -284,9 +284,9 @@ #size-cells = <0>; interrupts = <0 31 0x4>; status = "disabled"; - dmas = <&dwdma0 4 0 0>, - <&dwdma0 5 0 0>; - dma-names = "tx", "rx"; + dmas = <&dwdma0 5 0 0>, + <&dwdma0 4 0 0>; + dma-names = "rx", "tx"; }; rtc@e0580000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/spear3xx.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/spear3xx.dtsi @@ -47,7 +47,7 @@ }; gmac: eth@e0800000 { - compatible = "st,spear600-gmac"; + compatible = "snps,dwmac-3.40a"; reg = <0xe0800000 0x8000>; interrupts = <23 22>; interrupt-names = "macirq", "eth_wake_irq"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi @@ -755,14 +755,14 @@ status = "disabled"; }; - vica: intc@10140000 { + vica: interrupt-controller@10140000 { compatible = "arm,versatile-vic"; interrupt-controller; #interrupt-cells = <1>; reg = <0x10140000 0x20>; }; - vicb: intc@10140020 { + vicb: interrupt-controller@10140020 { compatible = "arm,versatile-vic"; interrupt-controller; #interrupt-cells = <1>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32429i-eval.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32429i-eval.dts @@ -112,17 +112,15 @@ }; }; - gpio_keys { + gpio-keys { compatible = "gpio-keys"; - #address-cells = <1>; - #size-cells = <0>; autorepeat; - button@0 { + button-0 { label = "Wake up"; linux,code = ; gpios = <&gpioa 0 0>; }; - button@1 { + button-1 { label = "Tamper"; linux,code = ; gpios = <&gpioc 13 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32746g-eval.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32746g-eval.dts @@ -81,12 +81,10 @@ }; }; - gpio_keys { + gpio-keys { compatible = "gpio-keys"; - #address-cells = <1>; - #size-cells = <0>; autorepeat; - button@0 { + button-0 { label = "Wake up"; linux,code = ; gpios = <&gpioc 13 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32f429-disco.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32f429-disco.dts @@ -79,12 +79,10 @@ }; }; - gpio_keys { + gpio-keys { compatible = "gpio-keys"; - #address-cells = <1>; - #size-cells = <0>; autorepeat; - button@0 { + button-0 { label = "User"; linux,code = ; gpios = <&gpioa 0 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32f429.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32f429.dtsi @@ -283,8 +283,6 @@ }; timers13: timers@40001c00 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40001C00 0x400>; clocks = <&rcc 0 STM32F4_APB1_CLOCK(TIM13)>; @@ -299,8 +297,6 @@ }; timers14: timers@40002000 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40002000 0x400>; clocks = <&rcc 0 STM32F4_APB1_CLOCK(TIM14)>; @@ -623,8 +619,6 @@ }; timers10: timers@40014400 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40014400 0x400>; clocks = <&rcc 0 STM32F4_APB2_CLOCK(TIM10)>; @@ -639,8 +633,6 @@ }; timers11: timers@40014800 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40014800 0x400>; clocks = <&rcc 0 STM32F4_APB2_CLOCK(TIM11)>; @@ -696,7 +688,7 @@ status = "disabled"; }; - rcc: rcc@40023810 { + rcc: rcc@40023800 { #reset-cells = <1>; #clock-cells = <2>; compatible = "st,stm32f42xx-rcc", "st,stm32-rcc"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32f746.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32f746.dtsi @@ -265,8 +265,6 @@ }; timers13: timers@40001c00 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40001C00 0x400>; clocks = <&rcc 0 STM32F7_APB1_CLOCK(TIM13)>; @@ -281,8 +279,6 @@ }; timers14: timers@40002000 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40002000 0x400>; clocks = <&rcc 0 STM32F7_APB1_CLOCK(TIM14)>; @@ -366,9 +362,9 @@ status = "disabled"; }; - i2c3: i2c@40005C00 { + i2c3: i2c@40005c00 { compatible = "st,stm32f7-i2c"; - reg = <0x40005C00 0x400>; + reg = <0x40005c00 0x400>; interrupts = <72>, <73>; resets = <&rcc STM32F7_APB1_RESET(I2C3)>; @@ -533,8 +529,6 @@ }; timers10: timers@40014400 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40014400 0x400>; clocks = <&rcc 0 STM32F7_APB2_CLOCK(TIM10)>; @@ -549,8 +543,6 @@ }; timers11: timers@40014800 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-timers"; reg = <0x40014800 0x400>; clocks = <&rcc 0 STM32F7_APB2_CLOCK(TIM11)>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32f769-disco.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32f769-disco.dts @@ -75,12 +75,10 @@ }; }; - gpio_keys { + gpio-keys { compatible = "gpio-keys"; - #address-cells = <1>; - #size-cells = <0>; autorepeat; - button@0 { + button-0 { label = "User"; linux,code = ; gpios = <&gpioa 0 GPIO_ACTIVE_HIGH>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32h743.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32h743.dtsi @@ -438,8 +438,6 @@ }; lptimer4: timer@58002c00 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-lptimer"; reg = <0x58002c00 0x400>; clocks = <&rcc LPTIM4_CK>; @@ -454,8 +452,6 @@ }; lptimer5: timer@58003000 { - #address-cells = <1>; - #size-cells = <0>; compatible = "st,stm32-lptimer"; reg = <0x58003000 0x400>; clocks = <&rcc LPTIM5_CK>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/stm32mp157c.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/stm32mp157c.dtsi @@ -515,7 +515,7 @@ compatible = "st,stm32-cec"; reg = <0x40016000 0x400>; interrupts = ; - clocks = <&rcc CEC_K>, <&clk_lse>; + clocks = <&rcc CEC_K>, <&rcc CEC>; clock-names = "cec", "hdmi-cec"; status = "disabled"; }; @@ -773,7 +773,7 @@ #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-a"; - reg = <0x4 0x1c>; + reg = <0x4 0x20>; clocks = <&rcc SAI1_K>; clock-names = "sai_ck"; dmas = <&dmamux1 87 0x400 0x01>; @@ -783,7 +783,7 @@ sai1b: audio-controller@4400a024 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-b"; - reg = <0x24 0x1c>; + reg = <0x24 0x20>; clocks = <&rcc SAI1_K>; clock-names = "sai_ck"; dmas = <&dmamux1 88 0x400 0x01>; @@ -804,7 +804,7 @@ sai2a: audio-controller@4400b004 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-a"; - reg = <0x4 0x1c>; + reg = <0x4 0x20>; clocks = <&rcc SAI2_K>; clock-names = "sai_ck"; dmas = <&dmamux1 89 0x400 0x01>; @@ -814,7 +814,7 @@ sai2b: audio-controller@4400b024 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-b"; - reg = <0x24 0x1c>; + reg = <0x24 0x20>; clocks = <&rcc SAI2_K>; clock-names = "sai_ck"; dmas = <&dmamux1 90 0x400 0x01>; @@ -835,7 +835,7 @@ sai3a: audio-controller@4400c004 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-a"; - reg = <0x04 0x1c>; + reg = <0x04 0x20>; clocks = <&rcc SAI3_K>; clock-names = "sai_ck"; dmas = <&dmamux1 113 0x400 0x01>; @@ -845,7 +845,7 @@ sai3b: audio-controller@4400c024 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-b"; - reg = <0x24 0x1c>; + reg = <0x24 0x20>; clocks = <&rcc SAI3_K>; clock-names = "sai_ck"; dmas = <&dmamux1 114 0x400 0x01>; @@ -1191,7 +1191,7 @@ sai4a: audio-controller@50027004 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-a"; - reg = <0x04 0x1c>; + reg = <0x04 0x20>; clocks = <&rcc SAI4_K>; clock-names = "sai_ck"; dmas = <&dmamux1 99 0x400 0x01>; @@ -1201,7 +1201,7 @@ sai4b: audio-controller@50027024 { #sound-dai-cells = <0>; compatible = "st,stm32-sai-sub-b"; - reg = <0x24 0x1c>; + reg = <0x24 0x20>; clocks = <&rcc SAI4_K>; clock-names = "sai_ck"; dmas = <&dmamux1 100 0x400 0x01>; @@ -1311,12 +1311,6 @@ status = "disabled"; }; - stmmac_axi_config_0: stmmac-axi-config { - snps,wr_osr_lmt = <0x7>; - snps,rd_osr_lmt = <0x7>; - snps,blen = <0 0 0 0 16 8 4>; - }; - ethernet0: ethernet@5800a000 { compatible = "st,stm32mp1-dwmac", "snps,dwmac-4.20a"; reg = <0x5800a000 0x2000>; @@ -1339,6 +1333,12 @@ snps,axi-config = <&stmmac_axi_config_0>; snps,tso; status = "disabled"; + + stmmac_axi_config_0: stmmac-axi-config { + snps,wr_osr_lmt = <0x7>; + snps,rd_osr_lmt = <0x7>; + snps,blen = <0 0 0 0 16 8 4>; + }; }; usbh_ohci: usbh-ohci@5800c000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts @@ -112,7 +112,7 @@ pinctrl-names = "default"; pinctrl-0 = <&gmac_rgmii_pins>; phy-handle = <&phy1>; - phy-mode = "rgmii"; + phy-mode = "rgmii-id"; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts @@ -169,7 +169,7 @@ flash@0 { #address-cells = <1>; #size-cells = <1>; - compatible = "mxicy,mx25l1606e", "winbond,w25q128"; + compatible = "mxicy,mx25l1606e", "jedec,spi-nor"; reg = <0>; spi-max-frequency = <40000000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/suniv-f1c100s.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/suniv-f1c100s.dtsi @@ -104,8 +104,10 @@ wdt: watchdog@1c20ca0 { compatible = "allwinner,suniv-f1c100s-wdt", - "allwinner,sun4i-a10-wdt"; + "allwinner,sun6i-a31-wdt"; reg = <0x01c20ca0 0x20>; + interrupts = <16>; + clocks = <&osc32k>; }; uart0: serial@1c25000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/tegra20-tamonten.dtsi +++ linux-azure-5.4.0/arch/arm/boot/dts/tegra20-tamonten.dtsi @@ -183,10 +183,11 @@ }; conf_ata { nvidia,pins = "ata", "atb", "atc", "atd", "ate", - "cdev1", "cdev2", "dap1", "dtb", "gma", - "gmb", "gmc", "gmd", "gme", "gpu7", - "gpv", "i2cp", "pta", "rm", "slxa", - "slxk", "spia", "spib", "uac"; + "cdev1", "cdev2", "dap1", "dtb", "dtf", + "gma", "gmb", "gmc", "gmd", "gme", "gpu7", + "gpv", "i2cp", "irrx", "irtx", "pta", + "rm", "slxa", "slxk", "spia", "spib", + "uac"; nvidia,pull = ; nvidia,tristate = ; }; @@ -202,7 +203,7 @@ }; conf_crtp { nvidia,pins = "crtp", "dap2", "dap3", "dap4", - "dtc", "dte", "dtf", "gpu", "sdio1", + "dtc", "dte", "gpu", "sdio1", "slxc", "slxd", "spdi", "spdo", "spig", "uda"; nvidia,pull = ; @@ -211,7 +212,7 @@ conf_ddc { nvidia,pins = "ddc", "dta", "dtd", "kbca", "kbcb", "kbcc", "kbcd", "kbce", "kbcf", - "sdc"; + "sdc", "uad", "uca"; nvidia,pull = ; nvidia,tristate = ; }; @@ -221,10 +222,9 @@ "lvp0", "owc", "sdb"; nvidia,tristate = ; }; - conf_irrx { - nvidia,pins = "irrx", "irtx", "sdd", "spic", - "spie", "spih", "uaa", "uab", "uad", - "uca", "ucb"; + conf_sdd { + nvidia,pins = "sdd", "spic", "spie", "spih", + "uaa", "uab", "ucb"; nvidia,pull = ; nvidia,tristate = ; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/versatile-ab.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/versatile-ab.dts @@ -195,16 +195,15 @@ #size-cells = <1>; ranges; - vic: intc@10140000 { + vic: interrupt-controller@10140000 { compatible = "arm,versatile-vic"; interrupt-controller; #interrupt-cells = <1>; reg = <0x10140000 0x1000>; - clear-mask = <0xffffffff>; valid-mask = <0xffffffff>; }; - sic: intc@10003000 { + sic: interrupt-controller@10003000 { compatible = "arm,versatile-sic"; interrupt-controller; #interrupt-cells = <1>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/boot/dts/versatile-pb.dts +++ linux-azure-5.4.0/arch/arm/boot/dts/versatile-pb.dts @@ -7,7 +7,7 @@ amba { /* The Versatile PB is using more SIC IRQ lines than the AB */ - sic: intc@10003000 { + sic: interrupt-controller@10003000 { clear-mask = <0xffffffff>; /* * Valid interrupt lines mask according to only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/Kconfig +++ linux-azure-5.4.0/arch/arm/crypto/Kconfig @@ -30,7 +30,7 @@ config CRYPTO_SHA1_ARM_CE tristate "SHA1 digest algorithm (ARM v8 Crypto Extensions)" - depends on KERNEL_MODE_NEON + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) select CRYPTO_SHA1_ARM select CRYPTO_HASH help @@ -39,7 +39,7 @@ config CRYPTO_SHA2_ARM_CE tristate "SHA-224/256 digest algorithm (ARM v8 Crypto Extensions)" - depends on KERNEL_MODE_NEON + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) select CRYPTO_SHA256_ARM select CRYPTO_HASH help @@ -96,7 +96,7 @@ config CRYPTO_AES_ARM_CE tristate "Accelerated AES using ARMv8 Crypto Extensions" - depends on KERNEL_MODE_NEON + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) select CRYPTO_BLKCIPHER select CRYPTO_LIB_AES select CRYPTO_SIMD @@ -106,7 +106,7 @@ config CRYPTO_GHASH_ARM_CE tristate "PMULL-accelerated GHASH using NEON/ARMv8 Crypto Extensions" - depends on KERNEL_MODE_NEON + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) select CRYPTO_HASH select CRYPTO_CRYPTD select CRYPTO_GF128MUL @@ -118,12 +118,14 @@ config CRYPTO_CRCT10DIF_ARM_CE tristate "CRCT10DIF digest algorithm using PMULL instructions" - depends on KERNEL_MODE_NEON && CRC_T10DIF + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) + depends on CRC_T10DIF select CRYPTO_HASH config CRYPTO_CRC32_ARM_CE tristate "CRC32(C) digest algorithm using CRC and/or PMULL instructions" - depends on KERNEL_MODE_NEON && CRC32 + depends on KERNEL_MODE_NEON && (CC_IS_CLANG || GCC_VERSION >= 40800) + depends on CRC32 select CRYPTO_HASH config CRYPTO_CHACHA20_NEON only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/Makefile +++ linux-azure-5.4.0/arch/arm/crypto/Makefile @@ -12,32 +12,12 @@ obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha-neon.o obj-$(CONFIG_CRYPTO_NHPOLY1305_NEON) += nhpoly1305-neon.o -ce-obj-$(CONFIG_CRYPTO_AES_ARM_CE) += aes-arm-ce.o -ce-obj-$(CONFIG_CRYPTO_SHA1_ARM_CE) += sha1-arm-ce.o -ce-obj-$(CONFIG_CRYPTO_SHA2_ARM_CE) += sha2-arm-ce.o -ce-obj-$(CONFIG_CRYPTO_GHASH_ARM_CE) += ghash-arm-ce.o -ce-obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM_CE) += crct10dif-arm-ce.o -crc-obj-$(CONFIG_CRYPTO_CRC32_ARM_CE) += crc32-arm-ce.o - -ifneq ($(crc-obj-y)$(crc-obj-m),) -ifeq ($(call as-instr,.arch armv8-a\n.arch_extension crc,y,n),y) -ce-obj-y += $(crc-obj-y) -ce-obj-m += $(crc-obj-m) -else -$(warning These CRC Extensions modules need binutils 2.23 or higher) -$(warning $(crc-obj-y) $(crc-obj-m)) -endif -endif - -ifneq ($(ce-obj-y)$(ce-obj-m),) -ifeq ($(call as-instr,.fpu crypto-neon-fp-armv8,y,n),y) -obj-y += $(ce-obj-y) -obj-m += $(ce-obj-m) -else -$(warning These ARMv8 Crypto Extensions modules need binutils 2.23 or higher) -$(warning $(ce-obj-y) $(ce-obj-m)) -endif -endif +obj-$(CONFIG_CRYPTO_AES_ARM_CE) += aes-arm-ce.o +obj-$(CONFIG_CRYPTO_SHA1_ARM_CE) += sha1-arm-ce.o +obj-$(CONFIG_CRYPTO_SHA2_ARM_CE) += sha2-arm-ce.o +obj-$(CONFIG_CRYPTO_GHASH_ARM_CE) += ghash-arm-ce.o +obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM_CE) += crct10dif-arm-ce.o +obj-$(CONFIG_CRYPTO_CRC32_ARM_CE) += crc32-arm-ce.o aes-arm-y := aes-cipher-core.o aes-cipher-glue.o aes-arm-bs-y := aes-neonbs-core.o aes-neonbs-glue.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/crct10dif-ce-core.S +++ linux-azure-5.4.0/arch/arm/crypto/crct10dif-ce-core.S @@ -72,7 +72,7 @@ #endif .text - .arch armv7-a + .arch armv8-a .fpu crypto-neon-fp-armv8 init_crc .req r0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/ghash-ce-core.S +++ linux-azure-5.4.0/arch/arm/crypto/ghash-ce-core.S @@ -8,6 +8,9 @@ #include #include + .arch armv8-a + .fpu crypto-neon-fp-armv8 + SHASH .req q0 T1 .req q1 XL .req q2 @@ -88,7 +91,6 @@ T3_H .req d17 .text - .fpu crypto-neon-fp-armv8 .macro __pmull_p64, rd, rn, rm, b1, b2, b3, b4 vmull.p64 \rd, \rn, \rm only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha1-ce-core.S +++ linux-azure-5.4.0/arch/arm/crypto/sha1-ce-core.S @@ -10,6 +10,7 @@ #include .text + .arch armv8-a .fpu crypto-neon-fp-armv8 k0 .req q0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha2-ce-core.S +++ linux-azure-5.4.0/arch/arm/crypto/sha2-ce-core.S @@ -10,6 +10,7 @@ #include .text + .arch armv8-a .fpu crypto-neon-fp-armv8 k0 .req q7 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha256-armv4.pl +++ linux-azure-5.4.0/arch/arm/crypto/sha256-armv4.pl @@ -175,7 +175,6 @@ #else .syntax unified # ifdef __thumb2__ -# define adrl adr .thumb # else .code 32 @@ -471,7 +470,8 @@ stmdb sp!,{r4-r12,lr} sub $H,sp,#16*4+16 - adrl $Ktbl,K256 + adr $Ktbl,.Lsha256_block_data_order + sub $Ktbl,$Ktbl,#.Lsha256_block_data_order-K256 bic $H,$H,#15 @ align for 128-bit stores mov $t2,sp mov sp,$H @ alloca only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha256-core.S_shipped +++ linux-azure-5.4.0/arch/arm/crypto/sha256-core.S_shipped @@ -56,7 +56,6 @@ #else .syntax unified # ifdef __thumb2__ -# define adrl adr .thumb # else .code 32 @@ -1885,7 +1884,8 @@ stmdb sp!,{r4-r12,lr} sub r11,sp,#16*4+16 - adrl r14,K256 + adr r14,.Lsha256_block_data_order + sub r14,r14,#.Lsha256_block_data_order-K256 bic r11,r11,#15 @ align for 128-bit stores mov r12,sp mov sp,r11 @ alloca only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha512-armv4.pl +++ linux-azure-5.4.0/arch/arm/crypto/sha512-armv4.pl @@ -212,7 +212,6 @@ #else .syntax unified # ifdef __thumb2__ -# define adrl adr .thumb # else .code 32 @@ -602,7 +601,8 @@ dmb @ errata #451034 on early Cortex A8 add $len,$inp,$len,lsl#7 @ len to point at the end of inp VFP_ABI_PUSH - adrl $Ktbl,K512 + adr $Ktbl,.Lsha512_block_data_order + sub $Ktbl,$Ktbl,.Lsha512_block_data_order-K512 vldmia $ctx,{$A-$H} @ load context .Loop_neon: ___ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/crypto/sha512-core.S_shipped +++ linux-azure-5.4.0/arch/arm/crypto/sha512-core.S_shipped @@ -79,7 +79,6 @@ #else .syntax unified # ifdef __thumb2__ -# define adrl adr .thumb # else .code 32 @@ -543,7 +542,8 @@ dmb @ errata #451034 on early Cortex A8 add r2,r1,r2,lsl#7 @ len to point at the end of inp VFP_ABI_PUSH - adrl r3,K512 + adr r3,.Lsha512_block_data_order + sub r3,r3,.Lsha512_block_data_order-K512 vldmia r0,{d16-d23} @ load context .Loop_neon: vshr.u64 d24,d20,#14 @ 0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/ftrace.h +++ linux-azure-5.4.0/arch/arm/include/asm/ftrace.h @@ -16,6 +16,9 @@ #ifdef CONFIG_DYNAMIC_FTRACE struct dyn_arch_ftrace { +#ifdef CONFIG_ARM_MODULE_PLTS + struct module *mod; +#endif }; static inline unsigned long ftrace_call_adjust(unsigned long addr) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/insn.h +++ linux-azure-5.4.0/arch/arm/include/asm/insn.h @@ -13,18 +13,18 @@ } unsigned long -__arm_gen_branch(unsigned long pc, unsigned long addr, bool link); +__arm_gen_branch(unsigned long pc, unsigned long addr, bool link, bool warn); static inline unsigned long arm_gen_branch(unsigned long pc, unsigned long addr) { - return __arm_gen_branch(pc, addr, false); + return __arm_gen_branch(pc, addr, false, true); } static inline unsigned long -arm_gen_branch_link(unsigned long pc, unsigned long addr) +arm_gen_branch_link(unsigned long pc, unsigned long addr, bool warn) { - return __arm_gen_branch(pc, addr, true); + return __arm_gen_branch(pc, addr, true, warn); } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/io.h +++ linux-azure-5.4.0/arch/arm/include/asm/io.h @@ -457,6 +457,9 @@ extern int valid_phys_addr_range(phys_addr_t addr, size_t size); extern int valid_mmap_phys_addr_range(unsigned long pfn, size_t size); extern int devmem_is_allowed(unsigned long pfn); +extern bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags); +#define arch_memremap_can_ram_remap arch_memremap_can_ram_remap #endif /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/mach/map.h +++ linux-azure-5.4.0/arch/arm/include/asm/mach/map.h @@ -27,6 +27,7 @@ MT_HIGH_VECTORS, MT_MEMORY_RWX, MT_MEMORY_RW, + MT_MEMORY_RO, MT_ROM, MT_MEMORY_RWX_NONCACHED, MT_MEMORY_RW_DTCM, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/module.h +++ linux-azure-5.4.0/arch/arm/include/asm/module.h @@ -19,8 +19,18 @@ }; #endif +#define PLT_ENT_STRIDE L1_CACHE_BYTES +#define PLT_ENT_COUNT (PLT_ENT_STRIDE / sizeof(u32)) +#define PLT_ENT_SIZE (sizeof(struct plt_entries) / PLT_ENT_COUNT) + +struct plt_entries { + u32 ldr[PLT_ENT_COUNT]; + u32 lit[PLT_ENT_COUNT]; +}; + struct mod_plt_sec { struct elf32_shdr *plt; + struct plt_entries *plt_ent; int plt_count; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/ptrace.h +++ linux-azure-5.4.0/arch/arm/include/asm/ptrace.h @@ -164,5 +164,31 @@ ((current_stack_pointer | (THREAD_SIZE - 1)) - 7) - 1; \ }) + +/* + * Update ITSTATE after normal execution of an IT block instruction. + * + * The 8 IT state bits are split into two parts in CPSR: + * ITSTATE<1:0> are in CPSR<26:25> + * ITSTATE<7:2> are in CPSR<15:10> + */ +static inline unsigned long it_advance(unsigned long cpsr) +{ + if ((cpsr & 0x06000400) == 0) { + /* ITSTATE<2:0> == 0 means end of IT block, so clear IT state */ + cpsr &= ~PSR_IT_MASK; + } else { + /* We need to shift left ITSTATE<4:0> */ + const unsigned long mask = 0x06001c00; /* Mask ITSTATE<4:0> */ + unsigned long it = cpsr & mask; + it <<= 1; + it |= it >> (27 - 10); /* Carry ITSTATE<2> to correct place */ + it &= mask; + cpsr &= ~mask; + cpsr |= it; + } + return cpsr; +} + #endif /* __ASSEMBLY__ */ #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/spectre.h +++ linux-azure-5.4.0/arch/arm/include/asm/spectre.h @@ -0,0 +1,38 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef __ASM_SPECTRE_H +#define __ASM_SPECTRE_H + +enum { + SPECTRE_UNAFFECTED, + SPECTRE_MITIGATED, + SPECTRE_VULNERABLE, +}; + +enum { + __SPECTRE_V2_METHOD_BPIALL, + __SPECTRE_V2_METHOD_ICIALLU, + __SPECTRE_V2_METHOD_SMC, + __SPECTRE_V2_METHOD_HVC, + __SPECTRE_V2_METHOD_LOOP8, +}; + +enum { + SPECTRE_V2_METHOD_BPIALL = BIT(__SPECTRE_V2_METHOD_BPIALL), + SPECTRE_V2_METHOD_ICIALLU = BIT(__SPECTRE_V2_METHOD_ICIALLU), + SPECTRE_V2_METHOD_SMC = BIT(__SPECTRE_V2_METHOD_SMC), + SPECTRE_V2_METHOD_HVC = BIT(__SPECTRE_V2_METHOD_HVC), + SPECTRE_V2_METHOD_LOOP8 = BIT(__SPECTRE_V2_METHOD_LOOP8), +}; + +#ifdef CONFIG_GENERIC_CPU_VULNERABILITIES +void spectre_v2_update_state(unsigned int state, unsigned int methods); +#else +static inline void spectre_v2_update_state(unsigned int state, + unsigned int methods) +{} +#endif + +int spectre_bhb_update_vectors(unsigned int method); + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/timex.h +++ linux-azure-5.4.0/arch/arm/include/asm/timex.h @@ -11,5 +11,6 @@ typedef unsigned long cycles_t; #define get_cycles() ({ cycles_t c; read_current_timer(&c) ? 0 : c; }) +#define random_get_entropy() (((unsigned long)get_cycles()) ?: random_get_entropy_fallback()) #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/include/asm/vfpmacros.h +++ linux-azure-5.4.0/arch/arm/include/asm/vfpmacros.h @@ -19,23 +19,25 @@ @ read all the working registers back into the VFP .macro VFPFLDMIA, base, tmp + .fpu vfpv2 #if __LINUX_ARM_ARCH__ < 6 - LDC p11, cr0, [\base],#33*4 @ FLDMIAX \base!, {d0-d15} + fldmiax \base!, {d0-d15} #else - LDC p11, cr0, [\base],#32*4 @ FLDMIAD \base!, {d0-d15} + vldmia \base!, {d0-d15} #endif #ifdef CONFIG_VFPv3 + .fpu vfpv3 #if __LINUX_ARM_ARCH__ <= 6 ldr \tmp, =elf_hwcap @ may not have MVFR regs ldr \tmp, [\tmp, #0] tst \tmp, #HWCAP_VFPD32 - ldclne p11, cr0, [\base],#32*4 @ FLDMIAD \base!, {d16-d31} + vldmiane \base!, {d16-d31} addeq \base, \base, #32*4 @ step over unused register space #else VFPFMRX \tmp, MVFR0 @ Media and VFP Feature Register 0 and \tmp, \tmp, #MVFR0_A_SIMD_MASK @ A_SIMD field cmp \tmp, #2 @ 32 x 64bit registers? - ldcleq p11, cr0, [\base],#32*4 @ FLDMIAD \base!, {d16-d31} + vldmiaeq \base!, {d16-d31} addne \base, \base, #32*4 @ step over unused register space #endif #endif @@ -44,22 +46,23 @@ @ write all the working registers out of the VFP .macro VFPFSTMIA, base, tmp #if __LINUX_ARM_ARCH__ < 6 - STC p11, cr0, [\base],#33*4 @ FSTMIAX \base!, {d0-d15} + fstmiax \base!, {d0-d15} #else - STC p11, cr0, [\base],#32*4 @ FSTMIAD \base!, {d0-d15} + vstmia \base!, {d0-d15} #endif #ifdef CONFIG_VFPv3 + .fpu vfpv3 #if __LINUX_ARM_ARCH__ <= 6 ldr \tmp, =elf_hwcap @ may not have MVFR regs ldr \tmp, [\tmp, #0] tst \tmp, #HWCAP_VFPD32 - stclne p11, cr0, [\base],#32*4 @ FSTMIAD \base!, {d16-d31} + vstmiane \base!, {d16-d31} addeq \base, \base, #32*4 @ step over unused register space #else VFPFMRX \tmp, MVFR0 @ Media and VFP Feature Register 0 and \tmp, \tmp, #MVFR0_A_SIMD_MASK @ A_SIMD field cmp \tmp, #2 @ 32 x 64bit registers? - stcleq p11, cr0, [\base],#32*4 @ FSTMIAD \base!, {d16-d31} + vstmiaeq \base!, {d16-d31} addne \base, \base, #32*4 @ step over unused register space #endif #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/Makefile +++ linux-azure-5.4.0/arch/arm/kernel/Makefile @@ -17,10 +17,14 @@ # Object file lists. obj-y := elf.o entry-common.o irq.o opcodes.o \ - process.o ptrace.o reboot.o return_address.o \ + process.o ptrace.o reboot.o \ setup.o signal.o sigreturn_codes.o \ stacktrace.o sys_arm.o time.o traps.o +ifneq ($(CONFIG_ARM_UNWIND),y) +obj-$(CONFIG_FRAME_POINTER) += return_address.o +endif + obj-$(CONFIG_ATAGS) += atags_parse.o obj-$(CONFIG_ATAGS_PROC) += atags_proc.o obj-$(CONFIG_DEPRECATED_PARAM_STRUCT) += atags_compat.o @@ -102,4 +106,6 @@ obj-$(CONFIG_HAVE_ARM_SMCCC) += smccc-call.o +obj-$(CONFIG_GENERIC_CPU_VULNERABILITIES) += spectre.o + extra-y := $(head-y) vmlinux.lds only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/entry-common.S +++ linux-azure-5.4.0/arch/arm/kernel/entry-common.S @@ -163,12 +163,36 @@ */ .align 5 +#ifdef CONFIG_HARDEN_BRANCH_HISTORY +ENTRY(vector_bhb_loop8_swi) + sub sp, sp, #PT_REGS_SIZE + stmia sp, {r0 - r12} + mov r8, #8 +1: b 2f +2: subs r8, r8, #1 + bne 1b + dsb + isb + b 3f +ENDPROC(vector_bhb_loop8_swi) + + .align 5 +ENTRY(vector_bhb_bpiall_swi) + sub sp, sp, #PT_REGS_SIZE + stmia sp, {r0 - r12} + mcr p15, 0, r8, c7, c5, 6 @ BPIALL + isb + b 3f +ENDPROC(vector_bhb_bpiall_swi) +#endif + .align 5 ENTRY(vector_swi) #ifdef CONFIG_CPU_V7M v7m_exception_entry #else sub sp, sp, #PT_REGS_SIZE stmia sp, {r0 - r12} @ Calling r0 - r12 +3: ARM( add r8, sp, #S_PC ) ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr THUMB( mov r8, sp ) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/ftrace.c +++ linux-azure-5.4.0/arch/arm/kernel/ftrace.c @@ -71,9 +71,10 @@ return 0; } -static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) +static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr, + bool warn) { - return arm_gen_branch_link(pc, addr); + return arm_gen_branch_link(pc, addr, warn); } static int ftrace_modify_code(unsigned long pc, unsigned long old, @@ -112,14 +113,14 @@ int ret; pc = (unsigned long)&ftrace_call; - new = ftrace_call_replace(pc, (unsigned long)func); + new = ftrace_call_replace(pc, (unsigned long)func, true); ret = ftrace_modify_code(pc, 0, new, false); #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS if (!ret) { pc = (unsigned long)&ftrace_regs_call; - new = ftrace_call_replace(pc, (unsigned long)func); + new = ftrace_call_replace(pc, (unsigned long)func, true); ret = ftrace_modify_code(pc, 0, new, false); } @@ -132,10 +133,22 @@ { unsigned long new, old; unsigned long ip = rec->ip; + unsigned long aaddr = adjust_address(rec, addr); + struct module *mod = NULL; + +#ifdef CONFIG_ARM_MODULE_PLTS + mod = rec->arch.mod; +#endif old = ftrace_nop_replace(rec); - new = ftrace_call_replace(ip, adjust_address(rec, addr)); + new = ftrace_call_replace(ip, aaddr, !mod); +#ifdef CONFIG_ARM_MODULE_PLTS + if (!new && mod) { + aaddr = get_module_plt(mod, ip, aaddr); + new = ftrace_call_replace(ip, aaddr, true); + } +#endif return ftrace_modify_code(rec->ip, old, new, true); } @@ -148,9 +161,9 @@ unsigned long new, old; unsigned long ip = rec->ip; - old = ftrace_call_replace(ip, adjust_address(rec, old_addr)); + old = ftrace_call_replace(ip, adjust_address(rec, old_addr), true); - new = ftrace_call_replace(ip, adjust_address(rec, addr)); + new = ftrace_call_replace(ip, adjust_address(rec, addr), true); return ftrace_modify_code(rec->ip, old, new, true); } @@ -160,12 +173,29 @@ int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, unsigned long addr) { + unsigned long aaddr = adjust_address(rec, addr); unsigned long ip = rec->ip; unsigned long old; unsigned long new; int ret; - old = ftrace_call_replace(ip, adjust_address(rec, addr)); +#ifdef CONFIG_ARM_MODULE_PLTS + /* mod is only supplied during module loading */ + if (!mod) + mod = rec->arch.mod; + else + rec->arch.mod = mod; +#endif + + old = ftrace_call_replace(ip, aaddr, + !IS_ENABLED(CONFIG_ARM_MODULE_PLTS) || !mod); +#ifdef CONFIG_ARM_MODULE_PLTS + if (!old && mod) { + aaddr = get_module_plt(mod, ip, aaddr); + old = ftrace_call_replace(ip, aaddr, true); + } +#endif + new = ftrace_nop_replace(rec); ret = ftrace_modify_code(ip, old, new, true); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/insn.c +++ linux-azure-5.4.0/arch/arm/kernel/insn.c @@ -3,8 +3,9 @@ #include #include -static unsigned long -__arm_gen_branch_thumb2(unsigned long pc, unsigned long addr, bool link) +static unsigned long __arm_gen_branch_thumb2(unsigned long pc, + unsigned long addr, bool link, + bool warn) { unsigned long s, j1, j2, i1, i2, imm10, imm11; unsigned long first, second; @@ -12,7 +13,7 @@ offset = (long)addr - (long)(pc + 4); if (offset < -16777216 || offset > 16777214) { - WARN_ON_ONCE(1); + WARN_ON_ONCE(warn); return 0; } @@ -33,8 +34,8 @@ return __opcode_thumb32_compose(first, second); } -static unsigned long -__arm_gen_branch_arm(unsigned long pc, unsigned long addr, bool link) +static unsigned long __arm_gen_branch_arm(unsigned long pc, unsigned long addr, + bool link, bool warn) { unsigned long opcode = 0xea000000; long offset; @@ -44,7 +45,7 @@ offset = (long)addr - (long)(pc + 8); if (unlikely(offset < -33554432 || offset > 33554428)) { - WARN_ON_ONCE(1); + WARN_ON_ONCE(warn); return 0; } @@ -54,10 +55,10 @@ } unsigned long -__arm_gen_branch(unsigned long pc, unsigned long addr, bool link) +__arm_gen_branch(unsigned long pc, unsigned long addr, bool link, bool warn) { if (IS_ENABLED(CONFIG_THUMB2_KERNEL)) - return __arm_gen_branch_thumb2(pc, addr, link); + return __arm_gen_branch_thumb2(pc, addr, link, warn); else - return __arm_gen_branch_arm(pc, addr, link); + return __arm_gen_branch_arm(pc, addr, link, warn); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/iwmmxt.S +++ linux-azure-5.4.0/arch/arm/kernel/iwmmxt.S @@ -16,6 +16,7 @@ #include #include #include +#include "iwmmxt.h" #if defined(CONFIG_CPU_PJ4) || defined(CONFIG_CPU_PJ4B) #define PJ4(code...) code @@ -113,33 +114,33 @@ concan_dump: - wstrw wCSSF, [r1, #MMX_WCSSF] - wstrw wCASF, [r1, #MMX_WCASF] - wstrw wCGR0, [r1, #MMX_WCGR0] - wstrw wCGR1, [r1, #MMX_WCGR1] - wstrw wCGR2, [r1, #MMX_WCGR2] - wstrw wCGR3, [r1, #MMX_WCGR3] + wstrw wCSSF, r1, MMX_WCSSF + wstrw wCASF, r1, MMX_WCASF + wstrw wCGR0, r1, MMX_WCGR0 + wstrw wCGR1, r1, MMX_WCGR1 + wstrw wCGR2, r1, MMX_WCGR2 + wstrw wCGR3, r1, MMX_WCGR3 1: @ MUP? wRn tst r2, #0x2 beq 2f - wstrd wR0, [r1, #MMX_WR0] - wstrd wR1, [r1, #MMX_WR1] - wstrd wR2, [r1, #MMX_WR2] - wstrd wR3, [r1, #MMX_WR3] - wstrd wR4, [r1, #MMX_WR4] - wstrd wR5, [r1, #MMX_WR5] - wstrd wR6, [r1, #MMX_WR6] - wstrd wR7, [r1, #MMX_WR7] - wstrd wR8, [r1, #MMX_WR8] - wstrd wR9, [r1, #MMX_WR9] - wstrd wR10, [r1, #MMX_WR10] - wstrd wR11, [r1, #MMX_WR11] - wstrd wR12, [r1, #MMX_WR12] - wstrd wR13, [r1, #MMX_WR13] - wstrd wR14, [r1, #MMX_WR14] - wstrd wR15, [r1, #MMX_WR15] + wstrd wR0, r1, MMX_WR0 + wstrd wR1, r1, MMX_WR1 + wstrd wR2, r1, MMX_WR2 + wstrd wR3, r1, MMX_WR3 + wstrd wR4, r1, MMX_WR4 + wstrd wR5, r1, MMX_WR5 + wstrd wR6, r1, MMX_WR6 + wstrd wR7, r1, MMX_WR7 + wstrd wR8, r1, MMX_WR8 + wstrd wR9, r1, MMX_WR9 + wstrd wR10, r1, MMX_WR10 + wstrd wR11, r1, MMX_WR11 + wstrd wR12, r1, MMX_WR12 + wstrd wR13, r1, MMX_WR13 + wstrd wR14, r1, MMX_WR14 + wstrd wR15, r1, MMX_WR15 2: teq r0, #0 @ anything to load? reteq lr @ if not, return @@ -147,30 +148,30 @@ concan_load: @ Load wRn - wldrd wR0, [r0, #MMX_WR0] - wldrd wR1, [r0, #MMX_WR1] - wldrd wR2, [r0, #MMX_WR2] - wldrd wR3, [r0, #MMX_WR3] - wldrd wR4, [r0, #MMX_WR4] - wldrd wR5, [r0, #MMX_WR5] - wldrd wR6, [r0, #MMX_WR6] - wldrd wR7, [r0, #MMX_WR7] - wldrd wR8, [r0, #MMX_WR8] - wldrd wR9, [r0, #MMX_WR9] - wldrd wR10, [r0, #MMX_WR10] - wldrd wR11, [r0, #MMX_WR11] - wldrd wR12, [r0, #MMX_WR12] - wldrd wR13, [r0, #MMX_WR13] - wldrd wR14, [r0, #MMX_WR14] - wldrd wR15, [r0, #MMX_WR15] + wldrd wR0, r0, MMX_WR0 + wldrd wR1, r0, MMX_WR1 + wldrd wR2, r0, MMX_WR2 + wldrd wR3, r0, MMX_WR3 + wldrd wR4, r0, MMX_WR4 + wldrd wR5, r0, MMX_WR5 + wldrd wR6, r0, MMX_WR6 + wldrd wR7, r0, MMX_WR7 + wldrd wR8, r0, MMX_WR8 + wldrd wR9, r0, MMX_WR9 + wldrd wR10, r0, MMX_WR10 + wldrd wR11, r0, MMX_WR11 + wldrd wR12, r0, MMX_WR12 + wldrd wR13, r0, MMX_WR13 + wldrd wR14, r0, MMX_WR14 + wldrd wR15, r0, MMX_WR15 @ Load wCx - wldrw wCSSF, [r0, #MMX_WCSSF] - wldrw wCASF, [r0, #MMX_WCASF] - wldrw wCGR0, [r0, #MMX_WCGR0] - wldrw wCGR1, [r0, #MMX_WCGR1] - wldrw wCGR2, [r0, #MMX_WCGR2] - wldrw wCGR3, [r0, #MMX_WCGR3] + wldrw wCSSF, r0, MMX_WCSSF + wldrw wCASF, r0, MMX_WCASF + wldrw wCGR0, r0, MMX_WCGR0 + wldrw wCGR1, r0, MMX_WCGR1 + wldrw wCGR2, r0, MMX_WCGR2 + wldrw wCGR3, r0, MMX_WCGR3 @ clear CUP/MUP (only if r1 != 0) teq r1, #0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/iwmmxt.h +++ linux-azure-5.4.0/arch/arm/kernel/iwmmxt.h @@ -0,0 +1,47 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __IWMMXT_H__ +#define __IWMMXT_H__ + +.irp b, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 +.set .LwR\b, \b +.set .Lr\b, \b +.endr + +.set .LwCSSF, 0x2 +.set .LwCASF, 0x3 +.set .LwCGR0, 0x8 +.set .LwCGR1, 0x9 +.set .LwCGR2, 0xa +.set .LwCGR3, 0xb + +.macro wldrd, reg:req, base:req, offset:req +.inst 0xedd00100 | (.L\reg << 12) | (.L\base << 16) | (\offset >> 2) +.endm + +.macro wldrw, reg:req, base:req, offset:req +.inst 0xfd900100 | (.L\reg << 12) | (.L\base << 16) | (\offset >> 2) +.endm + +.macro wstrd, reg:req, base:req, offset:req +.inst 0xedc00100 | (.L\reg << 12) | (.L\base << 16) | (\offset >> 2) +.endm + +.macro wstrw, reg:req, base:req, offset:req +.inst 0xfd800100 | (.L\reg << 12) | (.L\base << 16) | (\offset >> 2) +.endm + +#ifdef __clang__ + +#define wCon c1 + +.macro tmrc, dest:req, control:req +mrc p1, 0, \dest, \control, c0, 0 +.endm + +.macro tmcr, control:req, src:req +mcr p1, 0, \src, \control, c0, 0 +.endm +#endif + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/kgdb.c +++ linux-azure-5.4.0/arch/arm/kernel/kgdb.c @@ -154,22 +154,38 @@ return 0; } -static struct undef_hook kgdb_brkpt_hook = { +static struct undef_hook kgdb_brkpt_arm_hook = { .instr_mask = 0xffffffff, .instr_val = KGDB_BREAKINST, - .cpsr_mask = MODE_MASK, + .cpsr_mask = PSR_T_BIT | MODE_MASK, .cpsr_val = SVC_MODE, .fn = kgdb_brk_fn }; -static struct undef_hook kgdb_compiled_brkpt_hook = { +static struct undef_hook kgdb_brkpt_thumb_hook = { + .instr_mask = 0xffff, + .instr_val = KGDB_BREAKINST & 0xffff, + .cpsr_mask = PSR_T_BIT | MODE_MASK, + .cpsr_val = PSR_T_BIT | SVC_MODE, + .fn = kgdb_brk_fn +}; + +static struct undef_hook kgdb_compiled_brkpt_arm_hook = { .instr_mask = 0xffffffff, .instr_val = KGDB_COMPILED_BREAK, - .cpsr_mask = MODE_MASK, + .cpsr_mask = PSR_T_BIT | MODE_MASK, .cpsr_val = SVC_MODE, .fn = kgdb_compiled_brk_fn }; +static struct undef_hook kgdb_compiled_brkpt_thumb_hook = { + .instr_mask = 0xffff, + .instr_val = KGDB_COMPILED_BREAK & 0xffff, + .cpsr_mask = PSR_T_BIT | MODE_MASK, + .cpsr_val = PSR_T_BIT | SVC_MODE, + .fn = kgdb_compiled_brk_fn +}; + static int __kgdb_notify(struct die_args *args, unsigned long cmd) { struct pt_regs *regs = args->regs; @@ -210,8 +226,10 @@ if (ret != 0) return ret; - register_undef_hook(&kgdb_brkpt_hook); - register_undef_hook(&kgdb_compiled_brkpt_hook); + register_undef_hook(&kgdb_brkpt_arm_hook); + register_undef_hook(&kgdb_brkpt_thumb_hook); + register_undef_hook(&kgdb_compiled_brkpt_arm_hook); + register_undef_hook(&kgdb_compiled_brkpt_thumb_hook); return 0; } @@ -224,8 +242,10 @@ */ void kgdb_arch_exit(void) { - unregister_undef_hook(&kgdb_brkpt_hook); - unregister_undef_hook(&kgdb_compiled_brkpt_hook); + unregister_undef_hook(&kgdb_brkpt_arm_hook); + unregister_undef_hook(&kgdb_brkpt_thumb_hook); + unregister_undef_hook(&kgdb_compiled_brkpt_arm_hook); + unregister_undef_hook(&kgdb_compiled_brkpt_thumb_hook); unregister_die_notifier(&kgdb_notifier); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/module-plts.c +++ linux-azure-5.4.0/arch/arm/kernel/module-plts.c @@ -4,6 +4,7 @@ */ #include +#include #include #include #include @@ -11,10 +12,6 @@ #include #include -#define PLT_ENT_STRIDE L1_CACHE_BYTES -#define PLT_ENT_COUNT (PLT_ENT_STRIDE / sizeof(u32)) -#define PLT_ENT_SIZE (sizeof(struct plt_entries) / PLT_ENT_COUNT) - #ifdef CONFIG_THUMB2_KERNEL #define PLT_ENT_LDR __opcode_to_mem_thumb32(0xf8dff000 | \ (PLT_ENT_STRIDE - 4)) @@ -23,9 +20,11 @@ (PLT_ENT_STRIDE - 8)) #endif -struct plt_entries { - u32 ldr[PLT_ENT_COUNT]; - u32 lit[PLT_ENT_COUNT]; +static const u32 fixed_plts[] = { +#ifdef CONFIG_DYNAMIC_FTRACE + FTRACE_ADDR, + MCOUNT_ADDR, +#endif }; static bool in_init(const struct module *mod, unsigned long loc) @@ -33,14 +32,40 @@ return loc - (u32)mod->init_layout.base < mod->init_layout.size; } +static void prealloc_fixed(struct mod_plt_sec *pltsec, struct plt_entries *plt) +{ + int i; + + if (!ARRAY_SIZE(fixed_plts) || pltsec->plt_count) + return; + pltsec->plt_count = ARRAY_SIZE(fixed_plts); + + for (i = 0; i < ARRAY_SIZE(plt->ldr); ++i) + plt->ldr[i] = PLT_ENT_LDR; + + BUILD_BUG_ON(sizeof(fixed_plts) > sizeof(plt->lit)); + memcpy(plt->lit, fixed_plts, sizeof(fixed_plts)); +} + u32 get_module_plt(struct module *mod, unsigned long loc, Elf32_Addr val) { struct mod_plt_sec *pltsec = !in_init(mod, loc) ? &mod->arch.core : &mod->arch.init; + struct plt_entries *plt; + int idx; + + /* cache the address, ELF header is available only during module load */ + if (!pltsec->plt_ent) + pltsec->plt_ent = (struct plt_entries *)pltsec->plt->sh_addr; + plt = pltsec->plt_ent; - struct plt_entries *plt = (struct plt_entries *)pltsec->plt->sh_addr; - int idx = 0; + prealloc_fixed(pltsec, plt); + + for (idx = 0; idx < ARRAY_SIZE(fixed_plts); ++idx) + if (plt->lit[idx] == val) + return (u32)&plt->ldr[idx]; + idx = 0; /* * Look for an existing entry pointing to 'val'. Given that the * relocations are sorted, this will be the last entry we allocated. @@ -188,8 +213,8 @@ int module_frob_arch_sections(Elf_Ehdr *ehdr, Elf_Shdr *sechdrs, char *secstrings, struct module *mod) { - unsigned long core_plts = 0; - unsigned long init_plts = 0; + unsigned long core_plts = ARRAY_SIZE(fixed_plts); + unsigned long init_plts = ARRAY_SIZE(fixed_plts); Elf32_Shdr *s, *sechdrs_end = sechdrs + ehdr->e_shnum; Elf32_Sym *syms = NULL; @@ -244,6 +269,7 @@ mod->arch.core.plt->sh_size = round_up(core_plts * PLT_ENT_SIZE, sizeof(struct plt_entries)); mod->arch.core.plt_count = 0; + mod->arch.core.plt_ent = NULL; mod->arch.init.plt->sh_type = SHT_NOBITS; mod->arch.init.plt->sh_flags = SHF_EXECINSTR | SHF_ALLOC; @@ -251,6 +277,7 @@ mod->arch.init.plt->sh_size = round_up(init_plts * PLT_ENT_SIZE, sizeof(struct plt_entries)); mod->arch.init.plt_count = 0; + mod->arch.init.plt_ent = NULL; pr_debug("%s: plt=%x, init.plt=%x\n", __func__, mod->arch.core.plt->sh_size, mod->arch.init.plt->sh_size); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/perf_callchain.c +++ linux-azure-5.4.0/arch/arm/kernel/perf_callchain.c @@ -62,9 +62,10 @@ void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct frame_tail __user *tail; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -98,9 +99,10 @@ void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct stackframe fr; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -111,18 +113,21 @@ unsigned long perf_instruction_pointer(struct pt_regs *regs) { - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) - return perf_guest_cbs->get_guest_ip(); + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + + if (guest_cbs && guest_cbs->is_in_guest()) + return guest_cbs->get_guest_ip(); return instruction_pointer(regs); } unsigned long perf_misc_flags(struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); int misc = 0; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { - if (perf_guest_cbs->is_user_mode()) + if (guest_cbs && guest_cbs->is_in_guest()) { + if (guest_cbs->is_user_mode()) misc |= PERF_RECORD_MISC_GUEST_USER; else misc |= PERF_RECORD_MISC_GUEST_KERNEL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/perf_event_v7.c +++ linux-azure-5.4.0/arch/arm/kernel/perf_event_v7.c @@ -773,10 +773,10 @@ pr_err("CPU%u writing wrong counter %d\n", smp_processor_id(), idx); } else if (idx == ARMV7_IDX_CYCLE_COUNTER) { - asm volatile("mcr p15, 0, %0, c9, c13, 0" : : "r" (value)); + asm volatile("mcr p15, 0, %0, c9, c13, 0" : : "r" ((u32)value)); } else { armv7_pmnc_select_counter(idx); - asm volatile("mcr p15, 0, %0, c9, c13, 2" : : "r" (value)); + asm volatile("mcr p15, 0, %0, c9, c13, 2" : : "r" ((u32)value)); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/return_address.c +++ linux-azure-5.4.0/arch/arm/kernel/return_address.c @@ -7,8 +7,6 @@ */ #include #include - -#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) #include #include @@ -53,6 +51,4 @@ return NULL; } -#endif /* if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND) */ - EXPORT_SYMBOL_GPL(return_address); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/spectre.c +++ linux-azure-5.4.0/arch/arm/kernel/spectre.c @@ -0,0 +1,71 @@ +// SPDX-License-Identifier: GPL-2.0-only +#include +#include +#include + +#include + +static bool _unprivileged_ebpf_enabled(void) +{ +#ifdef CONFIG_BPF_SYSCALL + return !sysctl_unprivileged_bpf_disabled; +#else + return false; +#endif +} + +ssize_t cpu_show_spectre_v1(struct device *dev, struct device_attribute *attr, + char *buf) +{ + return sprintf(buf, "Mitigation: __user pointer sanitization\n"); +} + +static unsigned int spectre_v2_state; +static unsigned int spectre_v2_methods; + +void spectre_v2_update_state(unsigned int state, unsigned int method) +{ + if (state > spectre_v2_state) + spectre_v2_state = state; + spectre_v2_methods |= method; +} + +ssize_t cpu_show_spectre_v2(struct device *dev, struct device_attribute *attr, + char *buf) +{ + const char *method; + + if (spectre_v2_state == SPECTRE_UNAFFECTED) + return sprintf(buf, "%s\n", "Not affected"); + + if (spectre_v2_state != SPECTRE_MITIGATED) + return sprintf(buf, "%s\n", "Vulnerable"); + + if (_unprivileged_ebpf_enabled()) + return sprintf(buf, "Vulnerable: Unprivileged eBPF enabled\n"); + + switch (spectre_v2_methods) { + case SPECTRE_V2_METHOD_BPIALL: + method = "Branch predictor hardening"; + break; + + case SPECTRE_V2_METHOD_ICIALLU: + method = "I-cache invalidation"; + break; + + case SPECTRE_V2_METHOD_SMC: + case SPECTRE_V2_METHOD_HVC: + method = "Firmware call"; + break; + + case SPECTRE_V2_METHOD_LOOP8: + method = "History overwrite"; + break; + + default: + method = "Multiple mitigations"; + break; + } + + return sprintf(buf, "Mitigation: %s\n", method); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/vmlinux-xip.lds.S +++ linux-azure-5.4.0/arch/arm/kernel/vmlinux-xip.lds.S @@ -180,7 +180,7 @@ ASSERT((_end - __bss_start) >= 12288, ".bss too small for CONFIG_XIP_DEFLATED_DATA") #endif -#ifdef CONFIG_ARM_MPU +#if defined(CONFIG_ARM_MPU) && !defined(CONFIG_COMPILE_TEST) /* * Due to PMSAv7 restriction on base address and size we have to * enforce minimal alignment restrictions. It was seen that weaker only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/kernel/vmlinux.lds.h +++ linux-azure-5.4.0/arch/arm/kernel/vmlinux.lds.h @@ -25,6 +25,19 @@ #define ARM_MMU_DISCARD(x) x #endif +/* + * ld.lld does not support NOCROSSREFS: + * https://github.com/ClangBuiltLinux/linux/issues/1609 + */ +#ifdef CONFIG_LD_IS_LLD +#define NOCROSSREFS +#endif + +/* Set start/end symbol names to the LMA for the section */ +#define ARM_LMA(sym, section) \ + sym##_start = LOADADDR(section); \ + sym##_end = LOADADDR(section) + SIZEOF(section) + #define PROC_INFO \ . = ALIGN(4); \ __proc_info_begin = .; \ @@ -100,19 +113,31 @@ * only thing that matters is their relative offsets */ #define ARM_VECTORS \ - __vectors_start = .; \ - .vectors 0xffff0000 : AT(__vectors_start) { \ - *(.vectors) \ + __vectors_lma = .; \ + OVERLAY 0xffff0000 : NOCROSSREFS AT(__vectors_lma) { \ + .vectors { \ + *(.vectors) \ + } \ + .vectors.bhb.loop8 { \ + *(.vectors.bhb.loop8) \ + } \ + .vectors.bhb.bpiall { \ + *(.vectors.bhb.bpiall) \ + } \ } \ - . = __vectors_start + SIZEOF(.vectors); \ - __vectors_end = .; \ + ARM_LMA(__vectors, .vectors); \ + ARM_LMA(__vectors_bhb_loop8, .vectors.bhb.loop8); \ + ARM_LMA(__vectors_bhb_bpiall, .vectors.bhb.bpiall); \ + . = __vectors_lma + SIZEOF(.vectors) + \ + SIZEOF(.vectors.bhb.loop8) + \ + SIZEOF(.vectors.bhb.bpiall); \ \ - __stubs_start = .; \ - .stubs ADDR(.vectors) + 0x1000 : AT(__stubs_start) { \ + __stubs_lma = .; \ + .stubs ADDR(.vectors) + 0x1000 : AT(__stubs_lma) { \ *(.stubs) \ } \ - . = __stubs_start + SIZEOF(.stubs); \ - __stubs_end = .; \ + ARM_LMA(__stubs, .stubs); \ + . = __stubs_lma + SIZEOF(.stubs); \ \ PROVIDE(vector_fiq_offset = vector_fiq - ADDR(.vectors)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/lib/findbit.S +++ linux-azure-5.4.0/arch/arm/lib/findbit.S @@ -40,8 +40,8 @@ * Prototype: int find_next_zero_bit(void *addr, unsigned int maxbit, int offset) */ ENTRY(_find_next_zero_bit_le) - teq r1, #0 - beq 3b + cmp r2, r1 + bhs 3b ands ip, r2, #7 beq 1b @ If new byte, goto old routine ARM( ldrb r3, [r0, r2, lsr #3] ) @@ -81,8 +81,8 @@ * Prototype: int find_next_zero_bit(void *addr, unsigned int maxbit, int offset) */ ENTRY(_find_next_bit_le) - teq r1, #0 - beq 3b + cmp r2, r1 + bhs 3b ands ip, r2, #7 beq 1b @ If new byte, goto old routine ARM( ldrb r3, [r0, r2, lsr #3] ) @@ -115,8 +115,8 @@ ENDPROC(_find_first_zero_bit_be) ENTRY(_find_next_zero_bit_be) - teq r1, #0 - beq 3b + cmp r2, r1 + bhs 3b ands ip, r2, #7 beq 1b @ If new byte, goto old routine eor r3, r2, #0x18 @ big endian byte ordering @@ -149,8 +149,8 @@ ENDPROC(_find_first_bit_be) ENTRY(_find_next_bit_be) - teq r1, #0 - beq 3b + cmp r2, r1 + bhs 3b ands ip, r2, #7 beq 1b @ If new byte, goto old routine eor r3, r2, #0x18 @ big endian byte ordering only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/lib/xor-neon.c +++ linux-azure-5.4.0/arch/arm/lib/xor-neon.c @@ -26,8 +26,9 @@ * While older versions of GCC do not generate incorrect code, they fail to * recognize the parallel nature of these functions, and emit plain ARM code, * which is known to be slower than the optimized ARM code in asm-arm/xor.h. + * + * #warning This code requires at least version 4.6 of GCC */ -#warning This code requires at least version 4.6 of GCC #endif #pragma GCC diagnostic ignored "-Wunused-variable" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-axxia/platsmp.c +++ linux-azure-5.4.0/arch/arm/mach-axxia/platsmp.c @@ -39,6 +39,7 @@ return -ENOENT; syscon = of_iomap(syscon_np, 0); + of_node_put(syscon_np); if (!syscon) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-bcm/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-bcm/Kconfig @@ -214,7 +214,6 @@ select HAVE_ARM_ARCH_TIMER select BRCMSTB_L2_IRQ select BCM7120_L2_IRQ - select ARCH_HAS_HOLES_MEMORYMODEL select ZONE_DMA if ARM_LPAE select SOC_BRCMSTB select SOC_BUS only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-bcm/bcm_kona_smc.c +++ linux-azure-5.4.0/arch/arm/mach-bcm/bcm_kona_smc.c @@ -54,6 +54,7 @@ return -ENODEV; prop_val = of_get_address(node, 0, &prop_size, NULL); + of_node_put(node); if (!prop_val) return -EINVAL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-cns3xxx/core.c +++ linux-azure-5.4.0/arch/arm/mach-cns3xxx/core.c @@ -376,6 +376,7 @@ /* De-Asscer SATA Reset */ cns3xxx_pwr_soft_rst(CNS3XXX_PWR_SOFTWARE_RST(SATA)); } + of_node_put(dn); dn = of_find_compatible_node(NULL, NULL, "cavium,cns3420-sdhci"); if (of_device_is_available(dn)) { @@ -389,6 +390,7 @@ cns3xxx_pwr_clk_en(CNS3XXX_PWR_CLK_EN(SDIO)); cns3xxx_pwr_soft_rst(CNS3XXX_PWR_SOFTWARE_RST(SDIO)); } + of_node_put(dn); pm_power_off = cns3xxx_power_off; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-davinci/board-da850-evm.c +++ linux-azure-5.4.0/arch/arm/mach-davinci/board-da850-evm.c @@ -1101,11 +1101,13 @@ int ret; u32 val; struct davinci_soc_info *soc_info = &davinci_soc_info; - u8 rmii_en = soc_info->emac_pdata->rmii_en; + u8 rmii_en; if (!machine_is_davinci_da850_evm()) return 0; + rmii_en = soc_info->emac_pdata->rmii_en; + cfg_chip3_base = DA8XX_SYSCFG0_VIRT(DA8XX_CFGCHIP3_REG); val = __raw_readl(cfg_chip3_base); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-exynos/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-exynos/Kconfig @@ -8,7 +8,6 @@ menuconfig ARCH_EXYNOS bool "Samsung EXYNOS" depends on ARCH_MULTI_V7 - select ARCH_HAS_HOLES_MEMORYMODEL select ARCH_SUPPORTS_BIG_ENDIAN select ARM_AMBA select ARM_GIC only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-exynos/exynos.c +++ linux-azure-5.4.0/arch/arm/mach-exynos/exynos.c @@ -46,6 +46,7 @@ sysram_base_addr = of_iomap(node, 0); sysram_base_phys = of_translate_address(node, of_get_address(node, 0, NULL, NULL)); + of_node_put(node); break; } @@ -53,6 +54,7 @@ if (!of_device_is_available(node)) continue; sysram_ns_base_addr = of_iomap(node, 0); + of_node_put(node); break; } } @@ -134,6 +136,7 @@ np = of_find_matching_node(NULL, exynos_dt_pmu_match); if (np) pmu_base_addr = of_iomap(np, 0); + of_node_put(np); } static void __init exynos_init_irq(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-highbank/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-highbank/Kconfig @@ -2,7 +2,6 @@ config ARCH_HIGHBANK bool "Calxeda ECX-1000/2000 (Highbank/Midway)" depends on ARCH_MULTI_V7 - select ARCH_HAS_HOLES_MEMORYMODEL select ARCH_SUPPORTS_BIG_ENDIAN select ARM_AMBA select ARM_ERRATA_764369 if SMP only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-hisi/platsmp.c +++ linux-azure-5.4.0/arch/arm/mach-hisi/platsmp.c @@ -67,14 +67,17 @@ } ctrl_base = of_iomap(np, 0); if (!ctrl_base) { + of_node_put(np); pr_err("failed to map address\n"); return; } if (of_property_read_u32(np, "smp-offset", &offset) < 0) { + of_node_put(np); pr_err("failed to find smp-offset property\n"); return; } ctrl_base += offset; + of_node_put(np); } } @@ -160,6 +163,7 @@ if (WARN_ON(!node)) return -1; ctrl_base = of_iomap(node, 0); + of_node_put(node); /* set the secondary core boot from DDR */ remap_reg_value = readl_relaxed(ctrl_base + REG_SC_CTRL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-imx/mmdc.c +++ linux-azure-5.4.0/arch/arm/mach-imx/mmdc.c @@ -103,6 +103,7 @@ struct perf_event *mmdc_events[MMDC_NUM_COUNTERS]; struct hlist_node node; struct fsl_mmdc_devtype_data *devtype_data; + struct clk *mmdc_ipg_clk; }; /* @@ -462,11 +463,14 @@ cpuhp_state_remove_instance_nocalls(cpuhp_mmdc_state, &pmu_mmdc->node); perf_pmu_unregister(&pmu_mmdc->pmu); + iounmap(pmu_mmdc->mmdc_base); + clk_disable_unprepare(pmu_mmdc->mmdc_ipg_clk); kfree(pmu_mmdc); return 0; } -static int imx_mmdc_perf_init(struct platform_device *pdev, void __iomem *mmdc_base) +static int imx_mmdc_perf_init(struct platform_device *pdev, void __iomem *mmdc_base, + struct clk *mmdc_ipg_clk) { struct mmdc_pmu *pmu_mmdc; char *name; @@ -494,6 +498,7 @@ } 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 @@ -529,7 +534,7 @@ #else #define imx_mmdc_remove NULL -#define imx_mmdc_perf_init(pdev, mmdc_base) 0 +#define imx_mmdc_perf_init(pdev, mmdc_base, mmdc_ipg_clk) 0 #endif static int imx_mmdc_probe(struct platform_device *pdev) @@ -567,7 +572,13 @@ val &= ~(1 << BP_MMDC_MAPSR_PSD); writel_relaxed(val, reg); - return imx_mmdc_perf_init(pdev, mmdc_base); + err = imx_mmdc_perf_init(pdev, mmdc_base, mmdc_ipg_clk); + if (err) { + iounmap(mmdc_base); + clk_disable_unprepare(mmdc_ipg_clk); + } + + return err; } int imx_mmdc_get_ddr_type(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-imx/suspend-imx53.S +++ linux-azure-5.4.0/arch/arm/mach-imx/suspend-imx53.S @@ -28,11 +28,11 @@ * ^ * ^ * imx53_suspend code - * PM_INFO structure(imx53_suspend_info) + * PM_INFO structure(imx5_cpu_suspend_info) * ======================== low address ======================= */ -/* Offsets of members of struct imx53_suspend_info */ +/* Offsets of members of struct imx5_cpu_suspend_info */ #define SUSPEND_INFO_MX53_M4IF_V_OFFSET 0x0 #define SUSPEND_INFO_MX53_IOMUXC_V_OFFSET 0x4 #define SUSPEND_INFO_MX53_IO_COUNT_OFFSET 0x8 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-iop32x/include/mach/entry-macro.S +++ linux-azure-5.4.0/arch/arm/mach-iop32x/include/mach/entry-macro.S @@ -20,7 +20,7 @@ mrc p6, 0, \irqstat, c8, c0, 0 @ Read IINTSRC cmp \irqstat, #0 clzne \irqnr, \irqstat - rsbne \irqnr, \irqnr, #31 + rsbne \irqnr, \irqnr, #32 .endm .macro arch_ret_to_user, tmp1, tmp2 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-iop32x/include/mach/irqs.h +++ linux-azure-5.4.0/arch/arm/mach-iop32x/include/mach/irqs.h @@ -9,6 +9,6 @@ #ifndef __IRQS_H #define __IRQS_H -#define NR_IRQS 32 +#define NR_IRQS 33 #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-iop32x/irq.c +++ linux-azure-5.4.0/arch/arm/mach-iop32x/irq.c @@ -32,14 +32,14 @@ static void iop32x_irq_mask(struct irq_data *d) { - iop32x_mask &= ~(1 << d->irq); + iop32x_mask &= ~(1 << (d->irq - 1)); intctl_write(iop32x_mask); } static void iop32x_irq_unmask(struct irq_data *d) { - iop32x_mask |= 1 << d->irq; + iop32x_mask |= 1 << (d->irq - 1); intctl_write(iop32x_mask); } @@ -65,7 +65,7 @@ machine_is_em7210()) *IOP3XX_PCIIRSR = 0x0f; - for (i = 0; i < NR_IRQS; i++) { + for (i = 1; i < NR_IRQS; i++) { irq_set_chip_and_handler(i, &ext_chip, handle_level_irq); irq_clear_status_flags(i, IRQ_NOREQUEST | IRQ_NOPROBE); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-iop32x/irqs.h +++ linux-azure-5.4.0/arch/arm/mach-iop32x/irqs.h @@ -7,36 +7,40 @@ #ifndef __IOP32X_IRQS_H #define __IOP32X_IRQS_H +/* Interrupts in Linux start at 1, hardware starts at 0 */ + +#define IOP_IRQ(x) ((x) + 1) + /* * IOP80321 chipset interrupts */ -#define IRQ_IOP32X_DMA0_EOT 0 -#define IRQ_IOP32X_DMA0_EOC 1 -#define IRQ_IOP32X_DMA1_EOT 2 -#define IRQ_IOP32X_DMA1_EOC 3 -#define IRQ_IOP32X_AA_EOT 6 -#define IRQ_IOP32X_AA_EOC 7 -#define IRQ_IOP32X_CORE_PMON 8 -#define IRQ_IOP32X_TIMER0 9 -#define IRQ_IOP32X_TIMER1 10 -#define IRQ_IOP32X_I2C_0 11 -#define IRQ_IOP32X_I2C_1 12 -#define IRQ_IOP32X_MESSAGING 13 -#define IRQ_IOP32X_ATU_BIST 14 -#define IRQ_IOP32X_PERFMON 15 -#define IRQ_IOP32X_CORE_PMU 16 -#define IRQ_IOP32X_BIU_ERR 17 -#define IRQ_IOP32X_ATU_ERR 18 -#define IRQ_IOP32X_MCU_ERR 19 -#define IRQ_IOP32X_DMA0_ERR 20 -#define IRQ_IOP32X_DMA1_ERR 21 -#define IRQ_IOP32X_AA_ERR 23 -#define IRQ_IOP32X_MSG_ERR 24 -#define IRQ_IOP32X_SSP 25 -#define IRQ_IOP32X_XINT0 27 -#define IRQ_IOP32X_XINT1 28 -#define IRQ_IOP32X_XINT2 29 -#define IRQ_IOP32X_XINT3 30 -#define IRQ_IOP32X_HPI 31 +#define IRQ_IOP32X_DMA0_EOT IOP_IRQ(0) +#define IRQ_IOP32X_DMA0_EOC IOP_IRQ(1) +#define IRQ_IOP32X_DMA1_EOT IOP_IRQ(2) +#define IRQ_IOP32X_DMA1_EOC IOP_IRQ(3) +#define IRQ_IOP32X_AA_EOT IOP_IRQ(6) +#define IRQ_IOP32X_AA_EOC IOP_IRQ(7) +#define IRQ_IOP32X_CORE_PMON IOP_IRQ(8) +#define IRQ_IOP32X_TIMER0 IOP_IRQ(9) +#define IRQ_IOP32X_TIMER1 IOP_IRQ(10) +#define IRQ_IOP32X_I2C_0 IOP_IRQ(11) +#define IRQ_IOP32X_I2C_1 IOP_IRQ(12) +#define IRQ_IOP32X_MESSAGING IOP_IRQ(13) +#define IRQ_IOP32X_ATU_BIST IOP_IRQ(14) +#define IRQ_IOP32X_PERFMON IOP_IRQ(15) +#define IRQ_IOP32X_CORE_PMU IOP_IRQ(16) +#define IRQ_IOP32X_BIU_ERR IOP_IRQ(17) +#define IRQ_IOP32X_ATU_ERR IOP_IRQ(18) +#define IRQ_IOP32X_MCU_ERR IOP_IRQ(19) +#define IRQ_IOP32X_DMA0_ERR IOP_IRQ(20) +#define IRQ_IOP32X_DMA1_ERR IOP_IRQ(21) +#define IRQ_IOP32X_AA_ERR IOP_IRQ(23) +#define IRQ_IOP32X_MSG_ERR IOP_IRQ(24) +#define IRQ_IOP32X_SSP IOP_IRQ(25) +#define IRQ_IOP32X_XINT0 IOP_IRQ(27) +#define IRQ_IOP32X_XINT1 IOP_IRQ(28) +#define IRQ_IOP32X_XINT2 IOP_IRQ(29) +#define IRQ_IOP32X_XINT3 IOP_IRQ(30) +#define IRQ_IOP32X_HPI IOP_IRQ(31) #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-mediatek/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-mediatek/Kconfig @@ -30,6 +30,7 @@ config MACH_MT7629 bool "MediaTek MT7629 SoCs support" default ARCH_MEDIATEK + select HAVE_ARM_ARCH_TIMER config MACH_MT8127 bool "MediaTek MT8127 SoCs support" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-meson/platsmp.c +++ linux-azure-5.4.0/arch/arm/mach-meson/platsmp.c @@ -71,6 +71,7 @@ } sram_base = of_iomap(node, 0); + of_node_put(node); if (!sram_base) { pr_err("Couldn't map SRAM registers\n"); return; @@ -91,6 +92,7 @@ } scu_base = of_iomap(node, 0); + of_node_put(node); if (!scu_base) { pr_err("Couldn't map SCU registers\n"); return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-mmp/sram.c +++ linux-azure-5.4.0/arch/arm/mach-mmp/sram.c @@ -72,6 +72,8 @@ if (!info) return -ENOMEM; + platform_set_drvdata(pdev, info); + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (res == NULL) { dev_err(&pdev->dev, "no memory resource defined\n"); @@ -107,8 +109,6 @@ list_add(&info->node, &sram_bank_list); mutex_unlock(&sram_lock); - platform_set_drvdata(pdev, info); - dev_info(&pdev->dev, "initialized\n"); return 0; @@ -127,17 +127,19 @@ struct sram_bank_info *info; info = platform_get_drvdata(pdev); - if (info == NULL) - return -ENODEV; - mutex_lock(&sram_lock); - list_del(&info->node); - mutex_unlock(&sram_lock); + if (info->sram_size) { + mutex_lock(&sram_lock); + list_del(&info->node); + mutex_unlock(&sram_lock); + + gen_pool_destroy(info->gpool); + iounmap(info->sram_virt); + kfree(info->pool_name); + } - gen_pool_destroy(info->gpool); - iounmap(info->sram_virt); - kfree(info->pool_name); kfree(info); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap1/clock.c +++ linux-azure-5.4.0/arch/arm/mach-omap1/clock.c @@ -41,7 +41,7 @@ unsigned long omap1_uart_recalc(struct clk *clk) { unsigned int val = __raw_readl(clk->enable_reg); - return val & clk->enable_bit ? 48000000 : 12000000; + return val & 1 << clk->enable_bit ? 48000000 : 12000000; } unsigned long omap1_sossi_recalc(struct clk *clk) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap1/pm.c +++ linux-azure-5.4.0/arch/arm/mach-omap1/pm.c @@ -596,11 +596,6 @@ return IRQ_HANDLED; } -static struct irqaction omap_wakeup_irq = { - .name = "peripheral wakeup", - .handler = omap_wakeup_interrupt -}; - static const struct platform_suspend_ops omap_pm_ops = { @@ -613,6 +608,7 @@ static int __init omap_pm_init(void) { int error = 0; + int irq; if (!cpu_class_is_omap1()) return -ENODEV; @@ -656,9 +652,12 @@ arm_pm_idle = omap1_pm_idle; if (cpu_is_omap7xx()) - setup_irq(INT_7XX_WAKE_UP_REQ, &omap_wakeup_irq); + irq = INT_7XX_WAKE_UP_REQ; else if (cpu_is_omap16xx()) - setup_irq(INT_1610_WAKE_UP_REQ, &omap_wakeup_irq); + irq = INT_1610_WAKE_UP_REQ; + if (request_irq(irq, omap_wakeup_interrupt, 0, "peripheral wakeup", + NULL)) + pr_err("Failed to request irq %d (peripheral wakeup)\n", irq); /* Program new power ramp-up time * (0 for most boards since we don't lower voltage when in deep sleep) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap1/time.c +++ linux-azure-5.4.0/arch/arm/mach-omap1/time.c @@ -155,15 +155,11 @@ return IRQ_HANDLED; } -static struct irqaction omap_mpu_timer1_irq = { - .name = "mpu_timer1", - .flags = IRQF_TIMER | IRQF_IRQPOLL, - .handler = omap_mpu_timer1_interrupt, -}; - static __init void omap_init_mpu_timer(unsigned long rate) { - setup_irq(INT_TIMER1, &omap_mpu_timer1_irq); + if (request_irq(INT_TIMER1, omap_mpu_timer1_interrupt, + IRQF_TIMER | IRQF_IRQPOLL, "mpu_timer1", NULL)) + pr_err("Failed to request irq %d (mpu_timer1)\n", INT_TIMER1); omap_mpu_timer_start(0, (rate / HZ) - 1, 1); clockevent_mpu_timer1.cpumask = cpumask_of(0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap1/timer32k.c +++ linux-azure-5.4.0/arch/arm/mach-omap1/timer32k.c @@ -148,15 +148,11 @@ return IRQ_HANDLED; } -static struct irqaction omap_32k_timer_irq = { - .name = "32KHz timer", - .flags = IRQF_TIMER | IRQF_IRQPOLL, - .handler = omap_32k_timer_interrupt, -}; - static __init void omap_init_32k_timer(void) { - setup_irq(INT_OS_TIMER, &omap_32k_timer_irq); + if (request_irq(INT_OS_TIMER, omap_32k_timer_interrupt, + IRQF_TIMER | IRQF_IRQPOLL, "32KHz timer", NULL)) + pr_err("Failed to request irq %d(32KHz timer)\n", INT_OS_TIMER); clockevent_32k_timer.cpumask = cpumask_of(0); clockevents_config_and_register(&clockevent_32k_timer, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-omap2/Kconfig @@ -94,7 +94,7 @@ config ARCH_OMAP2PLUS bool select ARCH_HAS_BANDGAP - select ARCH_HAS_HOLES_MEMORYMODEL + select ARCH_HAS_RESET_CONTROLLER select ARCH_OMAP select CLKSRC_MMIO select GENERIC_IRQ_CHIP only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/board-generic.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/board-generic.c @@ -327,7 +327,7 @@ .init_late = dra7xx_init_late, .init_irq = omap_gic_of_init, .init_machine = omap_generic_init, - .init_time = omap5_realtime_timer_init, + .init_time = omap3_gptimer_timer_init, .dt_compat = dra74x_boards_compat, .restart = omap44xx_restart, MACHINE_END @@ -350,7 +350,7 @@ .init_late = dra7xx_init_late, .init_irq = omap_gic_of_init, .init_machine = omap_generic_init, - .init_time = omap5_realtime_timer_init, + .init_time = omap3_gptimer_timer_init, .dt_compat = dra72x_boards_compat, .restart = omap44xx_restart, MACHINE_END only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/board-n8x0.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/board-n8x0.c @@ -322,6 +322,7 @@ static void n8x0_mmc_callback(void *data, u8 card_mask) { +#ifdef CONFIG_MMC_OMAP int bit, *openp, index; if (board_is_n800()) { @@ -339,7 +340,6 @@ else *openp = 0; -#ifdef CONFIG_MMC_OMAP omap_mmc_notify_cover_event(mmc_device, index, *openp); #else pr_warn("MMC: notify cover event not available\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/omap4-common.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/omap4-common.c @@ -314,10 +314,12 @@ np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-gic"); gic_dist_base_addr = of_iomap(np, 0); + of_node_put(np); WARN_ON(!gic_dist_base_addr); np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-twd-timer"); twd_base = of_iomap(np, 0); + of_node_put(np); WARN_ON(!twd_base); skip_errata_init: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/prm3xxx.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/prm3xxx.c @@ -708,6 +708,7 @@ } irq_num = of_irq_get(np, 0); + of_node_put(np); if (irq_num == -EPROBE_DEFER) return irq_num; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/sleep34xx.S +++ linux-azure-5.4.0/arch/arm/mach-omap2/sleep34xx.S @@ -72,7 +72,7 @@ stmfd sp!, {lr} @ save registers on stack /* Setup so that we will disable and enable l2 */ mov r1, #0x1 - adrl r3, l2dis_3630_offset @ may be too distant for plain adr + adr r3, l2dis_3630_offset ldr r2, [r3] @ value for offset str r1, [r2, r3] @ write to l2dis_3630 ldmfd sp!, {pc} @ restore regs and return only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-omap2/timer.c +++ linux-azure-5.4.0/arch/arm/mach-omap2/timer.c @@ -42,6 +42,7 @@ #include #include #include +#include #include @@ -63,15 +64,28 @@ /* Clockevent code */ -static struct omap_dm_timer clkev; -static struct clock_event_device clockevent_gpt; - /* Clockevent hwmod for am335x and am437x suspend */ static struct omap_hwmod *clockevent_gpt_hwmod; /* Clockesource hwmod for am437x suspend */ static struct omap_hwmod *clocksource_gpt_hwmod; +struct dmtimer_clockevent { + struct clock_event_device dev; + struct omap_dm_timer timer; +}; + +static struct dmtimer_clockevent clockevent; + +static struct omap_dm_timer *to_dmtimer(struct clock_event_device *clockevent) +{ + struct dmtimer_clockevent *clkevt = + container_of(clockevent, struct dmtimer_clockevent, dev); + struct omap_dm_timer *timer = &clkevt->timer; + + return timer; +} + #ifdef CONFIG_SOC_HAS_REALTIME_COUNTER static unsigned long arch_timer_freq; @@ -83,24 +97,21 @@ static irqreturn_t omap2_gp_timer_interrupt(int irq, void *dev_id) { - struct clock_event_device *evt = &clockevent_gpt; - - __omap_dm_timer_write_status(&clkev, OMAP_TIMER_INT_OVERFLOW); + struct dmtimer_clockevent *clkevt = dev_id; + struct clock_event_device *evt = &clkevt->dev; + struct omap_dm_timer *timer = &clkevt->timer; + __omap_dm_timer_write_status(timer, OMAP_TIMER_INT_OVERFLOW); evt->event_handler(evt); return IRQ_HANDLED; } -static struct irqaction omap2_gp_timer_irq = { - .name = "gp_timer", - .flags = IRQF_TIMER | IRQF_IRQPOLL, - .handler = omap2_gp_timer_interrupt, -}; - static int omap2_gp_timer_set_next_event(unsigned long cycles, struct clock_event_device *evt) { - __omap_dm_timer_load_start(&clkev, OMAP_TIMER_CTRL_ST, + struct omap_dm_timer *timer = to_dmtimer(evt); + + __omap_dm_timer_load_start(timer, OMAP_TIMER_CTRL_ST, 0xffffffff - cycles, OMAP_TIMER_POSTED); return 0; @@ -108,22 +119,26 @@ static int omap2_gp_timer_shutdown(struct clock_event_device *evt) { - __omap_dm_timer_stop(&clkev, OMAP_TIMER_POSTED, clkev.rate); + struct omap_dm_timer *timer = to_dmtimer(evt); + + __omap_dm_timer_stop(timer, OMAP_TIMER_POSTED, timer->rate); + return 0; } static int omap2_gp_timer_set_periodic(struct clock_event_device *evt) { + struct omap_dm_timer *timer = to_dmtimer(evt); u32 period; - __omap_dm_timer_stop(&clkev, OMAP_TIMER_POSTED, clkev.rate); + __omap_dm_timer_stop(timer, OMAP_TIMER_POSTED, timer->rate); - period = clkev.rate / HZ; + period = timer->rate / HZ; period -= 1; /* Looks like we need to first set the load value separately */ - __omap_dm_timer_write(&clkev, OMAP_TIMER_LOAD_REG, 0xffffffff - period, + __omap_dm_timer_write(timer, OMAP_TIMER_LOAD_REG, 0xffffffff - period, OMAP_TIMER_POSTED); - __omap_dm_timer_load_start(&clkev, + __omap_dm_timer_load_start(timer, OMAP_TIMER_CTRL_AR | OMAP_TIMER_CTRL_ST, 0xffffffff - period, OMAP_TIMER_POSTED); return 0; @@ -137,26 +152,17 @@ omap_hwmod_idle(clockevent_gpt_hwmod); } -static void omap_clkevt_unidle(struct clock_event_device *unused) +static void omap_clkevt_unidle(struct clock_event_device *evt) { + struct omap_dm_timer *timer = to_dmtimer(evt); + if (!clockevent_gpt_hwmod) return; omap_hwmod_enable(clockevent_gpt_hwmod); - __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW); + __omap_dm_timer_int_enable(timer, OMAP_TIMER_INT_OVERFLOW); } -static struct clock_event_device clockevent_gpt = { - .features = CLOCK_EVT_FEAT_PERIODIC | - CLOCK_EVT_FEAT_ONESHOT, - .rating = 300, - .set_next_event = omap2_gp_timer_set_next_event, - .set_state_shutdown = omap2_gp_timer_shutdown, - .set_state_periodic = omap2_gp_timer_set_periodic, - .set_state_oneshot = omap2_gp_timer_shutdown, - .tick_resume = omap2_gp_timer_shutdown, -}; - static const struct of_device_id omap_timer_match[] __initconst = { { .compatible = "ti,omap2420-timer", }, { .compatible = "ti,omap3430-timer", }, @@ -362,47 +368,104 @@ } #endif -static void __init omap2_gp_clockevent_init(int gptimer_id, - const char *fck_source, - const char *property) +static void __init dmtimer_clkevt_init_common(struct dmtimer_clockevent *clkevt, + int gptimer_id, + const char *fck_source, + unsigned int features, + const struct cpumask *cpumask, + const char *property, + int rating, const char *name) { + struct omap_dm_timer *timer = &clkevt->timer; int res; - clkev.id = gptimer_id; - clkev.errata = omap_dm_timer_get_errata(); + timer->id = gptimer_id; + timer->errata = omap_dm_timer_get_errata(); + clkevt->dev.features = features; + clkevt->dev.rating = rating; + clkevt->dev.set_next_event = omap2_gp_timer_set_next_event; + clkevt->dev.set_state_shutdown = omap2_gp_timer_shutdown; + clkevt->dev.set_state_periodic = omap2_gp_timer_set_periodic; + clkevt->dev.set_state_oneshot = omap2_gp_timer_shutdown; + clkevt->dev.tick_resume = omap2_gp_timer_shutdown; /* * For clock-event timers we never read the timer counter and * so we are not impacted by errata i103 and i767. Therefore, * we can safely ignore this errata for clock-event timers. */ - __omap_dm_timer_override_errata(&clkev, OMAP_TIMER_ERRATA_I103_I767); + __omap_dm_timer_override_errata(timer, OMAP_TIMER_ERRATA_I103_I767); - res = omap_dm_timer_init_one(&clkev, fck_source, property, - &clockevent_gpt.name, OMAP_TIMER_POSTED); + res = omap_dm_timer_init_one(timer, fck_source, property, + &clkevt->dev.name, OMAP_TIMER_POSTED); BUG_ON(res); - omap2_gp_timer_irq.dev_id = &clkev; - setup_irq(clkev.irq, &omap2_gp_timer_irq); + clkevt->dev.cpumask = cpumask; + clkevt->dev.irq = omap_dm_timer_get_irq(timer); - __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW); + if (request_irq(clkevt->dev.irq, omap2_gp_timer_interrupt, + IRQF_TIMER | IRQF_IRQPOLL, name, clkevt)) + pr_err("Failed to request irq %d (gp_timer)\n", clkevt->dev.irq); - clockevent_gpt.cpumask = cpu_possible_mask; - clockevent_gpt.irq = omap_dm_timer_get_irq(&clkev); - clockevents_config_and_register(&clockevent_gpt, clkev.rate, - 3, /* Timer internal resynch latency */ - 0xffffffff); + __omap_dm_timer_int_enable(timer, OMAP_TIMER_INT_OVERFLOW); if (soc_is_am33xx() || soc_is_am43xx()) { - clockevent_gpt.suspend = omap_clkevt_idle; - clockevent_gpt.resume = omap_clkevt_unidle; + clkevt->dev.suspend = omap_clkevt_idle; + clkevt->dev.resume = omap_clkevt_unidle; clockevent_gpt_hwmod = - omap_hwmod_lookup(clockevent_gpt.name); + omap_hwmod_lookup(clkevt->dev.name); } - pr_info("OMAP clockevent source: %s at %lu Hz\n", clockevent_gpt.name, - clkev.rate); + pr_info("OMAP clockevent source: %s at %lu Hz\n", clkevt->dev.name, + timer->rate); +} + +static DEFINE_PER_CPU(struct dmtimer_clockevent, dmtimer_percpu_timer); + +static int omap_gptimer_starting_cpu(unsigned int cpu) +{ + struct dmtimer_clockevent *clkevt = per_cpu_ptr(&dmtimer_percpu_timer, cpu); + struct clock_event_device *dev = &clkevt->dev; + struct omap_dm_timer *timer = &clkevt->timer; + + clockevents_config_and_register(dev, timer->rate, 3, ULONG_MAX); + irq_force_affinity(dev->irq, cpumask_of(cpu)); + + return 0; +} + +static int __init dmtimer_percpu_quirk_init(void) +{ + struct dmtimer_clockevent *clkevt; + struct clock_event_device *dev; + struct device_node *arm_timer; + struct omap_dm_timer *timer; + int cpu = 0; + + arm_timer = of_find_compatible_node(NULL, NULL, "arm,armv7-timer"); + if (of_device_is_available(arm_timer)) { + pr_warn_once("ARM architected timer wrap issue i940 detected\n"); + return 0; + } + + for_each_possible_cpu(cpu) { + clkevt = per_cpu_ptr(&dmtimer_percpu_timer, cpu); + dev = &clkevt->dev; + timer = &clkevt->timer; + + dmtimer_clkevt_init_common(clkevt, 0, "timer_sys_ck", + CLOCK_EVT_FEAT_ONESHOT, + cpumask_of(cpu), + "assigned-clock-parents", + 500, "percpu timer"); + } + + cpuhp_setup_state(CPUHP_AP_OMAP_DM_TIMER_STARTING, + "clockevents/omap/gptimer:starting", + omap_gptimer_starting_cpu, NULL); + + return 0; } /* Clocksource code */ @@ -542,7 +605,15 @@ { omap_clk_init(); omap_dmtimer_init(); - omap2_gp_clockevent_init(clkev_nr, clkev_src, clkev_prop); + dmtimer_clkevt_init_common(&clockevent, clkev_nr, clkev_src, + CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, + cpu_possible_mask, clkev_prop, 300, "clockevent"); + clockevents_config_and_register(&clockevent.dev, clockevent.timer.rate, + 3, /* Timer internal resynch latency */ + 0xffffffff); + + if (soc_is_dra7xx()) + dmtimer_percpu_quirk_init(); /* Enable the use of clocksource="gp_timer" kernel parameter */ if (use_gptimer_clksrc || gptimer) @@ -571,7 +642,7 @@ #endif /* CONFIG_ARCH_OMAP3 */ #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_SOC_AM33XX) || \ - defined(CONFIG_SOC_AM43XX) + defined(CONFIG_SOC_AM43XX) || defined(CONFIG_SOC_DRA7XX) void __init omap3_gptimer_timer_init(void) { __omap_sync32k_timer_init(2, "timer_sys_ck", NULL, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-pxa/cm-x300.c +++ linux-azure-5.4.0/arch/arm/mach-pxa/cm-x300.c @@ -355,13 +355,13 @@ static struct gpiod_lookup_table cm_x300_spi_gpiod_table = { .dev_id = "spi_gpio", .table = { - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_SCL, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_SCL - GPIO_LCD_BASE, "sck", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_DIN, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_DIN - GPIO_LCD_BASE, "mosi", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_DOUT, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_DOUT - GPIO_LCD_BASE, "miso", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("gpio-pxa", GPIO_LCD_CS, + GPIO_LOOKUP("pca9555.1", GPIO_LCD_CS - GPIO_LCD_BASE, "cs", GPIO_ACTIVE_HIGH), { }, }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-pxa/magician.c +++ linux-azure-5.4.0/arch/arm/mach-pxa/magician.c @@ -675,7 +675,7 @@ static struct gpiod_lookup_table bq24022_gpiod_table = { .dev_id = "gpio-regulator", .table = { - GPIO_LOOKUP("gpio-pxa", EGPIO_MAGICIAN_BQ24022_ISET2, + GPIO_LOOKUP("htc-egpio-0", EGPIO_MAGICIAN_BQ24022_ISET2 - MAGICIAN_EGPIO_BASE, NULL, GPIO_ACTIVE_HIGH), GPIO_LOOKUP("gpio-pxa", GPIO30_MAGICIAN_BQ24022_nCHARGE_EN, "enable", GPIO_ACTIVE_LOW), only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-pxa/tosa.c +++ linux-azure-5.4.0/arch/arm/mach-pxa/tosa.c @@ -295,9 +295,9 @@ .table = { GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_nSD_DETECT, "cd", GPIO_ACTIVE_LOW), - GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_SD_WP, + GPIO_LOOKUP("sharp-scoop.0", TOSA_GPIO_SD_WP - TOSA_SCOOP_GPIO_BASE, "wp", GPIO_ACTIVE_LOW), - GPIO_LOOKUP("gpio-pxa", TOSA_GPIO_PWR_ON, + GPIO_LOOKUP("sharp-scoop.0", TOSA_GPIO_PWR_ON - TOSA_SCOOP_GPIO_BASE, "power", GPIO_ACTIVE_HIGH), { }, }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-s3c24xx/mach-jive.c +++ linux-azure-5.4.0/arch/arm/mach-s3c24xx/mach-jive.c @@ -237,11 +237,11 @@ unsigned long set; if (options == NULL || options[0] == '\0') - return 0; + return 1; if (kstrtoul(options, 10, &set)) { printk(KERN_ERR "failed to parse mtdset=%s\n", options); - return 0; + return 1; } switch (set) { @@ -256,7 +256,7 @@ "using default.", set); } - return 0; + return 1; } /* parse the mtdset= option given to the kernel command line */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-s5pv210/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-s5pv210/Kconfig @@ -8,7 +8,6 @@ config ARCH_S5PV210 bool "Samsung S5PV210/S5PC110" depends on ARCH_MULTI_V7 - select ARCH_HAS_HOLES_MEMORYMODEL select ARM_VIC select CLKSRC_SAMSUNG_PWM select COMMON_CLK_SAMSUNG only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c +++ linux-azure-5.4.0/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c @@ -125,6 +125,7 @@ list_for_each_entry_safe(pos, tmp, &quirk_list, list) { list_del(&pos->list); + of_node_put(pos->np); kfree(pos); } @@ -154,8 +155,10 @@ return -ENODEV; for_each_matching_node_and_match(np, rcar_gen2_quirk_match, &id) { - if (!of_device_is_available(np)) + if (!of_device_is_available(np)) { + of_node_put(np); break; + } ret = of_property_read_u32(np, "reg", &addr); if (ret) /* Skip invalid entry and continue */ @@ -164,6 +167,7 @@ quirk = kzalloc(sizeof(*quirk), GFP_KERNEL); if (!quirk) { ret = -ENOMEM; + of_node_put(np); goto err_mem; } @@ -171,11 +175,12 @@ memcpy(&quirk->i2c_msg, id->data, sizeof(quirk->i2c_msg)); quirk->id = id; - quirk->np = np; + quirk->np = of_node_get(np); quirk->i2c_msg.addr = addr; ret = of_irq_parse_one(np, 0, argsa); if (ret) { /* Skip invalid entry and continue */ + of_node_put(np); kfree(quirk); continue; } @@ -222,6 +227,7 @@ err_mem: list_for_each_entry_safe(pos, tmp, &quirk_list, list) { list_del(&pos->list); + of_node_put(pos->np); kfree(pos); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-socfpga/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-socfpga/Kconfig @@ -2,6 +2,7 @@ menuconfig ARCH_SOCFPGA bool "Altera SOCFPGA family" depends on ARCH_MULTI_V7 + select ARCH_HAS_RESET_CONTROLLER select ARCH_SUPPORTS_BIG_ENDIAN select ARM_AMBA select ARM_GIC @@ -19,6 +20,7 @@ select PL310_ERRATA_727915 select PL310_ERRATA_753970 if PL310 select PL310_ERRATA_769419 + select RESET_CONTROLLER if ARCH_SOCFPGA config SOCFPGA_SUSPEND only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-socfpga/core.h +++ linux-azure-5.4.0/arch/arm/mach-socfpga/core.h @@ -33,7 +33,7 @@ u32 socfpga_sdram_self_refresh(u32 sdr_base); extern unsigned int socfpga_sdram_self_refresh_sz; -extern char secondary_trampoline, secondary_trampoline_end; +extern char secondary_trampoline[], secondary_trampoline_end[]; extern unsigned long socfpga_cpu1start_addr; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-socfpga/platsmp.c +++ linux-azure-5.4.0/arch/arm/mach-socfpga/platsmp.c @@ -20,14 +20,14 @@ static int socfpga_boot_secondary(unsigned int cpu, struct task_struct *idle) { - int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; + int trampoline_size = secondary_trampoline_end - secondary_trampoline; if (socfpga_cpu1start_addr) { /* This will put CPU #1 into reset. */ writel(RSTMGR_MPUMODRST_CPU1, rst_manager_base_addr + SOCFPGA_RSTMGR_MODMPURST); - memcpy(phys_to_virt(0), &secondary_trampoline, trampoline_size); + memcpy(phys_to_virt(0), secondary_trampoline, trampoline_size); writel(__pa_symbol(secondary_startup), sys_manager_base_addr + (socfpga_cpu1start_addr & 0x000000ff)); @@ -45,12 +45,12 @@ static int socfpga_a10_boot_secondary(unsigned int cpu, struct task_struct *idle) { - int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; + int trampoline_size = secondary_trampoline_end - secondary_trampoline; if (socfpga_cpu1start_addr) { writel(RSTMGR_MPUMODRST_CPU1, rst_manager_base_addr + SOCFPGA_A10_RSTMGR_MODMPURST); - memcpy(phys_to_virt(0), &secondary_trampoline, trampoline_size); + memcpy(phys_to_virt(0), secondary_trampoline, trampoline_size); writel(__pa_symbol(secondary_startup), sys_manager_base_addr + (socfpga_cpu1start_addr & 0x00000fff)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-tango/Kconfig +++ linux-azure-5.4.0/arch/arm/mach-tango/Kconfig @@ -3,7 +3,6 @@ bool "Sigma Designs Tango4 (SMP87xx)" depends on ARCH_MULTI_V7 # Cortex-A9 MPCore r3p0, PL310 r3p2 - select ARCH_HAS_HOLES_MEMORYMODEL select ARM_ERRATA_754322 select ARM_ERRATA_764369 if SMP select ARM_ERRATA_775420 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-vexpress/dcscb.c +++ linux-azure-5.4.0/arch/arm/mach-vexpress/dcscb.c @@ -143,6 +143,7 @@ if (!node) return -ENODEV; dcscb_base = of_iomap(node, 0); + of_node_put(node); if (!dcscb_base) return -EADDRNOTAVAIL; cfg = readl_relaxed(dcscb_base + DCS_CFG_R); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mach-zynq/common.c +++ linux-azure-5.4.0/arch/arm/mach-zynq/common.c @@ -77,6 +77,7 @@ } zynq_devcfg_base = of_iomap(np, 0); + of_node_put(np); if (!zynq_devcfg_base) { pr_err("%s: Unable to map I/O memory\n", __func__); return -1; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/Kconfig +++ linux-azure-5.4.0/arch/arm/mm/Kconfig @@ -743,6 +743,7 @@ config CPU_BIG_ENDIAN bool "Build big-endian kernel" depends on ARCH_SUPPORTS_BIG_ENDIAN + depends on !LD_IS_LLD help Say Y if you plan on running a kernel in big-endian mode. Note that your board must be properly built and your board @@ -752,7 +753,7 @@ config CPU_ENDIAN_BE8 bool depends on CPU_BIG_ENDIAN - default CPU_V6 || CPU_V6K || CPU_V7 + default CPU_V6 || CPU_V6K || CPU_V7 || CPU_V7M help Support for the BE-8 (big-endian) mode on ARMv6 and ARMv7 processors. @@ -832,6 +833,7 @@ config CPU_SPECTRE bool + select GENERIC_CPU_VULNERABILITIES config HARDEN_BRANCH_PREDICTOR bool "Harden the branch predictor against aliasing attacks" if EXPERT @@ -852,6 +854,16 @@ If unsure, say Y. +config HARDEN_BRANCH_HISTORY + bool "Harden Spectre style attacks against branch history" if EXPERT + depends on CPU_SPECTRE + default y + help + Speculation attacks against some high-performance processors can + make use of branch history to influence future speculation. When + taking an exception, a sequence of branches overwrites the branch + history, or branch history is invalidated. + config TLS_REG_EMUL bool select NEED_KUSER_HELPERS only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/alignment.c +++ linux-azure-5.4.0/arch/arm/mm/alignment.c @@ -935,6 +935,9 @@ if (type == TYPE_LDST) do_alignment_finish_ldst(addr, instr, regs, offset); + if (thumb_mode(regs)) + regs->ARM_cpsr = it_advance(regs->ARM_cpsr); + return 0; bad_or_fault: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/ioremap.c +++ linux-azure-5.4.0/arch/arm/mm/ioremap.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include @@ -301,7 +302,8 @@ * Don't allow RAM to be mapped with mismatched attributes - this * causes problems with ARMv6+ */ - if (WARN_ON(pfn_valid(pfn) && mtype != MT_MEMORY_RW)) + if (WARN_ON(memblock_is_map_memory(PFN_PHYS(pfn)) && + mtype != MT_MEMORY_RW)) return NULL; area = get_vm_area_caller(size, VM_IOREMAP, caller); @@ -498,3 +500,11 @@ { early_ioremap_setup(); } + +bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags) +{ + unsigned long pfn = PHYS_PFN(offset); + + return memblock_is_map_memory(pfn); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm1020.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm1020.S @@ -491,7 +491,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm1020_proc_info,#object __arm1020_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm1020e.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm1020e.S @@ -449,7 +449,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm1020e_proc_info,#object __arm1020e_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm1022.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm1022.S @@ -443,7 +443,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm1022_proc_info,#object __arm1022_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm1026.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm1026.S @@ -138,7 +138,7 @@ mov ip, #0 __flush_whole_cache: #ifndef CONFIG_CPU_DCACHE_DISABLE -1: mrc p15, 0, r15, c7, c14, 3 @ test, clean, invalidate +1: mrc p15, 0, APSR_nzcv, c7, c14, 3 @ test, clean, invalidate bne 1b #endif tst r2, #VM_EXEC @@ -363,7 +363,7 @@ #ifdef CONFIG_MMU mov r1, #0 #ifndef CONFIG_CPU_DCACHE_DISABLE -1: mrc p15, 0, r15, c7, c14, 3 @ test, clean, invalidate +1: mrc p15, 0, APSR_nzcv, c7, c14, 3 @ test, clean, invalidate bne 1b #endif #ifndef CONFIG_CPU_ICACHE_DISABLE @@ -437,7 +437,7 @@ string cpu_arm1026_name, "ARM1026EJ-S" .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm1026_proc_info,#object __arm1026_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm720.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm720.S @@ -172,7 +172,7 @@ * See for a definition of this structure. */ - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro arm720_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cpu_flush:req .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm740.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm740.S @@ -128,7 +128,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm740_proc_info,#object __arm740_proc_info: .long 0x41807400 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm7tdmi.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm7tdmi.S @@ -72,7 +72,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro arm7tdmi_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, \ extra_hwcaps=0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm920.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm920.S @@ -434,7 +434,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm920_proc_info,#object __arm920_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm922.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm922.S @@ -412,7 +412,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm922_proc_info,#object __arm922_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm925.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm925.S @@ -477,7 +477,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro arm925_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cache .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm926.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm926.S @@ -131,7 +131,7 @@ #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache #else -1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate +1: mrc p15, 0, APSR_nzcv, c7, c14, 3 @ test,clean,invalidate bne 1b #endif tst r2, #VM_EXEC @@ -358,7 +358,7 @@ mcr p15, 0, ip, c7, c6, 0 @ invalidate D cache #else @ && 'Clean & Invalidate whole DCache' -1: mrc p15, 0, r15, c7, c14, 3 @ test,clean,invalidate +1: mrc p15, 0, APSR_nzcv, c7, c14, 3 @ test,clean,invalidate bne 1b #endif mcr p15, 0, ip, c7, c5, 0 @ invalidate I cache @@ -460,7 +460,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm926_proc_info,#object __arm926_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm940.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm940.S @@ -340,7 +340,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm940_proc_info,#object __arm940_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm946.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm946.S @@ -395,7 +395,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __arm946_proc_info,#object __arm946_proc_info: .long 0x41009460 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-arm9tdmi.S +++ linux-azure-5.4.0/arch/arm/mm/proc-arm9tdmi.S @@ -66,7 +66,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro arm9tdmi_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req .type __\name\()_proc_info, #object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-fa526.S +++ linux-azure-5.4.0/arch/arm/mm/proc-fa526.S @@ -185,7 +185,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __fa526_proc_info,#object __fa526_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-feroceon.S +++ linux-azure-5.4.0/arch/arm/mm/proc-feroceon.S @@ -571,7 +571,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro feroceon_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cache:req .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-mohawk.S +++ linux-azure-5.4.0/arch/arm/mm/proc-mohawk.S @@ -416,7 +416,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __88sv331x_proc_info,#object __88sv331x_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-sa110.S +++ linux-azure-5.4.0/arch/arm/mm/proc-sa110.S @@ -196,7 +196,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .type __sa110_proc_info,#object __sa110_proc_info: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-sa1100.S +++ linux-azure-5.4.0/arch/arm/mm/proc-sa1100.S @@ -239,7 +239,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro sa1100_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-v6.S +++ linux-azure-5.4.0/arch/arm/mm/proc-v6.S @@ -261,7 +261,7 @@ string cpu_elf_name, "v6" .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" /* * Match any ARMv6 processor core. only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-v7.S +++ linux-azure-5.4.0/arch/arm/mm/proc-v7.S @@ -644,7 +644,7 @@ string cpu_elf_name, "v7" .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" /* * Standard v7 proc info content only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-v7m.S +++ linux-azure-5.4.0/arch/arm/mm/proc-v7m.S @@ -93,7 +93,7 @@ ret lr ENDPROC(cpu_cm7_proc_fin) - .section ".init.text", #alloc, #execinstr + .section ".init.text", "ax" __v7m_cm7_setup: mov r8, #(V7M_SCB_CCR_DC | V7M_SCB_CCR_IC| V7M_SCB_CCR_BP) @@ -177,7 +177,7 @@ string cpu_elf_name "v7m" string cpu_v7m_name "ARMv7-M" - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro __v7m_proc name, initfunc, cache_fns = nop_cache_fns, hwcaps = 0, proc_fns = v7m_processor_functions .long 0 /* proc_info_list.__cpu_mm_mmu_flags */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-xsc3.S +++ linux-azure-5.4.0/arch/arm/mm/proc-xsc3.S @@ -496,7 +496,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro xsc3_proc_info name:req, cpu_val:req, cpu_mask:req .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/mm/proc-xscale.S +++ linux-azure-5.4.0/arch/arm/mm/proc-xscale.S @@ -610,7 +610,7 @@ .align - .section ".proc.info.init", #alloc + .section ".proc.info.init", "a" .macro xscale_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cache .type __\name\()_proc_info,#object only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/probes/decode.h +++ linux-azure-5.4.0/arch/arm/probes/decode.h @@ -14,6 +14,7 @@ #include #include #include +#include #include void __init arm_probes_decode_init(void); @@ -35,31 +36,6 @@ #endif -/* - * Update ITSTATE after normal execution of an IT block instruction. - * - * The 8 IT state bits are split into two parts in CPSR: - * ITSTATE<1:0> are in CPSR<26:25> - * ITSTATE<7:2> are in CPSR<15:10> - */ -static inline unsigned long it_advance(unsigned long cpsr) - { - if ((cpsr & 0x06000400) == 0) { - /* ITSTATE<2:0> == 0 means end of IT block, so clear IT state */ - cpsr &= ~PSR_IT_MASK; - } else { - /* We need to shift left ITSTATE<4:0> */ - const unsigned long mask = 0x06001c00; /* Mask ITSTATE<4:0> */ - unsigned long it = cpsr & mask; - it <<= 1; - it |= it >> (27 - 10); /* Carry ITSTATE<2> to correct place */ - it &= mask; - cpsr &= ~mask; - cpsr |= it; - } - return cpsr; -} - static inline void __kprobes bx_write_pc(long pcv, struct pt_regs *regs) { long cpsr = regs->ARM_cpsr; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/probes/kprobes/core.c +++ linux-azure-5.4.0/arch/arm/probes/kprobes/core.c @@ -534,7 +534,7 @@ #endif /* !CONFIG_THUMB2_KERNEL */ -int __init arch_init_kprobes() +int __init arch_init_kprobes(void) { arm_probes_decode_init(); #ifdef CONFIG_THUMB2_KERNEL only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/probes/kprobes/test-thumb.c +++ linux-azure-5.4.0/arch/arm/probes/kprobes/test-thumb.c @@ -441,21 +441,21 @@ "3: mvn r0, r0 \n\t" "2: nop \n\t") - TEST_RX("tbh [pc, r",7, (9f-(1f+4))>>1,"]", + TEST_RX("tbh [pc, r",7, (9f-(1f+4))>>1,", lsl #1]", "9: \n\t" ".short (2f-1b-4)>>1 \n\t" ".short (3f-1b-4)>>1 \n\t" "3: mvn r0, r0 \n\t" "2: nop \n\t") - TEST_RX("tbh [pc, r",12, ((9f-(1f+4))>>1)+1,"]", + TEST_RX("tbh [pc, r",12, ((9f-(1f+4))>>1)+1,", lsl #1]", "9: \n\t" ".short (2f-1b-4)>>1 \n\t" ".short (3f-1b-4)>>1 \n\t" "3: mvn r0, r0 \n\t" "2: nop \n\t") - TEST_RRX("tbh [r",1,9f, ", r",14,1,"]", + TEST_RRX("tbh [r",1,9f, ", r",14,1,", lsl #1]", "9: \n\t" ".short (2f-1b-4)>>1 \n\t" ".short (3f-1b-4)>>1 \n\t" @@ -468,10 +468,10 @@ TEST_UNSUPPORTED("strexb r0, r1, [r2]") TEST_UNSUPPORTED("strexh r0, r1, [r2]") - TEST_UNSUPPORTED("strexd r0, r1, [r2]") + TEST_UNSUPPORTED("strexd r0, r1, r2, [r2]") TEST_UNSUPPORTED("ldrexb r0, [r1]") TEST_UNSUPPORTED("ldrexh r0, [r1]") - TEST_UNSUPPORTED("ldrexd r0, [r1]") + TEST_UNSUPPORTED("ldrexd r0, r1, [r1]") TEST_GROUP("Data-processing (shifted register) and (modified immediate)") only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm/vfp/Makefile +++ linux-azure-5.4.0/arch/arm/vfp/Makefile @@ -8,6 +8,4 @@ # ccflags-y := -DDEBUG # asflags-y := -DDEBUG -KBUILD_AFLAGS :=$(KBUILD_AFLAGS:-msoft-float=-Wa,-mfpu=softvfp+vfp -mfloat-abi=soft) - obj-y += vfpmodule.o entry.o vfphw.o vfpsingle.o vfpdouble.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/Kbuild +++ linux-azure-5.4.0/arch/arm64/Kbuild @@ -3,4 +3,5 @@ obj-$(CONFIG_NET) += net/ obj-$(CONFIG_KVM) += kvm/ obj-$(CONFIG_XEN) += xen/ +obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/ obj-$(CONFIG_CRYPTO) += crypto/ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dts @@ -114,7 +114,7 @@ pinctrl-0 = <&emac_rgmii_pins>; phy-supply = <®_gmac_3v3>; phy-handle = <&ext_rgmii_phy>; - phy-mode = "rgmii"; + phy-mode = "rgmii-id"; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dts @@ -72,7 +72,7 @@ pinctrl-0 = <&emac_rgmii_pins>; phy-supply = <®_gmac_3v3>; phy-handle = <&ext_rgmii_phy>; - phy-mode = "rgmii"; + phy-mode = "rgmii-id"; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/amlogic/meson-g12a-sei510.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-sei510.dts @@ -139,7 +139,7 @@ regulator-min-microvolt = <721000>; regulator-max-microvolt = <1022000>; - vin-supply = <&dc_in>; + pwm-supply = <&dc_in>; pwms = <&pwm_AO_cd 1 1250 0>; pwm-dutycycle-range = <100 0>; @@ -157,14 +157,6 @@ regulator-always-on; }; - reserved-memory { - /* TEE Reserved Memory */ - bl32_reserved: bl32@5000000 { - reg = <0x0 0x05300000 0x0 0x2000000>; - no-map; - }; - }; - sdio_pwrseq: sdio-pwrseq { compatible = "mmc-pwrseq-simple"; reset-gpios = <&gpio GPIOX_6 GPIO_ACTIVE_LOW>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/amlogic/meson-g12a-u200.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12a-u200.dts @@ -139,7 +139,7 @@ regulator-min-microvolt = <721000>; regulator-max-microvolt = <1022000>; - vin-supply = <&main_12v>; + pwm-supply = <&main_12v>; pwms = <&pwm_AO_cd 1 1250 0>; pwm-dutycycle-range = <100 0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi @@ -11,26 +11,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 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <761000>; @@ -71,26 +51,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 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <731000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi @@ -11,26 +11,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 <667000000>; - opp-microvolt = <731000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <731000>; @@ -71,26 +51,6 @@ compatible = "operating-points-v2"; opp-shared; - opp-100000000 { - opp-hz = /bits/ 64 <100000000>; - opp-microvolt = <751000>; - }; - - opp-250000000 { - opp-hz = /bits/ 64 <250000000>; - opp-microvolt = <751000>; - }; - - opp-500000000 { - opp-hz = /bits/ 64 <500000000>; - opp-microvolt = <751000>; - }; - - opp-667000000 { - opp-hz = /bits/ 64 <667000000>; - opp-microvolt = <751000>; - }; - opp-1000000000 { opp-hz = /bits/ 64 <1000000000>; opp-microvolt = <771000>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dts @@ -111,8 +111,8 @@ compatible = "silabs,si3226x"; reg = <0>; spi-max-frequency = <5000000>; - spi-cpha = <1>; - spi-cpol = <1>; + spi-cpha; + spi-cpol; pl022,hierarchy = <0>; pl022,interface = <0>; pl022,slave-tx-disable = <0>; @@ -135,8 +135,8 @@ at25,byte-len = <0x8000>; at25,addr-mode = <2>; at25,page-size = <64>; - spi-cpha = <1>; - spi-cpol = <1>; + spi-cpha; + spi-cpol; pl022,hierarchy = <0>; pl022,interface = <0>; pl022,slave-tx-disable = <0>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts @@ -161,11 +161,6 @@ vcc-supply = <&sb_3v3>; }; - rtc@51 { - compatible = "nxp,pcf2129"; - reg = <0x51>; - }; - eeprom@56 { compatible = "atmel,24c512"; reg = <0x56>; @@ -209,6 +204,15 @@ }; +&i2c1 { + status = "okay"; + + rtc@51 { + compatible = "nxp,pcf2129"; + reg = <0x51>; + }; +}; + &enetc_port1 { phy-handle = <&qds_phy1>; phy-connection-type = "rgmii-id"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts @@ -83,15 +83,9 @@ }; eeprom@52 { - compatible = "atmel,24c512"; + compatible = "onnn,cat24c04", "atmel,24c04"; reg = <0x52>; }; - - eeprom@53 { - compatible = "atmel,24c512"; - reg = <0x53>; - }; - }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi @@ -637,59 +637,59 @@ }; cluster1_core0_watchdog: wdt@c000000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc000000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster1_core1_watchdog: wdt@c010000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc010000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster1_core2_watchdog: wdt@c020000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc020000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster1_core3_watchdog: wdt@c030000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc030000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core0_watchdog: wdt@c100000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc100000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core1_watchdog: wdt@c110000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc110000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core2_watchdog: wdt@c120000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc120000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core3_watchdog: wdt@c130000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc130000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; fsl_mc: fsl-mc@80c000000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi @@ -227,59 +227,59 @@ }; cluster1_core0_watchdog: wdt@c000000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc000000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster1_core1_watchdog: wdt@c010000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc010000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core0_watchdog: wdt@c100000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc100000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster2_core1_watchdog: wdt@c110000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc110000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster3_core0_watchdog: wdt@c200000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc200000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster3_core1_watchdog: wdt@c210000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc210000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster4_core0_watchdog: wdt@c300000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc300000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; cluster4_core1_watchdog: wdt@c310000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xc310000 0x0 0x1000>; clocks = <&clockgen 4 3>, <&clockgen 4 3>; - clock-names = "apb_pclk", "wdog_clk"; + clock-names = "wdog_clk", "apb_pclk"; }; crypto: crypto@8000000 { @@ -501,7 +501,6 @@ clocks = <&clockgen 4 3>; clock-names = "dspi"; spi-num-chipselects = <5>; - bus-num = <0>; }; esdhc: esdhc@2140000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/freescale/imx8mq-zii-ultra.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/freescale/imx8mq-zii-ultra.dtsi @@ -45,8 +45,8 @@ reg_12p0_main: regulator-12p0-main { compatible = "regulator-fixed"; regulator-name = "12V_MAIN"; - regulator-min-microvolt = <5000000>; - regulator-max-microvolt = <5000000>; + regulator-min-microvolt = <12000000>; + regulator-max-microvolt = <12000000>; regulator-always-on; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/hisilicon/hi3660.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/hisilicon/hi3660.dtsi @@ -1086,7 +1086,7 @@ }; watchdog0: watchdog@e8a06000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xe8a06000 0x0 0x1000>; interrupts = ; clocks = <&crg_ctrl HI3660_OSC32K>; @@ -1094,7 +1094,7 @@ }; watchdog1: watchdog@e8a07000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xe8a07000 0x0 0x1000>; interrupts = ; clocks = <&crg_ctrl HI3660_OSC32K>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/hisilicon/hi6220.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/hisilicon/hi6220.dtsi @@ -839,7 +839,7 @@ }; watchdog0: watchdog@f8005000 { - compatible = "arm,sp805-wdt", "arm,primecell"; + compatible = "arm,sp805", "arm,primecell"; reg = <0x0 0xf8005000 0x0 0x1000>; interrupts = ; clocks = <&ao_ctrl HI6220_WDT0_PCLK>; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/marvell/armada-3720-db.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-3720-db.dts @@ -128,6 +128,9 @@ /* CON15(V2.0)/CON17(V1.4) : PCIe / CON15(V2.0)/CON12(V1.4) :mini-PCIe */ &pcie0 { + pinctrl-names = "default"; + pinctrl-0 = <&pcie_reset_pins &pcie_clkreq_pins>; + reset-gpios = <&gpiosb 3 GPIO_ACTIVE_LOW>; status = "okay"; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi @@ -71,6 +71,7 @@ tx-fault-gpio = <&cp1_gpio1 26 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&cp1_sfpp0_pins>; + maximum-power-milliwatt = <2000>; }; sfp_eth1: sfp-eth1 { @@ -83,6 +84,7 @@ tx-fault-gpio = <&cp0_gpio2 30 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&cp1_sfpp1_pins &cp0_sfpp1_pins>; + maximum-power-milliwatt = <2000>; }; sfp_eth3: sfp-eth3 { @@ -95,6 +97,7 @@ tx-fault-gpio = <&cp0_gpio2 19 GPIO_ACTIVE_HIGH>; pinctrl-names = "default"; pinctrl-0 = <&cp0_sfp_1g_pins &cp1_sfp_1g_pins>; + maximum-power-milliwatt = <2000>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts @@ -49,7 +49,7 @@ wps { label = "wps"; linux,code = ; - gpios = <&pio 102 GPIO_ACTIVE_HIGH>; + gpios = <&pio 102 GPIO_ACTIVE_LOW>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/nvidia/tegra132.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/nvidia/tegra132.dtsi @@ -1082,13 +1082,13 @@ cpu@0 { device_type = "cpu"; - compatible = "nvidia,denver"; + compatible = "nvidia,tegra132-denver"; reg = <0>; }; cpu@1 { device_type = "cpu"; - compatible = "nvidia,denver"; + compatible = "nvidia,tegra132-denver"; reg = <1>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/qcom/ipq8074-hk01.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/ipq8074-hk01.dts @@ -20,7 +20,7 @@ stdout-path = "serial0"; }; - memory { + memory@40000000 { device_type = "memory"; reg = <0x0 0x40000000 0x0 0x20000000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/qcom/ipq8074.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/ipq8074.dtsi @@ -253,7 +253,7 @@ status = "disabled"; }; - qpic_nand: nand@79b0000 { + qpic_nand: nand-controller@79b0000 { compatible = "qcom,ipq8074-nand"; reg = <0x79b0000 0x10000>; #address-cells = <1>; @@ -482,7 +482,7 @@ clocks { sleep_clk: sleep_clk { compatible = "fixed-clock"; - clock-frequency = <32000>; + clock-frequency = <32768>; #clock-cells = <0>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/qcom/msm8994-angler-rev-101.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/qcom/msm8994-angler-rev-101.dts @@ -30,3 +30,7 @@ }; }; }; + +&msmgpio { + gpio-reserved-ranges = <85 4>; +}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts @@ -59,7 +59,7 @@ memory@48000000 { device_type = "memory"; /* first 128MB is reserved for secure area. */ - reg = <0x0 0x48000000 0x0 0x38000000>; + reg = <0x0 0x48000000 0x0 0x78000000>; }; osc5_clk: osc5-clock { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/renesas/r8a77995-draak.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/renesas/r8a77995-draak.dts @@ -277,10 +277,6 @@ interrupt-parent = <&gpio1>; interrupts = <28 IRQ_TYPE_LEVEL_LOW>; - /* Depends on LVDS */ - max-clock = <135000000>; - min-vrefresh = <50>; - adi,input-depth = <8>; adi,input-colorspace = "rgb"; adi,input-clock = "1x"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dts @@ -77,3 +77,8 @@ }; }; }; + +&wlan_host_wake_l { + /* Kevin has an external pull up, but Bob does not. */ + rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_up>; +}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/rockchip/rk3399-gru-chromebook.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-gru-chromebook.dtsi @@ -237,6 +237,14 @@ &edp { status = "okay"; + /* + * eDP PHY/clk don't sync reliably at anything other than 24 MHz. Only + * set this here, because rk3399-gru.dtsi ensures we can generate this + * off GPLL=600MHz, whereas some other RK3399 boards may not. + */ + assigned-clocks = <&cru PCLK_EDP>; + assigned-clock-rates = <24000000>; + ports { edp_out: port@1 { reg = <1>; @@ -397,6 +405,7 @@ }; wlan_host_wake_l: wlan-host-wake-l { + /* Kevin has an external pull up, but Bob does not */ rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_none>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi @@ -281,7 +281,7 @@ sound: sound { compatible = "rockchip,rk3399-gru-sound"; - rockchip,cpu = <&i2s0 &i2s2>; + rockchip,cpu = <&i2s0 &spdif>; }; }; @@ -432,10 +432,6 @@ status = "okay"; }; -&i2s2 { - status = "okay"; -}; - &io_domains { status = "okay"; @@ -532,6 +528,17 @@ vqmmc-supply = <&ppvar_sd_card_io>; }; +&spdif { + status = "okay"; + + /* + * SPDIF is routed internally to DP; we either don't use these pins, or + * mux them to something else. + */ + /delete-property/ pinctrl-0; + /delete-property/ pinctrl-names; +}; + &spi1 { status = "okay"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts @@ -49,7 +49,7 @@ regulator-boot-on; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; - vim-supply = <&vcc3v3_sys>; + vin-supply = <&vcc3v3_sys>; }; vcc3v3_sys: vcc3v3-sys { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dts @@ -452,7 +452,7 @@ status = "okay"; bt656-supply = <&vcc_3v0>; - audio-supply = <&vcc_3v0>; + audio-supply = <&vcc1v8_codec>; sdmmc-supply = <&vcc_sdio>; gpio1830-supply = <&vcc_3v0>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/ti/k3-j721e.dtsi +++ linux-azure-5.4.0/arch/arm64/boot/dts/ti/k3-j721e.dtsi @@ -60,7 +60,7 @@ i-cache-sets = <256>; d-cache-size = <0x8000>; d-cache-line-size = <64>; - d-cache-sets = <128>; + d-cache-sets = <256>; next-level-cache = <&L2_0>; }; @@ -74,7 +74,7 @@ i-cache-sets = <256>; d-cache-size = <0x8000>; d-cache-line-size = <64>; - d-cache-sets = <128>; + d-cache-sets = <256>; next-level-cache = <&L2_0>; }; }; @@ -84,7 +84,7 @@ cache-level = <2>; cache-size = <0x100000>; cache-line-size = <64>; - cache-sets = <2048>; + cache-sets = <1024>; next-level-cache = <&msmc_l3>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm016-dc2.dts +++ linux-azure-5.4.0/arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm016-dc2.dts @@ -131,7 +131,7 @@ reg = <0>; partition@0 { - label = "data"; + label = "spi0-data"; reg = <0x0 0x100000>; }; }; @@ -149,7 +149,7 @@ reg = <0>; partition@0 { - label = "data"; + label = "spi1-data"; reg = <0x0 0x84000>; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/crypto/Kconfig +++ linux-azure-5.4.0/arch/arm64/crypto/Kconfig @@ -59,6 +59,7 @@ select CRYPTO_HASH select CRYPTO_GF128MUL select CRYPTO_LIB_AES + select CRYPTO_AEAD config CRYPTO_CRCT10DIF_ARM64_CE tristate "CRCT10DIF digest algorithm using PMULL instructions" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/hyperv/Makefile +++ linux-azure-5.4.0/arch/arm64/hyperv/Makefile @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0 +obj-y := hv_core.o mshyperv.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/hyperv/hv_core.c +++ linux-azure-5.4.0/arch/arm64/hyperv/hv_core.c @@ -0,0 +1,181 @@ +// SPDX-License-Identifier: GPL-2.0 + +/* + * Low level utility routines for interacting with Hyper-V. + * + * Copyright (C) 2021, Microsoft, Inc. + * + * Author : Michael Kelley + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * hv_do_hypercall- Invoke the specified hypercall + */ +u64 hv_do_hypercall(u64 control, void *input, void *output) +{ + struct arm_smccc_res res; + u64 input_address; + u64 output_address; + + input_address = input ? virt_to_phys(input) : 0; + output_address = output ? virt_to_phys(output) : 0; + + arm_smccc_1_1_hvc(HV_FUNC_ID, control, + input_address, output_address, &res); + return res.a0; +} +EXPORT_SYMBOL_GPL(hv_do_hypercall); + +/* + * hv_do_fast_hypercall8 -- Invoke the specified hypercall + * with arguments in registers instead of physical memory. + * Avoids the overhead of virt_to_phys for simple hypercalls. + */ + +u64 hv_do_fast_hypercall8(u16 code, u64 input) +{ + struct arm_smccc_res res; + u64 control; + + control = (u64)code | HV_HYPERCALL_FAST_BIT; + + arm_smccc_1_1_hvc(HV_FUNC_ID, control, input, &res); + return res.a0; +} +EXPORT_SYMBOL_GPL(hv_do_fast_hypercall8); + +/* + * Set a single VP register to a 64-bit value. + */ +void hv_set_vpreg(u32 msr, u64 value) +{ + struct arm_smccc_res res; + + arm_smccc_1_1_hvc(HV_FUNC_ID, + HVCALL_SET_VP_REGISTERS | HV_HYPERCALL_FAST_BIT | + HV_HYPERCALL_REP_COMP_1, + HV_PARTITION_ID_SELF, + HV_VP_INDEX_SELF, + msr, + 0, + value, + 0, + &res); + + /* + * Something is fundamentally broken in the hypervisor if + * setting a VP register fails. There's really no way to + * continue as a guest VM, so panic. + */ + BUG_ON(!hv_result_success(res.a0)); +} +EXPORT_SYMBOL_GPL(hv_set_vpreg); + +/* + * Get the value of a single VP register. One version + * returns just 64 bits and another returns the full 128 bits. + * The two versions are separate to avoid complicating the + * calling sequence for the more frequently used 64 bit version. + */ + +void hv_get_vpreg_128(u32 msr, struct hv_get_vp_registers_output *result) +{ + struct arm_smccc_1_2_regs args; + struct arm_smccc_1_2_regs res; + + args.a0 = HV_FUNC_ID; + args.a1 = HVCALL_GET_VP_REGISTERS | HV_HYPERCALL_FAST_BIT | + HV_HYPERCALL_REP_COMP_1; + args.a2 = HV_PARTITION_ID_SELF; + args.a3 = HV_VP_INDEX_SELF; + args.a4 = msr; + + /* + * Use the SMCCC 1.2 interface because the results are in registers + * beyond X0-X3. + */ + arm_smccc_1_2_hvc(&args, &res); + + /* + * Something is fundamentally broken in the hypervisor if + * getting a VP register fails. There's really no way to + * continue as a guest VM, so panic. + */ + BUG_ON(!hv_result_success(res.a0)); + + result->as64.low = res.a6; + result->as64.high = res.a7; +} +EXPORT_SYMBOL_GPL(hv_get_vpreg_128); + +u64 hv_get_vpreg(u32 msr) +{ + struct hv_get_vp_registers_output output; + + hv_get_vpreg_128(msr, &output); + + return output.as64.low; +} +EXPORT_SYMBOL_GPL(hv_get_vpreg); + +/* + * hyperv_report_panic - report a panic to Hyper-V. This function uses + * the older version of the Hyper-V interface that admittedly doesn't + * pass enough information to be useful beyond just recording the + * occurrence of a panic. The parallel hv_kmsg_dump() uses the + * new interface that allows reporting 4 Kbytes of data, which is much + * more useful. Hyper-V on ARM64 always supports the newer interface, but + * we retain support for the older version because the sysadmin is allowed + * to disable the newer version via sysctl in case of information security + * concerns about the more verbose version. + */ +void hyperv_report_panic(struct pt_regs *regs, long err, bool in_die) +{ + static bool panic_reported; + u64 guest_id; + + /* Don't report a panic to Hyper-V if we're not going to panic */ + if (in_die && !panic_on_oops) + return; + + /* + * We prefer to report panic on 'die' chain as we have proper + * registers to report, but if we miss it (e.g. on BUG()) we need + * to report it on 'panic'. + * + * Calling code in the 'die' and 'panic' paths ensures that only + * one CPU is running this code, so no atomicity is needed. + */ + if (panic_reported) + return; + panic_reported = true; + + guest_id = hv_get_vpreg(HV_REGISTER_GUEST_OSID); + + /* + * Hyper-V provides the ability to store only 5 values. + * Pick the passed in error value, the guest_id, the PC, + * and the SP. + */ + hv_set_vpreg(HV_REGISTER_CRASH_P0, err); + hv_set_vpreg(HV_REGISTER_CRASH_P1, guest_id); + hv_set_vpreg(HV_REGISTER_CRASH_P2, regs->pc); + hv_set_vpreg(HV_REGISTER_CRASH_P3, regs->sp); + hv_set_vpreg(HV_REGISTER_CRASH_P4, 0); + + /* + * Let Hyper-V know there is crash data available + */ + hv_set_vpreg(HV_REGISTER_CRASH_CTL, HV_CRASH_CTL_CRASH_NOTIFY); +} +EXPORT_SYMBOL_GPL(hyperv_report_panic); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/hyperv/mshyperv.c +++ linux-azure-5.4.0/arch/arm64/hyperv/mshyperv.c @@ -0,0 +1,87 @@ +// SPDX-License-Identifier: GPL-2.0 + +/* + * Core routines for interacting with Microsoft's Hyper-V hypervisor, + * including hypervisor initialization. + * + * Copyright (C) 2021, Microsoft, Inc. + * + * Author : Michael Kelley + */ + +#include +#include +#include +#include +#include +#include +#include + +static bool hyperv_initialized; + +static int __init hyperv_init(void) +{ + struct hv_get_vp_registers_output result; + u32 a, b, c, d; + u64 guest_id; + int ret; + + /* + * Allow for a kernel built with CONFIG_HYPERV to be running in + * a non-Hyper-V environment, including on DT instead of ACPI. + * In such cases, do nothing and return success. + */ + if (acpi_disabled) + return 0; + + if (strncmp((char *)&acpi_gbl_FADT.hypervisor_id, "MsHyperV", 8)) + return 0; + + /* Setup the guest ID */ + guest_id = generate_guest_id(0, LINUX_VERSION_CODE, 0); + hv_set_vpreg(HV_REGISTER_GUEST_OSID, guest_id); + + /* Get the features and hints from Hyper-V */ + hv_get_vpreg_128(HV_REGISTER_FEATURES, &result); + ms_hyperv.features = result.as32.a; + ms_hyperv.priv_high = result.as32.b; + ms_hyperv.misc_features = result.as32.c; + + hv_get_vpreg_128(HV_REGISTER_ENLIGHTENMENTS, &result); + ms_hyperv.hints = result.as32.a; + + pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, misc 0x%x\n", + ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints, + ms_hyperv.misc_features); + + /* Get information about the Hyper-V host version */ + hv_get_vpreg_128(HV_REGISTER_HYPERVISOR_VERSION, &result); + a = result.as32.a; + b = result.as32.b; + c = result.as32.c; + d = result.as32.d; + pr_info("Hyper-V: Host Build %d.%d.%d.%d-%d-%d\n", + b >> 16, b & 0xFFFF, a, d & 0xFFFFFF, c, d >> 24); + + ret = hv_common_init(); + if (ret) + return ret; + + ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "arm64/hyperv_init:online", + hv_common_cpu_init, hv_common_cpu_die); + if (ret < 0) { + hv_common_free(); + return ret; + } + + hyperv_initialized = true; + return 0; +} + +early_initcall(hyperv_init); + +bool hv_is_hyperv_initialized(void) +{ + return hyperv_initialized; +} +EXPORT_SYMBOL_GPL(hv_is_hyperv_initialized); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/asm-uaccess.h +++ linux-azure-5.4.0/arch/arm64/include/asm/asm-uaccess.h @@ -15,10 +15,10 @@ .macro __uaccess_ttbr0_disable, tmp1 mrs \tmp1, ttbr1_el1 // swapper_pg_dir bic \tmp1, \tmp1, #TTBR_ASID_MASK - sub \tmp1, \tmp1, #RESERVED_TTBR0_SIZE // reserved_ttbr0 just before swapper_pg_dir + sub \tmp1, \tmp1, #PAGE_SIZE // reserved_pg_dir just before swapper_pg_dir msr ttbr0_el1, \tmp1 // set reserved TTBR0_EL1 isb - add \tmp1, \tmp1, #RESERVED_TTBR0_SIZE + add \tmp1, \tmp1, #PAGE_SIZE msr ttbr1_el1, \tmp1 // set reserved ASID isb .endm only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/barrier.h +++ linux-azure-5.4.0/arch/arm64/include/asm/barrier.h @@ -57,6 +57,25 @@ return mask; } +/* + * Ensure that reads of the counter are treated the same as memory reads + * for the purposes of ordering by subsequent memory barriers. + * + * This insanity brought to you by speculative system register reads, + * out-of-order memory accesses, sequence locks and Thomas Gleixner. + * + * http://lists.infradead.org/pipermail/linux-arm-kernel/2019-February/631195.html + */ +#define arch_counter_enforce_ordering(val) do { \ + u64 tmp, _val = (val); \ + \ + asm volatile( \ + " eor %0, %1, %1\n" \ + " add %0, sp, %0\n" \ + " ldr xzr, [%0]" \ + : "=r" (tmp) : "r" (_val)); \ +} while (0) + #define __smp_mb() dmb(ish) #define __smp_rmb() dmb(ishld) #define __smp_wmb() dmb(ishst) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/brk-imm.h +++ linux-azure-5.4.0/arch/arm64/include/asm/brk-imm.h @@ -10,6 +10,7 @@ * #imm16 values used for BRK instruction generation * 0x004: for installing kprobes * 0x005: for installing uprobes + * 0x006: for kprobe software single-step * Allowed values for kgdb are 0x400 - 0x7ff * 0x100: for triggering a fault on purpose (reserved) * 0x400: for dynamic BRK instruction @@ -19,6 +20,7 @@ */ #define KPROBES_BRK_IMM 0x004 #define UPROBES_BRK_IMM 0x005 +#define KPROBES_BRK_SS_IMM 0x006 #define FAULT_BRK_IMM 0x100 #define KGDB_DYN_DBG_BRK_IMM 0x400 #define KGDB_COMPILED_DBG_BRK_IMM 0x401 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/cpu.h +++ linux-azure-5.4.0/arch/arm64/include/asm/cpu.h @@ -25,6 +25,7 @@ u64 reg_id_aa64dfr1; u64 reg_id_aa64isar0; u64 reg_id_aa64isar1; + u64 reg_id_aa64isar2; u64 reg_id_aa64mmfr0; u64 reg_id_aa64mmfr1; u64 reg_id_aa64mmfr2; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/cputype.h +++ linux-azure-5.4.0/arch/arm64/include/asm/cputype.h @@ -71,6 +71,14 @@ #define ARM_CPU_PART_CORTEX_A55 0xD05 #define ARM_CPU_PART_CORTEX_A76 0xD0B #define ARM_CPU_PART_NEOVERSE_N1 0xD0C +#define ARM_CPU_PART_CORTEX_A77 0xD0D +#define ARM_CPU_PART_NEOVERSE_V1 0xD40 +#define ARM_CPU_PART_CORTEX_A78 0xD41 +#define ARM_CPU_PART_CORTEX_X1 0xD44 +#define ARM_CPU_PART_CORTEX_A710 0xD47 +#define ARM_CPU_PART_CORTEX_X2 0xD48 +#define ARM_CPU_PART_NEOVERSE_N2 0xD49 +#define ARM_CPU_PART_CORTEX_A78C 0xD4B #define APM_CPU_PART_POTENZA 0x000 @@ -102,6 +110,14 @@ #define MIDR_CORTEX_A55 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A55) #define MIDR_CORTEX_A76 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A76) #define MIDR_NEOVERSE_N1 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_NEOVERSE_N1) +#define MIDR_CORTEX_A77 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A77) +#define MIDR_NEOVERSE_V1 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_NEOVERSE_V1) +#define MIDR_CORTEX_A78 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A78) +#define MIDR_CORTEX_X1 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X1) +#define MIDR_CORTEX_A710 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A710) +#define MIDR_CORTEX_X2 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X2) +#define MIDR_NEOVERSE_N2 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_NEOVERSE_N2) +#define MIDR_CORTEX_A78C MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A78C) #define MIDR_THUNDERX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX) #define MIDR_THUNDERX_81XX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX_81XX) #define MIDR_THUNDERX_83XX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX_83XX) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/fixmap.h +++ linux-azure-5.4.0/arch/arm64/include/asm/fixmap.h @@ -63,9 +63,11 @@ #endif /* CONFIG_ACPI_APEI_GHES */ #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 + FIX_ENTRY_TRAMP_TEXT3, + FIX_ENTRY_TRAMP_TEXT2, + FIX_ENTRY_TRAMP_TEXT1, FIX_ENTRY_TRAMP_DATA, - FIX_ENTRY_TRAMP_TEXT, -#define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT)) +#define TRAMP_VALIAS (__fix_to_virt(FIX_ENTRY_TRAMP_TEXT1)) #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ __end_of_permanent_fixed_addresses, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/hyperv-tlfs.h +++ linux-azure-5.4.0/arch/arm64/include/asm/hyperv-tlfs.h @@ -0,0 +1,78 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +/* + * This file contains definitions from the Hyper-V Hypervisor Top-Level + * Functional Specification (TLFS): + * https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/reference/tlfs + * + * Copyright (C) 2021, Microsoft, Inc. + * + * Author : Michael Kelley + */ + +#ifndef _ASM_HYPERV_TLFS_H +#define _ASM_HYPERV_TLFS_H + +#include + +/* + * All data structures defined in the TLFS that are shared between Hyper-V + * and a guest VM use Little Endian byte ordering. This matches the default + * byte ordering of Linux running on ARM64, so no special handling is required. + */ + +/* + * These Hyper-V registers provide information equivalent to the CPUID + * instruction on x86/x64. + */ +#define HV_REGISTER_HYPERVISOR_VERSION 0x00000100 /*CPUID 0x40000002 */ +#define HV_REGISTER_FEATURES 0x00000200 /*CPUID 0x40000003 */ +#define HV_REGISTER_ENLIGHTENMENTS 0x00000201 /*CPUID 0x40000004 */ + +/* + * Group C Features. See the asm-generic version of hyperv-tlfs.h + * for a description of Feature Groups. + */ + +/* Crash MSRs available */ +#define HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE BIT(8) + +/* STIMER direct mode is available */ +#define HV_STIMER_DIRECT_MODE_AVAILABLE BIT(13) + +/* + * Synthetic register definitions equivalent to MSRs on x86/x64 + */ +#define HV_REGISTER_CRASH_P0 0x00000210 +#define HV_REGISTER_CRASH_P1 0x00000211 +#define HV_REGISTER_CRASH_P2 0x00000212 +#define HV_REGISTER_CRASH_P3 0x00000213 +#define HV_REGISTER_CRASH_P4 0x00000214 +#define HV_REGISTER_CRASH_CTL 0x00000215 + +#define HV_REGISTER_GUEST_OSID 0x00090002 +#define HV_REGISTER_VP_INDEX 0x00090003 +#define HV_REGISTER_TIME_REF_COUNT 0x00090004 +#define HV_REGISTER_REFERENCE_TSC 0x00090017 + +#define HV_REGISTER_SINT0 0x000A0000 +#define HV_REGISTER_SCONTROL 0x000A0010 +#define HV_REGISTER_SIEFP 0x000A0012 +#define HV_REGISTER_SIMP 0x000A0013 +#define HV_REGISTER_EOM 0x000A0014 + +#define HV_REGISTER_STIMER0_CONFIG 0x000B0000 +#define HV_REGISTER_STIMER0_COUNT 0x000B0001 + +union hv_msi_entry { + u64 as_uint64[2]; + struct { + u64 address; + u32 data; + u32 reserved; + } __packed; +}; + +#include + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/io.h +++ linux-azure-5.4.0/arch/arm64/include/asm/io.h @@ -204,4 +204,8 @@ extern int devmem_is_allowed(unsigned long pfn); +extern bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags); +#define arch_memremap_can_ram_remap arch_memremap_can_ram_remap + #endif /* __ASM_IO_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/kernel-pgtable.h +++ linux-azure-5.4.0/arch/arm64/include/asm/kernel-pgtable.h @@ -65,8 +65,8 @@ #define EARLY_KASLR (0) #endif -#define EARLY_ENTRIES(vstart, vend, shift) (((vend) >> (shift)) \ - - ((vstart) >> (shift)) + 1 + EARLY_KASLR) +#define EARLY_ENTRIES(vstart, vend, shift) \ + ((((vend) - 1) >> (shift)) - ((vstart) >> (shift)) + 1 + EARLY_KASLR) #define EARLY_PGDS(vstart, vend) (EARLY_ENTRIES(vstart, vend, PGDIR_SHIFT)) @@ -89,12 +89,6 @@ #define INIT_DIR_SIZE (PAGE_SIZE * EARLY_PAGES(KIMAGE_VADDR + TEXT_OFFSET, _end)) #define IDMAP_DIR_SIZE (IDMAP_PGTABLE_LEVELS * PAGE_SIZE) -#ifdef CONFIG_ARM64_SW_TTBR0_PAN -#define RESERVED_TTBR0_SIZE (PAGE_SIZE) -#else -#define RESERVED_TTBR0_SIZE (0) -#endif - /* Initial memory map size */ #if ARM64_SWAPPER_USES_SECTION_MAPS #define SWAPPER_BLOCK_SHIFT SECTION_SHIFT only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/kprobes.h +++ linux-azure-5.4.0/arch/arm64/include/asm/kprobes.h @@ -16,7 +16,7 @@ #include #define __ARCH_WANT_KPROBES_INSN_SLOT -#define MAX_INSN_SIZE 1 +#define MAX_INSN_SIZE 2 #define flush_insn_slot(p) do { } while (0) #define kretprobe_blacklist_size 0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/kvm_mmu.h +++ linux-azure-5.4.0/arch/arm64/include/asm/kvm_mmu.h @@ -478,7 +478,9 @@ void *vect = kern_hyp_va(kvm_ksym_ref(__kvm_hyp_vector)); int slot = -1; - if (cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR) && data->fn) { + if ((cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR) || + cpus_have_const_cap(ARM64_SPECTRE_BHB)) && + data && data->template_start) { vect = kern_hyp_va(kvm_ksym_ref(__bp_harden_hyp_vecs_start)); slot = data->hyp_vectors_slot; } @@ -507,7 +509,8 @@ * !HBP + HEL2 -> allocate one vector slot and use exec mapping * HBP + HEL2 -> use hardened vertors and use exec mapping */ - if (cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR)) { + if (cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR) || + cpus_have_const_cap(ARM64_SPECTRE_BHB)) { __kvm_bp_vect_base = kvm_ksym_ref(__bp_harden_hyp_vecs_start); __kvm_bp_vect_base = kern_hyp_va(__kvm_bp_vect_base); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/mmu.h +++ linux-azure-5.4.0/arch/arm64/include/asm/mmu.h @@ -29,7 +29,7 @@ */ #define ASID(mm) ((mm)->context.id.counter & 0xffff) -static inline bool arm64_kernel_unmapped_at_el0(void) +static __always_inline bool arm64_kernel_unmapped_at_el0(void) { return IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0) && cpus_have_const_cap(ARM64_UNMAP_KERNEL_AT_EL0); @@ -82,6 +82,12 @@ struct bp_hardening_data { int hyp_vectors_slot; bp_hardening_cb_t fn; + + /* + * template_start is only used by the BHB mitigation to identify the + * hyp_vectors_slot sequence. + */ + const char *template_start; }; #if (defined(CONFIG_HARDEN_BRANCH_PREDICTOR) || \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/mshyperv.h +++ linux-azure-5.4.0/arch/arm64/include/asm/mshyperv.h @@ -0,0 +1,54 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +/* + * Linux-specific definitions for managing interactions with Microsoft's + * Hyper-V hypervisor. The definitions in this file are specific to + * the ARM64 architecture. See include/asm-generic/mshyperv.h for + * definitions are that architecture independent. + * + * Definitions that are specified in the Hyper-V Top Level Functional + * Spec (TLFS) should not go in this file, but should instead go in + * hyperv-tlfs.h. + * + * Copyright (C) 2021, Microsoft, Inc. + * + * Author : Michael Kelley + */ + +#ifndef _ASM_MSHYPERV_H +#define _ASM_MSHYPERV_H + +#include +#include +#include + +/* + * Declare calls to get and set Hyper-V VP register values on ARM64, which + * requires a hypercall. + */ + +void hv_set_vpreg(u32 reg, u64 value); +u64 hv_get_vpreg(u32 reg); +void hv_get_vpreg_128(u32 reg, struct hv_get_vp_registers_output *result); + +static inline void hv_set_register(unsigned int reg, u64 value) +{ + hv_set_vpreg(reg, value); +} + +static inline u64 hv_get_register(unsigned int reg) +{ + return hv_get_vpreg(reg); +} + +/* SMCCC hypercall parameters */ +#define HV_SMCCC_FUNC_NUMBER 1 +#define HV_FUNC_ID ARM_SMCCC_CALL_VAL( \ + ARM_SMCCC_STD_CALL, \ + ARM_SMCCC_SMC_64, \ + ARM_SMCCC_OWNER_VENDOR_HYP, \ + HV_SMCCC_FUNC_NUMBER) + +#include + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/processor.h +++ linux-azure-5.4.0/arch/arm64/include/asm/processor.h @@ -184,8 +184,9 @@ static inline void start_thread_common(struct pt_regs *regs, unsigned long pc) { + s32 previous_syscall = regs->syscallno; memset(regs, 0, sizeof(*regs)); - forget_syscall(regs); + regs->syscallno = previous_syscall; regs->pc = pc; if (system_uses_irq_prio_masking()) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/asm/vectors.h +++ linux-azure-5.4.0/arch/arm64/include/asm/vectors.h @@ -0,0 +1,73 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (C) 2022 ARM Ltd. + */ +#ifndef __ASM_VECTORS_H +#define __ASM_VECTORS_H + +#include +#include + +#include + +extern char vectors[]; +extern char tramp_vectors[]; +extern char __bp_harden_el1_vectors[]; + +/* + * Note: the order of this enum corresponds to two arrays in entry.S: + * tramp_vecs and __bp_harden_el1_vectors. By default the canonical + * 'full fat' vectors are used directly. + */ +enum arm64_bp_harden_el1_vectors { +#ifdef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY + /* + * Perform the BHB loop mitigation, before branching to the canonical + * vectors. + */ + EL1_VECTOR_BHB_LOOP, + + /* + * Make the SMC call for firmware mitigation, before branching to the + * canonical vectors. + */ + EL1_VECTOR_BHB_FW, + + /* + * Use the ClearBHB instruction, before branching to the canonical + * vectors. + */ + EL1_VECTOR_BHB_CLEAR_INSN, +#endif /* CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ + + /* + * Remap the kernel before branching to the canonical vectors. + */ + EL1_VECTOR_KPTI, +}; + +#ifndef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY +#define EL1_VECTOR_BHB_LOOP -1 +#define EL1_VECTOR_BHB_FW -1 +#define EL1_VECTOR_BHB_CLEAR_INSN -1 +#endif /* !CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ + +/* The vectors to use on return from EL0. e.g. to remap the kernel */ +DECLARE_PER_CPU_READ_MOSTLY(const char *, this_cpu_vector); + +#ifndef CONFIG_UNMAP_KERNEL_AT_EL0 +#define TRAMP_VALIAS 0ul +#endif + +static inline const char * +arm64_get_bp_hardening_vector(enum arm64_bp_harden_el1_vectors slot) +{ + if (arm64_kernel_unmapped_at_el0()) + return (char *)(TRAMP_VALIAS + SZ_2K * slot); + + WARN_ON_ONCE(slot == EL1_VECTOR_KPTI); + + return __bp_harden_el1_vectors + SZ_2K * slot; +} + +#endif /* __ASM_VECTORS_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/include/uapi/asm/kvm.h +++ linux-azure-5.4.0/arch/arm64/include/uapi/asm/kvm.h @@ -240,6 +240,11 @@ #define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2_NOT_REQUIRED 3 #define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_2_ENABLED (1U << 4) +#define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3 KVM_REG_ARM_FW_REG(3) +#define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_NOT_AVAIL 0 +#define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_AVAIL 1 +#define KVM_REG_ARM_SMCCC_ARCH_WORKAROUND_3_NOT_REQUIRED 2 + /* SVE registers */ #define KVM_REG_ARM64_SVE (0x15 << KVM_REG_ARM_COPROC_SHIFT) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/asm-offsets.c +++ linux-azure-5.4.0/arch/arm64/kernel/asm-offsets.c @@ -114,6 +114,15 @@ DEFINE(ARM_SMCCC_RES_X2_OFFS, offsetof(struct arm_smccc_res, a2)); DEFINE(ARM_SMCCC_QUIRK_ID_OFFS, offsetof(struct arm_smccc_quirk, id)); DEFINE(ARM_SMCCC_QUIRK_STATE_OFFS, offsetof(struct arm_smccc_quirk, state)); + DEFINE(ARM_SMCCC_1_2_REGS_X0_OFFS, offsetof(struct arm_smccc_1_2_regs, a0)); + DEFINE(ARM_SMCCC_1_2_REGS_X2_OFFS, offsetof(struct arm_smccc_1_2_regs, a2)); + DEFINE(ARM_SMCCC_1_2_REGS_X4_OFFS, offsetof(struct arm_smccc_1_2_regs, a4)); + DEFINE(ARM_SMCCC_1_2_REGS_X6_OFFS, offsetof(struct arm_smccc_1_2_regs, a6)); + DEFINE(ARM_SMCCC_1_2_REGS_X8_OFFS, offsetof(struct arm_smccc_1_2_regs, a8)); + DEFINE(ARM_SMCCC_1_2_REGS_X10_OFFS, offsetof(struct arm_smccc_1_2_regs, a10)); + DEFINE(ARM_SMCCC_1_2_REGS_X12_OFFS, offsetof(struct arm_smccc_1_2_regs, a12)); + DEFINE(ARM_SMCCC_1_2_REGS_X14_OFFS, offsetof(struct arm_smccc_1_2_regs, a14)); + DEFINE(ARM_SMCCC_1_2_REGS_X16_OFFS, offsetof(struct arm_smccc_1_2_regs, a16)); BLANK(); DEFINE(HIBERN_PBE_ORIG, offsetof(struct pbe, orig_address)); DEFINE(HIBERN_PBE_ADDR, offsetof(struct pbe, address)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/cacheinfo.c +++ linux-azure-5.4.0/arch/arm64/kernel/cacheinfo.c @@ -43,9 +43,10 @@ this_leaf->type = type; } -static int __init_cache_level(unsigned int cpu) +int init_cache_level(unsigned int cpu) { - unsigned int ctype, level, leaves, fw_level; + unsigned int ctype, level, leaves; + int fw_level; struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); for (level = 1, leaves = 0; level <= MAX_CACHE_LEVEL; level++) { @@ -63,6 +64,9 @@ else fw_level = acpi_find_last_cache_level(cpu); + if (fw_level < 0) + return fw_level; + if (level < fw_level) { /* * some external caches not specified in CLIDR_EL1 @@ -78,7 +82,7 @@ return 0; } -static int __populate_cache_leaves(unsigned int cpu) +int populate_cache_leaves(unsigned int cpu) { unsigned int level, idx; enum cache_type type; @@ -97,6 +101,3 @@ } return 0; } - -DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level) -DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/cpuidle.c +++ linux-azure-5.4.0/arch/arm64/kernel/cpuidle.c @@ -53,6 +53,9 @@ struct acpi_lpi_state *lpi; struct acpi_processor *pr = per_cpu(processors, cpu); + if (unlikely(!pr || !pr->flags.has_lpi)) + return -EINVAL; + /* * If the PSCI cpu_suspend function hook has not been initialized * idle states must not be enabled, so bail out @@ -60,9 +63,6 @@ if (!psci_ops.cpu_suspend) return -EOPNOTSUPP; - if (unlikely(!pr || !pr->flags.has_lpi)) - return -EINVAL; - count = pr->power.count - 1; if (count <= 0) return -ENODEV; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/cpuinfo.c +++ linux-azure-5.4.0/arch/arm64/kernel/cpuinfo.c @@ -344,6 +344,7 @@ info->reg_id_aa64dfr1 = read_cpuid(ID_AA64DFR1_EL1); info->reg_id_aa64isar0 = read_cpuid(ID_AA64ISAR0_EL1); info->reg_id_aa64isar1 = read_cpuid(ID_AA64ISAR1_EL1); + info->reg_id_aa64isar2 = read_cpuid(ID_AA64ISAR2_EL1); info->reg_id_aa64mmfr0 = read_cpuid(ID_AA64MMFR0_EL1); info->reg_id_aa64mmfr1 = read_cpuid(ID_AA64MMFR1_EL1); info->reg_id_aa64mmfr2 = read_cpuid(ID_AA64MMFR2_EL1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/efi.c +++ linux-azure-5.4.0/arch/arm64/kernel/efi.c @@ -54,7 +54,8 @@ } /* we will fill this structure from the stub, so don't put it in .bss */ -struct screen_info screen_info __section(.data); +struct screen_info screen_info __section(".data"); +EXPORT_SYMBOL(screen_info); int __init efi_create_mapping(struct mm_struct *mm, efi_memory_desc_t *md) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/entry.S +++ linux-azure-5.4.0/arch/arm64/kernel/entry.S @@ -59,18 +59,21 @@ .macro kernel_ventry, el, label, regsize = 64 .align 7 -#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 -alternative_if ARM64_UNMAP_KERNEL_AT_EL0 +.Lventry_start\@: .if \el == 0 + /* + * This must be the first instruction of the EL0 vector entries. It is + * skipped by the trampoline vectors, to trigger the cleanup. + */ + b .Lskip_tramp_vectors_cleanup\@ .if \regsize == 64 mrs x30, tpidrro_el0 msr tpidrro_el0, xzr .else mov x30, xzr .endif +.Lskip_tramp_vectors_cleanup\@: .endif -alternative_else_nop_endif -#endif sub sp, sp, #S_FRAME_SIZE #ifdef CONFIG_VMAP_STACK @@ -116,11 +119,15 @@ mrs x0, tpidrro_el0 #endif b el\()\el\()_\label +.org .Lventry_start\@ + 128 // Did we overflow the ventry slot? .endm - .macro tramp_alias, dst, sym + .macro tramp_alias, dst, sym, tmp mov_q \dst, TRAMP_VALIAS - add \dst, \dst, #(\sym - .entry.tramp.text) + adr_l \tmp, \sym + add \dst, \dst, \tmp + adr_l \tmp, .entry.tramp.text + sub \dst, \dst, \tmp .endm // This macro corrupts x0-x3. It is the caller's duty @@ -361,21 +368,25 @@ ldp x24, x25, [sp, #16 * 12] ldp x26, x27, [sp, #16 * 13] ldp x28, x29, [sp, #16 * 14] - ldr lr, [sp, #S_LR] - add sp, sp, #S_FRAME_SIZE // restore sp .if \el == 0 -alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0 +alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0 + ldr lr, [sp, #S_LR] + add sp, sp, #S_FRAME_SIZE // restore sp + eret +alternative_else_nop_endif #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 bne 5f - msr far_el1, x30 - tramp_alias x30, tramp_exit_native + msr far_el1, x29 + tramp_alias x30, tramp_exit_native, x29 br x30 5: - tramp_alias x30, tramp_exit_compat + tramp_alias x30, tramp_exit_compat, x29 br x30 #endif .else + ldr lr, [sp, #S_LR] + add sp, sp, #S_FRAME_SIZE // restore sp eret .endif sb @@ -1012,15 +1023,10 @@ .popsection // .entry.text -#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 -/* - * Exception vectors trampoline. - */ - .pushsection ".entry.tramp.text", "ax" - + // Move from tramp_pg_dir to swapper_pg_dir .macro tramp_map_kernel, tmp mrs \tmp, ttbr1_el1 - add \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE) + add \tmp, \tmp, #(2 * PAGE_SIZE) bic \tmp, \tmp, #USER_ASID_FLAG msr ttbr1_el1, \tmp #ifdef CONFIG_QCOM_FALKOR_ERRATUM_1003 @@ -1037,9 +1043,10 @@ #endif /* CONFIG_QCOM_FALKOR_ERRATUM_1003 */ .endm + // Move from swapper_pg_dir to tramp_pg_dir .macro tramp_unmap_kernel, tmp mrs \tmp, ttbr1_el1 - sub \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE) + sub \tmp, \tmp, #(2 * PAGE_SIZE) orr \tmp, \tmp, #USER_ASID_FLAG msr ttbr1_el1, \tmp /* @@ -1049,12 +1056,47 @@ */ .endm - .macro tramp_ventry, regsize = 64 + .macro tramp_data_page dst + adr_l \dst, .entry.tramp.text + sub \dst, \dst, PAGE_SIZE + .endm + + .macro tramp_data_read_var dst, var +#ifdef CONFIG_RANDOMIZE_BASE + tramp_data_page \dst + add \dst, \dst, #:lo12:__entry_tramp_data_\var + ldr \dst, [\dst] +#else + ldr \dst, =\var +#endif + .endm + +#define BHB_MITIGATION_NONE 0 +#define BHB_MITIGATION_LOOP 1 +#define BHB_MITIGATION_FW 2 +#define BHB_MITIGATION_INSN 3 + + .macro tramp_ventry, vector_start, regsize, kpti, bhb .align 7 1: .if \regsize == 64 msr tpidrro_el0, x30 // Restored in kernel_ventry .endif + + .if \bhb == BHB_MITIGATION_LOOP + /* + * This sequence must appear before the first indirect branch. i.e. the + * ret out of tramp_ventry. It appears here because x30 is free. + */ + __mitigate_spectre_bhb_loop x30 + .endif // \bhb == BHB_MITIGATION_LOOP + + .if \bhb == BHB_MITIGATION_INSN + clearbhb + isb + .endif // \bhb == BHB_MITIGATION_INSN + + .if \kpti == 1 /* * Defend against branch aliasing attacks by pushing a dummy * entry onto the return stack and using a RET instruction to @@ -1064,46 +1106,79 @@ b . 2: tramp_map_kernel x30 -#ifdef CONFIG_RANDOMIZE_BASE - adr x30, tramp_vectors + PAGE_SIZE alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003 - ldr x30, [x30] -#else - ldr x30, =vectors -#endif + tramp_data_read_var x30, vectors alternative_if_not ARM64_WORKAROUND_CAVIUM_TX2_219_PRFM - prfm plil1strm, [x30, #(1b - tramp_vectors)] + prfm plil1strm, [x30, #(1b - \vector_start)] alternative_else_nop_endif + msr vbar_el1, x30 - add x30, x30, #(1b - tramp_vectors) isb + .else + ldr x30, =vectors + .endif // \kpti == 1 + + .if \bhb == BHB_MITIGATION_FW + /* + * The firmware sequence must appear before the first indirect branch. + * i.e. the ret out of tramp_ventry. But it also needs the stack to be + * mapped to save/restore the registers the SMC clobbers. + */ + __mitigate_spectre_bhb_fw + .endif // \bhb == BHB_MITIGATION_FW + + add x30, x30, #(1b - \vector_start + 4) ret +.org 1b + 128 // Did we overflow the ventry slot? .endm .macro tramp_exit, regsize = 64 - adr x30, tramp_vectors + tramp_data_read_var x30, this_cpu_vector +alternative_if_not ARM64_HAS_VIRT_HOST_EXTN + mrs x29, tpidr_el1 +alternative_else + mrs x29, tpidr_el2 +alternative_endif + ldr x30, [x30, x29] + msr vbar_el1, x30 - tramp_unmap_kernel x30 + ldr lr, [sp, #S_LR] + tramp_unmap_kernel x29 .if \regsize == 64 - mrs x30, far_el1 + mrs x29, far_el1 .endif + add sp, sp, #S_FRAME_SIZE // restore sp eret sb .endm - .align 11 -ENTRY(tramp_vectors) + .macro generate_tramp_vector, kpti, bhb +.Lvector_start\@: .space 0x400 - tramp_ventry - tramp_ventry - tramp_ventry - tramp_ventry - - tramp_ventry 32 - tramp_ventry 32 - tramp_ventry 32 - tramp_ventry 32 + .rept 4 + tramp_ventry .Lvector_start\@, 64, \kpti, \bhb + .endr + .rept 4 + tramp_ventry .Lvector_start\@, 32, \kpti, \bhb + .endr + .endm + +#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 +/* + * Exception vectors trampoline. + * The order must match __bp_harden_el1_vectors and the + * arm64_bp_harden_el1_vectors enum. + */ + .pushsection ".entry.tramp.text", "ax" + .align 11 +ENTRY(tramp_vectors) +#ifdef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY + generate_tramp_vector kpti=1, bhb=BHB_MITIGATION_LOOP + generate_tramp_vector kpti=1, bhb=BHB_MITIGATION_FW + generate_tramp_vector kpti=1, bhb=BHB_MITIGATION_INSN +#endif /* CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ + generate_tramp_vector kpti=1, bhb=BHB_MITIGATION_NONE END(tramp_vectors) ENTRY(tramp_exit_native) @@ -1121,12 +1196,56 @@ .align PAGE_SHIFT .globl __entry_tramp_data_start __entry_tramp_data_start: +__entry_tramp_data_vectors: .quad vectors +#ifdef CONFIG_ARM_SDE_INTERFACE +__entry_tramp_data___sdei_asm_handler: + .quad __sdei_asm_handler +#endif /* CONFIG_ARM_SDE_INTERFACE */ +__entry_tramp_data_this_cpu_vector: + .quad this_cpu_vector .popsection // .rodata #endif /* CONFIG_RANDOMIZE_BASE */ #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ /* + * Exception vectors for spectre mitigations on entry from EL1 when + * kpti is not in use. + */ + .macro generate_el1_vector, bhb +.Lvector_start\@: + kernel_ventry 1, sync_invalid // Synchronous EL1t + kernel_ventry 1, irq_invalid // IRQ EL1t + kernel_ventry 1, fiq_invalid // FIQ EL1t + kernel_ventry 1, error_invalid // Error EL1t + + kernel_ventry 1, sync // Synchronous EL1h + kernel_ventry 1, irq // IRQ EL1h + kernel_ventry 1, fiq_invalid // FIQ EL1h + kernel_ventry 1, error // Error EL1h + + .rept 4 + tramp_ventry .Lvector_start\@, 64, 0, \bhb + .endr + .rept 4 + tramp_ventry .Lvector_start\@, 32, 0, \bhb + .endr + .endm + +/* The order must match tramp_vecs and the arm64_bp_harden_el1_vectors enum. */ + .pushsection ".entry.text", "ax" + .align 11 +SYM_CODE_START(__bp_harden_el1_vectors) +#ifdef CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY + generate_el1_vector bhb=BHB_MITIGATION_LOOP + generate_el1_vector bhb=BHB_MITIGATION_FW + generate_el1_vector bhb=BHB_MITIGATION_INSN +#endif /* CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY */ +SYM_CODE_END(__bp_harden_el1_vectors) + .popsection + + +/* * Register switch for AArch64. The callee-saved registers need to be saved * and restored. On entry: * x0 = previous task_struct (must be preserved across the switch) @@ -1212,13 +1331,7 @@ */ 1: str x4, [x1, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)] -#ifdef CONFIG_RANDOMIZE_BASE - adr x4, tramp_vectors + PAGE_SIZE - add x4, x4, #:lo12:__sdei_asm_trampoline_next_handler - ldr x4, [x4] -#else - ldr x4, =__sdei_asm_handler -#endif + tramp_data_read_var x4, __sdei_asm_handler br x4 ENDPROC(__sdei_asm_entry_trampoline) NOKPROBE(__sdei_asm_entry_trampoline) @@ -1241,12 +1354,6 @@ NOKPROBE(__sdei_asm_exit_trampoline) .ltorg .popsection // .entry.tramp.text -#ifdef CONFIG_RANDOMIZE_BASE -.pushsection ".rodata", "a" -__sdei_asm_trampoline_next_handler: - .quad __sdei_asm_handler -.popsection // .rodata -#endif /* CONFIG_RANDOMIZE_BASE */ #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ /* @@ -1342,7 +1449,7 @@ alternative_else_nop_endif #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 - tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline + tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline, tmp=x3 br x5 #endif ENDPROC(__sdei_asm_handler) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/ftrace.c +++ linux-azure-5.4.0/arch/arm64/kernel/ftrace.c @@ -69,14 +69,26 @@ { unsigned long pc = rec->ip; u32 old, new; - long offset = (long)pc - (long)addr; + long offset = (long)addr - (long)pc; if (offset < -SZ_128M || offset >= SZ_128M) { #ifdef CONFIG_ARM64_MODULE_PLTS - struct plt_entry trampoline, *dst; struct module *mod; /* + * There is only one ftrace trampoline per module. For now, + * this is not a problem since on arm64, all dynamic ftrace + * invocations are routed via ftrace_caller(). This will need + * to be revisited if support for multiple ftrace entry points + * is added in the future, but for now, the pr_err() below + * deals with a theoretical issue only. + */ + if (addr != FTRACE_ADDR) { + pr_err("ftrace: far branches to multiple entry points unsupported inside a single module\n"); + return -EINVAL; + } + + /* * On kernels that support module PLTs, the offset between the * branch instruction and its target may legally exceed the * range of an ordinary relative 'bl' opcode. In this case, we @@ -93,46 +105,7 @@ if (WARN_ON(!mod)) return -EINVAL; - /* - * There is only one ftrace trampoline per module. For now, - * this is not a problem since on arm64, all dynamic ftrace - * invocations are routed via ftrace_caller(). This will need - * to be revisited if support for multiple ftrace entry points - * is added in the future, but for now, the pr_err() below - * deals with a theoretical issue only. - * - * Note that PLTs are place relative, and plt_entries_equal() - * checks whether they point to the same target. Here, we need - * to check if the actual opcodes are in fact identical, - * regardless of the offset in memory so use memcmp() instead. - */ - dst = mod->arch.ftrace_trampoline; - trampoline = get_plt_entry(addr, dst); - if (memcmp(dst, &trampoline, sizeof(trampoline))) { - if (plt_entry_is_initialized(dst)) { - pr_err("ftrace: far branches to multiple entry points unsupported inside a single module\n"); - return -EINVAL; - } - - /* point the trampoline to our ftrace entry point */ - module_disable_ro(mod); - *dst = trampoline; - module_enable_ro(mod, true); - - /* - * Ensure updated trampoline is visible to instruction - * fetch before we patch in the branch. Although the - * architecture doesn't require an IPI in this case, - * Neoverse-N1 erratum #1542419 does require one - * if the TLB maintenance in module_enable_ro() is - * skipped due to rodata_enabled. It doesn't seem worth - * it to make it conditional given that this is - * certainly not a fast-path. - */ - flush_icache_range((unsigned long)&dst[0], - (unsigned long)&dst[1]); - } - addr = (unsigned long)dst; + addr = (unsigned long)mod->arch.ftrace_trampoline; #else /* CONFIG_ARM64_MODULE_PLTS */ return -EINVAL; #endif /* CONFIG_ARM64_MODULE_PLTS */ @@ -153,7 +126,7 @@ unsigned long pc = rec->ip; bool validate = true; u32 old = 0, new; - long offset = (long)pc - (long)addr; + long offset = (long)addr - (long)pc; if (offset < -SZ_128M || offset >= SZ_128M) { #ifdef CONFIG_ARM64_MODULE_PLTS only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/module.c +++ linux-azure-5.4.0/arch/arm64/kernel/module.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -470,22 +471,48 @@ return -ENOEXEC; } -int module_finalize(const Elf_Ehdr *hdr, - const Elf_Shdr *sechdrs, - struct module *me) +static const Elf_Shdr *find_section(const Elf_Ehdr *hdr, + const Elf_Shdr *sechdrs, + const char *name) { const Elf_Shdr *s, *se; const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; for (s = sechdrs, se = sechdrs + hdr->e_shnum; s < se; s++) { - if (strcmp(".altinstructions", secstrs + s->sh_name) == 0) - apply_alternatives_module((void *)s->sh_addr, s->sh_size); -#ifdef CONFIG_ARM64_MODULE_PLTS - if (IS_ENABLED(CONFIG_DYNAMIC_FTRACE) && - !strcmp(".text.ftrace_trampoline", secstrs + s->sh_name)) - me->arch.ftrace_trampoline = (void *)s->sh_addr; -#endif + if (strcmp(name, secstrs + s->sh_name) == 0) + return s; } + return NULL; +} + +static int module_init_ftrace_plt(const Elf_Ehdr *hdr, + const Elf_Shdr *sechdrs, + struct module *mod) +{ +#if defined(CONFIG_ARM64_MODULE_PLTS) && defined(CONFIG_DYNAMIC_FTRACE) + const Elf_Shdr *s; + struct plt_entry *plt; + + s = find_section(hdr, sechdrs, ".text.ftrace_trampoline"); + if (!s) + return -ENOEXEC; + + plt = (void *)s->sh_addr; + *plt = get_plt_entry(FTRACE_ADDR, plt); + mod->arch.ftrace_trampoline = plt; +#endif return 0; } + +int module_finalize(const Elf_Ehdr *hdr, + const Elf_Shdr *sechdrs, + struct module *me) +{ + const Elf_Shdr *s; + s = find_section(hdr, sechdrs, ".altinstructions"); + if (s) + apply_alternatives_module((void *)s->sh_addr, s->sh_size); + + return module_init_ftrace_plt(hdr, sechdrs, me); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/pci.c +++ linux-azure-5.4.0/arch/arm64/kernel/pci.c @@ -82,14 +82,29 @@ int pcibios_root_bridge_prepare(struct pci_host_bridge *bridge) { - if (!acpi_disabled) { - struct pci_config_window *cfg = bridge->bus->sysdata; - struct acpi_device *adev = to_acpi_device(cfg->parent); - struct device *bus_dev = &bridge->bus->dev; - - ACPI_COMPANION_SET(&bridge->dev, adev); - set_dev_node(bus_dev, acpi_get_node(acpi_device_handle(adev))); - } + struct pci_config_window *cfg; + struct acpi_device *adev; + struct device *bus_dev; + + if (acpi_disabled) + return 0; + + cfg = bridge->bus->sysdata; + + /* + * On Hyper-V there is no corresponding ACPI device for a root bridge, + * therefore ->parent is set as NULL by the driver. And set 'adev' as + * NULL in this case because there is no proper ACPI device. + */ + if (!cfg->parent) + adev = NULL; + else + adev = to_acpi_device(cfg->parent); + + bus_dev = &bridge->bus->dev; + + ACPI_COMPANION_SET(&bridge->dev, adev); + set_dev_node(bus_dev, acpi_get_node(acpi_device_handle(adev))); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/perf_callchain.c +++ linux-azure-5.4.0/arch/arm64/kernel/perf_callchain.c @@ -102,7 +102,9 @@ void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -147,9 +149,10 @@ void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct stackframe frame; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -160,18 +163,21 @@ unsigned long perf_instruction_pointer(struct pt_regs *regs) { - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) - return perf_guest_cbs->get_guest_ip(); + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + + if (guest_cbs && guest_cbs->is_in_guest()) + return guest_cbs->get_guest_ip(); return instruction_pointer(regs); } unsigned long perf_misc_flags(struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); int misc = 0; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { - if (perf_guest_cbs->is_user_mode()) + if (guest_cbs && guest_cbs->is_in_guest()) { + if (guest_cbs->is_user_mode()) misc |= PERF_RECORD_MISC_GUEST_USER; else misc |= PERF_RECORD_MISC_GUEST_KERNEL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/probes/kprobes.c +++ linux-azure-5.4.0/arch/arm64/kernel/probes/kprobes.c @@ -36,25 +36,16 @@ static void __kprobes post_kprobe_handler(struct kprobe_ctlblk *, struct pt_regs *); -static int __kprobes patch_text(kprobe_opcode_t *addr, u32 opcode) -{ - void *addrs[1]; - u32 insns[1]; - - addrs[0] = addr; - insns[0] = opcode; - - return aarch64_insn_patch_text(addrs, insns, 1); -} - static void __kprobes arch_prepare_ss_slot(struct kprobe *p) { + kprobe_opcode_t *addr = p->ainsn.api.insn; + void *addrs[] = {addr, addr + 1}; + u32 insns[] = {p->opcode, BRK64_OPCODE_KPROBES_SS}; + /* prepare insn slot */ - patch_text(p->ainsn.api.insn, p->opcode); + aarch64_insn_patch_text(addrs, insns, 2); - flush_icache_range((uintptr_t) (p->ainsn.api.insn), - (uintptr_t) (p->ainsn.api.insn) + - MAX_INSN_SIZE * sizeof(kprobe_opcode_t)); + flush_icache_range((uintptr_t)addr, (uintptr_t)(addr + MAX_INSN_SIZE)); /* * Needs restoring of return address after stepping xol. @@ -134,13 +125,18 @@ /* arm kprobe: install breakpoint in text */ void __kprobes arch_arm_kprobe(struct kprobe *p) { - patch_text(p->addr, BRK64_OPCODE_KPROBES); + void *addr = p->addr; + u32 insn = BRK64_OPCODE_KPROBES; + + aarch64_insn_patch_text(&addr, &insn, 1); } /* disarm kprobe: remove breakpoint from text */ void __kprobes arch_disarm_kprobe(struct kprobe *p) { - patch_text(p->addr, p->opcode); + void *addr = p->addr; + + aarch64_insn_patch_text(&addr, &p->opcode, 1); } void __kprobes arch_remove_kprobe(struct kprobe *p) @@ -169,20 +165,15 @@ } /* - * Interrupts need to be disabled before single-step mode is set, and not - * reenabled until after single-step mode ends. - * Without disabling interrupt on local CPU, there is a chance of - * interrupt occurrence in the period of exception return and start of - * out-of-line single-step, that result in wrongly single stepping - * into the interrupt handler. + * Mask all of DAIF while executing the instruction out-of-line, to keep things + * simple and avoid nesting exceptions. Interrupts do have to be disabled since + * the kprobe state is per-CPU and doesn't get migrated. */ static void __kprobes kprobes_save_local_irqflag(struct kprobe_ctlblk *kcb, struct pt_regs *regs) { kcb->saved_irqflag = regs->pstate & DAIF_MASK; - regs->pstate |= PSR_I_BIT; - /* Unmask PSTATE.D for enabling software step exceptions. */ - regs->pstate &= ~PSR_D_BIT; + regs->pstate |= DAIF_MASK; } static void __kprobes kprobes_restore_local_irqflag(struct kprobe_ctlblk *kcb, @@ -225,10 +216,7 @@ slot = (unsigned long)p->ainsn.api.insn; set_ss_context(kcb, slot); /* mark pending ss */ - - /* IRQs and single stepping do not mix well. */ kprobes_save_local_irqflag(kcb, regs); - kernel_enable_single_step(regs); instruction_pointer_set(regs, slot); } else { /* insn simulation */ @@ -279,12 +267,8 @@ } /* call post handler */ kcb->kprobe_status = KPROBE_HIT_SSDONE; - if (cur->post_handler) { - /* post_handler can hit breakpoint and single step - * again, so we enable D-flag for recursive exception. - */ + if (cur->post_handler) cur->post_handler(cur, regs, 0); - } reset_current_kprobe(); } @@ -308,8 +292,6 @@ if (!instruction_pointer(regs)) BUG(); - kernel_disable_single_step(); - if (kcb->kprobe_status == KPROBE_REENTER) restore_previous_kprobe(kcb); else @@ -371,10 +353,6 @@ * pre-handler and it returned non-zero, it will * modify the execution path and no need to single * stepping. Let's just reset current kprobe and exit. - * - * pre_handler can hit a breakpoint and can step thru - * before return, keep PSTATE D-flag enabled until - * pre_handler return back. */ if (!p->pre_handler || !p->pre_handler(p, regs)) { setup_singlestep(p, regs, kcb, 0); @@ -405,7 +383,7 @@ } static int __kprobes -kprobe_single_step_handler(struct pt_regs *regs, unsigned int esr) +kprobe_breakpoint_ss_handler(struct pt_regs *regs, unsigned int esr) { struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); int retval; @@ -415,16 +393,15 @@ if (retval == DBG_HOOK_HANDLED) { kprobes_restore_local_irqflag(kcb, regs); - kernel_disable_single_step(); - post_kprobe_handler(kcb, regs); } return retval; } -static struct step_hook kprobes_step_hook = { - .fn = kprobe_single_step_handler, +static struct break_hook kprobes_break_ss_hook = { + .imm = KPROBES_BRK_SS_IMM, + .fn = kprobe_breakpoint_ss_handler, }; static int __kprobes @@ -568,7 +545,7 @@ int __init arch_init_kprobes(void) { register_kernel_break_hook(&kprobes_break_hook); - register_kernel_step_hook(&kprobes_step_hook); + register_kernel_break_hook(&kprobes_break_ss_hook); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/kernel/smccc-call.S +++ linux-azure-5.4.0/arch/arm64/kernel/smccc-call.S @@ -45,3 +45,60 @@ SMCCC hvc ENDPROC(__arm_smccc_hvc) EXPORT_SYMBOL(__arm_smccc_hvc) + + .macro SMCCC_1_2 instr + /* Save `res` and free a GPR that won't be clobbered */ + stp x1, x19, [sp, #-16]! + + /* Ensure `args` won't be clobbered while loading regs in next step */ + mov x19, x0 + + /* Load the registers x0 - x17 from the struct arm_smccc_1_2_regs */ + ldp x0, x1, [x19, #ARM_SMCCC_1_2_REGS_X0_OFFS] + ldp x2, x3, [x19, #ARM_SMCCC_1_2_REGS_X2_OFFS] + ldp x4, x5, [x19, #ARM_SMCCC_1_2_REGS_X4_OFFS] + ldp x6, x7, [x19, #ARM_SMCCC_1_2_REGS_X6_OFFS] + ldp x8, x9, [x19, #ARM_SMCCC_1_2_REGS_X8_OFFS] + ldp x10, x11, [x19, #ARM_SMCCC_1_2_REGS_X10_OFFS] + ldp x12, x13, [x19, #ARM_SMCCC_1_2_REGS_X12_OFFS] + ldp x14, x15, [x19, #ARM_SMCCC_1_2_REGS_X14_OFFS] + ldp x16, x17, [x19, #ARM_SMCCC_1_2_REGS_X16_OFFS] + + \instr #0 + + /* Load the `res` from the stack */ + ldr x19, [sp] + + /* Store the registers x0 - x17 into the result structure */ + stp x0, x1, [x19, #ARM_SMCCC_1_2_REGS_X0_OFFS] + stp x2, x3, [x19, #ARM_SMCCC_1_2_REGS_X2_OFFS] + stp x4, x5, [x19, #ARM_SMCCC_1_2_REGS_X4_OFFS] + stp x6, x7, [x19, #ARM_SMCCC_1_2_REGS_X6_OFFS] + stp x8, x9, [x19, #ARM_SMCCC_1_2_REGS_X8_OFFS] + stp x10, x11, [x19, #ARM_SMCCC_1_2_REGS_X10_OFFS] + stp x12, x13, [x19, #ARM_SMCCC_1_2_REGS_X12_OFFS] + stp x14, x15, [x19, #ARM_SMCCC_1_2_REGS_X14_OFFS] + stp x16, x17, [x19, #ARM_SMCCC_1_2_REGS_X16_OFFS] + + /* Restore original x19 */ + ldp xzr, x19, [sp], #16 + ret +.endm + +/* + * void arm_smccc_1_2_hvc(const struct arm_smccc_1_2_regs *args, + * struct arm_smccc_1_2_regs *res); + */ +SYM_FUNC_START(arm_smccc_1_2_hvc) + SMCCC_1_2 hvc +SYM_FUNC_END(arm_smccc_1_2_hvc) +EXPORT_SYMBOL(arm_smccc_1_2_hvc) + +/* + * void arm_smccc_1_2_smc(const struct arm_smccc_1_2_regs *args, + * struct arm_smccc_1_2_regs *res); + */ +SYM_FUNC_START(arm_smccc_1_2_smc) + SMCCC_1_2 smc +SYM_FUNC_END(arm_smccc_1_2_smc) +EXPORT_SYMBOL(arm_smccc_1_2_smc) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/mm/cache.S +++ linux-azure-5.4.0/arch/arm64/mm/cache.S @@ -228,8 +228,6 @@ * - dir - DMA direction */ ENTRY(__dma_map_area) - cmp w2, #DMA_FROM_DEVICE - b.eq __dma_inv_area b __dma_clean_area ENDPIPROC(__dma_map_area) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/mm/ioremap.c +++ linux-azure-5.4.0/arch/arm64/mm/ioremap.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include @@ -100,3 +101,11 @@ { early_ioremap_setup(); } + +bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size, + unsigned long flags) +{ + unsigned long pfn = PHYS_PFN(offset); + + return memblock_is_map_memory(pfn); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/arm64/mm/proc.S +++ linux-azure-5.4.0/arch/arm64/mm/proc.S @@ -166,7 +166,7 @@ .pushsection ".idmap.text", "awx" .macro __idmap_cpu_set_reserved_ttbr1, tmp1, tmp2 - adrp \tmp1, empty_zero_page + adrp \tmp1, reserved_pg_dir phys_to_ttbr \tmp2, \tmp1 offset_ttbr1 \tmp2, \tmp1 msr ttbr1_el1, \tmp2 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/csky/kernel/ptrace.c +++ linux-azure-5.4.0/arch/csky/kernel/ptrace.c @@ -96,7 +96,8 @@ if (ret) return ret; - regs.sr = task_pt_regs(target)->sr; + /* BIT(0) of regs.sr is Condition Code/Carry bit */ + regs.sr = (regs.sr & BIT(0)) | (task_pt_regs(target)->sr & ~BIT(0)); #ifdef CONFIG_CPU_HAS_HILO regs.dcsr = task_pt_regs(target)->dcsr; #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/csky/kernel/signal.c +++ linux-azure-5.4.0/arch/csky/kernel/signal.c @@ -52,10 +52,14 @@ struct sigcontext __user *sc) { int err = 0; + unsigned long sr = regs->sr; /* sc_pt_regs is structured the same as the start of pt_regs */ err |= __copy_from_user(regs, &sc->sc_pt_regs, sizeof(struct pt_regs)); + /* BIT(0) of regs->sr is Condition Code/Carry bit */ + regs->sr = (sr & ~1) | (regs->sr & 1); + /* Restore the floating-point state. */ err |= restore_fpu_state(sc); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/hexagon/kernel/vmlinux.lds.S +++ linux-azure-5.4.0/arch/hexagon/kernel/vmlinux.lds.S @@ -60,13 +60,8 @@ _end = .; - /DISCARD/ : { - EXIT_TEXT - EXIT_DATA - EXIT_CALL - } - STABS_DEBUG DWARF_DEBUG + DISCARDS } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/hexagon/lib/io.c +++ linux-azure-5.4.0/arch/hexagon/lib/io.c @@ -27,6 +27,7 @@ *dst++ = *src; } +EXPORT_SYMBOL(__raw_readsw); /* * __raw_writesw - read words a short at a time @@ -47,6 +48,7 @@ } +EXPORT_SYMBOL(__raw_writesw); /* Pretty sure len is pre-adjusted for the length of the access already */ void __raw_readsl(const void __iomem *addr, void *data, int len) @@ -62,6 +64,7 @@ } +EXPORT_SYMBOL(__raw_readsl); void __raw_writesl(void __iomem *addr, const void *data, int len) { @@ -76,3 +79,4 @@ } +EXPORT_SYMBOL(__raw_writesl); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/ia64/Kconfig.debug +++ linux-azure-5.4.0/arch/ia64/Kconfig.debug @@ -39,7 +39,7 @@ config IA64_DEBUG_CMPXCHG bool "Turn on compare-and-exchange bug checking (slow!)" - depends on DEBUG_KERNEL + depends on DEBUG_KERNEL && PRINTK help Selecting this option turns on bug checking for the IA-64 compare-and-exchange instructions. This is slow! Itaniums only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/ia64/include/asm/processor.h +++ linux-azure-5.4.0/arch/ia64/include/asm/processor.h @@ -552,7 +552,7 @@ { unsigned int reg = vector / 64; unsigned int bit = vector % 64; - u64 irr; + unsigned long irr; switch (reg) { case 0: irr = ia64_getreg(_IA64_REG_CR_IRR0); break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/ia64/include/asm/timex.h +++ linux-azure-5.4.0/arch/ia64/include/asm/timex.h @@ -39,6 +39,7 @@ ret = ia64_getreg(_IA64_REG_AR_ITC); return ret; } +#define get_cycles get_cycles extern void ia64_cpu_local_tick (void); extern unsigned long long ia64_native_sched_clock (void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/ia64/kernel/acpi.c +++ linux-azure-5.4.0/arch/ia64/kernel/acpi.c @@ -448,7 +448,8 @@ if (srat_num_cpus == 0) { node_set_online(0); node_cpuid[0].phys_id = hard_smp_processor_id(); - return; + slit_distance(0, 0) = LOCAL_DISTANCE; + goto out; } /* @@ -491,7 +492,7 @@ for (j = 0; j < MAX_NUMNODES; j++) slit_distance(i, j) = i == j ? LOCAL_DISTANCE : REMOTE_DISTANCE; - return; + goto out; } memset(numa_slit, -1, sizeof(numa_slit)); @@ -516,6 +517,8 @@ printk("\n"); } #endif +out: + node_possible_map = node_online_map; } #endif /* CONFIG_ACPI_NUMA */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/ia64/kernel/mca_drv.c +++ linux-azure-5.4.0/arch/ia64/kernel/mca_drv.c @@ -343,7 +343,7 @@ /* - 2 - */ sect_min_size = sal_log_sect_min_sizes[0]; - for (i = 1; i < sizeof sal_log_sect_min_sizes/sizeof(size_t); i++) + for (i = 1; i < ARRAY_SIZE(sal_log_sect_min_sizes); i++) if (sect_min_size > sal_log_sect_min_sizes[i]) sect_min_size = sal_log_sect_min_sizes[i]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/Kconfig.bus +++ linux-azure-5.4.0/arch/m68k/Kconfig.bus @@ -63,7 +63,7 @@ endif -if !MMU +if COLDFIRE config ISA_DMA_API def_bool !M5272 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/Kconfig.cpu +++ linux-azure-5.4.0/arch/m68k/Kconfig.cpu @@ -309,7 +309,7 @@ config M68KFPU_EMU bool "Math emulation support" - depends on MMU + depends on M68KCLASSIC && FPU help At some point in the future, this will cause floating-point math instructions to be emulated by the kernel on machines that lack a only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/Kconfig.machine +++ linux-azure-5.4.0/arch/m68k/Kconfig.machine @@ -23,6 +23,9 @@ this kernel on an Atari, say Y here and browse the material available in ; otherwise say N. +config ATARI_KBD_CORE + bool + config MAC bool "Macintosh support" depends on MMU @@ -187,6 +190,7 @@ config MEMORY_RESERVE int "Memory reservation (MiB)" depends on (UCSIMM || UCDIMM) + default 0 help Reserve certain memory regions on 68x328 based boards. @@ -316,6 +320,7 @@ config UBOOT bool "Support for U-Boot command line parameters" + depends on COLDFIRE help If you say Y here kernel will try to collect command line parameters from the initial u-boot stack. only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/emu/nfeth.c +++ linux-azure-5.4.0/arch/m68k/emu/nfeth.c @@ -254,8 +254,8 @@ for (i = 0; i < MAX_UNIT; i++) { if (nfeth_dev[i]) { - unregister_netdev(nfeth_dev[0]); - free_netdev(nfeth_dev[0]); + unregister_netdev(nfeth_dev[i]); + free_netdev(nfeth_dev[i]); } } free_irq(nfEtherIRQ, nfeth_interrupt); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/include/asm/pgtable_no.h +++ linux-azure-5.4.0/arch/m68k/include/asm/pgtable_no.h @@ -42,7 +42,8 @@ * ZERO_PAGE is a global shared page that is always zero: used * for zero-mapped memory areas etc.. */ -#define ZERO_PAGE(vaddr) (virt_to_page(0)) +extern void *empty_zero_page; +#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page)) /* * All 32bit addresses are effectively valid for vmalloc... only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/include/asm/raw_io.h +++ linux-azure-5.4.0/arch/m68k/include/asm/raw_io.h @@ -17,21 +17,21 @@ * two accesses to memory, which may be undesirable for some devices. */ #define in_8(addr) \ - ({ u8 __v = (*(__force volatile u8 *) (addr)); __v; }) + ({ u8 __v = (*(__force volatile u8 *) (unsigned long)(addr)); __v; }) #define in_be16(addr) \ - ({ u16 __v = (*(__force volatile u16 *) (addr)); __v; }) + ({ u16 __v = (*(__force volatile u16 *) (unsigned long)(addr)); __v; }) #define in_be32(addr) \ - ({ u32 __v = (*(__force volatile u32 *) (addr)); __v; }) + ({ u32 __v = (*(__force volatile u32 *) (unsigned long)(addr)); __v; }) #define in_le16(addr) \ - ({ u16 __v = le16_to_cpu(*(__force volatile __le16 *) (addr)); __v; }) + ({ u16 __v = le16_to_cpu(*(__force volatile __le16 *) (unsigned long)(addr)); __v; }) #define in_le32(addr) \ - ({ u32 __v = le32_to_cpu(*(__force volatile __le32 *) (addr)); __v; }) + ({ u32 __v = le32_to_cpu(*(__force volatile __le32 *) (unsigned long)(addr)); __v; }) -#define out_8(addr,b) (void)((*(__force volatile u8 *) (addr)) = (b)) -#define out_be16(addr,w) (void)((*(__force volatile u16 *) (addr)) = (w)) -#define out_be32(addr,l) (void)((*(__force volatile u32 *) (addr)) = (l)) -#define out_le16(addr,w) (void)((*(__force volatile __le16 *) (addr)) = cpu_to_le16(w)) -#define out_le32(addr,l) (void)((*(__force volatile __le32 *) (addr)) = cpu_to_le32(l)) +#define out_8(addr,b) (void)((*(__force volatile u8 *) (unsigned long)(addr)) = (b)) +#define out_be16(addr,w) (void)((*(__force volatile u16 *) (unsigned long)(addr)) = (w)) +#define out_be32(addr,l) (void)((*(__force volatile u32 *) (unsigned long)(addr)) = (l)) +#define out_le16(addr,w) (void)((*(__force volatile __le16 *) (unsigned long)(addr)) = cpu_to_le16(w)) +#define out_le32(addr,l) (void)((*(__force volatile __le32 *) (unsigned long)(addr)) = cpu_to_le32(l)) #define raw_inb in_8 #define raw_inw in_be16 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/include/asm/timex.h +++ linux-azure-5.4.0/arch/m68k/include/asm/timex.h @@ -35,7 +35,7 @@ { if (mach_random_get_entropy) return mach_random_get_entropy(); - return 0; + return random_get_entropy_fallback(); } #define random_get_entropy random_get_entropy only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/m68k/kernel/signal.c +++ linux-azure-5.4.0/arch/m68k/kernel/signal.c @@ -448,7 +448,7 @@ if (CPU_IS_060 ? sc->sc_fpstate[2] : sc->sc_fpstate[0]) { fpu_version = sc->sc_fpstate[0]; - if (CPU_IS_020_OR_030 && + if (CPU_IS_020_OR_030 && !regs->stkadj && regs->vector >= (VEC_FPBRUC * 4) && regs->vector <= (VEC_FPNAN * 4)) { /* Clear pending exception in 68882 idle frame */ @@ -511,7 +511,7 @@ if (!(CPU_IS_060 || CPU_IS_COLDFIRE)) context_size = fpstate[1]; fpu_version = fpstate[0]; - if (CPU_IS_020_OR_030 && + if (CPU_IS_020_OR_030 && !regs->stkadj && regs->vector >= (VEC_FPBRUC * 4) && regs->vector <= (VEC_FPNAN * 4)) { /* Clear pending exception in 68882 idle frame */ @@ -829,18 +829,24 @@ return 0; } +static inline struct pt_regs *rte_regs(struct pt_regs *regs) +{ + return (void *)regs + regs->stkadj; +} + static void setup_sigcontext(struct sigcontext *sc, struct pt_regs *regs, unsigned long mask) { + struct pt_regs *tregs = rte_regs(regs); sc->sc_mask = mask; sc->sc_usp = rdusp(); sc->sc_d0 = regs->d0; sc->sc_d1 = regs->d1; sc->sc_a0 = regs->a0; sc->sc_a1 = regs->a1; - sc->sc_sr = regs->sr; - sc->sc_pc = regs->pc; - sc->sc_formatvec = regs->format << 12 | regs->vector; + sc->sc_sr = tregs->sr; + sc->sc_pc = tregs->pc; + sc->sc_formatvec = tregs->format << 12 | tregs->vector; save_a5_state(sc, regs); save_fpu_state(sc, regs); } @@ -848,6 +854,7 @@ static inline int rt_setup_ucontext(struct ucontext __user *uc, struct pt_regs *regs) { struct switch_stack *sw = (struct switch_stack *)regs - 1; + struct pt_regs *tregs = rte_regs(regs); greg_t __user *gregs = uc->uc_mcontext.gregs; int err = 0; @@ -868,9 +875,9 @@ err |= __put_user(sw->a5, &gregs[13]); err |= __put_user(sw->a6, &gregs[14]); err |= __put_user(rdusp(), &gregs[15]); - err |= __put_user(regs->pc, &gregs[16]); - err |= __put_user(regs->sr, &gregs[17]); - err |= __put_user((regs->format << 12) | regs->vector, &uc->uc_formatvec); + err |= __put_user(tregs->pc, &gregs[16]); + err |= __put_user(tregs->sr, &gregs[17]); + err |= __put_user((tregs->format << 12) | tregs->vector, &uc->uc_formatvec); err |= rt_save_fpu_state(uc, regs); return err; } @@ -887,13 +894,14 @@ struct pt_regs *regs) { struct sigframe __user *frame; - int fsize = frame_extra_sizes(regs->format); + struct pt_regs *tregs = rte_regs(regs); + int fsize = frame_extra_sizes(tregs->format); struct sigcontext context; int err = 0, sig = ksig->sig; if (fsize < 0) { pr_debug("setup_frame: Unknown frame format %#x\n", - regs->format); + tregs->format); return -EFAULT; } @@ -904,7 +912,7 @@ err |= __put_user(sig, &frame->sig); - err |= __put_user(regs->vector, &frame->code); + err |= __put_user(tregs->vector, &frame->code); err |= __put_user(&frame->sc, &frame->psc); if (_NSIG_WORDS > 1) @@ -930,33 +938,27 @@ push_cache ((unsigned long) &frame->retcode); /* - * Set up registers for signal handler. All the state we are about - * to destroy is successfully copied to sigframe. - */ - wrusp ((unsigned long) frame); - regs->pc = (unsigned long) ksig->ka.sa.sa_handler; - adjustformat(regs); - - /* * This is subtle; if we build more than one sigframe, all but the * first one will see frame format 0 and have fsize == 0, so we won't * screw stkadj. */ - if (fsize) + if (fsize) { regs->stkadj = fsize; - - /* Prepare to skip over the extra stuff in the exception frame. */ - if (regs->stkadj) { - struct pt_regs *tregs = - (struct pt_regs *)((ulong)regs + regs->stkadj); + tregs = rte_regs(regs); pr_debug("Performing stackadjust=%04lx\n", regs->stkadj); - /* This must be copied with decreasing addresses to - handle overlaps. */ tregs->vector = 0; tregs->format = 0; - tregs->pc = regs->pc; tregs->sr = regs->sr; } + + /* + * Set up registers for signal handler. All the state we are about + * to destroy is successfully copied to sigframe. + */ + wrusp ((unsigned long) frame); + tregs->pc = (unsigned long) ksig->ka.sa.sa_handler; + adjustformat(regs); + return 0; } @@ -964,7 +966,8 @@ struct pt_regs *regs) { struct rt_sigframe __user *frame; - int fsize = frame_extra_sizes(regs->format); + struct pt_regs *tregs = rte_regs(regs); + int fsize = frame_extra_sizes(tregs->format); int err = 0, sig = ksig->sig; if (fsize < 0) { @@ -1014,33 +1017,26 @@ push_cache ((unsigned long) &frame->retcode); /* - * Set up registers for signal handler. All the state we are about - * to destroy is successfully copied to sigframe. - */ - wrusp ((unsigned long) frame); - regs->pc = (unsigned long) ksig->ka.sa.sa_handler; - adjustformat(regs); - - /* * This is subtle; if we build more than one sigframe, all but the * first one will see frame format 0 and have fsize == 0, so we won't * screw stkadj. */ - if (fsize) + if (fsize) { regs->stkadj = fsize; - - /* Prepare to skip over the extra stuff in the exception frame. */ - if (regs->stkadj) { - struct pt_regs *tregs = - (struct pt_regs *)((ulong)regs + regs->stkadj); + tregs = rte_regs(regs); pr_debug("Performing stackadjust=%04lx\n", regs->stkadj); - /* This must be copied with decreasing addresses to - handle overlaps. */ tregs->vector = 0; tregs->format = 0; - tregs->pc = regs->pc; tregs->sr = regs->sr; } + + /* + * Set up registers for signal handler. All the state we are about + * to destroy is successfully copied to sigframe. + */ + wrusp ((unsigned long) frame); + tregs->pc = (unsigned long) ksig->ka.sa.sa_handler; + adjustformat(regs); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/microblaze/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/microblaze/include/asm/uaccess.h @@ -171,27 +171,27 @@ #define __get_user(x, ptr) \ ({ \ - unsigned long __gu_val = 0; \ long __gu_err; \ switch (sizeof(*(ptr))) { \ case 1: \ - __get_user_asm("lbu", (ptr), __gu_val, __gu_err); \ + __get_user_asm("lbu", (ptr), x, __gu_err); \ break; \ case 2: \ - __get_user_asm("lhu", (ptr), __gu_val, __gu_err); \ + __get_user_asm("lhu", (ptr), x, __gu_err); \ break; \ case 4: \ - __get_user_asm("lw", (ptr), __gu_val, __gu_err); \ + __get_user_asm("lw", (ptr), x, __gu_err); \ break; \ - case 8: \ - __gu_err = __copy_from_user(&__gu_val, ptr, 8); \ - if (__gu_err) \ - __gu_err = -EFAULT; \ + case 8: { \ + __u64 __x = 0; \ + __gu_err = raw_copy_from_user(&__x, ptr, 8) ? \ + -EFAULT : 0; \ + (x) = (typeof(x))(typeof((x) - (x)))__x; \ break; \ + } \ default: \ /* __gu_val = 0; __gu_err = -EINVAL;*/ __gu_err = __user_bad();\ } \ - x = (__force __typeof__(*(ptr))) __gu_val; \ __gu_err; \ }) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/bcm47xx/prom.c +++ linux-azure-5.4.0/arch/mips/bcm47xx/prom.c @@ -85,7 +85,7 @@ pr_debug("Assume 128MB RAM\n"); break; } - if (!memcmp(prom_init, prom_init + mem, 32)) + if (!memcmp((void *)prom_init, (void *)prom_init + mem, 32)) break; } lowmem = mem; @@ -162,7 +162,7 @@ off = EXTVBASE + __pa(off); for (extmem = 128 << 20; extmem < 512 << 20; extmem <<= 1) { - if (!memcmp(prom_init, (void *)(off + extmem), 16)) + if (!memcmp((void *)prom_init, (void *)(off + extmem), 16)) break; } extmem -= lowmem; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/bcm63xx/clk.c +++ linux-azure-5.4.0/arch/mips/bcm63xx/clk.c @@ -381,6 +381,18 @@ EXPORT_SYMBOL(clk_disable); +struct clk *clk_get_parent(struct clk *clk) +{ + return NULL; +} +EXPORT_SYMBOL(clk_get_parent); + +int clk_set_parent(struct clk *clk, struct clk *parent) +{ + return 0; +} +EXPORT_SYMBOL(clk_set_parent); + unsigned long clk_get_rate(struct clk *clk) { if (!clk) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/bmips/setup.c +++ linux-azure-5.4.0/arch/mips/bmips/setup.c @@ -167,7 +167,7 @@ dtb = phys_to_virt(fw_arg2); else if (fw_passed_dtb) /* UHI interface or appended dtb */ dtb = (void *)fw_passed_dtb; - else if (__dtb_start != __dtb_end) + else if (&__dtb_start != &__dtb_end) dtb = (void *)__dtb_start; else panic("no dtb found"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/boot/compressed/string.c +++ linux-azure-5.4.0/arch/mips/boot/compressed/string.c @@ -5,6 +5,7 @@ * Very small subset of simple string routines */ +#include #include void *memcpy(void *dest, const void *src, size_t n) @@ -27,3 +28,19 @@ ss[i] = c; return s; } + +void * __weak memmove(void *dest, const void *src, size_t n) +{ + unsigned int i; + const char *s = src; + char *d = dest; + + if ((uintptr_t)dest < (uintptr_t)src) { + for (i = 0; i < n; i++) + d[i] = s[i]; + } else { + for (i = n; i > 0; i--) + d[i - 1] = s[i - 1]; + } + return dest; +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/cavium-octeon/octeon-platform.c +++ linux-azure-5.4.0/arch/mips/cavium-octeon/octeon-platform.c @@ -86,11 +86,12 @@ "refclk-frequency", &clock_rate); if (i) { dev_err(dev, "No UCTL \"refclk-frequency\"\n"); + of_node_put(uctl_node); goto exit; } i = of_property_read_string(uctl_node, "refclk-type", &clock_type); - + of_node_put(uctl_node); if (!i && strcmp("crystal", clock_type) == 0) is_crystal_clock = true; } @@ -328,6 +329,7 @@ pd->dev.platform_data = &octeon_ehci_pdata; octeon_ehci_hw_start(&pd->dev); + put_device(&pd->dev); return ret; } @@ -391,6 +393,7 @@ pd->dev.platform_data = &octeon_ohci_pdata; octeon_ohci_hw_start(&pd->dev); + put_device(&pd->dev); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/dec/int-handler.S +++ linux-azure-5.4.0/arch/mips/dec/int-handler.S @@ -131,7 +131,7 @@ */ mfc0 t0,CP0_CAUSE # get pending interrupts mfc0 t1,CP0_STATUS -#ifdef CONFIG_32BIT +#if defined(CONFIG_32BIT) && defined(CONFIG_MIPS_FP_SUPPORT) lw t2,cpu_fpu_mask #endif andi t0,ST0_IM # CAUSE.CE may be non-zero! @@ -139,7 +139,7 @@ beqz t0,spurious -#ifdef CONFIG_32BIT +#if defined(CONFIG_32BIT) && defined(CONFIG_MIPS_FP_SUPPORT) and t2,t0 bnez t2,fpu # handle FPU immediately #endif @@ -280,7 +280,7 @@ j dec_irq_dispatch nop -#ifdef CONFIG_32BIT +#if defined(CONFIG_32BIT) && defined(CONFIG_MIPS_FP_SUPPORT) fpu: lw t0,fpu_kstat_irq nop only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/dec/prom/Makefile +++ linux-azure-5.4.0/arch/mips/dec/prom/Makefile @@ -6,4 +6,4 @@ lib-y += init.o memory.o cmdline.o identify.o console.o -lib-$(CONFIG_32BIT) += locore.o +lib-$(CONFIG_CPU_R3000) += locore.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/board-boston.its.S +++ linux-azure-5.4.0/arch/mips/generic/board-boston.its.S @@ -1,22 +1,22 @@ / { images { - fdt@boston { + fdt-boston { description = "img,boston Device Tree"; data = /incbin/("boot/dts/img/boston.dtb"); type = "flat_dt"; arch = "mips"; compression = "none"; - hash@0 { + hash { algo = "sha1"; }; }; }; configurations { - conf@boston { + conf-boston { description = "Boston Linux kernel"; - kernel = "kernel@0"; - fdt = "fdt@boston"; + kernel = "kernel"; + fdt = "fdt-boston"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/board-ni169445.its.S +++ linux-azure-5.4.0/arch/mips/generic/board-ni169445.its.S @@ -1,22 +1,22 @@ / { images { - fdt@ni169445 { + fdt-ni169445 { description = "NI 169445 device tree"; data = /incbin/("boot/dts/ni/169445.dtb"); type = "flat_dt"; arch = "mips"; compression = "none"; - hash@0 { + hash { algo = "sha1"; }; }; }; configurations { - conf@ni169445 { + conf-ni169445 { description = "NI 169445 Linux Kernel"; - kernel = "kernel@0"; - fdt = "fdt@ni169445"; + kernel = "kernel"; + fdt = "fdt-ni169445"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/board-ocelot.its.S +++ linux-azure-5.4.0/arch/mips/generic/board-ocelot.its.S @@ -1,40 +1,40 @@ /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ / { images { - fdt@ocelot_pcb123 { + fdt-ocelot_pcb123 { description = "MSCC Ocelot PCB123 Device Tree"; data = /incbin/("boot/dts/mscc/ocelot_pcb123.dtb"); type = "flat_dt"; arch = "mips"; compression = "none"; - hash@0 { + hash { algo = "sha1"; }; }; - fdt@ocelot_pcb120 { + fdt-ocelot_pcb120 { description = "MSCC Ocelot PCB120 Device Tree"; data = /incbin/("boot/dts/mscc/ocelot_pcb120.dtb"); type = "flat_dt"; arch = "mips"; compression = "none"; - hash@0 { + hash { algo = "sha1"; }; }; }; configurations { - conf@ocelot_pcb123 { + conf-ocelot_pcb123 { description = "Ocelot Linux kernel"; - kernel = "kernel@0"; - fdt = "fdt@ocelot_pcb123"; + kernel = "kernel"; + fdt = "fdt-ocelot_pcb123"; }; - conf@ocelot_pcb120 { + conf-ocelot_pcb120 { description = "Ocelot Linux kernel"; - kernel = "kernel@0"; - fdt = "fdt@ocelot_pcb120"; + kernel = "kernel"; + fdt = "fdt-ocelot_pcb120"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/board-xilfpga.its.S +++ linux-azure-5.4.0/arch/mips/generic/board-xilfpga.its.S @@ -1,22 +1,22 @@ / { images { - fdt@xilfpga { + fdt-xilfpga { description = "MIPSfpga (xilfpga) Device Tree"; data = /incbin/("boot/dts/xilfpga/nexys4ddr.dtb"); type = "flat_dt"; arch = "mips"; compression = "none"; - hash@0 { + hash { algo = "sha1"; }; }; }; configurations { - conf@xilfpga { + conf-xilfpga { description = "MIPSfpga Linux kernel"; - kernel = "kernel@0"; - fdt = "fdt@xilfpga"; + kernel = "kernel"; + fdt = "fdt-xilfpga"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/vmlinux.its.S +++ linux-azure-5.4.0/arch/mips/generic/vmlinux.its.S @@ -6,7 +6,7 @@ #address-cells = ; images { - kernel@0 { + kernel { description = KERNEL_NAME; data = /incbin/(VMLINUX_BINARY); type = "kernel"; @@ -15,18 +15,18 @@ compression = VMLINUX_COMPRESSION; load = /bits/ ADDR_BITS ; entry = /bits/ ADDR_BITS ; - hash@0 { + hash { algo = "sha1"; }; }; }; configurations { - default = "conf@default"; + default = "conf-default"; - conf@default { + conf-default { description = "Generic Linux kernel"; - kernel = "kernel@0"; + kernel = "kernel"; }; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/generic/yamon-dt.c +++ linux-azure-5.4.0/arch/mips/generic/yamon-dt.c @@ -75,7 +75,7 @@ __init int yamon_dt_append_memory(void *fdt, const struct yamon_mem_region *regions) { - unsigned long phys_memsize, memsize; + unsigned long phys_memsize = 0, memsize; __be32 mem_array[2 * MAX_MEM_ARRAY_ENTRIES]; unsigned int mem_entries; int i, err, mem_off; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/cmpxchg.h +++ linux-azure-5.4.0/arch/mips/include/asm/cmpxchg.h @@ -239,6 +239,7 @@ " .set " MIPS_ISA_ARCH_LEVEL " \n" /* Load 64 bits from ptr */ "1: lld %L0, %3 # __cmpxchg64 \n" + " .set pop \n" /* * Split the 64 bit value we loaded into the 2 registers that hold the * ret variable. @@ -266,6 +267,8 @@ " or %L1, %L1, $at \n" " .set at \n" # endif + " .set push \n" + " .set " MIPS_ISA_ARCH_LEVEL " \n" /* Attempt to store new at ptr */ " scd %L1, %2 \n" /* If we failed, loop! */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/dec/prom.h +++ linux-azure-5.4.0/arch/mips/include/asm/dec/prom.h @@ -43,16 +43,11 @@ */ #define REX_PROM_MAGIC 0x30464354 -#ifdef CONFIG_64BIT - -#define prom_is_rex(magic) 1 /* KN04 and KN05 are REX PROMs. */ - -#else /* !CONFIG_64BIT */ - -#define prom_is_rex(magic) ((magic) == REX_PROM_MAGIC) - -#endif /* !CONFIG_64BIT */ - +/* KN04 and KN05 are REX PROMs, so only do the check for R3k systems. */ +static inline bool prom_is_rex(u32 magic) +{ + return !IS_ENABLED(CONFIG_CPU_R3000) || magic == REX_PROM_MAGIC; +} /* * 3MIN/MAXINE PROM entry points for DS5000/1xx's, DS5000/xx's and only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/highmem.h +++ linux-azure-5.4.0/arch/mips/include/asm/highmem.h @@ -36,7 +36,7 @@ * easily, subsequent pte tables have to be allocated in one physical * chunk of RAM. */ -#ifdef CONFIG_PHYS_ADDR_T_64BIT +#if defined(CONFIG_PHYS_ADDR_T_64BIT) || defined(CONFIG_MIPS_HUGE_TLB_SUPPORT) #define LAST_PKMAP 512 #else #define LAST_PKMAP 1024 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/hugetlb.h +++ linux-azure-5.4.0/arch/mips/include/asm/hugetlb.h @@ -53,7 +53,13 @@ static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep) { - flush_tlb_page(vma, addr & huge_page_mask(hstate_vma(vma))); + /* + * clear the huge pte entry firstly, so that the other smp threads will + * not get old pte entry after finishing flush_tlb_page and before + * setting new huge pte entry + */ + huge_ptep_get_and_clear(vma->vm_mm, addr, ptep); + flush_tlb_page(vma, addr); } #define __HAVE_ARCH_HUGE_PTE_NONE only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h +++ linux-azure-5.4.0/arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h @@ -28,7 +28,6 @@ #define cpu_has_6k_cache 0 #define cpu_has_8k_cache 0 #define cpu_has_tx39_cache 0 -#define cpu_has_fpu 1 #define cpu_has_nofpuex 0 #define cpu_has_32fpr 1 #define cpu_has_counter 1 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/mips-cm.h +++ linux-azure-5.4.0/arch/mips/include/asm/mips-cm.h @@ -11,6 +11,7 @@ #ifndef __MIPS_ASM_MIPS_CM_H__ #define __MIPS_ASM_MIPS_CM_H__ +#include #include #include @@ -153,8 +154,8 @@ #define CM_GCR_REV_MINOR GENMASK(7, 0) #define CM_ENCODE_REV(major, minor) \ - (((major) << __ffs(CM_GCR_REV_MAJOR)) | \ - ((minor) << __ffs(CM_GCR_REV_MINOR))) + (FIELD_PREP(CM_GCR_REV_MAJOR, major) | \ + FIELD_PREP(CM_GCR_REV_MINOR, minor)) #define CM_REV_CM2 CM_ENCODE_REV(6, 0) #define CM_REV_CM2_5 CM_ENCODE_REV(7, 0) @@ -362,10 +363,10 @@ static inline unsigned int mips_cm_max_vp_width(void) { extern int smp_num_siblings; - uint32_t cfg; if (mips_cm_revision() >= CM_REV_CM3) - return read_gcr_sys_config2() & CM_GCR_SYS_CONFIG2_MAXVPW; + return FIELD_GET(CM_GCR_SYS_CONFIG2_MAXVPW, + read_gcr_sys_config2()); if (mips_cm_present()) { /* @@ -373,8 +374,7 @@ * number of VP(E)s, and if that ever changes then this will * need revisiting. */ - cfg = read_gcr_cl_config() & CM_GCR_Cx_CONFIG_PVPE; - return (cfg >> __ffs(CM_GCR_Cx_CONFIG_PVPE)) + 1; + return FIELD_GET(CM_GCR_Cx_CONFIG_PVPE, read_gcr_cl_config()) + 1; } if (IS_ENABLED(CONFIG_SMP)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/octeon/cvmx-bootinfo.h +++ linux-azure-5.4.0/arch/mips/include/asm/octeon/cvmx-bootinfo.h @@ -315,7 +315,7 @@ /* Functions to return string based on type */ #define ENUM_BRD_TYPE_CASE(x) \ - case x: return(#x + 16); /* Skip CVMX_BOARD_TYPE_ */ + case x: return (&#x[16]); /* Skip CVMX_BOARD_TYPE_ */ static inline const char *cvmx_board_type_to_string(enum cvmx_board_types_enum type) { @@ -404,7 +404,7 @@ } #define ENUM_CHIP_TYPE_CASE(x) \ - case x: return(#x + 15); /* Skip CVMX_CHIP_TYPE */ + case x: return (&#x[15]); /* Skip CVMX_CHIP_TYPE */ static inline const char *cvmx_chip_type_to_string(enum cvmx_chip_types_enum type) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/setup.h +++ linux-azure-5.4.0/arch/mips/include/asm/setup.h @@ -16,7 +16,7 @@ unsigned int reg_shift, unsigned int timeout) {} #endif -extern void set_handler(unsigned long offset, void *addr, unsigned long len); +void set_handler(unsigned long offset, const void *addr, unsigned long len); extern void set_uncached_handler(unsigned long offset, void *addr, unsigned long len); typedef void (*vi_handler_t)(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/timex.h +++ linux-azure-5.4.0/arch/mips/include/asm/timex.h @@ -40,9 +40,9 @@ typedef unsigned int cycles_t; /* - * On R4000/R4400 before version 5.0 an erratum exists such that if the - * cycle counter is read in the exact moment that it is matching the - * compare register, no interrupt will be generated. + * On R4000/R4400 an erratum exists such that if the cycle counter is + * read in the exact moment that it is matching the compare register, + * no interrupt will be generated. * * There is a suggested workaround and also the erratum can't strike if * the compare interrupt isn't being used as the clock source device. @@ -63,7 +63,7 @@ if (!__builtin_constant_p(cpu_has_counter)) asm volatile("" : "=m" (cpu_data[0].options)); if (likely(cpu_has_counter && - prid >= (PRID_IMP_R4000 | PRID_REV_ENCODE_44(5, 0)))) + prid > (PRID_IMP_R4000 | PRID_REV_ENCODE_44(15, 15)))) return 1; else return 0; @@ -76,25 +76,24 @@ else return 0; /* no usable counter */ } +#define get_cycles get_cycles /* * Like get_cycles - but where c0_count is not available we desperately * use c0_random in an attempt to get at least a little bit of entropy. - * - * R6000 and R6000A neither have a count register nor a random register. - * That leaves no entropy source in the CPU itself. */ static inline unsigned long random_get_entropy(void) { - unsigned int prid = read_c0_prid(); - unsigned int imp = prid & PRID_IMP_MASK; + unsigned int c0_random; - if (can_use_mips_counter(prid)) + if (can_use_mips_counter(read_c0_prid())) return read_c0_count(); - else if (likely(imp != PRID_IMP_R6000 && imp != PRID_IMP_R6000A)) - return read_c0_random(); + + if (cpu_has_3kex) + c0_random = (read_c0_random() >> 8) & 0x3f; else - return 0; /* no usable register */ + c0_random = read_c0_random() & 0x3f; + return (random_get_entropy_fallback() << 6) | (0x3f - c0_random); } #define random_get_entropy random_get_entropy only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/include/asm/vdso/vdso.h +++ linux-azure-5.4.0/arch/mips/include/asm/vdso/vdso.h @@ -67,7 +67,7 @@ static inline void __iomem *get_gic(const struct vdso_data *data) { - return (void __iomem *)data - PAGE_SIZE; + return (void __iomem *)((unsigned long)data & PAGE_MASK) - PAGE_SIZE; } #endif /* CONFIG_CLKSRC_MIPS_GIC */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/jz4740/setup.c +++ linux-azure-5.4.0/arch/mips/jz4740/setup.c @@ -61,7 +61,7 @@ jz4740_reset_init(); - if (__dtb_start != __dtb_end) + if (&__dtb_start != &__dtb_end) dtb = __dtb_start; else dtb = (void *)fw_passed_dtb; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/kernel/mips-cpc.c +++ linux-azure-5.4.0/arch/mips/kernel/mips-cpc.c @@ -27,6 +27,7 @@ cpc_node = of_find_compatible_node(of_root, NULL, "mti,mips-cpc"); if (cpc_node) { err = of_address_to_resource(cpc_node, 0, &res); + of_node_put(cpc_node); if (!err) return res.start; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/kernel/proc.c +++ linux-azure-5.4.0/arch/mips/kernel/proc.c @@ -168,7 +168,7 @@ { unsigned long i = *pos; - return i < NR_CPUS ? (void *) (i + 1) : NULL; + return i < nr_cpu_ids ? (void *) (i + 1) : NULL; } static void *c_next(struct seq_file *m, void *v, loff_t *pos) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/kernel/r2300_fpu.S +++ linux-azure-5.4.0/arch/mips/kernel/r2300_fpu.S @@ -29,8 +29,8 @@ #define EX2(a,b) \ 9: a,##b; \ .section __ex_table,"a"; \ - PTR 9b,bad_stack; \ - PTR 9b+4,bad_stack; \ + PTR 9b,fault; \ + PTR 9b+4,fault; \ .previous .set mips1 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/kernel/smp.c +++ linux-azure-5.4.0/arch/mips/kernel/smp.c @@ -361,6 +361,9 @@ cpu = smp_processor_id(); cpu_data[cpu].udelay_val = loops_per_jiffy; + set_cpu_sibling_map(cpu); + set_cpu_core_map(cpu); + cpumask_set_cpu(cpu, &cpu_coherent_mask); notify_cpu_starting(cpu); @@ -372,9 +375,6 @@ /* The CPU is running and counters synchronised, now mark it online */ set_cpu_online(cpu, true); - set_cpu_sibling_map(cpu); - set_cpu_core_map(cpu); - calculate_cpu_foreign_map(); /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/kernel/syscall.c +++ linux-azure-5.4.0/arch/mips/kernel/syscall.c @@ -239,12 +239,3 @@ { return -ENOSYS; } - -/* - * If we ever come here the user sp is bad. Zap the process right away. - * Due to the bad stack signaling wouldn't work. - */ -asmlinkage void bad_stack(void) -{ - do_exit(SIGSEGV); -} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lantiq/clk.c +++ linux-azure-5.4.0/arch/mips/lantiq/clk.c @@ -50,6 +50,7 @@ { return &cpu_clk_generic[2]; } +EXPORT_SYMBOL_GPL(clk_get_io); struct clk *clk_get_ppe(void) { @@ -158,6 +159,18 @@ } EXPORT_SYMBOL(clk_deactivate); +struct clk *clk_get_parent(struct clk *clk) +{ + return NULL; +} +EXPORT_SYMBOL(clk_get_parent); + +int clk_set_parent(struct clk *clk, struct clk *parent) +{ + return 0; +} +EXPORT_SYMBOL(clk_set_parent); + static inline u32 get_counter_resolution(void) { u32 res; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lantiq/falcon/sysctrl.c +++ linux-azure-5.4.0/arch/mips/lantiq/falcon/sysctrl.c @@ -167,6 +167,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev; clk->cl.con_id = NULL; clk->cl.clk = clk; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lantiq/prom.c +++ linux-azure-5.4.0/arch/mips/lantiq/prom.c @@ -79,7 +79,7 @@ if (fw_passed_dtb) /* UHI interface */ dtb = (void *)fw_passed_dtb; - else if (__dtb_start != __dtb_end) + else if (&__dtb_start != &__dtb_end) dtb = (void *)__dtb_start; else panic("no dtb found"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lantiq/xway/dma.c +++ linux-azure-5.4.0/arch/mips/lantiq/xway/dma.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -29,6 +30,7 @@ #define LTQ_DMA_PCTRL 0x44 #define LTQ_DMA_IRNEN 0xf4 +#define DMA_ID_CHNR GENMASK(26, 20) /* channel number */ #define DMA_DESCPT BIT(3) /* descriptor complete irq */ #define DMA_TX BIT(8) /* TX channel direction */ #define DMA_CHAN_ON BIT(0) /* channel on / off bit */ @@ -39,7 +41,6 @@ #define DMA_POLL BIT(31) /* turn on channel polling */ #define DMA_CLK_DIV4 BIT(6) /* polling clock divider */ #define DMA_2W_BURST BIT(1) /* 2 word burst length */ -#define DMA_MAX_CHANNEL 20 /* the soc has 20 channels */ #define DMA_ETOP_ENDIANNESS (0xf << 8) /* endianness swap etop channels */ #define DMA_WEIGHT (BIT(17) | BIT(16)) /* default channel wheight */ @@ -205,7 +206,7 @@ { struct clk *clk; struct resource *res; - unsigned id; + unsigned int id, nchannels; int i; res = platform_get_resource(pdev, IORESOURCE_MEM, 0); @@ -221,21 +222,24 @@ clk_enable(clk); ltq_dma_w32_mask(0, DMA_RESET, LTQ_DMA_CTRL); + usleep_range(1, 10); + /* disable all interrupts */ ltq_dma_w32(0, LTQ_DMA_IRNEN); /* reset/configure each channel */ - for (i = 0; i < DMA_MAX_CHANNEL; i++) { + id = ltq_dma_r32(LTQ_DMA_ID); + nchannels = ((id & DMA_ID_CHNR) >> 20); + for (i = 0; i < nchannels; i++) { ltq_dma_w32(i, LTQ_DMA_CS); ltq_dma_w32(DMA_CHAN_RST, LTQ_DMA_CCTRL); ltq_dma_w32(DMA_POLL | DMA_CLK_DIV4, LTQ_DMA_CPOLL); ltq_dma_w32_mask(DMA_CHAN_ON, 0, LTQ_DMA_CCTRL); } - id = ltq_dma_r32(LTQ_DMA_ID); dev_info(&pdev->dev, "Init done - hw rev: %X, ports: %d, channels: %d\n", - id & 0x1f, (id >> 16) & 0xf, id >> 20); + id & 0x1f, (id >> 16) & 0xf, nchannels); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lantiq/xway/gptu.c +++ linux-azure-5.4.0/arch/mips/lantiq/xway/gptu.c @@ -122,6 +122,8 @@ { struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); + if (!clk) + return; clk->cl.dev_id = dev_name(dev); clk->cl.con_id = con; clk->cl.clk = clk; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/lib/mips-atomic.c +++ linux-azure-5.4.0/arch/mips/lib/mips-atomic.c @@ -37,7 +37,7 @@ */ notrace void arch_local_irq_disable(void) { - preempt_disable(); + preempt_disable_notrace(); __asm__ __volatile__( " .set push \n" @@ -53,7 +53,7 @@ : /* no inputs */ : "memory"); - preempt_enable(); + preempt_enable_notrace(); } EXPORT_SYMBOL(arch_local_irq_disable); @@ -61,7 +61,7 @@ { unsigned long flags; - preempt_disable(); + preempt_disable_notrace(); __asm__ __volatile__( " .set push \n" @@ -78,7 +78,7 @@ : /* no inputs */ : "memory"); - preempt_enable(); + preempt_enable_notrace(); return flags; } @@ -88,7 +88,7 @@ { unsigned long __tmp1; - preempt_disable(); + preempt_disable_notrace(); __asm__ __volatile__( " .set push \n" @@ -106,7 +106,7 @@ : "0" (flags) : "memory"); - preempt_enable(); + preempt_enable_notrace(); } EXPORT_SYMBOL(arch_local_irq_restore); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/loongson32/common/platform.c +++ linux-azure-5.4.0/arch/mips/loongson32/common/platform.c @@ -98,7 +98,7 @@ if (plat_dat->bus_id) { __raw_writel(__raw_readl(LS1X_MUX_CTRL0) | GMAC1_USE_UART1 | GMAC1_USE_UART0, LS1X_MUX_CTRL0); - switch (plat_dat->interface) { + switch (plat_dat->phy_interface) { case PHY_INTERFACE_MODE_RGMII: val &= ~(GMAC1_USE_TXCLK | GMAC1_USE_PWM23); break; @@ -107,12 +107,12 @@ break; default: pr_err("unsupported mii mode %d\n", - plat_dat->interface); + plat_dat->phy_interface); return -ENOTSUPP; } val &= ~GMAC1_SHUT; } else { - switch (plat_dat->interface) { + switch (plat_dat->phy_interface) { case PHY_INTERFACE_MODE_RGMII: val &= ~(GMAC0_USE_TXCLK | GMAC0_USE_PWM01); break; @@ -121,7 +121,7 @@ break; default: pr_err("unsupported mii mode %d\n", - plat_dat->interface); + plat_dat->phy_interface); return -ENOTSUPP; } val &= ~GMAC0_SHUT; @@ -131,7 +131,7 @@ plat_dat = dev_get_platdata(&pdev->dev); val &= ~PHY_INTF_SELI; - if (plat_dat->interface == PHY_INTERFACE_MODE_RMII) + if (plat_dat->phy_interface == PHY_INTERFACE_MODE_RMII) val |= 0x4 << PHY_INTF_SELI_SHIFT; __raw_writel(val, LS1X_MUX_CTRL1); @@ -146,9 +146,9 @@ .bus_id = 0, .phy_addr = -1, #if defined(CONFIG_LOONGSON1_LS1B) - .interface = PHY_INTERFACE_MODE_MII, + .phy_interface = PHY_INTERFACE_MODE_MII, #elif defined(CONFIG_LOONGSON1_LS1C) - .interface = PHY_INTERFACE_MODE_RMII, + .phy_interface = PHY_INTERFACE_MODE_RMII, #endif .mdio_bus_data = &ls1x_mdio_bus_data, .dma_cfg = &ls1x_eth_dma_cfg, @@ -186,7 +186,7 @@ static struct plat_stmmacenet_data ls1x_eth1_pdata = { .bus_id = 1, .phy_addr = -1, - .interface = PHY_INTERFACE_MODE_MII, + .phy_interface = PHY_INTERFACE_MODE_MII, .mdio_bus_data = &ls1x_mdio_bus_data, .dma_cfg = &ls1x_eth_dma_cfg, .has_gmac = 1, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/loongson32/ls1c/board.c +++ linux-azure-5.4.0/arch/mips/loongson32/ls1c/board.c @@ -15,7 +15,6 @@ static int __init ls1c_platform_init(void) { ls1x_serial_set_uartclk(&ls1x_uart_pdev); - ls1x_rtc_set_extclk(&ls1x_rtc_pdev); return platform_add_devices(ls1c_platform_devices, ARRAY_SIZE(ls1c_platform_devices)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/loongson64/loongson-3/numa.c +++ linux-azure-5.4.0/arch/mips/loongson64/loongson-3/numa.c @@ -200,6 +200,9 @@ if (node_end_pfn(0) >= (0xffffffff >> PAGE_SHIFT)) memblock_reserve((node_addrspace_offset | 0xfe000000), 32 << 20); + + /* Reserve pfn range 0~node[0]->node_start_pfn */ + memblock_reserve(0, PAGE_SIZE * start_pfn); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/mti-malta/malta-dtshim.c +++ linux-azure-5.4.0/arch/mips/mti-malta/malta-dtshim.c @@ -22,7 +22,7 @@ #define ROCIT_CONFIG_GEN1_MEMMAP_SHIFT 8 #define ROCIT_CONFIG_GEN1_MEMMAP_MASK (0xf << 8) -static unsigned char fdt_buf[16 << 10] __initdata; +static unsigned char fdt_buf[16 << 10] __initdata __aligned(8); /* determined physical memory size, not overridden by command line args */ extern unsigned long physical_memsize; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/mti-malta/malta-platform.c +++ linux-azure-5.4.0/arch/mips/mti-malta/malta-platform.c @@ -47,7 +47,8 @@ .mapbase = 0x1f000900, /* The CBUS UART */ .irq = MIPS_CPU_IRQ_BASE + MIPSCPU_INT_MB2, .uartclk = 3686400, /* Twice the usual clk! */ - .iotype = UPIO_MEM32, + .iotype = IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) ? + UPIO_MEM32BE : UPIO_MEM32, .flags = CBUS_UART_FLAGS, .regshift = 3, }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/net/Makefile +++ linux-azure-5.4.0/arch/mips/net/Makefile @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only # MIPS networking code +obj-$(CONFIG_MIPS_CBPF_JIT) += bpf_jit.o bpf_jit_asm.o obj-$(CONFIG_MIPS_EBPF_JIT) += ebpf_jit.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/net/bpf_jit.c +++ linux-azure-5.4.0/arch/mips/net/bpf_jit.c @@ -0,0 +1,1299 @@ +/* + * Just-In-Time compiler for BPF filters on MIPS + * + * Copyright (c) 2014 Imagination Technologies Ltd. + * Author: Markos Chandras + * + * 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 of the License. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "bpf_jit.h" + +/* ABI + * r_skb_hl SKB header length + * r_data SKB data pointer + * r_off Offset + * r_A BPF register A + * r_X BPF register X + * r_skb *skb + * r_M *scratch memory + * r_skb_len SKB length + * + * On entry (*bpf_func)(*skb, *filter) + * a0 = MIPS_R_A0 = skb; + * a1 = MIPS_R_A1 = filter; + * + * Stack + * ... + * M[15] + * M[14] + * M[13] + * ... + * M[0] <-- r_M + * saved reg k-1 + * saved reg k-2 + * ... + * saved reg 0 <-- r_sp + * + * + * Packet layout + * + * <--------------------- len ------------------------> + * <--skb-len(r_skb_hl)-->< ----- skb->data_len ------> + * ---------------------------------------------------- + * | skb->data | + * ---------------------------------------------------- + */ + +#define ptr typeof(unsigned long) + +#define SCRATCH_OFF(k) (4 * (k)) + +/* JIT flags */ +#define SEEN_CALL (1 << BPF_MEMWORDS) +#define SEEN_SREG_SFT (BPF_MEMWORDS + 1) +#define SEEN_SREG_BASE (1 << SEEN_SREG_SFT) +#define SEEN_SREG(x) (SEEN_SREG_BASE << (x)) +#define SEEN_OFF SEEN_SREG(2) +#define SEEN_A SEEN_SREG(3) +#define SEEN_X SEEN_SREG(4) +#define SEEN_SKB SEEN_SREG(5) +#define SEEN_MEM SEEN_SREG(6) +/* SEEN_SK_DATA also implies skb_hl an skb_len */ +#define SEEN_SKB_DATA (SEEN_SREG(7) | SEEN_SREG(1) | SEEN_SREG(0)) + +/* Arguments used by JIT */ +#define ARGS_USED_BY_JIT 2 /* only applicable to 64-bit */ + +#define SBIT(x) (1 << (x)) /* Signed version of BIT() */ + +/** + * struct jit_ctx - JIT context + * @skf: The sk_filter + * @prologue_bytes: Number of bytes for prologue + * @idx: Instruction index + * @flags: JIT flags + * @offsets: Instruction offsets + * @target: Memory location for the compiled filter + */ +struct jit_ctx { + const struct bpf_prog *skf; + unsigned int prologue_bytes; + u32 idx; + u32 flags; + u32 *offsets; + u32 *target; +}; + + +static inline int optimize_div(u32 *k) +{ + /* power of 2 divides can be implemented with right shift */ + if (!(*k & (*k-1))) { + *k = ilog2(*k); + return 1; + } + + return 0; +} + +static inline void emit_jit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx); + +/* Simply emit the instruction if the JIT memory space has been allocated */ +#define emit_instr(ctx, func, ...) \ +do { \ + if ((ctx)->target != NULL) { \ + u32 *p = &(ctx)->target[ctx->idx]; \ + uasm_i_##func(&p, ##__VA_ARGS__); \ + } \ + (ctx)->idx++; \ +} while (0) + +/* + * Similar to emit_instr but it must be used when we need to emit + * 32-bit or 64-bit instructions + */ +#define emit_long_instr(ctx, func, ...) \ +do { \ + if ((ctx)->target != NULL) { \ + u32 *p = &(ctx)->target[ctx->idx]; \ + UASM_i_##func(&p, ##__VA_ARGS__); \ + } \ + (ctx)->idx++; \ +} while (0) + +/* Determine if immediate is within the 16-bit signed range */ +static inline bool is_range16(s32 imm) +{ + return !(imm >= SBIT(15) || imm < -SBIT(15)); +} + +static inline void emit_addu(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, addu, dst, src1, src2); +} + +static inline void emit_nop(struct jit_ctx *ctx) +{ + emit_instr(ctx, nop); +} + +/* Load a u32 immediate to a register */ +static inline void emit_load_imm(unsigned int dst, u32 imm, struct jit_ctx *ctx) +{ + if (ctx->target != NULL) { + /* addiu can only handle s16 */ + if (!is_range16(imm)) { + u32 *p = &ctx->target[ctx->idx]; + uasm_i_lui(&p, r_tmp_imm, (s32)imm >> 16); + p = &ctx->target[ctx->idx + 1]; + uasm_i_ori(&p, dst, r_tmp_imm, imm & 0xffff); + } else { + u32 *p = &ctx->target[ctx->idx]; + uasm_i_addiu(&p, dst, r_zero, imm); + } + } + ctx->idx++; + + if (!is_range16(imm)) + ctx->idx++; +} + +static inline void emit_or(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, or, dst, src1, src2); +} + +static inline void emit_ori(unsigned int dst, unsigned src, u32 imm, + struct jit_ctx *ctx) +{ + if (imm >= BIT(16)) { + emit_load_imm(r_tmp, imm, ctx); + emit_or(dst, src, r_tmp, ctx); + } else { + emit_instr(ctx, ori, dst, src, imm); + } +} + +static inline void emit_daddiu(unsigned int dst, unsigned int src, + int imm, struct jit_ctx *ctx) +{ + /* + * Only used for stack, so the imm is relatively small + * and it fits in 15-bits + */ + emit_instr(ctx, daddiu, dst, src, imm); +} + +static inline void emit_addiu(unsigned int dst, unsigned int src, + u32 imm, struct jit_ctx *ctx) +{ + if (!is_range16(imm)) { + emit_load_imm(r_tmp, imm, ctx); + emit_addu(dst, r_tmp, src, ctx); + } else { + emit_instr(ctx, addiu, dst, src, imm); + } +} + +static inline void emit_and(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, and, dst, src1, src2); +} + +static inline void emit_andi(unsigned int dst, unsigned int src, + u32 imm, struct jit_ctx *ctx) +{ + /* If imm does not fit in u16 then load it to register */ + if (imm >= BIT(16)) { + emit_load_imm(r_tmp, imm, ctx); + emit_and(dst, src, r_tmp, ctx); + } else { + emit_instr(ctx, andi, dst, src, imm); + } +} + +static inline void emit_xor(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, xor, dst, src1, src2); +} + +static inline void emit_xori(ptr dst, ptr src, u32 imm, struct jit_ctx *ctx) +{ + /* If imm does not fit in u16 then load it to register */ + if (imm >= BIT(16)) { + emit_load_imm(r_tmp, imm, ctx); + emit_xor(dst, src, r_tmp, ctx); + } else { + emit_instr(ctx, xori, dst, src, imm); + } +} + +static inline void emit_stack_offset(int offset, struct jit_ctx *ctx) +{ + emit_long_instr(ctx, ADDIU, r_sp, r_sp, offset); +} + +static inline void emit_subu(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, subu, dst, src1, src2); +} + +static inline void emit_neg(unsigned int reg, struct jit_ctx *ctx) +{ + emit_subu(reg, r_zero, reg, ctx); +} + +static inline void emit_sllv(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + emit_instr(ctx, sllv, dst, src, sa); +} + +static inline void emit_sll(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + /* sa is 5-bits long */ + if (sa >= BIT(5)) + /* Shifting >= 32 results in zero */ + emit_jit_reg_move(dst, r_zero, ctx); + else + emit_instr(ctx, sll, dst, src, sa); +} + +static inline void emit_srlv(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + emit_instr(ctx, srlv, dst, src, sa); +} + +static inline void emit_srl(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + /* sa is 5-bits long */ + if (sa >= BIT(5)) + /* Shifting >= 32 results in zero */ + emit_jit_reg_move(dst, r_zero, ctx); + else + emit_instr(ctx, srl, dst, src, sa); +} + +static inline void emit_slt(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, slt, dst, src1, src2); +} + +static inline void emit_sltu(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, sltu, dst, src1, src2); +} + +static inline void emit_sltiu(unsigned dst, unsigned int src, + unsigned int imm, struct jit_ctx *ctx) +{ + /* 16 bit immediate */ + if (!is_range16((s32)imm)) { + emit_load_imm(r_tmp, imm, ctx); + emit_sltu(dst, src, r_tmp, ctx); + } else { + emit_instr(ctx, sltiu, dst, src, imm); + } + +} + +/* Store register on the stack */ +static inline void emit_store_stack_reg(ptr reg, ptr base, + unsigned int offset, + struct jit_ctx *ctx) +{ + emit_long_instr(ctx, SW, reg, offset, base); +} + +static inline void emit_store(ptr reg, ptr base, unsigned int offset, + struct jit_ctx *ctx) +{ + emit_instr(ctx, sw, reg, offset, base); +} + +static inline void emit_load_stack_reg(ptr reg, ptr base, + unsigned int offset, + struct jit_ctx *ctx) +{ + emit_long_instr(ctx, LW, reg, offset, base); +} + +static inline void emit_load(unsigned int reg, unsigned int base, + unsigned int offset, struct jit_ctx *ctx) +{ + emit_instr(ctx, lw, reg, offset, base); +} + +static inline void emit_load_byte(unsigned int reg, unsigned int base, + unsigned int offset, struct jit_ctx *ctx) +{ + emit_instr(ctx, lb, reg, offset, base); +} + +static inline void emit_half_load(unsigned int reg, unsigned int base, + unsigned int offset, struct jit_ctx *ctx) +{ + emit_instr(ctx, lh, reg, offset, base); +} + +static inline void emit_half_load_unsigned(unsigned int reg, unsigned int base, + unsigned int offset, struct jit_ctx *ctx) +{ + emit_instr(ctx, lhu, reg, offset, base); +} + +static inline void emit_mul(unsigned int dst, unsigned int src1, + unsigned int src2, struct jit_ctx *ctx) +{ + emit_instr(ctx, mul, dst, src1, src2); +} + +static inline void emit_div(unsigned int dst, unsigned int src, + struct jit_ctx *ctx) +{ + if (ctx->target != NULL) { + u32 *p = &ctx->target[ctx->idx]; + uasm_i_divu(&p, dst, src); + p = &ctx->target[ctx->idx + 1]; + uasm_i_mflo(&p, dst); + } + ctx->idx += 2; /* 2 insts */ +} + +static inline void emit_mod(unsigned int dst, unsigned int src, + struct jit_ctx *ctx) +{ + if (ctx->target != NULL) { + u32 *p = &ctx->target[ctx->idx]; + uasm_i_divu(&p, dst, src); + p = &ctx->target[ctx->idx + 1]; + uasm_i_mfhi(&p, dst); + } + ctx->idx += 2; /* 2 insts */ +} + +static inline void emit_dsll(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + emit_instr(ctx, dsll, dst, src, sa); +} + +static inline void emit_dsrl32(unsigned int dst, unsigned int src, + unsigned int sa, struct jit_ctx *ctx) +{ + emit_instr(ctx, dsrl32, dst, src, sa); +} + +static inline void emit_wsbh(unsigned int dst, unsigned int src, + struct jit_ctx *ctx) +{ + emit_instr(ctx, wsbh, dst, src); +} + +/* load pointer to register */ +static inline void emit_load_ptr(unsigned int dst, unsigned int src, + int imm, struct jit_ctx *ctx) +{ + /* src contains the base addr of the 32/64-pointer */ + emit_long_instr(ctx, LW, dst, imm, src); +} + +/* load a function pointer to register */ +static inline void emit_load_func(unsigned int reg, ptr imm, + struct jit_ctx *ctx) +{ + if (IS_ENABLED(CONFIG_64BIT)) { + /* At this point imm is always 64-bit */ + emit_load_imm(r_tmp, (u64)imm >> 32, ctx); + emit_dsll(r_tmp_imm, r_tmp, 16, ctx); /* left shift by 16 */ + emit_ori(r_tmp, r_tmp_imm, (imm >> 16) & 0xffff, ctx); + emit_dsll(r_tmp_imm, r_tmp, 16, ctx); /* left shift by 16 */ + emit_ori(reg, r_tmp_imm, imm & 0xffff, ctx); + } else { + emit_load_imm(reg, imm, ctx); + } +} + +/* Move to real MIPS register */ +static inline void emit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx) +{ + emit_long_instr(ctx, ADDU, dst, src, r_zero); +} + +/* Move to JIT (32-bit) register */ +static inline void emit_jit_reg_move(ptr dst, ptr src, struct jit_ctx *ctx) +{ + emit_addu(dst, src, r_zero, ctx); +} + +/* Compute the immediate value for PC-relative branches. */ +static inline u32 b_imm(unsigned int tgt, struct jit_ctx *ctx) +{ + if (ctx->target == NULL) + return 0; + + /* + * We want a pc-relative branch. We only do forward branches + * so tgt is always after pc. tgt is the instruction offset + * we want to jump to. + + * Branch on MIPS: + * I: target_offset <- sign_extend(offset) + * I+1: PC += target_offset (delay slot) + * + * ctx->idx currently points to the branch instruction + * but the offset is added to the delay slot so we need + * to subtract 4. + */ + return ctx->offsets[tgt] - + (ctx->idx * 4 - ctx->prologue_bytes) - 4; +} + +static inline void emit_bcond(int cond, unsigned int reg1, unsigned int reg2, + unsigned int imm, struct jit_ctx *ctx) +{ + if (ctx->target != NULL) { + u32 *p = &ctx->target[ctx->idx]; + + switch (cond) { + case MIPS_COND_EQ: + uasm_i_beq(&p, reg1, reg2, imm); + break; + case MIPS_COND_NE: + uasm_i_bne(&p, reg1, reg2, imm); + break; + case MIPS_COND_ALL: + uasm_i_b(&p, imm); + break; + default: + pr_warn("%s: Unhandled branch conditional: %d\n", + __func__, cond); + } + } + ctx->idx++; +} + +static inline void emit_b(unsigned int imm, struct jit_ctx *ctx) +{ + emit_bcond(MIPS_COND_ALL, r_zero, r_zero, imm, ctx); +} + +static inline void emit_jalr(unsigned int link, unsigned int reg, + struct jit_ctx *ctx) +{ + emit_instr(ctx, jalr, link, reg); +} + +static inline void emit_jr(unsigned int reg, struct jit_ctx *ctx) +{ + emit_instr(ctx, jr, reg); +} + +static inline u16 align_sp(unsigned int num) +{ + /* Double word alignment for 32-bit, quadword for 64-bit */ + unsigned int align = IS_ENABLED(CONFIG_64BIT) ? 16 : 8; + num = (num + (align - 1)) & -align; + return num; +} + +static void save_bpf_jit_regs(struct jit_ctx *ctx, unsigned offset) +{ + int i = 0, real_off = 0; + u32 sflags, tmp_flags; + + /* Adjust the stack pointer */ + if (offset) + emit_stack_offset(-align_sp(offset), ctx); + + tmp_flags = sflags = ctx->flags >> SEEN_SREG_SFT; + /* sflags is essentially a bitmap */ + while (tmp_flags) { + if ((sflags >> i) & 0x1) { + emit_store_stack_reg(MIPS_R_S0 + i, r_sp, real_off, + ctx); + real_off += SZREG; + } + i++; + tmp_flags >>= 1; + } + + /* save return address */ + if (ctx->flags & SEEN_CALL) { + emit_store_stack_reg(r_ra, r_sp, real_off, ctx); + real_off += SZREG; + } + + /* Setup r_M leaving the alignment gap if necessary */ + if (ctx->flags & SEEN_MEM) { + if (real_off % (SZREG * 2)) + real_off += SZREG; + emit_long_instr(ctx, ADDIU, r_M, r_sp, real_off); + } +} + +static void restore_bpf_jit_regs(struct jit_ctx *ctx, + unsigned int offset) +{ + int i, real_off = 0; + u32 sflags, tmp_flags; + + tmp_flags = sflags = ctx->flags >> SEEN_SREG_SFT; + /* sflags is a bitmap */ + i = 0; + while (tmp_flags) { + if ((sflags >> i) & 0x1) { + emit_load_stack_reg(MIPS_R_S0 + i, r_sp, real_off, + ctx); + real_off += SZREG; + } + i++; + tmp_flags >>= 1; + } + + /* restore return address */ + if (ctx->flags & SEEN_CALL) + emit_load_stack_reg(r_ra, r_sp, real_off, ctx); + + /* Restore the sp and discard the scrach memory */ + if (offset) + emit_stack_offset(align_sp(offset), ctx); +} + +static unsigned int get_stack_depth(struct jit_ctx *ctx) +{ + int sp_off = 0; + + + /* How may s* regs do we need to preserved? */ + sp_off += hweight32(ctx->flags >> SEEN_SREG_SFT) * SZREG; + + if (ctx->flags & SEEN_MEM) + sp_off += 4 * BPF_MEMWORDS; /* BPF_MEMWORDS are 32-bit */ + + if (ctx->flags & SEEN_CALL) + sp_off += SZREG; /* Space for our ra register */ + + return sp_off; +} + +static void build_prologue(struct jit_ctx *ctx) +{ + int sp_off; + + /* Calculate the total offset for the stack pointer */ + sp_off = get_stack_depth(ctx); + save_bpf_jit_regs(ctx, sp_off); + + if (ctx->flags & SEEN_SKB) + emit_reg_move(r_skb, MIPS_R_A0, ctx); + + if (ctx->flags & SEEN_SKB_DATA) { + /* Load packet length */ + emit_load(r_skb_len, r_skb, offsetof(struct sk_buff, len), + ctx); + emit_load(r_tmp, r_skb, offsetof(struct sk_buff, data_len), + ctx); + /* Load the data pointer */ + emit_load_ptr(r_skb_data, r_skb, + offsetof(struct sk_buff, data), ctx); + /* Load the header length */ + emit_subu(r_skb_hl, r_skb_len, r_tmp, ctx); + } + + if (ctx->flags & SEEN_X) + emit_jit_reg_move(r_X, r_zero, ctx); + + /* + * Do not leak kernel data to userspace, we only need to clear + * r_A if it is ever used. In fact if it is never used, we + * will not save/restore it, so clearing it in this case would + * corrupt the state of the caller. + */ + if (bpf_needs_clear_a(&ctx->skf->insns[0]) && + (ctx->flags & SEEN_A)) + emit_jit_reg_move(r_A, r_zero, ctx); +} + +static void build_epilogue(struct jit_ctx *ctx) +{ + unsigned int sp_off; + + /* Calculate the total offset for the stack pointer */ + + sp_off = get_stack_depth(ctx); + restore_bpf_jit_regs(ctx, sp_off); + + /* Return */ + emit_jr(r_ra, ctx); + emit_nop(ctx); +} + +#define CHOOSE_LOAD_FUNC(K, func) \ + ((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative : func) : \ + func##_positive) + +static bool is_bad_offset(int b_off) +{ + return b_off > 0x1ffff || b_off < -0x20000; +} + +static int build_body(struct jit_ctx *ctx) +{ + const struct bpf_prog *prog = ctx->skf; + const struct sock_filter *inst; + unsigned int i, off, condt; + u32 k, b_off __maybe_unused; + u8 (*sk_load_func)(unsigned long *skb, int offset); + + for (i = 0; i < prog->len; i++) { + u16 code; + + inst = &(prog->insns[i]); + pr_debug("%s: code->0x%02x, jt->0x%x, jf->0x%x, k->0x%x\n", + __func__, inst->code, inst->jt, inst->jf, inst->k); + k = inst->k; + code = bpf_anc_helper(inst); + + if (ctx->target == NULL) + ctx->offsets[i] = ctx->idx * 4; + + switch (code) { + case BPF_LD | BPF_IMM: + /* A <- k ==> li r_A, k */ + ctx->flags |= SEEN_A; + emit_load_imm(r_A, k, ctx); + break; + case BPF_LD | BPF_W | BPF_LEN: + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, len) != 4); + /* A <- len ==> lw r_A, offset(skb) */ + ctx->flags |= SEEN_SKB | SEEN_A; + off = offsetof(struct sk_buff, len); + emit_load(r_A, r_skb, off, ctx); + break; + case BPF_LD | BPF_MEM: + /* A <- M[k] ==> lw r_A, offset(M) */ + ctx->flags |= SEEN_MEM | SEEN_A; + emit_load(r_A, r_M, SCRATCH_OFF(k), ctx); + break; + case BPF_LD | BPF_W | BPF_ABS: + /* A <- P[k:4] */ + sk_load_func = CHOOSE_LOAD_FUNC(k, sk_load_word); + goto load; + case BPF_LD | BPF_H | BPF_ABS: + /* A <- P[k:2] */ + sk_load_func = CHOOSE_LOAD_FUNC(k, sk_load_half); + goto load; + case BPF_LD | BPF_B | BPF_ABS: + /* A <- P[k:1] */ + sk_load_func = CHOOSE_LOAD_FUNC(k, sk_load_byte); +load: + emit_load_imm(r_off, k, ctx); +load_common: + ctx->flags |= SEEN_CALL | SEEN_OFF | + SEEN_SKB | SEEN_A | SEEN_SKB_DATA; + + emit_load_func(r_s0, (ptr)sk_load_func, ctx); + emit_reg_move(MIPS_R_A0, r_skb, ctx); + emit_jalr(MIPS_R_RA, r_s0, ctx); + /* Load second argument to delay slot */ + emit_reg_move(MIPS_R_A1, r_off, ctx); + /* Check the error value */ + emit_bcond(MIPS_COND_EQ, r_ret, 0, b_imm(i + 1, ctx), + ctx); + /* Load return register on DS for failures */ + emit_reg_move(r_ret, r_zero, ctx); + /* Return with error */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_b(b_off, ctx); + emit_nop(ctx); + break; + case BPF_LD | BPF_W | BPF_IND: + /* A <- P[X + k:4] */ + sk_load_func = sk_load_word; + goto load_ind; + case BPF_LD | BPF_H | BPF_IND: + /* A <- P[X + k:2] */ + sk_load_func = sk_load_half; + goto load_ind; + case BPF_LD | BPF_B | BPF_IND: + /* A <- P[X + k:1] */ + sk_load_func = sk_load_byte; +load_ind: + ctx->flags |= SEEN_OFF | SEEN_X; + emit_addiu(r_off, r_X, k, ctx); + goto load_common; + case BPF_LDX | BPF_IMM: + /* X <- k */ + ctx->flags |= SEEN_X; + emit_load_imm(r_X, k, ctx); + break; + case BPF_LDX | BPF_MEM: + /* X <- M[k] */ + ctx->flags |= SEEN_X | SEEN_MEM; + emit_load(r_X, r_M, SCRATCH_OFF(k), ctx); + break; + case BPF_LDX | BPF_W | BPF_LEN: + /* X <- len */ + ctx->flags |= SEEN_X | SEEN_SKB; + off = offsetof(struct sk_buff, len); + emit_load(r_X, r_skb, off, ctx); + break; + case BPF_LDX | BPF_B | BPF_MSH: + /* X <- 4 * (P[k:1] & 0xf) */ + ctx->flags |= SEEN_X | SEEN_CALL | SEEN_SKB; + /* Load offset to a1 */ + emit_load_func(r_s0, (ptr)sk_load_byte, ctx); + /* + * This may emit two instructions so it may not fit + * in the delay slot. So use a0 in the delay slot. + */ + emit_load_imm(MIPS_R_A1, k, ctx); + emit_jalr(MIPS_R_RA, r_s0, ctx); + emit_reg_move(MIPS_R_A0, r_skb, ctx); /* delay slot */ + /* Check the error value */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_bcond(MIPS_COND_NE, r_ret, 0, b_off, ctx); + emit_reg_move(r_ret, r_zero, ctx); + /* We are good */ + /* X <- P[1:K] & 0xf */ + emit_andi(r_X, r_A, 0xf, ctx); + /* X << 2 */ + emit_b(b_imm(i + 1, ctx), ctx); + emit_sll(r_X, r_X, 2, ctx); /* delay slot */ + break; + case BPF_ST: + /* M[k] <- A */ + ctx->flags |= SEEN_MEM | SEEN_A; + emit_store(r_A, r_M, SCRATCH_OFF(k), ctx); + break; + case BPF_STX: + /* M[k] <- X */ + ctx->flags |= SEEN_MEM | SEEN_X; + emit_store(r_X, r_M, SCRATCH_OFF(k), ctx); + break; + case BPF_ALU | BPF_ADD | BPF_K: + /* A += K */ + ctx->flags |= SEEN_A; + emit_addiu(r_A, r_A, k, ctx); + break; + case BPF_ALU | BPF_ADD | BPF_X: + /* A += X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_addu(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_SUB | BPF_K: + /* A -= K */ + ctx->flags |= SEEN_A; + emit_addiu(r_A, r_A, -k, ctx); + break; + case BPF_ALU | BPF_SUB | BPF_X: + /* A -= X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_subu(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_MUL | BPF_K: + /* A *= K */ + /* Load K to scratch register before MUL */ + ctx->flags |= SEEN_A; + emit_load_imm(r_s0, k, ctx); + emit_mul(r_A, r_A, r_s0, ctx); + break; + case BPF_ALU | BPF_MUL | BPF_X: + /* A *= X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_mul(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_DIV | BPF_K: + /* A /= k */ + if (k == 1) + break; + if (optimize_div(&k)) { + ctx->flags |= SEEN_A; + emit_srl(r_A, r_A, k, ctx); + break; + } + ctx->flags |= SEEN_A; + emit_load_imm(r_s0, k, ctx); + emit_div(r_A, r_s0, ctx); + break; + case BPF_ALU | BPF_MOD | BPF_K: + /* A %= k */ + if (k == 1) { + ctx->flags |= SEEN_A; + emit_jit_reg_move(r_A, r_zero, ctx); + } else { + ctx->flags |= SEEN_A; + emit_load_imm(r_s0, k, ctx); + emit_mod(r_A, r_s0, ctx); + } + break; + case BPF_ALU | BPF_DIV | BPF_X: + /* A /= X */ + ctx->flags |= SEEN_X | SEEN_A; + /* Check if r_X is zero */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_bcond(MIPS_COND_EQ, r_X, r_zero, b_off, ctx); + emit_load_imm(r_ret, 0, ctx); /* delay slot */ + emit_div(r_A, r_X, ctx); + break; + case BPF_ALU | BPF_MOD | BPF_X: + /* A %= X */ + ctx->flags |= SEEN_X | SEEN_A; + /* Check if r_X is zero */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_bcond(MIPS_COND_EQ, r_X, r_zero, b_off, ctx); + emit_load_imm(r_ret, 0, ctx); /* delay slot */ + emit_mod(r_A, r_X, ctx); + break; + case BPF_ALU | BPF_OR | BPF_K: + /* A |= K */ + ctx->flags |= SEEN_A; + emit_ori(r_A, r_A, k, ctx); + break; + case BPF_ALU | BPF_OR | BPF_X: + /* A |= X */ + ctx->flags |= SEEN_A; + emit_ori(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_XOR | BPF_K: + /* A ^= k */ + ctx->flags |= SEEN_A; + emit_xori(r_A, r_A, k, ctx); + break; + case BPF_ANC | SKF_AD_ALU_XOR_X: + case BPF_ALU | BPF_XOR | BPF_X: + /* A ^= X */ + ctx->flags |= SEEN_A; + emit_xor(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_AND | BPF_K: + /* A &= K */ + ctx->flags |= SEEN_A; + emit_andi(r_A, r_A, k, ctx); + break; + case BPF_ALU | BPF_AND | BPF_X: + /* A &= X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_and(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_LSH | BPF_K: + /* A <<= K */ + ctx->flags |= SEEN_A; + emit_sll(r_A, r_A, k, ctx); + break; + case BPF_ALU | BPF_LSH | BPF_X: + /* A <<= X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_sllv(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_RSH | BPF_K: + /* A >>= K */ + ctx->flags |= SEEN_A; + emit_srl(r_A, r_A, k, ctx); + break; + case BPF_ALU | BPF_RSH | BPF_X: + ctx->flags |= SEEN_A | SEEN_X; + emit_srlv(r_A, r_A, r_X, ctx); + break; + case BPF_ALU | BPF_NEG: + /* A = -A */ + ctx->flags |= SEEN_A; + emit_neg(r_A, ctx); + break; + case BPF_JMP | BPF_JA: + /* pc += K */ + b_off = b_imm(i + k + 1, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_b(b_off, ctx); + emit_nop(ctx); + break; + case BPF_JMP | BPF_JEQ | BPF_K: + /* pc += ( A == K ) ? pc->jt : pc->jf */ + condt = MIPS_COND_EQ | MIPS_COND_K; + goto jmp_cmp; + case BPF_JMP | BPF_JEQ | BPF_X: + ctx->flags |= SEEN_X; + /* pc += ( A == X ) ? pc->jt : pc->jf */ + condt = MIPS_COND_EQ | MIPS_COND_X; + goto jmp_cmp; + case BPF_JMP | BPF_JGE | BPF_K: + /* pc += ( A >= K ) ? pc->jt : pc->jf */ + condt = MIPS_COND_GE | MIPS_COND_K; + goto jmp_cmp; + case BPF_JMP | BPF_JGE | BPF_X: + ctx->flags |= SEEN_X; + /* pc += ( A >= X ) ? pc->jt : pc->jf */ + condt = MIPS_COND_GE | MIPS_COND_X; + goto jmp_cmp; + case BPF_JMP | BPF_JGT | BPF_K: + /* pc += ( A > K ) ? pc->jt : pc->jf */ + condt = MIPS_COND_GT | MIPS_COND_K; + goto jmp_cmp; + case BPF_JMP | BPF_JGT | BPF_X: + ctx->flags |= SEEN_X; + /* pc += ( A > X ) ? pc->jt : pc->jf */ + condt = MIPS_COND_GT | MIPS_COND_X; +jmp_cmp: + /* Greater or Equal */ + if ((condt & MIPS_COND_GE) || + (condt & MIPS_COND_GT)) { + if (condt & MIPS_COND_K) { /* K */ + ctx->flags |= SEEN_A; + emit_sltiu(r_s0, r_A, k, ctx); + } else { /* X */ + ctx->flags |= SEEN_A | + SEEN_X; + emit_sltu(r_s0, r_A, r_X, ctx); + } + /* A < (K|X) ? r_scrach = 1 */ + b_off = b_imm(i + inst->jf + 1, ctx); + emit_bcond(MIPS_COND_NE, r_s0, r_zero, b_off, + ctx); + emit_nop(ctx); + /* A > (K|X) ? scratch = 0 */ + if (condt & MIPS_COND_GT) { + /* Checking for equality */ + ctx->flags |= SEEN_A | SEEN_X; + if (condt & MIPS_COND_K) + emit_load_imm(r_s0, k, ctx); + else + emit_jit_reg_move(r_s0, r_X, + ctx); + b_off = b_imm(i + inst->jf + 1, ctx); + emit_bcond(MIPS_COND_EQ, r_A, r_s0, + b_off, ctx); + emit_nop(ctx); + /* Finally, A > K|X */ + b_off = b_imm(i + inst->jt + 1, ctx); + emit_b(b_off, ctx); + emit_nop(ctx); + } else { + /* A >= (K|X) so jump */ + b_off = b_imm(i + inst->jt + 1, ctx); + emit_b(b_off, ctx); + emit_nop(ctx); + } + } else { + /* A == K|X */ + if (condt & MIPS_COND_K) { /* K */ + ctx->flags |= SEEN_A; + emit_load_imm(r_s0, k, ctx); + /* jump true */ + b_off = b_imm(i + inst->jt + 1, ctx); + emit_bcond(MIPS_COND_EQ, r_A, r_s0, + b_off, ctx); + emit_nop(ctx); + /* jump false */ + b_off = b_imm(i + inst->jf + 1, + ctx); + emit_bcond(MIPS_COND_NE, r_A, r_s0, + b_off, ctx); + emit_nop(ctx); + } else { /* X */ + /* jump true */ + ctx->flags |= SEEN_A | SEEN_X; + b_off = b_imm(i + inst->jt + 1, + ctx); + emit_bcond(MIPS_COND_EQ, r_A, r_X, + b_off, ctx); + emit_nop(ctx); + /* jump false */ + b_off = b_imm(i + inst->jf + 1, ctx); + emit_bcond(MIPS_COND_NE, r_A, r_X, + b_off, ctx); + emit_nop(ctx); + } + } + break; + case BPF_JMP | BPF_JSET | BPF_K: + ctx->flags |= SEEN_A; + /* pc += (A & K) ? pc -> jt : pc -> jf */ + emit_load_imm(r_s1, k, ctx); + emit_and(r_s0, r_A, r_s1, ctx); + /* jump true */ + b_off = b_imm(i + inst->jt + 1, ctx); + emit_bcond(MIPS_COND_NE, r_s0, r_zero, b_off, ctx); + emit_nop(ctx); + /* jump false */ + b_off = b_imm(i + inst->jf + 1, ctx); + emit_b(b_off, ctx); + emit_nop(ctx); + break; + case BPF_JMP | BPF_JSET | BPF_X: + ctx->flags |= SEEN_X | SEEN_A; + /* pc += (A & X) ? pc -> jt : pc -> jf */ + emit_and(r_s0, r_A, r_X, ctx); + /* jump true */ + b_off = b_imm(i + inst->jt + 1, ctx); + emit_bcond(MIPS_COND_NE, r_s0, r_zero, b_off, ctx); + emit_nop(ctx); + /* jump false */ + b_off = b_imm(i + inst->jf + 1, ctx); + emit_b(b_off, ctx); + emit_nop(ctx); + break; + case BPF_RET | BPF_A: + ctx->flags |= SEEN_A; + if (i != prog->len - 1) { + /* + * If this is not the last instruction + * then jump to the epilogue + */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_b(b_off, ctx); + } + emit_reg_move(r_ret, r_A, ctx); /* delay slot */ + break; + case BPF_RET | BPF_K: + /* + * It can emit two instructions so it does not fit on + * the delay slot. + */ + emit_load_imm(r_ret, k, ctx); + if (i != prog->len - 1) { + /* + * If this is not the last instruction + * then jump to the epilogue + */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_b(b_off, ctx); + emit_nop(ctx); + } + break; + case BPF_MISC | BPF_TAX: + /* X = A */ + ctx->flags |= SEEN_X | SEEN_A; + emit_jit_reg_move(r_X, r_A, ctx); + break; + case BPF_MISC | BPF_TXA: + /* A = X */ + ctx->flags |= SEEN_A | SEEN_X; + emit_jit_reg_move(r_A, r_X, ctx); + break; + /* AUX */ + case BPF_ANC | SKF_AD_PROTOCOL: + /* A = ntohs(skb->protocol */ + ctx->flags |= SEEN_SKB | SEEN_OFF | SEEN_A; + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, + protocol) != 2); + off = offsetof(struct sk_buff, protocol); + emit_half_load(r_A, r_skb, off, ctx); +#ifdef CONFIG_CPU_LITTLE_ENDIAN + /* This needs little endian fixup */ + if (cpu_has_wsbh) { + /* R2 and later have the wsbh instruction */ + emit_wsbh(r_A, r_A, ctx); + } else { + /* Get first byte */ + emit_andi(r_tmp_imm, r_A, 0xff, ctx); + /* Shift it */ + emit_sll(r_tmp, r_tmp_imm, 8, ctx); + /* Get second byte */ + emit_srl(r_tmp_imm, r_A, 8, ctx); + emit_andi(r_tmp_imm, r_tmp_imm, 0xff, ctx); + /* Put everyting together in r_A */ + emit_or(r_A, r_tmp, r_tmp_imm, ctx); + } +#endif + break; + case BPF_ANC | SKF_AD_CPU: + ctx->flags |= SEEN_A | SEEN_OFF; + /* A = current_thread_info()->cpu */ + BUILD_BUG_ON(FIELD_SIZEOF(struct thread_info, + cpu) != 4); + off = offsetof(struct thread_info, cpu); + /* $28/gp points to the thread_info struct */ + emit_load(r_A, 28, off, ctx); + break; + case BPF_ANC | SKF_AD_IFINDEX: + /* A = skb->dev->ifindex */ + case BPF_ANC | SKF_AD_HATYPE: + /* A = skb->dev->type */ + ctx->flags |= SEEN_SKB | SEEN_A; + off = offsetof(struct sk_buff, dev); + /* Load *dev pointer */ + emit_load_ptr(r_s0, r_skb, off, ctx); + /* error (0) in the delay slot */ + b_off = b_imm(prog->len, ctx); + if (is_bad_offset(b_off)) + return -E2BIG; + emit_bcond(MIPS_COND_EQ, r_s0, r_zero, b_off, ctx); + emit_reg_move(r_ret, r_zero, ctx); + if (code == (BPF_ANC | SKF_AD_IFINDEX)) { + BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, ifindex) != 4); + off = offsetof(struct net_device, ifindex); + emit_load(r_A, r_s0, off, ctx); + } else { /* (code == (BPF_ANC | SKF_AD_HATYPE) */ + BUILD_BUG_ON(FIELD_SIZEOF(struct net_device, type) != 2); + off = offsetof(struct net_device, type); + emit_half_load_unsigned(r_A, r_s0, off, ctx); + } + break; + case BPF_ANC | SKF_AD_MARK: + ctx->flags |= SEEN_SKB | SEEN_A; + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, mark) != 4); + off = offsetof(struct sk_buff, mark); + emit_load(r_A, r_skb, off, ctx); + break; + case BPF_ANC | SKF_AD_RXHASH: + ctx->flags |= SEEN_SKB | SEEN_A; + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, hash) != 4); + off = offsetof(struct sk_buff, hash); + emit_load(r_A, r_skb, off, ctx); + break; + case BPF_ANC | SKF_AD_VLAN_TAG: + ctx->flags |= SEEN_SKB | SEEN_A; + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, + vlan_tci) != 2); + off = offsetof(struct sk_buff, vlan_tci); + emit_half_load_unsigned(r_A, r_skb, off, ctx); + break; + case BPF_ANC | SKF_AD_VLAN_TAG_PRESENT: + ctx->flags |= SEEN_SKB | SEEN_A; + emit_load_byte(r_A, r_skb, PKT_VLAN_PRESENT_OFFSET(), ctx); + if (PKT_VLAN_PRESENT_BIT) + emit_srl(r_A, r_A, PKT_VLAN_PRESENT_BIT, ctx); + if (PKT_VLAN_PRESENT_BIT < 7) + emit_andi(r_A, r_A, 1, ctx); + break; + case BPF_ANC | SKF_AD_PKTTYPE: + ctx->flags |= SEEN_SKB; + + emit_load_byte(r_tmp, r_skb, PKT_TYPE_OFFSET(), ctx); + /* Keep only the last 3 bits */ + emit_andi(r_A, r_tmp, PKT_TYPE_MAX, ctx); +#ifdef __BIG_ENDIAN_BITFIELD + /* Get the actual packet type to the lower 3 bits */ + emit_srl(r_A, r_A, 5, ctx); +#endif + break; + case BPF_ANC | SKF_AD_QUEUE: + ctx->flags |= SEEN_SKB | SEEN_A; + BUILD_BUG_ON(FIELD_SIZEOF(struct sk_buff, + queue_mapping) != 2); + BUILD_BUG_ON(offsetof(struct sk_buff, + queue_mapping) > 0xff); + off = offsetof(struct sk_buff, queue_mapping); + emit_half_load_unsigned(r_A, r_skb, off, ctx); + break; + default: + pr_debug("%s: Unhandled opcode: 0x%02x\n", __FILE__, + inst->code); + return -1; + } + } + + /* compute offsets only during the first pass */ + if (ctx->target == NULL) + ctx->offsets[i] = ctx->idx * 4; + + return 0; +} + +void bpf_jit_compile(struct bpf_prog *fp) +{ + struct jit_ctx ctx; + unsigned int alloc_size, tmp_idx; + + if (!bpf_jit_enable) + return; + + memset(&ctx, 0, sizeof(ctx)); + + ctx.offsets = kcalloc(fp->len + 1, sizeof(*ctx.offsets), GFP_KERNEL); + if (ctx.offsets == NULL) + return; + + ctx.skf = fp; + + if (build_body(&ctx)) + goto out; + + tmp_idx = ctx.idx; + build_prologue(&ctx); + ctx.prologue_bytes = (ctx.idx - tmp_idx) * 4; + /* just to complete the ctx.idx count */ + build_epilogue(&ctx); + + alloc_size = 4 * ctx.idx; + ctx.target = module_alloc(alloc_size); + if (ctx.target == NULL) + goto out; + + /* Clean it */ + memset(ctx.target, 0, alloc_size); + + ctx.idx = 0; + + /* Generate the actual JIT code */ + build_prologue(&ctx); + if (build_body(&ctx)) { + module_memfree(ctx.target); + goto out; + } + build_epilogue(&ctx); + + /* Update the icache */ + flush_icache_range((ptr)ctx.target, (ptr)(ctx.target + ctx.idx)); + + if (bpf_jit_enable > 1) + /* Dump JIT code */ + bpf_jit_dump(fp->len, alloc_size, 2, ctx.target); + + fp->bpf_func = (void *)ctx.target; + fp->jited = 1; + +out: + kfree(ctx.offsets); +} + +void bpf_jit_free(struct bpf_prog *fp) +{ + if (fp->jited) + module_memfree(fp->bpf_func); + + bpf_prog_unlock_free(fp); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/net/bpf_jit_asm.S +++ linux-azure-5.4.0/arch/mips/net/bpf_jit_asm.S @@ -0,0 +1,285 @@ +/* + * bpf_jib_asm.S: Packet/header access helper functions for MIPS/MIPS64 BPF + * compiler. + * + * Copyright (C) 2015 Imagination Technologies Ltd. + * Author: Markos Chandras + * + * 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 of the License. + */ + +#include +#include +#include +#include "bpf_jit.h" + +/* ABI + * + * r_skb_hl skb header length + * r_skb_data skb data + * r_off(a1) offset register + * r_A BPF register A + * r_X PF register X + * r_skb(a0) *skb + * r_M *scratch memory + * r_skb_le skb length + * r_s0 Scratch register 0 + * r_s1 Scratch register 1 + * + * On entry: + * a0: *skb + * a1: offset (imm or imm + X) + * + * All non-BPF-ABI registers are free for use. On return, we only + * care about r_ret. The BPF-ABI registers are assumed to remain + * unmodified during the entire filter operation. + */ + +#define skb a0 +#define offset a1 +#define SKF_LL_OFF (-0x200000) /* Can't include linux/filter.h in assembly */ + + /* We know better :) so prevent assembler reordering etc */ + .set noreorder + +#define is_offset_negative(TYPE) \ + /* If offset is negative we have more work to do */ \ + slti t0, offset, 0; \ + bgtz t0, bpf_slow_path_##TYPE##_neg; \ + /* Be careful what follows in DS. */ + +#define is_offset_in_header(SIZE, TYPE) \ + /* Reading from header? */ \ + addiu $r_s0, $r_skb_hl, -SIZE; \ + slt t0, $r_s0, offset; \ + bgtz t0, bpf_slow_path_##TYPE; \ + +LEAF(sk_load_word) + is_offset_negative(word) +FEXPORT(sk_load_word_positive) + is_offset_in_header(4, word) + /* Offset within header boundaries */ + PTR_ADDU t1, $r_skb_data, offset + .set reorder + lw $r_A, 0(t1) + .set noreorder +#ifdef CONFIG_CPU_LITTLE_ENDIAN +# if MIPS_ISA_REV >= 2 + wsbh t0, $r_A + rotr $r_A, t0, 16 +# else + sll t0, $r_A, 24 + srl t1, $r_A, 24 + srl t2, $r_A, 8 + or t0, t0, t1 + andi t2, t2, 0xff00 + andi t1, $r_A, 0xff00 + or t0, t0, t2 + sll t1, t1, 8 + or $r_A, t0, t1 +# endif +#endif + jr $r_ra + move $r_ret, zero + END(sk_load_word) + +LEAF(sk_load_half) + is_offset_negative(half) +FEXPORT(sk_load_half_positive) + is_offset_in_header(2, half) + /* Offset within header boundaries */ + PTR_ADDU t1, $r_skb_data, offset + lhu $r_A, 0(t1) +#ifdef CONFIG_CPU_LITTLE_ENDIAN +# if MIPS_ISA_REV >= 2 + wsbh $r_A, $r_A +# else + sll t0, $r_A, 8 + srl t1, $r_A, 8 + andi t0, t0, 0xff00 + or $r_A, t0, t1 +# endif +#endif + jr $r_ra + move $r_ret, zero + END(sk_load_half) + +LEAF(sk_load_byte) + is_offset_negative(byte) +FEXPORT(sk_load_byte_positive) + is_offset_in_header(1, byte) + /* Offset within header boundaries */ + PTR_ADDU t1, $r_skb_data, offset + lbu $r_A, 0(t1) + jr $r_ra + move $r_ret, zero + END(sk_load_byte) + +/* + * call skb_copy_bits: + * (prototype in linux/skbuff.h) + * + * int skb_copy_bits(sk_buff *skb, int offset, void *to, int len) + * + * o32 mandates we leave 4 spaces for argument registers in case + * the callee needs to use them. Even though we don't care about + * the argument registers ourselves, we need to allocate that space + * to remain ABI compliant since the callee may want to use that space. + * We also allocate 2 more spaces for $r_ra and our return register (*to). + * + * n64 is a bit different. The *caller* will allocate the space to preserve + * the arguments. So in 64-bit kernels, we allocate the 4-arg space for no + * good reason but it does not matter that much really. + * + * (void *to) is returned in r_s0 + * + */ +#ifdef CONFIG_CPU_LITTLE_ENDIAN +#define DS_OFFSET(SIZE) (4 * SZREG) +#else +#define DS_OFFSET(SIZE) ((4 * SZREG) + (4 - SIZE)) +#endif +#define bpf_slow_path_common(SIZE) \ + /* Quick check. Are we within reasonable boundaries? */ \ + LONG_ADDIU $r_s1, $r_skb_len, -SIZE; \ + sltu $r_s0, offset, $r_s1; \ + beqz $r_s0, fault; \ + /* Load 4th argument in DS */ \ + LONG_ADDIU a3, zero, SIZE; \ + PTR_ADDIU $r_sp, $r_sp, -(6 * SZREG); \ + PTR_LA t0, skb_copy_bits; \ + PTR_S $r_ra, (5 * SZREG)($r_sp); \ + /* Assign low slot to a2 */ \ + PTR_ADDIU a2, $r_sp, DS_OFFSET(SIZE); \ + jalr t0; \ + /* Reset our destination slot (DS but it's ok) */ \ + INT_S zero, (4 * SZREG)($r_sp); \ + /* \ + * skb_copy_bits returns 0 on success and -EFAULT \ + * on error. Our data live in a2. Do not bother with \ + * our data if an error has been returned. \ + */ \ + /* Restore our frame */ \ + PTR_L $r_ra, (5 * SZREG)($r_sp); \ + INT_L $r_s0, (4 * SZREG)($r_sp); \ + bltz v0, fault; \ + PTR_ADDIU $r_sp, $r_sp, 6 * SZREG; \ + move $r_ret, zero; \ + +NESTED(bpf_slow_path_word, (6 * SZREG), $r_sp) + bpf_slow_path_common(4) +#ifdef CONFIG_CPU_LITTLE_ENDIAN +# if MIPS_ISA_REV >= 2 + wsbh t0, $r_s0 + jr $r_ra + rotr $r_A, t0, 16 +# else + sll t0, $r_s0, 24 + srl t1, $r_s0, 24 + srl t2, $r_s0, 8 + or t0, t0, t1 + andi t2, t2, 0xff00 + andi t1, $r_s0, 0xff00 + or t0, t0, t2 + sll t1, t1, 8 + jr $r_ra + or $r_A, t0, t1 +# endif +#else + jr $r_ra + move $r_A, $r_s0 +#endif + + END(bpf_slow_path_word) + +NESTED(bpf_slow_path_half, (6 * SZREG), $r_sp) + bpf_slow_path_common(2) +#ifdef CONFIG_CPU_LITTLE_ENDIAN +# if MIPS_ISA_REV >= 2 + jr $r_ra + wsbh $r_A, $r_s0 +# else + sll t0, $r_s0, 8 + andi t1, $r_s0, 0xff00 + andi t0, t0, 0xff00 + srl t1, t1, 8 + jr $r_ra + or $r_A, t0, t1 +# endif +#else + jr $r_ra + move $r_A, $r_s0 +#endif + + END(bpf_slow_path_half) + +NESTED(bpf_slow_path_byte, (6 * SZREG), $r_sp) + bpf_slow_path_common(1) + jr $r_ra + move $r_A, $r_s0 + + END(bpf_slow_path_byte) + +/* + * Negative entry points + */ + .macro bpf_is_end_of_data + li t0, SKF_LL_OFF + /* Reading link layer data? */ + slt t1, offset, t0 + bgtz t1, fault + /* Be careful what follows in DS. */ + .endm +/* + * call skb_copy_bits: + * (prototype in linux/filter.h) + * + * void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb, + * int k, unsigned int size) + * + * see above (bpf_slow_path_common) for ABI restrictions + */ +#define bpf_negative_common(SIZE) \ + PTR_ADDIU $r_sp, $r_sp, -(6 * SZREG); \ + PTR_LA t0, bpf_internal_load_pointer_neg_helper; \ + PTR_S $r_ra, (5 * SZREG)($r_sp); \ + jalr t0; \ + li a2, SIZE; \ + PTR_L $r_ra, (5 * SZREG)($r_sp); \ + /* Check return pointer */ \ + beqz v0, fault; \ + PTR_ADDIU $r_sp, $r_sp, 6 * SZREG; \ + /* Preserve our pointer */ \ + move $r_s0, v0; \ + /* Set return value */ \ + move $r_ret, zero; \ + +bpf_slow_path_word_neg: + bpf_is_end_of_data +NESTED(sk_load_word_negative, (6 * SZREG), $r_sp) + bpf_negative_common(4) + jr $r_ra + lw $r_A, 0($r_s0) + END(sk_load_word_negative) + +bpf_slow_path_half_neg: + bpf_is_end_of_data +NESTED(sk_load_half_negative, (6 * SZREG), $r_sp) + bpf_negative_common(2) + jr $r_ra + lhu $r_A, 0($r_s0) + END(sk_load_half_negative) + +bpf_slow_path_byte_neg: + bpf_is_end_of_data +NESTED(sk_load_byte_negative, (6 * SZREG), $r_sp) + bpf_negative_common(1) + jr $r_ra + lbu $r_A, 0($r_s0) + END(sk_load_byte_negative) + +fault: + jr $r_ra + addiu $r_ret, zero, 1 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/pic32/pic32mzda/init.c +++ linux-azure-5.4.0/arch/mips/pic32/pic32mzda/init.c @@ -28,7 +28,7 @@ if (fw_passed_dtb && !fw_arg2 && !fw_arg3) return (ulong)fw_passed_dtb; - if (__dtb_start < __dtb_end) + if (&__dtb_start < &__dtb_end) ftaddr = (ulong)__dtb_start; return ftaddr; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/ralink/ill_acc.c +++ linux-azure-5.4.0/arch/mips/ralink/ill_acc.c @@ -61,6 +61,7 @@ pdev = of_find_device_by_node(np); if (!pdev) { pr_err("%pOFn: failed to lookup pdev\n", np); + of_node_put(np); return -EINVAL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/rb532/devices.c +++ linux-azure-5.4.0/arch/mips/rb532/devices.c @@ -310,11 +310,9 @@ static int __init setup_kmac(char *s) { printk(KERN_INFO "korina mac = %s\n", s); - if (!mac_pton(s, korina_dev0_data.mac)) { + if (!mac_pton(s, korina_dev0_data.mac)) printk(KERN_ERR "Invalid mac\n"); - return -EINVAL; - } - return 0; + return 1; } __setup("kmac=", setup_kmac); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/sni/time.c +++ linux-azure-5.4.0/arch/mips/sni/time.c @@ -18,14 +18,14 @@ { *(volatile u8 *)(A20R_PT_CLOCK_BASE + 12) = 0x34; wmb(); - *(volatile u8 *)(A20R_PT_CLOCK_BASE + 0) = SNI_COUNTER0_DIV; + *(volatile u8 *)(A20R_PT_CLOCK_BASE + 0) = SNI_COUNTER0_DIV & 0xff; wmb(); *(volatile u8 *)(A20R_PT_CLOCK_BASE + 0) = SNI_COUNTER0_DIV >> 8; wmb(); *(volatile u8 *)(A20R_PT_CLOCK_BASE + 12) = 0xb4; wmb(); - *(volatile u8 *)(A20R_PT_CLOCK_BASE + 8) = SNI_COUNTER2_DIV; + *(volatile u8 *)(A20R_PT_CLOCK_BASE + 8) = SNI_COUNTER2_DIV & 0xff; wmb(); *(volatile u8 *)(A20R_PT_CLOCK_BASE + 8) = SNI_COUNTER2_DIV >> 8; wmb(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/mips/vr41xx/common/icu.c +++ linux-azure-5.4.0/arch/mips/vr41xx/common/icu.c @@ -640,8 +640,6 @@ printk(KERN_ERR "spurious ICU interrupt: %04x,%04x\n", pend1, pend2); - atomic_inc(&irq_err_count); - return -1; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nds32/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/nds32/include/asm/uaccess.h @@ -71,9 +71,7 @@ * versions are void (ie, don't return a value as such). */ -#define get_user __get_user \ - -#define __get_user(x, ptr) \ +#define get_user(x, ptr) \ ({ \ long __gu_err = 0; \ __get_user_check((x), (ptr), __gu_err); \ @@ -86,6 +84,14 @@ (void)0; \ }) +#define __get_user(x, ptr) \ +({ \ + long __gu_err = 0; \ + const __typeof__(*(ptr)) __user *__p = (ptr); \ + __get_user_err((x), __p, (__gu_err)); \ + __gu_err; \ +}) + #define __get_user_check(x, ptr, err) \ ({ \ const __typeof__(*(ptr)) __user *__p = (ptr); \ @@ -166,12 +172,18 @@ : "r"(addr), "i"(-EFAULT) \ : "cc") -#define put_user __put_user \ +#define put_user(x, ptr) \ +({ \ + long __pu_err = 0; \ + __put_user_check((x), (ptr), __pu_err); \ + __pu_err; \ +}) #define __put_user(x, ptr) \ ({ \ long __pu_err = 0; \ - __put_user_err((x), (ptr), __pu_err); \ + __typeof__(*(ptr)) __user *__p = (ptr); \ + __put_user_err((x), __p, __pu_err); \ __pu_err; \ }) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nds32/kernel/perf_event_cpu.c +++ linux-azure-5.4.0/arch/nds32/kernel/perf_event_cpu.c @@ -1363,6 +1363,7 @@ perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); unsigned long fp = 0; unsigned long gp = 0; unsigned long lp = 0; @@ -1371,7 +1372,7 @@ leaf_fp = 0; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -1479,9 +1480,10 @@ perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); struct stackframe fr; - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { /* We don't support guest os callchain now */ return; } @@ -1493,20 +1495,23 @@ unsigned long perf_instruction_pointer(struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + /* However, NDS32 does not support virtualization */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) - return perf_guest_cbs->get_guest_ip(); + if (guest_cbs && guest_cbs->is_in_guest()) + return guest_cbs->get_guest_ip(); return instruction_pointer(regs); } unsigned long perf_misc_flags(struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); int misc = 0; /* However, NDS32 does not support virtualization */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { - if (perf_guest_cbs->is_user_mode()) + if (guest_cbs && guest_cbs->is_in_guest()) { + if (guest_cbs->is_user_mode()) misc |= PERF_RECORD_MISC_GUEST_USER; else misc |= PERF_RECORD_MISC_GUEST_KERNEL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nds32/mm/mmap.c +++ linux-azure-5.4.0/arch/nds32/mm/mmap.c @@ -59,7 +59,7 @@ vma = find_vma(mm, addr); if (TASK_SIZE - len >= addr && - (!vma || addr + len <= vma->vm_start)) + (!vma || addr + len <= vm_start_gap(vma))) return addr; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/entry.h +++ linux-azure-5.4.0/arch/nios2/include/asm/entry.h @@ -50,7 +50,8 @@ stw r13, PT_R13(sp) stw r14, PT_R14(sp) stw r15, PT_R15(sp) - stw r2, PT_ORIG_R2(sp) + movi r24, -1 + stw r24, PT_ORIG_R2(sp) stw r7, PT_ORIG_R7(sp) stw ra, PT_RA(sp) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/irqflags.h +++ linux-azure-5.4.0/arch/nios2/include/asm/irqflags.h @@ -9,7 +9,7 @@ static inline unsigned long arch_local_save_flags(void) { - return RDCTL(CTL_STATUS); + return RDCTL(CTL_FSTATUS); } /* @@ -18,7 +18,7 @@ */ static inline void arch_local_irq_restore(unsigned long flags) { - WRCTL(CTL_STATUS, flags); + WRCTL(CTL_FSTATUS, flags); } static inline void arch_local_irq_disable(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/ptrace.h +++ linux-azure-5.4.0/arch/nios2/include/asm/ptrace.h @@ -74,6 +74,8 @@ ((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE)\ - 1) +#define force_successful_syscall_return() (current_pt_regs()->orig_r2 = -1) + int do_syscall_trace_enter(void); void do_syscall_trace_exit(void); #endif /* __ASSEMBLY__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/registers.h +++ linux-azure-5.4.0/arch/nios2/include/asm/registers.h @@ -11,7 +11,7 @@ #endif /* control register numbers */ -#define CTL_STATUS 0 +#define CTL_FSTATUS 0 #define CTL_ESTATUS 1 #define CTL_BSTATUS 2 #define CTL_IENABLE 3 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/timex.h +++ linux-azure-5.4.0/arch/nios2/include/asm/timex.h @@ -8,5 +8,8 @@ typedef unsigned long cycles_t; extern cycles_t get_cycles(void); +#define get_cycles get_cycles + +#define random_get_entropy() (((unsigned long)get_cycles()) ?: random_get_entropy_fallback()) #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/nios2/include/asm/uaccess.h @@ -89,6 +89,7 @@ /* Optimized macros */ #define __get_user_asm(val, insn, addr, err) \ { \ + unsigned long __gu_val; \ __asm__ __volatile__( \ " movi %0, %3\n" \ "1: " insn " %1, 0(%2)\n" \ @@ -97,14 +98,20 @@ " .section __ex_table,\"a\"\n" \ " .word 1b, 2b\n" \ " .previous" \ - : "=&r" (err), "=r" (val) \ + : "=&r" (err), "=r" (__gu_val) \ : "r" (addr), "i" (-EFAULT)); \ + val = (__force __typeof__(*(addr)))__gu_val; \ } -#define __get_user_unknown(val, size, ptr, err) do { \ +extern void __get_user_unknown(void); + +#define __get_user_8(val, ptr, err) do { \ + u64 __val = 0; \ err = 0; \ - if (__copy_from_user(&(val), ptr, size)) { \ + if (raw_copy_from_user(&(__val), ptr, sizeof(val))) { \ err = -EFAULT; \ + } else { \ + val = (typeof(val))(typeof((val) - (val)))__val; \ } \ } while (0) @@ -120,8 +127,11 @@ case 4: \ __get_user_asm(val, "ldw", ptr, err); \ break; \ + case 8: \ + __get_user_8(val, ptr, err); \ + break; \ default: \ - __get_user_unknown(val, size, ptr, err); \ + __get_user_unknown(); \ break; \ } \ } while (0) @@ -130,9 +140,7 @@ ({ \ long __gu_err = -EFAULT; \ const __typeof__(*(ptr)) __user *__gu_ptr = (ptr); \ - unsigned long __gu_val = 0; \ - __get_user_common(__gu_val, sizeof(*(ptr)), __gu_ptr, __gu_err);\ - (x) = (__force __typeof__(x))__gu_val; \ + __get_user_common(x, sizeof(*(ptr)), __gu_ptr, __gu_err); \ __gu_err; \ }) @@ -140,11 +148,9 @@ ({ \ long __gu_err = -EFAULT; \ const __typeof__(*(ptr)) __user *__gu_ptr = (ptr); \ - unsigned long __gu_val = 0; \ if (access_ok( __gu_ptr, sizeof(*__gu_ptr))) \ - __get_user_common(__gu_val, sizeof(*__gu_ptr), \ + __get_user_common(x, sizeof(*__gu_ptr), \ __gu_ptr, __gu_err); \ - (x) = (__force __typeof__(x))__gu_val; \ __gu_err; \ }) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/kernel/entry.S +++ linux-azure-5.4.0/arch/nios2/kernel/entry.S @@ -185,6 +185,7 @@ ldw r5, PT_R5(sp) local_restart: + stw r2, PT_ORIG_R2(sp) /* Check that the requested system call is within limits */ movui r1, __NR_syscalls bgeu r2, r1, ret_invsyscall @@ -192,7 +193,6 @@ movhi r11, %hiadj(sys_call_table) add r1, r1, r11 ldw r1, %lo(sys_call_table)(r1) - beq r1, r0, ret_invsyscall /* Check if we are being traced */ GET_THREAD_INFO r11 @@ -213,6 +213,9 @@ translate_rc_and_ret: movi r1, 0 bge r2, zero, 3f + ldw r1, PT_ORIG_R2(sp) + addi r1, r1, 1 + beq r1, zero, 3f sub r2, zero, r2 movi r1, 1 3: @@ -255,9 +258,9 @@ ldw r6, PT_R6(sp) ldw r7, PT_R7(sp) - /* Fetch the syscall function, we don't need to check the boundaries - * since this is already done. - */ + /* Fetch the syscall function. */ + movui r1, __NR_syscalls + bgeu r2, r1, traced_invsyscall slli r1, r2, 2 movhi r11,%hiadj(sys_call_table) add r1, r1, r11 @@ -276,6 +279,9 @@ translate_rc_and_ret2: movi r1, 0 bge r2, zero, 4f + ldw r1, PT_ORIG_R2(sp) + addi r1, r1, 1 + beq r1, zero, 4f sub r2, zero, r2 movi r1, 1 4: @@ -287,6 +293,11 @@ RESTORE_SWITCH_STACK br ret_from_exception + /* If the syscall number was invalid return ENOSYS */ +traced_invsyscall: + movi r2, -ENOSYS + br translate_rc_and_ret2 + Luser_return: GET_THREAD_INFO r11 /* get thread_info pointer */ ldw r10, TI_FLAGS(r11) /* get thread_info->flags */ @@ -336,9 +347,6 @@ /* skip if no interrupt is pending */ beq r12, r0, ret_from_interrupt - movi r24, -1 - stw r24, PT_ORIG_R2(sp) - /* * Process an external hardware interrupt. */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/kernel/signal.c +++ linux-azure-5.4.0/arch/nios2/kernel/signal.c @@ -240,7 +240,7 @@ /* * If we were from a system call, check for system call restarting... */ - if (regs->orig_r2 >= 0) { + if (regs->orig_r2 >= 0 && regs->r1) { continue_addr = regs->ea; restart_addr = continue_addr - 4; retval = regs->r2; @@ -261,6 +261,7 @@ regs->ea = restart_addr; break; } + regs->orig_r2 = -1; } if (get_signal(&ksig)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/kernel/syscall_table.c +++ linux-azure-5.4.0/arch/nios2/kernel/syscall_table.c @@ -13,5 +13,6 @@ #define __SYSCALL(nr, call) [nr] = (call), void *sys_call_table[__NR_syscalls] = { + [0 ... __NR_syscalls-1] = sys_ni_syscall, #include }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/nios2/platform/Kconfig.platform +++ linux-azure-5.4.0/arch/nios2/platform/Kconfig.platform @@ -37,6 +37,7 @@ config NIOS2_DTB_SOURCE_BOOL bool "Compile and link device tree into kernel image" + depends on !COMPILE_TEST help This allows you to specify a dts (device tree source) file which will be compiled and linked into the kernel image. only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/openrisc/include/asm/timex.h +++ linux-azure-5.4.0/arch/openrisc/include/asm/timex.h @@ -23,6 +23,7 @@ { return mfspr(SPR_TTCR); } +#define get_cycles get_cycles /* This isn't really used any more */ #define CLOCK_TICK_RATE 1000 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/openrisc/kernel/head.S +++ linux-azure-5.4.0/arch/openrisc/kernel/head.S @@ -521,6 +521,15 @@ l.ori r3,r0,0x1 l.mtspr r0,r3,SPR_SR + /* + * Start the TTCR as early as possible, so that the RNG can make use of + * measurements of boot time from the earliest opportunity. Especially + * important is that the TTCR does not return zero by the time we reach + * rand_initialize(). + */ + l.movhi r3,hi(SPR_TTMR_CR) + l.mtspr r0,r3,SPR_TTMR + CLEAR_GPR(r1) CLEAR_GPR(r2) CLEAR_GPR(r3) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/include/asm/hardware.h +++ linux-azure-5.4.0/arch/parisc/include/asm/hardware.h @@ -10,12 +10,12 @@ #define SVERSION_ANY_ID PA_SVERSION_ANY_ID struct hp_hardware { - unsigned short hw_type:5; /* HPHW_xxx */ - unsigned short hversion; - unsigned long sversion:28; - unsigned short opt; - const char name[80]; /* The hardware description */ -}; + unsigned int hw_type:8; /* HPHW_xxx */ + unsigned int hversion:12; + unsigned int sversion:12; + unsigned char opt; + unsigned char name[59]; /* The hardware description */ +} __packed; struct parisc_device; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/include/asm/page.h +++ linux-azure-5.4.0/arch/parisc/include/asm/page.h @@ -181,7 +181,7 @@ #include #include -#define PAGE0 ((struct zeropage *)__PAGE_OFFSET) +#define PAGE0 ((struct zeropage *)absolute_pointer(__PAGE_OFFSET)) /* DEFINITION OF THE ZERO-PAGE (PAG0) */ /* based on work by Jason Eckhardt (jason@equator.com) */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/include/asm/string.h +++ linux-azure-5.4.0/arch/parisc/include/asm/string.h @@ -8,19 +8,4 @@ #define __HAVE_ARCH_MEMCPY void * memcpy(void * dest,const void *src,size_t count); -#define __HAVE_ARCH_STRLEN -extern size_t strlen(const char *s); - -#define __HAVE_ARCH_STRCPY -extern char *strcpy(char *dest, const char *src); - -#define __HAVE_ARCH_STRNCPY -extern char *strncpy(char *dest, const char *src, size_t count); - -#define __HAVE_ARCH_STRCAT -extern char *strcat(char *dest, const char *src); - -#define __HAVE_ARCH_MEMSET -extern void *memset(void *, int, size_t); - #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/include/asm/timex.h +++ linux-azure-5.4.0/arch/parisc/include/asm/timex.h @@ -12,9 +12,10 @@ typedef unsigned long cycles_t; -static inline cycles_t get_cycles (void) +static inline cycles_t get_cycles(void) { return mfctl(16); } +#define get_cycles get_cycles #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/install.sh +++ linux-azure-5.4.0/arch/parisc/install.sh @@ -39,6 +39,7 @@ if [ -n "${INSTALLKERNEL}" ]; then if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi + if [ -x /usr/sbin/${INSTALLKERNEL} ]; then exec /usr/sbin/${INSTALLKERNEL} "$@"; fi fi # Default install only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/head.S +++ linux-azure-5.4.0/arch/parisc/kernel/head.S @@ -22,7 +22,7 @@ #include #include - .level PA_ASM_LEVEL + .level 1.1 __INITDATA ENTRY(boot_args) @@ -69,6 +69,47 @@ stw,ma %arg2,4(%r1) stw,ma %arg3,4(%r1) +#if !defined(CONFIG_64BIT) && defined(CONFIG_PA20) + /* This 32-bit kernel was compiled for PA2.0 CPUs. Check current CPU + * and halt kernel if we detect a PA1.x CPU. */ + ldi 32,%r10 + mtctl %r10,%cr11 + .level 2.0 + mfctl,w %cr11,%r10 + .level 1.1 + comib,<>,n 0,%r10,$cpu_ok + + load32 PA(msg1),%arg0 + ldi msg1_end-msg1,%arg1 +$iodc_panic: + copy %arg0, %r10 + copy %arg1, %r11 + load32 PA(init_stack),%sp +#define MEM_CONS 0x3A0 + ldw MEM_CONS+32(%r0),%arg0 // HPA + ldi ENTRY_IO_COUT,%arg1 + ldw MEM_CONS+36(%r0),%arg2 // SPA + ldw MEM_CONS+8(%r0),%arg3 // layers + load32 PA(__bss_start),%r1 + stw %r1,-52(%sp) // arg4 + stw %r0,-56(%sp) // arg5 + stw %r10,-60(%sp) // arg6 = ptr to text + stw %r11,-64(%sp) // arg7 = len + stw %r0,-68(%sp) // arg8 + load32 PA(.iodc_panic_ret), %rp + ldw MEM_CONS+40(%r0),%r1 // ENTRY_IODC + bv,n (%r1) +.iodc_panic_ret: + b . /* wait endless with ... */ + or %r10,%r10,%r10 /* qemu idle sleep */ +msg1: .ascii "Can't boot kernel which was built for PA8x00 CPUs on this machine.\r\n" +msg1_end: + +$cpu_ok: +#endif + + .level PA_ASM_LEVEL + /* Initialize startup VM. Just map first 16/32 MB of memory */ load32 PA(swapper_pg_dir),%r4 mtctl %r4,%cr24 /* Initialize kernel root pointer */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/module.c +++ linux-azure-5.4.0/arch/parisc/kernel/module.c @@ -43,6 +43,7 @@ #include #include #include +#include #include #include #include @@ -862,7 +863,7 @@ const char *strtab = NULL; const Elf_Shdr *s; char *secstrings; - int err, symindex = -1; + int symindex = -1; Elf_Sym *newptr, *oldptr; Elf_Shdr *symhdr = NULL; #ifdef DEBUG @@ -946,11 +947,13 @@ /* patch .altinstructions */ apply_alternatives(aseg, aseg + s->sh_size, me->name); +#ifdef CONFIG_DYNAMIC_FTRACE /* For 32 bit kernels we're compiling modules with * -ffunction-sections so we must relocate the addresses in the - *__mcount_loc section. + * ftrace callsite section. */ - if (symindex != -1 && !strcmp(secname, "__mcount_loc")) { + if (symindex != -1 && !strcmp(secname, FTRACE_CALLSITE_SECTION)) { + int err; if (s->sh_type == SHT_REL) err = apply_relocate((Elf_Shdr *)sechdrs, strtab, symindex, @@ -962,6 +965,7 @@ if (err) return err; } +#endif } return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/parisc_ksyms.c +++ linux-azure-5.4.0/arch/parisc/kernel/parisc_ksyms.c @@ -17,10 +17,6 @@ #include EXPORT_SYMBOL(memset); -EXPORT_SYMBOL(strlen); -EXPORT_SYMBOL(strcpy); -EXPORT_SYMBOL(strncpy); -EXPORT_SYMBOL(strcat); #include EXPORT_SYMBOL(__xchg8); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/patch.c +++ linux-azure-5.4.0/arch/parisc/kernel/patch.c @@ -40,10 +40,7 @@ *need_unmap = 1; set_fixmap(fixmap, page_to_phys(page)); - if (flags) - raw_spin_lock_irqsave(&patch_lock, *flags); - else - __acquire(&patch_lock); + raw_spin_lock_irqsave(&patch_lock, *flags); return (void *) (__fix_to_virt(fixmap) + (uintaddr & ~PAGE_MASK)); } @@ -52,10 +49,7 @@ { clear_fixmap(fixmap); - if (flags) - raw_spin_unlock_irqrestore(&patch_lock, *flags); - else - __release(&patch_lock); + raw_spin_unlock_irqrestore(&patch_lock, *flags); } void __kprobes __patch_text_multiple(void *addr, u32 *insn, unsigned int len) @@ -67,8 +61,9 @@ int mapped; /* Make sure we don't have any aliases in cache */ - flush_kernel_vmap_range(addr, len); - flush_icache_range(start, end); + flush_kernel_dcache_range_asm(start, end); + flush_kernel_icache_range_asm(start, end); + flush_tlb_kernel_range(start, end); p = fixmap = patch_map(addr, FIX_TEXT_POKE0, &flags, &mapped); @@ -81,8 +76,10 @@ * We're crossing a page boundary, so * need to remap */ - flush_kernel_vmap_range((void *)fixmap, - (p-fixmap) * sizeof(*p)); + flush_kernel_dcache_range_asm((unsigned long)fixmap, + (unsigned long)p); + flush_tlb_kernel_range((unsigned long)fixmap, + (unsigned long)p); if (mapped) patch_unmap(FIX_TEXT_POKE0, &flags); p = fixmap = patch_map(addr, FIX_TEXT_POKE0, &flags, @@ -90,10 +87,10 @@ } } - flush_kernel_vmap_range((void *)fixmap, (p-fixmap) * sizeof(*p)); + flush_kernel_dcache_range_asm((unsigned long)fixmap, (unsigned long)p); + flush_tlb_kernel_range((unsigned long)fixmap, (unsigned long)p); if (mapped) patch_unmap(FIX_TEXT_POKE0, &flags); - flush_icache_range(start, end); } void __kprobes __patch_text(void *addr, u32 insn) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/processor.c +++ linux-azure-5.4.0/arch/parisc/kernel/processor.c @@ -419,8 +419,7 @@ } seq_printf(m, " (0x%02lx)\n", boot_cpu_data.pdc.capabilities); - seq_printf(m, "model\t\t: %s\n" - "model name\t: %s\n", + seq_printf(m, "model\t\t: %s - %s\n", boot_cpu_data.pdc.sys_model_name, cpuinfo->dev ? cpuinfo->dev->name : "Unknown"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/signal.c +++ linux-azure-5.4.0/arch/parisc/kernel/signal.c @@ -238,6 +238,12 @@ #endif usp = (regs->gr[30] & ~(0x01UL)); +#ifdef CONFIG_64BIT + if (is_compat_task()) { + /* The gcc alloca implementation leaves garbage in the upper 32 bits of sp */ + usp = (compat_uint_t)usp; + } +#endif /*FIXME: frame_size parameter is unused, remove it. */ frame = get_sigframe(&ksig->ka, usp, sizeof(*frame)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/smp.c +++ linux-azure-5.4.0/arch/parisc/kernel/smp.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include @@ -71,7 +72,10 @@ IPI_CALL_FUNC, IPI_CPU_START, IPI_CPU_STOP, - IPI_CPU_TEST + IPI_CPU_TEST, +#ifdef CONFIG_KGDB + IPI_ENTER_KGDB, +#endif }; @@ -169,7 +173,12 @@ case IPI_CPU_TEST: smp_debug(100, KERN_DEBUG "CPU%d is alive!\n", this_cpu); break; - +#ifdef CONFIG_KGDB + case IPI_ENTER_KGDB: + smp_debug(100, KERN_DEBUG "CPU%d ENTER_KGDB\n", this_cpu); + kgdb_nmicallback(raw_smp_processor_id(), get_irq_regs()); + break; +#endif default: printk(KERN_CRIT "Unknown IPI num on CPU%d: %lu\n", this_cpu, which); @@ -225,6 +234,12 @@ } } +#ifdef CONFIG_KGDB +void kgdb_roundup_cpus(void) +{ + send_IPI_allbutself(IPI_ENTER_KGDB); +} +#endif inline void smp_send_stop(void) { send_IPI_allbutself(IPI_CPU_STOP); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/syscalls/syscall.tbl +++ linux-azure-5.4.0/arch/parisc/kernel/syscalls/syscall.tbl @@ -413,7 +413,7 @@ 412 32 utimensat_time64 sys_utimensat sys_utimensat 413 32 pselect6_time64 sys_pselect6 compat_sys_pselect6_time64 414 32 ppoll_time64 sys_ppoll compat_sys_ppoll_time64 -416 32 io_pgetevents_time64 sys_io_pgetevents sys_io_pgetevents +416 32 io_pgetevents_time64 sys_io_pgetevents compat_sys_io_pgetevents_time64 417 32 recvmmsg_time64 sys_recvmmsg compat_sys_recvmmsg_time64 418 32 mq_timedsend_time64 sys_mq_timedsend sys_mq_timedsend 419 32 mq_timedreceive_time64 sys_mq_timedreceive sys_mq_timedreceive only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/time.c +++ linux-azure-5.4.0/arch/parisc/kernel/time.c @@ -245,27 +245,13 @@ static int __init init_cr16_clocksource(void) { /* - * The cr16 interval timers are not syncronized across CPUs on - * different sockets, so mark them unstable and lower rating on - * multi-socket SMP systems. + * The cr16 interval timers are not syncronized across CPUs, even if + * they share the same socket. */ if (num_online_cpus() > 1 && !running_on_qemu) { - int cpu; - unsigned long cpu0_loc; - cpu0_loc = per_cpu(cpu_data, 0).cpu_loc; - - for_each_online_cpu(cpu) { - if (cpu == 0) - continue; - if ((cpu0_loc != 0) && - (cpu0_loc == per_cpu(cpu_data, cpu).cpu_loc)) - continue; - - clocksource_cr16.name = "cr16_unstable"; - clocksource_cr16.flags = CLOCK_SOURCE_UNSTABLE; - clocksource_cr16.rating = 0; - break; - } + clocksource_cr16.name = "cr16_unstable"; + clocksource_cr16.flags = CLOCK_SOURCE_UNSTABLE; + clocksource_cr16.rating = 0; } /* XXX: We may want to mark sched_clock stable here if cr16 clocks are only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/traps.c +++ linux-azure-5.4.0/arch/parisc/kernel/traps.c @@ -783,7 +783,7 @@ * unless pagefault_disable() was called before. */ - if (fault_space == 0 && !faulthandler_disabled()) + if (faulthandler_disabled() || fault_space == 0) { /* Clean up and return if in exception table. */ if (fixup_exception(regs)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/unaligned.c +++ linux-azure-5.4.0/arch/parisc/kernel/unaligned.c @@ -107,7 +107,7 @@ #define R1(i) (((i)>>21)&0x1f) #define R2(i) (((i)>>16)&0x1f) #define R3(i) ((i)&0x1f) -#define FR3(i) ((((i)<<1)&0x1f)|(((i)>>6)&1)) +#define FR3(i) ((((i)&0x1f)<<1)|(((i)>>6)&1)) #define IM(i,n) (((i)>>1&((1<<(n-1))-1))|((i)&1?((0-1L)<<(n-1)):0)) #define IM5_2(i) IM((i)>>16,5) #define IM5_3(i) IM((i),5) @@ -340,7 +340,7 @@ : "r" (val), "r" (regs->ior), "r" (regs->isr) : "r19", "r20", "r21", "r22", "r1", FIXUP_BRANCH_CLOBBER ); - return 0; + return ret; } static int emulate_std(struct pt_regs *regs, int frreg, int flop) { @@ -397,7 +397,7 @@ __asm__ __volatile__ ( " mtsp %4, %%sr1\n" " zdep %2, 29, 2, %%r19\n" -" dep %%r0, 31, 2, %2\n" +" dep %%r0, 31, 2, %3\n" " mtsar %%r19\n" " zvdepi -2, 32, %%r19\n" "1: ldw 0(%%sr1,%3),%%r20\n" @@ -409,7 +409,7 @@ " andcm %%r21, %%r19, %%r21\n" " or %1, %%r20, %1\n" " or %2, %%r21, %2\n" -"3: stw %1,0(%%sr1,%1)\n" +"3: stw %1,0(%%sr1,%3)\n" "4: stw %%r1,4(%%sr1,%3)\n" "5: stw %2,8(%%sr1,%3)\n" " copy %%r0, %0\n" @@ -596,7 +596,6 @@ ret = ERR_NOTHANDLED; /* "undefined", but lets kill them. */ break; } -#ifdef CONFIG_PA20 switch (regs->iir & OPCODE2_MASK) { case OPCODE_FLDD_L: @@ -607,22 +606,23 @@ flop=1; ret = emulate_std(regs, R2(regs->iir),1); break; +#ifdef CONFIG_PA20 case OPCODE_LDD_L: ret = emulate_ldd(regs, R2(regs->iir),0); break; case OPCODE_STD_L: ret = emulate_std(regs, R2(regs->iir),0); break; - } #endif + } switch (regs->iir & OPCODE3_MASK) { case OPCODE_FLDW_L: flop=1; - ret = emulate_ldw(regs, R2(regs->iir),0); + ret = emulate_ldw(regs, R2(regs->iir), 1); break; case OPCODE_LDW_M: - ret = emulate_ldw(regs, R2(regs->iir),1); + ret = emulate_ldw(regs, R2(regs->iir), 0); break; case OPCODE_FSTW_L: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/kernel/unwind.c +++ linux-azure-5.4.0/arch/parisc/kernel/unwind.c @@ -21,6 +21,8 @@ #include #include +#include +#include /* #define DEBUG 1 */ #ifdef DEBUG @@ -203,6 +205,11 @@ return 0; } +static bool pc_is_kernel_fn(unsigned long pc, void *fn) +{ + return (unsigned long)dereference_kernel_function_descriptor(fn) == pc; +} + static int unwind_special(struct unwind_frame_info *info, unsigned long pc, int frame_size) { /* @@ -221,7 +228,7 @@ extern void * const _call_on_stack; #endif /* CONFIG_IRQSTACKS */ - if (pc == (unsigned long) &handle_interruption) { + if (pc_is_kernel_fn(pc, handle_interruption)) { struct pt_regs *regs = (struct pt_regs *)(info->sp - frame_size - PT_SZ_ALGN); dbg("Unwinding through handle_interruption()\n"); info->prev_sp = regs->gr[30]; @@ -229,13 +236,13 @@ return 1; } - if (pc == (unsigned long) &ret_from_kernel_thread || - pc == (unsigned long) &syscall_exit) { + if (pc_is_kernel_fn(pc, ret_from_kernel_thread) || + pc_is_kernel_fn(pc, syscall_exit)) { info->prev_sp = info->prev_ip = 0; return 1; } - if (pc == (unsigned long) &intr_return) { + if (pc_is_kernel_fn(pc, intr_return)) { struct pt_regs *regs; dbg("Found intr_return()\n"); @@ -246,20 +253,20 @@ return 1; } - if (pc == (unsigned long) &_switch_to_ret) { + if (pc_is_kernel_fn(pc, _switch_to) || + pc_is_kernel_fn(pc, _switch_to_ret)) { info->prev_sp = info->sp - CALLEE_SAVE_FRAME_SIZE; info->prev_ip = *(unsigned long *)(info->prev_sp - RP_OFFSET); return 1; } #ifdef CONFIG_IRQSTACKS - if (pc == (unsigned long) &_call_on_stack) { + if (pc_is_kernel_fn(pc, _call_on_stack)) { info->prev_sp = *(unsigned long *)(info->sp - FRAME_SIZE - REG_SZ); info->prev_ip = *(unsigned long *)(info->sp - FRAME_SIZE - RP_OFFSET); return 1; } #endif - return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/lib/Makefile +++ linux-azure-5.4.0/arch/parisc/lib/Makefile @@ -3,7 +3,7 @@ # Makefile for parisc-specific library files # -lib-y := lusercopy.o bitops.o checksum.o io.o memcpy.o \ - ucmpdi2.o delay.o string.o +lib-y := lusercopy.o bitops.o checksum.o io.o memset.o memcpy.o \ + ucmpdi2.o delay.o obj-y := iomap.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/lib/memset.c +++ linux-azure-5.4.0/arch/parisc/lib/memset.c @@ -0,0 +1,72 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +#include +#include + +#define OPSIZ (BITS_PER_LONG/8) +typedef unsigned long op_t; + +void * +memset (void *dstpp, int sc, size_t len) +{ + unsigned int c = sc; + long int dstp = (long int) dstpp; + + if (len >= 8) + { + size_t xlen; + op_t cccc; + + cccc = (unsigned char) c; + cccc |= cccc << 8; + cccc |= cccc << 16; + if (OPSIZ > 4) + /* Do the shift in two steps to avoid warning if long has 32 bits. */ + cccc |= (cccc << 16) << 16; + + /* There are at least some bytes to set. + No need to test for LEN == 0 in this alignment loop. */ + while (dstp % OPSIZ != 0) + { + ((unsigned char *) dstp)[0] = c; + dstp += 1; + len -= 1; + } + + /* Write 8 `op_t' per iteration until less than 8 `op_t' remain. */ + xlen = len / (OPSIZ * 8); + while (xlen > 0) + { + ((op_t *) dstp)[0] = cccc; + ((op_t *) dstp)[1] = cccc; + ((op_t *) dstp)[2] = cccc; + ((op_t *) dstp)[3] = cccc; + ((op_t *) dstp)[4] = cccc; + ((op_t *) dstp)[5] = cccc; + ((op_t *) dstp)[6] = cccc; + ((op_t *) dstp)[7] = cccc; + dstp += 8 * OPSIZ; + xlen -= 1; + } + len %= OPSIZ * 8; + + /* Write 1 `op_t' per iteration until less than OPSIZ bytes remain. */ + xlen = len / OPSIZ; + while (xlen > 0) + { + ((op_t *) dstp)[0] = cccc; + dstp += OPSIZ; + xlen -= 1; + } + len %= OPSIZ; + } + + /* Write the last few bytes. */ + while (len > 0) + { + ((unsigned char *) dstp)[0] = c; + dstp += 1; + len -= 1; + } + + return dstpp; +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/math-emu/fpudispatch.c +++ linux-azure-5.4.0/arch/parisc/math-emu/fpudispatch.c @@ -310,12 +310,15 @@ r1 &= ~3; fpregs[t+3] = fpregs[r1+3]; fpregs[t+2] = fpregs[r1+2]; + fallthrough; case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ fpregs[t] = fpregs[r1]; return(NOEXCEPTION); } + BUG(); case 3: /* FABS */ switch (fmt) { case 2: /* illegal */ @@ -325,13 +328,16 @@ r1 &= ~3; fpregs[t+3] = fpregs[r1+3]; fpregs[t+2] = fpregs[r1+2]; + fallthrough; case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ /* copy and clear sign bit */ fpregs[t] = fpregs[r1] & 0x7fffffff; return(NOEXCEPTION); } + BUG(); case 6: /* FNEG */ switch (fmt) { case 2: /* illegal */ @@ -341,13 +347,16 @@ r1 &= ~3; fpregs[t+3] = fpregs[r1+3]; fpregs[t+2] = fpregs[r1+2]; + fallthrough; case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ /* copy and invert sign bit */ fpregs[t] = fpregs[r1] ^ 0x80000000; return(NOEXCEPTION); } + BUG(); case 7: /* FNEGABS */ switch (fmt) { case 2: /* illegal */ @@ -357,13 +366,16 @@ r1 &= ~3; fpregs[t+3] = fpregs[r1+3]; fpregs[t+2] = fpregs[r1+2]; + fallthrough; case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ /* copy and set sign bit */ fpregs[t] = fpregs[r1] | 0x80000000; return(NOEXCEPTION); } + BUG(); case 4: /* FSQRT */ switch (fmt) { case 0: @@ -376,6 +388,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 5: /* FRND */ switch (fmt) { case 0: @@ -389,7 +402,7 @@ return(MAJOR_0C_EXCP); } } /* end of switch (subop) */ - + BUG(); case 1: /* class 1 */ df = extru(ir,fpdfpos,2); /* get dest format */ if ((df & 2) || (fmt & 2)) { @@ -419,6 +432,7 @@ case 3: /* dbl/dbl */ return(MAJOR_0C_EXCP); } + BUG(); case 1: /* FCNVXF */ switch(fmt) { case 0: /* sgl/sgl */ @@ -434,6 +448,7 @@ return(dbl_to_dbl_fcnvxf(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 2: /* FCNVFX */ switch(fmt) { case 0: /* sgl/sgl */ @@ -449,6 +464,7 @@ return(dbl_to_dbl_fcnvfx(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 3: /* FCNVFXT */ switch(fmt) { case 0: /* sgl/sgl */ @@ -464,6 +480,7 @@ return(dbl_to_dbl_fcnvfxt(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 5: /* FCNVUF (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -479,6 +496,7 @@ return(dbl_to_dbl_fcnvuf(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 6: /* FCNVFU (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -494,6 +512,7 @@ return(dbl_to_dbl_fcnvfu(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 7: /* FCNVFUT (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -509,10 +528,11 @@ return(dbl_to_dbl_fcnvfut(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 4: /* undefined */ return(MAJOR_0C_EXCP); } /* end of switch subop */ - + BUG(); case 2: /* class 2 */ fpu_type_flags=fpregs[FPU_TYPE_FLAG_POS]; r2 = extru(ir, fpr2pos, 5) * sizeof(double)/sizeof(u_int); @@ -590,6 +610,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 1: /* FTEST */ switch (fmt) { case 0: @@ -609,8 +630,10 @@ case 3: return(MAJOR_0C_EXCP); } + BUG(); } /* end of switch subop */ } /* end of else for PA1.0 & PA1.1 */ + BUG(); case 3: /* class 3 */ r2 = extru(ir,fpr2pos,5) * sizeof(double)/sizeof(u_int); if (r2 == 0) @@ -633,6 +656,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 1: /* FSUB */ switch (fmt) { case 0: @@ -645,6 +669,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 2: /* FMPY */ switch (fmt) { case 0: @@ -657,6 +682,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 3: /* FDIV */ switch (fmt) { case 0: @@ -669,6 +695,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); case 4: /* FREM */ switch (fmt) { case 0: @@ -681,6 +708,7 @@ case 3: /* quad not implemented */ return(MAJOR_0C_EXCP); } + BUG(); } /* end of class 3 switch */ } /* end of switch(class) */ @@ -736,10 +764,12 @@ return(MAJOR_0E_EXCP); case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ fpregs[t] = fpregs[r1]; return(NOEXCEPTION); } + BUG(); case 3: /* FABS */ switch (fmt) { case 2: @@ -747,10 +777,12 @@ return(MAJOR_0E_EXCP); case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ fpregs[t] = fpregs[r1] & 0x7fffffff; return(NOEXCEPTION); } + BUG(); case 6: /* FNEG */ switch (fmt) { case 2: @@ -758,10 +790,12 @@ return(MAJOR_0E_EXCP); case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ fpregs[t] = fpregs[r1] ^ 0x80000000; return(NOEXCEPTION); } + BUG(); case 7: /* FNEGABS */ switch (fmt) { case 2: @@ -769,10 +803,12 @@ return(MAJOR_0E_EXCP); case 1: /* double */ fpregs[t+1] = fpregs[r1+1]; + fallthrough; case 0: /* single */ fpregs[t] = fpregs[r1] | 0x80000000; return(NOEXCEPTION); } + BUG(); case 4: /* FSQRT */ switch (fmt) { case 0: @@ -785,6 +821,7 @@ case 3: return(MAJOR_0E_EXCP); } + BUG(); case 5: /* FRMD */ switch (fmt) { case 0: @@ -798,7 +835,7 @@ return(MAJOR_0E_EXCP); } } /* end of switch (subop */ - + BUG(); case 1: /* class 1 */ df = extru(ir,fpdfpos,2); /* get dest format */ /* @@ -826,6 +863,7 @@ case 3: /* dbl/dbl */ return(MAJOR_0E_EXCP); } + BUG(); case 1: /* FCNVXF */ switch(fmt) { case 0: /* sgl/sgl */ @@ -841,6 +879,7 @@ return(dbl_to_dbl_fcnvxf(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 2: /* FCNVFX */ switch(fmt) { case 0: /* sgl/sgl */ @@ -856,6 +895,7 @@ return(dbl_to_dbl_fcnvfx(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 3: /* FCNVFXT */ switch(fmt) { case 0: /* sgl/sgl */ @@ -871,6 +911,7 @@ return(dbl_to_dbl_fcnvfxt(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 5: /* FCNVUF (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -886,6 +927,7 @@ return(dbl_to_dbl_fcnvuf(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 6: /* FCNVFU (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -901,6 +943,7 @@ return(dbl_to_dbl_fcnvfu(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 7: /* FCNVFUT (PA2.0 only) */ switch(fmt) { case 0: /* sgl/sgl */ @@ -916,9 +959,11 @@ return(dbl_to_dbl_fcnvfut(&fpregs[r1],0, &fpregs[t],status)); } + BUG(); case 4: /* undefined */ return(MAJOR_0C_EXCP); } /* end of switch subop */ + BUG(); case 2: /* class 2 */ /* * Be careful out there. @@ -994,6 +1039,7 @@ } } /* end of switch subop */ } /* end of else for PA1.0 & PA1.1 */ + BUG(); case 3: /* class 3 */ /* * Be careful out there. @@ -1026,6 +1072,7 @@ return(dbl_fadd(&fpregs[r1],&fpregs[r2], &fpregs[t],status)); } + BUG(); case 1: /* FSUB */ switch (fmt) { case 0: @@ -1035,6 +1082,7 @@ return(dbl_fsub(&fpregs[r1],&fpregs[r2], &fpregs[t],status)); } + BUG(); case 2: /* FMPY or XMPYU */ /* * check for integer multiply (x bit set) @@ -1071,6 +1119,7 @@ &fpregs[r2],&fpregs[t],status)); } } + BUG(); case 3: /* FDIV */ switch (fmt) { case 0: @@ -1080,6 +1129,7 @@ return(dbl_fdiv(&fpregs[r1],&fpregs[r2], &fpregs[t],status)); } + BUG(); case 4: /* FREM */ switch (fmt) { case 0: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/parisc/mm/fixmap.c +++ linux-azure-5.4.0/arch/parisc/mm/fixmap.c @@ -18,12 +18,9 @@ pte_t *pte; if (pmd_none(*pmd)) - pmd = pmd_alloc(NULL, pgd, vaddr); - - pte = pte_offset_kernel(pmd, vaddr); - if (pte_none(*pte)) pte = pte_alloc_kernel(pmd, vaddr); + pte = pte_offset_kernel(pmd, vaddr); set_pte_at(&init_mm, vaddr, pte, __mk_pte(phys, PAGE_KERNEL_RWX)); flush_tlb_kernel_range(vaddr, vaddr + PAGE_SIZE); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/crt0.S +++ linux-azure-5.4.0/arch/powerpc/boot/crt0.S @@ -44,9 +44,6 @@ p_pstack: .long _platform_stack_top #endif - .globl _zimage_start - /* Clang appears to require the .weak directive to be after the symbol - * is defined. See https://bugs.llvm.org/show_bug.cgi?id=38921 */ .weak _zimage_start _zimage_start: .globl _zimage_start_lib only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/devtree.c +++ linux-azure-5.4.0/arch/powerpc/boot/devtree.c @@ -13,6 +13,7 @@ #include "string.h" #include "stdio.h" #include "ops.h" +#include "of.h" void dt_fixup_memory(u64 start, u64 size) { @@ -23,21 +24,25 @@ root = finddevice("/"); if (getprop(root, "#address-cells", &naddr, sizeof(naddr)) < 0) naddr = 2; + else + naddr = be32_to_cpu(naddr); if (naddr < 1 || naddr > 2) fatal("Can't cope with #address-cells == %d in /\n\r", naddr); if (getprop(root, "#size-cells", &nsize, sizeof(nsize)) < 0) nsize = 1; + else + nsize = be32_to_cpu(nsize); if (nsize < 1 || nsize > 2) fatal("Can't cope with #size-cells == %d in /\n\r", nsize); i = 0; if (naddr == 2) - memreg[i++] = start >> 32; - memreg[i++] = start & 0xffffffff; + memreg[i++] = cpu_to_be32(start >> 32); + memreg[i++] = cpu_to_be32(start & 0xffffffff); if (nsize == 2) - memreg[i++] = size >> 32; - memreg[i++] = size & 0xffffffff; + memreg[i++] = cpu_to_be32(size >> 32); + memreg[i++] = cpu_to_be32(size & 0xffffffff); memory = finddevice("/memory"); if (! memory) { @@ -45,9 +50,9 @@ setprop_str(memory, "device_type", "memory"); } - printf("Memory <- <0x%x", memreg[0]); + printf("Memory <- <0x%x", be32_to_cpu(memreg[0])); for (i = 1; i < (naddr + nsize); i++) - printf(" 0x%x", memreg[i]); + printf(" 0x%x", be32_to_cpu(memreg[i])); printf("> (%ldMB)\n\r", (unsigned long)(size >> 20)); setprop(memory, "reg", memreg, (naddr + nsize)*sizeof(u32)); @@ -65,10 +70,10 @@ printf("CPU bus-frequency <- 0x%x (%dMHz)\n\r", bus, MHZ(bus)); while ((devp = find_node_by_devtype(devp, "cpu"))) { - setprop_val(devp, "clock-frequency", cpu); - setprop_val(devp, "timebase-frequency", tb); + setprop_val(devp, "clock-frequency", cpu_to_be32(cpu)); + setprop_val(devp, "timebase-frequency", cpu_to_be32(tb)); if (bus > 0) - setprop_val(devp, "bus-frequency", bus); + setprop_val(devp, "bus-frequency", cpu_to_be32(bus)); } timebase_period_ns = 1000000000 / tb; @@ -80,7 +85,7 @@ if (devp) { printf("%s: clock-frequency <- %x (%dMHz)\n\r", path, freq, MHZ(freq)); - setprop_val(devp, "clock-frequency", freq); + setprop_val(devp, "clock-frequency", cpu_to_be32(freq)); } } @@ -133,8 +138,12 @@ { if (getprop(node, "#address-cells", naddr, 4) != 4) *naddr = 2; + else + *naddr = be32_to_cpu(*naddr); if (getprop(node, "#size-cells", nsize, 4) != 4) *nsize = 1; + else + *nsize = be32_to_cpu(*nsize); } static void copy_val(u32 *dest, u32 *src, int naddr) @@ -163,9 +172,9 @@ int i, carry = 0; for (i = MAX_ADDR_CELLS - 1; i >= MAX_ADDR_CELLS - naddr; i--) { - u64 tmp = (u64)reg[i] + add[i] + carry; + u64 tmp = (u64)be32_to_cpu(reg[i]) + be32_to_cpu(add[i]) + carry; carry = tmp >> 32; - reg[i] = (u32)tmp; + reg[i] = cpu_to_be32((u32)tmp); } return !carry; @@ -180,18 +189,18 @@ u32 end; for (i = 0; i < MAX_ADDR_CELLS; i++) { - if (reg[i] < range[i]) + if (be32_to_cpu(reg[i]) < be32_to_cpu(range[i])) return 0; - if (reg[i] > range[i]) + if (be32_to_cpu(reg[i]) > be32_to_cpu(range[i])) break; } for (i = 0; i < MAX_ADDR_CELLS; i++) { - end = range[i] + rangesize[i]; + end = be32_to_cpu(range[i]) + be32_to_cpu(rangesize[i]); - if (reg[i] < end) + if (be32_to_cpu(reg[i]) < end) break; - if (reg[i] > end) + if (be32_to_cpu(reg[i]) > end) return 0; } @@ -240,7 +249,6 @@ return 0; dt_get_reg_format(parent, &naddr, &nsize); - if (nsize > 2) return 0; @@ -252,10 +260,10 @@ copy_val(last_addr, prop_buf + offset, naddr); - ret_size = prop_buf[offset + naddr]; + ret_size = be32_to_cpu(prop_buf[offset + naddr]); if (nsize == 2) { ret_size <<= 32; - ret_size |= prop_buf[offset + naddr + 1]; + ret_size |= be32_to_cpu(prop_buf[offset + naddr + 1]); } for (;;) { @@ -278,7 +286,6 @@ offset = find_range(last_addr, prop_buf, prev_naddr, naddr, prev_nsize, buflen / 4); - if (offset < 0) return 0; @@ -296,8 +303,7 @@ if (naddr > 2) return 0; - ret_addr = ((u64)last_addr[2] << 32) | last_addr[3]; - + ret_addr = ((u64)be32_to_cpu(last_addr[2]) << 32) | be32_to_cpu(last_addr[3]); if (sizeof(void *) == 4 && (ret_addr >= 0x100000000ULL || ret_size > 0x100000000ULL || ret_addr + ret_size > 0x100000000ULL)) @@ -350,11 +356,14 @@ int dt_get_virtual_reg(void *node, void **addr, int nres) { unsigned long xaddr; - int n; + int n, i; n = getprop(node, "virtual-reg", addr, nres * 4); - if (n > 0) + if (n > 0) { + for (i = 0; i < n/4; i ++) + ((u32 *)addr)[i] = be32_to_cpu(((u32 *)addr)[i]); return n / 4; + } for (n = 0; n < nres; n++) { if (!dt_xlate_reg(node, n, &xaddr, NULL)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/charon.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/charon.dts @@ -35,7 +35,7 @@ }; }; - memory { + memory@0 { device_type = "memory"; reg = <0x00000000 0x08000000>; // 128MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/digsy_mtc.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/digsy_mtc.dts @@ -16,7 +16,7 @@ model = "intercontrol,digsy-mtc"; compatible = "intercontrol,digsy-mtc"; - memory { + memory@0 { reg = <0x00000000 0x02000000>; // 32MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/e500v1_power_isa.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/e500v1_power_isa.dtsi @@ -0,0 +1,51 @@ +/* + * e500v1 Power ISA Device Tree Source (include) + * + * Copyright 2012 Freescale Semiconductor Inc. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Freescale Semiconductor nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * + * ALTERNATIVELY, this software may be distributed under the terms of the + * GNU General Public License ("GPL") as published by the Free Software + * Foundation, either version 2 of that License or (at your option) any + * later version. + * + * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor "AS IS" AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/ { + cpus { + power-isa-version = "2.03"; + power-isa-b; // Base + power-isa-e; // Embedded + power-isa-atb; // Alternate Time Base + power-isa-cs; // Cache Specification + power-isa-e.le; // Embedded.Little-Endian + power-isa-e.pm; // Embedded.Performance Monitor + power-isa-ecl; // Embedded Cache Locking + power-isa-mmc; // Memory Coherence + power-isa-sp; // Signal Processing Engine + power-isa-sp.fs; // SPE.Embedded Float Scalar Single + power-isa-sp.fv; // SPE.Embedded Float Vector + mmu-type = "power-embedded"; + }; +}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/mpc8540ads.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/mpc8540ads.dts @@ -7,7 +7,7 @@ /dts-v1/; -/include/ "e500v2_power_isa.dtsi" +/include/ "e500v1_power_isa.dtsi" / { model = "MPC8540ADS"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/mpc8541cds.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/mpc8541cds.dts @@ -7,7 +7,7 @@ /dts-v1/; -/include/ "e500v2_power_isa.dtsi" +/include/ "e500v1_power_isa.dtsi" / { model = "MPC8541CDS"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/mpc8555cds.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/mpc8555cds.dts @@ -7,7 +7,7 @@ /dts-v1/; -/include/ "e500v2_power_isa.dtsi" +/include/ "e500v1_power_isa.dtsi" / { model = "MPC8555CDS"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/mpc8560ads.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/mpc8560ads.dts @@ -7,7 +7,7 @@ /dts-v1/; -/include/ "e500v2_power_isa.dtsi" +/include/ "e500v1_power_isa.dtsi" / { model = "MPC8560ADS"; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/p1010si-post.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/p1010si-post.dtsi @@ -122,7 +122,15 @@ }; /include/ "pq3-i2c-0.dtsi" + i2c@3000 { + fsl,i2c-erratum-a004447; + }; + /include/ "pq3-i2c-1.dtsi" + i2c@3100 { + fsl,i2c-erratum-a004447; + }; + /include/ "pq3-duart-0.dtsi" /include/ "pq3-espi-0.dtsi" spi0: spi@7000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/p2041si-post.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/p2041si-post.dtsi @@ -371,7 +371,23 @@ }; /include/ "qoriq-i2c-0.dtsi" + i2c@118000 { + fsl,i2c-erratum-a004447; + }; + + i2c@118100 { + fsl,i2c-erratum-a004447; + }; + /include/ "qoriq-i2c-1.dtsi" + i2c@119000 { + fsl,i2c-erratum-a004447; + }; + + i2c@119100 { + fsl,i2c-erratum-a004447; + }; + /include/ "qoriq-duart-0.dtsi" /include/ "qoriq-duart-1.dtsi" /include/ "qoriq-gpio-0.dtsi" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/qoriq-fman3l-0.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/qoriq-fman3l-0.dtsi @@ -79,6 +79,7 @@ #size-cells = <0>; compatible = "fsl,fman-memac-mdio", "fsl,fman-xmdio"; reg = <0xfc000 0x1000>; + fsl,erratum-a009885; }; xmdio0: mdio@fd000 { @@ -86,6 +87,7 @@ #size-cells = <0>; compatible = "fsl,fman-memac-mdio", "fsl,fman-xmdio"; reg = <0xfd000 0x1000>; + fsl,erratum-a009885; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/t1023rdb.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/t1023rdb.dts @@ -154,7 +154,7 @@ fm1mac3: ethernet@e4000 { phy-handle = <&sgmii_aqr_phy3>; - phy-connection-type = "sgmii-2500"; + phy-connection-type = "2500base-x"; sleep = <&rcpm 0x20000000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/fsl/t104xrdb.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/fsl/t104xrdb.dtsi @@ -139,12 +139,12 @@ fman@400000 { ethernet@e6000 { phy-handle = <&phy_rgmii_0>; - phy-connection-type = "rgmii"; + phy-connection-type = "rgmii-id"; }; ethernet@e8000 { phy-handle = <&phy_rgmii_1>; - phy-connection-type = "rgmii"; + phy-connection-type = "rgmii-id"; }; mdio0: mdio@fc000 { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/lite5200.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/lite5200.dts @@ -32,7 +32,7 @@ }; }; - memory { + memory@0 { device_type = "memory"; reg = <0x00000000 0x04000000>; // 64MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/lite5200b.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/lite5200b.dts @@ -31,7 +31,7 @@ led4 { gpios = <&gpio_simple 2 1>; }; }; - memory { + memory@0 { reg = <0x00000000 0x10000000>; // 256MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/media5200.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/media5200.dts @@ -32,7 +32,7 @@ }; }; - memory { + memory@0 { reg = <0x00000000 0x08000000>; // 128MB RAM }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/mpc5200b.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/mpc5200b.dtsi @@ -33,7 +33,7 @@ }; }; - memory: memory { + memory: memory@0 { device_type = "memory"; reg = <0x00000000 0x04000000>; // 64MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/o2d.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/o2d.dts @@ -12,7 +12,7 @@ model = "ifm,o2d"; compatible = "ifm,o2d"; - memory { + memory@0 { reg = <0x00000000 0x08000000>; // 128MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/o2d.dtsi +++ linux-azure-5.4.0/arch/powerpc/boot/dts/o2d.dtsi @@ -19,7 +19,7 @@ model = "ifm,o2d"; compatible = "ifm,o2d"; - memory { + memory@0 { reg = <0x00000000 0x04000000>; // 64MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/o2dnt2.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/o2dnt2.dts @@ -12,7 +12,7 @@ model = "ifm,o2dnt2"; compatible = "ifm,o2d"; - memory { + memory@0 { reg = <0x00000000 0x08000000>; // 128MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/o3dnt.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/o3dnt.dts @@ -12,7 +12,7 @@ model = "ifm,o3dnt"; compatible = "ifm,o2d"; - memory { + memory@0 { reg = <0x00000000 0x04000000>; // 64MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/pcm032.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/pcm032.dts @@ -22,7 +22,7 @@ model = "phytec,pcm032"; compatible = "phytec,pcm032"; - memory { + memory@0 { reg = <0x00000000 0x08000000>; // 128MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/dts/tqm5200.dts +++ linux-azure-5.4.0/arch/powerpc/boot/dts/tqm5200.dts @@ -32,7 +32,7 @@ }; }; - memory { + memory@0 { device_type = "memory"; reg = <0x00000000 0x04000000>; // 64MB }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/boot/ns16550.c +++ linux-azure-5.4.0/arch/powerpc/boot/ns16550.c @@ -15,6 +15,7 @@ #include "stdio.h" #include "io.h" #include "ops.h" +#include "of.h" #define UART_DLL 0 /* Out: Divisor Latch Low */ #define UART_DLM 1 /* Out: Divisor Latch High */ @@ -58,16 +59,20 @@ int n; u32 reg_offset; - if (dt_get_virtual_reg(devp, (void **)®_base, 1) < 1) + if (dt_get_virtual_reg(devp, (void **)®_base, 1) < 1) { + printf("virt reg parse fail...\r\n"); return -1; + } n = getprop(devp, "reg-offset", ®_offset, sizeof(reg_offset)); if (n == sizeof(reg_offset)) - reg_base += reg_offset; + reg_base += be32_to_cpu(reg_offset); n = getprop(devp, "reg-shift", ®_shift, sizeof(reg_shift)); if (n != sizeof(reg_shift)) reg_shift = 0; + else + reg_shift = be32_to_cpu(reg_shift); scdp->open = ns16550_open; scdp->putc = ns16550_putc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/configs/mpc885_ads_defconfig +++ linux-azure-5.4.0/arch/powerpc/configs/mpc885_ads_defconfig @@ -39,6 +39,7 @@ # CONFIG_MTD_CFI_I2 is not set CONFIG_MTD_CFI_I4=y CONFIG_MTD_CFI_AMDSTD=y +CONFIG_MTD_PHYSMAP=y CONFIG_MTD_PHYSMAP_OF=y # CONFIG_BLK_DEV is not set CONFIG_NETDEVICES=y only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/barrier.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/barrier.h @@ -44,6 +44,8 @@ # define SMPWMB eieio #endif +/* clang defines this macro for a builtin, which will not work with runtime patching */ +#undef __lwsync #define __lwsync() __asm__ __volatile__ (stringify_in_c(LWSYNC) : : :"memory") #define dma_rmb() __lwsync() #define dma_wmb() __asm__ __volatile__ (stringify_in_c(SMPWMB) : : :"memory") only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/bpf_perf_event.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/bpf_perf_event.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _ASM_POWERPC_BPF_PERF_EVENT_H +#define _ASM_POWERPC_BPF_PERF_EVENT_H + +#include + +typedef struct user_pt_regs bpf_user_pt_regs_t; + +#endif /* _ASM_POWERPC_BPF_PERF_EVENT_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/ftrace.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/ftrace.h @@ -96,7 +96,7 @@ #endif /* PPC64_ELF_ABI_v1 */ #endif /* CONFIG_FTRACE_SYSCALLS */ -#ifdef CONFIG_PPC64 +#if defined(CONFIG_PPC64) && defined(CONFIG_FUNCTION_TRACER) #include static inline void this_cpu_disable_ftrace(void) @@ -108,9 +108,12 @@ { get_paca()->ftrace_enabled = 1; } + +void ftrace_free_init_tramp(void); #else /* CONFIG_PPC64 */ static inline void this_cpu_disable_ftrace(void) { } static inline void this_cpu_enable_ftrace(void) { } +static inline void ftrace_free_init_tramp(void) { } #endif /* CONFIG_PPC64 */ #endif /* !__ASSEMBLY__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/io.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/io.h @@ -345,25 +345,37 @@ */ static inline void __raw_rm_writeb(u8 val, volatile void __iomem *paddr) { - __asm__ __volatile__("stbcix %0,0,%1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + stbcix %0,0,%1; \ + .machine pop;" : : "r" (val), "r" (paddr) : "memory"); } static inline void __raw_rm_writew(u16 val, volatile void __iomem *paddr) { - __asm__ __volatile__("sthcix %0,0,%1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + sthcix %0,0,%1; \ + .machine pop;" : : "r" (val), "r" (paddr) : "memory"); } static inline void __raw_rm_writel(u32 val, volatile void __iomem *paddr) { - __asm__ __volatile__("stwcix %0,0,%1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + stwcix %0,0,%1; \ + .machine pop;" : : "r" (val), "r" (paddr) : "memory"); } static inline void __raw_rm_writeq(u64 val, volatile void __iomem *paddr) { - __asm__ __volatile__("stdcix %0,0,%1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + stdcix %0,0,%1; \ + .machine pop;" : : "r" (val), "r" (paddr) : "memory"); } @@ -375,7 +387,10 @@ static inline u8 __raw_rm_readb(volatile void __iomem *paddr) { u8 ret; - __asm__ __volatile__("lbzcix %0,0, %1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + lbzcix %0,0, %1; \ + .machine pop;" : "=r" (ret) : "r" (paddr) : "memory"); return ret; } @@ -383,7 +398,10 @@ static inline u16 __raw_rm_readw(volatile void __iomem *paddr) { u16 ret; - __asm__ __volatile__("lhzcix %0,0, %1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + lhzcix %0,0, %1; \ + .machine pop;" : "=r" (ret) : "r" (paddr) : "memory"); return ret; } @@ -391,7 +409,10 @@ static inline u32 __raw_rm_readl(volatile void __iomem *paddr) { u32 ret; - __asm__ __volatile__("lwzcix %0,0, %1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + lwzcix %0,0, %1; \ + .machine pop;" : "=r" (ret) : "r" (paddr) : "memory"); return ret; } @@ -399,7 +420,10 @@ static inline u64 __raw_rm_readq(volatile void __iomem *paddr) { u64 ret; - __asm__ __volatile__("ldcix %0,0, %1" + __asm__ __volatile__(".machine push; \ + .machine power6; \ + ldcix %0,0, %1; \ + .machine pop;" : "=r" (ret) : "r" (paddr) : "memory"); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/pmc.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/pmc.h @@ -34,6 +34,13 @@ #endif } +#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE +static inline int ppc_get_pmu_inuse(void) +{ + return get_paca()->pmcregs_in_use; +} +#endif + extern void power4_enable_pmcs(void); #else /* CONFIG_PPC64 */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/ppc-opcode.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/ppc-opcode.h @@ -204,6 +204,7 @@ #define PPC_INST_ICBT 0x7c00002c #define PPC_INST_ICSWX 0x7c00032d #define PPC_INST_ICSWEPX 0x7c00076d +#define PPC_INST_DSSALL 0x7e00066c #define PPC_INST_ISEL 0x7c00001e #define PPC_INST_ISEL_MASK 0xfc00003e #define PPC_INST_LDARX 0x7c0000a8 @@ -439,6 +440,7 @@ __PPC_RA(a) | __PPC_RB(b)) #define PPC_DCBZL(a, b) stringify_in_c(.long PPC_INST_DCBZL | \ __PPC_RA(a) | __PPC_RB(b)) +#define PPC_DSSALL stringify_in_c(.long PPC_INST_DSSALL) #define PPC_LQARX(t, a, b, eh) stringify_in_c(.long PPC_INST_LQARX | \ ___PPC_RT(t) | ___PPC_RA(a) | \ ___PPC_RB(b) | __PPC_EH(eh)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/include/asm/ps3.h +++ linux-azure-5.4.0/arch/powerpc/include/asm/ps3.h @@ -71,6 +71,7 @@ * @bus_addr: The 'translated' bus address of the region. * @len: The length in bytes of the region. * @offset: The offset from the start of memory of the region. + * @dma_mask: Device dma_mask. * @ioid: The IOID of the device who owns this region * @chunk_list: Opaque variable used by the ioc page manager. * @region_ops: struct ps3_dma_region_ops - dma region operations @@ -85,6 +86,7 @@ enum ps3_dma_region_type region_type; unsigned long len; unsigned long offset; + u64 dma_mask; /* driver variables (set by ps3_dma_region_create) */ unsigned long bus_addr; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/btext.c +++ linux-azure-5.4.0/arch/powerpc/kernel/btext.c @@ -250,8 +250,10 @@ rc = btext_initialize(np); printk("result: %d\n", rc); } - if (rc == 0) + if (rc == 0) { + of_node_put(np); break; + } } return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/idle.c +++ linux-azure-5.4.0/arch/powerpc/kernel/idle.c @@ -37,7 +37,7 @@ { ppc_md.power_save = NULL; cpuidle_disable = IDLE_POWERSAVE_OFF; - return 0; + return 1; } __setup("powersave=off", powersave_off); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/idle_6xx.S +++ linux-azure-5.4.0/arch/powerpc/kernel/idle_6xx.S @@ -129,7 +129,7 @@ END_FTR_SECTION_IFCLR(CPU_FTR_NO_DPM) mtspr SPRN_HID0,r4 BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL sync END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) lwz r8,TI_LOCAL_FLAGS(r2) /* set napping bit */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/idle_book3s.S +++ linux-azure-5.4.0/arch/powerpc/kernel/idle_book3s.S @@ -50,28 +50,32 @@ std r1,PACAR1(r13) mflr r4 mfcr r5 - /* use stack red zone rather than a new frame for saving regs */ - std r2,-8*0(r1) - std r14,-8*1(r1) - std r15,-8*2(r1) - std r16,-8*3(r1) - std r17,-8*4(r1) - std r18,-8*5(r1) - std r19,-8*6(r1) - std r20,-8*7(r1) - std r21,-8*8(r1) - std r22,-8*9(r1) - std r23,-8*10(r1) - std r24,-8*11(r1) - std r25,-8*12(r1) - std r26,-8*13(r1) - std r27,-8*14(r1) - std r28,-8*15(r1) - std r29,-8*16(r1) - std r30,-8*17(r1) - std r31,-8*18(r1) - std r4,-8*19(r1) - std r5,-8*20(r1) + /* + * Use the stack red zone rather than a new frame for saving regs since + * in the case of no GPR loss the wakeup code branches directly back to + * the caller without deallocating the stack frame first. + */ + std r2,-8*1(r1) + std r14,-8*2(r1) + std r15,-8*3(r1) + std r16,-8*4(r1) + std r17,-8*5(r1) + std r18,-8*6(r1) + std r19,-8*7(r1) + std r20,-8*8(r1) + std r21,-8*9(r1) + std r22,-8*10(r1) + std r23,-8*11(r1) + std r24,-8*12(r1) + std r25,-8*13(r1) + std r26,-8*14(r1) + std r27,-8*15(r1) + std r28,-8*16(r1) + std r29,-8*17(r1) + std r30,-8*18(r1) + std r31,-8*19(r1) + std r4,-8*20(r1) + std r5,-8*21(r1) /* 168 bytes */ PPC_STOP b . /* catch bugs */ @@ -87,8 +91,8 @@ */ _GLOBAL(idle_return_gpr_loss) ld r1,PACAR1(r13) - ld r4,-8*19(r1) - ld r5,-8*20(r1) + ld r4,-8*20(r1) + ld r5,-8*21(r1) mtlr r4 mtcr r5 /* @@ -96,38 +100,40 @@ * from PACATOC. This could be avoided for that less common case * if KVM saved its r2. */ - ld r2,-8*0(r1) - ld r14,-8*1(r1) - ld r15,-8*2(r1) - ld r16,-8*3(r1) - ld r17,-8*4(r1) - ld r18,-8*5(r1) - ld r19,-8*6(r1) - ld r20,-8*7(r1) - ld r21,-8*8(r1) - ld r22,-8*9(r1) - ld r23,-8*10(r1) - ld r24,-8*11(r1) - ld r25,-8*12(r1) - ld r26,-8*13(r1) - ld r27,-8*14(r1) - ld r28,-8*15(r1) - ld r29,-8*16(r1) - ld r30,-8*17(r1) - ld r31,-8*18(r1) + ld r2,-8*1(r1) + ld r14,-8*2(r1) + ld r15,-8*3(r1) + ld r16,-8*4(r1) + ld r17,-8*5(r1) + ld r18,-8*6(r1) + ld r19,-8*7(r1) + ld r20,-8*8(r1) + ld r21,-8*9(r1) + ld r22,-8*10(r1) + ld r23,-8*11(r1) + ld r24,-8*12(r1) + ld r25,-8*13(r1) + ld r26,-8*14(r1) + ld r27,-8*15(r1) + ld r28,-8*16(r1) + ld r29,-8*17(r1) + ld r30,-8*18(r1) + ld r31,-8*19(r1) blr /* * This is the sequence required to execute idle instructions, as * specified in ISA v2.07 (and earlier). MSR[IR] and MSR[DR] must be 0. - * - * The 0(r1) slot is used to save r2 in isa206, so use that here. + * We have to store a GPR somewhere, ptesync, then reload it, and create + * a false dependency on the result of the load. It doesn't matter which + * GPR we store, or where we store it. We have already stored r2 to the + * stack at -8(r1) in isa206_idle_insn_mayloss, so use that. */ #define IDLE_STATE_ENTER_SEQ_NORET(IDLE_INST) \ /* Magic NAP/SLEEP/WINKLE mode enter sequence */ \ - std r2,0(r1); \ + std r2,-8(r1); \ ptesync; \ - ld r2,0(r1); \ + ld r2,-8(r1); \ 236: cmpd cr0,r2,r2; \ bne 236b; \ IDLE_INST; \ @@ -152,28 +158,32 @@ std r1,PACAR1(r13) mflr r4 mfcr r5 - /* use stack red zone rather than a new frame for saving regs */ - std r2,-8*0(r1) - std r14,-8*1(r1) - std r15,-8*2(r1) - std r16,-8*3(r1) - std r17,-8*4(r1) - std r18,-8*5(r1) - std r19,-8*6(r1) - std r20,-8*7(r1) - std r21,-8*8(r1) - std r22,-8*9(r1) - std r23,-8*10(r1) - std r24,-8*11(r1) - std r25,-8*12(r1) - std r26,-8*13(r1) - std r27,-8*14(r1) - std r28,-8*15(r1) - std r29,-8*16(r1) - std r30,-8*17(r1) - std r31,-8*18(r1) - std r4,-8*19(r1) - std r5,-8*20(r1) + /* + * Use the stack red zone rather than a new frame for saving regs since + * in the case of no GPR loss the wakeup code branches directly back to + * the caller without deallocating the stack frame first. + */ + std r2,-8*1(r1) + std r14,-8*2(r1) + std r15,-8*3(r1) + std r16,-8*4(r1) + std r17,-8*5(r1) + std r18,-8*6(r1) + std r19,-8*7(r1) + std r20,-8*8(r1) + std r21,-8*9(r1) + std r22,-8*10(r1) + std r23,-8*11(r1) + std r24,-8*12(r1) + std r25,-8*13(r1) + std r26,-8*14(r1) + std r27,-8*15(r1) + std r28,-8*16(r1) + std r29,-8*17(r1) + std r30,-8*18(r1) + std r31,-8*19(r1) + std r4,-8*20(r1) + std r5,-8*21(r1) cmpwi r3,PNV_THREAD_NAP bne 1f IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/kvm.c +++ linux-azure-5.4.0/arch/powerpc/kernel/kvm.c @@ -669,7 +669,7 @@ on_each_cpu(kvm_map_magic_page, &features, 1); /* Quick self-test to see if the mapping works */ - if (!fault_in_pages_readable((const char *)KVM_MAGIC_PAGE, sizeof(u32))) { + if (fault_in_pages_readable((const char *)KVM_MAGIC_PAGE, sizeof(u32))) { kvm_patching_worked = false; return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/l2cr_6xx.S +++ linux-azure-5.4.0/arch/powerpc/kernel/l2cr_6xx.S @@ -96,7 +96,7 @@ /* Stop DST streams */ BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL sync END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) @@ -293,7 +293,7 @@ isync /* Stop DST streams */ - DSSALL + PPC_DSSALL sync /* Get the current enable bit of the L3CR into r4 */ @@ -402,7 +402,7 @@ _GLOBAL(__flush_disable_L1) /* Stop pending alitvec streams and memory accesses */ BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) sync only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/prom_init_check.sh +++ linux-azure-5.4.0/arch/powerpc/kernel/prom_init_check.sh @@ -13,7 +13,7 @@ # If you really need to reference something from prom_init.o add # it to the list below: -grep "^CONFIG_KASAN=y$" .config >/dev/null +grep "^CONFIG_KASAN=y$" ${KCONFIG_CONFIG} >/dev/null if [ $? -eq 0 ] then MEM_FUNCS="__memcpy __memset" only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/ptrace.c +++ linux-azure-5.4.0/arch/powerpc/kernel/ptrace.c @@ -3014,8 +3014,13 @@ flush_fp_to_thread(child); if (fpidx < (PT_FPSCR - PT_FPR0)) - memcpy(&tmp, &child->thread.TS_FPR(fpidx), - sizeof(long)); + if (IS_ENABLED(CONFIG_PPC32)) { + // On 32-bit the index we are passed refers to 32-bit words + tmp = ((u32 *)child->thread.fp_state.fpr)[fpidx]; + } else { + memcpy(&tmp, &child->thread.TS_FPR(fpidx), + sizeof(long)); + } else tmp = child->thread.fp_state.fpscr; } @@ -3047,8 +3052,13 @@ flush_fp_to_thread(child); if (fpidx < (PT_FPSCR - PT_FPR0)) - memcpy(&child->thread.TS_FPR(fpidx), &data, - sizeof(long)); + if (IS_ENABLED(CONFIG_PPC32)) { + // On 32-bit the index we are passed refers to 32-bit words + ((u32 *)child->thread.fp_state.fpr)[fpidx] = data; + } else { + memcpy(&child->thread.TS_FPR(fpidx), &data, + sizeof(long)); + } else child->thread.fp_state.fpscr = data; ret = 0; @@ -3398,4 +3408,7 @@ offsetof(struct user_pt_regs, result)); BUILD_BUG_ON(sizeof(struct user_pt_regs) > sizeof(struct pt_regs)); + + // ptrace_get/put_fpr() rely on PPC32 and VSX being incompatible + BUILD_BUG_ON(IS_ENABLED(CONFIG_PPC32) && IS_ENABLED(CONFIG_VSX)); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/stacktrace.c +++ linux-azure-5.4.0/arch/powerpc/kernel/stacktrace.c @@ -8,6 +8,7 @@ * Copyright 2018 Nick Piggin, Michael Ellerman, IBM Corp. */ +#include #include #include #include @@ -19,6 +20,7 @@ #include #include #include +#include #include #include @@ -230,17 +232,31 @@ static void raise_backtrace_ipi(cpumask_t *mask) { + struct paca_struct *p; unsigned int cpu; + u64 delay_us; for_each_cpu(cpu, mask) { - if (cpu == smp_processor_id()) + if (cpu == smp_processor_id()) { handle_backtrace_ipi(NULL); - else - smp_send_safe_nmi_ipi(cpu, handle_backtrace_ipi, 5 * USEC_PER_SEC); - } + continue; + } - for_each_cpu(cpu, mask) { - struct paca_struct *p = paca_ptrs[cpu]; + delay_us = 5 * USEC_PER_SEC; + + if (smp_send_safe_nmi_ipi(cpu, handle_backtrace_ipi, delay_us)) { + // Now wait up to 5s for the other CPU to do its backtrace + while (cpumask_test_cpu(cpu, mask) && delay_us) { + udelay(1); + delay_us--; + } + + // Other CPU cleared itself from the mask + if (delay_us) + continue; + } + + p = paca_ptrs[cpu]; cpumask_clear_cpu(cpu, mask); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/swsusp_32.S +++ linux-azure-5.4.0/arch/powerpc/kernel/swsusp_32.S @@ -181,7 +181,7 @@ #ifdef CONFIG_ALTIVEC /* Stop pending alitvec streams and memory accesses */ BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) #endif sync only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/swsusp_asm64.S +++ linux-azure-5.4.0/arch/powerpc/kernel/swsusp_asm64.S @@ -142,7 +142,7 @@ _GLOBAL(swsusp_arch_resume) /* Stop pending alitvec streams and memory accesses */ BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) sync only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/systbl.S +++ linux-azure-5.4.0/arch/powerpc/kernel/systbl.S @@ -25,6 +25,7 @@ #include #undef __SYSCALL #else + .p2align 2 #define __SYSCALL(nr, entry) .long entry #include #undef __SYSCALL only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/trace/ftrace.c +++ linux-azure-5.4.0/arch/powerpc/kernel/trace/ftrace.c @@ -328,9 +328,7 @@ /* Is this a known long jump tramp? */ for (i = 0; i < NUM_FTRACE_TRAMPS; i++) - if (!ftrace_tramps[i]) - break; - else if (ftrace_tramps[i] == tramp) + if (ftrace_tramps[i] == tramp) return 0; /* Is this a known plt tramp? */ @@ -868,6 +866,17 @@ extern unsigned int ftrace_tramp_text[], ftrace_tramp_init[]; +void ftrace_free_init_tramp(void) +{ + int i; + + for (i = 0; i < NUM_FTRACE_TRAMPS && ftrace_tramps[i]; i++) + if (ftrace_tramps[i] == (unsigned long)ftrace_tramp_init) { + ftrace_tramps[i] = 0; + return; + } +} + int __init ftrace_dyn_arch_init(void) { int i; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kernel/watchdog.c +++ linux-azure-5.4.0/arch/powerpc/kernel/watchdog.c @@ -132,6 +132,10 @@ { cpumask_or(&wd_smp_cpus_stuck, &wd_smp_cpus_stuck, cpumask); cpumask_andnot(&wd_smp_cpus_pending, &wd_smp_cpus_pending, cpumask); + /* + * See wd_smp_clear_cpu_pending() + */ + smp_mb(); if (cpumask_empty(&wd_smp_cpus_pending)) { wd_smp_last_reset_tb = tb; cpumask_andnot(&wd_smp_cpus_pending, @@ -217,13 +221,44 @@ cpumask_clear_cpu(cpu, &wd_smp_cpus_stuck); wd_smp_unlock(&flags); + } else { + /* + * The last CPU to clear pending should have reset the + * watchdog so we generally should not find it empty + * here if our CPU was clear. However it could happen + * due to a rare race with another CPU taking the + * last CPU out of the mask concurrently. + * + * We can't add a warning for it. But just in case + * there is a problem with the watchdog that is causing + * the mask to not be reset, try to kick it along here. + */ + if (unlikely(cpumask_empty(&wd_smp_cpus_pending))) + goto none_pending; } return; } + cpumask_clear_cpu(cpu, &wd_smp_cpus_pending); + + /* + * Order the store to clear pending with the load(s) to check all + * words in the pending mask to check they are all empty. This orders + * with the same barrier on another CPU. This prevents two CPUs + * clearing the last 2 pending bits, but neither seeing the other's + * store when checking if the mask is empty, and missing an empty + * mask, which ends with a false positive. + */ + smp_mb(); if (cpumask_empty(&wd_smp_cpus_pending)) { unsigned long flags; +none_pending: + /* + * Double check under lock because more than one CPU could see + * a clear mask with the lockless check after clearing their + * pending bits. + */ wd_smp_lock(&flags); if (cpumask_empty(&wd_smp_cpus_pending)) { wd_smp_last_reset_tb = tb; @@ -314,8 +349,12 @@ { unsigned long ticks = tb_ticks_per_usec * wd_timer_period_ms * 1000; int cpu = smp_processor_id(); - u64 tb = get_tb(); + u64 tb; + if (!cpumask_test_cpu(cpu, &watchdog_cpumask)) + return; + + tb = get_tb(); if (tb - per_cpu(wd_timer_tb, cpu) >= ticks) { per_cpu(wd_timer_tb, cpu) = tb; wd_smp_clear_cpu_pending(cpu, tb); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kvm/book3s_64_vio_hv.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_64_vio_hv.c @@ -177,10 +177,13 @@ idx -= stt->offset; page = stt->pages[idx / TCES_PER_PAGE]; /* - * page must not be NULL in real mode, - * kvmppc_rm_ioba_validate() must have taken care of this. + * kvmppc_rm_ioba_validate() allows pages not be allocated if TCE is + * being cleared, otherwise it returns H_TOO_HARD and we skip this. */ - WARN_ON_ONCE_RM(!page); + if (!page) { + WARN_ON_ONCE_RM(tce != 0); + return; + } tbl = kvmppc_page_address(page); tbl[idx % TCES_PER_PAGE] = tce; @@ -248,13 +251,19 @@ tbl->it_ops->tce_kill(tbl, entry, pages, true); } -static void kvmppc_rm_clear_tce(struct kvm *kvm, struct iommu_table *tbl, - unsigned long entry) +static void kvmppc_rm_clear_tce(struct kvm *kvm, struct kvmppc_spapr_tce_table *stt, + struct iommu_table *tbl, unsigned long entry) { - unsigned long hpa = 0; - enum dma_data_direction dir = DMA_NONE; + unsigned long i; + unsigned long subpages = 1ULL << (stt->page_shift - tbl->it_page_shift); + unsigned long io_entry = entry << (stt->page_shift - tbl->it_page_shift); + + for (i = 0; i < subpages; ++i) { + unsigned long hpa = 0; + enum dma_data_direction dir = DMA_NONE; - iommu_tce_xchg_no_kill_rm(kvm->mm, tbl, entry, &hpa, &dir); + iommu_tce_xchg_no_kill_rm(kvm->mm, tbl, io_entry + i, &hpa, &dir); + } } static long kvmppc_rm_tce_iommu_mapped_dec(struct kvm *kvm, @@ -317,6 +326,8 @@ break; } + iommu_tce_kill_rm(tbl, io_entry, subpages); + return ret; } @@ -380,6 +391,8 @@ break; } + iommu_tce_kill_rm(tbl, io_entry, subpages); + return ret; } @@ -425,10 +438,8 @@ ret = kvmppc_rm_tce_iommu_map(vcpu->kvm, stt, stit->tbl, entry, ua, dir); - iommu_tce_kill_rm(stit->tbl, entry, 1); - if (ret != H_SUCCESS) { - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, entry); + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, entry); return ret; } } @@ -568,7 +579,7 @@ ua = 0; if (kvmppc_rm_tce_to_ua(vcpu->kvm, tce, &ua, NULL)) { ret = H_PARAMETER; - goto invalidate_exit; + goto unlock_exit; } list_for_each_entry_lockless(stit, &stt->iommu_tables, next) { @@ -577,19 +588,15 @@ iommu_tce_direction(tce)); if (ret != H_SUCCESS) { - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, - entry); - goto invalidate_exit; + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, + entry + i); + goto unlock_exit; } } kvmppc_rm_tce_put(stt, entry + i, tce); } -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill_rm(stit->tbl, entry, npages); - unlock_exit: if (rmap) unlock_rmap(rmap); @@ -632,20 +639,16 @@ continue; if (ret == H_TOO_HARD) - goto invalidate_exit; + return ret; WARN_ON_ONCE_RM(1); - kvmppc_rm_clear_tce(vcpu->kvm, stit->tbl, entry); + kvmppc_rm_clear_tce(vcpu->kvm, stt, stit->tbl, entry + i); } } for (i = 0; i < npages; ++i, ioba += (1ULL << stt->page_shift)) kvmppc_rm_tce_put(stt, ioba >> stt->page_shift, tce_value); -invalidate_exit: - list_for_each_entry_lockless(stit, &stt->iommu_tables, next) - iommu_tce_kill_rm(stit->tbl, ioba >> stt->page_shift, npages); - return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kvm/book3s_hv_builtin.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_builtin.c @@ -821,6 +821,7 @@ "r" (0) : "memory"); } asm volatile("ptesync": : :"memory"); + // POWER9 congruence-class TLBIEL leaves ERAT. Flush it now. asm volatile(PPC_RADIX_INVALIDATE_ERAT_GUEST : : :"memory"); } else { for (set = 0; set < kvm->arch.tlb_sets; ++set) { @@ -831,7 +832,9 @@ rb += PPC_BIT(51); /* increment set number */ } asm volatile("ptesync": : :"memory"); - asm volatile(PPC_ISA_3_0_INVALIDATE_ERAT : : :"memory"); + // POWER9 congruence-class TLBIEL leaves ERAT. Flush it now. + if (cpu_has_feature(CPU_FTR_ARCH_300)) + asm volatile(PPC_ISA_3_0_INVALIDATE_ERAT : : :"memory"); } } @@ -847,7 +850,7 @@ * Thus we make all 4 threads use the same bit. */ if (cpu_has_feature(CPU_FTR_ARCH_300)) - pcpu = cpu_first_thread_sibling(pcpu); + pcpu = cpu_first_tlb_thread_sibling(pcpu); if (nested) need_tlb_flush = &nested->need_tlb_flush; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kvm/book3s_hv_nested.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_nested.c @@ -51,7 +51,8 @@ hr->ppr = vcpu->arch.ppr; } -static void byteswap_pt_regs(struct pt_regs *regs) +/* Use noinline_for_stack due to https://bugs.llvm.org/show_bug.cgi?id=49610 */ +static noinline_for_stack void byteswap_pt_regs(struct pt_regs *regs) { unsigned long *addr = (unsigned long *) regs; @@ -231,6 +232,9 @@ if (vcpu->kvm->arch.l1_ptcr == 0) return H_NOT_AVAILABLE; + if (MSR_TM_TRANSACTIONAL(vcpu->arch.shregs.msr)) + return H_BAD_MODE; + /* copy parameters in */ hv_ptr = kvmppc_get_gpr(vcpu, 4); err = kvm_vcpu_read_guest(vcpu, hv_ptr, &l2_hv, @@ -252,6 +256,23 @@ if (l2_hv.vcpu_token >= NR_CPUS) return H_PARAMETER; + /* + * L1 must have set up a suspended state to enter the L2 in a + * transactional state, and only in that case. These have to be + * filtered out here to prevent causing a TM Bad Thing in the + * host HRFID. We could synthesize a TM Bad Thing back to the L1 + * here but there doesn't seem like much point. + */ + if (MSR_TM_SUSPENDED(vcpu->arch.shregs.msr)) { + if (!MSR_TM_ACTIVE(l2_regs.msr)) + return H_BAD_MODE; + } else { + if (l2_regs.msr & MSR_TS_MASK) + return H_BAD_MODE; + if (WARN_ON_ONCE(vcpu->arch.shregs.msr & MSR_TS_MASK)) + return H_BAD_MODE; + } + /* translate lpid */ l2 = kvmhv_get_nested(vcpu->kvm, l2_hv.lpid, true); if (!l2) @@ -489,7 +510,7 @@ if (eaddr & (0xFFFUL << 52)) return H_PARAMETER; - buf = kzalloc(n, GFP_KERNEL); + buf = kzalloc(n, GFP_KERNEL | __GFP_NOWARN); if (!buf) return H_NO_MEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kvm/book3s_hv_rm_mmu.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_hv_rm_mmu.c @@ -67,7 +67,7 @@ * so use the bit for the first thread to represent the core. */ if (cpu_has_feature(CPU_FTR_ARCH_300)) - cpu = cpu_first_thread_sibling(cpu); + cpu = cpu_first_tlb_thread_sibling(cpu); cpumask_clear_cpu(cpu, &kvm->arch.need_tlb_flush); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/kvm/book3s_rtas.c +++ linux-azure-5.4.0/arch/powerpc/kvm/book3s_rtas.c @@ -240,6 +240,17 @@ * value so we can restore it on the way out. */ orig_rets = args.rets; + if (be32_to_cpu(args.nargs) >= ARRAY_SIZE(args.args)) { + /* + * Don't overflow our args array: ensure there is room for + * at least rets[0] (even if the call specifies 0 nret). + * + * Each handler must then check for the correct nargs and nret + * values, but they may always return failure in rets[0]. + */ + rc = -EINVAL; + goto fail; + } args.rets = &args.args[be32_to_cpu(args.nargs)]; mutex_lock(&vcpu->kvm->arch.rtas_token_lock); @@ -267,9 +278,17 @@ fail: /* * We only get here if the guest has called RTAS with a bogus - * args pointer. That means we can't get to the args, and so we - * can't fail the RTAS call. So fail right out to userspace, - * which should kill the guest. + * args pointer or nargs/nret values that would overflow the + * array. That means we can't get to the args, and so we can't + * fail the RTAS call. So fail right out to userspace, which + * should kill the guest. + * + * SLOF should actually pass the hcall return value from the + * rtas handler call in r3, so enter_rtas could be modified to + * return a failure indication in r3 and we could return such + * errors to the guest rather than failing to host userspace. + * However old guests that don't test for failure could then + * continue silently after errors, so for now we won't do this. */ return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/lib/Makefile +++ linux-azure-5.4.0/arch/powerpc/lib/Makefile @@ -16,6 +16,9 @@ CFLAGS_feature-fixups.o += -DDISABLE_BRANCH_PROFILING endif +CFLAGS_code-patching.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) +CFLAGS_feature-fixups.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) + obj-y += alloc.o code-patching.o feature-fixups.o pmem.o ifndef CONFIG_KASAN only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/lib/code-patching.c +++ linux-azure-5.4.0/arch/powerpc/lib/code-patching.c @@ -221,6 +221,11 @@ return (offset >= -0x2000000 && offset <= 0x1fffffc && !(offset & 0x3)); } +bool is_offset_in_cond_branch_range(long offset) +{ + return offset >= -0x8000 && offset <= 0x7fff && !(offset & 0x3); +} + /* * Helper to check if a given instruction is a conditional branch * Derived from the conditional checks in analyse_instr() @@ -274,7 +279,7 @@ offset = offset - (unsigned long)addr; /* Check we can represent the target in the instruction format */ - if (offset < -0x8000 || offset > 0x7FFF || offset & 0x3) + if (!is_offset_in_cond_branch_range(offset)) return 0; /* Mask out the flags and target, so they don't step on each other. */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/math-emu/math_efp.c +++ linux-azure-5.4.0/arch/powerpc/math-emu/math_efp.c @@ -17,6 +17,7 @@ #include #include +#include #include #include only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/mm/mmu_context.c +++ linux-azure-5.4.0/arch/powerpc/mm/mmu_context.c @@ -79,7 +79,7 @@ * context */ if (cpu_has_feature(CPU_FTR_ALTIVEC)) - asm volatile ("dssall"); + asm volatile (PPC_DSSALL); if (new_on_cpu) radix_kvm_prefetch_workaround(next); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/net/bpf_jit.h +++ linux-azure-5.4.0/arch/powerpc/net/bpf_jit.h @@ -11,6 +11,7 @@ #ifndef __ASSEMBLY__ #include +#include #ifdef PPC64_ELF_ABI_v1 #define FUNCTION_DESCR_SIZE 24 @@ -180,13 +181,26 @@ #define PPC_NEG(d, a) EMIT(PPC_INST_NEG | ___PPC_RT(d) | ___PPC_RA(a)) /* Long jump; (unconditional 'branch') */ -#define PPC_JMP(dest) EMIT(PPC_INST_BRANCH | \ - (((dest) - (ctx->idx * 4)) & 0x03fffffc)) +#define PPC_JMP(dest) \ + do { \ + long offset = (long)(dest) - (ctx->idx * 4); \ + if (!is_offset_in_branch_range(offset)) { \ + pr_err_ratelimited("Branch offset 0x%lx (@%u) out of range\n", offset, ctx->idx); \ + return -ERANGE; \ + } \ + EMIT(PPC_INST_BRANCH | (offset & 0x03fffffc)); \ + } while (0) /* "cond" here covers BO:BI fields. */ -#define PPC_BCC_SHORT(cond, dest) EMIT(PPC_INST_BRANCH_COND | \ - (((cond) & 0x3ff) << 16) | \ - (((dest) - (ctx->idx * 4)) & \ - 0xfffc)) +#define PPC_BCC_SHORT(cond, dest) \ + do { \ + long offset = (long)(dest) - (ctx->idx * 4); \ + if (!is_offset_in_cond_branch_range(offset)) { \ + pr_err_ratelimited("Conditional branch offset 0x%lx (@%u) out of range\n", offset, ctx->idx); \ + return -ERANGE; \ + } \ + EMIT(PPC_INST_BRANCH_COND | (((cond) & 0x3ff) << 16) | (offset & 0xfffc)); \ + } while (0) + /* Sign-extended 32-bit immediate load */ #define PPC_LI32(d, i) do { \ if ((int)(uintptr_t)(i) >= -32768 && \ @@ -225,11 +239,6 @@ #define PPC_FUNC_ADDR(d,i) do { PPC_LI32(d, i); } while(0) #endif -static inline bool is_nearbranch(int offset) -{ - return (offset < 32768) && (offset >= -32768); -} - /* * The fly in the ointment of code size changing from pass to pass is * avoided by padding the short branch case with a NOP. If code size differs @@ -238,7 +247,7 @@ * state. */ #define PPC_BCC(cond, dest) do { \ - if (is_nearbranch((dest) - (ctx->idx * 4))) { \ + if (is_offset_in_cond_branch_range((long)(dest) - (ctx->idx * 4))) { \ PPC_BCC_SHORT(cond, dest); \ PPC_NOP(); \ } else { \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/net/bpf_jit64.h +++ linux-azure-5.4.0/arch/powerpc/net/bpf_jit64.h @@ -16,18 +16,18 @@ * with our redzone usage. * * [ prev sp ] <------------- - * [ nv gpr save area ] 6*8 | + * [ nv gpr save area ] 5*8 | * [ tail_call_cnt ] 8 | - * [ local_tmp_var ] 8 | + * [ local_tmp_var ] 16 | * fp (r31) --> [ ebpf stack space ] upto 512 | * [ frame header ] 32/112 | * sp (r1) ---> [ stack pointer ] -------------- */ /* for gpr non volatile registers BPG_REG_6 to 10 */ -#define BPF_PPC_STACK_SAVE (6*8) +#define BPF_PPC_STACK_SAVE (5*8) /* for bpf JIT code internal usage */ -#define BPF_PPC_STACK_LOCALS 16 +#define BPF_PPC_STACK_LOCALS 24 /* stack frame excluding BPF stack, ensure this is quadword aligned */ #define BPF_PPC_STACKFRAME (STACK_FRAME_MIN_SIZE + \ BPF_PPC_STACK_LOCALS + BPF_PPC_STACK_SAVE) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/net/bpf_jit_comp64.c +++ linux-azure-5.4.0/arch/powerpc/net/bpf_jit_comp64.c @@ -15,6 +15,7 @@ #include #include #include +#include #include "bpf_jit64.h" @@ -56,9 +57,9 @@ * [ prev sp ] <------------- * [ ... ] | * sp (r1) ---> [ stack pointer ] -------------- - * [ nv gpr save area ] 6*8 + * [ nv gpr save area ] 5*8 * [ tail_call_cnt ] 8 - * [ local_tmp_var ] 8 + * [ local_tmp_var ] 16 * [ unused red zone ] 208 bytes protected */ static int bpf_jit_stack_local(struct codegen_context *ctx) @@ -66,12 +67,12 @@ if (bpf_has_stack_frame(ctx)) return STACK_FRAME_MIN_SIZE + ctx->stack_size; else - return -(BPF_PPC_STACK_SAVE + 16); + return -(BPF_PPC_STACK_SAVE + 24); } static int bpf_jit_stack_tailcallcnt(struct codegen_context *ctx) { - return bpf_jit_stack_local(ctx) + 8; + return bpf_jit_stack_local(ctx) + 16; } static int bpf_jit_stack_offsetof(struct codegen_context *ctx, int reg) @@ -224,7 +225,7 @@ PPC_BLRL(); } -static void bpf_jit_emit_tail_call(u32 *image, struct codegen_context *ctx, u32 out) +static int bpf_jit_emit_tail_call(u32 *image, struct codegen_context *ctx, u32 out) { /* * By now, the eBPF program has already setup parameters in r3, r4 and r5 @@ -285,14 +286,39 @@ bpf_jit_emit_common_epilogue(image, ctx); PPC_BCTR(); + /* out: */ + return 0; } +/* + * We spill into the redzone always, even if the bpf program has its own stackframe. + * Offsets hardcoded based on BPF_PPC_STACK_SAVE -- see bpf_jit_stack_local() + */ +void bpf_stf_barrier(void); + +asm ( +" .global bpf_stf_barrier ;" +" bpf_stf_barrier: ;" +" std 21,-64(1) ;" +" std 22,-56(1) ;" +" sync ;" +" ld 21,-64(1) ;" +" ld 22,-56(1) ;" +" ori 31,31,0 ;" +" .rept 14 ;" +" b 1f ;" +" 1: ;" +" .endr ;" +" blr ;" +); + /* Assemble the body code between the prologue & epilogue */ static int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, struct codegen_context *ctx, u32 *addrs, bool extra_pass) { + enum stf_barrier_type stf_barrier = stf_barrier_type_get(); const struct bpf_insn *insn = fp->insnsi; int flen = fp->len; int i, ret; @@ -347,18 +373,25 @@ PPC_SUB(dst_reg, dst_reg, src_reg); goto bpf_alu32_trunc; case BPF_ALU | BPF_ADD | BPF_K: /* (u32) dst += (u32) imm */ - case BPF_ALU | BPF_SUB | BPF_K: /* (u32) dst -= (u32) imm */ case BPF_ALU64 | BPF_ADD | BPF_K: /* dst += imm */ + if (!imm) { + goto bpf_alu32_trunc; + } else if (imm >= -32768 && imm < 32768) { + PPC_ADDI(dst_reg, dst_reg, IMM_L(imm)); + } else { + PPC_LI32(b2p[TMP_REG_1], imm); + PPC_ADD(dst_reg, dst_reg, b2p[TMP_REG_1]); + } + goto bpf_alu32_trunc; + case BPF_ALU | BPF_SUB | BPF_K: /* (u32) dst -= (u32) imm */ case BPF_ALU64 | BPF_SUB | BPF_K: /* dst -= imm */ - if (BPF_OP(code) == BPF_SUB) - imm = -imm; - if (imm) { - if (imm >= -32768 && imm < 32768) - PPC_ADDI(dst_reg, dst_reg, IMM_L(imm)); - else { - PPC_LI32(b2p[TMP_REG_1], imm); - PPC_ADD(dst_reg, dst_reg, b2p[TMP_REG_1]); - } + if (!imm) { + goto bpf_alu32_trunc; + } else if (imm > -32768 && imm <= 32768) { + PPC_ADDI(dst_reg, dst_reg, IMM_L(-imm)); + } else { + PPC_LI32(b2p[TMP_REG_1], imm); + PPC_SUB(dst_reg, dst_reg, b2p[TMP_REG_1]); } goto bpf_alu32_trunc; case BPF_ALU | BPF_MUL | BPF_X: /* (u32) dst *= (u32) src */ @@ -408,8 +441,14 @@ case BPF_ALU64 | BPF_DIV | BPF_K: /* dst /= imm */ if (imm == 0) return -EINVAL; - else if (imm == 1) - goto bpf_alu32_trunc; + if (imm == 1) { + if (BPF_OP(code) == BPF_DIV) { + goto bpf_alu32_trunc; + } else { + PPC_LI(dst_reg, 0); + break; + } + } PPC_LI32(b2p[TMP_REG_1], imm); switch (BPF_CLASS(code)) { @@ -645,6 +684,36 @@ break; /* + * BPF_ST NOSPEC (speculation barrier) + */ + case BPF_ST | BPF_NOSPEC: + if (!security_ftr_enabled(SEC_FTR_FAVOUR_SECURITY) || + (!security_ftr_enabled(SEC_FTR_L1D_FLUSH_PR) && + (!security_ftr_enabled(SEC_FTR_L1D_FLUSH_HV) || !cpu_has_feature(CPU_FTR_HVMODE)))) + break; + + switch (stf_barrier) { + case STF_BARRIER_EIEIO: + EMIT(0x7c0006ac | 0x02000000); + break; + case STF_BARRIER_SYNC_ORI: + EMIT(PPC_INST_SYNC); + PPC_LD(b2p[TMP_REG_1], 13, 0); + PPC_ORI(31, 31, 0); + break; + case STF_BARRIER_FALLBACK: + EMIT(PPC_INST_MFLR | ___PPC_RT(b2p[TMP_REG_1])); + PPC_LI64(12, dereference_kernel_function_descriptor(bpf_stf_barrier)); + PPC_MTCTR(12); + EMIT(PPC_INST_BCTR | 0x1); + PPC_MTLR(b2p[TMP_REG_1]); + break; + case STF_BARRIER_NONE: + break; + } + break; + + /* * BPF_ST(X) */ case BPF_STX | BPF_MEM | BPF_B: /* *(u8 *)(dst + off) = src */ @@ -989,7 +1058,9 @@ */ case BPF_JMP | BPF_TAIL_CALL: ctx->seen |= SEEN_TAILCALL; - bpf_jit_emit_tail_call(image, ctx, addrs[i + 1]); + ret = bpf_jit_emit_tail_call(image, ctx, addrs[i + 1]); + if (ret < 0) + return ret; break; default: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/perf/hv-gpci.c +++ linux-azure-5.4.0/arch/powerpc/perf/hv-gpci.c @@ -164,7 +164,7 @@ */ count = 0; for (i = offset; i < offset + length; i++) - count |= arg->bytes[i] << (i - offset); + count |= (u64)(arg->bytes[i]) << ((length - 1 - (i - offset)) * 8); *value = count; out: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/perf/power9-pmu.c +++ linux-azure-5.4.0/arch/powerpc/perf/power9-pmu.c @@ -131,11 +131,11 @@ /* Table of alternatives, sorted by column 0 */ static const unsigned int power9_event_alternatives[][MAX_ALT] = { - { PM_INST_DISP, PM_INST_DISP_ALT }, - { PM_RUN_CYC_ALT, PM_RUN_CYC }, - { PM_RUN_INST_CMPL_ALT, PM_RUN_INST_CMPL }, - { PM_LD_MISS_L1, PM_LD_MISS_L1_ALT }, { PM_BR_2PATH, PM_BR_2PATH_ALT }, + { PM_INST_DISP, PM_INST_DISP_ALT }, + { PM_RUN_CYC_ALT, PM_RUN_CYC }, + { PM_LD_MISS_L1, PM_LD_MISS_L1_ALT }, + { PM_RUN_INST_CMPL_ALT, PM_RUN_INST_CMPL }, }; static int power9_get_alternatives(u64 event, unsigned int flags, u64 alt[]) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/44x/fsp2.c +++ linux-azure-5.4.0/arch/powerpc/platforms/44x/fsp2.c @@ -208,6 +208,7 @@ if (irq == NO_IRQ) { pr_err("device tree node %pOFn is missing a interrupt", np); + of_node_put(np); return; } @@ -215,6 +216,7 @@ if (rc) { pr_err("fsp_of_probe: request_irq failed: np=%pOF rc=%d", np, rc); + of_node_put(np); return; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/4xx/cpm.c +++ linux-azure-5.4.0/arch/powerpc/platforms/4xx/cpm.c @@ -327,6 +327,6 @@ static int __init cpm_powersave_off(char *arg) { cpm.powersave_off = 1; - return 0; + return 1; } __setup("powersave=off", cpm_powersave_off); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c +++ linux-azure-5.4.0/arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c @@ -94,9 +94,8 @@ pr_err("Could not map guts node address\n"); return -ENOMEM; } + qoriq_pm_ops = &mpc85xx_pm_ops; } - qoriq_pm_ops = &mpc85xx_pm_ops; - return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/8xx/cpm1.c +++ linux-azure-5.4.0/arch/powerpc/platforms/8xx/cpm1.c @@ -292,6 +292,7 @@ out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) | CPM_BRG_EN | CPM_BRG_DIV16); } +EXPORT_SYMBOL(cpm_setbrg); struct cpm_ioport16 { __be16 dir, par, odr_sor, dat, intr; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/8xx/pic.c +++ linux-azure-5.4.0/arch/powerpc/platforms/8xx/pic.c @@ -153,6 +153,7 @@ if (mpc8xx_pic_host == NULL) { printk(KERN_ERR "MPC8xx PIC: failed to allocate irq host!\n"); ret = -ENOMEM; + goto out; } ret = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/cell/axon_msi.c +++ linux-azure-5.4.0/arch/powerpc/platforms/cell/axon_msi.c @@ -226,6 +226,7 @@ if (!prop) { dev_dbg(&dev->dev, "axon_msi: no msi-address-(32|64) properties found\n"); + of_node_put(dn); return -ENOENT; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/cell/iommu.c +++ linux-azure-5.4.0/arch/powerpc/platforms/cell/iommu.c @@ -976,6 +976,7 @@ if (hbase < dbase || (hend > (dbase + dsize))) { pr_debug("iommu: hash window doesn't fit in" "real DMA window\n"); + of_node_put(np); return -1; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/cell/pervasive.c +++ linux-azure-5.4.0/arch/powerpc/platforms/cell/pervasive.c @@ -77,6 +77,7 @@ switch (regs->msr & SRR1_WAKEMASK) { case SRR1_WAKEDEC: set_dec(1); + break; case SRR1_WAKEEE: /* * Handle these when interrupts get re-enabled and we take only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/cell/spufs/inode.c +++ linux-azure-5.4.0/arch/powerpc/platforms/cell/spufs/inode.c @@ -671,6 +671,7 @@ return; loader = of_get_property(dn, "loader", &size); + of_node_put(dn); if (!loader) return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/embedded6xx/hlwd-pic.c +++ linux-azure-5.4.0/arch/powerpc/platforms/embedded6xx/hlwd-pic.c @@ -215,6 +215,7 @@ irq_set_chained_handler(cascade_virq, hlwd_pic_irq_cascade); hlwd_irq_host = host; + of_node_put(np); break; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powermac/cache.S +++ linux-azure-5.4.0/arch/powerpc/platforms/powermac/cache.S @@ -48,7 +48,7 @@ /* Stop DST streams */ BEGIN_FTR_SECTION - DSSALL + PPC_DSSALL sync END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) @@ -196,7 +196,7 @@ isync /* Stop prefetch streams */ - DSSALL + PPC_DSSALL sync /* Disable L2 prefetching */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powermac/low_i2c.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powermac/low_i2c.c @@ -582,6 +582,7 @@ bus->close = kw_i2c_close; bus->xfer = kw_i2c_xfer; mutex_init(&bus->mutex); + lockdep_register_key(&bus->lock_key); lockdep_set_class(&bus->mutex, &bus->lock_key); if (controller == busnode) bus->flags = pmac_i2c_multibus; @@ -811,6 +812,7 @@ bus->hostdata = bus + 1; bus->xfer = pmu_i2c_xfer; mutex_init(&bus->mutex); + lockdep_register_key(&bus->lock_key); lockdep_set_class(&bus->mutex, &bus->lock_key); bus->flags = pmac_i2c_multibus; list_add(&bus->link, &pmac_i2c_busses); @@ -934,6 +936,7 @@ bus->hostdata = bus + 1; bus->xfer = smu_i2c_xfer; mutex_init(&bus->mutex); + lockdep_register_key(&bus->lock_key); lockdep_set_class(&bus->mutex, &bus->lock_key); bus->flags = 0; list_add(&bus->link, &pmac_i2c_busses); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/opal-fadump.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal-fadump.c @@ -60,7 +60,7 @@ addr = be64_to_cpu(addr); pr_debug("Kernel metadata addr: %llx\n", addr); opal_fdm_active = (void *)addr; - if (opal_fdm_active->registered_regions == 0) + if (be16_to_cpu(opal_fdm_active->registered_regions) == 0) return; ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_BOOT_MEM, &addr); @@ -95,17 +95,17 @@ static void opal_fadump_update_config(struct fw_dump *fadump_conf, const struct opal_fadump_mem_struct *fdm) { - pr_debug("Boot memory regions count: %d\n", fdm->region_cnt); + pr_debug("Boot memory regions count: %d\n", be16_to_cpu(fdm->region_cnt)); /* * The destination address of the first boot memory region is the * destination address of boot memory regions. */ - fadump_conf->boot_mem_dest_addr = fdm->rgn[0].dest; + fadump_conf->boot_mem_dest_addr = be64_to_cpu(fdm->rgn[0].dest); pr_debug("Destination address of boot memory regions: %#016llx\n", fadump_conf->boot_mem_dest_addr); - fadump_conf->fadumphdr_addr = fdm->fadumphdr_addr; + fadump_conf->fadumphdr_addr = be64_to_cpu(fdm->fadumphdr_addr); } /* @@ -126,9 +126,9 @@ fadump_conf->boot_memory_size = 0; pr_debug("Boot memory regions:\n"); - for (i = 0; i < fdm->region_cnt; i++) { - base = fdm->rgn[i].src; - size = fdm->rgn[i].size; + for (i = 0; i < be16_to_cpu(fdm->region_cnt); i++) { + base = be64_to_cpu(fdm->rgn[i].src); + size = be64_to_cpu(fdm->rgn[i].size); pr_debug("\t[%03d] base: 0x%lx, size: 0x%lx\n", i, base, size); fadump_conf->boot_mem_addr[i] = base; @@ -143,7 +143,7 @@ * Start address of reserve dump area (permanent reservation) for * re-registering FADump after dump capture. */ - fadump_conf->reserve_dump_area_start = fdm->rgn[0].dest; + fadump_conf->reserve_dump_area_start = be64_to_cpu(fdm->rgn[0].dest); /* * Rarely, but it can so happen that system crashes before all @@ -155,13 +155,14 @@ * Hope the memory that could not be preserved only has pages * that are usually filtered out while saving the vmcore. */ - if (fdm->region_cnt > fdm->registered_regions) { + if (be16_to_cpu(fdm->region_cnt) > be16_to_cpu(fdm->registered_regions)) { pr_warn("Not all memory regions were saved!!!\n"); pr_warn(" Unsaved memory regions:\n"); - i = fdm->registered_regions; - while (i < fdm->region_cnt) { + i = be16_to_cpu(fdm->registered_regions); + while (i < be16_to_cpu(fdm->region_cnt)) { pr_warn("\t[%03d] base: 0x%llx, size: 0x%llx\n", - i, fdm->rgn[i].src, fdm->rgn[i].size); + i, be64_to_cpu(fdm->rgn[i].src), + be64_to_cpu(fdm->rgn[i].size)); i++; } @@ -170,7 +171,7 @@ } fadump_conf->boot_mem_top = (fadump_conf->boot_memory_size + hole_size); - fadump_conf->boot_mem_regs_cnt = fdm->region_cnt; + fadump_conf->boot_mem_regs_cnt = be16_to_cpu(fdm->region_cnt); opal_fadump_update_config(fadump_conf, fdm); } @@ -178,35 +179,38 @@ static void opal_fadump_init_metadata(struct opal_fadump_mem_struct *fdm) { fdm->version = OPAL_FADUMP_VERSION; - fdm->region_cnt = 0; - fdm->registered_regions = 0; - fdm->fadumphdr_addr = 0; + fdm->region_cnt = cpu_to_be16(0); + fdm->registered_regions = cpu_to_be16(0); + fdm->fadumphdr_addr = cpu_to_be64(0); } static u64 opal_fadump_init_mem_struct(struct fw_dump *fadump_conf) { u64 addr = fadump_conf->reserve_dump_area_start; + u16 reg_cnt; int i; opal_fdm = __va(fadump_conf->kernel_metadata); opal_fadump_init_metadata(opal_fdm); /* Boot memory regions */ + reg_cnt = be16_to_cpu(opal_fdm->region_cnt); for (i = 0; i < fadump_conf->boot_mem_regs_cnt; i++) { - opal_fdm->rgn[i].src = fadump_conf->boot_mem_addr[i]; - opal_fdm->rgn[i].dest = addr; - opal_fdm->rgn[i].size = fadump_conf->boot_mem_sz[i]; + opal_fdm->rgn[i].src = cpu_to_be64(fadump_conf->boot_mem_addr[i]); + opal_fdm->rgn[i].dest = cpu_to_be64(addr); + opal_fdm->rgn[i].size = cpu_to_be64(fadump_conf->boot_mem_sz[i]); - opal_fdm->region_cnt++; + reg_cnt++; addr += fadump_conf->boot_mem_sz[i]; } + opal_fdm->region_cnt = cpu_to_be16(reg_cnt); /* * Kernel metadata is passed to f/w and retrieved in capture kerenl. * So, use it to save fadump header address instead of calculating it. */ - opal_fdm->fadumphdr_addr = (opal_fdm->rgn[0].dest + - fadump_conf->boot_memory_size); + opal_fdm->fadumphdr_addr = cpu_to_be64(be64_to_cpu(opal_fdm->rgn[0].dest) + + fadump_conf->boot_memory_size); opal_fadump_update_config(fadump_conf, opal_fdm); @@ -269,18 +273,21 @@ static int opal_fadump_register(struct fw_dump *fadump_conf) { s64 rc = OPAL_PARAMETER; + u16 registered_regs; int i, err = -EIO; - for (i = 0; i < opal_fdm->region_cnt; i++) { + registered_regs = be16_to_cpu(opal_fdm->registered_regions); + for (i = 0; i < be16_to_cpu(opal_fdm->region_cnt); i++) { rc = opal_mpipl_update(OPAL_MPIPL_ADD_RANGE, - opal_fdm->rgn[i].src, - opal_fdm->rgn[i].dest, - opal_fdm->rgn[i].size); + be64_to_cpu(opal_fdm->rgn[i].src), + be64_to_cpu(opal_fdm->rgn[i].dest), + be64_to_cpu(opal_fdm->rgn[i].size)); if (rc != OPAL_SUCCESS) break; - opal_fdm->registered_regions++; + registered_regs++; } + opal_fdm->registered_regions = cpu_to_be16(registered_regs); switch (rc) { case OPAL_SUCCESS: @@ -291,7 +298,8 @@ case OPAL_RESOURCE: /* If MAX regions limit in f/w is hit, warn and proceed. */ pr_warn("%d regions could not be registered for MPIPL as MAX limit is reached!\n", - (opal_fdm->region_cnt - opal_fdm->registered_regions)); + (be16_to_cpu(opal_fdm->region_cnt) - + be16_to_cpu(opal_fdm->registered_regions))); fadump_conf->dump_registered = 1; err = 0; break; @@ -312,7 +320,7 @@ * If some regions were registered before OPAL_MPIPL_ADD_RANGE * OPAL call failed, unregister all regions. */ - if ((err < 0) && (opal_fdm->registered_regions > 0)) + if ((err < 0) && (be16_to_cpu(opal_fdm->registered_regions) > 0)) opal_fadump_unregister(fadump_conf); return err; @@ -328,7 +336,7 @@ return -EIO; } - opal_fdm->registered_regions = 0; + opal_fdm->registered_regions = cpu_to_be16(0); fadump_conf->dump_registered = 0; return 0; } @@ -563,19 +571,20 @@ else fdm_ptr = opal_fdm; - for (i = 0; i < fdm_ptr->region_cnt; i++) { + for (i = 0; i < be16_to_cpu(fdm_ptr->region_cnt); i++) { /* * Only regions that are registered for MPIPL * would have dump data. */ if ((fadump_conf->dump_active) && - (i < fdm_ptr->registered_regions)) - dumped_bytes = fdm_ptr->rgn[i].size; + (i < be16_to_cpu(fdm_ptr->registered_regions))) + dumped_bytes = be64_to_cpu(fdm_ptr->rgn[i].size); seq_printf(m, "DUMP: Src: %#016llx, Dest: %#016llx, ", - fdm_ptr->rgn[i].src, fdm_ptr->rgn[i].dest); + be64_to_cpu(fdm_ptr->rgn[i].src), + be64_to_cpu(fdm_ptr->rgn[i].dest)); seq_printf(m, "Size: %#llx, Dumped: %#llx bytes\n", - fdm_ptr->rgn[i].size, dumped_bytes); + be64_to_cpu(fdm_ptr->rgn[i].size), dumped_bytes); } /* Dump is active. Show reserved area start address. */ @@ -624,6 +633,7 @@ { const __be32 *prop; unsigned long dn; + __be64 be_addr; u64 addr = 0; int i, len; s64 ret; @@ -680,13 +690,13 @@ if (!prop) return; - ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL, &addr); - if ((ret != OPAL_SUCCESS) || !addr) { + ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL, &be_addr); + if ((ret != OPAL_SUCCESS) || !be_addr) { pr_err("Failed to get Kernel metadata (%lld)\n", ret); return; } - addr = be64_to_cpu(addr); + addr = be64_to_cpu(be_addr); pr_debug("Kernel metadata addr: %llx\n", addr); opal_fdm_active = __va(addr); @@ -697,14 +707,14 @@ } /* Kernel regions not registered with f/w for MPIPL */ - if (opal_fdm_active->registered_regions == 0) { + if (be16_to_cpu(opal_fdm_active->registered_regions) == 0) { opal_fdm_active = NULL; return; } - ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_CPU, &addr); - if (addr) { - addr = be64_to_cpu(addr); + ret = opal_mpipl_query_tag(OPAL_MPIPL_TAG_CPU, &be_addr); + if (be_addr) { + addr = be64_to_cpu(be_addr); pr_debug("CPU metadata addr: %llx\n", addr); opal_cpu_metadata = __va(addr); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/opal-fadump.h +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal-fadump.h @@ -31,14 +31,14 @@ * OPAL FADump kernel metadata * * The address of this structure will be registered with f/w for retrieving - * and processing during crash dump. + * in the capture kernel to process the crash dump. */ struct opal_fadump_mem_struct { u8 version; u8 reserved[3]; - u16 region_cnt; /* number of regions */ - u16 registered_regions; /* Regions registered for MPIPL */ - u64 fadumphdr_addr; + __be16 region_cnt; /* number of regions */ + __be16 registered_regions; /* Regions registered for MPIPL */ + __be64 fadumphdr_addr; struct opal_mpipl_region rgn[FADUMP_MAX_MEM_REGS]; } __packed; @@ -135,7 +135,7 @@ for (i = 0; i < regs_cnt; i++, bufp += reg_entry_size) { reg_entry = (struct hdat_fadump_reg_entry *)bufp; val = (cpu_endian ? be64_to_cpu(reg_entry->reg_val) : - reg_entry->reg_val); + (u64)(reg_entry->reg_val)); opal_fadump_set_regval_regnum(regs, be32_to_cpu(reg_entry->reg_type), be32_to_cpu(reg_entry->reg_num), only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/opal-lpc.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal-lpc.c @@ -396,6 +396,7 @@ if (!of_get_property(np, "primary", NULL)) continue; opal_lpc_chip_id = of_get_ibm_chip_id(np); + of_node_put(np); break; } if (opal_lpc_chip_id < 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/opal-prd.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/opal-prd.c @@ -372,6 +372,12 @@ .priority = 0, }; +static struct notifier_block opal_prd_event_nb2 = { + .notifier_call = opal_prd_msg_notifier, + .next = NULL, + .priority = 0, +}; + static int opal_prd_probe(struct platform_device *pdev) { int rc; @@ -393,9 +399,10 @@ return rc; } - rc = opal_message_notifier_register(OPAL_MSG_PRD2, &opal_prd_event_nb); + rc = opal_message_notifier_register(OPAL_MSG_PRD2, &opal_prd_event_nb2); if (rc) { pr_err("Couldn't register PRD2 event notifier\n"); + opal_message_notifier_unregister(OPAL_MSG_PRD, &opal_prd_event_nb); return rc; } @@ -404,6 +411,8 @@ pr_err("failed to register miscdev\n"); opal_message_notifier_unregister(OPAL_MSG_PRD, &opal_prd_event_nb); + opal_message_notifier_unregister(OPAL_MSG_PRD2, + &opal_prd_event_nb2); return rc; } @@ -414,6 +423,7 @@ { misc_deregister(&opal_prd_dev); opal_message_notifier_unregister(OPAL_MSG_PRD, &opal_prd_event_nb); + opal_message_notifier_unregister(OPAL_MSG_PRD2, &opal_prd_event_nb2); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/powernv.h +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/powernv.h @@ -35,4 +35,6 @@ u32 memcons_get_size(struct memcons *mc); struct memcons *memcons_init(struct device_node *node, const char *mc_prop_name); +void pnv_rng_init(void); + #endif /* _POWERNV_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/rng.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/rng.c @@ -17,6 +17,7 @@ #include #include #include +#include "powernv.h" #define DARN_ERR 0xFFFFFFFFFFFFFFFFul @@ -28,7 +29,6 @@ static DEFINE_PER_CPU(struct powernv_rng *, powernv_rng); - int powernv_hwrng_present(void) { struct powernv_rng *rng; @@ -43,7 +43,11 @@ unsigned long parity; /* Calculate the parity of the value */ - asm ("popcntd %0,%1" : "=r" (parity) : "r" (val)); + asm (".machine push; \ + .machine power7; \ + popcntd %0,%1; \ + .machine pop;" + : "=r" (parity) : "r" (val)); /* xor our value with the previous mask */ val ^= rng->mask; @@ -59,6 +63,8 @@ struct powernv_rng *rng; rng = raw_cpu_read(powernv_rng); + if (!rng) + return 0; *v = rng_whiten(rng, __raw_rm_readq(rng->regs_real)); @@ -94,9 +100,6 @@ return 0; } } - - pr_warn("Unable to use DARN for get_random_seed()\n"); - return -EIO; } @@ -159,32 +162,59 @@ rng_init_per_cpu(rng, dn); - pr_info_once("Registering arch random hook.\n"); - ppc_md.get_random_seed = powernv_get_random_long; return 0; } -static __init int rng_init(void) +static int __init pnv_get_random_long_early(unsigned long *v) { struct device_node *dn; - int rc; - for_each_compatible_node(dn, NULL, "ibm,power-rng") { - rc = rng_create(dn); - if (rc) { - pr_err("Failed creating rng for %pOF (%d).\n", - dn, rc); - continue; - } + if (!slab_is_available()) + return 0; - /* Create devices for hwrng driver */ - of_platform_device_create(dn, NULL, NULL); - } + if (cmpxchg(&ppc_md.get_random_seed, pnv_get_random_long_early, + NULL) != pnv_get_random_long_early) + return 0; - initialise_darn(); + for_each_compatible_node(dn, NULL, "ibm,power-rng") + rng_create(dn); + + if (!ppc_md.get_random_seed) + return 0; + return ppc_md.get_random_seed(v); +} + +void __init pnv_rng_init(void) +{ + struct device_node *dn; + + /* Prefer darn over the rest. */ + if (!initialise_darn()) + return; + + dn = of_find_compatible_node(NULL, NULL, "ibm,power-rng"); + if (dn) + ppc_md.get_random_seed = pnv_get_random_long_early; + + of_node_put(dn); +} + +static int __init pnv_rng_late_init(void) +{ + struct device_node *dn; + unsigned long v; + + /* In case it wasn't called during init for some other reason. */ + if (ppc_md.get_random_seed == pnv_get_random_long_early) + pnv_get_random_long_early(&v); + + if (ppc_md.get_random_seed == powernv_get_random_long) { + for_each_compatible_node(dn, NULL, "ibm,power-rng") + of_platform_device_create(dn, NULL, NULL); + } return 0; } -machine_subsys_initcall(powernv, rng_init); +machine_subsys_initcall(powernv, pnv_rng_late_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/powernv/ultravisor.c +++ linux-azure-5.4.0/arch/powerpc/platforms/powernv/ultravisor.c @@ -55,6 +55,7 @@ return -ENODEV; uv_memcons = memcons_init(node, "memcons"); + of_node_put(node); if (!uv_memcons) return -ENOENT; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/platforms/pseries/pseries.h +++ linux-azure-5.4.0/arch/powerpc/platforms/pseries/pseries.h @@ -114,4 +114,6 @@ void pseries_setup_rfi_flush(void); void pseries_lpar_read_hblkrm_characteristics(void); +void pseries_rng_init(void); + #endif /* _PSERIES_PSERIES_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/dart_iommu.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/dart_iommu.c @@ -403,9 +403,10 @@ } /* Initialize the DART HW */ - if (dart_init(dn) != 0) + if (dart_init(dn) != 0) { + of_node_put(dn); return; - + } /* * U4 supports a DART bypass, we use it for 64-bit capable devices to * improve performance. However, that only works for devices connected @@ -418,6 +419,7 @@ /* Setup pci_dma ops */ set_pci_dma_ops(&dma_iommu_ops); + of_node_put(dn); } #ifdef CONFIG_PM only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/dcr-low.S +++ linux-azure-5.4.0/arch/powerpc/sysdev/dcr-low.S @@ -11,7 +11,7 @@ #include #define DCR_ACCESS_PROLOG(table) \ - cmpli cr0,r3,1024; \ + cmplwi cr0,r3,1024; \ rlwinm r3,r3,4,18,27; \ lis r5,table@h; \ ori r5,r5,table@l; \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/fsl_gtm.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/fsl_gtm.c @@ -86,7 +86,7 @@ */ struct gtm_timer *gtm_get_timer16(void) { - struct gtm *gtm = NULL; + struct gtm *gtm; int i; list_for_each_entry(gtm, >ms, list_node) { @@ -103,7 +103,7 @@ spin_unlock_irq(>m->lock); } - if (gtm) + if (!list_empty(>ms)) return ERR_PTR(-EBUSY); return ERR_PTR(-ENODEV); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/fsl_msi.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/fsl_msi.c @@ -211,8 +211,10 @@ dev_err(&pdev->dev, "node %pOF has an invalid fsl,msi phandle %u\n", hose->dn, np->phandle); + of_node_put(np); return -EINVAL; } + of_node_put(np); } for_each_pci_msi_entry(entry, pdev) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/fsl_pci.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/fsl_pci.c @@ -520,6 +520,7 @@ struct resource rsrc; const int *bus_range; u8 hdr_type, progif; + u32 class_code; struct device_node *dev; struct ccsr_pci __iomem *pci; u16 temp; @@ -593,6 +594,13 @@ PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS; if (fsl_pcie_check_link(hose)) hose->indirect_type |= PPC_INDIRECT_TYPE_NO_PCIE_LINK; + /* Fix Class Code to PCI_CLASS_BRIDGE_PCI_NORMAL for pre-3.0 controller */ + if (in_be32(&pci->block_rev1) < PCIE_IP_REV_3_0) { + early_read_config_dword(hose, 0, 0, PCIE_FSL_CSR_CLASSCODE, &class_code); + class_code &= 0xff; + class_code |= PCI_CLASS_BRIDGE_PCI_NORMAL << 8; + early_write_config_dword(hose, 0, 0, PCIE_FSL_CSR_CLASSCODE, class_code); + } } else { /* * Set PBFR(PCI Bus Function Register)[10] = 1 to only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/fsl_pci.h +++ linux-azure-5.4.0/arch/powerpc/sysdev/fsl_pci.h @@ -18,6 +18,7 @@ #define PCIE_LTSSM 0x0404 /* PCIE Link Training and Status */ #define PCIE_LTSSM_L0 0x16 /* L0 state */ +#define PCIE_FSL_CSR_CLASSCODE 0x474 /* FSL GPEX CSR */ #define PCIE_IP_REV_2_2 0x02080202 /* PCIE IP block version Rev2.2 */ #define PCIE_IP_REV_3_0 0x02080300 /* PCIE IP block version Rev3.0 */ #define PIWAR_EN 0x80000000 /* Enable */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/fsl_rio.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/fsl_rio.c @@ -505,8 +505,10 @@ if (rc) { dev_err(&dev->dev, "Can't get %pOF property 'reg'\n", rmu_node); + of_node_put(rmu_node); goto err_rmu; } + of_node_put(rmu_node); rmu_regs_win = ioremap(rmu_regs.start, resource_size(&rmu_regs)); if (!rmu_regs_win) { dev_err(&dev->dev, "Unable to map rmu register window\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/powerpc/sysdev/xics/icp-opal.c +++ linux-azure-5.4.0/arch/powerpc/sysdev/xics/icp-opal.c @@ -195,6 +195,7 @@ printk("XICS: Using OPAL ICP fallbacks\n"); + of_node_put(np); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/Makefile +++ linux-azure-5.4.0/arch/riscv/Makefile @@ -34,11 +34,28 @@ KBUILD_LDFLAGS += -melf32lriscv endif +ifeq ($(CONFIG_LD_IS_LLD),y) +ifeq ($(shell test $(CONFIG_LLD_VERSION) -lt 150000; echo $$?),0) + KBUILD_CFLAGS += -mno-relax + KBUILD_AFLAGS += -mno-relax +ifneq ($(LLVM_IAS),1) + KBUILD_CFLAGS += -Wa,-mno-relax + KBUILD_AFLAGS += -Wa,-mno-relax +endif +endif +endif + # ISA string setting riscv-march-$(CONFIG_ARCH_RV32I) := rv32ima riscv-march-$(CONFIG_ARCH_RV64I) := rv64ima 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 + KBUILD_CFLAGS += -march=$(subst fd,,$(riscv-march-y)) KBUILD_AFLAGS += -march=$(riscv-march-y) @@ -59,6 +76,7 @@ endif KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax) +KBUILD_AFLAGS_MODULE += $(call as-option,-Wa$(comma)-mno-relax) # GCC versions that support the "-mstrict-align" option default to allowing # unaligned accesses. While unaligned accesses are explicitly allowed in the only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/include/asm/asm-prototypes.h +++ linux-azure-5.4.0/arch/riscv/include/asm/asm-prototypes.h @@ -4,4 +4,8 @@ #include #include +long long __lshrti3(long long a, int b); +long long __ashrti3(long long a, int b); +long long __ashlti3(long long a, int b); + #endif /* _ASM_RISCV_PROTOTYPES_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/include/asm/io.h +++ linux-azure-5.4.0/arch/riscv/include/asm/io.h @@ -252,9 +252,9 @@ __io_reads_ins(ins, u8, b, __io_pbr(), __io_par(addr)) __io_reads_ins(ins, u16, w, __io_pbr(), __io_par(addr)) __io_reads_ins(ins, u32, l, __io_pbr(), __io_par(addr)) -#define insb(addr, buffer, count) __insb((void __iomem *)(long)addr, buffer, count) -#define insw(addr, buffer, count) __insw((void __iomem *)(long)addr, buffer, count) -#define insl(addr, buffer, count) __insl((void __iomem *)(long)addr, buffer, count) +#define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count) +#define insw(addr, buffer, count) __insw(PCI_IOBASE + (addr), buffer, count) +#define insl(addr, buffer, count) __insl(PCI_IOBASE + (addr), buffer, count) __io_writes_outs(writes, u8, b, __io_bw(), __io_aw()) __io_writes_outs(writes, u16, w, __io_bw(), __io_aw()) @@ -266,22 +266,22 @@ __io_writes_outs(outs, u8, b, __io_pbw(), __io_paw()) __io_writes_outs(outs, u16, w, __io_pbw(), __io_paw()) __io_writes_outs(outs, u32, l, __io_pbw(), __io_paw()) -#define outsb(addr, buffer, count) __outsb((void __iomem *)(long)addr, buffer, count) -#define outsw(addr, buffer, count) __outsw((void __iomem *)(long)addr, buffer, count) -#define outsl(addr, buffer, count) __outsl((void __iomem *)(long)addr, buffer, count) +#define outsb(addr, buffer, count) __outsb(PCI_IOBASE + (addr), buffer, count) +#define outsw(addr, buffer, count) __outsw(PCI_IOBASE + (addr), buffer, count) +#define outsl(addr, buffer, count) __outsl(PCI_IOBASE + (addr), buffer, count) #ifdef CONFIG_64BIT __io_reads_ins(reads, u64, q, __io_br(), __io_ar(addr)) #define readsq(addr, buffer, count) __readsq(addr, buffer, count) __io_reads_ins(ins, u64, q, __io_pbr(), __io_par(addr)) -#define insq(addr, buffer, count) __insq((void __iomem *)addr, buffer, count) +#define insq(addr, buffer, count) __insq(PCI_IOBASE + (addr), buffer, count) __io_writes_outs(writes, u64, q, __io_bw(), __io_aw()) #define writesq(addr, buffer, count) __writesq(addr, buffer, count) __io_writes_outs(outs, u64, q, __io_pbr(), __io_paw()) -#define outsq(addr, buffer, count) __outsq((void __iomem *)addr, buffer, count) +#define outsq(addr, buffer, count) __outsq(PCI_IOBASE + (addr), buffer, count) #endif #include only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/include/asm/processor.h +++ linux-azure-5.4.0/arch/riscv/include/asm/processor.h @@ -22,6 +22,8 @@ #ifndef __ASSEMBLY__ +#include + struct task_struct; struct pt_regs; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/include/uapi/asm/unistd.h +++ linux-azure-5.4.0/arch/riscv/include/uapi/asm/unistd.h @@ -18,9 +18,10 @@ #ifdef __LP64__ #define __ARCH_WANT_NEW_STAT #define __ARCH_WANT_SET_GET_RLIMIT -#define __ARCH_WANT_SYS_CLONE3 #endif /* __LP64__ */ +#define __ARCH_WANT_SYS_CLONE3 + #include /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/kernel/cacheinfo.c +++ linux-azure-5.4.0/arch/riscv/kernel/cacheinfo.c @@ -16,7 +16,7 @@ this_leaf->type = type; } -static int __init_cache_level(unsigned int cpu) +int init_cache_level(unsigned int cpu) { struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); struct device_node *np = of_cpu_device_node_get(cpu); @@ -58,7 +58,7 @@ return 0; } -static int __populate_cache_leaves(unsigned int cpu) +int populate_cache_leaves(unsigned int cpu) { struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); struct cacheinfo *this_leaf = this_cpu_ci->info_list; @@ -95,6 +95,3 @@ return 0; } - -DEFINE_SMP_CALL_CACHE_FUNCTION(init_cache_level) -DEFINE_SMP_CALL_CACHE_FUNCTION(populate_cache_leaves) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/kernel/module.lds +++ linux-azure-5.4.0/arch/riscv/kernel/module.lds @@ -2,7 +2,7 @@ /* Copyright (C) 2017 Andes Technology Corporation */ SECTIONS { - .plt (NOLOAD) : { BYTE(0) } - .got (NOLOAD) : { BYTE(0) } - .got.plt (NOLOAD) : { BYTE(0) } + .plt : { BYTE(0) } + .got : { BYTE(0) } + .got.plt : { BYTE(0) } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/kernel/perf_callchain.c +++ linux-azure-5.4.0/arch/riscv/kernel/perf_callchain.c @@ -60,10 +60,11 @@ void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); unsigned long fp = 0; /* RISC-V does not support perf in guest mode. */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) + if (guest_cbs && guest_cbs->is_in_guest()) return; fp = regs->s0; @@ -76,7 +77,7 @@ bool fill_callchain(unsigned long pc, void *entry) { - return perf_callchain_store(entry, pc); + return perf_callchain_store(entry, pc) == 0; } void notrace walk_stackframe(struct task_struct *task, @@ -84,8 +85,10 @@ void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) { + struct perf_guest_info_callbacks *guest_cbs = perf_get_guest_cbs(); + /* RISC-V does not support perf in guest mode. */ - if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) { + if (guest_cbs && guest_cbs->is_in_guest()) { pr_warn("RISC-V does not support perf in guest mode!"); return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/kernel/smpboot.c +++ linux-azure-5.4.0/arch/riscv/kernel/smpboot.c @@ -46,6 +46,8 @@ { int cpuid; + store_cpu_topology(smp_processor_id()); + /* This covers non-smp usecase mandated by "nosmp" option */ if (max_cpus == 0) return; @@ -142,8 +144,8 @@ current->active_mm = mm; trap_init(); + store_cpu_topology(smp_processor_id()); notify_cpu_starting(smp_processor_id()); - update_siblings_masks(smp_processor_id()); set_cpu_online(smp_processor_id(), 1); /* * Remote TLB flushes are ignored while the CPU is offline, so emit only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/kernel/traps.c +++ linux-azure-5.4.0/arch/riscv/kernel/traps.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -43,6 +44,9 @@ ret = notify_die(DIE_OOPS, str, regs, 0, regs->scause, SIGSEGV); + if (regs && kexec_should_crash(current)) + crash_kexec(regs); + bust_spinlocks(0); add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); spin_unlock_irq(&die_lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/riscv/lib/tishift.S +++ linux-azure-5.4.0/arch/riscv/lib/tishift.S @@ -4,34 +4,73 @@ */ #include +#include -ENTRY(__lshrti3) +SYM_FUNC_START(__lshrti3) beqz a2, .L1 li a5,64 sub a5,a5,a2 - addi sp,sp,-16 sext.w a4,a5 blez a5, .L2 sext.w a2,a2 - sll a4,a1,a4 srl a0,a0,a2 - srl a1,a1,a2 + sll a4,a1,a4 + srl a2,a1,a2 or a0,a0,a4 - sd a1,8(sp) - sd a0,0(sp) - ld a0,0(sp) - ld a1,8(sp) - addi sp,sp,16 - ret + mv a1,a2 .L1: ret .L2: - negw a4,a4 - srl a1,a1,a4 - sd a1,0(sp) - sd zero,8(sp) - ld a0,0(sp) - ld a1,8(sp) - addi sp,sp,16 + negw a0,a4 + li a2,0 + srl a0,a1,a0 + mv a1,a2 + ret +SYM_FUNC_END(__lshrti3) +EXPORT_SYMBOL(__lshrti3) + +SYM_FUNC_START(__ashrti3) + beqz a2, .L3 + li a5,64 + sub a5,a5,a2 + sext.w a4,a5 + blez a5, .L4 + sext.w a2,a2 + srl a0,a0,a2 + sll a4,a1,a4 + sra a2,a1,a2 + or a0,a0,a4 + mv a1,a2 +.L3: + ret +.L4: + negw a0,a4 + srai a2,a1,0x3f + sra a0,a1,a0 + mv a1,a2 + ret +SYM_FUNC_END(__ashrti3) +EXPORT_SYMBOL(__ashrti3) + +SYM_FUNC_START(__ashlti3) + beqz a2, .L5 + li a5,64 + sub a5,a5,a2 + sext.w a4,a5 + blez a5, .L6 + sext.w a2,a2 + sll a1,a1,a2 + srl a4,a0,a4 + sll a2,a0,a2 + or a1,a1,a4 + mv a0,a2 +.L5: + ret +.L6: + negw a1,a4 + li a2,0 + sll a1,a0,a1 + mv a0,a2 ret -ENDPROC(__lshrti3) +SYM_FUNC_END(__ashlti3) +EXPORT_SYMBOL(__ashlti3) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/appldata/appldata_os.c +++ linux-azure-5.4.0/arch/s390/appldata/appldata_os.c @@ -75,7 +75,7 @@ (waiting for I/O) */ /* per cpu data */ - struct appldata_os_per_cpu os_cpu[0]; + struct appldata_os_per_cpu os_cpu[]; } __attribute__((packed)); static struct appldata_os_data *appldata_os_data; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/boot/compressed/vmlinux.lds.S +++ linux-azure-5.4.0/arch/s390/boot/compressed/vmlinux.lds.S @@ -78,10 +78,19 @@ _compressed_start = .; *(.vmlinux.bin.compressed) _compressed_end = .; - FILL(0xff); - . = ALIGN(4096); } - . = ALIGN(256); + +#define SB_TRAILER_SIZE 32 + /* Trailer needed for Secure Boot */ + . += SB_TRAILER_SIZE; /* make sure .sb.trailer does not overwrite the previous section */ + . = ALIGN(4096) - SB_TRAILER_SIZE; + .sb.trailer : { + QUAD(0) + QUAD(0) + QUAD(0) + QUAD(0x000000207a49504c) + } + .bss : { _bss = . ; *(.bss) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/boot/mem_detect.c +++ linux-azure-5.4.0/arch/s390/boot/mem_detect.c @@ -70,24 +70,27 @@ register unsigned long _ry asm("4") = 0x10; /* storage configuration */ int rc = -1; /* fail */ unsigned long reg1, reg2; - psw_t old = S390_lowcore.program_new_psw; + psw_t old; asm volatile( + " mvc 0(16,%[psw_old]),0(%[psw_pgm])\n" " epsw %0,%1\n" - " st %0,%[psw_pgm]\n" - " st %1,%[psw_pgm]+4\n" + " st %0,0(%[psw_pgm])\n" + " st %1,4(%[psw_pgm])\n" " larl %0,1f\n" - " stg %0,%[psw_pgm]+8\n" + " stg %0,8(%[psw_pgm])\n" " diag %[rx],%[ry],0x260\n" " ipm %[rc]\n" " srl %[rc],28\n" - "1:\n" + "1: mvc 0(16,%[psw_pgm]),0(%[psw_old])\n" : "=&d" (reg1), "=&a" (reg2), - [psw_pgm] "=Q" (S390_lowcore.program_new_psw), + "+Q" (S390_lowcore.program_new_psw), + "=Q" (old), [rc] "+&d" (rc), [ry] "+d" (_ry) - : [rx] "d" (_rx1), "d" (_rx2) + : [rx] "d" (_rx1), "d" (_rx2), + [psw_old] "a" (&old), + [psw_pgm] "a" (&S390_lowcore.program_new_psw) : "cc", "memory"); - S390_lowcore.program_new_psw = old; return rc == 0 ? _ry : -1; } @@ -112,24 +115,30 @@ static int tprot(unsigned long addr) { - unsigned long pgm_addr; + unsigned long reg1, reg2; int rc = -EFAULT; - psw_t old = S390_lowcore.program_new_psw; + psw_t old; - S390_lowcore.program_new_psw.mask = __extract_psw(); asm volatile( - " larl %[pgm_addr],1f\n" - " stg %[pgm_addr],%[psw_pgm_addr]\n" + " mvc 0(16,%[psw_old]),0(%[psw_pgm])\n" + " epsw %[reg1],%[reg2]\n" + " st %[reg1],0(%[psw_pgm])\n" + " st %[reg2],4(%[psw_pgm])\n" + " larl %[reg1],1f\n" + " stg %[reg1],8(%[psw_pgm])\n" " tprot 0(%[addr]),0\n" " ipm %[rc]\n" " srl %[rc],28\n" - "1:\n" - : [pgm_addr] "=&d"(pgm_addr), - [psw_pgm_addr] "=Q"(S390_lowcore.program_new_psw.addr), - [rc] "+&d"(rc) - : [addr] "a"(addr) + "1: mvc 0(16,%[psw_pgm]),0(%[psw_old])\n" + : [reg1] "=&d" (reg1), + [reg2] "=&a" (reg2), + [rc] "+&d" (rc), + "=Q" (S390_lowcore.program_new_psw.addr), + "=Q" (old) + : [psw_old] "a" (&old), + [psw_pgm] "a" (&S390_lowcore.program_new_psw), + [addr] "a" (addr) : "cc", "memory"); - S390_lowcore.program_new_psw = old; return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/boot/text_dma.S +++ linux-azure-5.4.0/arch/s390/boot/text_dma.S @@ -9,16 +9,6 @@ #include #include -#ifdef CC_USING_EXPOLINE - .pushsection .dma.text.__s390_indirect_jump_r14,"axG" -__dma__s390_indirect_jump_r14: - larl %r1,0f - ex 0,0(%r1) - j . -0: br %r14 - .popsection -#endif - .section .dma.text,"ax" /* * Simplified version of expoline thunk. The normal thunks can not be used here, @@ -27,11 +17,10 @@ * affects a few functions that are not performance-relevant. */ .macro BR_EX_DMA_r14 -#ifdef CC_USING_EXPOLINE - jg __dma__s390_indirect_jump_r14 -#else - br %r14 -#endif + larl %r1,0f + ex 0,0(%r1) + j . +0: br %r14 .endm /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/configs/debug_defconfig +++ linux-azure-5.4.0/arch/s390/configs/debug_defconfig @@ -62,7 +62,6 @@ CONFIG_KPROBES=y CONFIG_JUMP_LABEL=y CONFIG_STATIC_KEYS_SELFTEST=y -CONFIG_REFCOUNT_FULL=y CONFIG_LOCK_EVENT_COUNTS=y CONFIG_MODULES=y CONFIG_MODULE_FORCE_LOAD=y only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/crypto/aes_s390.c +++ linux-azure-5.4.0/arch/s390/crypto/aes_s390.c @@ -861,7 +861,7 @@ unsigned int nbytes) { gw->walk_bytes_remain -= nbytes; - scatterwalk_unmap(&gw->walk); + scatterwalk_unmap(gw->walk_ptr); scatterwalk_advance(&gw->walk, nbytes); scatterwalk_done(&gw->walk, 0, gw->walk_bytes_remain); gw->walk_ptr = NULL; @@ -936,7 +936,7 @@ goto out; } - scatterwalk_unmap(&gw->walk); + scatterwalk_unmap(gw->walk_ptr); gw->walk_ptr = NULL; gw->ptr = gw->buf; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/hypfs/hypfs_diag.c +++ linux-azure-5.4.0/arch/s390/hypfs/hypfs_diag.c @@ -437,7 +437,7 @@ int rc; if (diag204_probe()) { - pr_err("The hardware system does not support hypfs\n"); + pr_info("The hardware system does not support hypfs\n"); return -ENODATA; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/hypfs/hypfs_vm.c +++ linux-azure-5.4.0/arch/s390/hypfs/hypfs_vm.c @@ -20,6 +20,7 @@ static char local_guest[] = " "; static char all_guests[] = "* "; +static char *all_groups = all_guests; static char *guest_query; struct diag2fc_data { @@ -62,10 +63,11 @@ memcpy(parm_list.userid, query, NAME_LEN); ASCEBC(parm_list.userid, NAME_LEN); - parm_list.addr = (unsigned long) addr ; + memcpy(parm_list.aci_grp, all_groups, NAME_LEN); + ASCEBC(parm_list.aci_grp, NAME_LEN); + parm_list.addr = (unsigned long)addr; parm_list.size = size; parm_list.fmt = 0x02; - memset(parm_list.aci_grp, 0x40, NAME_LEN); rc = -1; diag_stat_inc(DIAG_STAT_X2FC); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/hypfs/inode.c +++ linux-azure-5.4.0/arch/s390/hypfs/inode.c @@ -501,9 +501,9 @@ hypfs_vm_exit(); fail_hypfs_diag_exit: hypfs_diag_exit(); + pr_err("Initialization of hypfs failed with rc=%i\n", rc); fail_dbfs_exit: hypfs_dbfs_exit(); - pr_err("Initialization of hypfs failed with rc=%i\n", rc); return rc; } device_initcall(hypfs_init) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/archrandom.h +++ linux-azure-5.4.0/arch/s390/include/asm/archrandom.h @@ -2,7 +2,7 @@ /* * Kernel interface for the s390 arch_random_* functions * - * Copyright IBM Corp. 2017 + * Copyright IBM Corp. 2017, 2022 * * Author: Harald Freudenberger * @@ -14,47 +14,41 @@ #ifdef CONFIG_ARCH_RANDOM #include +#include #include +#include DECLARE_STATIC_KEY_FALSE(s390_arch_random_available); extern atomic64_t s390_arch_random_counter; -bool s390_arch_random_generate(u8 *buf, unsigned int nbytes); - -static inline bool arch_has_random(void) -{ - return false; -} - -static inline bool arch_has_random_seed(void) -{ - if (static_branch_likely(&s390_arch_random_available)) - return true; - return false; -} - -static inline bool arch_get_random_long(unsigned long *v) +static inline bool __must_check arch_get_random_long(unsigned long *v) { return false; } -static inline bool arch_get_random_int(unsigned int *v) +static inline bool __must_check arch_get_random_int(unsigned int *v) { return false; } -static inline bool arch_get_random_seed_long(unsigned long *v) +static inline bool __must_check arch_get_random_seed_long(unsigned long *v) { - if (static_branch_likely(&s390_arch_random_available)) { - return s390_arch_random_generate((u8 *)v, sizeof(*v)); + if (static_branch_likely(&s390_arch_random_available) && + in_task()) { + cpacf_trng(NULL, 0, (u8 *)v, sizeof(*v)); + atomic64_add(sizeof(*v), &s390_arch_random_counter); + return true; } return false; } -static inline bool arch_get_random_seed_int(unsigned int *v) +static inline bool __must_check arch_get_random_seed_int(unsigned int *v) { - if (static_branch_likely(&s390_arch_random_available)) { - return s390_arch_random_generate((u8 *)v, sizeof(*v)); + if (static_branch_likely(&s390_arch_random_available) && + in_task()) { + cpacf_trng(NULL, 0, (u8 *)v, sizeof(*v)); + atomic64_add(sizeof(*v), &s390_arch_random_counter); + return true; } return false; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/cpu_mf.h +++ linux-azure-5.4.0/arch/s390/include/asm/cpu_mf.h @@ -109,7 +109,9 @@ unsigned int AS:2; /* 29-30 PSW address-space control */ unsigned int I:1; /* 31 entry valid or invalid */ unsigned int CL:2; /* 32-33 Configuration Level */ - unsigned int:14; + unsigned int H:1; /* 34 Host Indicator */ + unsigned int LS:1; /* 35 Limited Sampling */ + unsigned int:12; unsigned int prim_asn:16; /* primary ASN */ unsigned long long ia; /* Instruction Address */ unsigned long long gpp; /* Guest Program Parameter */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/ctl_reg.h +++ linux-azure-5.4.0/arch/s390/include/asm/ctl_reg.h @@ -11,6 +11,8 @@ #include #define CR0_CLOCK_COMPARATOR_SIGN BIT(63 - 10) +#define CR0_FETCH_PROTECTION_OVERRIDE BIT(63 - 38) +#define CR0_STORAGE_PROTECTION_OVERRIDE BIT(63 - 39) #define CR0_EMERGENCY_SIGNAL_SUBMASK BIT(63 - 49) #define CR0_EXTERNAL_CALL_SUBMASK BIT(63 - 50) #define CR0_CLOCK_COMPARATOR_SUBMASK BIT(63 - 52) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/diag.h +++ linux-azure-5.4.0/arch/s390/include/asm/diag.h @@ -298,10 +298,8 @@ union diag318_info { unsigned long val; struct { - unsigned int cpnc : 8; - unsigned int cpvc_linux : 24; - unsigned char cpvc_distro[3]; - unsigned char zero; + unsigned long cpnc : 8; + unsigned long cpvc : 56; }; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/ftrace.h +++ linux-azure-5.4.0/arch/s390/include/asm/ftrace.h @@ -27,6 +27,7 @@ extern char ftrace_graph_caller_end; extern unsigned long ftrace_plt; +extern void *ftrace_func; struct dyn_arch_ftrace { }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/futex.h +++ linux-azure-5.4.0/arch/s390/include/asm/futex.h @@ -16,7 +16,8 @@ "3: jl 1b\n" \ " lhi %0,0\n" \ "4: sacf 768\n" \ - EX_TABLE(0b,4b) EX_TABLE(2b,4b) EX_TABLE(3b,4b) \ + EX_TABLE(0b,4b) EX_TABLE(1b,4b) \ + EX_TABLE(2b,4b) EX_TABLE(3b,4b) \ : "=d" (ret), "=&d" (oldval), "=&d" (newval), \ "=m" (*uaddr) \ : "0" (-EFAULT), "d" (oparg), "a" (uaddr), \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/hugetlb.h +++ linux-azure-5.4.0/arch/s390/include/asm/hugetlb.h @@ -35,9 +35,11 @@ static inline int prepare_hugepage_range(struct file *file, unsigned long addr, unsigned long len) { - if (len & ~HPAGE_MASK) + struct hstate *h = hstate_file(file); + + if (len & ~huge_page_mask(h)) return -EINVAL; - if (addr & ~HPAGE_MASK) + if (addr & ~huge_page_mask(h)) return -EINVAL; return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/kexec.h +++ linux-azure-5.4.0/arch/s390/include/asm/kexec.h @@ -9,6 +9,8 @@ #ifndef _S390_KEXEC_H #define _S390_KEXEC_H +#include + #include #include #include @@ -74,7 +76,21 @@ int arch_kexec_do_relocs(int r_type, void *loc, unsigned long val, unsigned long addr); +#define ARCH_HAS_KIMAGE_ARCH + +struct kimage_arch { + void *ipl_buf; +}; + extern const struct kexec_file_ops s390_kexec_image_ops; extern const struct kexec_file_ops s390_kexec_elf_ops; +#ifdef CONFIG_KEXEC_FILE +struct purgatory_info; +int arch_kexec_apply_relocations_add(struct purgatory_info *pi, + Elf_Shdr *section, + const Elf_Shdr *relsec, + const Elf_Shdr *symtab); +#define arch_kexec_apply_relocations_add arch_kexec_apply_relocations_add +#endif #endif /*_S390_KEXEC_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/preempt.h +++ linux-azure-5.4.0/arch/s390/include/asm/preempt.h @@ -52,10 +52,17 @@ static inline void __preempt_count_add(int val) { - if (__builtin_constant_p(val) && (val >= -128) && (val <= 127)) - __atomic_add_const(val, &S390_lowcore.preempt_count); - else - __atomic_add(val, &S390_lowcore.preempt_count); + /* + * With some obscure config options and CONFIG_PROFILE_ALL_BRANCHES + * enabled, gcc 12 fails to handle __builtin_constant_p(). + */ + if (!IS_ENABLED(CONFIG_PROFILE_ALL_BRANCHES)) { + if (__builtin_constant_p(val) && (val >= -128) && (val <= 127)) { + __atomic_add_const(val, &S390_lowcore.preempt_count); + return; + } + } + __atomic_add(val, &S390_lowcore.preempt_count); } static inline void __preempt_count_sub(int val) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/asm/sclp.h +++ linux-azure-5.4.0/arch/s390/include/asm/sclp.h @@ -129,6 +129,8 @@ int sclp_chp_read_info(struct sclp_chp_info *info); int sclp_pci_configure(u32 fid); int sclp_pci_deconfigure(u32 fid); +int sclp_ap_configure(u32 apid); +int sclp_ap_deconfigure(u32 apid); int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid); int memcpy_hsa_kernel(void *dest, unsigned long src, size_t count); int memcpy_hsa_user(void __user *dest, unsigned long src, size_t count); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/include/uapi/asm/kvm.h +++ linux-azure-5.4.0/arch/s390/include/uapi/asm/kvm.h @@ -231,11 +231,13 @@ #define KVM_SYNC_GSCB (1UL << 9) #define KVM_SYNC_BPBC (1UL << 10) #define KVM_SYNC_ETOKEN (1UL << 11) +#define KVM_SYNC_DIAG318 (1UL << 12) #define KVM_SYNC_S390_VALID_FIELDS \ (KVM_SYNC_PREFIX | KVM_SYNC_GPRS | KVM_SYNC_ACRS | KVM_SYNC_CRS | \ KVM_SYNC_ARCH0 | KVM_SYNC_PFAULT | KVM_SYNC_VRS | KVM_SYNC_RICCB | \ - KVM_SYNC_FPRS | KVM_SYNC_GSCB | KVM_SYNC_BPBC | KVM_SYNC_ETOKEN) + KVM_SYNC_FPRS | KVM_SYNC_GSCB | KVM_SYNC_BPBC | KVM_SYNC_ETOKEN | \ + KVM_SYNC_DIAG318) /* length and alignment of the sdnx as a power of two */ #define SDNXC 8 @@ -264,7 +266,8 @@ __u8 reserved2 : 7; __u8 padding1[51]; /* riccb needs to be 64byte aligned */ __u8 riccb[64]; /* runtime instrumentation controls block */ - __u8 padding2[192]; /* sdnx needs to be 256byte aligned */ + __u64 diag318; /* diagnose 0x318 info */ + __u8 padding2[184]; /* sdnx needs to be 256byte aligned */ union { __u8 sdnx[SDNXL]; /* state description annex */ struct { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/kernel/jump_label.c +++ linux-azure-5.4.0/arch/s390/kernel/jump_label.c @@ -36,7 +36,7 @@ unsigned char *ipe = (unsigned char *)expected; unsigned char *ipn = (unsigned char *)new; - pr_emerg("Jump label code mismatch at %pS [%p]\n", ipc, ipc); + pr_emerg("Jump label code mismatch at %pS [%px]\n", ipc, ipc); pr_emerg("Found: %6ph\n", ipc); pr_emerg("Expected: %6ph\n", ipe); pr_emerg("New: %6ph\n", ipn); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/kernel/vmlinux.lds.S +++ linux-azure-5.4.0/arch/s390/kernel/vmlinux.lds.S @@ -124,6 +124,7 @@ /* * Table with the patch locations to undo expolines */ + . = ALIGN(4); .nospec_call_table : { __nospec_call_start = . ; *(.s390_indirect*) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/kvm/gaccess.c +++ linux-azure-5.4.0/arch/s390/kvm/gaccess.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -794,48 +795,268 @@ return 1; } -static int guest_page_range(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, - unsigned long *pages, unsigned long nr_pages, - const union asce asce, enum gacc_mode mode) +static int vm_check_access_key(struct kvm *kvm, u8 access_key, + enum gacc_mode mode, gpa_t gpa) +{ + u8 storage_key, access_control; + bool fetch_protected; + unsigned long hva; + int r; + + if (access_key == 0) + return 0; + + hva = gfn_to_hva(kvm, gpa_to_gfn(gpa)); + if (kvm_is_error_hva(hva)) + return PGM_ADDRESSING; + + down_read(¤t->mm->mmap_sem); + r = get_guest_storage_key(current->mm, hva, &storage_key); + up_read(¤t->mm->mmap_sem); + if (r) + return r; + access_control = FIELD_GET(_PAGE_ACC_BITS, storage_key); + if (access_control == access_key) + return 0; + fetch_protected = storage_key & _PAGE_FP_BIT; + if ((mode == GACC_FETCH || mode == GACC_IFETCH) && !fetch_protected) + return 0; + return PGM_PROTECTION; +} + +static bool fetch_prot_override_applicable(struct kvm_vcpu *vcpu, enum gacc_mode mode, + union asce asce) +{ + psw_t *psw = &vcpu->arch.sie_block->gpsw; + unsigned long override; + + if (mode == GACC_FETCH || mode == GACC_IFETCH) { + /* check if fetch protection override enabled */ + override = vcpu->arch.sie_block->gcr[0]; + override &= CR0_FETCH_PROTECTION_OVERRIDE; + /* not applicable if subject to DAT && private space */ + override = override && !(psw_bits(*psw).dat && asce.p); + return override; + } + return false; +} + +static bool fetch_prot_override_applies(unsigned long ga, unsigned int len) +{ + return ga < 2048 && ga + len <= 2048; +} + +static bool storage_prot_override_applicable(struct kvm_vcpu *vcpu) +{ + /* check if storage protection override enabled */ + return vcpu->arch.sie_block->gcr[0] & CR0_STORAGE_PROTECTION_OVERRIDE; +} + +static bool storage_prot_override_applies(u8 access_control) +{ + /* matches special storage protection override key (9) -> allow */ + return access_control == PAGE_SPO_ACC; +} + +static int vcpu_check_access_key(struct kvm_vcpu *vcpu, u8 access_key, + enum gacc_mode mode, union asce asce, gpa_t gpa, + unsigned long ga, unsigned int len) +{ + u8 storage_key, access_control; + unsigned long hva; + int r; + + /* access key 0 matches any storage key -> allow */ + if (access_key == 0) + return 0; + /* + * caller needs to ensure that gfn is accessible, so we can + * assume that this cannot fail + */ + hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(gpa)); + down_read(¤t->mm->mmap_sem); + r = get_guest_storage_key(current->mm, hva, &storage_key); + up_read(¤t->mm->mmap_sem); + if (r) + return r; + access_control = FIELD_GET(_PAGE_ACC_BITS, storage_key); + /* access key matches storage key -> allow */ + if (access_control == access_key) + return 0; + if (mode == GACC_FETCH || mode == GACC_IFETCH) { + /* it is a fetch and fetch protection is off -> allow */ + if (!(storage_key & _PAGE_FP_BIT)) + return 0; + if (fetch_prot_override_applicable(vcpu, mode, asce) && + fetch_prot_override_applies(ga, len)) + return 0; + } + if (storage_prot_override_applicable(vcpu) && + storage_prot_override_applies(access_control)) + return 0; + return PGM_PROTECTION; +} + +/** + * guest_range_to_gpas() - Calculate guest physical addresses of page fragments + * covering a logical range + * @vcpu: virtual cpu + * @ga: guest address, start of range + * @ar: access register + * @gpas: output argument, may be NULL + * @len: length of range in bytes + * @asce: address-space-control element to use for translation + * @mode: access mode + * @access_key: access key to mach the range's storage keys against + * + * Translate a logical range to a series of guest absolute addresses, + * such that the concatenation of page fragments starting at each gpa make up + * the whole range. + * The translation is performed as if done by the cpu for the given @asce, @ar, + * @mode and state of the @vcpu. + * If the translation causes an exception, its program interruption code is + * returned and the &struct kvm_s390_pgm_info pgm member of @vcpu is modified + * such that a subsequent call to kvm_s390_inject_prog_vcpu() will inject + * a correct exception into the guest. + * The resulting gpas are stored into @gpas, unless it is NULL. + * + * Note: All fragments except the first one start at the beginning of a page. + * When deriving the boundaries of a fragment from a gpa, all but the last + * fragment end at the end of the page. + * + * Return: + * * 0 - success + * * <0 - translation could not be performed, for example if guest + * memory could not be accessed + * * >0 - an access exception occurred. In this case the returned value + * is the program interruption code and the contents of pgm may + * be used to inject an exception into the guest. + */ +static int guest_range_to_gpas(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, + unsigned long *gpas, unsigned long len, + const union asce asce, enum gacc_mode mode, + u8 access_key) { psw_t *psw = &vcpu->arch.sie_block->gpsw; + unsigned int offset = offset_in_page(ga); + unsigned int fragment_len; int lap_enabled, rc = 0; enum prot_type prot; + unsigned long gpa; lap_enabled = low_address_protection_enabled(vcpu, asce); - while (nr_pages) { + while (min(PAGE_SIZE - offset, len) > 0) { + fragment_len = min(PAGE_SIZE - offset, len); ga = kvm_s390_logical_to_effective(vcpu, ga); if (mode == GACC_STORE && lap_enabled && is_low_address(ga)) return trans_exc(vcpu, PGM_PROTECTION, ga, ar, mode, PROT_TYPE_LA); - ga &= PAGE_MASK; if (psw_bits(*psw).dat) { - rc = guest_translate(vcpu, ga, pages, asce, mode, &prot); + rc = guest_translate(vcpu, ga, &gpa, asce, mode, &prot); if (rc < 0) return rc; } else { - *pages = kvm_s390_real_to_abs(vcpu, ga); - if (kvm_is_error_gpa(vcpu->kvm, *pages)) + gpa = kvm_s390_real_to_abs(vcpu, ga); + if (kvm_is_error_gpa(vcpu->kvm, gpa)) rc = PGM_ADDRESSING; } if (rc) return trans_exc(vcpu, rc, ga, ar, mode, prot); - ga += PAGE_SIZE; - pages++; - nr_pages--; + rc = vcpu_check_access_key(vcpu, access_key, mode, asce, gpa, ga, + fragment_len); + if (rc) + return trans_exc(vcpu, rc, ga, ar, mode, PROT_TYPE_KEYC); + if (gpas) + *gpas++ = gpa; + offset = 0; + ga += fragment_len; + len -= fragment_len; } return 0; } -int access_guest(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, void *data, - unsigned long len, enum gacc_mode mode) +static int access_guest_page(struct kvm *kvm, enum gacc_mode mode, gpa_t gpa, + void *data, unsigned int len) +{ + const unsigned int offset = offset_in_page(gpa); + const gfn_t gfn = gpa_to_gfn(gpa); + int rc; + + if (mode == GACC_STORE) + rc = kvm_write_guest_page(kvm, gfn, data, offset, len); + else + rc = kvm_read_guest_page(kvm, gfn, data, offset, len); + return rc; +} + +static int +access_guest_page_with_key(struct kvm *kvm, enum gacc_mode mode, gpa_t gpa, + void *data, unsigned int len, u8 access_key) +{ + struct kvm_memory_slot *slot; + bool writable; + gfn_t gfn; + hva_t hva; + int rc; + + gfn = gpa >> PAGE_SHIFT; + slot = gfn_to_memslot(kvm, gfn); + hva = gfn_to_hva_memslot_prot(slot, gfn, &writable); + + if (kvm_is_error_hva(hva)) + return PGM_ADDRESSING; + /* + * Check if it's a ro memslot, even tho that can't occur (they're unsupported). + * Don't try to actually handle that case. + */ + if (!writable && mode == GACC_STORE) + return -EOPNOTSUPP; + hva += offset_in_page(gpa); + if (mode == GACC_STORE) + rc = copy_to_user_key((void __user *)hva, data, len, access_key); + else + rc = copy_from_user_key(data, (void __user *)hva, len, access_key); + if (rc) + return PGM_PROTECTION; + if (mode == GACC_STORE) + mark_page_dirty(kvm, gfn); + return 0; +} + +int access_guest_abs_with_key(struct kvm *kvm, gpa_t gpa, void *data, + unsigned long len, enum gacc_mode mode, u8 access_key) +{ + int offset = offset_in_page(gpa); + int fragment_len; + int rc; + + while (min(PAGE_SIZE - offset, len) > 0) { + fragment_len = min(PAGE_SIZE - offset, len); + rc = access_guest_page_with_key(kvm, mode, gpa, data, fragment_len, access_key); + if (rc) + return rc; + offset = 0; + len -= fragment_len; + data += fragment_len; + gpa += fragment_len; + } + return 0; +} + +int access_guest_with_key(struct kvm_vcpu *vcpu, unsigned long ga, u8 ar, + void *data, unsigned long len, enum gacc_mode mode, + u8 access_key) { psw_t *psw = &vcpu->arch.sie_block->gpsw; - unsigned long _len, nr_pages, gpa, idx; - unsigned long pages_array[2]; - unsigned long *pages; + unsigned long nr_pages, idx; + unsigned long gpa_array[2]; + unsigned int fragment_len; + unsigned long *gpas; + enum prot_type prot; int need_ipte_lock; union asce asce; + bool try_storage_prot_override; + bool try_fetch_prot_override; int rc; if (!len) @@ -845,55 +1066,85 @@ if (rc) return rc; nr_pages = (((ga & ~PAGE_MASK) + len - 1) >> PAGE_SHIFT) + 1; - pages = pages_array; - if (nr_pages > ARRAY_SIZE(pages_array)) - pages = vmalloc(array_size(nr_pages, sizeof(unsigned long))); - if (!pages) + gpas = gpa_array; + if (nr_pages > ARRAY_SIZE(gpa_array)) + gpas = vmalloc(array_size(nr_pages, sizeof(unsigned long))); + if (!gpas) return -ENOMEM; + try_fetch_prot_override = fetch_prot_override_applicable(vcpu, mode, asce); + try_storage_prot_override = storage_prot_override_applicable(vcpu); need_ipte_lock = psw_bits(*psw).dat && !asce.r; if (need_ipte_lock) ipte_lock(vcpu); - rc = guest_page_range(vcpu, ga, ar, pages, nr_pages, asce, mode); - for (idx = 0; idx < nr_pages && !rc; idx++) { - gpa = *(pages + idx) + (ga & ~PAGE_MASK); - _len = min(PAGE_SIZE - (gpa & ~PAGE_MASK), len); - if (mode == GACC_STORE) - rc = kvm_write_guest(vcpu->kvm, gpa, data, _len); - else - rc = kvm_read_guest(vcpu->kvm, gpa, data, _len); - len -= _len; - ga += _len; - data += _len; + /* + * Since we do the access further down ultimately via a move instruction + * that does key checking and returns an error in case of a protection + * violation, we don't need to do the check during address translation. + * Skip it by passing access key 0, which matches any storage key, + * obviating the need for any further checks. As a result the check is + * handled entirely in hardware on access, we only need to take care to + * forego key protection checking if fetch protection override applies or + * retry with the special key 9 in case of storage protection override. + */ + rc = guest_range_to_gpas(vcpu, ga, ar, gpas, len, asce, mode, 0); + if (rc) + goto out_unlock; + for (idx = 0; idx < nr_pages; idx++) { + fragment_len = min(PAGE_SIZE - offset_in_page(gpas[idx]), len); + if (try_fetch_prot_override && fetch_prot_override_applies(ga, fragment_len)) { + rc = access_guest_page(vcpu->kvm, mode, gpas[idx], + data, fragment_len); + } else { + rc = access_guest_page_with_key(vcpu->kvm, mode, gpas[idx], + data, fragment_len, access_key); + } + if (rc == PGM_PROTECTION && try_storage_prot_override) + rc = access_guest_page_with_key(vcpu->kvm, mode, gpas[idx], + data, fragment_len, PAGE_SPO_ACC); + if (rc == PGM_PROTECTION) + prot = PROT_TYPE_KEYC; + if (rc) + break; + len -= fragment_len; + data += fragment_len; + ga = kvm_s390_logical_to_effective(vcpu, ga + fragment_len); } + if (rc > 0) + rc = trans_exc(vcpu, rc, ga, ar, mode, prot); +out_unlock: if (need_ipte_lock) ipte_unlock(vcpu); - if (nr_pages > ARRAY_SIZE(pages_array)) - vfree(pages); + if (nr_pages > ARRAY_SIZE(gpa_array)) + vfree(gpas); return rc; } int access_guest_real(struct kvm_vcpu *vcpu, unsigned long gra, void *data, unsigned long len, enum gacc_mode mode) { - unsigned long _len, gpa; + unsigned int fragment_len; + unsigned long gpa; int rc = 0; while (len && !rc) { gpa = kvm_s390_real_to_abs(vcpu, gra); - _len = min(PAGE_SIZE - (gpa & ~PAGE_MASK), len); - if (mode) - rc = write_guest_abs(vcpu, gpa, data, _len); - else - rc = read_guest_abs(vcpu, gpa, data, _len); - len -= _len; - gra += _len; - data += _len; + fragment_len = min(PAGE_SIZE - offset_in_page(gpa), len); + rc = access_guest_page(vcpu->kvm, mode, gpa, data, fragment_len); + len -= fragment_len; + gra += fragment_len; + data += fragment_len; } return rc; } /** - * guest_translate_address - translate guest logical into guest absolute address + * guest_translate_address_with_key - translate guest logical into guest absolute address + * @vcpu: virtual cpu + * @gva: Guest virtual address + * @ar: Access register + * @gpa: Guest physical address + * @mode: Translation access mode + * @access_key: access key to mach the storage key with * * Parameter semantics are the same as the ones from guest_translate. * The memory contents at the guest address are not changed. @@ -901,11 +1152,10 @@ * Note: The IPTE lock is not taken during this function, so the caller * has to take care of this. */ -int guest_translate_address(struct kvm_vcpu *vcpu, unsigned long gva, u8 ar, - unsigned long *gpa, enum gacc_mode mode) +int guest_translate_address_with_key(struct kvm_vcpu *vcpu, unsigned long gva, u8 ar, + unsigned long *gpa, enum gacc_mode mode, + u8 access_key) { - psw_t *psw = &vcpu->arch.sie_block->gpsw; - enum prot_type prot; union asce asce; int rc; @@ -913,47 +1163,59 @@ rc = get_vcpu_asce(vcpu, &asce, gva, ar, mode); if (rc) return rc; - if (is_low_address(gva) && low_address_protection_enabled(vcpu, asce)) { - if (mode == GACC_STORE) - return trans_exc(vcpu, PGM_PROTECTION, gva, 0, - mode, PROT_TYPE_LA); - } - - if (psw_bits(*psw).dat && !asce.r) { /* Use DAT? */ - rc = guest_translate(vcpu, gva, gpa, asce, mode, &prot); - if (rc > 0) - return trans_exc(vcpu, rc, gva, 0, mode, prot); - } else { - *gpa = kvm_s390_real_to_abs(vcpu, gva); - if (kvm_is_error_gpa(vcpu->kvm, *gpa)) - return trans_exc(vcpu, rc, gva, PGM_ADDRESSING, mode, 0); - } - - return rc; + return guest_range_to_gpas(vcpu, gva, ar, gpa, 1, asce, mode, + access_key); } /** * check_gva_range - test a range of guest virtual addresses for accessibility + * @vcpu: virtual cpu + * @gva: Guest virtual address + * @ar: Access register + * @length: Length of test range + * @mode: Translation access mode + * @access_key: access key to mach the storage keys with */ int check_gva_range(struct kvm_vcpu *vcpu, unsigned long gva, u8 ar, - unsigned long length, enum gacc_mode mode) + unsigned long length, enum gacc_mode mode, u8 access_key) { - unsigned long gpa; - unsigned long currlen; + union asce asce; int rc = 0; + rc = get_vcpu_asce(vcpu, &asce, gva, ar, mode); + if (rc) + return rc; ipte_lock(vcpu); - while (length > 0 && !rc) { - currlen = min(length, PAGE_SIZE - (gva % PAGE_SIZE)); - rc = guest_translate_address(vcpu, gva, ar, &gpa, mode); - gva += currlen; - length -= currlen; - } + rc = guest_range_to_gpas(vcpu, gva, ar, NULL, length, asce, mode, + access_key); ipte_unlock(vcpu); return rc; } +/** + * check_gpa_range - test a range of guest physical addresses for accessibility + * @kvm: virtual machine instance + * @gpa: guest physical address + * @length: length of test range + * @mode: access mode to test, relevant for storage keys + * @access_key: access key to mach the storage keys with + */ +int check_gpa_range(struct kvm *kvm, unsigned long gpa, unsigned long length, + enum gacc_mode mode, u8 access_key) +{ + unsigned int fragment_len; + int rc = 0; + + while (length && !rc) { + fragment_len = min(PAGE_SIZE - offset_in_page(gpa), length); + rc = vm_check_access_key(kvm, access_key, mode, gpa); + length -= fragment_len; + gpa += fragment_len; + } + return rc; +} + /** * kvm_s390_check_low_addr_prot_real - check for low-address protection * @gra: Guest real address only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/kvm/sigp.c +++ linux-azure-5.4.0/arch/s390/kvm/sigp.c @@ -151,22 +151,10 @@ static int __sigp_set_arch(struct kvm_vcpu *vcpu, u32 parameter, u64 *status_reg) { - unsigned int i; - struct kvm_vcpu *v; - bool all_stopped = true; - - kvm_for_each_vcpu(i, v, vcpu->kvm) { - if (v == vcpu) - continue; - if (!is_vcpu_stopped(v)) - all_stopped = false; - } - *status_reg &= 0xffffffff00000000UL; /* Reject set arch order, with czam we're always in z/Arch mode. */ - *status_reg |= (all_stopped ? SIGP_STATUS_INVALID_PARAMETER : - SIGP_STATUS_INCORRECT_STATE); + *status_reg |= SIGP_STATUS_INVALID_PARAMETER; return SIGP_CC_STATUS_STORED; } @@ -288,6 +276,34 @@ if (!dst_vcpu) return SIGP_CC_NOT_OPERATIONAL; + /* + * SIGP RESTART, SIGP STOP, and SIGP STOP AND STORE STATUS orders + * are processed asynchronously. Until the affected VCPU finishes + * its work and calls back into KVM to clear the (RESTART or STOP) + * interrupt, we need to return any new non-reset orders "busy". + * + * This is important because a single VCPU could issue: + * 1) SIGP STOP $DESTINATION + * 2) SIGP SENSE $DESTINATION + * + * If the SIGP SENSE would not be rejected as "busy", it could + * return an incorrect answer as to whether the VCPU is STOPPED + * or OPERATING. + */ + if (order_code != SIGP_INITIAL_CPU_RESET && + order_code != SIGP_CPU_RESET) { + /* + * Lockless check. Both SIGP STOP and SIGP (RE)START + * properly synchronize everything while processing + * their orders, while the guest cannot observe a + * difference when issuing other orders from two + * different VCPUs. + */ + if (kvm_s390_is_stop_irq_pending(dst_vcpu) || + kvm_s390_is_restart_irq_pending(dst_vcpu)) + return SIGP_CC_BUSY; + } + switch (order_code) { case SIGP_SENSE: vcpu->stat.instruction_sigp_sense++; @@ -464,9 +480,9 @@ struct kvm_vcpu *dest_vcpu; u8 order_code = kvm_s390_get_base_disp_rs(vcpu, NULL); - trace_kvm_s390_handle_sigp_pei(vcpu, order_code, cpu_addr); - if (order_code == SIGP_EXTERNAL_CALL) { + trace_kvm_s390_handle_sigp_pei(vcpu, order_code, cpu_addr); + dest_vcpu = kvm_get_vcpu_by_id(vcpu->kvm, cpu_addr); BUG_ON(dest_vcpu == NULL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/lib/string.c +++ linux-azure-5.4.0/arch/s390/lib/string.c @@ -246,14 +246,13 @@ #ifdef __HAVE_ARCH_STRRCHR char *strrchr(const char *s, int c) { - size_t len = __strend(s) - s; + ssize_t len = __strend(s) - s; - if (len) - do { - if (s[len] == (char) c) - return (char *) s + len; - } while (--len > 0); - return NULL; + do { + if (s[len] == (char)c) + return (char *)s + len; + } while (--len >= 0); + return NULL; } EXPORT_SYMBOL(strrchr); #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/mm/kasan_init.c +++ linux-azure-5.4.0/arch/s390/mm/kasan_init.c @@ -101,6 +101,9 @@ pgt_prot = pgprot_val(PAGE_KERNEL_EXEC); sgt_prot = pgprot_val(SEGMENT_KERNEL_EXEC); + /* + * The first 1MB of 1:1 mapping is mapped with 4KB pages + */ while (address < end) { pg_dir = pgd_offset_k(address); if (pgd_none(*pg_dir)) { @@ -146,30 +149,26 @@ pm_dir = pmd_offset(pu_dir, address); if (pmd_none(*pm_dir)) { - if (mode == POPULATE_ZERO_SHADOW && - IS_ALIGNED(address, PMD_SIZE) && + if (IS_ALIGNED(address, PMD_SIZE) && end - address >= PMD_SIZE) { - pmd_populate(&init_mm, pm_dir, - kasan_early_shadow_pte); - address = (address + PMD_SIZE) & PMD_MASK; - continue; - } - /* the first megabyte of 1:1 is mapped with 4k pages */ - if (has_edat && address && end - address >= PMD_SIZE && - mode != POPULATE_ZERO_SHADOW) { - void *page; - - if (mode == POPULATE_ONE2ONE) { - page = (void *)address; - } else { - page = kasan_early_alloc_segment(); - memset(page, 0, _SEGMENT_SIZE); + if (mode == POPULATE_ZERO_SHADOW) { + pmd_populate(&init_mm, pm_dir, kasan_early_shadow_pte); + address = (address + PMD_SIZE) & PMD_MASK; + continue; + } else if (has_edat && address) { + void *page; + + if (mode == POPULATE_ONE2ONE) { + page = (void *)address; + } else { + page = kasan_early_alloc_segment(); + memset(page, 0, _SEGMENT_SIZE); + } + pmd_val(*pm_dir) = __pa(page) | sgt_prot; + address = (address + PMD_SIZE) & PMD_MASK; + continue; } - pmd_val(*pm_dir) = __pa(page) | sgt_prot; - address = (address + PMD_SIZE) & PMD_MASK; - continue; } - pt_dir = kasan_early_pte_alloc(); pmd_populate(&init_mm, pm_dir, pt_dir); } else if (pmd_large(*pm_dir)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/s390/mm/pgtable.c +++ linux-azure-5.4.0/arch/s390/mm/pgtable.c @@ -716,7 +716,7 @@ pgste_val(pgste) |= PGSTE_GR_BIT | PGSTE_GC_BIT; ptev = pte_val(*ptep); if (!(ptev & _PAGE_INVALID) && (ptev & _PAGE_WRITE)) - page_set_storage_key(ptev & PAGE_MASK, PAGE_DEFAULT_KEY, 1); + page_set_storage_key(ptev & PAGE_MASK, PAGE_DEFAULT_KEY, 0); pgste_set_unlock(ptep, pgste); preempt_enable(); } @@ -970,6 +970,7 @@ int pgste_perform_essa(struct mm_struct *mm, unsigned long hva, int orc, unsigned long *oldpte, unsigned long *oldpgste) { + struct vm_area_struct *vma; unsigned long pgstev; spinlock_t *ptl; pgste_t pgste; @@ -979,6 +980,10 @@ WARN_ON_ONCE(orc > ESSA_MAX); if (unlikely(orc > ESSA_MAX)) return -EINVAL; + + vma = find_vma(mm, hva); + if (!vma || hva < vma->vm_start || is_vm_hugetlb_page(vma)) + return -EFAULT; ptep = get_locked_pte(mm, hva, &ptl); if (unlikely(!ptep)) return -EFAULT; @@ -1071,10 +1076,14 @@ int set_pgste_bits(struct mm_struct *mm, unsigned long hva, unsigned long bits, unsigned long value) { + struct vm_area_struct *vma; spinlock_t *ptl; pgste_t new; pte_t *ptep; + vma = find_vma(mm, hva); + if (!vma || hva < vma->vm_start || is_vm_hugetlb_page(vma)) + return -EFAULT; ptep = get_locked_pte(mm, hva, &ptl); if (unlikely(!ptep)) return -EFAULT; @@ -1099,9 +1108,13 @@ */ int get_pgste(struct mm_struct *mm, unsigned long hva, unsigned long *pgstep) { + struct vm_area_struct *vma; spinlock_t *ptl; pte_t *ptep; + vma = find_vma(mm, hva); + if (!vma || hva < vma->vm_start || is_vm_hugetlb_page(vma)) + return -EFAULT; ptep = get_locked_pte(mm, hva, &ptl); if (unlikely(!ptep)) return -EFAULT; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/Kconfig.debug +++ linux-azure-5.4.0/arch/sh/Kconfig.debug @@ -58,6 +58,7 @@ config DWARF_UNWINDER bool "Enable the DWARF unwinder for stacktraces" + depends on DEBUG_KERNEL select FRAME_POINTER depends on SUPERH32 default n only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/include/asm/sections.h +++ linux-azure-5.4.0/arch/sh/include/asm/sections.h @@ -4,7 +4,7 @@ #include -extern long __machvec_start, __machvec_end; +extern char __machvec_start[], __machvec_end[]; extern char __uncached_start, __uncached_end; extern char __start_eh_frame[], __stop_eh_frame[]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/include/asm/sfp-machine.h +++ linux-azure-5.4.0/arch/sh/include/asm/sfp-machine.h @@ -13,6 +13,14 @@ #ifndef _SFP_MACHINE_H #define _SFP_MACHINE_H +#ifdef __BIG_ENDIAN__ +#define __BYTE_ORDER __BIG_ENDIAN +#define __LITTLE_ENDIAN 0 +#else +#define __BYTE_ORDER __LITTLE_ENDIAN +#define __BIG_ENDIAN 0 +#endif + #define _FP_W_TYPE_SIZE 32 #define _FP_W_TYPE unsigned long #define _FP_WS_TYPE signed long only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/kernel/cpu/fpu.c +++ linux-azure-5.4.0/arch/sh/kernel/cpu/fpu.c @@ -62,18 +62,20 @@ } if (!tsk_used_math(tsk)) { - local_irq_enable(); + int ret; /* * does a slab alloc which can sleep */ - if (init_fpu(tsk)) { + local_irq_enable(); + ret = init_fpu(tsk); + local_irq_disable(); + if (ret) { /* * ran out of memory! */ - do_group_exit(SIGKILL); + force_sig(SIGKILL); return; } - local_irq_disable(); } grab_fpu(regs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/kernel/cpu/sh4a/smp-shx3.c +++ linux-azure-5.4.0/arch/sh/kernel/cpu/sh4a/smp-shx3.c @@ -73,8 +73,9 @@ BUILD_BUG_ON(SMP_MSG_NR >= 8); for (i = 0; i < SMP_MSG_NR; i++) - request_irq(104 + i, ipi_interrupt_handler, - IRQF_PERCPU, "IPI", (void *)(long)i); + if (request_irq(104 + i, ipi_interrupt_handler, + IRQF_PERCPU, "IPI", (void *)(long)i)) + pr_err("Failed to request irq %d\n", i); for (i = 0; i < max_cpus; i++) set_cpu_present(i, true); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/kernel/machvec.c +++ linux-azure-5.4.0/arch/sh/kernel/machvec.c @@ -19,8 +19,8 @@ #define MV_NAME_SIZE 32 #define for_each_mv(mv) \ - for ((mv) = (struct sh_machine_vector *)&__machvec_start; \ - (mv) && (unsigned long)(mv) < (unsigned long)&__machvec_end; \ + for ((mv) = (struct sh_machine_vector *)__machvec_start; \ + (mv) && (unsigned long)(mv) < (unsigned long)__machvec_end; \ (mv)++) static struct sh_machine_vector * __init get_mv_byname(const char *name) @@ -86,8 +86,8 @@ if (!machvec_selected) { unsigned long machvec_size; - machvec_size = ((unsigned long)&__machvec_end - - (unsigned long)&__machvec_start); + machvec_size = ((unsigned long)__machvec_end - + (unsigned long)__machvec_start); /* * Sanity check for machvec section alignment. Ensure @@ -101,7 +101,7 @@ * vector (usually the only one) from .machvec.init. */ if (machvec_size >= sizeof(struct sh_machine_vector)) - sh_mv = *(struct sh_machine_vector *)&__machvec_start; + sh_mv = *(struct sh_machine_vector *)__machvec_start; } printk(KERN_NOTICE "Booting machvec: %s\n", get_system_type()); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sh/math-emu/math.c +++ linux-azure-5.4.0/arch/sh/math-emu/math.c @@ -468,109 +468,6 @@ } /** - * denormal_to_double - Given denormalized float number, - * store double float - * - * @fpu: Pointer to sh_fpu_soft structure - * @n: Index to FP register - */ -static void denormal_to_double(struct sh_fpu_soft_struct *fpu, int n) -{ - unsigned long du, dl; - unsigned long x = fpu->fpul; - int exp = 1023 - 126; - - if (x != 0 && (x & 0x7f800000) == 0) { - du = (x & 0x80000000); - while ((x & 0x00800000) == 0) { - x <<= 1; - exp--; - } - x &= 0x007fffff; - du |= (exp << 20) | (x >> 3); - dl = x << 29; - - fpu->fp_regs[n] = du; - fpu->fp_regs[n+1] = dl; - } -} - -/** - * ieee_fpe_handler - Handle denormalized number exception - * - * @regs: Pointer to register structure - * - * Returns 1 when it's handled (should not cause exception). - */ -static int ieee_fpe_handler(struct pt_regs *regs) -{ - unsigned short insn = *(unsigned short *)regs->pc; - unsigned short finsn; - unsigned long nextpc; - int nib[4] = { - (insn >> 12) & 0xf, - (insn >> 8) & 0xf, - (insn >> 4) & 0xf, - insn & 0xf}; - - if (nib[0] == 0xb || - (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) /* bsr & jsr */ - regs->pr = regs->pc + 4; - - if (nib[0] == 0xa || nib[0] == 0xb) { /* bra & bsr */ - nextpc = regs->pc + 4 + ((short) ((insn & 0xfff) << 4) >> 3); - finsn = *(unsigned short *) (regs->pc + 2); - } else if (nib[0] == 0x8 && nib[1] == 0xd) { /* bt/s */ - if (regs->sr & 1) - nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); - else - nextpc = regs->pc + 4; - finsn = *(unsigned short *) (regs->pc + 2); - } else if (nib[0] == 0x8 && nib[1] == 0xf) { /* bf/s */ - if (regs->sr & 1) - nextpc = regs->pc + 4; - else - nextpc = regs->pc + 4 + ((char) (insn & 0xff) << 1); - finsn = *(unsigned short *) (regs->pc + 2); - } else if (nib[0] == 0x4 && nib[3] == 0xb && - (nib[2] == 0x0 || nib[2] == 0x2)) { /* jmp & jsr */ - nextpc = regs->regs[nib[1]]; - finsn = *(unsigned short *) (regs->pc + 2); - } else if (nib[0] == 0x0 && nib[3] == 0x3 && - (nib[2] == 0x0 || nib[2] == 0x2)) { /* braf & bsrf */ - nextpc = regs->pc + 4 + regs->regs[nib[1]]; - finsn = *(unsigned short *) (regs->pc + 2); - } else if (insn == 0x000b) { /* rts */ - nextpc = regs->pr; - finsn = *(unsigned short *) (regs->pc + 2); - } else { - nextpc = regs->pc + 2; - finsn = insn; - } - - if ((finsn & 0xf1ff) == 0xf0ad) { /* fcnvsd */ - struct task_struct *tsk = current; - - if ((tsk->thread.xstate->softfpu.fpscr & (1 << 17))) { - /* FPU error */ - denormal_to_double (&tsk->thread.xstate->softfpu, - (finsn >> 8) & 0xf); - tsk->thread.xstate->softfpu.fpscr &= - ~(FPSCR_CAUSE_MASK | FPSCR_FLAG_MASK); - task_thread_info(tsk)->status |= TS_USEDFPU; - } else { - force_sig_fault(SIGFPE, FPE_FLTINV, - (void __user *)regs->pc); - } - - regs->pc = nextpc; - return 1; - } - - return 0; -} - -/** * fpu_init - Initialize FPU registers * @fpu: Pointer to software emulated FPU registers. */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sparc/include/asm/timex_32.h +++ linux-azure-5.4.0/arch/sparc/include/asm/timex_32.h @@ -9,8 +9,6 @@ #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */ -/* XXX Maybe do something better at some point... -DaveM */ -typedef unsigned long cycles_t; -#define get_cycles() (0) +#include #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sparc/kernel/ioport.c +++ linux-azure-5.4.0/arch/sparc/kernel/ioport.c @@ -356,7 +356,9 @@ void arch_dma_free(struct device *dev, size_t size, void *cpu_addr, dma_addr_t dma_addr, unsigned long attrs) { - if (!sparc_dma_free_resource(cpu_addr, PAGE_ALIGN(size))) + size = PAGE_ALIGN(size); + + if (!sparc_dma_free_resource(cpu_addr, size)) return; dma_make_coherent(dma_addr, size); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sparc/kernel/mdesc.c +++ linux-azure-5.4.0/arch/sparc/kernel/mdesc.c @@ -39,6 +39,7 @@ u32 node_sz; /* node block size */ u32 name_sz; /* name block size */ u32 data_sz; /* data block size */ + char data[]; } __attribute__((aligned(16))); struct mdesc_elem { @@ -612,7 +613,7 @@ static struct mdesc_elem *node_block(struct mdesc_hdr *mdesc) { - return (struct mdesc_elem *) (mdesc + 1); + return (struct mdesc_elem *) mdesc->data; } static void *name_block(struct mdesc_hdr *mdesc) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sparc/lib/iomap.c +++ linux-azure-5.4.0/arch/sparc/lib/iomap.c @@ -19,8 +19,10 @@ EXPORT_SYMBOL(ioport_map); EXPORT_SYMBOL(ioport_unmap); +#ifdef CONFIG_PCI void pci_iounmap(struct pci_dev *dev, void __iomem * addr) { /* nothing to do */ } EXPORT_SYMBOL(pci_iounmap); +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/sparc/net/bpf_jit_comp_64.c +++ linux-azure-5.4.0/arch/sparc/net/bpf_jit_comp_64.c @@ -1287,6 +1287,9 @@ return 1; break; } + /* speculation barrier */ + case BPF_ST | BPF_NOSPEC: + break; /* ST: *(size *)(dst + off) = imm */ case BPF_ST | BPF_MEM | BPF_W: case BPF_ST | BPF_MEM | BPF_H: only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/drivers/mconsole_kern.c +++ linux-azure-5.4.0/arch/um/drivers/mconsole_kern.c @@ -217,7 +217,7 @@ void mconsole_stop(struct mc_request *req) { - deactivate_fd(req->originating_fd, MCONSOLE_IRQ); + block_signals(); os_set_fd_block(req->originating_fd, 1); mconsole_reply(req, "stopped", 0, 0); for (;;) { @@ -240,6 +240,7 @@ } os_set_fd_block(req->originating_fd, 0); mconsole_reply(req, "", 0, 0); + unblock_signals(); } static DEFINE_SPINLOCK(mc_devices_lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/drivers/slip_user.c +++ linux-azure-5.4.0/arch/um/drivers/slip_user.c @@ -145,7 +145,8 @@ } sfd = err; - if (set_up_tty(sfd)) + err = set_up_tty(sfd); + if (err) goto out_close2; pri->slave = sfd; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/include/asm/thread_info.h +++ linux-azure-5.4.0/arch/um/include/asm/thread_info.h @@ -63,6 +63,7 @@ #define TIF_RESTORE_SIGMASK 7 #define TIF_NOTIFY_RESUME 8 #define TIF_SECCOMP 9 /* secure computing */ +#define TIF_SINGLESTEP 10 /* single stepping userspace */ #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) @@ -70,5 +71,6 @@ #define _TIF_MEMDIE (1 << TIF_MEMDIE) #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) #define _TIF_SECCOMP (1 << TIF_SECCOMP) +#define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/include/asm/timex.h +++ linux-azure-5.4.0/arch/um/include/asm/timex.h @@ -2,13 +2,8 @@ #ifndef __UM_TIMEX_H #define __UM_TIMEX_H -typedef unsigned long cycles_t; - -static inline cycles_t get_cycles (void) -{ - return 0; -} - #define CLOCK_TICK_RATE (HZ) +#include + #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/include/shared/registers.h +++ linux-azure-5.4.0/arch/um/include/shared/registers.h @@ -16,8 +16,8 @@ extern int save_fpx_registers(int pid, unsigned long *fp_regs); extern int restore_fpx_registers(int pid, unsigned long *fp_regs); extern int save_registers(int pid, struct uml_pt_regs *regs); -extern int restore_registers(int pid, struct uml_pt_regs *regs); -extern int init_registers(int pid); +extern int restore_pid_registers(int pid, struct uml_pt_regs *regs); +extern int init_pid_registers(int pid); extern void get_safe_registers(unsigned long *regs, unsigned long *fp_regs); extern unsigned long get_thread_reg(int reg, jmp_buf *buf); extern int get_fp_registers(int pid, unsigned long *regs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/kernel/exec.c +++ linux-azure-5.4.0/arch/um/kernel/exec.c @@ -44,7 +44,7 @@ { PT_REGS_IP(regs) = eip; PT_REGS_SP(regs) = esp; - current->ptrace &= ~PT_DTRACE; + clear_thread_flag(TIF_SINGLESTEP); #ifdef SUBARCH_EXECVE1 SUBARCH_EXECVE1(regs->regs); #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/kernel/ptrace.c +++ linux-azure-5.4.0/arch/um/kernel/ptrace.c @@ -12,7 +12,7 @@ void user_enable_single_step(struct task_struct *child) { - child->ptrace |= PT_DTRACE; + set_tsk_thread_flag(child, TIF_SINGLESTEP); child->thread.singlestep_syscall = 0; #ifdef SUBARCH_SET_SINGLESTEPPING @@ -22,7 +22,7 @@ void user_disable_single_step(struct task_struct *child) { - child->ptrace &= ~PT_DTRACE; + clear_tsk_thread_flag(child, TIF_SINGLESTEP); child->thread.singlestep_syscall = 0; #ifdef SUBARCH_SET_SINGLESTEPPING @@ -121,7 +121,7 @@ } /* - * XXX Check PT_DTRACE vs TIF_SINGLESTEP for singlestepping check and + * XXX Check TIF_SINGLESTEP for singlestepping check and * PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check */ int syscall_trace_enter(struct pt_regs *regs) @@ -145,7 +145,7 @@ audit_syscall_exit(regs); /* Fake a debug trap */ - if (ptraced & PT_DTRACE) + if (test_thread_flag(TIF_SINGLESTEP)) send_sigtrap(®s->regs, 0); if (!test_thread_flag(TIF_SYSCALL_TRACE)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/kernel/signal.c +++ linux-azure-5.4.0/arch/um/kernel/signal.c @@ -53,7 +53,7 @@ unsigned long sp; int err; - if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED)) + if (test_thread_flag(TIF_SINGLESTEP) && (current->ptrace & PT_PTRACED)) singlestep = 1; /* Did we come from a system call? */ @@ -128,7 +128,7 @@ * on the host. The tracing thread will check this flag and * PTRACE_SYSCALL if necessary. */ - if (current->ptrace & PT_DTRACE) + if (test_thread_flag(TIF_SINGLESTEP)) current->thread.singlestep_syscall = is_syscall(PT_REGS_IP(¤t->thread.regs)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/kernel/um_arch.c +++ linux-azure-5.4.0/arch/um/kernel/um_arch.c @@ -77,7 +77,7 @@ static void *c_start(struct seq_file *m, loff_t *pos) { - return *pos < NR_CPUS ? cpu_data + *pos : NULL; + return *pos < nr_cpu_ids ? cpu_data + *pos : NULL; } static void *c_next(struct seq_file *m, void *v, loff_t *pos) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/os-Linux/registers.c +++ linux-azure-5.4.0/arch/um/os-Linux/registers.c @@ -21,7 +21,7 @@ return 0; } -int restore_registers(int pid, struct uml_pt_regs *regs) +int restore_pid_registers(int pid, struct uml_pt_regs *regs) { int err; @@ -36,7 +36,7 @@ static unsigned long exec_regs[MAX_REG_NR]; static unsigned long exec_fp_regs[FP_SIZE]; -int init_registers(int pid) +int init_pid_registers(int pid) { int err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/os-Linux/skas/process.c +++ linux-azure-5.4.0/arch/um/os-Linux/skas/process.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include @@ -641,10 +642,24 @@ UML_LONGJMP(&initial_jmpbuf, INIT_JMP_HALT); } +static bool noreboot; + +static int __init noreboot_cmd_param(char *str, int *add) +{ + noreboot = true; + return 0; +} + +__uml_setup("noreboot", noreboot_cmd_param, +"noreboot\n" +" Rather than rebooting, exit always, akin to QEMU's -no-reboot option.\n" +" This is useful if you're using CONFIG_PANIC_TIMEOUT in order to catch\n" +" crashes in CI\n"); + void reboot_skas(void) { block_signals_trace(); - UML_LONGJMP(&initial_jmpbuf, INIT_JMP_REBOOT); + UML_LONGJMP(&initial_jmpbuf, noreboot ? INIT_JMP_HALT : INIT_JMP_REBOOT); } void __switch_mm(struct mm_id *mm_idp) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/um/os-Linux/start_up.c +++ linux-azure-5.4.0/arch/um/os-Linux/start_up.c @@ -336,7 +336,7 @@ check_tmpexec(); pid = start_ptraced_child(); - if (init_registers(pid)) + if (init_pid_registers(pid)) fatal("Failed to initialize default registers"); stop_ptraced_child(pid, 1, 1); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/boot/setup.ld +++ linux-azure-5.4.0/arch/x86/boot/setup.ld @@ -20,7 +20,7 @@ .initdata : { *(.initdata) } __end_init = .; - .text : { *(.text) } + .text : { *(.text .text.*) } .text32 : { *(.text32) } . = ALIGN(16); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/crypto/chacha-avx512vl-x86_64.S +++ linux-azure-5.4.0/arch/x86/crypto/chacha-avx512vl-x86_64.S @@ -172,7 +172,7 @@ # xor remaining bytes from partial register into output mov %rcx,%rax and $0xf,%rcx - jz .Ldone8 + jz .Ldone2 mov %rax,%r9 and $~0xf,%r9 @@ -438,7 +438,7 @@ # xor remaining bytes from partial register into output mov %rcx,%rax and $0xf,%rcx - jz .Ldone8 + jz .Ldone4 mov %rax,%r9 and $~0xf,%r9 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/entry/entry_64_compat.S +++ linux-azure-5.4.0/arch/x86/entry/entry_64_compat.S @@ -4,7 +4,6 @@ * * Copyright 2000-2002 Andi Kleen, SuSE Labs. */ -#include "calling.h" #include #include #include @@ -17,6 +16,8 @@ #include #include +#include "calling.h" + .section .entry.text, "ax" /* @@ -106,6 +107,8 @@ xorl %r15d, %r15d /* nospec r15 */ cld + IBRS_ENTER + /* * SYSENTER doesn't filter flags, so we need to clear NT and AC * ourselves. To save a few cycles, we can check whether @@ -253,6 +256,8 @@ */ TRACE_IRQS_OFF + IBRS_ENTER + movq %rsp, %rdi call do_fast_syscall_32 /* XEN PV guests always use IRET path */ @@ -267,6 +272,9 @@ */ STACKLEAK_ERASE TRACE_IRQS_ON /* User mode traces as IRQs on. */ + + IBRS_EXIT + movq RBX(%rsp), %rbx /* pt_regs->rbx */ movq RBP(%rsp), %rbp /* pt_regs->rbp */ movq EFLAGS(%rsp), %r11 /* pt_regs->flags (in r11) */ @@ -408,6 +416,7 @@ * gate turned them off. */ TRACE_IRQS_OFF + IBRS_ENTER movq %rsp, %rdi call do_int80_syscall_32 only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/entry/vdso/Makefile +++ linux-azure-5.4.0/arch/x86/entry/vdso/Makefile @@ -178,7 +178,7 @@ sh $(srctree)/$(src)/checkundef.sh '$(NM)' '$@' VDSO_LDFLAGS = -shared --hash-style=both --build-id \ - $(call ld-option, --eh-frame-hdr) -Bsymbolic + $(call ld-option, --eh-frame-hdr) -Bsymbolic -z noexecstack GCOV_PROFILE := n quiet_cmd_vdso_and_check = VDSO $@ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/entry/vdso/vma.c +++ linux-azure-5.4.0/arch/x86/entry/vdso/vma.c @@ -323,7 +323,7 @@ static __init int vdso_setup(char *s) { vdso64_enabled = simple_strtoul(s, NULL, 0); - return 0; + return 1; } __setup("vdso=", vdso_setup); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/events/amd/power.c +++ linux-azure-5.4.0/arch/x86/events/amd/power.c @@ -217,6 +217,7 @@ .stop = pmu_event_stop, .read = pmu_event_read, .capabilities = PERF_PMU_CAP_NO_EXCLUDE, + .module = THIS_MODULE, }; static int power_cpu_exit(unsigned int cpu) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/events/intel/pt.c +++ linux-azure-5.4.0/arch/x86/events/intel/pt.c @@ -62,7 +62,7 @@ PT_CAP(single_range_output, 0, CPUID_ECX, BIT(2)), PT_CAP(output_subsys, 0, CPUID_ECX, BIT(3)), PT_CAP(payloads_lip, 0, CPUID_ECX, BIT(31)), - PT_CAP(num_address_ranges, 1, CPUID_EAX, 0x3), + PT_CAP(num_address_ranges, 1, CPUID_EAX, 0x7), PT_CAP(mtc_periods, 1, CPUID_EAX, 0xffff0000), PT_CAP(cycle_thresholds, 1, CPUID_EBX, 0xffff), PT_CAP(psb_periods, 1, CPUID_EBX, 0xffff0000), @@ -460,7 +460,7 @@ pt->filters.filter[range].msr_b = filter->msr_b; } - rtit_ctl |= filter->config << pt_address_ranges[range].reg_off; + rtit_ctl |= (u64)filter->config << pt_address_ranges[range].reg_off; } return rtit_ctl; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/hyperv/hv_apic.c +++ linux-azure-5.4.0/arch/x86/hyperv/hv_apic.c @@ -103,7 +103,7 @@ struct hv_send_ipi_ex *ipi_arg; unsigned long flags; int nr_bank = 0; - int ret = 1; + u64 status = HV_STATUS_INVALID_PARAMETER; if (!(ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED)) return false; @@ -128,19 +128,19 @@ if (!nr_bank) ipi_arg->vp_set.format = HV_GENERIC_SET_ALL; - ret = hv_do_rep_hypercall(HVCALL_SEND_IPI_EX, 0, nr_bank, + status = hv_do_rep_hypercall(HVCALL_SEND_IPI_EX, 0, nr_bank, ipi_arg, NULL); ipi_mask_ex_done: local_irq_restore(flags); - return ((ret == 0) ? true : false); + return hv_result_success(status); } static bool __send_ipi_mask(const struct cpumask *mask, int vector) { int cur_cpu, vcpu; struct hv_send_ipi ipi_arg; - int ret = 1; + u64 status; trace_hyperv_send_ipi_mask(mask, vector); @@ -184,9 +184,9 @@ __set_bit(vcpu, (unsigned long *)&ipi_arg.cpu_mask); } - ret = hv_do_fast_hypercall16(HVCALL_SEND_IPI, ipi_arg.vector, + status = hv_do_fast_hypercall16(HVCALL_SEND_IPI, ipi_arg.vector, ipi_arg.cpu_mask); - return ((ret == 0) ? true : false); + return hv_result_success(status); do_ex_hypercall: return __send_ipi_mask_ex(mask, vector); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/hyperv/hv_proc.c +++ linux-azure-5.4.0/arch/x86/hyperv/hv_proc.c @@ -0,0 +1,213 @@ +// SPDX-License-Identifier: GPL-2.0 +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +/* + * See struct hv_deposit_memory. The first u64 is partition ID, the rest + * are GPAs. + */ +#define HV_DEPOSIT_MAX (HV_HYP_PAGE_SIZE / sizeof(u64) - 1) + +/* Deposits exact number of pages. Must be called with interrupts enabled. */ +int hv_call_deposit_pages(int node, u64 partition_id, u32 num_pages) +{ + struct page **pages, *page; + int *counts; + int num_allocations; + int i, j, page_count; + int order; + u64 status; + int ret; + u64 base_pfn; + struct hv_deposit_memory *input_page; + unsigned long flags; + + if (num_pages > HV_DEPOSIT_MAX) + return -E2BIG; + if (!num_pages) + return 0; + + /* One buffer for page pointers and counts */ + page = alloc_page(GFP_KERNEL); + if (!page) + return -ENOMEM; + pages = page_address(page); + + counts = kcalloc(HV_DEPOSIT_MAX, sizeof(int), GFP_KERNEL); + if (!counts) { + free_page((unsigned long)pages); + return -ENOMEM; + } + + /* Allocate all the pages before disabling interrupts */ + i = 0; + + while (num_pages) { + /* Find highest order we can actually allocate */ + order = 31 - __builtin_clz(num_pages); + + while (1) { + pages[i] = alloc_pages_node(node, GFP_KERNEL, order); + if (pages[i]) + break; + if (!order) { + ret = -ENOMEM; + num_allocations = i; + goto err_free_allocations; + } + --order; + } + + split_page(pages[i], order); + counts[i] = 1 << order; + num_pages -= counts[i]; + i++; + } + num_allocations = i; + + local_irq_save(flags); + + input_page = *this_cpu_ptr(hyperv_pcpu_input_arg); + + input_page->partition_id = partition_id; + + /* Populate gpa_page_list - these will fit on the input page */ + for (i = 0, page_count = 0; i < num_allocations; ++i) { + base_pfn = page_to_pfn(pages[i]); + for (j = 0; j < counts[i]; ++j, ++page_count) + input_page->gpa_page_list[page_count] = base_pfn + j; + } + status = hv_do_rep_hypercall(HVCALL_DEPOSIT_MEMORY, + page_count, 0, input_page, NULL); + local_irq_restore(flags); + if (!hv_result_success(status)) { + pr_err("Failed to deposit pages: %lld\n", status); + ret = hv_result(status); + goto err_free_allocations; + } + + ret = 0; + goto free_buf; + +err_free_allocations: + for (i = 0; i < num_allocations; ++i) { + base_pfn = page_to_pfn(pages[i]); + for (j = 0; j < counts[i]; ++j) + __free_page(pfn_to_page(base_pfn + j)); + } + +free_buf: + free_page((unsigned long)pages); + kfree(counts); + return ret; +} + +int hv_call_add_logical_proc(int node, u32 lp_index, u32 apic_id) +{ + struct hv_add_logical_processor_in *input; + struct hv_add_logical_processor_out *output; + u64 status; + unsigned long flags; + int ret = HV_STATUS_SUCCESS; + int pxm = node_to_pxm(node); + + /* + * When adding a logical processor, the hypervisor may return + * HV_STATUS_INSUFFICIENT_MEMORY. When that happens, we deposit more + * pages and retry. + */ + do { + local_irq_save(flags); + + input = *this_cpu_ptr(hyperv_pcpu_input_arg); + /* We don't do anything with the output right now */ + output = *this_cpu_ptr(hyperv_pcpu_output_arg); + + input->lp_index = lp_index; + input->apic_id = apic_id; + input->flags = 0; + input->proximity_domain_info.domain_id = pxm; + input->proximity_domain_info.flags.reserved = 0; + input->proximity_domain_info.flags.proximity_info_valid = 1; + input->proximity_domain_info.flags.proximity_preferred = 1; + status = hv_do_hypercall(HVCALL_ADD_LOGICAL_PROCESSOR, + input, output); + local_irq_restore(flags); + + if (hv_result(status) != HV_STATUS_INSUFFICIENT_MEMORY) { + if (!hv_result_success(status)) { + pr_err("%s: cpu %u apic ID %u, %lld\n", __func__, + lp_index, apic_id, status); + ret = hv_result(status); + } + break; + } + ret = hv_call_deposit_pages(node, hv_current_partition_id, 1); + } while (!ret); + + return ret; +} + +int hv_call_create_vp(int node, u64 partition_id, u32 vp_index, u32 flags) +{ + struct hv_create_vp *input; + u64 status; + unsigned long irq_flags; + int ret = HV_STATUS_SUCCESS; + int pxm = node_to_pxm(node); + + /* Root VPs don't seem to need pages deposited */ + if (partition_id != hv_current_partition_id) { + /* The value 90 is empirically determined. It may change. */ + ret = hv_call_deposit_pages(node, partition_id, 90); + if (ret) + return ret; + } + + do { + local_irq_save(irq_flags); + + input = *this_cpu_ptr(hyperv_pcpu_input_arg); + + input->partition_id = partition_id; + input->vp_index = vp_index; + input->flags = flags; + input->subnode_type = HvSubnodeAny; + if (node != NUMA_NO_NODE) { + input->proximity_domain_info.domain_id = pxm; + input->proximity_domain_info.flags.reserved = 0; + input->proximity_domain_info.flags.proximity_info_valid = 1; + input->proximity_domain_info.flags.proximity_preferred = 1; + } else { + input->proximity_domain_info.as_uint64 = 0; + } + status = hv_do_hypercall(HVCALL_CREATE_VP, input, NULL); + local_irq_restore(irq_flags); + + if (hv_result(status) != HV_STATUS_INSUFFICIENT_MEMORY) { + if (!hv_result_success(status)) { + pr_err("%s: vcpu %u, lp %u, %lld\n", __func__, + vp_index, flags, status); + ret = hv_result(status); + } + break; + } + ret = hv_call_deposit_pages(node, partition_id, 1); + + } while (!ret); + + return ret; +} + only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/hyperv/irqdomain.c +++ linux-azure-5.4.0/arch/x86/hyperv/irqdomain.c @@ -0,0 +1,385 @@ +// SPDX-License-Identifier: GPL-2.0 + +/* + * Irqdomain for Linux to run as the root partition on Microsoft Hypervisor. + * + * Authors: + * Sunil Muthuswamy + * Wei Liu + */ + +#include +#include +#include + +static int hv_map_interrupt(union hv_device_id device_id, bool level, + int cpu, int vector, struct hv_interrupt_entry *entry) +{ + struct hv_input_map_device_interrupt *input; + struct hv_output_map_device_interrupt *output; + struct hv_device_interrupt_descriptor *intr_desc; + unsigned long flags; + u64 status; + int nr_bank, var_size; + + local_irq_save(flags); + + input = *this_cpu_ptr(hyperv_pcpu_input_arg); + output = *this_cpu_ptr(hyperv_pcpu_output_arg); + + intr_desc = &input->interrupt_descriptor; + memset(input, 0, sizeof(*input)); + input->partition_id = hv_current_partition_id; + input->device_id = device_id.as_uint64; + intr_desc->interrupt_type = HV_X64_INTERRUPT_TYPE_FIXED; + intr_desc->vector_count = 1; + intr_desc->target.vector = vector; + + if (level) + intr_desc->trigger_mode = HV_INTERRUPT_TRIGGER_MODE_LEVEL; + else + intr_desc->trigger_mode = HV_INTERRUPT_TRIGGER_MODE_EDGE; + + intr_desc->target.vp_set.valid_bank_mask = 0; + intr_desc->target.vp_set.format = HV_GENERIC_SET_SPARSE_4K; + nr_bank = cpumask_to_vpset(&(intr_desc->target.vp_set), cpumask_of(cpu)); + if (nr_bank < 0) { + local_irq_restore(flags); + pr_err("%s: unable to generate VP set\n", __func__); + return EINVAL; + } + intr_desc->target.flags = HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET; + + /* + * var-sized hypercall, var-size starts after vp_mask (thus + * vp_set.format does not count, but vp_set.valid_bank_mask + * does). + */ + var_size = nr_bank + 1; + + status = hv_do_rep_hypercall(HVCALL_MAP_DEVICE_INTERRUPT, 0, var_size, + input, output); + *entry = output->interrupt_entry; + + local_irq_restore(flags); + + if (!hv_result_success(status)) + pr_err("%s: hypercall failed, status %lld\n", __func__, status); + + return hv_result(status); +} + +static int hv_unmap_interrupt(u64 id, struct hv_interrupt_entry *old_entry) +{ + unsigned long flags; + struct hv_input_unmap_device_interrupt *input; + struct hv_interrupt_entry *intr_entry; + u64 status; + + local_irq_save(flags); + input = *this_cpu_ptr(hyperv_pcpu_input_arg); + + memset(input, 0, sizeof(*input)); + intr_entry = &input->interrupt_entry; + input->partition_id = hv_current_partition_id; + input->device_id = id; + *intr_entry = *old_entry; + + status = hv_do_hypercall(HVCALL_UNMAP_DEVICE_INTERRUPT, input, NULL); + local_irq_restore(flags); + + return hv_result(status); +} + +#ifdef CONFIG_PCI_MSI +struct rid_data { + struct pci_dev *bridge; + u32 rid; +}; + +static int get_rid_cb(struct pci_dev *pdev, u16 alias, void *data) +{ + struct rid_data *rd = data; + u8 bus = PCI_BUS_NUM(rd->rid); + + if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus) { + rd->bridge = pdev; + rd->rid = alias; + } + + return 0; +} + +static union hv_device_id hv_build_pci_dev_id(struct pci_dev *dev) +{ + union hv_device_id dev_id; + struct rid_data data = { + .bridge = NULL, + .rid = PCI_DEVID(dev->bus->number, dev->devfn) + }; + + pci_for_each_dma_alias(dev, get_rid_cb, &data); + + dev_id.as_uint64 = 0; + dev_id.device_type = HV_DEVICE_TYPE_PCI; + dev_id.pci.segment = pci_domain_nr(dev->bus); + + dev_id.pci.bdf.bus = PCI_BUS_NUM(data.rid); + dev_id.pci.bdf.device = PCI_SLOT(data.rid); + dev_id.pci.bdf.function = PCI_FUNC(data.rid); + dev_id.pci.source_shadow = HV_SOURCE_SHADOW_NONE; + + if (data.bridge) { + int pos; + + /* + * Microsoft Hypervisor requires a bus range when the bridge is + * running in PCI-X mode. + * + * To distinguish conventional vs PCI-X bridge, we can check + * the bridge's PCI-X Secondary Status Register, Secondary Bus + * Mode and Frequency bits. See PCI Express to PCI/PCI-X Bridge + * Specification Revision 1.0 5.2.2.1.3. + * + * Value zero means it is in conventional mode, otherwise it is + * in PCI-X mode. + */ + + pos = pci_find_capability(data.bridge, PCI_CAP_ID_PCIX); + if (pos) { + u16 status; + + pci_read_config_word(data.bridge, pos + + PCI_X_BRIDGE_SSTATUS, &status); + + if (status & PCI_X_SSTATUS_FREQ) { + /* Non-zero, PCI-X mode */ + u8 sec_bus, sub_bus; + + dev_id.pci.source_shadow = HV_SOURCE_SHADOW_BRIDGE_BUS_RANGE; + + pci_read_config_byte(data.bridge, PCI_SECONDARY_BUS, &sec_bus); + dev_id.pci.shadow_bus_range.secondary_bus = sec_bus; + pci_read_config_byte(data.bridge, PCI_SUBORDINATE_BUS, &sub_bus); + dev_id.pci.shadow_bus_range.subordinate_bus = sub_bus; + } + } + } + + return dev_id; +} + +static int hv_map_msi_interrupt(struct pci_dev *dev, int cpu, int vector, + struct hv_interrupt_entry *entry) +{ + union hv_device_id device_id = hv_build_pci_dev_id(dev); + + return hv_map_interrupt(device_id, false, cpu, vector, entry); +} + +static inline void entry_to_msi_msg(struct hv_interrupt_entry *entry, struct msi_msg *msg) +{ + /* High address is always 0 */ + msg->address_hi = 0; + msg->address_lo = entry->msi_entry.address.as_uint32; + msg->data = entry->msi_entry.data.as_uint32; +} + +static int hv_unmap_msi_interrupt(struct pci_dev *dev, struct hv_interrupt_entry *old_entry); +static void hv_irq_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) +{ + struct msi_desc *msidesc; + struct pci_dev *dev; + struct hv_interrupt_entry out_entry, *stored_entry; + struct irq_cfg *cfg = irqd_cfg(data); + cpumask_t *affinity; + int cpu; + u64 status; + + msidesc = irq_data_get_msi_desc(data); + dev = msi_desc_to_pci_dev(msidesc); + + if (!cfg) { + pr_debug("%s: cfg is NULL", __func__); + return; + } + + affinity = irq_data_get_effective_affinity_mask(data); + cpu = cpumask_first_and(affinity, cpu_online_mask); + + if (data->chip_data) { + /* + * This interrupt is already mapped. Let's unmap first. + * + * We don't use retarget interrupt hypercalls here because + * Microsoft Hypervisor doens't allow root to change the vector + * or specify VPs outside of the set that is initially used + * during mapping. + */ + stored_entry = data->chip_data; + data->chip_data = NULL; + + status = hv_unmap_msi_interrupt(dev, stored_entry); + + kfree(stored_entry); + + if (status != HV_STATUS_SUCCESS) { + pr_debug("%s: failed to unmap, status %lld", __func__, status); + return; + } + } + + stored_entry = kzalloc(sizeof(*stored_entry), GFP_ATOMIC); + if (!stored_entry) { + pr_debug("%s: failed to allocate chip data\n", __func__); + return; + } + + status = hv_map_msi_interrupt(dev, cpu, cfg->vector, &out_entry); + if (status != HV_STATUS_SUCCESS) { + kfree(stored_entry); + return; + } + + *stored_entry = out_entry; + data->chip_data = stored_entry; + entry_to_msi_msg(&out_entry, msg); + + return; +} + +static int hv_unmap_msi_interrupt(struct pci_dev *dev, struct hv_interrupt_entry *old_entry) +{ + return hv_unmap_interrupt(hv_build_pci_dev_id(dev).as_uint64, old_entry); +} + +static void hv_teardown_msi_irq_common(struct pci_dev *dev, struct msi_desc *msidesc, int irq) +{ + u64 status; + struct hv_interrupt_entry old_entry; + struct irq_desc *desc; + struct irq_data *data; + struct msi_msg msg; + + desc = irq_to_desc(irq); + if (!desc) { + pr_debug("%s: no irq desc\n", __func__); + return; + } + + data = &desc->irq_data; + if (!data) { + pr_debug("%s: no irq data\n", __func__); + return; + } + + if (!data->chip_data) { + pr_debug("%s: no chip data\n!", __func__); + return; + } + + old_entry = *(struct hv_interrupt_entry *)data->chip_data; + entry_to_msi_msg(&old_entry, &msg); + + kfree(data->chip_data); + data->chip_data = NULL; + + status = hv_unmap_msi_interrupt(dev, &old_entry); + + if (status != HV_STATUS_SUCCESS) { + pr_err("%s: hypercall failed, status %lld\n", __func__, status); + return; + } +} + +static void hv_msi_domain_free_irqs(struct irq_domain *domain, struct device *dev) +{ + int i; + struct msi_desc *entry; + struct pci_dev *pdev; + + if (WARN_ON_ONCE(!dev_is_pci(dev))) + return; + + pdev = to_pci_dev(dev); + + for_each_pci_msi_entry(entry, pdev) { + if (entry->irq) { + for (i = 0; i < entry->nvec_used; i++) { + hv_teardown_msi_irq_common(pdev, entry, entry->irq + i); + irq_domain_free_irqs(entry->irq + i, 1); + } + } + } +} + +/* + * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices, + * which implement the MSI or MSI-X Capability Structure. + */ +static struct irq_chip hv_pci_msi_controller = { + .name = "HV-PCI-MSI", + .irq_unmask = pci_msi_unmask_irq, + .irq_mask = pci_msi_mask_irq, + .irq_ack = irq_chip_ack_parent, + .irq_retrigger = irq_chip_retrigger_hierarchy, + .irq_compose_msi_msg = hv_irq_compose_msi_msg, + .irq_set_affinity = msi_domain_set_affinity, + .flags = IRQCHIP_SKIP_SET_WAKE, +}; + +static struct msi_domain_ops pci_msi_domain_ops = { + .domain_free_irqs = hv_msi_domain_free_irqs, + .msi_prepare = pci_msi_prepare, +}; + +static struct msi_domain_info hv_pci_msi_domain_info = { + .flags = MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | + MSI_FLAG_PCI_MSIX, + .ops = &pci_msi_domain_ops, + .chip = &hv_pci_msi_controller, + .handler = handle_edge_irq, + .handler_name = "edge", +}; + +struct irq_domain * __init hv_create_pci_msi_domain(void) +{ + struct irq_domain *d = NULL; + struct fwnode_handle *fn; + + fn = irq_domain_alloc_named_fwnode("HV-PCI-MSI"); + if (fn) + d = pci_msi_create_irq_domain(fn, &hv_pci_msi_domain_info, x86_vector_domain); + + /* No point in going further if we can't get an irq domain */ + BUG_ON(!d); + + return d; +} + +#endif /* CONFIG_PCI_MSI */ + +int hv_unmap_ioapic_interrupt(int ioapic_id, struct hv_interrupt_entry *entry) +{ + union hv_device_id device_id; + + device_id.as_uint64 = 0; + device_id.device_type = HV_DEVICE_TYPE_IOAPIC; + device_id.ioapic.ioapic_id = (u8)ioapic_id; + + return hv_unmap_interrupt(device_id.as_uint64, entry); +} +EXPORT_SYMBOL_GPL(hv_unmap_ioapic_interrupt); + +int hv_map_ioapic_interrupt(int ioapic_id, bool level, int cpu, int vector, + struct hv_interrupt_entry *entry) +{ + union hv_device_id device_id; + + device_id.as_uint64 = 0; + device_id.device_type = HV_DEVICE_TYPE_IOAPIC; + device_id.ioapic.ioapic_id = (u8)ioapic_id; + + return hv_map_interrupt(device_id, level, cpu, vector, entry); +} +EXPORT_SYMBOL_GPL(hv_map_ioapic_interrupt); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/hyperv/nested.c +++ linux-azure-5.4.0/arch/x86/hyperv/nested.c @@ -47,7 +47,7 @@ flush, NULL); local_irq_restore(flags); - if (!(status & HV_HYPERCALL_RESULT_MASK)) + if (hv_result_success(status)) ret = 0; fault: @@ -92,7 +92,7 @@ { struct hv_guest_mapping_flush_list **flush_pcpu; struct hv_guest_mapping_flush_list *flush; - u64 status = 0; + u64 status; unsigned long flags; int ret = -ENOTSUPP; int gpa_n = 0; @@ -125,10 +125,10 @@ local_irq_restore(flags); - if (!(status & HV_HYPERCALL_RESULT_MASK)) + if (hv_result_success(status)) ret = 0; else - ret = status; + ret = hv_result(status); fault: trace_hyperv_nested_flush_guest_mapping_range(as, ret); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/acenv.h +++ linux-azure-5.4.0/arch/x86/include/asm/acenv.h @@ -13,7 +13,19 @@ /* Asm macros */ -#define ACPI_FLUSH_CPU_CACHE() wbinvd() +/* + * ACPI_FLUSH_CPU_CACHE() flushes caches on entering sleep states. + * It is required to prevent data loss. + * + * While running inside virtual machine, the kernel can bypass cache flushing. + * Changing sleep state in a virtual machine doesn't affect the host system + * sleep state and cannot lead to data loss. + */ +#define ACPI_FLUSH_CPU_CACHE() \ +do { \ + if (!cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) \ + wbinvd(); \ +} while (0) int __acpi_acquire_global_lock(unsigned int *lock); int __acpi_release_global_lock(unsigned int *lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/apicdef.h +++ linux-azure-5.4.0/arch/x86/include/asm/apicdef.h @@ -432,15 +432,13 @@ #define BAD_APICID 0xFFFFu #endif -enum ioapic_irq_destination_types { - dest_Fixed = 0, - dest_LowestPrio = 1, - dest_SMI = 2, - dest__reserved_1 = 3, - dest_NMI = 4, - dest_INIT = 5, - dest__reserved_2 = 6, - dest_ExtINT = 7 +enum apic_delivery_modes { + APIC_DELIVERY_MODE_FIXED = 0, + APIC_DELIVERY_MODE_LOWESTPRIO = 1, + APIC_DELIVERY_MODE_SMI = 2, + APIC_DELIVERY_MODE_NMI = 4, + APIC_DELIVERY_MODE_INIT = 5, + APIC_DELIVERY_MODE_EXTINT = 7, }; #endif /* _ASM_X86_APICDEF_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/archrandom.h +++ linux-azure-5.4.0/arch/x86/include/asm/archrandom.h @@ -73,10 +73,6 @@ return ok; } -/* Conditional execution based on CPU type */ -#define arch_has_random() static_cpu_has(X86_FEATURE_RDRAND) -#define arch_has_random_seed() static_cpu_has(X86_FEATURE_RDSEED) - /* * These are the generic interfaces; they must not be declared if the * stubs in are to be invoked, @@ -86,22 +82,22 @@ static inline bool arch_get_random_long(unsigned long *v) { - return arch_has_random() ? rdrand_long(v) : false; + return static_cpu_has(X86_FEATURE_RDRAND) ? rdrand_long(v) : false; } static inline bool arch_get_random_int(unsigned int *v) { - return arch_has_random() ? rdrand_int(v) : false; + return static_cpu_has(X86_FEATURE_RDRAND) ? rdrand_int(v) : false; } static inline bool arch_get_random_seed_long(unsigned long *v) { - return arch_has_random_seed() ? rdseed_long(v) : false; + return static_cpu_has(X86_FEATURE_RDSEED) ? rdseed_long(v) : false; } static inline bool arch_get_random_seed_int(unsigned int *v) { - return arch_has_random_seed() ? rdseed_int(v) : false; + return static_cpu_has(X86_FEATURE_RDSEED) ? rdseed_int(v) : false; } extern void x86_init_rdrand(struct cpuinfo_x86 *c); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/asm.h +++ linux-azure-5.4.0/arch/x86/include/asm/asm.h @@ -7,9 +7,11 @@ # define __ASM_FORM_RAW(x) x # define __ASM_FORM_COMMA(x) x, #else -# define __ASM_FORM(x) " " #x " " -# define __ASM_FORM_RAW(x) #x -# define __ASM_FORM_COMMA(x) " " #x "," +#include + +# define __ASM_FORM(x) " " __stringify(x) " " +# define __ASM_FORM_RAW(x) __stringify(x) +# define __ASM_FORM_COMMA(x) " " __stringify(x) "," #endif #ifndef __x86_64__ @@ -139,9 +141,6 @@ # define _ASM_EXTABLE_EX(from, to) \ _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext) -# define _ASM_EXTABLE_REFCOUNT(from, to) \ - _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount) - # define _ASM_NOKPROBE(entry) \ .pushsection "_kprobe_blacklist","aw" ; \ _ASM_ALIGN ; \ @@ -170,9 +169,6 @@ # define _ASM_EXTABLE_EX(from, to) \ _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext) -# define _ASM_EXTABLE_REFCOUNT(from, to) \ - _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount) - /* For C file, we already have NOKPROBE_SYMBOL macro */ #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/compat.h +++ linux-azure-5.4.0/arch/x86/include/asm/compat.h @@ -31,15 +31,13 @@ typedef u64 __attribute__((aligned(4))) compat_u64; struct compat_stat { - compat_dev_t st_dev; - u16 __pad1; + u32 st_dev; compat_ino_t st_ino; compat_mode_t st_mode; compat_nlink_t st_nlink; __compat_uid_t st_uid; __compat_gid_t st_gid; - compat_dev_t st_rdev; - u16 __pad2; + u32 st_rdev; u32 st_size; u32 st_blksize; u32 st_blocks; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/cpufeature.h +++ linux-azure-5.4.0/arch/x86/include/asm/cpufeature.h @@ -49,7 +49,7 @@ extern const char * const x86_bug_flags[NBUGINTS*32]; #define test_cpu_cap(c, bit) \ - test_bit(bit, (unsigned long *)((c)->x86_capability)) + arch_test_bit(bit, (unsigned long *)((c)->x86_capability)) /* * There are 32 bits/features in each mask word. The high bits only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/emulate_prefix.h +++ linux-azure-5.4.0/arch/x86/include/asm/emulate_prefix.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _ASM_X86_EMULATE_PREFIX_H +#define _ASM_X86_EMULATE_PREFIX_H + +/* + * Virt escape sequences to trigger instruction emulation; + * ideally these would decode to 'whole' instruction and not destroy + * the instruction stream; sadly this is not true for the 'kvm' one :/ + */ + +#define __XEN_EMULATE_PREFIX 0x0f,0x0b,0x78,0x65,0x6e /* ud2 ; .ascii "xen" */ +#define __KVM_EMULATE_PREFIX 0x0f,0x0b,0x6b,0x76,0x6d /* ud2 ; .ascii "kvm" */ + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/intel-family.h +++ linux-azure-5.4.0/arch/x86/include/asm/intel-family.h @@ -35,6 +35,9 @@ * The #define line may optionally include a comment including platform names. */ +/* Wildcard match for FAM6 so X86_MATCH_INTEL_FAM6_MODEL(ANY) works */ +#define INTEL_FAM6_ANY X86_MODEL_ANY + #define INTEL_FAM6_CORE_YONAH 0x0E #define INTEL_FAM6_CORE2_MEROM 0x0F @@ -86,6 +89,14 @@ #define INTEL_FAM6_COMETLAKE 0xA5 #define INTEL_FAM6_COMETLAKE_L 0xA6 +#define INTEL_FAM6_ROCKETLAKE 0xA7 + +/* Hybrid Core/Atom Processors */ + +#define INTEL_FAM6_LAKEFIELD 0x8A +#define INTEL_FAM6_ALDERLAKE 0x97 +#define INTEL_FAM6_ALDERLAKE_L 0x9A + /* "Small Core" Processors (Atom) */ #define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ @@ -111,12 +122,16 @@ #define INTEL_FAM6_ATOM_TREMONT_D 0x86 /* Jacobsville */ #define INTEL_FAM6_ATOM_TREMONT 0x96 /* Elkhart Lake */ +#define INTEL_FAM6_ATOM_TREMONT_L 0x9C /* Jasper Lake */ /* Xeon Phi */ #define INTEL_FAM6_XEON_PHI_KNL 0x57 /* Knights Landing */ #define INTEL_FAM6_XEON_PHI_KNM 0x85 /* Knights Mill */ +/* Family 5 */ +#define INTEL_FAM5_QUARK_X1000 0x09 /* Quark X1000 SoC */ + /* Useful macros */ #define INTEL_CPU_FAM_ANY(_family, _model, _driver_data) \ { \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/kexec.h +++ linux-azure-5.4.0/arch/x86/include/asm/kexec.h @@ -22,6 +22,7 @@ #include #include +#include #include #include @@ -201,6 +202,14 @@ extern void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages); #define arch_kexec_pre_free_pages arch_kexec_pre_free_pages +#ifdef CONFIG_KEXEC_FILE +struct purgatory_info; +int arch_kexec_apply_relocations_add(struct purgatory_info *pi, + Elf_Shdr *section, + const Elf_Shdr *relsec, + const Elf_Shdr *symtab); +#define arch_kexec_apply_relocations_add arch_kexec_apply_relocations_add +#endif #endif typedef void crash_vmclear_fn(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/kvmclock.h +++ linux-azure-5.4.0/arch/x86/include/asm/kvmclock.h @@ -2,6 +2,20 @@ #ifndef _ASM_X86_KVM_CLOCK_H #define _ASM_X86_KVM_CLOCK_H +#include + extern struct clocksource kvm_clock; +DECLARE_PER_CPU(struct pvclock_vsyscall_time_info *, hv_clock_per_cpu); + +static inline struct pvclock_vcpu_time_info *this_cpu_pvti(void) +{ + return &this_cpu_read(hv_clock_per_cpu)->pvti; +} + +static inline struct pvclock_vsyscall_time_info *this_cpu_hvclock(void) +{ + return this_cpu_read(hv_clock_per_cpu); +} + #endif /* _ASM_X86_KVM_CLOCK_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/microcode.h +++ linux-azure-5.4.0/arch/x86/include/asm/microcode.h @@ -9,6 +9,7 @@ struct ucode_patch { struct list_head plist; void *data; /* Intel uses only this one */ + unsigned int size; u32 patch_id; u16 equiv_cpu; }; @@ -133,11 +134,13 @@ void reload_early_microcode(void); extern bool get_builtin_firmware(struct cpio_data *cd, const char *name); extern bool initrd_gone; +void microcode_bsp_resume(void); #else static inline int __init microcode_init(void) { return 0; }; 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 microcode_bsp_resume(void) { } static inline bool get_builtin_firmware(struct cpio_data *cd, const char *name) { return false; } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/mshyperv.h +++ linux-azure-5.4.0/arch/x86/include/asm/mshyperv.h @@ -4,6 +4,7 @@ #include #include +#include #include #include #include @@ -12,39 +13,19 @@ struct hv_guest_mapping_flush_list *flush, void *data); -#define hv_init_timer(timer, tick) \ - wrmsrl(HV_X64_MSR_STIMER0_COUNT + (2*timer), tick) -#define hv_init_timer_config(timer, val) \ - wrmsrl(HV_X64_MSR_STIMER0_CONFIG + (2*timer), val) - -#define hv_get_simp(val) rdmsrl(HV_X64_MSR_SIMP, val) -#define hv_set_simp(val) wrmsrl(HV_X64_MSR_SIMP, val) - -#define hv_get_siefp(val) rdmsrl(HV_X64_MSR_SIEFP, val) -#define hv_set_siefp(val) wrmsrl(HV_X64_MSR_SIEFP, val) - -#define hv_get_synic_state(val) rdmsrl(HV_X64_MSR_SCONTROL, val) -#define hv_set_synic_state(val) wrmsrl(HV_X64_MSR_SCONTROL, val) - -#define hv_get_vp_index(index) rdmsrl(HV_X64_MSR_VP_INDEX, index) - -#define hv_signal_eom() wrmsrl(HV_X64_MSR_EOM, 0) - -#define hv_get_synint_state(int_num, val) \ - rdmsrl(HV_X64_MSR_SINT0 + int_num, val) -#define hv_set_synint_state(int_num, val) \ - wrmsrl(HV_X64_MSR_SINT0 + int_num, val) +static inline void hv_set_register(unsigned int reg, u64 value) +{ + wrmsrl(reg, value); +} -#define hv_get_crash_ctl(val) \ - rdmsrl(HV_X64_MSR_CRASH_CTL, val) +static inline u64 hv_get_register(unsigned int reg) +{ + u64 value; -#define hv_get_time_ref_count(val) \ - rdmsrl(HV_X64_MSR_TIME_REF_COUNT, val) + rdmsrl(reg, value); + return value; +} -#define hv_get_reference_tsc(val) \ - rdmsrl(HV_X64_MSR_REFERENCE_TSC, val) -#define hv_set_reference_tsc(val) \ - wrmsrl(HV_X64_MSR_REFERENCE_TSC, val) #define hv_set_clocksource_vdso(val) \ ((val).archdata.vclock_mode = VCLOCK_HVCLOCK) #define hv_get_raw_timer() rdtsc_ordered() @@ -55,21 +36,11 @@ #define trace_hyperv_callback_vector hyperv_callback_vector #endif void hyperv_vector_handler(struct pt_regs *regs); - -/* - * Routines for stimer0 Direct Mode handling. - * On x86/x64, there are no percpu actions to take. - */ void hv_stimer0_vector_handler(struct pt_regs *regs); void hv_stimer0_callback_vector(void); -static inline void hv_enable_stimer0_percpu_irq(int irq) {} -static inline void hv_disable_stimer0_percpu_irq(int irq) {} - - #if IS_ENABLED(CONFIG_HYPERV) extern void *hv_hypercall_pg; -extern void __percpu **hyperv_pcpu_input_arg; static inline u64 hv_do_hypercall(u64 control, void *input, void *output) { @@ -218,8 +189,6 @@ void __init hyperv_init(void); void hyperv_setup_mmu_ops(void); -void *hv_alloc_hyperv_page(void); -void hv_free_hyperv_page(unsigned long addr); void hyperv_reenlightenment_intr(struct pt_regs *regs); void set_hv_tscchange_cb(void (*cb)(void)); void clear_hv_tscchange_cb(void); @@ -242,8 +211,6 @@ #else /* CONFIG_HYPERV */ static inline void hyperv_init(void) {} static inline void hyperv_setup_mmu_ops(void) {} -static inline void *hv_alloc_hyperv_page(void) { return NULL; } -static inline void hv_free_hyperv_page(unsigned long addr) {} static inline void set_hv_tscchange_cb(void (*cb)(void)) {} static inline void clear_hv_tscchange_cb(void) {} static inline void hyperv_stop_tsc_emulation(void) {}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/page_64_types.h +++ linux-azure-5.4.0/arch/x86/include/asm/page_64_types.h @@ -15,7 +15,7 @@ #define THREAD_SIZE_ORDER (2 + KASAN_STACK_ORDER) #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER) -#define EXCEPTION_STACK_ORDER (0 + KASAN_STACK_ORDER) +#define EXCEPTION_STACK_ORDER (1 + KASAN_STACK_ORDER) #define EXCEPTION_STKSZ (PAGE_SIZE << EXCEPTION_STACK_ORDER) #define IRQ_STACK_ORDER (2 + KASAN_STACK_ORDER) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/proto.h +++ linux-azure-5.4.0/arch/x86/include/asm/proto.h @@ -4,6 +4,8 @@ #include +struct task_struct; + /* misc architecture specific prototypes */ void syscall_init(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/realmode.h +++ linux-azure-5.4.0/arch/x86/include/asm/realmode.h @@ -82,6 +82,7 @@ } void reserve_real_mode(void); +void load_trampoline_pgtable(void); #endif /* __ASSEMBLY__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/suspend_32.h +++ linux-azure-5.4.0/arch/x86/include/asm/suspend_32.h @@ -21,7 +21,6 @@ #endif unsigned long cr0, cr2, cr3, cr4; u64 misc_enable; - bool misc_enable_saved; struct saved_msrs saved_msrs; struct desc_ptr gdt_desc; struct desc_ptr idt; @@ -30,6 +29,7 @@ unsigned long tr; unsigned long safety; unsigned long return_address; + bool misc_enable_saved; } __attribute__((packed)); /* routines for saving/restoring kernel state */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/suspend_64.h +++ linux-azure-5.4.0/arch/x86/include/asm/suspend_64.h @@ -14,9 +14,13 @@ * Image of the saved processor state, used by the low level ACPI suspend to * RAM code and by the low level hibernation code. * - * If you modify it, fix arch/x86/kernel/acpi/wakeup_64.S and make sure that - * __save/__restore_processor_state(), defined in arch/x86/kernel/suspend_64.c, - * still work as required. + * If you modify it, check how it is used in arch/x86/kernel/acpi/wakeup_64.S + * and make sure that __save/__restore_processor_state(), defined in + * arch/x86/power/cpu.c, still work as required. + * + * Because the structure is packed, make sure to avoid unaligned members. For + * optimisation purposes but also because tools like kmemleak only search for + * pointers that are aligned. */ struct saved_context { struct pt_regs regs; @@ -36,7 +40,6 @@ unsigned long cr0, cr2, cr3, cr4; u64 misc_enable; - bool misc_enable_saved; struct saved_msrs saved_msrs; unsigned long efer; u16 gdt_pad; /* Unused */ @@ -48,6 +51,7 @@ unsigned long tr; unsigned long safety; unsigned long return_address; + bool misc_enable_saved; } __attribute__((packed)); #define loaddebug(thread,register) \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/svm.h +++ linux-azure-5.4.0/arch/x86/include/asm/svm.h @@ -119,6 +119,8 @@ #define V_IGN_TPR_SHIFT 20 #define V_IGN_TPR_MASK (1 << V_IGN_TPR_SHIFT) +#define V_IRQ_INJECTION_BITS_MASK (V_IRQ_MASK | V_INTR_PRIO_MASK | V_IGN_TPR_MASK) + #define V_INTR_MASKING_SHIFT 24 #define V_INTR_MASKING_MASK (1 << V_INTR_MASKING_SHIFT) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/timex.h +++ linux-azure-5.4.0/arch/x86/include/asm/timex.h @@ -5,6 +5,15 @@ #include #include +static inline unsigned long random_get_entropy(void) +{ + if (!IS_ENABLED(CONFIG_X86_TSC) && + !cpu_feature_enabled(X86_FEATURE_TSC)) + return random_get_entropy_fallback(); + return rdtsc(); +} +#define random_get_entropy random_get_entropy + /* Assume we use the PIT time source for the clock tick */ #define CLOCK_TICK_RATE PIT_TICK_RATE only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/tsc.h +++ linux-azure-5.4.0/arch/x86/include/asm/tsc.h @@ -22,13 +22,12 @@ static inline cycles_t get_cycles(void) { -#ifndef CONFIG_X86_TSC - if (!boot_cpu_has(X86_FEATURE_TSC)) + if (!IS_ENABLED(CONFIG_X86_TSC) && + !cpu_feature_enabled(X86_FEATURE_TSC)) return 0; -#endif - return rdtsc(); } +#define get_cycles get_cycles extern struct system_counterval_t convert_art_to_tsc(u64 art); extern struct system_counterval_t convert_art_ns_to_tsc(u64 art_ns); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/uaccess.h +++ linux-azure-5.4.0/arch/x86/include/asm/uaccess.h @@ -378,18 +378,6 @@ : "=r" (err), ltype(x) \ : "m" (__m(addr)), "i" (errret), "0" (err)) -#define __get_user_asm_nozero(x, addr, err, itype, rtype, ltype, errret) \ - asm volatile("\n" \ - "1: mov"itype" %2,%"rtype"1\n" \ - "2:\n" \ - ".section .fixup,\"ax\"\n" \ - "3: mov %3,%0\n" \ - " jmp 2b\n" \ - ".previous\n" \ - _ASM_EXTABLE_UA(1b, 3b) \ - : "=r" (err), ltype(x) \ - : "m" (__m(addr)), "i" (errret), "0" (err)) - /* * This doesn't do __uaccess_begin/end - the exception handling * around it must do that. @@ -453,6 +441,103 @@ __builtin_expect(__gu_err, 0); \ }) +#ifdef CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT +#define __try_cmpxchg_user_asm(itype, ltype, _ptr, _pold, _new, label) ({ \ + bool success; \ + __typeof__(_ptr) _old = (__typeof__(_ptr))(_pold); \ + __typeof__(*(_ptr)) __old = *_old; \ + __typeof__(*(_ptr)) __new = (_new); \ + asm_volatile_goto("\n" \ + "1: " LOCK_PREFIX "cmpxchg"itype" %[new], %[ptr]\n"\ + _ASM_EXTABLE_UA(1b, %l[label]) \ + : CC_OUT(z) (success), \ + [ptr] "+m" (*_ptr), \ + [old] "+a" (__old) \ + : [new] ltype (__new) \ + : "memory" \ + : label); \ + if (unlikely(!success)) \ + *_old = __old; \ + likely(success); }) + +#ifdef CONFIG_X86_32 +#define __try_cmpxchg64_user_asm(_ptr, _pold, _new, label) ({ \ + bool success; \ + __typeof__(_ptr) _old = (__typeof__(_ptr))(_pold); \ + __typeof__(*(_ptr)) __old = *_old; \ + __typeof__(*(_ptr)) __new = (_new); \ + asm_volatile_goto("\n" \ + "1: " LOCK_PREFIX "cmpxchg8b %[ptr]\n" \ + _ASM_EXTABLE_UA(1b, %l[label]) \ + : CC_OUT(z) (success), \ + "+A" (__old), \ + [ptr] "+m" (*_ptr) \ + : "b" ((u32)__new), \ + "c" ((u32)((u64)__new >> 32)) \ + : "memory" \ + : label); \ + if (unlikely(!success)) \ + *_old = __old; \ + likely(success); }) +#endif // CONFIG_X86_32 +#else // !CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT +#define __try_cmpxchg_user_asm(itype, ltype, _ptr, _pold, _new, label) ({ \ + int __err = 0; \ + bool success; \ + __typeof__(_ptr) _old = (__typeof__(_ptr))(_pold); \ + __typeof__(*(_ptr)) __old = *_old; \ + __typeof__(*(_ptr)) __new = (_new); \ + asm volatile("\n" \ + "1: " LOCK_PREFIX "cmpxchg"itype" %[new], %[ptr]\n"\ + CC_SET(z) \ + "2:\n" \ + _ASM_EXTABLE_TYPE_REG(1b, 2b, EX_TYPE_EFAULT_REG, \ + %[errout]) \ + : CC_OUT(z) (success), \ + [errout] "+r" (__err), \ + [ptr] "+m" (*_ptr), \ + [old] "+a" (__old) \ + : [new] ltype (__new) \ + : "memory"); \ + if (unlikely(__err)) \ + goto label; \ + if (unlikely(!success)) \ + *_old = __old; \ + likely(success); }) + +#ifdef CONFIG_X86_32 +/* + * Unlike the normal CMPXCHG, hardcode ECX for both success/fail and error. + * There are only six GPRs available and four (EAX, EBX, ECX, and EDX) are + * hardcoded by CMPXCHG8B, leaving only ESI and EDI. If the compiler uses + * both ESI and EDI for the memory operand, compilation will fail if the error + * is an input+output as there will be no register available for input. + */ +#define __try_cmpxchg64_user_asm(_ptr, _pold, _new, label) ({ \ + int __result; \ + __typeof__(_ptr) _old = (__typeof__(_ptr))(_pold); \ + __typeof__(*(_ptr)) __old = *_old; \ + __typeof__(*(_ptr)) __new = (_new); \ + asm volatile("\n" \ + "1: " LOCK_PREFIX "cmpxchg8b %[ptr]\n" \ + "mov $0, %%ecx\n\t" \ + "setz %%cl\n" \ + "2:\n" \ + _ASM_EXTABLE_TYPE_REG(1b, 2b, EX_TYPE_EFAULT_REG, %%ecx) \ + : [result]"=c" (__result), \ + "+A" (__old), \ + [ptr] "+m" (*_ptr) \ + : "b" ((u32)__new), \ + "c" ((u32)((u64)__new >> 32)) \ + : "memory", "cc"); \ + if (unlikely(__result < 0)) \ + goto label; \ + if (unlikely(!__result)) \ + *_old = __old; \ + likely(__result); }) +#endif // CONFIG_X86_32 +#endif // CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT + /* FIXME: this hack is definitely wrong -AK */ struct __large_struct { unsigned long buf[100]; }; #define __m(x) (*(struct __large_struct __user *)(x)) @@ -734,6 +819,51 @@ if (unlikely(__gu_err)) goto err_label; \ } while (0) +extern void __try_cmpxchg_user_wrong_size(void); + +#ifndef CONFIG_X86_32 +#define __try_cmpxchg64_user_asm(_ptr, _oldp, _nval, _label) \ + __try_cmpxchg_user_asm("q", "r", (_ptr), (_oldp), (_nval), _label) +#endif + +/* + * Force the pointer to u to match the size expected by the asm helper. + * clang/LLVM compiles all cases and only discards the unused paths after + * processing errors, which breaks i386 if the pointer is an 8-byte value. + */ +#define unsafe_try_cmpxchg_user(_ptr, _oldp, _nval, _label) ({ \ + bool __ret; \ + __chk_user_ptr(_ptr); \ + switch (sizeof(*(_ptr))) { \ + case 1: __ret = __try_cmpxchg_user_asm("b", "q", \ + (__force u8 *)(_ptr), (_oldp), \ + (_nval), _label); \ + break; \ + case 2: __ret = __try_cmpxchg_user_asm("w", "r", \ + (__force u16 *)(_ptr), (_oldp), \ + (_nval), _label); \ + break; \ + case 4: __ret = __try_cmpxchg_user_asm("l", "r", \ + (__force u32 *)(_ptr), (_oldp), \ + (_nval), _label); \ + break; \ + case 8: __ret = __try_cmpxchg64_user_asm((__force u64 *)(_ptr), (_oldp),\ + (_nval), _label); \ + break; \ + default: __try_cmpxchg_user_wrong_size(); \ + } \ + __ret; }) + +/* "Returns" 0 on success, 1 on failure, -EFAULT if the access faults. */ +#define __try_cmpxchg_user(_ptr, _oldp, _nval, _label) ({ \ + int __ret = -EFAULT; \ + __uaccess_begin_nospec(); \ + __ret = !unsafe_try_cmpxchg_user(_ptr, _oldp, _nval, _label); \ +_label: \ + __uaccess_end(); \ + __ret; \ + }) + /* * We want the unsafe accessors to always be inlined and use * the error labels - thus the macro games. only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/uaccess_32.h +++ linux-azure-5.4.0/arch/x86/include/asm/uaccess_32.h @@ -23,33 +23,6 @@ static __always_inline unsigned long raw_copy_from_user(void *to, const void __user *from, unsigned long n) { - if (__builtin_constant_p(n)) { - unsigned long ret; - - switch (n) { - case 1: - ret = 0; - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u8 *)to, from, ret, - "b", "b", "=q", 1); - __uaccess_end(); - return ret; - case 2: - ret = 0; - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u16 *)to, from, ret, - "w", "w", "=r", 2); - __uaccess_end(); - return ret; - case 4: - ret = 0; - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u32 *)to, from, ret, - "l", "k", "=r", 4); - __uaccess_end(); - return ret; - } - } return __copy_user_ll(to, (__force const void *)from, n); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/uaccess_64.h +++ linux-azure-5.4.0/arch/x86/include/asm/uaccess_64.h @@ -65,117 +65,13 @@ static __always_inline __must_check unsigned long raw_copy_from_user(void *dst, const void __user *src, unsigned long size) { - int ret = 0; - - if (!__builtin_constant_p(size)) - return copy_user_generic(dst, (__force void *)src, size); - switch (size) { - case 1: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u8 *)dst, (u8 __user *)src, - ret, "b", "b", "=q", 1); - __uaccess_end(); - return ret; - case 2: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u16 *)dst, (u16 __user *)src, - ret, "w", "w", "=r", 2); - __uaccess_end(); - return ret; - case 4: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u32 *)dst, (u32 __user *)src, - ret, "l", "k", "=r", 4); - __uaccess_end(); - return ret; - case 8: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u64 *)dst, (u64 __user *)src, - ret, "q", "", "=r", 8); - __uaccess_end(); - return ret; - case 10: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u64 *)dst, (u64 __user *)src, - ret, "q", "", "=r", 10); - if (likely(!ret)) - __get_user_asm_nozero(*(u16 *)(8 + (char *)dst), - (u16 __user *)(8 + (char __user *)src), - ret, "w", "w", "=r", 2); - __uaccess_end(); - return ret; - case 16: - __uaccess_begin_nospec(); - __get_user_asm_nozero(*(u64 *)dst, (u64 __user *)src, - ret, "q", "", "=r", 16); - if (likely(!ret)) - __get_user_asm_nozero(*(u64 *)(8 + (char *)dst), - (u64 __user *)(8 + (char __user *)src), - ret, "q", "", "=r", 8); - __uaccess_end(); - return ret; - default: - return copy_user_generic(dst, (__force void *)src, size); - } + return copy_user_generic(dst, (__force void *)src, size); } static __always_inline __must_check unsigned long raw_copy_to_user(void __user *dst, const void *src, unsigned long size) { - int ret = 0; - - if (!__builtin_constant_p(size)) - return copy_user_generic((__force void *)dst, src, size); - switch (size) { - case 1: - __uaccess_begin(); - __put_user_asm(*(u8 *)src, (u8 __user *)dst, - ret, "b", "b", "iq", 1); - __uaccess_end(); - return ret; - case 2: - __uaccess_begin(); - __put_user_asm(*(u16 *)src, (u16 __user *)dst, - ret, "w", "w", "ir", 2); - __uaccess_end(); - return ret; - case 4: - __uaccess_begin(); - __put_user_asm(*(u32 *)src, (u32 __user *)dst, - ret, "l", "k", "ir", 4); - __uaccess_end(); - return ret; - case 8: - __uaccess_begin(); - __put_user_asm(*(u64 *)src, (u64 __user *)dst, - ret, "q", "", "er", 8); - __uaccess_end(); - return ret; - case 10: - __uaccess_begin(); - __put_user_asm(*(u64 *)src, (u64 __user *)dst, - ret, "q", "", "er", 10); - if (likely(!ret)) { - asm("":::"memory"); - __put_user_asm(4[(u16 *)src], 4 + (u16 __user *)dst, - ret, "w", "w", "ir", 2); - } - __uaccess_end(); - return ret; - case 16: - __uaccess_begin(); - __put_user_asm(*(u64 *)src, (u64 __user *)dst, - ret, "q", "", "er", 16); - if (likely(!ret)) { - asm("":::"memory"); - __put_user_asm(1[(u64 *)src], 1 + (u64 __user *)dst, - ret, "q", "", "er", 8); - } - __uaccess_end(); - return ret; - default: - return copy_user_generic((__force void *)dst, src, size); - } + return copy_user_generic((__force void *)dst, src, size); } static __always_inline __must_check only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/include/asm/xen/interface.h +++ linux-azure-5.4.0/arch/x86/include/asm/xen/interface.h @@ -379,12 +379,9 @@ * Prefix forces emulation of some non-trapping instructions. * Currently only CPUID. */ -#ifdef __ASSEMBLY__ -#define XEN_EMULATE_PREFIX .byte 0x0f,0x0b,0x78,0x65,0x6e ; -#define XEN_CPUID XEN_EMULATE_PREFIX cpuid -#else -#define XEN_EMULATE_PREFIX ".byte 0x0f,0x0b,0x78,0x65,0x6e ; " -#define XEN_CPUID XEN_EMULATE_PREFIX "cpuid" -#endif +#include + +#define XEN_EMULATE_PREFIX __ASM_FORM(.byte __XEN_EMULATE_PREFIX ;) +#define XEN_CPUID XEN_EMULATE_PREFIX __ASM_FORM(cpuid) #endif /* _ASM_X86_XEN_INTERFACE_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/apic_flat_64.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/apic_flat_64.c @@ -113,7 +113,7 @@ .apic_id_valid = default_apic_id_valid, .apic_id_registered = flat_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 1, /* logical */ .disable_esr = 0, @@ -206,7 +206,7 @@ .apic_id_valid = default_apic_id_valid, .apic_id_registered = flat_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 0, /* physical */ .disable_esr = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/apic_noop.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/apic_noop.c @@ -94,7 +94,7 @@ .apic_id_valid = default_apic_id_valid, .apic_id_registered = noop_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, /* logical delivery broadcast to all CPUs: */ .irq_dest_mode = 1, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/apic_numachip.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/apic_numachip.c @@ -246,7 +246,7 @@ .apic_id_valid = numachip_apic_id_valid, .apic_id_registered = numachip_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 0, /* physical */ .disable_esr = 0, @@ -295,7 +295,7 @@ .apic_id_valid = numachip_apic_id_valid, .apic_id_registered = numachip_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 0, /* physical */ .disable_esr = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/bigsmp_32.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/bigsmp_32.c @@ -126,7 +126,7 @@ .apic_id_valid = default_apic_id_valid, .apic_id_registered = bigsmp_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, /* phys delivery to target CPU: */ .irq_dest_mode = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/probe_32.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/probe_32.c @@ -68,7 +68,7 @@ .apic_id_valid = default_apic_id_valid, .apic_id_registered = default_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, /* logical delivery broadcast to all CPUs: */ .irq_dest_mode = 1, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/apic/x2apic_uv_x.c +++ linux-azure-5.4.0/arch/x86/kernel/apic/x2apic_uv_x.c @@ -647,7 +647,7 @@ .apic_id_valid = uv_apic_id_valid, .apic_id_registered = uv_apic_id_registered, - .irq_delivery_mode = dest_Fixed, + .delivery_mode = APIC_DELIVERY_MODE_FIXED, .irq_dest_mode = 0, /* Physical */ .disable_esr = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/cpu/intel.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/intel.c @@ -97,7 +97,7 @@ static int __init ring3mwait_disable(char *__unused) { ring3mwait_disabled = true; - return 0; + return 1; } __setup("ring3mwait=disable", ring3mwait_disable); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/cpu/microcode/amd.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/microcode/amd.c @@ -441,7 +441,13 @@ return ret; native_rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy); - if (rev >= mc->hdr.patch_id) + + /* + * Allow application of the same revision to pick up SMT-specific + * changes even if the revision of the other SMT thread is already + * up-to-date. + */ + if (rev > mc->hdr.patch_id) return ret; if (!__apply_microcode_amd(mc)) { @@ -523,8 +529,12 @@ native_rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy); - /* Check whether we have saved a new patch already: */ - if (*new_rev && rev < mc->hdr.patch_id) { + /* + * Check whether a new patch has been saved already. Also, allow application of + * the same revision in order to pick up SMT-thread-specific configuration even + * if the sibling SMT thread already has an up-to-date revision. + */ + if (*new_rev && rev <= mc->hdr.patch_id) { if (!__apply_microcode_amd(mc)) { *new_rev = mc->hdr.patch_id; return; @@ -783,6 +793,7 @@ kfree(patch); return -EINVAL; } + patch->size = *patch_size; mc_hdr = (struct microcode_header_amd *)(fw + SECTION_HDR_SIZE); proc_id = mc_hdr->processor_rev_id; @@ -864,7 +875,7 @@ return ret; memset(amd_ucode_patch, 0, PATCH_MAX_SIZE); - memcpy(amd_ucode_patch, p->data, min_t(u32, ksize(p->data), PATCH_MAX_SIZE)); + memcpy(amd_ucode_patch, p->data, min_t(u32, p->size, PATCH_MAX_SIZE)); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/cpu/resctrl/pseudo_lock.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/resctrl/pseudo_lock.c @@ -416,6 +416,7 @@ struct pseudo_lock_region *plr = rdtgrp->plr; u32 rmid_p, closid_p; unsigned long i; + u64 saved_msr; #ifdef CONFIG_KASAN /* * The registers used for local register variables are also used @@ -459,6 +460,7 @@ * the buffer and evict pseudo-locked memory read earlier from the * cache. */ + saved_msr = __rdmsr(MSR_MISC_FEATURE_CONTROL); __wrmsr(MSR_MISC_FEATURE_CONTROL, prefetch_disable_bits, 0x0); closid_p = this_cpu_read(pqr_state.cur_closid); rmid_p = this_cpu_read(pqr_state.cur_rmid); @@ -510,7 +512,7 @@ __wrmsr(IA32_PQR_ASSOC, rmid_p, closid_p); /* Re-enable the hardware prefetcher(s) */ - wrmsr(MSR_MISC_FEATURE_CONTROL, 0x0, 0x0); + wrmsrl(MSR_MISC_FEATURE_CONTROL, saved_msr); local_irq_enable(); plr->thread_done = 1; @@ -867,6 +869,7 @@ static int measure_cycles_lat_fn(void *_plr) { struct pseudo_lock_region *plr = _plr; + u32 saved_low, saved_high; unsigned long i; u64 start, end; void *mem_r; @@ -875,6 +878,7 @@ /* * Disable hardware prefetchers. */ + rdmsr(MSR_MISC_FEATURE_CONTROL, saved_low, saved_high); wrmsr(MSR_MISC_FEATURE_CONTROL, prefetch_disable_bits, 0x0); mem_r = READ_ONCE(plr->kmem); /* @@ -891,7 +895,7 @@ end = rdtsc_ordered(); trace_pseudo_lock_mem_latency((u32)(end - start)); } - wrmsr(MSR_MISC_FEATURE_CONTROL, 0x0, 0x0); + wrmsr(MSR_MISC_FEATURE_CONTROL, saved_low, saved_high); local_irq_enable(); plr->thread_done = 1; wake_up_interruptible(&plr->lock_thread_wq); @@ -936,6 +940,7 @@ u64 hits_before = 0, hits_after = 0, miss_before = 0, miss_after = 0; struct perf_event *miss_event, *hit_event; int hit_pmcnum, miss_pmcnum; + u32 saved_low, saved_high; unsigned int line_size; unsigned int size; unsigned long i; @@ -969,6 +974,7 @@ /* * Disable hardware prefetchers. */ + rdmsr(MSR_MISC_FEATURE_CONTROL, saved_low, saved_high); wrmsr(MSR_MISC_FEATURE_CONTROL, prefetch_disable_bits, 0x0); /* Initialize rest of local variables */ @@ -1027,7 +1033,7 @@ */ rmb(); /* Re-enable hardware prefetchers */ - wrmsr(MSR_MISC_FEATURE_CONTROL, 0x0, 0x0); + wrmsr(MSR_MISC_FEATURE_CONTROL, saved_low, saved_high); local_irq_enable(); out_hit: perf_event_release_kernel(hit_event); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/cpu/scattered.c +++ linux-azure-5.4.0/arch/x86/kernel/cpu/scattered.c @@ -26,6 +26,7 @@ static const struct cpuid_bit cpuid_bits[] = { { X86_FEATURE_APERFMPERF, CPUID_ECX, 0, 0x00000006, 0 }, { X86_FEATURE_EPB, CPUID_ECX, 3, 0x00000006, 0 }, + { X86_FEATURE_RRSBA_CTRL, CPUID_EDX, 2, 0x00000007, 2 }, { X86_FEATURE_CQM_LLC, CPUID_EDX, 1, 0x0000000f, 0 }, { X86_FEATURE_CQM_OCCUP_LLC, CPUID_EDX, 0, 0x0000000f, 1 }, { X86_FEATURE_CQM_MBM_TOTAL, CPUID_EDX, 1, 0x0000000f, 1 }, @@ -41,6 +42,7 @@ { X86_FEATURE_MBA, CPUID_EBX, 6, 0x80000008, 0 }, { X86_FEATURE_SME, CPUID_EAX, 0, 0x8000001f, 0 }, { X86_FEATURE_SEV, CPUID_EAX, 1, 0x8000001f, 0 }, + { X86_FEATURE_SME_COHERENT, CPUID_EAX, 10, 0x8000001f, 0 }, { 0, 0, 0, 0, 0 } }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/fpu/regset.c +++ linux-azure-5.4.0/arch/x86/kernel/fpu/regset.c @@ -124,7 +124,7 @@ /* * A whole standard-format XSAVE buffer is needed: */ - if ((pos != 0) || (count < fpu_user_xstate_size)) + if (pos != 0 || count != fpu_user_xstate_size) return -EFAULT; xsave = &fpu->state.xsave; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/head64.c +++ linux-azure-5.4.0/arch/x86/kernel/head64.c @@ -383,6 +383,8 @@ { memset(__bss_start, 0, (unsigned long) __bss_stop - (unsigned long) __bss_start); + memset(__brk_base, 0, + (unsigned long) __brk_limit - (unsigned long) __brk_base); } static unsigned long get_cmd_line_ptr(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/hpet.c +++ linux-azure-5.4.0/arch/x86/kernel/hpet.c @@ -9,6 +9,7 @@ #include #include +#include #undef pr_fmt #define pr_fmt(fmt) "hpet: " fmt @@ -806,6 +807,83 @@ return false; } +static bool __init mwait_pc10_supported(void) +{ + unsigned int eax, ebx, ecx, mwait_substates; + + if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) + return false; + + if (!cpu_feature_enabled(X86_FEATURE_MWAIT)) + return false; + + if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) + return false; + + cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates); + + return (ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) && + (ecx & CPUID5_ECX_INTERRUPT_BREAK) && + (mwait_substates & (0xF << 28)); +} + +/* + * Check whether the system supports PC10. If so force disable HPET as that + * stops counting in PC10. This check is overbroad as it does not take any + * of the following into account: + * + * - ACPI tables + * - Enablement of intel_idle + * - Command line arguments which limit intel_idle C-state support + * + * That's perfectly fine. HPET is a piece of hardware designed by committee + * and the only reasons why it is still in use on modern systems is the + * fact that it is impossible to reliably query TSC and CPU frequency via + * CPUID or firmware. + * + * If HPET is functional it is useful for calibrating TSC, but this can be + * done via PMTIMER as well which seems to be the last remaining timer on + * X86/INTEL platforms that has not been completely wreckaged by feature + * creep. + * + * In theory HPET support should be removed altogether, but there are older + * systems out there which depend on it because TSC and APIC timer are + * dysfunctional in deeper C-states. + * + * It's only 20 years now that hardware people have been asked to provide + * reliable and discoverable facilities which can be used for timekeeping + * and per CPU timer interrupts. + * + * The probability that this problem is going to be solved in the + * forseeable future is close to zero, so the kernel has to be cluttered + * with heuristics to keep up with the ever growing amount of hardware and + * firmware trainwrecks. Hopefully some day hardware people will understand + * that the approach of "This can be fixed in software" is not sustainable. + * Hope dies last... + */ +static bool __init hpet_is_pc10_damaged(void) +{ + unsigned long long pcfg; + + /* Check whether PC10 substates are supported */ + if (!mwait_pc10_supported()) + return false; + + /* Check whether PC10 is enabled in PKG C-state limit */ + rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, pcfg); + if ((pcfg & 0xF) < 8) + return false; + + if (hpet_force_user) { + pr_warn("HPET force enabled via command line, but dysfunctional in PC10.\n"); + return false; + } + + pr_info("HPET dysfunctional in PC10. Force disabled.\n"); + boot_hpet_disable = true; + return true; +} + /** * hpet_enable - Try to setup the HPET timer. Returns 1 on success. */ @@ -819,6 +897,9 @@ if (!is_hpet_capable()) return 0; + if (hpet_is_pc10_damaged()) + return 0; + hpet_set_mapping(); if (!hpet_virt_address) return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/irq.c +++ linux-azure-5.4.0/arch/x86/kernel/irq.c @@ -295,8 +295,10 @@ { if (handler) kvm_posted_intr_wakeup_handler = handler; - else + else { kvm_posted_intr_wakeup_handler = dummy_handler; + synchronize_rcu(); + } } EXPORT_SYMBOL_GPL(kvm_set_posted_intr_wakeup_handler); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/pmem.c +++ linux-azure-5.4.0/arch/x86/kernel/pmem.c @@ -27,6 +27,11 @@ * simply here to trigger the module to load on demand. */ pdev = platform_device_alloc("e820_pmem", -1); - return platform_device_add(pdev); + + rc = platform_device_add(pdev); + if (rc) + platform_device_put(pdev); + + return rc; } device_initcall(register_e820_pmem); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/process_32.c +++ linux-azure-5.4.0/arch/x86/kernel/process_32.c @@ -229,14 +229,12 @@ { struct thread_struct *prev = &prev_p->thread, *next = &next_p->thread; - struct fpu *prev_fpu = &prev->fpu; - struct fpu *next_fpu = &next->fpu; int cpu = smp_processor_id(); /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */ if (!test_thread_flag(TIF_NEED_FPU_LOAD)) - switch_fpu_prepare(prev_fpu, cpu); + switch_fpu_prepare(prev_p, cpu); /* * Save away %gs. No need to save %fs, as it was saved on the @@ -292,7 +290,7 @@ this_cpu_write(current_task, next_p); - switch_fpu_finish(next_fpu); + switch_fpu_finish(next_p); /* Load the Intel cache allocation PQR MSR. */ resctrl_sched_in(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/step.c +++ linux-azure-5.4.0/arch/x86/kernel/step.c @@ -175,8 +175,7 @@ * * NOTE: this means that set/clear TIF_BLOCKSTEP is only safe if * task is current or it can't be running, otherwise we can race - * with __switch_to_xtra(). We rely on ptrace_freeze_traced() but - * PTRACE_KILL is not safe. + * with __switch_to_xtra(). We rely on ptrace_freeze_traced(). */ local_irq_disable(); debugctl = get_debugctlmsr(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/sys_x86_64.c +++ linux-azure-5.4.0/arch/x86/kernel/sys_x86_64.c @@ -70,9 +70,6 @@ if (*str == 0) return 1; - if (*str == '=') - str++; - if (!strcmp(str, "32")) va_align.flags = ALIGN_VA_32; else if (!strcmp(str, "64")) @@ -82,11 +79,11 @@ else if (!strcmp(str, "on")) va_align.flags = ALIGN_VA_32 | ALIGN_VA_64; else - return 0; + pr_warn("invalid option value: 'align_va_addr=%s'\n", str); return 1; } -__setup("align_va_addr", control_va_addr_alignment); +__setup("align_va_addr=", control_va_addr_alignment); SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len, unsigned long, prot, unsigned long, flags, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/tsc.c +++ linux-azure-5.4.0/arch/x86/kernel/tsc.c @@ -1162,6 +1162,12 @@ EXPORT_SYMBOL_GPL(mark_tsc_unstable); +static void __init tsc_disable_clocksource_watchdog(void) +{ + clocksource_tsc_early.flags &= ~CLOCK_SOURCE_MUST_VERIFY; + clocksource_tsc.flags &= ~CLOCK_SOURCE_MUST_VERIFY; +} + static void __init check_system_tsc_reliable(void) { #if defined(CONFIG_MGEODEGX1) || defined(CONFIG_MGEODE_LX) || defined(CONFIG_X86_GENERIC) @@ -1178,6 +1184,23 @@ #endif if (boot_cpu_has(X86_FEATURE_TSC_RELIABLE)) tsc_clocksource_reliable = 1; + + /* + * Disable the clocksource watchdog when the system has: + * - TSC running at constant frequency + * - TSC which does not stop in C-States + * - the TSC_ADJUST register which allows to detect even minimal + * modifications + * - not more than two sockets. As the number of sockets cannot be + * evaluated at the early boot stage where this has to be + * invoked, check the number of online memory nodes as a + * fallback solution which is an reasonable estimate. + */ + if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC) && + boot_cpu_has(X86_FEATURE_NONSTOP_TSC) && + boot_cpu_has(X86_FEATURE_TSC_ADJUST) && + nr_online_nodes <= 2) + tsc_disable_clocksource_watchdog(); } /* @@ -1369,9 +1392,6 @@ if (tsc_unstable) goto unreg; - if (tsc_clocksource_reliable || no_tsc_watchdog) - clocksource_tsc.flags &= ~CLOCK_SOURCE_MUST_VERIFY; - if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC_S3)) clocksource_tsc.flags |= CLOCK_SOURCE_SUSPEND_NONSTOP; @@ -1506,7 +1526,7 @@ } if (tsc_clocksource_reliable || no_tsc_watchdog) - clocksource_tsc_early.flags &= ~CLOCK_SOURCE_MUST_VERIFY; + tsc_disable_clocksource_watchdog(); clocksource_register_khz(&clocksource_tsc_early, tsc_khz); detect_art(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kernel/tsc_sync.c +++ linux-azure-5.4.0/arch/x86/kernel/tsc_sync.c @@ -30,6 +30,7 @@ }; static DEFINE_PER_CPU(struct tsc_adjust, tsc_adjust); +static struct timer_list tsc_sync_check_timer; /* * TSC's on different sockets may be reset asynchronously. @@ -77,6 +78,46 @@ } } +/* + * Normally the tsc_sync will be checked every time system enters idle + * state, but there is still caveat that a system won't enter idle, + * either because it's too busy or configured purposely to not enter + * idle. + * + * So setup a periodic timer (every 10 minutes) to make sure the check + * is always on. + */ + +#define SYNC_CHECK_INTERVAL (HZ * 600) + +static void tsc_sync_check_timer_fn(struct timer_list *unused) +{ + int next_cpu; + + tsc_verify_tsc_adjust(false); + + /* Run the check for all onlined CPUs in turn */ + next_cpu = cpumask_next(raw_smp_processor_id(), cpu_online_mask); + if (next_cpu >= nr_cpu_ids) + next_cpu = cpumask_first(cpu_online_mask); + + tsc_sync_check_timer.expires += SYNC_CHECK_INTERVAL; + add_timer_on(&tsc_sync_check_timer, next_cpu); +} + +static int __init start_sync_check_timer(void) +{ + if (!cpu_feature_enabled(X86_FEATURE_TSC_ADJUST) || tsc_clocksource_reliable) + return 0; + + timer_setup(&tsc_sync_check_timer, tsc_sync_check_timer_fn, 0); + tsc_sync_check_timer.expires = jiffies + SYNC_CHECK_INTERVAL; + add_timer(&tsc_sync_check_timer); + + return 0; +} +late_initcall(start_sync_check_timer); + static void tsc_sanitize_first_cpu(struct tsc_adjust *cur, s64 bootval, unsigned int cpu, bool bootcpu) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/pmu.c +++ linux-azure-5.4.0/arch/x86/kvm/pmu.c @@ -143,7 +143,6 @@ void reprogram_gp_counter(struct kvm_pmc *pmc, u64 eventsel) { unsigned config, type = PERF_TYPE_RAW; - u8 event_select, unit_mask; struct kvm *kvm = pmc->vcpu->kvm; struct kvm_pmu_event_filter *filter; int i; @@ -175,23 +174,18 @@ if (!allow_event) return; - event_select = eventsel & ARCH_PERFMON_EVENTSEL_EVENT; - unit_mask = (eventsel & ARCH_PERFMON_EVENTSEL_UMASK) >> 8; - if (!(eventsel & (ARCH_PERFMON_EVENTSEL_EDGE | ARCH_PERFMON_EVENTSEL_INV | ARCH_PERFMON_EVENTSEL_CMASK | HSW_IN_TX | HSW_IN_TX_CHECKPOINTED))) { - config = kvm_x86_ops->pmu_ops->find_arch_event(pmc_to_pmu(pmc), - event_select, - unit_mask); + config = kvm_x86_ops->pmu_ops->pmc_perf_hw_id(pmc); if (config != PERF_COUNT_HW_MAX) type = PERF_TYPE_HARDWARE; } if (type == PERF_TYPE_RAW) - config = eventsel & X86_RAW_EVENT_MASK; + config = eventsel & AMD64_RAW_EVENT_MASK; pmc_reprogram_counter(pmc, type, config, !(eventsel & ARCH_PERFMON_EVENTSEL_USR), only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/pmu_amd.c +++ linux-azure-5.4.0/arch/x86/kvm/pmu_amd.c @@ -44,6 +44,22 @@ [7] = { 0xd1, 0x00, PERF_COUNT_HW_STALLED_CYCLES_BACKEND }, }; +/* duplicated from amd_f17h_perfmon_event_map. */ +static struct kvm_event_hw_type_mapping amd_f17h_event_mapping[] = { + [0] = { 0x76, 0x00, PERF_COUNT_HW_CPU_CYCLES }, + [1] = { 0xc0, 0x00, PERF_COUNT_HW_INSTRUCTIONS }, + [2] = { 0x60, 0xff, PERF_COUNT_HW_CACHE_REFERENCES }, + [3] = { 0x64, 0x09, PERF_COUNT_HW_CACHE_MISSES }, + [4] = { 0xc2, 0x00, PERF_COUNT_HW_BRANCH_INSTRUCTIONS }, + [5] = { 0xc3, 0x00, PERF_COUNT_HW_BRANCH_MISSES }, + [6] = { 0x87, 0x02, PERF_COUNT_HW_STALLED_CYCLES_FRONTEND }, + [7] = { 0x87, 0x01, PERF_COUNT_HW_STALLED_CYCLES_BACKEND }, +}; + +/* amd_pmc_perf_hw_id depends on these being the same size */ +static_assert(ARRAY_SIZE(amd_event_mapping) == + ARRAY_SIZE(amd_f17h_event_mapping)); + static unsigned int get_msr_base(struct kvm_pmu *pmu, enum pmu_type type) { struct kvm_vcpu *vcpu = pmu_to_vcpu(pmu); @@ -126,21 +142,27 @@ return &pmu->gp_counters[msr_to_index(msr)]; } -static unsigned amd_find_arch_event(struct kvm_pmu *pmu, - u8 event_select, - u8 unit_mask) +static unsigned int amd_pmc_perf_hw_id(struct kvm_pmc *pmc) { + struct kvm_event_hw_type_mapping *event_mapping; + u8 event_select = pmc->eventsel & ARCH_PERFMON_EVENTSEL_EVENT; + u8 unit_mask = (pmc->eventsel & ARCH_PERFMON_EVENTSEL_UMASK) >> 8; int i; + if (guest_cpuid_family(pmc->vcpu) >= 0x17) + event_mapping = amd_f17h_event_mapping; + else + event_mapping = amd_event_mapping; + for (i = 0; i < ARRAY_SIZE(amd_event_mapping); i++) - if (amd_event_mapping[i].eventsel == event_select - && amd_event_mapping[i].unit_mask == unit_mask) + if (event_mapping[i].eventsel == event_select + && event_mapping[i].unit_mask == unit_mask) break; if (i == ARRAY_SIZE(amd_event_mapping)) return PERF_COUNT_HW_MAX; - return amd_event_mapping[i].event_type; + return event_mapping[i].event_type; } /* return PERF_COUNT_HW_MAX as AMD doesn't have fixed events */ @@ -245,12 +267,10 @@ /* MSR_EVNTSELn */ pmc = get_gp_pmc_amd(pmu, msr, PMU_TYPE_EVNTSEL); if (pmc) { - if (data == pmc->eventsel) - return 0; - if (!(data & pmu->reserved_bits)) { + data &= ~pmu->reserved_bits; + if (data != pmc->eventsel) reprogram_gp_counter(pmc, data); - return 0; - } + return 0; } return 1; @@ -266,7 +286,7 @@ pmu->nr_arch_gp_counters = AMD64_NUM_COUNTERS; pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << 48) - 1; - pmu->reserved_bits = 0xffffffff00200000ull; + pmu->reserved_bits = 0xfffffff000280000ull; pmu->version = 1; /* not applicable to AMD; but clean them to prevent any fall out */ pmu->counter_bitmask[KVM_PMC_FIXED] = 0; @@ -302,7 +322,7 @@ } struct kvm_pmu_ops amd_pmu_ops = { - .find_arch_event = amd_find_arch_event, + .pmc_perf_hw_id = amd_pmc_perf_hw_id, .find_fixed_event = amd_find_fixed_event, .pmc_is_enabled = amd_pmc_is_enabled, .pmc_idx_to_pmc = amd_pmc_idx_to_pmc, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/trace.h +++ linux-azure-5.4.0/arch/x86/kvm/trace.h @@ -1483,16 +1483,16 @@ TP_ARGS(msg, err), TP_STRUCT__entry( - __field(const char *, msg) + __string(msg, msg) __field(u32, err) ), TP_fast_assign( - __entry->msg = msg; + __assign_str(msg, msg); __entry->err = err; ), - TP_printk("%s%s", __entry->msg, !__entry->err ? "" : + TP_printk("%s%s", __get_str(msg), !__entry->err ? "" : __print_symbolic(__entry->err, VMX_VMENTER_INSTRUCTION_ERRORS)) ); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/vmx/evmcs.c +++ linux-azure-5.4.0/arch/x86/kvm/vmx/evmcs.c @@ -303,14 +303,13 @@ }; const unsigned int nr_evmcs_1_fields = ARRAY_SIZE(vmcs_field_to_evmcs_1); -void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) +__init void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) { vmcs_conf->pin_based_exec_ctrl &= ~EVMCS1_UNSUPPORTED_PINCTRL; vmcs_conf->cpu_based_2nd_exec_ctrl &= ~EVMCS1_UNSUPPORTED_2NDEXEC; vmcs_conf->vmexit_ctrl &= ~EVMCS1_UNSUPPORTED_VMEXIT_CTRL; vmcs_conf->vmentry_ctrl &= ~EVMCS1_UNSUPPORTED_VMENTRY_CTRL; - } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/vmx/evmcs.h +++ linux-azure-5.4.0/arch/x86/kvm/vmx/evmcs.h @@ -58,7 +58,9 @@ SECONDARY_EXEC_SHADOW_VMCS | \ SECONDARY_EXEC_TSC_SCALING | \ SECONDARY_EXEC_PAUSE_LOOP_EXITING) -#define EVMCS1_UNSUPPORTED_VMEXIT_CTRL (VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) +#define EVMCS1_UNSUPPORTED_VMEXIT_CTRL \ + (VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL | \ + VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) #define EVMCS1_UNSUPPORTED_VMENTRY_CTRL (VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) #define EVMCS1_UNSUPPORTED_VMFUNC (VMX_VMFUNC_EPTP_SWITCHING) @@ -184,7 +186,7 @@ vp_ap->enlighten_vmentry = 1; } -void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf); +__init void evmcs_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf); #else /* !IS_ENABLED(CONFIG_HYPERV) */ static inline void evmcs_write64(unsigned long field, u64 value) {} static inline void evmcs_write32(unsigned long field, u32 value) {} @@ -193,7 +195,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_sanitize_exec_ctrls(struct vmcs_config *vmcs_conf) {} static inline void evmcs_touch_msr_bitmap(void) {} #endif /* IS_ENABLED(CONFIG_HYPERV) */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/kvm/vmx/run_flags.h +++ linux-azure-5.4.0/arch/x86/kvm/vmx/run_flags.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __KVM_X86_VMX_RUN_FLAGS_H +#define __KVM_X86_VMX_RUN_FLAGS_H + +#define VMX_RUN_VMRESUME (1 << 0) +#define VMX_RUN_SAVE_SPEC_CTRL (1 << 1) + +#endif /* __KVM_X86_VMX_RUN_FLAGS_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/lib/delay.c +++ linux-azure-5.4.0/arch/x86/lib/delay.c @@ -43,8 +43,8 @@ " jnz 2b \n" "3: dec %0 \n" - : /* we don't need output */ - :"a" (loops) + : "+a" (loops) + : ); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/lib/insn.c +++ linux-azure-5.4.0/arch/x86/lib/insn.c @@ -13,6 +13,8 @@ #include #include +#include + /* Verify next sizeof(t) bytes can be on the same instruction */ #define validate_next(t, insn, n) \ ((insn)->next_byte + sizeof(t) + n <= (insn)->end_kaddr) @@ -58,6 +60,36 @@ insn->addr_bytes = 4; } +static const insn_byte_t xen_prefix[] = { __XEN_EMULATE_PREFIX }; +static const insn_byte_t kvm_prefix[] = { __KVM_EMULATE_PREFIX }; + +static int __insn_get_emulate_prefix(struct insn *insn, + const insn_byte_t *prefix, size_t len) +{ + size_t i; + + for (i = 0; i < len; i++) { + if (peek_nbyte_next(insn_byte_t, insn, i) != prefix[i]) + goto err_out; + } + + insn->emulate_prefix_size = len; + insn->next_byte += len; + + return 1; + +err_out: + return 0; +} + +static void insn_get_emulate_prefix(struct insn *insn) +{ + if (__insn_get_emulate_prefix(insn, xen_prefix, sizeof(xen_prefix))) + return; + + __insn_get_emulate_prefix(insn, kvm_prefix, sizeof(kvm_prefix)); +} + /** * insn_get_prefixes - scan x86 instruction prefix bytes * @insn: &struct insn containing instruction @@ -76,6 +108,8 @@ if (prefixes->got) return; + insn_get_emulate_prefix(insn); + nb = 0; lb = 0; b = peek_next(insn_byte_t, insn); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/mm/Makefile +++ linux-azure-5.4.0/arch/x86/mm/Makefile @@ -13,7 +13,7 @@ endif obj-y := init.o init_$(BITS).o fault.o ioremap.o extable.o pageattr.o mmap.o \ - pat.o pgtable.o physaddr.o setup_nx.o tlb.o cpu_entry_area.o + pat.o pgtable.o physaddr.o setup_nx.o tlb.o cpu_entry_area.o maccess.o # Make sure __phys_addr has no stackprotector nostackp := $(call cc-option, -fno-stack-protector) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/mm/extable.c +++ linux-azure-5.4.0/arch/x86/mm/extable.c @@ -45,55 +45,6 @@ EXPORT_SYMBOL_GPL(ex_handler_fault); /* - * Handler for UD0 exception following a failed test against the - * result of a refcount inc/dec/add/sub. - */ -__visible bool ex_handler_refcount(const struct exception_table_entry *fixup, - struct pt_regs *regs, int trapnr, - unsigned long error_code, - unsigned long fault_addr) -{ - /* First unconditionally saturate the refcount. */ - *(int *)regs->cx = INT_MIN / 2; - - /* - * Strictly speaking, this reports the fixup destination, not - * the fault location, and not the actually overflowing - * instruction, which is the instruction before the "js", but - * since that instruction could be a variety of lengths, just - * report the location after the overflow, which should be close - * enough for finding the overflow, as it's at least back in - * the function, having returned from .text.unlikely. - */ - regs->ip = ex_fixup_addr(fixup); - - /* - * This function has been called because either a negative refcount - * value was seen by any of the refcount functions, or a zero - * refcount value was seen by refcount_dec(). - * - * If we crossed from INT_MAX to INT_MIN, OF (Overflow Flag: result - * wrapped around) will be set. Additionally, seeing the refcount - * reach 0 will set ZF (Zero Flag: result was zero). In each of - * these cases we want a report, since it's a boundary condition. - * The SF case is not reported since it indicates post-boundary - * manipulations below zero or above INT_MAX. And if none of the - * flags are set, something has gone very wrong, so report it. - */ - if (regs->flags & (X86_EFLAGS_OF | X86_EFLAGS_ZF)) { - bool zero = regs->flags & X86_EFLAGS_ZF; - - refcount_error_report(regs, zero ? "hit zero" : "overflow"); - } else if ((regs->flags & X86_EFLAGS_SF) == 0) { - /* Report if none of OF, ZF, nor SF are set. */ - refcount_error_report(regs, "unexpected saturation"); - } - - return true; -} -EXPORT_SYMBOL(ex_handler_refcount); - -/* * Handler for when we fail to restore a task's FPU state. We should never get * here because the FPU state of a task using the FPU (task->thread.fpu.state) * should always be valid. However, past bugs have allowed userspace to set only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/mm/maccess.c +++ linux-azure-5.4.0/arch/x86/mm/maccess.c @@ -0,0 +1,43 @@ +// SPDX-License-Identifier: GPL-2.0-only + +#include +#include + +#ifdef CONFIG_X86_64 +static __always_inline u64 canonical_address(u64 vaddr, u8 vaddr_bits) +{ + return ((s64)vaddr << (64 - vaddr_bits)) >> (64 - vaddr_bits); +} + +static __always_inline bool invalid_probe_range(u64 vaddr) +{ + /* + * Range covering the highest possible canonical userspace address + * as well as non-canonical address range. For the canonical range + * we also need to include the userspace guard page. + */ + return vaddr < TASK_SIZE_MAX + PAGE_SIZE || + canonical_address(vaddr, boot_cpu_data.x86_virt_bits) != vaddr; +} +#else +static __always_inline bool invalid_probe_range(u64 vaddr) +{ + return vaddr < TASK_SIZE_MAX; +} +#endif + +long probe_kernel_read_strict(void *dst, const void *src, size_t size) +{ + if (unlikely(invalid_probe_range((unsigned long)src))) + return -EFAULT; + + return __probe_kernel_read(dst, src, size); +} + +long strncpy_from_unsafe_strict(char *dst, const void *unsafe_addr, long count) +{ + if (unlikely(invalid_probe_range((unsigned long)unsafe_addr))) + return -EFAULT; + + return __strncpy_from_unsafe(dst, unsafe_addr, count); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/mm/numa.c +++ linux-azure-5.4.0/arch/x86/mm/numa.c @@ -822,7 +822,7 @@ return; } mask = node_to_cpumask_map[node]; - if (!mask) { + if (!cpumask_available(mask)) { pr_err("node_to_cpumask_map[%i] NULL\n", node); dump_stack(); return; @@ -868,7 +868,7 @@ dump_stack(); return cpu_none_mask; } - if (node_to_cpumask_map[node] == NULL) { + if (!cpumask_available(node_to_cpumask_map[node])) { printk(KERN_WARNING "cpumask_of_node(%d): no node_to_cpumask_map!\n", node); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/platform/olpc/olpc-xo1-sci.c +++ linux-azure-5.4.0/arch/x86/platform/olpc/olpc-xo1-sci.c @@ -81,7 +81,7 @@ return; } - if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state) + if (test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == !!state) return; /* Nothing new to report. */ input_report_switch(ebook_switch_idev, SW_TABLET_MODE, state); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/platform/olpc/olpc.c +++ linux-azure-5.4.0/arch/x86/platform/olpc/olpc.c @@ -274,7 +274,7 @@ static struct olpc_ec_driver ec_xo1_5_driver = { .ec_cmd = olpc_xo1_ec_cmd, -#ifdef CONFIG_OLPC_XO1_5_SCI +#ifdef CONFIG_OLPC_XO15_SCI /* * XO-1.5 EC wakeups are available when olpc-xo15-sci driver is * compiled in only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/power/cpu.c +++ linux-azure-5.4.0/arch/x86/power/cpu.c @@ -25,6 +25,7 @@ #include #include #include +#include #ifdef CONFIG_X86_32 __visible unsigned long saved_context_ebx; @@ -40,7 +41,8 @@ struct saved_msr *end = msr + ctxt->saved_msrs.num; while (msr < end) { - msr->valid = !rdmsrl_safe(msr->info.msr_no, &msr->info.reg.q); + if (msr->valid) + rdmsrl(msr->info.msr_no, msr->info.reg.q); msr++; } } @@ -262,6 +264,13 @@ x86_platform.restore_sched_clock_state(); mtrr_bp_restore(); perf_restore_debug_store(); + + microcode_bsp_resume(); + + /* + * This needs to happen after the microcode has been updated upon resume + * because some of the MSRs are "emulated" in microcode. + */ msr_restore_context(ctxt); } @@ -421,8 +430,10 @@ } for (i = saved_msrs->num, j = 0; i < total_num; i++, j++) { + u64 dummy; + msr_array[i].info.msr_no = msr_id[j]; - msr_array[i].valid = false; + msr_array[i].valid = !rdmsrl_safe(msr_id[j], &dummy); msr_array[i].info.reg.q = 0; } saved_msrs->num = total_num; @@ -509,10 +520,24 @@ return ret; } +static void pm_save_spec_msr(void) +{ + u32 spec_msr_id[] = { + MSR_IA32_SPEC_CTRL, + MSR_IA32_TSX_CTRL, + MSR_TSX_FORCE_ABORT, + MSR_IA32_MCU_OPT_CTRL, + MSR_AMD64_LS_CFG, + }; + + msr_build_context(spec_msr_id, ARRAY_SIZE(spec_msr_id)); +} + static int pm_check_save_msr(void) { dmi_check_system(msr_save_dmi_table); pm_cpu_check(msr_save_cpu_table); + pm_save_spec_msr(); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/tools/chkobjdump.awk +++ linux-azure-5.4.0/arch/x86/tools/chkobjdump.awk @@ -10,6 +10,7 @@ /^GNU objdump/ { verstr = "" + gsub(/\(.*\)/, ""); for (i = 3; i <= NF; i++) if (match($(i), "^[0-9]")) { verstr = $(i); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/um/ldt.c +++ linux-azure-5.4.0/arch/x86/um/ldt.c @@ -23,9 +23,11 @@ { long res; void *stub_addr; + + BUILD_BUG_ON(sizeof(*desc) % sizeof(long)); + res = syscall_stub_data(mm_idp, (unsigned long *)desc, - (sizeof(*desc) + sizeof(long) - 1) & - ~(sizeof(long) - 1), + sizeof(*desc) / sizeof(long), addr, &stub_addr); if (!res) { unsigned long args[] = { func, only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/um/shared/sysdep/syscalls_32.h +++ linux-azure-5.4.0/arch/x86/um/shared/sysdep/syscalls_32.h @@ -6,10 +6,9 @@ #include #include -typedef long syscall_handler_t(struct pt_regs); +typedef long syscall_handler_t(struct syscall_args); extern syscall_handler_t *sys_call_table[]; #define EXECUTE_SYSCALL(syscall, regs) \ - ((long (*)(struct syscall_args)) \ - (*sys_call_table[syscall]))(SYSCALL_ARGS(®s->regs)) + ((*sys_call_table[syscall]))(SYSCALL_ARGS(®s->regs)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/um/shared/sysdep/syscalls_64.h +++ linux-azure-5.4.0/arch/x86/um/shared/sysdep/syscalls_64.h @@ -10,13 +10,12 @@ #include #include -typedef long syscall_handler_t(void); +typedef long syscall_handler_t(long, long, long, long, long, long); extern syscall_handler_t *sys_call_table[]; #define EXECUTE_SYSCALL(syscall, regs) \ - (((long (*)(long, long, long, long, long, long)) \ - (*sys_call_table[syscall]))(UPT_SYSCALL_ARG1(®s->regs), \ + (((*sys_call_table[syscall]))(UPT_SYSCALL_ARG1(®s->regs), \ UPT_SYSCALL_ARG2(®s->regs), \ UPT_SYSCALL_ARG3(®s->regs), \ UPT_SYSCALL_ARG4(®s->regs), \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/um/syscalls_64.c +++ linux-azure-5.4.0/arch/x86/um/syscalls_64.c @@ -11,6 +11,7 @@ #include #include /* XXX This should get the constants from libc */ #include +#include long arch_prctl(struct task_struct *task, int option, unsigned long __user *arg2) @@ -35,7 +36,7 @@ switch (option) { case ARCH_SET_FS: case ARCH_SET_GS: - ret = restore_registers(pid, ¤t->thread.regs.regs); + ret = restore_pid_registers(pid, ¤t->thread.regs.regs); if (ret) return ret; break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/um/vdso/Makefile +++ linux-azure-5.4.0/arch/x86/um/vdso/Makefile @@ -62,7 +62,7 @@ -Wl,-T,$(filter %.lds,$^) $(filter %.o,$^) && \ sh $(srctree)/$(src)/checkundef.sh '$(NM)' '$@' -VDSO_LDFLAGS = -fPIC -shared -Wl,--hash-style=sysv +VDSO_LDFLAGS = -fPIC -shared -Wl,--hash-style=sysv -z noexecstack GCOV_PROFILE := n # only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/xen/pmu.c +++ linux-azure-5.4.0/arch/x86/xen/pmu.c @@ -512,10 +512,7 @@ return ret; } -bool is_xen_pmu(int cpu) -{ - return (get_xenpmu_data() != NULL); -} +bool is_xen_pmu; void xen_pmu_init(int cpu) { @@ -526,7 +523,7 @@ BUILD_BUG_ON(sizeof(struct xen_pmu_data) > PAGE_SIZE); - if (xen_hvm_domain()) + if (xen_hvm_domain() || (cpu != 0 && !is_xen_pmu)) return; xenpmu_data = (struct xen_pmu_data *)get_zeroed_page(GFP_KERNEL); @@ -547,7 +544,8 @@ per_cpu(xenpmu_shared, cpu).xenpmu_data = xenpmu_data; per_cpu(xenpmu_shared, cpu).flags = 0; - if (cpu == 0) { + if (!is_xen_pmu) { + is_xen_pmu = true; perf_register_guest_info_callbacks(&xen_guest_cbs); xen_pmu_arch_init(); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/xen/pmu.h +++ linux-azure-5.4.0/arch/x86/xen/pmu.h @@ -4,6 +4,8 @@ #include +extern bool is_xen_pmu; + irqreturn_t xen_pmu_irq_handler(int irq, void *dev_id); #ifdef CONFIG_XEN_HAVE_VPMU void xen_pmu_init(int cpu); @@ -12,7 +14,6 @@ static inline void xen_pmu_init(int cpu) {} static inline void xen_pmu_finish(int cpu) {} #endif -bool is_xen_pmu(int cpu); bool pmu_msr_read(unsigned int msr, uint64_t *val, int *err); bool pmu_msr_write(unsigned int msr, uint32_t low, uint32_t high, int *err); int pmu_apic_update(uint32_t reg); only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/xen/smp_hvm.c +++ linux-azure-5.4.0/arch/x86/xen/smp_hvm.c @@ -19,6 +19,12 @@ xen_vcpu_setup(0); /* + * Called again in case the kernel boots on vcpu >= MAX_VIRT_CPUS. + * Refer to comments in xen_hvm_init_time_ops(). + */ + xen_hvm_init_time_ops(); + + /* * The alternative logic (which patches the unlock/lock) runs before * the smp bootup up code is activated. Hence we need to set this up * the core kernel is being patched. Otherwise we will have only only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/xen/time.c +++ linux-azure-5.4.0/arch/x86/xen/time.c @@ -547,6 +547,11 @@ void __init xen_hvm_init_time_ops(void) { + static bool hvm_time_initialized; + + if (hvm_time_initialized) + return; + /* * vector callback is needed otherwise we cannot receive interrupts * on cpu > 0 and at this point we don't know how many cpus are @@ -556,7 +561,22 @@ return; if (!xen_feature(XENFEAT_hvm_safe_pvclock)) { - pr_info("Xen doesn't support pvclock on HVM, disable pv timer"); + pr_info_once("Xen doesn't support pvclock on HVM, disable pv timer"); + return; + } + + /* + * Only MAX_VIRT_CPUS 'vcpu_info' are embedded inside 'shared_info'. + * The __this_cpu_read(xen_vcpu) is still NULL when Xen HVM guest + * boots on vcpu >= MAX_VIRT_CPUS (e.g., kexec), To access + * __this_cpu_read(xen_vcpu) via xen_clocksource_read() will panic. + * + * The xen_hvm_init_time_ops() should be called again later after + * __this_cpu_read(xen_vcpu) is available. + */ + if (!__this_cpu_read(xen_vcpu)) { + pr_info("Delay xen_init_time_common() as kernel is running on vcpu=%d\n", + xen_vcpu_nr(0)); return; } @@ -568,6 +588,8 @@ x86_platform.calibrate_tsc = xen_tsc_khz; x86_platform.get_wallclock = xen_get_wallclock; x86_platform.set_wallclock = xen_set_wallclock; + + hvm_time_initialized = true; } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/x86/xen/xen-head.S +++ linux-azure-5.4.0/arch/x86/xen/xen-head.S @@ -35,7 +35,11 @@ rep __ASM_SIZE(stos) mov %_ASM_SI, xen_start_info - mov $init_thread_union+THREAD_SIZE, %_ASM_SP +#ifdef CONFIG_X86_64 + mov initial_stack(%rip), %rsp +#else + mov initial_stack, %esp +#endif #ifdef CONFIG_X86_64 /* Set up %gs. @@ -51,9 +55,19 @@ wrmsr #endif - jmp xen_start_kernel + call xen_start_kernel END(startup_xen) __FINIT + +#ifdef CONFIG_XEN_PV_SMP +.pushsection .text +SYM_CODE_START(asm_cpu_bringup_and_idle) + UNWIND_HINT_EMPTY + + call cpu_bringup_and_idle +SYM_CODE_END(asm_cpu_bringup_and_idle) +.popsection +#endif #endif .pushsection .text only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/boot/dts/xtfpga-flash-128m.dtsi +++ linux-azure-5.4.0/arch/xtensa/boot/dts/xtfpga-flash-128m.dtsi @@ -8,19 +8,19 @@ reg = <0x00000000 0x08000000>; bank-width = <2>; device-width = <2>; - partition@0x0 { + partition@0 { label = "data"; reg = <0x00000000 0x06000000>; }; - partition@0x6000000 { + partition@6000000 { label = "boot loader area"; reg = <0x06000000 0x00800000>; }; - partition@0x6800000 { + partition@6800000 { label = "kernel image"; reg = <0x06800000 0x017e0000>; }; - partition@0x7fe0000 { + partition@7fe0000 { label = "boot environment"; reg = <0x07fe0000 0x00020000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/boot/dts/xtfpga-flash-16m.dtsi +++ linux-azure-5.4.0/arch/xtensa/boot/dts/xtfpga-flash-16m.dtsi @@ -8,19 +8,19 @@ reg = <0x08000000 0x01000000>; bank-width = <2>; device-width = <2>; - partition@0x0 { + partition@0 { label = "boot loader area"; reg = <0x00000000 0x00400000>; }; - partition@0x400000 { + partition@400000 { label = "kernel image"; reg = <0x00400000 0x00600000>; }; - partition@0xa00000 { + partition@a00000 { label = "data"; reg = <0x00a00000 0x005e0000>; }; - partition@0xfe0000 { + partition@fe0000 { label = "boot environment"; reg = <0x00fe0000 0x00020000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/boot/dts/xtfpga-flash-4m.dtsi +++ linux-azure-5.4.0/arch/xtensa/boot/dts/xtfpga-flash-4m.dtsi @@ -8,11 +8,11 @@ reg = <0x08000000 0x00400000>; bank-width = <2>; device-width = <2>; - partition@0x0 { + partition@0 { label = "boot loader area"; reg = <0x00000000 0x003f0000>; }; - partition@0x3f0000 { + partition@3f0000 { label = "boot environment"; reg = <0x003f0000 0x00010000>; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/include/asm/kmem_layout.h +++ linux-azure-5.4.0/arch/xtensa/include/asm/kmem_layout.h @@ -11,6 +11,7 @@ #ifndef _XTENSA_KMEM_LAYOUT_H #define _XTENSA_KMEM_LAYOUT_H +#include #include #ifdef CONFIG_MMU @@ -65,6 +66,34 @@ #endif +/* KIO definition */ + +#if XCHAL_HAVE_PTP_MMU +#define XCHAL_KIO_CACHED_VADDR 0xe0000000 +#define XCHAL_KIO_BYPASS_VADDR 0xf0000000 +#define XCHAL_KIO_DEFAULT_PADDR 0xf0000000 +#else +#define XCHAL_KIO_BYPASS_VADDR XCHAL_KIO_PADDR +#define XCHAL_KIO_DEFAULT_PADDR 0x90000000 +#endif +#define XCHAL_KIO_SIZE 0x10000000 + +#if (!XCHAL_HAVE_PTP_MMU || XCHAL_HAVE_SPANNING_WAY) && defined(CONFIG_USE_OF) +#define XCHAL_KIO_PADDR xtensa_get_kio_paddr() +#ifndef __ASSEMBLY__ +extern unsigned long xtensa_kio_paddr; + +static inline unsigned long xtensa_get_kio_paddr(void) +{ + return xtensa_kio_paddr; +} +#endif +#else +#define XCHAL_KIO_PADDR XCHAL_KIO_DEFAULT_PADDR +#endif + +/* KERNEL_STACK definition */ + #ifndef CONFIG_KASAN #define KERNEL_STACK_SHIFT 13 #else only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/include/asm/processor.h +++ linux-azure-5.4.0/arch/xtensa/include/asm/processor.h @@ -225,8 +225,8 @@ #define xtensa_set_sr(x, sr) \ ({ \ - unsigned int v = (unsigned int)(x); \ - __asm__ __volatile__ ("wsr %0, "__stringify(sr) :: "a"(v)); \ + __asm__ __volatile__ ("wsr %0, "__stringify(sr) :: \ + "a"((unsigned int)(x))); \ }) #define xtensa_get_sr(sr) \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/include/asm/timex.h +++ linux-azure-5.4.0/arch/xtensa/include/asm/timex.h @@ -29,10 +29,6 @@ extern unsigned long ccount_freq; -typedef unsigned long long cycles_t; - -#define get_cycles() (0) - void local_timer_setup(unsigned cpu); /* @@ -59,4 +55,6 @@ xtensa_set_sr(ccompare, SREG_CCOMPARE + LINUX_TIMER); } +#include + #endif /* _XTENSA_TIMEX_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/include/asm/vectors.h +++ linux-azure-5.4.0/arch/xtensa/include/asm/vectors.h @@ -21,50 +21,14 @@ #include #include -#if XCHAL_HAVE_PTP_MMU -#define XCHAL_KIO_CACHED_VADDR 0xe0000000 -#define XCHAL_KIO_BYPASS_VADDR 0xf0000000 -#define XCHAL_KIO_DEFAULT_PADDR 0xf0000000 -#else -#define XCHAL_KIO_BYPASS_VADDR XCHAL_KIO_PADDR -#define XCHAL_KIO_DEFAULT_PADDR 0x90000000 -#endif -#define XCHAL_KIO_SIZE 0x10000000 - -#if (!XCHAL_HAVE_PTP_MMU || XCHAL_HAVE_SPANNING_WAY) && defined(CONFIG_OF) -#define XCHAL_KIO_PADDR xtensa_get_kio_paddr() -#ifndef __ASSEMBLY__ -extern unsigned long xtensa_kio_paddr; - -static inline unsigned long xtensa_get_kio_paddr(void) -{ - return xtensa_kio_paddr; -} -#endif -#else -#define XCHAL_KIO_PADDR XCHAL_KIO_DEFAULT_PADDR -#endif - -#if defined(CONFIG_MMU) - -#if XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY -/* Image Virtual Start Address */ -#define KERNELOFFSET (XCHAL_KSEG_CACHED_VADDR + \ - CONFIG_KERNEL_LOAD_ADDRESS - \ +#if defined(CONFIG_MMU) && XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY +#define KERNELOFFSET (CONFIG_KERNEL_LOAD_ADDRESS + \ + XCHAL_KSEG_CACHED_VADDR - \ XCHAL_KSEG_PADDR) #else #define KERNELOFFSET CONFIG_KERNEL_LOAD_ADDRESS #endif -#else /* !defined(CONFIG_MMU) */ - /* MMU Not being used - Virtual == Physical */ - -/* Location of the start of the kernel text, _start */ -#define KERNELOFFSET CONFIG_KERNEL_LOAD_ADDRESS - - -#endif /* CONFIG_MMU */ - #define RESET_VECTOR1_VADDR (XCHAL_RESET_VECTOR1_VADDR) #ifdef CONFIG_VECTORS_OFFSET #define VECBASE_VADDR (KERNELOFFSET - CONFIG_VECTORS_OFFSET) only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/kernel/irq.c +++ linux-azure-5.4.0/arch/xtensa/kernel/irq.c @@ -145,7 +145,7 @@ void __init init_IRQ(void) { -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF irqchip_init(); #else #ifdef CONFIG_HAVE_SMP only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/kernel/jump_label.c +++ linux-azure-5.4.0/arch/xtensa/kernel/jump_label.c @@ -40,7 +40,7 @@ { struct patch *patch = data; - if (atomic_inc_return(&patch->cpu_count) == 1) { + if (atomic_inc_return(&patch->cpu_count) == num_online_cpus()) { local_patch_text(patch->addr, patch->data, patch->sz); atomic_inc(&patch->cpu_count); } else { @@ -61,7 +61,7 @@ .data = data, }; stop_machine_cpuslocked(patch_text_stop_machine, - &patch, NULL); + &patch, cpu_online_mask); } else { unsigned long flags; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/kernel/signal.c +++ linux-azure-5.4.0/arch/xtensa/kernel/signal.c @@ -465,7 +465,7 @@ /* Set up the stack frame */ ret = setup_frame(&ksig, sigmask_to_save(), regs); signal_setup_done(ret, &ksig, 0); - if (current->ptrace & PT_SINGLESTEP) + if (test_thread_flag(TIF_SINGLESTEP)) task_pt_regs(current)->icountlevel = 1; return; @@ -491,7 +491,7 @@ /* If there's no signal to deliver, we just restore the saved mask. */ restore_saved_sigmask(); - if (current->ptrace & PT_SINGLESTEP) + if (test_thread_flag(TIF_SINGLESTEP)) task_pt_regs(current)->icountlevel = 1; return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/kernel/time.c +++ linux-azure-5.4.0/arch/xtensa/kernel/time.c @@ -160,6 +160,7 @@ cpu = of_find_compatible_node(NULL, NULL, "cdns,xtensa-cpu"); if (cpu) { clk = of_clk_get(cpu, 0); + of_node_put(cpu); if (!IS_ERR(clk)) { ccount_freq = clk_get_rate(clk); return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/mm/mmu.c +++ linux-azure-5.4.0/arch/xtensa/mm/mmu.c @@ -101,7 +101,7 @@ void init_kio(void) { -#if XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY && defined(CONFIG_OF) +#if XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY && defined(CONFIG_USE_OF) /* * Update the IO area mapping in case xtensa_kio_paddr has changed */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/platforms/iss/console.c +++ linux-azure-5.4.0/arch/xtensa/platforms/iss/console.c @@ -168,9 +168,13 @@ int __init rs_init(void) { - tty_port_init(&serial_port); + int ret; serial_driver = alloc_tty_driver(SERIAL_MAX_NUM_LINES); + if (!serial_driver) + return -ENOMEM; + + tty_port_init(&serial_port); pr_info("%s %s\n", serial_name, serial_version); @@ -190,8 +194,15 @@ tty_set_operations(serial_driver, &serial_ops); tty_port_link_device(&serial_port, serial_driver, 0); - if (tty_register_driver(serial_driver)) - panic("Couldn't register serial driver\n"); + ret = tty_register_driver(serial_driver); + if (ret) { + pr_err("Couldn't register serial driver\n"); + tty_driver_kref_put(serial_driver); + tty_port_destroy(&serial_port); + + return ret; + } + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/arch/xtensa/platforms/xtfpga/setup.c +++ linux-azure-5.4.0/arch/xtensa/platforms/xtfpga/setup.c @@ -50,8 +50,12 @@ void platform_restart(void) { - /* Flush and reset the mmu, simulate a processor reset, and - * jump to the reset vector. */ + /* Try software reset first. */ + WRITE_ONCE(*(u32 *)XTFPGA_SWRST_VADDR, 0xdead); + + /* If software reset did not work, flush and reset the mmu, + * simulate a processor reset, and jump to the reset vector. + */ cpu_reset(); /* control never gets here */ } @@ -81,7 +85,7 @@ #endif -#ifdef CONFIG_OF +#ifdef CONFIG_USE_OF static void __init xtfpga_clk_setup(struct device_node *np) { @@ -144,6 +148,7 @@ if ((eth = of_find_compatible_node(eth, NULL, "opencores,ethoc"))) update_local_mac(eth); + of_node_put(eth); return 0; } arch_initcall(machine_setup); @@ -299,4 +304,4 @@ */ arch_initcall(xtavnet_init); -#endif /* CONFIG_OF */ +#endif /* CONFIG_USE_OF */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-iolatency.c +++ linux-azure-5.4.0/block/blk-iolatency.c @@ -86,7 +86,17 @@ struct blk_iolatency { struct rq_qos rqos; struct timer_list timer; - atomic_t enabled; + + /* + * ->enabled is the master enable switch gating the throttling logic and + * inflight tracking. The number of cgroups which have iolat enabled is + * tracked in ->enable_cnt, and ->enable is flipped on/off accordingly + * from ->enable_work with the request_queue frozen. For details, See + * blkiolatency_enable_work_fn(). + */ + bool enabled; + atomic_t enable_cnt; + struct work_struct enable_work; }; static inline struct blk_iolatency *BLKIOLATENCY(struct rq_qos *rqos) @@ -94,11 +104,6 @@ return container_of(rqos, struct blk_iolatency, rqos); } -static inline bool blk_iolatency_enabled(struct blk_iolatency *blkiolat) -{ - return atomic_read(&blkiolat->enabled) > 0; -} - struct child_latency_info { spinlock_t lock; @@ -463,7 +468,7 @@ struct blkcg_gq *blkg = bio->bi_blkg; bool issue_as_root = bio_issue_as_root_blkg(bio); - if (!blk_iolatency_enabled(blkiolat)) + if (!blkiolat->enabled) return; while (blkg && blkg->parent) { @@ -593,7 +598,6 @@ u64 window_start; u64 now = ktime_to_ns(ktime_get()); bool issue_as_root = bio_issue_as_root_blkg(bio); - bool enabled = false; int inflight = 0; blkg = bio->bi_blkg; @@ -604,8 +608,7 @@ if (!iolat) return; - enabled = blk_iolatency_enabled(iolat->blkiolat); - if (!enabled) + if (!iolat->blkiolat->enabled) return; while (blkg && blkg->parent) { @@ -643,6 +646,7 @@ struct blk_iolatency *blkiolat = BLKIOLATENCY(rqos); del_timer_sync(&blkiolat->timer); + flush_work(&blkiolat->enable_work); blkcg_deactivate_policy(rqos->q, &blkcg_policy_iolatency); kfree(blkiolat); } @@ -714,6 +718,44 @@ rcu_read_unlock(); } +/** + * blkiolatency_enable_work_fn - Enable or disable iolatency on the device + * @work: enable_work of the blk_iolatency of interest + * + * iolatency needs to keep track of the number of in-flight IOs per cgroup. This + * is relatively expensive as it involves walking up the hierarchy twice for + * every IO. Thus, if iolatency is not enabled in any cgroup for the device, we + * want to disable the in-flight tracking. + * + * We have to make sure that the counting is balanced - we don't want to leak + * the in-flight counts by disabling accounting in the completion path while IOs + * are in flight. This is achieved by ensuring that no IO is in flight by + * freezing the queue while flipping ->enabled. As this requires a sleepable + * context, ->enabled flipping is punted to this work function. + */ +static void blkiolatency_enable_work_fn(struct work_struct *work) +{ + struct blk_iolatency *blkiolat = container_of(work, struct blk_iolatency, + enable_work); + bool enabled; + + /* + * There can only be one instance of this function running for @blkiolat + * and it's guaranteed to be executed at least once after the latest + * ->enabled_cnt modification. Acting on the latest ->enable_cnt is + * sufficient. + * + * Also, we know @blkiolat is safe to access as ->enable_work is flushed + * in blkcg_iolatency_exit(). + */ + enabled = atomic_read(&blkiolat->enable_cnt); + if (enabled != blkiolat->enabled) { + blk_mq_freeze_queue(blkiolat->rqos.q); + blkiolat->enabled = enabled; + blk_mq_unfreeze_queue(blkiolat->rqos.q); + } +} + int blk_iolatency_init(struct request_queue *q) { struct blk_iolatency *blkiolat; @@ -739,17 +781,15 @@ } timer_setup(&blkiolat->timer, blkiolatency_timer_fn, 0); + INIT_WORK(&blkiolat->enable_work, blkiolatency_enable_work_fn); return 0; } -/* - * return 1 for enabling iolatency, return -1 for disabling iolatency, otherwise - * return 0. - */ -static int iolatency_set_min_lat_nsec(struct blkcg_gq *blkg, u64 val) +static void iolatency_set_min_lat_nsec(struct blkcg_gq *blkg, u64 val) { struct iolatency_grp *iolat = blkg_to_lat(blkg); + struct blk_iolatency *blkiolat = iolat->blkiolat; u64 oldval = iolat->min_lat_nsec; iolat->min_lat_nsec = val; @@ -757,13 +797,15 @@ iolat->cur_win_nsec = min_t(u64, iolat->cur_win_nsec, BLKIOLATENCY_MAX_WIN_SIZE); - if (!oldval && val) - return 1; + if (!oldval && val) { + if (atomic_inc_return(&blkiolat->enable_cnt) == 1) + schedule_work(&blkiolat->enable_work); + } if (oldval && !val) { blkcg_clear_delay(blkg); - return -1; + if (atomic_dec_return(&blkiolat->enable_cnt) == 0) + schedule_work(&blkiolat->enable_work); } - return 0; } static void iolatency_clear_scaling(struct blkcg_gq *blkg) @@ -795,7 +837,6 @@ u64 lat_val = 0; u64 oldval; int ret; - int enable = 0; ret = blkg_conf_prep(blkcg, &blkcg_policy_iolatency, buf, &ctx); if (ret) @@ -830,37 +871,12 @@ blkg = ctx.blkg; oldval = iolat->min_lat_nsec; - enable = iolatency_set_min_lat_nsec(blkg, lat_val); - if (enable) { - WARN_ON_ONCE(!blk_get_queue(blkg->q)); - blkg_get(blkg); - } - - if (oldval != iolat->min_lat_nsec) { + iolatency_set_min_lat_nsec(blkg, lat_val); + if (oldval != iolat->min_lat_nsec) iolatency_clear_scaling(blkg); - } - ret = 0; out: blkg_conf_finish(&ctx); - if (ret == 0 && enable) { - struct iolatency_grp *tmp = blkg_to_lat(blkg); - struct blk_iolatency *blkiolat = tmp->blkiolat; - - blk_mq_freeze_queue(blkg->q); - - if (enable == 1) - atomic_inc(&blkiolat->enabled); - else if (enable == -1) - atomic_dec(&blkiolat->enabled); - else - WARN_ON_ONCE(1); - - blk_mq_unfreeze_queue(blkg->q); - - blkg_put(blkg); - blk_put_queue(blkg->q); - } return ret ?: nbytes; } @@ -1001,14 +1017,8 @@ { struct iolatency_grp *iolat = pd_to_lat(pd); struct blkcg_gq *blkg = lat_to_blkg(iolat); - struct blk_iolatency *blkiolat = iolat->blkiolat; - int ret; - ret = iolatency_set_min_lat_nsec(blkg, 0); - if (ret == 1) - atomic_inc(&blkiolat->enabled); - if (ret == -1) - atomic_dec(&blkiolat->enabled); + iolatency_set_min_lat_nsec(blkg, 0); iolatency_clear_scaling(blkg); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-rq-qos.c +++ linux-azure-5.4.0/block/blk-rq-qos.c @@ -266,8 +266,8 @@ if (!has_sleeper && acquire_inflight_cb(rqw, private_data)) return; - prepare_to_wait_exclusive(&rqw->wait, &data.wq, TASK_UNINTERRUPTIBLE); - has_sleeper = !wq_has_single_sleeper(&rqw->wait); + has_sleeper = !prepare_to_wait_exclusive(&rqw->wait, &data.wq, + TASK_UNINTERRUPTIBLE); do { /* The memory barrier in set_task_state saves us here. */ if (data.got_token) only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-rq-qos.h +++ linux-azure-5.4.0/block/blk-rq-qos.h @@ -7,6 +7,7 @@ #include #include #include +#include #include "blk-mq-debugfs.h" @@ -99,8 +100,21 @@ static inline void rq_qos_add(struct request_queue *q, struct rq_qos *rqos) { + /* + * No IO can be in-flight when adding rqos, so freeze queue, which + * is fine since we only support rq_qos for blk-mq queue. + * + * Reuse ->queue_lock for protecting against other concurrent + * rq_qos adding/deleting + */ + blk_mq_freeze_queue(q); + + spin_lock_irq(&q->queue_lock); rqos->next = q->rq_qos; q->rq_qos = rqos; + spin_unlock_irq(&q->queue_lock); + + blk_mq_unfreeze_queue(q); if (rqos->ops->debugfs_attrs) blk_mq_debugfs_register_rqos(rqos); @@ -110,12 +124,22 @@ { struct rq_qos **cur; + /* + * See comment in rq_qos_add() about freezing queue & using + * ->queue_lock. + */ + blk_mq_freeze_queue(q); + + spin_lock_irq(&q->queue_lock); for (cur = &q->rq_qos; *cur; cur = &(*cur)->next) { if (*cur == rqos) { *cur = rqos->next; break; } } + spin_unlock_irq(&q->queue_lock); + + blk_mq_unfreeze_queue(q); blk_mq_debugfs_unregister_rqos(rqos); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-throttle.c +++ linux-azure-5.4.0/block/blk-throttle.c @@ -2414,6 +2414,7 @@ void blk_throtl_exit(struct request_queue *q) { BUG_ON(!q->td); + del_timer_sync(&q->td->service_queue.pending_timer); throtl_shutdown_wq(q); blkcg_deactivate_policy(q, &blkcg_policy_throtl); free_percpu(q->td->latency_buckets[READ]); only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-timeout.c +++ linux-azure-5.4.0/block/blk-timeout.c @@ -20,13 +20,11 @@ } __setup("fail_io_timeout=", setup_fail_io_timeout); -int blk_should_fake_timeout(struct request_queue *q) +bool __blk_should_fake_timeout(struct request_queue *q) { - if (!test_bit(QUEUE_FLAG_FAIL_IO, &q->queue_flags)) - return 0; - return should_fail(&fail_io_timeout, 1); } +EXPORT_SYMBOL_GPL(__blk_should_fake_timeout); static int __init fail_io_timeout_debugfs(void) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-wbt.c +++ linux-azure-5.4.0/block/blk-wbt.c @@ -77,7 +77,8 @@ static inline bool rwb_enabled(struct rq_wb *rwb) { - return rwb && rwb->wb_normal != 0; + return rwb && rwb->enable_state != WBT_STATE_OFF_DEFAULT && + rwb->wb_normal != 0; } static void wb_timestamp(struct rq_wb *rwb, unsigned long *var) @@ -644,9 +645,13 @@ void wbt_enable_default(struct request_queue *q) { struct rq_qos *rqos = wbt_rq_qos(q); + /* Throttling already enabled? */ - if (rqos) + if (rqos) { + if (RQWB(rqos)->enable_state == WBT_STATE_OFF_DEFAULT) + RQWB(rqos)->enable_state = WBT_STATE_ON_DEFAULT; return; + } /* Queue not registered? Maybe shutting down... */ if (!blk_queue_registered(q)) @@ -710,7 +715,7 @@ rwb = RQWB(rqos); if (rwb->enable_state == WBT_STATE_ON_DEFAULT) { blk_stat_deactivate(rwb->cb); - rwb->wb_normal = 0; + rwb->enable_state = WBT_STATE_OFF_DEFAULT; } } EXPORT_SYMBOL_GPL(wbt_disable_default); only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/blk-wbt.h +++ linux-azure-5.4.0/block/blk-wbt.h @@ -34,6 +34,7 @@ enum { WBT_STATE_ON_DEFAULT = 1, WBT_STATE_ON_MANUAL = 2, + WBT_STATE_OFF_DEFAULT }; struct rq_wb { only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/elevator.c +++ linux-azure-5.4.0/block/elevator.c @@ -337,6 +337,9 @@ __rq = elv_rqhash_find(q, bio->bi_iter.bi_sector); if (__rq && elv_bio_merge_ok(__rq, bio)) { *req = __rq; + + if (blk_discard_mergable(__rq)) + return ELEVATOR_DISCARD_MERGE; return ELEVATOR_BACK_MERGE; } @@ -522,8 +525,6 @@ kobject_del(&e->kobj); e->registered = 0; - /* Re-enable throttling in case elevator disabled it */ - wbt_enable_default(q); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/block/ioprio.c +++ linux-azure-5.4.0/block/ioprio.c @@ -207,6 +207,7 @@ pgrp = task_pgrp(current); else pgrp = find_vpid(who); + read_lock(&tasklist_lock); do_each_pid_thread(pgrp, PIDTYPE_PGID, p) { tmpio = get_task_ioprio(p); if (tmpio < 0) @@ -216,6 +217,8 @@ else ret = ioprio_best(ret, tmpio); } while_each_pid_thread(pgrp, PIDTYPE_PGID, p); + read_unlock(&tasklist_lock); + break; case IOPRIO_WHO_USER: uid = make_kuid(current_user_ns(), who); only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/Kconfig +++ linux-azure-5.4.0/certs/Kconfig @@ -83,4 +83,21 @@ wrapper to incorporate the list into the kernel. Each should be a string of hex digits. +config SYSTEM_REVOCATION_LIST + bool "Provide system-wide ring of revocation certificates" + depends on SYSTEM_BLACKLIST_KEYRING + depends on PKCS7_MESSAGE_PARSER=y + help + If set, this allows revocation certificates to be stored in the + blacklist keyring and implements a hook whereby a PKCS#7 message can + be checked to see if it matches such a certificate. + +config SYSTEM_REVOCATION_KEYS + string "X.509 certificates to be preloaded into the system blacklist keyring" + depends on SYSTEM_REVOCATION_LIST + help + If set, this option should be the filename of a PEM-formatted file + containing X.509 certificates to be included in the default blacklist + keyring. + endmenu only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/Makefile +++ linux-azure-5.4.0/certs/Makefile @@ -3,8 +3,9 @@ # Makefile for the linux kernel signature checking certificates. # -obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o -obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist.o +obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o common.o +obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist.o common.o +obj-$(CONFIG_SYSTEM_REVOCATION_LIST) += revocation_certificates.o ifneq ($(CONFIG_SYSTEM_BLACKLIST_HASH_LIST),"") obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist_hashes.o else @@ -29,7 +30,7 @@ $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS)) endif # CONFIG_SYSTEM_TRUSTED_KEYRING -clean-files := x509_certificate_list .x509.list +clean-files := x509_certificate_list .x509.list x509_revocation_list ifeq ($(CONFIG_MODULE_SIG),y) ############################################################################### @@ -46,11 +47,19 @@ redirect_openssl = 2>&1 quiet_redirect_openssl = 2>&1 silent_redirect_openssl = 2>/dev/null +openssl_available = $(shell openssl help 2>/dev/null && echo yes) # We do it this way rather than having a boolean option for enabling an # external private key, because 'make randconfig' might enable such a # boolean option and we unfortunately can't make it depend on !RANDCONFIG. ifeq ($(CONFIG_MODULE_SIG_KEY),"certs/signing_key.pem") + +ifeq ($(openssl_available),yes) +X509TEXT=$(shell openssl x509 -in "certs/signing_key.pem" -text 2>/dev/null) + +$(if $(findstring rsaEncryption,$(X509TEXT)),,$(shell rm -f "certs/signing_key.pem")) +endif + $(obj)/signing_key.pem: $(obj)/x509.genkey @$(kecho) "###" @$(kecho) "### Now generating an X.509 key pair to be used for signing modules." @@ -104,3 +113,17 @@ $(obj)/signing_key.x509: scripts/extract-cert $(X509_DEP) FORCE $(call if_changed,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY)) endif # CONFIG_MODULE_SIG + +ifeq ($(CONFIG_SYSTEM_REVOCATION_LIST),y) + +$(eval $(call config_filename,SYSTEM_REVOCATION_KEYS)) + +$(obj)/revocation_certificates.o: $(obj)/x509_revocation_list + +quiet_cmd_extract_certs = EXTRACT_CERTS $(patsubst "%",%,$(2)) + cmd_extract_certs = scripts/extract-cert $(2) $@ + +targets += x509_revocation_list +$(obj)/x509_revocation_list: scripts/extract-cert $(SYSTEM_REVOCATION_KEYS_SRCPREFIX)$(SYSTEM_REVOCATION_KEYS_FILENAME) FORCE + $(call if_changed,extract_certs,$(SYSTEM_REVOCATION_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_REVOCATION_KEYS)) +endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/blacklist.h +++ linux-azure-5.4.0/certs/blacklist.h @@ -1,3 +1,5 @@ #include +#include +#include extern const char __initconst *const blacklist_hashes[]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/blacklist_hashes.c +++ linux-azure-5.4.0/certs/blacklist_hashes.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #include "blacklist.h" -const char __initdata *const blacklist_hashes[] = { +const char __initconst *const blacklist_hashes[] = { #include CONFIG_SYSTEM_BLACKLIST_HASH_LIST , NULL }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/common.c +++ linux-azure-5.4.0/certs/common.c @@ -0,0 +1,58 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +#include +#include +#include "common.h" + +int load_certificate_list(const u8 cert_list[], + const unsigned long list_size, + const struct key *keyring) +{ + key_ref_t key; + const u8 *p, *end; + size_t plen; + + p = cert_list; + end = p + list_size; + while (p < end) { + /* Each cert begins with an ASN.1 SEQUENCE tag and must be more + * than 256 bytes in size. + */ + if (end - p < 4) + goto dodgy_cert; + if (p[0] != 0x30 && + p[1] != 0x82) + goto dodgy_cert; + plen = (p[2] << 8) | p[3]; + plen += 4; + if (plen > end - p) + goto dodgy_cert; + + key = key_create_or_update(make_key_ref(keyring, 1), + "asymmetric", + NULL, + p, + plen, + ((KEY_POS_ALL & ~KEY_POS_SETATTR) | + KEY_USR_VIEW | KEY_USR_READ), + KEY_ALLOC_NOT_IN_QUOTA | + KEY_ALLOC_BUILT_IN | + KEY_ALLOC_BYPASS_RESTRICTION); + 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); + key_ref_put(key); + } + p += plen; + } + + return 0; + +dodgy_cert: + pr_err("Problem parsing in-kernel X.509 certificate list\n"); + return 0; +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/common.h +++ linux-azure-5.4.0/certs/common.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _CERT_COMMON_H +#define _CERT_COMMON_H + +int load_certificate_list(const u8 cert_list[], const unsigned long list_size, + const struct key *keyring); + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/certs/revocation_certificates.S +++ linux-azure-5.4.0/certs/revocation_certificates.S @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#include +#include + + __INITRODATA + + .align 8 + .globl revocation_certificate_list +revocation_certificate_list: +__revocation_list_start: + .incbin "certs/x509_revocation_list" +__revocation_list_end: + + .align 8 + .globl revocation_certificate_list_size +revocation_certificate_list_size: +#ifdef CONFIG_64BIT + .quad __revocation_list_end - __revocation_list_start +#else + .long __revocation_list_end - __revocation_list_start +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/akcipher.c +++ linux-azure-5.4.0/crypto/akcipher.c @@ -119,6 +119,12 @@ return -ENOSYS; } +static int akcipher_default_set_key(struct crypto_akcipher *tfm, + const void *key, unsigned int keylen) +{ + return -ENOSYS; +} + int crypto_register_akcipher(struct akcipher_alg *alg) { struct crypto_alg *base = &alg->base; @@ -131,6 +137,8 @@ alg->encrypt = akcipher_default_op; if (!alg->decrypt) alg->decrypt = akcipher_default_op; + if (!alg->set_priv_key) + alg->set_priv_key = akcipher_default_set_key; akcipher_prepare_alg(alg); return crypto_register_alg(base); only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/authenc.c +++ linux-azure-5.4.0/crypto/authenc.c @@ -263,7 +263,7 @@ dst = scatterwalk_ffwd(areq_ctx->dst, req->dst, req->assoclen); skcipher_request_set_tfm(skreq, ctx->enc); - skcipher_request_set_callback(skreq, aead_request_flags(req), + skcipher_request_set_callback(skreq, flags, req->base.complete, req->base.data); skcipher_request_set_crypt(skreq, src, dst, req->cryptlen - authsize, req->iv); only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/cryptd.c +++ linux-azure-5.4.0/crypto/cryptd.c @@ -39,6 +39,10 @@ }; struct cryptd_queue { + /* + * Protected by disabling BH to allow enqueueing from softinterrupt and + * dequeuing from kworker (cryptd_queue_worker()). + */ struct cryptd_cpu_queue __percpu *cpu_queue; }; @@ -125,28 +129,28 @@ static int cryptd_enqueue_request(struct cryptd_queue *queue, struct crypto_async_request *request) { - int cpu, err; + int err; struct cryptd_cpu_queue *cpu_queue; refcount_t *refcnt; - cpu = get_cpu(); + local_bh_disable(); cpu_queue = this_cpu_ptr(queue->cpu_queue); err = crypto_enqueue_request(&cpu_queue->queue, request); refcnt = crypto_tfm_ctx(request->tfm); if (err == -ENOSPC) - goto out_put_cpu; + goto out; - queue_work_on(cpu, cryptd_wq, &cpu_queue->work); + queue_work_on(smp_processor_id(), cryptd_wq, &cpu_queue->work); if (!refcount_read(refcnt)) - goto out_put_cpu; + goto out; refcount_inc(refcnt); -out_put_cpu: - put_cpu(); +out: + local_bh_enable(); return err; } @@ -162,15 +166,10 @@ cpu_queue = container_of(work, struct cryptd_cpu_queue, work); /* * Only handle one request at a time to avoid hogging crypto workqueue. - * preempt_disable/enable is used to prevent being preempted by - * cryptd_enqueue_request(). local_bh_disable/enable is used to prevent - * cryptd_enqueue_request() being accessed from software interrupts. */ local_bh_disable(); - preempt_disable(); backlog = crypto_get_backlog(&cpu_queue->queue); req = crypto_dequeue_request(&cpu_queue->queue); - preempt_enable(); local_bh_enable(); if (!req) only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/ecrdsa.c +++ linux-azure-5.4.0/crypto/ecrdsa.c @@ -112,15 +112,15 @@ /* Step 1: verify that 0 < r < q, 0 < s < q */ if (vli_is_zero(r, ndigits) || - vli_cmp(r, ctx->curve->n, ndigits) == 1 || + vli_cmp(r, ctx->curve->n, ndigits) >= 0 || vli_is_zero(s, ndigits) || - vli_cmp(s, ctx->curve->n, ndigits) == 1) + vli_cmp(s, ctx->curve->n, ndigits) >= 0) return -EKEYREJECTED; /* Step 2: calculate hash (h) of the message (passed as input) */ /* Step 3: calculate e = h \mod q */ vli_from_le64(e, digest, ndigits); - if (vli_cmp(e, ctx->curve->n, ndigits) == 1) + if (vli_cmp(e, ctx->curve->n, ndigits) >= 0) vli_sub(e, e, ctx->curve->n, ndigits); if (vli_is_zero(e, ndigits)) e[0] = 1; @@ -136,7 +136,7 @@ /* Step 6: calculate point C = z_1P + z_2Q, and R = x_c \mod q */ ecc_point_mult_shamir(&cc, z1, &ctx->curve->g, z2, &ctx->pub_key, ctx->curve); - if (vli_cmp(cc.x, ctx->curve->n, ndigits) == 1) + if (vli_cmp(cc.x, ctx->curve->n, ndigits) >= 0) vli_sub(cc.x, cc.x, ctx->curve->n, ndigits); /* Step 7: if R == r signature is valid */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/rsa-pkcs1pad.c +++ linux-azure-5.4.0/crypto/rsa-pkcs1pad.c @@ -475,6 +475,8 @@ pos++; if (digest_info) { + if (digest_info->size > dst_len - pos) + goto done; if (crypto_memneq(out_buf + pos, digest_info->data, digest_info->size)) goto done; @@ -494,7 +496,7 @@ sg_nents_for_len(req->src, req->src_len + req->dst_len), req_ctx->out_buf + ctx->key_size, - req->dst_len, ctx->key_size); + req->dst_len, req->src_len); /* Do the actual verification step. */ if (memcmp(req_ctx->out_buf + ctx->key_size, out_buf + pos, req->dst_len) != 0) @@ -537,7 +539,7 @@ if (WARN_ON(req->dst) || WARN_ON(!req->dst_len) || - !ctx->key_size || req->src_len < ctx->key_size) + !ctx->key_size || req->src_len != ctx->key_size) return -EINVAL; req_ctx->out_buf = kmalloc(ctx->key_size + req->dst_len, GFP_KERNEL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/crypto/shash.c +++ linux-azure-5.4.0/crypto/shash.c @@ -20,12 +20,24 @@ static const struct crypto_type crypto_shash_type; -int shash_no_setkey(struct crypto_shash *tfm, const u8 *key, - unsigned int keylen) +static int shash_no_setkey(struct crypto_shash *tfm, const u8 *key, + unsigned int keylen) { return -ENOSYS; } -EXPORT_SYMBOL_GPL(shash_no_setkey); + +/* + * Check whether an shash algorithm has a setkey function. + * + * For CFI compatibility, this must not be an inline function. This is because + * when CFI is enabled, modules won't get the same address for shash_no_setkey + * (if it were exported, which inlining would require) as the core kernel will. + */ +bool crypto_shash_alg_has_setkey(struct shash_alg *alg) +{ + return alg->setkey != shash_no_setkey; +} +EXPORT_SYMBOL_GPL(crypto_shash_alg_has_setkey); static int shash_setkey_unaligned(struct crypto_shash *tfm, const u8 *key, unsigned int keylen) only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/abiname +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/abiname @@ -0,0 +1 @@ +1102 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/amd64/azure +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/amd64/azure @@ -0,0 +1,17087 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x897c4c6f kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x300e5d68 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x61b60621 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x6a419648 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x719614fc crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7a220168 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xb71b9977 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x3432d3e5 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x4cf41114 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x7bb037ff crypto_sha3_final +EXPORT_SYMBOL crypto/sm3_generic 0xaa8ff13f crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xc2ff21f0 crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x0556ea74 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x129fa4c5 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xa507503d suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x2786e8b6 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x713b5de5 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x8532ca91 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/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 0x116803bc ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x63c63bec ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x64256370 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb4c22a58 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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/crypto/atmel-i2c 0x112b5d22 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x43c6bddd atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x68f82f1b atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x006275ad drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x015aaadd drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e773af drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03aa4daa drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x059066ce drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x067ab6b6 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x069eec50 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072d2b3d drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e1ec7d drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08336429 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x085bce07 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08cdddb9 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa35c14 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b44f502 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bee8552 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3a9d8a drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0c91d7 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df73f05 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x101ab235 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1077901b drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d3d95b drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11190c87 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119cbcf3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x121367e3 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x128e23b7 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cdc27b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1383ba9d drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b788df drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x174878bb drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1891486b drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19fbd99b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9b0bec drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afb33b1 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc47353 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cda8dee drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d05431f drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7e01a1 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcf29d3 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6d793a drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef7c5db drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6c48f0 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f7be1b4 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2147e551 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231d3ac8 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231f4ce7 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237c740d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c32173 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x255c2bd1 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27688a04 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d72fd0 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a16472c drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1a1978 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6f8eed drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7cb529 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be8a96d drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d436937 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc289b3 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc94077 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2de8f0ed drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e2fdc97 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x304b0d54 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d419d3 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3129f379 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3188f0c2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e2d51e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3225d830 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d52fb4 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ee741f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34e69109 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c5d973 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3670e11a drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ff8029 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386fdae1 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38da0873 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3945a596 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b33f07 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fb4912 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a166d3f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a22711b drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac7c150 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2cd823 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bee50ee drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c845be0 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc6b7b2 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da56ddc drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df0fb71 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e456080 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e908c7a drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd6efe9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x410f84e3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a942e1 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b3f773 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x434ae8f3 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d22002 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x451f4757 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452bf5af drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4531e800 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c0f6dd drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46783b5c drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46ea81c2 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46eafe35 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4744f566 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482c5acf drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4866f1e0 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48feb42a drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f2797b drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a8a9faf drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa610ef drm_agp_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b0c8711 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d15a480 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d20542a drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6c7105 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd4ee78 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x509045ca drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517450b5 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5185a008 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ad10fd drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5295af5f drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x529b4d51 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x532f2746 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53824df3 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54df108f drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a25998 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57614a45 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5888886a drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b73eb1 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5912729e drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597a5787 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae400a8 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d09bdce drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e52c931 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb2e5ce drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee24c5a drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f280037 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x608b7b4f drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d4f86d drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x618d471e drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6197b255 drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e495e9 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62eb1522 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x632d2c75 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6407c1b1 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c46125 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66136589 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x663c1186 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6920a2b5 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692150c8 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c2f590 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9a3a83 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aec6703 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b63b924 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be001d8 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf94b98 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c287a83 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c423b28 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ded456a drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fe1aedf drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701a7ea6 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70bbbeeb drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cb87bf drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70eb6ccc drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7266dc06 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72dda081 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f46b83 drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x738a17ea drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73baa5d1 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c17e36 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7411ef0a drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7423c918 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755fd210 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78041142 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78864171 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d5e4d0 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0ec54f drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3321d5 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c26d51d __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0e7104 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7963f6 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7de5662d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5515bb drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbc091d drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x803088b5 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8332cff9 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b0121b drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x844a913b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84612d96 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84bd7565 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84ef6373 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8634229a drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8634300d drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875bbf20 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88304c8f drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8898c302 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ce9741 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ac1d3a7 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b03dcb4 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b3d2e04 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b59db26 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b77c382 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca8e564 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce2dc00 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd04c90 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e49da94 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5ee528 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe31ddf drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9136a75a drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a3b632 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x931e8fcd drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9393d7f2 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93adb13d drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94903ab5 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c1526e drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e88973 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f8efa9 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97015ab7 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b942b9 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ef8c93 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9988a984 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a266ef3 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b403540 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfd58d9 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c093e66 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6bbf87 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ca6ac1d drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da70662 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e444832 drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fae63ad drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2bc7271 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa399072d drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3cdb83d drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4028160 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4654d17 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4795bd4 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47f1d9f drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6cfaedc drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa729df6a drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c4e33e drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ea93fe drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa902bf90 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93955de drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa998a775 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a60d8c drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa62583e drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae7e596 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2f571e drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf4b7bf drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1ca400 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb039c51a drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb057df65 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1585c95 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18541d3 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c2a8fb drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c4afe6 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e3d95d drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2071db9 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4073775 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59a4ba0 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e88dfd drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ea4dcf drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e726c3 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7782ec7 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95ef6fa drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd644a69 drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7898dc drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe807752 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedc0d5a drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf828276 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00ecc68 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc041daf9 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c4f615 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24ad0ce drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc310dc3a drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc47408bd drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50699e9 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5392d28 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d901b2 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8de2c1f drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9159afe drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2d7440 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb922959 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdecd9f9 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3f0468 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbb758a drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06bdf5c drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1e6edef drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd318961c drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3378c00 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34dbb76 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3772ee3 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4331459 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57412dc drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6374a12 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70a7edd drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7433800 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a99e0e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7b1771a drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0315f5 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbdc5f2d drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc0ba02d drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf46d11 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd2f8c8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf41c737 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0434b1e drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a807dd drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe125c0da drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe240fe51 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b2f4a6 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46bc73e drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4af62ff drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe56ec3ca drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65ec823 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e0ae8c drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7871cec drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7dd0420 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81808b5 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c5a00a drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea85a16b drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa8531b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4fb4c7 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedbf3b19 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdd83ea drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf090fd06 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f1cde7 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf158a3e6 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf220310d drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24b7432 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf349ea31 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf375a889 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf38f5161 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62234fa drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c6dae0 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e6400e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77df083 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7c72b28 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8bf1ce2 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8eb4861 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e3b176 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa9eca13 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcda0ecc drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd3f6849 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe60f5f9 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe7ad039 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00180f86 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x004ebda3 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01076155 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04f15cc5 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05f41ff6 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07694bcd drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07725e8e drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0963354a drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be15642 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b23567 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x160411da drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16764133 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16dc51df drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17c21d60 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a2fcbef __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bbc79b2 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cbb7231 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d75bb20 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d8f8740 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e323b37 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e681259 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f59583c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2059f786 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20bbef55 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2371e15f drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23d5fad6 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26907729 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c596a8 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285ceb4b drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x297cf360 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bde19cc drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8960d3 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e50bca6 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f6ea1a6 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30418f1f drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x311640b9 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323c13d0 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3491760e drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ad716b drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e4dc86 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x363dc2e9 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ae4d33 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b80e35 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3903eafa drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3947ddc4 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a126b36 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd92e45 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42dcce24 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42ef7895 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f70529 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44df9052 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4546b495 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a956c7 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46312481 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x465f9df5 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4826e025 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4849d75b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b88ad47 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ba85a8c drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ade9ae drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50d5f30a drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x510faee8 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5265ece8 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52bcaab8 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52bcd31f drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5322616d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x534aa22e drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f99c54 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x583f1f99 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b01d21b drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5e58ef drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8ecc23 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ce22e45 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e774841 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e818772 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0c7de9 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f272ef2 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d446dd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64cf55fb drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6711961b drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68fa52f6 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69312355 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b4bc3f0 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b6c1a67 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c631b2f drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0f94fb drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d8738b0 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e8228f8 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f662ab4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7105c127 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718483c7 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71cb3c5a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7267f5a5 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7542885c drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ac59f0 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c26ea4 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e8aaa5 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x791b0a5d drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1c88a1 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae55f3b drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1d9d91 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f6156e9 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fda50e0 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80256536 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80eff93c drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85ec65fc drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87949798 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88121f4e drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b10124 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ca28f4 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d7b1fbc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e862a40 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e9d42a4 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe1033f drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe508b0 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9073549e drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93258d1b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93f68754 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9424399c drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954aae72 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95da3db4 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96bca11f drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989d9bdb drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99b7ca61 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b132951 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d0b0f3f drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e2e09c1 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f1badea drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa04d7f82 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0776aef drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa094d3be drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13aa508 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa502374d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c4139a drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa770f944 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7aefd2c drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa82c9813 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8839f42 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab080cda drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad12e6c1 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad423502 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae1b2432 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb25532c7 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4a78c53 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72f5de1 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8b514d1 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9a8a79d drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba14b6db drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb873a9a drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe2dc9ee __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeeb9d43 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf52bdab drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc019af1c drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03774ec drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc09343b8 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc15acd0d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1e9fede drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc321f16c drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a10ad7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5e0f1fc drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c97f29 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc725864e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7278713 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca191c3a drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc215941 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd398c7a drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd5a826a drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c0dd20 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1f64768 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd344b165 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c8b788 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd55d000b __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69b6a0d drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb300037 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf529bf3 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2dc81d7 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe35f551c drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5fd810a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe633067d drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe803bfe5 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2999cb drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed567155 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0c542dc drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f3600c __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c04cc5 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2cc4cf9 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3e2949f drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c1bdee drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5fc68f9 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6dfe24d drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78c3a1c drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c588bc drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaed5aea drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd75753 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff03880f drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x031eff72 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c5bcdc8 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x278a0841 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2b0e3556 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x496d69d2 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x63d50bbc mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6da33686 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x73e7ed90 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7454e170 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8963e8e2 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9432cf42 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa3e6cb75 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbbc2e42b mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbfe7eb01 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6e00563 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd82df09d mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9abb253 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff292e84 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0c2e7809 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28e9d29f drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x344ca227 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3751d1ec drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3845d73e drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x39755ff8 drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3d2f1825 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5412f117 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5662133e drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f219f4e drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66226c54 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6baeb60d drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x832c5cc4 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x85e909a6 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8bea861e drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8cb1df8d drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9a70b818 drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc0cbb5cd drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcd2636a7 drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf7e9845b drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x145f9697 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b07e6e3 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20d8005e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x35a6391e drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42afe0db drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4841212b drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a8765d3 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x527d5c01 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x60426924 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x62ea1cda drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8172daa3 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x819be5bb to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86d168ab drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9afb0c19 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa9229dc9 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1621924 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd20f7a12 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf352a81c drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf799a17d drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00c6a4e5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01380fd8 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x073fed37 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08be590b ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09fb42db ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b2f0914 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c9192da ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x102b8e84 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x142865e0 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16f181dc ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18235174 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2471abd4 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bcb9162 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d676469 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dfdf92b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30b3eb69 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3419cd70 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35cb3c20 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x453cff22 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50ceb256 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x523601d2 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x561c491d ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c8cd65a ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x672177a3 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69a61dbd ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69d663fe ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c21cd98 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7206e4ec ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x737b3f0c ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7413514f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c0166ba ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d339f5f ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ea669f8 ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f283398 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86729d55 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cfdae07 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0786b66 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa882b874 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa94e87c5 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf2cf8bc ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0de41f9 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1d05ea4 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2fe3fe3 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4671d6a ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2e0cb55 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc327e9fe ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce4e5721 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd48bf875 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb479ebe ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc30cd6f ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf6aa6c6 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe00ae68d ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe19a44e3 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1ac9a01 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe412dcdd ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5e99ac5 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea05f61a ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb0c6c62 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef8020ad ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf18d0c62 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3a3f78a ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf82bb1c7 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfab5311a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbf02f70 ttm_bo_device_init +EXPORT_SYMBOL drivers/hid/hid 0x26be1900 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x051201b1 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x099974db ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0e1b34e4 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x10b9dda4 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x156931d9 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x18ee5e36 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x191fc5de ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27b93a19 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x29de13ad ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2b9acdba ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2fdc18cb ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x34c5e2fd ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x46ebc809 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4df09fb3 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 0x60864feb ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x64680751 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x64b4ba39 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x76234282 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7c10ad36 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x878fe7c8 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x89ae7c87 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x89f45c82 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8eb2e2b7 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8fe4b7d6 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x93afcc5d ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9daf367d ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa3df30e9 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa7165ada ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc09ba116 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcab90fc5 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcf8525f9 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcfb08669 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd7d4e826 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd8c33587 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd95dd308 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xda835b6c ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdac87ab9 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdb93d197 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xea4b7d04 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf88212a4 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfb71df0a ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xffdf091d ishtp_recv +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +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 0xdd42ffe0 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x080fef88 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4cbdd4cd i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8942ed31 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8636913f i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xad287c59 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x053d0ebc amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x036a5251 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x20e917d4 i2c_use_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3a5433eb i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x421b396e i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x461042cf i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5a31c416 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x67a20382 i2c_release_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6be3d0ba i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7b5d6b5c i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x88f5f686 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9cf29e2f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9f38e2a1 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa411860e i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xaa40c892 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xac6ef868 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb24ac71a i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xba8a81b4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc052429a i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc7af8aaf i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd40071e1 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd47ff6a1 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe3e7b891 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe64f4d18 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xeb99c50d i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xec4d973d __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf05aa6b3 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfd348d9b i2c_verify_adapter +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a9ca0c8 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18b3a7df ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1de271b0 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ad314ac cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49c3070b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5991ec31 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e2829fd ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x843b1145 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8652e103 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96f1f568 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa22356cf ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4daf6b7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa02d1da ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaab7f096 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaebf6e51 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1e21848 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc6baf3fa ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc8c6b27d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0066c3ef ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022b3be4 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0282b94d ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0429b6e9 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0602d7f4 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06526caf ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07915c20 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079338ef ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09113c68 ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f71f47a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fe0b7b4 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11abe161 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13c637db ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171e828c ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189a3123 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c6847d7 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2de830 __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e3caa88 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f214240 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fd0ceaa rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ffe0bfa ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2101ec25 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e4faaa __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222ed04c ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26e67889 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28db7079 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2939893f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a577ccf rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7c1280 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d7ff04a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30304cbc rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x306d0762 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3161fe89 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a81dac ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33cfdd36 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3690e2f1 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38105393 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39ee4409 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d2f2bf2 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419e6221 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x426584ff ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43312e5e ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c6aa7e ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46455333 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46686cd9 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47347576 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47b09377 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x488b0faf ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a3f5a3d rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b6c5ca7 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c46f037 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c77b7c8 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e589e97 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fde5091 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50968894 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5208c8c3 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520a5b1a ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x584054ff ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a96a7c4 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aaea696 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c055ca5 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0ae4cd ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f36e682 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc8d422 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e4260d ib_drain_rq +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 0x62f71348 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6332a577 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66d32804 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67db63e0 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67ec75f8 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa1d18d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b49c761 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b61bd77 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ba17f99 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ca11032 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d315d82 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d43ea8c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73ee6aae ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x745dad92 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x757f9677 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x758b9720 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x759720fe rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76c7566c rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae78702 __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b34a918 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cdcb1f3 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bbff64 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bd157e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bfaed6 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85a1bdef ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89ea62cf rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a01e259 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3635c1 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ae2332b ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b95c38d rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bd65c99 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d2f5ade ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef8aa95 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc634a2 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90017699 ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x906abafe __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9106e133 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926ed0ec ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x955bde2f ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ab813c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9863750a rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b61d333 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d68255c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2523887 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3400aaf ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa461e560 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e26543 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8c4cd rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa0bbcc7 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa0ff69e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa5dd156 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac46f068 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf3b4021 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb41f79ca rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5ce4724 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5ed44f2 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72c499d ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7da8cd9 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb3b20c9 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb921e0f rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbaf38da ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd6c3c07 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0450073 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0973db0 rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aeefc7 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0b84f5d ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc24732f3 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3adff21 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56fd86f rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7b9cc8f ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc93066f1 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1bed0a ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc4ae7b8 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd8c406a ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcebf129b ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf0bf4e6 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0657cd5 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36fccee ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd426ada2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd58e7f26 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd684512b __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd727f056 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd82fcc8b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd916265c rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda2f571d ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3b3c80 rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb6b991e ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbccbb2d rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcdd2151 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd86c6d9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde40eb5f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde84a674 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf9f6478 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe089b24c ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0c8500c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe13547dd rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe256a9dc rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2b1fefe ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d8018b rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe51d9d60 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe64f1b65 rdma_read_gid_attr_ndev_rcu +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 0xebb5f2b4 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf117a9 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee22951c ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee302711 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeff59476 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf220876e ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf344b0a2 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a40480 ib_device_set_netdev +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 0xf7cc6952 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8371bd3 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf88de834 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4e138f ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa673956 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb60fe88 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1baaec rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf0e895 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe029d77 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02ee9b43 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x078eceac flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12a066c8 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16d06a4c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f7aceba uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x24124c45 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26a46c5e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32b63d23 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4acef616 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56edd0b7 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57ebe9d4 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x590339a2 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x660095c9 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x715fc972 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c5a49b7 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95c8f2a3 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ee11888 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa340a482 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3f802e6 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa902cd1b uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcb8a4e6 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 0xc698a71c ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb83974e ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcda12f88 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4f98a63 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdf32a21b uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe584855c ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5a7ee62 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbdcd672 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfccddf20 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37d6a114 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x54f8d7d6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x69dc5553 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6a2a9c68 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8329cc5b iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x92ee3d07 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x97191d59 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc4aafb96 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x013ee02c rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01fd0999 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0514ef5c rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x225d6d8e rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24ee48cb rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ad320dc rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30d2b6fa rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48e87de2 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f1ef769 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ae14183 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b0cb4da rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d833af6 rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x637f4537 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f23c0f0 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70311c65 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x758f4c84 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7bcd23b2 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ddb796d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8da88b5b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa43af626 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa66ed7c rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb15d2917 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdf917da rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcb7f451 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdead344d rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3bea6d8 __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe609a9b1 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1466af2 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6dc1999 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf75316dd rdma_read_gids +EXPORT_SYMBOL drivers/input/input-polldev 0x19f9185a input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x20d9a555 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x376e9049 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x3d008f0a devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6066c73e input_free_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xab1f2cbb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x04592f10 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1142b384 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbc27c977 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf698dfb6 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfa61a1fb sparse_keymap_setup +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x4128266f amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x8f36c2ba amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x9c7071f5 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa57b8bf6 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa82c8361 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xb4f5c599 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x14b6ee0e 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 0xbdf65acd ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x6f05161b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xabc7841a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xb8685f46 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xffd39f22 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x18a57b79 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x27dcf42d dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x35f81459 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x43b04b42 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x52670e70 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6fee5be3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x32c1d09f r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xb33f2aaf raid5_set_cache_size +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xa73d08a5 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaf16af4f ir_raw_handler_unregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1365d2ba mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1568a866 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2780bc39 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2812781c mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2cd1ccdf mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e8e47f3 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x419abb9b mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4216e248 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x423abda6 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42657948 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59ab05ac mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e4e0d58 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5eab5fc7 mpt_config +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 0x80fa39d6 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84420b09 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8953847c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x921112b8 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x96032f7c mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2840622 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaea36295 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb331994e mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcac3e2dc mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1a13ccf mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd51eccbd mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc1299b0 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd58af12 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe190a494 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe25a183c mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf793898f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0da53111 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0df245e7 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a493eb5 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d508961 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2edd6e6e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34ee4bc3 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bb596ae mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x503f3c3f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54bd31f9 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59e6bb53 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69cd2688 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x751209ef mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8577c97c mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x954d7170 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96e1ee39 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1a91d82 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb766b62e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd624958 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0de470e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc11e170c mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcddc37cc mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea925c51 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf535ae4b mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf576b72e mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7787b22 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7f6f999 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd11590b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/axp20x 0x6ea649a5 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x9a0b3ae3 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xb6978676 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7d881107 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xbf879bb9 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10a29101 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19d6c564 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26f07700 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2b0435bf mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x509c5498 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5d172d57 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x89e19d59 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x998995eb mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8938c4b mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb2057d7 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb9a3e9a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x138d28bd wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x21b79324 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x630e26b5 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbed59109 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbee1185f wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xc7e3d3db wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x0f501866 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1c28f172 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x245d87d8 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x38dd98b0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x54e60ea0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x90715364 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x998facb7 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb0a32694 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf2ed2b1 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd13ac75a tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe74b0f71 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xff925231 tifm_alloc_device +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ab8aa87 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b0fee69 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d0b00c0 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x65052601 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7bb36cce arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x80417bb4 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x82da174c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x98b43868 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa4a84793 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff08906d arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x064a1b1a com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x147dc42e com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb3890198 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0807809c b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0993e771 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14b83447 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16aa4fde b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e7dd07e b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ec6592f b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30fb44ba b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x322ee107 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x333969fd b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40964424 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4cd776d5 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4da39654 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5550ae41 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f2b5334 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60fb90e1 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6370ebc8 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a491984 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d16352c b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f834faf b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1e03e6b b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa481abf4 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6f4e87d b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0c33391 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1efa9a9 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb707c8e8 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba615c50 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbf0f14c b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfa1fdd8 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4ebbe74 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcdbe1730 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcef0cc4a b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd752bda6 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdaac3ca8 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdf65b02a b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0543f11 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe3192abc b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee302721 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3a0e9c3 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2866aefa b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6927a222 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa3a49854 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbd8e5a56 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xea6da860 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc3c593c b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcce28c77 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd58ac6b5 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x458173fd ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xe0db50fa ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcaa0c9db ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcb262d59 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe890a8d3 ksz_switch_register +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x250315de cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08cc758c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b97483e cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a2c4813 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x35afb4f0 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a22a337 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53e7b1c7 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53f6313d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x620fe955 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c56c698 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7551c94f cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b5b9f88 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9f98a352 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaa62ae56 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaefc9669 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc587dd0e cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd64b0dee cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0126d500 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02e9e399 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21312c02 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x267058e3 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d77a324 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35e831f3 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a009f98 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e1dfbb1 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45783e79 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ac04e1c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x572c6a30 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5aebf1f7 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bccd2c3 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6de7dc6f cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71a0cbce cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x729070ec cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x732fccc5 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7963761a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x820fe70a cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x840d056f cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84878af4 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893c2e17 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89eb41e9 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x982f11f5 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f747fd8 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa4bd9ab cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafe0596d cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4f0391c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb75ab2f3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba8c1e86 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2c65a6f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb14cb11 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbb1dd6e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdea25dd cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdf2f674 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2469a56 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7f8961d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ae2ba2 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebd7a1eb cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee908a2a cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeeb6bee1 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1e065bd cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4b22657 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf56e345d cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x09613293 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x128d826a enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4cdc9718 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7e881048 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc19a7a5e vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1e46e60 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0b77d05c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2bd34678 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x6c87cc5b i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x867b33ca i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x9ee299b0 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa812906b iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02424349 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07fd5ae0 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11d3eef8 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19135fa1 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1edb295d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e2a9ecb mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f8bed8 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x322c2be3 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f7c3592 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48ac5221 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c920474 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d700650 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50167033 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5481f539 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59ab8aef mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a18edc5 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x626572bc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b8076f mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66518ea7 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7008602b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82f7b33c mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83de5c5d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aeeb0b7 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a191214 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac395ae8 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadc727f8 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5bf659a mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb965f956 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b8f3ed mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc332ecca mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc570eca3 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6a0695 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1459ee1 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a4ee48 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4b2bfb1 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb4dc682 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd39abd2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb097aa2 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee22d99a mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1be34cc get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1eea678 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2734ab7 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5462c1d mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfab79853 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03ac0cc0 mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c06c8c mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ba4ec4 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0585f008 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x064de9fe mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c85d57 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09b46e55 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a11a26d mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ccef061 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ccf753d mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd6695d mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ec04f71 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1384b3cd mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14ae306e mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15c72736 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16d93f4d mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19244bfa mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c564de mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a99d8c mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x259ab428 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b8adbd mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x298b616d mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df7648f mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f188ca mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351fecaa mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e4939d mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d00f090 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43eb04ca mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4575c3d1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x459d93b5 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x461a181b mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46591867 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46969f9d mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479258d4 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b0c70c7 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c0e18e0 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c3c3653 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c6545b7 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ecae59c mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5604aa7c mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a824654 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c0360ea mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cff1f30 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d3af2ec mlx5_get_uars_page +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 0x659fe110 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66feca99 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6718b509 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6932d644 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d60cd08 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da7347b mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dca5c76 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x708c5997 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a2c5e7 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79cad416 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d9be1e mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dc36dcc mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ee67660 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bbb6119 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cfd92a8 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939b438f mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x955f2300 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95e00e04 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98098f19 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d5e1d9 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ad52d85 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1eedc0 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f874caa mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0367ae9 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0aeb9f8 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa54f1ec2 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa757683f mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a5ca3d mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa95540e6 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaf86f7a mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacb20591 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf138f8a mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39217f8 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb641ff5c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb655fab7 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbce53ae0 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7e062e mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07a5f52 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a7f746 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f536f0 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5f37944 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc797069a mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcccf6c78 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef4e76b mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0607b4f mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0673462 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5f116fc mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6584e01 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd667ed5a mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf8a632e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b722df mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fbe4c4 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb13f915 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb54a37e mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecaffceb mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef40ea4b mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf027f689 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf455c132 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf520a842 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59903eb mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8abca26 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa9b0a4d mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd8b9fb4 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdc19682 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x537d091e mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +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 0x1f93326b mlxsw_core_event_listener_unregister +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 0x25556509 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3ebdd1bf mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68ca882f mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f76a70d mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77f4d874 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x82189bf7 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9547c2cf mlxsw_core_driver_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 0x9b6c638a mlxsw_core_skb_receive +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 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa0b7451 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8582a48 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9ed4315 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd45a7b9 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd215e135 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8b18e02 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe610246d mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf92b115c mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x30e47cc1 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7b99ca6a mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3d4eff70 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd93eeaa2 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0478896d __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x18452eae ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x23d939ae ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x39fb0b15 ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5078debd ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x573f6c40 ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5c83da34 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6796c56f ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x77aa437c ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x7b45fc2e __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb0204182 ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xcf88e9ae __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf6458fb9 ocelot_chip_init +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 0x7db84a25 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/mii 0x3df0e8af mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x6260971a mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xa243fe66 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xa41f23dd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xb5e4c35c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xbd584ee9 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xc92d872b mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe8cde206 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xfea66af5 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xff0938cd mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x98504dec bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x05d12fdd register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x066b2441 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x345c603b pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8f1ba9c3 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x02b047bb hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b043cd9 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x446dc6e7 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e801da7 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x76200f4c attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7b9ca93c unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d9e44d1 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa0640e8d detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbcdf286b register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd6f72c20 hdlc_ioctl +EXPORT_SYMBOL drivers/nfc/microread/microread 0x15186457 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x866de6fd microread_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x347d433b pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7460af8e pn544_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x021efd57 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x0e9f44d2 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2301aab1 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x45dbea28 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x4622f2d0 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4e71786a ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x55a9c157 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x5bd7eb3e ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x60a67ef0 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x65e530b1 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x69501c4a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x6d016a57 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x83221696 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x8970ef6b ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x99409141 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x9f1a2695 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xa3ac8833 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xcf9b2849 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf6d9f817 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xfe53b386 ntb_msg_event +EXPORT_SYMBOL drivers/parport/parport 0x033ee7d9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0846b4cf parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x16ff0c59 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1fd5a07b parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x2161d5dd parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x25701c74 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x2c0d396c parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x2ed235a6 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x39eba518 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x453a96c1 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x69563aab parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x6c79cfbd parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x72655428 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x7fefd400 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8c175884 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x98444cf2 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x9ded1f49 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9e7d99cb parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xad97f8e8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xadecfb4a parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb48e8e40 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb49c42f6 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xbc82deaa parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc3be36dc parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc4b88c90 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xd75cc66a parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xf01cf342 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf395971d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf51d97c9 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xf663ee97 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xfc4ef0ec parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xfcfc5df0 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x0224ea6a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc33ed42e parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11e8fc53 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x12c04db6 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x225bb8aa pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x22c58fb0 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x307d9138 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3a28eefb pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5dc2fba2 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x83aa92ab pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x925472a0 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf4984df5 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa6cd442b pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0xda1aa947 __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xed4575fd wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x330015c3 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35b8806d rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x36c2a486 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ff9fb3e rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5373f743 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5694c1a4 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b89dfac rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95dd7166 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa14ba6a5 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa4bb8a47 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa4fe003e rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc1e3aa44 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd7043215 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf604e3c0 __register_rpmsg_driver +EXPORT_SYMBOL drivers/scsi/53c700 0x00a52a41 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x2c5fe049 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8162b3a8 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcc75857b scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd10f3c33 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdbe365fa scsi_esp_template +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x431d710e sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa1bf41e2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xec855ef8 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xf62abac3 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x202656d3 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3765a2ae qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x544eed53 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x62ed1989 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69f61bee qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a42e912 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ca5bfae qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6ad81da qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc0301eab qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfb90d6f qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd5033294 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe088e364 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0x0636277c raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x3b1f2a71 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x89c5eaf0 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0305797b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x095b8197 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2211d42c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27bac272 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27e993bb sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a1de994 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x361dc8bc sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b7501c2 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ea33a69 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54e5517c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65ea2b29 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c1c9f98 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ac1219b sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7adef314 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80f61843 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x819dff0e sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87240411 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x895fc3d8 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa57273d5 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7f7b348 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb230d156 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3c43cdf sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb8c0830 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd03b953e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd66c4ae5 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd90a1db1 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe03ea371 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe37fe298 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3d222d2 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x082b7de7 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2593af77 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x350e259e spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7a96ee51 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe7bdd464 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x298efc05 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6d2cf3c7 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa4389d94 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb80598dd srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdc140d4d srp_reconnect_rport +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 0x1fa48443 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1fd9df38 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2dfd140b sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x568126fb sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58c3fe42 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x616bca22 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x61a5dabc sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x70bd15aa sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x84d14fe9 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x90470b47 sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xae80ba40 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2f62237 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdd4ed460 sdw_nread +EXPORT_SYMBOL drivers/ssb/ssb 0x00a882fb ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x0659ccf4 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x0b49df72 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x0dd9e309 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x0e92b5ed ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x162b1e5f ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x1b844ddd ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x2ba17116 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x4002865f ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x4255efaa ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4e474abb ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x51723f0f ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x62dd95f3 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x63af6b19 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7efd3849 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8eae5a98 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb0d2ebeb ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe3884375 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf06385d3 ssb_device_disable +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x00c01e17 gasket_pci_add_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x1a2347b6 gasket_reset +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x1d737481 gasket_sysfs_put_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x1e3eb4cb gasket_mm_unmap_region +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x26b87a96 gasket_enable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x2eed1aa8 gasket_sysfs_get_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x329e338c gasket_get_ioctl_permissions_cb +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x33a711b9 gasket_sysfs_put_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x33d4943c gasket_sysfs_get_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3beb3dbc gasket_register_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x5e614610 gasket_disable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x616d7109 gasket_wait_with_reschedule +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x6ea69784 gasket_reset_nolock +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb788cf51 gasket_sysfs_create_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb839e7f0 gasket_pci_remove_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb9dd1d72 gasket_unregister_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xf1c913aa gasket_sysfs_register_store +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x060fed15 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09412d10 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x120df385 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14d8d55e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15e8c2ce iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19590342 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1df6362e iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29002d5c iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bdad0be iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4118685e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48660cd9 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a8984dd iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6278e113 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c96d316 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x730f3ffa iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75556da9 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a491be3 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83a3f980 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c37ff0f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8db2a8e3 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa175e41d iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa598badd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa64485ba iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9dd5bd2 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad160cf3 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0b77019 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1a0bb5a iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8a66d22 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb91ca762 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeb698c0 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc059b336 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc75cc620 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8e33b67 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca2d67c9 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbc6390e iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0b958c1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd16c33cd iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6981fc2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7c5ddc5 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9320275 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6678d1f iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9cf1bfa iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf78d82e1 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcc6decd iscsit_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00e23782 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x04109919 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f85d738 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x11208c99 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x159a93b9 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x21adfa72 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x21d569a0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x29dac5f6 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b2b3b0d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x340f82a5 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3667f53c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3810892f sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x38296b63 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f63d3c1 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4296c9ba spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x440785d4 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x46245047 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x49ba71cb core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf1595b transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f466532 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x52cdca39 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x559db48f target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x57c50ea1 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e553e05 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x64984240 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x683d109a transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a0fae2c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b4d16df target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7310f237 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7478c65c target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x776b80bb target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f049e5e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x803aee29 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x817385bf transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x81ba08af target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x82c08844 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x875bb3fc target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x914f2bf8 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x91829422 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x93d166b0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99c508db core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e4a0cc5 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e9607bd target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3aa3c4f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4c66429 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xa698a62d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xab5fff7c transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2df9d2e target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb52c3f44 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8958b32 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xba50418a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbf0fd91 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe714405 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbea0273e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2f26434 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4a0c63e target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc673c386 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7273e7e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7803185 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcff82dca transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd49d2b9a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xec20bae6 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xee5f0d53 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf338e033 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c443df target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf404aea5 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8573f31 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb39bbee target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf892be target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xff20a5ca target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfff1f889 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0efca934 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x27580da0 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x28ef99a7 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2b18e5f7 mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2c675a38 mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x43c174a0 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x48a677aa mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9812d396 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa5977c2f mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcf5a800b mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdfee43b4 mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xeba3f797 mdev_unregister_device +EXPORT_SYMBOL drivers/vhost/vhost 0x8b336d47 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xce036aac vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xcbcde04e sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2fc7128f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x4b56b3b3 sys_imageblit +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 0x034103d5 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x1a251f92 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x22bf416c fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2daaa323 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x32c7d1d8 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x368c50d0 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x388bfc26 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x41dd67c1 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4ccb14ef fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x57925f4b fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x65e1d308 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x68f635fd fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x71ec4abc fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75a32a5f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x77c89131 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x7d54f2fc __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x7ecfa2ca __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x81eb531b __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8ca5153d fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x9773c21e __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xa71c0f52 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xa8c744c7 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xacbdb4b6 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xad62dc1d __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb0eadd78 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb192d6b9 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb59b2597 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xba08894d fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xd8e9408a fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd95a5450 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xde15c9c3 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe3c91104 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe4d63599 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe707d821 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xed34e419 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xedb17784 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xf547807a __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xf59ccd1f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfcdbf386 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1329ff84 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x2825a661 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3bdfedf9 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4847baaa qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb7abd911 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xddbf94be 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 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0x94839796 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb65694d2 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0a83cc39 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2073beea lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x480bcbbc lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6a71de6d lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xba532bfa lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd40a096b lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0xb241e6a5 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xffaf9988 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x1ade94de register_snap_client +EXPORT_SYMBOL net/802/psnap 0xbe29efd8 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00ab4e2e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x0fd0aac7 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x15267c81 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1599b64a p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x181c679a p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x19c36de2 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x1be5004b p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1d69bc86 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x23f4bfd3 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2a50a43c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x2e873c3e p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35e1d5ff p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x365fabaa v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x3885b7b6 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x43a09ab2 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x4b5a4d25 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x5ba85419 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x6b756d22 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x711d2b94 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x77cc79ac v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x8271cba2 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x96b90cc0 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x99a4c817 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xac684fb5 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xaeda6425 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xb42af79e p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb7d5c61b p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf758131 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc85d2d72 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xcc3739ca v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xcec1368e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd0698625 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd52aee0e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe7671c8a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xeb628672 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xee259be3 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf3c7cd6d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf8915c27 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xfd234556 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xfee7ce8f p9_client_create +EXPORT_SYMBOL net/appletalk/appletalk 0x33d25925 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x3d6392d4 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x4e60724e aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x797a1fdb alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x1d0de321 atm_dev_lookup +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 0x627280c0 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6d2aa939 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x8dd12282 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x8f5b9bfb atm_charge +EXPORT_SYMBOL net/atm/atm 0x980d7a53 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xac33af3c vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xb785d30d deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc5afd6de atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xdba4737e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe8698fef atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf2159473 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf9a806ca atm_dev_release_vccs +EXPORT_SYMBOL net/ax25/ax25 0x03c38a99 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x0faf1a13 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1c8eb3f4 ax25_find_cb +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 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x91bd603a ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x9ba8eaa2 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x9c62ab81 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x9e8751c5 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xa8f43328 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x13440f9a ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7cfb23b6 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa51673d1 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb8a745eb ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x385eb3e8 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5f9ec34e 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 0x9f6e5029 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xb1a5922e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xcc48c527 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x18468ce8 can_proto_register +EXPORT_SYMBOL net/can/can 0x27c36dc5 can_rx_register +EXPORT_SYMBOL net/can/can 0x5ad3c8f6 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x860008fe can_proto_unregister +EXPORT_SYMBOL net/can/can 0xdd14eae0 can_send +EXPORT_SYMBOL net/can/can 0xf26efabf can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x00cc7901 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x0941428b ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x0999f451 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x0c3439eb osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0e0da55c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x175f898e ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x18fcd73f osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x19d6222e ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x1a516696 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1a9783c8 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x1bab916e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1d73c862 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x1ed6bb36 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x266c0787 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x285171bf ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2928b68a osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x29b6893e ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c49e165 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x2daef5b8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x31ec356f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x364afbb6 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a48610c ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3ccdfe52 ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3d8b1add ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x3e1170b3 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4054aa15 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x408662b6 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x43752a0d osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x44bace1b ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x4572564f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4591ae4f ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x45efa150 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4e130470 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x4e85b038 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x51eee17e ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a83eae3 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5eb1e096 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x5ef0a1de ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x60267d92 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x618cf3e6 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c5825ed ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x719aab32 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x730a2ce4 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x754e8a9b ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x760b8a8c ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7697bed6 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x76e4606d ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x7cff3677 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7d1dd14e osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7f1b6c00 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x81d57128 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x827bdd55 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x8501ad69 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x85959ebd ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8d5b078a ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8ebbdd21 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8f05c27e ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8f96c441 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x90476bd1 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x933ade44 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x93b0d5f8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x96869dcb osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c19f3fc ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9cde6311 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9eaa65ae ceph_monc_init +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 0xa33d152d ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xa378025f ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb203e799 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xb3ba2cf0 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb486ce7a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb589ab43 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb95268bc ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xb9d6ec34 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xb9d90469 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xba0273e0 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xba04aa18 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xbb8f96b1 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbdaf5bff ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xbfb0221b ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4a7fd30 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xc6a3259c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc6effc44 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xc9029eb4 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcd47d8c9 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xcfaed44b ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2c85fef ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xd98b152b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xda9c6559 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xdb7ba4ac osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xddd48d02 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfa4b68e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe568f6c6 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe8be493a ceph_monc_do_statfs +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 0xf0a4cc83 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xf0afb13d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xf1b38813 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xf2f479d1 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xfa62bfa1 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfbbd5ba4 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x27bc968b dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb6aec055 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dsa/dsa_core 0x45b61851 dsa_port_vid_add +EXPORT_SYMBOL net/dsa/dsa_core 0xe964ded2 dsa_port_vid_del +EXPORT_SYMBOL net/ieee802154/ieee802154 0x68d6aeb6 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6bbf454d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7ca02fad wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x90d146a1 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd8e250be wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe229e94e wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x60e79722 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa6c70ccb __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x301cde0b gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x320260ed arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x397ce04d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3c1cf5d2 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x67f411b9 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x054f5855 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x244edb1a ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x41d1322d ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x250b405f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe1bf1757 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2a6979cf ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x308097a6 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x46a1e7ff ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x871d4864 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa7665707 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbf5d6ed5 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd7f3bb60 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe5b2fd43 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfe91ebed ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4c759bb5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x994bb9f4 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb925832e ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4321d323 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xa1a1bd76 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3261abd5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe1fdfbea xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x316d04ff l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_core 0x9227bc49 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x39fcaf8c l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x3490f126 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x4e80cb1b lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x5db02e35 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9dcb8a62 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc0f904ef lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xc3e4236e lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe5f48a1c lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xee731ccb lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x0dbe2d56 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4b5ba0f4 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6459c072 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9a6cdb3c llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa02dec8a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xbb431ac8 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xcf03faae llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x0331b979 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0a3d709c ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x0ee0d830 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x1191e8c0 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x11ceaff9 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1378e3f9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1964479c ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1b94cc97 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1fdc2270 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x20e7cfa4 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x22eb918d ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x26e0b221 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x284214af ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x293ea4f8 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x2cc8e54f ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x346c6888 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3d1a2689 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3f5f1c2c ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x41845b4e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4241d5ab ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x42436700 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x43fbcf21 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x464839d2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x4815e97e ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x4a26f8e1 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4eb6e6db ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x52c6abd6 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x52c93f94 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5a59b0b6 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x5d661ad4 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x5e3c502a ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5f1f6753 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x5ff57448 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x6044b925 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x60d2f3f5 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x64977653 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x660ac781 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x66f6e9b1 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x67fbdb3c ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x6888f3f7 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6cb36bb8 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf66475 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6e699d03 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7201a388 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x736a2a3a ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x745b40e4 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x76b7b93f ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x7d0a31f7 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7d9158bd ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x85082a86 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x8ae69d7d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x8b1df5ea ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x8b57f4c3 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x8bf2da19 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8c1fa749 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x8ea4c3a6 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9047a57b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b141693 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x9ba42aeb ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x9cf108ca ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x9d203f5c ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9fd2a099 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa1196f4f ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xa949414e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa96ecea2 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xa98be8a3 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xa9eb183c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xab51b33a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xad7215e3 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb4428601 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb85f01bb ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb9b11383 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc46360d6 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xc4b8bee2 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc8af239c ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc8efee42 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc9467afc ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcabbac5b ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcd460bd1 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xde9ba85c ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe20e4850 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe21b2f05 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe221dd52 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe41ee3ad ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xeb030e11 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xeb452ae5 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xefabc509 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf8f5780f ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf9690b66 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfda30940 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xfdacafce __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xff2ed6b6 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac802154/mac802154 0x093842e0 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x353c5f19 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x39b4257b ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3bc2be09 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x8922b910 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa588b315 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xcaf013dd ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd1fd440e ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0edcb966 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ac68fbb ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c463bd2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x681a695e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c7907f9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a6bde86 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xab3b4aae ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xac1daa50 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb2b9caf8 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3d14198 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb409d136 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb76f8eac ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea701855 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf843b40c register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe4ad825 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa5245726 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd4fea8f4 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x257651d7 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x80f45681 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xecedb44b nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xef161477 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xfee37ad8 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x271bedb5 xt_register_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 0x6f32227d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x8a2978ad xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8a832aee xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xad20052b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc487864c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc6d50692 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xdcffc3fb xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xdde4dc56 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x06893474 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0f4449cb nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x0fc42d5d nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x1f01261e nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x205e2a9c nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x454bf56b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x62bda48f nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x78ab8fc4 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7f062ed9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8198e329 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x84dc1a00 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x94f51e8e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9e631ec8 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xa1e4ec04 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xabf85e85 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xce939fcf nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xd041108f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xd6a84bfa nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe01d1697 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xeda768f6 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf851bd7b nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1030cb15 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x10a22620 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2c395036 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x33154519 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x33f72666 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x3b87eaa9 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x465855e1 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x58ea93aa nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x63ffc7e4 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x65944289 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x698c74ea nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6b2ccef4 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x6d2163a9 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6da08e79 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x824fe88a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x8a30d634 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8eac0e06 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8f20edc2 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xa8b68e4f nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xba3b3adf nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc2976d07 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xcbcaaaec nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd15eebc1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd8d70bb1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xde2b1f8d nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe3973ee0 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe652b7f4 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf514c8f1 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf77e9e90 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x157fae4d nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x1abcee01 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x22f96746 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2804eb22 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x3e7c04cb nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4dfd4122 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x4e4402fc nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x531cef43 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x547e55bc nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x5fa0d0bc nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7b49ad9b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7cacb669 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7d6f0d99 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x80700a90 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x82d67964 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x86ddc797 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x86e9d55c nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x91a55d8a nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x9265eaf6 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb043c9d5 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xbd989aca nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xcfccfe46 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xe27766e3 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xe6fe4515 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xfd9022b6 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc_digital 0x0ff91350 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x83f5b247 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa6f51477 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf5f2bacf nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x26009be4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x430238c7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x4730dc7a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x53ad53e0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x85cce859 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9a44acd3 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xcd85bee8 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf9f86a5a pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x00698073 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07cd092d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x092b2e6c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a078b2a rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d59a8e5 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x68309616 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x683d9fde rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x732a5b26 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x97e49715 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa44209da rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa6d07cc1 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc91acfdd rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8acff50 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9836594 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed07fbd2 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xee4f38fe rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf19f02b8 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x45e3d019 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4189874b gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8977ecee gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb321fff5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc3f73d0d xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xca7a9d7f svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xffb68d20 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x3f30f7d3 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xa9c04aeb tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xb693c907 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xedbb4afc tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x23883a93 tls_get_record +EXPORT_SYMBOL net/tls/tls 0xb090f3cf tls_register_device +EXPORT_SYMBOL net/tls/tls 0xd1f8a978 tls_unregister_device +EXPORT_SYMBOL net/wireless/cfg80211 0x000a3025 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x04549a7d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x06f09c7e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0920c1c0 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11dd0a4e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x11f88fd9 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x121af7fe cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x139d153c cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15a7a715 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x16c531be cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1746676a cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1afe1907 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1bfb6567 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x21ba4269 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x228b9f2a cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x23cfc91a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2639e5da cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x26eede53 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x29bcb576 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x2cf7e1f1 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x2eabc81d cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x305015cc cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x3271e96b cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x34719169 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x368d0400 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x3abce475 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x467ae6f2 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4fc17127 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x538c3bd5 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x55690aee cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x58922865 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5bbb5f6f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x5f3ff392 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5ff8c01c cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x63ea51b7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6def8729 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6e2eef11 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x70157fcf wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7713b73c cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x77407809 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x78dd00f3 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7c558889 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x7f44a54b cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x81e3abd7 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x82feb34c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x85af9f2a cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x8761d71a ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x88422e93 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x88eaa9bd ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8efb1c33 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x912b4ee0 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x999f8f1a regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x99c691a9 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9c5ac7ee cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x9d57f33a wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9dc6d55c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa2275d05 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa28f263e cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa5c67b1d cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa9a764f0 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xaa9a7dd2 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xaaf0faf9 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xac601e3d cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xb2332801 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb68ecaa6 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb9d50b8b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbb0bcca3 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbc155ca7 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc0076fc2 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xc0b808e9 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xc8b9d8ed cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcfd68728 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd63bf0d6 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xd71594d7 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd7e1fb24 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xda337982 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xda74a5b5 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xddccc9c5 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xde0f208f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xdede5dbe __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdfe94394 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xdfed1737 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe9c4ea4a cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xeec7882d cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf0e44c65 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xf1764532 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xf2dc0896 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xf52c1f08 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6cd2558 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xf8460095 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfd88c883 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xfe1facc7 cfg80211_ibss_joined +EXPORT_SYMBOL ubuntu/hio/hio 0x08e83fb5 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x26a6bc40 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x8099c047 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x83b23c6c ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x8adcfc23 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x94a2a389 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xe5922bbe ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xee5d461b ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xf016b611 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xfa6651c4 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xfdde51e0 ssd_submit_pbio +EXPORT_SYMBOL vmlinux 0x0003a003 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x003942fd dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x005cc985 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x008680b2 of_find_backlight +EXPORT_SYMBOL vmlinux 0x0089e314 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x008a288a fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x008c7f40 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x009c0593 nf_log_register +EXPORT_SYMBOL vmlinux 0x009f8a6f tty_check_change +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00c2431d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d97f21 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x00d988a8 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x00ed777b tso_start +EXPORT_SYMBOL vmlinux 0x00f79b13 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0114ded1 phy_init_eee +EXPORT_SYMBOL vmlinux 0x0117f3b6 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x01191f54 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x01197387 blk_get_queue +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x013e9688 datagram_poll +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014d7e1b posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015e659b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x015ef389 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x0169c037 try_module_get +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0197a736 __quota_error +EXPORT_SYMBOL vmlinux 0x01986ce5 give_up_console +EXPORT_SYMBOL vmlinux 0x01a09652 page_readlink +EXPORT_SYMBOL vmlinux 0x01a35917 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b85b05 request_firmware +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01dd51c7 bio_endio +EXPORT_SYMBOL vmlinux 0x01e2dbfe dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x02065d9a disk_stack_limits +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020ac1b9 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021bffc2 pps_register_source +EXPORT_SYMBOL vmlinux 0x02203d4c generic_file_direct_write +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 0x024047c3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x024a10f9 dquot_transfer +EXPORT_SYMBOL vmlinux 0x02530c3f vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0256ac7c blk_put_request +EXPORT_SYMBOL vmlinux 0x025f7985 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x026209d1 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0274f012 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x02778bbb fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x029565e2 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02b9d10a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x02be6f61 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02dc44ce dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x02e83a8c __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03030d06 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x03179f75 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x032376b1 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033b7ec5 security_sb_remount +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0388cb48 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039876b9 key_unlink +EXPORT_SYMBOL vmlinux 0x039c74d5 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x03a6c115 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x03e31e09 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0413a109 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x041de79d mfd_add_devices +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0452f7d3 iterate_fd +EXPORT_SYMBOL vmlinux 0x04656563 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x04742f75 simple_empty +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04856a94 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048c9928 __skb_pad +EXPORT_SYMBOL vmlinux 0x04a4a87f get_tree_single +EXPORT_SYMBOL vmlinux 0x04bb6d2e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cf257d __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x04d0aeb6 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x04d801b9 pci_find_resource +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d9d3df blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f71073 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x04fdb671 arp_tbl +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0518998b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x051f399c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05334b50 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05577afc neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x05730aac kernel_write +EXPORT_SYMBOL vmlinux 0x058aca09 phy_find_first +EXPORT_SYMBOL vmlinux 0x05928995 sock_edemux +EXPORT_SYMBOL vmlinux 0x0599dd75 dma_supported +EXPORT_SYMBOL vmlinux 0x059eeff0 get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0x05a5085b inode_add_bytes +EXPORT_SYMBOL vmlinux 0x05b163cb pci_save_state +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05e8c541 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x05ed421a trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061a150a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x061e266e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064a9c1a __scm_send +EXPORT_SYMBOL vmlinux 0x0663fac3 bioset_init +EXPORT_SYMBOL vmlinux 0x066bd84f dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x068022c3 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x06949ddf dev_get_stats +EXPORT_SYMBOL vmlinux 0x06a4b6d5 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b440fc neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bdcfd4 generic_make_request +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06d7956b pnp_register_driver +EXPORT_SYMBOL vmlinux 0x06d92c77 notify_change +EXPORT_SYMBOL vmlinux 0x06e2cde1 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x070df53e genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x071cb23c amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x07242cf7 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x077bc087 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x077ee2c5 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x07846a6e netdev_update_features +EXPORT_SYMBOL vmlinux 0x0786e1f6 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x079197e4 fd_install +EXPORT_SYMBOL vmlinux 0x07964a71 padata_start +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aef010 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x07b00d7c dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x07b27289 read_cache_page +EXPORT_SYMBOL vmlinux 0x07c52d88 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07cf6eda mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080ece37 tcf_block_put +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08218bc2 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085960bc mdio_device_register +EXPORT_SYMBOL vmlinux 0x0878b785 from_kprojid +EXPORT_SYMBOL vmlinux 0x087cd453 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0885f69d agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x089b5b50 inc_nlink +EXPORT_SYMBOL vmlinux 0x08b42074 d_alloc +EXPORT_SYMBOL vmlinux 0x08e2889b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x08ea4f92 sock_init_data +EXPORT_SYMBOL vmlinux 0x08f59dac blk_integrity_register +EXPORT_SYMBOL vmlinux 0x08fe0b75 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x0915128c param_ops_ullong +EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x0917868e md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x09242f0b ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x092432ec vc_cons +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093988b7 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache +EXPORT_SYMBOL vmlinux 0x0944c43f node_states +EXPORT_SYMBOL vmlinux 0x0956ee8e rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09682235 down_timeout +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097b1518 default_llseek +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c8522 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x09b05a70 netdev_change_features +EXPORT_SYMBOL vmlinux 0x09c3f1fd kill_bdev +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e6e312 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a141401 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0a16bf2e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x0a1a944d iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a210345 netif_device_detach +EXPORT_SYMBOL vmlinux 0x0a259239 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2cc967 get_cached_acl +EXPORT_SYMBOL vmlinux 0x0a3712e8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x0a532473 config_group_find_item +EXPORT_SYMBOL vmlinux 0x0a61c51e sget +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7b128c __sb_end_write +EXPORT_SYMBOL vmlinux 0x0a97b7d8 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aad4293 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x0ab594d9 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x0ac41781 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x0aeef751 sget_fc +EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible +EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 +EXPORT_SYMBOL vmlinux 0x0b15bdda blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x0b190044 tcp_get_md5sig_pool +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 0x0b409f7f ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x0b566034 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b9644cb pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x0b9fefa0 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x0ba21a7f bmap +EXPORT_SYMBOL vmlinux 0x0ba83581 dev_addr_init +EXPORT_SYMBOL vmlinux 0x0bc06cc7 pci_release_region +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc5b3d8 proto_register +EXPORT_SYMBOL vmlinux 0x0bffb413 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c1522cb seq_dentry +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c45b965 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x0c558c75 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x0c6668b6 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6c23d7 pci_set_master +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c7bbf99 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x0c9227e9 phy_device_register +EXPORT_SYMBOL vmlinux 0x0ca43067 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0ca7f768 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccc688c iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d102754 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0d26f0bc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x0d3742ac fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d545454 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x0d5bc68d unlock_new_inode +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d74c304 genphy_update_link +EXPORT_SYMBOL vmlinux 0x0da723ad misc_deregister +EXPORT_SYMBOL vmlinux 0x0daedb5a pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x0dec1f8c fs_lookup_param +EXPORT_SYMBOL vmlinux 0x0e15ea58 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e17c230 netdev_printk +EXPORT_SYMBOL vmlinux 0x0e1f7f46 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0e203e92 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e3ceed8 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e4a8f1a sock_create +EXPORT_SYMBOL vmlinux 0x0e4e707b linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x0e693064 file_open_root +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e9a63d1 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x0ea62904 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0edc9c86 finish_no_open +EXPORT_SYMBOL vmlinux 0x0ef66ccb xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0efe20bf acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1cf6ce xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f3e6f84 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc5b4fc udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0fca2a21 textsearch_register +EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x0fd5c023 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe9d2ce PageMovable +EXPORT_SYMBOL vmlinux 0x0ff025d0 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0ff9de82 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x0ffd3009 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100723bc phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x101d7916 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x10232677 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x1028dba0 bio_advance +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103c8baa config_group_init +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106dce0f dev_change_flags +EXPORT_SYMBOL vmlinux 0x106f42ca tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1086a13a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x109a0f71 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x10b71b85 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10c79936 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10da502c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110fa289 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x111d0f80 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x112874b6 eth_header_cache +EXPORT_SYMBOL vmlinux 0x1133b453 ata_link_printk +EXPORT_SYMBOL vmlinux 0x114b9326 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x116086cb vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119bb64a netdev_emerg +EXPORT_SYMBOL vmlinux 0x11aae863 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x11adcf13 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x11af5650 vfs_create +EXPORT_SYMBOL vmlinux 0x11c5b9d5 import_iovec +EXPORT_SYMBOL vmlinux 0x11ca7d03 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x12012822 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120e3c20 seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x1210772f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x121d7cda jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x122146f5 pci_bus_type +EXPORT_SYMBOL vmlinux 0x1256bf94 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x12914775 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x129c8842 inode_set_flags +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b46137 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x12bc90e2 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f51461 drop_nlink +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe6325 skb_copy_header +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x13123e48 vfs_rename +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x1349c7d0 d_set_d_op +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x135c494c path_nosuid +EXPORT_SYMBOL vmlinux 0x1369c1af phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x138065d4 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x139d1d07 skb_pull +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fa483f __destroy_inode +EXPORT_SYMBOL vmlinux 0x140dcfc2 skb_copy +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x143979d3 fc_block_rport +EXPORT_SYMBOL vmlinux 0x14415c6e locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x1446fa19 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1466d002 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x146ab755 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x147a954a loop_register_transfer +EXPORT_SYMBOL vmlinux 0x1481bfce kset_register +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x14a78363 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c28d5a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14f215f0 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x14f86051 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x1504c564 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x151500bf pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x15240ad1 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1527c014 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x153ca2f6 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x153fca64 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x154054b5 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x154a03e9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15962275 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x1597c093 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x15a61b07 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c00465 passthru_features_check +EXPORT_SYMBOL vmlinux 0x15c2b390 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x15c30262 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15c99e0c nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x15de8caa clk_get +EXPORT_SYMBOL vmlinux 0x15fcb6c8 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x15fe857b set_user_nice +EXPORT_SYMBOL vmlinux 0x160383a5 pci_release_resource +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x164846e5 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x164e57b1 pv_ops +EXPORT_SYMBOL vmlinux 0x164e7fcf input_reset_device +EXPORT_SYMBOL vmlinux 0x165ddebd ptp_clock_register +EXPORT_SYMBOL vmlinux 0x1661ce6a tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x166355a5 dev_set_alias +EXPORT_SYMBOL vmlinux 0x1663603d nobh_writepage +EXPORT_SYMBOL vmlinux 0x167834de tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168fe5b2 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x169133f6 simple_write_begin +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a10316 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x16a5e500 param_set_uint +EXPORT_SYMBOL vmlinux 0x16b40637 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x16ba3f53 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x16c2bc3b dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x16c5f81a devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d2b7e1 input_get_keycode +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f1b158 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x17032bbf serio_unregister_port +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x175268af __alloc_skb +EXPORT_SYMBOL vmlinux 0x17572de6 sk_wait_data +EXPORT_SYMBOL vmlinux 0x175c800f fc_vport_terminate +EXPORT_SYMBOL vmlinux 0x175d3ca3 d_find_alias +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1760ca7e frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x1793a3f7 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17c1972f km_query +EXPORT_SYMBOL vmlinux 0x17d19b4b netif_carrier_off +EXPORT_SYMBOL vmlinux 0x17daaeca pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x17df88df crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x17f06f40 vfs_mknod +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f85897 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x17feaf88 blkdev_put +EXPORT_SYMBOL vmlinux 0x18119790 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x181ffe71 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x188214bf jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x18889de9 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x188c7406 nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189ccbfe pci_claim_resource +EXPORT_SYMBOL vmlinux 0x18a7c602 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b8dc3c __kernel_write +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f30423 vme_bus_type +EXPORT_SYMBOL vmlinux 0x19065600 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x19115167 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x192ea99b request_key_rcu +EXPORT_SYMBOL vmlinux 0x1946bca3 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x195abbff fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x195eb322 blk_get_request +EXPORT_SYMBOL vmlinux 0x196fb496 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x19947c8e pci_iomap +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199ff059 revalidate_disk +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19e45b59 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x19fbab28 set_pages_uc +EXPORT_SYMBOL vmlinux 0x1a0ba189 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4e5840 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1a4f232e pci_find_capability +EXPORT_SYMBOL vmlinux 0x1a50a75c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a64f820 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x1a733274 input_allocate_device +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a964c52 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa24a81 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad1b597 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x1adcc344 scsi_host_get +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0fc478 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5d8e8c mdiobus_free +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7cad71 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x1b828c87 netif_skb_features +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbc2d4b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bda7dfd __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1bf68332 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x1c1b36e0 config_item_get +EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1c1e36e4 inet_addr_type +EXPORT_SYMBOL vmlinux 0x1c1ebd05 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x1c2edc4e xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c48f6a3 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x1c512da7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x1c522c53 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x1c535810 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c595f5a mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x1c74a3e8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x1ca66876 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cca732b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1d04d4ba dm_io +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1e29c5 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d286d00 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d36ccc2 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x1d3f72ec __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d44caae devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x1d486ce7 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x1d626eed ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0x1d67525b path_has_submounts +EXPORT_SYMBOL vmlinux 0x1d7546f7 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x1da17b29 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbe31bd __getblk_gfp +EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de7a98d vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e185595 udp_prot +EXPORT_SYMBOL vmlinux 0x1e1cebfb setup_arg_pages +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e4653c5 lease_modify +EXPORT_SYMBOL vmlinux 0x1e4d11ec nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e63db7b bdev_read_only +EXPORT_SYMBOL vmlinux 0x1e648eb9 unregister_netdev +EXPORT_SYMBOL vmlinux 0x1e674de3 con_is_visible +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e72f2a6 simple_lookup +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb13602 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ecfcd86 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f0dd8ba scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x1f1e733e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x1f4e7879 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x1f63967f fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x1f78ee59 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1f811dd7 phy_suspend +EXPORT_SYMBOL vmlinux 0x1f94eaf1 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x1f9e15c2 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x1fa3f705 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x1fae72c4 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fc893b9 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200132f9 ppp_input_error +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2011adab tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x201fdf43 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x20331f3b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204edab4 __inet_hash +EXPORT_SYMBOL vmlinux 0x20537246 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x2058034f __put_cred +EXPORT_SYMBOL vmlinux 0x205dd61f tcf_idr_create +EXPORT_SYMBOL vmlinux 0x206a58ef mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208944a7 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x2098b6ff fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x209c07da inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x20a47123 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20c4262e scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d93c0b mr_table_alloc +EXPORT_SYMBOL vmlinux 0x20e6bfc7 sock_no_connect +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21130d48 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x211ece28 set_device_ro +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21409e82 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x214d2e7a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x2171fbf5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x21764b19 edac_mc_find +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x217f8635 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21ae0a5d mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x21b4a9aa dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d04296 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ecafa5 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x21f3758c phy_attached_info +EXPORT_SYMBOL vmlinux 0x21ff1e25 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x2215a1d1 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234b4c3 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224edc79 param_set_ushort +EXPORT_SYMBOL vmlinux 0x22631758 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227b1718 tboot +EXPORT_SYMBOL vmlinux 0x22951fa4 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x229ea141 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x22aef0bb sock_wfree +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c7c9f8 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x22cccc72 dquot_release +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22def73d filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x233491c6 touch_atime +EXPORT_SYMBOL vmlinux 0x233616f3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x23623455 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2364da19 key_validate +EXPORT_SYMBOL vmlinux 0x23713c5f block_write_begin +EXPORT_SYMBOL vmlinux 0x23759604 is_nd_dax +EXPORT_SYMBOL vmlinux 0x2377a00b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2384e0f1 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23979711 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x2398f668 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x23991817 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x23b0b0ed mdiobus_read +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23d30ea2 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e3fe66 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24094e4b input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x2420080d md_error +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24223404 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x243e67a4 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244f591d get_acl +EXPORT_SYMBOL vmlinux 0x24562617 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246e061f seq_open +EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2488e8da pci_reenable_device +EXPORT_SYMBOL vmlinux 0x248af34a skb_put +EXPORT_SYMBOL vmlinux 0x249b4dd1 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x24bcb5a3 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x24cabb5d kernel_read +EXPORT_SYMBOL vmlinux 0x24cb94e6 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d85272 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x24e9a8a3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x24fe62d1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x250141e9 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x250e5e84 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25663690 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2575c17a dquot_scan_active +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259476b9 fqdir_init +EXPORT_SYMBOL vmlinux 0x25979e28 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x25b433e7 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x25d20071 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x25d32265 d_delete +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260d4298 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2621b6a2 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x26356d8f flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x2650f450 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x266d3d43 seq_path +EXPORT_SYMBOL vmlinux 0x267f299f ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26a00ace phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x26b2b988 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x26c25280 input_free_device +EXPORT_SYMBOL vmlinux 0x26c96c0c iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states +EXPORT_SYMBOL vmlinux 0x26d830a9 put_user_pages +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ecbd3a neigh_table_clear +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2707d8a0 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2720655c __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273cd745 agp_backend_release +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27715274 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277595f8 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x2775be45 generic_cont_expand_simple +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 0x2786b21b nd_device_unregister +EXPORT_SYMBOL vmlinux 0x279777d1 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c0d72e page_mapped +EXPORT_SYMBOL vmlinux 0x27c4212b netlink_unicast +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e409f2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x28011c58 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x2807857a inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x2809ef8f fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28247f68 skb_unlink +EXPORT_SYMBOL vmlinux 0x283ce208 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x283ee9a9 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0x28424cf0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x28624945 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287907a2 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x28883c2e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x28910fcd netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x28cbbca8 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x290e32c3 __bread_gfp +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29361773 complete +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x295c2f58 inode_permission +EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert +EXPORT_SYMBOL vmlinux 0x296e6805 set_nlink +EXPORT_SYMBOL vmlinux 0x29741f89 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2978de89 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x29a30065 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29d19852 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29fc42dc fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x2a09043d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2a120343 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2a183de6 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a370a05 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2a5a99b6 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x2a6cce1f config_item_set_name +EXPORT_SYMBOL vmlinux 0x2a77fa09 icmp6_send +EXPORT_SYMBOL vmlinux 0x2a7a7c8f iget_locked +EXPORT_SYMBOL vmlinux 0x2a85fd81 mpage_writepage +EXPORT_SYMBOL vmlinux 0x2a919be0 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock +EXPORT_SYMBOL vmlinux 0x2ad06e39 fc_host_post_event +EXPORT_SYMBOL vmlinux 0x2ae0933a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2ae5d498 generic_fadvise +EXPORT_SYMBOL vmlinux 0x2aed17c2 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x2af99d3e cfb_imageblit +EXPORT_SYMBOL vmlinux 0x2afca59e from_kgid +EXPORT_SYMBOL vmlinux 0x2b0192fd padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x2b0b02fd file_path +EXPORT_SYMBOL vmlinux 0x2b2a2611 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x2b4fd4b5 kernel_accept +EXPORT_SYMBOL vmlinux 0x2b553982 get_task_cred +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b7b02a6 module_layout +EXPORT_SYMBOL vmlinux 0x2b95515a xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba5e00f param_array_ops +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb7a3c3 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2bb7fd26 tty_name +EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be48990 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x2bef5b1c send_sig_info +EXPORT_SYMBOL vmlinux 0x2bf5bb46 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2c10f245 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c5109cd fqdir_exit +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5d49a8 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2c6f5bf4 dst_discard_out +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2ca56ac8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x2caac47e cdev_add +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 0x2cf1ec63 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x2cf41c3b __f_setown +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d24d4e2 follow_up +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d369eee file_ns_capable +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d559228 __register_nls +EXPORT_SYMBOL vmlinux 0x2d5d79a9 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d6715da neigh_event_ns +EXPORT_SYMBOL vmlinux 0x2d71267d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2d737f9b amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x2d76e48f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x2d89feff tty_vhangup +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2dbd7e0f dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x2dd099ff devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd49d53 d_alloc_name +EXPORT_SYMBOL vmlinux 0x2dd8e78b bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df27193 md_done_sync +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e222842 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3a8e9b generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x2e3ce71b mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x2e40cf6e __close_fd_get_file +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4d6f7b pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x2ec1cde4 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eef8428 bio_uninit +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0ff238 phy_start +EXPORT_SYMBOL vmlinux 0x2f150182 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x2f1767aa sock_i_uid +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f358836 make_kprojid +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f5a4334 genphy_suspend +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f793c34 serio_open +EXPORT_SYMBOL vmlinux 0x2f9cc90b simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2f9e337e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x2fb58841 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x2fbd0357 simple_readpage +EXPORT_SYMBOL vmlinux 0x2fc10586 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2fcf511f simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2fd485b1 param_get_invbool +EXPORT_SYMBOL vmlinux 0x2fd518c5 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe52733 __napi_schedule +EXPORT_SYMBOL vmlinux 0x2ffb5524 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x2ffbe321 logfc +EXPORT_SYMBOL vmlinux 0x30054a54 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x301522a3 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x302a1a53 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x305b0de6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x30837d85 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0x3094ae66 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1a83c dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310e2017 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x311c741c ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312a625b eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31470c93 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x317b5036 tcf_register_action +EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked +EXPORT_SYMBOL vmlinux 0x31921716 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3199d24b __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31d28e02 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3202b970 tty_port_open +EXPORT_SYMBOL vmlinux 0x3202f16f mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x3249261a mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x325a07d9 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x32604abc pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3289e4cb skb_free_datagram +EXPORT_SYMBOL vmlinux 0x328ab122 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x328cf857 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x32a732c6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d17cb1 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32efd7fd sync_filesystem +EXPORT_SYMBOL vmlinux 0x32fd7c28 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3304741c ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332a3907 flush_signals +EXPORT_SYMBOL vmlinux 0x333ab4ec xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x334d8c6b simple_pin_fs +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33749121 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x3374f16d compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x33796f79 md_handle_request +EXPORT_SYMBOL vmlinux 0x338fdbe3 genl_notify +EXPORT_SYMBOL vmlinux 0x33aac124 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x33b1a9d3 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bcd21f dcache_dir_open +EXPORT_SYMBOL vmlinux 0x33e98dc2 set_bh_page +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 0x34064513 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x344c0d75 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x345c26ef scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x34645280 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x346e42b0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348bfd5f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34bf49c2 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x34e63f90 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3504ddab devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35222396 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x3524f595 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x352dd4ec put_ipc_ns +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x358d45d9 security_sk_clone +EXPORT_SYMBOL vmlinux 0x35957f87 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c651df dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x35c73a91 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x35d03041 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x35d7616a security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x35d7d530 tty_set_operations +EXPORT_SYMBOL vmlinux 0x35e5f325 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x360508c5 dev_deactivate +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362c6225 pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x36334d4a fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x363b9885 soft_cursor +EXPORT_SYMBOL vmlinux 0x36400b88 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36688919 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x366c731d lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x366ff383 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x368d3650 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x369fc664 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x36ba92b7 netif_device_attach +EXPORT_SYMBOL vmlinux 0x36bde6d7 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x36c9dadf sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x36dd3a63 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x36e1fb58 rio_query_mport +EXPORT_SYMBOL vmlinux 0x3700fcda simple_nosetlease +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37279f6d dma_sync_wait +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x373ac361 peernet2id +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x3761607c pcim_enable_device +EXPORT_SYMBOL vmlinux 0x37630c32 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x377166a2 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x377f2170 __frontswap_store +EXPORT_SYMBOL vmlinux 0x3788531c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x37a5e1cf genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b5150c netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d4af77 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x37d6aae5 put_disk_and_module +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37df2001 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x37ea5dc1 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x37f29ece d_lookup +EXPORT_SYMBOL vmlinux 0x37f6dcf9 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x37f9ed11 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x380932b0 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382c68ae tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3842bbee seq_puts +EXPORT_SYMBOL vmlinux 0x384598a9 proto_unregister +EXPORT_SYMBOL vmlinux 0x384bdd3d genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x3854f8e1 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x38606643 __skb_checksum +EXPORT_SYMBOL vmlinux 0x387d0595 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388fb34b dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38986cca unregister_binfmt +EXPORT_SYMBOL vmlinux 0x389d3193 amd_iommu_rlookup_table +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c2e515 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x38cc729c device_get_mac_address +EXPORT_SYMBOL vmlinux 0x38dbdfce neigh_seq_next +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38efb5f6 filp_open +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x3908dbe8 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x390a9691 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x390b763a skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x391912d1 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x392206cb xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x395208c5 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3957fd4a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x39838b92 vme_slave_request +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b6e05f __check_sticky +EXPORT_SYMBOL vmlinux 0x39b85d5e sg_miter_stop +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e5413e submit_bio_wait +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a0d242e page_get_link +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2bf9b1 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x3a2c0282 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a48409f hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a80042e __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x3a8fb89d __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x3a93039d keyring_search +EXPORT_SYMBOL vmlinux 0x3a953e41 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3a9ee392 pci_restore_state +EXPORT_SYMBOL vmlinux 0x3aa97366 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x3ab25849 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x3ab3bba8 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac12ee9 dst_dev_put +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b033d73 get_gendisk +EXPORT_SYMBOL vmlinux 0x3b091626 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b4bf2a8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b793fae sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b85caf4 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x3b8e6353 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bc1e84a key_move +EXPORT_SYMBOL vmlinux 0x3bca16bb xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c047b2d compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x3c15c710 vga_con +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c26071f nf_log_unset +EXPORT_SYMBOL vmlinux 0x3c2a0b14 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x3c2c9cce vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x3c33364c nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0x3c522c14 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9b062d build_skb_around +EXPORT_SYMBOL vmlinux 0x3ca774a6 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3cab5719 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3cbc64ae __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x3cc98e37 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3cca85c4 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3cdb503a ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x3ce4c921 dst_alloc +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce7ddeb md_register_thread +EXPORT_SYMBOL vmlinux 0x3cf60994 consume_skb +EXPORT_SYMBOL vmlinux 0x3d001735 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0dbeac no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d282b81 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x3d28fbf5 dev_trans_start +EXPORT_SYMBOL vmlinux 0x3d4f3847 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5acc50 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x3d602ba1 pci_release_regions +EXPORT_SYMBOL vmlinux 0x3d623e16 set_page_dirty +EXPORT_SYMBOL vmlinux 0x3d83479e tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x3d9246f0 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc6360a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd4c0b7 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3dec0f48 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x3df4f5a6 scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e052fdf __kfree_skb +EXPORT_SYMBOL vmlinux 0x3e05ba70 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x3e10e8a0 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x3e29b21e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e4d9489 ip_frag_next +EXPORT_SYMBOL vmlinux 0x3e50400e ata_port_printk +EXPORT_SYMBOL vmlinux 0x3e53916a __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x3e5bddc5 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x3e6a1173 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3e6ab978 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x3e8025ea kernel_param_lock +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3eac19cf pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x3eb578ca dev_activate +EXPORT_SYMBOL vmlinux 0x3ec030c8 param_ops_int +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efe3a76 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f195f23 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x3f1e25bb seq_write +EXPORT_SYMBOL vmlinux 0x3f3f3629 ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x3f41cf2c bio_free_pages +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4a2fa7 phy_driver_register +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f673e65 ipv4_specific +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f98a53d hmm_range_register +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fbf9b4f path_is_under +EXPORT_SYMBOL vmlinux 0x3fd2f9a2 add_to_pipe +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe9de67 fc_remote_port_add +EXPORT_SYMBOL vmlinux 0x3fee3319 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x3ffd8dfe dquot_quota_on +EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x4024ef91 eth_type_trans +EXPORT_SYMBOL vmlinux 0x402a5122 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x402f5ac1 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4031fdaf blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x403f05ff dquot_disable +EXPORT_SYMBOL vmlinux 0x403ffa05 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x4069e72d put_fs_context +EXPORT_SYMBOL vmlinux 0x40850361 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock +EXPORT_SYMBOL vmlinux 0x40a921cd filp_close +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adf825 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x4123d896 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415cbe64 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x4176a0b0 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x417cf577 generic_listxattr +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41908a62 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x41a0bae9 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x41a6e31c try_to_release_page +EXPORT_SYMBOL vmlinux 0x41b7a2f2 dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x41caa204 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x41cc94c3 inet_select_addr +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f76513 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42399666 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x423a2d89 udp_set_csum +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424e7c36 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x42513aec netlink_capable +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4262bdf8 lookup_one_len +EXPORT_SYMBOL vmlinux 0x42794b20 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x4287986d fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x42b6852f __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x42bb90ad blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c6f5f1 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x42d26a5c try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x42d4d0f3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430a3d18 unlock_buffer +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43375521 generic_update_time +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x433d2359 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x433f72a2 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x434c6693 iget_failed +EXPORT_SYMBOL vmlinux 0x434f164e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437fea40 phy_attached_print +EXPORT_SYMBOL vmlinux 0x438144be secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438ca5e0 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x43927b2d input_close_device +EXPORT_SYMBOL vmlinux 0x43ab3f65 simple_setattr +EXPORT_SYMBOL vmlinux 0x43bcbe6f xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x43c84a5f migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x43d37605 is_bad_inode +EXPORT_SYMBOL vmlinux 0x43edcaaa ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x440e6451 inet_frag_find +EXPORT_SYMBOL vmlinux 0x44114e7c agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x4429867d fb_find_mode +EXPORT_SYMBOL vmlinux 0x44312c50 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x44324c4f kthread_create_worker +EXPORT_SYMBOL vmlinux 0x443e7b24 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data +EXPORT_SYMBOL vmlinux 0x445d402b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x445db4e3 fb_show_logo +EXPORT_SYMBOL vmlinux 0x44765e84 d_invalidate +EXPORT_SYMBOL vmlinux 0x44802f1e flush_old_exec +EXPORT_SYMBOL vmlinux 0x448e37fd padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x448ecad5 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a3b529 poll_initwait +EXPORT_SYMBOL vmlinux 0x44a62f6b dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44bd7059 devm_release_resource +EXPORT_SYMBOL vmlinux 0x44da93d7 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x44e4f0e1 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x45563872 phy_stop +EXPORT_SYMBOL vmlinux 0x455cb159 napi_disable +EXPORT_SYMBOL vmlinux 0x4577bca3 key_type_keyring +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458e91f9 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x45a335b0 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x45abfa61 touch_buffer +EXPORT_SYMBOL vmlinux 0x45ae1ab9 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x45cd895f nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45dd6f03 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45ede710 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x45f60e6c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x46108fd8 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x46344c3e tty_hangup +EXPORT_SYMBOL vmlinux 0x4634f19d nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x4643e831 pci_dev_put +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4662273b drop_super +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467a4798 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c9a4c device_add_disk +EXPORT_SYMBOL vmlinux 0x46973cf4 set_anon_super +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a35e68 inode_insert5 +EXPORT_SYMBOL vmlinux 0x46b49bcf current_time +EXPORT_SYMBOL vmlinux 0x46b9e7df phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46fe2b24 scmd_printk +EXPORT_SYMBOL vmlinux 0x4713361b __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x471d260e get_vm_area +EXPORT_SYMBOL vmlinux 0x4725a137 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x472ee7c4 ppp_input +EXPORT_SYMBOL vmlinux 0x4734bbd9 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x474cf8f0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47923632 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479a57de mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a42e85 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw +EXPORT_SYMBOL vmlinux 0x47c56aa8 inet6_bind +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47d021a7 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x47d1b479 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x47d38a05 dst_init +EXPORT_SYMBOL vmlinux 0x47d97b68 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x47e91811 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4831c29e xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4846bc50 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4854a8c8 agp_free_memory +EXPORT_SYMBOL vmlinux 0x4857788d pps_unregister_source +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4865f927 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x4866f6b4 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x488e58ed pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x489b766c file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48adf422 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x48b1b92f jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x48b21c33 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c3a550 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x48c4487f msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x48d11fa2 vfs_llseek +EXPORT_SYMBOL vmlinux 0x48d50ab8 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e87b91 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x48ea3dca dev_printk +EXPORT_SYMBOL vmlinux 0x49001a9b param_get_string +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490b5410 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4914d441 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x49243278 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x4948c47a padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x497bd8df input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4980d418 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a1c5b6 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b4f0a8 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x49da423e open_with_fake_path +EXPORT_SYMBOL vmlinux 0x49de7c40 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x49e1b328 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x4a062392 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4a2232f8 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4a362fa0 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x4a38cbbf tty_port_close_end +EXPORT_SYMBOL vmlinux 0x4a3d2cab hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4a436aad io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a4db14d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4a76d36d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4a844809 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x4a90e143 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4a917576 set_blocksize +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ac1c1b5 audit_log +EXPORT_SYMBOL vmlinux 0x4aca0fa1 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x4acce8ef mdio_device_create +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b070be1 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b22b3a1 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x4b3b8699 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x4b412f9b invalidate_partition +EXPORT_SYMBOL vmlinux 0x4b4416d0 get_fs_type +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b4d7a82 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6631d7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4b6e4cdd vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0x4b728e67 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x4b862694 do_splice_direct +EXPORT_SYMBOL vmlinux 0x4bae1bea block_read_full_page +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bee9ebc security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf8f409 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4bfd44db dentry_open +EXPORT_SYMBOL vmlinux 0x4bfda080 param_ops_byte +EXPORT_SYMBOL vmlinux 0x4c024433 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0f5e12 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x4c14d191 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4c3098d8 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x4c315cc1 scsi_device_put +EXPORT_SYMBOL vmlinux 0x4c3839ec __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c6af674 seq_file_path +EXPORT_SYMBOL vmlinux 0x4c719b77 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x4c8a9208 unlock_rename +EXPORT_SYMBOL vmlinux 0x4c92ae0c lock_sock_fast +EXPORT_SYMBOL vmlinux 0x4c934fc8 f_setown +EXPORT_SYMBOL vmlinux 0x4c948762 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x4c9abb46 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4caf770d kill_anon_super +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cdf6b44 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x4cf223d6 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x4d06d6a6 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x4d146a53 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d40862f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x4d41faec fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d806d8e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4d86aa9b __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db421dd default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4db4ea2c md_check_recovery +EXPORT_SYMBOL vmlinux 0x4dbe7668 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dde4d0c bdi_register +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7ccf67 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x4e82f87e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea7f616 inet6_protos +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4edc7bf0 __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x4f18063a igrab +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f78b73d compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x4f88a3f2 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x4f98408a search_binary_handler +EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4fc598b5 elevator_alloc +EXPORT_SYMBOL vmlinux 0x4fca9d75 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fea810b dquot_destroy +EXPORT_SYMBOL vmlinux 0x4feb8c5e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4ffd431f param_get_int +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x50174a8c arp_send +EXPORT_SYMBOL vmlinux 0x501a02d9 skb_seq_read +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5032f345 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x5038bedd tcf_em_register +EXPORT_SYMBOL vmlinux 0x503bde17 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x503cb3bd simple_dir_operations +EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50795320 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x50816e11 framebuffer_release +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50aadec6 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50ba1d9d d_genocide +EXPORT_SYMBOL vmlinux 0x50bde62a d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c68692 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50df5fd4 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x51019d5b udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x5106bdb1 dquot_drop +EXPORT_SYMBOL vmlinux 0x513446cb iov_iter_npages +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515337c7 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51720d4f icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x5172f127 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5178022d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x5192cd0d sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x51968265 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f6acbf intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x5216d344 misc_register +EXPORT_SYMBOL vmlinux 0x5225fbef md_flush_request +EXPORT_SYMBOL vmlinux 0x522aa018 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x522d6aa2 simple_link +EXPORT_SYMBOL vmlinux 0x5235c1cf devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x52486ba0 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x524cf817 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52768328 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x527e73f8 scsi_print_command +EXPORT_SYMBOL vmlinux 0x5294b449 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529f983b tcp_init_sock +EXPORT_SYMBOL vmlinux 0x52ac80da set_wb_congested +EXPORT_SYMBOL vmlinux 0x52c840fa udp_seq_ops +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d8e588 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x530912d2 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530ea1e3 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x533c5b0a inet_accept +EXPORT_SYMBOL vmlinux 0x534a8930 setup_new_exec +EXPORT_SYMBOL vmlinux 0x534fee08 tso_build_data +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535fb606 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x5375b198 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x5377dd4d scsi_print_result +EXPORT_SYMBOL vmlinux 0x5389b7cf scsi_device_get +EXPORT_SYMBOL vmlinux 0x538df63c jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x53942d2d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x539d56f6 vme_lm_request +EXPORT_SYMBOL vmlinux 0x53aa9f37 amd_iommu_pc_get_reg +EXPORT_SYMBOL vmlinux 0x53ac9fbf ptp_clock_event +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d2105b mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x53eb3ee9 netif_rx +EXPORT_SYMBOL vmlinux 0x53f88429 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x5406e539 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x54156a51 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x54168eea nd_btt_probe +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542d4b3c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5447b5ed __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5477816c param_get_long +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x548e84fb pnp_is_active +EXPORT_SYMBOL vmlinux 0x548ece6a dev_uc_init +EXPORT_SYMBOL vmlinux 0x54a1c975 skb_dequeue +EXPORT_SYMBOL vmlinux 0x54a21e74 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c01791 follow_pfn +EXPORT_SYMBOL vmlinux 0x54c8b39c simple_transaction_read +EXPORT_SYMBOL vmlinux 0x54e4133c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f0ddad netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551213de lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552dbca5 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x553cd811 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x55679553 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556be48b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x558418ef uart_match_port +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x5591ad88 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x5598aa07 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x55b53579 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x55bb00ff cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x55c78090 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f78115 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5651d1eb nd_integrity_init +EXPORT_SYMBOL vmlinux 0x5656935e param_ops_charp +EXPORT_SYMBOL vmlinux 0x56574ad2 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x565c8d61 phy_disconnect +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56837281 inet_release +EXPORT_SYMBOL vmlinux 0x56843354 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x568eaf51 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x56b08673 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x56b8cc82 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x56c1431b dev_mc_del +EXPORT_SYMBOL vmlinux 0x56c50687 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ea8afe input_set_timestamp +EXPORT_SYMBOL vmlinux 0x56f36eb3 param_set_invbool +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x570f96ca mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x571e7fc9 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x571ee6de ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x5739d1b9 key_link +EXPORT_SYMBOL vmlinux 0x57408735 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5751530f __SetPageMovable +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a1588f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bfbf71 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x57d73e72 param_get_ullong +EXPORT_SYMBOL vmlinux 0x57eb47cd tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x57ee3e20 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x57fc4f91 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x5804fecd devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x580d377b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x5816b8d8 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583c462f amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x58459fda jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5864bc03 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x58a6d2b5 __sb_start_write +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f1e938 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x58f541c2 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x591ca7da unregister_filesystem +EXPORT_SYMBOL vmlinux 0x592bbb82 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x5931f969 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x59395a99 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x593f72e4 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x595f225e __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x596c206f vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl +EXPORT_SYMBOL vmlinux 0x598cf2a9 param_ops_bint +EXPORT_SYMBOL vmlinux 0x59937cc8 sock_no_accept +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b123b3 param_set_short +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b84910 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x59d6818d fc_vport_create +EXPORT_SYMBOL vmlinux 0x59e1c6c5 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a11966b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a71b41a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a9191cc dev_change_carrier +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a932f0c register_shrinker +EXPORT_SYMBOL vmlinux 0x5aaa8c55 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x5ac0795f mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x5acbb38f xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x5adc29af __udp_disconnect +EXPORT_SYMBOL vmlinux 0x5aee1854 stop_tty +EXPORT_SYMBOL vmlinux 0x5b0a0e1c __find_get_block +EXPORT_SYMBOL vmlinux 0x5b0ca27b param_get_short +EXPORT_SYMBOL vmlinux 0x5b0f4155 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5b1a194c devm_clk_put +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b4958e8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a636a remove_arg_zero +EXPORT_SYMBOL vmlinux 0x5b636f2f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5b9bea87 skb_trim +EXPORT_SYMBOL vmlinux 0x5bb7ed4a tso_count_descs +EXPORT_SYMBOL vmlinux 0x5bbb6b06 to_ndd +EXPORT_SYMBOL vmlinux 0x5bc473d1 input_match_device_id +EXPORT_SYMBOL vmlinux 0x5bc68d77 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x5bc77e88 dump_emit +EXPORT_SYMBOL vmlinux 0x5bdf5e57 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x5be5c4ce devm_iounmap +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf75b7b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x5c02697d truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5c150a34 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x5c2285d9 rtc_add_group +EXPORT_SYMBOL vmlinux 0x5c31a742 to_nd_dax +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c500812 register_quota_format +EXPORT_SYMBOL vmlinux 0x5c5cff78 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x5c75d0af tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5c77f168 fb_blank +EXPORT_SYMBOL vmlinux 0x5c8961bc __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x5cd5b864 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5cdf42ec md_reload_sb +EXPORT_SYMBOL vmlinux 0x5ce18dbe qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x5cef647f from_kuid +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfd20cb vfs_fadvise +EXPORT_SYMBOL vmlinux 0x5d24d844 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4ed23e unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x5d7c53e2 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x5dc43846 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x5dce16b4 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x5dd051a7 tty_throttle +EXPORT_SYMBOL vmlinux 0x5ddb198b locks_remove_posix +EXPORT_SYMBOL vmlinux 0x5ddb66e8 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x5de5f74a md_unregister_thread +EXPORT_SYMBOL vmlinux 0x5dfb97f4 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5dfcb7bb generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e083afb jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3d9fbe device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e665467 seq_read +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e7300e3 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e80881d hmm_range_unregister +EXPORT_SYMBOL vmlinux 0x5e84a828 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e90e8c9 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea73201 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x5ead6817 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec74c5d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef6c50d mount_single +EXPORT_SYMBOL vmlinux 0x5ef858c7 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x5efdbb70 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f014b20 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x5f016bdd tcp_check_req +EXPORT_SYMBOL vmlinux 0x5f0904f2 configfs_register_group +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f86c675 deactivate_super +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9f122b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x5fb82ab5 __invalidate_device +EXPORT_SYMBOL vmlinux 0x5fb8574e sock_no_bind +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fce1f65 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x5fdbc855 vfs_unlink +EXPORT_SYMBOL vmlinux 0x5febfc0c scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600f3cbf mntput +EXPORT_SYMBOL vmlinux 0x6014041b seq_pad +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x603061dc __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x607e5852 generic_fillattr +EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608f8db2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x60909176 skb_dump +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60afdc63 fc_mount +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d29a0d pci_find_bus +EXPORT_SYMBOL vmlinux 0x60d3b428 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e543f7 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x60f1dc87 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x60fc73c7 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x61058003 ps2_end_command +EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6137e210 tty_do_resize +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6177242d mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617c6ee3 xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x61838aaa devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61898840 mr_table_dump +EXPORT_SYMBOL vmlinux 0x618d6f0a pipe_unlock +EXPORT_SYMBOL vmlinux 0x618ebea5 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b4c289 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cde258 phy_loopback +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x620c326b bioset_exit +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623f40e5 fb_class +EXPORT_SYMBOL vmlinux 0x62426257 __scsi_execute +EXPORT_SYMBOL vmlinux 0x624418f9 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6248f639 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x624d4a90 dev_load +EXPORT_SYMBOL vmlinux 0x62649c8d load_nls +EXPORT_SYMBOL vmlinux 0x62665a74 setattr_prepare +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x628f442b set_posix_acl +EXPORT_SYMBOL vmlinux 0x62937e9e dump_truncate +EXPORT_SYMBOL vmlinux 0x62bf0a42 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62c7b72d mpage_readpages +EXPORT_SYMBOL vmlinux 0x62e1def3 make_kgid +EXPORT_SYMBOL vmlinux 0x62e8e1e9 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x62ede29e ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del +EXPORT_SYMBOL vmlinux 0x63084a7d xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631e6ed6 simple_statfs +EXPORT_SYMBOL vmlinux 0x6339bcc1 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6347370f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x634bb7f0 proc_create +EXPORT_SYMBOL vmlinux 0x634d4857 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x635748f5 __frontswap_load +EXPORT_SYMBOL vmlinux 0x6361102c fc_release_transport +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x637edeac mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x638ebd3a sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ae55c0 free_task +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f887e0 seq_lseek +EXPORT_SYMBOL vmlinux 0x63f94289 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x63fcc844 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x640eff38 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641414b9 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x6451ec7f __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x645abbd5 kfree_skb +EXPORT_SYMBOL vmlinux 0x64775a90 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x64799f7c fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64836681 blk_queue_split +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c5a532 ip_defrag +EXPORT_SYMBOL vmlinux 0x64d8075d skb_queue_tail +EXPORT_SYMBOL vmlinux 0x64e60ca5 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x64f30042 bio_split +EXPORT_SYMBOL vmlinux 0x65132ccf pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651de72d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654e8855 dma_cache_sync +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x6568e18b fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65888c6b fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659caa5a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d769e7 km_state_expired +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dfb420 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65fe8408 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6645e03c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6663df5d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x66727c7f tcp_close +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66921761 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x669c3e7f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x669c93b6 scsi_init_io +EXPORT_SYMBOL vmlinux 0x66a9d5e5 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b906b6 _dev_crit +EXPORT_SYMBOL vmlinux 0x66cdac23 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x66cfefe2 kthread_stop +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66edd18c skb_clone +EXPORT_SYMBOL vmlinux 0x67084426 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x671181c5 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x6718e1b6 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6735904b migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x673f18b7 sync_inode +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67463415 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675904f0 cdrom_open +EXPORT_SYMBOL vmlinux 0x6771ab87 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x67735c36 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679ade0b input_setup_polling +EXPORT_SYMBOL vmlinux 0x67af5e12 __breadahead +EXPORT_SYMBOL vmlinux 0x67b12363 address_space_init_once +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67e0f657 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x67f0082b kernel_bind +EXPORT_SYMBOL vmlinux 0x67f3eb66 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x68253f37 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68e24676 netif_napi_add +EXPORT_SYMBOL vmlinux 0x68e58990 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x68e89173 bdi_put +EXPORT_SYMBOL vmlinux 0x68fa9fcd pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6900d132 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x691072b9 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x691d410c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x6934640e __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x69424af7 locks_init_lock +EXPORT_SYMBOL vmlinux 0x6944a992 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x694588d5 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695ee3ad padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697414a8 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x698812b4 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698b30e1 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x698c582d elv_rb_del +EXPORT_SYMBOL vmlinux 0x699b1945 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x69aae92b dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b8b0b4 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x69c4bc68 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69ea3231 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x69edd189 rtnl_notify +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a252c0a sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a385c6d inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6a406a50 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a601cff __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6a60b690 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ac926ff vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b1a8758 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x6b1feb8c kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31f45c lookup_bdev +EXPORT_SYMBOL vmlinux 0x6b34762c uart_resume_port +EXPORT_SYMBOL vmlinux 0x6b41cd42 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x6b53c9c4 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9c2aec elv_rb_add +EXPORT_SYMBOL vmlinux 0x6ba0b682 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x6ba1284a generic_file_open +EXPORT_SYMBOL vmlinux 0x6ba2495f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6bb18e15 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcc9a9b vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x6bced6c3 __lock_page +EXPORT_SYMBOL vmlinux 0x6bd3f72d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bee4ad6 kill_pid +EXPORT_SYMBOL vmlinux 0x6bf24a67 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6c054e53 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c3450a8 cpu_tlbstate +EXPORT_SYMBOL vmlinux 0x6c52d72d blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x6c5a110b dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c75ae08 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c8e0f31 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6ca2bead fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x6ca60811 end_page_writeback +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbf0657 redraw_screen +EXPORT_SYMBOL vmlinux 0x6cc2d8d3 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6cca68b3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x6cd167f4 neigh_table_init +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cfdfe3a tty_unlock +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d0930c1 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x6d10930e get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x6d143595 kern_unmount +EXPORT_SYMBOL vmlinux 0x6d241f84 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2b95eb d_path +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5840dc d_tmpfile +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7169a5 ps2_command +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6de67878 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df37697 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e0724e3 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x6e14d621 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x6e1a3757 dev_uc_del +EXPORT_SYMBOL vmlinux 0x6e25d746 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5d95b1 bdi_register_va +EXPORT_SYMBOL vmlinux 0x6e69b39b sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x6e6e0e85 dev_addr_del +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7827a1 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x6e901aae filemap_fault +EXPORT_SYMBOL vmlinux 0x6e940cfc console_stop +EXPORT_SYMBOL vmlinux 0x6e97d993 nonseekable_open +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea924ee __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec6d462 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6ee481a4 tcp_mmap +EXPORT_SYMBOL vmlinux 0x6ee727e1 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get +EXPORT_SYMBOL vmlinux 0x6f0d8c04 cdev_init +EXPORT_SYMBOL vmlinux 0x6f2bf676 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x6f39266d dcache_dir_close +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f435ccf mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x6f54720a pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f841de5 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f92225b get_tree_bdev +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbfc0cd eth_gro_receive +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd025ed pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdb20fe netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fe05f00 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x6fe9cd3f udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x6ff25334 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702c953c poll_freewait +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7044ca6d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70610bbf security_unix_may_send +EXPORT_SYMBOL vmlinux 0x706a27e5 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70745887 dma_pool_create +EXPORT_SYMBOL vmlinux 0x70812ab7 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70c5dc5d xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x70f702c9 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7168c800 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7183583c sock_no_listen +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71aa4745 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x71c44999 param_get_ushort +EXPORT_SYMBOL vmlinux 0x71ecb205 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x71f55177 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x72063ead blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x72262553 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x722d3c63 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7258766a input_register_handler +EXPORT_SYMBOL vmlinux 0x72608531 ip_options_compile +EXPORT_SYMBOL vmlinux 0x726c4b7a security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x728c2a06 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x729defda hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72afea85 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bf4f18 phy_detach +EXPORT_SYMBOL vmlinux 0x72d1ff4b __pci_register_driver +EXPORT_SYMBOL vmlinux 0x72d23545 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7306e6a7 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x731b0f9b xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732b54cb skb_ext_add +EXPORT_SYMBOL vmlinux 0x7333a491 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x73363f2c xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x733bf806 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x733e25ab ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735bba85 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7398fae8 mr_dump +EXPORT_SYMBOL vmlinux 0x739b963b bio_chain +EXPORT_SYMBOL vmlinux 0x73a82031 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x73d8bf10 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x73d9bbad __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73ddbe33 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x73fd1365 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74313920 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7432efdd fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x744b76df vme_bus_num +EXPORT_SYMBOL vmlinux 0x74569a9c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x746cc20a vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747e0e08 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x748a333c tcp_child_process +EXPORT_SYMBOL vmlinux 0x748ae8b1 devm_memunmap +EXPORT_SYMBOL vmlinux 0x74952d6a mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x74baa7ab netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x74bf0273 __pagevec_release +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c270c5 sock_create_kern +EXPORT_SYMBOL vmlinux 0x74d7a84e eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ee4446 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x74fedc4c cad_pid +EXPORT_SYMBOL vmlinux 0x750453c9 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x751e7206 ps2_drain +EXPORT_SYMBOL vmlinux 0x7523e8f1 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755462c7 make_kuid +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7564cca8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7579b81e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x757d899c phy_init_hw +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75b34217 mount_subtree +EXPORT_SYMBOL vmlinux 0x75b96b3a _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x75bbd007 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c79665 blkdev_get +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d1cb4f agp_put_bridge +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d9b0eb __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x75e60613 key_put +EXPORT_SYMBOL vmlinux 0x75fb0f6d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x76024d57 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7619999e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x763cff6b inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765e1290 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a2278a inode_init_once +EXPORT_SYMBOL vmlinux 0x76d21451 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76ead2a3 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x7700666a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7702f20c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x770d6a32 inet6_getname +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77420139 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7747e5cc dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x775808a3 may_umount_tree +EXPORT_SYMBOL vmlinux 0x77590af9 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x775db1a6 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7783b94c fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a246c3 I_BDEV +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77ce148e netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x77e70d10 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77fefb15 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x78025f2d rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc +EXPORT_SYMBOL vmlinux 0x7820d6ad agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x78277a5a ppp_unit_number +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7859505b mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x786777d3 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x786f8373 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7893a373 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789dce15 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78aa5884 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x78ac0beb sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x78c26711 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x78c47962 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x78cf27a8 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x78d995e6 sk_common_release +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79003ca1 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x791ca2e0 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x79343dc0 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x79369bc2 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x795edfab md_bitmap_free +EXPORT_SYMBOL vmlinux 0x79682d70 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x796b22f5 proc_symlink +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x79784594 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x7979903a pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x797a3113 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79878f9d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x799813b9 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a73c69 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x79be8417 update_devfreq +EXPORT_SYMBOL vmlinux 0x79d173cb pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e4aa10 padata_stop +EXPORT_SYMBOL vmlinux 0x79ec0754 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x79fe756e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7a07daf2 module_put +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0c375d input_flush_device +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4441b2 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5ee908 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a97ea44 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaa701c blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abaef67 udp_seq_next +EXPORT_SYMBOL vmlinux 0x7ac61f84 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x7acc00d0 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b0d397a tcp_req_err +EXPORT_SYMBOL vmlinux 0x7b203884 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x7b2667b1 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7b2b0baf inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7b3357a7 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7b40e007 dquot_alloc +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b637ae9 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7bad4a11 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bf457b3 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1abbe3 kernel_listen +EXPORT_SYMBOL vmlinux 0x7c1e7762 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7c1f29c9 vfs_getattr +EXPORT_SYMBOL vmlinux 0x7c265f7a start_tty +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c527917 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7c527e1e migrate_page_states +EXPORT_SYMBOL vmlinux 0x7c68cf23 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x7c6e3a3c user_path_create +EXPORT_SYMBOL vmlinux 0x7c723c7f node_data +EXPORT_SYMBOL vmlinux 0x7c736151 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7c851486 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7c904da8 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0b0528 dm_register_target +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 0x7d13f60e md_update_sb +EXPORT_SYMBOL vmlinux 0x7d227c30 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7d3c98e9 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7d3e0365 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4de135 brioctl_set +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d682909 ilookup5 +EXPORT_SYMBOL vmlinux 0x7d68ffd7 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7d889f0b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x7d9eedac security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbd99fe input_event +EXPORT_SYMBOL vmlinux 0x7dc7c6d7 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dd6ed36 km_policy_expired +EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission +EXPORT_SYMBOL vmlinux 0x7ddf7ad8 init_net +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5fc9a get_phy_device +EXPORT_SYMBOL vmlinux 0x7df9ea1c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext +EXPORT_SYMBOL vmlinux 0x7e2fe8ea dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x7e318ea8 phy_device_create +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e8d0ca6 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7e9a2259 devm_clk_get +EXPORT_SYMBOL vmlinux 0x7e9c9099 vm_map_pages +EXPORT_SYMBOL vmlinux 0x7e9fc78f path_put +EXPORT_SYMBOL vmlinux 0x7eb6f8b9 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7ebc87f6 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock +EXPORT_SYMBOL vmlinux 0x7ec8a630 skb_queue_head +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0615aa bio_put +EXPORT_SYMBOL vmlinux 0x7f1fc33c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7f220914 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f37cc8c __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f660b6f ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f930301 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7f97f9c0 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x7fad1a5c fb_get_mode +EXPORT_SYMBOL vmlinux 0x7fb3cbc1 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7fb9c355 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x7fc864ff __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x7fcfe8f4 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7febbd75 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x7ff4aa63 get_amd_iommu +EXPORT_SYMBOL vmlinux 0x7ff66155 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7ff729a4 inet_getname +EXPORT_SYMBOL vmlinux 0x7ffbd17f param_ops_string +EXPORT_SYMBOL vmlinux 0x8004bc92 zap_page_range +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x8009040b jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x80415868 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x80452863 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x804d593d udp_seq_start +EXPORT_SYMBOL vmlinux 0x8085461d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x808dcf8f input_set_keycode +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80c48fd3 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80ffaddf pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x81064101 simple_write_end +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812c85b5 dquot_file_open +EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit +EXPORT_SYMBOL vmlinux 0x813b2f44 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x81413e53 nf_log_trace +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 0x8170241f dev_close +EXPORT_SYMBOL vmlinux 0x8179ccec dev_mc_add +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x819243f5 get_user_pages +EXPORT_SYMBOL vmlinux 0x819645c7 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x819de1bf inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x81aaf7ea iov_iter_discard +EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible +EXPORT_SYMBOL vmlinux 0x81bc7010 inet_bind +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dfd2a4 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fe3d8b vfs_statfs +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820fd5e6 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x8225ca22 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x822d7f5b clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x8254c6fb __serio_register_port +EXPORT_SYMBOL vmlinux 0x8255a71f page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x825af5b2 nd_btt_version +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8267e830 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8283a441 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups +EXPORT_SYMBOL vmlinux 0x82abd6d9 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x82da1b9e sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x82de667a eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x82e03cc0 task_work_add +EXPORT_SYMBOL vmlinux 0x82e8bf1d mount_bdev +EXPORT_SYMBOL vmlinux 0x82edf8e2 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x82f36010 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x83056cc3 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x830a2c78 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x83190d92 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x831bc165 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x831be8d0 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x832bca57 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x834d83df secpath_set +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8360862c textsearch_prepare +EXPORT_SYMBOL vmlinux 0x8363964d arp_create +EXPORT_SYMBOL vmlinux 0x83736586 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x83775f51 fs_parse +EXPORT_SYMBOL vmlinux 0x8378f36a d_rehash +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8399ed28 __block_write_begin +EXPORT_SYMBOL vmlinux 0x83a437bf genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x83c33d98 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x84018559 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84234381 dcb_getapp +EXPORT_SYMBOL vmlinux 0x84394191 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x843ac6a1 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x843e99ff inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x8441f656 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x84421ed8 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x84627074 vmap +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x8498978b generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x84aa0413 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84d62b33 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x84e259d3 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x84e73bc4 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x8502aaf0 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8505e2c7 migrate_page +EXPORT_SYMBOL vmlinux 0x8518a698 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x855e6045 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8592959b __free_pages +EXPORT_SYMBOL vmlinux 0x8593fc73 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b58936 locks_delete_block +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b718bd xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0x85b7aa01 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x85ba65d2 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x85bcb379 __put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c5463f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x8603dce5 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x861a4d7c should_remove_suid +EXPORT_SYMBOL vmlinux 0x862449b0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x863756c1 thaw_bdev +EXPORT_SYMBOL vmlinux 0x86397da9 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8647ec01 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x864dd1c3 file_update_time +EXPORT_SYMBOL vmlinux 0x864f2378 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8654b456 stream_open +EXPORT_SYMBOL vmlinux 0x86583aac proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x866c4f13 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x867ed4ef inet_stream_ops +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869a3c05 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x86a5b98a vga_get +EXPORT_SYMBOL vmlinux 0x86aa8381 netdev_notice +EXPORT_SYMBOL vmlinux 0x86b1681f freeze_super +EXPORT_SYMBOL vmlinux 0x86bae1c3 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x86be72a7 ilookup +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86c8c608 send_sig +EXPORT_SYMBOL vmlinux 0x86d92067 tcf_classify +EXPORT_SYMBOL vmlinux 0x86e1e6f3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f3fb82 _dev_err +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x87216233 single_open +EXPORT_SYMBOL vmlinux 0x8729eb69 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x872b118a dquot_enable +EXPORT_SYMBOL vmlinux 0x872c74c9 inet_protos +EXPORT_SYMBOL vmlinux 0x87425834 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x877cedcd in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8780a597 iov_iter_init +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87fcfd4b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x8805d4d9 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x883fe199 tty_register_device +EXPORT_SYMBOL vmlinux 0x886932ba inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8874f889 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888b4e51 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x88979181 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x88a4c540 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x88a86aa6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88d3b1b0 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x89129f0d tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x891ad8ea nd_dax_probe +EXPORT_SYMBOL vmlinux 0x893521c8 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x8935d75d ps2_handle_response +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x894ed320 override_creds +EXPORT_SYMBOL vmlinux 0x8958e1b9 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x8967a2b3 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8969baef dm_unregister_target +EXPORT_SYMBOL vmlinux 0x8980e2bf of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x898a3c81 xattr_full_name +EXPORT_SYMBOL vmlinux 0x89920065 inet6_offloads +EXPORT_SYMBOL vmlinux 0x899d5174 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c73940 ihold +EXPORT_SYMBOL vmlinux 0x89e1f5bd kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x89e7b956 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x89faa2d8 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x8a196d31 iunique +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1d1f20 generic_write_end +EXPORT_SYMBOL vmlinux 0x8a230a7a pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a3e0616 cdev_alloc +EXPORT_SYMBOL vmlinux 0x8a402462 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a52f343 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9f7c51 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac33aff eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8aed3244 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8aef81de pps_event +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b08d615 generic_writepages +EXPORT_SYMBOL vmlinux 0x8b22df30 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x8b4cb93b param_ops_uint +EXPORT_SYMBOL vmlinux 0x8b57a13d dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b5fc52e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b678d7f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8b77fbf7 netif_napi_del +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bfaeae9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8bfb05a9 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8c119040 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x8c39547d security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8c3c7734 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x8c42f559 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x8c51e31a jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x8c5f71f7 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x8c79e851 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x8c891e20 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd16f06 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8ce8ac22 check_disk_change +EXPORT_SYMBOL vmlinux 0x8cf11958 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x8d27d88c dm_kobject_release +EXPORT_SYMBOL vmlinux 0x8d3bfa15 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x8d4c3a1c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6c6224 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d850188 arp_xmit +EXPORT_SYMBOL vmlinux 0x8d8f9fca unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8dc1eeb6 tcp_connect +EXPORT_SYMBOL vmlinux 0x8dc2729f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8dc527b7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de0236b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x8de06e2a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e299e70 tty_lock +EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x8e3be994 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x8e4849f8 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8e62304c dma_resv_fini +EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e8230f2 pci_select_bars +EXPORT_SYMBOL vmlinux 0x8ea23f2a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x8ea60d2a qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ed84626 find_get_entry +EXPORT_SYMBOL vmlinux 0x8edeeed2 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x8edfefe4 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x8ee26c6e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x8ee4ee66 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8f1ea9fd tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default +EXPORT_SYMBOL vmlinux 0x8f405855 get_super_thawed +EXPORT_SYMBOL vmlinux 0x8f505fdb __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x8f5ea353 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x8f73565c bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f81e6b4 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb1f981 block_truncate_page +EXPORT_SYMBOL vmlinux 0x8fb3314d blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fb9f69a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8fbbeef0 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8fc8a898 __brelse +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffb8f7e release_firmware +EXPORT_SYMBOL vmlinux 0x8ffffe58 register_qdisc +EXPORT_SYMBOL vmlinux 0x902c3fa8 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90623f1c nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x90915ca1 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x90b2a168 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x90bbfac4 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x90bcc4b8 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x90d0673e kill_pgrp +EXPORT_SYMBOL vmlinux 0x90da908c unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x90f11838 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x90fb2f6b __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x9137d0b8 vme_slot_num +EXPORT_SYMBOL vmlinux 0x91562084 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166a2d1 inet_offloads +EXPORT_SYMBOL vmlinux 0x9166bef4 mmput_async +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x918be965 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x91923dd1 __devm_release_region +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b4f705 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x91be57f4 fc_attach_transport +EXPORT_SYMBOL vmlinux 0x91d22419 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x91d698dd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x91f121f0 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x91f29fb9 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x91f2ab9b wake_up_process +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91fc68ea seq_putc +EXPORT_SYMBOL vmlinux 0x920bb5f0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x920f0594 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x9210c4f2 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x9212dc35 cdev_del +EXPORT_SYMBOL vmlinux 0x921a21e6 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x922e09b7 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9234f372 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x923b00ed scsi_device_resume +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924866ff dst_release +EXPORT_SYMBOL vmlinux 0x924dae6c d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925bbf52 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x927056e7 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928a94e6 generic_permission +EXPORT_SYMBOL vmlinux 0x928d01de file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c0933c netlink_set_err +EXPORT_SYMBOL vmlinux 0x92d306da sock_efree +EXPORT_SYMBOL vmlinux 0x92dbb49f tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x92e54376 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9317f005 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x93375137 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x93665070 bd_set_size +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93775cd6 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b8d004 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x93bb9b42 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x93dabdb8 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x93dbbb42 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x93e9b9ee prepare_binprm +EXPORT_SYMBOL vmlinux 0x93fbd4f1 fsync_bdev +EXPORT_SYMBOL vmlinux 0x9401bf43 param_set_bint +EXPORT_SYMBOL vmlinux 0x9414df6b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x9421ef1c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a2d1d __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9464b247 submit_bio +EXPORT_SYMBOL vmlinux 0x946a11e9 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x948c3fe7 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x94930b35 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b221c7 netpoll_setup +EXPORT_SYMBOL vmlinux 0x94b4b185 vga_client_register +EXPORT_SYMBOL vmlinux 0x94bb772e xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e125d3 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x94f2ffe0 padata_do_serial +EXPORT_SYMBOL vmlinux 0x95002020 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9546df21 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955d1b1b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x958e9335 mdio_device_free +EXPORT_SYMBOL vmlinux 0x9596609c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x95a4575c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b7de4b ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x95cfd010 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x9602bcd0 pci_enable_device +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x96588202 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x96617041 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x966ce794 dquot_commit +EXPORT_SYMBOL vmlinux 0x967ddefd fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x9680d673 vm_mmap +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b2f8da tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x96c07dd0 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d3678e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x96df227f always_delete_dentry +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96f29171 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x96f38134 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x96f9cab8 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970383cc bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x9704c564 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x970a1cab ___pskb_trim +EXPORT_SYMBOL vmlinux 0x9717d2d6 d_exact_alias +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974801ae _dev_alert +EXPORT_SYMBOL vmlinux 0x974b0056 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x975a8c41 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x975fdd76 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x976e54d4 generic_setlease +EXPORT_SYMBOL vmlinux 0x97708362 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9798046e ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979faba2 path_get +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97aecefb cdrom_release +EXPORT_SYMBOL vmlinux 0x97b4cf72 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x97bab12f dqget +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97e88fc8 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x9805e239 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9818c677 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x981be892 set_security_override +EXPORT_SYMBOL vmlinux 0x981c8cab bdevname +EXPORT_SYMBOL vmlinux 0x981ef774 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x982928a6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9836ea67 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x98400ea9 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x984ba0ed xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x984e713e nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x98505084 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x98679b22 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x987e60ab hmm_mirror_register +EXPORT_SYMBOL vmlinux 0x987fb756 __do_once_done +EXPORT_SYMBOL vmlinux 0x98ae3562 freeze_bdev +EXPORT_SYMBOL vmlinux 0x98b47b7e pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x98b6959f __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x990ad2c0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x99366a28 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994c2565 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99526d48 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x99558b9e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x9961e0f2 unix_get_socket +EXPORT_SYMBOL vmlinux 0x997531e7 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99baa658 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x99d13874 genlmsg_put +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a0c0054 security_path_unlink +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a129688 noop_qdisc +EXPORT_SYMBOL vmlinux 0x9a1d8e34 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a242dd5 proc_mkdir +EXPORT_SYMBOL vmlinux 0x9a39d759 tty_devnum +EXPORT_SYMBOL vmlinux 0x9a45672b __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6796c7 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a989e7f textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ad830d2 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x9ae81a24 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0x9aeee13e __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x9af53951 __icmp_send +EXPORT_SYMBOL vmlinux 0x9b079d01 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x9b081978 param_set_long +EXPORT_SYMBOL vmlinux 0x9b161095 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x9b247d52 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b361a89 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b4c0d61 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9b5b8a13 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x9b5be4d6 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x9b5f0bda __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x9b63cbdb vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x9b6568b3 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9b6923b0 new_inode +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9bafdbb1 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9bb2dc0a netdev_state_change +EXPORT_SYMBOL vmlinux 0x9bd3796b pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x9bdcaefe xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x9bdfc967 vfs_get_super +EXPORT_SYMBOL vmlinux 0x9bef334b find_lock_entry +EXPORT_SYMBOL vmlinux 0x9bf849ed bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9bff110b agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c220248 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke +EXPORT_SYMBOL vmlinux 0x9c60adbd md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x9c6babcb serio_close +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c9e34bd blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd22e00 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9cd2c22d padata_free_shell +EXPORT_SYMBOL vmlinux 0x9cd641d9 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9cdd62be flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf5acd8 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1883bf ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x9d3088c9 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d74488a legacy_pic +EXPORT_SYMBOL vmlinux 0x9d893d71 ps2_init +EXPORT_SYMBOL vmlinux 0x9d89646e sock_i_ino +EXPORT_SYMBOL vmlinux 0x9d8e4697 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9dac47d7 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x9db7cf52 page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x9db9acd7 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9dbd862b skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dceb966 empty_aops +EXPORT_SYMBOL vmlinux 0x9de70cda request_key_tag +EXPORT_SYMBOL vmlinux 0x9de7fba5 netdev_alert +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e133a90 udp_ioctl +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e2aa224 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x9e2e4757 pipe_lock +EXPORT_SYMBOL vmlinux 0x9e33f97d get_bitmap_from_slot +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 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e80a118 open_exec +EXPORT_SYMBOL vmlinux 0x9e832f45 dm_put_device +EXPORT_SYMBOL vmlinux 0x9e8e85f8 pci_clear_master +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eab264e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ead0343 __page_symlink +EXPORT_SYMBOL vmlinux 0x9eaff137 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x9eb8a8c2 sg_miter_start +EXPORT_SYMBOL vmlinux 0x9eb8c490 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x9ebf176d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecc70f9 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x9ecd0b0a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9edb039f register_framebuffer +EXPORT_SYMBOL vmlinux 0x9ef611d6 ping_prot +EXPORT_SYMBOL vmlinux 0x9efa01bc tcp_seq_next +EXPORT_SYMBOL vmlinux 0x9f0d2d79 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x9f11c0fa dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x9f4400b8 sock_wake_async +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4cc932 fget_raw +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f66dfda dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f72480b xfrm_input +EXPORT_SYMBOL vmlinux 0x9f82b13f udp_seq_stop +EXPORT_SYMBOL vmlinux 0x9f85bf35 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x9f89e0c6 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fbe11fe of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x9fd8f821 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa000d72c import_single_range +EXPORT_SYMBOL vmlinux 0xa00134cc vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa03dc918 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa046049e buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xa05e8943 bdgrab +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xa0998747 param_get_bool +EXPORT_SYMBOL vmlinux 0xa09cb56a __block_write_full_page +EXPORT_SYMBOL vmlinux 0xa0a25867 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xa0a5012b nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c614b2 posix_lock_file +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 0xa0f08a87 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xa0f2b382 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa125570c pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xa13ced09 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xa14ce2d3 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xa15b72f3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xa16f81aa acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xa17c7125 inet_ioctl +EXPORT_SYMBOL vmlinux 0xa18d9a88 genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0xa1ae2791 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xa1b93b4b blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d25a0c pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa1d575ae netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa1d9c393 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f7db19 single_open_size +EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0xa2039a06 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa209ecbe neigh_destroy +EXPORT_SYMBOL vmlinux 0xa21869cb blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xa21e50f0 file_remove_privs +EXPORT_SYMBOL vmlinux 0xa224d5c0 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa234aeed balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa2385286 param_ops_long +EXPORT_SYMBOL vmlinux 0xa238822d nf_hook_slow +EXPORT_SYMBOL vmlinux 0xa2440ff8 phy_attach +EXPORT_SYMBOL vmlinux 0xa24994f7 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xa24cc92d sg_miter_next +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa24f2f4e ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa25ded54 con_is_bound +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2770387 vfs_fsync +EXPORT_SYMBOL vmlinux 0xa27c82e8 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa2819375 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2a06061 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa2b0e40a __neigh_create +EXPORT_SYMBOL vmlinux 0xa2bcebed vme_irq_free +EXPORT_SYMBOL vmlinux 0xa2c2ee5c thaw_super +EXPORT_SYMBOL vmlinux 0xa2c73297 user_revoke +EXPORT_SYMBOL vmlinux 0xa2d026b0 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa2e540de pcim_iomap +EXPORT_SYMBOL vmlinux 0xa315189b devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa334c12f rtc_add_groups +EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xa3443b20 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xa3611117 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xa387361e netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xa3899a46 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3bf9fe1 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3fc8d84 dev_open +EXPORT_SYMBOL vmlinux 0xa40a6fc6 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xa40bab1b blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa41d2531 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa44ddb46 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa44f8b19 agp_bridge +EXPORT_SYMBOL vmlinux 0xa4882203 bio_init +EXPORT_SYMBOL vmlinux 0xa48bb2bb bdget +EXPORT_SYMBOL vmlinux 0xa49d03e5 dget_parent +EXPORT_SYMBOL vmlinux 0xa4a47fc9 mdiobus_write +EXPORT_SYMBOL vmlinux 0xa4a4f36a sg_miter_skip +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c43ea9 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xa4cb9690 bh_submit_read +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d9f213 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xa4ea9363 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa4edd9fb mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa503a7ab blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa511cf2b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa520869e neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa52c588b vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xa530f39d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa544aad8 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xa54b6cf8 param_set_byte +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56cca82 vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xa573172b __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xa58913f0 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa59c269a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b31f5b simple_fill_super +EXPORT_SYMBOL vmlinux 0xa5b51ba0 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa5b89226 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa5e1c201 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5e80397 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xa5edc550 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xa5f16967 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xa5fc5690 unlock_page +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa609c107 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0xa60bc176 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62ec156 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa63ac50b generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xa6477b69 amd_iommu_pc_set_reg +EXPORT_SYMBOL vmlinux 0xa648de81 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xa66b650f ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa6934573 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0xa6afafe1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xa6d65ae1 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa6de9be1 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa716592e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72c23a8 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa737d1ec tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74e8437 clk_add_alias +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78495e1 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7b556bc may_umount +EXPORT_SYMBOL vmlinux 0xa7d1bbb7 register_console +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e30f20 __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f339ae mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa808b24c set_pages_wb +EXPORT_SYMBOL vmlinux 0xa8098191 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xa816e07a con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa84352ef xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8470e22 flow_block_cb_setup_simple +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 0xa8733a28 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xa875ddfe tcp_poll +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8b1d70c phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xa8b8de63 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d4430c d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa8dce2a9 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90cc40c __serio_register_driver +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa917da4b get_dev_data +EXPORT_SYMBOL vmlinux 0xa91f62a2 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xa9229668 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xa92ac24d blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xa9433e94 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xa9461e38 nd_device_notify +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa959b9f7 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa961d753 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9692456 proc_create_data +EXPORT_SYMBOL vmlinux 0xa9707046 sock_rfree +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xa9876076 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99fa4a8 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9d2bc47 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xa9d7734c inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xa9e1deb6 sock_from_file +EXPORT_SYMBOL vmlinux 0xa9e34893 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa9e9bc22 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa9eff71c tcf_idr_search +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa02fd5f dev_mc_init +EXPORT_SYMBOL vmlinux 0xaa1ca848 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xaa23a947 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3fd057 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xaa49fa0e blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xaa4d4ee5 uart_register_driver +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa8b10bd md_integrity_register +EXPORT_SYMBOL vmlinux 0xaa90358f audit_log_start +EXPORT_SYMBOL vmlinux 0xaa90b03c page_symlink +EXPORT_SYMBOL vmlinux 0xaa9d9d4d reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xaaa349f5 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xaaa34a0a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xaabca250 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xaabe575d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xaac143cd blk_mq_can_queue +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 0xaaf2566f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab02f7bf kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xab0cfdfe iterate_dir +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab54d21c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8c3017 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xab90343c ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabb5e365 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xabbf2ad0 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xabc7caab clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabe96ecf seq_escape +EXPORT_SYMBOL vmlinux 0xabece5fd tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac23110a put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xac2fb549 pci_iounmap +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5a0aab seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xac5f696f dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac71b4c1 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac8deaa9 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xac9d5328 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb0a0b7 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xacb8cbe5 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xacbacb4c i8042_install_filter +EXPORT_SYMBOL vmlinux 0xacc385f0 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad00a1ab seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad3044b8 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xad3d560f _copy_from_iter +EXPORT_SYMBOL vmlinux 0xad3ebfea tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xad451a39 unregister_nls +EXPORT_SYMBOL vmlinux 0xad50edc9 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xad523a4f proc_set_user +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad631b1e flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad70f193 dquot_operations +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9c4923 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada4fce1 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xadaa336b clear_nlink +EXPORT_SYMBOL vmlinux 0xadac9aca init_task +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb2dcae dev_driver_string +EXPORT_SYMBOL vmlinux 0xadb45b47 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc8d1eb t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd510aa crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xade052e4 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xadfe890d account_page_redirty +EXPORT_SYMBOL vmlinux 0xae1cf862 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xae1e0acd __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xae2701e3 __seq_open_private +EXPORT_SYMBOL vmlinux 0xae2eda3d no_llseek +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae7671e9 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xae7b07ef mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xae7bb80d pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xae9d93be lock_rename +EXPORT_SYMBOL vmlinux 0xaea28e0e pci_enable_msi +EXPORT_SYMBOL vmlinux 0xaea2f42b kill_block_super +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec120d0 del_gendisk +EXPORT_SYMBOL vmlinux 0xaec80483 release_pages +EXPORT_SYMBOL vmlinux 0xaed1c870 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xaee80161 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xaf1a98aa vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xaf1d51b4 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf45fb87 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf7a2688 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xaf8e3f64 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xaf9b7453 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xafa09dd7 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xafb853ae i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd94fd3 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xafdb834b reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xafe611e9 register_filesystem +EXPORT_SYMBOL vmlinux 0xafead30a bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02253bf input_set_capability +EXPORT_SYMBOL vmlinux 0xb02d27fd arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb0374f0d release_sock +EXPORT_SYMBOL vmlinux 0xb040d94a d_instantiate +EXPORT_SYMBOL vmlinux 0xb0582c9c __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb05c1fde devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb0754546 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xb09c12fa create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a57c0f kern_path_create +EXPORT_SYMBOL vmlinux 0xb0b60204 km_report +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0db918f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb0de7c39 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xb0e02c5e backlight_device_register +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12ad35e dma_resv_init +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb1599a9f dcb_setapp +EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xb16144eb pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb1811e0f free_netdev +EXPORT_SYMBOL vmlinux 0xb18dc9d1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb19b3e9c xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xb1a8789f pid_task +EXPORT_SYMBOL vmlinux 0xb1c2c3dc pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1fce38d set_cached_acl +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21ddb19 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23407fd ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb23899e6 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb2665ddd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xb26771c6 netdev_crit +EXPORT_SYMBOL vmlinux 0xb26eeba7 d_add_ci +EXPORT_SYMBOL vmlinux 0xb2811f36 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c4d12d napi_get_frags +EXPORT_SYMBOL vmlinux 0xb2df4d3d generic_file_llseek +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 0xb304b1ed dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31a369a fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xb31c2db9 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3249847 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb332cc1d inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb3468423 is_nd_btt +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xb3672cba tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb369ebd5 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xb3723508 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xb37ad48c dm_get_device +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb389bcb3 skb_split +EXPORT_SYMBOL vmlinux 0xb38be488 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a999f3 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xb3ba7d3b sock_create_lite +EXPORT_SYMBOL vmlinux 0xb3c0b53c eth_header_parse +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dbb334 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb401a69c serio_rescan +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb4086b51 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb449b496 sk_net_capable +EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45d3421 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xb4774115 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb4800bb8 tcf_block_get +EXPORT_SYMBOL vmlinux 0xb483f4f2 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb492a20e input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4a12b2e gro_cells_init +EXPORT_SYMBOL vmlinux 0xb4a72a68 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb4ef4e63 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f2c294 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xb5087843 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb520cf97 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb52f4132 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb53b8dfc irq_set_chip +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb56e77e7 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xb571ef32 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58ece6f netdev_warn +EXPORT_SYMBOL vmlinux 0xb5930335 tty_kref_put +EXPORT_SYMBOL vmlinux 0xb5951966 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0xb60401b6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63f18d1 md_write_inc +EXPORT_SYMBOL vmlinux 0xb6449782 bio_copy_data +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bd9601 sk_capable +EXPORT_SYMBOL vmlinux 0xb6ca5799 agp_enable +EXPORT_SYMBOL vmlinux 0xb6d4284a __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb6ddf175 config_item_put +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7230f86 set_binfmt +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7565310 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb7690298 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xb76bffe5 genphy_read_status +EXPORT_SYMBOL vmlinux 0xb76f5c2b phy_resume +EXPORT_SYMBOL vmlinux 0xb778ac35 ip6_xmit +EXPORT_SYMBOL vmlinux 0xb784b6ef vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb78a0f26 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cda755 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xb7d1c355 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb7d6f5f2 register_cdrom +EXPORT_SYMBOL vmlinux 0xb7e92ff4 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb7f3e987 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb7f62ac9 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb80decbf pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb834a722 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xb83cd0b0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb8401576 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0xb8424efb ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xb8439d53 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xb85f8c94 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb86e9b66 skb_push +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb875b2a4 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xb88c7283 would_dump +EXPORT_SYMBOL vmlinux 0xb894e8e9 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a70d49 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xb8a9caab kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xb8aa22f3 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b1c82c sk_stream_error +EXPORT_SYMBOL vmlinux 0xb8b770e0 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d18250 get_agp_version +EXPORT_SYMBOL vmlinux 0xb8d8ea07 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb8e591ea tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb917ebc5 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb950fd06 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb966434c scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xb973344b unregister_console +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9842a0b security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb99edf21 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb9a2b8a0 dev_uc_add +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bcfa2c amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xb9c7b116 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xb9c9c6f9 keyring_clear +EXPORT_SYMBOL vmlinux 0xb9de5af7 scsi_track_queue_full +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 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1b8951 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xba1f03a9 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xba2e8042 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba71cba2 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xbaa892a5 generic_read_dir +EXPORT_SYMBOL vmlinux 0xbab5040d d_move +EXPORT_SYMBOL vmlinux 0xbab9acf1 md_write_end +EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbad5ad7c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xbadb3480 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xbae4cf4b acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xbaf55551 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb057771 finalize_exec +EXPORT_SYMBOL vmlinux 0xbb0706c1 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb4754c6 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5a3eb1 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xbb6a54e3 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xbb78a7e9 pci_get_class +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb972315 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0xbba5d06d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xbbbe8347 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xbbcc258f vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbbdb54bd ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc011eae phy_start_aneg +EXPORT_SYMBOL vmlinux 0xbc0c58df set_trace_device +EXPORT_SYMBOL vmlinux 0xbc12fd24 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xbc1a5f6f pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc38878c inet_listen +EXPORT_SYMBOL vmlinux 0xbc67efa9 dma_set_mask +EXPORT_SYMBOL vmlinux 0xbc6ca5dd generic_block_bmap +EXPORT_SYMBOL vmlinux 0xbc755262 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xbc76bc14 wireless_send_event +EXPORT_SYMBOL vmlinux 0xbc805358 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xbc8928ab compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbc9824ed n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcdd355c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xbcdf053b inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbce488f3 ata_print_version +EXPORT_SYMBOL vmlinux 0xbd02652d dump_align +EXPORT_SYMBOL vmlinux 0xbd0805a7 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xbd159036 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbd1ca02c d_add +EXPORT_SYMBOL vmlinux 0xbd2ef160 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xbd318ff8 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6f13a6 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xbd70cb55 inet_put_port +EXPORT_SYMBOL vmlinux 0xbd87d2f7 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xbdbe8e1c nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0xbdcdc778 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xbdd1eed7 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xbddb9270 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe008272 vme_irq_request +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe0b727b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xbe0ba2c1 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xbe138577 dma_ops +EXPORT_SYMBOL vmlinux 0xbe186aac dev_alloc_name +EXPORT_SYMBOL vmlinux 0xbe2a8272 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xbe3d7566 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe53820d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5bd6bc security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe71da07 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xbe784eaa xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xbe795c1d nobh_write_begin +EXPORT_SYMBOL vmlinux 0xbe7bb896 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe847436 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbe99ae12 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xbea06d7c netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xbebd6d04 fget +EXPORT_SYMBOL vmlinux 0xbee04600 processors +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef5c20c module_refcount +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf078190 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xbf1e6749 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xbf1ff4fc tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3ea408 devm_free_irq +EXPORT_SYMBOL vmlinux 0xbf3f5c93 __module_get +EXPORT_SYMBOL vmlinux 0xbf4797e5 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xbf69c9c5 nf_log_packet +EXPORT_SYMBOL vmlinux 0xbf72b970 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xbf754740 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xbf77d8d7 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9e8dd9 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xbf9fc684 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xbfa4c3bd __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc3f2fc cdev_device_del +EXPORT_SYMBOL vmlinux 0xbfc455e8 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xbfccc5a1 mntget +EXPORT_SYMBOL vmlinux 0xbfd0d8c0 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff05b75 input_unregister_device +EXPORT_SYMBOL vmlinux 0xc00b7bda __sock_create +EXPORT_SYMBOL vmlinux 0xc00bf756 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc021acc8 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc0267d49 phy_write_paged +EXPORT_SYMBOL vmlinux 0xc0287cc8 write_inode_now +EXPORT_SYMBOL vmlinux 0xc029567d pci_request_regions +EXPORT_SYMBOL vmlinux 0xc0520c3b generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc053b212 put_disk +EXPORT_SYMBOL vmlinux 0xc06607ca kill_litter_super +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc07d4f25 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xc08b3166 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc08d437d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc092fcb0 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b6775d dev_get_flags +EXPORT_SYMBOL vmlinux 0xc0bad67b blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0d49518 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xc0eb34ba __break_lease +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc112bbd5 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc1148d5f tty_write_room +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc1438898 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1adc677 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc1c3c8f8 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xc1d55b52 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dc932b configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xc1dd0a1b page_mapping +EXPORT_SYMBOL vmlinux 0xc1edb713 proc_remove +EXPORT_SYMBOL vmlinux 0xc1f15863 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xc202a69f tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xc218fb6b vfs_setpos +EXPORT_SYMBOL vmlinux 0xc21ccd24 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xc2220044 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xc228129e revert_creds +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24717cd pagecache_get_page +EXPORT_SYMBOL vmlinux 0xc24af58e kthread_blkcg +EXPORT_SYMBOL vmlinux 0xc25eafe9 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xc2662912 simple_release_fs +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc2865af0 inode_init_always +EXPORT_SYMBOL vmlinux 0xc2919299 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xc2934ded inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2aec8a8 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xc2bcb709 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xc2cb6fad dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc2e0713d bio_clone_fast +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e6e99f flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xc30151c4 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc301b70c blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc3202754 init_special_inode +EXPORT_SYMBOL vmlinux 0xc320908d vlan_for_each +EXPORT_SYMBOL vmlinux 0xc3212914 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3577a3d eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xc366bd94 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36b3e1d agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xc36cdcf5 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc395f07a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc39e2090 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xc3a552b7 pci_get_device +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c52d9c vfs_link +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc405b07c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xc4078dfa pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xc40d3b0a inet_del_offload +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42c584e tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc4345c1a remap_pfn_range +EXPORT_SYMBOL vmlinux 0xc434f3ca configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc4476026 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xc4498909 qdisc_put +EXPORT_SYMBOL vmlinux 0xc45f7a64 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xc4657fa5 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc46b9071 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc46ea080 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4aefdd0 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xc4b5b46c remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xc4bd916c ll_rw_block +EXPORT_SYMBOL vmlinux 0xc4d5ac68 tty_port_close +EXPORT_SYMBOL vmlinux 0xc4f1cfee pci_map_rom +EXPORT_SYMBOL vmlinux 0xc4ffc95c vc_resize +EXPORT_SYMBOL vmlinux 0xc4ffcf57 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xc506251b fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0xc50c991d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xc522e5a0 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc540a655 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xc54cc2d4 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc56c3a65 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc56fa453 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bb5729 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xc5cfe60c netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f07f6d clear_inode +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc60fea53 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xc6135983 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc6205525 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6264b74 phy_device_free +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6427be2 param_set_int +EXPORT_SYMBOL vmlinux 0xc649709a mpage_readpage +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc670241c sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xc675d5f0 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc676c9a6 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc683689c register_netdev +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc6a0065a genphy_loopback +EXPORT_SYMBOL vmlinux 0xc6a77a8f filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6fbcdd0 nobh_write_end +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70e3698 vga_put +EXPORT_SYMBOL vmlinux 0xc7137537 follow_down +EXPORT_SYMBOL vmlinux 0xc7148f25 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xc71788fd seq_release +EXPORT_SYMBOL vmlinux 0xc71b96ad kmem_cache_free +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc74db1ec blkdev_fsync +EXPORT_SYMBOL vmlinux 0xc75dec1b mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xc766949b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a522a2 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xc7b9c266 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7cbbcce dev_add_offload +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7df3f2c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xc806f4a3 kill_fasync +EXPORT_SYMBOL vmlinux 0xc8087da5 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81bd572 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc81d4a03 _dev_warn +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc826540c fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc828df09 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xc82d8ccd pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86521d0 pci_dev_get +EXPORT_SYMBOL vmlinux 0xc866e766 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc882d748 scsi_host_put +EXPORT_SYMBOL vmlinux 0xc8905334 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89a6f34 dqput +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8aeac41 vme_master_request +EXPORT_SYMBOL vmlinux 0xc8bf66a4 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc8d09ba2 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xc8df6e7a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xc8e89e06 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0xc8ea246f qdisc_reset +EXPORT_SYMBOL vmlinux 0xc8ebd8db km_policy_notify +EXPORT_SYMBOL vmlinux 0xc8fd32b9 kdb_current_task +EXPORT_SYMBOL vmlinux 0xc91b6a3d tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc92eda15 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9854b31 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc98d6f30 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc9a74848 input_inject_event +EXPORT_SYMBOL vmlinux 0xc9b85546 security_sock_graft +EXPORT_SYMBOL vmlinux 0xc9d0fbd6 dquot_initialize +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e436f4 security_path_rename +EXPORT_SYMBOL vmlinux 0xc9e988c8 registered_fb +EXPORT_SYMBOL vmlinux 0xc9eeb862 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca50ebf5 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca6b0464 noop_llseek +EXPORT_SYMBOL vmlinux 0xca7867ef inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca988052 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xca9999bd vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcaa1c9ed dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xcaa811ad vga_tryget +EXPORT_SYMBOL vmlinux 0xcabe276a ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xcac904aa ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafe1e80 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xcb0cb56f ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb43c337 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xcb655349 dns_query +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb800ab7 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xcb84e7ec pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1dedf1 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xcc1efa59 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2ae1b7 simple_get_link +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc39ec24 serio_bus +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc44f77a sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xcc498afd cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc591894 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xcc5a9afa inet_frags_init +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc900fd6 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce5f7e1 dev_add_pack +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccef390a sock_no_ioctl +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 0xcd0313e3 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xcd1a5388 find_vma +EXPORT_SYMBOL vmlinux 0xcd2363eb tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3cda59 dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xcd430637 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xcd4d09ab tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xcd54d137 sk_alloc +EXPORT_SYMBOL vmlinux 0xcd613afc dst_destroy +EXPORT_SYMBOL vmlinux 0xcd74b7ca __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcd781cb1 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0xcd81705e simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd9f08c2 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcaba01 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce06cab1 can_nice +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4a1552 fasync_helper +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5229df udp_disconnect +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xce671c75 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce795c2f keyring_alloc +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce7d267c is_nd_pfn +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce885ae6 __bforget +EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0xce966dd4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xce973470 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceab199d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xceb2fe57 vm_insert_page +EXPORT_SYMBOL vmlinux 0xcec4df9d seq_release_private +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcedc2871 inode_init_owner +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xceec93be to_nfit_uuid +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf1309d2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf28b586 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2aebf4 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf508487 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xcf738feb done_path_create +EXPORT_SYMBOL vmlinux 0xcf7c1100 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcf9c4e3b blackhole_netdev +EXPORT_SYMBOL vmlinux 0xcf9e42dd scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcfb3ea12 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xcfcedbb7 vif_device_init +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdb8aae backlight_force_update +EXPORT_SYMBOL vmlinux 0xcfe7e1fe block_write_full_page +EXPORT_SYMBOL vmlinux 0xcff76a26 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xcfff229f inet_shutdown +EXPORT_SYMBOL vmlinux 0xd0013222 udplite_prot +EXPORT_SYMBOL vmlinux 0xd0019ae3 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xd016b1d4 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xd03b3fb6 security_path_mknod +EXPORT_SYMBOL vmlinux 0xd03bc31c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0507994 current_task +EXPORT_SYMBOL vmlinux 0xd0530743 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd0571a63 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd070aa2c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0c38b8c console_start +EXPORT_SYMBOL vmlinux 0xd0d2d38e netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd0dca490 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0xd0e4c2cc writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0f96590 tcp_filter +EXPORT_SYMBOL vmlinux 0xd0fcf5bd scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1124388 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xd113fd5c page_pool_create +EXPORT_SYMBOL vmlinux 0xd11ea4c8 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd12d76e1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xd13323f2 param_ops_short +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1577e19 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xd15dbd0d devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd16a1787 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1958ad9 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xd1c4c3a0 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e4e425 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2105a4d sync_blockdev +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22aef34 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xd23cd0c3 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd249ddf2 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd2672110 seq_printf +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2a93c5c tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd2b0612d netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xd2bcf7ad bio_integrity_prep +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 0xd2f66578 to_nd_btt +EXPORT_SYMBOL vmlinux 0xd30368f9 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xd310a542 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd335f1c3 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3861deb elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd38737c3 pci_choose_state +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd3cb1982 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xd3dd0b78 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xd3e62a6a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd4027aca devm_memremap +EXPORT_SYMBOL vmlinux 0xd406af81 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4196a81 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd4253662 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd4580bd0 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45deaf2 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xd45f3b7c sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd47bf4b0 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48693a2 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd4a048a6 padata_free +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cc3e32 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d654c9 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd4dc50a0 d_make_root +EXPORT_SYMBOL vmlinux 0xd4e013d9 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd4e06d37 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd4ef0b5c nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xd4efacbd hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd4f5be0b serio_interrupt +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd507c6e6 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd513212c serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xd519d71c get_super +EXPORT_SYMBOL vmlinux 0xd51a64ff dquot_resume +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd543fed5 pci_match_id +EXPORT_SYMBOL vmlinux 0xd54486c3 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xd57d4d67 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd57e0ad2 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd5859c7a single_release +EXPORT_SYMBOL vmlinux 0xd594beb5 softnet_data +EXPORT_SYMBOL vmlinux 0xd5959624 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xd59bf1c1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd5b3b9da pci_pme_active +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c1d0ae phy_read_mmd +EXPORT_SYMBOL vmlinux 0xd5c8bb35 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd5cf4501 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd5dc7db2 param_set_ulong +EXPORT_SYMBOL vmlinux 0xd5e1930b __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd5ece228 vfs_get_link +EXPORT_SYMBOL vmlinux 0xd5f233e4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd609d67e pci_disable_device +EXPORT_SYMBOL vmlinux 0xd6269862 dquot_acquire +EXPORT_SYMBOL vmlinux 0xd6389cc7 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64917c0 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd64e7fe5 pci_free_irq +EXPORT_SYMBOL vmlinux 0xd6604b5f translation_pre_enabled +EXPORT_SYMBOL vmlinux 0xd661fe70 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xd669cc3e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd67f1f6e compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd6850167 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68d55aa __netif_schedule +EXPORT_SYMBOL vmlinux 0xd69afd47 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c26fcf pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xd6c4ec9a md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xd6c4fc8c nf_reinject +EXPORT_SYMBOL vmlinux 0xd6c65d23 install_exec_creds +EXPORT_SYMBOL vmlinux 0xd6c732a2 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6d8d27c tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd6e669ad discard_new_inode +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f33a48 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd708828b t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd717a389 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xd71964b6 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xd71d4cf2 block_write_end +EXPORT_SYMBOL vmlinux 0xd726c83c input_register_handle +EXPORT_SYMBOL vmlinux 0xd728849f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd734fe4f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73fa2dd follow_down_one +EXPORT_SYMBOL vmlinux 0xd7438e47 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd75aaa6e dst_release_immediate +EXPORT_SYMBOL vmlinux 0xd771a693 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xd78eb001 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xd79acbdf __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd7a8f69f vfs_symlink +EXPORT_SYMBOL vmlinux 0xd7ba93fb ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xd7c4369e copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d537e9 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e4374d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7eba50c pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xd7f229ad compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xd7f4a404 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xd7fd0dcb inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd81a4d4f configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd85b896d mount_nodev +EXPORT_SYMBOL vmlinux 0xd85f4fe0 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd863d84b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xd876d61a get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xd8839d97 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xd88e777e xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b0c72a agp_find_bridge +EXPORT_SYMBOL vmlinux 0xd8c106ae mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xd8c9d990 __ps2_command +EXPORT_SYMBOL vmlinux 0xd8cf5105 __d_drop +EXPORT_SYMBOL vmlinux 0xd8dd320d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8eff8bc buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xd8f83074 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xd8ff6a32 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xd9034931 vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9494eba input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd9568872 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0xd97c2f49 setattr_copy +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9900e2f blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xd99636b3 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b39e71 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9bf2d6b __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd9ce56c4 genphy_resume +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9df592d xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd9fc711c put_cmsg +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda2bda67 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xda35e36b agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xda3abfc1 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4d60b6 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xda53c5d0 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7b0f74 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xda823328 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xda89709b udp_gro_receive +EXPORT_SYMBOL vmlinux 0xda89e68d simple_rename +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda986ea0 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xda9a3edb __skb_ext_del +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa6ff50 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xdaae06d0 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xdac38c9c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad18a30 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xdad8536d dev_printk_emit +EXPORT_SYMBOL vmlinux 0xdae78a4a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdafc9f1d d_drop +EXPORT_SYMBOL vmlinux 0xdb0d8ec4 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate +EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xdb58075b filemap_map_pages +EXPORT_SYMBOL vmlinux 0xdb5e648e scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdb62eeec security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb724721 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb939a63 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0xdb962005 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xdbb9897d netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xdc0b2c7a skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc45ca17 kern_path +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc49e77a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5886e4 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xdc67ceb7 _dev_info +EXPORT_SYMBOL vmlinux 0xdc739f29 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xdc9759d0 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xdc9afa94 phy_connect +EXPORT_SYMBOL vmlinux 0xdcb8087b write_cache_pages +EXPORT_SYMBOL vmlinux 0xdcc02c97 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xdce03d02 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xdce28a2a netdev_features_change +EXPORT_SYMBOL vmlinux 0xdce2addd get_disk_and_module +EXPORT_SYMBOL vmlinux 0xdd143489 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2e408e unregister_md_personality +EXPORT_SYMBOL vmlinux 0xdd3643e8 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd709cf6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd97cb91 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddbc734f tcp_prot +EXPORT_SYMBOL vmlinux 0xde02af52 seq_vprintf +EXPORT_SYMBOL vmlinux 0xde146a3c vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde3ee387 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xde450055 seq_open_private +EXPORT_SYMBOL vmlinux 0xde4aa0b2 init_pseudo +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde577ca3 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xde736d67 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xde941bfd remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeae3d1e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xdec9772a pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xdecb83d1 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xdedfdec3 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xdee61587 complete_request_key +EXPORT_SYMBOL vmlinux 0xdeed55a5 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf17d9b6 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xdf2a9229 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf4a013f capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf72a0da csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xdf73c5b9 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8c93f1 devm_ioremap +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable +EXPORT_SYMBOL vmlinux 0xdfbbd5bd md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xdfc75669 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcddec3 agp_copy_info +EXPORT_SYMBOL vmlinux 0xdfd5b9c4 has_capability +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfeb4145 inet_sendpage +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe01b2bef __put_page +EXPORT_SYMBOL vmlinux 0xe01ee200 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xe021f921 make_bad_inode +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02ea8b7 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe0340915 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xe037542a blk_put_queue +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe04a9d36 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xe04b0639 phy_device_remove +EXPORT_SYMBOL vmlinux 0xe04b7c3b free_buffer_head +EXPORT_SYMBOL vmlinux 0xe065ce87 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe067f2f8 iput +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe08236dd udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08fa8a5 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe099cf7f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0ca39c8 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xe0d64b63 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe0d98d42 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12c1b39 dup_iter +EXPORT_SYMBOL vmlinux 0xe12f457a refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13a20a2 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe14b95ea free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xe154d8b0 km_new_mapping +EXPORT_SYMBOL vmlinux 0xe1793a5f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe1864110 skb_store_bits +EXPORT_SYMBOL vmlinux 0xe186add3 PDE_DATA +EXPORT_SYMBOL vmlinux 0xe19850d4 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xe19a9238 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe1b29f05 cdev_device_add +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e025cb simple_rmdir +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xe1f5e14a iptun_encaps +EXPORT_SYMBOL vmlinux 0xe1f75c3f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xe20d3993 first_ec +EXPORT_SYMBOL vmlinux 0xe21dd6fe sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2374503 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe25ce682 inet_gso_segment +EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe2620c4a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xe26b0aee vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xe27a744f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xe293aaea pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe2956c66 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe298cae6 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe2a1eb9c dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xe2bca943 bd_start_claiming +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dd63bc request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe2fb5202 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe306a307 eisa_driver_register +EXPORT_SYMBOL vmlinux 0xe315c857 read_dev_sector +EXPORT_SYMBOL vmlinux 0xe31e3126 sock_alloc +EXPORT_SYMBOL vmlinux 0xe325f4bc generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32bc337 register_gifconf +EXPORT_SYMBOL vmlinux 0xe33f67bf __register_binfmt +EXPORT_SYMBOL vmlinux 0xe3519afb get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe35a66e4 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xe35bd301 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe373a7e2 component_match_add_release +EXPORT_SYMBOL vmlinux 0xe3780330 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xe387e861 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3ad399a is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xe3b6bc60 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe3bb3a2a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe3d44468 unload_nls +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3e72d3a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xe404f1da input_register_device +EXPORT_SYMBOL vmlinux 0xe40811c4 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe40c90ea pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41c97f9 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe435c8f5 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe45ef3bc rt6_lookup +EXPORT_SYMBOL vmlinux 0xe4706d79 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe488edbb genl_register_family +EXPORT_SYMBOL vmlinux 0xe49a6073 simple_getattr +EXPORT_SYMBOL vmlinux 0xe4a50b83 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xe4c7fcdc blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xe4ccb06a qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4dc9d5f dev_set_group +EXPORT_SYMBOL vmlinux 0xe4e99157 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xe4f14437 iget5_locked +EXPORT_SYMBOL vmlinux 0xe4f14ba2 input_open_device +EXPORT_SYMBOL vmlinux 0xe4fae9f0 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xe50a7cf2 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5294a19 netlink_ack +EXPORT_SYMBOL vmlinux 0xe5527e3f blk_rq_init +EXPORT_SYMBOL vmlinux 0xe568d32b netdev_info +EXPORT_SYMBOL vmlinux 0xe5693529 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe56f666e param_set_copystring +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5823146 inet_add_offload +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5ad9427 is_subdir +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c817d5 sync_file_create +EXPORT_SYMBOL vmlinux 0xe5cbc5af __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe5da419d sock_no_getname +EXPORT_SYMBOL vmlinux 0xe5ec6332 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61848dd kernel_connect +EXPORT_SYMBOL vmlinux 0xe624cab1 sock_release +EXPORT_SYMBOL vmlinux 0xe65195c0 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe660f158 finish_swait +EXPORT_SYMBOL vmlinux 0xe6751bdc __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6a48d25 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xe6ac417e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe6b50c15 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xe6c09d90 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe706362c dump_page +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe71e4518 bio_devname +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72aa9bf zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7417ec7 kthread_bind +EXPORT_SYMBOL vmlinux 0xe7593455 netdev_err +EXPORT_SYMBOL vmlinux 0xe7628478 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78fa54e dmam_pool_create +EXPORT_SYMBOL vmlinux 0xe7926a82 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xe79c5bba genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a0596c xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe7ac3a16 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0xe7c7f2e6 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe7d2144e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7da874e fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xe7edb309 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xe7f0bbed fc_remove_host +EXPORT_SYMBOL vmlinux 0xe7f8b855 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xe805729e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xe8311443 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe8405471 skb_append +EXPORT_SYMBOL vmlinux 0xe85333e2 fput +EXPORT_SYMBOL vmlinux 0xe857922e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe860086a inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xe8737687 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xe892548d amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0xe89b4f30 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe89dcc6c devm_request_resource +EXPORT_SYMBOL vmlinux 0xe8add9fb param_get_uint +EXPORT_SYMBOL vmlinux 0xe8ade9d5 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe8c33cde jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe8c53872 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xe8cdc096 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xe8dab4e1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xe8db9b33 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9242b2a elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe93218f5 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95f49c0 udp_poll +EXPORT_SYMBOL vmlinux 0xe97381f8 proc_set_size +EXPORT_SYMBOL vmlinux 0xe97da9a1 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fd6509 get_tz_trend +EXPORT_SYMBOL vmlinux 0xea032b40 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xea06ad64 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xea09c279 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xea0abed9 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xea0ac867 sk_free +EXPORT_SYMBOL vmlinux 0xea161e15 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xea1843c1 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4b6c42 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xea5e72c0 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xea6dab18 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea713c52 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xeaa3675c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xeaa63a62 tty_register_driver +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeabb79be __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xeabfdb29 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeace9069 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xead7e301 __register_chrdev +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeaf979d0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xeb131882 param_get_charp +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2c964d kmalloc_caches +EXPORT_SYMBOL vmlinux 0xeb31eaf4 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3ab05c input_unregister_handle +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index +EXPORT_SYMBOL vmlinux 0xeb5e1c41 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xeb64ae62 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xeb678460 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xeb73cc5b zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xeb798ee9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8cb1ed devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0xeb99ece9 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebb85164 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xebb91a52 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebe39e72 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xebf2e899 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xebf71a4e bio_add_page +EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xec13bfd0 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec29fe96 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec30adaf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5b7b1f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xec5dfe89 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xec74e912 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xec7bd450 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xec8c5a9e security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xec8fae3a tty_port_put +EXPORT_SYMBOL vmlinux 0xeca05217 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xecaa5c48 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb33479 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xecc28f23 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeced3f65 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xecefbcf3 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0597a5 irq_to_desc +EXPORT_SYMBOL vmlinux 0xed12e0c1 udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xed1e6364 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xed271afc input_grab_device +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3dd6cb do_clone_file_range +EXPORT_SYMBOL vmlinux 0xed497114 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xed4b6957 d_splice_alias +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed55ff7f __phy_resume +EXPORT_SYMBOL vmlinux 0xed5ee2bd neigh_update +EXPORT_SYMBOL vmlinux 0xed603c12 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xed60a25a iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed74a82c phy_write_mmd +EXPORT_SYMBOL vmlinux 0xed7df009 finish_open +EXPORT_SYMBOL vmlinux 0xed9119cb nf_setsockopt +EXPORT_SYMBOL vmlinux 0xed9e9042 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xeda33c66 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xedb016ef put_tty_driver +EXPORT_SYMBOL vmlinux 0xedb06750 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xeddb69ec dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xeddb809b skb_find_text +EXPORT_SYMBOL vmlinux 0xede25c7e __close_fd +EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put +EXPORT_SYMBOL vmlinux 0xedf8e94d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xedfd85cd vme_init_bridge +EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9413b4 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xee96bb5e vme_dma_request +EXPORT_SYMBOL vmlinux 0xee9f35e8 neigh_lookup +EXPORT_SYMBOL vmlinux 0xeea01b40 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xeeab5103 __put_user_ns +EXPORT_SYMBOL vmlinux 0xeeac4acb simple_open +EXPORT_SYMBOL vmlinux 0xeebdfbec phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xeed6ed8a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xeef0f099 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeef38c1d pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xef150a10 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xef4e5107 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xef5293e6 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xef8188b1 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefaa412c ether_setup +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb94d69 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xefba8899 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0381b35 read_code +EXPORT_SYMBOL vmlinux 0xf051627a generic_perform_write +EXPORT_SYMBOL vmlinux 0xf05348e0 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xf058d3b0 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xf0590721 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0753e61 napi_complete_done +EXPORT_SYMBOL vmlinux 0xf075c56c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xf08b92f4 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf090ea0b bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0be6633 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf0f0948a dump_skip +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf18f05de devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1bb73f9 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xf1c1d22d scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xf1c8f63f eth_header +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dd510c fb_pan_display +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f9a80d pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf2198be0 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf243b0f3 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xf243f75b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xf253dc57 load_nls_default +EXPORT_SYMBOL vmlinux 0xf26d0c90 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xf27f5621 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28ba0d5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf297c4ec neigh_for_each +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b016ca blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf2b70f88 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2be9e42 block_commit_write +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cd4a5e mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xf2e5336b pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf307d57e skb_checksum +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31d39dd md_write_start +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf336cfd1 dquot_get_state +EXPORT_SYMBOL vmlinux 0xf345de37 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf356d4f2 dput +EXPORT_SYMBOL vmlinux 0xf35f9ee6 km_state_notify +EXPORT_SYMBOL vmlinux 0xf373cb97 param_get_byte +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf39150b7 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf393d07e generic_file_mmap +EXPORT_SYMBOL vmlinux 0xf3a070cf _dev_notice +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b7f797 param_get_ulong +EXPORT_SYMBOL vmlinux 0xf3c4cada filemap_flush +EXPORT_SYMBOL vmlinux 0xf3da25c4 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f287aa ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc +EXPORT_SYMBOL vmlinux 0xf4101367 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xf429eab6 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf43e9494 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf452dbac dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xf4562087 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf467f9b9 tty_port_init +EXPORT_SYMBOL vmlinux 0xf46e0a36 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c588ab xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dca697 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f24fc0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf4f2a15a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf4f6f696 pci_get_slot +EXPORT_SYMBOL vmlinux 0xf516fa6e vm_map_ram +EXPORT_SYMBOL vmlinux 0xf523303f mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xf527b19d alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xf52ce6ff jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xf52dfac6 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54b2326 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf551908a genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xf558682b scsi_add_device +EXPORT_SYMBOL vmlinux 0xf55a38ba security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf5670dd6 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xf5711053 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf57b057f pci_set_mwi +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5ae8f72 nf_log_set +EXPORT_SYMBOL vmlinux 0xf5c48367 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5fe0d12 inet6_release +EXPORT_SYMBOL vmlinux 0xf5ff5e10 fb_set_var +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf65673c5 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xf65828d7 mpage_writepages +EXPORT_SYMBOL vmlinux 0xf660a6f3 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6a2aee1 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf6d60a6e inet_gro_complete +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf71ea6d6 pci_request_region +EXPORT_SYMBOL vmlinux 0xf7256741 phy_print_status +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf745c943 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xf7486926 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xf748be01 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf773747b amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xf780b295 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xf7899a10 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xf789ecd4 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xf78db032 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf79ffc1b fddi_type_trans +EXPORT_SYMBOL vmlinux 0xf7b7b183 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xf7c1216f skb_tx_error +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f41961 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80ec498 simple_unlink +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81b8e94 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84eb6cb mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xf84efa23 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xf86510ba sock_register +EXPORT_SYMBOL vmlinux 0xf86caf20 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf896921d dev_remove_offload +EXPORT_SYMBOL vmlinux 0xf8a368cd xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xf8b7425d alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bf55ed input_release_device +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8ebc751 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf904be95 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xf90e569d set_create_files_as +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf91d64f5 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf95e8fa8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf95f39d6 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf985a0ba __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0xf989204b bdget_disk +EXPORT_SYMBOL vmlinux 0xf98edb24 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a9d9fc __ip_options_compile +EXPORT_SYMBOL vmlinux 0xf9adfeb4 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf9af4cfd tcp_ioctl +EXPORT_SYMBOL vmlinux 0xf9ba1d93 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9cb4387 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xf9d568bc noop_fsync +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa130470 blk_register_region +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2edf1b pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa4ae051 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xfa58e38f ip_getsockopt +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa78b8c6 pci_request_irq +EXPORT_SYMBOL vmlinux 0xfa7f5210 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfa8263e4 fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa958ba3 agp_create_memory +EXPORT_SYMBOL vmlinux 0xfa95aecf acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xfaa6c025 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xfaae8c43 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xfab36a19 read_cache_pages +EXPORT_SYMBOL vmlinux 0xfab7928f pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xfabcbeb3 submit_bh +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfae68392 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xfb1ed9c1 file_modified +EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb44341e rt_dst_clone +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbafa2a2 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xfbb51500 register_netdevice +EXPORT_SYMBOL vmlinux 0xfbb7b2d4 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc03f01 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbffb48a kernel_getsockname +EXPORT_SYMBOL vmlinux 0xfc0740b7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xfc0a3da7 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xfc100cb6 _dev_emerg +EXPORT_SYMBOL vmlinux 0xfc3220cf vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc4b3138 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xfc61fc19 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xfc67a508 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfc7a5511 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xfc7c3b48 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock +EXPORT_SYMBOL vmlinux 0xfc7fc20e param_set_charp +EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type +EXPORT_SYMBOL vmlinux 0xfc8e3f53 ip_frag_init +EXPORT_SYMBOL vmlinux 0xfc8fbb3b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcb27e83 do_SAK +EXPORT_SYMBOL vmlinux 0xfcb7545e pci_remove_bus +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc8bc5d write_one_page +EXPORT_SYMBOL vmlinux 0xfcc9e78d __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce9c531 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf38d93 pskb_extract +EXPORT_SYMBOL vmlinux 0xfcf39397 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xfcfac771 bdput +EXPORT_SYMBOL vmlinux 0xfd0ddbcf set_disk_ro +EXPORT_SYMBOL vmlinux 0xfd1b2ee2 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xfd3d83bd nd_device_register +EXPORT_SYMBOL vmlinux 0xfd47d023 __lock_buffer +EXPORT_SYMBOL vmlinux 0xfd4ef42a param_set_bool +EXPORT_SYMBOL vmlinux 0xfd7db599 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xfd8dbfb1 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd94814e complete_all +EXPORT_SYMBOL vmlinux 0xfd9e4a73 sk_dst_check +EXPORT_SYMBOL vmlinux 0xfda43eb1 build_skb +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd3b8fc bio_reset +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfddb9b93 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfdf2ad87 vme_register_driver +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4ed19a netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xfe58646f current_in_userns +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5f4564 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xfe7526f0 vfs_readlink +EXPORT_SYMBOL vmlinux 0xfe897526 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xfe8e01f9 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb53349 register_md_personality +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec3c561 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee28abe dquot_quota_off +EXPORT_SYMBOL vmlinux 0xfee9805a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff03ffd0 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xff0a4a9d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff285c17 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xff3003ba __frontswap_test +EXPORT_SYMBOL vmlinux 0xff3e5f1b param_ops_bool +EXPORT_SYMBOL vmlinux 0xff5e354c netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff689617 fs_bio_set +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffac9b94 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc5147c input_get_timestamp +EXPORT_SYMBOL vmlinux 0xffc6df9f update_region +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffd2a745 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xffd76f38 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xffedccb6 __scm_destroy +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffc0291 dma_virt_ops +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x19711697 camellia_xts_dec_16way +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 0x6f3a8de5 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9e0a3594 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr +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/glue_helper 0x46e4a431 glue_ctr_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x7a43e399 glue_xts_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8b7376d2 glue_cbc_encrypt_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb8a24bbc glue_ecb_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb93bcaf9 glue_cbc_decrypt_req_128bit +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/serpent-avx-x86_64 0x51c5797f xts_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc +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 0x2c7b3458 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way +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 0x0019cd95 kvm_mmu_invpcid_gva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0048ead4 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01306723 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x051ac704 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05d71a64 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x073d184c __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07bba8d6 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08fac799 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cad32a6 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d16fdd7 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ddf18fc gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0eabcc30 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1035a9e1 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x137e2a79 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13827640 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13e558e5 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x187bd4fd kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bc12420 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c092e30 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1defc33c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e7e7ff0 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f273dc9 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x208eaf11 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2400729e kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28ab52e5 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x291cfd9e pdptrs_changed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6942fa kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d4c675a kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ecf2c2a reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f5d64d2 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308f4a9b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30eac3d7 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30fbf56a kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31caa050 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32b97a04 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33d04876 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34544d08 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34f0f59a kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35961610 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3640cd4b kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36b4c8d9 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38421d07 kvm_load_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x391c5606 kvm_can_post_timer_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39b7e90c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a0a3eaf vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b2ae682 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3beb4fb0 kvm_mmu_new_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c1ecdb9 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f3d20e4 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40066459 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce5072 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42ce2f9b kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43045d19 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47cbc5b3 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47ee7b34 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b2e16b4 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b598db5 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b61cc35 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c4e1c8e kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cac76bf kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d3418f9 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e81cc82 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x509572b2 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5258d742 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x548fe2b0 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x549febb8 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e54a35 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x571155f7 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58bac5f2 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59d9b01e kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59fdbd57 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5aaac965 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c828a6e kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5da1a624 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e5d38f7 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e7ef11a kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60534882 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60ec6393 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62ca5854 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x645c0cf5 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67803331 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67aef274 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68424ae1 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a1c15d3 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a47e69a gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71ba9bc8 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x726526e8 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7468d2b9 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79defff9 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a2fc4ac kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a341eec kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c7a25de kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ef7fdca kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f078ead kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81901fae kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8267853b kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x829e11f2 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8347fd0e kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x836fb68e kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83dc663b kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8456c2b5 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85e07563 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867b1f90 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8852f40c kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x899fd58e kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c52eeff kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ccfeb28 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d534299 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8de4a36e kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9061d2bc kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95af7fb8 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96d9c528 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c612083 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c9e6084 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ebe71c7 kvm_put_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f1ba301 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0e22324 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1135ca1 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2a9d32b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5d5e711 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9fb072c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab8fbd58 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab9c0e8f kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac8fb9c2 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad31ceec kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3cb8df kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae025066 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaed4a2a6 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafa4e008 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb313681d kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3d31b7f kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5cb0727 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ef5536 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb764b93c kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcd19ee6 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbde7dc6d kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d976b9 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4d867df kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7c33e05 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc86ae0f2 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd315bff kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd7b626b kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcea6b034 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1cb887a kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd522a574 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd53190b5 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6554a31 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6672d98 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd69c38d1 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9fc0753 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda459ec4 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda986c71 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdba3b488 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc36b742 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc96cc84 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde3abe54 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde8a7a7a kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0891f8c kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe13e688d gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2204230 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe520a5b5 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe532e457 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55c8658 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6df4416 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7329405 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7a264a0 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe800591f kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe88713c2 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9a9ed08 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea4ce63b kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec28632c kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb6e1cd kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeda6854c reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee7e3a91 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0f6d23f kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf17e6be5 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2703e51 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2a952cf kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54ca7f9 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf64563da kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf98a201b kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe2d6606 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff3a5555 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL crypto/af_alg 0x19238e18 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x226d25e5 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x4770b5bd af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4d4dc402 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5450e00e af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x561cb03e af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x65264b2c af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6f806922 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x733b19e9 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x74da5f88 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x832900e8 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x894cf3eb af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xa359567a af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xce343912 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd163b0fd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd1ccbf91 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf34c9ae4 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4a1c138 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x8d1711d3 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcd46020a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbfbad678 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc558bbdc async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x775ebd97 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8ccf4eb3 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x39a1e968 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5a7d96a6 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x80ccff90 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb58c90fc async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x03adad2c async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe55b6c93 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xcf7f05c6 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x246ee2f7 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1d8fa896 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x6d849f8d crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x99640d64 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x9d9ac7a6 crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xc4102d75 crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x050ffdb5 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x22b785b5 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2d1caeca cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2e3ab495 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x30d4d308 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5037ccd4 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x700e9ade cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x760c0492 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8829308b cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xace7e274 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xbaa4b254 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd20b488 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd2fc5f7 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x17dcd601 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1d2fda1c crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x30c604b9 crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x754151d0 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x79731cf1 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x82f4f74d crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8aa5db14 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8af8565f crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x94ab005e crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaaef6f1b crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7d093bb crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc92957ec crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc6fd2bb crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xedac64b0 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4435d52e simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4db5ad58 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x85f08201 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd8b79e08 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x14562486 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbefce2b3 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd5f2a4e6 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xa1c3039e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x6b743892 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xf649103c crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xfd396340 crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x089adfa7 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0dd02a40 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1376b755 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14ecd15b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x18647ea9 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x261fd700 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x330c84de ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34e41fb5 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x398079e1 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x50aed22c ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x542906d1 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7625d98b ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x785533bd ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x831f333f ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8873ca23 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9de5aa6a ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1cc0b46 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa46f2e31 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xabfab848 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2007911 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb6ba64b4 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7ffbd49 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc676b9f1 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd2e1eb43 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdcd58a94 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x002df0bd ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x049c7ef2 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x13662286 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2170e1b0 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x22793b96 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e5a746f ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7c8c68cb ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8fd8214b ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x947a167a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa2b2a8f6 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb882b530 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc612949c ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdddb3b3d ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe731ec69 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe871fb0d ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf7c83772 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf4a5ee3c __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x2a5cc982 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xbcab7a3a __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18ca2641 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dc9e556 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x289aacde bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37165a85 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384d5d44 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d9bdcca bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43ad165d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x446af4c2 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50c2755c bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51e2c5f2 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f466b66 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60aa77f0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d2188b8 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x977f36b7 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97979f4a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99c76147 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1daa0ae bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2315a2e bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbde3387b bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc0a95a86 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcbf94174 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7e4dd96 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf987dca2 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc7f1d27 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x03fcc092 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x05deee38 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2e757c78 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x33d49c5f counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4df6b396 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x557d62fa counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x662ca2fa counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6786fa42 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7dbd2eee counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7e80365a counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x923433cf counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x954ebf28 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9b1da263 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +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 0x4cbdc4db 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 0xb79b4631 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x000b1e20 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00ae1046 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x077b36a1 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c491a3f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0cfee43b adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1459e3e4 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1612ccf7 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e2e9e91 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23ec1977 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40231ae2 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44e2796f adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5166628f adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x54c34fe7 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56c3bb33 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x570eb9e4 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x57f94e88 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7064c988 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74ff89aa adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x75660dc2 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87e95f58 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8baf31dd adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d6df9c4 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ef8053c adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9db96904 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa73a33f9 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8d0a605 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xadf537d7 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc492b73e adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc847ed21 adf_cfg_dev_remove +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 0xd722ca30 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xda32089a adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdc3a523c adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0d69ca8 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xef067d8d adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefeebce6 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf9d5ff93 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbc1d6dc adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfcdec505 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x02f002a7 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x1bba847c dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x6b6e11f0 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8aaf4ec8 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa97d7789 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb96ff6c3 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc29e78ed alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x3c626b88 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xf922c6ce dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2419e99b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x320ed157 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x599423b0 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5ca48565 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6db8ac87 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbae5a489 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdf184719 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0c9955af hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x1393f9c3 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x5ee7d350 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9f0909d3 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x71d0e3e7 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x932e64cf vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc4f55c95 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe7e8e563 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe8b7361b vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x2b77b95c amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x139dc4ce fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2dee0205 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32d12d51 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a81bab4 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x788c390d fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80089047 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9f9508f0 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xba25a000 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc647a07f fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc866d342 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3226285 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd765ddc9 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe03e07ce of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0b68377c gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x109ac10a gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x15214f72 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4c021196 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcc1987a4 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x58936e39 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1a0281c7 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf384be20 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x308980a2 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a70b974 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ce921c5 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a149c29 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ddaf9a4 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f53dc62 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f68e96a drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87b089de drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x880f45b4 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9292499f drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa77fee68 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9345197 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbda00b99 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd5b84b0c drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbfc6af0 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0b7704f drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfeb34883 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x29b83b7e drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a5b59ae drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6011f994 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x68723055 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x99c91dee drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9a3c51a2 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9e5a04ba drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x76f2aee1 intel_gvt_register_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x41b2862f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd4efe991 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xf67ae319 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x084792fe hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b6af88c hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bbe4280 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0de25f17 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x105a11dd hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x183cb22c hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b468338 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c2bac4f hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41ed5e13 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55ee96a7 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58492e1c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c3264f8 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cdd32fb hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d444924 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d72539c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x611279af hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6125cfb6 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x616db1a6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x634171a4 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c061249 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7683ead2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c5356d0 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83dfa17d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b20c275 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cc3f9fc hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8efea68c hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9712f17c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9974c2fd hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b1f69b8 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ef12c5f hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2e60c24 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa49348a0 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb03a328b hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc128dce hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca4f1e05 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcae18b93 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd75f47e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdc18c35 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf7dcc4d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdddebbbf hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe314125f hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee93dc9b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef07a333 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff6c75d3 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x17010f46 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x810acbb2 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x82a003f4 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x89e26c86 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb5370458 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb946684c sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe0d25f91 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe60a8115 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb4975f9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x459e8847 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x78a669a7 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x885bbd4a adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf5305cb2 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9dea4cc0 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbee8c0b0 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe3a9589d i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xbc3d011e nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x04734fe4 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x138e31f2 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x181ac9ea i2c_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x210213ee i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2fba37b0 i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x36df119c i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4d86aa0a i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x51fd4989 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5bd11237 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x60806523 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6f83abec i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x74b24998 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7eb80299 i2c_new_probed_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x896cef3b i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9557addd i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x99dfd31e i2c_new_dummy +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9d936269 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa10e44f9 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa8c94513 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xba4f1052 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc926290d i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcc86d63d i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcd7b2837 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd6f0b52b devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xefc10c86 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf713e99f i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0ed89128 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x27467c35 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x351a67ab i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb1315234 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x315c7696 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1446e2ca i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x175618b4 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26c9ca3d i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26f90d8d i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f103e12 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x489928c2 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a5f1218 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bdeb629 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7d3b059a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x86f6dc2d i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x933471bf i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x975def9e i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x987bdd02 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f9f2ecb i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa787d31f i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xadfcad20 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb338a517 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9282a38 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcd6574a2 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcf8691fa i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdfa1d965 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7ae3551 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee454f9d i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2ff06b0 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc388e97 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x66240b68 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3e08a2d0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x33c90cce icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x3d3b9509 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x5585870e icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x5757efc9 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x621f6f97 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x65514f3f icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6a546085 icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x745409d7 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x8037b4cf icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xeed83802 icc_provider_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b57fff7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3205e670 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x53f050ac ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x721b7030 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8df3f401 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb62c7120 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc324b6b0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd69f3556 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe7b469b3 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x3fbb3c07 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x4e0bed45 led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x5f98da1d led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x7a40a14e led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x8890b2b3 led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x8d3ece9e devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xcc32c32f led_classdev_notify_brightness_hw_changed +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/mcb/mcb 0x1c856134 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x28ebb5cb mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x32bd361a mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3bfa3913 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4b0f9f12 mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x75f300d8 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x79e66774 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x94bdb249 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9a3ac2ed mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e9ce8e8 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa6231cf6 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcfd43aba mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xda3d91b5 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe8d5cd7b mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09941c9d dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x191d1a8f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1cbf3c6a dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26b5a9a7 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5015558d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x512cf36a dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5feb0bc8 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6673b7ac 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 0x8d44683d dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x94d950d0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9556569d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0373056 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa5e63006 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbd0ed57c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd76bdf92 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2003813 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfb0fb55c dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ed88a37 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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-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 0x709a5e21 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe29e6a72 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x233c7ea0 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3752f668 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 0x0fd13714 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 0x3916b376 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3be88524 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4ddabcc6 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 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xceedbf48 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe864f502 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 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f05ee2d dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0872c63a rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21489378 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3514caf2 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36bda49b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x48af4446 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x520318c9 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c1b7ed0 ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c976acc rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fe98f48 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x654e2882 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81fba0f0 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b96f601 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9118f78b rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xabe6ad21 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf7fc6e2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea540a6e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf172e31e ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf175c86e ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2654f1a7 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5cc75dba pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe2c19087 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7bb33439 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x921c75f5 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa0fffd88 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa9ebed97 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb3de9948 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1ae23840 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5c4c204f lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb7cac465 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01b83092 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x24a80ce3 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x26097334 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x275228bb cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x275ff4fb cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x421d62ed cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5851f44f cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x646735b7 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x646ae9f7 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x742d00b8 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x840373b3 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x840eaff3 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x97faef86 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9cd60403 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9cdbd843 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaea49f7b cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaea9433b cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb382684e cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb38fb40e cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc7366ebf cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc73bb2ff cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdfe3190f cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdfeec54f cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed918277 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed9c5e37 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedc8d9f6 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0b77542 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0baa902 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0047b515 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1248407d mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x52f20b5d mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c2bf485 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbe2c7620 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe6657063 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03dc5e01 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0be718b0 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b525e4f pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x47e55c1d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x573070b0 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6c2f7778 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x747b48b0 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x89848f91 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9338c363 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9c68822 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdff41f29 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7953e9f1 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9d32ea99 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x29c56a64 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x66abd01d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbe497351 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe046493c pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff3389db pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x70a0c881 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x85f24f3d sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb3ff7513 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe68dd44e sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xeba5ee86 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x326d5d05 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7a08bb61 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd106f421 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdc450096 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1bf7c13a alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1fe607d7 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x26f150f7 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4380508a alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6a706c6c alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x70098bb4 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xba38b7ab alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0bf44482 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x12761941 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1a989f71 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1dad9796 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e77cb93 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f568f34 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x36f64e93 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x54af7fc7 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57d6b8e5 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x67f8d997 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x870df752 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8ddc836e rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9127ad86 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9cd642d6 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7233417 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xabb6c76b rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7ab95ce rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9691101 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcb7c19eb rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd10c115e rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd84e8e5b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd86e3aa7 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xec00cb23 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfab8942f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x092034a1 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x26e89b40 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a464c3d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x64c0d2f4 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x778db066 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7bc73126 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbdf699d1 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6ee588f enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x01ef4062 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0950817e mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0a8d9663 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x26ad9b34 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4b4f6bdb mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4bd2e2f2 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5098eec5 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x541f7e3f mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x58f3b7ce mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69a9390a mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d8219ec mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x73602a0a mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x78be235d mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8c99567f mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8e9ba5c1 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9195cd72 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9663b990 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2124349 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc081a4c9 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5832e7e mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc743766b __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc7acbb7d mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc85199f0 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc96cdaa6 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd32238c1 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe37acd1c mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf9721249 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa1b45ac mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xce873d84 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf8f10f7e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x052f467d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x23e079a1 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x46e07c8c c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x50954ead unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8237b614 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa25c1bf0 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09036167 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a90f821 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b1caa62 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x225359d7 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ec5d9ed can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44def770 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4be114ea can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d40bddd register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51c25e3e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5a8e5059 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d6ba2c9 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8d72dcd3 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e150179 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9643843d can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa593ac58 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa08da28 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6429af1 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9ac16e2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc38043de can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8e524d2 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9a07df6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5bc1f20 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde59355a can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe35b9f74 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf75e918b can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfa6ff1b0 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x283e8932 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x53e2fa61 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5b1cdc34 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd5521139 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x4cd09253 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x00740f52 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x10f5441d ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x18ff39a3 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4309df6a ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x45e750ca ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x591d424f ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5e466d4e ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6308020f ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67025f05 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9fc2da30 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb2f15902 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc01f94b5 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe6f17913 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xecbed186 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf0912b0f ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf511f944 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf8059a8b ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x07da0f67 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1507e8aa rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3ed2d1dc realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4dcd7f06 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x61248903 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x62c985df rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x66c9288e rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa86bcc63 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xaa143adf rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xac9649e4 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb40751ee rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbfebfd49 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd9d4d7f3 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xee9cb268 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf18bc8b1 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf4c0cd88 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03db9e69 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0691a645 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091986e7 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x095907ef mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b877c41 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17059ccd mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x191764b2 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b983cd0 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e04e887 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3984b7 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e66407 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x256c309f mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab317f4 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad01c5b mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d8570ee mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e72077b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f95b35c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31e594c2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x367e7c3f mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3908f5d5 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a012e47 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3acff1fd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b3dab75 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b5d21b0 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c477497 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dd79421 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x404843a7 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42cd2005 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c7737c mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ec3473 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x486beb08 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488f012e mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a1a4856 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a7851ae mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dff5a10 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c8796d mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5121031c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51bf7451 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f6df56 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55b0366c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57c7030c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57d6be71 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587f6257 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b354cf2 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de01df6 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df73f7b __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5332a0 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6124b27f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a83b36 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64d4e43e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c181d7 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e77685 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68450a4c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e717da mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bb2b125 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d2d9a8c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7d41a4 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb12fce mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x783fc02a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78d745d4 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dc557ff mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e473e78 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d874ba mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x830e8c4a mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a44e954 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d45fb7d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d66d41b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f4f620f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a8d137 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933ed599 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9670ad48 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96fc1796 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e615afb mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0f914bb mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4628d81 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e9a7ae mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa676d084 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa91b0137 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb7f68f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad466786 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadac1409 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0735270 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb38a73ba mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb403988e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a4c871 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb33ddf5 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc3dfc3 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc04a2680 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc346716e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5dcadaf mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc768eb74 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc860cc99 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94d2102 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d0c2e8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf84964 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1132739 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc6819d8 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc977063 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddd32832 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddf47c6e mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe031de9d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e3e8b2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe53bf7a7 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe60d7252 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9255b89 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea2458e0 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaf8c4f5 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec80754a __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed49257d mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed963150 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefda7036 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf03145b9 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf06b14b5 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0b00ddc mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf255bbcc mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4d6829d mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5103fd3 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf535adc1 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf60b21b0 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf76940af mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf840290a mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b3f664 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf92c8d31 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd674bf mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff0e6c2a mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff142237 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0112949e mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0621bf8b mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06fa4d91 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x085db5f0 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b2332fa mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cb15ef6 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15495c3d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17806cc5 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18715068 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18c6c3de mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a026085 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc872c0 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd0a592 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217248fe mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x245f6623 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26297b81 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x278f389b mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d55002f mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x314e8506 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3277b929 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c23ff7 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d496a0 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39a21dd0 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f35305 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x430c352d mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4837057f mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a7421f8 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf1c294 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9a94b2 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503671d2 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52142289 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x560774ea mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c795a5f mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eea8c4a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f87900e mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63142990 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d5b8edb mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70d63b73 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x743199b4 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74657c90 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a0b42b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753851f2 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76f222df mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5e981a mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b43a33c mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b7b6548 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7df8af5f mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a69bd2 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a71fe5 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83e7db44 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85dc3114 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x868bc68e mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0fcec0 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fdbed2e mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffa2ce5 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947ebe70 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96107deb mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f786ec9 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fa43d8d mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3446f6d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab034d83 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad09ffb5 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0023f8a mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb33d5f3f mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4349519 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb480d51d mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcba1d37 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc10faac5 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3da2c95 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c7ec70 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb81e10b mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde9d647 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce86ec80 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda0040e9 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcf20fa1 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddca3cb9 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdff770d1 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3063ca5 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ea8234 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe818cdf6 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2683d1 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3d445d4 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6be0e6c mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75aab15 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff247818 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6af6d74b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x010e1d8c ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x02bb8145 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6f214733 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc00a075b ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd1c6075e ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2bf69f44 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3c2e30d7 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb756b552 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc582df44 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4fc07e60 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa492c553 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0468a0be bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c9312eb bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x143c8de7 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f43ef26 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e03025c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5840307e bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6045e780 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b040532 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c766de6 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cf599c8 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x904ee2ae bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc66a8ff bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd57c71cd bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0941315 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe24dbad9 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6529695 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7c9f9a4 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf82b6b16 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x951a351d mdio_i2c_alloc +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbab83916 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc97905a1 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd50f1af0 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdeb60e85 phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x079ee90d tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x08ef2bc2 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x4b82b096 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5706c341 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x59d3dfa0 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x78833a9d tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xa71edc9f tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xeaba12df tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xed637ea5 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xacd923d0 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xad19d1d1 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb08184af nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2a40a4b9 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 0x65416b6b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x95aced93 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x6dfadad2 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xbeee1999 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ce8d0f0 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1655f9fa nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3bcd0948 nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4d4cf3bc nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5caee0c2 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6f7ccdd4 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7c7c1051 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x810655a8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa35605ff __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc9d36196 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd9989425 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdbd14ff4 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x9c918692 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c861ea3 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2b6e84ec nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4b4de9c7 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5c6fda63 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x66e8bd29 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x862b5e58 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x962df1c6 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd87f1e40 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdedb5e65 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5192292 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0a207ae nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +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 0xeafc3751 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xd228389a switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x31469810 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x6a5df63c intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd6f0223e intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xf6e54a68 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x43b01d0b dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x49b5d7df dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb1bb12b7 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x66b8e9c7 isst_if_cdev_register +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 0xc6d7d944 isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +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 0x23c9daa9 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x66200466 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc0d8c586 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x20adb582 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x939b0b92 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9ed7e499 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03c0cf63 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x092fd60c iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x152722bb iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19606a6d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19b4b4d2 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cf2a8fa __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fb55779 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20291864 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x394cc43b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4230ea7c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x490d2c64 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bb32710 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63df9377 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68e28d9a iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x691193d3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f7208bc iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x767746ad iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78365303 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c864753 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88dec39d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x896eb683 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ba50bb7 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bba880a iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f405262 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x927b4051 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93a466bc iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c43882 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9681eff6 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9eb1c53e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0d26a05 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3d01e21 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23f0f8d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdd7fac5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4c619a9 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5e2aee2 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7707cdb __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd81bdd0e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8553faa iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeee2e846 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf82bafec iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9955bc6 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe0bd2e2 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x078885d0 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ff6edd6 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a800e36 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e6b0b5a iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a121bf1 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f768497 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3417f028 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57dd26c1 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5dcf5d4f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f197476 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79396604 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c6cbdec iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa58918f4 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6542ec9 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf8df810 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb29f953 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf27c605b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x050d0751 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11d4bfa6 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3cc31a97 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d0a1c82 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b24c145 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59ce342c sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65d5abb4 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b29da55 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e93a626 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d679854 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x889e3248 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e320a63 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f3fa399 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaddf3d6d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd1d26fb sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf47e4fa sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6369281 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd08af1b4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6662918 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb8681c2 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdbbe7df7 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf2b785b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe07bea3b sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf133f2cc sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfda29c71 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07b65bbc iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c8904ae iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x130e5014 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ac905db iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ae9d286 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cafdad2 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1dcd5fc5 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21c1860f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x237b03e8 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2427fc22 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ded0f30 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f80a910 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30b4f7e1 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3eb20eb1 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49426b71 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b2eb29f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c36e8d9 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4eeef662 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58bac252 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ee82981 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f10d32b iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70d8f7ed iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x786de9a4 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fed395e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85231cf6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c91f5e0 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b7518af iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3120081 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa83f70e3 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8fbddd4 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc6d4cb1 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe0551cc iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc497a4a2 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9ed5531 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3e9ac0a iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3ec655c iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe44fc0e5 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea5cba5a iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee2d1369 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0024b2b iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf004859d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0aa347be sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x75f91cbb sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x83e7b37e sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcc674bc5 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf87522e9 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x15482003 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb41c92a7 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbed71842 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc5746ff9 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcdcaf40c srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd2dde352 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1e847ee0 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4e0b92c6 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6c52be89 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x90a455a0 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbe05610f siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd1fdd36f siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01caaaa7 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x29599ce3 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x36dfdf37 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e6fc7b9 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4ed4dc2b slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54094822 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59c305d5 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6e3386bf slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6e9a16d2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7636f137 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e430660 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9a9c3bfc slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9abae7c3 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9bdb607b slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0a85884 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd49bf083 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd85ae00 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe3c620f9 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe522830a __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9d5413b slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec6ac57d slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee709c52 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeffa8bef slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf35f8294 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaac0c85 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfcb66472 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4591079c __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6f26fa97 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x753ece3c sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x08c572e2 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x18df60a1 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x54e940a3 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x687648d9 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7c6583a9 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf5fa1378 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x120c92a2 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x170c51dd dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1cd7eb1f dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbea647da dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xef367677 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x24cada62 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc6fcf77b spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe7635a9f spi_test_run_test +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xed7a4ea8 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3cf16b5b fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3ebc2470 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x50e394ad fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xed40a966 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0d0cbd19 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0e155a63 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0ed4b1b0 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x24dd5e91 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x44b159ae most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x667675b0 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x692b89ef most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x87a110be most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x8fe6bdc9 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xbeac13ae channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc95d31b4 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd1d200de most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe1b4f008 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf5246a9b most_stop_channel +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x213c6c71 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa6a795c3 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xdfd7917d intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xeb33aa8b intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1c5dac69 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdc3f63d1 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf4c0f551 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1028496c mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08585fdd vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12e8f995 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x169bbcb0 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1951f93c vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2293626f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d838c59 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ee436b8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30d6bbda vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ecc6b20 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49d6873a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c407214 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x564fc0a1 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b221b50 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fcec9f9 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x713ba2fa vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7990f8c8 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c65c318 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fd7e88d vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8033e3be vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80e5fe7f vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85e416da vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a5a4a10 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c4b9518 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fd14815 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa158895f vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa23ff03d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae9d92ae vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb84b1e92 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8c28533 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3a07ab5 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc60ca8cc vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6d822af vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcee78760 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfc5834f vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda6afa52 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf24ee9d vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4bfec22 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7fb7b7e vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x3856c4ac fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0db05c01 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2efb6777 fb_sys_write +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 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcfabb585 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x410ef419 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb1d57acf dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbd259919 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1abcd1a8 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a79e0a5 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4de1d393 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7f8d84ac nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8c871fed lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc13bf2d1 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdb69fd90 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01fcdad5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x064cf5f1 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07d08cdd nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b6e81a nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e01e961 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1180acdc nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11b39efc nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13d6159e nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1496748b nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149dae77 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x152975b8 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1557ce1e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x160cd6b8 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19ff9c2b nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db36e27 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbbbebe nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eba8fdd nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b3f51c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22cf784e nfs_file_release +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 0x27571319 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6c1578 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9d93ae nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3172fd74 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f5cb4d nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34aeb11c nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39993c23 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a228802 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d6438b9 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fa82594 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fe250b1 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x411ce62e nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4401b2f2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4606f25b nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x479156a2 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d60ee66 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5131823a nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x529a46dd nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54d090bc nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d5c97e nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57ea7848 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e1cd1f nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a33ae3d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b971eb9 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be6c0d6 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f63a783 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62260f26 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6272f5d8 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x655a114b nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65f2940c nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x665dc42e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68127d19 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69cdb0dc nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69fca9a1 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ccb64d1 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d2c6226 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d9da81b nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e4e1b87 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd16d20 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b29449 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73e8748e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77061341 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77cfd426 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7831aa21 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78512551 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f99f937 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81803250 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81e655e4 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x899a2eae nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a87d152 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f82b100 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91eeeb48 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a8e5f1 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x956c9a4d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a8ec4a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98281a80 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d2318d1 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0fb985 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1470a45 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa59e4936 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa680ac1d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +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 0xab1a4a44 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab32fe13 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabeef33b nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf066197 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafda8092 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb249832f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2964711 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2a2daee nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57b185b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb707ca31 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8268c6a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8413f44 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb87d1aee nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb910d8d2 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbadd4815 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae9601c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb36ff75 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc12ad39c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc230dba6 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc28f1891 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3b4f9dc nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e0e949 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7563a9e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc76471ec nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc78745c9 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc909a6cc nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc964eff4 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9c1ce69 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb3cdac nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2597366 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb459276 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbceda44 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde7206ec nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee44934 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe18d6093 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4225f35 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe51f7710 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe84c1089 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea33e259 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb97cd85 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecf4191c nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb633ae nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefd9b0e5 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1fb019c put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3f942eb nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5c08444 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6099630 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd256af4 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe2f112e nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1ce573af nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02df5ab5 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x138ecefe nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13d3d2e8 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b16310d nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c178f45 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ce0f37a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x216b1d3c pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x219c867e nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28807dd6 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bb41fdf nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bc8fc0d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d68f4e1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d6abfb3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fafe715 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x302b5f30 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d8ffb1 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b9849b9 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4137e1ed pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x420198c2 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43fb1ff5 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44e0bdaa nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x450e5c3b pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4917fd68 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b21eb5c nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50cf6cf0 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555914ea nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5af9cb7d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ed4c1e3 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b2da45f pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74420988 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75d12d9c pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d44c911 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8306cbce pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca1a51f nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f830cf0 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x904c7a82 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923ec4e7 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9745d4c5 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c35f176 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3762e24 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb45f39d6 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb71a23d9 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd76cff6 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc14498f5 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34e275c nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5708a54 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8efadd8 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde97250f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe143684c pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe27aee50 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecbbbb12 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedbf8d84 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef4ad25f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf56145e0 pnfs_generic_pg_init_write +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 0xfb2067a6 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbb1e62c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc72f65c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfce66197 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd9fb9c1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x028fd1bc locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x51b4fb18 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e0751c7 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe8d25041 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf1440f81 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x39256af6 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 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7862677b o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x80468152 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb80b0cd4 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 0xc7ab9c45 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdf0a33eb o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeda5c49c o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x30f90f56 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x815c1687 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8bb4a219 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaa1b7d33 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb810569e 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 0xe2a682b3 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2f7869fe ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4965dd84 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa01ee7eb ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xba14fb64 ocfs2_stack_glue_unregister +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 kernel/torture 0x0acd06de _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2333cef1 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x44a347da _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0830ba81 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0d7d4664 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x08595ccf lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe0a023d8 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1cde16f9 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x3f589dcf garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x63c90702 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7760639f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xb4aa503a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf24039df garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x016a4760 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x25f12be6 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x32524277 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9056ba6f mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc05f7608 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xea91999b mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x4d0dd95f stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x59496123 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0e8fced0 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8916c668 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 0x8364bba9 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c68dd04 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x246a1aef br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3097c518 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x454a3136 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x664bfdf1 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6bcdefa1 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d64a806 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x818fbc1c br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb02d728f br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc87b5f0a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb7a9f28 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc35e240 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2f4afd3 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3a12398 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd247ef5 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4507a47 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf0bbeac7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf7fed46e br_multicast_enabled +EXPORT_SYMBOL_GPL net/core/failover 0x2efffad1 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x3aefca70 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x7e70a4c7 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00eddba0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x218d44e1 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23e8bf31 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b8890b2 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31a7048b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x374da467 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48c19863 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f3596c9 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fc15496 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53b57358 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bfb47cc dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5db8192f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61927a60 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6362ab6b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f5fd679 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85c769b1 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89734dc8 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x905f87d9 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a829a85 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e52b535 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa413e7b2 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa4a5946 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad1c4c0c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae2c985a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaed4aaac dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1d468ca inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdae3da9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbede711a dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf415401 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3bba9b5 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda823e6b dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8321885 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf953734c dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x033b854a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b14ad4f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8d96276e dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xddccecf7 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe23ef044 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf1a25476 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0aeafa88 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d67b32f dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f8a428f dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1c285bcf call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x281e1e1f dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35049c7d dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36d1e97c dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d019de7 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4fd87917 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57ff543e dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61741057 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ed9f25f dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b0214a7 dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93ee40e3 dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb98ed277 dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe001433c dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe1ab7887 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3ae5625 dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0a5c81e dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf93cdefb dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd54b671 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x837faad2 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xa5c40917 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xa8f6990e dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xd54798c5 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x064eb72d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4182eed2 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7b7588ad ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9c69a0a3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7d1fef43 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x86c33fdf ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x58b791fb esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc50fc3ae esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xea1f5655 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x6a17b40c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xeeb42b7c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22bdd5ad inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3cf8edc3 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4645423f inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6a2231a2 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6fb9cb4f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96b1d93d inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dc85b8c inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb87adfa7 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf276fd21 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x085c83fc gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7c25b5c6 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0041e82f ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8529bc61 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5c58e9a4 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1f213170 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2d9fc53a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x658536d9 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87bc8e36 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdc292869 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x04288914 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5263f862 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd4fd972a nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe4415e33 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2e1f42e3 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbfbda019 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x308e8122 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5a583db3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc11104d5 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc7418a43 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf4a6c2bf tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdb0862c4 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xde29ec5d esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfaaf1fec esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0f50e5c3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc8709197 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf26e3229 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6c4207fd ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1369adcb nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x521dd078 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6a260f44 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9add9cf0 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb7aae9a1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc79403fe nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe54fab2d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf1b74df4 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x834f287d nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x16d2bbec nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x70e25163 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x79b58eaf nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x28a0cb5b nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc37910e2 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0371632b l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c5438fe l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e125362 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1664d489 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x266e1ca0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x363079d7 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52fd8d8a l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5db7a441 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5efd890a l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9426c4f9 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a5c3f96 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb670c4a6 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbcfe79c9 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc00dfa31 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd49ff25d l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe51abcbc l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2ddb913 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x538edd3f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x04438c20 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0db90f8f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0edeaa07 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x148865f6 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a0ee5f7 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x754e1a45 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7620448d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x819e8dea ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x994ac53c ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa70922f9 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb07bfc86 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0c92cee wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb84f9732 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb93146a ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd01f335f ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfee1bfde ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x160de806 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5869db9d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5e1c6b3f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb6926930 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe22a8f32 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0088a05f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x027d059d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1fdccd2b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x261e6798 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x285e9620 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d4f33a4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5dedfcf1 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d5e331d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97783e32 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x985cbc38 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f95bc07 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 0xa7eebc26 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae95219e ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0903ca1 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd80e4249 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde3c47f5 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecfb50c2 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfca7fc20 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x12d8d7e5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1a45549e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x41fbe3a8 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa19e0915 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4963d255 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x682562af nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb71b8c5d nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xda6cb2ad nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfc7d821e nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x004c5f98 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x063694a7 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08d2c135 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a8e2d1c nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x110fdebd nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x149bf91e nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16216f3f nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16f6d93d nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17216ff0 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d78f3ba nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e5e5bc3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f367d59 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe65d40 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20a02124 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25d188f9 nf_ct_untimeout +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 0x29232806 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d1ff9cf nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f44418f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3014114a nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32b1d9a3 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b368b5 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x365ef0c6 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36e1b232 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d2d5781 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f68b189 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f81c427 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fe4a168 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4419d815 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448f3be2 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4687647c nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48d3330f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a8ef130 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d21900f nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ff206ff nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52d40109 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fdafd42 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6031041a __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66333d39 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667d79ee nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cce9ec1 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d175eff nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d38e4bb nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d41f7cd nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f0ffe93 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x711c7db5 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x713aa59b nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78278c9f nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bf3c722 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d38d227 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd2465d nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89738490 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cc5e397 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f2d11d3 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fbd7dcc nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93ac6879 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa172f8a1 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7972b13 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa91e5dd8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa538956 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa906e4e nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3f50c3 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac762e09 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb38fc186 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd46bf38 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc10166b5 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1bea6e3 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc80840f1 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc922dfe5 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9df421a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd34da4e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc6d6b0b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcde3ce7 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0f3e743 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec765fd5 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee0cdddf nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf156ac87 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf26a3869 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3bf54f2 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf405c816 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7ea9945 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9ee09ab nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x50b48eb7 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa5a826c7 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x97caa9c8 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x16a97493 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3773c42c set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39c984ba get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b8e4b44 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x591e4b7f set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d15e470 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x857e0275 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc973db0a nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcd2b9b88 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef0795f6 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x66e741fa nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0732cde9 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x932661ec nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9d10930d nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaa3e9f04 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02528335 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1193efd7 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3593f56f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa556e6c7 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xae1bf6a7 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdf3c14ab ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf53484d1 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8105b142 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe77d0c88 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7769991e nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe7deb3c5 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xec55296e nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0490f075 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1907070e nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d33e560 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27f56cf4 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3929e856 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x54dbdee6 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x739baa29 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7f08d810 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x803a7f77 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ea269d1 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc7b879a1 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf7703bfa nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4f782279 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8448b7e0 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8f64e0fb nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa25bd7a3 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbbd4d358 nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe95e97bd nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ea8b364 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b7ab32e 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 0x401af6c9 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4eff7ef7 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51196991 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x56496ebf nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a2137e2 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x62465a43 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x661adfa0 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a620b1c nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a88a46e nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9efcd866 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa22ce1fc nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa4e4c210 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa965e292 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed2b2aba 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 0x33c2421c ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4ae743b0 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d3b3fcf synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7aea45c0 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8970a886 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x89ce5550 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9197855c ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xae8ba898 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb44883a6 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb97daef6 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfbeebf5b synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04fd21d1 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1030b280 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13a34205 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x173e24bc nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x222d9da3 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29fc4f7a nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b43edf1 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c89781c nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3707d652 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ac7bbf9 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x550cd842 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x569cdd27 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a3721fc __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ddabb57 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60708d5c nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64235f45 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6db19dbe nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x703d62cc nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7623516a nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81120531 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x818ebf3e nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7ef9519 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6c636c3 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9e2455a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf90ee83 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0308f29 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd59f4c9 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde4d325c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0492279 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe615b1b7 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe996f2c1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0162c7b nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2dac2c9 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf52ee1db nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf73dbe4b nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x03b1b64a nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x30f5ea20 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x45fc9efd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdebfdbf5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe3d3a1b5 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd60b7f9 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0860fee5 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x387ca24c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7a3675bd nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x202b86a9 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb6346b2b nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2206d0a5 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x404ec867 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xae06ba25 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb3c765c2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x04e12e07 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3f9f4aad nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9a3749f5 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x018b1c2f xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d2633d5 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x259bf700 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28fc9c4c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d4fec28 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30dde833 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38c08f4b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e35e17b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63a0992d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x761d4227 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79c8a294 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d067f59 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x990a037c xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1082e9d xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa12a51e0 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb624475d xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc704f6e7 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc3a0cd0 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcefbe657 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd043431c xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1718841 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x000e191c xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4acc0097 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x78e8b038 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x944a2745 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc50e63a7 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2a39bd8f nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x68f2422e nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x77f9cb9c nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0xcecc6b7d nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xf311031f nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x044df859 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3eb09f37 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x484805b7 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x54866741 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x98f4f256 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xebd89eb4 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x127e988c psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x536906e6 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xc4c8455a psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xe4f9d6f7 psample_group_put +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0a305a2b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1eeef0bd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2247d3da rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x228814a9 rds_conn_path_drop +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 0x42bff20f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x47b63a8c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x480a51e8 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4968c9e4 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x4c31aeb2 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x588479cf rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x5e12647f rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6013201e rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x62777d9d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6d3dd05b rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6fb48d94 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x75f3e5f8 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x79bb9052 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x82dc1b8b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x97a6ee8d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xa4065759 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xbc1ca8c2 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc7095241 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd29c0fbb rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd3d873ef rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xdf502004 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xdfc1796f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xec3c63e2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xf99c7fc1 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2dc6b654 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa27fdc1b sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc007cd5b sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdc18fdef sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x08bb66e0 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x16b95d50 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x17daf9f2 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x55f6238c smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x81a7ff69 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x9d5629e1 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb3dfe7f0 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbba3ec94 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbd08ff10 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd82345ba smcd_handle_irq +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 0x875d2d95 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9bf4b6b4 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0602449 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xafdc8467 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045ddf87 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04a1fae8 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x051aa28d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b15a34 svc_recv +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 0x085eb00f xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091a164f sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x094fd844 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b10002 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bce24ee xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd2992b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e184d1f rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f58bb71 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f802715 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff8828d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10166b7b xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1276eeda svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x130e7969 svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1311c059 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f3e265 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151b7158 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bff2c7 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a8f970 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b1e82e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a48cf42 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d19e6aa rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6a7089 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dab19a8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df73d9c xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec4da98 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f46759b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2221c5ac read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22eff488 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x236fa3fe svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a3f8b8f rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad87887 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cdc7763 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ea172f8 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec59711 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30bf93e1 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349c3347 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36ed2b3d rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a15eda2 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a42e02e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a60fd16 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b70dbd4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b97c798 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed0a655 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd9ecbe svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff28fca svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413045d7 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fae940 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a8fd79 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42af67ae cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43e2ec66 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x440578b0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441d8388 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x458c195a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46427553 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4713d82a cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4753a250 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x484e5431 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aac1977 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac86dc3 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af3aedb sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c68bfdf rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7c9128 rpcauth_register +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 0x4eab24fe xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f9db76e svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x525b8e3e svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5403494d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x579a20d5 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58852728 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d97561 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c4b53c svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2befe1 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b66da3f rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba3b38b rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3ef187 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df3a222 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ebda158 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6115b9f3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62dfbfd6 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d6eaaa xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673f02da svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68633cc3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa0d4b4 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b05f31a svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dca2a84 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e25a402 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee4b2a8 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f4055f3 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c2c059 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7253cc12 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f7527a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751a48d5 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778fe088 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77dc929e xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797d9a51 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b641cd xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x809b9ae6 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83106f98 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a3deb8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86abd299 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871ad51c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887b43c4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ed2869 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a697367 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5c0083 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bffe679 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4e28d7 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d2fca93 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ea924cc rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb7e8f6 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec2441e svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f0a6b36 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fbf2e01 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c93a75 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90fd180b xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x916ff020 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ee40ec cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x950f13c4 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97596776 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97fcfbe4 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9838fe09 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9862426c rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98643858 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9872330b rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98dea393 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abf3def rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adaa8fc rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f81bed0 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a10ef7 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e0a2a3 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa434043e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f854e9 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5490224 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6589487 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6adeac6 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6d2d157 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79c2eb0 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa982c531 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ddc5fc sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafb9c472 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0eb3188 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb106fbd4 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb11a84dc rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2537e17 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3128345 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3644831 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb409e063 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48034ca rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e543f7 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6da1c88 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb85a3b05 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafd8015 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8c3ad2 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbc495fc xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc62265b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd33f526 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd3d24b7 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6037c2 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddbf7ca svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeef89cd auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc0b3f8 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc06742fb svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc36fe88e svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc458b3e8 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc51dec94 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc595ff76 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d5ee0b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6db1ca2 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc82d6fe4 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb54b77e rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcccbf104 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3c1bde svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf852bf2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d7cb40 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd256fe9c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4011850 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd66397ce rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70f3891 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87ac096 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda050092 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda7a712b rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe3f4e1 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcbef68f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde219366 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec3bfda svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe263c780 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe27352ed rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f507eb rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5aa648d xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe638a3d9 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe77f8dee rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8157ed5 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe858e456 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe872217d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f987a5 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe924cd9b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ac6f5a bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c541eb svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaabda8f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac827ec auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebcbe28b rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed049866 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8f1ea3 rpc_clnt_xprt_switch_has_addr +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 0xef25830d rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc02499 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf301b6cc xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32db0ba xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51a3935 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a9e0d6 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf894ba8d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa2f7fbd rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa61a824 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa8d6ec8 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb760269 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbffcd23 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc1d193d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc72307d svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea41854 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/tls/tls 0x1741f25a tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb68729d9 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0388a286 virtio_transport_dgram_bind +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 0x0af3ffb9 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13d774c3 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18ae5e37 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d3041b5 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ddeaf42 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x203b9bab virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21cb44cc virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28b4a2c6 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2957b670 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e1e2762 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ee8f5a4 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cc5ae87 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e5f190b virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4cab3eea virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x592530a6 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f84f339 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6cb84963 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a857fab virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ad19cc3 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c369692 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c69d532 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x935a4e4b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x989f7491 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5a2cfd8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb44dbc6b virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc977e55b virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc69bbea virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd11f9e0f virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6535fee virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6d474fa virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9bf557b virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1674283 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf5ec47c8 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7f75f77 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffc32530 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e2833aa vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1febd700 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x239a51ad vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23d94a47 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3417c7b8 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3c9910ad vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41f95994 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e5c267d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5ba13996 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eddfac4 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7aeded21 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c44c996 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95a25c34 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a5c6fc2 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b1bacbf vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc32b81cd vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd85113bf vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5b87305 __vsock_create +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0dfca8db cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13389f39 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6eeb7c4a cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xab085e23 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb106d05 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x27761ce2 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5edd8416 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x683067a7 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6b5daf9f ipcomp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00013028 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x001ffd43 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x00487974 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00497b34 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x007021ec gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x007b3aa0 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00910f4d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x0093132f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x00a76061 __dax_pmem_probe +EXPORT_SYMBOL_GPL vmlinux 0x00a78a33 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x00cd599b ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00d4f1cc devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x00d8b5bd rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x00e569e9 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x00edaeb4 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x01002fdd component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x0102beb8 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x010a7565 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0114022d irq_sim_irqnum +EXPORT_SYMBOL_GPL vmlinux 0x011a3220 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x011e47b1 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x01202684 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0137ab3e br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x013e6fd7 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x014b9a6c dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x016c6c3e tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0177543d md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x017d246b devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0x018c6e40 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x0196f845 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x0198661c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x01aa9261 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x01b76010 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x01bd7f7b __put_net +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01ca9032 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x01d6f50f ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x01df1a09 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01edc3c4 hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01f0b87d iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x01f9d782 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x01fd6313 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x02135894 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x02282371 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x02343e5c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x0242cc12 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0256a2b9 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x025bdf0c devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0261ebf2 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x0272788e dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x02942b8e ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02976b21 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x029ae240 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x02b507b1 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x02b9055c do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x02bdfa08 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x02ce9f47 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x02db6acf fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x02ddf542 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x02fb0d58 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0341c457 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x035ac76b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x035f47f1 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x03636c1f intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x036d9a67 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0376c52b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x038cef60 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x038d643e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a12645 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03b9ed76 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x03be03fa dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c9d2ff pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d0d091 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x03dba3cd pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x03e850fd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x03ef455d crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x03f3f393 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x041fe915 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0426f3c8 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x042e12ea usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x04301dd0 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x04305b49 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x043e2ea2 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x04439ea7 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0466a2d1 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x046bde4d elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x046c6ee3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x046d1c4a ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x04a51735 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04d21b2e isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x04dca87b dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e82bbd irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x04f4968c ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04f51d58 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x0510acae smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x052466e3 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0535e1b5 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0572eca0 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x057f2f6e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0583e13e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x0585a6a8 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x058ae80f __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05a4d1a4 xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05b4fdb1 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x05b6403b pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x05ba3263 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x05c5ee34 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x05c91023 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x05d0018d pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x05d5f173 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x05d71e79 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x05d74d55 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x05f449ae iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x0617d323 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da18 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06302766 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065f9990 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x066c1709 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x069199b2 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x069ab767 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x069c7506 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x06b6de78 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x06c20e4d platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06c85e0d event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x06ce800b srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x07011dcf devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x07079630 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0712735e invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x07134095 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073d3602 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x074646c9 cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0746981a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x074b0a0d fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x075a3872 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x078f2d0e phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x07a4d20f shmem_zero_setup +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 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07d604f0 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x07e397c1 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x08027135 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x084677c4 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x084c0602 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0878bc30 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x087902de sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08a64fc8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x08b944b1 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bdc644 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08e6950a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x0927f3a1 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093f0f05 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0962b841 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x099b6a8f wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cc71c0 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x09fe2e56 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0a05df61 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x0a12ca3d gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a2f5719 cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x0a3f8532 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5d9eb1 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x0a6c0f9c rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a83b1e4 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0a862387 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0a9908c7 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x0a9eb1ed strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0a9fe679 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0aa040ba __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x0aa64286 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0ac6d503 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x0ad00473 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ada132f nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x0adcd196 crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0ae3fb37 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1f26d0 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b26f9fc devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0b2b8dcc bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b48475d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b56e8f4 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0b5e1814 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x0b71ae66 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0b7823d0 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0ba5669d crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x0bcbf7d8 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x0bcd5588 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0bce50d0 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0bd206d6 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bdd476f vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x0bddd781 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0bf1af12 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x0bf9b89e pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0x0c07c4d3 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3da2a1 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x0c6e2067 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x0c6ea5ff gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0c6f3e9f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x0c7598c4 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c90ceb8 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c90e1f5 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cae0ac6 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x0cb29a7e tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x0cb52bc8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x0cbae8e3 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x0cc049bd pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e0eb spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0cc2bbe5 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x0ccabc2e acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0cd27560 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0ce063a0 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x0ce06d9e __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0d1906a7 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d2267b4 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d46947c crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5110df acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d51b49c usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0d584900 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0d602e66 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0d77bd10 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x0d77d1bf follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0d7f4621 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0d98d6f6 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0d99d919 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0da12849 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x0da89d4a devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dd26f86 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0dd9432e percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e22295f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e240938 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0e502302 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x0e5d4dc5 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x0e6353bc lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6c991b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0e76e689 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x0e77a54a usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x0e8571be dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x0e8ccce4 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0e91e92f xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0ea93828 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x0eb20790 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ebf65cb nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ecaf624 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x0ef9ec32 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x0efdd6e4 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0f005bd9 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f04400f sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0f087267 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f21c0e5 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f362fa5 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0f472b3b usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x0f69f125 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x0f6dbe08 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0f71f9fe devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x0f76e4ec sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0faa318e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fccb88b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0fd7dea6 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0feba53e ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x1002621e nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10264079 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x102a6d96 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x102e879b blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x103234e5 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x10384ffe get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x1055bd63 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1060eae9 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1085a3a5 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0x10883a8a sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x109b4db5 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x10b7c8e6 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x10e03c29 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1102437a _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x11024e70 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x11037d17 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x11051d43 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x110eb3ae __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x110fcde9 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x11119ab3 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x113e93a7 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x11429b55 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1157ce12 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x115ffadc syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1168bbae __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x1194f0f0 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x119ad436 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11b188a8 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x11bb4f4c __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11c25d19 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x11c9a875 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x11da0205 udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e07227 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11fe8f59 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x1210fefd rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x121c9ef9 nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1226d3eb fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x122a2d26 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x124f12da seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126dd10e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12933e16 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x12a1eee3 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x12a4c08d ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x12a95489 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12b9dedb skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x12bf28c0 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0x12c82be0 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x12d684b9 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x130a6076 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x131356be dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131eeced usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13400540 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x13529066 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136719dc regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x137ec82a spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x137f1860 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x138bdff8 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139bdaee device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x13a3a9bc tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13a3dbc8 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x13a9d29a devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x13b51f73 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x13b5f8a1 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13b79271 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x13be3837 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x13c019b8 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e29516 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x13e3a7d9 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x13ebacc3 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14039b11 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x1419cf4b skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x141d0d02 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142494d1 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x143037e1 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1433c6bf crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x143528c1 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1468f12d pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x146eb91d srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14721979 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x1472b9a1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x147bd970 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL vmlinux 0x148e0110 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x14a0453e crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x14a74119 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x14ad2291 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x14b608f6 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x14b9a2ea strp_process +EXPORT_SYMBOL_GPL vmlinux 0x14cd25cd bus_register +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d26249 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x14e03ed1 blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x14f9b8b9 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x150e665d dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x151836fb regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154c78ae crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x157b6281 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x1592f0bc acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x15b5bb86 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x15cd36fa ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x15da9aab sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f48ab7 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x15f58418 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x16028c66 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x16125701 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1630334e register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x16333d86 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x163c0fea exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x16484afb blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x16533c4a flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16617500 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x166861d1 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x168b2a43 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x16900435 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x169989e6 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x16b27cdd fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x16c9a901 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dc7957 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e19c2f path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x16ed1bae led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x16ee4041 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x16fa1247 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x16ffcfa7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17382f99 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174be597 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176c76f9 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x177c5920 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17ae04bb dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x17c1f409 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x17c33df8 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17c8ed3e irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x17cbd494 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x17ded0f6 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17ef7306 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x17f8161c __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x18004f8b serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x1815df2c irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x1852fd50 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1871d554 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x18bc3c70 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e96abb devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19102e0f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1933c97d pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x193c30bb phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1941f3b9 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19674ff5 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x1989b735 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a98ac0 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19b591aa crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x19d267eb crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x19d29de0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x19e18c9e serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a04a6aa __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x1a0bc417 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1da426 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1a299afa led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x1a2d760c scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x1a2db436 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7a14fa regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1a7f8cf8 device_add +EXPORT_SYMBOL_GPL vmlinux 0x1a96d4b3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1aa84e99 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1aa8e523 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad48883 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x1add6de7 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1adf53ad scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afb76fb ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x1b4faa70 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b797d27 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x1b83a286 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8f8ca7 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba6e531 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1ba84627 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1baef34c iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcf4136 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf809a5 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1bf833de get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x1c0f8993 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1c154bad led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x1c1708b5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x1c30acc8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c54aafd relay_close +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 0x1c71a9d9 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1c7595aa phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x1c7d65ec __memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c83791a nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1c840474 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cafb445 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccf05c0 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1ceee36f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x1cfe67c3 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x1d001eaf xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d0e6854 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2634c7 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1d26a348 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL vmlinux 0x1d5e644f __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1d6ed125 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x1d6ed36f __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d88c37d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x1d8df046 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1d9ac551 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1d9cb619 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x1daf168a kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x1dcd34ed input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1dcedfcd pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1ddab651 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x1e057e15 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0a2619 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x1e321d98 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x1e36ac22 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1e372c94 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x1e4ed971 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e5990e2 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e6fdfe3 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1e70699a devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x1e777e52 ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9c16e3 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1ea34537 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x1eaf0e4a genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee1bec4 component_add +EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1ef9fa84 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x1f052751 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1f09fa1e device_del +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f0e5aef xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x1f132238 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f146533 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x1f159705 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f1bc3ad balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4749bc __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x1f4dd2c1 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5643ca unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f872800 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f93839a security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb6596b led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fcc6ee8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fcc85fe crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x1fd8c247 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff602c3 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x20001286 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x201c3244 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x20208416 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x2022af6a nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x204e3f2c blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x206c0d93 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x206e8976 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20bcaedf ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x20cd8857 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x20dbea33 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x20e8f683 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x21009f07 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x211266bd blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x21574717 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x2164bd72 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x216d8506 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216ff862 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x218f784d agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b1c88f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cefedd __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x21da60e7 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x21df8ca4 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x21e264e0 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x21ef73a6 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x21fc2bdd serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x220387e2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x220f7371 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221235e8 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2212ee39 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2221bbc2 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x2222ace4 ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x223fe369 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x22421eef tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x225069f0 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x2257f5d7 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x22862fb8 nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x22a7d86b spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x22d3649d wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x22e38f94 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x22e488b1 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x22eaa434 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x22f2796b regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x231934d1 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x23359b87 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x233a2f40 vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0x234072ff tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23474f25 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23598fe6 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x235a61c9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x236d0908 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x23790a3f __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a7f482 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x23af5be7 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x23b32bb2 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x24121d71 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x24151e52 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x241f9617 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x24478620 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x244b175b pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x247589ec regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x247bc8e3 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24850292 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x2492e99f dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x2493b571 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x24b31941 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x24b5e058 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x24c0e453 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24ca181e pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x25011880 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x25087bda rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x251a7555 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253a15c8 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x257143b5 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259e7621 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x25b5f5b2 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x25c87350 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x25d552db udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x25d8e6aa phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25f1cf52 nvme_init_identify +EXPORT_SYMBOL_GPL vmlinux 0x25f7615d xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0x2616a254 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x261f941d mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x26263c9d inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x26301ede pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x26316b3e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x2635de6e usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26498dd0 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x264b0d95 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26559fec update_time +EXPORT_SYMBOL_GPL vmlinux 0x265747ec tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x265adb02 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265f01aa dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2684eb4f metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26892674 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x26a45442 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26ae24eb gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x26c34b6b __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c874ec crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f284e7 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x26f73c8e nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x270311e9 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x270b0894 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2718379b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x271c9345 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x27285796 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x27342f5b vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x275c6a8d cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x276cc8ff xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277b619d fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x279ddc16 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x27a9fc09 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x27bb5705 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x27c3e29f scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x27eaa4f6 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x27eb7440 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2822cca8 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x2833da6a bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x283d8af1 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x283fd6a7 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28711c14 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x2871a018 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2872b316 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28746b39 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x289e5f9f dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x28a214cd usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28c73982 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28d94f48 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x28e2721d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x28e59f71 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x28e749d4 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x28fffa6c nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x291fa2d2 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x292b41b7 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x294ad89e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x29683ca9 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2969d8e0 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x296a3605 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x296bf948 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x29870ff6 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x299072fe dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x29950672 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x29959025 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x29a4e4fc mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x29ad4d38 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x29b133fb irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x29cf4c8b bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x29d7268f ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29efd309 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x29f51b41 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x2a1b0047 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2a26c0c0 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2a30152d fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x2a3300a2 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2a494c95 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a681e4c acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2a844b49 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2aa9a0d4 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab0c99a iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2ab3a380 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x2ac0389f pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x2ad3db27 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x2ad45fee virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x2ad9b0f1 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x2af6c95c pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b18c18f init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b1d4edc fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b319d52 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x2b43c61e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b7bb228 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2b8f94c5 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2b9043b7 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2bab9c74 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x2bbb024e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x2bc3052b regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bc66713 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2bdcb0d2 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x2bf4834c gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2bc639 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c32edbc usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c62079a sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c72d78a vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c91e3da ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x2cb10052 iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2cc28c2c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2cc753b2 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ce4c3dd __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x2ce72fd9 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x2ce7868d nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d1135e5 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d21a282 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2d237595 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2d2a802f acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d33be3e policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x2d34e47f dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4cf82a dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6fdd25 split_page +EXPORT_SYMBOL_GPL vmlinux 0x2d793a18 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d86048a device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2dc0b055 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2dc10ef6 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2ded0935 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2dee41cc serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x2dee8db9 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dfef6ab tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e045802 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2e06b241 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2e07f3e1 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e13f37b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e22ef52 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e244982 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2e2adf1f bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e417a79 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x2e4f3759 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x2e51a9e2 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2e52d2d7 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2e5590cd crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e6f6537 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2e729805 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e7d294f encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec81feb tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x2ecd8e25 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2edddb78 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f10a971 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x2f2820fa fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f52d241 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x2f5ad04f pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0x2f625697 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x2f62ecc6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2f6414df pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f75376c fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f949339 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0x2fe3a62b iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2fe78ecc cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x301dcb79 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x301ec052 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x303cf2cc dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3044e760 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3047f2fc irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x304b7af7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x304f9147 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x3059dc47 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x305ac127 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x308ed991 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3096986c blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x30a1969a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x30b0a507 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x30c3f3a9 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x30c55945 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x30c70371 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e7ac3f __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x30fc77ed perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31385a75 device_create +EXPORT_SYMBOL_GPL vmlinux 0x3147008b bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3147696f gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x314c5cbf pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x3164ae55 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x316f3c82 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3172b1a0 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x317d42a6 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x318c51e4 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319b4766 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x31b49a6a __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c9a3df fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31f002ea usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x3204a24a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x320718ef blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32558931 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32722bff iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b8cbb1 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x32bb5939 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32be40ac pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x32c27606 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32c7747e gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e86d1d xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x32e9e858 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3311ac75 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x331d5f57 spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x33417bf0 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33434d96 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x3347796e usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x33520c20 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33720595 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x338811fd __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3394c196 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x339545ee led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x339c684c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x339f40fe crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x33bb4e6b thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x33bd12c2 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x33bd3de6 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x33c3e9e3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x33c4ac6a ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x33c7c5c1 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x33dc20ce __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x33df01a3 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x34101d16 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3434c8b1 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344239c8 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x3449be80 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x344a53cd __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3453244b devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x347e1cb7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3488b86e rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34e00f61 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x34e5dc89 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x34f937a8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3505ae68 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x351aa00d thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x351b9f61 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x351c09dd ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x351eaffe sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355c8850 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356e226c strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x35700678 tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x3586ae89 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0x35a6df52 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x35bac4a3 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35cba669 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35da35eb device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x35db5936 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x35e3a8c3 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x35fb5fa9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36182665 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x361a6d80 irq_sim_init +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363c4dab devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x364a556b device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36524f0e __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x36529c83 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x3659b5bd dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x365a109d blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x367ca132 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3685fd58 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x369dfdad crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a49927 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x36ac6cd1 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36b2e511 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b8b822 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x36c308dc n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x36ca708a regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x36cb67fa dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x36cc7c3c spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x36e9daf8 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x372177f1 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3725c761 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x372ca320 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x372d995d virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37580dde dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x375b174c __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x37696996 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x376e25b8 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x37761810 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37935d04 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x37aae4f3 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x37caa0d2 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x37cdd0a1 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37d4ea4e spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x37d67060 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x37da89ce spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x37e5d973 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37eefcb3 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3816de1a security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x3828c9ca arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384a1b86 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x386d92b5 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x387147b1 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38837407 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x38981b39 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x38b2bc87 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x38be4ae4 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0x38d6fefe ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ed1b18 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x38f67834 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x3912f077 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x391d356a device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x391d75a4 nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x3946009e da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3972256c led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x39c4270f fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x39da4938 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x39da8344 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39fc6963 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x39ff58d7 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a29fefb power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x3a2b8491 switchdev_handle_port_obj_add +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 0x3a5d70f0 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3a5f23ae crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3a7783c1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3a7847f5 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x3a7863e6 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3a858855 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a90d101 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aab4a9d firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x3ab90010 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x3abdf636 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3abf091e tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x3ac0c014 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x3acef774 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af80f37 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x3b0a4449 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3b0ade03 blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x3b206a08 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x3b2138dc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x3b2d7504 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x3b3b582c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3b47fc06 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x3b50e942 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x3b57e75a shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x3b647964 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3b6fb30f devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b729459 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9895c7 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bd53373 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be223b8 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf459bd acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3bf86933 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c186694 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c457bd5 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3c623411 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x3c72a9e7 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3c9bea01 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3caca32a device_rename +EXPORT_SYMBOL_GPL vmlinux 0x3ccad57a debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3ccca330 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdf3b09 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3ce9ed2f iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x3cf42a03 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3cfc2cbf debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x3d1f0953 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3d2e314f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x3d352b09 pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0x3d37fc1d devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d482eff subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5def15 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x3d637236 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x3d883f2f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8d8190 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x3d9ebdc9 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x3dbaa5a3 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3dd159a0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd8071e inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3de6ad40 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfd8086 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x3e139def cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x3e3ec092 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3e4b4247 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7c5ccb cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3e947d30 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb40b27 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ecfeb8d cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3ee1c0c6 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ee3216f cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f08fd9c dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x3f1a2b7b gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x3f2a1d12 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3f4d5aab ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f8e9353 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fbe5ce0 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x3fc47393 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3feb4fe5 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400686b6 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4046d2b8 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x4046f807 hv_pkt_iter_close +EXPORT_SYMBOL_GPL vmlinux 0x4047f33a set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x404cd693 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4066bc65 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40719d17 nexthop_for_each_fib6_nh +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 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40b9a5f3 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40bee12a fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x40cae28b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f7e412 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40f9a8ea pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x410cc104 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x41420872 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x414a8103 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x417267dd ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x41735b58 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4173b11c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x41767311 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41816e56 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x4196ea9c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x41aafdc5 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x41ab702d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41b86248 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x41c2a84b fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x41d8c2a0 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421a6568 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x421abb1e crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x423077a1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x423d2dfd blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x423faf7c acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x424016a7 flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42890efb kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42a8ce02 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x42c4c5c1 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x42c70a3f gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x42ce8524 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x42d9f0e5 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x42e3d5bd __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x42f46cbe ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x42f65f05 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x4302baa8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x430437eb rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4313c0db rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x434a2ca8 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4350848c tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43562d33 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43626673 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x4373776c bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x437e2bed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439d55cd proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43aeeab2 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x43be0e43 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x43cca583 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f602d6 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x440167b1 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x44051d27 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x44162e62 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x44333244 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x44597c5d device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44966920 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x44a9a104 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x44b38dbe irq_sim_fire +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ca1515 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x44cc3993 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x44eb7e64 regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x45006a62 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45304e80 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4557d8af bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45899451 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x458b9c79 devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x4598cd93 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x459c752d dm_put +EXPORT_SYMBOL_GPL vmlinux 0x45b2b98b crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x45d84697 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4612677a vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0x46377d60 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x46402e6e dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x464ad4bc tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x465ecb6d proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue +EXPORT_SYMBOL_GPL vmlinux 0x467fa1cd subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x46872131 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4699d0c7 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x469e38cd pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46afa02a relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x46b20cd1 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x46bfda14 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x46c26a0e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x46c2d148 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x46ee2a8c devres_find +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46fa4eb3 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47248bc0 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x4730d863 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x473fe70f rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x4744721d ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x474ea303 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47974770 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d39ac6 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x47d8f7b9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x47d9ad16 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f57be1 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x480affb5 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48291659 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x48492498 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4867f901 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x486c16ac spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x486c8d41 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x48849a56 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4897720f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x49004128 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x49200793 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4926063f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4928f7bf led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x492c2d2d devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x493853df tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494badaf crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x496a95fc crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x496ed474 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x498a90f2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x498d77f3 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x49a04a81 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x49a76a0c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49e2007d devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x49e54be7 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f67c66 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x4a0c68ad acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4a207003 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x4a2d9bf6 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4a386f1b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a531f97 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4a5550f7 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x4a5f225b dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x4a924ac7 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ad81a1d iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x4af57429 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b093376 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b3fa8e0 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b6534eb power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4b6d5bc6 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b951e4c rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x4ba7f390 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4baa6717 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x4bc1fb2c fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x4bf45836 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4bfb5237 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4bfe048c debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x4c029910 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x4c0b5a41 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x4c14edaa sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4c1fece4 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4c27cb4b page_endio +EXPORT_SYMBOL_GPL vmlinux 0x4c3dc96a skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x4c40212c evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c4dc6a6 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4c5dee9a phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x4c64e42a spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c84ed66 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4ca1cf64 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x4cb5d686 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x4cbcad96 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4cfcec1f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d03ddcd skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x4d04a365 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d202ec9 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d54195c dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x4d5af4c7 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x4d819d7c rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d905b1f device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4daa9463 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x4daa96d9 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4dc34c77 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x4dcc3ec9 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4decfba4 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x4df03901 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e008169 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e14b8fb to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e272417 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x4e286396 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4e2b6c3c net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x4e534a5a dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x4e6c46e8 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x4e6f2fff scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4e800922 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb6f392 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4ebcb261 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x4ec990ce fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eceadad usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x4ed08442 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef92cc1 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4efa39a3 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4f14a455 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f28ebc2 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x4f3116e5 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x4f39a22e __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x4f39d299 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x4f45efb6 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4fac1bd7 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x4fcb787f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fffa3df kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x50155b7d blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5017375c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x503193a5 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5048c12d mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x50530ffe nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x50542d69 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5068a868 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x507e8a83 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509cbb53 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50b00b92 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50bada9c scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x50c2a20b tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f51ce2 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5111f8fe edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x512674d4 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5139ffae nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0x513f5dc3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x5154a6a4 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x51622392 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x51744e2f gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x519393e8 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x51a6fb7f vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x51b3dc5d ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x51cbc7a1 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x51e57a80 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x520ba10c security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5211be01 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52297cb5 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0x5236a3a9 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x52471dac __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x525bcb61 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x5271c71d pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x52734dc8 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x527c3842 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x527eafd1 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x527eb30d netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x52890bcf exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5296623d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x52c8542d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dcdc0e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x52e362cf rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x53057895 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x53204d62 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x53212560 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x532f8d5f __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5336dff9 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x533f9ab8 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x534a464e blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x53589d9e vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537cf9a1 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53aa1ee6 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x53af5bca regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x53e1f816 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x5405b78b devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x54131130 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542049c1 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542d2064 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x542ebd14 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x5435b7a7 acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0x54447b0f pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x549bb791 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x54a04c49 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x54b9bc18 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x54d07243 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x54d160bd __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x54e0d0c5 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x54f3c68d dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x54fbfcb4 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x550c5d48 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5510e28b __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x55147f5e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x552c5b2e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55369e1f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55482706 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x556deb2e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558636a1 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55ebeaf5 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56018b5c devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56114c9a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5615c0aa gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562d549d __ip6_datagram_connect +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 0x5647ce63 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x564ad6a9 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x565f8c93 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56820feb blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5682b204 bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x56913a60 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x56c7e902 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56dc0d4f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x570dee3d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5718b64b efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5734aedd rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x5739c317 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573f3b24 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x5744723b rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x5744c4c2 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57592123 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x57758b7b dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x57763d36 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5786b0ff __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0a445 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x57bfc102 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57edba21 dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0x57f91135 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5809f3c1 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582acdae strp_done +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5848d410 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5849ecfe get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5853dee2 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x587515d5 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5881a8aa sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x58832b09 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x588d084a trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x58a68061 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x58a8a532 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x58ae2eed pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x58c620b5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x58ca6aac fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e16a5e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x58e93960 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x58ebbbd6 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x58faf6d9 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x59055a67 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x59132f00 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x5922a55f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x59230ea2 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x5928c9b3 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x5931eda4 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x59534560 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x595f0032 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x5964cada gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x59703a31 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x59796444 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b329d2 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x59bbf145 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x59c032e4 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x59c42160 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59d726b8 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x59dd6c57 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x5a0725de serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x5a0bf422 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5a18d1b6 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1abd02 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x5a3eb86b fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x5a4050b0 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5a41ac5a fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a588508 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x5a65e571 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x5a6a5a68 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7694ea xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8cb235 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5aa6cc00 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x5af31896 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x5af79e7d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b3e7a0d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5b629c9d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b72771f genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x5b80c3c7 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x5b9a6bc3 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x5b9cad75 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5bba17c7 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x5bba50ec tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd10848 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x5bd2ead0 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf9fdc3 blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x5c01c457 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x5c28e022 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c40e771 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x5c43d95a pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6668e1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c7b95db tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c8dcca1 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x5ca73e02 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x5cacaaa5 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cbcd1e9 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x5ccadb6c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5ccd1e0c dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5cce8d5f ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x5cf40e8c __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x5cf59e05 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5cf64123 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cfb6194 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d239fad fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x5d373708 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x5d497636 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x5d4b5bfd blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0x5d50db11 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5d8e634a serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x5d957c2b dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x5d981a70 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x5d9ab2fc devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5da677c2 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da8627f serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5daa2929 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5dacdfbc bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x5dafc1b4 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5db91429 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x5dbc6685 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcce685 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x5dd3860b devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5df5fe01 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x5dfb05a4 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x5dfc1737 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5dff4a6b pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x5e009528 devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x5e071ba9 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e106903 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e23eacd irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e516d0b debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7dbd08 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x5e86fd30 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x5e8ccbd9 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e9769cd devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed1a665 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x5ee53ee8 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x5eea0297 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5efae109 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f422e83 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x5f529f47 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x5f5f017e __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5f6c1dff aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7e33d2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f90a2f4 __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x5f95f234 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5fa4ce86 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5fb4e5e7 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5fb8b281 vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0x5fcc642f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x5fd867c7 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x5fde8ffe netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ff075ba efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x603670da pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60541341 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60542c30 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x60606f81 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x606c10f4 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x606f2cb1 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608366d7 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b1f99b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x60b629f2 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60b83f06 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x60e3fdd6 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x60f586ad device_match_of_node +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 0x6130be04 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x614fc907 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61990a52 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x619ef2a1 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61c75c54 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61c83913 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x61d741ef fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x61e291d7 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x61f28a3a fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62710a57 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x62a00f0b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x62aff4ef rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x62b1ae93 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x62b3f8a7 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x62cc519c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x62d14dcc genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x62d1cfe1 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x62df6fb6 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x62e39b7d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x62f9397a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318275e tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6324a8f1 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x6331a37b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6362a539 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x638fe2b2 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x63965a16 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x63991514 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x63a86058 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x63b06856 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x63bade11 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x63bed1bd wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63dace44 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x63ddf0c4 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x63df801f trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f05ca9 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x640e12dc skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x641b8654 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x6421dc31 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x64337b2a xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0x6433d086 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x643c5d5d __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x644fd4f3 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x645a3b4d serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x6462c84c dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x646d2479 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x6471c882 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x64913139 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x64921d6b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64939185 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x64994630 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64b0648f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b7e651 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x64c1baf4 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x650bc3ca posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6511e95e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x651efc22 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x65372f4c nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x6538da86 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x6551956a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x6556c4d7 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x656054d6 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x656396cf device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x656ebfe4 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65c8df7b platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d3bea6 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x65d3ec4a devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x65de2f5f usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x65f2993c fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x65f97162 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x65fac929 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x65fe5cdb sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x660f6ae5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x66101e62 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6614f1cf xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x66518940 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x665a5bc6 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66912459 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x66962790 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x66994f37 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66b3defa raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c9dc49 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x66cecce4 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x66d03042 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x66d2e2fc relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66db2a4f vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0x66e2bb59 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x66f911e8 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x67045ee3 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x672b2148 md_start +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6756dbb1 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x6791da6f param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x6792e21b decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67bc83e6 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67d80c80 ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e8963b tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x67fff3cf fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x68052318 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6809e13b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x681fda51 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x68491e03 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x685929f4 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x685e26f0 regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0x686791e7 dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x6867e543 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6868a948 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x686e1bb7 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x687f07d0 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x688f837b gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x68929451 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68995dcc md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x689aba1a fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x68a1fb03 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x68a42808 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x68a8e3fe crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68bba6a8 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x68c4bb5e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x68e01de2 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x68e0955f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x68f18b6f class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68f9ed2c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6907dd52 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6916eb37 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6920a4cf disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x69218ff8 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x692192ad spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6931f26a unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69488f2c usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x694d1931 setfl +EXPORT_SYMBOL_GPL vmlinux 0x694fcf28 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x695492e7 nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x6958dd58 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x69628526 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696960bd __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69744f4e spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69865a07 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x6987e0a4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x699d7cf7 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x69a1ad4d cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x69aee19c rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x69b514e7 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x69b7a1e4 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x69be14c3 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x69c89b4d led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e8e669 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x69eb2709 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x69f923a9 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x69fcc57d pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x6a0a6ee4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a405362 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x6a40a2f1 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4788d4 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a726221 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6a78abcf regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9fe694 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x6aa2e0ae crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6acbca59 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x6ae52d66 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x6af418d7 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x6afe15cd bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x6b03e318 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6b28e5cf devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x6b2b68e1 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3e73c9 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b866f06 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x6b917232 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x6b97c0d4 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bb5379d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bb9c763 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x6bc882d9 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6bca4f96 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd4acc1 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be5f65f platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6be5f990 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6bee7a0b devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c14cf0b ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x6c2b3321 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x6c2c3839 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5a77e9 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c658e65 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6c660f80 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6c7cbcf0 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x6c7efb8c kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x6c947776 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6c9c0708 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6ca433dc pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caea9f5 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x6cb4dd87 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x6ccb2a3b __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x6cedca7b irq_sim_fini +EXPORT_SYMBOL_GPL vmlinux 0x6cf083cd cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6cf60686 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1a2b81 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6d240bfe spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x6d241262 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d362077 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x6d493cce regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6d4ba224 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6d4e67cd pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d774567 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d9f2801 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6da35c6c flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x6da79773 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbc2099 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x6dd3f0f7 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6dda12c3 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6de5f890 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6df221de css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x6df40931 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x6dfee02d regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e0e4695 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6e1bf9fb clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x6e261c3d percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x6e2b740c dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x6e2f9f66 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6e3e29f2 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e50669d shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e79ea9e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e91c449 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ea2c1df __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6eb8df82 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed60a58 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b520 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef8e482 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x6f0362ac phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6f0c2353 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2b4a46 fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x6f34ee17 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f4f842b cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f5999b9 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x6f6c2c21 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x6f6eae42 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x6f8ee43b ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x6f940c23 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb94902 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fce8199 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6feb768f context_tracking_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x6ffed47d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700b9c00 vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0x700d751c alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x700e8e32 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7020ecc7 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7026b7f3 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x702f7c0e housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x70368210 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x70437bf5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706cf741 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70768fbf srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x708143c8 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7090f54c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0x70b3e1bf devm_device_remove_groups +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 0x70cedc7e pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d51844 nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0x70d5cc4e device_move +EXPORT_SYMBOL_GPL vmlinux 0x70ed3e1a xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x70f04c41 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711130ed bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x715ca3c8 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7163472c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7176ea82 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x7180508c vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71892b15 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a12370 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x71a6a30a lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x71aff0b8 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x71b18e12 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7205b8e3 trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0x722a4290 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x723f8597 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x72536189 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x72536c29 cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x725402bb dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x725bd08f tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7277625c __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72b318af inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x72b89fbb __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e1e486 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x72e9cb99 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x73048bf6 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x731cd6c2 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7344ec7e usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x734e7544 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x73568f6c device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x739bb8db ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x73a079c3 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad39b1 of_css +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73ce5583 __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73da1b2c crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x73e67144 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x73fe57f1 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7400695b usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7415768d spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x741914e4 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x74205aa4 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7421d6aa devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7434ba62 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7450c305 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7459fcd6 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x746ec4ad xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x74744562 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7498bd9b efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x749defbe blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x74a75497 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x74b549c9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b64b99 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x74b9e6f1 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c0bf43 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74dd4275 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x7510d56b pm_clk_remove_clk +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 0x7523079a register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7524752e clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x75908a80 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x759a2a1b sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75a8cd95 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x75b8d529 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x75c695ec tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x75c793d4 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x75d07b0d __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75ded65c skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fbb4a9 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x75fcd231 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x76112d34 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x761ab58e devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x762e13c7 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7637a382 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x763c5d68 vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0x76509819 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x765a502f rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76684927 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7674dbcd fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x767aae50 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7682a9fc clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x768d93a7 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x76b6f211 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76db1ba0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x76db8603 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x76ebde04 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7701f1a3 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x772889b3 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x77329635 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775eafc5 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x775f7665 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x777f0ada pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x778c1899 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77973a03 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c02955 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f1e1a6 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x77fcc026 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7810ceb0 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x781d4255 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78375ca4 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x7855635b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785b67bb ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0x7869eb5f blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787cb929 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x788c72d2 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x789a4358 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x78a2534f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x78a799c7 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x78bfcbb7 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x78ca0703 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x7904dc14 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x79052e82 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7938d377 __devm_reset_control_get +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 0x794c0d18 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7969e8fa shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7984d921 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x7985e732 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798b8711 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799ada58 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79d0c53c devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79eb82e8 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x79f3cc7e dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fb947e aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x7a291a75 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0x7a32d4f0 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7a33204b regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7a39a0db serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7a48fdda iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a6953b3 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0x7a70ac88 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a9b9a75 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7a9cee07 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x7aa39282 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7aab4bed subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aac0260 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7aad0d9b pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c66e pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7ae8e2d8 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x7aea5f1b dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7b156b5e blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b436eeb devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba78132 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7ba7c6bb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7bc5ad4f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x7bc80c61 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7bcd145e ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x7bcf30f3 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7befd4b8 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7bfc0f5d proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x7c017423 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x7c0e8d8f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c30beca kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7c386baf clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7c58002e vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x7c64c457 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x7c751a99 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c833522 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c84c391 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7c89a6a2 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7c8b4497 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x7c8d4b7a pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7c8f102b thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca57120 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd321b6 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd90553 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d06bba2 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x7d073fc4 user_read +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d12045b arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7d162ad7 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7d180c11 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d46cb27 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x7d4c0f7b dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5a4a3b iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7d643ce4 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x7d657d0b pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x7d73aacb page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7d7ef020 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d896b55 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7da42beb class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dc0b269 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7dc25221 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7dd97bf0 generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +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 0x7e0277b4 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x7e132cf5 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7e158d24 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5893a5 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e649560 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7e6d473f simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x7e6e6783 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x7e820972 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ebb2482 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7eccdf0e register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7edfdd5c kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x7ee5580b dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7efc3e69 __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7eff806c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7f007b3f mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x7f11a17a perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x7f18a577 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x7f33ca6e find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f41fa58 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x7f5122b1 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7f5c0fbe rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7f7a91f6 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x7f7b3efe __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84a381 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7f8bec7e efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fc06f01 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x7fc82350 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x80021c10 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x80051976 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x802eb3df get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x80393ca1 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805e42c5 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x8076048e acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80a2a18c bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x80ae8461 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x80b004c1 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80b3333d sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x80c5ad14 nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d2b68c ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f8a1e9 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x80feb0eb pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8107f8d5 bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811de369 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81312e10 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8135f1b9 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x81499582 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817a5cc4 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8188255d scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x81884151 cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0x818d25b6 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x819357f8 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x81979249 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81ac7c78 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81be51ba usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x81c75851 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0x81cc2a47 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81e61d54 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x81f28bda dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x81f8a16e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x81fd81e3 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x821194fa edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x8211fe1a _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x82292074 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x822a1b8b usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824896c4 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x824e32f3 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x82569064 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8262591c clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x82765cf8 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x82777233 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8288e10e trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x8296f9cc udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82a8e21e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x82ab9725 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x82b40001 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x82c38cfc devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e7fc16 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x830c469f amd_register_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0x8330ee7b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x835033d3 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x83522e5e rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8373d43b anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83905af1 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x83963ba7 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x83ada964 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x83baf028 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83c9714f sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x83eb1eb3 nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841eb448 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x841fca20 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842660a3 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843593b9 get_device +EXPORT_SYMBOL_GPL vmlinux 0x84385dc1 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8454be0f sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8475b790 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8478164b acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x84799e23 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x849ceb73 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x84ae01a6 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x84c1304b usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x84c78c24 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x84ff8c44 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x85011c1b spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850cbe75 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x85157d5d nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0x851bbdb4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851f2f87 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x85219ed1 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x853c8def devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x853cc7c3 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855a0afd switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x855effe4 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8563d792 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x85747b3b pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x857c6f35 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x8583c807 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85a04b46 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85ad7c19 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85c3751d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c5d028 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85f17a16 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x86065954 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x860b7dd4 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x860e00c9 vmf_insert_pfn_pud +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x86212d70 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x8641bf36 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x8661167e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x86618b12 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x866d556d nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8672217c tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x86726315 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86ab5795 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x86ad5dfb usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86f18fb4 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870135f6 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x87209a35 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x873131c8 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0x873332a1 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8749eaa6 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x87572fdc fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x875c9307 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x877a6a94 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x879ac529 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x87a94450 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x87e32608 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f1cf91 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x883002e7 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x88395633 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x88467cfb user_update +EXPORT_SYMBOL_GPL vmlinux 0x88527d5a call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x88574ae4 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888fdd93 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x888ff965 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x889c702d devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88bfb29a intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x88cafb15 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x88dcb008 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x88e235bf sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x890bf70c paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892d76a0 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893d5777 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894ac8b7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x894e006b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x896b4a11 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x898af5cc phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x898cec41 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x898f804a pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x89976c32 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x89a4a846 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b2b8d7 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d00ec4 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x89ddac24 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x89e3092a pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f2f0b7 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x89fa4800 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x8a10f7f1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8a178494 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8a1881bb screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a30d15c udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x8a34134d edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a4264b2 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8a4413a5 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8a58dd5c acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a714ec7 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x8a7b07e8 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a8034ba class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8a8dbd94 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8a9d7a0b regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8aa6df78 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abb68fc devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8ad389eb regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8adb43c6 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x8aea5096 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8af5bbca devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b3242f6 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b4d3ff8 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x8b564a02 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8b58b9a3 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x8b5d6b84 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b706161 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bc2a26c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8bc76766 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x8bc9aac1 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8be3dc4c sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x8bf23ef2 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0a6cb4 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c1093ea acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8c278a71 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c40ae4b xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x8c650862 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x8c7089fc sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c84a315 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c999e73 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8c9a65c2 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cbb6d0c devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x8cbe8ee3 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x8cd4d475 xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3ee04b nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x8d6f533b device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88acc4 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8da78c0a pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dab0d3d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8dabe4bb simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x8dae5545 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8dc52ff6 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x8dd0c75f clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8df33d87 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x8df3590b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8df51c04 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x8e014102 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x8e1a16d0 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x8e232872 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x8e2d515f set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x8e38e02a iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x8e3cdeab irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x8e3e9567 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8e6d75aa gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7d12ba __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8e9d08fc ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8e9e17cb devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8ec18dca regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x8ed34488 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8ee58582 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef8bd42 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f523590 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8f53865c sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f598e6d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f9229 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f801d8d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f82591c ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8f8ef26d power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8f9162ad devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f917045 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f9b6d69 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8fbd5e30 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8fc79d50 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x8fc8ce2b vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x90042055 iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x900bdf90 apic +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x9026d553 find_module +EXPORT_SYMBOL_GPL vmlinux 0x9031b431 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9043499e crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x90522798 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9054f994 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x907f6e9f regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x90889768 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x90984cbd pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ae01d7 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x90b9862a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x90c5aa16 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d5c5ce device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90f8c3ac nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x90fcae3f devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9112fe31 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x91500e93 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x916efbf4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x9172f122 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x917b3753 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x919cbe06 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x91a1e4bb ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91acd308 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x91f2735e ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x92011cfa rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x9258a239 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x926af55f blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9278f1c9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x928cc1cb regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x928db073 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x929822e2 _copy_to_iter_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x92b4a318 device_register +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92eeda3b efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x93292c3f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x932bb430 nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0x933bfdf8 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x934490ca udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x9358fe4e ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x935c99fd badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x935eba06 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x9365e2ed bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x937d7b15 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x9386f77e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x93894329 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x938b9e9d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x939d4e96 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x93b6fc5d regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x93bf13b7 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x93c851ef rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x93c8949e transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f2f037 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x93f43529 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x942f35af irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9445f3ce switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x94621d3c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946f1917 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x948c96c1 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a878d3 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x94b5ac10 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x94b6233e sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x94b85f1d ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x94bbee70 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fee9bb tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x95036cab alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95096897 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95379e64 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9557dc29 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9564297e xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95e813f6 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95fa951b badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x96323aff pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x963927aa ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x964e01c7 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966e5398 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9689d3f2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9698b5af put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x969cd114 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x96a19e06 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x96c10e45 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x96d2c5e2 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x96d6bcda dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x96e3ed78 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x96f1b700 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x970ca1c3 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x973ade60 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x9754e8da dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x9769b802 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x976f23db tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9773d8bd dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x9774f499 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x977a1482 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x978b1652 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9798d2a9 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x97b4c951 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x97bfb050 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x97c81e9e ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x97d4198b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97fb7185 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x97fecb1e hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x9826fef0 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9834452a inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x98486572 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x984ad416 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x984ebfba bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9869dfad tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x986b74ab nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x987ccf1d usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x98801633 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x98b2cc61 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x98bda961 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x98bdac22 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x98c7e4ee ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x98cc2d5e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x98e6461c sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x98eae5ad virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98f5d0d5 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x98f89645 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98ffcaed wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x994a8e7c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995fceb5 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9962598d led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x99630ff4 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x99758c3f bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998941c0 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99981e03 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x99b0dd39 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x99b26f0b fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key +EXPORT_SYMBOL_GPL vmlinux 0x99d01436 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x99d301f3 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x99db5240 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x99de2a0f scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a167491 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9a253961 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x9a25fe08 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x9a283f1c md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a32e710 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x9a411d93 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x9a470884 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a72d2d8 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aa8498a usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x9aa9e957 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9aab2af4 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9ab04bbe ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9aba2a6a genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac9cfcb power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x9ade97a3 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x9ae085e3 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9ae7f712 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b05c666 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x9b0ab35b skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9b2996c8 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9b3b8de3 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x9b443c03 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x9b48853d __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5b1160 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x9b62b7c6 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x9b8932b0 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9b9f7ba0 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9bc9bf3e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9bc9f5c8 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x9bdae570 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bdfe928 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9be26348 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c07c07c phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x9c0eef6e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x9c1beaae pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9c1cccac spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x9c1d238c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x9c2571d5 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x9c298589 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x9c2f9785 nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0x9c3200a0 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x9c4906fb rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x9c4a65d2 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x9c50faf6 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x9c591bd9 acpi_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c887416 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9c8adf73 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c90a544 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x9cbaa739 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cc234b6 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccdff4f devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9cd050ee watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9cd1e56d phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x9cd5157a sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x9cd68c47 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x9cde28bf nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d19d677 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1dfac4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9d236e89 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x9d27d80f mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x9d32ca8b rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x9d46d2cf regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9d4a7186 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9d589da5 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9d599ba2 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9d673c03 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x9d7f1da1 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9d8d2a86 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x9d8d7e62 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x9dab0207 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9dbb9931 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9dbc171c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9dce36d6 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x9de8eb83 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x9deae618 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e03724c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e388d5a bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e390173 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e593e55 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9e635379 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x9e6b87d0 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0x9e874aeb nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x9e8ea868 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9ed2b9d5 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee409f7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9ee50ec1 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9f0945ed pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9f129a66 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x9f1e7dc1 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x9f21a873 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f37faca phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x9f4c6af6 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9f607b1d debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9f718ee5 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x9fa3fe6c acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x9fa498b8 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fa4e41a hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x9fa520a0 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x9faaa23c usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9fb2f3e2 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc08845 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd56fa7 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff850c2 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x9ffa67d5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xa002b9d8 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa03230bd rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa04acc8a devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xa04eb5ba regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa052688b thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa053fb37 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa055fd78 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa06a7ea9 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa0748c78 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa074b3f0 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa087f3e1 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa0962fa0 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa09d5576 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xa0a7515c gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa0cd18d0 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d50b04 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa0ebd2cd nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0xa0ee29bf irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xa10c235c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1206819 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa12a11bb dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa1485d7d spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa150ca54 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa1752f2f nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa175bca7 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa177cd76 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa19666ed pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xa1a6c8fb usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa1b3e52c tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xa1b56594 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa1bbcad4 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa1c18e3c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1d1268e tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xa1f469b8 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20e9d5e __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa21eee69 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa21f050a dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa22ca2e5 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa22f0488 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xa256ee8d strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2810ac5 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa2867037 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa2a424f8 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xa2cb941c ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d43629 pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0xa2d6d7f6 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa2d89636 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa2db787b wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f53d9f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa3332429 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa347a3dc rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa34dcf2d virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa34ea797 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa376c35f sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa37b29ff cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa37d7a4b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xa385e2e0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa39e2f70 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3adfd6b pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xa3b2ab8f pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b67944 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c0cc8c dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa3c32889 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa3d24611 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xa3d89819 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa3e22839 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3efa822 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa414a9cb devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa4245c15 fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa460137c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa493064a rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa4968041 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa4b64c5d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4c24998 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa4c4b49a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa4cedfc1 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xa4de2284 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa4e27a87 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4ee9d39 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa4f53fcb sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa4fd6907 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa4fd7697 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa4ffb50a ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xa5104a56 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa51729c7 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa519db96 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53fc25e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xa5463779 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xa555c3c1 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xa5774a0e debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa59c6b51 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d9d3ba __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60f9e57 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xa628360f clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa66e7090 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa673a1bd gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b0c7ee device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f2e284 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa6fd82d5 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xa708b9d1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7356b62 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xa761b5d7 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xa77afc35 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa78170ae blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa78a8292 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xa7afad04 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xa7b67d70 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa7c9918b usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa7e45645 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xa7e9356d spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xa80e2690 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xa82fba47 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa836e74e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa84e5393 vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa880b8c0 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa8889ee4 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xa89aab5f kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa8a126f7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8da3c1e __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa8ec8ff1 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa912cdc6 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa9184c24 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa921b9d5 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa923ae84 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93ed371 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa94655c2 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa96efc00 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xa9705033 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xa974fa78 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa97f1d6b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa9804028 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa9855833 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xa991a727 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xa99c5b6c __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa99d3012 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a8a889 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ea6b34 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa9fb7d2e pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9fed66c arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xaa151e23 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xaa22df04 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa305a96 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xaa39f955 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xaa483a03 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xaa5921ae add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa91b9a5 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xaa95fa37 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab2c51 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xaabcc3c9 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xaae1b6c6 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xab098cf6 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab284d14 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb29cc8 intel_svm_is_pasid_valid +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd10843 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xabe214d5 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xabe8c0a2 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xac0b1b08 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xac0eeb80 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xac107e73 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xac1e6992 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xac221e0e spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xac530a1c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xac6846dc ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xac93ed84 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xacafc387 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc2d954 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xacc77089 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xaccad3cd tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xace0200f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xace8502e dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xacfe4e97 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xad088292 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad1460e3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xad187a35 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xad19d7b6 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xad1b6256 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xad1d282d gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xad4bb004 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xad52b174 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xad534c3c dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad7290fe __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xad81a3d9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xad89829c seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xad8d98e2 udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada4f549 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xadbf5063 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xadd7f174 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xadd84c4a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xadf0b469 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xadfc3ff0 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0cec32 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae2e5c4c devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae543343 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xae5bda6d vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xae66c926 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae709b77 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae85620d __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xaea50cd7 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xaea64a18 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaeaded9b nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xaeb8af03 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xaee21b76 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaee931f7 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xaeea713e ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaefc32f2 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xaf01a900 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf145429 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf2b1958 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xaf2baf01 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xaf38c9c4 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf51b077 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL_GPL vmlinux 0xaf6d68fc devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xaf761418 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xafb1ae2d vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0xafcad696 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xaff02415 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xaffaccd0 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xafff522e pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xb02755a8 nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0xb0572809 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb057b366 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb05af3fa usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xb08a9e14 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb09043b2 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xb0907b52 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb0908c91 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xb09782ca __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0a8cabf crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xb0b06411 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cf1f25 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d44275 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb0ec0a84 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb0fbdb60 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xb10223cc regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xb1057563 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12a000a verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xb1368369 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xb13cb822 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1528a1f trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb153fa7a phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16ba9e5 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb17e960c gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1981380 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d2e18a bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1db3b2f regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ebe836 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb1f88f6b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2122c12 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2304f08 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24290b9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xb253859f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xb264cb30 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c68f6 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb27fab63 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb285b020 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb28a6ecb iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xb28b93f2 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb290b14a sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2989d13 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb299b9d3 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xb2ae1888 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xb2ae527e ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb2afab6d devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xb2b7c693 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xb2d027ee pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xb2dee6d5 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e83a1d nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xb2f0d246 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xb2f46326 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b7872 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb30e2e04 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32ac1f0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb39894cb blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xb3a50112 edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0xb3adfdda regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3b1b446 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3c26ec8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0xb3d8893a bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xb3dd067e pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb400bd65 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb410d391 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xb4299bcc devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xb43ae687 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44a62bf driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb474e5b0 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xb4832a7f pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb48a1290 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xb49c872d inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb4a098dd irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb4a0a8fc input_class +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cb01a5 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5188231 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb529e866 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb52d14ad devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb52f6371 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xb5309587 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xb53ca156 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb579812c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb58263e6 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb58d0077 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xb58ec791 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb5a23d4f gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5ae29b4 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb5b7f0e4 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb5ca9c65 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb5d232bb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xb5e30bf0 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb5f77e0c nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb60be07f crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb61ecd62 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62b86f5 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xb642c383 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb64b3966 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb654b453 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xb654b821 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb66bf0af anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb66c2912 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb689c43c ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb695f609 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb6964461 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6a11321 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb6a124b7 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xb6d92da5 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb6dc51de spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb6e335a5 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d2cf ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ee10ac nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xb6f10c67 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6f3287f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xb71872cd regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb71e8172 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb71f4052 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xb72005ee phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xb72a29c2 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb735684c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb743cb97 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb74b9ca4 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74ef060 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb75ade3f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xb75e57a0 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active +EXPORT_SYMBOL_GPL vmlinux 0xb7735446 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb79ece80 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7b75864 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c9183d cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f79cab pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fa96ec msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xb7fdf1f0 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb80955c7 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb81aa02e bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb82cbfbf serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb8339714 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84a6aac cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb85a7e7d wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb860a50a __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a19b6a edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c12276 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb8c270d3 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e270b0 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f2245d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xb8ff5aef led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb91bc807 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xb9205432 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb931b6e6 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xb9463b10 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xb97189cc ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb977e66b lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xb97fc0d4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xb983c85f ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xb99dc1d2 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xb99f2cf7 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL vmlinux 0xb9a75dc8 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb9a8b227 edac_device_add_device +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 0xb9cf1be8 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e32fb6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba15c51a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2eda8b rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xba2fee9e srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xba42b9c6 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xba4d954e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xba4e1572 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xba714f16 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xba7b243e edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbaa6ad24 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xbaeb76b9 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xbaf1e82f pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbafc8e64 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbb0851e5 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0fdeb6 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0xbb149673 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xbb1dbaa4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xbb23ed11 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xbb2938c6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbb3dd16d pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb41914f iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xbb43d662 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb692676 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb8c6433 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xbb8e4808 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xbba7a038 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbcdfac7 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xbbf1bc73 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xbc138280 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbc1cab5c subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xbc274f93 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbc29f4c3 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xbc2a5a75 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xbc3eb404 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xbc50aac2 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6aee09 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6e725d clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca7dac4 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xbca84ee4 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbc316a __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd76476 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce10378 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xbce31743 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbcf0d8bb iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf29c2e wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd79136d phy_create +EXPORT_SYMBOL_GPL vmlinux 0xbd859c6c skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xbd94280d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbd97f1b4 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xbda20e45 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbda8a83a crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xbdb4b47d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbdb57288 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xbdc216c3 devm_irq_sim_init +EXPORT_SYMBOL_GPL vmlinux 0xbde74b29 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbdf3a453 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1a77ac blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xbe23f7f5 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbe2838a5 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbe2ef4dd l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbe39a6b3 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe67bb48 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe69bffc dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbe8043a0 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe94ea30 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9adc38 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb2e18d lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbed422c3 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xbee6ad2d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbee9a0f6 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbef92db3 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1104bb do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xbf5c27d3 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xbf71de1d regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf9923cf fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xbfab9eb4 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfedb453 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc001f2ef ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc0071931 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc01345e6 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc03dd5f9 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc07472dc x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xc07c8c31 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08768eb platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08f2c91 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc0938b76 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xc09a1cb5 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc09d75dd cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b43e98 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xc0b6660f arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10e666f scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xc10e859d mmput +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc111b2e7 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xc127b609 vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1422052 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc149afe7 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xc152105d ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc159521b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc15db9c4 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc16780b2 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17346e0 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17c710d rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc184a27f dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xc1899cb9 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc1996192 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xc19c15c1 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc19c403a edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e7d446 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xc20c346c usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc21f2f81 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2334009 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc237f1ee xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25e3da7 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xc263ee74 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +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 0xc29e6d59 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2ca51a6 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2ebee65 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc305f55e devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc30fcdcf rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xc30fe85a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc312ca06 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xc3179572 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc32fd923 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3433b3c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc34eabd2 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc3540aa3 devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0xc35d649e device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc365601b events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3869c94 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc39038fe alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc394f33b pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3fa2243 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4015421 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xc401b3c1 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc405e068 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc41e82a5 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xc41f229f scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43284b2 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xc43b8402 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc442dde6 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc45f9f30 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xc465a3b3 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc46cd3cd ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc479e1ba metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc4884f1e sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc4d9c798 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc4dfbc83 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4ea67cc gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5007ce7 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xc50fb58d gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc523f79b __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xc5508d5e usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xc5582e9f md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xc558e453 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc5735dc0 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc58c4ce7 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc596dafc devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b0003d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc5dd0d11 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc626a9b4 iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0xc627923e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc6337233 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xc64aa0eb regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc6558c37 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66da4b4 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xc67dd43c clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a57b43 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc6aa21d0 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore +EXPORT_SYMBOL_GPL vmlinux 0xc6bb24d3 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xc6e482a7 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc6f6d689 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6f9af6a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6f9f516 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70eae02 ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0xc7103657 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xc71989ea acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc7309205 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xc737bf28 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc73da980 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xc7513ecd ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc75229bf bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xc75ce9c4 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xc75d8eb1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bd09a5 hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xc7c8c271 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc7e07fa7 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc809047c rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xc81dfdf8 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc829084e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc851a70b fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc85339e2 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc871dce0 node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xc87c7b35 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc88cdb51 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc89be5e7 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc8ad788d find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8d13516 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc8d19d24 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8d53629 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc8d56a65 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc8dbf64a perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8dfbbe7 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc8eded9f edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xc90712c6 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc919ed80 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc91fd2c7 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xc9277624 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc939e848 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc959192f devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc97c008b strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9ab9926 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xc9ae6f37 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xc9b99eee do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fa6a99 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xca1b949e disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xca2dd795 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xca2fab83 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xca3a1029 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca50efd2 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xca6636e6 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaa793c3 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcab8ba63 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xcab97f3b platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcadff626 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xcae2d7b8 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xcafe4bce devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcaffe282 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xcb0b4464 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcb0d9cca vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xcb0dc941 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xcb15dcc0 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xcb172b34 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2f153b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xcb35c846 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xcb36f285 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcb4e8864 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xcb59e791 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb6f04df acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcb7c3a4b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xcb87bad2 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0xcb89e2ac bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9b56da root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbbfa381 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xcbc74c1a ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xcbd6087a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc171818 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xcc25e948 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc2a74df usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc5f286a ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xcc83b108 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xcc91ec40 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca2c3d7 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xcccf8876 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce113ff __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xcce1556f d_exchange +EXPORT_SYMBOL_GPL vmlinux 0xcce36917 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xcce384a2 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf6301d edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xccfb7af0 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2d9ba9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd43bd22 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xcd4457cb acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xcd565562 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcd63ba75 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xcd64b37a fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7c8962 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd82a39a iommu_present +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 0xcdbe50cc cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd64a4a efi_mm +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde39a92 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xcde99324 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcdeae2b1 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xce130c7b ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xce4c0176 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xce5a9b04 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xce5c111c efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xce613acf gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6dbb1b clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xce8b8991 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xce9b20b9 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcebbe00a irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xcebfb02a dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xcecf3211 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xcefe693c ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xceffe256 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xcf1e9a2f ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xcf1f64b3 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcf216f26 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xcf2b14fe usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xcf365d48 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xcf3ac0d6 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xcf498a80 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xcf4e6550 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf67f0f3 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xcf6962e3 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xcf78a0ac pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xcf9538dc relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xcf9ede50 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcfa0d384 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xcfa5b6a4 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xcfa9ae05 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc6d92d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xcfcccede ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfe1b97c __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xcff56373 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd024cf57 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xd02bdbf8 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xd038ebf1 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xd03a7554 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd03ce20b fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0530a76 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd064c6a4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06d4ca0 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xd08345dc kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xd088c344 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xd08d92df rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09f2ad2 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0a8aa79 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0aeac36 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait +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 0xd0e4f067 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xd0e5abc4 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd10e12a7 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd1122262 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xd1468229 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xd154dbdf usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd159edb2 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd1628f47 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0xd187c4fe usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd197f962 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1cf54ba dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xd1d1722c iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd23514f6 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xd23ed29e pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd2401d78 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd247d696 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xd24b1fdd crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd261f874 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd291ccfa inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd291d3d8 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xd29fb57a hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd29ff9f2 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2c87ef4 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2e2d769 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd2f32650 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd3034ec4 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xd32650a4 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xd32f0b52 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd34716e2 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd34fb09e attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xd3541654 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3677305 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd368679c nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd37087f5 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd372a4fe dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37afc2a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xd38b03f2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3aaadc7 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3de2af3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd3e08e85 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42a77d2 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd43a7e61 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd479f04b br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xd48ccdd6 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xd4a3e5b7 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bf9f94 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d892d5 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd51d2528 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0xd5265cc3 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xd530cc56 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd53cd083 vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0xd53f0969 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd543bde5 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xd5483835 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5866338 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd599cedc devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5a95970 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c70d53 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xd5d26bbe platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f6141d crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xd5fe1652 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xd5ffc10a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xd6067c9c hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd615b454 vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0xd618d689 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd61d82f2 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xd63d4b8a __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xd64b5f66 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xd64e5674 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd654e752 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xd65a17a7 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xd65b5d8a spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6747f6c screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xd68eaf3d pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xd69c8455 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xd6b9240f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd6b9d085 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd6ba442b devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd6bfac0f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xd6cdeaf5 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd6d3c145 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd6f07a22 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6f2a85a devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xd6f4f5df is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7235c2c devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xd727b14d vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xd728cb55 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xd728f8ce tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd7328d41 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73a18ff posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7443837 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xd74d35cb bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd761f607 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd775f395 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xd7816115 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xd7853c91 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xd78c649e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd7922be5 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xd79a172c led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd7ade1d4 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7e4599c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd7e9188d blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xd7ea33f7 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xd7f7e6f4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd7fac95b devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xd8131615 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd82088d0 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd8391b15 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xd847d86b iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8531db4 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xd85622d2 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd86d6c84 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8852316 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd892df8d pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xd895bbea pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd89a9bc4 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8b9a9a8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8c80797 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd8c934dc regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d8ad50 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd8dc0e7d dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd8de1730 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8ff93a3 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xd9001011 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd907a284 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd92c884e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94a5ba6 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xd94b9261 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0xd96118cb srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98072d3 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd99a7398 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd9af08de power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd9ca654e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9d7e442 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd9eadcf4 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f9badd do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda01f88e devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda3f0f47 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xda4c82b4 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xda869204 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xda8781be __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xda9acb2e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xda9b79c8 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa5ba95 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xdab0c985 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xdab55cfc subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdabd27c3 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xdac0bfbd unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdaec1a0b blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdafef385 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdb4f7728 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb4fcac3 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdb53157e virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xdb612b87 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb783ad4 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xdb7a5a7d to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb84fadf fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb90fce0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xdb915f20 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdba125e0 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xdbbdbeb1 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xdbbebd17 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xdbcd6aaf mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xdbf1ffcf led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc101b20 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc515290 nvdimm_kobj +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 0xdc892521 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc89a092 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xdc937d01 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcacc620 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdcc19d7f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdcc697a9 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova +EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdcee17e5 ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd12b1ad xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xdd219813 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd24e8ec rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd43f891 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xdd4599f9 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6925b6 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdd6a6f91 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdda3bdc3 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xddae326e virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xddbd40f7 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc2b4dc scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xddc672df ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddb6622 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdde8b7db led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xddfe7ad9 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde1b0431 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xde632898 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xde6e7734 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde702ade nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdeaf9b67 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdeb9f150 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xdebc4237 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xdec83215 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xdeec1dbd devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xdef9369e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf105d6b devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf1473b6 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf22f9a3 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2db337 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf2effcb replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xdf34d122 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf568d9d crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xdf698ae0 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfa54697 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xdfb167de irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdfb22226 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xdfc24df7 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd14186 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xdfe086db ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfe1806e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xdfe65fb9 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdfef6da3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe022b28a noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xe0240df6 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe024d660 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03ef68d dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xe04a95f6 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe05cbdfb fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0a69596 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b6ae2d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe0c2d2d1 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe0c7092a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0e092c3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe0e7b2c7 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe0eb58b1 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe0eee06b fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xe0f9e15e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe126449b devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0xe1359252 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xe136ccaf remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xe158b40b public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xe15f1381 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe173b22b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xe1751f80 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe1850528 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xe18642bd napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xe1a232bd edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ac3a79 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe1b41c54 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1bdd15d pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe1c92162 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe1c9785c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23890f9 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe2444af8 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xe2494198 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe24f9790 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xe2719588 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xe2810797 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe287a124 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xe28e3ce5 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe292bcb3 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a9b844 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ba5ccb vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xe2ba714a nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xe2ca2017 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xe2cd793b usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d951e0 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe2fe1a40 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe309ec04 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xe3227c5a ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe3363354 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe33e0eed cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xe35fbca2 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0xe369d4a9 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe377603e ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe38a3f4b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39bfdc3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a164de devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3ad7193 md_run +EXPORT_SYMBOL_GPL vmlinux 0xe3b72ada regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3cef1a4 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xe3e168de ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4107bf5 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xe411e111 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe415ab95 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe41e3aee smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe422c959 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe426ffef fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xe428b328 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe435d93f ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4635f07 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xe478742d devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xe4820bce blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe487fd15 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49f0ff4 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b4008a md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b9c8e2 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xe4c11e92 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c9f184 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe4ca8bc3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xe4cd288f xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe4ce6167 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f30c67 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe4f401f1 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe502de3a dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe50cc390 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xe519ad90 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0xe534c919 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xe553f9b4 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xe557adbb dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe55dbc96 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xe569d4d5 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a48cda sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe5a62e92 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5b87322 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe5bdadc0 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0xe5c4a7ba tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xe5cb814f crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe607e67e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe6260809 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe63ef373 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0xe6499bf9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64c469e devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xe665816e thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xe666008f vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0xe666c9ad regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe66e53ef regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe6755476 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xe6775cf7 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0xe68ee076 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe701afcf phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xe7068313 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xe70c3b78 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe71b43e6 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe723d3d0 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7256006 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe736b76f tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe73e2dec vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe7445d76 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe74922a0 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xe74c30ac pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7888881 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe79e3a30 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xe7aa3b9d devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7cd0934 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e32707 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xe7e5786b trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80031f4 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe804a07b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe806d33a mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe8421caf mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xe8428a60 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85618a4 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8665ddf ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xe86eb754 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe86ff916 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe872cf0e vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xe87301c8 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe87d7f62 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe87d8f91 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xe888c5c4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xe889e85f devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xe894e3b6 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe8ae0cb8 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8ca8c29 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8cb6c97 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe8dfe0ec pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8f2579a ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe90881f1 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe909c9db account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xe90c5db8 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9141521 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xe918c45d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe920110d devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe92c990a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe93de452 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe954cab1 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0xe973707e dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xe9a8314d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe9b07467 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xe9b78d96 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e12f4b __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe9e4ce82 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe9f5e432 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xea0d77b0 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea27da16 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xea358360 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xea57c240 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xea588f84 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea79a948 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xea7d0526 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xea84ef64 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xea9069c5 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeaa0e423 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xeabc4ca4 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xeac301a2 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeadf267a raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae52aa8 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0xeaecdeff dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xeaef3bb4 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeaf84ac5 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb10c133 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xeb111dd3 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb142fe2 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xeb3a68b6 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb4bb853 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeb4d6691 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xeb4df6f3 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xeb52cf16 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xeb667e37 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xebb1ef30 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xebc46c1b gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd2f39b udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd670fb handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xebf3a010 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xec247a58 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xec3cfc5a devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec6d87f2 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xec73d808 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec7c6d3f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xec8ba4c5 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xec96d980 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xecb99467 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xeccb14c7 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xecdc7342 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xecf28eac sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xecff56b3 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xed1b648f virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xed1f47bf regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xed2d532b devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0xed5688dc ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed800f2b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed92ead6 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xed9b6bef acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xed9de4e9 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xeda2402b devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeda3255f sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xedb1b437 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xedb37b73 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xedc0d12a pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xedc1cdb9 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xedcfef70 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd3ddf6 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf29d7d pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xedf8e0f6 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xedffdbcf devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1e18e4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xee2609c5 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee42d89c gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xee4341cf devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xee535be6 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xee54bd96 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xee6751e3 blkcipher_walk_virt +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 0xee702039 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xeed292b5 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef8641b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xef0746cc crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xef117b93 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xef16a1d4 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8046c9 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xef81ca55 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xef842650 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa8653c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xefb21591 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xefb755a6 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xefbf8e20 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xefc6ebff __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff90c93 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf01bb009 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0316819 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf041ea0e nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf06704f7 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0732e19 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf083edf2 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xf0914468 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xf095f65b crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf0a5dfdd crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf0a6a9ba debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xf0c7f26e acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf0c8cdd5 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xf0d0d9e1 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xf0d88715 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf106c6a1 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1124db3 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xf1126b12 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf11fde7b bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xf126245c tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf159fb6c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xf15a63b7 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf1665d4a udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xf177b21b blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xf17968e7 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18ae930 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf190410d linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xf1986a93 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1bb8138 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xf1be7c9a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf1c3b1ad sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xf1d403b6 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf1da307d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf1e4edf7 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xf1fb5bca switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf20cfa28 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xf20e54df fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23b02de call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf247d2f4 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xf2532c1c bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf2545edb devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf277408f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2a5976e to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c51333 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf2d896a4 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf2dbfbc2 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf2e6c75e vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2e81c06 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf2eea8a9 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf312f3e2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3204a35 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xf3225b9e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xf32f3088 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3424851 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf355ee7b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf35a6d2b dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf37c3de8 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xf37cb506 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf382a3cd device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf3a62541 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf3ae8643 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf3b405be nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c1b7c9 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3c47d8d dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xf3c7345b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf3e82e85 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xf3eb049c inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf418affd fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xf42b3854 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf43d7119 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf43e377c free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf4635308 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xf466c71e irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf4799d10 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf47c3716 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47c7d9b pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf47ce9e8 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4a0f085 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b36674 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xf4b74d45 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xf4be39aa virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xf4beb804 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xf4c2d7d2 cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf4ee41ba cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xf4fbace7 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fd8380 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf5095394 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xf50a7c51 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf50e6175 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xf51723ac dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf5203533 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf52a5909 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55a05ef preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf5623938 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf5716374 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xf57f47fc uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5832f16 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xf58a6a59 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a74717 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xf5d7d3c8 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5e687bd skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xf5f29460 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf60ee544 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf64c03d4 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf668370c clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xf6870270 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf69bd765 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6b6d1f8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf6c40004 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xf6d14d86 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ef343e rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf6f0ee28 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f870a9 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf6f8ce70 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6fdb654 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xf7254b8a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7455c4a of_pm_clk_add_clks +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 0xf74fd3f5 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf75a7a18 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf76c65fd pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xf76fc1ee aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf7715263 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xf795a697 skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7cdf772 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xf7d3df74 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf7d62253 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf7e16541 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf7e905b0 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xf801770d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf82abf48 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8438200 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf85cff00 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf86cb75c xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf88d02c0 nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xf89f2137 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf8a353b2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xf8b6d2c9 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf8de5bbe tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf8e5cf54 put_device +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f4e1a3 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf90c86a7 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xf9173430 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93a3616 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9526035 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf958f5a5 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf95c751a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf9643a5a use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf981a203 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf98c32b1 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9aa6791 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf9b15f5e acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0xf9c843bd gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf9d28df1 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf9d3c566 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf9f0b969 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xf9f206c4 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xfa0b9951 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa33aa51 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa349c71 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa36a2ce register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa63104b vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa7901b4 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xfa7dbed7 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xfa8bc613 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa94cf61 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xfaa89510 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xfaab44f5 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabbc6ed dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xfac339df handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xfac3b969 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadfb5f6 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xfaeb98b1 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfaf19d44 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xfafe1014 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xfb1445e6 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xfb231653 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xfb2d94db irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xfb2dfc11 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb333b45 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfb41d15c direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xfb55f16b blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xfb5be319 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7153eb fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xfb88040a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb98eb58 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfba1fd27 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xfbae2230 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcf5f6e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xfbd99e7b dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xfbe4337f devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc06a2e3 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc1436c8 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc191a97 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4eef51 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc5932fd pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc772c67 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfcac0ceb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfcb5e843 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc32a4a lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xfcc7e9b4 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfcd5d265 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfce74e48 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfd276f14 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xfd34a3d5 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7532d9 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfd81c234 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xfd8b580e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfdb65730 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd98f09 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfe00d517 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe0346b2 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xfe087639 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0f4be9 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfe138a27 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xfe2ff2a3 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe3ead68 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xfe451607 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5b4e80 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xfe5d644f gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xfe5fac5c user_describe +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe6aacc1 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xfe796632 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xfe8d9694 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfe949419 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb75bda pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xfeb928c3 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xfedab572 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfede6969 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xfee289e2 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfee3cb6b fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xfeead731 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef6f2a3 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xfef91833 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xfefb0254 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xfefdf504 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff06059a ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xff1083f6 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2bba8f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xff2bfa40 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff306b1e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xff34b932 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff4a0537 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xff582ebe vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff6e0d40 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xff70b525 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xff7d6108 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xff7dcc6b __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xff842ee8 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff9e0715 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xff9e7c24 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb09f8d blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xffb183ea find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xffbeb508 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xffc4fb5b blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xffe5c467 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xffe68308 ata_pci_sff_prepare_host only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/amd64/azure.compiler +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/amd64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/amd64/azure.modules +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/amd64/azure.modules @@ -0,0 +1,2102 @@ +3w-9xxx +3w-sas +53c700 +6lowpan +8021q +8139cp +8139too +8250_dw +8250_exar +8250_lpss +8250_men_mcb +8250_mid +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +a100u2w +aacraid +abituguru +abituguru3 +acer-wireless +acpi_ipmi +acpi_pad +acpi_power_meter +acpiphp_ibm +acquirewdt +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +advansys +advantechwdt +aegis128 +aegis128-aesni +aesni-intel +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha1740 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim1535_wdt +alim7101_wdt +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +ambassador +amc6821 +amd-rng +amd64_edac_mod +amd_iommu_v2 +amdgpu +ansi_cprng +anubis +apds9802als +apds990x +apex +applesmc +applespi +appletalk +applicom +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcmsr +arcnet +arcxcnn_bl +arizona-i2c +arizona-spi +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asb100 +asc7621 +ashmem_linux +aspeed-pwm-tacho +ast +asus-wireless +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +atlantic +atm +atmel-ecc +atmel-i2c +atmel-sha204a +atmtcp +atp +atp870u +atxp1 +aufs +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axp20x +axp20x-i2c +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +batman-adv +bcache +bcm-phy-lib +bcm-sf2 +bcm590xx +bcm7xxx +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bnx2 +bnx2x +bnxt_en +bonding +bpfilter +br2684 +br_netfilter +brd +bridge +bsd_comp +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +caif +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +capmode +capsule-loader +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catapult +ccm +ccp +ccp-crypto +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +ch +chacha-x86_64 +chacha20poly1305 +chacha_generic +charlcd +chcr +chnl_net +chtls +cifs +clip +clk-max9485 +clk-si5341 +clk-si544 +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cmac +cnic +coda +com20020 +com20020-pci +com90io +com90xx +cops +cordic +coretemp +cortina +counter +cpcihp_generic +cpcihp_zt5550 +cpu5wdt +cpuid +cpuidle-haltpoll +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs89x0 +csiostor +ct82c710 +cuse +cxgb +cxgb3 +cxgb4 +cxgb4vf +cyclades +da9052-hwmon +da9052_wdt +da9063 +da9063_wdt +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +decnet +defxx +dell-smbios +dell-smm-hwmon +dell-wmi-descriptor +dell-wmi-led +des3_ede-x86_64 +des_generic +diag +dl2k +dlci +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-era +dm-flakey +dm-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dme1737 +dmx3191d +dn_rtmsg +dnet +dp83822 +dp83tc811 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dummy +dummy-irq +dw-edma +dw-edma-pcie +dw-i3c-master +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +e752x_edac +ebc-c384_wdt +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_bhf +ec_sys +ecc +ecdh_generic +echainiv +ecrdsa_generic +ee1004 +eeprom_93cx6 +efa +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +enclosure +ene_ir +eni +enic +eql +erofs +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +ethoc +eurotechwdt +evbug +exfat +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81601 +failover +fam15h_power +farsync +faulty +fb_ddc +fb_sys_fops +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +fieldbus_dev +fintek-cir +firestream +fixed +fm10k +fore_200e +fou +fou6 +fpga-mgr +freevxfs +fscache +fschmd +fsl_linflexuart +fsl_lpuart +ftsteutates +g760a +g762 +garp +gasket +gdth +genet +geneve +genwqe_card +gfs2 +ghash-clmulni-intel +gl518sm +gl520sm +glue_helper +gma500_gfx +gnss +gpd-pocket-fan +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-adp5588 +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-da9052 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-mockup +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_keys_polled +gpu-sched +grace +gre +gtp +gve +habanalabs +hamachi +hangcheck-timer +hci +hd44780 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +he +hfs +hfsplus +hi311x +hid +hid-cougar +hid-generic +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-redragon +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hio +hmc6352 +horizon +hpfs +hpsa +hptiop +hsr +hsu_dma +htc-pasic3 +huawei-wmi +hv_azure_blob +hv_balloon +hv_netvsc +hv_sock +hv_utils +hwmon-vid +hwpoison-inject +hx8357d +hyperv-keyboard +hyperv_fb +i10nm_edac +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-core +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-gpio +i2c-i801 +i2c-isch +i2c-ismt +i2c-mlxcpld +i2c-multi-instantiate +i2c-mux +i2c-mux-ltc4306 +i2c-nforce2 +i2c-nforce2-s4985 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-via +i2c-viapro +i2c-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7core_edac +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_umad +ib_uverbs +ibmaem +ibmasm +ibmasr +ibmpex +icc-core +ice +icp +ics932s401 +idma64 +idt77252 +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +igb +igbvf +igc +ila +ili9225 +ili9341 +img-ascii-lcd +imm +ina209 +ina2xx +ina3221 +inet_diag +initio +input-polldev +intel-cstate +intel-hid +intel-ish-ipc +intel-ishtp +intel-ishtp-hid +intel-ishtp-loader +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-rng +intel-rst +intel-smartconnect +intel-wmi-thunderbolt +intel_atomisp2_pm +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_sgx +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intelfb +ioatdma +ionic +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ir-imon-decoder +ir-jvc-decoder +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-xmp-decoder +irq-madera +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isicom +isl29003 +isl29020 +isofs +isst_if_common +isst_if_mbox_msr +isst_if_mbox_pci +isst_if_mmio +it87 +it8712f_wdt +it87_wdt +ite-cir +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +k10temp +k8temp +kafs +kcm +keywrap +khazad +kheaders +kmem +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +ks0108 +ksz8795 +ksz8795_spi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +kvaser_pci +kvaser_pciefd +kvm +kvm-amd +kvm-intel +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lec +led-class +leds-apu +leds-gpio +leds-lm3532 +leds-lm36274 +leds-mlxreg +leds-ti-lmu-common +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +lg-laptop +libahci +libahci_platform +libarc4 +libceph +libcrc32c +libdes +libiscsi +libiscsi_tcp +libsas +lineage-pem +linear +ll_temac +llc +llc2 +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lockd +locktorture +lp +lp3943 +lp873x +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2990 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +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 +mac80211 +mac802154 +mac802154_hwsim +machzwd +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +marvell10g +matrix-keymap +max1111 +max14577 +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77693 +max8907 +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcb +mcb-lpc +mcb-pci +mce-inject +mcp3021 +mcr20a +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-i2c +mdio-mscc-miim +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei_hdcp +mei_phy +mei_wdt +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +mi0283qt +michael_mic +microchip_t1 +microread +microread_mei +mii +minix +mip6 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +most_cdev +most_core +most_i2c +most_net +moxa +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpt3sas +mptbase +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +mscc_ocelot_common +msdos +msm-vibrator +msr +mt7530 +multipath +mvmdio +mvsas +mvumi +mxm-wmi +mxser +myrb +myrs +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +nic7018_wdt +nicstar +nilfs2 +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +nsh +ntb +ntb_hw_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +nuvoton-cir +nv_tco +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmet +nvmet-fc +nvmet-tcp +nvram +nxp-tja11xx +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +of_xilinx_wdt +ofb +omfs +opa_vnic +openvswitch +oprofile +overlay +p8022 +padlock-aes +padlock-sha +panel +panel-raspberrypi-touchscreen +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcbc +pcengines-apuv2 +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcwd_pci +pdc_adma +peak_pci +peak_pciefd +peaq-wmi +phantom +phonet +phylink +pi433 +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-denverton +pinctrl-icelake +pinctrl-intel +pinctrl-lewisburg +pinctrl-madera +pinctrl-mcp23s08 +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn544 +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +ps2-gpio +ps2mult +psample +psnap +ptp_kvm +punit_atom_debug +pvpanic +qat_dh895xcc +qat_dh895xccvf +qcom_glink_native +qcom_glink_rpm +qla1280 +qla2xxx +qla4xxx +qlge +qnx4 +qnx6 +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +ramoops +rapl +raw +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rcuperf +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reed_solomon +regmap-i2c +reiserfs +repaper +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rmd128 +rmd160 +rmd256 +rmd320 +rockchip +rocket +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rt5033 +rtc-ab-eoz9 +rtc-am1805 +rtc-ftrtc010 +rtc-pcf85363 +rtc-rv3028 +rtc-sd3078 +rts5208 +rtsx_pci +rxrpc +s2io +salsa20_generic +sata_dwc_460ex +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbni +sbs-manager +sc1200wdt +sc16is7xx +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +seco-cec +seed +serial_ir +serio_raw +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shiftfs +sht15 +sht21 +sht3x +shtc1 +sim710 +siox-bus-gpio +siox-core +sir_ir +sis-agp +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +skx_edac +sky2 +sky81452 +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +sm3_generic +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +snic +softdog +solos-pci +soundwire-bus +sp5100_tco +sparse-keymap +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spidev +spl +ssb +st +st7586 +st7735r +stex +stp +streebog_generic +stts751 +sundance +suni +sunrpc +surface3-wmi +switchtec +sym53c8xx +synclink +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda9950 +tea +tg3 +tgr192 +thmc50 +ti-lmu +ti_am335x_tscadc +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tlclk +tls +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +tpci200 +tpm_key_parser +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65912-i2c +tqmx86 +tqmx86_wdt +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +uPD60620 +uPD98402 +uartlite +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +unix_diag +userio +usnic_verbs +vboxvideo +vcan +veth +vfio_mdev +vhost +vhost_net +vhost_scsi +vhost_vsock +via-cputemp +via-rng +via686a +via_wdt +viafb +video +virt-dma +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +vkms +vmac +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_vmivme7805 +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsock_diag +vsockmon +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83627hf_wdt +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977f_wdt +w83l785ts +w83l786ng +wafer5823wdt +wanxl +wd719x +wdat_wdt +wdt_pci +winbond-cir +wireguard +wm831x-hwmon +wm831x_wdt +wm8994 +wmi +wmi-bmof +wp512 +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-plat-hcd +xiaomi-wmi +xilinx-spi +xilinx_emac +xilinx_sdfec +xlnx_vcu +xor +xr_usb_serial_common +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zatm +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zram +zstd +zstd_compress +zunicode only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/amd64/azure.retpoline +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/amd64/azure.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/arm64/azure +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/arm64/azure @@ -0,0 +1,17205 @@ +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0xcdb6a418 sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x4b5cd811 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb14ba12b crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd54767f8 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xda449460 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xdc81e6d8 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xf3741a3b crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x455cad6d crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x58945431 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xfc467709 crypto_sha3_final +EXPORT_SYMBOL crypto/sm3_generic 0x2d8962e2 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xaef1824b crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x8392fa99 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x25c1d3ec bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbff2142b 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/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 0x0cbc2cc5 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50c6717a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5af2de28 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9d2a1a13 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x25174b07 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5c38aca2 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x91343c14 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 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 0xa3fbcd7e caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xd0e2b258 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe7e2069b caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xf6535a4a caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0c37aa73 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x13e4ff31 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2d94bfb5 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3cd211ee caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xfdbda95f caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0xc33b28f5 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x9c3be2f9 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00022eae drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000ea246 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01202169 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017b19cc drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021abed5 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04529330 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046ac960 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x047b6398 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06959044 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07ffb3e2 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0820718d drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0866ec8b drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08bed061 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09d00f99 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb053ed drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cea365a drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d277a20 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d79a2a6 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f5d5a93 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb44d72 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102c424e drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10428116 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107f26c1 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c04a98 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1467bff6 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149026e6 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14bde91d drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15cde2aa drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x160fcad5 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162c9d7f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18163eb4 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c5b90e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e21d9a drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18fe50ef drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194b9995 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197fbd55 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19aeec0d drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6881d6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6eca62 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1c6c61 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e54ebfe drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f4c059f drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20097bf8 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2011f64b drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x206f3809 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cb76ee drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f5c833 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21172332 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22698212 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d312a9 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23fbde82 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24483a73 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ac48b9 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x267a8830 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b64a178 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6a029a drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc69b9e drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca3175c drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb3130e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3fa509 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db62a9f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfa8dd4 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31476f04 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3175fea7 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3196fc2d drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c24553 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x327a2805 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d0ffb9 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3362221d drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3364c3e7 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ec3a37 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34cd19c7 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364a1127 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37287cbf drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38c7ea7f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e5b235 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f59353 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39147b3d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39bdac9b drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a5b8116 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad68d4f drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbe4357 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c57579d drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d143c23 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dddf6be drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9c392f drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efb3634 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40943175 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e4cc9c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41120258 drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4200af8f drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4277c574 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b01c9b drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4315c848 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43facf60 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448914c0 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44fbcca3 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453f9942 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4716f8f8 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48014fe3 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x480828eb drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ef81eb drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fab12c drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49016631 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491ae992 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49dda0b3 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4abe90a1 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b9a2d96 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbf9bb7 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c56f8db drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc703f9 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df91129 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e046c71 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5125def3 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f1c133 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537a246c drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5393aaa5 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x550434d8 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56eaefca drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ef42ea drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585807c6 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59434b4f drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a70e93f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aeba822 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b24a00d drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b89bf82 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca158de drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbbcd09 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2c5757 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d563439 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db924b9 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e005763 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e44c9cd drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb20c14 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60231fdc drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ffea2e drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x618040ee drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d26faf drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a97f59 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f290a5 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f40c13 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x631d7798 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x635c576a drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637387c3 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x643590c4 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645cc1ce drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6470fd4a drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65064e4e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665c8c39 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665e6205 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x667f3b25 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6687910d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e84233 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae35647 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b25b08e drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b3d0d39 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba9dc99 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbab259 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6a19f9 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddce8d4 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703fc1ac drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70fb69b5 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72cf5ff0 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e9e50e of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742f5b5e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74724079 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757c1a2c drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7627150d drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x763f9fb5 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad91e74 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b400ad2 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b7b722a drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bea4563 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c039a00 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c43d6a5 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c764223 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d822672 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9557e9 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebee751 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbb69b4 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x803eeb5c drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8163f9ff drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820a2d70 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a46b2a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f6b961 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x877c2d5e drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f6d40d drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8944296f of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89883698 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a6efe38 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a8b901f drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b13173c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b260403 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d208175 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3acac2 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eef328d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90089413 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9028fdd3 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9046db48 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905b6906 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92dbeacc drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93630763 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x939b6c8c drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dc8166 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978f7c42 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c58ebd drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9842df5f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x984625f3 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a96e372 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac09e88 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0850a7 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2d1429 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6eaee6 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8f9d6f drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfb0283 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2c9fe4 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa032977c drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa070f0f3 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ae61d1 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0cc5259 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19d49f0 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2734e35 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa274dfc1 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33e851a drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4063889 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa407027d drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40b7c83 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa504d86f drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa58396ea drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f1799d __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa69bd11f drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa793bc81 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa79ae814 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b80486 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9c35967 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d63582 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa289b40 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa853933 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabc20727 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad45b791 drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadcdfb18 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaddeb059 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade7b59f drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea21b01 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf562e0d drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafadec8b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb122d270 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20c2633 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f241b8 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44fdf24 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a9541a drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6dd8d09 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76a8455 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78fb51a drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8563a63 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a26d48 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a2d0bc drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c82bb9 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba31234e drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaee1524 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb12f1f3 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc280245 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd01f570 drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd51304f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3a62a8 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe70209 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a39c55 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1814b9f drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d3ef61 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6320673 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72eae83 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c29f39 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9878d43 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99696dd drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a99a2e drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca827b56 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabb7550 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbda4393 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccb7c6c3 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2867e1 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3bb11e drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd41f75e drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd9da69e drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0aa9df drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5c478c drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb6392b drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14de8ab drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd15c9601 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1865540 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a903e2 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3cbeb9b drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3df44fc drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a899fb drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b1b09b drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56e9882 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd65a9049 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7304f99 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76e7ecb drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd864c544 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd92e3d94 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9feb9cf drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda862bda drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf2992b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc593373 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5c8457 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcab25d9 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xded4e3a3 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee63c1c drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04c4a42 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0e77c24 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39ccd3b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e60a9b drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4114f1a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe420b050 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5668995 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71f14b7 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95aded8 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaaa9773 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6b3102 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebce5560 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec041bde drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb86541 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2a3845 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2ee7b6 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6aa996 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea428fc drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed89c98 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef86a12c drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdb7d2e drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff5b4eb drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01bcc85 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02aeab0 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c94f04 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f192d4 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf284e951 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c401f6 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2faad0c drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32fac75 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3385f74 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf344a3ce drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf485610c drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f7ec3d drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6733a0f drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e69937 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86221d6 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96942e1 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbee0e29 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd278bfb __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed2e552 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00ec43b5 drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0178d451 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01df4495 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x020bf5cd drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02b0be47 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02b4f374 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03358159 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x051efb36 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c359d83 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e794548 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108d73c1 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x137801a6 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a071dc drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b7921b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14f82543 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1501196d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a77162 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ee002f drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17045d10 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18ad5b01 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x191b0add drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ad1f92c drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b5319d0 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c07fd77 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d85ebc0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1daaff72 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f9f32c7 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2037c5f5 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x218c2ab2 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25117fcc drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x254b18ee drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2790d801 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27b48cc7 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27de2f37 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b2cf74d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bff5196 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db99b67 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e2ef7bb drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31303e99 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31901907 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32266d84 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325cd197 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c14f6f drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x349ed33b drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36dfb75e drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39614374 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b7f02a3 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cb8cfad drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d3983ab drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41174e9d drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41310230 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41fc2085 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4233655c drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4533b3d6 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x461cae85 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47cd08b5 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48adbf8b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c6d5fe2 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d0c0b80 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d291d1c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x516d244e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51dae54e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53706530 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a49819 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x553688ce drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5908d136 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b22df00 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x609c0c70 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61390d2b drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650359c8 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6639592f drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a82300 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x685c38ee drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a096673 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a4e1bcc __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b08634d drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b24f9df drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bd58ef1 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed45879 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fabfcab devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7036ef90 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ae3626 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7508e2f4 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7528e962 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7655f662 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77033720 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77ab2894 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7871b551 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ffd2fc drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x797c116c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b36c0d2 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c767138 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e910756 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0922bb drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x811fdfcb drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81282807 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x815db834 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8175383d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x837b51bc drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8477c836 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x848c1095 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85e79624 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a9928e drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88201259 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b26c801 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c5ad66f drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8de44a68 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8df99932 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e7cf322 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f1785d7 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f921c3e drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x914d29b3 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92d350ea drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x948fa8aa drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a68c9c drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a7f6c6 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96060c4d drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962076d7 drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x964b3c76 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96546fc8 drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x982a3e41 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b7820f drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a97d94f drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dba0110 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4b8f06 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed75dc0 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f0d77f3 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1629b37 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3d8a40c drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56ef0e3 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6760b36 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a9d26f drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7afde17 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa80c04c5 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8dd2d2d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa908acb8 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacce0043 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae27e3de drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae4e4417 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb05e944e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1cd5309 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb20b14b3 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d85bae drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54d5747 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8beb1f7 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc54f925 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe7b5050 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfd7b8d7 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3a88ed8 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3afd670 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc507c9d5 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73e3c83 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8843e50 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb33eef5 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb532290 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdbfdef3 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd103358c drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd12dde67 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1631206 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd175efff drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd17e9dc2 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd37dc4ec drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4a852d4 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6875f4d drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6cbd71a drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c0afea __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda412439 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdae26634 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc75f816 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc0717e drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf6134da drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2430afe drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe316fbd1 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3b6a389 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4cb21ec drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe669f968 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8a4da6f drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea797462 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb9ad10b drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0ef8c64 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1678ffd drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1706418 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c5066d drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf55f776c drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5d22287 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d5497a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf92b27e8 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9ef5639 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb423520 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb49fcbb drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbcba11a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcf39fc3 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe60ba63 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeaa393a drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb1337d drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x089d65c9 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x14652438 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x157c4681 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x20ea66fa mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3f128f69 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3f974d2f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x45c4d8ee mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5793032a mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5d0ff9d5 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8cb6eb63 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaf07fe48 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb833ae7a mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc27b03f3 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc9aaba0 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xced2cbc3 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd44d92d3 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe5806fd0 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf28c0ca9 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0fae0292 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1c646be8 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1cb8e953 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2c0e1b48 drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3583cf57 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x609cc9a2 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6a57083a drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7359f7b1 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x80ebb215 drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8a06d3f5 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa3d1746e drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb2bd4808 drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc71619cf drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd34469fb drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd95ccfbb drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xde9754ec drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe0c483bd drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9f4e51a drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeae8eae6 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfcb61ac8 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xcfa97d4c rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cad38d7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2bb735dd drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3b347da2 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x532161ee drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b75533a drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa38183bc drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaeb09cad to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1e621ad drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1ea4dd5 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb303e034 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcadb6b58 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd25a0c3b drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7e221f3 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec965946 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xedd31242 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf06d23a8 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf1e7336d drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf544ea53 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff01c2bf drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x1459372b sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x4e561e86 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x8227dad6 sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x88ece716 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xc7ab5cfe sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xdb9c4ac3 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x1396f077 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2183424d sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x356edee1 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x54fc5533 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 0xd359b715 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xdfb1fc6a sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x8675d19f sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xf996a193 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00362972 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0388163a ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05b5de1c ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07b72231 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d7c11bb ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f8edf79 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x112591af ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x168b304a ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16f2ba18 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x188e06d6 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a26f675 ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d13fd7c ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fd2ee56 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2577682a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f6ad82f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32655dc4 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x331e99b6 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36015c98 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3786fbcd ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45ece8d1 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5047e7ff ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625032d3 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63309d14 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6540e718 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x668484a7 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68d180d1 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7018c2a7 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7103f541 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72c7c84a ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7513a17f ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75b7176b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75ce75a8 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x803fedd4 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81b453b5 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81ffa2db ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x885fcede ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88872bdf ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b21bcc8 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97a94733 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c93413d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0af19d8 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa225cf4a ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa306920d ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa554b007 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa71ee570 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab1f92a8 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab797fe5 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1e3c153 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb62c185a ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb82407b3 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc18dec15 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca9aa5d1 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbd9514c ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd2f5a75 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0254ebb ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd11ff597 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4567fba ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5150ee3 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcf48cd7 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde0ed454 ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe506a9b6 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec692e3d ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2a77272 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0050712a host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02ec028c host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02fc14c5 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0addcacc host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0fd7e025 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1acd07d2 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c90d7c9 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32a17188 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35a3aebb host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x457d8a6a host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x62dbc0ce host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c01937d tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c4ede49 host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6cc4ed84 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7106cb11 host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x756078a7 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7e0c7418 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8255714e host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8dc78c6f host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa3b2081f host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa47e3a80 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaa870b6f host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb356412c host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2367be2 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcf29de66 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe3927d0c host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe647f6d0 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf7d1f664 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/hid/hid 0x5f1f12fe hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +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 0xc61abf05 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5b77287c i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcd3a9b89 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf7a0db3c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x62428e41 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x68642ab4 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5f381854 amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x01200b8d i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0ba57bae i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1792b296 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x185e8e48 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x19ed1562 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1d7ed4c6 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2b4319d3 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3213a1ea i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x32263f0e i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4c58bc25 i2c_use_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x66af6b84 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x72019546 of_get_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7256d550 of_find_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x85fd4d52 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x95c0750d i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x95d4f48a __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x96b66e46 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa05b39ff i2c_release_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa46d6e9d i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa502ec39 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xacf6259d of_find_i2c_device_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc4c19a77 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd0ca2ecc i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd9bd42f7 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xddc09134 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe2c80d65 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe576ba00 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xeb0f1929 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf9c9734d i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfe8aef3a i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x017332ea ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0908227f ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b8c0537 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bc081f0 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12eec542 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x142753d1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x358153cc ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c4e61c4 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x48f1497f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x672b7a68 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x68d0c8a1 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80f0c36b ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1ffab84 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb152afd4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5246a85 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe8ba1e90 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xede41016 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9494cb7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00039d39 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f3a113 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x015c9039 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022740bd ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02b37c67 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0399214c ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x077e5b03 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09411cd7 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09bbce60 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b1fd117 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5031c4 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d0805d4 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d1fe8aa ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d321a14 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d453087 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e20663c ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e39bc07 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10808103 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13c12fb3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x143ed5c1 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14978e79 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14dfbadb ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167071d4 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198552c3 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bc416bc ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c67ffed ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ef8c5ea ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215dde75 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24dd1634 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26477022 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27a45f09 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2819412d ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28943fec _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b987f60 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c336c45 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dfab843 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ef63f98 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32aec8ce rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f3d104 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a27a4c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f0cf2a ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396a2387 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a8a4c2f rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ce5d91e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d483a6e ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d671061 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e203e9e ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff068b1 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f673d5 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42b31394 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43086a90 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45451b3d rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45dccaa5 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46a1feb1 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47f2ec5b ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4944bb1d rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aaad64f ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ab9dd07 ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5ccd01 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b81778e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dfd3927 ibdev_crit +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 0x4edf2303 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4d0705 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa90a2e ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x522c796a ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52979385 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a6fd73 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b402b5 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53f71e7a ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1cdcf1 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b26bc7e rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e8d15b0 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x611205f8 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x623c7d68 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64478274 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6602cdf0 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d3edda rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67df7e2d ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d6e3668 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dfb6095 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb6172b ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x705aae75 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70629ed7 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c105fd ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a9bd44 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74af0068 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75844e0d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76be0b6b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7801e5d1 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c23f289 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dcf26fb ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f506b05 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8120b511 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x816cdc9d ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82900f90 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88237c6b rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a2b6e2f rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b207f50 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b5f67ef ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b886469 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bc2f835 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bf3a78c ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb161d0 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc737da ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd2c40b ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x921b36dc rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92701a9d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b32fbd ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x959619cb rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c9bc80 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x968a1db6 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96fc60d1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97beb056 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x980fc166 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d46b1ab rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa40f65cb rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5138b19 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8262612 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa83718f3 __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8ce8a66 rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9797eea ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f91772 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacce74e3 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf65efb ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae79bfb4 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf6611ea ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb075649d rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb093161f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a1c54a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1ae119f rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb754b7fb rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8a05427 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93b8558 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb944eaa6 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb996a35d ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcf18511 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbea04763 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf38b1fa rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc07d5b6c ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0bf06f0 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1303af3 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc215e062 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2d8c736 ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30e2fcf ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5263d00 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5285c2e rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc71a4bba ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc807d32f ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca2eac59 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca553444 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcab91bed rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc10fdf0 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce308a88 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce9e2cf4 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2c14c52 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd339fdc4 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3697685 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4159c5e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f41cf9 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6fbf8ca rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd78d707f ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd80250e6 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd842bb97 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8750a4b rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb320d0c rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0fdc47 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc205082 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcfed27c rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd41a776 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdddf0313 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf1e9b28 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfb22e02 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe59994de rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ae4828 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f4592c ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe74a30fb rdma_alloc_netdev +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 0xed78779a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1379287 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf17c80b8 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3ced359 __ib_alloc_xrcd +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 0xf797e16e rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb8c0b73 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1dcf58 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x004999d5 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x012ec72a ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x085d82fb ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0975d53b ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10714c4d ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1218d905 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13a09d3a uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25e88022 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27854147 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28d85ac2 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x310d52d3 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39b70881 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4604ae5c ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cfe7419 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62605318 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6af84948 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d5f49a9 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82ce3b70 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90545979 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x930a0535 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7e59854 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbabff062 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd672e86 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2b5901f uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe106a0a4 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3acdf9c ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf07f85ac ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2337982 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf254448a ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff95585c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x267698eb iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f99c262 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x424fcdbb iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x701f9984 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x839343f0 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87efd897 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcc977794 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeaad9f85 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c1c1d09 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10a06a96 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a71d6bc rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f350bcc rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24016aa9 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27be6ae6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29d9ce34 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39840534 __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43ae8a32 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ba7c550 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x504e9d6c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x623d51cd rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b18b613 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f3400f8 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa180e326 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaca7c9b8 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb56f698b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb829d6ba rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb843b768 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc1aacd7 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3613eef rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbd6c850 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4f65289 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5ca74b8 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2394cfd rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5af525b rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb346c1f rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf66b3dce rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf708b454 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfaa9d30b rdma_iw_cm_id +EXPORT_SYMBOL drivers/input/input-polldev 0x17abb041 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x32a798f9 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x96410911 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa7f59fb7 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd594d72b input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x6aca440b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x38e70924 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x57e9e208 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb3154456 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbf41b878 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb9d6d8f sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x08fdc521 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2213aedf ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x309a4690 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x67409af4 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x7d8f4a08 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xeacf6c25 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x280573db dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3d23e555 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5db10c56 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x954bdcbe dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xde2fec4d dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xea1850b3 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x0e5cddef r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x265fb4b1 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x653bfa70 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6a5747dc ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12ad5606 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18c6ffb5 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dddfcc8 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2768fa66 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31594409 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3247ebbf mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d445bc2 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d25492c mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54dc3765 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5553a791 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ae2b76b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bc20695 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e8d05a8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x604030b1 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6230617c mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6919e197 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6fda1ed2 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71b7189c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71fade99 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78818e22 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79fcc466 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x837a054f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84923caa mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d1cf4f5 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x948da23d mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1a4bddb mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5d4fe24 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4a84922 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf510ea6c mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b6ae370 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x185b0403 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23b6169f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2df19aa7 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f67f0cf mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f9fcece mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x362c8397 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dd2dcfd mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50f01a31 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56919892 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57d8990e mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6984f03d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82c1fbcd mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8bafc9de mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8be529c1 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d32521b mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0e44a63 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa26781a2 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaca2fe4e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb09899c2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0b001e5 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb497f562 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd7180c9 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6f12fb6 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7bb8ee1 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebb60b52 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa35a77a mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x98aac4f6 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xeade4416 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c83347e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1babdc6d mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2339a9cc mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ecb87bc mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6378eb45 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9ed16d2b mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb94661ab mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc788451b mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8185235 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf24ef2c7 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4b9ef1e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x37c53ec5 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x4acae8fd wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x5e25ba84 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6c1f011d wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xebd61dde wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xf37d0330 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/tifm_core 0x0646dbfb tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1edfde0e tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x30779743 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x60cd8e36 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8a7c66af tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x99bfefb6 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f599caf tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa3208f7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa407a31 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd28b5867 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xeb5adfcf tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf91e34de tifm_eject +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0dbbbded alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10c2f5b6 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2002cbc6 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x80a42484 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8fd2190a arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa34f08c3 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc258e9df arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcfe4b0b9 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7413a62 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7e12163 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb23cd158 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc2bfbd22 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdb76268d com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01793b4e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0210b0f9 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17a998d6 b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f42eede b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20c5d2ee b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3227c041 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x372b4c2b b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39ba60fc b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3efd7af2 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b8b44b5 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51726cdf b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59f4b3bf b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6184c079 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x670b05c8 b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x674e2c11 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ddfa9de b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e02dd92 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7201edd1 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7594726c b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e365c01 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83765499 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8939a7bc b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8952bc61 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x921c88ef b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94295cc8 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94d9cf5e b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5613be0 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa1f9a6d b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd096c51 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd6980e5 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe765033 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfc9fb94 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4bdca03 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe37f21fb b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe561192e b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8e30784 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf95f09bd b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa49465f b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x399a2f5b b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x508c8da5 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7491f98f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x96472681 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb5210d34 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe9cc6397 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0c053695 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7d0e3087 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x721df55a ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x5814293a ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x492a6e52 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4a9d1b4c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4b057bdf ksz_switch_register +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdfba5943 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x05d9e30f cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0eabcedf cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2574a140 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x433bd5cf cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5215789c cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x545abed6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x71723c96 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fd7d417 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ac6d7fc cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9a88eb50 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0ca2dff cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc852ad3c cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0197637 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xea74be1b t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc292857 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe6cc704 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0adacabb cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1da75d2d cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2099b142 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x218f3d36 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f37f906 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3650f72f cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f41f35e cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e4bcbc0 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52484373 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x584535d9 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6403986b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66e8a3dd cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e988c2e cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ff07447 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79fbb296 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b59747f cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c80b6c7 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d99a734 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82cb7ad9 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x840952f7 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89c26f80 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b99d3d4 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c9cd3a3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99a99a68 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a92aed4 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b65ea3e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bbca59c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa56375a8 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb25477b7 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7adb7b7 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc2df89c cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc17e6331 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc287bcea cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc418216d cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7d277de cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd72bd03 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe768428d cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8c878e0 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0eedf9e cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf30b585b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf43ce25b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf912cd87 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb3b02bd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfee9cf42 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x021b5d46 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x631b6a95 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbbf0544e vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc5681b72 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf040e505 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfdcec632 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 0x6d980229 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdc77ca5e be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x3e26abf3 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xebf32828 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x922a5ac2 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc921f0ad iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x067e94be mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b098fdb mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c27b0d1 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d23125c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de349b6 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x145bc08f mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3fd035 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e563696 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2508b1f3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1a6909 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ca06ed8 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e5f1949 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d1b8615 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53f54c77 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56817f12 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66f33380 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6702458c mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d8c6907 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7110a022 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7440dc1a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d5fc27a mlx4_SET_VPORT_QOS_get +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 0x80f86fd2 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x826163e9 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b2954d mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d95de68 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e9ae494 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf7f3ad6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0c997cd mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2e12d10 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b02713 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb734cf61 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbabaf710 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd4d43a0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9fd95f0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdedfd22 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce9e0396 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ce30d6 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf295f582 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf396f504 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf43dd843 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6101ec4 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf716c1e7 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8dcf302 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdf5aff2 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043e7324 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1b078d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c0af2fb mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c96c280 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca7e586 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e27dccb mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126d3431 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128fef74 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184f5ced mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18b53777 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18bd153f mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1abd2172 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ad76a17 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20864f4a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c69757 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a80d37 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x232a483a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2623bcd8 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28ff70cf mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c3b1f13 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d615ff3 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31f36b34 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d524e1 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364e5aa4 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38ada8aa mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38ee1f41 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cc16417 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4c656f mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x421d2dd1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422c00b2 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f7cb23 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4587187e mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x489a1e0b mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4adf00aa mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51198a87 mlx5_core_create_rq_tracked +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 0x6251d51b mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6811177a mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6943eaed mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6adc8638 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd7e0c2 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e994f2f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6faadcae mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc98acf mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71abbdc0 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72b8dbc1 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75ed1fe1 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7721d92b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79a83932 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c3cef42 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d439d80 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d661cf2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f0830d4 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f79ea6f mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8233530e mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8832d898 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x895f7897 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c09736e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c79420f mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d06846a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e991e54 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b88f33 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a313ede mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa2efe3 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cad00fd mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ead9f03 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec1756a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f5ca3f mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1bbcd3c mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3167942 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa3df086 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafdf7361 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6b6899b mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac9533c mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf30356b mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2c0c633 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc32ee323 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3b30b90 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f1a53f mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65575ad mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca2cdff mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0e01cc1 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38054cd mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ccd131 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7f45dc9 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae9ae04 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb85261c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd25f205 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe11e2e64 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2a0855f mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f300ae mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7987b4e mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe89c8f1e mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe911598b mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3480ac mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeca6872a mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed63e037 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb28e83 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf4d026 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef050680 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef34fbe6 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefbf5320 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21c0a3b mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf39e2888 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf517da69 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf690e6ed mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf814a762 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8be629e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce1d4bd mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x98a9326c mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14f0bbf6 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +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 0x1dcf0b7c mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21bc5097 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 0x27897a33 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x42a06545 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43d15e34 mlxsw_core_trap_action_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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ac1d1ca mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x886281dc mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d4f190c mlxsw_core_port_eth_set +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 0x9beac642 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb20219d0 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbefde973 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcdf7613e mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd3a48380 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 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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe3027bcf mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeb7090d1 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x88cda24d mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd526650d mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0994bdfa mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x939a03e8 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2ae155fd ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5ec213c2 __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6830b3a6 ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6b7b393f ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8c404865 ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8c435322 ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x91be8ac2 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9a2f41d1 __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9b1b4c39 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa4732695 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd10d7cb8 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd5d37d6e ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe8346f1f ocelot_io_platform_init +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 0x7db84a25 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/mii 0x38f5db97 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x5247ff74 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x54b0b386 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6144c4f7 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x84cc14ba mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x9a3fee56 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x9c6139d2 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xd817d4d0 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xe08c43e5 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xeacfe684 mii_check_link +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x76f0c64d bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x60e431cb pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa67257a3 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc3280700 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf7ebfe2b pppox_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2445b5e2 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5f338441 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x75696d53 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x814689e5 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa629a534 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdb6c38f2 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe51c3d37 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe78a5ddb hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf2a58978 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb2fa259 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/ntb/ntb 0x1b43af00 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x1e5a88d5 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2b4625b0 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2c996663 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x4190024c ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x44328fab ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x476befa3 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x51e728fb ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x5396cc44 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6e92bda0 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7522ca95 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x79f8c1b0 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x8495c54a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x84be9f9d ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8be668f7 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x9644b5f0 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xae237a7b ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xcf5898f4 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xdcbd1b10 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xedce6fda ntb_msg_event +EXPORT_SYMBOL drivers/parport/parport 0x07dd6ef6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x122eeeaf parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x1324c379 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x16e1a315 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1ee30464 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x2077f075 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x2482ba04 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2967cb35 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2dae2f2d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x44f1453d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x46462199 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x489644f1 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4d2d9011 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x51aeb57c parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5d5a4d75 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x73758a6c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x915a48f3 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x936ee55d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x98a2fa32 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x9d716fd1 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xacd5c0d1 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xaea19bd5 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb0b45ffc parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb1308ac4 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xbcb154c4 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xc7a1b88f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xc97e6f7c parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xeab0961d parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf39917ba parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf400bd41 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xf5ba4742 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf8e9305b parport_set_timeout +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x01cecd44 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x49de208a pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4c056bd4 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6295c538 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x680840bd pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7955db5c pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa4b8504f pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbf4b366a pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xef16d217 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf60ec6dc pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf83aea31 pccard_static_ops +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd984d49f scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xda71a42c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfbb55260 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xffa5d83c scsi_esp_template +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7805ea60 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 0x25500038 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63251dc5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7160e9b1 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7699d4ba qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa44f8d6b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa8e95343 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad74573c qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc8029200 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd1ef905b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd4badbe1 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe926298f qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xef43becf qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x2bff3bf0 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x5308f92a raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xd5693f9c raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x26bc887b spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x419ffd76 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7a8898f4 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x893a9327 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfcef6859 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x23d1052d srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3917bf79 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8e4b3f5f srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9dab117a srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdd7ff267 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f28f684 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x98006342 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9ef6c74f qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb4036a6f qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc67624ea qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcf8f1374 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd07b3bff qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdc10b116 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf5a3c175 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf7b53790 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xbe70332e qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10c226a9 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x17de1472 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x23d1df68 sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x461be8ef sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c4219c8 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60658696 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6b2af9c0 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d870cb1 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x862622ec sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa21c90db sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb4a191a4 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc508c814 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec1af26d sdw_nwrite +EXPORT_SYMBOL drivers/ssb/ssb 0x049757bb ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x107b9a65 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4ae4aefe ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4be38d04 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x4f1b8bc4 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x71fba569 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7d19d3d9 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x91a438f1 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x9439e2c3 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x99f79cd3 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xa283ac65 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa5a767f5 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xa7e1ae54 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc36ceadf ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd7f5ac28 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe796f5f9 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xe95b8eab ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf5169f65 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xfd96d493 ssb_driver_unregister +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x142ca517 gasket_unregister_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x468903d7 gasket_sysfs_put_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x48dbb60c gasket_mm_unmap_region +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4ab764cb gasket_sysfs_register_store +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x654de5db gasket_pci_remove_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x66c1b422 gasket_sysfs_put_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8147ee2d gasket_sysfs_get_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8ced27c2 gasket_sysfs_create_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8edc3ece gasket_reset_nolock +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc377ba1f gasket_disable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc5be4cc8 gasket_pci_add_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xce529de1 gasket_register_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd0f16144 gasket_get_ioctl_permissions_cb +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xdd5b2424 gasket_wait_with_reschedule +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe1aaafa0 gasket_sysfs_get_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe4c84cbc gasket_enable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xeac734a7 gasket_reset +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0cb0fca6 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e35101f iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1120a19d iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x131de620 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15594e33 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16b8a417 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18b1e164 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d1a9b90 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26292c57 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a182939 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a7858b7 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31fa3c05 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43a7145d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c369e5f iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x521ac736 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x551bf87c iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x557c68fd iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57def94f iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x609cc2fe iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f7710ea iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d54cd09 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x834ce7c1 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x988e052e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b73ccdd iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa300a746 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa398cacb iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa81f2699 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa91378ae iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae24c3b1 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0eba728 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb81ddfd5 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbce0286 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeb232cf iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfe0b5cc iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2867285 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc536fba1 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6fe7f5b iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc93f7582 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd460e502 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd610342b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda01e0cd iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd84dea6 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 0xf87fe298 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfea63bce iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x01b88a36 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x06e2f462 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c373155 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea29601 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0edd6b1b sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x10690bea spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x18b33788 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3f4661 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1eacbc24 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ff49e09 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2009e75d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x26d753c3 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b2b3b0d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x32959e39 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x336261eb passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d8648e1 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4841d48c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x4aa41499 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ac9e7ac transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f170c8c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x51a449ca transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x51c93f97 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x541ae33c target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6451db3e core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x65408afa transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x66a7df0d target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x68b72b36 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x71a14d67 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x745dd1c1 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x77e10643 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x83d0fa95 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x88e36e83 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x89f2f9dd sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b9d0f56 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bcaa01e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c00ae2b core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x92516924 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x96c82362 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b107f97 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa29fb9e3 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3959979 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa41f7ff2 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa69b1623 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa799af4f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa8162d6 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0882e62 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5972b76 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7c14181 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb3b18da spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc1f3e43 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe2881ca target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc45ead6e sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc599edac spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc88bf11e core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xca4d4ca3 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd00a871 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcec88897 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf448fed core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf67c314 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7e5adc0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xde63bba2 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe024c5a4 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2991145 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4c1abd7 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xec4a1bdc target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2dd0326 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3da41d2 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf42c7eed transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5909fb5 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9438966 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb078858 transport_generic_free_cmd +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32533a8b mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x328f9f64 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x41bc1c93 mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x57fe2548 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x615ad45b mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x643d5942 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8a4263e6 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9fadaaf0 mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcb9a2293 mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd03564cd mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe2076491 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf08c2a72 mdev_register_device +EXPORT_SYMBOL drivers/vhost/vhost 0x862d500f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x95dda45d vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xcad37c7f sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf41dff89 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2225878e sys_imageblit +EXPORT_SYMBOL fs/fscache/fscache 0x04ed8c92 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x05195c89 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1a6f268a __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x24e95da2 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x30417fdb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x3d0473c9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x519bdf14 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x56fa6fbc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x57493acd fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5a38bac1 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x5f287db3 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x72e78749 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x772b00bf __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x79179e53 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x82c40da2 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8a6904e8 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x944ca2c3 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x94e0099e __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x957debdf __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x95d47708 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xac5b43a0 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xb2f643f2 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb64b2838 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc13e2aaa fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xcc98237b fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcd2b91bc fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xcfe34c1c __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd0fb09fd fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xd6e354e0 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xd89dd9e2 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xdcd6535b fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xdcef06ec __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe298fdad fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xe439fabe __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe4b3040d __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe5fbc04a fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf1dc767a fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf8db672d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xfc5bda7e __fscache_update_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x044dc7ef qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x171180aa qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x7e0c7fd5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8a28a231 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8d79bd2a qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf0617bc1 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 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x2f765019 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xc9a4c9c7 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1cabcaeb lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x348cea2f lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3b1747f9 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6dc1293f lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb135af21 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd7f273f5 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x613c22b9 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xba8a229f unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x840f21fb register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf6e6b7c9 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03d468a7 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x04dc34a0 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x0ae39312 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x201f73de p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x21344768 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x271df44a p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x2bfd5176 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3366254b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d3e204b p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x445d961d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x4d6dd792 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4f4f7ff3 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5de6f2cc p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x631d6bcf p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x695201e0 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6b08f288 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x7110ff3a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7445bc9c p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x745d70d5 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x76c59388 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x79b4e8b5 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7a59af9e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7b56d53d p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x7be96d67 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x81aa7dcf p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x83c3a61a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8598a9bc p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x8fcaaf3e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x93ce07ea p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x99ea3e4d p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9e8e0db6 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xac4a60b8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xc2073a2c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc9ab0368 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd6ff5c63 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd99dadd3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xdfe3c4b1 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8087507 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xeb6f2ee3 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xfd19d928 p9_client_create +EXPORT_SYMBOL net/appletalk/appletalk 0x0c81b8a3 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x0e35f697 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x2f659fda alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xab22db58 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x009c1551 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x0552d92c atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x05b7d48f vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x441aef4e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4bafeb07 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4e463c51 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8e4231ff atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9488c74e 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 0xb447966a atm_charge +EXPORT_SYMBOL net/atm/atm 0xb908a2cc atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xbb1fe6d5 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xd903a2b7 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xecf32f6e vcc_process_recv_queue +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 0x3efea59c ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4a124025 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x587fbe82 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x5bc39652 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa9b0e3f3 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc04d1511 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc7323894 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd36893c1 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x25ddac8f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3eb0cce1 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x43e3c61e ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x872d067a 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 0x3e6c071a caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7351ad9a get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x7c1dd49a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x8291c905 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe245eecf caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x10c1aa5e can_sock_destruct +EXPORT_SYMBOL net/can/can 0x2e4f4e8a can_proto_register +EXPORT_SYMBOL net/can/can 0x506283fa can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8d45e0bb can_send +EXPORT_SYMBOL net/can/can 0xbf3b294a can_rx_unregister +EXPORT_SYMBOL net/can/can 0xf65f0592 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x05e622b1 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x06a01ac5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x08158a43 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0e218a6a ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x1a435215 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1b952279 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1c4cef92 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x1cb27dea ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20b7b038 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x20d7830e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2127f7b9 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x235ed18f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x280202c2 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a63b95f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3cb70581 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x42fc0f9c ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4344a6e7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48d7d200 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x4a6cd9bd ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4c7a9412 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x4d560502 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x503e109b ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x5230b15d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x540fde44 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x542eda8c ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x55518110 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x570fb5f3 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c1fa013 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x5e596d8f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x5eb09dd4 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x5f875dd0 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x61c641fa ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x61e97c9e ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6420253e ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x653cb3e3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c3c3931 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x6c801bb2 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x716f0eef ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x72771d6e ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x767b468c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x784a6d45 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x79664a15 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7c08f0bc osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x7c51b556 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7eb59f7c ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x80e7078d osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x8422b07a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x88c24708 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8955e2bb ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x8bf643d1 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x8e003cba ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8e1a3224 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x8f00933b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8f95ae92 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x914e172c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x917305a3 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9199e85e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x98cc94be ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x98e3d01b ceph_osdc_wait_request +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 0xa56c9709 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6d1a1d1 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xa8e8e710 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xabc2771b ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae7b6107 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xafbf138a osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xb277a658 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xb36ab73d ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xb426a44d ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb9701b7e ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xbb4088de ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbdb6bc5d ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc1ca187e ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc432894d osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc45f3113 ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0xc56fc85d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc7076f64 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcb054ff9 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xcba31f81 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xcd6922f2 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xd28b915c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2f125a0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xdaa9d114 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xdab3bf8c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xdd29cf4a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xdd5bdb95 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xdf0e1a43 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe2426757 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe383f00b osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe8b1f588 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee4ea227 ceph_check_fsid +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 0xf24a7484 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf3018f95 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf34dd330 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xfa009ac8 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xfa5bdd7a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xfc223052 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfc604caf ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xfd5de3e7 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xfee1a924 ceph_osdc_get_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2d0aaed5 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc288a7ca dccp_req_err +EXPORT_SYMBOL net/dsa/dsa_core 0x68e5db34 dsa_port_vid_del +EXPORT_SYMBOL net/dsa/dsa_core 0xceb29729 dsa_port_vid_add +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c656daf wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3609a3eb wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x73c35cf4 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7709e517 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xabd65418 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdb78060b wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5105443e __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x62392b5a __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xd821b577 gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2e74f4ce arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x386ee77a arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd16cf83 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcb078f5a arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x03d601d0 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x15547163 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xccba1714 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x6e83592d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xc76e2967 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x09973fbf ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1564d038 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x648a7e73 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x66c5d4ec ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x900b87cb ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x99c22240 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdcac8c03 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xddef6186 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf1806442 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0593f54b ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2426a060 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7f42315a ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x89d7488d xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xd8bb5dce xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2d45eaac xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa5ba092b xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x2963412b l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_core 0x5d8e8286 l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x1b4d7ad5 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x3830bf9d lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7c690fa1 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8435e8a2 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x9d893efb lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xa614ca6b lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xdb5a73ae lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xe7dabf18 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xfaa9b4d8 lapb_register +EXPORT_SYMBOL net/llc/llc 0x0b0673cb llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x1f71ccdc llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3a436508 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7ffd3762 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xa720df3d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xba813c5e llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xdc666a38 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x02001ad9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x027737fa ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x03db4deb ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0c25be32 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x0f36ebfa ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x11a249e0 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x132a9a2d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x133978ae ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x146552be ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x1593ebc4 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x18f9fd46 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x192c7aca ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a0894bb ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1b25a317 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1ee0e304 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x233be84e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x26de52a5 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x26eccee9 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2a66f8f9 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2ef467e2 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x327925ae ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x432b485a ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x432da392 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x46541d27 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x47e5a15f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x48e9186a ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x49751641 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x49aede3d ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x4a62d42b ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4baa0757 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x4f7aab12 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x5527e5d6 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x55725879 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5f7979a2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63294a66 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x64a20cbc ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x65144a29 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6e8cd047 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x71a06fdb ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x73153cf1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x73362f53 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x7b07189c ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x7bc130b2 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7d732418 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7f073641 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7f3efaf1 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8051884f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x839c02a9 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x841c1465 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x882eb886 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x888d7794 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8dce44b2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8fc470b2 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x90967e67 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x928b5d4a ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x94425c43 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x95ac38d9 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x96d08082 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x98513683 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef1e850 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9fb2d9b0 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa1f12a78 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa49221ac ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xad4e2371 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xaed3dab5 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb77e8fe8 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xb86481f7 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb87832fc __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc40ebfea ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc9177425 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xceaf3724 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xcf2dd8a9 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd70df8e5 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xd84f6421 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd9cbe40e ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xdea838ab ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe138225a ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xe2753a52 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe6461f4b ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xe722c631 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe755266b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xea376417 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xea602403 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xec888c2b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xef14553e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf44afa1c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf6bc9a2b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf78cb433 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf9bb0e64 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfaa5d157 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfe16bf8f ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xfed287b5 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac802154/mac802154 0x04c54b12 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0be09ac2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x1832847b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x359d82ff ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3717c6fd ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x67a46821 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6d33a020 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd71957d1 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x101b2ea7 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b1cf206 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5cc5cee6 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x710668f7 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71b94ecf ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x868db23b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95bb601e ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9675d7cc unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e017a1b register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa84d37a5 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf84e7a1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1823f31 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc796c40 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xedb3c956 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf44f610a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xafb78b9e nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb71e9c91 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x440098a7 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x57ee31b9 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x646e5dd3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7a120a57 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb1fb1cf4 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0ba0be51 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1fc6e08c xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x35842f1c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x440de2c8 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x6897a4c6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x74d9fa6f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x87949b77 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x934d4d2e xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xfd0ee40e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x04114229 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x04646683 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x09a70bf0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x15d1ad4f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x2757907e nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x2b09d148 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x35ca5636 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x44b64d61 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x4fb7ea48 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x51091325 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x5a0879ba nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6e155512 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6ec2249f nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0xb4e5d777 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xc8dee1ea nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd7861716 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe5e3ca34 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xe888d209 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xeaab8b4b nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeebef5f1 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xf7b0a223 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0b704359 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x1288e9a3 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1d0d1cb4 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2f3594f7 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x335c3f0a nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x35ed21c6 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x36008b91 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3e50afc3 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x467e19bf nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x53526ca0 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5a6a1c71 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x5fc67d18 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x65ac8c7a nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8dba3a71 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x91b6fa4d nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x9367df41 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x97d46f47 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa5bc1ac8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb26875c7 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xb5b36d05 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc6535224 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xd5aba127 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xda4e4415 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xddd59de9 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xe2bb67b7 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe94d418b nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xe9f1914f nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xec219b39 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xf08c5c99 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nfc 0x0498c6aa nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x1d19e02d nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x28c72c47 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x31253d1d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x32f93ef6 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x3bc1604f nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4121251a nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x49b7e7b1 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x4a818879 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x51f81702 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x57ecc8f8 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x58110f7c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x591ce7d0 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x60067353 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x622e0f9a nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x6362ebf4 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x6af30dc4 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x72e5b58c nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x74d914ea nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb9982538 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xbfc75ef8 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xc284bf88 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe49158a0 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xeebf7497 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf74197c9 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc_digital 0x45bff6b0 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x687a6ae6 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9818a801 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xaedce7a8 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x06c24a70 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x189e1d66 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6944ae83 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7204a15c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x739f3f4b phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7a079d9a pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x8441a2a7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xad7e41c4 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a76e1a2 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x33dcc330 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3977f102 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4097fcee rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5560dbba rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x645ba563 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6cec4365 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7790ee21 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c92d2ab rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d0cccfa rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4ec9396 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc2916ad0 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc723add rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd4b5b419 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd7bbd59a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xded41135 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb2be40a rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0xb3ab2cbb sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x09fd28ab gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe921a8e2 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf26f09a3 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2aea8c23 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6a72d203 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcaf661ee xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x1217d7fd tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x4ff922ca tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xb354c703 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xd2c31633 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x0b2d9ce0 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0x6e367995 tls_register_device +EXPORT_SYMBOL net/tls/tls 0xb16963c4 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x04373d33 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x04be2752 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0750c1f7 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x085c1ef0 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c7e56af cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc73ca8 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x119d0673 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x139976f0 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15a50475 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19337f32 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ef8b67b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1f1c8d1b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1f8ade38 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x22c5458f cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x26136dce cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x28466029 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x287006e7 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x2a003c0a regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4f5f0b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x30360afe cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x31f2f2e3 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x33811488 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3711b163 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x39350bd7 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3c6c9898 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3d4f3b38 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x43ad8089 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x43e68c42 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x450e276e cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x48337c8c cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4d44247d cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x4e1fe3a1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x50a17dc6 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5c919da8 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x640da439 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a21d00a cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x6b05c4dc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x6d8e77e4 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6df29a9e cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x716c8890 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x72f14bbc wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x76b0ab41 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x78e0d335 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79fcd372 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x8611e855 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x87c8ff92 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x89703cb9 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8c3888be cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x8e41cd26 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa11919 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9042add8 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x9336a86f __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x93476417 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x93b6c139 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x9cded55e freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x9d0e836e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa70269c9 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xacb67a8e wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xadfb6afc wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb2e2c875 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbb905ddc cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xbd361b77 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbd90feca cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc476ad6b cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc54ef752 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xc7002491 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xca8165c3 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc25ec0e wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xccffb5d3 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xcf9c7d55 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd1b4dc9b __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d627e6 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd9659d5c cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xdaa87a93 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc17e620 ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xddf2f461 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe8a42907 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c54502 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xeb39bb4d wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xeb44a978 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xec1e73ca wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xec8fb5c6 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xedde68a0 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xf1a7bc03 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf4038f2c regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5809d30 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfa8ab416 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xfad097ea cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xfbcfe97f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xfc63977f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xfcfa1fa9 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfe89e8ed cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xfe9da4d4 cfg80211_inform_bss_data +EXPORT_SYMBOL ubuntu/hio/hio 0x0067bfb3 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x0af29964 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x16d921ed ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x17693774 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x55cfe72c ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0x8648e3e6 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x9dc86ec1 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xbb57f624 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xe6b310f9 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xeb779368 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xee519e5f ssd_get_temperature +EXPORT_SYMBOL vmlinux 0x0021d7e9 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x00339ad3 misc_deregister +EXPORT_SYMBOL vmlinux 0x0035bdf2 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x003b5960 fman_port_bind +EXPORT_SYMBOL vmlinux 0x00407004 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x007a5e5d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x007b7493 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x0082f95e qdisc_reset +EXPORT_SYMBOL vmlinux 0x0086b613 sock_alloc +EXPORT_SYMBOL vmlinux 0x00ace082 amba_driver_register +EXPORT_SYMBOL vmlinux 0x00b3935c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x00c46b25 can_nice +EXPORT_SYMBOL vmlinux 0x00c73afc tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e729b9 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x00f3140a sock_setsockopt +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010abb26 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x011d41b2 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x012fe8be mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014e85c2 irq_to_desc +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x01572423 make_kprojid +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01685300 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x017c692e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018fd9d3 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x01a7958d vfs_create +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01eb72e9 import_single_range +EXPORT_SYMBOL vmlinux 0x01eebc5a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x01faefa5 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02127694 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x0226ce9b delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x02401308 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x024547fd dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0260b8fe mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x0271e896 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0288154b phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029ca603 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a2ad97 finish_no_open +EXPORT_SYMBOL vmlinux 0x02b37aea cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x02b87412 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02cc3193 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x02d19031 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x02da86aa ata_dev_printk +EXPORT_SYMBOL vmlinux 0x02dd345c tcp_time_wait +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03026542 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x0308df65 fb_blank +EXPORT_SYMBOL vmlinux 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL vmlinux 0x03139514 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033adfbc tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x03492207 dump_emit +EXPORT_SYMBOL vmlinux 0x0357dcb4 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036b4aea tso_build_data +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03926fdc unregister_nls +EXPORT_SYMBOL vmlinux 0x0393ab0d fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b724f7 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x03cbba33 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x03e16baf make_bad_inode +EXPORT_SYMBOL vmlinux 0x03e68db1 netdev_alert +EXPORT_SYMBOL vmlinux 0x03f4f036 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fd96aa fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x03fdaedc sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x03feea40 cpumask_next +EXPORT_SYMBOL vmlinux 0x040ae6aa icmp6_send +EXPORT_SYMBOL vmlinux 0x0418de4d of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x04370681 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046aebad d_add_ci +EXPORT_SYMBOL vmlinux 0x047e3291 netdev_crit +EXPORT_SYMBOL vmlinux 0x0480e607 dev_printk +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0486caf4 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x04bac351 start_tty +EXPORT_SYMBOL vmlinux 0x04c3aef5 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x04d51d11 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x04e05502 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x04e18cd8 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052fbede sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x05437673 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x05630459 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0563a661 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x05763fdc register_cdrom +EXPORT_SYMBOL vmlinux 0x058a2970 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0591c222 keyring_clear +EXPORT_SYMBOL vmlinux 0x059c5dec simple_nosetlease +EXPORT_SYMBOL vmlinux 0x05a80418 of_phy_connect +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05b57b08 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x05b9f76d ps2_end_command +EXPORT_SYMBOL vmlinux 0x05bf7555 md_check_recovery +EXPORT_SYMBOL vmlinux 0x05d7fe08 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x05dc62b9 input_set_keycode +EXPORT_SYMBOL vmlinux 0x05df282e security_path_unlink +EXPORT_SYMBOL vmlinux 0x05f61d3b mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x05fab0e4 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x05fe64b7 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06193300 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x0628ebca pci_write_vpd +EXPORT_SYMBOL vmlinux 0x062c08b3 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x062d3e5c mdio_device_remove +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ebda6 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x063f6126 lookup_bdev +EXPORT_SYMBOL vmlinux 0x06400630 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x0649793f xfrm_state_update +EXPORT_SYMBOL vmlinux 0x064a96c6 generic_fadvise +EXPORT_SYMBOL vmlinux 0x0651d9c9 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x0657105a inode_init_always +EXPORT_SYMBOL vmlinux 0x065725a3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x0659582d key_link +EXPORT_SYMBOL vmlinux 0x0662d0c1 simple_getattr +EXPORT_SYMBOL vmlinux 0x0668e020 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x06791fcb fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x0682584e blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x068b7a80 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x06a206fe dcache_dir_open +EXPORT_SYMBOL vmlinux 0x06a76d29 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bf34d7 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x06c276e6 iput +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06da7592 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x06ee5661 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0734c2a7 km_report +EXPORT_SYMBOL vmlinux 0x0744ba39 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0749bf1a generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x076a4c13 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x077e5d3a __neigh_create +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07842580 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x078c6a20 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x0798d468 kobject_add +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b048f0 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x07b4ef9f vfs_ioctl +EXPORT_SYMBOL vmlinux 0x07b81971 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x07bc4a79 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x07c9b1f9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07ddd1cb sas_suspend_ha +EXPORT_SYMBOL vmlinux 0x07e3dee9 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0819b3de ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084d572c blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x08553416 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x08829b66 scsi_add_device +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x089495cf devm_iounmap +EXPORT_SYMBOL vmlinux 0x08993e4f tcf_idr_search +EXPORT_SYMBOL vmlinux 0x08ab4244 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x08c2690c pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x09013c4d setup_new_exec +EXPORT_SYMBOL vmlinux 0x0912e46e iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x091482e5 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093da816 dma_virt_ops +EXPORT_SYMBOL vmlinux 0x0944c43f node_states +EXPORT_SYMBOL vmlinux 0x0957a732 netdev_warn +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09682235 down_timeout +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097994ac locks_remove_posix +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097c006c __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0995b4d8 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x099f4188 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x09a5e779 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x09accd37 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x09b00e75 pci_free_irq +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d48e5c alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09f1d4a4 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a115552 tcf_block_put +EXPORT_SYMBOL vmlinux 0x0a1b6c51 nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3f3c4b d_exact_alias +EXPORT_SYMBOL vmlinux 0x0a43ea40 tty_port_init +EXPORT_SYMBOL vmlinux 0x0a651d55 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x0a66bc66 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a83ef30 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x0a8c7d15 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acd5252 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad3b7a2 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x0ad3da32 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x0ad5be3b dev_uc_add +EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible +EXPORT_SYMBOL vmlinux 0x0b156f59 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2647d1 sock_rfree +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b36b381 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x0b3c3d4c dmam_pool_create +EXPORT_SYMBOL vmlinux 0x0b536114 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0b542b61 rpmsg_unregister_device +EXPORT_SYMBOL vmlinux 0x0b6c3e41 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8523de igrab +EXPORT_SYMBOL vmlinux 0x0bc47104 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcaa467 sas_rphy_delete +EXPORT_SYMBOL vmlinux 0x0bd0a650 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x0bd7a7ca param_set_long +EXPORT_SYMBOL vmlinux 0x0be7f35b _copy_from_iter +EXPORT_SYMBOL vmlinux 0x0bffd1a2 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c1660a4 set_wb_congested +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c46da66 vm_event_states +EXPORT_SYMBOL vmlinux 0x0c558c75 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c73f350 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x0ca10dac pci_enable_device +EXPORT_SYMBOL vmlinux 0x0cb7ca3e single_release +EXPORT_SYMBOL vmlinux 0x0cba08ca security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cbe76e1 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc8288a register_netdevice +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0cf59350 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d179aae blk_register_region +EXPORT_SYMBOL vmlinux 0x0d2951c2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x0d2b68a7 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d52e07f dev_activate +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6982cf fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x0d6bfc73 sas_phy_alloc +EXPORT_SYMBOL vmlinux 0x0d6db716 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x0d80b8d0 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x0d9b96ed user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0da0759a pcibus_to_node +EXPORT_SYMBOL vmlinux 0x0dbab620 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x0dc0a122 param_ops_short +EXPORT_SYMBOL vmlinux 0x0dd3d797 fc_remote_port_add +EXPORT_SYMBOL vmlinux 0x0de44136 simple_write_begin +EXPORT_SYMBOL vmlinux 0x0ded4b20 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x0df229d8 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x0e05aed0 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x0e0a55b6 skb_dequeue +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e2900ac tty_devnum +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e64edd6 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0eb8e61b of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ef1c04a __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f42330f invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0f4a10b8 dev_uc_del +EXPORT_SYMBOL vmlinux 0x0f5da065 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x0f641415 input_set_capability +EXPORT_SYMBOL vmlinux 0x0f69461e unregister_rpmsg_driver +EXPORT_SYMBOL vmlinux 0x0f73333f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0f847ec1 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdfcc7f of_get_address +EXPORT_SYMBOL vmlinux 0x0fec16c4 sas_port_alloc +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x1010dd05 sas_phy_delete +EXPORT_SYMBOL vmlinux 0x101de71e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x10339a04 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104002fc iproc_msi_init +EXPORT_SYMBOL vmlinux 0x10470833 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x105253aa tty_kref_put +EXPORT_SYMBOL vmlinux 0x1059b3a6 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x105dda73 __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1072ab40 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107f2707 seq_read +EXPORT_SYMBOL vmlinux 0x108b18dd inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x10a5092f framebuffer_release +EXPORT_SYMBOL vmlinux 0x10ad9754 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x10c35269 proc_set_size +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10dd8a76 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x10edf81d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1109c986 ilookup +EXPORT_SYMBOL vmlinux 0x11388085 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11928012 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x11a6babb pci_release_region +EXPORT_SYMBOL vmlinux 0x11ab2400 proc_mkdir +EXPORT_SYMBOL vmlinux 0x11b64df2 pci_get_class +EXPORT_SYMBOL vmlinux 0x11cb9620 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x11dc37a6 input_allocate_device +EXPORT_SYMBOL vmlinux 0x11dfac82 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11f36ae5 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x1214f14f netdev_emerg +EXPORT_SYMBOL vmlinux 0x122a2444 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x123b6e1a filemap_check_errors +EXPORT_SYMBOL vmlinux 0x126339a3 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x127db669 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x12850a79 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12ca3f65 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130cf6b9 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x13132202 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x131935f3 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131d570b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x131f605c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x131ffa47 dup_iter +EXPORT_SYMBOL vmlinux 0x13200ffa __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1325ecaf page_symlink +EXPORT_SYMBOL vmlinux 0x1340558b __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x13482718 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134df746 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x13728209 make_kgid +EXPORT_SYMBOL vmlinux 0x137805e8 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x139edc9f qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13afe4a7 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x13c24386 inet_offloads +EXPORT_SYMBOL vmlinux 0x13c2e59c mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x13c508bf tty_do_resize +EXPORT_SYMBOL vmlinux 0x13d08097 skb_checksum +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d32bb6 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x13d6a5c5 drop_nlink +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1408d94b neigh_for_each +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1425e5b8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147701d8 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1479c95b __close_fd_get_file +EXPORT_SYMBOL vmlinux 0x14831abd skb_split +EXPORT_SYMBOL vmlinux 0x14837153 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x14863676 __destroy_inode +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x1497b2e4 phy_attached_print +EXPORT_SYMBOL vmlinux 0x14b018cc seq_path +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c2f788 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c85854 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x14d879a7 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x14e3064f set_anon_super +EXPORT_SYMBOL vmlinux 0x14f44ed9 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f589f4 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x14f6b539 fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15027679 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x150814cc tcp_conn_request +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152d2560 ping_prot +EXPORT_SYMBOL vmlinux 0x153f9824 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1565ded1 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1571c619 submit_bio +EXPORT_SYMBOL vmlinux 0x158479c4 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x158c2cb2 dm_get_device +EXPORT_SYMBOL vmlinux 0x15a738c8 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x15ac9e9a security_binder_transfer_file +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 0x15e0026d skb_copy_header +EXPORT_SYMBOL vmlinux 0x15ea4898 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x15eb7fad nf_log_unset +EXPORT_SYMBOL vmlinux 0x16010a96 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x160b9a32 __free_pages +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16544e14 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc +EXPORT_SYMBOL vmlinux 0x167a25ce dev_get_by_name +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169cd60a set_posix_acl +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 0x17042747 secpath_set +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x170f873b jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x171d125c submit_bh +EXPORT_SYMBOL vmlinux 0x171e6964 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x17286f9f nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x173d6aae ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x1767deb4 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x177c0763 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x1788e630 __frontswap_store +EXPORT_SYMBOL vmlinux 0x1790b310 geni_se_clk_freq_match +EXPORT_SYMBOL vmlinux 0x17a9c03d pipe_lock +EXPORT_SYMBOL vmlinux 0x17b01dd6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x17b7fc74 fb_show_logo +EXPORT_SYMBOL vmlinux 0x18112bf0 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x1812c5aa remap_pfn_range +EXPORT_SYMBOL vmlinux 0x182235bb pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x1822e13e fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x18292a2a in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x183bff1e tty_unlock +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18ac64a3 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x18ac9044 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18c0bd6c skb_pull +EXPORT_SYMBOL vmlinux 0x18d2af59 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x18e31a2b fc_vport_create +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e820a5 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x190e8ad5 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x191c9aea genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x192f012c blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x1939d0f2 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x1949674d flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1962528d rpmsg_trysendto +EXPORT_SYMBOL vmlinux 0x19837171 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b84a01 bh_submit_read +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19fc3a5c insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x1a0862cd kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x1a10e1f2 param_set_ullong +EXPORT_SYMBOL vmlinux 0x1a199f70 skb_tx_error +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a3fa667 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4b1de7 geni_se_config_packing +EXPORT_SYMBOL vmlinux 0x1a53ff9a neigh_destroy +EXPORT_SYMBOL vmlinux 0x1a7cc521 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a89459c nd_device_register +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab4e0ab dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x1ab75465 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1abded72 scsi_is_sas_phy +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac9fc90 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x1ad81a78 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x1addda8b dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x1ae231bb blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x1ae60546 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1ae6d833 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x1af29192 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0292ed zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0x1b07149e inode_init_once +EXPORT_SYMBOL vmlinux 0x1b1e0695 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x1b277f7b mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x1b2e1cf2 noop_llseek +EXPORT_SYMBOL vmlinux 0x1b3d8d78 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b759bb9 netdev_err +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b87deed blkdev_put +EXPORT_SYMBOL vmlinux 0x1b91d6f9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1b965873 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x1ba194f1 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbd4889 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdd4856 dquot_transfer +EXPORT_SYMBOL vmlinux 0x1bf7c9ef pci_save_state +EXPORT_SYMBOL vmlinux 0x1c2652df dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x1c2b0393 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c3919ee blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1c3cba99 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x1c3d5fa5 pci_request_region +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c7e6213 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x1c899aed axp20x_device_remove +EXPORT_SYMBOL vmlinux 0x1c96c840 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x1c9adf11 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x1c9be341 md_integrity_register +EXPORT_SYMBOL vmlinux 0x1c9f4dd1 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cd60f90 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cdff743 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1cfa0b18 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1543a6 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4a4501 tso_count_descs +EXPORT_SYMBOL vmlinux 0x1d5a4ac2 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x1d63ad2b devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1d744f1e scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1d7997fb ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x1dabd491 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1dba40c1 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddbe014 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dffe0a3 flush_old_exec +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e40e657 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x1e5cb52b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea6b874 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x1ea7b208 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1efdebce ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x1f2a7442 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x1f2bfacd no_llseek +EXPORT_SYMBOL vmlinux 0x1f427888 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x1f46f4ec rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x1f56b95f inet6_add_offload +EXPORT_SYMBOL vmlinux 0x1f6b2215 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x1f6febf3 vfs_get_link +EXPORT_SYMBOL vmlinux 0x1f7803e1 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x1f82d527 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x1f832ada scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x1fb52acc skb_push +EXPORT_SYMBOL vmlinux 0x1fbc9f72 put_user_pages +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fe78bf2 uart_resume_port +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200af7d6 geni_se_clk_tbl_get +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201b306b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204df909 kill_anon_super +EXPORT_SYMBOL vmlinux 0x2058034f __put_cred +EXPORT_SYMBOL vmlinux 0x2058fff9 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x20593870 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x205e6b63 sock_edemux +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2076e475 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x2095d04f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x2098b957 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b794f2 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x20c008c3 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cd44d3 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20dc4f3a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x20dda7b6 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2112118f kern_unmount +EXPORT_SYMBOL vmlinux 0x2123b46a md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x21295d71 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21502574 lease_modify +EXPORT_SYMBOL vmlinux 0x215374dd fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a7deb7 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cb563e iunique +EXPORT_SYMBOL vmlinux 0x21d2206c pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x21d3dd85 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea0f1e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x21eb96a0 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x220e55d0 mem_section +EXPORT_SYMBOL vmlinux 0x22211f86 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22397670 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x223e9cfd cdev_device_del +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2281b2ab nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x2286a2f7 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x22a514ff follow_pfn +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b66637 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x22e02b62 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x22e6ab2f sas_resume_ha +EXPORT_SYMBOL vmlinux 0x23018c0b vme_irq_request +EXPORT_SYMBOL vmlinux 0x230d5b78 __scsi_execute +EXPORT_SYMBOL vmlinux 0x232f4852 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x233cb6b4 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x23517a48 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x2364da19 key_validate +EXPORT_SYMBOL vmlinux 0x2374aec4 proc_remove +EXPORT_SYMBOL vmlinux 0x237f91e2 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x23821b8b show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239150d2 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x239c2698 __breadahead +EXPORT_SYMBOL vmlinux 0x23b02973 wireless_send_event +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bfecbe __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x23c4d73f tcp_mmap +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dc60b8 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23eee60d compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x23f4d847 PDE_DATA +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x2470190f dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x247ed297 of_get_next_child +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248df827 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x249568e8 elv_rb_find +EXPORT_SYMBOL vmlinux 0x24ad235e param_get_ullong +EXPORT_SYMBOL vmlinux 0x24cfe96d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d5b51d __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x24e0f40f sock_kfree_s +EXPORT_SYMBOL vmlinux 0x24e18bc0 sock_no_accept +EXPORT_SYMBOL vmlinux 0x24f830c5 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x24fb59ac d_set_d_op +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252bb5c6 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x253c5d4a scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x255809f6 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x255fb729 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258715df __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25a65511 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x25ac28ef mdio_device_reset +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260827d7 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260acfd4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2615d1fa input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26962e61 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x26a4184c qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x26a631db inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x26b191a1 register_gifconf +EXPORT_SYMBOL vmlinux 0x26cda40c seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x26d8af22 blk_rq_init +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e4f043 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x26ecbe2a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x271705d9 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27222dba devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x27263202 seq_file_path +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272d5158 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x274549e5 nonseekable_open +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275b92e8 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27653438 of_phy_attach +EXPORT_SYMBOL vmlinux 0x2768a147 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277a0644 __d_drop +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 0x27886606 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x27954696 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x279e1d95 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x27a6f4f0 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x27b5f100 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27f3d134 blk_queue_split +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281b1224 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x282bf4e4 skb_dump +EXPORT_SYMBOL vmlinux 0x2842433f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x285bffc5 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x289370a8 bio_uninit +EXPORT_SYMBOL vmlinux 0x2893fd90 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x28a023fc tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x28d04197 vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0x28fcdc82 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29112a83 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x2924d07d iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2929ec82 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x29316093 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x29361773 complete +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert +EXPORT_SYMBOL vmlinux 0x299ad0af pci_claim_resource +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a33ef1c km_state_notify +EXPORT_SYMBOL vmlinux 0x2a3a2a54 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x2a3c42bd d_path +EXPORT_SYMBOL vmlinux 0x2a593f97 zap_page_range +EXPORT_SYMBOL vmlinux 0x2a617f23 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock +EXPORT_SYMBOL vmlinux 0x2ab98f1e of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x2ad2800e dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2ad71339 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x2af2ce58 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b421966 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2b44e108 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x2b44ea80 pnp_is_active +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6a3dbe neigh_lookup +EXPORT_SYMBOL vmlinux 0x2b705f8b cad_pid +EXPORT_SYMBOL vmlinux 0x2b858967 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x2b9785b3 try_to_release_page +EXPORT_SYMBOL vmlinux 0x2b98bd01 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x2b9a0d19 d_alloc_name +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9f61ae skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2ba08e68 pci_pme_active +EXPORT_SYMBOL vmlinux 0x2bab5564 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2babc2ad unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x2baf6fdd dquot_get_state +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2bc0ed27 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x2bc8edc9 vm_map_ram +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bfb77c6 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c1a8fdd tty_register_driver +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c4124c6 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x2c527ac0 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c66bbfb pagecache_write_end +EXPORT_SYMBOL vmlinux 0x2c6b046d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x2c781a26 bdev_read_only +EXPORT_SYMBOL vmlinux 0x2c7c5309 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2ca4eee1 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd9fc7a inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf12278 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d08f4c3 module_layout +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2ee977 hnae3_register_client +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3466df unload_nls +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3fb73c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d533cc1 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2d53e5d7 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2d560012 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x2d5c109e ppp_input +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d813596 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2dbcf8a9 scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd64732 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x2dd7fc9f netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2de4a0cc page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x2dfd9cae pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x2e04e9bb __sb_end_write +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1c82ef has_capability +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e22b748 pps_register_source +EXPORT_SYMBOL vmlinux 0x2e29f017 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2db112 block_write_begin +EXPORT_SYMBOL vmlinux 0x2e2e77e3 read_cache_page +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e6e0342 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x2e855043 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x2ec3453b qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x2ec53c59 finalize_exec +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecf05db dump_page +EXPORT_SYMBOL vmlinux 0x2ed3438e release_firmware +EXPORT_SYMBOL vmlinux 0x2ed5bbbb input_flush_device +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2ee33d63 generic_perform_write +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee730df ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x2efe9ff5 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2f3a52 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f568e8a __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x2f5c4291 seq_printf +EXPORT_SYMBOL vmlinux 0x2f5c5493 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x2f6eb175 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f95de54 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x2f987060 dm_put_device +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe4fcfa follow_down_one +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff05f8b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x2ff152c4 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x2ffc598f tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x30134ac6 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x301dbb7f clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x3047425f vga_put +EXPORT_SYMBOL vmlinux 0x3050b2f8 pci_get_slot +EXPORT_SYMBOL vmlinux 0x305b43e3 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x305e5cf6 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3081b3c2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x308c3c01 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x30912916 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a2b0a2 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30bd5ee0 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x30d9bd99 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x30e28101 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x30e4255e devm_memremap +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f104b8 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x311e231d d_prune_aliases +EXPORT_SYMBOL vmlinux 0x31236535 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3135248b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3156fdc8 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x3161abde __bforget +EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked +EXPORT_SYMBOL vmlinux 0x319a00d3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31df70ca ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x31e8b3ee inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x31eef38e bdevname +EXPORT_SYMBOL vmlinux 0x320eaa64 filemap_flush +EXPORT_SYMBOL vmlinux 0x32160954 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x322a4951 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x3230f9f5 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x324ffa12 cdev_device_add +EXPORT_SYMBOL vmlinux 0x326ba450 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x326fd803 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327e8285 get_disk_and_module +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32c4f148 phy_disconnect +EXPORT_SYMBOL vmlinux 0x32c945f0 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x32cb4de5 path_nosuid +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d5f341 fc_remove_host +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e81ebc security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x32fed81f inet_frags_init +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x3316cadb dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL vmlinux 0x333af1dc fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x3348224a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x334ad032 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x334f9fdc input_register_handler +EXPORT_SYMBOL vmlinux 0x3352d7f6 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x3364bd50 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33804660 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x338b061f cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x338e3977 follow_down +EXPORT_SYMBOL vmlinux 0x338f9861 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3395031e xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x339c17b8 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x339cac61 seq_pad +EXPORT_SYMBOL vmlinux 0x33a95aa4 axp20x_match_device +EXPORT_SYMBOL vmlinux 0x33dbb865 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f9bb2e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340be1b0 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x340c36db vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x34329a1b blk_sync_queue +EXPORT_SYMBOL vmlinux 0x34373704 iptun_encaps +EXPORT_SYMBOL vmlinux 0x344ca9d4 qman_init_fq +EXPORT_SYMBOL vmlinux 0x34795cc6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x347a0ec2 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x34874709 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x34893617 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x348e04bc console_stop +EXPORT_SYMBOL vmlinux 0x3493ca6c peernet2id +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a0f230 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34ae7d05 of_device_is_available +EXPORT_SYMBOL vmlinux 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL vmlinux 0x34d89a05 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x34f106c8 inet_put_port +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f5ca8d pci_get_device +EXPORT_SYMBOL vmlinux 0x3503658f ether_setup +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351f4065 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x352e86b2 simple_unlink +EXPORT_SYMBOL vmlinux 0x3532a197 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x3536cf91 __skb_pad +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e8281 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x354dc3c7 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x35534c5d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x355624fa ps2_begin_command +EXPORT_SYMBOL vmlinux 0x35572b11 seq_lseek +EXPORT_SYMBOL vmlinux 0x35576cea scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x355ae43a netif_rx +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357114c1 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x357cb6fb compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c98662 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x35cec6f3 config_item_get +EXPORT_SYMBOL vmlinux 0x35d580dd inet_csk_accept +EXPORT_SYMBOL vmlinux 0x35dba3cf neigh_update +EXPORT_SYMBOL vmlinux 0x35e58808 vfs_get_super +EXPORT_SYMBOL vmlinux 0x35f6443e __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x360254f4 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3664fb8b release_sock +EXPORT_SYMBOL vmlinux 0x366aa8c0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x366bf412 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3674c95f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x36873783 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x36a3f0ca sg_miter_skip +EXPORT_SYMBOL vmlinux 0x36bdb57a blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x36d1dbf2 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x36ed5c5e arp_create +EXPORT_SYMBOL vmlinux 0x36fd142c prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x36ffb714 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x37082a7d serio_close +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x372182e1 clk_get +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375a2a53 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x376a2b1c mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x378170f5 iproc_pcie_remove +EXPORT_SYMBOL vmlinux 0x37826358 dentry_open +EXPORT_SYMBOL vmlinux 0x378dbb6c do_clone_file_range +EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x37acc933 xgene_mdio_wr_mac +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b648a6 generic_fillattr +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cf5c3e kill_bdev +EXPORT_SYMBOL vmlinux 0x37d4e5cb sas_release_transport +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e17714 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x37ffa674 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x3805181b xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x380d53c7 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3826478e ptp_clock_event +EXPORT_SYMBOL vmlinux 0x382b92fa neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x383204e7 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x38381e21 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x38602c45 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x386baa35 d_find_alias +EXPORT_SYMBOL vmlinux 0x387efb1d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3889f309 rpmh_flush +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388b7489 sock_i_ino +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 0x38a86abb n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b811dd param_get_invbool +EXPORT_SYMBOL vmlinux 0x38d55438 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38e4ac20 inet_protos +EXPORT_SYMBOL vmlinux 0x38f0a19f file_ns_capable +EXPORT_SYMBOL vmlinux 0x38f592ad add_to_pipe +EXPORT_SYMBOL vmlinux 0x38feec65 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x3908d387 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x3917f71a input_unregister_handle +EXPORT_SYMBOL vmlinux 0x392087d6 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3925c9a8 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x39281da1 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x3928ae8d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39510be5 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x39521aaf sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397c0b90 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a743b6 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c39391 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x39ceca20 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x39e46212 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x39f77f70 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x39f9769f irq_stat +EXPORT_SYMBOL vmlinux 0x3a007e08 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x3a0731c4 noop_fsync +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a17d910 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x3a1c1d52 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x3a2ef59d pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a34a110 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x3a35a3c2 skb_seq_read +EXPORT_SYMBOL vmlinux 0x3a38c461 cdev_alloc +EXPORT_SYMBOL vmlinux 0x3a4de01e bio_put +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5f7acd mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x3a83a3d3 __frontswap_load +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL vmlinux 0x3abf8117 tty_port_put +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 0x3aec6dae lock_sock_fast +EXPORT_SYMBOL vmlinux 0x3af78b2f empty_aops +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b018dfb inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x3b097b17 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x3b09bb21 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b27c14f pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3b2be819 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b362faa current_time +EXPORT_SYMBOL vmlinux 0x3b39d47b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b42a70e inet_sendmsg +EXPORT_SYMBOL vmlinux 0x3b4abcd5 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3b4dfa3c dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3b52b7ad ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b66cfa1 truncate_setsize +EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds +EXPORT_SYMBOL vmlinux 0x3b8d6dda balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3ba2dd27 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0x3ba6cab2 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3bd5c04a dquot_release +EXPORT_SYMBOL vmlinux 0x3bdad9ec config_group_find_item +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c4d3487 set_create_files_as +EXPORT_SYMBOL vmlinux 0x3c4d4a39 generic_make_request +EXPORT_SYMBOL vmlinux 0x3c56baec serio_interrupt +EXPORT_SYMBOL vmlinux 0x3c5bceda unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x3c608f5d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c84b2b4 param_set_invbool +EXPORT_SYMBOL vmlinux 0x3c85a06e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x3c9507f3 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x3c99f919 build_skb_around +EXPORT_SYMBOL vmlinux 0x3c9fddd8 request_key_tag +EXPORT_SYMBOL vmlinux 0x3cb8f1eb seq_puts +EXPORT_SYMBOL vmlinux 0x3cbfa669 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x3cd58ea3 pci_disable_device +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3cdbb6c9 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d00b4f7 dev_add_offload +EXPORT_SYMBOL vmlinux 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0fe21e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x3d1d3e12 d_tmpfile +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d229ba7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x3d27fb97 inet_bind +EXPORT_SYMBOL vmlinux 0x3d30ebf6 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x3d6f0147 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x3d833dac pci_select_bars +EXPORT_SYMBOL vmlinux 0x3d939a59 free_task +EXPORT_SYMBOL vmlinux 0x3d93ce71 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x3d9c2e4d kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da48f17 sg_miter_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +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 0x3dd5031e dev_mc_init +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3df49c0c md_finish_reshape +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e08a819 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3e109bbd iget_locked +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e90aa15 dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea40f7a mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3eacc406 security_sock_graft +EXPORT_SYMBOL vmlinux 0x3eb1ee5e audit_log_start +EXPORT_SYMBOL vmlinux 0x3eb2e104 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efb3e04 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f15cea6 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3f252fb1 __kernel_write +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5c1e2e blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fbfa89c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x3fd66d46 sock_create +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe3fab4 may_umount +EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x400a19d8 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4017cd30 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x402ed199 __do_once_done +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x4045607b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x40539594 kset_unregister +EXPORT_SYMBOL vmlinux 0x4058cb86 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x40637672 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x407668ce bdget +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b1ece9 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x40b9aa2b pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x40c66cf2 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e69ee6 elevator_alloc +EXPORT_SYMBOL vmlinux 0x4108a81d generic_update_time +EXPORT_SYMBOL vmlinux 0x410d8f12 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x411e08d5 wake_up_process +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41790a78 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x41878af5 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418c3b91 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x41a8217b security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x41daf223 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x42142d06 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421a217c seq_hex_dump +EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x426f0ca4 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x4279bd18 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x42883ffa mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x42993930 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x42ac2657 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42dbf54f dst_destroy +EXPORT_SYMBOL vmlinux 0x42e8c02c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4315c1d6 bio_endio +EXPORT_SYMBOL vmlinux 0x43265385 rt6_lookup +EXPORT_SYMBOL vmlinux 0x4333a79a do_splice_direct +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433779ce sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x434a9417 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43863d1f ps2_command +EXPORT_SYMBOL vmlinux 0x438e987a hnae_ae_register +EXPORT_SYMBOL vmlinux 0x43d338a6 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x43f207c4 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x43f8196f arp_tbl +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL vmlinux 0x4418c5bd no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x4427a2f3 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x4443198e ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4457e083 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x445e1e71 load_nls +EXPORT_SYMBOL vmlinux 0x44730a43 rpmsg_send +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44cafe64 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x44d1b3ff d_rehash +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a9089 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x451a0d96 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x4520317b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4537f21e netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45471fa8 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456467b2 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x4565b9ec kernel_write +EXPORT_SYMBOL vmlinux 0x456e6c75 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x45740e35 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x4576d4c0 geni_se_tx_dma_unprep +EXPORT_SYMBOL vmlinux 0x457796c1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c8c50 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4581089f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x4597ff51 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x45c52635 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x45c65496 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x4606f7f9 sk_net_capable +EXPORT_SYMBOL vmlinux 0x4614c374 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x46556408 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467dd0b0 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468cb516 set_nlink +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x4699dbef netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a53a64 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x46a8847d input_register_handle +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cb4446 __register_binfmt +EXPORT_SYMBOL vmlinux 0x46cdff7b open_exec +EXPORT_SYMBOL vmlinux 0x46e6f86e __devm_release_region +EXPORT_SYMBOL vmlinux 0x46edffb8 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x46ef8bc4 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x4708d02b pcim_pin_device +EXPORT_SYMBOL vmlinux 0x470a111b blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x474ae712 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x4762ad42 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x476864b4 thaw_super +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b223d0 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x47ba87b0 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x47bb1012 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c89d55 netlink_unicast +EXPORT_SYMBOL vmlinux 0x47d081a6 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x47d6c768 md_handle_request +EXPORT_SYMBOL vmlinux 0x47f2c9f2 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x4803fe98 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x4840f453 hnae3_register_ae_dev +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 0x485c6460 geni_se_tx_dma_prep +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x486a0fc4 sas_phy_add +EXPORT_SYMBOL vmlinux 0x48834e72 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x489eaa67 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b1ae27 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48f3653e pci_enable_msi +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x491de586 napi_complete_done +EXPORT_SYMBOL vmlinux 0x491df1a7 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x49201890 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x4940348c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4959ba46 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x497117eb flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x498a150e pci_fixup_device +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x4997f472 seq_escape +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a858dd generic_write_checks +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bb77da phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x49eabca1 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x4a161929 iterate_dir +EXPORT_SYMBOL vmlinux 0x4a1b6d39 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x4a30c74b nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4a4ce215 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4a514e34 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x4a5480ea security_path_mknod +EXPORT_SYMBOL vmlinux 0x4a603345 unregister_netdev +EXPORT_SYMBOL vmlinux 0x4a631973 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x4a6e7363 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4a719fec xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9d7460 __napi_schedule +EXPORT_SYMBOL vmlinux 0x4aa04077 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x4aa5e5a1 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4ad490f9 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x4ad7100a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aee9c9a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x4af70c40 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b351ec4 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x4b3bd5f6 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b52996a dma_free_attrs +EXPORT_SYMBOL vmlinux 0x4b5a7965 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b69bc09 finish_swait +EXPORT_SYMBOL vmlinux 0x4baf31f5 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bb1c611 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4bbdd20f simple_rmdir +EXPORT_SYMBOL vmlinux 0x4bc80639 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd56d3f vme_slave_request +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf1ff9d devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bfab52f inc_node_page_state +EXPORT_SYMBOL vmlinux 0x4bfb429c __pci_register_driver +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c090cee vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x4c1e7796 get_task_cred +EXPORT_SYMBOL vmlinux 0x4c28e0d7 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x4c2a9fa1 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4ab8ea blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x4c5029e9 soft_cursor +EXPORT_SYMBOL vmlinux 0x4c517a12 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x4c55df55 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4c5f041c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x4c635f40 send_sig +EXPORT_SYMBOL vmlinux 0x4c6c41a8 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4c7a5d1a skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4c85c025 inode_permission +EXPORT_SYMBOL vmlinux 0x4c9e7883 unlock_rename +EXPORT_SYMBOL vmlinux 0x4ca47c54 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x4caaad1e dm_kobject_release +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc71bb6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x4cf1b951 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x4cf76b20 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x4cf8f683 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4d0040a0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d10e228 proc_create +EXPORT_SYMBOL vmlinux 0x4d156bde done_path_create +EXPORT_SYMBOL vmlinux 0x4d1a3341 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x4d1f91d1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d2effe5 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6ceabb inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d74fc0a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b0cd6 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9fab67 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x4dba4caf module_put +EXPORT_SYMBOL vmlinux 0x4dbed8ff inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd82251 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x4de758ca scsi_target_resume +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df331aa locks_free_lock +EXPORT_SYMBOL vmlinux 0x4e04efef ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x4e0b5e58 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3e134f mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4e47d4f4 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e57f184 sock_no_getname +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eb145bc ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x4ebc4a61 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecf6933 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x4edf33d8 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x4ee8b74d vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x4ef358ca devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x4ef44b39 check_disk_change +EXPORT_SYMBOL vmlinux 0x4eff921d phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f5fa8f0 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x4fa48e94 simple_lookup +EXPORT_SYMBOL vmlinux 0x4fa5c83b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x4fac457f sk_free +EXPORT_SYMBOL vmlinux 0x4fb9fda2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4fd39998 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4fe5de4d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4fe86329 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4ff2716e nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x4ff775e1 sk_stream_error +EXPORT_SYMBOL vmlinux 0x50056fae sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x503e75c0 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x503ef06b scmd_printk +EXPORT_SYMBOL vmlinux 0x504e490e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x5063f28c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50719303 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x5079ddff vme_register_driver +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509caf75 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b2dc1c phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be32ab bdi_put +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c2ab3f iov_iter_npages +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50cbfa8b input_set_abs_params +EXPORT_SYMBOL vmlinux 0x50d2fde5 iterate_fd +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51132015 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x511fa581 param_set_bool +EXPORT_SYMBOL vmlinux 0x51398bc0 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5150e1b8 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51864ca4 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x518f8574 sock_from_file +EXPORT_SYMBOL vmlinux 0x519ce256 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x519d2a8c __phy_resume +EXPORT_SYMBOL vmlinux 0x51a21e9c pci_dev_put +EXPORT_SYMBOL vmlinux 0x51b246e0 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done +EXPORT_SYMBOL vmlinux 0x51c708c9 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x520dafe4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x521c5fe4 dev_addr_del +EXPORT_SYMBOL vmlinux 0x522e2512 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x52462952 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5246afba tcf_block_get +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52769123 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5278c1ab ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x52859dbb inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x52866a66 pci_find_capability +EXPORT_SYMBOL vmlinux 0x528ed5ab inet_frag_find +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529eec95 inc_nlink +EXPORT_SYMBOL vmlinux 0x52b5b6ec pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52da61b1 iget_failed +EXPORT_SYMBOL vmlinux 0x52e98f02 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52fd8dc4 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x530b114e skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x53168ec7 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x53249651 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x532ea7b6 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x53350f0c simple_transaction_set +EXPORT_SYMBOL vmlinux 0x533f9904 file_remove_privs +EXPORT_SYMBOL vmlinux 0x534a6837 inet_release +EXPORT_SYMBOL vmlinux 0x53636458 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x536c4342 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x536e3eed netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x5381fa79 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x538e7df2 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x53a74c6d amba_device_register +EXPORT_SYMBOL vmlinux 0x53b800de blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53bb20c0 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x53c9f7e7 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x53cc1208 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x53e27d35 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x53ec0609 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5431a304 enetc_phc_index +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x543fd475 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x54433ef9 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544b9098 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x5468efe8 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5471ed52 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x547a3566 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x54874227 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x5492edb3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5496ab7b blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x54a685e1 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55043b79 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555ae4b4 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x555dc78d geni_se_select_mode +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55896ef0 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559cde24 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x55c02492 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x55dc835f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x55dc8b7e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ffb92e dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x5609c655 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x5634b2e6 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5638b25d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x5644586c ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x566c6f9e tty_vhangup +EXPORT_SYMBOL vmlinux 0x56752459 skb_unlink +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5687af41 sas_port_delete +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5699b986 __alloc_skb +EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x56ac7b52 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d089d4 phy_init_hw +EXPORT_SYMBOL vmlinux 0x56db1d78 input_close_device +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x57032e14 tcp_poll +EXPORT_SYMBOL vmlinux 0x570b7a83 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x570b9109 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x571c590d inet_gro_complete +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576c78e5 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x576dece9 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x57803fdd dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x5796963e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57d2ae5a skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x57fdf157 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x57ff53ce qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5846d48b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x585fe07e bio_chain +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5869ef26 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x58a20b48 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c337bc bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x58c99984 backlight_device_register +EXPORT_SYMBOL vmlinux 0x58ce582b ip6_frag_next +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eea88a of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x593d48e6 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x5944b2e5 dst_dev_put +EXPORT_SYMBOL vmlinux 0x5955a3ae devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x597d42c7 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x5995aa45 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x5997614b from_kuid +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c8d9b4 from_kgid +EXPORT_SYMBOL vmlinux 0x59d31381 simple_setattr +EXPORT_SYMBOL vmlinux 0x59d80238 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0c803f __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5a0d0d4a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x5a109308 ata_port_printk +EXPORT_SYMBOL vmlinux 0x5a28cb47 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x5a3a0fed sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a45f76b pci_match_id +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a535302 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a8f6a67 __scm_send +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aab8ac2 netdev_state_change +EXPORT_SYMBOL vmlinux 0x5ab61cc0 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5acaff79 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x5acdd140 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5b08d751 vga_client_register +EXPORT_SYMBOL vmlinux 0x5b0adbf6 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3069ec scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x5b35d658 registered_fb +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b4f047c put_cmsg +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b92c075 single_open_size +EXPORT_SYMBOL vmlinux 0x5b974381 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x5bd75a56 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0x5be429c7 xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bec8d81 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5bfe6168 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x5c00384f d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5c0bfffc vfs_symlink +EXPORT_SYMBOL vmlinux 0x5c2a7715 param_set_ulong +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c4e6cf9 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5c802244 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x5c8961bc __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x5c8c47e3 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x5c8ffc72 param_set_byte +EXPORT_SYMBOL vmlinux 0x5c960d51 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x5cba79ca dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x5cbb469f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x5cc62d92 ip_frag_next +EXPORT_SYMBOL vmlinux 0x5cd21fa2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5cd236c9 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x5cd96c89 input_register_device +EXPORT_SYMBOL vmlinux 0x5cea5c1c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5cf51472 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfedb75 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x5d01bf50 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d20a5c7 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x5d291a3f jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x5d32b2e8 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x5d37ca76 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x5d45814a __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5151a9 amba_request_regions +EXPORT_SYMBOL vmlinux 0x5d5240f4 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5d5ccb2f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5d60b274 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x5d7ac625 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL vmlinux 0x5d80bbef __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5decf814 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e073e68 dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5e0d941a blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e6ca0c9 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e76ed21 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e7f132e flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebbf6a1 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5ebdf8ec to_nd_btt +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5efaafe6 param_get_int +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0b5b62 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5f307ba7 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x5f34d951 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x5f37fa80 arp_send +EXPORT_SYMBOL vmlinux 0x5f43a928 geni_se_resources_on +EXPORT_SYMBOL vmlinux 0x5f51e67f inet_register_protosw +EXPORT_SYMBOL vmlinux 0x5f56be27 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x5f67195a consume_skb +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fb5cd95 input_release_device +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fcdd857 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x5fd07fb5 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5fdbfeb0 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x5fe976fd blk_put_queue +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffbd1a4 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6009134c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602eb952 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl +EXPORT_SYMBOL vmlinux 0x6047da17 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x604a0afa open_with_fake_path +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605a040a sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x6065da4a __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x607d73fa __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6088bd68 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609ec1b4 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e5a235 udplite_prot +EXPORT_SYMBOL vmlinux 0x611491d8 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x61185ff1 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds +EXPORT_SYMBOL vmlinux 0x611e430e input_grab_device +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x6146057e eth_gro_complete +EXPORT_SYMBOL vmlinux 0x614aeaaa locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x6154678f vme_irq_free +EXPORT_SYMBOL vmlinux 0x61550650 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6168c944 vfs_getattr +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 0x619e618c param_set_short +EXPORT_SYMBOL vmlinux 0x619fdc62 path_is_under +EXPORT_SYMBOL vmlinux 0x61a23424 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd5d05 __quota_error +EXPORT_SYMBOL vmlinux 0x61d21a9b get_cached_acl +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ea1f44 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6202bbba jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x6202e11c kfree_skb +EXPORT_SYMBOL vmlinux 0x6203734c request_firmware +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62245324 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623e237d sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x624417ab mount_single +EXPORT_SYMBOL vmlinux 0x62641a42 vif_device_init +EXPORT_SYMBOL vmlinux 0x626460cc cdev_del +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627d8429 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x628eda24 stop_tty +EXPORT_SYMBOL vmlinux 0x62a6319e sas_read_port_mode_page +EXPORT_SYMBOL vmlinux 0x62ae90da kern_path_create +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f60382 free_netdev +EXPORT_SYMBOL vmlinux 0x630a015a clk_add_alias +EXPORT_SYMBOL vmlinux 0x630c4f87 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319c175 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x632265f9 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x632d360a of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x633010aa udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6354e77a _copy_to_iter +EXPORT_SYMBOL vmlinux 0x635dcc34 input_inject_event +EXPORT_SYMBOL vmlinux 0x6368ae40 d_splice_alias +EXPORT_SYMBOL vmlinux 0x636adac2 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x63781f25 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x63795953 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x637a2e2f do_SAK +EXPORT_SYMBOL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL vmlinux 0x6391f3bc kthread_bind +EXPORT_SYMBOL vmlinux 0x6394c664 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c8129d nmi_panic +EXPORT_SYMBOL vmlinux 0x63c864a1 phy_device_free +EXPORT_SYMBOL vmlinux 0x63d260ad hnae3_set_client_init_flag +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63e15cb1 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x63eb1636 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63efc6fa kernel_accept +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64131fb4 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x64172a67 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x642de598 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x642f6afb d_drop +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x644f8415 set_disk_ro +EXPORT_SYMBOL vmlinux 0x645e2496 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x645f442e of_get_pci_address +EXPORT_SYMBOL vmlinux 0x6460bba1 init_task +EXPORT_SYMBOL vmlinux 0x6460c7ca __frontswap_test +EXPORT_SYMBOL vmlinux 0x6462b702 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x647f1d61 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x64806632 tcp_filter +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648ce3b4 dev_deactivate +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64934bf8 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ac7194 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d4aa2e vfs_mkobj +EXPORT_SYMBOL vmlinux 0x64dae91a skb_clone +EXPORT_SYMBOL vmlinux 0x6501f16c dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x6502e663 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6524b0d6 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653062d1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x65339e36 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x65377fe8 dquot_file_open +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x654573f0 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65893229 vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x6595cba2 phy_stop +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65bbf237 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x65bc9c05 clear_inode +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f21633 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x65f95c09 bio_add_page +EXPORT_SYMBOL vmlinux 0x660d5d3e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6631ac66 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x66365fe5 param_set_uint +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x6660ac29 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66707fe5 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x66716715 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6679d1d7 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x667d1cec unregister_md_personality +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bf9e0b rpmsg_trysend_offchannel +EXPORT_SYMBOL vmlinux 0x66d4dc0e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x66dbd364 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66e78966 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6705d2d4 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x670c4ce8 tcf_em_register +EXPORT_SYMBOL vmlinux 0x6717bbab __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x67272016 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x6727254e param_get_bool +EXPORT_SYMBOL vmlinux 0x6730dfde sg_miter_stop +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674ff732 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6758fc0b security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6769706a dma_sync_wait +EXPORT_SYMBOL vmlinux 0x6777d3dc register_quota_format +EXPORT_SYMBOL vmlinux 0x677f620c pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x678660e0 of_node_put +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679772c5 revalidate_disk +EXPORT_SYMBOL vmlinux 0x67aa1775 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x67ad6959 con_is_bound +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67d81e74 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x67ec47be blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x67ffb323 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x680151ac kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x68264673 simple_open +EXPORT_SYMBOL vmlinux 0x685932ba __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x68669f0f pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x686cae63 send_sig_info +EXPORT_SYMBOL vmlinux 0x6879c318 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a26910 make_kuid +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68acf4af fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x68b3e457 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x68b8c9e3 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x68df743f set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x68e3f764 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL vmlinux 0x68f64a5e ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x68ffbbc1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690ad53b hnae_ae_unregister +EXPORT_SYMBOL vmlinux 0x693ef975 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69506f60 __ps2_command +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69683550 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x696dfe49 mount_nodev +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x698d4f46 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x698eb8a1 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x69909ed0 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c7b91d new_inode +EXPORT_SYMBOL vmlinux 0x69dc3bb2 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69f51787 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x69fc506a mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a03c606 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x6a0a96ee tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x6a17ee44 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x6a182c9b tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a4b74ef page_pool_destroy +EXPORT_SYMBOL vmlinux 0x6a506af1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x6a5a0434 __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a652a77 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6a6ff441 pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x6a96a736 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa7d8e2 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x6ab18e6f tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x6abaff02 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x6ac29c6d sock_release +EXPORT_SYMBOL vmlinux 0x6aca399f touch_atime +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeaf231 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af5ce5b scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b279f79 fman_register_intr +EXPORT_SYMBOL vmlinux 0x6b2941b2 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4024b4 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b4e681b config_group_init +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b597eb4 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b641f79 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x6b6be147 kernel_bind +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9a73d1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x6bbabe9d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x6bc0b49a phy_find_first +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdd60c8 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be22b3a dev_set_alias +EXPORT_SYMBOL vmlinux 0x6be38db3 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x6c157df0 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6c1d60cc mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x6c1feff6 pci_restore_state +EXPORT_SYMBOL vmlinux 0x6c207478 inode_insert5 +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c2932ed kmem_cache_size +EXPORT_SYMBOL vmlinux 0x6c2cf405 unlock_page +EXPORT_SYMBOL vmlinux 0x6c3d0354 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x6c466968 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6c4bc477 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c87edd5 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c914cb7 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb926b5 sas_port_free +EXPORT_SYMBOL vmlinux 0x6cbce114 bio_split +EXPORT_SYMBOL vmlinux 0x6cc65cab skb_copy +EXPORT_SYMBOL vmlinux 0x6cef1064 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cfb40e5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d17562e md_write_inc +EXPORT_SYMBOL vmlinux 0x6d189f3b dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d30da48 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4ddb5b inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6d5f32be param_get_string +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d738fd5 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6db3a168 generic_write_end +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc864fb dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x6dcc9aab free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e2f6c4e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x6e443ac0 dev_trans_start +EXPORT_SYMBOL vmlinux 0x6e453c48 nf_log_set +EXPORT_SYMBOL vmlinux 0x6e45ac5e security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x6e4bc7b1 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x6e58a448 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5fe390 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72bfae param_ops_byte +EXPORT_SYMBOL vmlinux 0x6e770f26 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x6e9676d3 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6e979316 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eaefea5 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6ebb3a2d fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0x6ed5c97a netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6eed2923 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x6f02ea7f dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6f07c871 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6f168a59 build_skb +EXPORT_SYMBOL vmlinux 0x6f1fceb0 netdev_info +EXPORT_SYMBOL vmlinux 0x6f2b5ace tcp_prot +EXPORT_SYMBOL vmlinux 0x6f318639 sk_capable +EXPORT_SYMBOL vmlinux 0x6f3ac82f udp_seq_start +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4f02fe genl_notify +EXPORT_SYMBOL vmlinux 0x6f610d83 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x6f670397 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6f71ec78 padata_start +EXPORT_SYMBOL vmlinux 0x6f76ae7a would_dump +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f794ec5 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6f7d6577 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbe174d blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd37607 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x6fd74c29 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fe0e108 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x6ff9172e geni_se_rx_dma_prep +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700480a0 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x7016e4a2 hnae_put_handle +EXPORT_SYMBOL vmlinux 0x702397a6 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70262398 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7027266c eth_header_cache +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x703b7439 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x703cdcc9 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x704234d0 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x70602781 vc_resize +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70791a51 security_path_rename +EXPORT_SYMBOL vmlinux 0x707d5fd5 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70cadaad tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x70d108ca skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70eed0e4 kobject_init +EXPORT_SYMBOL vmlinux 0x71124c40 km_policy_expired +EXPORT_SYMBOL vmlinux 0x7115a845 locks_delete_block +EXPORT_SYMBOL vmlinux 0x711aa46e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712cff4b gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x71417ebf _dev_info +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71447f25 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7182f427 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x719a90c5 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71cefb32 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x71f4dad3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x72255ba4 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x722b7b97 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x722d2b8d scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x722e297e tcp_connect +EXPORT_SYMBOL vmlinux 0x72365e46 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725148ea tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x7261f043 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x7264ae16 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x7274ecd2 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7277014e write_cache_pages +EXPORT_SYMBOL vmlinux 0x72833172 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x728b05a0 hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x729f8fd7 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x729fa577 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x72a3afac device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x72a9c1ad mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x72b4cb6a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x72b7a5a3 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72cd8cc1 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x72dcc39f find_vma +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ebcbb5 blkdev_get +EXPORT_SYMBOL vmlinux 0x72ed1bc8 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x73166628 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731ddb0a hmm_range_register +EXPORT_SYMBOL vmlinux 0x7335b8ac inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x737e0303 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73822e51 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x73a4aed7 find_lock_entry +EXPORT_SYMBOL vmlinux 0x73af3ca2 udp_set_csum +EXPORT_SYMBOL vmlinux 0x73d7a22d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x73e300f4 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x73e7e6a3 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x73ff2bc2 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7407e33f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x740ac37d vlan_vid_del +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7418aa07 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x746a595d pci_request_regions +EXPORT_SYMBOL vmlinux 0x746b7fcb md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7475ae11 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x747623f7 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x749d76c5 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x74a24f23 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x74a5549f config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c2b6fd update_region +EXPORT_SYMBOL vmlinux 0x74cf0bae vme_dma_request +EXPORT_SYMBOL vmlinux 0x74d5a943 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x74dc6303 vme_master_request +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eab659 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x74f54777 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x74f77ca0 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x74fe452b dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x75017822 posix_test_lock +EXPORT_SYMBOL vmlinux 0x75177cbb mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x75230e10 tcf_register_action +EXPORT_SYMBOL vmlinux 0x7552c1f2 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75610f7f page_pool_create +EXPORT_SYMBOL vmlinux 0x75663bd7 skb_queue_head +EXPORT_SYMBOL vmlinux 0x75697b4a sas_remove_children +EXPORT_SYMBOL vmlinux 0x756a4027 I_BDEV +EXPORT_SYMBOL vmlinux 0x756bb5a4 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x756f6c0d __netif_schedule +EXPORT_SYMBOL vmlinux 0x75729209 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x757dfdb3 vme_bus_type +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75ac2310 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x75ad303c dma_find_channel +EXPORT_SYMBOL vmlinux 0x75ba0d20 scsi_host_put +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75ce05c0 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d31444 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e60613 key_put +EXPORT_SYMBOL vmlinux 0x75eed666 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x75f69b6d rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76341087 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x763e4b40 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765843fa ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766110ef proc_symlink +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7689a11d vfs_llseek +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a84257 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x76bf1f99 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x76cfaf05 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x770f28f4 of_dev_get +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77359398 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7735e869 input_free_device +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7744e119 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7776cbfd meson_sm_call_read +EXPORT_SYMBOL vmlinux 0x77790e8b jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a55319 param_set_ushort +EXPORT_SYMBOL vmlinux 0x77b40f23 mdiobus_free +EXPORT_SYMBOL vmlinux 0x77b472d1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d966af tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f8d750 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x77f9c9e8 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7809ef92 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7823942d block_write_end +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x785543d0 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78ab82bb fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x78ac6e84 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x78b899ab mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e7e8c6 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x78f57932 phy_attached_info +EXPORT_SYMBOL vmlinux 0x790fc7e5 km_state_expired +EXPORT_SYMBOL vmlinux 0x79149562 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x792aa5c0 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x792e5683 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x793167c7 dput +EXPORT_SYMBOL vmlinux 0x793aa8cb inet_add_protocol +EXPORT_SYMBOL vmlinux 0x794baee1 tty_name +EXPORT_SYMBOL vmlinux 0x7965f7ad vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x796629e5 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x79665d3d of_root +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798ee897 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x799a6af5 phy_device_create +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a79bf4 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x79c815ca __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x79df8a89 task_work_add +EXPORT_SYMBOL vmlinux 0x79fb9634 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1b2218 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2b9b6d phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7a39e650 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4f1dcf mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7a6ea081 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a99eb68 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac609e7 update_devfreq +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae36357 current_in_userns +EXPORT_SYMBOL vmlinux 0x7af06b68 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x7af4d689 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b19fac1 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7b1a687c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x7b4d291d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8f2c57 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x7b914df2 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x7b93a192 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbabb92 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc048e7 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7bdec7de simple_fill_super +EXPORT_SYMBOL vmlinux 0x7bfddd21 sas_port_delete_phy +EXPORT_SYMBOL vmlinux 0x7c03ed87 param_ops_bint +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1f60d3 inet6_offloads +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c482ef1 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7c4de46b netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7c81fb82 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x7c8620c9 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7c8c309b xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7c91636c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7c94653e pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9d1c09 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7cb163b8 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc10ce4 request_key_rcu +EXPORT_SYMBOL vmlinux 0x7ccb679b kill_pgrp +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce5c359 may_umount_tree +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 0x7d1030a1 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d14db33 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7d3bbe6b simple_readpage +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d61de05 padata_stop +EXPORT_SYMBOL vmlinux 0x7d746c9d netlink_set_err +EXPORT_SYMBOL vmlinux 0x7d76496c genphy_resume +EXPORT_SYMBOL vmlinux 0x7d803ae6 serio_reconnect +EXPORT_SYMBOL vmlinux 0x7d91e961 find_get_entry +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db693ad mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x7db90b7f thaw_bdev +EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfb3e8b inet_frags_fini +EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7e199074 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7e244b01 md_reload_sb +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e399323 input_get_keycode +EXPORT_SYMBOL vmlinux 0x7e523ba5 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7e650b9f __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7e67cd1d devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7e68c3c2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7e7487dc jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7e8c8fc3 bdi_register +EXPORT_SYMBOL vmlinux 0x7eac4510 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x7ebc87f6 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock +EXPORT_SYMBOL vmlinux 0x7ecd723a generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x7ee1e87e scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7ef87191 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f3653c4 pci_clear_master +EXPORT_SYMBOL vmlinux 0x7f3d793d dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5f0d94 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7f619921 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7f6e005a devm_request_resource +EXPORT_SYMBOL vmlinux 0x7f752935 _dev_notice +EXPORT_SYMBOL vmlinux 0x7f77dc55 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x7f79e4c5 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x7f7c354b dev_addr_init +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9c0862 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7fa95a6f pm_vt_switch_required +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 0x7ffb8f47 sas_rphy_free +EXPORT_SYMBOL vmlinux 0x8003024e __ip_dev_find +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x8010f8df xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x801e9944 generic_file_open +EXPORT_SYMBOL vmlinux 0x80386bce skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x805a4e0d kobject_put +EXPORT_SYMBOL vmlinux 0x805da007 nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x806169e9 rpmsg_register_device +EXPORT_SYMBOL vmlinux 0x80731cee ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x807bfe06 fqdir_exit +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809f65e4 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x80a02852 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x80a09dcd dquot_disable +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80b2d3d8 fman_reset_mac +EXPORT_SYMBOL vmlinux 0x80b8b233 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x80bd008b devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x80c7ddef dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80da06b7 input_open_device +EXPORT_SYMBOL vmlinux 0x80f580f5 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x80f80ab0 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x810b79ba sas_port_add_phy +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x811fc73e inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x812e2800 phy_print_status +EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit +EXPORT_SYMBOL vmlinux 0x81393afe compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x815143f9 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815603e6 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x815f9550 set_bh_page +EXPORT_SYMBOL vmlinux 0x816977ad alloc_fddidev +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81900f81 get_fs_type +EXPORT_SYMBOL vmlinux 0x819c828d inode_init_owner +EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dca544 proto_unregister +EXPORT_SYMBOL vmlinux 0x81e29efd simple_dir_operations +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fc9b39 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820ea653 fman_get_revision +EXPORT_SYMBOL vmlinux 0x8222bb25 kobject_del +EXPORT_SYMBOL vmlinux 0x822b4342 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8240a37c pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x82536b65 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x827fbd5a pps_event +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups +EXPORT_SYMBOL vmlinux 0x82989369 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x82a86e01 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x82b6bc44 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cf9711 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x82ec2fa1 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x82efe5ef ip_getsockopt +EXPORT_SYMBOL vmlinux 0x82f0a386 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x82f36010 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x82f66122 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x82fdaca7 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x83035bb3 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x8333acbc iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x83390715 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0x8354c73e dquot_free_inode +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8366657e tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x836dd9d9 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837c0f49 block_read_full_page +EXPORT_SYMBOL vmlinux 0x83863c1b path_get +EXPORT_SYMBOL vmlinux 0x838bdaf6 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83998e72 param_get_ulong +EXPORT_SYMBOL vmlinux 0x839c9330 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x83a8b2e4 fput +EXPORT_SYMBOL vmlinux 0x83c28561 device_add_disk +EXPORT_SYMBOL vmlinux 0x83d00869 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x83ef608f dma_cache_sync +EXPORT_SYMBOL vmlinux 0x83f62ea1 __bread_gfp +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x842b1123 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x8456ae6b serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x846a72a6 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x848977d1 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x848f0e8f devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x84af7a59 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84ed4518 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x84fbebce sock_no_connect +EXPORT_SYMBOL vmlinux 0x8500462b invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x8505df61 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x850f6269 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x85134bb4 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x85287a32 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x855c9344 config_item_set_name +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8581a617 dev_load +EXPORT_SYMBOL vmlinux 0x85889029 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b73d1b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85dedf95 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e8ce9c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f00640 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x85f52f2a of_find_property +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x8606cd34 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x8613030f vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x862689fe kdb_current_task +EXPORT_SYMBOL vmlinux 0x863a0899 cont_write_begin +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x866068c2 brioctl_set +EXPORT_SYMBOL vmlinux 0x86678225 pci_request_irq +EXPORT_SYMBOL vmlinux 0x866926bf arp_xmit +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8693730c set_user_nice +EXPORT_SYMBOL vmlinux 0x86b26b47 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x86b55d41 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x86c18a2b pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x86ec5095 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x86f0a961 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x86f9b332 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x8723b5ce input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x872ff08d __neigh_event_send +EXPORT_SYMBOL vmlinux 0x8747965c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x87599f43 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8784774c fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x87919856 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x87b14143 mr_dump +EXPORT_SYMBOL vmlinux 0x87b74da8 param_ops_long +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c5df5e arch_hibernation_header_save +EXPORT_SYMBOL vmlinux 0x87cd81ff sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x87d0a49c pps_unregister_source +EXPORT_SYMBOL vmlinux 0x87d83da6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x87e2b804 seq_write +EXPORT_SYMBOL vmlinux 0x87f5aeb8 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x87f70790 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x88010a77 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x8806b2df seq_open +EXPORT_SYMBOL vmlinux 0x88145a60 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x881d6489 proto_register +EXPORT_SYMBOL vmlinux 0x88406a6e __lock_page +EXPORT_SYMBOL vmlinux 0x8859fd78 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x885b14c7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x88664335 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8873b5ed filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888e896 serio_open +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x8890817a fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x88923f0d inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x88a80c14 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b31804 netlink_ack +EXPORT_SYMBOL vmlinux 0x88d7b265 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x8913e188 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x8919f36b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8928ea9a __lock_buffer +EXPORT_SYMBOL vmlinux 0x893c6d5e pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x893e25c2 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x89470db1 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x894ed320 override_creds +EXPORT_SYMBOL vmlinux 0x89575bc7 dquot_resume +EXPORT_SYMBOL vmlinux 0x8960ae19 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8965db33 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x89685fd8 sk_wait_data +EXPORT_SYMBOL vmlinux 0x8980c413 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c37c6f setattr_prepare +EXPORT_SYMBOL vmlinux 0x89cad680 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x89e714a8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x89f9215d rpmsg_sendto +EXPORT_SYMBOL vmlinux 0x8a1641ee from_kprojid +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a2aa15a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4b50df user_revoke +EXPORT_SYMBOL vmlinux 0x8a536bcd gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x8a648f70 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7bf4b9 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a94324f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa1404b ihold +EXPORT_SYMBOL vmlinux 0x8aa5118e param_ops_charp +EXPORT_SYMBOL vmlinux 0x8aa9de15 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad2d306 __close_fd +EXPORT_SYMBOL vmlinux 0x8ae17b1d generic_ro_fops +EXPORT_SYMBOL vmlinux 0x8ae3e27d kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0dd288 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8b0f3bda tty_throttle +EXPORT_SYMBOL vmlinux 0x8b216f51 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x8b2588a5 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b3fe5b8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x8b4d6ceb nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b62e680 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8b661000 phy_connect +EXPORT_SYMBOL vmlinux 0x8b75864d d_instantiate +EXPORT_SYMBOL vmlinux 0x8b76673a phy_drivers_register +EXPORT_SYMBOL vmlinux 0x8b775b4c __icmp_send +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95c0d1 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bab9573 dget_parent +EXPORT_SYMBOL vmlinux 0x8bc36cc5 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x8bce1d62 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x8be78bc7 tty_hangup +EXPORT_SYMBOL vmlinux 0x8c0fb63d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8c1dd70a rpmsg_destroy_ept +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c4dc547 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x8c5d34ea seq_dentry +EXPORT_SYMBOL vmlinux 0x8c7550f5 dquot_initialize +EXPORT_SYMBOL vmlinux 0x8c8a2087 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x8c988dfb inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8c9acb7f dev_uc_init +EXPORT_SYMBOL vmlinux 0x8c9c3dba udp_gro_complete +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caa5c71 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x8cad6fb0 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8cae433f register_qdisc +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cbbc9ea security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x8cd37714 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x8cebe81a finish_open +EXPORT_SYMBOL vmlinux 0x8d225239 filemap_fault +EXPORT_SYMBOL vmlinux 0x8d289fde jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x8d36419c d_make_root +EXPORT_SYMBOL vmlinux 0x8d3be7f7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8d48c90d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5c6e68 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8d714742 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d876508 elv_rb_add +EXPORT_SYMBOL vmlinux 0x8d96b814 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8d9acede blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8defcd4a pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e00754a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e2a1e2c tso_start +EXPORT_SYMBOL vmlinux 0x8e405643 mdio_device_create +EXPORT_SYMBOL vmlinux 0x8e5b7194 inet6_release +EXPORT_SYMBOL vmlinux 0x8e612a65 key_move +EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds +EXPORT_SYMBOL vmlinux 0x8e71362a flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x8e7b1bce ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x8e87bccc flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x8e9f86a9 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x8eb5f8f7 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x8ed48c3d tty_lock +EXPORT_SYMBOL vmlinux 0x8ee2c7d2 md_error +EXPORT_SYMBOL vmlinux 0x8ef86f8b dquot_enable +EXPORT_SYMBOL vmlinux 0x8ef992ab keyring_search +EXPORT_SYMBOL vmlinux 0x8f028ac7 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0x8f0f4feb xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x8f1a33da param_ops_ullong +EXPORT_SYMBOL vmlinux 0x8f2d9123 skb_find_text +EXPORT_SYMBOL vmlinux 0x8f3cd5b3 ce_aes_setkey +EXPORT_SYMBOL vmlinux 0x8f63ae80 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f7f95af sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa1111a kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fac3e5d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8fb1c069 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fc4b51c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8fc8ff42 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x900f7abd napi_disable +EXPORT_SYMBOL vmlinux 0x90167766 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9030ce8d fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9048317a kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x90487a90 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x904ca1ca vm_map_pages +EXPORT_SYMBOL vmlinux 0x90568375 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90641694 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x90851ca4 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x908fea44 geni_se_init +EXPORT_SYMBOL vmlinux 0x90a6fcab d_obtain_alias +EXPORT_SYMBOL vmlinux 0x90ba4eac page_readlink +EXPORT_SYMBOL vmlinux 0x90beaad9 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x90ca2af9 sk_dst_check +EXPORT_SYMBOL vmlinux 0x90d1088c end_page_writeback +EXPORT_SYMBOL vmlinux 0x90da156e unregister_qdisc +EXPORT_SYMBOL vmlinux 0x90e038b1 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x90e8f3d3 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x911bc2b7 sas_end_device_alloc +EXPORT_SYMBOL vmlinux 0x911d28e2 seq_open_private +EXPORT_SYMBOL vmlinux 0x9120ff6c blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x9129d992 component_match_add_release +EXPORT_SYMBOL vmlinux 0x912a40e2 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x9131f41c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x9161ef75 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x918e3afe of_device_register +EXPORT_SYMBOL vmlinux 0x9197ed69 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a34e9f d_lookup +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b0eba3 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x91cebc7e sget +EXPORT_SYMBOL vmlinux 0x91e1ac83 put_fs_context +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9201f304 vme_lm_request +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923eb722 sas_port_add +EXPORT_SYMBOL vmlinux 0x9246a0b4 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x924716f9 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x924d3d51 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9268b40e configfs_register_group +EXPORT_SYMBOL vmlinux 0x92754fa9 fc_host_post_event +EXPORT_SYMBOL vmlinux 0x92803e41 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0x928f8c5a geni_se_rx_dma_unprep +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9294b49e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x929c3f9c devm_clk_get +EXPORT_SYMBOL vmlinux 0x929e277c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x92ab88dd migrate_page +EXPORT_SYMBOL vmlinux 0x92b951ec kern_path +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c1f084 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x92e8db1d tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930f823b alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x931e27df qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x931ed962 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x932b8778 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x93478132 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x934c2c6b genlmsg_put +EXPORT_SYMBOL vmlinux 0x934f8abf md_update_sb +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937f91f8 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x937fcc6e vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a813bd xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x93b2b6ca compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bb660b acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x93c56c85 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x93d07e27 ip_options_compile +EXPORT_SYMBOL vmlinux 0x93fbf5da sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x940ca8c6 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x9421f294 __put_user_ns +EXPORT_SYMBOL vmlinux 0x94272937 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9428fc29 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9458f0cc block_commit_write +EXPORT_SYMBOL vmlinux 0x9464c450 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x946d8802 dev_driver_string +EXPORT_SYMBOL vmlinux 0x946dfe9c __register_chrdev +EXPORT_SYMBOL vmlinux 0x946eae3b request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x9471e855 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x948101d6 module_refcount +EXPORT_SYMBOL vmlinux 0x948f6544 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949d1643 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x949ef59d remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x94ba9243 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x94bad415 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c0ea3f of_translate_address +EXPORT_SYMBOL vmlinux 0x94c866f1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x94d02f73 dev_set_group +EXPORT_SYMBOL vmlinux 0x94d1c238 pcim_iomap +EXPORT_SYMBOL vmlinux 0x94d3f885 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x94e1dcb4 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x94ede76f wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x94fb5376 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x94ff18fd address_space_init_once +EXPORT_SYMBOL vmlinux 0x950fc8cf devm_release_resource +EXPORT_SYMBOL vmlinux 0x95387a51 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x953ce725 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955c4ec1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x957b506d nobh_writepage +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95a943e1 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x95c66edd datagram_poll +EXPORT_SYMBOL vmlinux 0x95d07cfc xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95e9e853 path_put +EXPORT_SYMBOL vmlinux 0x95ee3d0a _dev_err +EXPORT_SYMBOL vmlinux 0x95f68979 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x95f92f00 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x96147883 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x96191beb unregister_console +EXPORT_SYMBOL vmlinux 0x96322db1 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x964b10f0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x965d4913 d_invalidate +EXPORT_SYMBOL vmlinux 0x965f00c6 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x9660b4a5 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x9669e38a pci_disable_msi +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x968ea6e7 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x969c0c48 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x969d475b forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x96a893c3 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c2fc22 sock_wfree +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cf315f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97019758 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x97036fa9 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x97175ee3 kobject_set_name +EXPORT_SYMBOL vmlinux 0x971c9ee0 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97422d43 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x97459d9c udp_ioctl +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974f09f4 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x975efe84 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init +EXPORT_SYMBOL vmlinux 0x978254d3 fs_parse +EXPORT_SYMBOL vmlinux 0x978b5df5 dev_open +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97960479 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b73e8b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97cef40f __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x97d103a1 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x981be892 set_security_override +EXPORT_SYMBOL vmlinux 0x9828f63f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x9829f891 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98310290 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x98327b53 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x984de6fe of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x986f109c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x9877bff7 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x98983928 d_genocide +EXPORT_SYMBOL vmlinux 0x989ae373 tty_port_open +EXPORT_SYMBOL vmlinux 0x98be103c xfrm_register_km +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e10690 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e5f84f devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x98e69d1c sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x98f2d99b __module_get +EXPORT_SYMBOL vmlinux 0x98f86675 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x9909fa48 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x9912a9d0 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993d9351 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x994f9a57 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x994fce39 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x996efc49 phy_read_paged +EXPORT_SYMBOL vmlinux 0x99703582 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL vmlinux 0x997e08db phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99aa7936 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x99b76056 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x99cd264f nd_btt_version +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99de7a38 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x99e61127 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x99f73900 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x99fd506f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0f9645 genphy_update_link +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a49ca1a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6bd857 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x9a71b34a vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x9a732e01 devm_ioremap +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a812a74 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x9a8541d3 get_gendisk +EXPORT_SYMBOL vmlinux 0x9a89869d register_md_personality +EXPORT_SYMBOL vmlinux 0x9aa06eca xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac8435f phy_suspend +EXPORT_SYMBOL vmlinux 0x9ad989af netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9ae64438 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9ae7afeb blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x9aeb5595 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b290c50 amba_release_regions +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b35baba sock_create_lite +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b4c44f6 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9b5598ff write_inode_now +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b73cfc1 mdiobus_write +EXPORT_SYMBOL vmlinux 0x9b851303 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9b86a7b4 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x9b9116d0 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9ba08ae6 dma_pool_create +EXPORT_SYMBOL vmlinux 0x9bab8952 sk_alloc +EXPORT_SYMBOL vmlinux 0x9bb15dcd netlink_broadcast +EXPORT_SYMBOL vmlinux 0x9bbad297 skb_trim +EXPORT_SYMBOL vmlinux 0x9bcb126d blk_execute_rq +EXPORT_SYMBOL vmlinux 0x9bf766c5 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x9bff931c sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x9c042aae __skb_get_hash +EXPORT_SYMBOL vmlinux 0x9c05cb13 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c19b0b7 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke +EXPORT_SYMBOL vmlinux 0x9c253769 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x9c57cd25 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x9c57efb0 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x9c6a0c7b vme_slot_num +EXPORT_SYMBOL vmlinux 0x9c6c8062 phy_device_remove +EXPORT_SYMBOL vmlinux 0x9c793abb set_cached_acl +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c98bef3 phy_loopback +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb30059 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x9cb88d87 sas_rphy_unlink +EXPORT_SYMBOL vmlinux 0x9cbd90e6 fc_block_rport +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce7a695 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f672c compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d3e3f64 of_node_get +EXPORT_SYMBOL vmlinux 0x9d4125b8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9d5616fd xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d7d9bf0 lock_rename +EXPORT_SYMBOL vmlinux 0x9d86034a ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9e196c pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dd7f9f8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9deb5919 ll_rw_block +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 0x9e179cfa phy_write_paged +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e430e59 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x9e48e289 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e7d1579 dquot_alloc +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eaabf65 md_write_start +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec339fa poll_freewait +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9eca35d2 seq_release +EXPORT_SYMBOL vmlinux 0x9ed5f6e7 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eea3cd4 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x9f0153e7 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x9f0b9a1a cdev_init +EXPORT_SYMBOL vmlinux 0x9f29b93e ww_mutex_lock_interruptible +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 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f930719 tcf_classify +EXPORT_SYMBOL vmlinux 0x9f970da9 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe5dd5b textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9fef7606 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x9ff70419 vfs_setpos +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00e50b6 dst_init +EXPORT_SYMBOL vmlinux 0xa021703c __udp_disconnect +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02b9bcc __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa02c06d5 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xa099931b buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa0a28483 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xa0a508a2 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b03dee fc_mount +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d79db3 bio_advance +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dee93d __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1300218 devm_memunmap +EXPORT_SYMBOL vmlinux 0xa1416491 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xa1565110 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xa159d197 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xa182d229 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa1848414 sock_no_listen +EXPORT_SYMBOL vmlinux 0xa1881626 dst_release +EXPORT_SYMBOL vmlinux 0xa1a5b12f eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xa1b52ad7 sync_blockdev +EXPORT_SYMBOL vmlinux 0xa1b53f81 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c896cc xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1dff606 _dev_emerg +EXPORT_SYMBOL vmlinux 0xa1e11a37 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2286110 padata_free +EXPORT_SYMBOL vmlinux 0xa22a565d path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23a9227 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xa246326c free_buffer_head +EXPORT_SYMBOL vmlinux 0xa24a515c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa26204d9 dev_addr_add +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2665e62 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xa27e92d2 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa28a8429 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2a207b3 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xa2d28058 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xa2d65eba of_iomap +EXPORT_SYMBOL vmlinux 0xa2f64136 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa303e107 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xa30addf2 ipv4_specific +EXPORT_SYMBOL vmlinux 0xa30f9487 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0xa3377d74 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xa35813b7 kill_pid +EXPORT_SYMBOL vmlinux 0xa3623ef0 padata_free_shell +EXPORT_SYMBOL vmlinux 0xa3636e7d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xa3688ce6 to_ndd +EXPORT_SYMBOL vmlinux 0xa398506e dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa39a5354 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xa3a24a18 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xa3a29050 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa3a6d7ff dev_get_flags +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d4da37 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa3e30759 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xa4096fd3 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa416ca8b clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa4242017 dev_close +EXPORT_SYMBOL vmlinux 0xa4314b26 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa451e8e5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xa45e8f36 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xa45f9849 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xa479a328 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xa47ebfbf ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xa48a2b43 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa50ec155 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xa526d9f2 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xa52a93e1 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa52b925e bd_set_size +EXPORT_SYMBOL vmlinux 0xa5493550 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa57ace9d pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xa5835ccc sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa58b30c2 __brelse +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5a1df93 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5ccd5c2 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa6060f66 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xa60f16da of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xa6125a14 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6224c0c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xa66cfda7 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xa67b39f9 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa68d3114 cdrom_open +EXPORT_SYMBOL vmlinux 0xa6a79426 get_super +EXPORT_SYMBOL vmlinux 0xa6b07c8e super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xa6ba69e7 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa6f77a2e xgene_mdio_rgmii_read +EXPORT_SYMBOL vmlinux 0xa6ff3550 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa70d2988 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xa715b444 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa727717b register_netdev +EXPORT_SYMBOL vmlinux 0xa73945a1 give_up_console +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa751befc phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xa752e596 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xa75f7bf4 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xa76d58b2 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7849dd0 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xa788fa4f sas_remove_host +EXPORT_SYMBOL vmlinux 0xa7890c73 mntput +EXPORT_SYMBOL vmlinux 0xa78bba4b backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa793c741 simple_write_end +EXPORT_SYMBOL vmlinux 0xa7a1f156 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xa7c028a0 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xa7cc110f sas_port_get_phy +EXPORT_SYMBOL vmlinux 0xa7d0dbe9 __f_setown +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fff9b2 bio_free_pages +EXPORT_SYMBOL vmlinux 0xa80831ff write_one_page +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84841d7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa853d82c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa881d353 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xa897894b __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b035cf tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xa8bcbf51 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa8c05b24 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa8c132d5 fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8dc49f0 mpage_writepages +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa902ab86 rpmh_write +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90d2980 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa918f95f xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa956f714 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xa95ca4f3 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa977da3e default_llseek +EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xa9945a90 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99e25ed acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa99e48e7 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa9a15dc8 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xa9acf20a reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa9c82559 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xa9c8b65c key_unlink +EXPORT_SYMBOL vmlinux 0xa9d1c186 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa9d82adb read_code +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa2360f5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xaa2a69b7 d_add +EXPORT_SYMBOL vmlinux 0xaa2cfbb1 inet_shutdown +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3d905f meson_sm_call +EXPORT_SYMBOL vmlinux 0xaa473b56 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xaa480e19 nf_log_trace +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7c125c fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xaa80802b inet_sendpage +EXPORT_SYMBOL vmlinux 0xaa89c452 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xaaa44076 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad332dc page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae5a2cd account_page_redirty +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0dc8fc PageMovable +EXPORT_SYMBOL vmlinux 0xab186c3e md_flush_request +EXPORT_SYMBOL vmlinux 0xab2786e9 scsi_print_command +EXPORT_SYMBOL vmlinux 0xab2eaa93 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xab30dfea rpmsg_find_device +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ccdad pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xab48030e _dev_warn +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab691ba7 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab941311 sock_register +EXPORT_SYMBOL vmlinux 0xaba12a4c __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xaba3b5b5 ps2_init +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabc02402 rtc_add_group +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabd108a4 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xabd3e0ff crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xabd644b1 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xabe42003 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabfbb4c4 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xac103bc2 import_iovec +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1c9541 xattr_full_name +EXPORT_SYMBOL vmlinux 0xac243045 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xac2f2ac5 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac33f7ab scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xac3c8c7d pci_remove_bus +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6ee563 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xac76a25d acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacabf974 __kfree_skb +EXPORT_SYMBOL vmlinux 0xacbfc543 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xacc1ff0d qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd8f4ae devm_ioport_map +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad10e2f6 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xad1bd35a inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xad1e834c dquot_quota_on +EXPORT_SYMBOL vmlinux 0xad31fb1d skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xad3719aa fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad3f2d5d qdisc_put +EXPORT_SYMBOL vmlinux 0xad55af8e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xad575c57 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xad6460b2 fb_class +EXPORT_SYMBOL vmlinux 0xad6a6990 scsi_host_get +EXPORT_SYMBOL vmlinux 0xad6abb83 rtnl_notify +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad8085e1 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad89e523 file_open_root +EXPORT_SYMBOL vmlinux 0xad8c6ede inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xad8ff494 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xad95091b md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xad98973a vfs_whiteout +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +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 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd6c87f xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xade1a730 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xade67ebc shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xade7b2b2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xadeaf79e truncate_pagecache +EXPORT_SYMBOL vmlinux 0xadedb241 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xadf8f823 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae22b824 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae453cf1 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae65d6e9 user_path_create +EXPORT_SYMBOL vmlinux 0xae742bb5 qman_enqueue +EXPORT_SYMBOL vmlinux 0xae7c64d8 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaebec026 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xaec3a615 param_ops_uint +EXPORT_SYMBOL vmlinux 0xaecc7bec ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xaecd5938 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xaed8a377 register_framebuffer +EXPORT_SYMBOL vmlinux 0xaee10c7a pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xaee559bc skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xaf125d41 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xaf142e87 netdev_notice +EXPORT_SYMBOL vmlinux 0xaf1fe763 md_register_thread +EXPORT_SYMBOL vmlinux 0xaf323765 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf507de1 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0xaf52ccfd get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xaf5d797d phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xaf5de3d3 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xaf642bd3 hnae3_unregister_ae_dev +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf9564a7 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xafab3010 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xafb89aa7 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xafc100d9 bio_devname +EXPORT_SYMBOL vmlinux 0xafd4a26e rpmsg_send_offchannel +EXPORT_SYMBOL vmlinux 0xafdadf8a writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xafdda422 kernel_listen +EXPORT_SYMBOL vmlinux 0xaff9e84c tcp_close +EXPORT_SYMBOL vmlinux 0xb00bc7b2 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xb0112942 seq_putc +EXPORT_SYMBOL vmlinux 0xb013717c dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xb015e285 dquot_operations +EXPORT_SYMBOL vmlinux 0xb0194961 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01e2a32 fc_vport_terminate +EXPORT_SYMBOL vmlinux 0xb01e7985 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb02597a2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb045794b devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xb05942cc generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb079c8e6 devm_free_irq +EXPORT_SYMBOL vmlinux 0xb08c2eb4 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb08d2db8 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xb08ea4ac qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0bba439 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb0c30813 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0cd56a7 inet6_getname +EXPORT_SYMBOL vmlinux 0xb0d6799e filp_close +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ebc4c5 netif_device_attach +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb10df8be neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11d33dd cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1423de9 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb156fe97 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb1599f7d dm_register_target +EXPORT_SYMBOL vmlinux 0xb15a4a36 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xb15c361b iov_iter_discard +EXPORT_SYMBOL vmlinux 0xb15e39c7 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb16b7323 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xb17146f1 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xb17f3919 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb19dca8f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf7592 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1df60a1 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1e8aa88 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb2040bbc inet_accept +EXPORT_SYMBOL vmlinux 0xb2131dd3 qcom_smd_register_edge +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb257f079 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xb25cc0fd __pagevec_release +EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c2d04a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xb2c4dd72 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb2d89d80 phy_start +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f2da34 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30bb22c pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xb319c06f security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xb31bb401 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32f52eb phy_detach +EXPORT_SYMBOL vmlinux 0xb34c1ce6 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb360440d vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb37e5b5b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb384ca2e cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0xb38d0e04 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb390d463 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xb3a1c4f1 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xb3b93fe1 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xb3bc4650 kobject_get +EXPORT_SYMBOL vmlinux 0xb3ce2e03 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xb3cf2d1e page_get_link +EXPORT_SYMBOL vmlinux 0xb3cf8ccf neigh_table_init +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d6dfcb __put_page +EXPORT_SYMBOL vmlinux 0xb3eec0ae proc_create_data +EXPORT_SYMBOL vmlinux 0xb3eef662 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb403dd76 __break_lease +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb4063607 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb414473f napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb41878d7 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb455924d sha256_block_data_order +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb465f3e8 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb4697e80 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xb47ca7c4 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4cc8e05 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xb4ce3547 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xb4dfcf7e pci_map_rom +EXPORT_SYMBOL vmlinux 0xb4f03351 netdev_printk +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f8156c param_get_short +EXPORT_SYMBOL vmlinux 0xb50302d1 sas_port_mark_backlink +EXPORT_SYMBOL vmlinux 0xb508f613 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xb5246562 tty_port_close +EXPORT_SYMBOL vmlinux 0xb524ab54 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xb52de97a misc_register +EXPORT_SYMBOL vmlinux 0xb531707c vme_init_bridge +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54529fa rpmsg_trysend +EXPORT_SYMBOL vmlinux 0xb54932b2 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xb566286e kernel_connect +EXPORT_SYMBOL vmlinux 0xb569e701 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57c3329 simple_rename +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb590e852 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xb59c1288 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ac45e9 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xb5b2cdd9 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb5bd7337 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xb5c826cc security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb5dc4409 unix_get_socket +EXPORT_SYMBOL vmlinux 0xb5e288c5 locks_init_lock +EXPORT_SYMBOL vmlinux 0xb5e3e3ab vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xb5e636b2 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e9318f dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xb5f067cd fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0xb605b2c8 inet_getname +EXPORT_SYMBOL vmlinux 0xb612fa58 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb644773c elv_rb_del +EXPORT_SYMBOL vmlinux 0xb64995e2 dump_skip +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb676cd0b qman_create_fq +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c92887 proc_set_user +EXPORT_SYMBOL vmlinux 0xb6ccab8d configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fe6826 xfrm_input +EXPORT_SYMBOL vmlinux 0xb7074b5a udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xb71287d4 lookup_one_len +EXPORT_SYMBOL vmlinux 0xb7209cce vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0xb722f30f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73da2a1 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb740af85 fb_find_mode +EXPORT_SYMBOL vmlinux 0xb753c06d phy_resume +EXPORT_SYMBOL vmlinux 0xb7746ef2 pci_find_resource +EXPORT_SYMBOL vmlinux 0xb77bf031 mdiobus_read +EXPORT_SYMBOL vmlinux 0xb7864a78 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb78938b9 sas_get_address +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78fbf5f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xb792284d blk_get_request +EXPORT_SYMBOL vmlinux 0xb79ca41e udp_prot +EXPORT_SYMBOL vmlinux 0xb7b08373 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d6e0c6 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xb7df9ec0 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xb8053283 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xb80920c9 mmput_async +EXPORT_SYMBOL vmlinux 0xb8205232 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb820819a skb_ext_add +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb835318e kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb84a3a2e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb8538aa7 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb86da2de cdrom_release +EXPORT_SYMBOL vmlinux 0xb86f5f11 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xb870dfbb md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb87584c8 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb89005d9 textsearch_register +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e43f2 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xb8a619f5 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b3c9a0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb8b842c0 get_acl +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c543a7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb8d27926 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xb8f1fe81 vfs_unlink +EXPORT_SYMBOL vmlinux 0xb90509e4 register_console +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9147bb4 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb9321723 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb958bb26 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb96d61be inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb96e56b4 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xb9723aba of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xb97549f4 geni_se_get_qup_hw_version +EXPORT_SYMBOL vmlinux 0xb97d9a36 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb9804ab2 simple_get_link +EXPORT_SYMBOL vmlinux 0xb9a34775 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b1b99a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb9c181f9 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xb9d0612c ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xb9d3990e pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xb9dded98 init_special_inode +EXPORT_SYMBOL vmlinux 0xb9e34505 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xb9e5eb04 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ec32f0 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb9fdc192 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba196721 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xba1f2056 dev_add_pack +EXPORT_SYMBOL vmlinux 0xba29bba8 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xba2da6a0 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xba2fd03a dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xba398a9b neigh_seq_next +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba8e7e24 sock_i_uid +EXPORT_SYMBOL vmlinux 0xba95b726 serio_rescan +EXPORT_SYMBOL vmlinux 0xbaa05e79 vmap +EXPORT_SYMBOL vmlinux 0xbaa72435 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xbaac9268 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbad40555 rpmsg_create_ept +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb09a2df crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb45f729 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbb49e826 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb6303b6 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb6df333 fc_release_transport +EXPORT_SYMBOL vmlinux 0xbb749d74 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xbb76f6e3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xbb91f480 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xbb97e5eb vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xbb9c3818 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xbbaa5c1f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xbbe3e251 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbec43ac flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xbc0e22b4 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc29699a csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xbc2affdb netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xbc4da468 put_tty_driver +EXPORT_SYMBOL vmlinux 0xbc50c7b2 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xbc6568c6 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xbc729b82 md_write_end +EXPORT_SYMBOL vmlinux 0xbc735341 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xbc844bb6 discard_new_inode +EXPORT_SYMBOL vmlinux 0xbca0b973 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xbca9e5c3 bio_reset +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb41d48 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xbcb81e41 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xbcbbae71 kthread_stop +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcdc9e67 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbcf4025f dev_change_flags +EXPORT_SYMBOL vmlinux 0xbcf53da7 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xbcffe239 nf_log_packet +EXPORT_SYMBOL vmlinux 0xbd32385a fsync_bdev +EXPORT_SYMBOL vmlinux 0xbd3ad08f d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xbd3c7a12 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xbd458cb3 invalidate_partition +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd549cc4 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xbd55574a sock_wake_async +EXPORT_SYMBOL vmlinux 0xbd5a60bc fget_raw +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd759aa0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xbda37e96 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbdbd7c44 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xbdc7de2b bio_init +EXPORT_SYMBOL vmlinux 0xbdcbc5ae sg_miter_next +EXPORT_SYMBOL vmlinux 0xbde7bce9 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xbe015075 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xbe09b675 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xbe0cba5e udp6_csum_init +EXPORT_SYMBOL vmlinux 0xbe13269d register_shrinker +EXPORT_SYMBOL vmlinux 0xbe17c496 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xbe1c8ca3 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xbe3983c1 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xbe46be30 __find_get_block +EXPORT_SYMBOL vmlinux 0xbe48b81a input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5bd6bc security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6706fc dma_resv_init +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe814cb2 set_device_ro +EXPORT_SYMBOL vmlinux 0xbea42753 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xbea8c9d5 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xbeaf931c migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbeecfa6b __sb_start_write +EXPORT_SYMBOL vmlinux 0xbef0ccc0 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf1fa9cb con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xbf21ac78 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xbf285c57 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xbf311b7e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbf3cc008 passthru_features_check +EXPORT_SYMBOL vmlinux 0xbf71ca20 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xbf74be73 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbf91187a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfc13ba6 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xbfc50e8b dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff13b69 mpage_writepage +EXPORT_SYMBOL vmlinux 0xc0140b37 nd_device_notify +EXPORT_SYMBOL vmlinux 0xc018d9c9 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc04e7067 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc057c6b6 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc0664b30 pci_choose_state +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc083261b input_unregister_device +EXPORT_SYMBOL vmlinux 0xc08d9334 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc097edb6 inet6_protos +EXPORT_SYMBOL vmlinux 0xc09b7c17 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c6554f phy_driver_register +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc128f97b devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xc12c0fdb inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc13050d7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc135d227 __register_nls +EXPORT_SYMBOL vmlinux 0xc13e147e xgene_mdio_rgmii_write +EXPORT_SYMBOL vmlinux 0xc1419a16 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc1636336 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16eeba4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xc17873bb fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xc1b79d56 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1ef0dfa tty_set_operations +EXPORT_SYMBOL vmlinux 0xc1fc98ed page_mapping +EXPORT_SYMBOL vmlinux 0xc2033561 dma_supported +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc210b097 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xc228129e revert_creds +EXPORT_SYMBOL vmlinux 0xc22a26fc phy_init_eee +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc231d05f is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xc2328717 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc23403e9 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc2419e1e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xc2523df4 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xc2630051 of_clk_get +EXPORT_SYMBOL vmlinux 0xc2645907 simple_link +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc27024d1 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xc28ba66e put_disk +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2c53364 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xc2d4a37c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xc2e17c15 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ed8847 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xc2eef094 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xc2f361fd tcp_init_sock +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc31582f5 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3456432 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xc34e35dd devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc352a8bc linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc3856e69 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc392ac10 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc3ac6861 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0xc3af6f4d axp20x_device_probe +EXPORT_SYMBOL vmlinux 0xc3aff4dc blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc3b30a3c phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xc3b31685 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3e5cc3a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xc3fda9de _dev_alert +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc40131c9 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xc4185e4e of_get_property +EXPORT_SYMBOL vmlinux 0xc41894ca filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4282b4e __devm_request_region +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc461266a simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48ef0b3 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xc4922ccc kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc49f1135 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc4adfb76 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4ba7eec devm_clk_put +EXPORT_SYMBOL vmlinux 0xc4c95b01 fasync_helper +EXPORT_SYMBOL vmlinux 0xc4ccef03 dpaa2_io_get_cpu +EXPORT_SYMBOL vmlinux 0xc50486cd pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xc515a0ff dquot_quota_off +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc53c75fb netdev_update_features +EXPORT_SYMBOL vmlinux 0xc53f9bb5 security_sk_clone +EXPORT_SYMBOL vmlinux 0xc556c1e5 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xc565f7bd sock_init_data +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56ab174 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc5857ddd ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc58a91ad xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59db85a vme_bus_num +EXPORT_SYMBOL vmlinux 0xc59fc03d sync_filesystem +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5ba6278 sync_file_create +EXPORT_SYMBOL vmlinux 0xc5c70287 pci_release_resource +EXPORT_SYMBOL vmlinux 0xc5c7d636 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc5c91a65 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xc5dc5294 init_net +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f4d97c skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6267c91 bio_copy_data +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc660e171 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc680e3f0 scsi_print_result +EXPORT_SYMBOL vmlinux 0xc68a4fd4 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc6a4d093 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc700c80f skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70c5e79 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xc71c3c36 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7405698 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xc741ebba unix_detach_fds +EXPORT_SYMBOL vmlinux 0xc749574d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xc75336d8 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc786f51e iget5_locked +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7afbe33 xgene_enet_phy_register +EXPORT_SYMBOL vmlinux 0xc7b8e81c of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc804557c devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xc8069a24 ps2_drain +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc82bf722 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc82dcb90 pci_dev_get +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc83c1a82 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xc844cce0 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8554424 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xc8640ba0 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xc867e008 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xc86fb33a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8991e59 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc89a4085 xgene_mdio_rd_mac +EXPORT_SYMBOL vmlinux 0xc8a2a2c3 simple_empty +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8bdf43c dma_dummy_ops +EXPORT_SYMBOL vmlinux 0xc8de4d14 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc8e532a7 fs_bio_set +EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xc8fad364 filp_open +EXPORT_SYMBOL vmlinux 0xc90e69ea audit_log +EXPORT_SYMBOL vmlinux 0xc9141a84 d_obtain_root +EXPORT_SYMBOL vmlinux 0xc91d4587 input_setup_polling +EXPORT_SYMBOL vmlinux 0xc9233bbe flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xc923fe16 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc960b452 backlight_force_update +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965b36b block_write_full_page +EXPORT_SYMBOL vmlinux 0xc96de5c4 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc974ece8 hns_dsaf_roce_reset +EXPORT_SYMBOL vmlinux 0xc975598b of_match_node +EXPORT_SYMBOL vmlinux 0xc979e5b4 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98fb1f2 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc9957204 __arch_copy_in_user +EXPORT_SYMBOL vmlinux 0xc9aefe47 pipe_unlock +EXPORT_SYMBOL vmlinux 0xc9ca29bd uart_match_port +EXPORT_SYMBOL vmlinux 0xc9ca5398 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xca0a36f7 hnae3_unregister_client +EXPORT_SYMBOL vmlinux 0xca0e95e3 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca226830 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xca290727 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xca2c8c9d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca435f12 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xca47d251 tcp_req_err +EXPORT_SYMBOL vmlinux 0xca64634b of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca79d71c of_match_device +EXPORT_SYMBOL vmlinux 0xca7abf34 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xca8e5141 __check_sticky +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca997b79 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcac453f7 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcac79208 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaeac942 pci_set_master +EXPORT_SYMBOL vmlinux 0xcaec0da8 __page_symlink +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafd5eb0 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb408a92 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xcb47b7c5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xcb64c846 ilookup5 +EXPORT_SYMBOL vmlinux 0xcb655349 dns_query +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7b82bb inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xcb7ca734 freeze_super +EXPORT_SYMBOL vmlinux 0xcb90b604 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xcba02466 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xcba1a595 vga_get +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbaf5c4a bd_finish_claiming +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc38812 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd5b4a8 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc08dca6 migrate_page_states +EXPORT_SYMBOL vmlinux 0xcc0f096f of_dev_put +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2b8d87 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc358b4d vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xcc39ce61 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc667119 install_exec_creds +EXPORT_SYMBOL vmlinux 0xcc6a952c amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xcc787f9e icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xcc7af9c4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xcc8b5803 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xcc8fee60 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xcca43370 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xccb3f778 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcccaa354 set_page_dirty +EXPORT_SYMBOL vmlinux 0xcccc3e90 is_bad_inode +EXPORT_SYMBOL vmlinux 0xcccc4657 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xcccd7193 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd158254 dma_set_mask +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd287dd3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xcd3b5445 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xcd41e0c1 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xcd43d547 kill_fasync +EXPORT_SYMBOL vmlinux 0xcd601c26 gro_cells_init +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcdbeefd7 read_dev_sector +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcfd9ac compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xcddf45c2 __vmalloc +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf0efb8 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xce15f035 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xce1c0a49 edac_mc_find +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce34131a cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xce34d2bc flush_dcache_page +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 0xce637b18 rpmsg_poll +EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xce73204a security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xcea76428 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced145f7 of_find_backlight +EXPORT_SYMBOL vmlinux 0xcee77bf9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xceec93be to_nfit_uuid +EXPORT_SYMBOL vmlinux 0xcef1e15e fb_pan_display +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefd496e console_start +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf105629 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf1d386c fqdir_init +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2a6993 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xcf3a4bae pci_iomap +EXPORT_SYMBOL vmlinux 0xcf49869b iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf7253ea noop_qdisc +EXPORT_SYMBOL vmlinux 0xcf783e34 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xcf78f65c file_path +EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcf89c266 ata_link_printk +EXPORT_SYMBOL vmlinux 0xcf8b11fe netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xcfa4bac5 drop_super +EXPORT_SYMBOL vmlinux 0xcfd84108 stream_open +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe50ff9 inet_addr_type +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xcffc0c12 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xcfff52c1 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xcfff807b bdi_register_va +EXPORT_SYMBOL vmlinux 0xd003e775 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd0082ab2 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xd00bfe05 __serio_register_port +EXPORT_SYMBOL vmlinux 0xd00e58cd _dev_crit +EXPORT_SYMBOL vmlinux 0xd01eb392 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xd030690c iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0xd03eba03 param_get_byte +EXPORT_SYMBOL vmlinux 0xd042270b amba_find_device +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd085220d __scm_destroy +EXPORT_SYMBOL vmlinux 0xd09ac2f6 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ada62e search_binary_handler +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0c722b4 vfs_link +EXPORT_SYMBOL vmlinux 0xd0d7fe71 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd0eabb3b mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd0f34232 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fcea2b clear_wb_congested +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0ff3d85 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xd11267b6 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xd1245c63 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd1318966 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xd134391a __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13ea80b of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xd14f064b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd15ce4ff pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd15ff397 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xd16461b8 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xd1682271 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1c58673 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd1d0b8d7 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dc8486 dquot_destroy +EXPORT_SYMBOL vmlinux 0xd1e4e452 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd1ecd970 skb_store_bits +EXPORT_SYMBOL vmlinux 0xd1f935b3 single_open +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2098b83 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xd21cf854 of_get_parent +EXPORT_SYMBOL vmlinux 0xd221742a __inet_hash +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd237c605 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xd2516d60 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd27415ca ppp_dev_name +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd288cc2d mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xd2a2f878 km_new_mapping +EXPORT_SYMBOL vmlinux 0xd2cfdca3 dst_alloc +EXPORT_SYMBOL vmlinux 0xd2d8fc21 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea4242 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f462e8 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xd2f846f4 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd3055218 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3264636 page_mapped +EXPORT_SYMBOL vmlinux 0xd3436630 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xd34f0264 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd354c9b0 sock_efree +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 0xd36f1a9d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd3798b08 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xd37a5336 kill_block_super +EXPORT_SYMBOL vmlinux 0xd39592cf genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xd39a63b0 hmm_range_unregister +EXPORT_SYMBOL vmlinux 0xd3a6a5b2 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd3bc626a xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd3c0e546 __invalidate_device +EXPORT_SYMBOL vmlinux 0xd3e4c1a5 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f266bc dquot_drop +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd42606bc fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4649d1d pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd46aedca security_sb_remount +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48e8e77 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c50977 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xd4c77181 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4eaf511 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5224e2e mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd529acd1 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd538c96b of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xd556d2ab posix_lock_file +EXPORT_SYMBOL vmlinux 0xd56f908b netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd5862f9f param_get_charp +EXPORT_SYMBOL vmlinux 0xd58dc77a udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xd5a0231d flush_signals +EXPORT_SYMBOL vmlinux 0xd5b09c9a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xd5b193ca dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xd5b1d618 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5e0c6ab vfs_rename +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60bfa98 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd610a44a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd6403393 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64697a7 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xd64fdf36 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xd6699b33 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6704c57 touch_buffer +EXPORT_SYMBOL vmlinux 0xd67ab641 kset_register +EXPORT_SYMBOL vmlinux 0xd67da465 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6a25340 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xd6a61ed5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd6a9b8df writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xd6b0d37c of_device_alloc +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fbaa7c bio_integrity_prep +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 0xd724baa0 udp_poll +EXPORT_SYMBOL vmlinux 0xd7380bab mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73fdc04 file_update_time +EXPORT_SYMBOL vmlinux 0xd74831b5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd76d7566 generic_writepages +EXPORT_SYMBOL vmlinux 0xd7722c5c __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd77e0c94 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xd7abb261 dump_align +EXPORT_SYMBOL vmlinux 0xd7b05234 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xd7b5e875 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d7fb88 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f5450e dm_table_get_md +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd8715ad8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xd8784cc2 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xd89542a5 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89fc909 scsi_device_put +EXPORT_SYMBOL vmlinux 0xd8a5cba5 netdev_change_features +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b9539d cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xd8ba7dbe register_filesystem +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd9021389 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xd919a483 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd928c187 notify_change +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9537ff4 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xd96b9f06 set_blocksize +EXPORT_SYMBOL vmlinux 0xd980aaa1 netlink_capable +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd991291f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd991fb09 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd99f9931 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c1d5d3 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd9c890dd scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd9c8dec8 iproc_pcie_setup +EXPORT_SYMBOL vmlinux 0xd9cdbc09 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xd9d44876 fb_set_var +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd9f46c04 mdio_device_free +EXPORT_SYMBOL vmlinux 0xd9f8f560 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xda153c58 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xda26651b inet_select_addr +EXPORT_SYMBOL vmlinux 0xda2c2243 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0xda2cdbb3 get_vm_area +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3e8ff9 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xda4efb24 mntget +EXPORT_SYMBOL vmlinux 0xda5219ff pskb_extract +EXPORT_SYMBOL vmlinux 0xda62d520 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7638cf sk_common_release +EXPORT_SYMBOL vmlinux 0xda79932a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaaff1a2 follow_up +EXPORT_SYMBOL vmlinux 0xdab01b60 eth_type_trans +EXPORT_SYMBOL vmlinux 0xdab14035 param_ops_bool +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad72efd inet_add_offload +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf0a990 ata_print_version +EXPORT_SYMBOL vmlinux 0xdafaadaf ip6_xmit +EXPORT_SYMBOL vmlinux 0xdb21b1e9 hnae3_register_ae_algo +EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate +EXPORT_SYMBOL vmlinux 0xdb3c3f6e seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0xdb4af4cc locks_copy_lock +EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb75f2a4 md_done_sync +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81feb0 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xdbab8771 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xdbb0276e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdbbe77df vfs_statfs +EXPORT_SYMBOL vmlinux 0xdbc946d7 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbfcdca4 param_set_charp +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc27807f xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xdc2bedd2 unlock_buffer +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57002d fman_bind +EXPORT_SYMBOL vmlinux 0xdc69116d of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xdc7ebd02 nf_reinject +EXPORT_SYMBOL vmlinux 0xdc85f56d uart_register_driver +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcaf1fba __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcdbe8b3 generic_permission +EXPORT_SYMBOL vmlinux 0xdce2638c get_super_thawed +EXPORT_SYMBOL vmlinux 0xdceaf61a poll_initwait +EXPORT_SYMBOL vmlinux 0xdd007c10 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd27cc7f clear_nlink +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd34ac23 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd48fea8 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xdd5af756 geni_se_resources_off +EXPORT_SYMBOL vmlinux 0xdd6058ed tty_port_destroy +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6d55c5 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xdd6ec0f4 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd82ee05 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8ef815 ip_defrag +EXPORT_SYMBOL vmlinux 0xdd9e2946 freeze_bdev +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddb0399d eth_header_parse +EXPORT_SYMBOL vmlinux 0xddb754d7 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xddbf13d6 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xddccba03 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xddeaf203 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xddeb6733 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xddf5fb20 mount_subtree +EXPORT_SYMBOL vmlinux 0xde02e763 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xde0dbe7a param_ops_int +EXPORT_SYMBOL vmlinux 0xde1c8e38 param_get_uint +EXPORT_SYMBOL vmlinux 0xde232708 sas_attach_transport +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2d72b5 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xde40f088 d_delete +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4f40bd is_nd_btt +EXPORT_SYMBOL vmlinux 0xde5119d6 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xde5dd078 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xde7682fc pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xdeab5ad2 netif_skb_features +EXPORT_SYMBOL vmlinux 0xdeaef9f6 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xdebb066a netif_receive_skb +EXPORT_SYMBOL vmlinux 0xdec3cc20 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xdec53a45 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xdedc2beb gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xdee13b97 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf04e48a eth_validate_addr +EXPORT_SYMBOL vmlinux 0xdf14557b xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3ad89e dentry_path_raw +EXPORT_SYMBOL vmlinux 0xdf44fb8d fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0xdf4693e0 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf59ba20 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xdf5cc58b key_type_keyring +EXPORT_SYMBOL vmlinux 0xdf5d04c2 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xdf684791 bd_start_claiming +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa7b8f9 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable +EXPORT_SYMBOL vmlinux 0xdfb5ac3d devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xdfcabc55 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff424f4 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03c0a70 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xe0468b8b complete_request_key +EXPORT_SYMBOL vmlinux 0xe056a2b5 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe07290c8 nf_log_register +EXPORT_SYMBOL vmlinux 0xe0782bb2 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe09b8104 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0aa4602 __skb_checksum +EXPORT_SYMBOL vmlinux 0xe0aae759 dcache_readdir +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c60039 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xe0d1a7b1 f_setown +EXPORT_SYMBOL vmlinux 0xe0dd5f27 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable +EXPORT_SYMBOL vmlinux 0xe0e59029 mdio_device_register +EXPORT_SYMBOL vmlinux 0xe0e67bc1 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xe11183ab of_get_mac_address +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1180b1b pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xe1195e04 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe11f019f vfs_fadvise +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1247feb dcb_setapp +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe159e16c bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xe1683009 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xe187a2e9 get_user_pages +EXPORT_SYMBOL vmlinux 0xe19061c0 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xe1950dde tty_port_close_end +EXPORT_SYMBOL vmlinux 0xe1a0b709 input_match_device_id +EXPORT_SYMBOL vmlinux 0xe1a5d6e8 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xe1a91d5c of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xe1b99e54 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xe1d7d541 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xe1da0dbb dquot_commit +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1e9437a pnp_device_attach +EXPORT_SYMBOL vmlinux 0xe201c93a pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe20d3993 first_ec +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22a34a0 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xe2331b47 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xe247d893 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe25454d3 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe25ac54a jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xe2686873 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe2729780 param_get_long +EXPORT_SYMBOL vmlinux 0xe2756717 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xe288ca53 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xe292d797 d_move +EXPORT_SYMBOL vmlinux 0xe29c5e73 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xe2c8d779 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe2ca9303 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d4d03f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e034db get_phy_device +EXPORT_SYMBOL vmlinux 0xe2e0c7c6 __flush_icache_range +EXPORT_SYMBOL vmlinux 0xe2fcceff jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe3060896 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3447623 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xe34bd3e0 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe36707c6 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe379a7db xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe37e5649 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe39227bd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe3a0b448 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aee957 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe3c4f554 scsi_is_sas_port +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe4204e6c __sock_create +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe4756170 km_query +EXPORT_SYMBOL vmlinux 0xe4b014f7 kernel_read +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4d19ef0 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe5049b63 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe54d6e01 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe56aa5a9 get_tree_single +EXPORT_SYMBOL vmlinux 0xe56d05be bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xe578576a vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a188b0 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c029f2 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xe5c48bbc blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cf452d __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe5d01d8f jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xe5e22360 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xe5ed8f2b iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe63147d4 dev_mc_add +EXPORT_SYMBOL vmlinux 0xe638139a qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xe645b459 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xe6474682 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe653cf75 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe65a7901 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xe661661e kthread_blkcg +EXPORT_SYMBOL vmlinux 0xe6622c55 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xe67164c3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe68f3b6e tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6b09979 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xe6bd997b phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xe6c2a0ce blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xe6f79232 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe6f7a140 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xe714f70f simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe715bc6e fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72a6d45 param_get_ushort +EXPORT_SYMBOL vmlinux 0xe72f56ac ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe7323b95 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe737e289 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe73fca9b fget +EXPORT_SYMBOL vmlinux 0xe75b84e9 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe77cb817 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xe7893d58 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xe79200db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xe792a804 hnae3_unregister_ae_algo +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7cee9af xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ea1d99 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe82442d1 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe82a43b2 config_item_put +EXPORT_SYMBOL vmlinux 0xe8324362 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0xe83e0184 fd_install +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86639ac register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe87ca099 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xe883a617 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xe8a4bcb9 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xe8d72e9c tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xe8e1d3af bmap +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909c2bb sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91b621a release_pages +EXPORT_SYMBOL vmlinux 0xe91bcfd9 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe93d04df input_event +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95647f0 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe95ca077 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe96488a9 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xe97b0933 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0xe98348b3 redraw_screen +EXPORT_SYMBOL vmlinux 0xe9853baf iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe988f1f0 node_data +EXPORT_SYMBOL vmlinux 0xe9931500 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9c75505 vga_tryget +EXPORT_SYMBOL vmlinux 0xe9d37c4c rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9faf98e eth_header +EXPORT_SYMBOL vmlinux 0xea0889c7 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xea0d755e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xea11812d vme_master_mmap +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea2064cb __register_rpmsg_driver +EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable +EXPORT_SYMBOL vmlinux 0xea34c307 bdput +EXPORT_SYMBOL vmlinux 0xea3b55ad xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea466c5c xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xea488e7e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xea611fa8 genphy_loopback +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea88eb4c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xeaa8406e del_gendisk +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeabe18f4 phy_device_register +EXPORT_SYMBOL vmlinux 0xeac48fd3 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xeacc13ac mark_page_accessed +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeadc9cf7 should_remove_suid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae826f8 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xeaebf25d cdev_add +EXPORT_SYMBOL vmlinux 0xeaec801a of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb371d16 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4c2a5f __seq_open_private +EXPORT_SYMBOL vmlinux 0xeb76f9f7 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8499cd ip6_frag_init +EXPORT_SYMBOL vmlinux 0xeb91774e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xeb953f55 deactivate_super +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebaa6bfc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xebb0666c of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xebd106f9 dqget +EXPORT_SYMBOL vmlinux 0xebd18ace dcb_getapp +EXPORT_SYMBOL vmlinux 0xebd23227 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xebde713d mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebedffa3 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xebfe4cbd logfc +EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xec1ce1e1 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xec1f3123 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec392643 processors +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec72993a remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xec88b089 vm_mmap +EXPORT_SYMBOL vmlinux 0xec8c5a9e security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xecabfe80 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xecad1c88 vc_cons +EXPORT_SYMBOL vmlinux 0xecb61777 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xecd69ac4 phy_attach +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf3de45 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xecf56e60 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed055640 genphy_suspend +EXPORT_SYMBOL vmlinux 0xed204452 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xed283ed2 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xed2b8538 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed697728 sget_fc +EXPORT_SYMBOL vmlinux 0xed714164 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xed85ce01 hnae_reinit_handle +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed9fdfa5 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xeda98cad ip_setsockopt +EXPORT_SYMBOL vmlinux 0xedb167de pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xedb9aead __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table +EXPORT_SYMBOL vmlinux 0xee166638 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xee1dd2e4 try_module_get +EXPORT_SYMBOL vmlinux 0xee21ba79 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3cdcdb pci_pme_capable +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6cfbc4 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xee728eaa fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8e3487 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee91acbc blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xeee3af9f fc_attach_transport +EXPORT_SYMBOL vmlinux 0xeee9581e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xeef0f099 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xeef13641 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL vmlinux 0xef229b9e skb_copy_expand +EXPORT_SYMBOL vmlinux 0xef3239e9 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xef634c54 sas_expander_alloc +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef910de1 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xef93159e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xefab297e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb7f015 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xefc68910 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xefcbdb0d phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefdd1b46 bioset_init +EXPORT_SYMBOL vmlinux 0xefea84f8 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xefebb1de jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf014e3c6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08f5054 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09eb395 arch_hibernation_header_restore +EXPORT_SYMBOL vmlinux 0xf0ad51fc scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0d2cc4f hmm_mirror_register +EXPORT_SYMBOL vmlinux 0xf0f7db8c kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf102f693 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0xf12a936e padata_do_parallel +EXPORT_SYMBOL vmlinux 0xf138f276 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xf157e4a8 scsi_device_get +EXPORT_SYMBOL vmlinux 0xf15d63f3 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf160ea4c bioset_exit +EXPORT_SYMBOL vmlinux 0xf17bfae5 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf185f664 udp_seq_next +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1967954 dqput +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf199b01e inet_listen +EXPORT_SYMBOL vmlinux 0xf1b2520b dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xf1d86285 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e52096 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xf1e5fbcc inet6_bind +EXPORT_SYMBOL vmlinux 0xf1e70840 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf209401c netpoll_setup +EXPORT_SYMBOL vmlinux 0xf20c86d9 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf22999ed acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xf22a8d83 profile_pc +EXPORT_SYMBOL vmlinux 0xf22d12f1 d_alloc +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xf251e574 set_binfmt +EXPORT_SYMBOL vmlinux 0xf2537b18 mpage_readpages +EXPORT_SYMBOL vmlinux 0xf2542cc7 sync_inode +EXPORT_SYMBOL vmlinux 0xf25d53a4 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf268c5ae dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xf26f9c38 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xf2791573 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28483cb bdgrab +EXPORT_SYMBOL vmlinux 0xf28d09e9 blk_get_queue +EXPORT_SYMBOL vmlinux 0xf293a427 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a87e91 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f70c25 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xf30010cc vfs_rmdir +EXPORT_SYMBOL vmlinux 0xf305a313 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf31326ec __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3214570 iov_iter_init +EXPORT_SYMBOL vmlinux 0xf32c345e compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a591 param_set_int +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36553db padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf36b5416 genl_register_family +EXPORT_SYMBOL vmlinux 0xf38894cd vfs_mknod +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3918522 qman_retire_fq +EXPORT_SYMBOL vmlinux 0xf393e43a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3bf7845 keyring_alloc +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40455c3 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf441c78e invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf4529f64 simple_release_fs +EXPORT_SYMBOL vmlinux 0xf46de948 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xf4742b8e blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf477104b tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xf4a2f297 inet_del_offload +EXPORT_SYMBOL vmlinux 0xf4a48782 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xf4a8925a of_platform_device_create +EXPORT_SYMBOL vmlinux 0xf4a9e0c8 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b600a5 mount_bdev +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bc3db4 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c2ac17 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xf4cee06c put_disk_and_module +EXPORT_SYMBOL vmlinux 0xf4cf10cf security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xf4d85c1b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xf4d96deb sas_rphy_add +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e5a6be mpage_readpage +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf504c59e vm_insert_page +EXPORT_SYMBOL vmlinux 0xf506db55 neigh_xmit +EXPORT_SYMBOL vmlinux 0xf51ae61a __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf52c5e9d mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf533c251 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54766b7 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xf553b6cf param_set_bint +EXPORT_SYMBOL vmlinux 0xf558a738 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf588c244 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5b96395 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5e9aa7c adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf6132474 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xf6143faf bdget_disk +EXPORT_SYMBOL vmlinux 0xf638d5de fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf643dbec netif_napi_add +EXPORT_SYMBOL vmlinux 0xf6471e0b dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xf652fd93 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xf65aeb16 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xf6621524 input_reset_device +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf668c35b eth_get_headlen +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf695d849 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf6aaa8d7 sas_phy_free +EXPORT_SYMBOL vmlinux 0xf6bff4bc get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0xf6e5b453 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xf6e75a7c ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7137e03 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xf71d1464 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xf7300613 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73bddf4 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xf75662df param_array_ops +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf787b9a7 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf7956cfc flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xf7b55555 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xf7cb156b __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf80a24a8 simple_statfs +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8134c71 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf830c537 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84d79bc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf85f8ec1 dquot_acquire +EXPORT_SYMBOL vmlinux 0xf873c450 load_nls_default +EXPORT_SYMBOL vmlinux 0xf8764d9f dma_resv_fini +EXPORT_SYMBOL vmlinux 0xf87fb5a1 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf8806580 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf894fa56 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf8a3a6d3 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xf8b6d578 tcp_check_req +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fb8597 rio_query_mport +EXPORT_SYMBOL vmlinux 0xf9011d35 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf907a1f2 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf91e1953 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93f1396 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf946276e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xf9488469 get_tz_trend +EXPORT_SYMBOL vmlinux 0xf958895a ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf978ebca netif_device_detach +EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf98071a4 mr_table_dump +EXPORT_SYMBOL vmlinux 0xf9957211 ppp_input_error +EXPORT_SYMBOL vmlinux 0xf99af929 sas_rphy_remove +EXPORT_SYMBOL vmlinux 0xf99b18b0 tty_check_change +EXPORT_SYMBOL vmlinux 0xf99f8d06 seq_release_private +EXPORT_SYMBOL vmlinux 0xf9a15f1c blk_put_request +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a9213b vlan_for_each +EXPORT_SYMBOL vmlinux 0xf9b5e08e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9f4f029 param_ops_string +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa1fa4d5 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xfa207397 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xfa24eb51 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2dcc55 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa45a77d skb_put +EXPORT_SYMBOL vmlinux 0xfa4fe6d2 con_is_visible +EXPORT_SYMBOL vmlinux 0xfa50f44a init_pseudo +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5b6c6d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xfa748c7c dm_io +EXPORT_SYMBOL vmlinux 0xfa796f78 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa97d054 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xfac0b20d hnae_get_handle +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaf78b30 dst_discard_out +EXPORT_SYMBOL vmlinux 0xfb001b7d is_subdir +EXPORT_SYMBOL vmlinux 0xfb0af272 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xfb1bd626 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xfb2b543b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xfb2bdf6a ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4e0626 softnet_data +EXPORT_SYMBOL vmlinux 0xfb573c4b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xfb5ef69e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xfb676286 skb_append +EXPORT_SYMBOL vmlinux 0xfb6a0ab8 sas_prep_resume_ha +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable +EXPORT_SYMBOL vmlinux 0xfb787eea sas_port_alloc_num +EXPORT_SYMBOL vmlinux 0xfb7ecaeb pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xfb95ab7e udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xfb9de3df netif_napi_del +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 0xfbdfea9c cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc00ec9e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfc0e3127 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xfc2587ff dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc887a2c blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type +EXPORT_SYMBOL vmlinux 0xfc902d28 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xfc96e514 fb_get_mode +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc498bf io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xfcc93ed2 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xfcce923e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf29bdf dump_truncate +EXPORT_SYMBOL vmlinux 0xfd0937df scsi_is_sas_rphy +EXPORT_SYMBOL vmlinux 0xfd0c9445 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xfd456633 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xfd5b9d70 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xfd5cda9f phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xfd637cbb generic_setlease +EXPORT_SYMBOL vmlinux 0xfd654c5a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xfd7e5526 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfd86fdfc tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xfd89fcb3 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xfd90a0d3 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xfd94814e complete_all +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdaa3918 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xfdad7285 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb1e7ad path_has_submounts +EXPORT_SYMBOL vmlinux 0xfdbb7001 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd8850d devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xfde4b954 tty_register_device +EXPORT_SYMBOL vmlinux 0xfe01aef8 padata_do_serial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0ff641 prepare_binprm +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe29c98d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfe3403e5 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe56d0fd pid_task +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe60b309 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xfe6654d7 serio_bus +EXPORT_SYMBOL vmlinux 0xfe665576 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xfe671969 pci_release_regions +EXPORT_SYMBOL vmlinux 0xfe6784e1 file_modified +EXPORT_SYMBOL vmlinux 0xfe8eb70a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9bb342 pci_bus_type +EXPORT_SYMBOL vmlinux 0xfe9c3ed7 dev_get_stats +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec4a4a5 tty_write_room +EXPORT_SYMBOL vmlinux 0xfec76e33 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee85e39 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef0cfc7 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfef211d5 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xfef43b0e __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1378a5 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0xff1753b6 setattr_copy +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff32e8e3 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xff4972e9 pci_find_bus +EXPORT_SYMBOL vmlinux 0xff4eeccf dec_node_page_state +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff716716 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xff7727d6 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xff7a40ef scsi_init_io +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8fe4c9 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffd15389 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xffdcdd1b netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xffddad67 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xffec587b neigh_seq_start +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff215a9 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xfff548d2 __scsi_device_lookup_by_target +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c9ce85a af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x255751ef af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e5370c4 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4557dd9f af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x47ca79bf af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x594c44af af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7c19329c af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x84e9eb50 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9149044f af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xa34fee22 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9e1fdd2 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc9a9f43 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4bfa907 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xd4ac28bb af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xda25620e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xdde6f981 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xebc2912d af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xed1ceb1b af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x339fe780 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfae4ba56 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x20a1e9a2 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3fc46f68 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0ac7778e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x43873cce async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f72f492 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd4b945b4 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe82359d5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf8a91a6a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x955e5edc async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x976776f2 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x3fba0de7 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x8619afae cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x685c61b4 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x3d0d1b89 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x757abe4a crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xa3272eb8 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd4857d57 crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x005db504 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x029ff7fc crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04afbacf crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e1cd518 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x33dc1aa7 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ad6fffa crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5a978830 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x746253ac crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fc6857b crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb4a6d73a crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc3c65cb7 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc8342240 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc9d13fa crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe672915c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x86f6a65c crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x9390b4be crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xa114d093 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x83de7e50 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x008d83c2 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x8faf1905 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xec1eaca3 crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xf102b9c0 twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x54800cc0 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x071130f5 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x5caec7c5 __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x053fe3cf bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ba8119b bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fb70f09 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x13ee51ee bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1783b96c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2398099c bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24c52854 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25903886 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28b45c37 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37c55f30 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x577e069f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x66096b74 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68519080 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a5b35ca bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b6b2469 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ceca213 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaeadfbab bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb21548f4 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd6b6d5d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe0f0d84 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd451c00b bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcef1cb0 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf102693a bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf28c4459 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2539753e devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3827ae35 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x38f38275 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x40c112d6 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5b8e2f3a counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x62aaf604 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6cbd57c1 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x77fdeea3 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7c150578 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7ebc1632 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x95bde77e counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa6cc6789 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb1a21f8a counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +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 0x9eebe2f6 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x322972d2 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3caa6661 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x44f40b72 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x45e3d118 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x49e16d45 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x523d5854 hisi_qm_get_hw_version +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6683f9da hisi_qm_set_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6736735e hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x741403e4 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x75686f65 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x773aa1e0 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x77421646 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7977c260 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x797c9c4f hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x92fab47e hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc1575780 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc67fa733 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcc4945e7 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd4e22017 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe457ba47 hisi_qm_hw_error_handle +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb5886fc hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf8ed87b3 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xadbba62e dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xd978d97d dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0747f23d idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x289e1d6e idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3c663d50 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x62becdd1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x755db0c2 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8be94b41 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd87ade53 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x027ac0ef fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x05b1a5b6 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x11953dbb fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x14c91dcc fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x305368be of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x32081c03 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37b99889 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a5bc2b9 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7bbd4b5e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d3bf474 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb1806961 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdc6367d8 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xedf1cb52 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x03522dbb gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4bb48279 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4e411326 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x60d04a9f gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf968c8f9 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4e52ea74 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xac62ecec __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3bdb6e6c analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4e5870f6 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5b630d4c analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5cc4097f analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7234b17b analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbd4e1120 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc8bd5d5d analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc9bfd2b2 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1d4f017c dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf62bf288 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 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 0x4cc4fb94 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x7d45cd69 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x130fc109 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x154dc4b7 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25febab3 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2cedf907 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3125caa6 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3cb9e968 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4098e589 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47d0d5e0 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ce5dd49 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4cf2a009 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x538673fc drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c6610fa drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f0a8c75 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84b9e64b drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x90f863c3 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x962238bc drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96637920 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7e944ae drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa814df91 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab36d5cf drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab42b603 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae42cf79 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0fbd694 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc160821 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6ee8ba2 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcfee6d69 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb716269 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeecca6ca drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf27dfdb2 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x09dee3e9 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x182e4e12 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x47ddf69f drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c7c8835 drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x998cb8cb drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9d61a503 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb19f9e0f drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2f0c6a2d meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x88f3ab64 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x98e4ad4e meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xbf3cbbe5 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x04e483ce rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fe72523 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xbaf48744 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x31b3c3e0 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x145d668d ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa037d1c4 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd17ca1b2 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x054ae05b hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0585f5ef hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c3f58fc hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c755f24 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e130795 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16dab316 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1811b13f hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19e3a760 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1af44bb9 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2147d041 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x242ae689 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c493fef hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b93713d hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fa01af3 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x539d7f4a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x541ed8f5 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5769224d hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5add374a hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c49bc92 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x643bba78 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x676e2256 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b844aa8 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c245833 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x856aaaed hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x907392e8 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9262d16c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93b818c9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96f1b3bb hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c70a1f7 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e8fbe19 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa972536a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad0d8116 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafa1dcb3 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb881837a hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd0a08d9 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe1739a3 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb74e08e __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce2e5f88 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd607df45 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbb14b75 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe170c9b1 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1848f12 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8c753ec hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6648086 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x094bbccd sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x108a9cef sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1c417264 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x30974505 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33c0e552 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x517eb203 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6cd3089d sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9067d563 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe4e12198 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xc133e2e2 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x75e9d315 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8674dc26 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb39d82fd adt7x10_remove +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4a9f0ce7 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4b6dd995 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x89d3fbf8 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0ce1b436 i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x16369ea3 i2c_of_match_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x18ff154d i2c_slave_register +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1b640a1e i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x223cb5e0 i2c_slave_unregister +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x29cfc5c6 i2c_new_probed_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2ae142e9 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2b845619 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3e21d039 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4ebc1c82 i2c_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x512aa6f6 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x555f4314 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5e39d0fa i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x60806523 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x61d9977a i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7638d73f i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x80433389 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8138dcfe i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x91a601ec devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x93f1f9a6 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa48afdce i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa4e5ac9e i2c_new_dummy +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa7ab7974 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa9b05d53 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb0f19226 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb792bc5d i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc7ca6323 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcb2f6644 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd085c740 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd865b6b5 of_i2c_get_board_info +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf10ef743 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf4317e51 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x331d01a6 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x42e12649 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc9c002a0 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf2508d7e i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa353d8db i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0821e163 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e06469e i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x37313bfa i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d0da16c dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3fc0a579 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x43791462 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d0c79c9 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4fa21c83 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x512861b6 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5392d3c2 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53965ef8 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x574ec977 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x63c06a7e i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a8d389f i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73a13614 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x75453ae5 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7e3440f0 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x95ba5155 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9754f147 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae3d3c8e i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb35d885b i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9f9843b i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc6c16313 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4ef5518 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4b2b8bc i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x847d1e25 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3775f7e5 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x363fceef of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x376ba68b icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x5781d113 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x61fea443 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6746c62e icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x81b5f4d1 icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xada267b0 icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xb4e0b95f of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd435574d icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xff602f9c icc_provider_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0a8f21d6 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x338ba0ba ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6a91c1f5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70e4b416 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7cd4831c ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fba799d ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb920e975 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbe720d79 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc6409d15 ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x14c42116 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x17c38db3 led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x688dbb7b led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xd32ef61b devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xe7aae6be led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xec6d234e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xee0d8f2f led_classdev_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/mcb/mcb 0x0659b092 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0a207a5e mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2c9f85cc chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2e6f0343 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x61a4e0ff mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x663faeb9 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6772e1b5 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7b1d8933 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x85e229c2 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb6e88f31 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xddc44e1b mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7d74882 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe82e0357 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfeb7ebe4 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08b04656 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08e9f5fc dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0ca68634 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1428b602 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 0x5c51fb1c dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62d09585 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 0x69bfea3c dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x73addb02 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7509d536 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7e3071bd dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x86118e6c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8856a5d8 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x95bfdc0b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac448ca6 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd15d57b9 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfad3d548 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfd193aa0 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3dbe45c1 dm_bufio_client_create +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-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 0xa6c8df21 dm_cache_policy_unregister +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 0xe9cff29a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x193e4dd5 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbb1067e1 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 0x15038147 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5be8563a dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7151ab22 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xb21bebc9 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 0xcbdecc2c 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 0xde6c7f86 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 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb744242a dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d72129b rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18660316 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b6ab28f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27c104f5 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d29c1ef rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x425be598 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f5f75f0 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a5b3d9f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ccb3f07 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x779f2fc2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7966f4ea ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97b65184 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc7fa3fea rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf206eab ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd974d5e8 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb3030f2 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeca1fd03 ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf05977e4 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1d5f2d75 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4b217c71 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x52c413b3 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1fccefb3 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa9654140 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xff14da9d lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0932ab41 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09412861 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x094cf421 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c4d4f5a cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a74356d cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a79e92d cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x80b79fa1 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x80ba43e1 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x86c00d97 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d916894 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d9cb4d4 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa107369 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa1daf29 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaba2272c cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xad18565d cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2c504d9 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2c8d899 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc38282ad cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc38f5eed cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc7a37f96 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd5c06f2b madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdea47598 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdea9a9d8 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9256e65 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe928b225 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1f019d5 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1fdc595 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf39ba346 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6ad5a7c8 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x92ea6cf8 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa6e7f6db mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe65dbdfb mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf4524893 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfd67f0b6 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c9d6f7f pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x51b746cb pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6daa06fa pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87eb72dc pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a713088 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x93fc74b2 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9cdd480d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab75d733 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd394253d pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd7727c98 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xedb0776a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0797a86d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x30bf6291 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x65c32c68 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x72f0e5ac pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8051353c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x82ea0a3b pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa6b4bf52 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x23f4fcce sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x36fd3901 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6f5cdd72 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb439b2de sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe9bceac9 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5888e993 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8298bec7 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa23009c7 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbf2d910b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0675c164 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x4586affe tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x83d05141 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe37c8b75 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1ecd49c9 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2dfd0df3 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x39d102f3 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3b1285aa alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x42015577 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x431c5361 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xda6ac075 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x14a0c080 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x166a505a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27381abe rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2aa7cc72 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ead4719 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3bda4082 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48083241 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d96843b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4db5d348 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51ef1267 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x587470cc rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59e2158b rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x71961693 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8657c3be rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x992bd237 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaaff8fe1 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb0614611 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb63bc2b8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb6532950 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc55b1d19 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe1857b49 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe608ae6f rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf376dac4 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa310747 rtsx_pci_card_pull_ctl_enable +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 0x18a5b9ed enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec9a4e3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x25b7a33b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a59da6b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2c654819 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5950881a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x68157c0d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa7d42857 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xad17ef77 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb424e2ec arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x28a30c82 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2c9b2bda register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x39003351 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x46fa1e14 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc535da4a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xce7e7e20 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cf52fb3 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x171e0232 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x215f0274 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x257b0dfa of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2bd59e5a can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x41549822 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45d10e4b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x471a1eb4 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b1d9b92 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58a18a83 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x59f39e6d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67f2f58a open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6948967a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x76a08f58 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x80eaf360 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8561febc can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8946f9d0 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9301f212 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f4bd82c safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae018ec4 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb15fba5f can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3dc03d1 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2ba428a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd1b25c2c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd293bc91 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf475a0fd can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfa1a21bc can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1c2a1c80 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24140336 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x799efd61 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaab17715 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xbdaeb02d lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1c5e04b3 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1ec91053 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x212bffd3 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x27a97e99 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35f20adc ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x37865ddc ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x39629409 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3ffaf8ed ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6709563a ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9c223ddc ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaa0113a8 ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5df50f4 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xca3d37b1 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdde0aa44 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdfc7cfaa ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe08b188f ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xea9af992 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f7c4365 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x29738e74 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2f53fdc4 rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x50cac842 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x52d4de7d rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x52fb0f49 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5b179f27 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x62049e80 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x912d0e00 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa67961ca rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xab06c789 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb2e284ff rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc0d441d1 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc92cf7fb rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcc20d6de rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xef2c9aae rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00654113 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0385bba7 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f5dd7a __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c62412 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08aee87d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0be77827 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c0cbae6 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x114161e1 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11c10683 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12d543f0 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x148ff2f5 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1553d027 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15673c20 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x184cc154 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2093069e mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2429d4c4 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x244b707a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2989533e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29d75bfb mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d0bf55a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d568db5 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e702b7e mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9b8eba mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f66eaa0 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354c62e1 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x364ba78f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36f2cd9b mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x396a8fe6 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a4516d8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c4a4c89 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c592d5a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df5079f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42a77386 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b9d06d mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45cbbb99 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4669406d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4754d61c mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x490ef377 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd39c96 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ece5174 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f3bf2ca mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ff8931 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54ddebc4 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55a1ae12 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582874da mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8ad995 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c824686 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e74db8a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609e5981 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60ea8209 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63c1f1ea mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6660cbde mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e21a2d7 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6efb3a9a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8ce7e0 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x700ad305 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753c9642 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76dc2cf2 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7732da11 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e5d469 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x801c849d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x840887ba mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86927826 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b64b13 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882bf757 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac99d8d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aea9933 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b564aaf mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e162541 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f511afa mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x957c202f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x959421e8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f50572 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97def8cf mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f8d123 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b93f80a mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0718b3 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f1f9db2 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa037e1a5 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a4c9a2 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d4aea1 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa48fb37f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa537240c mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa56a5499 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae48f97c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6fa855 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ed1d45 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba7f2b31 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc05dc60 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbccb873c mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfce4957 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc016c442 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc25a6f08 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34f47d4 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4fe2ebf mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5071e09 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc51f4f90 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc88023c8 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca32a95 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd35d524 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd6831bb mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6b4b6d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfa6a222 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2337d58 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47eea87 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ee2d66 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd54d4ee5 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd921ee08 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaeb5f8f mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaf09b71 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb77cddf mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00fbaeb mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22b00ce mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bd632b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6218182 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea3f9ed6 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb875251 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeda4268f mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef93b914 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf022cf9d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2dcf9e4 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5439175 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf765778c mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc37870b mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfda6ac62 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb9c7c7 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0150f022 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x021a11d3 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ddf39b mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09135cd7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d4ac291 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1291a1d6 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16480a76 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192456b3 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x192e36cb mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff44c9d mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2040f06e mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23720f35 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244f1868 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a76336e mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b81ce7d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c266bdd mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c31f88e mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ef83e35 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fb3ccba mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35796085 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38440547 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee62b21 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f707a76 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x440e5f98 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a58f6f5 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c7d7e56 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e0eb793 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e6c8256 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x544092d1 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a3b353 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56362f64 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57303a42 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a2237d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58ef0754 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dc99d0e mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e773307 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d317ee mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6530f3b6 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a228fe7 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7341bd87 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77137f3d mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b365d75 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc1be82 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801b09f2 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852e70ad mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866ca4c7 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86a05b7b mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b8606c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d1e934 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a2b7475 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aaa816b mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b0e4b5c mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d575101 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e555b7 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95a1dbc8 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96260981 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9815a10f mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ca1d849 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d11e714 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d4259dd mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d607036 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0ba124f mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa50be206 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab278fa2 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab96d85b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad92ecd3 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec82450 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf0254da mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ebfdce mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdded356 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45b7cfd mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc73bf0c4 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd482f62 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb90e57 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf56729 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceefa41d mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32d6b25 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8d147e0 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc0584b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe14a5d49 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe161fce6 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c53fd2 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe477016d mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe65cd7b4 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde212bc mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/geneve 0xf9ae8254 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x290f572b ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3c070936 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x70405693 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9ba8d14f ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5326687 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3632c956 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6024009d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x958d2af0 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa115daae macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x02157977 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5c08239c net_failover_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b5b5fef bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f892620 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a92b9ba bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6654718f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fafe543 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82c353f3 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92af833e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a9432db bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa76412d6 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa0d3c9b bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb44196ba bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb50e691d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc55fc9f9 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccfa5a23 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86e3b3f bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe85eedcf bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebffd259 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0a060a6 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xc7ed0345 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/tap 0x2bba9f27 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x5fcc1a6b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8085afd5 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x9efd7562 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xaff9f018 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xc81e83ab tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe06a0a0f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xf3d7da73 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xfc44c981 tap_handle_frame +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 0x5452bdb0 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x811fb0b9 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xea7cae29 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 0x9af5d0f3 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xc12c6a3e virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01392fe8 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a73cecf nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x11cc3819 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28f8a902 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x54132a9a nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x58d7ab34 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7bbfdbb6 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa307fb45 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb820b980 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbcb5937a nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd7201727 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf14be2fd nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xd1212f51 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0395d250 nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x38dab9d6 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x555953ec nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5a4d958d nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8290305c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8d22fc8d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f72c9e6 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c2a719e nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa98f369e nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xccbaf7a7 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfb544626 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x441d3887 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xfbdf36e7 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x005a2ea2 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 0x4a17da2e hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4d9e8615 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4f02a0ef hisi_uncore_pmu_counter_valid +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x51300453 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x562d1a7c hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5ef8e4b9 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6af0fc40 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7cc2a987 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8332615d hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8d38754a hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9461bbfa hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9a5c9067 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xebba23dc hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf9ddd661 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x759659fe qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 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 0xf03a48ae qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x4958b238 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6eb0791c fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c96e251 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x116cedcd iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x30d9da20 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x503f36e8 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x72ee95b6 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb71d0285 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcc01e8f8 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x045c4003 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06d20bda iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0839694a iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a8eab83 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18ee7997 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x216d5737 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x225d21ce iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2439aa8e iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ad78b10 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bd6bcc6 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e2ebe62 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4028a36b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x416eb332 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x439d40f6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46173cc1 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5070be07 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x566e6f1f iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57b56479 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x611fd25f iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x655a6aad iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b458611 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70b59742 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cc73899 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85b372bd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8806dd5e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x921d4773 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97d79b1c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab85386a iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb19abffc iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5a4254a iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbae98c76 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc897815 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc11ab5a0 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccc92492 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb24d0e2 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd241cc0 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf8ed5af iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7d2f759 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed87069e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef27865d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefb87476 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8aa7f72 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x06be1f6f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c7f7542 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1fc60281 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29fdd865 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46102121 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55a193d8 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5699bcf1 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f89fdc0 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x624d9c36 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x628b0ea5 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafbe3a7e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb258f2cf iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb35accd3 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbba729a4 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd8f471b iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3d54b55 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf7cdd9e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x109afbea iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17e12bdb iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23e03dd9 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x258071ae iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2587e53e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b015905 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b1a3f4e iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cff3182 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d049f9a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33f68499 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35c85447 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b5f654c iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46a44d99 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cf9d700 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e0e555f iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5820a1e8 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d1d2797 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ee78a56 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6155a27f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61b3f76d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6212d3e1 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ce227c8 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d1e04ea iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7daac933 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e8cd605 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f2c59b3 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4a25411 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa98e0a7 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9583383 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc04c66fe iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd83850a6 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd14f3d4 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf283def iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1c11875 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8dce345 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8f9ac47 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe90dd7ae iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea0db443 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee5359d0 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef31df0e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa02626f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x862ecf81 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 0x06c7764c srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2fb449db srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7bbf2a8f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb8123bfd srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe352b1be srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xeadb7102 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x035aa578 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2bc07a1b __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x30f6f526 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x371263dc siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb25dd553 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb5c8f77e siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c4f2a8d slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11270ce4 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23ff24d3 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x330bd13a slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3bbafd53 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52467604 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x547d0729 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x588164c7 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70b4286f slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d22ba44 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d71d259 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e1035a0 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e910b86 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9b97226b slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaee8773a slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xafe39c75 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb7a38973 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb88bb99d slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb8960f63 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbd90263 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe2dd23b8 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4a78bc1 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe808e7a6 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed674dd3 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf28da229 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa7e7ce8 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x20517bac 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/qcom/apr 0x2a50644a __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x328578b2 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x79e94d54 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9fe71f68 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x13968159 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x51c33d61 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8ba56473 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xd3f1f070 qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x3970dc8b sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x83bf1ccc sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbc5321f3 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0adec385 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x36123861 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x580e063d spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6f5bf244 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf3c8f89 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe99a5e30 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2b439d7e dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c1276d9 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbdccc52e dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd883e268 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf3fef930 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0e284643 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x16365387 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb8dc47e9 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd546a4bc ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1ac99dc0 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x25070e13 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4aa2d830 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x548d3e53 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5ae093a5 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6de62309 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x94663e35 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb9bec46f anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd0fa2014 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd7453d07 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe7751dc0 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xed1cae94 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf6f4afc8 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 0x51428e43 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6523c914 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x83f78c7f fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb77792c2 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0ec753cc most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x15caed6c most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1d9786b0 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x33831fd7 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x50e3f671 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x5668b040 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6cccb1a3 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7d53253a most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x9c02e03a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xcf1a8436 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd3f3d1a1 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf2ed57a2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf639552b most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xff4ea6c2 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x18afb561 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3d7cd72e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9ce9d8d7 __uio_register_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x255cde22 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x0ac4335f vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1be4d525 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02421ba2 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x035895d8 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x043617b3 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f9841bc vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a0ebe2f vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d981052 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fee0781 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b656e15 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ef2fc8d vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74c6581e vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78e2607d vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a0af432 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x818ac0c1 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b6564f6 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9cbcc806 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9da21f46 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa86420ba vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8b72021 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacf9957a vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb12dff06 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba407e46 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb6af5dc vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd29be22 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbdb8b062 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf561c55 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc73e4e02 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9ec1ad2 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb3ca960 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc50a78a vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcde04ec1 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd35303ab vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe54e0366 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe942819d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedf5e4a9 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1a39c64 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7e7aadc vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9dd2300 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9e6cdfe vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2207b46b fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x51ad459a fb_sys_write +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1a2d59e9 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3315cf88 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x79b3d002 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/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x07cc4b41 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x09636e42 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4727e82f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4d080fc2 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5498b527 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7260aa2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xee2f2413 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0043d214 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x054864ba nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x061dc8ac nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x073162cb nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07850e3c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0986a846 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09ab7246 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b2c5dbd nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c9dfdc8 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f138414 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122bce56 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x132dc4ad nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x158e8a55 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f0853d nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1842a7e4 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a0163de nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1abfdcc6 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1acc293b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b7a4900 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f1e3dd4 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f44ea08 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234386ce nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2594205c nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b7f627 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a619e0d nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c890c33 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e460b70 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7cc721 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fa011cf nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d79a01 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3142f52e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x319bcd80 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31fa6fbc nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36d6f605 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37f6048f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c6fdb66 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e00ab8e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e7adb09 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f643fea nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40e636e0 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42dad8ef nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44f2081e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x454b995e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x457162fe nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48aa1839 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48cc9ff5 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af94263 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d70ec65 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f31802e nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fe472b0 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50bccc3e nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x538c51b6 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54a1e55a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56018cef nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5760a9ab nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58bd5972 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c70015a nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d0676c3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db988de nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e3d4fc3 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f04b907 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f3da917 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63eb52c0 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69577770 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c5db83 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6de726a2 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70059333 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d7850b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x751d784f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7555a22d nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775e1013 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80bc9197 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848400bb nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c50c39 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8821e4fd nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x898a51aa nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8be6c088 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90dbe1c5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9271a373 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92a5f4d1 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9302292a nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93394d76 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x949809d9 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97727518 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0aba6a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cdcf7f9 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa536b3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa29dad10 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa94c627b nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab285c0 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac255f15 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad417eaf nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaecbc571 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf773e9c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb689d9bd nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9f06b68 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac8bbed nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba3ba4d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4340ae nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf90b013 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc302f6c3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d7b5a1 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4bef526 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ec2a6f nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc920b699 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb59929f nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0b96f0c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e503b4 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1154d0a nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3bb4093 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd570ca32 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb975b13 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf12e209 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0e5cabf nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe18339f5 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e68861 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe88279c3 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea425aff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6f0c99 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf12936ac nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27cb288 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf31f56cc nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf60123eb nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6fd432c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7e43558 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf84faff0 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf86cc76e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb77667b nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd2ee3d3 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x09b804bb nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x001ea078 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x037792dc nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x042a08ea nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f2fdaa nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08a70cf5 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08ec9844 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b75273a pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x107434cc nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12d46883 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x219ab4b0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e12368e pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f9a55f3 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x312fcd89 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31c14b4d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34f17dd1 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c35f17b nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dd2f689 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46014535 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x463f6258 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4978f917 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d214904 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4de6ee9c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bade776 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x677b9020 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x681cef43 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a9807bb nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77795428 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7866a131 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cb412d6 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e3dcf3c pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85b0706c nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b7e92a5 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92a6a957 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x986f6807 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99a5eb76 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1d18e3 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a8f04aa pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c49c304 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cbf12ea nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00a0cbb pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0c017df pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2076f69 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcfa0c12 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd627e8c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4481e9e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc585f030 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc676c6a3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd25cab62 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd10974b nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde70c2f0 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe57bd119 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe69f3bd7 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf09a1d44 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1525221 pnfs_generic_sync +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 0xfa10fa24 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb20feb1 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb596a00 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfec92d09 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff6863d6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x028fd1bc locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x51b4fb18 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e0751c7 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x16f78443 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x931d95b8 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x02b0015e o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0579adde o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2421db38 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2b1e0d0b o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3da57225 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 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9b97387b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae90c0ce o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88cb8c46 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xacddde20 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb6218080 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc649ed3e dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6e667dd dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7153656 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3cf436c4 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x716864ed ocfs2_stack_glue_unregister +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 0xf26fd8ac ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf582980f ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x60cce6a5 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x6327ece9 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x85a7fd58 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x097d9f93 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x102c8ba6 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7343553b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb436ef8b lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x05f543ec garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x08a38c9a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x269a1496 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x62087162 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xa1b49ce6 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xae2d4ed4 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x27a6c825 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3668f5c3 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x511177ba mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x96c46e93 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9d7a75e4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe4ee1162 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x0d1fa543 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x2d44a4e1 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0846686c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xcc7a7e45 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xe3494e8c ax25_register_pid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x02e70ae9 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a5b37f3 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x11e134b8 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x139060b5 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d1adaaa br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b4ed608 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d1fcc6f br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x42e062ae br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x44a3da05 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64044e67 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8368cf05 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x930a1a01 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x970b1440 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3a164dc br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbaa01a4e br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbed72ba9 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd8099917 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf92a4376 br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x3c11246b failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x4d2efa7e failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x886fb7b9 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09e39bd6 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x191d611a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x196a731d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23d9a868 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x240cc748 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25c53f27 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x289f05f0 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a25fc41 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31b7de21 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b7e18cc dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4696811c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d7855ec dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x520eca6e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5231774c dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x615c02e9 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62bd9d04 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6817cc6c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c999d4e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x788cb6ff dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82d70bb6 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8aaab562 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e81cfe8 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b9cacb6 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c750415 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e6e66d5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9fe30f0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc10bfa5e dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1dd6a8d compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd34060ad dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb1ba035 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecedc70c dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf87d4595 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8c665f0 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x07e5f743 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x358f868b dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3efe48f4 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f06fd36 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76ae0287 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa7bd122c dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6e1a0f dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ac32253 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3246d2fa dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a8862c7 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5411888c dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5a3baf0f dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6417de69 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c9585a6 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79cca533 dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c48fecb dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86e52934 dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x932606c4 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9fbf2e44 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaeaa5c64 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbe0b607 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf94422e dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe0139cac dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7a18434 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xec010ab6 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf30404e2 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9db7530 call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x68006043 dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9292d591 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x93d6ccc7 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xca42021c dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x50398de2 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5cd64c4d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xadd77f87 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb1eecb00 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x4f9d5069 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 0xbbf8accd ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x32132263 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbd0c6d24 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdc8c1ba2 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa3076695 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe813345a gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0fc8c480 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2601d7c7 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d43fe60 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x560921dc inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8f0fd689 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa861eeee inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2a4e818 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc9e840bd inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe213ffe8 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x7ff469a8 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd2ff8924 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x55238adb ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x009285ee nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x895879eb nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2e706c02 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ca87c13 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2c67411 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd45df4fe nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xed1a045c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb61a16ef nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2a3a065e nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x585f3d2a nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9646ebd0 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x905b2ebf nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xcfebc352 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x21609e3b tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x291d833d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x37afda76 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8faf0476 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdb70dec3 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x28505a51 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe750b529 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf94ed31b esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2255991b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x35918e97 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf1c473ed ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x36a6d278 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4c70315b nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x894147aa nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8daafbec nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4c109c16 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5c44349a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x76ff8707 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x81f18fb2 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbe85e549 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x317db786 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0a73051d nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x401879e9 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfa1c0ba1 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x49c8d190 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf2659c6b nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08a43859 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09c854f4 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x106285b8 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c155522 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37de535c l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c63a2e0 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6375e0d4 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x692ef777 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a60c0d5 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86ab50ae l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x94e4582c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e7ef480 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd1f194e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc80a9e55 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8ad0e9d l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdaf17cd4 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc7a6aca l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa3463806 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x135798dd ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x276981e9 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x281a16cf ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e368e69 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5575b066 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65ec9bbc ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7036edac ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x74232c49 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8477534d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb20a221c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc521d31b ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc2e68aa ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1c52f04 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6baf5cd wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe942a90f ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1306fb1 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0486ee74 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x725e5644 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe6205537 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf1ddbdc4 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfa82f4aa mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09a82a91 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1ddb7f85 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30901a28 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c40a7dd ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x530ab59f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54ef6fe6 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6444481a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9bfd7ec0 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d8ec5a3 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1d2219c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbf4cc062 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc94c7385 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd681a0a ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xddf847bb ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf06bf40 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5ca1869 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4bccbef ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7efc651 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6cd1a9bc ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8435f859 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd9d43491 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf9f907a5 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2b844c62 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x382c574a nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x78bec751 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x84aa34e4 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc9a59a32 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x047921ce nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cc27e49 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x106a6cf4 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x123cf5d7 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1975ee6e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a74f534 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f531471 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x244c01fe nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25c53160 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a014fb3 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f71e18f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x343628bb nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x357c62e2 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379dbd9a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b4cd83c nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3efa779b nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x431deba8 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448ce843 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x452812c2 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45d7bd8f nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463a61bf nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a763524 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fab383b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x549a0a43 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b7ab669 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ecb13ae __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6605969d nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ee4bc8 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ac86c20 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bd620f8 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d2a90e4 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f79186d nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ff633f2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74b5bc87 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f291e37 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80029b4f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87a9c335 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88a8d6dc nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a14e4fb nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a44644d nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e2d0493 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e83de6a nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90bdb873 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x942fadfa nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95406271 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9feec06a nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7f22c52 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa937e149 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa95e257a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaafa66a2 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf78594c nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb20775d4 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb467db2d nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb651f39d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb718348c nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb81e06a0 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba00d412 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc125e15 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcc081c3 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1af0abe nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc247d104 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7dbf426 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8c894b3 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbae4f2e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5709021 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6d80141 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6dfee11 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda0e6705 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4d76a00 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe685fc93 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe83585a8 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed84a170 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeeb4c596 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0d65423 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2ca44a8 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3ae5aa5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf44180b5 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4cd2d7b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9cce060 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc29bd60 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff8e15f4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x2b46c81e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe8e18237 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1df49190 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39331222 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x50a5bedb set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x697d96c0 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ee7fa19 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x88d9d716 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a929106 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9509c3a8 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad9848fc get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8184bac nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda629584 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa77a58ae nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x077bf6a4 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x18badedc nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5e10e4d0 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfb6f91d1 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0c8b7737 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x238af0cc ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3ce7bbb1 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x964c9465 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbca8f9ac ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe18ba9dd ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf04688ae ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x5860445b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x9c38b7d6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x23b495e7 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x29c1138c nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf3160da2 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e7200b9 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x297c509c nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39e93da5 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x77ac3624 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x88ac1b5b nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94867822 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad8db984 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd95ebd04 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe519713e flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf28e6875 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf61bbaa5 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf84a2502 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x25948825 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3bac9169 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6ede182f nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9a7e70ce nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa3b90538 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe75423ec nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01f6aed5 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x109211e8 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f5ba2e6 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22634507 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c1df9a2 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ed8e179 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4bb8dbaa nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75709ae8 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8750f47d nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x881abb3b nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a213982 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa610d759 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbdf417af nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0b5198c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2c46901 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfa9f3ffc nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x01442fc9 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1cdda311 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5a49faef ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5dcf6f11 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x66b8ee93 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6eb35ca3 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x70f99e84 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8169f851 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90e62dc4 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa39a1e76 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfd134672 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a546148 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c242cac nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d1d8416 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15bc3a18 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a256c4f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2eff7f30 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f0ebb90 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35b2dd3e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x366691ea nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x402c4a6b nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x407aa258 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x441dc403 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ac86557 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b1928de nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x500bd291 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5923869a nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b3d06a0 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62a146c3 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bfa0886 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75bb8d30 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78ad079c nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x802f7add nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x864ebfc1 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac280143 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb20124d6 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb80acf98 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcb30cec nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc26abafa nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd66dc2d6 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd95a1469 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda03bdf2 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd2bd8fc nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1c98208 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf88dadb9 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe4d5f38 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2ae283bb nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x36bcebe7 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7c606912 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7dd5c8dc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa3a89f38 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe7df51d7 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3e820af1 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa8ced7b6 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfcc9bf1e nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x65c0ca91 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf671dbb2 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3df5bb9a nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44d6055f nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8a2f3b3f nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x983f28d2 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x76c28439 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9bb58c27 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe4a968be nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04b61589 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b132062 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a232087 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e36c6d0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x26c6c30e xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2da9bda8 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bad813a xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bda6f80 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x65a0d82d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x882f05fe xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x905558f6 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b78798d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b999a52 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac157fa1 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad26463a xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb4cabd84 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5bc48bf xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9ac3b82 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd760f82 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xecac63a9 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf229e421 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x5492d736 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xfa103c1d xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2a815370 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x50f95964 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbb6bbcdf nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0962c705 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4e8c5240 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd0403144 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x668b4ed4 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc2626518 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x163cad8b ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x54bab425 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa6c780aa ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe89411d5 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xee912536 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xff3f19d1 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x4a652df7 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x77a0ceff psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xa576239a psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xb6892998 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4639d51c qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9bed2343 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd0096203 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0902d208 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x204b69ec rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x20ca58bd rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x2905fdfa rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34bc13d5 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3f654fcd rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x4053948a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x40d606d3 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4375d252 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x45f30458 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x4b205dc6 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5bbd9ade rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6124eacf rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x69eb56a9 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6d318488 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6d674990 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x72e649e3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x767621d0 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x910b24d7 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9b007fdd rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa19287dd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa75e1895 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb2b04d07 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc1660c7d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc309670b rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xdc477116 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xe74dad47 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xf38abe56 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2cfcecb7 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9b06ab24 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb79a9262 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc3bd5232 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0ded9f3c smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x21585c9d smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2e19dd97 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x5a474261 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x6db94e3c smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x701cfe29 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x702c3f53 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7b61f300 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xcd415ea2 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xf58f1b61 smc_proto6 +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4e3da330 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x73b85c21 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x987f187d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfdcbf32b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a8fd9e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d8b99e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d3fa92 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0414f20d xdr_init_decode +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 0x094b107f rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1033505e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10894b6a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d5fcca auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x132ea895 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1426a7c5 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1595db93 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cea423 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1861abce rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1988b802 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x198d28f4 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19bcc705 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccff2e1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cefa4ba gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a75f6 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f33bd99 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fff7214 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21671943 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216d6e3b xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b2daf8 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226efa4b rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271d68ce xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a544cb xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d72865 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae9eb00 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0190fd svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c33d7ec write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4d4542 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d97a21e xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec0106d rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x305da408 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e8e4dc xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312bf907 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31dd152f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3222f327 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334815bf rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x339bcbbc xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x353faaf9 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e07e755 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f52fe84 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x405ed4dd sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433b2e15 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4835cee9 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4961216c cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a38a1a4 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a910e25 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af56be9 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b64fa44 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc4390b svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c060aaa csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5a76b2 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cf2834a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2c413e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ead530e svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ebc53d6 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b0be58 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c9dc66 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52481347 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545262d6 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58268bde sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58f24a31 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5978b004 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad77781 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9247d2 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb527fe xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c40ac68 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c476f7c xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c6f5418 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d12bdf7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d84baa2 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9dcfa3 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6034d98e rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60be76b7 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62dcedf5 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6487834d rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64986f33 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649bdc7b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65e1dbc1 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66700bae rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x671e7bf9 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b12b441 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4aabe0 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7e192e xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b89fcc5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c437b88 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c7c2e85 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dd705ba xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eaa5db8 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f464edd xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f750a51 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ffdaefc rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70265558 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ba250c rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760bd2b6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f94ca7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799dd633 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b65564a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b90bb5b svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c796e61 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf285c9 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f3cc388 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815c770a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b3a1b0 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83cd3eb4 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84377747 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87ae62c3 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8886ac9a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8952f971 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89e7ac37 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a75e7a0 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b13301c rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c7cfe1f rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d5280b1 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e115ea3 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eba95fe xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f72c759 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e4d6a8 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9180ace9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e9afec auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e9d89e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929d4271 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93dcf7a4 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ad1002 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972bde30 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f2ce99 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x998b99bc rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a6ed779 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a271c4 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b49b47 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3e61265 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa492b529 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59f5837 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5bde3a1 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80073b5 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b9bb14 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bd3a3b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa996e550 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa69502f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac06e806 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad0ae928 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad69348b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad748308 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad90dc09 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd38ef2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0902c31 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb090559f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1998d1b xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2cea9a9 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb478e1f7 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb512ae44 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb60dc8b9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a42a51 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb766130a rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7dc20bf rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb92fbb1d rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb628b84 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba4d845 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbefeba75 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f27bfe svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc165b152 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3731125 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc573c5ad svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e69622 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc71d2c59 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc72cfd91 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ea20e8 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca9775df read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0a9385 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccd7d2e1 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0c29a9 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce4f4b14 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd07bce2e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd11272eb svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd40074d4 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd423f352 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49f9e9c xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6243059 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74fa3b3 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89a792a rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd5d4ff rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0fd9bc xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd669116 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdefd1e2d svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf7a7043 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0153eb3 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01aade0 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06f03d2 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe15a675a rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a3b3df svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe20b9be6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2180b6d cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3932df0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b889fd xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e27d6f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe711d819 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe786350f rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda42e77 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee5d3f89 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee675044 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe4c0e8 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0127901 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf106b923 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1615557 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20e7530 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ab3afb rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d8ec8e svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf303807d rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34c597b auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37bcfe2 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d477d6 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88670b7 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8dea5bb rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf95912b9 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa543880 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb478567 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd3d446e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd76a678 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/tls/tls 0x03ea149b tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x182136f0 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 0x0cb782b4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1af57962 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22663118 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bd04d5c virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c6fd385 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3672edbb virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3822e015 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3aa7e56e virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41653ee7 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4264ea85 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49ef4eda virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x57002299 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b148105 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b68625e virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d2deeef virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62b9d6dc virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62cb4a70 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82ec4928 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x873c86f7 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90c62899 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9db362f8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9dbd578e virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e415be4 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab040edd virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae6bdbc3 virtio_transport_destruct +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 0xc35400a7 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc534dc88 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca2a6331 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb121b7c virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0cbbbb3 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd2e7700 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7febbbc virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8c992ac virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed7e1a3f virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2a196e7 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf64428e6 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x062cb53c __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x263046bc vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f1af257 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x457a1b88 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x48f64b6f vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4925ddce vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c4c74ab vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f16c009 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73e6df6e vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x778ce7ed vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x891def54 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92abe611 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97392245 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c0f453b __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad1c874d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xced31f1f vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbfb39f2 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe9b7349 vsock_add_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3542bd76 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x584020e3 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x75ba9082 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc17435b5 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe1ce029f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x08f08394 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3890b92e ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x76954f63 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa15ad8a4 ipcomp_input +EXPORT_SYMBOL_GPL vmlinux 0x000b05ca da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x0020c37d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x002b34a1 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x003b533e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x00419656 vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0070e18f sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x0077eeb5 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x0081b966 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00acf6b2 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x00b16884 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00d60333 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x00d9e064 clk_edp_pixel_ops +EXPORT_SYMBOL_GPL vmlinux 0x00e0b553 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x00e792c2 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x00e79b17 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x00ed174a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x00f0b66e platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0101befe devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x011082b9 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0114022d irq_sim_irqnum +EXPORT_SYMBOL_GPL vmlinux 0x0115c0e6 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x0128fe0a vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01390c00 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x013a2a91 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x01476248 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x014b25fc of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x014d8535 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x01502fbf mux_control_try_select +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0171d5d8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01983986 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x01a19dec crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x01b36f86 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x01b7a8f3 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x01c5b609 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d9e750 tee_shm_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x01df66c5 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e20b0c usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x01e4b399 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x01f201bb spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x01fb96d3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x020cd9e3 devm_reboot_mode_register +EXPORT_SYMBOL_GPL vmlinux 0x0218c751 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x022eb4c9 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0243ea1e pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x02513812 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0256c28a shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x02615da1 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0261b856 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL vmlinux 0x0264f7b1 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x027e984d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x028df817 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x028e1cba devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02b754c6 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x02bc87e3 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x02be9b01 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x02d4cd23 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x02ddeb6b pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x02fb9e36 fsl_edma_resume +EXPORT_SYMBOL_GPL vmlinux 0x02fe08ab fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0315730c pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0333a955 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x033690d5 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0343cf30 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x03697d39 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x037c71db mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x03821a43 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x0392e195 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x03943d82 mux_control_deselect +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a3882c iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03b73eb1 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x03b7f5e7 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x03bac140 mux_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce37db of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d3a7af sprd_div_ops +EXPORT_SYMBOL_GPL vmlinux 0x03db33d6 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x03e1a9c9 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03e720b9 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x03f1b252 cryptd_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x03f38b0c thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x03f52282 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0405bae5 xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0x04091dab fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x0419cfef devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x04253f14 cryptd_ahash_child +EXPORT_SYMBOL_GPL vmlinux 0x042b5ca5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0430e4ed device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x043c21c5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x044a5fb7 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x044e3102 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x044e7588 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x04637907 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x047d1279 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x048e48e5 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x049aa0d8 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x049ba784 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x04ab2b98 sas_eh_abort_handler +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bf3163 clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cab83b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ee9216 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x04f2d1bc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x04f8f3db blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x0508fca8 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x050d643a tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x0510d8f6 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x0511624a pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x05194b59 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052ff2fd bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x0538e6f8 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641a33 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x05649dfd of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x0576f054 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x0577ac1d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0585970e acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0599d7f3 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05b757f6 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x05d1063a hv_pkt_iter_close +EXPORT_SYMBOL_GPL vmlinux 0x05f9dd38 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x05fb530b pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x05fce126 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x061a30e1 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062d97ff tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x064337a9 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x064be1f5 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0650a0db clk_regmap_div_ops +EXPORT_SYMBOL_GPL vmlinux 0x0654f3b4 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x065574e3 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL vmlinux 0x065bd1db housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x065dcc8d blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x06994d5e l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x06ae6d52 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x06b0200a peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06cd7872 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x06cda47b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x06d06df3 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x06e3c93c __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e7ae61 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x06fa2895 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x071cd8a0 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0722ccce ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x0723f3a8 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07345c8b ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x07431c72 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x074e57fd bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x074ff84f led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x0760e610 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x07630c30 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x07734d98 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x077941de ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x077be71c serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x077d1e42 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0789ac17 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x079d5113 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b3324e tee_client_close_context +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07c911f1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x07cb5e1b devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x07d844d9 tee_device_register +EXPORT_SYMBOL_GPL vmlinux 0x07d8ae86 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x07dd1772 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x07e0e1d5 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x07f6d989 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08112a27 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL vmlinux 0x08305626 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x08446a9a ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x084819f1 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0857f359 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x08688937 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x08699eb0 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x08739527 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0885190c cryptd_free_aead +EXPORT_SYMBOL_GPL vmlinux 0x088ade80 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08d73cbe thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x08e8ea93 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x08ebaa22 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090ba968 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x0910c2d2 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0923d3f5 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x092e4a89 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x0932e0a9 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x09396c28 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x093ccaa5 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094453ef blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x09449189 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x094981da ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x09642aff dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x096e138a sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0976a2dd sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x097b57bc dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x097f23f4 hisi_sas_debugfs_init +EXPORT_SYMBOL_GPL vmlinux 0x0980603c setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x0983776c tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL vmlinux 0x0995b9c3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x099b6854 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cedd43 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a00706a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x0a10a85b __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x0a160309 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x0a173641 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x0a1d95da fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0a257009 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x0a369bdd pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0a461188 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0a4cdbf7 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a58fd94 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x0a597185 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0a67d7d3 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7556dc task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0a79da0f clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0a7c7549 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x0a8bedef kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0a9a14d4 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0ac38699 clk_trion_fixed_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ac82091 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x0ad74600 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x0ae69959 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x0af4d86f open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x0af8b1c7 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b119d26 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3c9c15 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b52b9fc rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b579624 sprd_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b7428ed regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x0b82c359 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x0b847b3a regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x0b8c02cd nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x0b902de2 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0b9700f7 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0b97ea4f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x0b9e4e4e nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0ba3f020 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb426b5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x0bc162bc usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0bcb119f extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0bd1fe29 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0bd32e31 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0bdf2a53 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0be1c148 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x0bed2b4e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0c013dea devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c2240c2 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x0c243a89 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c447b35 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x0c69ed31 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x0c760b31 nvme_init_identify +EXPORT_SYMBOL_GPL vmlinux 0x0c8c7766 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c981996 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0ca5272c dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x0ca6045f usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0cab12ef crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x0cabeb2a clk_ops_hfpll +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb2acc0 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x0cc27c4a tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x0cd8a3ef driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0cdc7707 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x0cdf8c1d devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cf0980b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0cfcf5c9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x0d0472f1 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0d13db05 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x0d1eea2e ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d288fdc pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0d3b4750 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x0d40d8be ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d55a50f __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0d5b9f33 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d86bcdf of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d96fa34 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x0da0826a dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de436d3 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e2cf3cb sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x0e2ec497 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x0e4b537e devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x0e507118 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x0e52a90f get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x0e5ca722 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0e617119 md_start +EXPORT_SYMBOL_GPL vmlinux 0x0e63c39e __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x0e6974da mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e736474 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0e7b91ef ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0eaa5a17 tee_shm_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ecc5988 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0ed0ccfc rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x0ed46b09 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL vmlinux 0x0ee224bd watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x0eee2e1b __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0ef583e4 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0efe1aab netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0f36735e acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x0f41690d phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x0f46461f spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4ed100 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0f6498c3 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0f70369e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f88aadb nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f93728e debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0fa56fac pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x0faa318e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x0fb29077 tee_shm_priv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0fb9a034 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0fd0eedc arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x0fdb742a usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fe96dab usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0fea2883 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ff3b811 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x10065044 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10167293 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x10238310 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x102653b3 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x103dd600 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x1050c4e5 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10a6049a devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x10b893cf usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x10beba0c regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0625f dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x1100017c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1109dc7c devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x111c2c51 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x111fbece driver_register +EXPORT_SYMBOL_GPL vmlinux 0x112ed062 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11451d83 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x11551309 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x115acba7 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL vmlinux 0x115c7df4 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x115e6ecf get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x1183579f pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x118ae0f5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11ac8f38 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11c88efa cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x11c99a02 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11f13da1 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL vmlinux 0x121a3c73 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122c3e4c ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123ae56d of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1269f9a3 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x128b559d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129d44fb efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12ab9b3b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x12ac7e1e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x12af1916 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x12b619e6 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x12bc9cfe tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x12be21c0 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x12c4b8dc ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x12d63d78 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12e3e67a of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x12e57865 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x12e579ba init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x12e945a8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x130a2547 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x1319c6e1 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1323f4ca ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133ebb71 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x1341102e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x134d9a22 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1364bdd0 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x137222cb anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x137d98a6 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x138baf7a inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13900969 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x13927452 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x139c7f18 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x139ff74e regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x13a03cae rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x13a690cb clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x13aef5b6 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x13c4f4cd __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x13c8a2f5 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d0b3bc serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x13db5007 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x13db8077 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x13e5b6ca of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x13ea66b0 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fb360f tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1435ba55 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x146df208 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x1485a307 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x148826d8 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x148c899b fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x1494da66 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x14c9af68 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14e6f4d7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x14ea5935 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x14f37a6e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1502ddd4 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x1511b538 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x152a89af pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x152afc31 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x152dba3e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x1537bb57 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156436cc fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x15789a31 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x157cf97b ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x158c55ed platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x158ec36c ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x15911383 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x15afbed3 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x15b23ea3 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x15b36c0f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x15c30214 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x15c48e79 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0x15ca1617 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x15e615bf class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ff1a83 vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0x1614b258 __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1640e7f1 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x16522057 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x165ce20e crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x165e7e3a subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1662ef58 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1681c964 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x16852357 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x16925e35 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x1699c219 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x16a17d65 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x16c68558 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16d1c536 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x16d86afd __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f486f1 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x16fb1750 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x16fbf1c4 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x1700caba pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x1709421f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171fefa6 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x1722cd0c of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x17234209 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x172725e3 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x17353cd6 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x1735862b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x1736e0f2 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x173e1733 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x173f2abe __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17691172 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x177ed9ea nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x177f3f57 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x177fcba9 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x1788b8bf pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x179120be __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179cb18e ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL vmlinux 0x179f4a67 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17a5a66a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x17ad77e1 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x17bd6fca ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x17c4d9dc metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x17cc80ca vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x17cdc47a fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e6a12f uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x17ece74d tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x17f0cf6e akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x17f7f47f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x181147b8 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x1813ce76 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x188ff8eb get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x189a8ab4 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x189b996a yield_to +EXPORT_SYMBOL_GPL vmlinux 0x18a26013 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x18a51eb3 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x18adc4aa serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x18bed287 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x18c54093 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x18c58264 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x18d7c2b6 vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x18d9846a scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x18de39a3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e74b2f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x18f578f0 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x18f79f2f dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x191251d4 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1913f954 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x19178d0d security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x1924df5b cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x192b06ae nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x19474821 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x19549860 dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0x196f8777 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x19995f7a shake_page +EXPORT_SYMBOL_GPL vmlinux 0x199b8c4e cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x199ed977 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ae2947 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x19afc3df gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c40b35 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x19cc152b gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f224dd dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fc7727 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x19fe6896 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1a0351f6 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4ac0 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a1de400 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a519f4c gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6e40a7 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a7bbf42 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x1a7cd71b public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad12d02 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x1ad40cf3 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ad7267d usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1ae551ff vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x1b2a4336 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b37e6dd cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x1b3deff6 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1b3f1131 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x1b4738b1 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1b4fa85b tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b95fabb regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1b9dbdff key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x1bb835f1 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x1bb84051 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd8faca power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1be399ba gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x1be8cb58 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1beba1b3 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf76853 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x1bf9439a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1c02bc56 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c0f1cb3 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x1c1076fb crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1c3361d1 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5b6961 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c676341 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x1c721a94 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9286ca regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1c9519d2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1caa6715 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd457b pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc46744 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1cd28a73 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x1cdee5c5 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1ce3cbe4 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1ce3eef8 vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0x1ce9e3a9 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1cff2bce cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1cff45e9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x1d0ff9a3 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x1d113f6d nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1d197e63 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2c2bef ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d3c7981 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1d53bb47 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1d56646a gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x1d6bdade bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x1d75c3b6 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d8339ee mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x1d87db8b vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x1db2c1bc ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x1dbacbb1 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dbe2124 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x1ddb5dc0 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x1deb7da2 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0bec41 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x1e113511 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1e21adba kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x1e2c1091 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1e2e9b62 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x1e383c26 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x1e44d09f cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e629683 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1e630a79 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e76fd8e loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e846940 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x1e88265b tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x1e8c644e cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x1eb72074 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebbf30e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x1ebc66ff wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc54f5 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x1ed4980e amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x1ed919be clk_rcg_esc_ops +EXPORT_SYMBOL_GPL vmlinux 0x1eda2d78 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1ee46a0b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1eebed7e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f1dcf49 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f271ca1 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x1f2eed7e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f673c65 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x1f6d2c08 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1f76c86d led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x1f7fa883 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f896900 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1f9e876b fsl_edma_chan_mux +EXPORT_SYMBOL_GPL vmlinux 0x1fa0751a bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fbdf2a0 nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0x1fca3337 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1fd8ab83 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x20020b54 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x20217750 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x202a7bff pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2034e649 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2042d40d fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x204d5867 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x205a2ef5 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL vmlinux 0x20737b1e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2073f95c clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208af4b6 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a40581 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x20b1c35c acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x20b3198d vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0x20b386dc ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x20b62cc7 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x20b8ead0 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e45773 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x20e969aa sprd_sc_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x20f1dbad irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2105ebb6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x210f8415 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x211327e1 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x212b9ac0 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x212d7081 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x212e72de perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x21444ca8 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x214e54b1 flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x215d2a8c cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x215d6f4b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x216da0d7 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21766ded ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21774dad udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x217d98ea crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2192cdae devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b06c47 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x21b2bef5 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x21cbf8e7 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d29f13 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x21dd98ba debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x21e2b1a5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2212934d cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222386cf mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x22380dc8 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22873687 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x229910c3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x22afdd50 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x22b60978 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x22c003bc security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x22c298a5 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x22c2d2d7 sas_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x22c6bcdf dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x22ca3955 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x22d0e6fb sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x22eab032 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x22efaf21 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f4d118 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x22f93b2d serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230c9290 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x231e1bce device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x23245aea gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x23314e2a attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x2335d626 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234b0598 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23518034 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x235538e0 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x2385f294 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2393d944 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239996bc strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2399c733 cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x23b00426 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x23b1183a find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x23ccada0 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x23d2b3ac irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x23d2ee71 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23d9e058 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x23dff9cc __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x23f2b3c4 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x23fe1e5b tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL vmlinux 0x242b99ef hisi_sas_debugfs_work_handler +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x24433e08 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24481bfc device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x24720f77 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x247a5b53 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x247be465 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248ab16b efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x24ae9213 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x24b1f024 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x24b3bec6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x24de83e4 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x24e88f1a nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ee5a80 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24f63ed7 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x25027847 tee_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x25165ff1 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x2528f7b4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x252c20ea thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x252ecb43 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25445848 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x256184cb devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2564f20b skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x25684123 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x25694240 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x256a784c disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2570ae73 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2572f630 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x2572ff97 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x25783785 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25990b58 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x25e40fd9 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x25fad12e xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x260b9f9b debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x260d2e31 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x260d8fa3 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x2629135c skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x263ae437 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x263e571f ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x264b708a wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26618994 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x26648a9b usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x2664954b genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268158d8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x268d0a22 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x26928932 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x2693ff66 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x269ebe42 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x26a3accb edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x26a60e26 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b636f0 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26da0dca __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x26eae73b __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x26eb66bb dpaa2_io_service_register +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f03dd8 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x26fa1d0e __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2710a8b8 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x27416d24 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x27446ccb pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x274cbfec kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x276e30df ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x27715e4a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277b1923 mux_control_put +EXPORT_SYMBOL_GPL vmlinux 0x27a15bd7 nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x27ccbed7 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x27cfab4b iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280632b6 fsl_edma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x280e771d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2825f467 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x282c10f4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x289bde93 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x28a7d159 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +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 0x28b5a56f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x28c179c8 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x28c6443f skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x28df0ec5 vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0x28dfd834 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x28f5a077 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2928de5a iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x2928f779 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x293300e5 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x29516640 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2984b54c fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x298a3310 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x299ff581 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x29a7209d ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x29b1bdc2 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x29b6cbca sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x29bcdb12 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x29bd259a devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x29c0be4a dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x29c69a9a platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x29c7a3d5 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x29e984cc __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fc660c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x29fda046 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x29fe816c crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x2a03fe10 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2a08784f virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x2a0922db pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2a0e6078 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x2a2a881a devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x2a3e10b1 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a4292fe hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a5196a8 iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0x2a57ba12 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6a38c1 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x2a72866a syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2a80e138 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x2a81da85 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x2a8203ce of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x2a853b11 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a8776c3 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abd163d iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x2acac2c7 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x2aefddd8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2afc36d4 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x2b02f11a rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x2b15a79d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b272e4d spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x2b386818 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x2b399e07 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x2b3b570b phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b5ede92 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b62f9ce iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x2b67ebdc pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2b86d3f1 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2b94dcd3 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9e494b ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x2b9e8398 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2bbb487b __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2bcaabf2 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x2bd3893c __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2bec26a2 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c455ef1 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2c571c46 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2c62195c device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6dda7c usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x2c7c05e5 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL vmlinux 0x2c8f327a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9d2921 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2ca3acda led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x2ca9576a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2caa9468 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2ce28cd6 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf2abc5 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2cf74c0c devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2cff87ce __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x2d152aea pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1dd156 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2d20b432 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x2d237595 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2d28fbba teedev_close_context +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4ad08c devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x2d4dbdeb sas_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2d69d96f crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d7ec9be devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d89517e clk_branch2_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d8eef8e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2d9bffad rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x2d9f28fd ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2e6b73 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e377c6e crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2e626e0f sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e6fa64d ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e811d43 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2e86e18e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x2e9632b6 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL vmlinux 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebcf121 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2edab5c8 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0x2edae6bb of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x2eddc477 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x2ee3bcb8 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2efab542 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2efc47ca uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL vmlinux 0x2f145b42 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0x2f1cb126 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3f0327 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f46d000 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f5ad377 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f686f07 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x2f7979be cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f988b0a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2fa1513f rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x2fb85e95 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x2fba05ec acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2fe1c077 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2ffd8499 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x3002d2ea usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x3005c034 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x30271e63 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x302e1bdc tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3043f33f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x3046dc74 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x305368e5 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3059f23f blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3060f5c0 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x30735ea7 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0x308203e7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x30a40627 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x30abfc16 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x30b610fc spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x30bdbc32 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x30ca9913 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x30dac181 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x30e11c74 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e96339 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x30f700f8 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3122afea bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3128c501 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x3134dd7c dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x31372c96 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x315e91ee relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x3185d715 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31987f4b fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x31a2e830 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x31b7558d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31dea346 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31e32d37 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x31ee87f9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x31f82bb3 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x320325a9 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x32116f53 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32284161 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x322dc038 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3235a0a0 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x324c5710 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32979ac6 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x32a1aff3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x32a914b6 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32abd21f ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x32acfab8 sas_task_abort +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32cd746c acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x32d0556c xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0x32d4e69f iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x32e68ffc sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x32eb38d0 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x32fb7ff4 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33218ccd dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x332723e9 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x33285e6f ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x332bef59 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x333035bf kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x333162ef cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0x333aff11 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x33414ad3 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x33568059 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33ac063e find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x33ae57b1 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x33bace61 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x33c33aaa nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x33d3413a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x33e55c5b clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL vmlinux 0x33ebb245 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fc5fca xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x341eb84d dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x349ade38 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x34b08fdc dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34c94ee4 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34d953a4 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x34da9e79 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x35105272 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3529697e debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3544c499 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x3548275f blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x354de696 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x3556c754 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x355b4e38 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35676a0a acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x357e3d04 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3580563c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3582a46b dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x359b94ef shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x35a64f15 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x35c050be devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d470ba sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x35f191a5 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x35f5cd36 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x35f6bdcc fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x35fbf676 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b8133 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x361a6d80 irq_sim_init +EXPORT_SYMBOL_GPL vmlinux 0x361dff71 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3630743d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3635892e virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x36435093 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x3647d865 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x364a7ccd nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x36633f66 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x366d4986 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3678026e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3682a9fd attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x368f0687 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x368f092c dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x36941784 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x369d8d5c regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a2d452 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x36a84a28 devm_mux_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x36d228a0 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x36f7d5e7 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x36fcf049 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x370943f8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x37098aff crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3713f01f srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x37150ec4 to_hisi_sas_port +EXPORT_SYMBOL_GPL vmlinux 0x371926d1 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x37197d55 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x371e4f85 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x373875a2 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x373ea57a reboot_mode_register +EXPORT_SYMBOL_GPL vmlinux 0x3741c007 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3745ab44 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3758ecd1 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x37618ffd nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0x376806eb devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3782394e mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x378d4fde regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x37bbb320 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x37c2ba9b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x37c38008 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x37c4ce60 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x37cca0a9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x37d3d0d7 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x37d51c0b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x37da978f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x37dbd8cf __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37eb9d99 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x37f06a8a device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3804da2d ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x3812b36a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x3818b331 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x38240fab fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x382a2424 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383d26d4 tee_shm_free +EXPORT_SYMBOL_GPL vmlinux 0x384ca70d ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x385ef4c9 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x38671dfa acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x38726025 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a1d0d0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x38a92f1b debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x38b65194 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x38d46ea6 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e64b4a pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x390abcc2 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x390ad948 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x390fb60d rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x392c2702 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x392cad88 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x39393a2d tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x39400c4a ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x3942a805 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3945bfd5 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x3946c72c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x394be73d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x395586ff trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x396fc800 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x397e6ec6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x39a15f8d param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x39c69809 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x39c8399a phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39eefdb1 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x39f55a5f edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a07c0dd blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3a0be69f rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3a2b90c6 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3a2eadd6 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x3a4641af hisi_sas_phy_down +EXPORT_SYMBOL_GPL vmlinux 0x3a472782 regulator_suspend_disable +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 0x3a5a6166 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x3a5d97b7 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a5f06a2 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x3a84f487 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3a905a5a fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x3a92eb5f kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x3a9ad616 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab8086e crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x3ac57b88 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x3ad48c74 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x3ad82883 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3aef28cc sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3b16f9cc spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b61a63a gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3b64ce48 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x3b653e8e kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x3b6980d9 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b960fbc wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x3b97956a set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bbbc40a ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x3bbfe788 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3bc517b6 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3bd1f896 sas_target_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bd9ecb8 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdf9478 edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x3bed43c1 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c0a2fcc devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c1583f5 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3284b8 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0x3c339a5e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x3c3b4f72 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3c52725f xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x3c94980f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3c9528eb strp_process +EXPORT_SYMBOL_GPL vmlinux 0x3c97cbd1 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c991d5a __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3c9d35c4 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3ccfb522 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1df1d iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x3ce77caf register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3cf068a7 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3cf80dd5 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d33b5b2 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d52b2b3 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x3d575170 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d5def15 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x3d66f5d1 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3d6e42f9 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x3d717097 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3d73a94f rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3d770e1d regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3d777f9c free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3d78cae6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d882d64 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3da5adb6 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3dba0f0d tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x3dc43fbf sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dcd971f mux_control_states +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de4c5f8 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3defa26b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x3df3985f rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3e177806 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3e1e9685 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e58ef0b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x3e5cd31e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x3e605145 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e643604 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e654352 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7a13ca kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x3e9ecd28 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ebad3e8 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x3ebcc9bf ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3ebfb9d7 net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x3ed578e2 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x3edc0868 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3ee9182c acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3eed6a57 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efcc81c ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f1e003f ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x3f1eb33f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x3f2915ce dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x3f2ac155 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3f54cf7f device_del +EXPORT_SYMBOL_GPL vmlinux 0x3f5ab141 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3f69c3a6 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x3f76c796 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8630b0 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x3f872230 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x3f88ec52 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fc5dfd1 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x3fd53027 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3fdd01d1 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fecec9e lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4014eec3 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40488939 sg_scsi_ioctl +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 0x4074186b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x40743678 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4079e772 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407bbcaa devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x407f0c37 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a9c236 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x40aaba1e ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x40ae426e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40bc792b debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x40bc7939 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x40bf22a0 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x40c1ebb5 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x40c9a9fa crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x40cd22f3 acpi_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x40ce73bd ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x40e5accd clk_byte_ops +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f2743f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x40f52d80 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4109199e gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4120e3b2 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x41364203 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x413fae5c devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x414a8103 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414def68 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x41585213 flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x415c2cf9 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x415ffc67 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x4166a12b nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418bae9e bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41c7dc8e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x4223b41f ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x42258251 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x4234f6ea fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x425a5ccc bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42704856 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4278530e usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42899c25 fsl_edma_free_desc +EXPORT_SYMBOL_GPL vmlinux 0x428b605a clk_pll_sr2_ops +EXPORT_SYMBOL_GPL vmlinux 0x42ae5a99 pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x42bd810d devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x42c16c00 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x42e48470 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x42f500dc ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f912b5 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x42fb4cd9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x43020a67 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x430962e8 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x4309b686 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL vmlinux 0x432af453 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4343c451 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x4357a297 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x435b558b crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x437003a3 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43864628 vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4397389c lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x439a4504 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x43a41cf6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x43a77aec acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43aa4df1 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43b38346 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43ff02fb vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x4403ff01 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x441f880e tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL vmlinux 0x44274f01 qcom_cc_map +EXPORT_SYMBOL_GPL vmlinux 0x442d432b debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x4433d0f4 sas_ssp_task_response +EXPORT_SYMBOL_GPL vmlinux 0x44372d78 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x443d4740 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445a8ab8 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x445ae11a nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x445fc944 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL vmlinux 0x446049ac regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x44614282 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4468c37c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x447e4f04 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488695e clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x448e8448 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x44b38dbe irq_sim_fire +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cda304 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x44cdcbf1 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x44e9ace7 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x44f40015 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x4506678f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45134504 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4544c656 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4558c6f5 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456519c5 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x456c9553 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x457304ed netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4587a97d dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x45aedde5 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x45baa0c4 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x45d09957 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x45e29666 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x461bf0f4 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x462eec1d pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x46324973 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463acc1b virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x463b18ef nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x464b5a43 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x464f35a3 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x46592c18 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x465c56c5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue +EXPORT_SYMBOL_GPL vmlinux 0x4670e92b bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x468346d7 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x4685381b devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46935654 dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46d181a8 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x46e37d43 clk_rcg2_ops +EXPORT_SYMBOL_GPL vmlinux 0x46eeb1b4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x4703da77 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x471a8faa fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4736dcca of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x47380bc9 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4753ce93 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4755acd4 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477abd85 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x477c5447 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x477f49b4 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478ea8a3 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x47900bd1 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47a8cde6 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b7470c security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e2d24a devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x47e815d2 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x47eb1cf2 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x48014b53 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x4806ab9c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4823e1a9 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4834982f debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x4836c000 update_time +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x48536acb pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x4858a92b pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x4859a8f1 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48747e12 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x487fae24 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x4884bf4d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4889dbf4 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x488df4d8 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a5b877 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x48a67d73 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x48aa9d60 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48aaaee4 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x48abdbe0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x48b352a5 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x490dfd98 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492e6c9e gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x4937f2cd crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493b88f4 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x493d1fbb fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x494a40ce phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x495ab3ef task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x49666925 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x4976a710 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x497759d2 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL vmlinux 0x499a6831 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x499c76ad platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x49ba794b fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x49cbba09 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x49d517b4 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x49d5e4e8 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x49d9caa4 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f3f277 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x49fb92b7 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x4a0176e4 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4a03ebe5 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4a05c924 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x4a126431 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a48ae8f platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a765547 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x4a863622 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4a92c51d devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4a94e704 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aa31b75 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab0d522 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4abdbefb debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4ad24f3b clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL vmlinux 0x4adf9b99 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x4b12cf8d event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b27dda2 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4b2d65a9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b30fdeb ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x4b3b6124 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4b417218 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5991a5 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4b5a6405 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4b752b20 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4b9ce1dc usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x4bb01abc __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x4bc22402 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4bd4893a dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4bf1ea05 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4bfd9c72 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x4bffb6d6 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4c1ae19a of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x4c254b06 cryptd_shash_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c41e1da sas_get_local_phy +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c5f8ddb kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4c6966cc tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL vmlinux 0x4c8ac351 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c90fb62 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4c953f9f dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x4c961263 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4ca04aba __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x4ca2034b devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ca31623 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4cac69c2 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4cc93429 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4ccbe619 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x4cda0b21 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x4cddfbd7 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x4cec61b4 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4cef3d9a gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d081074 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4d0a98bc ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d2caf35 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x4d44d4b2 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5930c4 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x4d5bfd9f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d5f1492 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4d7b8a2c rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x4d84aa31 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x4d883b47 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8afd0e badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4d995ba3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x4d9bff88 sprd_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x4da85181 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4da9a7ca of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x4daa0e35 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x4daa1ba9 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4db30623 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x4dbdb767 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x4dc5b366 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4dc7b5a9 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dcb6ed8 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL vmlinux 0x4dd0042c acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4dd8f012 ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddbb611 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deac410 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4df38ecb bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4df63984 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e0cabdc pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e15d623 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x4e169bb7 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e28cff3 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4e301cf2 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4e32ebfb uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4a6064 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4e5f693f device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4e5fbbaa crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4e6f31e8 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e918269 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4e953082 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x4ea00ebd of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed2e53a dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x4ed8e7f1 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efba3ed phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x4efc33e1 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x4efc690b crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f05ef4e gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4f0fd913 sas_drain_work +EXPORT_SYMBOL_GPL vmlinux 0x4f11e934 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2f789d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x4f40594f fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4f4b8f92 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4f4e2e38 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4f57f34d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fb7cfaf blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4fb8b238 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL vmlinux 0x4fc50dc2 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4fd1cdad ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff3003f meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ff94d92 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50071916 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x500b8d6a pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5019bbca bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x5034bb23 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x50392bed __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x50406312 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL vmlinux 0x5062b459 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x50637cf6 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x506d38df pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50a7f585 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x50b62f4e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50c746b6 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x50c843e2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x50e07972 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f1f705 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5116ee48 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5129c027 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x512fd221 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x51427831 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x51452bc1 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x515207b0 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x517735bd of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5186e08c wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x518a0be0 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0x518bdc42 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5198e5c4 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x51a75359 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x51b8bf2e acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x51b8d58f dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51dc6fca iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x51e870c7 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x51fb21a3 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL vmlinux 0x520a29b8 split_page +EXPORT_SYMBOL_GPL vmlinux 0x521057ac of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x52108656 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52343d5b ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x5237fc46 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x524628c8 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL vmlinux 0x5250a9e5 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x5253f4c9 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x525fa3f1 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x528172dd switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x528577e5 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x528ddc36 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x528e79a4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x529706ab vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x529a72ba gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x529b36b3 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x529ce76b devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x529d1145 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x52abf813 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x52ad96a3 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x52bbacd2 simd_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x52d222c3 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x52d2ba92 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dc6361 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x52dea50e kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x52dfb618 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x52e3d251 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x52ec575c tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x52f7156a devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x52f83cb3 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x52fc262b crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x530aaef0 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x53140a2c blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x53197ac9 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x531c6ba0 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5357b796 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x53589d9e vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536e6f37 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538d559e lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x539283fd acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x53bfc0e6 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x53c0a89e usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x53d494b9 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x53e6d0bb vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0x53f5a985 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x53fbf217 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL vmlinux 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x541717d9 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542143ac usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54230efe vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x5424c425 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x544ce14e __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x544f57f8 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5459e979 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x5476e58c kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x54878033 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5490eca2 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a27f81 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x54b0e8ef pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54bcebd2 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x54cc59a3 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x54d8d668 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x54eaa8fe sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x55012bca kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x5502c0b9 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x55052250 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x5507c8d2 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x551f4ae2 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x5528c12a udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553912a3 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5551a84f bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55778908 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557bf2dc gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x5586be40 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x55948b11 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55a1cfea cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x55a822cd skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fe352a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x560146da __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56121fc6 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x561731d2 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x5622656a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56442f57 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5668ae88 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56762021 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x567b4fa9 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x568da380 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x569aba65 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x569d9933 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x56a22e16 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x56b07e61 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x56b24686 ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0x56b3a85c blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x56b94d85 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x56d3542c __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x56d3e1e9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e24c04 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f43b07 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x56f7d817 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x570d7554 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573bc506 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x573c3969 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x575038f3 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x5751251e usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x575b0061 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x575dc499 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x576aef86 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x576eae06 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x577d0cf1 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x578a91cd devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a37ac6 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x57b6b869 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x57babfb0 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57dddbb9 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x57f0e801 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x57f61737 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x58021cae clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x5807fd32 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x5821f1af blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582e64af clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584d4eab device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x584d802c devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x58521ff0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x585b24c1 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x58672b36 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x58795a8f xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58809695 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x589490ca regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x589eb2be class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x58bf37de pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x58c5aeb3 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x58cbe761 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58d648cd efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x58db5492 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f80359 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x590d621f simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x591645c8 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x592ff730 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x595a37ff pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x599308b8 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x59a44d53 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b38dbb blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x59b435e2 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eff098 hisi_sas_debugfs_exit +EXPORT_SYMBOL_GPL vmlinux 0x59f94c21 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59fe70a8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x5a0d800e regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5a30940f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5a40a8df rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5a88f0 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5a5c1479 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x5a65b302 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x5a6ac7da nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a71bbfc dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5a77ada2 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8bae52 phylink_fixed_state_cb +EXPORT_SYMBOL_GPL vmlinux 0x5a9d42ba regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5a9f979b fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab4a01a usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5ab80fe0 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x5ac6c879 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x5afb959e usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5b01ad67 iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x5b051f00 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b4949cd bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x5b4ae3c8 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6f398a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5b7a9288 ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5b928138 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ba52bb4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x5ba5d93a blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5baf52fc fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5bb8b477 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd6a1ec ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x5bd73d1f pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bda6f7d dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be88ca4 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x5bfc8a33 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5c053cf9 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x5c0638ce of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x5c1df331 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2e42eb register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x5c325f36 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x5c3360c1 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x5c45be55 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x5c49def0 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x5c4a9723 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c60b1b8 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c8d75ea usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5caeca6c device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x5cb22c9b pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5cc3be6e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5cdbadf2 mux_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x5cfb7b14 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d0f24db amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5d1079b8 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d27cd99 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x5d513db4 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5d529770 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5d5f07eb clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d7f9ad8 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5d86ba16 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5d9911e4 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d996eaf usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x5da04ef7 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x5da29fe5 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x5da48ea0 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5de4768b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5dec2919 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x5df6f97b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5e01a260 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5e06fe90 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e32451e each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x5e37df47 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e64d6a7 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e84b056 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5eac7cb5 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x5ebc8fd1 blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x5ec5c99f devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ec8edf1 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5eccc6c0 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x5ecdc8b3 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x5ed22dd6 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL vmlinux 0x5ed8f51e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5f0b991f dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5f0c1898 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x5f1cd751 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x5f207c6f __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f4e113d of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x5f5af533 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5f5d0a7b irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f666c74 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7b875a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5f80b68d ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5f819e4a perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f885ce0 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x5f9fab47 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5fa01f17 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5fa47e79 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc5882d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x5fcdd53c vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x5fdf59f7 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x5fea4a66 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ff0665d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x60016dd8 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x600319fe mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x600495da ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60180417 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x60217f65 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x60284033 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x60295eed invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x6032f9f8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x60380672 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x6061e51d tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x60628264 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x60734b04 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x608f2ca7 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609c80a1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60d7661b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x60da2d57 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x60e0fa73 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x611a75f5 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6124d96f usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612c559f device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x61322aee ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615dbe58 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6161923a dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x61656bcd fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL vmlinux 0x6175f8a4 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x617c5b92 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x617c8ee1 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61876435 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x61a813ee bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b8d142 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x61c7e1a0 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL vmlinux 0x61dcd3fb usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x61e990c1 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fff0b0 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x620f9b6d housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x62225937 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6222cd08 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623ebdea led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625bba40 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x625dffb1 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x6260a2d6 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x62625770 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626b76af kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x627ef968 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x6291b3c1 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x62a44a42 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL vmlinux 0x62a60b0d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62a68653 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x62ab6beb pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62dd1793 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x62e4bc66 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x62f20d67 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631d85d6 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x631e7f7b rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x63205b5d irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x63279e0e cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x632bd416 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x633f1235 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x634b57b6 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x6354fd76 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x6363e340 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x63650c4e gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x63718139 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63a166fc ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x63a51523 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d0a0fd dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x63d19243 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63eee2a0 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x63ef0f75 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x63f9f819 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x63fc2bd1 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x63fcbf55 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6407b808 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x64238e5d device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x64447760 clk_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64462f59 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x64519f27 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x6453da4e spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x64549445 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x646f2b2e posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x6489f692 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64a1d31d irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x64afa68e extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64bc960c decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x64be4804 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d4f13d acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x64d5766e bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x64f33681 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f66367 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x64fd4fc0 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x64feb409 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6505867b irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x650cda0d pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0x65199d90 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6529c81b sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x653458b6 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL vmlinux 0x653ab4aa debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x6557f93e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL vmlinux 0x6573bd81 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x6574eb60 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x658ddd61 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65a444e4 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x65b2ae08 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x65b9017f uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x65badb25 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x65bf4981 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d032e8 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65ebad36 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x65f131b6 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x66036839 cryptd_aead_child +EXPORT_SYMBOL_GPL vmlinux 0x66127c92 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663afa45 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663f754c crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x66489e5b clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL vmlinux 0x664c8250 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x6673e245 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL vmlinux 0x66a0c374 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66b2c38d subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d16b44 component_del +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e353b6 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x66e546cf ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x66fba082 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6726ee71 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6758abab anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x678773e7 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x678be255 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x678c7b57 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a0c814 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x67ab3ad0 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x67d1206f of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x67d77555 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x67da39ea devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67deac3a sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x67df859d pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67eb34fc pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x67ed1f5c direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0x67ef34a8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x68099f05 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x682c77ff tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x68386525 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x68415869 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x6854ee1a kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x6860bef9 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x6864e977 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6869c8eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x686d05cf pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x687d7edc dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6882c821 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689fd057 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68c9ef8f devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68d18ab2 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x68d86292 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x68e248f9 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x68eebc2a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x68f650c5 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x68fbd0c7 tee_shm_pool_free +EXPORT_SYMBOL_GPL vmlinux 0x690030f6 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x69143283 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x69144e0f fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69428050 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69447756 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x695f9e18 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697f9663 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL vmlinux 0x69845c74 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x698d8747 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x6991b4e5 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6995f043 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x699eb264 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x69a1fe35 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x69b0ddf9 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x69b16c4d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x69b8c51c hisi_sas_host_reset +EXPORT_SYMBOL_GPL vmlinux 0x69c344b1 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x69cf6c42 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x69d09949 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x69daa922 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69f081bc dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x69f551d4 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x69f58843 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x69f6d0e2 ptp_qoriq_init +EXPORT_SYMBOL_GPL vmlinux 0x6a0134d7 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a12a1d1 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2185e9 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x6a2d5636 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x6a309df0 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6a3fb4a3 sas_alloc_task +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 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6c8adf iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a7b752f crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa72db1 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x6aaa02eb probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6ac87595 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x6ad5b193 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x6adf027c spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6ae8c55f phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x6ae95cb1 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL vmlinux 0x6b02a1c1 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x6b137410 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x6b143cec device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x6b1db8a9 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6b288395 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b38c327 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47c892 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x6b563cbd pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x6b735f9f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bc015d2 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6bc4adc4 uart_handle_dcd_change +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 0x6bf32234 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6c0300db device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x6c0b40a6 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6c10975c rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6c140be2 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c431f2a platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6c476ade dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c55c696 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6c641b22 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6c641ca9 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c77d0df dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x6c82dbca virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c89781a tee_shm_pa2va +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca8a88d clk_pixel_ops +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cb9b181 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6cda9703 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6ce5b8d5 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x6ce725f8 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x6cedca7b irq_sim_fini +EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6d0a1ca9 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1ec75e pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x6d238577 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d395397 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x6d3b759d regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x6d690d24 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8f938a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6daf48e7 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc59568 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6dcb4752 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dcc5f43 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6ddd4fda dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6dddb6f1 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL vmlinux 0x6de5c1d2 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6de76486 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x6dffd71f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x6e091868 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e0b7fc9 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e32dbd6 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6e335006 tee_shm_get_pa +EXPORT_SYMBOL_GPL vmlinux 0x6e39bb21 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4066a1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x6e49228e do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4d0993 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6e5ccca0 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x6e5f9d0a transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x6e6626b1 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea53d62 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6ea58861 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x6ea810d1 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6eac6e27 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec6dc1d ptp_qoriq_free +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efd6e42 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1b5cf6 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6f253a8a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x6f35ea23 nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x6f36cc69 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6f4096de crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6f56f1ea security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x6f6688a4 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6f677904 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f73a853 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6f7bc437 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fa8ff2f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6fb98ee3 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x6fba76f4 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x6fd2d23b rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x6feb768f context_tracking_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff6a8ab of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x70014011 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7005976a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7035643d kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x7035f317 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x70690bdb preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70871097 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7099ba5a dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x70acbe35 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x70be3339 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x70c1a73c __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c77b81 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e5a3fc gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711fe376 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x71243f84 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7142079b tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL vmlinux 0x714c4425 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7179bc8d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x71808e53 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71938823 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71d7e417 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x71d8da14 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x71e82f6f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x720db3a4 nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x7216d9e4 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x72197499 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x721d2b6e devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x723a875d devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x723ce023 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x72578148 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x725b0976 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x72681ef6 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x726e59a2 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x7271eae7 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728e23f3 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x72a0812a irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x72afc2b9 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72b0f87b dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x72b341c2 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x72b74d8c sas_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72c2efbb aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72ec219b unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x730306dc genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x732c2adc __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7333c173 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x733e5804 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x73421cef __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x734d21f8 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x735c41c3 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73824dbc sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x7383585b dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x7385b430 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x738b689a blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x739d08b2 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a5b0e9 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x73ac183e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x73b24a5e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e54e33 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x73f8eedb clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL vmlinux 0x7404b809 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL vmlinux 0x7404ea33 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7414213f wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x74308690 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x743957d9 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743e57c3 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x743ea99b mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744a6c26 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x745d7e63 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7461d660 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x747834c9 xhci_mtk_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x747bc042 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b92652 hisi_sas_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74dcf491 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ee085e class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x74f77ef6 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74fd2ad4 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x750a75b7 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75383625 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x75487d99 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x755070a4 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x755ad59d of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x755f261e pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x756c3a4c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x757bee94 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x757fda8f devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x75811a0a cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x7584f984 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x7590a6e5 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7595567e crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75ac6388 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x75b5ad78 sas_phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x75ba3ee2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x75cc85e2 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e25ecc __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x760470f8 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x76229c1c __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7627690a ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x7661b03f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7663908a css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76849b57 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7688e408 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x7696e2a6 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x769a0e2c mux_control_get +EXPORT_SYMBOL_GPL vmlinux 0x769e593c vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76a5895a crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x76ce7cb8 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x76d9b139 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76efbed7 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x76f00200 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x76f6df1e lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x76fa7955 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0x76fbab96 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7708b673 clk_pll_vote_ops +EXPORT_SYMBOL_GPL vmlinux 0x771b2cb8 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL vmlinux 0x77225822 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x773444c1 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77359947 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x77411d8b regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x7746dfa1 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x77574b7e sas_request_addr +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7762a64b dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x7765b112 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7783a9af bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a52e04 device_move +EXPORT_SYMBOL_GPL vmlinux 0x77aaa2ed vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c76a18 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x77c96464 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77cdce69 tee_client_get_version +EXPORT_SYMBOL_GPL vmlinux 0x77e0c5a3 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x780a496a vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0x780b3b07 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL vmlinux 0x781064a0 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x782a6da5 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786c1ff3 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x786e9e2e crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL vmlinux 0x7880c861 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x78896313 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7890da90 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7895a048 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x789d84da udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x78a7b26a iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x78b242ca platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x78b431a7 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x78b9c520 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x78bb94a0 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x78de17b0 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x78f261b1 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x78f52527 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x78f97026 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x78fd5fe2 devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791c32a6 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7922e20b dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x7930796a gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7934f84e scsi_queue_work +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 0x7961f138 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x79714821 devm_of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79940513 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x79b9a341 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c1cd08 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x79cf65a1 dpaa2_io_service_enqueue_qd +EXPORT_SYMBOL_GPL vmlinux 0x79d73c1b regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e131aa pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a01e242 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7a14b474 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7a1a58fd event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7a1af073 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7a1c1131 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x7a27eeee dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x7a280f49 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7a3225b6 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a338635 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a3958fd pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7a522899 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7a5d0ee7 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a677e18 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7a68fa72 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a76d2e9 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7a771db7 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a9640e7 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x7ab0fb62 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7ab4997d crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad4d9a6 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7ad57adc gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7ae16adb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7af20a93 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7afdbd72 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b09ef44 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2a5dd5 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7b3b2689 dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x7b4c7f12 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b8301aa pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7b8b41ac nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bd25dd2 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x7bf47ff8 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7bf4f02d transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7bfb31cd inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7bfedd3b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x7c08d5f6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c13916f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7c166dae ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x7c1f21a1 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7c371518 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x7c3e52d4 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7c466351 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7c547646 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x7c77961a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7c79247c skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +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 0x7ca96bd6 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbda447 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7cc7d5bd dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd116a4 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceb0984 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7cf638e1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d2a57c0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d36bbbb ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5b6a4d usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7d5ec1bc fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x7d663e67 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x7d75fb89 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x7d76815f acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x7d79a8be ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7d8b8a5f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7da11b20 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7dc4cca6 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7ddd8f4d ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x7de53650 devm_device_remove_group +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 0x7e04e721 nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0x7e0a0cfd fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x7e48edc5 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7e494327 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7e55454a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8f6165 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x7ea2329d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ec0626d of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ed97299 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7edd32c4 tee_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7ee6a9d3 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef2fa03 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7ef577a0 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7efa177f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7f21d46f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7f24d8bc init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7f45b2a5 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f499ce8 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x7f6906ba usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x7f7196c4 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8118d7 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7f82faa4 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f8b21c2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f9c8bf5 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fb659ea devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x7fb94c2a of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fd58f0c ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7ff8c7e4 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7ff903df fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x800c1f28 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x800f06e7 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8012a7a9 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x80261a28 nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0x803a0dbf tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805b503e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x806f214b of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809098ae iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x80928d72 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80a457c7 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80b2579a disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x80b8dfe9 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x80c1aa3c __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cc0c39 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x80d4fb7a nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d6c25d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x80d97849 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x80da0241 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x80e0f895 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x80ee9b3c ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x80f0ca9e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81288681 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x8131df72 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8153f218 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8166382e devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816a7855 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x816eaba5 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x81718b00 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8174f6ed usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81791607 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x8185155c fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x8187889d md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b7c9fd cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x81d0f299 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81e27ce0 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL vmlinux 0x81f294d0 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x81f7f66b kill_device +EXPORT_SYMBOL_GPL vmlinux 0x81fb89ce vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x820660d1 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820af064 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x8218c7e1 clk_byte2_ops +EXPORT_SYMBOL_GPL vmlinux 0x822896d2 cryptd_skcipher_child +EXPORT_SYMBOL_GPL vmlinux 0x822ed144 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8237a6df unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL vmlinux 0x825d2084 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x8272bf13 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82a05b35 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x82a20ed4 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82b6639d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x82c17b49 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x82c39f7c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x82cd07ab inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x82d466db badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e39723 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x82e6f7c6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x82e77997 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x82f077ea hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x82f3d7a4 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x82feb81b nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x83069354 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x830973e7 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x83097767 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x830d530b ping_close +EXPORT_SYMBOL_GPL vmlinux 0x832897f8 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x832a1283 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x83310530 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83610d3d validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x836407b3 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x83654533 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x83731646 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x837bb46a ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x83811bbd qcom_find_cfg_index +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8396a732 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x83abd494 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8401eb1d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x840fbc12 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8413f485 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x84189e28 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x841b730d ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x84246313 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8435026b devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845e71d1 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8468ce8c vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x848772ee device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x84a5a64f blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x84a5e4ce pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84b8d3e9 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x84bbb75c ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x84e3d3ea fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x84f1eeb8 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x84f87cc5 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x84f9262c crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x84fbe0bb spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8504c7cd extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850bfa99 sas_disable_tlr +EXPORT_SYMBOL_GPL vmlinux 0x850c0334 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x852228cc raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85781e44 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x858a0c84 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x858f2123 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x8598d67b blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x85a017c8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85c213e8 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85f4d275 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x85f65135 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x85fbe738 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x860f8866 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x861d38ec clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86253f7e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x8625fba8 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x862b4e8a cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x863cf6d9 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866a3d7f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867e150a file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86885892 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x869083f2 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8694f658 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86e82b4e sprd_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x86f00858 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870aee49 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x871c44bb devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87226f0c ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x874ed431 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x8752040b devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x876b5af7 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x877eff51 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x878356ea arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x87955507 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x879cda38 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x87af5d4b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x87b6c4a1 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x87ba112a dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x87d1c846 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL vmlinux 0x87d1cb76 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x87e16f6f devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x880fbd15 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x881129fe virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x881de073 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x881efca0 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x882291ab of_map_rid +EXPORT_SYMBOL_GPL vmlinux 0x882bba81 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x88322906 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x8844262c rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x88536cc0 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL vmlinux 0x8869e4da devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8878346f spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x887cb631 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x88804cc3 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x888709d2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x888a08b0 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88927d7f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x889ec7d8 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88a7a468 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88f1e378 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8910d183 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x891343ab regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8956e1a2 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x895deb4a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x89687671 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x8969f5ce of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x896ac932 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x89847518 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x8988f638 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL vmlinux 0x8992219f crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x899cc1e8 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x899ce4b7 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x89a44f47 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d30712 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x89d8726e get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x89dc1587 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x89dd76c7 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e938ec led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8a119ad2 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a463f94 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a69ad19 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8a8456dd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x8a8dbd94 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8a8e3e83 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x8a8feeb3 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8a9927eb tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8a9e40da acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8a9ea5ec ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac41629 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8ad09acd inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ae0fe62 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x8af14c87 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x8af617da sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x8affce6c pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x8b06f1d6 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b158144 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x8b1869ea __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b28acda watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x8b2ddade phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x8b39a0a6 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8b40b079 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x8b4b24c1 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b4f68de irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b5a98cd shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8b6017b1 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b60d76e devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b660b61 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b7a393b efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8b80b351 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x8b944cbd __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x8b9a4c8c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8b9ed200 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8bbdfe31 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8bc6fff6 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x8bd78a4e acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8bdc9161 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8be0da32 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x8bf87b27 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x8bfbbd5a phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c15e751 nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x8c24f563 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x8c287734 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c76824f pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8ca17a11 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8caa3bb3 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x8cb1c5b3 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL vmlinux 0x8cc01c2a nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8cc05f5d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cc7fe6c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x8cc95ba9 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8cd89dfd iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x8cdbc748 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x8ceaaa8e sas_register_ha +EXPORT_SYMBOL_GPL vmlinux 0x8d0be94a devm_mux_control_get +EXPORT_SYMBOL_GPL vmlinux 0x8d10da10 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d261a7f blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4946e1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x8d72505d dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d73d5c1 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8d790f1b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8adebd bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x8da2c285 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x8daf7740 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8dc416aa regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x8dc595f4 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8def77f2 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8e12fe99 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8e378b88 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x8e3e0bde regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4badb5 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x8e4de38c regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7a686f iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8bc2ce perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8eaf7c12 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x8eb29254 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0x8ec0604b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x8ecb933c dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x8ed61dc3 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL vmlinux 0x8edc3f77 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef68436 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x8ef9b9e0 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f11054b fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8f16f210 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8f17c448 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x8f1994ac iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f25550e dm_put +EXPORT_SYMBOL_GPL vmlinux 0x8f2b2168 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x8f2cd3b0 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f4a2c2e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f69652e sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x8f6c2fb9 power_supply_unregister +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 0x8f801d8d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f90781d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x8f92ef97 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x8f9d4461 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8f9fa142 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8fab20e6 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8fb888a3 sas_free_task +EXPORT_SYMBOL_GPL vmlinux 0x8fc64b38 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x8fc8ce2b vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x8fd04974 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x8fd259eb cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x8fddf215 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x8ff4d73a perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ffb3655 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x9016c294 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9027089a pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x9034f336 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903c3856 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x903cb890 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x903cf648 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9041e6c7 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x905b5c5c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906f7cb8 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x906f7f2c tee_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x907a00e4 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x9081ee74 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x908580c4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x908fe20b cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90b0b2bf usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x90c6a075 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90c99011 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x90d060b0 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x90dc84ba rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x90ede581 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x911def65 clk_alpha_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x911f13f1 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9147bc65 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x915cef53 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x915d5486 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x91783be4 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x91918775 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x919425fd pv_ops +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91c33146 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x91c6cd6c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c8a9bf cryptd_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x91d62bcd tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL vmlinux 0x91da6c23 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x91e06443 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x91e310af bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x91e6273e phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x91e7a44a fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x91e8b1db spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x91ebe08a ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x91f5200f clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x920aaf57 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921192ea of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9219d40b of_css +EXPORT_SYMBOL_GPL vmlinux 0x921d5da3 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0x921e8abd use_mm +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x922aa39a xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x92350e8c alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x92386548 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92466c3e sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9263a1d8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x927109fe ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x927cdfd8 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x929fc844 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92cdf44a vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d55b5c save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92fe35e9 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x930306c2 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x930a7956 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x931267c3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93c2be07 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x93d01058 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x93d343d6 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93ed0501 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f04f68 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x9409b78f ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x94196fc5 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942b8426 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9433b1dc nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x9440b319 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9458d081 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9490e953 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94acd76a md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x94aee464 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x94c97283 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x94cfc2c8 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f1329f rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x94f140d0 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x94fa5209 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95076c16 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x951258d4 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95272a79 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953f8910 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x9544be47 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x9554f90a rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95624cac platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x95698ee6 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x9571931f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9587757c pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9587e17a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x958bf5db devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x958d2f20 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958e8ca6 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x959954b2 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a6a20d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x95ab72dc of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x95b10e86 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c5bebd crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x95c6fdf6 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x95cfb968 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x95e5f132 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x95edf66a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f31c34 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x960bed4b dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9624a10d debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x962955ee vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96593f38 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x967d7bd8 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9687e3ec dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x968d1da1 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x968e92ed rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969662f6 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x969fa2bd validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x96b45099 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x96b83269 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x96bc8b27 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x96e3ba7a sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x97129898 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971679a1 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x9723556a regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x972b3f97 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x9734543d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x973c4e62 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97578821 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x975f3767 tee_client_open_session +EXPORT_SYMBOL_GPL vmlinux 0x976228a4 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x9766c9dc blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x976f8756 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97809544 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x979df219 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x97abb93d ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x97b48626 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x980d0ce0 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x98125fa1 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x982b7933 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984e19dd kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9854826f regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9866825b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x98684255 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987cf0c4 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x987d3874 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x987ec285 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98999c89 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x989aba05 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x98b47b07 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x98b59780 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x98bb34fd nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x98d440ca iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x98d7ae5c crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x98eba5f8 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x98f220fb crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x98f360d1 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x990e9b57 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x9913c809 bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x991c8e72 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x99259ee9 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x99315ce1 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x99432215 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x99573dd6 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99647e61 simd_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x996b55c6 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x9973d697 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x997614d4 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99870250 dpaa2_io_store_create +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999bfe4c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99b8dd6f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x99be9830 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x99bf556c skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x99e62245 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f60998 clk_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x99f7858d irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x99fb2bde blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9a0e9445 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a11fc0d dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x9a249a0c devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9a2ba758 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x9a39143c fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9a3a0e14 devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0x9a3ddf19 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9a432cc3 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9a578e01 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a629f7e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9a659c19 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x9a8049cc clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x9aaa12dc nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x9aab02b5 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x9ab7529d rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9ab942cc pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9abe6236 sas_tlr_supported +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad7c074 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9add1aac extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9ae3ef6a tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9ae8bac3 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeb3692 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x9af0d547 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9b0a2da8 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b17eee3 hisi_sas_probe +EXPORT_SYMBOL_GPL vmlinux 0x9b2c2439 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9b2f3de1 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9b33e349 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9b4445d5 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x9b463b80 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b468714 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5eb42e simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x9b7aa4e6 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL vmlinux 0x9b88bf80 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b94be88 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba348d2 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x9bac027d tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9bc92a13 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9bcd6638 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9bce6aa0 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x9bda758b vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf4147e bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x9bfab58f ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9bfbba60 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c18a216 reboot_mode_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c32db3b dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x9c336736 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c38da31 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c4de58f regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9c4f0c4f gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9c69bb7f mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8038f5 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x9c8201b7 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x9c85e418 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9c867503 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c8d14d6 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x9c8dc950 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9c8f247b sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x9c92c242 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x9cb32992 clk_pll_configure_sr +EXPORT_SYMBOL_GPL vmlinux 0x9cbfadd1 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ce5a1f1 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x9ceb24bc nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0x9cf2922b lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d023e29 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0a3cc8 blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0cd39c dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x9d4015c7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9d552e52 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x9d58a736 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x9d6c59c5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9d6d34b3 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9d70c1fe clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d774a0d arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x9d8312c3 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9d833d8e clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x9d8b9c15 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x9d9ee227 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x9da0766c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9da2c8d6 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x9da7a5d4 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9daddbc4 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x9db8a8e7 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x9dcc93bf da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9deb4b4d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9df45637 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x9df77501 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e113232 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9e31cdf3 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9e368139 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x9e3c29e4 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x9e40f712 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e48313e tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x9e498370 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x9e6c2f77 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x9e84d7e6 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x9e90652c hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL vmlinux 0x9e910d64 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ea293fa kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x9ec3734f device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ec89334 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL vmlinux 0x9ecaf6b2 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edaef8a clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x9ee3f9d6 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x9ef9f82c kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x9f022aac blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9f2ee091 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f312866 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f4891bb led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x9f4a48df platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9f5483eb cryptd_free_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9f609a37 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x9f72743c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x9f75aebe rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9f77dd84 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x9fa84aef iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x9fbee786 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd4bac2 sas_unregister_ha +EXPORT_SYMBOL_GPL vmlinux 0x9fe5821a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9fe5b8ee kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa005f782 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa0204d4c dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xa042f052 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05cf662 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa0659b1c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa076d86a regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa076e20b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa08943d3 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xa0a1b3ac get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa0cbbff6 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0deac10 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa0e711f1 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0f59269 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xa0fca05f led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xa10b3f0e phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xa123eb01 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa12ea13c devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa13ad187 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1624c5f pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa17a0a5e serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xa1839eaf clk_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa18e4c02 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa1a90e55 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa1bbb833 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d687c1 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f326e0 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa210793e fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL vmlinux 0xa2161d00 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa221c904 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xa22e7a8a device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa23476db sprd_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xa2530046 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa25935d4 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa26adb6f qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2776c7c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa2a4da04 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa2abbbfe alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xa2de1668 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f180b6 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa30b7ef7 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa3212f29 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa32730e6 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xa34710a8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa3620344 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa368981b tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xa36da411 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa384792d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa3990e51 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3a802d9 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3cfad84 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa3db1c62 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f598c5 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa408ba04 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa4105fac crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa41b141c crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa433d69b inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa43ed79d securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa445f4e2 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44d4c91 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xa453e46b spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xa456117e phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa46179ec pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xa4805b0a dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xa481572e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa483a559 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xa48f0897 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa49ca7ad __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa4a0f683 sprd_comp_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4ab5aff acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa4af5bc3 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xa4b4faef acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xa4ce54c6 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa4e719c2 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f3f43a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xa5098514 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa50c4cba devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xa50e7643 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa50fc774 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xa510f644 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa511c936 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0xa525bfbe wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa536aeb7 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa54e92ec efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xa555eb27 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xa55c4be7 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa56a6d77 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa57a4435 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa57dbe5b dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xa5850546 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xa588fc11 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xa592cbb3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa5a1975e sas_enable_tlr +EXPORT_SYMBOL_GPL vmlinux 0xa5a5dad3 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa5b7c629 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d09b70 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5de5b7a kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xa5e39ecd pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xa5e9439e devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa5ef61e1 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa5ef8b13 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f6f81e raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa60e85ca ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xa61318d6 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa6304b1c regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa655a88a __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa66068ac of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xa660bde8 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xa662258f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa66907a7 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa66a0a40 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xa67b269b dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa68dcb77 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa69148bc virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xa6a3090f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b43104 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa6d51de0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e39bc3 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa7040368 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xa708b9d1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7260fbf regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xa7277434 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa72d2e5d desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa72fde24 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73c1621 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa7419308 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa7542e10 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa77e097c vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0xa77e3666 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa78d056a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa79ec99d scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xa7a38ad5 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xa7cf1cab devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa7d7d655 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa7d86581 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa7e344d4 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xa7fa8186 nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8058378 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa80bdbe9 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa811efe0 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xa821f919 clk_branch_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8242797 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xa8267522 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xa8267fe1 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa8363b05 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa8428285 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xa84bbe10 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851ccea phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa8526082 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xa863ad68 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa88c813d hisi_sas_sata_done +EXPORT_SYMBOL_GPL vmlinux 0xa8af6794 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa8b42db8 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa8b78008 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8db0ca5 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa8e6f336 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xa8eef312 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa8f89c11 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xa8fb58a9 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xa91008a6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa9200b2f of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xa921fc1a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xa9238402 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa92711ad rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9523a5a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa961e54a sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa96dc4d3 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa975d2d6 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa979cb81 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xa97a4dcc sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa98a9356 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa993ffa6 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xa99669f2 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9c4ae3b fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e2406f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa9fb103e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xaa004fb7 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa01eab8 cryptd_ahash_queued +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2ba981 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xaa56cf2d rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaa5a0b41 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xaa622c38 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa9a60d9 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa9bddd8 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaae570d2 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xaae977b6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaebc2d4 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xab01c8a0 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab339a34 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xab5998ba cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xab5cdca0 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xab6143ea __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xab642629 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6bfe91 input_class +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb59c44 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xabbf8b8d pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc7f9c0 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xabd2cdbf inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd53da6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xabf55ab3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xabf64730 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xac05f7bf tee_client_invoke_func +EXPORT_SYMBOL_GPL vmlinux 0xac1472ab ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xac1d2ca9 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xac3aa319 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xac5600b9 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xac58fe07 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xac5989ef usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xac5aae42 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xac5d054c of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xac6a5ed8 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xac768e52 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xac7c242e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xac89eb68 user_update +EXPORT_SYMBOL_GPL vmlinux 0xacb28a1d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacd4cca8 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xacd5b4b1 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xacda64bd iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xacdcaef1 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0xaced2116 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xaced7dde thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xacfd8fa1 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xad075697 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad1287f8 simd_register_aeads_compat +EXPORT_SYMBOL_GPL vmlinux 0xad1bb947 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xad3a4ac9 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xad416d3d edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xad4d324e __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6a5f56 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xad708468 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xad718104 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xad7484c2 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xad77a92c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad80f802 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xada160aa ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xada371a6 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada6f640 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xada72c75 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xadc812d0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadd8b3dc setfl +EXPORT_SYMBOL_GPL vmlinux 0xaddc44d0 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xaddc819d pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xaddfdacf sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae02cce6 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1b1a7d pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xae2c6b75 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3d02c4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xae414e3e regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xae48f8ba fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xae59e4eb dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xae5bf0d4 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xae5e28a0 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae72cb13 regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae76acfb ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae7b68e5 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xae8a4cf5 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xae8c866a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xae995ec5 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xae9f2e80 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xaeab7cba genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xaeae2376 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xaeae8338 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xaeb048f4 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xaeb83922 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xaedb084f blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaef5c234 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf18b3fb phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xaf2678ca dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf44a5af scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xaf4c6435 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6e4388 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7b256f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xaf80c2d3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xafab0ace __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xafab1f72 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xafb6bac7 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xafc8654e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xafd72dd3 pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xaff750a8 get_scpi_ops +EXPORT_SYMBOL_GPL vmlinux 0xb026eacc __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL vmlinux 0xb04bc48f device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb05eb90f dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xb0649206 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb07409a7 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07959a3 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xb07e3a45 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0af0bde ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c5b8cb devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb0caa8e4 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d528ca nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0xb0dbe6f6 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0xb0f31cd8 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xb0f8adcc sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xb1037d38 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xb1090168 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb11eb670 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb125e543 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb1668d73 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb1743bf5 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18cb9f6 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0xb19bed44 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xb1ae6fc2 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb1bbadac of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d62f6b clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f162e8 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xb1f6c85b spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb21d31f0 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22326d0 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb225c1b7 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xb231d41d sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xb2331a1a ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xb23a3c27 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24afa0e ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb24d5127 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb278f65b dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb28c731e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29c3b89 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xb2d7efd6 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xb2d9de1f ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb326d15a __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb334681a sas_target_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb387fa30 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb3a092d3 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb3b2574d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb3bf30ae devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb3c34bef shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0xb3d1871f regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb4087015 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xb4095ade dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb4131ede efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb42c760a nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb4692847 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xb4796d57 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb47e49b9 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xb49d31a8 bcm_qspi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb4ac74ff pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4d5fad9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ecd113 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f5356b blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb510e7c7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0xb519cc4e blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb558ca68 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xb561a43d usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b2e960 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xb5b32a4a bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb5b37879 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5bc9936 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xb5c2acbf ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xb5d4102d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb5d7da42 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xb5da544e regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xb5e2aee8 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb5ece91e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xb6010b04 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb61f0db1 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6396a77 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb653fdcb acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb65b70cd udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xb663e10d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xb66a7de4 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6799ff2 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb697af38 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6ad0aeb ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xb6b44a1e pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xb6c5dac2 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb6c64f1e blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xb6d2beb3 tee_client_open_context +EXPORT_SYMBOL_GPL vmlinux 0xb6dce8d8 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xb6e11eb7 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb6e55313 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xb714d9f1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb715134b iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb71f715d nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb72a58fb acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb739c32a md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb7476ab0 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xb751fcae mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb75a72b0 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xb7796c4d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb78382a5 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xb7897a9a devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xb79c9f1f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb7a9980f sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb7c29fba usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7ccd740 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7d97f85 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb7e3df97 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb818d07b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xb81d2869 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xb8205166 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb826514d mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb83dc46b acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb83e3595 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb843bee3 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb8488fe6 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb85f1aae ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89ddb18 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a0b527 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xb8b1c6b5 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb8b6b6be cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e2db47 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb8e9b9f0 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8fc3375 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb909dfbe msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb92ac8f3 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb92eb114 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xb93f4315 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xb94047da pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xb94842d8 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb949e9b0 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb94e28df crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xb966799b ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb98090e8 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb993e715 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL vmlinux 0xb99e01d1 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c27ee9 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e51852 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb9e72b5c udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL vmlinux 0xb9eff1f5 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xba1f0112 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2f48c5 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xba37be94 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xba3b08f4 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xba3c31ee __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xba5cb99b of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xba601474 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xbaa7c5bd gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xbaab4a6e sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xbac46071 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xbadd9b4f zynqmp_pm_get_eemi_ops +EXPORT_SYMBOL_GPL vmlinux 0xbaf3d24b tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb00a31b srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb08390a devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0dadf8 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xbb1606a2 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xbb1a020d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb23ee9c ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb28857a dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbb5a4f8b dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb5aeccd mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb628198 clk_register_fixed_factor +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 0xbb81befc __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xbb880409 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xbb89db4d dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xbb8aeacc sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb912f4e rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbbc5203e iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xbbd17b21 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xbbe74972 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc05a11e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xbc17859d get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xbc41a340 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xbc5b538c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc922c19 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbfff13 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd6d3ce ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce43b98 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xbcf07af1 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf59737 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xbcf7b05f device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbcf93da4 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbd0bf198 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xbd270bde crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xbd39b909 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbd3c6480 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd564f1f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbd58fa76 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd66eab4 cryptd_free_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbd808812 tee_client_close_session +EXPORT_SYMBOL_GPL vmlinux 0xbd96c7d1 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xbd972b4d ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbd9c1c87 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xbdb05ba5 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xbdd1308c virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xbdd5d94a dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xbde5072e dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xbdfb379d vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbdfc45fe ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe02565d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbe151b16 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1be6c6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xbe268030 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe28912c of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xbe4b4276 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xbe4c0c63 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe4c481f nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe4f67e7 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xbe5172e6 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xbe518151 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe773d8e is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xbe79dda0 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xbe7f71c2 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xbe86295b vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbe91212d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9cb78a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xbea0aaa6 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbead5dc7 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbeb85f83 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbece7a5d kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xbed8069f gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbee36f63 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xbefe3db3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0d6711 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf2494ae kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xbf31a707 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xbf4f482a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xbf641a8f do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xbf6c0b81 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbf75d11c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xbf780d85 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xbf89f844 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xbfb1b312 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc33265 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbfc84c95 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xbfcad9c9 put_device +EXPORT_SYMBOL_GPL vmlinux 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL vmlinux 0xbfd78823 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffdbbb0 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc015f6e7 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc0164527 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xc01ad702 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0326297 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xc03561a5 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc042485d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc044b752 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc04b8aa1 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc0506723 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc0624cb4 sas_domain_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0xc0657d26 device_register +EXPORT_SYMBOL_GPL vmlinux 0xc066c16b sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xc0703f79 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0968594 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xc099be31 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xc0a34551 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0cb5d28 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xc0d88cd6 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dd0505 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10403c5 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xc10dd0a0 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11207ef irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc11eed0f dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc1396d31 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc13c627d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xc149ba66 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xc151ed9d crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc16a33bd pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xc16e02cb nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc173db38 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1864e8c sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc1868024 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc18d113f path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xc190ea18 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e676e9 ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0xc1e85381 hisi_sas_free +EXPORT_SYMBOL_GPL vmlinux 0xc1f274a1 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xc2021ef5 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc2146898 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc21e2df2 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc259d0d9 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25f60c8 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc262e1ec phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xc265521f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29ffeda sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc2a3d0f2 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a5b4af unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ac2e3c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xc2bb3615 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d8e298 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e029ed to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xc2eb8d46 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xc2ef39bf irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xc2f55426 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc2fa6dd3 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xc3018869 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xc306d455 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xc3158393 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xc3216b82 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc32df785 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc3337eb7 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xc333f705 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc33b39f3 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34dcaf8 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc39af847 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xc39cb13a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL vmlinux 0xc3a4d89e fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc3a796d0 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3e86465 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc3e8bb5d led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f486e0 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xc404c465 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc4112b49 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xc411a03c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xc417539d iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43d77fa devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4458fac fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xc4544560 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc46e1f42 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc46faf8f ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc4893b02 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4a803c1 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc4af6b29 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc4afa513 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc4afe75a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc4b0b650 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xc4bb0657 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xc4ce2607 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc4d4b8dc sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL vmlinux 0xc4d54432 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc4e4a915 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xc4eae733 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc5285831 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xc53aea9e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc53dedaf __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xc559c527 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc55e38cb tee_shm_get_va +EXPORT_SYMBOL_GPL vmlinux 0xc55ee99d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc56868c0 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc572874e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc5801c30 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xc5829698 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc598a9db qcom_cc_really_probe +EXPORT_SYMBOL_GPL vmlinux 0xc5a22626 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc5db2122 vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0xc5de9a28 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc5e770a1 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc60de9c6 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6236fb0 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc629336f pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc62ac510 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xc634ae7f spi_async +EXPORT_SYMBOL_GPL vmlinux 0xc63851ca dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xc63be818 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xc640e8d3 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc6454007 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc64c4fe4 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc6613c82 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xc66557c3 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc68135da component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xc688f9ed bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a00bf8 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6bc1caa tee_shm_put +EXPORT_SYMBOL_GPL vmlinux 0xc6c088cb __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc6cbc6c5 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xc6e2e89f fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0xc6f66484 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc712a39a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xc71497ac zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xc719191f virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc72c20b1 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xc7320861 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xc7456408 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xc75d9f52 sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xc75f38d3 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc76eecc3 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xc7740045 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc78100cd clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL vmlinux 0xc79413b2 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bd09a5 hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xc7d4e3a9 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xc7d579cb pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc7e02a5e pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcafe6 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc821adaf cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc828067b devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8401b0a gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc84d3894 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xc851f352 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xc8551db7 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc8598436 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xc860f286 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc89c7ebd crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b7120b iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xc8bb5fb1 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL vmlinux 0xc8bca2c3 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8be92f0 pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0xc8cd0500 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e2e465 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8e9aafd lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc8f08353 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc8fc17b9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc8fe5542 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc90bbd3b gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91f78d6 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc9250e85 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc93cc546 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc93fec0f kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9592929 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc975168b devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98e0819 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xc995cd96 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc9a6afdf crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc9d70937 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xc9d751ca usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca08d8db pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xca0b534c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xca1a17f5 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca44093c tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca49bb33 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xca5ec18c __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9a4f22 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcadae496 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xcae404ea ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcaf76c0f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcaf8e692 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xcb0bd9f8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcb16f340 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcb1a2d6e ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1dc3a6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb1fb70e devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcb2b39f9 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3e8790 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcb4501b4 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xcb4857ce usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb486f0b device_add +EXPORT_SYMBOL_GPL vmlinux 0xcb4a2a49 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xcb5439fd ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb5a5f92 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee629 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xcb670ff1 ptp_qoriq_enable +EXPORT_SYMBOL_GPL vmlinux 0xcb7441e7 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb837eef rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xcb860807 devm_clk_register_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb8a8def debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcb8c8948 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xcb9b348c pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xcbc7bfb2 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf24aea fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbf9b673 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xcc043980 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xcc135f77 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc232021 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xcc249ab2 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc7cb517 hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc963962 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xccc2b431 clk_trion_pll_postdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce7e449 mux_div_set_src_div +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd17672e devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xcd232a95 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4145c3 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xcd48245d nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xcd4a75a4 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd4d1578 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xcd4d6f47 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcd5aa40d of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xcd5ff864 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd75ca7b cryptd_aead_queued +EXPORT_SYMBOL_GPL vmlinux 0xcd78d676 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9be9ac rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc700ec rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde08b3e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdeae258 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xcdf517a7 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xcdf65ac5 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xce130c7b ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xce6657d7 qcom_cc_probe +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xcea0f0b9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xcea3385b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcea3b6cc phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xcead1006 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xceb18498 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec26b4e qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL vmlinux 0xcee01b2b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xcee0632c driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef2204f of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xceffa9c8 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xcf03af10 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf0be73d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcf1ca270 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2ad428 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xcf34f3f4 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xcf494583 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcf4b5af0 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf66908a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcf6a8e9e iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xcf7aa2ff lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xcf851290 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf97a218 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xcf97fea4 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xcf99b7ca __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xcf9a2611 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf9ad935 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xcf9c70e0 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf9c7177 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcf9fd469 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcfad7cd3 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xcfb3e30f tee_shm_pool_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb7403b __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xcfb912e2 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfdd862d rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xcfe0c218 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfe63683 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xcfe9b289 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL vmlinux 0xcff377f6 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcff9419b register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd02334c3 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xd0320975 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xd03cf8ea blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04edffe kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xd0503cab kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0702945 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd075ad01 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd0787830 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b6dba6 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cb8ca3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d453a0 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0f1f0b4 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xd11b4977 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xd131b979 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd13a72bd shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd14051ed vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd147f7bd regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd153523c of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xd153cc59 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd173c81b gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xd17ee3e8 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xd17f2400 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1876e9c fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd188010b crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd18bf3ec da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd191d409 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xd1a6500a blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xd1ae22ea nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd1b946cf dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e807ad pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2130c60 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd23f36a7 ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0xd24b61f6 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25c78b8 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xd25ef072 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27b12e7 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd2b10011 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b5aa29 rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd2c609ef xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2cacf7b rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd2cf0a16 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d1dea9 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xd2dea979 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd2f9bdaf crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd2fe7e52 cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd302d573 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd31a5997 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xd3255d8e ptp_qoriq_gettime +EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xd32fe290 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xd32fec8a ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xd33b4b1d tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd33e8ad4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3473d5c of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xd34e43af pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xd3503f57 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xd35c074d gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xd3619ce2 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3684b25 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd374ac25 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3913559 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a36ace clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd3a7639e devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3b24915 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3c01060 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xd3e5999f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f87b7a devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd403a2a2 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd416b06c pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xd422f153 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44f3652 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4a9047e scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd4ac22ab ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a4a5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xd4bed03e fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c2c7f4 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd4e9d837 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd4f1980e rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd4fa3b3e ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd528f1a3 cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0xd54b5d36 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd576bdc9 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd58b7553 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd59b92b6 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd5a1ff6f gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xd5a87250 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c65a2f pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xd5c8e306 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xd5d20ed2 mux_control_select +EXPORT_SYMBOL_GPL vmlinux 0xd5d26b4e _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd5d952e7 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xd5e26054 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL vmlinux 0xd5edfbc2 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd5f1b62d cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0xd5f3edaf __class_register +EXPORT_SYMBOL_GPL vmlinux 0xd5fa5803 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xd611d062 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xd6489896 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xd64bf72e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd665cfae devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd66808ce thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd671588a iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd677648f thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd695323d tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xd69c3670 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd6c4b6e0 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xd6d835ea devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd6edbcf8 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6f5035e gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd6fd48b1 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd7249404 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xd72e5b83 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL vmlinux 0xd7379c94 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73cd92e edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd742f0fa request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd7720106 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd777aa7c extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd77db050 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xd784839a netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xd793d0f0 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xd7b58b06 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7ce0074 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7ed74dc acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xd7f68193 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd826df48 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd84b9dfa sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85161a1 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xd853c657 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xd85478ac kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xd85e6dd2 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd8761408 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8807d81 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xd89a4daa irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xd8a09180 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8d0da6f sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xd8d782bb pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xd8d7c43d __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xd8df5be5 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd8e0c23c crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xd8eced1c synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xd8f1a21c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd8f73360 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fc3e8e qcom_find_src_index +EXPORT_SYMBOL_GPL vmlinux 0xd90a4966 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd91e72d7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd91f37cc pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94ed2f1 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xd94f1e84 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xd951228e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd9632708 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98736ed pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd9a4798b fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL vmlinux 0xd9c1a4ab irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9d0390e cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9efa6e2 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xda15b634 clk_rcg_ops +EXPORT_SYMBOL_GPL vmlinux 0xda167ba3 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xda270bff fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xda2e91fd vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0xda35a32d clk_gfx3d_ops +EXPORT_SYMBOL_GPL vmlinux 0xda3ea663 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xda6021b9 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda697710 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xda7896a6 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xda7984ff dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xda927878 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xda96144c security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xda967930 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdae57bc9 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdb042217 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xdb050a7a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdb0a7990 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xdb123d59 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xdb1d0e64 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb2a7059 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdb40bfc3 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb4440c4 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xdb52381c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xdb572d5a sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb687f64 clk_branch_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb6acf61 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb877d64 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91f06d ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb949ad1 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdb98553d rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xdb9b96c3 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdba09993 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xdba67dc0 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xdbaa523a register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xdbaaee36 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdbb3012c iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0xdbcb5be0 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf8dbaa device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc015ad9 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xdc0599b9 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xdc19c2b6 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xdc23820b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdc2ccb2f kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xdc31b1b6 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc32a243 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdc3dee9a aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4af3c9 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xdc523a94 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xdc537f8f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xdc63eb82 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xdc64e6f6 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc67132d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca028b5 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xdcadf4e9 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL vmlinux 0xdccd03e5 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova +EXPORT_SYMBOL_GPL vmlinux 0xdcdb7ebc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd18f823 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xdd2cf3e0 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd43293c __class_create +EXPORT_SYMBOL_GPL vmlinux 0xdd4483c3 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdd48beea bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xdd4e785d tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xdd5faf8e xhci_mtk_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd7e2cf0 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd7f64f0 cpu_logical_map +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd87939c bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xdd9205b3 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdd9bf739 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xddaa2ab2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddda8d1f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xdde26667 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xddf61c22 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde277b43 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xde28592a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xde45bdf8 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde725296 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xde79fced d_walk +EXPORT_SYMBOL_GPL vmlinux 0xde7a07e3 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xde7d8748 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xde83ea4d usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xde8e70ff __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xde9020bc pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xdeafefd9 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xdeb23efd nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdeb54e3b __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xded0496a sas_alloc_slow_task +EXPORT_SYMBOL_GPL vmlinux 0xded1ff8c fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xded8d792 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdeeec826 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xdef661a5 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdf0275ef pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf173543 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xdf18fe28 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2ce190 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf30b5e4 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xdf36ac93 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdf3d5c92 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xdf44ea6b pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf4f688c sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xdf5ae591 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xdf65fce4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdf674942 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf7a2c18 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xdf7dd888 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfa7c6f2 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdfb298a5 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfcf69e8 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xdfd93746 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0xdfdba1a7 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdfe29722 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xdff47746 __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xdffb3a0b dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00d769c devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xe027170e kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe02fea11 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xe037666e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe03be116 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe03d11ae extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe04db910 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06a36df devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0xe06d45b3 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe071e744 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe07e5cb0 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xe099aece ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe0a096b9 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0adc9fc regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c449d2 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe0c7e9c6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe0ca283b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe0ca913c iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe0cfdb22 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0e61869 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xe0f081e6 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xe0f268b3 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11ad7d6 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe12d3830 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe186571a tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1896af5 mux_chip_free +EXPORT_SYMBOL_GPL vmlinux 0xe18d33c9 hisi_sas_scan_start +EXPORT_SYMBOL_GPL vmlinux 0xe1918ae3 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ab5ade usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe1acd5ba pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe1b48258 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xe1b713d2 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c79a34 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xe1ccb898 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe1d41ad4 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe1dbf83c software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe1e41dae serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xe1ea526d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe1f49751 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xe203c2ba usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe204a08e relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe2091e19 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe20b3f08 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xe20b9650 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe20f7cf7 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2223def kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe238d51b nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xe2423cb4 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xe2446fe5 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2497f2c pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe2514f24 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xe26e4296 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xe2705b23 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe275bcc2 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xe2954ceb wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2bf54c7 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe2c7fbd0 nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe2c8a333 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d4eefb pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe2d50e70 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe2ee1326 xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2f6543f rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xe2f93a16 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31665f5 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe322da3f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe32583f4 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe34d718e udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0xe35cf7f0 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0xe35f7d04 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe371312e tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a2ba81 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3aeeabd devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe3b34b5b clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3ce387b crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xe3d5101e teedev_open +EXPORT_SYMBOL_GPL vmlinux 0xe3de09c4 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe3ebf9bd arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe3ef4be8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe3f485ff ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3faa3f6 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe3fb9516 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe414a37c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xe41c041a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe4224bef mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42b726b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe42e81db bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43575ed fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xe455521c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe45b60c7 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe494d6b5 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49ade54 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xe4a6d1cb acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b06fb4 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xe4b66b3d ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe505cd31 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xe523201f user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe5236d41 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe535e3ad rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xe5503b3c regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe5538557 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xe55aa7f2 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe55fef0d regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe581f114 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5929eca pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe5a1ea4f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe5bc1f18 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5c38261 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xe5c80d76 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe5c94a58 nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5d17dc0 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xe5e322af cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe5f4e9ac __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe644a9a4 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xe6471c63 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xe6547d02 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe66bbd30 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xe67d28ea nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0xe6903db8 devm_irq_sim_init +EXPORT_SYMBOL_GPL vmlinux 0xe6946eb0 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xe69b8854 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xe6bdc136 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xe6e0b15a xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xe6e10220 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe6e3e018 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6ed5a2b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f598cd init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe706d97c gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe71f4e40 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xe737c1ff spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xe73c9d28 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75a5858 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xe7675a4c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe77e06ae blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7850af8 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xe7972d0a phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xe7977f37 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xe79c8a3b ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe7b1b31d mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe7cf6d9f regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7da23cc __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe800d581 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe820f944 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xe8220268 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xe831acf0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe841629f ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe84eb1ce unix_peer_get +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 0xe86443c6 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xe86d7a3b ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe8866a1b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe890f98c blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xe896e52e power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8da670f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xe8e1fd69 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe90235fa devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe9231b28 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9281915 skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe93ed698 bcm_qspi_remove +EXPORT_SYMBOL_GPL vmlinux 0xe9464731 tee_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe948d9ef firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xe95aa156 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xe960a3c8 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xe96360ff page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe97da35b ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xe998de25 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xe9a8b73c __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xe9c68dd1 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xe9c9db98 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e3ca85 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xe9e40437 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe9f0eb36 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xea0269b1 generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1b6d79 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xea3b1948 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea888324 fsl_edma_disable_request +EXPORT_SYMBOL_GPL vmlinux 0xea99a8ea fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xeaa985eb mux_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xeab2a58c ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead57b7e pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaeb0e1b devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeaf8a5dd dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb3035b5 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb3f8466 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb4a812a of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xeb5fb798 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xeb626f16 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xeb745de8 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xeb7c59b0 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xeba92a88 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xebaa0ba1 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xebc7b595 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebda5e35 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL vmlinux 0xec174c8a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xec35630e regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0xec39174b irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xec396b6a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xec3be8e4 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xec414488 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xec51bff0 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec98429c usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecbc0f79 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xeccd223c debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xecd1af88 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xece77b20 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xecedc5d4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xecf455dd gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xecf86a91 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xecfceddf edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xed154765 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xed1ae53d devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xed311ad6 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xed39f375 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xed3cf4cb skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xed45a695 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xed5b9b8a crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed7fb1e6 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed9211cc find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xedae4551 mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0xedafc238 ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0xedb039dd tee_shm_va2pa +EXPORT_SYMBOL_GPL vmlinux 0xedb12e48 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xedb2176b srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xedb88aad rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xedb8b49a rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xedd09114 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede3cc4a nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedec4c0b usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xee046187 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xee050b1b pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xee142ee3 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xee1ee669 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xee327fc3 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee49fc3d meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xee53577a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xee6aa951 sunxi_rsb_driver_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 0xee6e9e6c gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xee782f7b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xee783df0 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xee8d5b3c udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xeeb977c4 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xeec3c696 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xeedbf4b4 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee4845d ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xeee4b90e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xeee70aea vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0xeee894e6 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xeef7eaad usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xeef9a52c pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0xef0d203f blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xef148867 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xef1e082c nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2d5d8f power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef404820 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xef444d03 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xef45befc of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef552eb3 tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0xef6a0edc clk_alpha_pll_regs +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d6562 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xef6ecaea efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xef7a2291 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xef89e07b crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9f0ca1 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb07443 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xefb7fcdf of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xefcb523c iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xefdf5d25 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL vmlinux 0xefe91a07 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xefe98c0b crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefed75fd wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf00fe3bd genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xf0336246 sas_queuecommand +EXPORT_SYMBOL_GPL vmlinux 0xf0368862 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf03e06e8 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf05b4af8 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0xf063af50 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf067c1d7 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf07ec30b crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf0905ee5 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf0991f30 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf0b26cae fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf0b51825 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf0becdf4 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0c70307 trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0xf0d0044f of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xf0fc69aa cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xf109e787 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xf111f342 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf119307b __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf11f5a09 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf1201bc3 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf1217af4 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf148e0f6 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf156a580 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xf17bad66 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1806802 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf180ee04 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL vmlinux 0xf1811c7e of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xf183d349 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf186c31c fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xf196beb5 clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL vmlinux 0xf19bfd96 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1bffb6e noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xf1dbbd83 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xf1ed90ac devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xf1fc3713 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xf216d787 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21fc1df dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xf237d0f9 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf24e8323 acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0xf28b2aca dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf28f847d cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xf2906931 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2b29bd0 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2cb5832 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xf2e84d50 skb_scrub_packet +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 0xf32c77da crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf34231ae gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf367553a nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xf370a501 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xf37590f1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xf37d2f3a flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf384dc08 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf3927def phylink_create +EXPORT_SYMBOL_GPL vmlinux 0xf3991e09 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xf3b20a31 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b81233 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c427f4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf3cac75d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xf3df3565 tee_shm_register +EXPORT_SYMBOL_GPL vmlinux 0xf3f26cd8 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf408fcb4 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf40f2802 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf4330728 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf441d5cf device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf448da3e edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf44e3852 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf4503735 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf45dc6d2 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf4717907 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL vmlinux 0xf475205a ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xf48a7696 fsl_edma_tx_status +EXPORT_SYMBOL_GPL vmlinux 0xf49ef024 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4af73fb securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf4dc0c64 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf4ded317 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xf4e821d2 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf4e8b9a7 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf4eede67 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fe02be pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xf5097d97 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xf50eae59 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xf526bb42 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf534bde0 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c34a3 hisi_sas_remove +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5538dc3 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL vmlinux 0xf5797eea rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf57bb331 hisi_sas_init_mem +EXPORT_SYMBOL_GPL vmlinux 0xf57ea137 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xf59d643e of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bf973f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf5c89893 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5cbefb3 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5df16bd md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xf5e988a6 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf5f34420 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f971bf __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xf60e8a0e __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf612d8dc iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf61d6087 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf64ea06f irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66ef168 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf67b782d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf69959ca add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf6a1e35f regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6abe360 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf6bdd430 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6be1ea0 fsl_edma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf6c6f2cf regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xf6ca4220 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf6e1439e nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e84614 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ef75de dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f8bdd3 mmput +EXPORT_SYMBOL_GPL vmlinux 0xf6fb02e2 kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7374607 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf743f216 nf_ip_route +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 0xf7612d3e tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xf7770f5d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xf7800c7d device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf782031c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xf79b5f30 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7a6b1a5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf7b96bbe cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7ddef26 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf80be0dd debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf8125c17 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf8176a15 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf830f1b3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf841d4da pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xf8481ab3 nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0xf849ec19 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf864279b __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf86af73c of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8a04a76 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf8a62385 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf8b69d99 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xf8c3d754 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf8c6bc5a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf8dde9b9 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf90270a9 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf930b2c6 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93a7eda pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xf94269df input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xf946e5c3 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9559bb3 sas_slave_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95a50b6 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf95ba4f2 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf974eacc trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf975f137 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a920db of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xf9b8b499 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xf9cbac39 cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf9d1b047 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf9da29f0 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfa08d80c scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa30357f dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa36a14d devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfa450d62 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa614572 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9180c9 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xfaae9bc7 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab6801a ping_err +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaf437b2 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xfb01ab1e bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xfb0d86a8 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfb1be2ee component_add +EXPORT_SYMBOL_GPL vmlinux 0xfb281f8a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xfb2947d0 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb34bc2a devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xfb54f7d5 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xfb569d1d usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xfb56e8cc udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb8bd08f netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb9378b2 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfba4a593 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xfba4fb83 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfbaa3128 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfbb73385 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc3335c kick_process +EXPORT_SYMBOL_GPL vmlinux 0xfbdf75b7 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xfbebb4af nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfbf52299 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xfbfd1fe2 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfbfea331 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc062a05 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1c4626 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2e5392 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0xfc3762c1 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3c1945 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfc458020 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xfc4590e5 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xfc466c08 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xfc4fcf79 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfc5692d8 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xfc5f3b8a nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfc654405 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xfc6886bb of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xfc69b487 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc7bd296 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfc80df51 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfc98a742 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xfca4ed64 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xfca7b0fa ptp_qoriq_settime +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfcad90a3 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcae688a transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfcb1b608 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xfcc18463 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc945ed irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xfcd705a6 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xfcdb87e3 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xfce51973 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xfd01b66e iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xfd16cf2e nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xfd26e0cd trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xfd2a344f pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd308256 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xfd326c9b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd35bd00 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfd6c7ebd genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd73833e device_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd77226a udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xfd880a0c rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xfd8aa65c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfd93a115 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfda65dd9 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdda49ba vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xfddedfc8 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfde568a0 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfdfe9d74 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xfe04b590 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfe0c0322 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0fc0a9 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xfe1e5749 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfe21b1a8 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xfe2ba1d8 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xfe2c1b51 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe32ddf4 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xfe34958b dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xfe38410d find_module +EXPORT_SYMBOL_GPL vmlinux 0xfe38c73f irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xfe412579 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4d63d2 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xfe5153dd md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xfe66dfbb ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe869632 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfe98f62c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9d1064 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfe9e7ff1 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xfea4e66f irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xfea82ca2 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xfeb80e3c fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0xfec3694f paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xfed449d1 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfed6dc4e genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef4a6ba register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff14e82c strp_done +EXPORT_SYMBOL_GPL vmlinux 0xff18d8a3 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xff247ba7 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2b608c fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xff52aba0 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff867e66 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xff8694d8 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa58cca phy_put +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc5a4bc xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xffcec487 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xffdbe53a spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffe6ad36 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfff48399 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL vmlinux 0xfff61f04 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfffb8ea8 gpiod_get_array_value only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/arm64/azure.compiler +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/arm64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/arm64/azure.modules +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/arm64/azure.modules @@ -0,0 +1,2068 @@ +3w-9xxx +3w-sas +6lowpan +8021q +8139cp +8139too +8250_dw +8250_exar +8250_men_mcb +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +aacraid +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adv7511_drm +advansys +aegis128 +aes-neon-blk +aes-neon-bs +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +amc6821 +amdgpu +analogix_dp +ansi_cprng +anubis +anybuss_core +ao-cec +ao-cec-g12a +apds9802als +apds990x +apex +appletalk +applicom +apr +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcmsr +arcnet +arcx-anybus +arcxcnn_bl +arizona-i2c +arizona-spi +arm_smmuv3_pmu +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asc7621 +ashmem_linux +aspeed-pwm-tacho +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +atlantic +atm +atmel-ecc +atmel-i2c +atmel-sha204a +atmtcp +atp870u +atxp1 +aufs +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axg-audio +axp20x-i2c +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +batman-adv +bcache +bcm-flexrm-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm2835-rng +bcm2835_thermal +bcm590xx +bcm7xxx +bcm_crypto_spu +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bnx2 +bnx2x +bnxt_en +bonding +bpfilter +br2684 +br_netfilter +brcmstb_thermal +brd +bridge +bsd_comp +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence_wdt +caif +caif_socket +caif_usb +caif_virtio +camcc-sdm845 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +capmode +capsule-loader +cast5_generic +cast6_generic +cast_common +catapult +cavium-rng +cavium-rng-vf +ccm +ccp +ccp-crypto +ccree +ceph +cfb +cfg80211 +ch +chacha-neon +chacha20poly1305 +chacha_generic +charlcd +chcr +chnl_net +chtls +cifs +clip +clk-max9485 +clk-phase +clk-raspberrypi +clk-rk808 +clk-si5341 +clk-si544 +clk-versaclock5 +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cmac +cnic +coda +com20020 +com20020-pci +com90io +com90xx +cordic +cortina +counter +cppc_cpufreq +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-ce +crypto_engine +crypto_safexcel +crypto_user +cryptoloop +csiostor +cuse +cxgb +cxgb3 +cxgb4 +cxgb4vf +cyclades +da9052-hwmon +da9052_wdt +da9063 +da9063-regulator +da9063_wdt +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +decnet +defxx +des_generic +diag +dl2k +dlci +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-era +dm-flakey +dm-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dme1737 +dmx3191d +dn_rtmsg +dnet +dp83822 +dp83tc811 +dpaa2_caam +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dummy +dummy-irq +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-cec +dw-i3c-master +dw-mipi-dsi +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_sys +ecc +ecdh_generic +echainiv +ecrdsa_generic +ee1004 +eeprom_93cx6 +efa +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +enclosure +ene_ir +eni +enic +eql +erofs +error +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +ethoc +evbug +exfat +extcon-max14577 +extcon-max77693 +extcon-ptn5150 +exynos-lpass +exynos-nocp +exynos-ppmu +exynos-trng +exynosdrm +f2fs +f71805f +f71882fg +f75375s +f81601 +failover +farsync +faulty +fb_sys_fops +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +fieldbus_dev +fintek-cir +fixed +flexcan +fm10k +fore_200e +fou +fou6 +fpga-mgr +freevxfs +fscache +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +ftm-quaddec +ftsteutates +g760a +g762 +garp +gasket +gdth +genet +geneve +genwqe_card +gfs2 +gl518sm +gl520sm +gnss +gpio-adp5588 +gpio-altera +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-da9052 +gpio-dwapb +gpio-exar +gpio-ir-tx +gpio-janz-ttl +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-mlxbf +gpio-mockup +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-wm831x +gpio-wm8994 +gpio-xra1403 +gpio_keys_polled +gpu-sched +grace +gre +gtp +gve +habanalabs +hamachi +hci +hd44780 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +he +hfs +hfsplus +hi311x +hibmc-drm +hid +hid-cougar +hid-generic +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-redragon +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hio +hisi-rng +hisi-trng-v2 +hisi_hpre +hisi_qm +hisi_sec2 +hisi_uncore_ddrc_pmu +hisi_uncore_hha_pmu +hisi_uncore_l3c_pmu +hisi_uncore_pmu +hisi_zip +hmc6352 +hms-profinet +hns-roce-hw-v1 +hns-roce-hw-v2 +host1x +hpfs +hpsa +hptiop +hsr +ht16k33 +htc-pasic3 +hv_balloon +hv_netvsc +hv_sock +hv_utils +hwmon-vid +hwpoison-inject +hx8357d +hyperv-keyboard +hyperv_fb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-core +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-exynos5 +i2c-gpio +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-ltc4306 +i2c-mv64xxx +i2c-nforce2 +i2c-nvidia-gpu +i2c-ocores +i2c-omap +i2c-owl +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-pxa +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-uniphier-f +i2c-via +i2c-viapro +i2c-xiic +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_umad +ib_uverbs +ibmaem +ibmpex +icc-core +ice +icp +ics932s401 +idma64 +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +igb +igbvf +igc +ila +ili9225 +ili9341 +img-ascii-lcd +imx-cpufreq-dt +imx-rngc +imx_sc_wdt +ina209 +ina2xx +ina3221 +inet_diag +initio +input-polldev +ionic +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +iproc-rng200 +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ir-imon-decoder +ir-jvc-decoder +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-xmp-decoder +irq-madera +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isicom +isl29003 +isl29020 +isofs +it87 +ite-cir +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +kafs +kcm +keywrap +khazad +kheaders +kirin-drm +kmem +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +ksz8795 +ksz8795_spi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +kvaser_pci +kvaser_pciefd +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lec +led-class +leds-gpio +leds-lm3532 +leds-lm36274 +leds-lm3692x +leds-lm3697 +leds-mlxreg +leds-ti-lmu-common +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +libarc4 +libceph +libcrc32c +libdes +libiscsi +libiscsi_tcp +lima +lineage-pem +linear +llc +llc2 +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lockd +locktorture +lp +lp3943 +lp873x +lp873x-regulator +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2990 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +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 +mac80211 +mac802154 +mac802154_hwsim +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mali-dp +marvell10g +matrix-keymap +max1111 +max14577 +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77693 +max8907 +max8973-regulator +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcb +mcb-lpc +mcb-pci +mcp3021 +mcr20a +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-i2c +mdio-mscc-miim +mdio-mux-meson-g12a +mdt_loader +mediatek-drm +mediatek-drm-hdmi +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gxl +meson-ir +meson-rng +meson_dw_hdmi +meson_gxbb_wdt +meson_wdt +mi0283qt +michael_mic +microchip_t1 +mii +minix +mip6 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxbf-tmfifo +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +most_cdev +most_core +most_dim2 +most_i2c +most_net +moxa +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpt3sas +mptbase +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +mscc_ocelot_common +msdos +msm +msm-vibrator +mt7530 +mtk-rng +multipath +mvsas +mvumi +mxser +mxsfb +myrb +myrs +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nicstar +nilfs2 +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +nsh +ntb +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +nuvoton-cir +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmem_meson_efuse +nvmet +nvmet-fc +nvmet-tcp +nxp-tja11xx +objagg +ocelot_board +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +of-reconfig-notifier-error-inject +of_pmem +of_xilinx_wdt +ofb +omap-rng +omfs +openvswitch +optee-rng +overlay +p8022 +panel +panel-lvds +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-simple +panel-truly-nt35597 +panfrost +parkbd +parman +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcbc +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-pf-stub +pci-stub +pci200syn +pcie-rockchip-host +pcie-tegra194 +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcwd_pci +pdc_adma +peak_pci +peak_pciefd +phantom +phonet +phy-fsl-imx8-mipi-dphy +phy-qcom-qmp +phy-qcom-qusb2 +phy-rcar-gen3-usb3 +phy-rockchip-inno-hdmi +phy-rockchip-pcie +phy-sun6i-mipi-dphy +phy-tegra194-p2u +pi433 +pinctrl-madera +pinctrl-mcp23s08 +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn_pep +poly1305_generic +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +ps2-gpio +ps2mult +psample +psnap +pvpanic +qcom-rng +qcom-wdt +qcom_glink_native +qcom_glink_rpm +qcom_glink_smem +qla1280 +qla2xxx +qla4xxx +qlge +qmi_helpers +qnoc-sdm845 +qnx4 +qnx6 +qoriq_thermal +qrtr +qrtr-smd +qrtr-tun +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raw +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rcar-du-drm +rcar_can +rcar_canfd +rcar_dw_hdmi +rcar_lvds +rcuperf +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reed_solomon +regmap-i2c +reiserfs +repaper +reset-meson-audio-arb +reset-qcom-pdc +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rk808 +rk808-regulator +rmd128 +rmd160 +rmd256 +rmd320 +rmtfs_mem +rockchip +rockchip-dfi +rockchip-io-domain +rockchip_thermal +rockchipdrm +rocket +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rt5033 +rtc-ab-eoz9 +rtc-am1805 +rtc-brcmstb-waketimer +rtc-fsl-ftm-alarm +rtc-ftrtc010 +rtc-hym8563 +rtc-imx-sc +rtc-meson-vrtc +rtc-pcf85363 +rtc-rk808 +rtc-rv3028 +rtc-sd3078 +rtc-snvs +rts5208 +rtsx_pci +rxrpc +s2io +s5p-cec +salsa20_generic +sata_dwc_460ex +sb1000 +sbs-manager +sc16is7xx +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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 +sclk-div +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +seed +serial_ir +serio_raw +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shiftfs +sht15 +sht21 +sht3x +shtc1 +sii902x +siox-bus-gpio +siox-core +sir_ir +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +sm3-ce +sm3_generic +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smm665 +smsc47b397 +smsc47m1 +smsc47m192 +snic +snvs_pwrkey +socinfo +softdog +solos-pci +soundwire-bus +sparse-keymap +spi-altera +spi-axi-spi-engine +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-butterfly +spi-cadence +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-geni-qcom +spi-gpio +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-sc18is602 +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spidev +spl +ssb +st +st7586 +st7735r +stex +stp +streebog_generic +stts751 +sun4i-backend +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-tcon +sun4i_tv +sun50i-cpufreq-nvmem +sun6i-dma +sun6i_drc +sun6i_mipi_dsi +sun8i-drm-hdmi +sun8i-mixer +sun8i_tcon_top +sundance +suni +sunrpc +sunxi-cir +sunxi_wdt +switchtec +sym53c8xx +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda9950 +tea +tegra-aconnect +tegra-bpmp-thermal +tegra-drm +tegra-soctherm +tegra210-adma +tegra_cec +tg3 +tgr192 +thc63lvd1024 +thmc50 +thunderx2_pmu +ti-lmu +ti-sn65dsi86 +ti_am335x_tscadc +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tls +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +tpci200 +tpm_key_parser +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65912-i2c +tqmx86 +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +twofish_common +twofish_generic +uPD60620 +uartlite +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +unix_diag +usb-dmac +userio +vcan +vctrl-regulator +veth +vfio-pci +vfio_mdev +vfio_virqfd +vhost +vhost_net +vhost_scsi +vhost_vsock +via686a +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +vkms +vmac +vme_fake +vme_tsi148 +vme_vmivme7805 +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vport-geneve +vport-gre +vport-vxlan +vrf +vringh +vsock +vsock_diag +vsockmon +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wanxl +wcnss_ctrl +wd719x +wdat_wdt +wdt_pci +wm831x-hwmon +wm831x_wdt +wm8994 +wp512 +x25 +x25_asy +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xgene-rng +xhci-plat-hcd +xilinx-spi +xilinx_sdfec +xlnx_vcu +xor +xor-neon +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zram +zstd +zstd_compress +zunicode only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/arm64/azure.retpoline +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/arm64/azure.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/abi/5.4.0-1102.108/fwinfo +++ linux-azure-5.4.0/debian.azure/abi/5.4.0-1102.108/fwinfo @@ -0,0 +1,710 @@ +firmware: advansys/3550.bin +firmware: advansys/38C0800.bin +firmware: advansys/38C1600.bin +firmware: advansys/mcode.bin +firmware: aic94xx-seq.fw +firmware: amd/amd_sev_fam17h_model0xh.sbin +firmware: amd/amd_sev_fam17h_model3xh.sbin +firmware: amd/amd_sev_fam19h_model0xh.sbin +firmware: amdgpu/banks_k_2_smc.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/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/hainan_ce.bin +firmware: amdgpu/hainan_k_smc.bin +firmware: amdgpu/hainan_mc.bin +firmware: amdgpu/hainan_me.bin +firmware: amdgpu/hainan_pfp.bin +firmware: amdgpu/hainan_rlc.bin +firmware: amdgpu/hainan_smc.bin +firmware: amdgpu/hawaii_ce.bin +firmware: amdgpu/hawaii_k_smc.bin +firmware: amdgpu/hawaii_mc.bin +firmware: amdgpu/hawaii_me.bin +firmware: amdgpu/hawaii_mec.bin +firmware: amdgpu/hawaii_pfp.bin +firmware: amdgpu/hawaii_rlc.bin +firmware: amdgpu/hawaii_sdma.bin +firmware: amdgpu/hawaii_sdma1.bin +firmware: amdgpu/hawaii_smc.bin +firmware: amdgpu/hawaii_uvd.bin +firmware: amdgpu/hawaii_vce.bin +firmware: amdgpu/kabini_ce.bin +firmware: amdgpu/kabini_me.bin +firmware: amdgpu/kabini_mec.bin +firmware: amdgpu/kabini_pfp.bin +firmware: amdgpu/kabini_rlc.bin +firmware: amdgpu/kabini_sdma.bin +firmware: amdgpu/kabini_sdma1.bin +firmware: amdgpu/kabini_uvd.bin +firmware: amdgpu/kabini_vce.bin +firmware: amdgpu/kaveri_ce.bin +firmware: amdgpu/kaveri_me.bin +firmware: amdgpu/kaveri_mec.bin +firmware: amdgpu/kaveri_mec2.bin +firmware: amdgpu/kaveri_pfp.bin +firmware: amdgpu/kaveri_rlc.bin +firmware: amdgpu/kaveri_sdma.bin +firmware: amdgpu/kaveri_sdma1.bin +firmware: amdgpu/kaveri_uvd.bin +firmware: amdgpu/kaveri_vce.bin +firmware: amdgpu/mullins_ce.bin +firmware: amdgpu/mullins_me.bin +firmware: amdgpu/mullins_mec.bin +firmware: amdgpu/mullins_pfp.bin +firmware: amdgpu/mullins_rlc.bin +firmware: amdgpu/mullins_sdma.bin +firmware: amdgpu/mullins_sdma1.bin +firmware: amdgpu/mullins_uvd.bin +firmware: amdgpu/mullins_vce.bin +firmware: amdgpu/navi10_asd.bin +firmware: amdgpu/navi10_ce.bin +firmware: amdgpu/navi10_gpu_info.bin +firmware: amdgpu/navi10_me.bin +firmware: amdgpu/navi10_mec.bin +firmware: amdgpu/navi10_mec2.bin +firmware: amdgpu/navi10_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_vcn.bin +firmware: amdgpu/navi14_asd.bin +firmware: amdgpu/navi14_ce.bin +firmware: amdgpu/navi14_ce_wks.bin +firmware: amdgpu/navi14_gpu_info.bin +firmware: amdgpu/navi14_me.bin +firmware: amdgpu/navi14_me_wks.bin +firmware: amdgpu/navi14_mec.bin +firmware: amdgpu/navi14_mec2.bin +firmware: amdgpu/navi14_mec2_wks.bin +firmware: amdgpu/navi14_mec_wks.bin +firmware: amdgpu/navi14_pfp.bin +firmware: amdgpu/navi14_pfp_wks.bin +firmware: amdgpu/navi14_rlc.bin +firmware: amdgpu/navi14_sdma.bin +firmware: amdgpu/navi14_sdma1.bin +firmware: amdgpu/navi14_smc.bin +firmware: amdgpu/navi14_sos.bin +firmware: amdgpu/navi14_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/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_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/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_ce.bin +firmware: amdgpu/polaris12_ce_2.bin +firmware: amdgpu/polaris12_k_mc.bin +firmware: amdgpu/polaris12_k_smc.bin +firmware: amdgpu/polaris12_mc.bin +firmware: amdgpu/polaris12_me.bin +firmware: amdgpu/polaris12_me_2.bin +firmware: amdgpu/polaris12_mec.bin +firmware: amdgpu/polaris12_mec2.bin +firmware: amdgpu/polaris12_mec2_2.bin +firmware: amdgpu/polaris12_mec_2.bin +firmware: amdgpu/polaris12_pfp.bin +firmware: amdgpu/polaris12_pfp_2.bin +firmware: amdgpu/polaris12_rlc.bin +firmware: amdgpu/polaris12_sdma.bin +firmware: amdgpu/polaris12_sdma1.bin +firmware: amdgpu/polaris12_smc.bin +firmware: amdgpu/polaris12_uvd.bin +firmware: amdgpu/polaris12_vce.bin +firmware: amdgpu/raven2_asd.bin +firmware: amdgpu/raven2_ce.bin +firmware: amdgpu/raven2_gpu_info.bin +firmware: amdgpu/raven2_me.bin +firmware: amdgpu/raven2_mec.bin +firmware: amdgpu/raven2_mec2.bin +firmware: amdgpu/raven2_pfp.bin +firmware: amdgpu/raven2_rlc.bin +firmware: amdgpu/raven2_sdma.bin +firmware: amdgpu/raven2_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_vcn.bin +firmware: amdgpu/renoir_asd.bin +firmware: amdgpu/renoir_ce.bin +firmware: amdgpu/renoir_gpu_info.bin +firmware: amdgpu/renoir_me.bin +firmware: amdgpu/renoir_mec.bin +firmware: amdgpu/renoir_mec2.bin +firmware: amdgpu/renoir_pfp.bin +firmware: amdgpu/renoir_rlc.bin +firmware: amdgpu/renoir_sdma.bin +firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/si58_mc.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/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/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_ce.bin +firmware: amdgpu/vega10_gpu_info.bin +firmware: amdgpu/vega10_me.bin +firmware: amdgpu/vega10_mec.bin +firmware: amdgpu/vega10_mec2.bin +firmware: amdgpu/vega10_pfp.bin +firmware: amdgpu/vega10_rlc.bin +firmware: amdgpu/vega10_sdma.bin +firmware: amdgpu/vega10_sdma1.bin +firmware: amdgpu/vega10_smc.bin +firmware: amdgpu/vega10_sos.bin +firmware: amdgpu/vega10_uvd.bin +firmware: amdgpu/vega10_vce.bin +firmware: amdgpu/vega12_asd.bin +firmware: amdgpu/vega12_ce.bin +firmware: amdgpu/vega12_gpu_info.bin +firmware: amdgpu/vega12_me.bin +firmware: amdgpu/vega12_mec.bin +firmware: amdgpu/vega12_mec2.bin +firmware: amdgpu/vega12_pfp.bin +firmware: amdgpu/vega12_rlc.bin +firmware: amdgpu/vega12_sdma.bin +firmware: amdgpu/vega12_sdma1.bin +firmware: amdgpu/vega12_smc.bin +firmware: amdgpu/vega12_sos.bin +firmware: amdgpu/vega12_uvd.bin +firmware: amdgpu/vega12_vce.bin +firmware: amdgpu/vega20_asd.bin +firmware: amdgpu/vega20_ce.bin +firmware: amdgpu/vega20_me.bin +firmware: amdgpu/vega20_mec.bin +firmware: amdgpu/vega20_mec2.bin +firmware: amdgpu/vega20_pfp.bin +firmware: amdgpu/vega20_rlc.bin +firmware: amdgpu/vega20_sdma.bin +firmware: amdgpu/vega20_sdma1.bin +firmware: amdgpu/vega20_smc.bin +firmware: amdgpu/vega20_sos.bin +firmware: amdgpu/vega20_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: ast_dp501_fw.bin +firmware: atmsar11.fw +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.13.11.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.11.0.fw +firmware: bnx2x/bnx2x-e2-7.13.11.0.fw +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: cavium/cnn55xx_se.fw +firmware: cbfw-3.2.5.1.bin +firmware: cp204unx.cod +firmware: ct2fw-3.2.5.1.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: cyzfirm.bin +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_33.0.0.bin +firmware: i915/bxt_huc_ver01_8_2893.bin +firmware: i915/cnl_dmc_ver1_07.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_33.0.0.bin +firmware: i915/glk_huc_ver03_01_2893.bin +firmware: i915/icl_dmc_ver1_07.bin +firmware: i915/icl_guc_33.0.0.bin +firmware: i915/icl_huc_ver8_4_3238.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_33.0.0.bin +firmware: i915/kbl_huc_ver02_00_1810.bin +firmware: i915/skl_dmc_ver1_27.bin +firmware: i915/skl_guc_33.0.0.bin +firmware: i915/skl_huc_ver01_07_1398.bin +firmware: i915/tgl_dmc_ver2_04.bin +firmware: intel/ice/ddp/ice.pkg +firmware: isi4608.bin +firmware: isi4616.bin +firmware: isi608.bin +firmware: isi608em.bin +firmware: isi616em.bin +firmware: lantiq/xrx200_phy11g_a14.bin +firmware: lantiq/xrx200_phy11g_a22.bin +firmware: lantiq/xrx200_phy22f_a14.bin +firmware: lantiq/xrx200_phy22f_a22.bin +firmware: lantiq/xrx300_phy11g_a21.bin +firmware: lantiq/xrx300_phy22f_a21.bin +firmware: lattice-ecp3.bit +firmware: mellanox/mlxsw_spectrum-13.2000.1886.mfa2 +firmware: netronome/nic_AMDA0058-0011_2x40.nffw +firmware: netronome/nic_AMDA0058-0012_2x40.nffw +firmware: netronome/nic_AMDA0081-0001_1x40.nffw +firmware: netronome/nic_AMDA0081-0001_4x10.nffw +firmware: netronome/nic_AMDA0096-0001_2x10.nffw +firmware: netronome/nic_AMDA0097-0001_2x40.nffw +firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw +firmware: netronome/nic_AMDA0097-0001_8x10.nffw +firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw +firmware: netronome/nic_AMDA0099-0001_2x10.nffw +firmware: netronome/nic_AMDA0099-0001_2x25.nffw +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra210/vic04_ucode.bin +firmware: pca200e_ecd.bin2 +firmware: qat_895xcc.bin +firmware: qat_895xcc_mmp.bin +firmware: qcom/a300_pfp.fw +firmware: qcom/a300_pm4.fw +firmware: qcom/a330_pfp.fw +firmware: qcom/a330_pm4.fw +firmware: qcom/a420_pfp.fw +firmware: qcom/a420_pm4.fw +firmware: qcom/a530_pfp.fw +firmware: qcom/a530_pm4.fw +firmware: qcom/a530_zap.b00 +firmware: qcom/a530_zap.b01 +firmware: qcom/a530_zap.b02 +firmware: qcom/a530_zap.mdt +firmware: qcom/a530v3_gpmu.fw2 +firmware: qcom/a630_gmu.bin +firmware: qcom/a630_sqe.fw +firmware: qcom/a630_zap.mbn +firmware: ql2100_fw.bin +firmware: ql2200_fw.bin +firmware: ql2300_fw.bin +firmware: ql2322_fw.bin +firmware: ql2400_fw.bin +firmware: ql2500_fw.bin +firmware: qlogic/1040.bin +firmware: qlogic/12160.bin +firmware: qlogic/1280.bin +firmware: 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: rp2.fw +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8125a-3.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168fp-3.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: tigon/tg3.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/config/arm64/config.common.arm64 +++ linux-azure-5.4.0/debian.azure/config/arm64/config.common.arm64 @@ -0,0 +1,30 @@ +# +# Config options for config.common.arm64 automatically generated by splitconfig.pl +# +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_CRYPTO_CRYPTD=y +CONFIG_CRYPTO_SIMD=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_EXTCON=y +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +# CONFIG_HYPERV_IOMMU is not set +CONFIG_I2C_SLAVE=y +CONFIG_KVM=y +CONFIG_MFD_AXP20X=y +CONFIG_MVMDIO=y +CONFIG_NR_CPUS=256 +CONFIG_OF=y +CONFIG_PHYLINK=y +CONFIG_RPMSG=y +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_VFIO_PCI=m +CONFIG_VFIO_VIRQFD=m only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/config/arm64/config.flavour.azure +++ linux-azure-5.4.0/debian.azure/config/arm64/config.flavour.azure @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.azure automatically generated by splitconfig.pl +# only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/rules.d/arm64.mk +++ linux-azure-5.4.0/debian.azure/rules.d/arm64.mk @@ -0,0 +1,28 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = azure +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +no_dumpfile = true +uefi_signed = true +vdso = vdso_install +do_extras_package = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_x86 = false +do_tools_bpftool = true +do_tools_hyperv = true +do_extras_package = true +ship_extras_package = 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_tools_common = false only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.azure/rules.d/hooks.mk +++ linux-azure-5.4.0/debian.azure/rules.d/hooks.mk @@ -0,0 +1 @@ +do_enforce_all = true only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/abiname +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/abiname @@ -0,0 +1 @@ +138 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/generic +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/generic @@ -0,0 +1,23841 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xb19a2862 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x5de6b2a2 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x769f0e4f crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xd1e1f217 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xe8b5614c crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xef2f45d5 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xfd09ab0f crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x5598b385 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x8e43eb4d crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xdfe4bb12 crypto_sha3_final +EXPORT_SYMBOL crypto/sm3_generic 0xdf24fb1c crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xed3476f5 crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0x96758abe acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xcdb0754b acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xb530d426 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xd67831c6 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8e5e218b bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa5e75d9c 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 0x0285d0d8 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x0bf57df6 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x104f03fd paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x18488410 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2b46a37c pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x6306e2e5 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x69fad2dc pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7ecaad92 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x99fb6970 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x9bba6942 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb611778e pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc4b18a02 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x3f944320 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xce559150 rsi_bt_ops +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 0x1e5b2a9c ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x22c500b9 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x445087e5 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcf2f9282 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2303a905 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5b1b97a1 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x78c641cf st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x99884ac3 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5dadb7e8 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xde31f7b9 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf45383e7 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa568dc9a atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xbb440bac atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd3e241f3 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04754b71 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x060ddb65 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1028d0c0 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b9272e9 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x29b71dec fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b53bb72 fw_schedule_bus_reset +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 0x3d029894 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x53dfa199 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x57fe3b10 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f7c3eb2 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x668f928a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x773e1da1 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x79d3f3cf fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x826b1a54 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x93988c18 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x94852d95 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c7e05b1 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf93f089 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3af5fe4 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4e05af1 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd4b3b2e fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf1f49ea fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd454d0a0 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd49a84da fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd86df70e fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe8c6200d fw_card_initialize +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000cadbb drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00e2d430 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x011f871e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fdbed4 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d2c44f drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039ba9f3 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058b8cff drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05919a6e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0777b3a1 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f4dde3 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d204a0 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0925c42a drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09466636 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af6eccc drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6ad682 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d33d264 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4c6517 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e3921e6 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ece3138 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef5f958 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f28748c drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f61e2d5 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd2e70c drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe05fb5 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1002771a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109c7857 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1142ef8b drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119034e1 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11afc8c4 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d53b47 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13208d94 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x132710cd __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x139eab2c drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9618d drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14acee67 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x150ccb2d drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1550c810 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b6d245 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162afe26 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1676913d drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167a60d6 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x174f6523 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17632696 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1782ba4f drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5a7117 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c11df6d drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca5b8c4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ced74af drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d545e11 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dc1c16d drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dfb8d3f drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e24ebbc drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e329235 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea16c22 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fafc74b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb28d21 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x201ab13e drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21030c4a drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ce73f8 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x238a6768 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x248345f5 drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e4f445 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25061db1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x251bafa5 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2596208b drm_agp_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e0c3cc drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f0f64f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2935de22 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bce1af6 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1d397e drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3093dcb5 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309a3a96 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3153c359 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3285ea25 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x331fcb88 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e76d21 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340ac4b0 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348e0a93 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f117a6 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3573f418 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f8d143 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3789b538 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3862f2d5 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38772fd8 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x399a8e64 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a14a376 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a41138d drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a97cb93 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab3ca6c drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b05d73f drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b16e92b drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b620fa0 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c71aa78 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d62fbd8 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec4bf5a drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fae80e7 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4005e2d5 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40aaf0ea drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x415d03e2 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b6809f drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d8b68e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x451e2c11 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47964d67 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ed9311 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fe1d29 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49014036 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x495b52a3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x496fa222 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49831ddb drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498ce964 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aae57fb drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b74d497 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b948472 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c158c2f drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3c5792 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd8b2fe drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2ab34d drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5247da drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d752c5e drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e711001 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eb7e6f9 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2ce4eb drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50eb3f1e drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535dfa66 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55afca35 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5709031b drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a2e838 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58eb071e drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0d7b1e drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a520568 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a566491 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5bbb5f drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a61f671 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b682875 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2aae88 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c5a984e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbb54cc drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e004347 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60bb64fa drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62175a1f drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ef9f27 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65039d68 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65cfc281 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66726958 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x669b539b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66b3c8e9 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6771a99f drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693ffeb5 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a330e81 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5ef6db drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9a5d80 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2f8b12 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b53e0ac drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c25a7c5 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c286ae4 drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c7b07f0 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cccbb38 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd1790c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d449691 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd9bf43 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e223198 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5d1789 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2af12c drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb90ebb drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711322e8 drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720d946a drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7274b311 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7335e418 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745ece84 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748fa56d drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x763f1fea drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x772a48bd drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x774e2a75 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d77112 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a235192 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6aca4f drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad14ee5 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c465036 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d1f8556 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db36cc2 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7def81d5 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f49f4e2 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fee19c5 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81897ba1 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e058a7 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83519ee7 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b81edd drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8488fee8 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85126732 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8721f370 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x879a53b0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c3959b drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aacc1d4 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab2e8ee drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b929876 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb384e5 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8daf52dd drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8ee0e7 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eca9b79 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f445695 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5239d0 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f7fecef drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f86162e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93458a09 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9405162f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9495c497 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98dcf3e2 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9973220f drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd9a22 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae5f63f drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae69072 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6ffe9b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c610c61 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c7a5efe drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0ed065 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1e9c49 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d28fd37 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f43f17a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6d85e1 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fca75cc drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ce4641 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18b39dc drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ce9724 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22ae3f0 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3504d4f drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5dce6a9 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b8074c drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7078250 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa754a3bf drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa89c856a drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9da287c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf001f2 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac027033 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac15bae7 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac619b2d drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaccc4959 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace05323 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0e3276 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae95993a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1cb9cfb drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb376df99 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4744a41 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51b58cf drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb713b277 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7cfb39c drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b99a81 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b7c705 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba484332 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba801260 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf22a45 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb59c4a2 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb905531 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd4764d7 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6517b2 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcc47fb drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf43b0a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe259c46 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeec8b1f drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf4bdfb3 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9150db drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa76ddc drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc059e096 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0920d5d drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc157f407 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e8e466 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc239217b drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3108ffe drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39e6ad3 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc45475d6 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4dc6a55 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f0e583 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8351276 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d63de6 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0ba12c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca72425d drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca933465 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb41e245 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb76c63d drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe65fa4 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc33410e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd495237 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce358e47 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce39ad5d drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6d5aee drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf55654d drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf611e14 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf95ff6c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0854059 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b9abf2 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1059d84 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd116be7e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1aa4d96 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd238715c drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3193b92 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f7ad12 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43ac364 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d89062 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a97cfb drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86352a7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9614875 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9743ec3 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f04541 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda10eca1 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3b4121 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb6bd17a drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd29b58e drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5de235 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf116ea4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfdd3521 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0140bbb drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0ddd0c9 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe139aeba drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a33d89 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a10dab drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2bb5c31 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36c3066 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4049c21 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43804cd drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe465867a drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47aa6d8 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c045f5 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe57c7226 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cb539b drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66e1eb6 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85bea3b drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe90585b5 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93e3722 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93f0177 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea3047d9 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea3a116b drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebccda03 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec06ec36 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4bc424 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0049458 drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf108f38c drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf150b73f drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e64f79 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf249beca drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b7eb83 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3990a13 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf571ef31 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f02d76 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b8ba58 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d94c35 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92e9c54 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e1f0af drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa85396c drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab6d6af drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb07d2a9 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb1615ef drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbea2df0 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc2c3c28 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd635091 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f180c3 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x031c4cf5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c8b8fb drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05fc864a drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a02c34 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06b5e2ab drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c32a54 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0902a92a drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b19bb78 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c262bb2 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df4fad8 drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e0aaa18 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f33328b drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108278da drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x117fb14a drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x118a2282 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12c6d4ac drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14aa2cb1 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14baaaf9 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15571c63 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15f93cd4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16682c2c drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16900dc6 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17588de2 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17d81de9 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17fadf83 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c88ce7 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a2ffff0 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b4e6287 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c3a2e67 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c6cebb0 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f0f9f90 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205fb322 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21663485 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x229bbcc4 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23a2f4b1 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27d4d6e2 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x292fa11e drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b559151 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b60c2ee __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c3b333e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f21ae13 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bf6aa6 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35710df4 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x370a06cc drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c8bdee drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ae998c5 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c66bff2 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ceb0639 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d52edaa __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41bbcb30 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b14428 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4436e3eb drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44909ccc drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f2bbd1 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a51c9a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x488d6419 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x489cf2aa drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4924b2f8 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c1643bc drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8cddf6 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f1abda0 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509c96dd drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50bdf99f drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53094610 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x533c0762 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53bcbce9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5421d691 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57971f7b drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c54e35 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b308c55 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5617e4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb1c178 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62452851 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65048a0f drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x659acb0d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66585462 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66679df2 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a133b1 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67e1c06c drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ea5693 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68086a40 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6883cf01 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a8fa80d drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b53aecd drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ca13d42 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e1a68fb drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e8213c7 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f33caf9 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7eb687 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70204ac7 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ab7395 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71f55e1e drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x726879e4 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730fbac9 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74765fba drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d1813e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ff6fa5 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79607e99 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79f9e132 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d23f68e drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d667cf4 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fcdf1c6 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x805ed8f0 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82272717 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x822d5e51 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8237204c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x848b7091 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85519d47 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c41242 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88876509 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b1c5e8 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89339f54 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b1a8026 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bacd456 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d4b6206 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9135ff26 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92c2095d drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x932c638e drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d18ef5 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97fd77fd drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98084615 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9925065f drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x993dcdde drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99914d96 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d66b978 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ea8d8f4 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f9f0431 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c86c70 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa20ec6fb drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2edabc9 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3835276 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4ef3b71 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5302ef7 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ee5c3d drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7fc5889 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa9a35bb drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab124c58 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb13872 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf66d790 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0dbb006 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3802255 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5170176 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91a9f18 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb946ca0c drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96db8b1 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9b8a167 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9be70c4 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba59102 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc13d625 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd211255 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd62e6ca drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf160934 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c6a06f drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc28b5b69 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48ccbc9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e59895 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5375fa4 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7e67f37 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5fc4ed drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcad0cd3c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccfc4f03 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd563c11 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda79fbf drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce930756 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd38e9d7c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ee4647 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd55b252a drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d12471 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaa4c79e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb7ccfd6 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc80a2b9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcee269a drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdda41c25 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdee3e929 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30b6839 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30ca3ed drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3dc2f86 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ea975d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59ebb3a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe606fc63 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe610a1bd drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91a2f78 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0058ce0 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0238072 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf198dea7 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf277d478 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c011b5 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf61ec8a1 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6755c56 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7564b9c drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf77f765f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa0141b7 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa85589d drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda53d34 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x109d3a30 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x112a6dd6 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x285a02bc mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x29cca531 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2ce9559e mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3dcdd017 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4a7fb1a1 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6817ac99 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x69b2376c mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x706f4626 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e2bf4ba mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa413a8f7 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaa92d9a7 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbfc494ad mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd72f0692 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe47d68a8 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfaa82f98 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff11dd22 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0229a214 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06b2f88e drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x08046f12 drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0fa22861 drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x231a59bf drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x37d1bc4c drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x447a0774 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x543233ab drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x569866cf drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x76b6e088 drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7e59b804 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d59fa6e drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98edd0d9 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaf5a7f69 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf44b291 drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcd2b97e6 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcef67fe7 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdead13d2 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xefd07934 drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf06da44e drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0302c1ad drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2649d25d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c382bfe drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4feec6d6 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e2961f6 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x60e4d177 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x639cd908 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7145b967 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76045f17 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f3eed7a drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x95ceca5d drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9da6c587 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa056758e drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1a3c2a4 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc662e6ee drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdaae15d3 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe4d3ed39 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe996b271 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0ca1c6a drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x019fc144 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06d62ad1 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a63d1ab ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d32507f ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fd72f54 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11fe57d8 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x129e6b10 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16160490 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1866d31f ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a153193 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cb893e8 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e0ef487 ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e54c84c ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27660511 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x313616d6 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x338d35ef ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37c69426 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a34f42c ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a9dcf09 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d76cf92 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ec8a3b5 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fd80afd ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3feeae90 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bd84c69 ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50be1f0b ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5235634d ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5eb64bb8 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x772fc9a8 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c387e4e ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8248e8f9 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85b043e5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87d8ea92 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x896bfaa3 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89d25e54 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9034369e ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92ee97d0 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9569b0b9 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97606376 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x999c96d0 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4c4d99d ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8a5c7a8 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac807fad ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaca5fde2 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb01eabee ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0b10cd7 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1efe1e8 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6a8cfdb ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbbab2ae ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc4a9dce ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd64b058 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc194de54 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc53428c9 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8e6f565 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc954f033 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9bc0aca ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfdf060b ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd600157d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda81e485 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdefc5100 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe71b4f9a ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7ec71db ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec846de9 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf97010c0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9a308bb ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/hid/hid 0x67e3a6c4 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x08891b88 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0abb1fa1 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ffa709a ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x19a980a0 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1ed444b0 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x25b854a9 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2747e528 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x294771f9 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2f6ef3d9 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x349300e9 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3ee94db3 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x42363651 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4b8ecc0a ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x650fe89f ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7335d374 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7750343e ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x777c55e1 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x779f047a ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x79714ee1 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x831aead5 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8e54fb60 ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9403470b ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x964ede8a ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9d02ef1a ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa51286ec ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xad8342ae ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb258c60d ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb60ac5e4 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbe2204ab ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc1c42227 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc3dd65d9 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc9d4b5fe ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcc63cedc ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcfb6ccc7 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd182c521 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd32afe1c ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd7c3058c ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xda4f3858 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdeb54ae7 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf014a3cd ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfb660649 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfddfcc98 ishtp_get_client_data +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x58e02a7d vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xc3624c24 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +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 0xf861026c sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9383bcea i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe512dc40 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc942109 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0ea37190 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0f79fbec i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9a8739fb amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa0dfe18e kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xbc0c0919 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xbc778db7 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a14942a mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27706d15 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2b2eefba mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2e479ef9 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3730b268 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x46703f88 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x66bea695 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8296cf86 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8539c5f2 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91eefca4 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa0079dea mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaccbf563 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbeea8287 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdb174eaa mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe17bc2b9 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf74c67fe mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8e62f1d5 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb6f91a27 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd27cab54 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x654ffd29 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xf58bc8ff iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5c0543eb iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7cea41c3 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xde0448f1 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe5d56f6a devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xe8bdd5a2 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x12d0cd59 hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1bdb48db hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2f8f491a hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5b65e77e hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6d707489 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x75874fca hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xae559d0a hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb220d336 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xde0b470b hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xeb0ad4d1 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x2f7385b9 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x37926cb3 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4a5a86e4 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7d7a648f hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4d8a5ff7 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4f2a01c5 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6800132c ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x95f2b94d ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xce9b7477 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd00ae840 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xeac1bcc0 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf3ce2612 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf3de8019 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0458e193 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb2fd5fc0 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc4d8371e ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd0b923bc ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xeb70253a ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0d46203c ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe039355a ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xff882f7f ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x041af44a st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d1387d3 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1454f764 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2904fe33 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x38740e1e st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x48932979 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x518d0e76 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x668e3350 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x699b6022 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80417c96 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb52e9568 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc283f844 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc7f92df8 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcbc975a1 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe988e79f st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeb1ef2a9 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xed81e5a4 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x432799ba st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xe3d9d175 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xb6fc8aa3 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4873802b mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x645f2d16 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xb3486753 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x395fc920 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7596244e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb4fb2b88 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x919e7966 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xe7a95779 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x36f6d0e9 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9ec18eb8 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x86de24bc bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x50f2c17b st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xeb56e65c st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0cc91b9c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x1bf9d757 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x1fcea65d iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x30554581 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x3e0b86c7 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x46a8c018 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x4f9cf859 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x60109acc iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x6e8a0dd3 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x8e4e1991 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x90bc86ec iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x9ae790a8 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xaecb826d __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xaf6f3b3b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xb06296a6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb31db44d __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbfd84f46 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xca6c9cbd iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd74d0606 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xd8ea201e iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdde7b0bf iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe073ab99 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xf38b9049 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x03765351 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7d545ba3 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8bdc68e3 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb06c6d3f iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc9394588 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe1360b9c iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf56033cb iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf9801705 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfe41046e iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4251becd iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8545b77f iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9ac20a04 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xf337e9b2 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x018c28dc bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x32be41cf bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3927003b bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc902c83d bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x126edca5 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x558a8cf6 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x85d1e7fd hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb8b727a9 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x250fe029 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x69807e9f st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xaf50a73e st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x1cd6f426 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb481bec1 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc76ecca2 bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xda8f9eba bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf6502944 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x26940779 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5d189a4c ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5442430e st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xcc32d2e0 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd418811a st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x229d9d84 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x288e71b0 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43029305 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45847214 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4707d207 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a37d5e9 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d3c42c3 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x501cc75b cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x61253b27 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x617bc543 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x65c8cdba ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8657300b ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a3de237 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa14fe046 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf7012e0 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe229d9d0 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe478378e ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf1eb873f ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0150d391 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x018f3f72 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0460db4e rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04706805 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05de6605 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0760535f ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093b1507 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x097fd241 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1237e66b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12f3e020 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5bb95a rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca50b5f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea4eafc rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ec31fc3 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ed14b29 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa8d22c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f0f259 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22617e22 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x227509d2 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x229492b6 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22fb849b ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2333a49c ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x254f3def ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x270c4813 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2809d329 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28cfdd81 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b5f3c0f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb47338 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f801698 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3146eb6c rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32c6bdbb ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33da2319 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x361474ee roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x363de5a5 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37950d70 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37e33520 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2d4762 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a8e6d6a rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c05a53d rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cbeaaf0 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc53eb4 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dde77f4 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ec19bca ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ecb4775 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419a1a2f ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41d96503 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43fdd10f rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44e48346 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44faa3b5 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45449593 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45541e0e ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46018371 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4832a4d4 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cef288e rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d7a6849 ib_modify_qp_with_udata +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 0x4fc14040 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50a0658e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x564923f2 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ee9844 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580219db ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d216ce1 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4e728d rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d9c1a1c ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da26b31 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6186ad66 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61b10f66 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647303c1 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6670747a ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6905f6f4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa2b5b0 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c3099b1 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c6a1a77 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7446c80b ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76aca186 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79dbb33d rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0f86e2 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd743e7 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81543419 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81eb1cec ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8253c7d7 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83870161 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84078e1a ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x846faebf ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8625d2bf ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866c8404 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d4a34f ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89554f8a rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d84f85a ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f4ab9da 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 0x949d4673 ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94ab8a91 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9622fde1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x963debf0 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96483e40 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x964a200b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x978fbe21 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97cc2e4b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x985416f9 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a488910 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad988ad ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9af39bba ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b3a574f ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bdb5239 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d37b41d rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db5078d rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df43d0c rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e83f975 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea31e17 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ec24bfc rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f24fdfb ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2b00518 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4694e91 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5b8fc75 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa95feb27 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa988bb99 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad08728e rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad96eaf2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc5c150 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb083d959 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c8a402 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2352e36 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb248e1a2 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2b69d83 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb632fc1d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b61680 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8dbe786 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbddb508f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbed907b1 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbffcff9f __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1aabe20 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7592022 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc81cfdc6 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcafd0bd6 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc9972a0 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd998a20 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd35a76 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7fb66e ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd096bbae ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1892304 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd34391d5 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d6ca5f rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e47372 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c98aa6 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91df537 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd940c134 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd948769e ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda5ef296 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa3dca9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaba9d1d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb6b9cec ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdca20b68 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3a0cf7 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf64325c __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0f2b921 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1372e9f rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1386b58 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49dd66c __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4caad3f rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5bf233d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d54747 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7c7daa9 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb380a71 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba4eb49 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba7eebe ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec1ce600 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecac925b rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee798cff ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefaab673 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf302e37f rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf45de9e3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf67cfc74 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e79a1c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf86ad171 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ce21e5 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9cbfb55 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9efc582 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaff427d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb228e6e ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbf29f06 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe9af188 ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfebafa45 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfed6d1ed ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff1adfc9 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0666f5df ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x121a9c98 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15c4970e ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18257f30 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ba1bfb2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23fa06f9 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29741bf5 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33e1e2a3 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36d684c0 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3def6431 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x45352eab uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x464786e8 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b365627 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d6b4a98 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x615ee9ba ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7210fda1 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x773e0dc4 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79b7b440 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7dfb1da7 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92b18aff ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa709298d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3c940ee uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9605ee6 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc03b003 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 0xcf3e670f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8e27c8b uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe377e161 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe78cca58 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef11be98 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe23f4e0 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0834eb90 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x202481a6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x33a6d26f iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c13b497 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8bf107ed iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x939d7600 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc3a7e534 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe4cce657 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0287fbaf rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07ee722c rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ba8b6cb rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e964155 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x292cba67 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2daa740c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3339fe00 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52078b55 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5905f1f7 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c8067de rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x754cd6b8 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x761527bb rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8795eeab rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e277bc5 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95bfee72 __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98c8104f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ef5f587 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2c46162 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3e8d0eb __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb46a492f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5eaa639 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb79823b2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb910d3df rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc751c75b rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5477aa7 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8d42861 rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe82c1e17 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc56c8fd rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd66bec3 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfde72121 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0021971c rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x06791d5f rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0f3cfca2 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x18629285 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x19680c0c rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2269129a rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2d610929 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4824297c rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4931549a rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4d1d4d62 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5c3d438f rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x615b0291 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x64bef52e rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x65222a66 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7ba64cdb rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x89197ed6 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9c666098 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaae2722d rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb05a612c rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc0185eea rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc07569f5 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd2796ffe rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xddc22288 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe3ee2b99 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe52bb777 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xea1a3dfc rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xea2d6667 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeafd5a35 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xebaa2385 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf60c0544 rvt_qp_iter_init +EXPORT_SYMBOL drivers/input/gameport/gameport 0x075ba463 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e586a76 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x467806c4 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x48b080e5 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x562d9beb gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdc551886 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe71fc87c gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xef3b7b26 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9c84457 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x679715b5 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xad03c3ed input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbf8cc354 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe8a2f608 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xff7b282f input_allocate_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2d1380df iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x573844ee iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xed662674 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xdfa6dcab matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4c24ba0e ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9cf5db94 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xbfe72894 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xdb05e5a6 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x36165fb6 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2a79efb3 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x92e93a99 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x95b7e6f0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9640766a sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe667b4a1 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x319399d5 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd58d4e2f ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x51d2dc95 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x5a525c77 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x99ff05aa amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xa844f806 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xd5605275 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xefade618 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2499511d capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2575aea7 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x39af2b02 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x520a8fa9 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5502f232 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5c51904b capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb8f6b3b8 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xebd450e9 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xeec4691b capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xefdff5a5 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +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 0x6a859ddf mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8d36a63d mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa3e526ce mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xed50c289 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x01ad043c mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x66141e9e mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06207484 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a2011f7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a275b0d 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 0x2db42b3e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3cbb9ef1 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b2d3db9 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4bf3e028 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x501320d5 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f22b45a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x680b5382 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6923e7e9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74d03262 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7764b181 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79ae750c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a445819 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87916843 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93ed9b1b mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb09ef3c6 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2099098 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc27d3d32 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8b70c0f mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcca0414b mISDNDevName4ch +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 0xe292461e bchannel_get_rxbuf +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 0x1980c806 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x41209dfe ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x1e36de59 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb015dd5e dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc2612f56 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xea16fd83 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1d5cda8f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3c9c5682 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4f8403a5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6415be0a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc287db08 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd1b3c5a0 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x75c8feff r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x93b93245 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04932729 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x14d690c9 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x15274ed4 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x19578fae flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x383441ca flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3d11b4ff flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6c407776 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa0d582b6 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xba59573e flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xda2ea043 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd1b3556 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb1918c8 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfc211ede flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28450f77 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x975ae478 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xafb427ff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb13930e1 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2b6b096c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc6d1fc83 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x16096f4d vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xb5ffa4b7 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2335eaaf vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3cfb2fb5 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7962a38e vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7daa4f87 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa07615bc vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf4a56fbd vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x786f3e4b vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00784407 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06e9d896 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d0e9406 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15ab2e5d dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2996fd8c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3630ac6b dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ba14bf5 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3d3a7e24 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fe25d82 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3feecaf6 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bae1989 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d6b0dd6 dvb_unregister_frontend +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 0x67480317 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a2e90f1 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f71adfe dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x851ac7af dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x882b6f32 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x896870b2 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x902c5027 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x993b07f1 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcab08d6c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4a3f677 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4a7b887 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd698cf3c dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7b9449d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdecdbd23 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-frontends/ascot2e 0x141d1650 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x0e1027e2 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x099af94d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x198eb552 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4556117f au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x47738974 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7a45a136 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x849eea2f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8e53e7fd au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd35ebb13 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf35eb120 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6bf30ee8 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x3112ab50 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xf9f786cf cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5b0ac8e0 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc0ba873a cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x15bc366d cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2a21d68b cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x7b676e47 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9fc12114 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5374f94f cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcf645316 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x54f4536c cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3ccc8599 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc1597607 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x355074cb cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0b615c1d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3b9f3a2b dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x79599166 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x827b3c62 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb1986521 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x092b6863 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b0b4579 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x177625c6 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3162173b dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3881eb46 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6513794b dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6beb44ff dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae196cd4 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb816ad6e dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb88d2fe5 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb999d706 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf42188b dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe174fc57 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8ec368c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf17e69e8 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x39baebb0 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0dd0684d dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x762c5894 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa674c759 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa910e99f dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb5dd1b82 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf290ff0c dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x421c5268 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc171a3fe dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc616f751 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc78f56c2 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x69eddbc3 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe22825f1 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x20f36a36 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2bdff0a5 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x52cb954e dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x75f394c7 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a87ff6b dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8c0e9310 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa81673d5 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa89bed4a dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb2af4b80 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xba029e72 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc77174d7 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdb80ca62 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdf2f50c4 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0ba96e4f dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x306c66c1 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5626cf23 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61762b62 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9874d459 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdde341a4 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xde33dd7a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xb6146afc drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6c5134e6 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x38476d75 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x37b877c7 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6b16285f dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc0d80c37 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x1e0a34e5 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x63c832ed helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x8bdec74f helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x2ab2896b horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xdbf23c7f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xd0bfe1fe isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x72004386 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x95ff7d7f itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7a4c9d3c ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x3b53e935 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xab515123 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb26b006d lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xadfae963 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xecf0dff7 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x649c0a73 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa01ca264 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xfe29acdc lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xf48e50b9 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0d997c1a lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe324b778 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x20501624 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x31369c4d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xea11046f m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x4d7bac70 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x4abc28b9 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x4a07212a mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x16b2c15a mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x20ca0501 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xc0f95d63 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbb0e36eb nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x4cdebf24 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x1b3c1a64 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xc4962ebc s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x2b03ec07 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x19b2660d s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x69dd715d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xb1bbee43 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x55a0914f s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xbc747240 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x916ffd49 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1381f51e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7ba1eb4f stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x97ba22c8 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x709fe8fe stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x037f47e6 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xfad81f88 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x838f2d73 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3669b59c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x46f7ca7d stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x83cab374 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x029a231f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x44b7551b stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbdded71b stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x2dd0a883 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc55319ba tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x146f818c tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x0d896565 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4e78c0c0 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x58987f69 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7f7bb39a tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xaf82307b tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x8e1037af tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x578c0601 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x77cb7b5c tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2e48c126 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xffa08d81 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x7eebb491 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb6f800e3 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x5483bf48 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xd2074791 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x34acc59b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xbc891118 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xbe002416 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x10e228d2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x26d57936 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x45597454 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x74a60727 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa327a1af flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xed0d16e1 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf02a23a8 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3bc05c67 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x529429ea bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc20beb49 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcb886ee9 bt878_stop +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 0xac16df3b bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb781a8f0 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc4157398 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3adf79cc write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4ba9341b rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4e9223bf dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x53861c51 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61985a82 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x80510d75 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x819c68bf dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a577336 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd62916b8 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc4538418 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x37db9da9 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7167f63f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x77950205 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa120bb66 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc99f02a1 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x39d135e9 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7633e0b1 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7856c3ca cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8171727d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86a47b7d cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9345f1ab cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd93ffc5c 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 0x35b8bc66 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x40c1868c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x04d3632f cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4654203f cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb3c0cc71 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc129c88a cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39014ba4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x86f6893e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x90d66515 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b770d48 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaffcde84 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd81c887c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd8c8b5aa cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b274ba6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x123c653b cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x20527e43 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x395039e3 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x529ec0eb cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56eac98a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59873036 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f938ef2 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72fe4390 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7b425b94 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81c7f84a cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e582b14 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb22928de cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7b40061 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1e12cee cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6a1959e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd325f79 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf46a6d9 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf10c766a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf89d120e cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2635690b ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a3d3ebd ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x33156310 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x37a13da2 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bd4326f ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fdb2d38 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5117a0b6 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x537158e1 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x586737a8 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c0821ed ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x813cc236 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8807a30b ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9dffa221 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9e14f5e8 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0d121cc ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1a09371 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd8cf582c ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03796c5c saa7134_ts_register +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 0x21ad0566 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x405243f7 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4af22b1b saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x593bdbb3 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6308a7c5 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6bb78b66 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e72fcd2 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa31a1684 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa40e068c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdacf751a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf00a92fe ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3979e4cc snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x62371b2c snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x81874d75 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8c2dd077 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc9ab5fe0 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd8e359ac snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xef50e511 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x483096cd ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xadf74d1b ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xe32272eb fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6033f344 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x17a1c918 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x80c17cbf fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd7a54db7 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x4512bce4 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5bdce6da mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x425431a2 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x09af215e mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x962d61b3 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbbfc40c4 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xb1dc8761 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x83b440c8 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x124706ef xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x3aa20ae0 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x85767247 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x27ca51c3 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xacfb43fa cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0777ecfa dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1430801e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1ed7b893 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2b17356a dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x31fe389c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c1ac9be dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xae136cce dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xba0fa27d dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe7c0803 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x066165d5 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1fb6a758 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x75ba0831 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x786b6d4e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcc339329 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe716bf93 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xec67ff31 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3a0a02c2 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x21a80470 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2db8ea9b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53d36907 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84760098 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2eb4556 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa34e70cf dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb4745308 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb4935ed1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe9cd56ea dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x0f2e87d5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x739e8955 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2b308b0f em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa847d28a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0510791b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3adac6f6 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4106a024 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x46f979b8 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x49696af0 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x65cbed25 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x90755615 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdf17af00 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfd55f676 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17286b02 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e6ce205 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4f11cc13 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x751ed90b gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x955d5982 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa3525ec1 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaf895fc3 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe913e6a9 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x97ceac47 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x99e574bd tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9fdda29d tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdef2c464 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf535c5ae ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0d00e953 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 0x9879a091 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfcebf72d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00779f51 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bffadef __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f084d49 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1060b6f8 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x119c9759 __v4l2_ctrl_s_ctrl_int64 +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 0x173cd87c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x196d2d8f v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b13ec01 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fd9e14b __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21ed5d7a video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22d626c7 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24c951d6 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x286f0858 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x293e9c88 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x308fbb29 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32847325 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x381e1b7c v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c968c9b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x426bddaa v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x435e62b2 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495dc8f2 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49ec28e6 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b23288e v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d313b3a v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50cd7be9 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5464ac6d video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6093d75e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6317be0a v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63e2496e v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66bcae73 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a20cd14 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d69f387 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70d0f2d9 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72490dee v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77f95982 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d84a557 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fcbb262 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84164672 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85db5a84 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8abb8b40 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8feda1da v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98a244b8 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9aaf18b7 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fe717f9 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa58a0d15 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa729cb8f video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab030b7a v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca8c490 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba0a8a18 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf2bd6c8 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2679a07 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3e9d872 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc675efeb v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd11f37b v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0d4500b v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2449a49 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda44423f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe08a0edc v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe263fb04 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7cb5505 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7d4f141 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf48851ba v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5e6d053 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfce9c184 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0c93b163 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x272e0d0a memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x27b85919 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x323482a5 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x380dc0e4 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50715718 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x666ed2d1 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x96fc6cd2 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa07b5167 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe0eb0388 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee4c9ce8 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf8d7d103 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0012766b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x054b9b56 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06d802a2 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1553b7ea mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16e57f4b mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1799a9fd mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19a90c07 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23cd4716 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x29af27c0 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a0158a9 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2af6cd40 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x460781d8 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x470c5b8f mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5007b318 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5fcee9e5 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x602d11b2 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 0x74ccfc3d mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74e28d65 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89658d1f mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90ecac48 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92af4a9f mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1bfb36e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa546fad5 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5f1b1b1 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae4a7157 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb507393b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd1ec559 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd3aeb3b mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddad281c mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x121e165e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13f0efa2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x149b8dcc mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1feb4864 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2048f657 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x325d2e86 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x339bed75 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x415f1782 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5763d374 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fb01be1 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x650b5b1a mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6594d29e mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84d3145b mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85f51a19 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x931c6ce4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa10d236f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa505898d mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9600048 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf197adc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8429027 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf277aec mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfb8240c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2904728 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe762a2cc mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecf633fc mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7be922e mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc0c5891 mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x1fe0b2c4 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x2d134ea6 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf2192010 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x57e6c456 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xa67b2b96 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa9d5b8a0 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8b413b9a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb3cd62a6 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x21210cf1 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2614e7b7 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3419d836 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3752eee4 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x554386cc mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e030af8 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7f4b5774 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8267a1e2 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbd2abf9d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcca62b46 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf3fba625 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x5656fbad wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x646c4034 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc1b28aab wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xc934f980 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd5676f9d wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xe9347e1c wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x8428aa35 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9f931d29 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xb9f0fe98 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x30807932 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xc731028b c2port_device_unregister +EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x02e39d96 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x2131d96c tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x2f907583 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x35e9e456 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x3867cd8f tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x3f26e24a tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x408bbb37 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9cb3094e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xb6933fb3 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xbe1dcea3 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xc01d9f73 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf1d5cb5 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x385854a3 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3c0a4967 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x72903d8f cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9351d9b8 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbf9db7fb cqhci_resume +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ae04ac3 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4a854185 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6efb3db3 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaa748ee7 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2a49a16 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xba0c2c1a cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbea7816e cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2b08fca8 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2f6faf56 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x379935b2 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9d24f11f map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x364d77ff mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xba464912 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1f81dec6 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x0cf32a18 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xb2e46403 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x54b98025 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x929d9c85 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x55d6b9ec denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa49181b0 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x311d7a56 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x35ec3605 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57af3fe8 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x62e2f30c nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79991b52 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7a5e1520 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb8fa2942 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbbe9c147 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcdeb66f4 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xea4aab76 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x738be958 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xdcf7b97b nand_calculate_ecc +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f3e4db3 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ed4b8d2 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x61f10968 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x64a0121d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x79038b36 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8896097b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa03810f3 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9438f49 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc3be8a54 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd81b1d7e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2404ccbb com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4d3660eb com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5c310e23 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0918264a b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b471fb2 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ef94e7b b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x263e8007 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33bb8216 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x38a08467 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ac147e4 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42b141c5 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44c50794 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x580083e2 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6001df94 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63c74e02 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7120aaac b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75703c6c b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79405e53 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x858fd3ad b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x881af0b4 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c70785d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e6d0118 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95a89761 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x982903f4 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9930b9c5 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa10ac94f b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4de5022 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xababc9cb b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5dfc969 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6369144 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcbbe42ca b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf2160fd b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcfd7a783 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcff4dee8 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd014eb46 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5bc997d b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc3ae3fa b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde4d9d7c b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6ab2455 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb5b5690 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec9d8dcc b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0d7f92c7 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1c314af4 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8792e8a9 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaf5622eb b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xea9c3812 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xef3dc600 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x95232890 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb92554bc lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xe2cb5be9 ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xfdddc4e0 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x57372f50 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9119ee6f ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb4e1475e ksz_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x110f2617 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x257401b3 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3b3dce4c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x559416ed ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6322bf34 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74a69e85 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5c85df9 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc0bc5e5f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc7a3e5ba ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xea42d4c4 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb57e7fef cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5eb8dad6 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xed807eb9 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 0x2ae1a9d6 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3757ac92 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x478d31f4 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5299098a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5580a754 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5cdacdcc cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5dd2cd3a dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e2f149d cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8005e7b9 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x875a80c6 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbebb3a43 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc903ad0f t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6f1e871 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe50dd752 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeeeaa7c9 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf07e5d3d t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03915b28 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08ed8b3a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a973511 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12b9a883 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15c24ff4 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x177ca9cd cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x195c5515 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f980da9 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2186aa9b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2910e47d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3936ee39 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x428ca263 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44114538 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48cc77d2 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x568f7300 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b6f7ec9 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bd457dc cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63d251db cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x665600ed cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6af64644 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7bd221c4 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8300ac6a t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a87c73c cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95836825 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9cfbf0f0 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa535152c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa935309c cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9bea14a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad9f46d3 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2ba48f6 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7930c23 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe291b67 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc3f79f8 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf3ed717 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0b0f643 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1918e92 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd60d5f38 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8ceaac0 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee145675 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf25a3b34 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5c2e77e cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf67b91f2 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf67e675c cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7a1ca94 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x24821351 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3cf8d622 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5569d0cb cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x647a06d5 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x85cd088d cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x86fe1ffd cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdba49d84 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x065b2878 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2d6d5234 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2e556c63 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x38525dc2 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x45e9a5fe vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6e390b01 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0763901a 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 0xcf690504 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x18a70b93 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x3fcc9190 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x248ae00c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xdeb350cd iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x071dec4b mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5fd242 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214f13c4 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x265436af mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cb433de mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30c5afd7 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3492be7b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b6d6d29 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b17a57 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4857bd7d mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aec456b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59570d1a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d51cbbd mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x626f6905 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x629ccd00 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac667de mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b43e6c3 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1b0ee0 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9b6526 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78329455 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 0x94422cba mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94d023ab mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99754fbf mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3bdbf4 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa5b4a4 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa287397d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f525f6 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb07bc911 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb240b007 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bff557 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcaf6480 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf7ffd51 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d0946c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d2df12 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc87b8b1 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f3769d mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbca780d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3cd5428 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6a982b6 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6eeb022 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2ee773f mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf393b70b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa4e70d6 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc83c0c3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x007a204c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0215a2f7 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05de44ad mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x064cdf5f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x066b0b92 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073161ad mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08a2d1b4 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cb132b8 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fa2d188 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1211c91b mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17ab6c7a mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bab6af3 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfff7d7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb13219 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fb73a30 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23c46ffb mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e6bdc8 mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267a24d9 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26a9b246 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bd9c95 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d4293b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a2c8f8b mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a4786eb mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d4a20b3 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31d7956f mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x323dce50 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37779ca3 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x377cddbf mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39538268 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3953e030 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39d18524 mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a57ed9c mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3afd6269 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d4cce6d mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fc413e6 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x440180d1 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48939b1a mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4be13342 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f535adb mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fd20196 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50015e1b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525ef4be mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54aa98f7 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x566aad3e mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x587adf44 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b61e90e mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d2748d1 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d3b6b36 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df6243b mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62758146 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b10c9a mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x697190b7 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cdb6ae2 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7531ae66 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79ea49db mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a3809c2 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c604c16 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d963fc2 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb0be09 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ec152d mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82432d7b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a2882d mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x870c6868 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e0ede6 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bcee6a4 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1059e9 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91df1969 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9798c866 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99aed31d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a8b7ea7 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa19bfc45 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a431e1 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa80b0533 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb16abd84 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ebb5ff mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b6e526 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94b2045 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9f0e424 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc40d0fb mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd46328e mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf4b13eb mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b3e51c mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40da263 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5d7f6ea mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc66218db mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc83f4bfc mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd113975a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2a517b3 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a5e527 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4f86ac5 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde86b5fa mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1147f6c mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe212fc8b mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e140cd mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe852eff8 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe927ddd6 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3c7354 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed195cbb mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3100b2 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeefd11d0 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefc59711 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6961276 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8b04f19 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8a8a11 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb7b3d8 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd94b5ef mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe4376eb mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff4a8890 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x2e7bed4d mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +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 0x1f93326b mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22b41b90 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23da5365 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x241cdcb3 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29dd131b mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44550854 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71db5ac5 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8190f7de mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a77784f mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x951ef7fb mlxsw_core_driver_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 0x99d4600a mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e2c1a2c mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa951a9d6 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb4dfa853 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5111a01 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc6fde604 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +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 0xde42204c mlxsw_core_trap_register +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 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x00649644 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7c6ca3b5 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3771f6da mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x4bdb48b0 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x07453a0f __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x24909f3b ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x357f8dd7 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x40f789fc ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x47d84143 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5ab6abb8 __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5f0c962c ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb9d44f8d ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbbe84b66 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc4b5e1b0 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xee1346a6 ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf442fb26 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xfd1198ca ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0888ad5d qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x41073378 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9adee3df qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe10788b7 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x7b0d9816 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xe9c120df qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3ea8dbf0 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x42feafa1 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x464cef24 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x551601a8 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x63d72036 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 0x7db84a25 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/mii 0x093adcf0 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x0b9221eb mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x3817dffe mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x5ddedba7 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x7a2149c1 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x9e165acd mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xafbe6f8e mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xeb1db98d mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xf33a74f8 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xfdfbc56b mii_check_media +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x485fcc0a bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x7b7cef62 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xe24748d2 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x31c8f76d cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xedf07162 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6c94283a pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8c0d20c7 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb16bde41 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb700d975 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xfdeb2bce sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x09532f2f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1398af69 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x16dbe156 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x8d1cedda team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x8fe2edd6 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbba543f7 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc25df6d6 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xe1c85030 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x74554f8d usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe557416a usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfffa6f27 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x105ebfab attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x201f0b2c hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x40174478 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x492d4ebf unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5281f283 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7dabbcaf hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f677ea9 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xad494afe alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb80a643b register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe4cc8b1c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x4cae509c i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1bd01ca0 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1fcf8959 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d0236d6 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4dd24d35 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54fa96a6 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5c3dbb0b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b4886dc ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84a9c895 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x85e56015 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90d79146 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb8fc244 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcdce9669 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb7f2ec4 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x012db70a ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x028a0ac7 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09110eb7 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6e7525 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cd2deff __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f5870a2 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2321fa5f ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29270d2d ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bd8a140 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x314e76ce ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35628982 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36a7c908 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c9645c7 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d5d9904 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dc5da10 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43153e7c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e1e3958 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x542f95c9 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fccff74 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ccf8885 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dc34909 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ed2deb2 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76543906 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ddfe787 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7eac6eef ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81235f3a ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9837ed3f ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bfa49e6 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa668f7de ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabea3a88 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb101dfb9 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc8242b0 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf2ca061 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2c3da13 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5e2d01a ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6270f11 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc64fb115 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd3c6296 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7aca8a5 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8a83de2 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd6b3586 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4744f07 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe90e7a54 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec8dea4a ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf142183b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc572786 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdf61cde ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f797b8f ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1b7301df ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1e9c3fad ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x273fe151 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3e714076 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x46ee63e5 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5f38c150 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6fdbe223 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x914e2cf3 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x98a4ad31 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3834c5e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x011a1dbf ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x038455c9 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x126d8549 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a8c1b90 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29437109 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37b305e1 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e86b80d ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51ca44e3 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63ce2ced ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6e2d2587 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c370357 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d4dea20 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b853305 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b9c18c9 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaae78dac ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba9b2343 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbbda4fd1 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfb608b2 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0b2cf50 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1d505c3 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea7ccfaa ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee6295da ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfda083b7 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x001e8fe6 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x006eccbe ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b82cea2 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b9ae23e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cdc8d12 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d615bf1 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dbd9abc ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14de8cd5 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x171a2d7a ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x190e349d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bdd13e7 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cd71248 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce8d497 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce98ca5 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ed5456b ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2055ca61 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e4f24d ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x242cffae ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x250a8dd4 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a687a1d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9b0a17 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9d9c93 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x312e5ee3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x331b0076 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34b8e587 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35315cbc ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35e2f941 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3621cf79 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x386f8418 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39a590b0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3de80428 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f5c2b94 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x432a26b1 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x477dcd09 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x477ed6d8 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49798de4 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ae9110e ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b5c4119 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb24e54 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f1c75de ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff58d83 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5213c4d6 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53695e16 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57387df2 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57d8c486 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590337e3 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ad7ef81 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bd9e56d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bfbe8ea ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ffb2e8c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61441b66 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x731f9cef ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77f53dd6 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797dd7ae ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af078b7 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cbbb988 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dbc13e8 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e4921d6 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80c0d631 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d030ed ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8249fa82 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82dc3caa ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82e3b386 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83d5c2a6 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83d8614a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87751d36 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dedbf71 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x919b709c ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93797309 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1bdab3 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c832b80 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d332512 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0b26014 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa575c494 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa60e92fe ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa648bcd7 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa92ca763 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xada88d45 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae4dd43d ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf6ba177 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb27b3c64 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3591951 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb55d0770 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6229751 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb793f0ce ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5872d9 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf58354f ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0d23c22 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1a4a06d ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3873f08 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc44ddc78 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6487db3 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9b84ae1 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcab7fcdb ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c8d619 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd77c7089 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf3766b1 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1912db0 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5623daa ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeabd34fd ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee892d00 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1e36638 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2504477 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf50b65f2 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6363eaa ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf87b063c ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaaf3016 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2944eddf atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2dafc886 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xda9071a6 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0472a73a 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 0x4b1e570a brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4d9f91df brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8529a7df brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8d4e9d03 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c2382b0 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb683cb62 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbf0d3b0c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc17e93a1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc8cc8417 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe3cf371e brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeb540f0a brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf4d0d6ae brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x463f1c59 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5306c97a init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xecfac7e5 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x04a2c809 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0598f740 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x348c6f87 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4159af08 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b1a1518 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8b15576e libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x90fedf85 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93dfa9a2 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x98f91f89 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e542ea2 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaee3541b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xafd2d83c libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb3621350 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbd86ea01 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbef2179f libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc3edbb7b libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc8d11756 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce47cdf4 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd183f883 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfd522752 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10118069 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1255b603 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1401b322 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17dcadb8 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bb72c83 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f8bd86a il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f991dd4 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fa6d041 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fe10bd9 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20abefdb il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24176dc5 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24e8b5ce il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x270a96fe il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cd9a8d3 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d7bc837 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d97da74 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31401b5e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36ade273 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x375eeee3 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a3f4e6c il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a4bb4da il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a5e87c1 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ac18b85 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b2abc37 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d37cf08 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x421bb94b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b10ecf6 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bab5a7e il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d2aef48 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e42b9f5 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x516d996d il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5890eeb9 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e7319d3 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f12f70b il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65241ea6 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x659eb34f il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66aa1d10 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67eaa365 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eeb2839 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f7640a2 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7161e4b7 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74785723 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74b42948 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x757b2f7d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76accd08 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7773babe il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x785850da il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7aaee780 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b9d3504 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80c27e87 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x816f911d il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82c4e870 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x832f2367 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a41883c il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b451598 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cc6a54b il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e694b60 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fa6b3c5 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95678915 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95a26a5b il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98badec4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f429199 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0cb92c8 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa13c875 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab26954c il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb740452d il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9617e74 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9c2a37f il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc1832b5 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2e3513f il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccbad9f6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcee63c24 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf8f5b4c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0515fe8 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd11584d8 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2abbbdd il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd381221b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd42dcc08 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd53e2e37 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6c6973f il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd796b187 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd875ade1 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd93b611a il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9742bde il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf5ef624 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe22a875f il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3f79b4a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5b80d8c il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeba227fb il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebfd70f1 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0f7452d il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5174b09 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa2db286 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb49a160 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd383a73 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe04b453 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe40ca2d il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe78bd7f il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01bc9a8d hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d80953d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x11cd8b62 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x215f29fe hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x232d314e hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2bbf871a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3983c0aa hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a5cfada hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x516180ae hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62a6c5e8 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63dd228f hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x667f09a9 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e6624c5 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7576b4e3 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 0x785f8679 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9164e4b9 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa457be4e hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa64985de hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1211832 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5dfb233 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd60f56a2 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdaad3dd0 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0aa8b08 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfca498d5 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfdcdfc0f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x226b8c5f orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x263fc61f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x386c346f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x49070bde orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x497cd73f orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4beae6d3 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4ca92159 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x53587076 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a7d37d8 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb6d0ce7b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd880f4f1 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe3386ccc alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf46770d7 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf7a16ea7 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffb05d1c orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xb24a1670 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x29ed9942 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x019ab315 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09ae1c92 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1277b018 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14eef87e rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16ad7c88 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17d3a688 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c65649e rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x239a857b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28a26c11 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b6c444a rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38f5b8b0 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x415dcf89 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x417abaa0 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x452a2a57 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57902cae _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58ce7b9f rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5aeb25ba rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c2685f4 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c738b55 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68daadad rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6966a5b2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c891eb5 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71aa6650 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7386a560 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x867a3138 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94dea524 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95a186ca _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9748b7ac rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9da7d400 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb22a0af9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd9c9a96 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc72fedcd rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfa293ba rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1b340e1 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd47ba090 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdcda400a rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde280e19 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf1370a2 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8e98988 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf91fe6de rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb9ee2b5 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2f13b705 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x987fc2c2 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xad884b28 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd1325e13 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5c5ac4ca rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6a3d5005 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa37f84c1 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xed22dd27 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07b714b5 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b3b8a24 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17d2546c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ae8d19a rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x460a4e3d rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a9264ea rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50068365 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5093741a rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51fa7619 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52b2c61e rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ac88547 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7dc217c9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8055c0f0 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c84ca50 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90e252cc rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9db8d8d5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3dd4d36 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6a4acb2 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacfd0580 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb47d429c rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf634015 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0114586 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc42f4eb0 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd14cfa61 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd69fc10f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0c8acd9 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe12baa40 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe157e752 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7d175ea rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf789de2d rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8a4a661 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc694650 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x26534c06 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2aee1539 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2b74b7e8 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x583a3caa rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6a6c2e7e rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6f0d26b8 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7337dfa8 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x781d188e rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x818c54cc rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x85ae4540 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x965dca0c rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9cd53c93 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9d6521b6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe4a50d2f rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe536ee27 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xeb5ccc22 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf4d7bc20 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x8af3f6a0 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x278e6bb3 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3a0b7b45 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd9695c20 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xecd9e800 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1747b4ec fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3d5da5aa fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xded8019d fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x124f4760 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xea437d52 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x47ed8fde nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9eed7008 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc13e07c2 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x78db9f87 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7c27cd53 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe4a6c0c4 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7c8bc9c4 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x926df407 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xba7b405c s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x172db6d4 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x20b37bc3 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b1d0f89 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fd683e9 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4a8709e4 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x56256773 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7579e8c6 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9e596450 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc394ab68 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdadfc2df ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x077f8532 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1edaf01c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2e606a09 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3893a11f st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4efd5541 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69917a3e st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x749621b6 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7623b9a8 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7bd624b0 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9fec0917 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa0319908 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd686bb0e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea37aacf st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf230e5c8 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2bd3f3b st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4e8b733 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfbed2f9f st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfe95bdab st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/ntb/ntb 0x032aaf7a ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x055ef648 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0c0adbb4 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x182bd20f ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x1c20a5de ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x36402e14 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x415e4331 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4a113f57 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4b0ab46a ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x60723f36 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x835be6a5 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x94c173b2 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x969826cc ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xa728602a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xad2f6919 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xae79b4db ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xb258cb76 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb8cef6be ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xd45a9aed ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xdb3d2190 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x04621a3a nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa9666cad nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x01bdd50e parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x0852f565 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x0d4205f8 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x12b3f1ab parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x189a5f09 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3418e733 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x36516f88 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x38f116d5 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x3d7b0ba4 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x43fb0b7e parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x4c9a6e22 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4fc8960c parport_read +EXPORT_SYMBOL drivers/parport/parport 0x56282973 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6a235a2b parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x72c085eb parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x73deeab7 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x81549f9f __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x8519b32f parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8a09779d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x91d1f359 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xa5dbf255 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xa97cc6d2 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xac1889d9 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xaecf24a9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xaf5b5451 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb23f9bc6 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xb54bd856 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xcfe3fafb parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd178b2ad parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xe4956c2c parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xefa27acc parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xff5ab755 parport_del_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x1ea2030e parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xde9dbc3f parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0639c2f5 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x25b026ac pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4813f065 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x49a9e0a5 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4e46514c pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x56bc02cf pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7018db97 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x705dfc43 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x96687691 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9799a175 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa3b47f1b pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xacab9c31 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb6c1dae0 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba04759a pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbd4e2b8f pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8578c58 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe14afb10 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe4d1b57b pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x698e5c62 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x90a11cda pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x928dab36 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb3f3398b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc0c04ab6 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc613a941 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcd008974 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd45f0e2a pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe5a297ce pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfde13108 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x827e1b8a pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc6a2fec9 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x395aa66b cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x87833731 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa3332eea cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc4abaab7 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy +EXPORT_SYMBOL drivers/platform/x86/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/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 0x3cb58d1e __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xf70c2228 wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x001f4b5f rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x21525281 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3de4cc1e unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ee13dc9 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x624477bd rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8de55196 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa1145781 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa6abd24c rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xae59d149 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc3a8b9c7 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4b283dc rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcbe4af46 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd2008844 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdcb24f52 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xd7ab8825 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x00e21c6c NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xb7d99adf NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x42a64f15 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x588d7421 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7bb429dd scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf5001fd7 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0c669d7e fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x33f09137 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38a09997 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a24b96f fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x79630d73 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e632f3d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa9fd62f4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc3c19640 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc0fab80 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdde38725 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde62df0a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0682c594 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a2c9d9e fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1419626d fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18249054 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bdc485e fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e0d0178 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2402c79f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b4a616f fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d5ecf9d fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e8175ba fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x302d1452 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x316a927a fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x388f9199 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ab2194b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3abd30cb fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b51bbc3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ba4e24f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c3b9852 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cabfce8 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fd67266 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45f28ea6 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x485ef734 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x496bd083 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f3f5e53 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56a3065e fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c40d974 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ec1f484 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60bd2e25 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62907e9c fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c1ac1d1 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x730e5f66 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cde3997 fc_fabric_login +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 0x81d7c034 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a229255 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c83fff0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2ee75 fc_lport_logo_resp +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 0xa8338d6c fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa99105af fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafc5a4ac fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2b34e70 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb873b306 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8dfb4b8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc25c6e54 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a25360 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbb5b774 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccabdd0e fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2e55048 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfd5230c fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b341c4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe467b6e8 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe77b8ce8 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7bcc585 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7beeb6f fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe857ee5c fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedac6ac0 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf50c2497 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6b8db25 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeeb245b fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1dc1034d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa50b108b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf6434bd9 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xfc97ad9f mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06c86f3d qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1cadae80 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3dbc86af qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4b54d70c qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c5308a4 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x51f2efa1 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7c442afc qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1864a30 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd00cb60b qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe131d6d8 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe72552be qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf2730f9b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0765c9eb qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x23ae02af qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6f62c2a9 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9ae5d9bf qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc926efee qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xde7623aa qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x9be988a5 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xd71339df raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xda3659a9 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03354552 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x106a1ca9 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b4fbc1c fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1fd8b9a4 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32d319b7 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b561fe4 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c2c0812 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c78a164 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7279b6aa fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d150831 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x92ad979b fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa2dd26b1 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9c54f21 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2a29ef3 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf6f994de fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf7a6c1e5 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00258eab scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x012eafc5 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01414589 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0559e71e sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15f87dce sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a43d735 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29d4c301 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e2feb54 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f23cc4a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bf9bda2 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f929e0b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x603ccf1c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72cc2221 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75c9ad0d sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cc448bf sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f1e83dc sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb786c232 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbdb12102 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1ba66d1 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8b5a39f sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd585fff1 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5baf856 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd80269ab scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcbb3571 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddd3bccc sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1715dda sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec1093e5 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef8f9680 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefdd9e57 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x04c8fdfe spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x490f9954 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9813a78e spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb720067e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc020a99c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0eed62c1 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1589e50e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x614b2728 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x83c6875c srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbeb786bc srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x35506689 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x940ceceb tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1040973e ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5075c34b ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5574ebe8 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6f3c9f9a ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x79df81aa ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x82509344 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa3d9ed16 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc933117c ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd4a6d64c ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x02e89a6a ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5b999a03 ufshcd_dwc_dme_set_attrs +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 0x2c050d8c sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b52d2e3 sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e65689d sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50924f0d sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50e59f43 sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5c678988 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ddea16d sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbf5edc8e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc197936a sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd137d860 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf258b939 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfa4beecb sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfec687c5 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2ac61a05 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3bd0f15b sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x45fe5971 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x473a3da1 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7a4991f2 sdw_cdns_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7a5fdeb8 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x861b8e46 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8c4b36e1 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa76a6fcb sdw_cdns_thread +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xae28e766 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xca7d4653 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdbf43c60 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf1593a85 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xff28fead sdw_cdns_get_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x5e07cd60 sdw_intel_exit +EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0xdd869f30 sdw_intel_init +EXPORT_SYMBOL drivers/ssb/ssb 0x1a0c0541 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x311cb6b4 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3145a41e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x3db68475 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x47a2c8b8 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5234e530 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5cc33cc3 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x610dae60 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x6918c49b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x823c1555 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x87627bde ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x88cdc8b9 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x973f08b3 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xaa0dbe56 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xacda9aa4 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xbb2a2256 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcc9c69ab ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd45dfd4a ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe859dfaa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf629d8c1 ssb_clockspeed +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x0526a070 gasket_sysfs_put_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x07054114 gasket_get_ioctl_permissions_cb +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x11263474 gasket_pci_remove_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x223e5624 gasket_reset_nolock +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x233a6f9d gasket_unregister_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x2a0f42ab gasket_wait_with_reschedule +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x36cfc466 gasket_enable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x41364751 gasket_sysfs_create_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x5ed411be gasket_sysfs_get_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x6ff7190d gasket_pci_add_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x793db05e gasket_sysfs_put_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x9af0bb19 gasket_sysfs_get_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xaa657e40 gasket_disable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc2923c7a gasket_mm_unmap_region +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc8fb4d5a gasket_reset +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xdac8424f gasket_register_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xe55d9c94 gasket_sysfs_register_store +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x7ee0111a adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8ae7d594 ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0376ab7f b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0987c12f b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x110b22f8 b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2bdc5979 b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x518c0998 avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x57265d1b b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x6a593d2e b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x6fa4e6ed b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x819a291a b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x82d7ddac b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8bac4cb8 b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9173f308 b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x96edadca avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa1ac6ed1 b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc5448049 b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5783d47a b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x57ae3cea b1dma_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5a137630 b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x617c019b b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x9148d9fc b1dma_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x9a0e6afa t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa58fae0d b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xb0738206 b1pciv4_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc90ce9df b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1874358d rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1921df9b rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b170f59 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23eb3841 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25a5b954 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2aa66c3b rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42bc5319 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x441a5d0f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45dbee04 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4679662d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49932905 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cef8892 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5589c872 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x559c43f6 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c872360 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fcc50fa rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67f6be41 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fcbc6f7 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x702e281a rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76037537 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fbcb7d9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80965c02 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x816811f9 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88622648 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8937c841 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x917dc1d9 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x926bcb60 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x948aff7e rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x962610eb rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e60e883 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5bd68cb rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9472f62 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabab587b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabc4c4d1 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2912297 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4bffc6d rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba3be59d rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0e72a09 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd3c996c rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd6a198c rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcefc9730 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd064c49f HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3100539 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5f95b32 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddc9a848 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe149c6ec rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5e50fdf RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf32d4123 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7d45d7b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03a1142d ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0512ffb9 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06d783a2 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e4a2471 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11115a91 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x128417dc ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18b1812b ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1943a41f ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x215d67b8 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27e57dc3 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cac39d4 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2dc001e5 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32f10ef6 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33a66989 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cafd726 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3eb6a7c5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f8893ed ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4006836e to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40e43409 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41d8438f dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b304e5f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c6a65fc ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5222c99b ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53176680 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53790897 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5502c48d ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x632ca2f9 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63549e03 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x658266ab ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fba10c9 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x786b4fa8 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bd6a825 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98892e12 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99d2ef1e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f64d59d ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0c57393 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb478cef7 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc69a3890 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcae9853b ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcca8cee7 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd44aa46a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5d761ef ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdde1e871 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe426d606 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe973b6b1 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea9939b7 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb726aaf ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebf68031 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed50bc54 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7fa0e60 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf90d8e00 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa57695e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc38fee5 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x072db9c8 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0950f10e iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ffdd6ef iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c674f7a iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x212f9af6 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23061965 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2423d82c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f11f8aa iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x311515d4 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32f81dfa iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34870292 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x399bcd0d iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a2bbaf3 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b30c08d iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43866b98 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b036d21 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e8facc8 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50aeb648 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52b2ee51 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b06ad71 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6193c130 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69a08314 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f68abe8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7606e5c6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79b09678 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79b9ecb4 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81ac7b5e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8944ce5b iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89b35a40 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x947e1130 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ed3933a iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5e820d2 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab10878a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb56204dc iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb710ba1f iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc711ac64 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca7912de iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb5827b1 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6159dee iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda0e716a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaf1dc0f iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfd17dd3 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedc73081 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfba08f98 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x0185134e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x02ef1c80 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x06ddceec target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x08289423 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0893e897 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x08eac45b core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x090805f0 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f554960 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x11b14c74 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1335a80b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f6a49c0 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x21b93eda sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b2b3b0d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3157d9d9 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3208fa7a transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x35910575 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x35a57e46 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x35d1f2f5 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ccfc1c3 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fed7b85 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4242277d target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x433a1f0e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x439b0e82 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x456f51cb target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x49527f42 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dec31c5 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4eb87d0b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x599f4785 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5af8fd9b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x62b99164 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x671b2673 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f339b22 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x731be9f6 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x73e67399 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e1d6b0d transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e58ce4f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x822d9a53 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8551d318 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x864dedb0 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a301f84 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x99239700 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6413435 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6c424e0 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xab9e5117 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xac5a4560 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xad405892 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xad76b156 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xb086deda target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xb17994d2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xb84d8fbc target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xba0f17ae transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0386aed target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0cd306e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xc50bdde8 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xc62263be transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb1afc06 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3ab4404 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd64b2149 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ae3b0c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfb96c8c core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3ca9366 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe68d13d7 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7505ea8 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe759e86e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xea1e62e4 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xee5a2efa target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf071129d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc8244a4 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc885acf transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe2169e1 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xff2beb4f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa17af183 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x6f9afb78 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x10b63b1b sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1dc514b0 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a31b4f2 usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x45913c4f usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5cedb619 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6b7c9603 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x851063ed usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2b6f19d usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf4436ad usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed49d570 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3039641 usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf7dc42f3 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfbf06aea usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc38a95d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x833a6c20 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9ddbaabd usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x022f8339 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0ad479ee mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0b856fef mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x285ddda7 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x390016a2 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5c8398b0 mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6b3e358c mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8a3f3ce9 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa667547c mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xafb9007b mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd0347a55 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe7688693 mdev_register_device +EXPORT_SYMBOL drivers/vhost/vhost 0x6e67b2f5 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x75a13758 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0912659c devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1b71e6cc devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4e9134f9 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8dccc57b lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x192f1cf7 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x277b5a62 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2813b25f svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3bab7598 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6c85e84e svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa554c51e 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 0xd88591ae svga_get_tilemax +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 0x090cfde8 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x92694abb sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf2059cda 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 0xab4bfdfa cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x83f1e86b mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0904b86f matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x14be8d9e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x214c780e matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3f3ffba6 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7eba6e79 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xce0f8dde DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe55e1c5e matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x63e5e78a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x154f8661 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f4b1624 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x62a1ce7a matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7060be8a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9ca1d488 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x15861a44 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x238401da matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1c2be096 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3068081c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x47411304 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x603849b0 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe514c1ff matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x0e025964 mb862xxfb_init_accel +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/w1/slaves/w1_ds2780 0x72ed93c1 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc00d5adf w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x14498c41 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe02d4d3d w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x82ebf216 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x85238f16 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9e68ebb6 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x9ea8af70 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 0x05951b40 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x19211914 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2390788d __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x24e350ac fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x2569f468 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x2603ecfb fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x295f2ee1 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x296d72fc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x307fa8ca __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x322d352c __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x326219fc __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x385c5ede fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x496861be __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5432461d __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x54a3c89e fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x56e789bc __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5b357c45 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x5d66186f fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x6a67e266 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x6ab6895c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x83236b57 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x94a91050 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa2e48075 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xa6980240 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xaa43f685 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xb1368549 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb189edb4 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xbe5400e5 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbf025197 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc4b30161 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xca4159f5 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd08c6be8 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe17d7302 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf050d594 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xf3c24f46 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf46c1fba fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf676ed9a fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf681819e __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xfb895f33 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x4702e570 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x5d1b3964 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbd470762 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc4a039cd qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd6099fd8 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xdc8f1e41 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x524d1b46 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x8f5b8233 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x01da6ae0 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0d488be7 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc54f885f lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc8bc458c lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc9a21fda lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf0ce6bdd lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x989556d6 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xe7bf2132 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x3a33c4ed unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xeed415de register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0c555c61 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x17df0640 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x250337fc p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x362ec744 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x3c4a616e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3ccc932c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4006e4c0 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x491ae69c p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x51693c6c p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x57e0fbd2 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5e6f944d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x65a63e30 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x6731b1b1 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x6a713bc8 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6e646cb3 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7198bea8 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x78351f7f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7a698a02 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7b3fba0e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x8412437c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x87758dc2 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x8b568b2d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x92430bda p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x951fa83c p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x991ac927 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x991d074f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9bdd6e4e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa14e83b7 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xae362373 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb2e26a51 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbbb16b82 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc10143ad v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd710a98c v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xd7119f69 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xddb8e2b6 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe018b111 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe67ed5c7 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xfd2de276 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xfd5ef043 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xffb74481 p9_client_lock_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x222d6ea8 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x6470c04b atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x6602465b aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xfcecf035 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0a3371d9 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x0da36d55 atm_charge +EXPORT_SYMBOL net/atm/atm 0x1159148c deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x11c64a81 atm_dev_release_vccs +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 0x851a0ba2 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x92c0c5e0 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9b547e27 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb327550b atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xb8d0fe96 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc1de0804 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xcd31fddd vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd66e796f atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xdf3c039d atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3fbe0b24 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5905f013 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x638cf9f6 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8523bb50 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9bb56112 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa6f4e070 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe725bb26 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf23a294d ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00a37c12 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x047a636a l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0912ec18 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d688eb7 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c07b2a5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2271c7a7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a49270e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e6e58ec hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fdbfdc1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31a06a4b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3444415b bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3620c118 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d8c58f7 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4837778c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dc9e19a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51b171ba hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58afeb5e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59024bb6 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6262b945 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x650d1b7e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69c37f9a hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x736e2441 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73f8d34d __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c095c35 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d5373a0 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d96b2fa l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e8d85e2 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x913128b7 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93c319b3 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ab5f803 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9cf8436e l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f59c736 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6e07549 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7172dff hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7f62e7d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad1c4281 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2cc8f03 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd42c9e5 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcb1e307 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xecb741cb bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd3b738 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2796e4a bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf719a9a4 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf735b947 hci_unregister_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2e884ab6 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4e963580 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe685e94a ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe05c23b ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1cbbd9d9 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 0x3e9edfb8 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x98f912ae get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x9949c385 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 0xcb5abcdf caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x07dcb89a can_proto_register +EXPORT_SYMBOL net/can/can 0x0822bf83 can_send +EXPORT_SYMBOL net/can/can 0x2a28a50a can_rx_register +EXPORT_SYMBOL net/can/can 0x47b3cff1 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5fbd7a0a can_proto_unregister +EXPORT_SYMBOL net/can/can 0xfa865f40 can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x058e43f6 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x0b63ad43 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x0bb3fe55 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x0ef567eb osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x1ba75f0b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1c407f50 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1d60369a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x23057a99 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x255604fa ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x260cc5de ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x26bb6354 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x28d8d505 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2aac57f2 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2bddcd2f osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2c711ee5 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x2faf6704 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x302f6ca0 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x30f569e6 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x3302b31c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3954d61a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x41a7d310 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x41d3a5c5 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x499ab144 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x499ffe9e ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x4b5c6d34 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x516842b8 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x577f22a6 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57fafbbb ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x582fdcc1 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x5a94abdd osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5ca87bf8 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x5fa63362 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6050b9a4 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x637b6ebf osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x643939ad ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x680c4a2c ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x69aad1f2 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6b025e3b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x6d6eab81 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x712ff457 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x727ba89f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x746a6fdf ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7639b1ed ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x77d7ab28 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x812d1c10 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x885bbf50 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8ee8af52 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x8f6c4d50 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8fc20788 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x90683ecc ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x91788210 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +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 0x9d530b0e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x9e41fa70 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x9e6650f8 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa09a4cb9 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xa0a28352 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xa0ca23fd ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa2776ed0 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa4566ffe osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa51bd42d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa7bfd284 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xab19591f ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xadbf66ff ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb636d444 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb6728353 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd70a417 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xbfc438ca ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc40ee2ff ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc56bcb35 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc586fe5d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc74f61d8 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc781724c ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xc84e0feb ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc89edf9e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc95a28fe ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcb87574d ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0xcf45330f ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4282bce ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd6261fb0 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xdcee1cf0 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xdcf2599c osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xdcfb67b2 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xdf314e1d osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe004972c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xe23b2c4a ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xe474c6ef ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe669a3e8 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe86c6d0b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xeaf1458d ceph_copy_to_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 0xef518eb8 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xefb3af5c ceph_wait_for_latest_osdmap +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 0xf22db57d ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xf2d0f756 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf3e24cd0 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xf40c46c3 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xf538324d ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xf5ba313d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfa267dd7 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xfd6586e8 ceph_zero_page_vector_range +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1805b453 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa77c011e dccp_syn_ack_timeout +EXPORT_SYMBOL net/dsa/dsa_core 0x44bd65f1 dsa_port_vid_del +EXPORT_SYMBOL net/dsa/dsa_core 0x6460bd03 dsa_port_vid_add +EXPORT_SYMBOL net/ieee802154/ieee802154 0x249b617f wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ece2837 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x530e501a wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x53a5ff84 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x56228739 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xec4d6a86 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x1148abbd __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xa5f4c636 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x44175e28 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0a036c07 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2eff80b0 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3bdb3599 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeab6e078 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x01181328 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x310cb528 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xddbccd57 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xec47f620 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6c8991e4 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd9596427 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfabd6db4 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x22947104 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xde37a573 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x68f55607 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41ccaa69 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5251da9e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b6e1a53 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7dbe7366 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xec052efe ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf13f0880 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf3f88c22 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf55455f2 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf80ae82a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x35ad6d00 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6ab6af4e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa8f41be4 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xc17425d0 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xf822d326 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8fa95d16 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcaa0fbc9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/l2tp/l2tp_core 0x47a6cbc5 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_core 0xbb156d2d l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xb0fd711f l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x177b3794 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x2fdb1698 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x56dfd860 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x5e42b3a4 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x7c34638a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xc38c3bba lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe1c40b74 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xeca1b63f lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x06c83924 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x0ea199ed llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x1cca02ee llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x1dbad293 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3c3604ed llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x42b9a14a llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5bcf29ee llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x01efa6b7 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x04ef8cd4 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x06ea3e1c ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x0caf0400 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x0f25ed95 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x12f8f66e ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x16af533f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x17d90d17 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1d2ddc23 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x2454c151 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x24df81c3 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x255d5d04 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x29564e4e ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2a0779e1 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2a14ab36 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2a7c57d9 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x31c855e4 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3693ed10 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x384316f8 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x38ea0e5a ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x3b270fd9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x3bd836ea ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x41e4e89c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x4828cb81 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4e14356a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x4fc7ff6a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x55f1410c ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5aeddf01 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x5bfd07f1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5d5a1e1e ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5de8b3f4 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5ea14cd5 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5f7a6b06 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x62846190 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x64a94b54 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x69328bcf ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6a93122a ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x6cd7fda2 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6f8caa98 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x6fcc5c6b ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x72f1f6b4 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x74e9c30f ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x787e9d97 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x78d1ad17 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x79451f16 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7b925552 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7da243c9 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7ddf235f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x80f9bc65 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x816ccce8 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x82fe166a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x83c3cc08 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x84fe3ef4 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x86fb59b2 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x872afe1b ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8ad46d30 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8d068dfe ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x8e920852 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x95546c47 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x95f781e5 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x96139fb8 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x962e54e4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x976daa2c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9bd5f424 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9e843bac ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa0484505 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xa9417fb6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xa9625330 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaf34468e ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb51ffabe ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xb8095c94 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb9433e6d __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbac7f398 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xbb16c43a ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xbf5d73e4 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b4728f ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc1cc4c29 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xc64e2ef4 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc873c231 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xcb4aad59 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xcc54df83 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xcda47481 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd30ebbc0 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xdc1c3fb9 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xdeb942f1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe2c6cb87 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe54000b6 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe921b6ae __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf0dfed1e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf6831a89 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfbd116b5 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xfee8b7a0 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac802154/mac802154 0x1610f539 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1a009243 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x1bd060d5 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x888080bb ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa41619b4 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc325483d ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd3c965b2 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf729c8bd ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c9deb57 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11803c1c ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15046791 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21075034 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x44385d60 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x610781fe ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64e193fe ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79b4c526 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79e7f093 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81da0681 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf7865d5 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc268e44b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd5e33f71 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea9ba2bd register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2014e7c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x13bd10b7 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x93c63552 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x81ffaca3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x85fab2f7 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x98063b29 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xa4afa754 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xcc2c7659 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x211690af xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2444960b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x2e73334d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x47b48958 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 0x818eb31b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x85764a39 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xaff8ff3c xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb11f73e4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb685d295 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0cc6feec nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x22b2703f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x34289491 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x39ef6221 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x40540f38 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4f6563c7 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x6244118c nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x6869a081 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7c86b82d nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x8a0b5497 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x91a2e964 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9cccff60 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9ebd51f3 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb1a335b5 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb8434f2f nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xcb0ab884 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xda56775f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xeb273c25 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf2d1efd8 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf7b41118 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfb89b84e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x06662e52 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x193ef4a5 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x2446621c nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x26efe5be nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3184d12f nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x38894f67 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x448e1314 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x51837f0b nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x5307eb94 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x53bd359e nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x568f20a2 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x6213bf56 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x6fca5817 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7f17d1fe nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x8d8e9b28 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x95187471 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb50af228 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc1a19a39 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xc94c33e4 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd2c1f6b7 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xd313bd44 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd7bee04f nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xd8b4a699 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xda17d498 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xda2e8664 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xdaaca0f1 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xf604a989 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf919a5b3 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xfe6e16d6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nfc 0x04260d31 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x075eb29b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x1086ffcb nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x2386710d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x3b70c94c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x3da76caf nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x3e795b73 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x4bda1ebe nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x52711e05 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x5c1d4288 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x5d2c5a57 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7cb4d54f nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x7fdf598b nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x9237546d nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9d1e32a3 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xa189d3d2 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xaaec0b70 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xbb2e84b1 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xbd160a8b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xcf644186 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xdca26430 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xde7d526f nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xea19f32f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xf35f3485 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xfb2e83a7 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc_digital 0x1a169a5a nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8432555d nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb3fd2cae nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xce996596 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x74269f87 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x7676e076 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7f17a558 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd81bf9ff pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xe1620dc7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe4610078 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xef61d4d6 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xfe079e22 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fff2251 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3021c5a8 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d6ee145 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4a75f779 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x53d3e5cf rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x570b43d9 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d14630c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e4a5c7a rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6c4c72b3 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c0908f3 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1aa3761 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc6d91108 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8c8153b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xece2f63e rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xef2d6017 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf756c8d4 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb8d9237 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0xd5c62254 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2dc78b0a gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3f469002 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4e4dcd4d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7d2a2250 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa57f5790 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf0789a06 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x30b1138f tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x5099ecf6 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x85250461 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x90cfdc8e tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x1f43c11c tls_get_record +EXPORT_SYMBOL net/tls/tls 0x61de6219 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0x803ed777 tls_register_device +EXPORT_SYMBOL net/wimax/wimax 0x22258c07 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x85b5b293 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x00961218 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x01015b48 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0276a27f cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x041599a7 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x041d0d92 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x06e33ce2 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x06f7122e cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x093cf147 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c5d8cac cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc53bcc ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc84588 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x0d71226c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x10cd86d5 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x121708b6 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x125ac1aa cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x13b59a2e ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x14b92ef0 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x170f9190 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1fb8848b cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x2ca736a3 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x328d6dfd cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x33d5c95d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3495043c wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x34dedda2 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x37f26843 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3ce858bb cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4385d417 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x47293d21 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x482bb1a6 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x494bf80a cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4caea962 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x4dfe4240 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x50421959 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x510e178a cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53372c55 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x53a6f515 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x5572489b wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x5608db02 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x5a16ee16 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x601c9b3c cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x646cfc8a cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x657dcfaa cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x736a7b1c regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x74119061 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x748f7ac9 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x74b5080c cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x758cb164 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x75f08732 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x78cac985 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7c00741d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7dfcc5bd __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x7fa27803 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x810a3565 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9025e92e cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x90ff721f cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x91e2ae04 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x92499636 ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x9bd82ad9 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa3266a4a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xaa644dc7 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xae618224 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb005a418 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb6e7b742 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb7fcc10d cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbc685635 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc0c9957c cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xc0d9b6d2 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc46a0c46 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc519d060 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc61ba83d cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xc96a8b70 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcabf97bf cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc625cb1 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xcefa7046 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd3769180 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd68f3668 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xde4471c4 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xdfddd0f8 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe112a3a2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xe2006517 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe2a4acaf cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xe3339e7f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe4fa7b4e cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe5217584 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c913ca cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xec02ebfa wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xeea1b053 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xf1150c46 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf2c10fd6 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf45abd51 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6cf794f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xffc80397 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/lib80211 0x3e427b2e lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x43ff133f lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5825b559 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x61c38efd lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x69aa13bd lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x9bb45c39 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x625e0470 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5fe39c65 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 0x324dbb4f snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x760704d1 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 0x89541f63 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc1b24a72 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 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 0x562379bb snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x020323cd snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x07f1ad40 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x09931399 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x09c25fc3 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x161908ca snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x16e4f161 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x184d05e2 snd_ctl_find_numid +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 0x1b42ca75 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x1e742275 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x28bdd1dd snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a4f80df snd_info_register +EXPORT_SYMBOL sound/core/snd 0x3f60cee9 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e21ad4f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x51e12dd0 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x54cab4ab snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x58707685 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x5ec933bd snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x62d81d34 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x6cdbb51a snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x6cf6428f snd_jack_new +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 0x736455b9 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x7cd36b22 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x86a5d2b6 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x8995de84 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x8cc32336 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 0x94f39209 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x97a1b689 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x990408ed snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x9c115d6c snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9f99908d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xab3ce848 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xac5462af snd_component_add +EXPORT_SYMBOL sound/core/snd 0xafdfe3b2 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xb039f792 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb6d92125 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xbec800a4 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xbf8353e3 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xc2a91bfe snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc8cae81c snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xcbe7178e snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd1924703 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xdd0e09af snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xe7f2ea71 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xefb4c038 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xf0a0524c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf459cfa0 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xfca0c150 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x556dcb55 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04303308 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0bb08957 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0d5f5627 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0e17284b snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x188fdcdd snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1c0fd20e snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1eb5ceca snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x1f1494e2 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x2ecfe8e1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2fefabe4 snd_pcm_new_internal +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 0x44a5858f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x47aa1d1f snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x482fccfc snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x4975b35c snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4d0cf371 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x5092d8fe snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x55476ccb snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x607f44fb snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x637e0585 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65a96cfb snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x75870b9a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x78efd2af snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x7cd71fab snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7ec6d058 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x885630e7 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8a8e6718 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x8a978218 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x8bec1563 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x92dfefb2 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94f8fd6d snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x97df1b70 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa083b8d9 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa2d8d376 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa4744353 snd_pcm_lib_preallocate_pages_for_all +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 0xb65f8dd1 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc5172c56 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd90ebd19 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xdc3b74bf snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xde7c6105 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe186f20d snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xe2811c55 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe81d42d4 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xf0f9bd78 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf32ce042 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf5390378 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x021e1049 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1fbc7af3 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x260934ce snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x27c8fef7 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x37b654a6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3dcad353 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x549a56d0 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7325dcf4 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7aa64534 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fe68af5 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x827e00f3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c385dca snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb247940f snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb936a194 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc25a7ed7 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3174d92 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdae2f9be snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe018c75f snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe5687973 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf77d38ef snd_rawmidi_kernel_read +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 0xcdb1d3c0 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x048ac250 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x34f56fca snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x436b1d1d snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x4f0e4a7e snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x602301e6 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9d83a3d0 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa997cb20 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xb327228d snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xde1953e1 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xed5836b4 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xf04731e3 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xf2656826 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xfb7cc151 snd_timer_open +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x63df889e 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 0x11636660 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2fbf55f8 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3dbdecd7 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa08d0475 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa7b66f2e snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb675f435 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc0afcb8c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc2736d7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe9d41256 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3f71e88a snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4d7abff7 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x56abf2c7 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x907ebfa0 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa73dd4ed snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xacfc7064 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb2f20c8e snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe4b2a764 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe6c06c5f snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08dee731 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13e70058 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21cba64e cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bcff489 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2df91ad9 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31602347 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48e1e1f7 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cb51b6a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68e146f0 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x71fd5b86 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73c89644 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x848a7db9 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x870ff159 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89318232 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a0e2097 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b48874b amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8c137cf4 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa178fc0c avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa19e0e60 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4e7afe5 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa578613d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5b33dfd fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa88aa88a amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab662e55 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb22e5719 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba1b41a4 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5cb04f2 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8524a90 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0e1825b cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd60abe35 amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe03ee007 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1dbf2b5 iso_packets_buffer_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x73c9b949 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc405353d snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x030195a9 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x05e747c6 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x23a24f21 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2798e9a8 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4aafcd60 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xac7650b4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcf8172b8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xff5cd150 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x11609e96 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x38bd3f8d snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7651f23d snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xab73548a snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfc2e5cd3 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfd6ea9cd snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0218e327 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa1bec6e8 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbd3849b7 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xea9c1d41 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x93cc21ab snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd4fba7b1 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x13b6d4cd snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x322b485c snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3ccb77db snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6344a3a1 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7122641c snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xebb63bb5 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0524f876 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3ef6ccf8 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8fd7704b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa7152836 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xde84f08b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf60e2889 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x29588590 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x358e78da snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7756620c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7bc532d5 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8e0eb98b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa0cd80b2 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbf48ce85 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xce56565b snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcfd4feb8 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe51fe373 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0fb948e1 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1eff2952 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40c76c44 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47437410 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5582d115 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6548c5b8 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x871966ed snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9836cf22 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9fd911bf snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xacdc9a62 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb948aad2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbad34687 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc72e3a2 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc90520f0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed2c0c14 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeff38692 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf59467dc snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x4bef4b5b hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05c610d8 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x11016eef snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x20a567fc snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5b5591b9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6d5ffb2d snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x79c45d9d snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb44de9de snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd633fd69 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xda952ff5 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1f262980 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6c0753a6 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x89f2e4c8 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x02fbb67b oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d2d8b67 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30d3974c oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a761b09 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x666d5925 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6ff99a8f oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8884bc54 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91eccde9 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93a5d052 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9b2e6ce4 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2877b6a oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa63e79cf oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb605089a oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb80f6a99 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb41772f oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd87ef16 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbef20745 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc63ab40b oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcdf39b52 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xedee9d00 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa2b4b7e oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4c4cdee7 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x726fdec0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8f5d39f7 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xab2ea491 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdb623caf snd_trident_start_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1861ed5d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xbfb94f44 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x13740b3c tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x45bd4628 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x05c70b13 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9cf07363 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe585bc14 aic32x4_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0xa03db442 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x5e25cf8d cht_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x61d80fd7 sof_tng_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x8639b9f0 tng_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xaabb51a4 byt_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xf13472ea sof_cht_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xfc37e50e sof_byt_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x347d896b hda_codec_probe_bus +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x43107aa1 hda_codec_i915_init +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x68d0ecba hda_codec_i915_put +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x7275135c hda_codec_jack_check +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x9c731220 hda_codec_i915_get +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xc63c96f6 hda_codec_jack_wake_enable +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xdd7aeb29 hda_codec_i915_exit +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x08a527c8 sof_apl_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x5b5be595 apl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x61cf31b7 icl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x703e1716 tgl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x7d61c726 sof_cnl_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xacf31f39 ehl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xf4d48b52 cnl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x132971c9 intel_pcm_open +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x386d06c3 intel_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xa1759b16 intel_pcm_close +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xf47309ed intel_ipc_pcm_params +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01757cb7 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21e73101 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x242c14ce sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2435e5fa sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24dc59ca snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a0bbf4a snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ba9f115 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x303c3161 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x308700d3 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38ad1b26 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b63b73d snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d0c7c9c snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4345e553 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x448a5dd0 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x453932ee sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c619b32 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c8e7e7f sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5143c0f7 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5552347e snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x599a5144 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d5068c5 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60d97aae snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x688d4d52 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c46953a snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x793add71 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79938d30 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8487bed5 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a5c46d0 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f4c72cd sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ac4e501 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9df3486d snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa17f985b snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaaed112e snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab8f85ae snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb05697b8 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb13d29fc snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfcf2b44 snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc114516c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4cd2d8e snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf8a50e2 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe09e8fe7 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2953e63 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7a6f67d sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed081542 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xefe76d00 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd9e4bb3 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/xtensa/snd-sof-xtensa-dsp 0xb6507a12 sof_xtensa_arch_ops +EXPORT_SYMBOL sound/soundcore 0x6ec074a6 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x73c879fe 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 0xe4ceae5b register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf9f927b2 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfadc6cd6 register_sound_special_device +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x33c9b680 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4c9819af snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5d6692d4 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7a8fd699 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa1716a6d snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb5348df8 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x293ac667 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x34ac95ae snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x48f920c4 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7d95566f snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x85659341 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x97bb24f2 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9db98086 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe2935f8c snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x24d226d6 __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 ubuntu/hio/hio 0x0664c80f ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x14c773fa ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x2a1af18c ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x3b75eb26 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x52d141c4 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x5cbf0191 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x7d84f9d4 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x7e982a67 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xc7b5a91f ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xdcb987d6 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xf4349aa0 ssd_get_version +EXPORT_SYMBOL vmlinux 0x000ee0c6 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x001d0966 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x001ecd80 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0051254e invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x008b5a6b migrate_page_states +EXPORT_SYMBOL vmlinux 0x0092cb5c register_netdev +EXPORT_SYMBOL vmlinux 0x009d23ed twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00ac9e9d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0100bb03 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0141f88e dev_change_carrier +EXPORT_SYMBOL vmlinux 0x0144ad5b md_handle_request +EXPORT_SYMBOL vmlinux 0x0145af1e __pagevec_release +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0153f3a4 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01753b25 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01786c81 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017ead27 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x018189ba d_invalidate +EXPORT_SYMBOL vmlinux 0x0181e490 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01aeedc1 elevator_alloc +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01ca39fb __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x02064438 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0x020705c5 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020b9dea drop_super +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022c2c46 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x022ec59e input_unregister_handler +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02ab1991 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x02b2df03 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02b8e009 mdiobus_write +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02ceace6 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x0301c40b icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x030b8a89 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x03313909 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0331d367 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0352ec9a block_write_begin +EXPORT_SYMBOL vmlinux 0x035525b1 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036cc31c ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0373618b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0383904d phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039eab1a mr_table_alloc +EXPORT_SYMBOL vmlinux 0x039f3131 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x03c85331 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x03cf7346 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x03eefe3a compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0436c11b mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04543382 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x046719ed dev_mc_flush +EXPORT_SYMBOL vmlinux 0x047b6310 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048c16bc ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x04908991 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d3f4ee eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0524c6d5 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x053117ba netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x0534402d __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x0540ee6f blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0544a2fe __page_symlink +EXPORT_SYMBOL vmlinux 0x054e642c jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x055cc18a iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0578c3d4 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x05826f1e clocksource_unregister +EXPORT_SYMBOL vmlinux 0x058a0df3 sock_create +EXPORT_SYMBOL vmlinux 0x05b0837c page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05b485d0 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x05e14b86 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x05e5292c filp_close +EXPORT_SYMBOL vmlinux 0x05ec4552 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x05ed4492 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x05fa9d24 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x05fab892 sg_miter_start +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060ee7b4 tso_build_data +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062f0150 wireless_send_event +EXPORT_SYMBOL vmlinux 0x0631494b agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06599d02 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x0675fd65 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x067bfe69 lookup_bdev +EXPORT_SYMBOL vmlinux 0x069b7d4c tcp_seq_next +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06abe5ed devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x06ac79a2 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x06bc2dd1 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06f6a516 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x0707fbcc flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x072f3b58 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07307c0d fs_parse +EXPORT_SYMBOL vmlinux 0x0732b83b amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074801da compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0765572c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x07915eb4 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c41816 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07ca9fa8 pps_register_source +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d3eaf3 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0803eca6 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081a3199 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082bab09 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084b9db8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x0858aa26 config_item_get +EXPORT_SYMBOL vmlinux 0x085ee131 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0863991d md_integrity_register +EXPORT_SYMBOL vmlinux 0x08687412 generic_fadvise +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08a34f27 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x08a5428a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x08bce791 dqput +EXPORT_SYMBOL vmlinux 0x08c15a48 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x08e5fe2d amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x0902d481 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x090ba3ff pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x09182b2d cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x091ac45a cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x091db3ca vme_dma_request +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093367be ata_port_printk +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache +EXPORT_SYMBOL vmlinux 0x09414fa5 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x0943863b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x094442d4 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x0944c43f node_states +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09682235 down_timeout +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097bf401 inet_shutdown +EXPORT_SYMBOL vmlinux 0x09801ed0 param_ops_byte +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098f7809 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x09a50d23 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x09c5ef06 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x0a0bc65b generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a14d872 dentry_open +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a43b58f udp_ioctl +EXPORT_SYMBOL vmlinux 0x0a56809a tcf_idr_search +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a82b1f0 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0a943557 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x0a994677 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0a9d463e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x0ad299c4 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0ae08544 configfs_register_group +EXPORT_SYMBOL vmlinux 0x0ae2237c ptp_clock_event +EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible +EXPORT_SYMBOL vmlinux 0x0b01ede1 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x0b03238c qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 +EXPORT_SYMBOL vmlinux 0x0b102ba1 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b241933 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b5a6e26 generic_permission +EXPORT_SYMBOL vmlinux 0x0b6e8265 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0b725306 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0bae40fd pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd92d18 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x0c026b43 input_set_keycode +EXPORT_SYMBOL vmlinux 0x0c088c4c param_set_bint +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c1f4378 param_get_invbool +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c276871 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0c5714a1 dquot_get_state +EXPORT_SYMBOL vmlinux 0x0c6813df phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x0c68ba18 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c842c94 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc7bb25 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0cd49de4 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd689fb skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x0cdfa6a3 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d2e9667 iov_iter_init +EXPORT_SYMBOL vmlinux 0x0d37bf24 iget5_locked +EXPORT_SYMBOL vmlinux 0x0d4a88cf pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d71bff2 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x0d8df71b inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x0d981b51 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x0da3a98e alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x0dad5e06 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0db5f40a phy_start_aneg +EXPORT_SYMBOL vmlinux 0x0e016ebb devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0e0a6726 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x0e0f9100 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e396e54 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x0e399ea0 make_kuid +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e5d4d26 get_amd_iommu +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7af1b4 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0e7d497c netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x0e8ec859 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x0e9e21f8 scmd_printk +EXPORT_SYMBOL vmlinux 0x0eb2d767 dump_page +EXPORT_SYMBOL vmlinux 0x0eb4c646 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0fc04a mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0f17c88a eth_type_trans +EXPORT_SYMBOL vmlinux 0x0f1b0871 d_tmpfile +EXPORT_SYMBOL vmlinux 0x0f2477f9 generic_write_end +EXPORT_SYMBOL vmlinux 0x0f2cb0cb sock_no_listen +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f52f801 input_reset_device +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f899b91 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0f8bde79 audit_log_start +EXPORT_SYMBOL vmlinux 0x0f8f129f file_open_root +EXPORT_SYMBOL vmlinux 0x0f909b80 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0dbf3 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd23e09 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x1015ccd1 follow_down +EXPORT_SYMBOL vmlinux 0x102204f1 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x102b741f serio_close +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103b4cf8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x1053b1ca pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x10579ad0 dev_mc_del +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1071af5e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1080c9a5 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x10a01661 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x10a6a68c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x10ad101d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x10b58780 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x10c1a015 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e22537 block_commit_write +EXPORT_SYMBOL vmlinux 0x10fa26fc __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1113c55d pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x111b446d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x111c4afe bd_set_size +EXPORT_SYMBOL vmlinux 0x11360ed3 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x115b6d6c dst_release +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117039a1 bdi_register +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117b8448 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x118dd6e9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x11aaef93 brioctl_set +EXPORT_SYMBOL vmlinux 0x11adac0f get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x11c60896 generic_setlease +EXPORT_SYMBOL vmlinux 0x11cc3199 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x11d94eef sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120e46c7 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x120e89db get_tree_bdev +EXPORT_SYMBOL vmlinux 0x12327873 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x125100fd ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x125611fd phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x127230fd mdiobus_read +EXPORT_SYMBOL vmlinux 0x1291a0d0 input_grab_device +EXPORT_SYMBOL vmlinux 0x129cc3f4 param_set_copystring +EXPORT_SYMBOL vmlinux 0x129ea810 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d01816 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x12d8df1d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x12e5d1ec md_write_inc +EXPORT_SYMBOL vmlinux 0x12eecfc7 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12f92b95 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x1308fd2b netdev_port_same_parent_id +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 0x131f91d3 free_netdev +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133e2031 keyring_alloc +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x13566d70 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x135b7788 bio_split +EXPORT_SYMBOL vmlinux 0x1383656e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x1389a4c7 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13ae7e16 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x13cc1068 blk_get_request +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f08e86 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141c0ac8 register_cdrom +EXPORT_SYMBOL vmlinux 0x14519983 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x145b4dd8 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1473dc30 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1474ee94 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1481bfce kset_register +EXPORT_SYMBOL vmlinux 0x1481d3a2 netif_skb_features +EXPORT_SYMBOL vmlinux 0x148ec0f3 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x149a787a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x14a139a9 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x14bd8112 inet6_offloads +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cabd24 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x14d34a34 inode_init_always +EXPORT_SYMBOL vmlinux 0x14d9a507 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x14e51256 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x14f5a78c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x1504983b param_get_string +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x150ba273 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x151e7167 set_create_files_as +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152f4b2d tcp_shutdown +EXPORT_SYMBOL vmlinux 0x154b119a dst_discard_out +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15517d39 ll_rw_block +EXPORT_SYMBOL vmlinux 0x15647bc7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x15770dc0 qdisc_reset +EXPORT_SYMBOL vmlinux 0x157c1a94 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x1598cbb3 dquot_transfer +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bd4c95 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15d7f502 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616bde1 bio_put +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x163ec8a7 d_rehash +EXPORT_SYMBOL vmlinux 0x166cb30c release_sock +EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169a1e42 __lock_buffer +EXPORT_SYMBOL vmlinux 0x16a7d1d6 simple_get_link +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16cdde8a noop_llseek +EXPORT_SYMBOL vmlinux 0x16dbecee xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1705a702 tty_port_put +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1717581d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1724de22 mmput_async +EXPORT_SYMBOL vmlinux 0x1726ae9d napi_consume_skb +EXPORT_SYMBOL vmlinux 0x172f0cda security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x172fce7f find_lock_entry +EXPORT_SYMBOL vmlinux 0x173a1fd1 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x17665df4 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1774c5d3 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1778904f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x177ee5d6 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x179a21f6 d_move +EXPORT_SYMBOL vmlinux 0x17b1b733 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x17b38985 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x17b8ffb3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17d18958 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17ffedc2 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x180329d2 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x181e17cc tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1821e4ed clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x184eed1a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x18503627 vfs_mknod +EXPORT_SYMBOL vmlinux 0x1858cab1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x1862c40c __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x187251d7 locks_free_lock +EXPORT_SYMBOL vmlinux 0x1872c1ba mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x187eec99 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188b9d43 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188f3053 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1904ee10 del_gendisk +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x19160729 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1918a4a6 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x195760b7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x196d7e7f pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1982569f iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198d6c04 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x198f0a0f vfs_setpos +EXPORT_SYMBOL vmlinux 0x19968559 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ce76b0 dquot_release +EXPORT_SYMBOL vmlinux 0x19cead36 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x19cf79bd mmc_erase +EXPORT_SYMBOL vmlinux 0x19d19231 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x19d7fa9c blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x1a08e2ae nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1a0f708f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x1a16356d __netif_schedule +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a1ddad2 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4b0aa1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x1a4c833a blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a67cb0c __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x1a68c4c2 dst_dev_put +EXPORT_SYMBOL vmlinux 0x1a71336d block_truncate_page +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a88429e devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x1a8dbf14 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x1a8fe854 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9cb2ea devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1ab1e879 sock_no_connect +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad7433d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x1ae6dcb4 __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b05c1f7 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1b0687ff uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1b332fcf irq_set_chip +EXPORT_SYMBOL vmlinux 0x1b357e9b skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b97e7d2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baa22a9 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb74e1f submit_bio +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be63b22 seq_lseek +EXPORT_SYMBOL vmlinux 0x1bf14cf9 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1bff6f22 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x1c012f1b agp_copy_info +EXPORT_SYMBOL vmlinux 0x1c06806e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1c14666b agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c37fa43 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x1c437fee jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c8a99bf __scm_send +EXPORT_SYMBOL vmlinux 0x1ca8994f intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x1cada2fc scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cb7a17d d_make_root +EXPORT_SYMBOL vmlinux 0x1cc5303c forget_cached_acl +EXPORT_SYMBOL vmlinux 0x1ccc248c pci_assign_resource +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4a2a33 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x1d5822b4 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1d68772d _dev_warn +EXPORT_SYMBOL vmlinux 0x1d8ccbab xfrm_state_update +EXPORT_SYMBOL vmlinux 0x1d8f45ba single_open +EXPORT_SYMBOL vmlinux 0x1da422e6 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0x1dcd7e14 tcp_mmap +EXPORT_SYMBOL vmlinux 0x1dcec8b6 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dea3d26 padata_start +EXPORT_SYMBOL vmlinux 0x1deee90a mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x1df4a487 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x1dfb1c6d udp6_csum_init +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0b2612 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x1e0b9bb2 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e29d60f fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x1e30cddc kthread_blkcg +EXPORT_SYMBOL vmlinux 0x1e3d005f __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e628bf7 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7d366b tcp_parse_options +EXPORT_SYMBOL vmlinux 0x1e7ff8e0 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x1e90df63 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebb206b fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x1ec0e286 kill_block_super +EXPORT_SYMBOL vmlinux 0x1ec41200 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x1ec7217b neigh_for_each +EXPORT_SYMBOL vmlinux 0x1ecd406a vme_bus_type +EXPORT_SYMBOL vmlinux 0x1ed63730 vme_irq_request +EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef56342 mpage_writepage +EXPORT_SYMBOL vmlinux 0x1f021fa2 mmc_get_card +EXPORT_SYMBOL vmlinux 0x1f094412 stop_tty +EXPORT_SYMBOL vmlinux 0x1f118951 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1f173f0f lock_sock_nested +EXPORT_SYMBOL vmlinux 0x1f3fe661 task_work_add +EXPORT_SYMBOL vmlinux 0x1f4d5f85 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x1f4f11a5 seq_vprintf +EXPORT_SYMBOL vmlinux 0x1f53448c acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x1f663e2f __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x1f7afce1 search_binary_handler +EXPORT_SYMBOL vmlinux 0x1f834f6a dm_put_table_device +EXPORT_SYMBOL vmlinux 0x1f84b6e1 mmc_request_done +EXPORT_SYMBOL vmlinux 0x1f952471 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1fb90930 simple_write_end +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1fa89 config_group_init +EXPORT_SYMBOL vmlinux 0x1fe5a221 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1ff1e10a iov_iter_revert +EXPORT_SYMBOL vmlinux 0x1ff5d70e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20024268 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2028c3e2 clear_inode +EXPORT_SYMBOL vmlinux 0x2045aa6a pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20525d68 iptun_encaps +EXPORT_SYMBOL vmlinux 0x2058034f __put_cred +EXPORT_SYMBOL vmlinux 0x205fffa9 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x2064fa56 cdev_init +EXPORT_SYMBOL vmlinux 0x206d9225 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x207070b6 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208f46cd set_posix_acl +EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a82458 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bbe5f7 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d8bf1e dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x20e9b798 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x212d0b24 i2c_transfer +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x214b2812 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x2157d8b0 inode_insert5 +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x215cd405 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x216ed348 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x21862362 is_subdir +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x2191bf98 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2192c787 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2192dd00 vc_cons +EXPORT_SYMBOL vmlinux 0x21a09ea7 alloc_file_pseudo +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 0x21e853f9 dev_mc_init +EXPORT_SYMBOL vmlinux 0x21f9e6db vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x220e4e0b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22381b74 input_allocate_device +EXPORT_SYMBOL vmlinux 0x223f1c65 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227b1718 tboot +EXPORT_SYMBOL vmlinux 0x227e9485 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2284bd4e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x228eecdc tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x22b15ff5 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b90774 cdev_del +EXPORT_SYMBOL vmlinux 0x22bb8281 proc_create_data +EXPORT_SYMBOL vmlinux 0x22be901d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x22c5e650 rt6_lookup +EXPORT_SYMBOL vmlinux 0x22c90fa8 inc_nlink +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22e4d87b blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x22ec6d77 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x22f1eaed scsi_register_driver +EXPORT_SYMBOL vmlinux 0x234a4446 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x2364da19 key_validate +EXPORT_SYMBOL vmlinux 0x237751e9 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x2381ea84 param_get_short +EXPORT_SYMBOL vmlinux 0x2385d356 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239d43a9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x239f6db4 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x23a7573a skb_dequeue +EXPORT_SYMBOL vmlinux 0x23adbeb8 md_write_end +EXPORT_SYMBOL vmlinux 0x23b1e9b6 phy_connect +EXPORT_SYMBOL vmlinux 0x23b90faa scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c31dd5 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23da7192 mdio_device_register +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e3ba3f scsi_init_io +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f073a9 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242339e5 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x242ac471 tty_name +EXPORT_SYMBOL vmlinux 0x2433dc85 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2446292e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x24499448 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2461a8a9 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x246f82cd scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x247f0a38 clear_nlink +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2492e41d devm_request_resource +EXPORT_SYMBOL vmlinux 0x24b2eaa9 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d2d989 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x24d740cd udp_disconnect +EXPORT_SYMBOL vmlinux 0x24ec0e8d tcf_em_register +EXPORT_SYMBOL vmlinux 0x24f40b09 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x24f98bb1 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x24ff48a4 proc_create +EXPORT_SYMBOL vmlinux 0x2504ffab dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x250f5087 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x2510d2a6 give_up_console +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2538cb9a mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x253f92fa phy_start +EXPORT_SYMBOL vmlinux 0x253ff8b3 i2c_release_client +EXPORT_SYMBOL vmlinux 0x255a246f __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x255e4650 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25a4ad4e iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x25ad1356 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x25b2495d tty_register_device +EXPORT_SYMBOL vmlinux 0x25bd5663 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x25cf773d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x25d0d66c user_path_at_empty +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e6cc2e blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f46d78 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x25f8168b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x25fe8840 icmp6_send +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260ba98d iterate_fd +EXPORT_SYMBOL vmlinux 0x2616330c pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x261e97b8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x262ecf52 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x26382180 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x2647f5a4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x26764ad2 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x267eaaf3 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26990821 kernel_listen +EXPORT_SYMBOL vmlinux 0x26b87e2d iunique +EXPORT_SYMBOL vmlinux 0x26ca7b59 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e74f7b pagecache_write_end +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26ff839c security_inode_init_security +EXPORT_SYMBOL vmlinux 0x270f5c04 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2723df86 input_register_handler +EXPORT_SYMBOL vmlinux 0x2724256b invalidate_bdev +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273bf59c set_cached_acl +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2753789a rtc_add_groups +EXPORT_SYMBOL vmlinux 0x2756370a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +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 0x27830f12 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278e1deb skb_ext_add +EXPORT_SYMBOL vmlinux 0x279e2a4b blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x27b07539 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x27ba64c8 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bea9b3 simple_getattr +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d1fa14 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x27e76c5f compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x27efc362 ps2_command +EXPORT_SYMBOL vmlinux 0x2808b8f2 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281bed82 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2839b59a xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2843947f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2852f5b2 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x285ec96d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x288a668a mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x288bce26 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x28bebc70 scsi_device_get +EXPORT_SYMBOL vmlinux 0x28dd4386 devm_clk_put +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e1e3b9 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x28e8c99a kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x28eefb51 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x29026072 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29361773 complete +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x296a5d19 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert +EXPORT_SYMBOL vmlinux 0x2983e935 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x2986476b padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x298e0878 dst_init +EXPORT_SYMBOL vmlinux 0x2991a685 skb_store_bits +EXPORT_SYMBOL vmlinux 0x2996cb8f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x29a4656c param_set_invbool +EXPORT_SYMBOL vmlinux 0x29aabe17 dev_change_flags +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c1f39f eth_validate_addr +EXPORT_SYMBOL vmlinux 0x29cb2267 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x29cd90e1 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e3a146 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x29e98b46 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x29e9db1b pcim_iomap +EXPORT_SYMBOL vmlinux 0x29f32f93 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x29f64399 elv_rb_del +EXPORT_SYMBOL vmlinux 0x29fcd8cf tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x2a00e7ef jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x2a04a263 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2a2ab3c2 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a813651 blk_get_queue +EXPORT_SYMBOL vmlinux 0x2a859ee9 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x2a89c227 get_tree_single +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aab26dd put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x2ab75c77 km_policy_notify +EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock +EXPORT_SYMBOL vmlinux 0x2ace1bc0 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x2b306f7b tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b799cff skb_find_text +EXPORT_SYMBOL vmlinux 0x2b8b27f6 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x2b8fed01 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x2b972883 kill_anon_super +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba11568 nf_log_packet +EXPORT_SYMBOL vmlinux 0x2ba3d565 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x2ba62d15 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2bba4c3d xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdb455a mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x2be42ec5 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x2bed20f2 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x2bf06486 sk_free +EXPORT_SYMBOL vmlinux 0x2c06b89d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x2c0b8b8a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x2c12ee74 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x2c1e688f __block_write_full_page +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3635ae netif_rx +EXPORT_SYMBOL vmlinux 0x2c3f6a5a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x2c4c609b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x2c4fc19e __mdiobus_write +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c6014af ip6_xmit +EXPORT_SYMBOL vmlinux 0x2c642529 passthru_features_check +EXPORT_SYMBOL vmlinux 0x2c726539 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2c74e8e3 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2c8255f4 bio_chain +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c94a5ea phy_find_first +EXPORT_SYMBOL vmlinux 0x2c9b0568 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x2ca9bc1d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb3901e dquot_file_open +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf27e47 __phy_resume +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d075e95 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x2d113c72 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1cd43c build_skb_around +EXPORT_SYMBOL vmlinux 0x2d2cbd0e qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d766acf seq_open +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d95967f bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da1f7a2 dquot_acquire +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2dcc32e9 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de2db5d agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x2de54687 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e00c91f vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e19e6c7 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2ae6f2 scsi_print_result +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3b8b90 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x2e405328 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4924ac nonseekable_open +EXPORT_SYMBOL vmlinux 0x2e4d29bb filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x2e4e4f32 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x2e7091b6 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x2e7babd0 d_obtain_root +EXPORT_SYMBOL vmlinux 0x2e996421 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x2ea148b3 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x2eaf38b4 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x2eba3d32 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed9d393 sock_from_file +EXPORT_SYMBOL vmlinux 0x2edba81b inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2ee3b2d1 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ef07f8e kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ef3b22c inet6_getname +EXPORT_SYMBOL vmlinux 0x2efe64be neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x2f0055de xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x2f016b5f udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f374af1 __break_lease +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3ec775 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2f3ecd5c xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0x2f4dce11 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f65d756 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f86f926 inet_frag_find +EXPORT_SYMBOL vmlinux 0x2f8805bd security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x2f8f6b63 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x2f92bb1f __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2f94ae57 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2f967238 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2f98c8e1 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x2fa8c670 fqdir_init +EXPORT_SYMBOL vmlinux 0x2fbe2177 generic_perform_write +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x3004ae1f param_get_bool +EXPORT_SYMBOL vmlinux 0x30194bbb bdevname +EXPORT_SYMBOL vmlinux 0x3019ace1 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x302e7505 skb_push +EXPORT_SYMBOL vmlinux 0x3042d64c touch_atime +EXPORT_SYMBOL vmlinux 0x30469600 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x304c2ea9 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x305a979a blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x30643265 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x3064e773 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x3066b292 genphy_update_link +EXPORT_SYMBOL vmlinux 0x30893526 tcf_block_get +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a2db7d mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b66356 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x30c60d88 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x30d7c21b unlock_page +EXPORT_SYMBOL vmlinux 0x30dde300 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x30e628a0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x30e65ac5 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f473df input_register_device +EXPORT_SYMBOL vmlinux 0x30fdf564 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3110d55e netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312e609a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x312eb8d3 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3136a74e param_get_int +EXPORT_SYMBOL vmlinux 0x3145099e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x316c5542 do_SAK +EXPORT_SYMBOL vmlinux 0x316e833a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31d14096 bioset_exit +EXPORT_SYMBOL vmlinux 0x31d209cb mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x31d42ac4 dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x31d60f4f netlink_ack +EXPORT_SYMBOL vmlinux 0x31e2d6ad dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x31f0fad5 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0x3218fb31 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x321b5fca arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x321f92e6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x32227b63 mdio_device_create +EXPORT_SYMBOL vmlinux 0x324c6379 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x3250e0b6 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x326a2f98 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x326f34a4 sock_create_lite +EXPORT_SYMBOL vmlinux 0x327a7cd5 register_console +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32881cf3 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x328f8ade vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x32b898d0 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x32ce03ba agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32da6231 neigh_destroy +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x3303a22b pci_iounmap +EXPORT_SYMBOL vmlinux 0x330d9bd2 sync_inode +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x3346b3d7 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x3355057f request_key_tag +EXPORT_SYMBOL vmlinux 0x3359e9c8 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33b34999 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d2273e _dev_info +EXPORT_SYMBOL vmlinux 0x33e4297f dquot_commit_info +EXPORT_SYMBOL vmlinux 0x33e5917c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x33e62f9d inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x33ecb55a bio_copy_data +EXPORT_SYMBOL vmlinux 0x33ef237a phy_init_eee +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 0x3405f43f md_done_sync +EXPORT_SYMBOL vmlinux 0x341389e8 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x341ed1e6 tcp_prot +EXPORT_SYMBOL vmlinux 0x34258b6d fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x347f7814 pci_set_master +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x34927054 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34a7a858 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x34ad8b54 vm_map_ram +EXPORT_SYMBOL vmlinux 0x34ba055d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x34cced65 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x34d14f59 start_tty +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f64f41 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x354b505c inet6_release +EXPORT_SYMBOL vmlinux 0x355cb445 sock_wake_async +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3568dad9 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x358ae266 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x35955cae ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x35a80e06 sock_init_data +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b06543 __brelse +EXPORT_SYMBOL vmlinux 0x35baef4e filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x35bf3087 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x35e976f3 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362af6d4 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x3632dd5a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x36345e74 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3665a573 padata_do_serial +EXPORT_SYMBOL vmlinux 0x366da980 mount_subtree +EXPORT_SYMBOL vmlinux 0x36842ec5 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x3698b576 set_wb_congested +EXPORT_SYMBOL vmlinux 0x369b9f01 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x36cd4633 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x36f599ff rio_query_mport +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37205885 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x3722acdc seq_hex_dump +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x373b9746 phy_attached_info +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374c7b33 vga_get +EXPORT_SYMBOL vmlinux 0x375103fa ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375cb97e seq_printf +EXPORT_SYMBOL vmlinux 0x37603488 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x37669270 single_release +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37879d4d pci_disable_device +EXPORT_SYMBOL vmlinux 0x378ee044 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x3792316c mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x37ac5a6f dev_get_flags +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bde19e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37dac746 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37fbe909 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x380c4e87 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x380f8e08 agp_backend_release +EXPORT_SYMBOL vmlinux 0x380faf4b pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x381612e4 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38276b18 generic_writepages +EXPORT_SYMBOL vmlinux 0x38433f42 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x38525a07 dst_destroy +EXPORT_SYMBOL vmlinux 0x3855b1f1 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x385b69ab drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x386ebafc pci_match_id +EXPORT_SYMBOL vmlinux 0x38856a62 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388716b0 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388bd6e5 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3894febc user_revoke +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389a7161 pci_request_irq +EXPORT_SYMBOL vmlinux 0x389be07b security_path_mknod +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bce53a do_splice_direct +EXPORT_SYMBOL vmlinux 0x38ca1035 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x38d02c16 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x38d294dc free_buffer_head +EXPORT_SYMBOL vmlinux 0x38d46811 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391053cc param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3985df29 uart_resume_port +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a0394d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x39aa37eb pci_iomap_range +EXPORT_SYMBOL vmlinux 0x39ab0a91 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x39b42f13 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b5bf86 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x39cb19fb bdi_put +EXPORT_SYMBOL vmlinux 0x39d1bfc7 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x3a045bc7 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a12f0bd pnp_device_detach +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a6c12fa free_task +EXPORT_SYMBOL vmlinux 0x3a6f4619 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x3a7e38f1 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x3a995935 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x3a9caca7 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abd8206 register_framebuffer +EXPORT_SYMBOL vmlinux 0x3ac7422d xfrm_policy_register_afinfo +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 0x3adae4f3 phy_driver_register +EXPORT_SYMBOL vmlinux 0x3af675a5 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b0a2f79 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b253b68 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b39012f sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b488d52 dev_activate +EXPORT_SYMBOL vmlinux 0x3b4bedef nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6a2ee0 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x3b7fe02e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b8b6793 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bb39d50 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x3bcc0ce9 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x3bdece2b vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x3be47824 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfd23cb netdev_alert +EXPORT_SYMBOL vmlinux 0x3c0cb29a skb_tx_error +EXPORT_SYMBOL vmlinux 0x3c14a596 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1c1429 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x3c1f79d1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x3c250c27 phy_print_status +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427ea0 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0x3c4a7836 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9225db scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3c94a523 cont_write_begin +EXPORT_SYMBOL vmlinux 0x3ca07fb1 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x3cb79a7f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x3cbea5d7 ihold +EXPORT_SYMBOL vmlinux 0x3cbfa7b5 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x3ccd6bc4 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cea24c4 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3cf3d538 single_open_size +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0f9d71 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3d13ffaa phy_attach_direct +EXPORT_SYMBOL vmlinux 0x3d181c9c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x3d635b7f dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x3d7fbf14 param_ops_charp +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +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 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3de00621 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0750bf set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x3e0bed9d sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3e0cda7a simple_link +EXPORT_SYMBOL vmlinux 0x3e1a71bf abx500_register_ops +EXPORT_SYMBOL vmlinux 0x3e28b575 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e38f908 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x3e7b9019 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3e7d58ee sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3e8b9d3e fb_blank +EXPORT_SYMBOL vmlinux 0x3e8f6e8b __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea6f59f kern_path_create +EXPORT_SYMBOL vmlinux 0x3eaa88e9 from_kprojid +EXPORT_SYMBOL vmlinux 0x3eaafbb4 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x3ebd287e fs_bio_set +EXPORT_SYMBOL vmlinux 0x3ebfd87f sget +EXPORT_SYMBOL vmlinux 0x3ed15c8f register_shrinker +EXPORT_SYMBOL vmlinux 0x3ed8d8b0 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efeb010 dquot_operations +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f18e3cf __quota_error +EXPORT_SYMBOL vmlinux 0x3f1d0133 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x3f207cbc lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x3f217f0f send_sig +EXPORT_SYMBOL vmlinux 0x3f3401aa kill_litter_super +EXPORT_SYMBOL vmlinux 0x3f3960ef __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x3f3faacb tcf_classify +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5138c4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x3f77ae2e sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3f88508c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8e5f49 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x3fad02d3 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x3fb1be1b tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc274a9 put_fs_context +EXPORT_SYMBOL vmlinux 0x3fd5fe46 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x3fd74a6f nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd7ed54 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3fdaaa7e dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff2edea input_set_abs_params +EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x4012dbff iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x401c664a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x402173e9 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x402ed848 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x403f87a3 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x4041e095 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x4065e971 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x406c3cb5 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x408c8f64 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x408ccc45 param_array_ops +EXPORT_SYMBOL vmlinux 0x40970142 seq_read +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409b5e8b vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock +EXPORT_SYMBOL vmlinux 0x409cece1 seq_putc +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b01a76 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x40bc72cc sock_release +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40df4336 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x40f8fd43 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x41146872 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x4115593b clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x41199f23 page_get_link +EXPORT_SYMBOL vmlinux 0x411ea026 netdev_warn +EXPORT_SYMBOL vmlinux 0x412a38e6 netpoll_setup +EXPORT_SYMBOL vmlinux 0x412ac9c3 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x417b6c9a lock_rename +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a239c3 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x41ab24d2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x41b36783 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x41c3804c sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x41e1f549 d_instantiate +EXPORT_SYMBOL vmlinux 0x41e58207 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f6d90f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4216a3fa end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4228442e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x422b78a2 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4233aa5d amd_iommu_pc_get_reg +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c2f6c rproc_free +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42642a4d ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x42652d2a netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x428db41d kmalloc_caches +EXPORT_SYMBOL vmlinux 0x428e81bf __put_page +EXPORT_SYMBOL vmlinux 0x42aa92b6 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d732cf path_is_under +EXPORT_SYMBOL vmlinux 0x42e900a5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430daa23 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x4317386f param_set_short +EXPORT_SYMBOL vmlinux 0x431c24d1 iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x431d38ec pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x43310aeb sync_blockdev +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433b0406 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436772ba dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43894f0b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4397a0a7 skb_copy_header +EXPORT_SYMBOL vmlinux 0x439a2550 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x439ce014 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x43acff15 sk_capable +EXPORT_SYMBOL vmlinux 0x43b8869b phy_attach +EXPORT_SYMBOL vmlinux 0x43b9e78e mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x43bccef7 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x43c087ee neigh_xmit +EXPORT_SYMBOL vmlinux 0x43e9184f submit_bio_wait +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x43fbea52 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x43fc4be7 cad_pid +EXPORT_SYMBOL vmlinux 0x441b1009 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444ec7b9 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x445134bb to_nd_btt +EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data +EXPORT_SYMBOL vmlinux 0x445df0ed netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x447f23f5 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x44838038 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a60617 tty_lock +EXPORT_SYMBOL vmlinux 0x44a7ebc8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44d31b51 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x44e144b6 kernel_accept +EXPORT_SYMBOL vmlinux 0x44e4c05e sk_reset_timer +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45032fc5 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x4505d8f3 dev_open +EXPORT_SYMBOL vmlinux 0x4507fa62 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452c3642 vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0x453724a0 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453d3703 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x454e9d4d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455fd730 md_error +EXPORT_SYMBOL vmlinux 0x45662774 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x456c3bc7 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x45718f9d proc_symlink +EXPORT_SYMBOL vmlinux 0x4574804c ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457eee4b get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0x4581759a inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4582f4f3 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x4591b42d lookup_one_len +EXPORT_SYMBOL vmlinux 0x4594e5ec fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4599831d kern_path +EXPORT_SYMBOL vmlinux 0x45a390f9 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45e59446 scsi_add_device +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45ec743e __inet_hash +EXPORT_SYMBOL vmlinux 0x45ee8d33 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x45fcddf0 migrate_page +EXPORT_SYMBOL vmlinux 0x4603c945 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x46584f61 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468ab167 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46bb0f09 clk_get +EXPORT_SYMBOL vmlinux 0x46c40c3f km_policy_expired +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46dd8aff phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x471d2797 sock_efree +EXPORT_SYMBOL vmlinux 0x4725fb37 netdev_printk +EXPORT_SYMBOL vmlinux 0x472b44df serio_bus +EXPORT_SYMBOL vmlinux 0x47311f3c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4739ab24 input_unregister_device +EXPORT_SYMBOL vmlinux 0x4739fb8e scsi_host_put +EXPORT_SYMBOL vmlinux 0x473c4fdf dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x476a790b register_gifconf +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4773bca7 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4786a49c mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x478a6ced blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x478b2361 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a8a6ed ipv4_specific +EXPORT_SYMBOL vmlinux 0x47c16982 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cbe101 device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x47ee6f5f tcp_disconnect +EXPORT_SYMBOL vmlinux 0x47ef4fd6 netdev_state_change +EXPORT_SYMBOL vmlinux 0x47f4275c __breadahead +EXPORT_SYMBOL vmlinux 0x480d3540 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x480ef5ce __register_nls +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482a3432 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484761b2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4856797f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x486402cd ps2_begin_command +EXPORT_SYMBOL vmlinux 0x486f0174 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x48805fd2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x48888b11 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x488944e7 __skb_checksum +EXPORT_SYMBOL vmlinux 0x488a4a1b blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x488d7a4e alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x48912f22 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x4892b59c compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a77076 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48ab0b95 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c06b58 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48ca67aa sock_create_kern +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48ed24f4 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x48f06a8d agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x48f4400a scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49084675 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x491ebb5e vfs_mkobj +EXPORT_SYMBOL vmlinux 0x49376f67 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495019c5 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x495951a2 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x495b17fe pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x4999100d sock_alloc +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49abeb2f filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b2de0e fs_lookup_param +EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x49cfc6db __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x49d0100f tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x49eae1d6 pci_map_rom +EXPORT_SYMBOL vmlinux 0x49eb6310 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x49f90dfb md_register_thread +EXPORT_SYMBOL vmlinux 0x4a10b2c0 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4a376a58 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x4a3936b2 dev_uc_init +EXPORT_SYMBOL vmlinux 0x4a39b8a6 should_remove_suid +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a478ee6 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x4a80cfc2 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9c17cb scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4abd74e4 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4acd9893 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x4adc0c3a freezing_slow_path +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4afee248 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b08e99d vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x4b098484 sk_dst_check +EXPORT_SYMBOL vmlinux 0x4b0c76f1 get_gendisk +EXPORT_SYMBOL vmlinux 0x4b18b068 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x4b1b9a00 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x4b1cd233 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x4b1f8ca2 put_tty_driver +EXPORT_SYMBOL vmlinux 0x4b44575c __register_binfmt +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b4b2cf7 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6b0000 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x4b6c318b cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x4b86db08 get_vm_area +EXPORT_SYMBOL vmlinux 0x4b8e137a kernel_sendpage +EXPORT_SYMBOL vmlinux 0x4b930ebb inet_gso_segment +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bb302eb netif_napi_add +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd149a4 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4befbe66 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x4bf541f9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x4c049d3d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x4c060b8d pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c388ffa acpi_device_hid +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4d5558 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x4c781c1b register_netdevice +EXPORT_SYMBOL vmlinux 0x4c85bbd8 set_pages_uc +EXPORT_SYMBOL vmlinux 0x4c920401 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cb60aea __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cd71c51 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4cd7e40a fsync_bdev +EXPORT_SYMBOL vmlinux 0x4cdaea44 generic_make_request +EXPORT_SYMBOL vmlinux 0x4ce5be2a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x4ce9505e insert_inode_locked +EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4d26b832 nobh_writepage +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d3b1e14 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x4d4ec8be sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x4d5c3e8c security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x4d60c256 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d737564 dev_trans_start +EXPORT_SYMBOL vmlinux 0x4d7598b5 ilookup5 +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d7738b4 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4d7dd8dd nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da2161f md_update_sb +EXPORT_SYMBOL vmlinux 0x4dc3a8c4 __f_setown +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4ddb27b7 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4ddde13f mmc_detect_change +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e018765 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x4e03be9c seq_puts +EXPORT_SYMBOL vmlinux 0x4e0e9f09 phy_resume +EXPORT_SYMBOL vmlinux 0x4e1bcc1b kernel_write +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2b1793 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e49db1d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4e4a77b5 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e606d8c input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4e612762 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6f90b2 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x4e74262c __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4e7ce6ba flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x4e893f93 md_check_recovery +EXPORT_SYMBOL vmlinux 0x4e9ea227 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eb1e964 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x4eb3c922 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x4eb9f0fd tso_count_descs +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec5da13 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x4ecb7f5d qdisc_put +EXPORT_SYMBOL vmlinux 0x4ee15061 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x4ef473d0 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f405f52 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x4f432fe3 tty_devnum +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f641aad pci_save_state +EXPORT_SYMBOL vmlinux 0x4f6b8890 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0x4f6d4230 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fed3739 inode_permission +EXPORT_SYMBOL vmlinux 0x4fefeb77 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x502392a3 simple_setattr +EXPORT_SYMBOL vmlinux 0x50250be2 dma_resv_init +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x50366cc3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x5046b8ed module_refcount +EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister +EXPORT_SYMBOL vmlinux 0x50528a6b tty_throttle +EXPORT_SYMBOL vmlinux 0x50534872 pci_get_class +EXPORT_SYMBOL vmlinux 0x50579731 dev_addr_add +EXPORT_SYMBOL vmlinux 0x505cd9c0 ps2_drain +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507a34ad tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x509ab8d4 mpage_readpages +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a0d214 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b14bab configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50ca84fc ppp_input_error +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50d6622b __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ea457d vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x510550f2 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x512ea752 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x513881b9 serio_interrupt +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5150b80e bprm_change_interp +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5182ba80 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x51882080 follow_up +EXPORT_SYMBOL vmlinux 0x518ebad0 mdio_device_free +EXPORT_SYMBOL vmlinux 0x519149dc __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x51a591b8 page_mapping +EXPORT_SYMBOL vmlinux 0x51b7ed3b register_filesystem +EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done +EXPORT_SYMBOL vmlinux 0x51c58571 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d89a41 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x51e9a083 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x51eeba43 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x51fa9429 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x520805a8 rproc_add +EXPORT_SYMBOL vmlinux 0x5214184b netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x5239a5ce __block_write_begin +EXPORT_SYMBOL vmlinux 0x525fc894 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x5266e27a unlock_buffer +EXPORT_SYMBOL vmlinux 0x526d387f migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x527ede37 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5289403f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52aa8751 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x52c4e5bf mpage_readpage +EXPORT_SYMBOL vmlinux 0x52caf5ff i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x52cb9703 __devm_release_region +EXPORT_SYMBOL vmlinux 0x52d29ef5 param_set_ushort +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f7b956 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x53576383 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x53640930 mpage_writepages +EXPORT_SYMBOL vmlinux 0x53774886 pci_request_region +EXPORT_SYMBOL vmlinux 0x53a6a5cb mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x53a9be6c bdgrab +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d2cd44 pci_restore_state +EXPORT_SYMBOL vmlinux 0x53e56f72 dev_driver_string +EXPORT_SYMBOL vmlinux 0x53e879f0 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x53ed44dd configfs_depend_item +EXPORT_SYMBOL vmlinux 0x53f1cbce tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53fdb18a truncate_setsize +EXPORT_SYMBOL vmlinux 0x5416a4cd kill_bdev +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x54299b61 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5445090e dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x544bde3b blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5456bf5c write_cache_pages +EXPORT_SYMBOL vmlinux 0x545ab355 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x546210c1 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x546e2add xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x549b7aba compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x54a84c90 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54abcbdd to_ndd +EXPORT_SYMBOL vmlinux 0x54b6d070 datagram_poll +EXPORT_SYMBOL vmlinux 0x54d86025 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54fc272a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x55005609 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550bfc26 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x554758b1 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55636e8f input_set_capability +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556cb2d2 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x55869189 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a4680c mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x55abf5bf __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x55b6abfb dcache_dir_open +EXPORT_SYMBOL vmlinux 0x55c630b2 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x55db389b tty_port_open +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f03d7b seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x561b2411 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x561fc1fc __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x5622e98e udp_gro_complete +EXPORT_SYMBOL vmlinux 0x562db0ae udp_poll +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563b2f35 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565b9a59 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x566b7364 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x567ab92c devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5680d627 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x56ac8770 page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x56ae13f3 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x56ae7eae inet_getname +EXPORT_SYMBOL vmlinux 0x56b1771b current_task +EXPORT_SYMBOL vmlinux 0x56b4b2ee genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x56c29f62 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x56c43804 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f29644 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x56f674d9 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x56fefa92 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x57095c2a vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x570ed5c7 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x57190e31 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x571b8da3 pid_task +EXPORT_SYMBOL vmlinux 0x572cd25b fb_set_var +EXPORT_SYMBOL vmlinux 0x57346a79 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x57358011 dm_put_device +EXPORT_SYMBOL vmlinux 0x5736033f sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57670618 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x57885773 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578bf35a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x578ddbee deactivate_super +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a83d62 load_nls_default +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57d0c32d scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x57d8589c sk_ns_capable +EXPORT_SYMBOL vmlinux 0x57f4fc8c __check_sticky +EXPORT_SYMBOL vmlinux 0x57fa6a3e _dev_notice +EXPORT_SYMBOL vmlinux 0x57fe87c7 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x580fdcdf __alloc_skb +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5841d508 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x5848d2a1 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x586559f6 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x5897cef6 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b5e025 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58be47ff thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e7c661 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x58edb766 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x58f3f607 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x5904f419 mmc_put_card +EXPORT_SYMBOL vmlinux 0x5919d0c7 param_set_int +EXPORT_SYMBOL vmlinux 0x5921b88c __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x5923edc3 inet6_bind +EXPORT_SYMBOL vmlinux 0x592447a8 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x596c53d5 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x596deef4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl +EXPORT_SYMBOL vmlinux 0x5982bdd6 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x598ef8ec cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x59969dd7 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x599f9906 simple_rmdir +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a8c072 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x59ad41bb inet_del_offload +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b639ec pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x59bcb05f d_set_d_op +EXPORT_SYMBOL vmlinux 0x59bd25b6 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x59ca39d0 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x59ce5b10 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x59f13115 component_match_add_release +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a46472f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4c891d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a659174 consume_skb +EXPORT_SYMBOL vmlinux 0x5a6ea4fe param_get_ullong +EXPORT_SYMBOL vmlinux 0x5a731929 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a91987d blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a969122 kern_unmount +EXPORT_SYMBOL vmlinux 0x5aabc066 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5ab904eb pv_ops +EXPORT_SYMBOL vmlinux 0x5add0d7e file_ns_capable +EXPORT_SYMBOL vmlinux 0x5ae6ecd6 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x5b0fd9c5 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5b12c49a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x5b1cdeed pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5b2b91df __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3a9808 skb_seq_read +EXPORT_SYMBOL vmlinux 0x5b3b3d00 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b404c54 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5bcd47 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5b6e07e2 file_modified +EXPORT_SYMBOL vmlinux 0x5b9e80c7 framebuffer_release +EXPORT_SYMBOL vmlinux 0x5bda238c genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c025d31 skb_queue_head +EXPORT_SYMBOL vmlinux 0x5c2c04c6 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5c37c67d dget_parent +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c48499d devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x5c53d4b0 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x5c59cf01 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5c8312f5 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x5cb02019 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x5cc36524 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x5cd3338f clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x5ce26f4f generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x5ce27624 filemap_flush +EXPORT_SYMBOL vmlinux 0x5ce618e9 unregister_nls +EXPORT_SYMBOL vmlinux 0x5ced61b9 default_llseek +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d1ac049 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x5d1ecdd1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5d30643d registered_fb +EXPORT_SYMBOL vmlinux 0x5d3c8853 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x5d423635 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d55aef0 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5d6cbc73 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x5d6d0beb forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5d83f28c agp_bridge +EXPORT_SYMBOL vmlinux 0x5d96a893 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x5da38c39 mmc_start_request +EXPORT_SYMBOL vmlinux 0x5dbc45b2 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x5dbe71a0 proc_set_user +EXPORT_SYMBOL vmlinux 0x5dc67a71 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x5dd59b2d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x5ddd47e8 simple_lookup +EXPORT_SYMBOL vmlinux 0x5df126c6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e239d4b xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x5e2f7d71 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3be347 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5e543751 processors +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e63814f netdev_err +EXPORT_SYMBOL vmlinux 0x5e713194 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e852ac1 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea99c92 elv_rb_add +EXPORT_SYMBOL vmlinux 0x5eb1c3e2 unix_get_socket +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4ca05 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0fd90 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edb57ed tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x5edf7345 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x5ee8301c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5ee88d27 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1c5b92 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x5f360495 phy_device_register +EXPORT_SYMBOL vmlinux 0x5f39c686 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5f3c839f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x5f46f969 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5f47151d ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6f4360 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x5f7a7c67 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x5f825c05 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5f8d175f sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9fa1b4 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fcab7e3 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x5fdb962a tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffa2a3f input_set_timestamp +EXPORT_SYMBOL vmlinux 0x60040cd1 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600e3464 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x6013550b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60318348 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x607a8683 da903x_query_status +EXPORT_SYMBOL vmlinux 0x6081ea28 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name +EXPORT_SYMBOL vmlinux 0x6086c52a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a514e8 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d4b831 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60da799f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x60e32878 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x60e4dff2 inet_frags_init +EXPORT_SYMBOL vmlinux 0x60e55b94 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x60eb079a i2c_register_driver +EXPORT_SYMBOL vmlinux 0x61021367 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x61047342 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6105ad82 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x6106c710 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x6108a34e padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x611994fb mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612e5958 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x61324d32 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615c5ffd qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6180c69a seq_file_path +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6193f2de dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61ad919d phy_loopback +EXPORT_SYMBOL vmlinux 0x61b15663 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb62b0 sk_net_capable +EXPORT_SYMBOL vmlinux 0x61dc35c5 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ec2d24 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x61efd5ca kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6205df90 nf_log_bind_pf +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 0x622f1901 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x6235f8a8 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x6264a879 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x626520d6 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627f56ca __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x628cba32 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x62b7a0a5 input_register_handle +EXPORT_SYMBOL vmlinux 0x62b98ae9 scsi_print_command +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d96daa _dev_alert +EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del +EXPORT_SYMBOL vmlinux 0x6302adf3 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x63037b03 init_pseudo +EXPORT_SYMBOL vmlinux 0x63161add flush_signals +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632979f0 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x63599084 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x636dbf96 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x63a3d596 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b30226 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x63c0e9f2 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x63c41c23 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641a8df4 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x6455d46c devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x64599cec pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x645b00aa neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x64669989 inode_init_owner +EXPORT_SYMBOL vmlinux 0x647a6c4f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648e0f24 phy_stop +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a52d0f scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x64a70d86 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b62840 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d0495f tso_start +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65142635 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x65243ae5 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x6528ea05 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6536bf79 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654bfa13 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x654d01ee f_setown +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x655b4b89 logfc +EXPORT_SYMBOL vmlinux 0x6562b855 file_update_time +EXPORT_SYMBOL vmlinux 0x6567fd93 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657fece5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x6583957a dev_uc_del +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b27656 zap_page_range +EXPORT_SYMBOL vmlinux 0x65b42c8f __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x65b91a2a pci_claim_resource +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e4e22b pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x65eb2b9b unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x65f3d02e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x65f509a7 ps2_init +EXPORT_SYMBOL vmlinux 0x65f942a9 con_is_bound +EXPORT_SYMBOL vmlinux 0x6605883c fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662d5474 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6632bb37 mmc_free_host +EXPORT_SYMBOL vmlinux 0x665796ce textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66861796 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x66862728 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x6690916d read_cache_pages +EXPORT_SYMBOL vmlinux 0x6691afc6 seq_release_private +EXPORT_SYMBOL vmlinux 0x66a8eed3 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cadb08 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x66cb16dc rtnl_create_link +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x67000bc3 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x6700baa3 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x670f9048 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x671aca29 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x67215d2d pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x6727d50e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x6728ce45 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672ef580 genlmsg_put +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6759303f bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6763abf2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6790f21a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x679c94e0 seq_dentry +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b39987 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c61cd9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x67cfb722 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x67d0bbb5 param_set_ullong +EXPORT_SYMBOL vmlinux 0x67e9f52c genl_notify +EXPORT_SYMBOL vmlinux 0x680b4a67 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x682777e8 get_user_pages +EXPORT_SYMBOL vmlinux 0x682ee770 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x68324875 dcache_readdir +EXPORT_SYMBOL vmlinux 0x683a31ce fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x684fee15 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x68521381 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688d16a9 simple_unlink +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68b48d1b dma_async_device_register +EXPORT_SYMBOL vmlinux 0x68c8965c pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690d2422 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x691096d8 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x6913a1cb devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x69378178 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6939aac0 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x695000a7 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697dafea vfs_rename +EXPORT_SYMBOL vmlinux 0x697eee94 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x697f42b4 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69933e17 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x69979c4f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x69aa98a1 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c015cf tcp_close +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69f1d22f bdget +EXPORT_SYMBOL vmlinux 0x6a00f421 netif_device_detach +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a361bf5 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x6a584528 phy_write_paged +EXPORT_SYMBOL vmlinux 0x6a58ae5e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a63766b blk_register_region +EXPORT_SYMBOL vmlinux 0x6a76dfbf devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x6a7cbf1b phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6a839c09 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6a8f3cac nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b11f352 dev_add_pack +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3087c4 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6b312c2e netif_device_attach +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9dd34f dquot_drop +EXPORT_SYMBOL vmlinux 0x6ba854a9 input_get_keycode +EXPORT_SYMBOL vmlinux 0x6baa8506 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6bac9107 console_start +EXPORT_SYMBOL vmlinux 0x6bb70076 wake_up_process +EXPORT_SYMBOL vmlinux 0x6bb754dc release_pages +EXPORT_SYMBOL vmlinux 0x6bbba7fc tcp_poll +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcd9c5a __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6bd019ed put_ipc_ns +EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bf9fcea bio_free_pages +EXPORT_SYMBOL vmlinux 0x6c092cd6 set_anon_super +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c32d411 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6c33c963 sget_fc +EXPORT_SYMBOL vmlinux 0x6c36283c uart_suspend_port +EXPORT_SYMBOL vmlinux 0x6c446dac fget_raw +EXPORT_SYMBOL vmlinux 0x6c46a0a5 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x6c4bd59c pci_free_irq +EXPORT_SYMBOL vmlinux 0x6c50291c i8042_install_filter +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6a94d7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6c6ca2aa tcp_child_process +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c907a54 inet_offloads +EXPORT_SYMBOL vmlinux 0x6c99c81c empty_aops +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6ca42632 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6ccd85f4 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x6cd320ec mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x6cdcfaff blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x6ce8a8ad jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cfcf413 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d034da0 genphy_suspend +EXPORT_SYMBOL vmlinux 0x6d0e6c1b udp_set_csum +EXPORT_SYMBOL vmlinux 0x6d1144e3 proc_remove +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3a77ca dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x6d3e74a3 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d648518 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6d71b817 get_acl +EXPORT_SYMBOL vmlinux 0x6d73582a phy_device_free +EXPORT_SYMBOL vmlinux 0x6d787844 finish_no_open +EXPORT_SYMBOL vmlinux 0x6da39003 has_capability +EXPORT_SYMBOL vmlinux 0x6da72d3c bio_clone_fast +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc58273 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd696de sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6de3e6a6 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e038551 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x6e052ac6 dquot_destroy +EXPORT_SYMBOL vmlinux 0x6e079609 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x6e174c68 write_inode_now +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5ea8a4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6e668d5e vfs_getattr +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e77df97 read_code +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eab70c7 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x6ead09ee sk_common_release +EXPORT_SYMBOL vmlinux 0x6eba5dc7 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x6ec2c370 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6ec45436 inet_bind +EXPORT_SYMBOL vmlinux 0x6ecdaf72 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6ee4d527 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get +EXPORT_SYMBOL vmlinux 0x6f1cf945 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6f28b354 dev_set_group +EXPORT_SYMBOL vmlinux 0x6f325af6 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f5214a0 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x6f5f3bf5 posix_test_lock +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f8ce885 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fa59301 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x6fa9f67d tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x6fadb242 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc99ec8 agp_create_memory +EXPORT_SYMBOL vmlinux 0x6fc9aa11 input_event +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd86ab9 sk_wait_data +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x701265e1 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70250706 __neigh_create +EXPORT_SYMBOL vmlinux 0x7025eae2 padata_free +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70556ce6 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x705fc459 dma_supported +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70801e31 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x7083948b padata_free_shell +EXPORT_SYMBOL vmlinux 0x708e2275 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x70969b00 __bforget +EXPORT_SYMBOL vmlinux 0x70a6020d inet_protos +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70ae9807 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x70b3199c kill_pgrp +EXPORT_SYMBOL vmlinux 0x70c769e0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x70d97b55 tcp_connect +EXPORT_SYMBOL vmlinux 0x70dab774 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x70e19ff8 dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x70ebff30 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x711acb9b genphy_loopback +EXPORT_SYMBOL vmlinux 0x71297727 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7134a9a0 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x7148df7a inode_dio_wait +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x71534647 __napi_schedule +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717298c5 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7195bc63 tty_check_change +EXPORT_SYMBOL vmlinux 0x719ed976 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae6d38 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x71c336a1 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x71c4fc0c sock_no_getname +EXPORT_SYMBOL vmlinux 0x71cc3d6e udp_prot +EXPORT_SYMBOL vmlinux 0x722390b1 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x72356060 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x724052fa pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726c4910 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x727d110d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72ae579f stream_open +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c98696 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x72cc85af md_flush_request +EXPORT_SYMBOL vmlinux 0x72e0e010 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eb05cc twl6040_power +EXPORT_SYMBOL vmlinux 0x72eb8f6d sock_no_accept +EXPORT_SYMBOL vmlinux 0x73071686 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73177ae7 pci_dev_get +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x733d07ec __ps2_command +EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73a122c5 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x73c21132 pci_dev_put +EXPORT_SYMBOL vmlinux 0x73c2edbd dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x73cd6e6a phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x73db9ce7 I_BDEV +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73dfeadb eth_header +EXPORT_SYMBOL vmlinux 0x73e3924d blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x73e6a83c pnp_device_attach +EXPORT_SYMBOL vmlinux 0x73f961f3 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x73ff13da inet_addr_type +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740fec20 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7428ac7b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x742ca29c eth_get_headlen +EXPORT_SYMBOL vmlinux 0x74309cc4 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x743c45a4 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x743d8f58 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x7441cb90 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x74420f35 generic_read_dir +EXPORT_SYMBOL vmlinux 0x7455f995 sk_stream_error +EXPORT_SYMBOL vmlinux 0x74751558 netdev_features_change +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x74782c49 pipe_unlock +EXPORT_SYMBOL vmlinux 0x749ff2b3 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x74a1a4b3 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cc31ab simple_write_begin +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fcc638 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7504e26c devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75462b38 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x7555f248 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7584d338 phy_suspend +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75931e50 dev_add_offload +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75b4c88a pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x75bd87d4 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c0d46e mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x75c6269a proc_mkdir +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75defb60 edac_mc_find +EXPORT_SYMBOL vmlinux 0x75e60613 key_put +EXPORT_SYMBOL vmlinux 0x76019bd1 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x76051cc1 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761805af cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x763cf791 dma_ops +EXPORT_SYMBOL vmlinux 0x763de2a6 netdev_emerg +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7648fc8a simple_readpage +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x767ece86 simple_open +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ad8fbd generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x76b7ac3f __sk_dst_check +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e1ed5f serio_reconnect +EXPORT_SYMBOL vmlinux 0x76f3f036 vm_mmap +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x7712cdf9 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x772d3b05 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7735d69b netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x773600f7 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x773dec48 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x775cd9e7 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7775fa32 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x777f5b6f dcache_dir_close +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a8b494 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x77ae5bd8 send_sig_info +EXPORT_SYMBOL vmlinux 0x77b3c87f touch_buffer +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c87c26 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x77cf9746 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x77e700a1 nd_device_notify +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f773bc __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b1719 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x785052dc scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x785bcb46 nd_btt_version +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788dffe3 d_genocide +EXPORT_SYMBOL vmlinux 0x78904266 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a03f3e unregister_quota_format +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a769b1 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x78c2e4c6 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78eeff90 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x79118284 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x7921f66c fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x793b3f36 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x79409517 fb_get_mode +EXPORT_SYMBOL vmlinux 0x796aee1b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798b598a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7995ef2b locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a890a2 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x79ab4857 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x79b04c47 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x79bce74c neigh_ifdown +EXPORT_SYMBOL vmlinux 0x79ce42cd dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e84e8d dm_kobject_release +EXPORT_SYMBOL vmlinux 0x79e95572 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x79ec2a62 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x79ef028f scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x79fe32b8 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1e616d __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x7a20fcb1 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a394f94 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7a39d421 file_path +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4c668a pnp_is_active +EXPORT_SYMBOL vmlinux 0x7a62de2d vlan_for_each +EXPORT_SYMBOL vmlinux 0x7a7e6150 finalize_exec +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a9d9e72 dev_set_alias +EXPORT_SYMBOL vmlinux 0x7a9ef469 pci_release_resource +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aab6aa4 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac5178d i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7acca390 devm_clk_get +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b16d3ac tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7b1b083a skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7b2a21d1 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8add44 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7b8b01fb xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7b8dcc18 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x7b9549c3 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x7b9776c7 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7ba6b42c find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7ba85bb3 get_phy_device +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb60e06 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bbd2476 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7bc9eaab __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x7bf11e2e jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7bf4e5a5 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7c08dce3 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c30627a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7c41e004 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7c420827 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4e2eb9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7c64cc62 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x7c935536 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x7c9aa1c2 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x7c9b8818 set_user_nice +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9fff07 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc01d51 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce8ad25 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7cf2b1d2 kernel_bind +EXPORT_SYMBOL vmlinux 0x7cf2bf23 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf5c06d nosteal_pipe_buf_ops +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 0x7d232773 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7d39f237 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4f7055 new_inode +EXPORT_SYMBOL vmlinux 0x7d58ea1c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d607909 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7da3b439 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc91601 d_add +EXPORT_SYMBOL vmlinux 0x7dca1142 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddba08e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext +EXPORT_SYMBOL vmlinux 0x7e123f8c pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7e268aa6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7e3067f7 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e322334 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x7e3467d7 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7e458d1d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x7e6a1784 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e8838aa blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7e9df1a8 pci_find_capability +EXPORT_SYMBOL vmlinux 0x7e9f1b66 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7ea4bc53 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7ea54b43 nf_log_trace +EXPORT_SYMBOL vmlinux 0x7eb04924 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock +EXPORT_SYMBOL vmlinux 0x7ed6f006 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7ed770de genphy_resume +EXPORT_SYMBOL vmlinux 0x7ed81da5 param_set_long +EXPORT_SYMBOL vmlinux 0x7ee24adf __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7eefd40c blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x7ef8322e tcp_filter +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f10172a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x7f17af6d proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f337850 param_set_byte +EXPORT_SYMBOL vmlinux 0x7f37b49e __seq_open_private +EXPORT_SYMBOL vmlinux 0x7f46c544 dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f54f199 skb_trim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f64ff81 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f85e741 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x7f8701a5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x7f8ae726 noop_qdisc +EXPORT_SYMBOL vmlinux 0x7f8e6631 mount_bdev +EXPORT_SYMBOL vmlinux 0x7f94dae7 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x7fa7edb9 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7fc5e7b5 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x7fe2abab generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x800a198a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8065223e __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x806fc1fd __scsi_add_device +EXPORT_SYMBOL vmlinux 0x80926aa6 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x80956993 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80acd3fd blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x80ae2c0e devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x80aea30b xfrm_register_km +EXPORT_SYMBOL vmlinux 0x80b52ebc mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x80c30853 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d97220 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x80e7356f put_disk +EXPORT_SYMBOL vmlinux 0x80ec4ac9 lease_modify +EXPORT_SYMBOL vmlinux 0x80f98b13 skb_clone +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit +EXPORT_SYMBOL vmlinux 0x813402d2 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x814c40a7 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81586f73 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816d8e5f _dev_crit +EXPORT_SYMBOL vmlinux 0x81750e7c scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x817f3042 ilookup +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81865fcb prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x819d044a filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible +EXPORT_SYMBOL vmlinux 0x81c94dfb neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x81cf9c1d __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8211e002 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x8218b588 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x822e136d scsi_remove_target +EXPORT_SYMBOL vmlinux 0x8239e1de dev_addr_del +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x8247e97a of_find_backlight +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x826eb13f unix_detach_fds +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups +EXPORT_SYMBOL vmlinux 0x82a063c4 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x82be5604 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x82d43227 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x82ea2349 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x82f13be2 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x82f36010 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x82fd2d0c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8303efea netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8308ba19 fput +EXPORT_SYMBOL vmlinux 0x831f0514 dev_uc_add +EXPORT_SYMBOL vmlinux 0x833ae1cb __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x83467c36 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x8350186a __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x83529a47 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836626e7 try_to_release_page +EXPORT_SYMBOL vmlinux 0x836c61dc phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a45216 eth_header_cache +EXPORT_SYMBOL vmlinux 0x83be2bfb netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x83c13ea3 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x83d25a84 gro_cells_init +EXPORT_SYMBOL vmlinux 0x83d7ef3e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x83dc3d3b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x83dd99cd jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x840246e6 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840d959a param_set_charp +EXPORT_SYMBOL vmlinux 0x84401c0c scsi_scan_host +EXPORT_SYMBOL vmlinux 0x845d7395 __scm_destroy +EXPORT_SYMBOL vmlinux 0x846f1d75 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x848b3c4e pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x8492ec1f dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x84b25909 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x84b45ab8 pskb_extract +EXPORT_SYMBOL vmlinux 0x84b9ae27 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x84c06961 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c39f6c tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x84e55bc6 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x84ea4df4 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x84f2eb35 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x850a4965 find_vma +EXPORT_SYMBOL vmlinux 0x850e2da6 ip_frag_next +EXPORT_SYMBOL vmlinux 0x851772d9 km_state_notify +EXPORT_SYMBOL vmlinux 0x852645a4 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x85393d60 hmm_mirror_register +EXPORT_SYMBOL vmlinux 0x853d3669 request_firmware +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x85b21f62 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c18288 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e12756 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x8602a4eb inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x860443ea cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x860e3088 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x862320c9 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x86235c66 vme_irq_free +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863e75d6 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x863e84d7 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x86454202 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865eddb4 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x86690af6 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86c3520d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x86c4f55f agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86cb9d26 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x873b7536 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x8745b62a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x875a4991 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8766350e phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x87816eec get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8797c7ae end_page_writeback +EXPORT_SYMBOL vmlinux 0x87a94193 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87d7b3f5 kthread_stop +EXPORT_SYMBOL vmlinux 0x87dceb03 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x87f4c9c6 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x88047652 dquot_resume +EXPORT_SYMBOL vmlinux 0x8806b38a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x880c39f0 build_skb +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x881daedd iget_failed +EXPORT_SYMBOL vmlinux 0x8854e770 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x88820e99 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88a955d5 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88afecd3 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f65a52 path_has_submounts +EXPORT_SYMBOL vmlinux 0x88f7555d blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x89122461 fb_class +EXPORT_SYMBOL vmlinux 0x891b3cc9 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x891e22ef mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x8923cd92 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x894ed320 override_creds +EXPORT_SYMBOL vmlinux 0x8958ed3b security_sb_remount +EXPORT_SYMBOL vmlinux 0x8990a98f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x89acaed9 pci_release_region +EXPORT_SYMBOL vmlinux 0x89ad3795 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x89ae15b7 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1c382a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8a23101b fb_find_mode +EXPORT_SYMBOL vmlinux 0x8a24b9cb pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7f32f2 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8a8859c5 read_cache_page +EXPORT_SYMBOL vmlinux 0x8a9935cd legacy_pic +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9bbaef serio_open +EXPORT_SYMBOL vmlinux 0x8aa9bc81 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x8aaf0b43 audit_log +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad0234c xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8add4ce6 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8aefa3ae skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x8af9fc1a mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b020217 uart_match_port +EXPORT_SYMBOL vmlinux 0x8b0bdc36 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x8b0efdf4 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x8b195729 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x8b4664d8 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x8b53be38 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x8b5aef4d security_d_instantiate +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b5f5d95 open_exec +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b73c658 register_qdisc +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80685c __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bc0e171 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bde89ae inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2b9713 file_remove_privs +EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x8c35cb21 dquot_commit +EXPORT_SYMBOL vmlinux 0x8c544bd0 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x8c922723 security_path_unlink +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8cad0a92 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd76f8d bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d041bbd amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x8d47c194 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x8d4bb604 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d69e0c2 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x8d6c411a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d75342d xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x8d89fd4b ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da9100c skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db4f080 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x8dd1682b pmem_sector_size +EXPORT_SYMBOL vmlinux 0x8dd52d7a splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dde05fd xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8de173da ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x8de914f9 input_setup_polling +EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0b553f block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8e0f7fb9 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1cb949 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e23176b unregister_filesystem +EXPORT_SYMBOL vmlinux 0x8e2977d1 seq_open_private +EXPORT_SYMBOL vmlinux 0x8e2aed80 __icmp_send +EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x8e300e9d dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x8e4d2437 vme_master_request +EXPORT_SYMBOL vmlinux 0x8e565add pci_pme_active +EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e727f7e padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x8e765c55 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x8e8be0bd jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8ea14d77 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x8ea31d45 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec3abf9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8eca259e ip_do_fragment +EXPORT_SYMBOL vmlinux 0x8eef7cc4 inet6_protos +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f095a99 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8f2061af sock_sendmsg +EXPORT_SYMBOL vmlinux 0x8f206534 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default +EXPORT_SYMBOL vmlinux 0x8f43a0f7 __frontswap_load +EXPORT_SYMBOL vmlinux 0x8f596b91 config_item_set_name +EXPORT_SYMBOL vmlinux 0x8f5b2364 d_alloc_name +EXPORT_SYMBOL vmlinux 0x8f62d8f1 noop_fsync +EXPORT_SYMBOL vmlinux 0x8f6c5015 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f86f1c6 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa6fc86 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fb94f90 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x8fdf3e02 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8fee4a78 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffb2a94 phy_device_create +EXPORT_SYMBOL vmlinux 0x90004b3b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x900a26f2 dev_get_stats +EXPORT_SYMBOL vmlinux 0x902557f1 blkdev_put +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f97bc pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9036160d ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x903a8e86 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9095f60c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x90aa480e tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x90afdb21 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x90b2f8b5 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x90b43c5e tcp_sendpage +EXPORT_SYMBOL vmlinux 0x90c05e02 cdrom_release +EXPORT_SYMBOL vmlinux 0x90cb2efd skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x90ce5f0b devm_memremap +EXPORT_SYMBOL vmlinux 0x90e3a135 __find_get_block +EXPORT_SYMBOL vmlinux 0x90e6e234 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x90f4888b PageMovable +EXPORT_SYMBOL vmlinux 0x90fd5b79 poll_freewait +EXPORT_SYMBOL vmlinux 0x910313d9 vme_slot_num +EXPORT_SYMBOL vmlinux 0x9106eb2c vme_lm_request +EXPORT_SYMBOL vmlinux 0x910fc83c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x911a4017 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x913d4d99 ping_prot +EXPORT_SYMBOL vmlinux 0x9153d5eb dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x9178f216 i2c_use_client +EXPORT_SYMBOL vmlinux 0x917a2db7 set_bh_page +EXPORT_SYMBOL vmlinux 0x918671ea sk_alloc +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91aa98c9 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x91b1e1ea vme_bus_num +EXPORT_SYMBOL vmlinux 0x91beddd4 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x91d154b3 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x91e427de __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x92117a6e flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x921ce2e7 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92471dd9 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x9248500b serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x926e5faf seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x9283f67f dst_alloc +EXPORT_SYMBOL vmlinux 0x92888a65 bio_devname +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92a6447f agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d26849 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x92dd545d tty_hangup +EXPORT_SYMBOL vmlinux 0x92e2d16a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x935dec4b dev_printk +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939a108a kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93acb4ac padata_stop +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b7c49e i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x93c118ed agp_free_memory +EXPORT_SYMBOL vmlinux 0x93d7a00a inet_release +EXPORT_SYMBOL vmlinux 0x940323b0 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x94113a79 tcp_check_req +EXPORT_SYMBOL vmlinux 0x94131df5 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x94257637 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943e9024 inode_init_once +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94526148 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x9454ddbe d_lookup +EXPORT_SYMBOL vmlinux 0x9456ee39 iput +EXPORT_SYMBOL vmlinux 0x9467c21a setup_arg_pages +EXPORT_SYMBOL vmlinux 0x9475b66f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x947daf89 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x948ed22b __put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cd45d0 __kernel_write +EXPORT_SYMBOL vmlinux 0x95089288 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x950bb2d8 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x951910a2 seq_path +EXPORT_SYMBOL vmlinux 0x9531c83e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9553f679 udp_seq_start +EXPORT_SYMBOL vmlinux 0x9556009c find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x956eefc6 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x956fda80 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x958131b1 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x9585547d mdio_device_reset +EXPORT_SYMBOL vmlinux 0x958a3b0d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x95940fb5 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x9595b33e param_set_uint +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b7091e param_get_charp +EXPORT_SYMBOL vmlinux 0x95baec4d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x95bbd822 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x95d55a4f __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95fcff23 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9612e7da set_trace_device +EXPORT_SYMBOL vmlinux 0x96177d55 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962b8b32 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x963af6f2 __scsi_execute +EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x9660989e xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x9680abaa pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9684c8f6 bioset_init +EXPORT_SYMBOL vmlinux 0x96906c79 fb_show_logo +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b521f4 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x96b843cc ab3100_event_register +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96daf61d dquot_enable +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96f34b82 hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97248898 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x973c7002 arp_tbl +EXPORT_SYMBOL vmlinux 0x973dcb42 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97426d02 arp_xmit +EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init +EXPORT_SYMBOL vmlinux 0x978f9593 misc_register +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9793b172 kill_fasync +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a5afcc vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97af7707 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x97b0748e mmc_register_driver +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c3ee2f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x97ca4528 cdev_device_add +EXPORT_SYMBOL vmlinux 0x97d8f456 tcf_block_put +EXPORT_SYMBOL vmlinux 0x97e940cc udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9800b1d7 fb_pan_display +EXPORT_SYMBOL vmlinux 0x981be892 set_security_override +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98343469 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x983e7755 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x9888c6b1 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x988e86fd pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x988e9d70 get_dev_data +EXPORT_SYMBOL vmlinux 0x989a1742 ether_setup +EXPORT_SYMBOL vmlinux 0x98b5549b simple_transaction_get +EXPORT_SYMBOL vmlinux 0x98b81d60 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x990d2bb3 rproc_boot +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9994d936 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x9997f4f8 make_kgid +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a12200 import_iovec +EXPORT_SYMBOL vmlinux 0x99ad5bd7 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x99bd89a6 input_flush_device +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f3a62f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x99f9a744 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x99fa9495 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x9a0451ee __sock_create +EXPORT_SYMBOL vmlinux 0x9a05c68c ata_link_printk +EXPORT_SYMBOL vmlinux 0x9a05cdef read_dev_sector +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a19ed29 __register_chrdev +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a329281 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9a38812d security_path_mkdir +EXPORT_SYMBOL vmlinux 0x9a49e474 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a71b80e t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a839952 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x9a8ff781 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9aa5019c dqget +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9abbc0eb generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x9ac04137 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x9ac23243 d_add_ci +EXPORT_SYMBOL vmlinux 0x9ac8e65b scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9af6819a migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x9b046fbd fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x9b08faae set_disk_ro +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b47dcfa disk_stack_limits +EXPORT_SYMBOL vmlinux 0x9b611761 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x9b6e46f0 km_query +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b77573f mmc_release_host +EXPORT_SYMBOL vmlinux 0x9b7d7180 seq_write +EXPORT_SYMBOL vmlinux 0x9badee0b timestamp_truncate +EXPORT_SYMBOL vmlinux 0x9bc8081a pci_dev_driver +EXPORT_SYMBOL vmlinux 0x9bdc010b write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9be186d2 inet_select_addr +EXPORT_SYMBOL vmlinux 0x9beaaf76 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x9c04d211 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c14ef3c done_path_create +EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke +EXPORT_SYMBOL vmlinux 0x9c2f9e5b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9c350c81 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x9c47aa07 thaw_super +EXPORT_SYMBOL vmlinux 0x9c51de30 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x9c5ad3f6 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9c6e12d5 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x9c70ff83 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c9d2e08 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb2c36d vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc606bf hmm_range_register +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cedb194 netdev_update_features +EXPORT_SYMBOL vmlinux 0x9cfebac4 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d3f192a write_one_page +EXPORT_SYMBOL vmlinux 0x9d41a3ca netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9d51fdcb sock_wfree +EXPORT_SYMBOL vmlinux 0x9d598178 find_get_entry +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d693d8d xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d72d21a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9d7b081a pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x9d86b4d2 node_data +EXPORT_SYMBOL vmlinux 0x9d8eebb3 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x9d90b35c tcp_release_cb +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9dd7ea blk_rq_init +EXPORT_SYMBOL vmlinux 0x9da40101 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x9dbff851 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9ddb6c35 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9df36dba vfs_unlink +EXPORT_SYMBOL vmlinux 0x9e073e6d pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x9e0a967d mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e106974 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x9e1314b1 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1b1785 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x9e23e880 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e423b13 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x9e4c679a would_dump +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e602515 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e84bb80 proto_register +EXPORT_SYMBOL vmlinux 0x9e98ff24 __sb_end_write +EXPORT_SYMBOL vmlinux 0x9e9c2691 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee306fe seq_pad +EXPORT_SYMBOL vmlinux 0x9eff7f20 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x9f2848b6 netif_napi_del +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 0x9f66ae3f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f77932e param_ops_ullong +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fb9deba tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe65a4f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0181a43 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa047c1f5 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xa04ba650 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xa053ee0d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa06470a5 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa0899def netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xa08f558e get_cached_acl +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b751a7 bio_advance +EXPORT_SYMBOL vmlinux 0xa0c60738 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dea159 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff891b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xa1050f45 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11930c7 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12d2310 netlink_capable +EXPORT_SYMBOL vmlinux 0xa12da640 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xa12f65de mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xa13f8752 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xa153abc2 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa1579d20 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xa17d00c4 mdiobus_free +EXPORT_SYMBOL vmlinux 0xa18bdd53 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa19179b2 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xa19a4993 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xa1b7c949 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ef8b20 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa22e7cad nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2644dc9 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xa271fc97 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xa2828d90 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29713d8 km_new_mapping +EXPORT_SYMBOL vmlinux 0xa2b50ecb jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa2b923fa ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xa2c3e3b0 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa304f4b7 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xa30884f8 sock_i_uid +EXPORT_SYMBOL vmlinux 0xa30c7fa3 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xa30fb8e5 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xa33af66d skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3a99765 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa3b5d0f7 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xa3c5456f __frontswap_test +EXPORT_SYMBOL vmlinux 0xa3c94bf4 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dbd749 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xa3dcf107 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xa3e26559 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3fb1ef2 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa437caf4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xa44ecae3 get_disk_and_module +EXPORT_SYMBOL vmlinux 0xa4b75a9d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c6e324 from_kuid +EXPORT_SYMBOL vmlinux 0xa4cedac5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d680c6 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa4dffe34 dev_load +EXPORT_SYMBOL vmlinux 0xa4e8e24b vc_resize +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa53ebd16 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa54264f0 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa570351f init_task +EXPORT_SYMBOL vmlinux 0xa57530d3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa59522c4 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5afb882 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xa5b5901b inet_stream_ops +EXPORT_SYMBOL vmlinux 0xa5c0fcaf pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xa5d70c1b zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa60df6b3 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa61c4678 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6319a86 get_super +EXPORT_SYMBOL vmlinux 0xa631b446 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa63727eb phy_detach +EXPORT_SYMBOL vmlinux 0xa6521794 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa6561c8b blk_put_request +EXPORT_SYMBOL vmlinux 0xa668279c bmap +EXPORT_SYMBOL vmlinux 0xa67a71d8 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa689370e pci_select_bars +EXPORT_SYMBOL vmlinux 0xa68941ce scsi_device_put +EXPORT_SYMBOL vmlinux 0xa69ad8bd vga_client_register +EXPORT_SYMBOL vmlinux 0xa69c3ac3 locks_delete_block +EXPORT_SYMBOL vmlinux 0xa6a1eb41 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xa6a21536 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa6aaefc1 dquot_alloc +EXPORT_SYMBOL vmlinux 0xa6df0211 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa7106998 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa721e86c vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa73a5790 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa7410b5f xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa746e8c7 phy_read_paged +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa75dfbe1 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7af4aff __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa7b78c60 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa7c63ece mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xa7c83fdb flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7d9b96c fc_mount +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f01e01 init_special_inode +EXPORT_SYMBOL vmlinux 0xa8025e17 fget +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa82f54ab netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8440832 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa8489d79 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85c05ed blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa89121c6 nf_log_set +EXPORT_SYMBOL vmlinux 0xa8917f21 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a8a93 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xa89e9bec uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa8a398df agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xa8b4dde4 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xa8bfac83 follow_pfn +EXPORT_SYMBOL vmlinux 0xa8c3bf05 param_get_ulong +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d6b525 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa92b0d0b kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa9643e10 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96ce18c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xa9851717 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa9864a31 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9cd0377 bio_endio +EXPORT_SYMBOL vmlinux 0xa9eea73d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0e1a69 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xaa1fd0ef proto_unregister +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3729cb generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xaa6d8f09 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaaa930a7 init_net +EXPORT_SYMBOL vmlinux 0xaac6bd8e textsearch_register +EXPORT_SYMBOL vmlinux 0xaad01ca4 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad355c9 bio_reset +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadf09cb tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe2f67 key_move +EXPORT_SYMBOL vmlinux 0xab0d79fa pneigh_lookup +EXPORT_SYMBOL vmlinux 0xab31640a rproc_put +EXPORT_SYMBOL vmlinux 0xab33fd9b kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab68ec58 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xab6a8bf2 dput +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7ca795 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xab9ed140 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xab9f0d69 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xab9f7723 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabcd45fa __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xabe1f94a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac09c1cd dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xac127529 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2e4be8 device_add_disk +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac39bf3e ppp_unit_number +EXPORT_SYMBOL vmlinux 0xac412dff mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xac44eeb3 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xac4916ae napi_disable +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac596a10 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xac5d2703 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac5fd31d mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xac7b03a7 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xac7e4d02 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xac84efae generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac92bc0c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xac9d0141 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xaca1a14b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacab49d5 simple_empty +EXPORT_SYMBOL vmlinux 0xacb0be4d pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xacb85915 sock_no_bind +EXPORT_SYMBOL vmlinux 0xacc835cd blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacda9f45 cpu_tlbstate +EXPORT_SYMBOL vmlinux 0xacdb2062 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xacdc7c0f module_put +EXPORT_SYMBOL vmlinux 0xace1d472 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf2544b input_free_device +EXPORT_SYMBOL vmlinux 0xacf3ff14 vmap +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad120718 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xad1fb624 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad43210a phy_disconnect +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad56913a check_disk_change +EXPORT_SYMBOL vmlinux 0xad678139 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad848088 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada0fd14 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xada144f7 i2c_add_adapter +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 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xaddaa0c3 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xade0bdf2 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xade0e255 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae041062 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae36ed43 get_fs_type +EXPORT_SYMBOL vmlinux 0xae3c5ee3 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5d8b77 vfs_readlink +EXPORT_SYMBOL vmlinux 0xae6b0817 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xae71963b seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xae7c63ca skb_queue_tail +EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xae903ded devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xae936c2f skb_pull +EXPORT_SYMBOL vmlinux 0xae9599df netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaee2f6ba __put_user_ns +EXPORT_SYMBOL vmlinux 0xaf052b8f devfreq_add_device +EXPORT_SYMBOL vmlinux 0xaf08cfcf inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xaf27f530 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xaf3289e4 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf59229a mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf7deccd flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xafacf0e2 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafc78e45 dev_addr_init +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafe19730 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xafeae2bb __d_lookup_done +EXPORT_SYMBOL vmlinux 0xafeb6897 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xb00566d6 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb00ba1e0 neigh_update +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01e281a nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xb02d7c61 nf_reinject +EXPORT_SYMBOL vmlinux 0xb02f76ad vga_tryget +EXPORT_SYMBOL vmlinux 0xb03588ff ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xb046bb70 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb0718c3f simple_statfs +EXPORT_SYMBOL vmlinux 0xb08118d3 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xb0867dda dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xb089b3ee i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb09142a7 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xb099df7a pci_get_device +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0efb5c3 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb1058e35 __free_pages +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11612cf mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xb1170dca nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb11cb969 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14c2bcc scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb16b9ca5 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb1723ce6 d_exact_alias +EXPORT_SYMBOL vmlinux 0xb177a78b blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xb18693d3 dump_skip +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d2c348 dump_align +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1fce8ed ip_frag_init +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2255898 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb2317f28 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xb23201f3 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb23349d6 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xb23e2f0c clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb24af2b8 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xb252b084 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xb282227f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c6c01a devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xb2d44201 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xb2eee408 tcp_rcv_established +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 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30daa2f dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xb30f5fd0 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0xb31c1837 kthread_bind +EXPORT_SYMBOL vmlinux 0xb320bdb5 tty_write_room +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb355f4e1 pci_find_resource +EXPORT_SYMBOL vmlinux 0xb3571901 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb358d28e inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb36299e0 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb371eeb6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb38a404c security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a35205 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xb3bd4618 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb3bf8938 block_read_full_page +EXPORT_SYMBOL vmlinux 0xb3d00a9b filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f3a754 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fb179e vfs_fadvise +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45a7fea tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xb4686ed6 get_task_cred +EXPORT_SYMBOL vmlinux 0xb46abc44 d_alloc +EXPORT_SYMBOL vmlinux 0xb473b6b0 rtnl_notify +EXPORT_SYMBOL vmlinux 0xb478a6dc scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49890b8 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4ae18ea __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xb4b87875 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb4c505c9 unlock_rename +EXPORT_SYMBOL vmlinux 0xb4dab92f inet_sendpage +EXPORT_SYMBOL vmlinux 0xb4db1799 keyring_clear +EXPORT_SYMBOL vmlinux 0xb4ef98ca rtc_add_group +EXPORT_SYMBOL vmlinux 0xb4f0ab15 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb517c427 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb51f407d vfs_link +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb541795d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xb56c69c2 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb591c655 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a6c2c9 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5c30543 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb5dc11e1 soft_cursor +EXPORT_SYMBOL vmlinux 0xb5e07a37 blkdev_get +EXPORT_SYMBOL vmlinux 0xb5e36d2b input_close_device +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f94cce netlink_unicast +EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0xb60349af sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb60b1f7b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6597100 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xb6614bcc phy_aneg_done +EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0xb673e3fb rproc_del +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb680624a peernet2id +EXPORT_SYMBOL vmlinux 0xb684b17b __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb68f4649 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69651b1 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xb6a2f0d4 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xb6a4579d loop_register_transfer +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a6a1bb nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xb6a994f0 is_nd_dax +EXPORT_SYMBOL vmlinux 0xb6b2aa5b nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xb6c68df5 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xb6d7619b nf_log_register +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ec9769 update_devfreq +EXPORT_SYMBOL vmlinux 0xb6fa5d21 bd_finish_claiming +EXPORT_SYMBOL vmlinux 0xb702533e inet_recvmsg +EXPORT_SYMBOL vmlinux 0xb720e38d netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb742445e mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xb7479ea9 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb74fb709 set_pages_wb +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7a95cc3 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb7c35c68 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d61f16 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xb7ffedd1 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xb8104b15 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xb8183eff pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb8208991 thaw_bdev +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb851916b dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xb8631ac2 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xb863bc6f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb8747b1f __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb8769db2 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb897b190 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89f5f0f install_exec_creds +EXPORT_SYMBOL vmlinux 0xb8a084db con_is_visible +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8e3182b vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xb8e3f169 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f1064d rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90ca25a mmc_command_done +EXPORT_SYMBOL vmlinux 0xb91074af blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xb911647d mr_dump +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb923bb36 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xb932b191 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb965a406 may_umount_tree +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb982443e pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb985afcc dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb99dda20 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b3b8e9 keyring_search +EXPORT_SYMBOL vmlinux 0xb9cfe49d security_sb_clone_mnt_opts +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 0xb9ea277f ps2_end_command +EXPORT_SYMBOL vmlinux 0xb9ea3355 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb9ed4231 account_page_redirty +EXPORT_SYMBOL vmlinux 0xba0ebe04 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba12d3a5 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xba153e13 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xba1a0fb8 param_ops_short +EXPORT_SYMBOL vmlinux 0xba1ae6dc nf_hook_slow +EXPORT_SYMBOL vmlinux 0xba1b60d4 security_sock_graft +EXPORT_SYMBOL vmlinux 0xba2a97aa PDE_DATA +EXPORT_SYMBOL vmlinux 0xba2e24cb pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xba2e3616 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xba38640e get_agp_version +EXPORT_SYMBOL vmlinux 0xba4552ae eth_gro_receive +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53557b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xba6ae2b1 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xba71b8a9 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xba75db7e param_set_ulong +EXPORT_SYMBOL vmlinux 0xbaa1ca1e security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbad25a6a fasync_helper +EXPORT_SYMBOL vmlinux 0xbad543a6 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xbae885f7 param_set_bool +EXPORT_SYMBOL vmlinux 0xbaf604f7 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xbaf68a1b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2e7b5e mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3570c4 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xbb36c9b2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5ff79c arp_create +EXPORT_SYMBOL vmlinux 0xbb7de4f3 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9073e3 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbedb069 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xbbfbd491 add_to_pipe +EXPORT_SYMBOL vmlinux 0xbc00f2fe vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xbc0ce12e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xbc1316f0 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc20d30d dma_resv_fini +EXPORT_SYMBOL vmlinux 0xbc235aa1 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xbc390aff is_bad_inode +EXPORT_SYMBOL vmlinux 0xbc47cbcd __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xbc5e74bc skb_clone_sk +EXPORT_SYMBOL vmlinux 0xbc711759 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xbc8d7135 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xbc8fe380 dns_query +EXPORT_SYMBOL vmlinux 0xbca6d08e nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xbca9ba39 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb18740 unload_nls +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd5d76a tcf_register_action +EXPORT_SYMBOL vmlinux 0xbce93b6f ip_options_compile +EXPORT_SYMBOL vmlinux 0xbcf3533c __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xbd0e30e0 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xbd12a66c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xbd1a55f0 current_time +EXPORT_SYMBOL vmlinux 0xbd25bacf inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xbd38ff27 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xbd43e14b param_ops_bool +EXPORT_SYMBOL vmlinux 0xbd43f400 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4c8574 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6cf322 follow_down_one +EXPORT_SYMBOL vmlinux 0xbd73b08d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbd7954da migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xbdb1d35a pcie_set_mps +EXPORT_SYMBOL vmlinux 0xbdb1e080 pci_find_bus +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfbbbec phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xbdff1b42 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe196de4 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xbe29df6d cdev_set_parent +EXPORT_SYMBOL vmlinux 0xbe364b5c register_md_personality +EXPORT_SYMBOL vmlinux 0xbe3705ef __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe50b101 page_symlink +EXPORT_SYMBOL vmlinux 0xbe51828e hmm_range_fault +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe57f4f4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbe599fb9 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5bd6bc security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6441ed sk_stop_timer +EXPORT_SYMBOL vmlinux 0xbe659781 set_device_ro +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe772c80 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe842da2 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xbe9fa81e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xbea5f991 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xbee0ab5f xattr_full_name +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbef2b0a8 __serio_register_port +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefe1155 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbf1445a4 skb_split +EXPORT_SYMBOL vmlinux 0xbf181505 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xbf2e3ef2 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf52d12e dmam_pool_create +EXPORT_SYMBOL vmlinux 0xbf692079 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xbf7d1462 config_item_put +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa60a03 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xbfb0a3e0 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xbfb2f130 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd6e9ab netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0xbfe83b6a nobh_write_begin +EXPORT_SYMBOL vmlinux 0xbfe83c8d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffd0a96 set_binfmt +EXPORT_SYMBOL vmlinux 0xc006ebc7 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xc00d395c netdev_info +EXPORT_SYMBOL vmlinux 0xc0149033 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc01d1a32 put_cmsg +EXPORT_SYMBOL vmlinux 0xc01f081f sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc03b436e udp_seq_ops +EXPORT_SYMBOL vmlinux 0xc04b5c56 path_nosuid +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08139d9 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xc083c2c7 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xc08594b8 __do_once_done +EXPORT_SYMBOL vmlinux 0xc08777e1 mmc_add_host +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0beb622 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xc0c75f9a qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xc0d608de dma_cache_sync +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc1349b90 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc1354c82 sync_file_create +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc13949f9 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc1432851 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc145aa48 igrab +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1509c8a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc15e23dd cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc1672a4c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc170ba24 tty_do_resize +EXPORT_SYMBOL vmlinux 0xc17a501a remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1fbd0f1 dev_close +EXPORT_SYMBOL vmlinux 0xc2043c72 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc2089d38 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc208cb4d alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xc20afd29 skb_append +EXPORT_SYMBOL vmlinux 0xc20baa10 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc228129e revert_creds +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc25d41d8 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2734530 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc28cba91 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc28fffbb pci_scan_slot +EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0xc29ade45 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e7782a xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xc2ea1815 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc2f32a84 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc314c26a devm_free_irq +EXPORT_SYMBOL vmlinux 0xc327815d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc332d5f5 _dev_err +EXPORT_SYMBOL vmlinux 0xc33d4318 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xc33f9472 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xc35e6d82 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xc368d98e agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc37187d3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc376d352 param_get_long +EXPORT_SYMBOL vmlinux 0xc376f1c6 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39dc809 prepare_binprm +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3bf405b make_bad_inode +EXPORT_SYMBOL vmlinux 0xc3d67aa2 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc3edc84a filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc41a4a4d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42afd38 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc45f38f0 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc485366d pci_request_regions +EXPORT_SYMBOL vmlinux 0xc492de50 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc4952f09 cdev_add +EXPORT_SYMBOL vmlinux 0xc4a453f2 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4f9ab65 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc523486f finish_swait +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52e8287 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xc552eafe nobh_write_end +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc581bebb i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc58b2b39 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xc58c2d75 eisa_bus_type +EXPORT_SYMBOL vmlinux 0xc591f9cc genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0xc5943bbd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc597216e jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a436e1 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc5a9f6ac devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bb8114 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xc5d191b3 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ebc3ef bdi_alloc_node +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6029e5b seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6273268 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xc62bbf0e skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63b3c54 dma_virt_ops +EXPORT_SYMBOL vmlinux 0xc63dcc60 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc652cb98 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc6566664 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66013ac vme_slave_request +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc668e237 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc669c6f2 dup_iter +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc683f0ff __destroy_inode +EXPORT_SYMBOL vmlinux 0xc685f2b1 netdev_crit +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc69f0309 __invalidate_device +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cbf0a6 sock_edemux +EXPORT_SYMBOL vmlinux 0xc6ee9486 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc700939e eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7329346 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c220d3 unregister_console +EXPORT_SYMBOL vmlinux 0xc7c5ada4 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7def1ff dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xc7e1a5f9 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc7fbe83a vm_insert_page +EXPORT_SYMBOL vmlinux 0xc8023b00 neigh_table_init +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc80bd782 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc825975c udp6_set_csum +EXPORT_SYMBOL vmlinux 0xc83b4482 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86be2cc vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xc86d382f vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc8706c91 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a03d6f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b63e61 generic_update_time +EXPORT_SYMBOL vmlinux 0xc8bff21a rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xc8c51171 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc8c8e5f8 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc8d61dba agp_enable +EXPORT_SYMBOL vmlinux 0xc8da6f4c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xc8e74b9f pcim_pin_device +EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xc8e7f61c mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xc8f14079 simple_rename +EXPORT_SYMBOL vmlinux 0xc910017f napi_gro_receive +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc931076b param_ops_uint +EXPORT_SYMBOL vmlinux 0xc9360e13 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9444863 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xc95159d4 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc973ee21 kernel_read +EXPORT_SYMBOL vmlinux 0xc975f634 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9953de3 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a84235 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xc9a8bb75 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xc9afaca5 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc9b97598 can_nice +EXPORT_SYMBOL vmlinux 0xc9c6ceb1 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xc9ce4b13 tty_unlock +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e35794 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xc9eadb84 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9fd04db _dev_emerg +EXPORT_SYMBOL vmlinux 0xc9fd5816 secpath_set +EXPORT_SYMBOL vmlinux 0xc9fe6a83 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca33a53c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xca3ace20 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca642c1a pci_enable_msi +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca7a3159 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca939c03 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xca957ddc tty_port_init +EXPORT_SYMBOL vmlinux 0xca972b38 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9bf8e8 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xcaa576dd dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcacc7318 bio_uninit +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadaaa8d vfs_llseek +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf79d0b compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb47c861 vfs_get_link +EXPORT_SYMBOL vmlinux 0xcb49f95e jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xcb62dda6 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb809273 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xcb97372d bdev_read_only +EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbac6436 kill_pid +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb43c15 d_splice_alias +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd61d7a clk_bulk_get +EXPORT_SYMBOL vmlinux 0xcbd860ae watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xcbda3ccd devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xcbe909ec key_type_keyring +EXPORT_SYMBOL vmlinux 0xcbeb4cb9 config_group_find_item +EXPORT_SYMBOL vmlinux 0xcbf11946 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xcbf28d84 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc024bcf poll_initwait +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc21fdcc __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc276c0f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc38b15b md_reload_sb +EXPORT_SYMBOL vmlinux 0xcc3e900a __kfree_skb +EXPORT_SYMBOL vmlinux 0xcc408c41 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xcc43ad7f finish_open +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc8793d8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xcc91d5aa invalidate_partition +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccb5b46a input_release_device +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc7bb51 path_get +EXPORT_SYMBOL vmlinux 0xccd2be67 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccdac9e9 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0xccee794a softnet_data +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccfe6051 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd20598d netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd5ab770 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xcd64b769 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd94ef10 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcd9d05d0 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde35d31 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce124b8a simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xce185718 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xce1b7454 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xce2214b7 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2bf4cb skb_put +EXPORT_SYMBOL vmlinux 0xce2ef7c5 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xce4254e7 import_single_range +EXPORT_SYMBOL vmlinux 0xce443326 ata_print_version +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 0xce6477b2 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xce6b3b26 locks_init_lock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8a5f56 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0xce9048a4 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcead5a72 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xceb4040d pci_disable_msi +EXPORT_SYMBOL vmlinux 0xcec7a956 inet_add_offload +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf02ccb1 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf239ad2 load_nls +EXPORT_SYMBOL vmlinux 0xcf26dde0 block_write_end +EXPORT_SYMBOL vmlinux 0xcf29f81f tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2e4fe3 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xcf34a123 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xcf4b04db padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf50a80a devm_release_resource +EXPORT_SYMBOL vmlinux 0xcf657219 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xcf6ce2d9 vfs_get_super +EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcf83e7c6 input_inject_event +EXPORT_SYMBOL vmlinux 0xcf844c80 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xcf87aca6 from_kgid +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfb0715c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xcfc73a2d dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcff0be12 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xcff37dd8 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xd01f90da tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd02676d8 setattr_copy +EXPORT_SYMBOL vmlinux 0xd02ebb3d ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd059b50c netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06b4906 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xd0995a8e vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0c347cd tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd0dca490 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f4d0a1 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fe5ac7 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0feb02c make_kprojid +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd12f5253 pci_get_slot +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19a38c8 eth_header_parse +EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xd1a11e1f inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xd1b3482b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd1b34da5 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xd1c8008b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xd1d15f1b uv_hub_info_version +EXPORT_SYMBOL vmlinux 0xd1d2e348 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e8656d reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1f9a68f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xd2126b86 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd21f5295 devm_iounmap +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25ee51f pci_choose_state +EXPORT_SYMBOL vmlinux 0xd260f028 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd261613d __module_get +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28249ff d_delete +EXPORT_SYMBOL vmlinux 0xd28ed3b2 __close_fd +EXPORT_SYMBOL vmlinux 0xd292f8b8 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xd296a5f8 seq_release +EXPORT_SYMBOL vmlinux 0xd2a27b11 security_sk_clone +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dd040e __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd3004fc7 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xd308cb8c drop_nlink +EXPORT_SYMBOL vmlinux 0xd3102253 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xd34bdcc0 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd3668152 key_unlink +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd377f48e mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd39c6a95 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xd3a806c6 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xd3ba12ba blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xd3c8218f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd3e5ae7c dma_sync_wait +EXPORT_SYMBOL vmlinux 0xd3e8a856 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd40291c5 phy_modify_paged +EXPORT_SYMBOL vmlinux 0xd4045e4c bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41fa8e1 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd427d2c9 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd430bb8f add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xd455a566 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xd4571448 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd469a5ac update_region +EXPORT_SYMBOL vmlinux 0xd4719692 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xd4783898 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xd47ac308 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4ae5e77 mntput +EXPORT_SYMBOL vmlinux 0xd4b8b9a0 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c41e35 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd4c45e72 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xd4cb0c59 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e03cc6 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd4ed4e63 simple_fill_super +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52e8a4f reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53faa84 page_readlink +EXPORT_SYMBOL vmlinux 0xd541f1c5 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xd548c56d flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xd5849a2f abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xd58ce176 dquot_disable +EXPORT_SYMBOL vmlinux 0xd597ba54 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5cb91a4 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xd5e913f1 register_quota_format +EXPORT_SYMBOL vmlinux 0xd5f662d3 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6079b70 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xd60ba975 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xd6229881 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd62bd25c amd_iommu_pc_set_reg +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd652cb2b mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd67a3928 key_link +EXPORT_SYMBOL vmlinux 0xd67ddf43 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6913866 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd6993475 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ac0092 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd6b0e08e __skb_get_hash +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6bad50b vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xd6c61d40 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6d780aa agp_find_bridge +EXPORT_SYMBOL vmlinux 0xd6e1ed88 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xd6e59bbf param_get_ushort +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6efcf3e __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd6f3897f tty_unthrottle +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7072f3f pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73deab7 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xd74820d8 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd77171db vif_device_init +EXPORT_SYMBOL vmlinux 0xd77bfc22 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd79e7429 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xd7a0bc80 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xd7a1d5bc ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd7aa5350 console_stop +EXPORT_SYMBOL vmlinux 0xd7ac8228 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xd7b6a335 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd7cb8dfc xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dc98c6 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd8097a59 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xd80a87d4 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xd81ab1db phy_register_fixup +EXPORT_SYMBOL vmlinux 0xd81dab1f __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd8247e40 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd8283952 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd8364f77 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd84a102a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd84ab1b9 put_disk_and_module +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd87af866 pci_release_regions +EXPORT_SYMBOL vmlinux 0xd890f6b1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a1395d pcim_enable_device +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aacb1d sock_register +EXPORT_SYMBOL vmlinux 0xd8c020dc backlight_device_register +EXPORT_SYMBOL vmlinux 0xd8ccf8a4 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd8cfb9dd flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd902b361 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd908db03 nf_log_unset +EXPORT_SYMBOL vmlinux 0xd90a8efc notify_change +EXPORT_SYMBOL vmlinux 0xd921c9a5 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9482925 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd969d222 genl_register_family +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd974c31f dquot_initialize +EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0xd97d1d28 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9883d71 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xd98fb9f2 input_open_device +EXPORT_SYMBOL vmlinux 0xd98fe837 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b24a9c locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd9b56417 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xd9b5a589 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9d0d590 request_key_rcu +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xda0218ae skb_dump +EXPORT_SYMBOL vmlinux 0xda0347c2 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xda133193 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda1ed817 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda5adb68 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7daffa ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda98c0a7 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa0358f __sb_start_write +EXPORT_SYMBOL vmlinux 0xdac1bb29 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdadf85fc discard_new_inode +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdafe03ee netdev_notice +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb24de53 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate +EXPORT_SYMBOL vmlinux 0xdb4ade88 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xdb585158 napi_complete_done +EXPORT_SYMBOL vmlinux 0xdb5ae289 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xdb5fe405 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb864f90 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xdbc60315 inet_put_port +EXPORT_SYMBOL vmlinux 0xdbcbca4f page_mapped +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbda6048 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xdbf4fbfa xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xdc0600bf gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc176bd6 cdev_device_del +EXPORT_SYMBOL vmlinux 0xdc1ad749 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xdc21da8d agp_put_bridge +EXPORT_SYMBOL vmlinux 0xdc2a0e9b component_match_add_typed +EXPORT_SYMBOL vmlinux 0xdc46ff3c generic_file_llseek +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5cc453 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xdc7acaf5 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xdc9cae79 redraw_screen +EXPORT_SYMBOL vmlinux 0xdca0777f dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xdca3de07 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xdcc3ceb6 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xdcd7d27b d_drop +EXPORT_SYMBOL vmlinux 0xdce6d7b0 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xdd02ac5a misc_deregister +EXPORT_SYMBOL vmlinux 0xdd0efd8a tcp_req_err +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd39b408 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xdd3c8b3e fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xdd43e232 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xdd57a04f put_user_pages +EXPORT_SYMBOL vmlinux 0xdd5f2a6a tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6d9a84 setup_new_exec +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd799ad8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xdd816214 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8f8694 module_layout +EXPORT_SYMBOL vmlinux 0xdda05fe6 dma_set_mask +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd0b25c uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xddd14c15 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xddd346a3 filp_open +EXPORT_SYMBOL vmlinux 0xddd74659 try_module_get +EXPORT_SYMBOL vmlinux 0xddd8b1bf gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xdde2167c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde3c5f9c xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde6434fe cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xde96e1cb md_write_start +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdec71860 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdece2550 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xdee4021d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xdeea1c2d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xdef2f79d vfs_fsync +EXPORT_SYMBOL vmlinux 0xdef7c04a pci_enable_device +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf00b7f0 nd_device_register +EXPORT_SYMBOL vmlinux 0xdf13f5e3 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xdf1c2f06 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xdf22e7cd mntget +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2d4e3e km_state_expired +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xdf5b4b4e configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xdf5f3a17 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xdf63e7d6 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0xdf69db2e pci_read_config_word +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf7e758f unlock_new_inode +EXPORT_SYMBOL vmlinux 0xdf7f135d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xdf8448ec dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf938e47 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf97ddd1 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xdfa3d5cf xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd20ac7 ip_defrag +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff15025 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe005f481 bio_add_page +EXPORT_SYMBOL vmlinux 0xe00a5aba neigh_lookup +EXPORT_SYMBOL vmlinux 0xe00f008b tc_setup_cb_destroy +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 0xe033e7df inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe045ecd6 param_ops_long +EXPORT_SYMBOL vmlinux 0xe04c609f pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe04ca31d arp_send +EXPORT_SYMBOL vmlinux 0xe0560d22 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xe064059b freeze_bdev +EXPORT_SYMBOL vmlinux 0xe06481f3 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xe06ae7f0 phy_init_hw +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08c8e13 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe090155c d_instantiate_new +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b1eb6e t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xe0ba1776 devm_ioremap +EXPORT_SYMBOL vmlinux 0xe0def39a vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable +EXPORT_SYMBOL vmlinux 0xe106c91a scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe159db9c bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xe16780f6 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xe16f435d amd_iommu_rlookup_table +EXPORT_SYMBOL vmlinux 0xe178a9f2 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xe17a0068 path_put +EXPORT_SYMBOL vmlinux 0xe180f280 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xe1d9c3e6 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xe1f0632b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xe1ffe374 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xe20d3993 first_ec +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe23c910a inode_set_flags +EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe2a65c8b set_nlink +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d16d75 pipe_lock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe31ec055 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xe328060c xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3305da9 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xe362302b jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xe364b172 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe3672668 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe36dc778 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe387fd40 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe38b2556 bdget_disk +EXPORT_SYMBOL vmlinux 0xe390a9cd jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xe3954c7d request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe39715dd phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b997d6 skb_checksum +EXPORT_SYMBOL vmlinux 0xe3c51f25 clk_add_alias +EXPORT_SYMBOL vmlinux 0xe3c8ae77 napi_get_frags +EXPORT_SYMBOL vmlinux 0xe3d7696f agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3de31a9 pps_event +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f98ad8 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xe40643d6 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe417b42a __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe4182e35 seq_escape +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe434d308 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe447151f tty_vhangup +EXPORT_SYMBOL vmlinux 0xe45b324a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4b7ce89 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe4b9ee83 netlink_set_err +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4e21b76 sock_rfree +EXPORT_SYMBOL vmlinux 0xe4e27fcc tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xe4f0b251 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xe5025090 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe550b482 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe55598c5 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe5795b7e simple_release_fs +EXPORT_SYMBOL vmlinux 0xe57b4575 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xe57ea533 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe5801db0 generic_file_open +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe589247c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a34b3a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xe5a90196 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xe5b3735a dcb_getapp +EXPORT_SYMBOL vmlinux 0xe5b4730d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c7d819 genphy_read_status +EXPORT_SYMBOL vmlinux 0xe5fa9fac unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xe602fc4e fqdir_exit +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe60898a9 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61d10bf scm_detach_fds +EXPORT_SYMBOL vmlinux 0xe62f4374 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xe635ea85 fd_install +EXPORT_SYMBOL vmlinux 0xe63e8543 vfs_statfs +EXPORT_SYMBOL vmlinux 0xe65c5682 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xe66787c4 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xe675b85f inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe67e46b8 mount_single +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6bb5114 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xe6bc7f9a tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xe6c9ca88 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe6e053bc __skb_pad +EXPORT_SYMBOL vmlinux 0xe6e19d32 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe711cb5f abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xe71a878a page_pool_create +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72ba5a3 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7519244 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe752e25b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe77129ed kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xe77285ab crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe776f5b8 vga_put +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe79aabad nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0xe7bee7b4 complete_request_key +EXPORT_SYMBOL vmlinux 0xe7cb6fae skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe7ce226a eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d5e0ac acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xe7e5d824 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe7f33892 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xe7f676cb vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0xe7fa64ae security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe800f8d6 current_in_userns +EXPORT_SYMBOL vmlinux 0xe82742f0 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe84328f2 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xe85742d2 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8711f47 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xe87af1d6 pci_clear_master +EXPORT_SYMBOL vmlinux 0xe884ec02 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe890dd54 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xe8a15c7c vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xe8a1fd66 __d_drop +EXPORT_SYMBOL vmlinux 0xe8af0f58 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xe8b7457b dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe8c95a59 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe90d2e63 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9239511 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe926e846 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xe9274600 serio_rescan +EXPORT_SYMBOL vmlinux 0xe92c6d29 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe93bd0d9 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe93fac4b dev_deactivate +EXPORT_SYMBOL vmlinux 0xe945639a security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe94a9e97 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe94f82d8 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe977283e dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe99950dd param_ops_string +EXPORT_SYMBOL vmlinux 0xe999921d fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0xe99c5430 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xe99e970f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9ba4f27 xfrm_input +EXPORT_SYMBOL vmlinux 0xe9d2c369 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xe9d397a0 uart_register_driver +EXPORT_SYMBOL vmlinux 0xe9d3ca7b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe9e12467 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xe9e787b1 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eb449e __page_pool_put_page +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea0698ff hmm_range_unregister +EXPORT_SYMBOL vmlinux 0xea200b80 filemap_fault +EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable +EXPORT_SYMBOL vmlinux 0xea32a872 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xea3aa57e address_space_init_once +EXPORT_SYMBOL vmlinux 0xea3add46 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4a69f4 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea781c45 xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0xea7a41b3 netdev_change_features +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xeaab8a63 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae55348 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xeae7f039 dump_emit +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3e291b set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xeb3f388d mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xeb41489b get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4874e7 sg_miter_next +EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index +EXPORT_SYMBOL vmlinux 0xeb5f835d tty_port_close_end +EXPORT_SYMBOL vmlinux 0xeb5fba4f blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xeb607d9e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb95c0c8 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xeb987926 vme_register_driver +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebb277b7 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xebb40461 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xebbf938a try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xebd2ad58 generic_listxattr +EXPORT_SYMBOL vmlinux 0xebdd2a6b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebe5f970 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xec10a3b4 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xec146210 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec301215 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xec351bd9 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xec45149b kmem_cache_free +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec554e18 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xec5c1a50 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xec63786a elv_rb_find +EXPORT_SYMBOL vmlinux 0xec7ae1a1 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xec899e59 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xec8c5a9e security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xeca49e26 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xeca7023e kernel_connect +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xece4778f xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecea38e9 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xecf73f91 proc_set_size +EXPORT_SYMBOL vmlinux 0xecf8bb60 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed1051e3 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xed1324db blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xed25a9ed filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xed2c0426 udp_seq_next +EXPORT_SYMBOL vmlinux 0xed338d5f mdio_driver_register +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed610bb3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed780309 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xed7d335a mount_nodev +EXPORT_SYMBOL vmlinux 0xed7fcd1c tcp_make_synack +EXPORT_SYMBOL vmlinux 0xed80e3d3 to_nd_dax +EXPORT_SYMBOL vmlinux 0xed91bab9 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xed939a9f inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xeda7a097 vfs_symlink +EXPORT_SYMBOL vmlinux 0xedb5d320 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbc8f3d phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcd7745 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xedecc761 __devm_request_region +EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put +EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table +EXPORT_SYMBOL vmlinux 0xee050fc3 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xee19babe inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xee2242b6 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xee2a1cb4 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xee2b63e0 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee35514b blackhole_netdev +EXPORT_SYMBOL vmlinux 0xee35a604 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xee377f48 tty_register_driver +EXPORT_SYMBOL vmlinux 0xee3c22cb dm_io +EXPORT_SYMBOL vmlinux 0xee423a3a md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee597214 release_firmware +EXPORT_SYMBOL vmlinux 0xee620bf9 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xee62aae4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xee718ac3 freeze_super +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee96876b blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xee988369 block_write_full_page +EXPORT_SYMBOL vmlinux 0xee9ee9f7 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xeea4b3ca filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xeea5d5e5 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xeebf0a74 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xeedbb59d __bread_gfp +EXPORT_SYMBOL vmlinux 0xeee0b994 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xeeec2191 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xef046109 inet_listen +EXPORT_SYMBOL vmlinux 0xef0b041e param_get_uint +EXPORT_SYMBOL vmlinux 0xef40e9b1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xef410467 flush_old_exec +EXPORT_SYMBOL vmlinux 0xef5be87f twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xef675c33 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xef8c72c9 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xef8e5550 param_get_byte +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa01c83 input_match_device_id +EXPORT_SYMBOL vmlinux 0xefa14e85 mr_table_dump +EXPORT_SYMBOL vmlinux 0xefaa628c sock_i_ino +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefafe2dc ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd8518d generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xefe2f318 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xeff7f93b d_find_alias +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf001988a backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xf00a8f3b vga_con +EXPORT_SYMBOL vmlinux 0xf04bbb92 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf07c5fd9 tty_port_close +EXPORT_SYMBOL vmlinux 0xf07ccfbb ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a8698e bd_start_claiming +EXPORT_SYMBOL vmlinux 0xf0ba8c67 revalidate_disk +EXPORT_SYMBOL vmlinux 0xf0be1864 __lock_page +EXPORT_SYMBOL vmlinux 0xf0e0cf03 skb_copy +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10355f5 dcb_setapp +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1163e27 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf1274726 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf138cd7f iterate_dir +EXPORT_SYMBOL vmlinux 0xf1720a9d kfree_skb +EXPORT_SYMBOL vmlinux 0xf1815d26 dump_truncate +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1b02a43 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xf1d10e61 devm_memunmap +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e60ce1 param_ops_int +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf209bda0 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xf20c398d blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf22a81f8 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24a865d __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xf25c0634 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xf26db3ac user_path_create +EXPORT_SYMBOL vmlinux 0xf2708fdd cfb_imageblit +EXPORT_SYMBOL vmlinux 0xf27450cd blk_queue_split +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29a2d18 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a7fac2 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf2aa830b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf2aec701 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2bc189e ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf2bd40d8 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e6f100 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xf2ea306d netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xf2f1370b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf2f5f451 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xf2fa8c45 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf301cb1c fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf319b3ae set_blocksize +EXPORT_SYMBOL vmlinux 0xf31bd6bc kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xf32501f8 kdb_current_task +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf3447554 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3802e2a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3938808 skb_unlink +EXPORT_SYMBOL vmlinux 0xf3a3506a tty_kref_put +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3aa5950 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xf3aefc79 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ef6d19 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xf402b7c7 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xf407f0db phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc +EXPORT_SYMBOL vmlinux 0xf42050b2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf424ecd9 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf440e787 iget_locked +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4438547 may_umount +EXPORT_SYMBOL vmlinux 0xf4462b8c i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf464ed3f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47da960 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xf47ed01e pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c8b1d8 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf4cc3a49 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xf4d07174 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4db62b4 no_llseek +EXPORT_SYMBOL vmlinux 0xf4e248c6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xf4eb1a3d t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xf4ebd825 phy_attached_print +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54020e3 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf547c08a netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xf54f2843 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf5610d4d devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf5612a7e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf58353d7 get_tz_trend +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5d3ad02 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5e914b4 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60f0295 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xf62db8c6 security_path_rename +EXPORT_SYMBOL vmlinux 0xf6421d36 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf655ea96 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xf656dff5 dma_find_channel +EXPORT_SYMBOL vmlinux 0xf664554f seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67a25fe security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68771a2 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf6b313d9 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf6c2fa7a nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xf6cb0abe dev_mc_add +EXPORT_SYMBOL vmlinux 0xf6d8bd25 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f32c57 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fa467a iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7083814 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xf714b9bb alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf715321a jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf7245f12 backlight_force_update +EXPORT_SYMBOL vmlinux 0xf7270a09 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xf734866f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf766ed94 is_nd_btt +EXPORT_SYMBOL vmlinux 0xf76d21b5 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xf7713af1 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf776a5a7 bdput +EXPORT_SYMBOL vmlinux 0xf79b60f7 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7b3d95e inet_ioctl +EXPORT_SYMBOL vmlinux 0xf7b73004 bdi_register_va +EXPORT_SYMBOL vmlinux 0xf7b83472 km_report +EXPORT_SYMBOL vmlinux 0xf7dc2d51 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xf7dedd69 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xf7e1d8db max8925_bulk_write +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 0xf821aa41 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xf86a873e inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf87a4a7f irq_to_desc +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bc9ec4 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8e7528e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf901ca01 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xf913fee6 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf91b1bca ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xf920bb69 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf96ac4f5 rproc_alloc +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf9814876 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf9849893 d_path +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9afc660 dm_get_device +EXPORT_SYMBOL vmlinux 0xf9bc7a19 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9ec7d38 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa3dd906 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xfa42c8b6 pci_iomap +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa888d75 inet_accept +EXPORT_SYMBOL vmlinux 0xfa94d5a6 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xfa9cd23c ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xfa9fbe17 scsi_host_get +EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad05ff2 translation_pre_enabled +EXPORT_SYMBOL vmlinux 0xfaed9e5d max8925_reg_read +EXPORT_SYMBOL vmlinux 0xfb2077bf xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4f3e80 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable +EXPORT_SYMBOL vmlinux 0xfb75ffb0 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xfb937b74 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xfb978d9b blk_mq_start_stopped_hw_queues +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 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbeb8dc6 ppp_input +EXPORT_SYMBOL vmlinux 0xfbfaddd4 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xfbffb7f1 udplite_prot +EXPORT_SYMBOL vmlinux 0xfc00982a __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xfc08ddb3 bio_init +EXPORT_SYMBOL vmlinux 0xfc0e00c6 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfc1711ee iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfc1bf953 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc4706f7 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xfc51dcb5 cdrom_open +EXPORT_SYMBOL vmlinux 0xfc5668f3 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xfc6c6357 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock +EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type +EXPORT_SYMBOL vmlinux 0xfc97229f mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc58aeb skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec07fc tcp_peek_len +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7674b __ip_dev_find +EXPORT_SYMBOL vmlinux 0xfcf90f40 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfcfeeb14 vfs_create +EXPORT_SYMBOL vmlinux 0xfd23b08c __frontswap_store +EXPORT_SYMBOL vmlinux 0xfd247646 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xfd2977ab fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfd781f0b dev_get_by_name +EXPORT_SYMBOL vmlinux 0xfd7c3fa5 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd94814e complete_all +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb499a8 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdccc751 setattr_prepare +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd849f0 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xfddeed1c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe09e518 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xfe11c084 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe36ff14 dm_register_target +EXPORT_SYMBOL vmlinux 0xfe44aba1 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe686c08 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xfe8f90d0 posix_lock_file +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe955c85 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea46a6b __nd_driver_register +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeea8268 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xfeeba8cf vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff050322 get_super_thawed +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff4d8a59 submit_bh +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6a5ddb phy_device_remove +EXPORT_SYMBOL vmlinux 0xff709956 vm_map_pages +EXPORT_SYMBOL vmlinux 0xff857027 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffa0ffae blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffcf733e fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x19711697 camellia_xts_dec_16way +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 0x60eec6c6 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x6f3a8de5 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr +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/glue_helper 0x06a93415 glue_cbc_encrypt_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x3a33f235 glue_ctr_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x508d358d glue_ecb_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x67fbe169 glue_xts_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x6a19afcd glue_cbc_decrypt_req_128bit +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/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xf7fb50d7 xts_serpent_setkey +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 0x2c7b3458 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way +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 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02d85a56 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x035254d1 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x036da35e gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053eef97 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05abf25f kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x081d1220 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bcdc312 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bd863c2 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d24f9c9 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11c43c91 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x151fe363 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x171aad99 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x171f8e54 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1791a7d9 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18352b31 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ed53c1f kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20465a9d kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x238e75d4 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2475bef7 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24d5d889 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25f6fc78 kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x263054b5 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29380e77 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2960055a kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2abf56f1 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c4fac47 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d756afd kvm_mmu_new_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ec67cbc kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f94dca4 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31126e5f kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x312aec7d kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32328e61 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x336d9a35 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33bb9fe1 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35e30e26 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35e44485 kvm_mmu_invpcid_gva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36595352 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e7d25 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390dc91d kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x391f6929 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b10ec2f __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3be813c2 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cb5d42d kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d6e640a kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e57f7cc kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ecc9b29 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f73f1d1 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403c547c kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40c15155 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4259fb01 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42fe9218 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x431c5bd1 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4414d1be kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x445d931e kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a93944e kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bd72d82 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c3ef03c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d44ec5b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d5c6016 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50495b6c kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x510fc808 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x514a51fd kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x514ea9f3 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x544fa4e4 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x549f116b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55399c4e kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5730cd54 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5822a63d kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bd247f4 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e398ab0 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ed67abd kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x633948a8 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x634cec9f kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63b734ff cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x644c645d kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c558b5 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66134800 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6628ce85 kvm_put_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6878eb33 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x692422ee kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69bbf7e8 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c6b76fc kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d02057b kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e7992a8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71dad359 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x735394ea kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x740a93e7 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x742834be __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x771086c8 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d79f29 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a7e6341 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a88e45e kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e64bc92 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f621f3a kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82be028a kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f0548f gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x869ed978 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x872ef478 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a746ffb kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bce3152 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8be6684b kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c177d1e kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dd3723b kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8eb33922 kvm_load_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x900b8d0d kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90ebbf4b kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91c91dc6 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9206e8ac kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x925683f7 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cb8521 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x937b3f3e kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94e925b5 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96202988 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97b8ccb9 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9933e761 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9efff070 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa04a0cf4 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0b23c0c kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa253bcbd kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3e46aed vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3f7c371 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7112fc9 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91ecca8 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaed58748 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafba5718 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb06dc3b3 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb148e00f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4116031 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4fb2df8 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6a3b928 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8132858 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9a6e1de kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf11a776 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc101e5b8 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2741341 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3ac7b99 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc42ec4a7 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5545cb6 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6d6f55f kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8091819 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd068a3cd kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd279f115 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd317ff1c pdptrs_changed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd358a718 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd40e87aa kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c58c4d kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd690afd9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd72889e3 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7ba8b45 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd85b3307 kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda0281a5 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda78615f kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb8c2523 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfd3e0e8 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe02c180a kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe365f71d kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36c798e kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4b34b34 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe584e423 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe64dd018 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6e65801 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe771d4dc kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8219247 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8c088ca kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe928103d kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecff8b14 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed956df1 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef7ba230 kvm_can_post_timer_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefe994f8 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2951c9e kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2ff4542 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf42413ed kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5397f9d kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf67e0bad kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf82a847b kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf874b867 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9572178 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9fc0bfa kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa62f199 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfaac9b2c kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc0355f6 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc0cd762 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe28e162 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL crypto/af_alg 0x008e5052 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x026662a3 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x04984cfa af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x0fa59a3a af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x138a0bfc af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3fb25609 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x56fad551 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x771ca02a af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x80b6959d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x85af9332 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xae81bdb3 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xb21d4dd3 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9f48976 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xbeb0bf1f af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xcca3f48c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd159d4f0 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xf0491b3e af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf2a08554 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xe50d7fba asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x33bda32f async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3efdd14c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x90d920da async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xab78446e async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe4723790 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4a3b8479 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4fd02428 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc9a51ac8 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xee2939b3 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2981c6aa async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7e7f9ec6 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x693676a3 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x1e7af01d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xf98d3e21 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/chacha_generic 0x1c33f991 crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x32a64a1a crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x98132ed7 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x9a412488 crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x02172866 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x02fac67c cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f13b651 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2882f477 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f89556e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x53867f90 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x85eb8af3 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x894536f0 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb09ab192 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb2cd786a cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb7ace5e9 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc6cfbcc cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xe63fb502 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1a7ba57d crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x24e3755e crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x26b2af17 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x396e2bc8 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x65060ae4 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x69ef1a45 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x76125bb5 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8ede7f8e crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95a6f33a crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa1704dbf crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa19478f8 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc9a0ba09 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xccb3aeab crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5a9fe29 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x037c3635 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x0751b4fd simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xdb13e758 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe1987e69 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x70741e69 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x900d108b crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xefd6d97e crypto_poly1305_final +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 0xe718f676 serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x3021a00e crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x5ee1d4b5 crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xd364d127 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/twofish_common 0x57127f9a twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1ed74192 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x445efbbe __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 0x92b43858 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd3e722e7 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfe44cdd3 acpi_nfit_ctl +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 0x0542cd90 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x064973e2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0ff51c94 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x341e1c3f ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38acc11c ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45f677c0 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x48d893b3 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x491fdbe1 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5827e841 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ab396d7 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64892373 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68570e04 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7873db6f ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7d762ee6 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e8f2798 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa180cb2c ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb48f9c18 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8e7d9d0 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf646d5f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd5994337 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe4de0b9e ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe920db97 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeb6181d8 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9351509 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1e758b02 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x290590ea ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a12a939 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3c13d138 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3c640f40 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x41a0008f ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4cc4686d ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4fcc3ed8 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6067bd26 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7869a8d4 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x791ddcf4 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x798b0aa0 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x80b462b2 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x850b4b74 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8d3aad20 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x99ce0360 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x3f98b089 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x9e9b369d __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x85731118 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xcf1884e6 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x08a16dea __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5991e3d8 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f4c43a4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb43a4873 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb8c2490b __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe20b1798 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x366f92b0 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x89bdc83e __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x030d61a0 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0731a57b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09e12e84 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12ad35b1 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17d538b1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37dac230 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57539d01 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x671d5375 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c8d2b6e bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x767b61d2 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8794f776 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cc255d7 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cdfc040 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ec000f6 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2d831dd bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad41aecb bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaeef3888 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd1be4de3 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3620aa9 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6523bd8 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc94a096 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe26e98df bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf48220ab bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf591cfce __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7aae099a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa09ea08c btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc43f3d26 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd60fc8f7 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeafabf5b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfb114580 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x014752c9 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x02455545 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0351f78f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x15f442bc btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16102e17 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3087f819 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4a6cbcb6 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59369a03 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f34da21 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f8449e3 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72b27b5c btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x74cd8619 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7770b472 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88a59b0e btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8a3c65a0 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9bc00301 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0fc8a8a btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x05ff445e btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6facb5f3 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x72b065ff btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9e059af5 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa9913d39 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2876b41 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf46ab54 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc908ee9d btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe5aeea88 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe793304c btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe915b471 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x12e3c212 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x18a597a4 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x40cc7602 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5cb95618 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf4080a22 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x56615892 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x567fa658 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7783e0bb btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x96307bb5 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfdd5b639 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x110a183f hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4f1e8d35 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x56b4ec98 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa92be96b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5c8b28c2 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5d57e6ae counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6069aae3 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6e871166 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fc95068 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8aad5c3d counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x96ba3c1a counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa35418e5 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xae188f5b counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xbae14608 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdf8a349d counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xec39523a counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf506363c devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +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 0x1b3b9fed sev_issue_cmd_external_user +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 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 0xfa9b7325 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02085472 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06cde428 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d2950e7 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x11ceca26 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14f5d5eb adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1607559c adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2192939e adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24386bc6 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x248e2356 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48a4d4ef adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5134a09c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x58db3203 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ecde09e adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5f394d8a adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x64f519a7 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x679afdb1 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68ccb975 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69e206e6 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6cc7c352 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73ac9a03 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x753d9058 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7562f27a adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a727518 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8b632f76 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9df3fea8 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa791b8f9 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab9be854 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0dd39c7 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1daa063 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc660f81c adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbf0010d adf_vf2pf_notify_init +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 0xcd4891b8 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe5237d7e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea733411 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea9a933c adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefd5d7d1 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb4fa611 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfdf85cdd adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xcbd2bdd2 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x91bdc79f __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x3a7d6f9f unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5f916fe3 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5feafddc dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x784b0e04 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x94a63a81 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x991c7386 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 0xfa1ac364 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1234c8aa dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x87127b38 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4cba7326 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x54135315 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x575ae310 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9f7b4118 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xba27f3c3 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe5b580b7 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe84f7c7a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x6a3786d4 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x776c14b4 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbfc20add hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xef62e775 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x62e0d09f hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xcd3006e4 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x3d56382d vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x81748a3e vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xa12c9a20 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcdb4b262 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd3231a1c vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xaf071a7a amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x830c469f amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xaf761418 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xe6459aff alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xeb3b6298 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x11dafe0b dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x173fde45 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3ca7898c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43740677 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x47371e94 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5077698b dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x710b25d9 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7e751f13 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x94991b35 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9f6ca34c dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab01e330 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad73d694 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb425ea5b dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc91976cf dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdc952d3d dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe369f677 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe8bb7a15 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef5f9fb3 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf338f6b5 dfl_fpga_enum_info_alloc +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 0x1e964326 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3eaa5124 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x49116f8f fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4980c3d6 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x50725ed9 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d75614d fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x74e94fa0 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0fde167 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd4457699 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf216075f fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf61ca831 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf7314a0e fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x438fd6ef fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x55d85594 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8c57765f devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x950e94a0 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9cd98f4b fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3cc30bf fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbabb5f0d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc0ef6277 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc20be0af fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe77b5a48 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec8dd553 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf896a615 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfa702abb fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x099dfc11 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0fbc7441 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x19fb4ba9 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1fb72d35 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3f6beaf5 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x833c965a devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8d6aab91 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3c609bae gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x739518ac gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7ae2ad14 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb982df21 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xff24602e gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x38284a37 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4b90b09c gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8e586461 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe9d93622 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfe198818 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcf75fe96 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xca5f6fc2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xda59514e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0bb22002 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x35714797 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b5d7e84 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f5cbf34 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5ee44b2b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65448096 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6876e2fa drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75ea84c4 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7878dbb5 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x817ec566 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81887a6f drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8326f1c0 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x876f7c3d drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89556f92 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x970f40bd drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x988c9f9e drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa5ad3297 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa8c08674 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1c30f61 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc36c2d57 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc59a6e19 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc158883 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd6cb7083 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe9bc88e3 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf998670e drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11ab1007 drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x13de78b6 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x32646bbb drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5e4a7a76 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8f7b0877 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb4dab821 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb530aa15 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe95ab0e0 intel_gvt_register_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x04a6fa1a ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc18b8e89 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xd38e7632 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a1ed39b greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1058ab88 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26e88b3b gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27560e75 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d12ccaa gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x306bd6b2 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30df4266 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4839502c gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x495a4315 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b5130a2 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4dcd1007 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e78beab greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4eed5b6b gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52d73eb6 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56a696c4 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7302e959 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x859be37f gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86fd2a8f gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ac3ee6d gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x981f2ffc gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9edda56a gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf9449a2 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2be8a87 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb1cfe2a gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc375f98c gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3fabc61 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc72845f6 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9dd7183 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbbd38e5 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcde9164e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd41e8d0f gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd70c908e greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe28a19ee gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef351709 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9a2ff11 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd06a78f gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff718f16 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03ac4d3f hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1244f051 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1385bc21 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1821113b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f1694a7 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27f16774 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c1087cf hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ed63705 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x327aba9a hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35dd47e7 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39fe25a3 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3deb5732 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fc4230f hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x415fbe4a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f62bb20 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x589b7696 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64d35a57 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67b035ba hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84df63c6 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8615097f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x880d6aca hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90b314f5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x92e2b77d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9324b515 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95aefbed hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fbdfddd hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa94ec529 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xafb840b0 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0700410 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1b95206 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb485b6a2 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb743a42b hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba6fb30e hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdaba369 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2ffe61c hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc42ed9b9 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd8af866 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2daceed hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda783321 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd27b0eb hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe080ada2 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3b9133e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3fe8f0b hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeedaad0a __hid_request +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 0x965b85b2 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30c90d1b roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5580adc4 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x60698388 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6feef16a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x932d68d7 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda01438c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x092cb009 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3f7892a9 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x510065a6 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6512b4b7 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7743cb56 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7921d1e5 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9e7a4f85 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xece01c37 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef1df4d4 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x65ae18b0 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x42c110c0 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x79902fd1 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x84685ce0 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x061b1f35 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0df72c8b hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x121cae44 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16501c1a hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18ef1faf hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32c692f5 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d6667d2 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4c5a4b4e hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55c02e13 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55e66e1b hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80b0c920 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f0ef6bc hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xafda5ffe hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb357f1e7 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9d38fbe hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee5eabf8 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf75894b1 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2234fe51 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x26f73308 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2f3f3481 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x314c8007 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35a944e7 hv_ringbuffer_get_debuginfo +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 0x4c1472ae vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x543adcdb vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x771170c4 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x789d580a vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d3b9984 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8fc8ce2b vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x94346abc vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x943b5a30 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x94f2929f vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa19d689b vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2c786a5 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa5187875 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb6ab5f75 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb76b98e5 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8f85153 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb99012d2 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbf9a27d5 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8fcbcc6 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd1d4174d vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde03b4f9 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe083506c vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3571cbf9 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbc2e76fb adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd59d0fad adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0232b219 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0c4592a5 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x116533f1 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x18ec7ae0 pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1f7aa895 pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x20e5848b pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x23a19bbf pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x291919ce pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x353a470c pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3fdb9cf1 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x42006d99 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64f4e2ab pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xad3eb620 pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe0455a73 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xed859e96 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xeeb6cfd4 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf0d14e10 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf57e0c53 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf774af3c pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x050acb80 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x200e53e9 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2ae855c6 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6ebd464c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x706d16ef intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7d1f32eb intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8f592431 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa3bb20fc intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd78a8df2 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3401270b intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3be7bfed intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xeab5fc77 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1846a923 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x56382f35 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6809a339 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x68d0c33b stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x77251e6c stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb238e2d8 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd7f325b0 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdb2395ce stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdbce037b stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x72b3967c amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x97cd53f5 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xad173cb2 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb60385cf amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb834bcdb amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xc2edb18b amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xcdf2be19 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x725b6062 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x31b2c965 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4afe1972 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8364afd4 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9bd3058b i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x54003c6a i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0e0be639 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c9b4ef7 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x28dd3ee6 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3136293c i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3228177b i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x35dbf34a dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x398b45fc i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x42c1ef9d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x44fbf0b0 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5974459f i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59fcc34c i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73e32677 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7d5d3edf i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa0b1d7ba i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa4b02f1e i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb16bfa47 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc0d619b3 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcb52b0c7 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcc2f57ab i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce51c02b i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6e28079 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde555e36 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe80158d0 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf560f225 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfdd37cf9 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xa0a4c9f9 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcc0a3df7 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x291d6c86 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcdafb649 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd2b0e096 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf0a1d49e bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x305f180f mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x84974379 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xe42ce903 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x49f72ea9 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x77b26ed8 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2d0d2bc3 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x430d4f4f ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5a36a3dc ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x65006a2e ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8506d27e ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9f974e80 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc492a365 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe17c1529 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe20347d3 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfa922f2e ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5781e2e9 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5aea69e4 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xba3b84a2 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2f801315 devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x8193ad84 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 0xc4259db1 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x6d7869a3 devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x8e1d45b1 devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x0e66f251 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x135706be cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x52dcf138 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x614c6b05 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6c352e3c cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7d8f8dba cros_ec_sensors_read_cmd +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 0xc15599f4 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0bd1804 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd6b9d593 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xed8b4f75 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x85a9b1ef ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcae481fd ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x12c88aca ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x30e021b0 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc6164607 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd95a653b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf03742b8 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x53d46edb fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5f06a427 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xb8d78968 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b7ad5dc adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x33a8e6af adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x513e25a8 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x539ac139 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8dc612fc adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9049dfd2 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x986996a7 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xae7d5a9d adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb47a2471 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc28fa379 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc60569fb adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdb9d77e4 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x20e0b52c bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x026bc91a inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x0b77be79 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x7bc765ff inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0876317a iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a181cd5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c211e79 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c25b8b2 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1162dd92 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x192bfba3 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22372bc2 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2572258a iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2651db27 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x405a9974 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43999134 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44cdcf94 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bd07712 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c45cca4 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5bc64566 devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c3e40f9 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x615a5e57 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b767e2b iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70ad2276 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x741232a3 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7aac6df1 devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7dfd7f5a iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86093b00 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x873ba368 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b14c39b iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fdb105c devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9379abf4 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x958a07b3 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x981c3dea iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa57a97e iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2218093 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8f0317a iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba92c537 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbac321f4 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe1c189b iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc50cdefb iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5648f62 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5a3627d iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc85d0ab3 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd049e9d0 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd47a953c iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9e396c6 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdab4344b devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfab7d95 iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe575de85 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5bcd2ce iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee214a24 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf49e3284 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4a52c92 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff22d355 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x86c6b6da rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xe0fbe593 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x267b8786 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x38cf312a zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3c61ef65 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4106d355 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb4a2986a zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xbcba7f2b zpa2326_remove +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x504ba35a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x873bf34b matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x944d94ce adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x18fe3ca3 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2a155b67 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3daa2172 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x455fd1ee __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4ce8773d rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x59d51ae1 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x748ae45e rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8326e31f rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b6b2a28 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb1e1fa64 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb85b4e2a rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbd20e0dc rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe9587065 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2ea0f7c2 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb6a8db9f cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdc6abd98 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5d196772 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc902ff2b cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x68db5874 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfb452b44 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x546cf751 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7560d463 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8a3ce575 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfe505958 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0927bf39 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0acfd068 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1771cd32 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x190aa99e wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23e0fc2a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x33f5233f wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a5cc0bb wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c834b53 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x819f832e wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x99fa3e33 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb55fb5f9 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdbdbcdac wm9713_codec +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0040106e icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x28c9ed67 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b91f02f icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x307dcf07 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x8dbb6210 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xac763759 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xb5392207 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xbdc53c28 icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc54b4db8 icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xda3cc9a4 icc_provider_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0f756ae1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fd5f688 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x38b27633 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x601e807d ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7ccabb86 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x858234b2 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x900014f9 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x97931fa4 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xea795eef ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x38ba2db1 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x71085e93 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8813648f led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8d2437fa led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9982d1d9 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9f998673 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1101c544 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x25555ba8 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2e7d505b lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3aa7d3ba lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4bce951c lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x73466376 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x95bef5b4 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdfe08984 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe15b55c6 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4a8f9bd lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xffeedae1 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07bc5ce2 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1403b538 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x21460850 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x330d9ecd mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3ff9623d mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x75f120b7 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x880178e3 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8ae499be mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbee3c2cf mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd888519a mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd9f429f5 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdf6f58c2 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe3f6e054 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfdb2c925 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x23d73a59 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2c67a391 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x419b7d0d dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x495f71a4 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5050156c dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57255285 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6039757f dm_cell_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 0x8683d429 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x925680b7 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x956e3006 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0343f82 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa586390d dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab555849 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac742a87 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb5480a18 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xe6690075 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf85bfde7 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 0x2cd72688 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +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-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 0x6c53e3bd dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcb06bde2 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 0x63233a0a dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd8f6bd0d 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 0x1109797f dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4ca4557a 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 0x602ecc14 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x9a3551a7 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 0xcd05ed70 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 0xded12f0f 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 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x12191ca3 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x02f3d9ab saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x15462e90 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19785564 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2dce7e93 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7182e147 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x71b68e8f saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa799404a saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb19f36c5 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc46e472b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe9680605 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0bcf535e saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2e430894 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6269b1b9 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x90978f0b saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd2aab9fd saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd441c335 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe76cb3c8 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x01a2a40a smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13e8c3a8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x408057ff smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x414e1cf6 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x43c45953 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x47d34351 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5928e5c9 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x73efccd1 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x97310070 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9924ef97 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9dbf1051 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9de5d3a8 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb1443373 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbedf9f45 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd52a1c08 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xee00d315 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf401fd4a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06e84c32 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f05fca0 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2722e261 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2de0eb68 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3619a55b vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x36ca7003 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b4ab059 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55458272 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61972aa4 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d872896 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x75642a33 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8e45d17b vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9494c440 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9afdb48e vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa873c63d vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xabb3a285 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcefb67cd vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd032c9a2 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1c0e84e vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd83b09bd vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdd097929 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb10889a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xebf106e4 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5423e8b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa13a63b vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x406d7e5e vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5a83cc9b vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7368679a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x9afd53ab vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xde530209 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x014ef860 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0b68457d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0f192ba4 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x11efcddd vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17973aa1 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d6cbca3 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21253735 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21a777be vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41dd00ad vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43367331 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b264b20 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c29527c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f04a465 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5410579c vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a3e5175 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5fc0d3e9 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62698158 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68cde9fa vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6da2ffb7 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x788a9a66 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x84d58d0e vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a4e4707 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x904114ea vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91ba0219 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb0c9a884 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9cc8974 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc2c3c5e2 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe29d055e vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeafb3ffb vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee240e27 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfce3da23 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x3843fd0e vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4fa32bac dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9cc98303 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa8e448e1 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x67083b83 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x1501087e cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa0a9381b gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xa088266c mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x5dbc4509 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xafeac61d stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6e3bf967 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x52ee0d2b aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x51d0b5d1 smiapp_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0567991d __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07838b79 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08c6e7ba media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13c0fa59 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b406073 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fc663e4 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x231867e3 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2663760a media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x27495b54 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x274afb79 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b4a356d media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2da66265 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34c88a09 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x353574f6 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x486f012c media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48c12e5a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5743a5ce __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6689437c media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x668faf67 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e2599de media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73e9c53d media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77754629 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x854f8910 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9014c4a7 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93384e8c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9cbe76b1 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1ded24f media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa7a7ff3a __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd245fde media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0b3404d media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4c3f8d4 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc56e918a media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9fc6573 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca0361b4 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd47d278e media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc3a8774 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7371bab media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe870159e media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea7101d7 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xecdd14de media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed3fc1a0 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1eb7726 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d344b8 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2dadb91 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf3cfbc7c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfce44c54 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x2edd9ba2 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x023addc5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0737e4a8 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08f463eb mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a63c0e5 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x152583ca mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19fbe8e4 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a0b27c1 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1fdbd39e mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x218c5dca mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50ce896e mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a30d93a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9215403d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf58ff6b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xafc4df8e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xafdbbc4a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcafa3d24 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcbdc1453 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe04da59b mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1c8becf mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x01e3b3e0 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04ccceca saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ad6889c saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d888dba saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x19036218 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29dedd6b saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9635240f saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x97c9af82 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa04cd935 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7d2565d saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa84b0e4e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad07042b saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc1a79193 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcd65ca6b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe1dcd9a8 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec91494b saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5ae735a saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf621c4cd saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfae3eb5d saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x220be82c ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2659ef9e ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x55a47b70 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x55f4e2df ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb9a58c6e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbc25b167 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea74bb6f ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x593f7064 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x73de4179 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9b54361d mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa2efbbbb mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb2621606 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x145a2c10 vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x45cb782b vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x6f879652 vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x7c303d8e vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x924b19e9 vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xc05d0a23 vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5f0e8688 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x703a4c07 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x80b8a76b si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xba33e50e si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd582ed62 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd62e0bd8 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdf6e0bdd si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0fdecf3d rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1acbb54e rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28a0b790 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4791cabb devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x522a06f2 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x561a0a0d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x657bad55 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6f7301fd rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7905f1e8 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b43a0f1 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c0ee841 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa35c3c8d ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf687db7 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc99a7a17 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc3bc424 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe3309705 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe79bc7a0 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe8eef56a ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xa77ea364 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x81b41cea microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x655ab273 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8c4e99bb r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x94bd2c91 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xdb49df4d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x02611100 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4a9ac3d1 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x94cdea68 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x79a5d28a tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa1dfed9b tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x471317e2 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x780fc402 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa4c21ac8 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0dfa83ed is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x115e0edf cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x11f1240c cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18a29f66 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1dcbbf51 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2c75afdf cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x303b1cb5 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x519c64f1 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6bef6117 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d2ff2a9 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8dd998a1 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb69d92f5 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb990122f cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb110376 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd4f049e cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe0cc7d4 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc34e3a9b cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd14f262a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xedf3d6c7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfea1430a cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x67d5eac3 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x41a9e03f mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07215531 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0bb6a3b5 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d65d757 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x14ebc14d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15e0528f em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18fac78d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a65e077 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22d6b26f em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ba34a22 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x46deb3ef em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50d02ce0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x67b93c20 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8bbc7850 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xad55c342 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb64c2538 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9ffea94 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc3cbf72 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe792d51e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2252a6e1 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6390b1ee tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8e220db4 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x99d61aa4 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x00790af1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x26f213e2 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5c0cee79 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0531774d v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0ad797e8 v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d0804b1 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2a17ed59 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2b594ec7 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x55ee4eba v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x69fe03cd v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9eec5b21 v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd6c84c60 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xecc46ced v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x082793f7 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0afe5388 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ed7a91c v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1114161e v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1caa85de v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d1979c5 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2eeefdc6 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32f16d72 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37aea8db v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d84da0d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5374d022 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x634b5e91 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67c8956b v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fee213e v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73386fc5 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a29c606 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b83aee9 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e397796 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96993145 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa55f301b v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6b7e41c v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb12a2846 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb80bffa4 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb866c5f v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbce48b46 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbee99109 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfabfb47 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd61e8f45 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7bc6e90 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe62cb952 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedae62ab v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4b18de6 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf78b8140 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7a9f774 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8f88e35 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x020437dc videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19de4248 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d735e1f videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x370f196d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x373f4807 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e93136d videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5768f728 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x578f1791 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63606833 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6609ce82 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ff6a251 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbaa8badf videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc28c2562 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4af9ec1 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc741325b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc7992cc1 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc95840d5 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce3b7e56 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xced5792d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5b630da videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe467e508 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe664be05 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec1072ee videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf40d8ce1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x234ace93 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x34a2301c videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x39cf9eac 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 0x60878553 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x462f5d09 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdac276e2 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xecdcf9df videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x010c4a0d v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07f0fd10 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x110b812a __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13fff1dd v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x184ecfcd v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24a8dad2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3054eb89 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34a83786 v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x354eab5d v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37510fbb v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3929ec6f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a9e4ffe v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fb78737 v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x453183d2 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5431c1aa v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5524fc12 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5886a9b1 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bdf57f0 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64075fb3 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f7c7aab v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a16197 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74edb658 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x787872b1 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a0c869f v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c0ac1e9 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7da63011 v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e2b0fcd v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8772d647 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9412b174 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97e447fb v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3e9fce8 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8e66bb2 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab937084 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf7d3eeb v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb699224c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba69a840 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd93b7dc v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc03b22f5 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdac098b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdd2ecd2 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce8832d7 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf053f3c v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcffe4c69 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd513d62e v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd517546a v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde8ed47c v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe093cf21 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2dd3400 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe42430cf v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecb60c41 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf15f70c0 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf40124cb v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf43d39ff v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa2bee70 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0b07cca6 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0cb44229 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6ab9e2b7 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x4cf09276 write_hw_ram +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xab853040 read_ad_value +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xb147d16b write_hwram_command +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xc61e5014 read_acpi_value +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1395aeee da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7c890fd2 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c1f260c da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xacda5311 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc8656db0 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdbfe82f3 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf00b3f29 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x22fdb5d6 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x25b6be81 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x384f6ae9 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x570ea157 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x79570c95 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b024ffb kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0f8b1faf kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1846f64d kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52b51d70 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5f0eeea7 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x90e7273a kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee06e904 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf96ac258 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x169e6b9f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2832a8dd lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x771444dd lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x004c08db lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2cc5bc3d lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x32c1a483 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x811b4e55 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8ce19396 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xba9d29bb lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe4094e2a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x110cc1d1 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x86ab54dd lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x953a4cb4 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f873501 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a276dff cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a2ab1bf cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d1b0027 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68aeda38 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x691270f3 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x691facb3 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7ee2679c madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x897636f7 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x897beab7 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x91a34147 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x91ae9d07 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x958746e4 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x987048cc cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa3d1da3f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa3dc067f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaf1fe8ac madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbef72d0a cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbefaf14a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca432bfb cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca4ef7bb cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd2965c4b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd29b800b cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0e4c733 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0e91b73 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfc1ab0b7 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfdc23006 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfdcfec46 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0396ac11 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x432ce731 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x51231259 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6da2a670 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9e9586a7 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xba0cc2c2 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0feed7c7 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16fdfa8b pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x42fd240c pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x45d48113 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x534139ff pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x740ccba8 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a3792e2 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8f87b486 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d30e67f pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9659df3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xee43e515 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x18343f70 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x653966dc pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x109ba975 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x31e6fb13 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6668a5db pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb9e15abc pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd644b4b1 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xcce0174c 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 0x08d88c55 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c9be08d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17587541 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3361c711 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f398f48 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47b41b52 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e1bc5f9 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e3a801e si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59be9ff9 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f25e67f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e6aab18 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82b8bec3 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82bb011d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8937604a si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e04add6 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9840466b si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99800e12 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ab7ae89 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9dff4729 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2e50a61 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc00d406 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd6f01d8 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8fd2986 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd38f717d si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd731978c si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd9e9aa5 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddb1e673 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfabe1ee si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe32fe1cd si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed947dc9 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedba3ded si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee1c4f07 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc1a4996 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfd48245b devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2bdd8c14 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x95ab6466 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa5f30f83 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe3d5e42d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xeb3ad1ce sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5654d0ce am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5d9b1ba0 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6d186506 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf5ef954c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd1ee83bb ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x079aa50e alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x31e0fa91 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9dcd0d43 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbee9135a alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd722aca1 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe78ca11c alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xeb8c53c5 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x114892b4 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x195357b2 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d152ccc rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27d7a088 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3f093f8d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64b968a1 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82f017ba rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9070dc03 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90f27aff rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa27cbfba rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa34c92c0 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaa259159 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xacce536f rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad5085e1 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7235e98 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcb1255ee rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcceeacee rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5434519 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe62043df rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe98f7586 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea6a1116 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeff24fe9 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf62a0520 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf737b345 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0788f1df rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x299f3bc9 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2aaf2570 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2ed4b093 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4408d2f8 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4dbfc220 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5a463e4f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x97da1a88 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xacdf8e3f rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcf5a1096 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xeac2cb4d rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xebef0d23 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xed03b50d rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x23616685 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x561d9f09 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x58a4e4e4 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbba09b4d 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 0x075373f5 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x28e90b4b enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x372f830b enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3f5cb635 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x776cb1b8 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x83278377 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8cde22bb enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe5d1cade enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0f61c24f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x16f03a12 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2648a417 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68ab0f3b lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9d3e7b45 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4ef6172 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6a367bf lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfc273bba lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x006c5302 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x179cb492 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2c74fef8 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2ddb5793 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2e39b447 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3b8d7134 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41bb4b9d mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x452e9fb2 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4ccfb8ab mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4e09e092 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4eced184 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4eda4ba1 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6066c47b mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x63b2cc60 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6694e786 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6aa47f4c mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6be82e7c mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x906d15e1 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x91a9cd57 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9298eb9a mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9639b6d5 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9ee29730 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9fc88976 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa0787e55 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa82fee9e mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd8f6a3e0 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdb628a32 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe5ec61f4 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x108adc12 cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x3e99bb06 cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x5d8d584c cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x8cabb5f0 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xfe9a288d cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x5f377cc7 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xbc7fced3 mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xc36e5850 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xca5d5b82 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x1a75adaf scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x47b3c086 scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xb0b42555 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xdc370d23 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x50adca6b vop_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x6481b8ec vop_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xb599f04d vop_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xcdf479e9 vop_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ce2dc72 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1d0e3902 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x255196e4 scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x2e0963a8 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3d8c4ed4 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3f9d5615 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4b44521c scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x538065be scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5f02f032 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5f5cee95 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x61acd8ff scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x67abc67e scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6fff3652 scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x721612bb scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x789a6867 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8d5aadd4 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8f2fed3f scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9100328a scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xba427905 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc3479c2 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xcdf3a401 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd28b7107 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdaa04b0a scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe11b9c66 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xee89cdf7 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xef098120 scif_close +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 0x7d5ba9a9 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 0x8481635a st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9724c6bf st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8042ebde vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xf6fae598 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xf8222142 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03152bf4 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x036ae57a sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07512907 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a4f06d4 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11efded6 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12d4e491 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x146ed16a sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fdfceeb sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2622ce0f sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c2da1b1 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4dd61c61 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x581fcd1c sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58304110 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f5b8f23 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x625c08d2 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x64c2683f sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6872f01c sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70254d4f sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7141ce58 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b88a96b sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8316be2c sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85fbb1bd sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b1909a0 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x917ebc81 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x920362bd sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97320313 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97a89b11 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x989e26e9 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b7f5518 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d726395 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfc27b1e sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc34a81b1 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc74329e1 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcdfdab26 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4ef795e sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6f6f11e sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf313b40b sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf4863abd sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd25de4a sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x14e5b438 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d7977fe sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3847f4d4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x46902ca6 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x762dd84f sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa4910534 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd393d82 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc927b0bc sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf602e95d sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x79e7250b cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x84f9009d cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbbd02575 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x68945def cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9b6d9269 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe53fd9b9 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0aaaf4ee cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x624f5f7d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa8266b9d cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc07d9014 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x9d2e8f45 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf015b534 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0983c7c8 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b92db33 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x129ced28 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18fb8868 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ad375d5 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d8e2f5f mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d9fb60d mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f0a9f49 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x257032de mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2655e531 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2cc61590 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f02d64e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37a23695 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a8e6f0f get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3afc00e1 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x436a8277 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dbb4d4e mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5727e454 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64480c71 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x683d456d __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6944896d mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6bc984f3 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7366c887 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e5ddca5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80b4cc0f __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81a5f2d9 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82e1f09f mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x836a90ee mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86b5eed2 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a4dc629 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dd15927 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x922f69ec mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9963a3d9 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ccac890 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2d86c42 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8e997b2 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4b6b36b mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4f8cb74 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6c95adc mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8405021 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8adcb40 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc768d54 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd7b11f6 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb303558 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4177c1c mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf46528ab mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf55efe65 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf64b1c3d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf971e766 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9b7ce82 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfda6d5ac mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfee889ea mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff52f4c1 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x17e1273e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5216f4be mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8fdaa9c4 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb53f876a deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc13e9a10 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x09a52a82 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0edbec64 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17b46c87 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x19fd6dae nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2fa72f8f nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x37383420 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x42763f76 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4df7537f nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6f139a15 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd2dae701 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe132933f nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf252b28d nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf514d2cf nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x11daef2a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x3e10cefa onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xbf5f5a5b denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x005b75db nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x04656ea9 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0759c58c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1613726a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1973da98 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a151710 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x26319e4d nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x274ffeab nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x34294632 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x345f8414 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35956cb5 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x425ed2fc nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53db013c nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5e05b955 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8d8ac575 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91c30bce nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9c842868 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb34dc939 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba7b032b nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbbefa6ed nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c83edb nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd62677ad nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe5387277 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe79e99e0 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe82169cd nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xefb5ea53 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x82554a60 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x356ac361 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x357d8657 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x03b25e5d ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b143f12 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1bd984dd ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2078b1d8 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b7ab597 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2e34a321 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f0f9696 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x52e64468 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x59a5ee84 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5c7eb646 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6ca39655 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x721110e9 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xccdc0cbb ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc54ba80 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x22273b9f arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8c092a7d devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x018b035b c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x221bce36 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x259c36e1 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbb363d0e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd56a9cc3 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe7f368f2 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x029373a5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x07ff14a5 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x16db91a2 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1e8515f8 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x012b5da5 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1405235c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x163103e3 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a808c81 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29dc9d70 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x34615144 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x387cf5aa can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a9bd477 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4898975a register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x48c4a422 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b706229 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bb179c7 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70ccf4f3 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x76b2e332 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7e2c2579 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86cd1c43 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8809cd29 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88809725 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91a60ceb open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x974cace3 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa62c84ad alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa77b46a1 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3ba163d free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd92641f4 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe069152f can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8d89970 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x162a9b30 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2043ab80 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x22418d48 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x497c9917 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x72cb4557 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x813cccc7 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaa1c4695 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc7f3588a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e9e55d8 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4fdb5403 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x80b66111 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9c0da594 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x334cf49b lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0e93e40e ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ed3045c ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x145531f1 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2c112e4e ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x341a664f ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3854f03e ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x40080125 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x41b3f26f ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6bfd2449 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c1f7d80 ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x774c06a7 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x872090b0 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa4d231a8 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd81bfab5 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd90d85b9 ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe42d165d ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xed175c64 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x03c8a30e rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x043ff5de rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1d8920f2 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2953b8d5 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x38dba744 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3b66d74a rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4728ee4c rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6184ce7a rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x727386ae rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7c9e38fb realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x99296212 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb1b368e9 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe0b3e6e7 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7a4c1b4 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf605856e rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf745b8b6 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x000e1d7b mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01f3d71b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07529b25 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089822b9 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4b71ae mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a8a1de3 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b580dec mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bc1a18a mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c485d35 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cc4fcca mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fa0b5c3 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a43169 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12e79da2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12edaf75 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f2695b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13be3245 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1543cc7a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17284a3d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c237990 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e17c35d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3a20e1 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fdd7471 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x225800d9 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2265aaf6 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22c89691 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24f8bd67 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25bb38d9 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27c047e2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1ec598 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c558ae8 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ed340ef mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f7ec7e9 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x304a5d81 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36558f39 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369d5514 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39ba2267 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39e2905c __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c41c16b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f5cdee7 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fae3ca4 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4029e930 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c78cd1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4558d6f3 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x495fd096 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51131a7c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52cb22de mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578a8ade mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5852e92a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a79a53c mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ad56a73 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4fa579 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e5a5abe mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f88bbf6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x619f96a9 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6210ddf7 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65aa09b1 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65b7d1de mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b3ac654 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6be93b95 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d3f4dda mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6efefae7 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x707ff3ef mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x729cd1f4 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x750ea3f5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ae962f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d11036a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f1bba2e mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b80125 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86fb59dd mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x880ed545 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88533765 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be67f2e mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da29297 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8deb2eb6 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f488e81 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x902fa506 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94a38f32 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9502a8f7 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99b29c6d mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a5b69db mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9a3ff5 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d51fc7d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dba5db8 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14294cb __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82d4c0b mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeaa51c4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb395eca7 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3b2ed4d mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb49d7e92 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb26b0cc mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb77239c mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd921abd mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15bea45 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4081e3d mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4328158 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7cd7e96 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc92c5752 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9dd2b70 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7f7562 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd084fea mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfc0c0fb mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd183b115 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a34a2c mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b89697 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd55ff9a5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd78b439b mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda7b26ee mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf17acaa mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfd737a0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe067eca4 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2bc63a4 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2fb11ff mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe49e2bb8 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a4b4a7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe66e9a61 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72fefd5 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedcaa92d mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9314f6 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf02180f0 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2bc4fdb mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4e03270 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa384ec6 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa52a603 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa78a99c mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce119b1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeeb71e8 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0203960c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x046b222b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ed7ed3 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e51d80 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0934a82b mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09addee1 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c06c2ba mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b0a4a2 mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16432414 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a34ef40 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a992f1f mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22e95b43 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23da77ad mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x280df4a8 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b2bde6b mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fb146cf mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30365d48 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3141f17d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33023f7e mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34051f96 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a80629 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3773d7a6 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38db9057 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a0909a7 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a898ab9 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4039fa16 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414197d7 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44feb81d mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a77ac8 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x494fb4a7 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499601c2 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e228549 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50bc3f64 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c39e18 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53f73daa mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b527ee mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x583fb1df mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59095026 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e476210 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x605d290e mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60b0751d mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60c934dd mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60dbf97d mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x622734c9 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68913f89 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68ba0c60 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694a7049 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718778db mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7836bd78 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c66081b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c47d42 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bcd47f4 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e03e0d1 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9192992f mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b6d38fb mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be49413 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d55a839 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa989b388 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabcda01f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad925a1a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb295ee61 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb348cb62 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5780fe mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb0e4fa mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea20399 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2173912 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4406979 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46dbe48 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc743e3ed mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc266ef9 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee12646 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5bd8fa4 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb257b62 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb825fd9 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2849a62 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe532ed84 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8907495 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe90cc841 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea1ca280 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16aaa7c mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29bcb7b mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5180556 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc42ccbb mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd6dd01 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe99ee68 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe47285d4 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x42aecf54 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x80e3332b 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 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe40f8c2a stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe815df60 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x02e48ca1 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x38caa785 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x842fa4b4 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb8a9c9e5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc40b880d stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb60fcb73 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcc953efd w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcf0efdce w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xee0534d9 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x1a47ac6b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x39e77500 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x453f995d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xac83d2a6 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc1a420e5 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc69c737e ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x18065d07 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2c307da5 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x390d0410 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa0cc849d macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd933233d net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xee004369 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1adf894d bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x294a113d bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c7b6e55 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3099bb0c bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ca50ddb bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5aeaab63 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e32f852 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80924beb bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80f9d063 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ba3cdc8 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb48ba567 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfbd1173 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc93c9578 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3e3a289 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8f524be bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9eec653 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb5b4f72 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfeb1da92 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x306c6aa4 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x09153be0 phylink_connect_phy +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2e667ea8 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x47344dad phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd7ccddb0 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x7cc1eab2 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x837fae1d tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x975cf8ef tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x9ca6e988 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xad8477fb tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xb718852a tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc96ff5b8 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xcbb7ceab tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xe8fb1987 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x09489085 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2e08cdb6 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x45f4017d usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x96a61d6e usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd858d93 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0373526a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15bdc117 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2f96694b cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x559a3aa2 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81499c99 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbfc8e4ce cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xde423605 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3ed765e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4cc7778 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x07c5c559 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7490c228 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbb8ed841 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc622be12 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdd992aeb rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfcdf3bce generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00057504 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cddfe03 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e13f938 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x113e9d71 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x196603bb usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1cbdc4a7 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e37e393 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28134e85 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2978a2a7 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2baaa184 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33d5a37b usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37d9e27a usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50574109 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56a8bc30 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65fe954f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x667e3696 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6cdb6a34 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76a571ba usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8693f8db usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e9f480d usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8ba3057 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad43a745 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xade2e090 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe221e12 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca709e0e usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf5b3861 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd16fdb9c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddfc0f1d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde7cb5d5 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee33663a usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf2ad8326 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf37fe988 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6675740 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1df95790 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x61029add vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa866b847 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xbb6b31cd vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x061c97c1 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x23462532 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x50308426 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x51c571c2 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x68c3e75b i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6c119e89 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x72c1ac0d i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x91cc4432 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x943717f3 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9f29af9b i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa9abf4e9 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad739a68 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb2f93ae3 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb88036e6 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbaf6aa67 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf781abdd i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x03958587 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x724c0766 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x747ddc33 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dc91a77 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2911ad5 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde953230 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x013bf610 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0338c889 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0bfb8fd3 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0cfefb6e iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x109ec931 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x124ce57e iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12e18ec0 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1336ac14 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19b1c0a0 iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6fe60 iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32bcf38d iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34523cb6 iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a173434 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ce725da iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d48c3e4 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45164d1b iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49f1bf28 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a6704f6 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e614876 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ea7761c iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f05e83d iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f660dbf iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55ec20ba iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a589656 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a9d01bf iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b028998 _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e7b76b0 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6425c718 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ac7eccd iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70206f87 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72a85185 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x751a7e4d __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a114d98 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a71fa4a iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7ab277a9 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81f275f4 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82ba5273 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84cec28c iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85f85e4e iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c30fcb9 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x934ee07e iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac6654bd iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xadbd9c35 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf6d9463 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafe7d2d3 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4adc0f8 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8f68e02 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb92a7255 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc06f0dfe iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1bb892a iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc9323cb8 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca39dfeb iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd83a2484 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde307798 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2f75f29 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebead834 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeddd2f3d iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6242529 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffa35b2c iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x11b76772 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2497c768 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x273f427f p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x79fd0b04 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbc569269 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc1b1896b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xce1be424 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd0136554 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe9dc7f98 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24a4097a lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x267203a9 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2e51073a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3cf82eaa lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x71a99706 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x753e33ef lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7f2d148d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8004c533 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8910b106 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8a9bd0de __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b0e4eb3 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb00236e1 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xccb1a1c8 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xce4ee328 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4cb80ed lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf9be995a lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x105d4357 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x24d3d26e lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2583a670 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4fe756a9 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7c18b17e lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xacab47ea lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe4b1e8ad lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xecf5555c lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b9850c3 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1faf16db mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2781d22c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ddcf53a mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3060744a mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x37f99eaa mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a815604 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47693180 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b00965b mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52102565 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5380d19e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8ee67714 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93e39336 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bfb9454 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1eb4a1f mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa23bb98 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc632de9 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbcb0fe4f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbcc2346f _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4c508b3 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 0xd69360fb mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfbfbf3e mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe01ad6bb mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa1b4558 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0363d737 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x098618c9 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09da0d21 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ab16643 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22b858cc mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28704c3b mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31794718 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31cefe8c mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3496403b __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ecec7e0 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe2f04e mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45789bb5 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47b22855 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x481ac787 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x533a1f11 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53881a9e mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55daad36 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x652afc5e mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x659cb64c mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6645a27e mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b54542f mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d19154f mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7418016d mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b3534b0 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b7bf3c5 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bad81f7 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fc4c959 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8978c0cb mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a8692a1 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95f7be7f mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97e6525b mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c860f22 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9da034b2 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e378a2b mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e4fd941 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fb94384 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadb4534c mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7a766e1 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8dbb4bc mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc43ebe3 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0b87bd5 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xccfcb734 mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfb654e7 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd64d2d94 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb9a96e9 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe00a41f7 mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3a2733b mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeabd69df mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebaeccc5 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0bce2ca mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2c01b05 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3c9fb19 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa8013d9 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x38473652 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x41d023e3 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54aaa5ba mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6bb1f3cd mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x988fd2dd mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe9013353 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xea4b4d73 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf88c7262 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x088da083 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x18929098 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x22a25097 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2cbaa3ec mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5b8ec89f mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd75aa9da mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf3ca299b mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1083c5d1 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x128a2e43 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17811725 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18303883 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x194c5c68 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c20ad43 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27b48046 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30577008 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x308301f9 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3829f613 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a0f13f5 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e80167d mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x403d3350 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x404a654c mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43922ce9 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44efc92c mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47c70432 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b87a152 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cb397df mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6125fad6 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x632d83f9 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63854550 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64b307be mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6545326b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6678ec4a mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x697af899 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b4f1c24 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f22167f mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x708c64e1 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74e58045 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x796351b4 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83fa8c8f mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8955acb1 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8981ce55 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a0a1a97 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e36eeec mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8fb77b3d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92a4ffbf mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92f99090 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa05b229b mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa12e62ed mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4e6a575 mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba8d155f mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4f7a2a6 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc83b3451 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc685470 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd3dad22 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcee4d250 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd22d2661 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6cd88a2 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc2cb6ab mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd17a697 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6a4e596 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb4a4dbb mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec7ebd37 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec98f76a mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4df244d mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf82a9d8d mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8a852e4 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9010f5b mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9e14b7b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc1c60e6 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe526ca1 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x212fe08d mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x235c784f mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x48102cc4 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5a2a52af mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5d3780d3 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd1dc6ff4 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xee682f9e mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x252370b0 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x38fecb55 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59b07ace mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x75aca967 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b1cda57 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8dc1cbb3 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9170f593 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9563d7f9 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9df4c155 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa464c772 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb03b1789 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2540f3c mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb7981aff mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb87d0524 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf0fc41d mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd331be9a mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf5adb31 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4a20670 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf91d18a3 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38817a19 qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x428bc012 qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5d988485 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6029ac35 qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x77e7a34e qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8e569f0f qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9113e0fe qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9d7bac4c qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xde4c8274 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x007c091e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09c98046 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17735fad rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1cbea955 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f0187b3 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c935d62 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2cb405fe rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e27f3c8 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bdf2f99 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d0120df rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4535a13f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x484083e3 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64f7cf9f rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6944aac9 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bd3f3d0 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e7df5ee rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72bdbfff rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79bacb76 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b405c97 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e8e9f6f rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ed9b29a rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83c1b258 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8cba574b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e3d80d6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92a9d45b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x934d9135 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x950766c5 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9507b6b2 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9568f08e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9915a8f4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa06c797e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa139ceb4 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0db8a15 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb757875b rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbe65b40 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0c401fe rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6829f5e rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdaeabbce rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd22c53f rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdec761d2 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1db0d07 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe66d80e5 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef63b4bd rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf332a61e rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x175df67c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x28aaa0b3 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x376bb031 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4743554f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5ac6cc24 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7639888c rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91af8c7c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9349ac70 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c251306 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9eb2f397 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa920de7d rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5202c3f rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc007d7c5 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc90a70b7 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xedd4fe05 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc235c17 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06f162e0 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a115084 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e94ef73 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12567723 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17896d26 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1eef122b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f801286 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a568054 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32203151 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33e9ab0c rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37acd221 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b06a91f rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d822df4 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4153af27 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x438167e1 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44a12cd1 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46f17f76 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f6764bd rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5698da92 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d65245f rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f9184df rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62b370ff rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ee37abc rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7201c5d1 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78f01386 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7aee87e8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83f5f39e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88392de9 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a1c428e rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa505954f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa9aa386 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad512081 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb41ceb3c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb999cec9 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc20f1be5 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6add4f8 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7d4c66b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd21c8eb0 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6221620 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbccbe0d rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf67b8a6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3f31181 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec5fe1f2 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5ecaa3a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6327869 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9f82071 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x626aad46 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7ed5c13d rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x83455c04 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd76470f7 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd9e171e3 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0f61edd2 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4f4faa1b rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6b68a3b2 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf30325e7 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x33b0f0c9 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x344e376f rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x41c8f9ad rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54bee70f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5a87d1b7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5dbfe5ad rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6620b0cd rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6a65c967 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6cca5fac rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7c7c0cbd rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ef6c1c0 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa3baada8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xab440769 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe4baf7a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xefe2a6b8 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfdf914ea rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46ce00f0 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a30c6f2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ac1ac18 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9becaf88 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x004efdc9 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e45b888 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x15a66750 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ff52021 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x277f8c4c rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c4756f6 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33d0d172 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x373dbdd5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3980aa92 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a66f40e rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c46a7e5 rtl8723be_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 0x3fb3cb6c rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40da18d2 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4970527a rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62533704 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63984b15 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69a8ce60 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1457966 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb050e1b4 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5566759 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8a1404c rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7e6046d rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe21b1c6d rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7e5e93f rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecf8d252 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03691e55 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05beda29 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14de5476 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2598fec9 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aff77e0 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cffcccc rtl_action_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 0x321b3607 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3837455b rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39b9c94c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a5285ed rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5043336c rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5aa00957 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b6e69ca rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e9b20ea rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8afc1d81 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b37068d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d651788 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92eecc44 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0582a90 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa80204d8 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb92622f7 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe45c1467 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8368821 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe83a4748 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff06f545 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x345575ae rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fa1209e rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fa26e34 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x880d930c rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x90efd3cd rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6fb29d37 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8c828d6c cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc22f17b4 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe7cf91f4 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x61cd3e96 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa3846fec wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe7762cd6 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x056b7a73 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 0x0ba3bda1 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f9c1d8c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10a1fc8d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15719bcb wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ff0850c wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a5524e0 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3610978d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38a10747 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3de92543 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4455ac97 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4da2d34b wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f8b646d wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5053d4db wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51fecb82 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54151081 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x596cc39c wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fe4548c wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66917c48 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74e5de46 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7856462d wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7983745c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cfec920 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f91245a wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8042875f wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x814962c9 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99b3314d wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa13bedb9 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9926c93 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0507b27 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb19c90e2 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeff348f wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc161df4b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7933687 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9ccb2c9 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcab45b7d wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd09b41c8 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaa3a6dc wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd6288fa wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf35c276c wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcd8bae2 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe52c15d wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffc3cc74 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xacd923d0 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xda662bac nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xfbc65c54 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x649f03b8 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x86776949 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8f9f9147 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc492fcc7 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7f118b53 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb759bf8f pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbc958597 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf3fc8aa0 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x081ce20a st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1ba4845a st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1e7f48e3 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x26dee4dd st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x48049d53 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x87efc214 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x904506ef st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb3fd0d3d st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7f656846 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb7ab35a1 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xcb41934d 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 0x9566a272 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc72a70ae ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe372fd2c 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 0x541766ac virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xfda35d14 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02cd9f34 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03ca8028 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1456d1b7 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15f31681 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1820d15f nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1961844d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e86d8ca nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26da4af8 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ae34757 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3396403d nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x460641b9 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x476fdd42 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4905fbe2 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63bfff0f nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f2f62fe nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f731d6d nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86c07107 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x907943b3 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97f20aea nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa27ec253 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4934138 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa01748c nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf37dc16 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafb4e4fd nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb815b6ab nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc8bbc6f nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf7d6308 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc26c72e2 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0788370 nvme_reset_ctrl_sync +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 0xd985701e nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc9233d7 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf145830 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe03fb9de nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe82c42b4 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea4fb7d5 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6758864 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9a694df nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc4ae6c2 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0131e8c9 nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1bdafa7e nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x20045ed2 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x235c120e nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x35b20a28 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3606a073 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5059a72d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5d301bdb nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x63798509 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbb3c9c58 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe45436fc nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf867f229 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x07d35d0f nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x68d38f41 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89f71660 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8a169fb3 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x960efe3a nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x99a52082 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa48ad16d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb3ade69b nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xccc81ed0 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1f31242 nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf5b54ccd nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfd184088 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +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 0xe18aa9a5 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 0x4a28fb37 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x476f11b2 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x556bca04 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xc479dae7 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xca630c48 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x0d971665 wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x1084affb wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x4baa2191 wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x561da2cc wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xcff569fa wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x31f61574 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x38a4272d asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x26bed403 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x79c0fdf0 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xf5d2df77 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x1dadc11e 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 0x8777dd25 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +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 0x200c2517 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x31d635a8 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6c4fff4c wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3121a5d1 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x730dc0b1 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xdc2e8f90 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2700610b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x878cb424 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf1fc44f6 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x30d58d4d rapl_add_platform_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x53a99a0e rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa6b94154 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xb3523068 rapl_remove_platform_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xbc52434c rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1eeffd82 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x376cb8ca mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe8696815 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x32c84240 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x419256eb wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4edbffe5 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x846bf5b6 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcbfdf148 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xffd81511 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x55741e9d wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x9a8cf4f0 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x059fac29 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05c4a6c2 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x192cbdaf cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x202c6c71 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21407505 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3139248b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x376483ea cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b9733fb cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c3504be cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49041287 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x490ed347 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cd6f40c cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e4e0780 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x533eae44 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f90b4eb cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60107888 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61dfdb12 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x653d88d2 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x770ffb36 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79fd33c3 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x885b4c71 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89b81b58 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ce675d5 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92cd9cf7 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99e61dba cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c374e83 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa31cd47c cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4aa432b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa54c18ce cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac820a0b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb37f400d cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc8eeeec cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc12542f6 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1e419f7 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc32e06bc cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4b821c9 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbc9786f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd79ce663 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb7c66d0 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf7960b1 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0034767 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe25c7a0f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2767ee7 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdcd8515 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x190edc03 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25379b02 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ad58350 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f556960 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3976eda5 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a8a41d3 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3df91e2a fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x796577fe fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7f450bf5 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9063ce40 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9287fc1a fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa12f8922 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 0xc92b7591 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe57998a1 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeee7a454 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf7606dc6 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x5f2c0c8f fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xce820b11 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xc34ea0a4 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0063b64a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06aa611b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cab1b5c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cd90742 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x121b6be9 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d2e1fa6 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21282e72 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x224f9d90 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23af5b0d iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ea95f17 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x305f44fe iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39815acb iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b42ac5 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42dc1f6b iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5766a038 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b44ac6 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73b2555b iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99b76ec3 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c41ad22 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e3c7117 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa056aebf iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xada45a82 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb261cfbe iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3e5052b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8f2b94c __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe5a5775 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc288c599 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2f1b2b8 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc43735a4 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8073475 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcff1d4fe __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd15ab7ae iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5f92e93 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7396d3a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8363c63 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc533325 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf92443d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee655cce iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2903f4a iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf481cac4 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf50f40b0 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff003818 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x026319b4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22d32b92 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x277cf363 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ce14240 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34ffc0a3 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66547ef1 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d9f5841 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f29152b iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9290e4ac iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a7f8678 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa12c634c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa6c2e444 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbcddf165 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc36e6c7b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0ade5f6 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdbd85437 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6592934 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01153bfc sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02626705 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2390e06c sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28c1c376 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x301890a9 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x332b25dc sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x380fc782 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38ba9df6 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52115371 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a4d383e sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6abf68ed sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75a6e8a9 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x772a039b sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fbdc3ae sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93c205a2 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x949f2969 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99bcb875 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f9009ac sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa018fc1d sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7ef0110 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae70293c sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb050ba1b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd69bcdc2 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee04ab24 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb02f4b5 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x024e0a1f iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0467aa21 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x097b958d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b32c22a iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1367b27d iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x177ca3ad iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17a7f27c iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22106c57 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2727f2c0 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bb0519f iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30694689 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a75c123 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48e11576 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51af081a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52b5e874 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56d470c8 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61445472 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62c4ddbe iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75269349 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x835aceef iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94a3130d iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f4b1249 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2f1b96e iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa780cb05 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaacafcc0 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae05aeab iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4169b5c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc8041ea iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5c18711 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc697e6f1 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd18d7ffd iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8e9a623 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9fb33bb iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb2ac3fa iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcd00a73 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdef722f2 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe52aadb7 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee892a1e iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf51076b0 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf53e6207 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e6c0ac iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x58ec1d09 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x85c86a01 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaa2f50d8 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfa12c1e6 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x42b89b5d 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 0x2d6bfd5b srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2de5b1f8 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7ef042f0 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcf9fb56e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe53231c8 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd64e742 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1155b545 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x294fb1a9 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x418ca31e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x43428980 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4d079c3e ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9ebb8cd4 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf6c30bc ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcb969cad ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd032242d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2bed18b3 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3111efd3 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x49edef05 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x55c98f44 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaad73286 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd430f713 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe77faf29 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x151c7f00 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x79a0b230 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8453c1b5 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb3520c8f siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xde1ced9a siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe9d837f5 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x013fa507 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f07a26a slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1f673326 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x270c8f6b slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cea2ca0 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x408e6243 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x57f1db6f slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x68923885 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6a71d0eb slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ce94d44 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x828366f0 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x91e726bd slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95807633 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x97a2c753 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9a067b1d slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa16545e0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa70e6a1b slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7473d5b slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab2f5de3 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb9895a83 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf2271ee slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcff96294 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd0666162 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd9d4f161 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec68e19a slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf8a1ef3b slim_read +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2f7c6f67 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x8d202ff3 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xdb650aae sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x3f56391a sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0a7fa16f spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0ecea47b spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2d19d4d8 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5e619cd4 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x83b8a141 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8a4676b2 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x01d71385 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0bf7d5f4 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x144fa868 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcd8ad9a9 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xea92b481 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x00f96c78 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0bb32a77 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3c001aa9 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d090eca spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x344afd0e spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34c10051 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c649c3d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40029a88 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4430cd78 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d20c3ac spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x507c3690 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x565bae5a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x58ae50ed spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x77b11086 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x85c00287 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa3135424 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa6f3ddad spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbde5c496 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xccad7ec8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd49e7d2d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec631840 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8c912486 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x015fbc1a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0355854d comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x06371e5f __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10addb24 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24087766 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3d26e2e1 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4acada1f comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4bca8cd5 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5786b886 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5a9de277 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5c9e2684 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6759fd6b comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6aed671e comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x76f19484 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x78494b61 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7bc30004 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7f83d3f9 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84f6bf60 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c660318 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8f15f72f comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97b52611 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ab7ba87 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9ff5b866 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0da9ae4 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6df56c1 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa7c2727f comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaa9932b0 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba04825f comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc6ec202e comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce5fc80b comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe1b1f29b comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7c13dea comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed02a4e1 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed2c8e69 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7f18385 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf9d3f3ae comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x00c254a5 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2c776f7f comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x74240ba9 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8e05e4be comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8e5f502a comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x916f05ec comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x97fc42e3 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdd53ec50 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x06e831cf comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x1041c714 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x398bf7c1 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5966f90b comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x825f7761 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x95f07ece comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xde7e5ec3 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x15721502 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1e771cfc comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2659bfa6 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4a901eea comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x56d2551c comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd13078b3 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x165b0713 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd3d85c3f amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd4c37705 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xd1d79b79 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0f998db3 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x19df1f76 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2221c150 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x28ab6a51 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x64fc1952 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6f4e2b6f comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x74db3387 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x768c3644 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9af068db comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdc8dcbc4 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe18e969c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf9c50c42 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xfa7d06d0 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x1aa72df5 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x7c7ea2b4 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x9d748bf2 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x2f13a663 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xf169b510 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xfedaa854 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x62fa5164 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0732eef2 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x18343a7e mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x22859386 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4dd50817 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ecc2b1d mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x77999a6e mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f3ace3b mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x832ac089 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95485670 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9b589deb mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb2a9c473 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb91915e7 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcd253612 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd25ae5c7 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd2d2a906 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe70a2be4 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1d6a6d04 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xafcdbd7f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x412aa0b0 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x42dc7409 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7ee4cb5c labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xcf12b9ac labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xe795b270 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x19162a42 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1fff49c7 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2655c761 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x284e96b6 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x440d44bf ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x80f73870 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8c2ca06e ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8e680546 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa64a18d4 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbca623ee ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc3074eae ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcb48b685 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd9d0f2cc ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdbce0c11 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfab2955f ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfe9c4540 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x038077df ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x38f206c2 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6497ae97 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x66beb1b6 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x69d1784a ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdc3b786d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0ba9a012 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0bb5877d comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4202c251 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5f2e4f64 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x61ed968e comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbc2101e1 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdbf27fe8 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x063e17b2 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x285b2480 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5d8cac51 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x984c312b fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0a4a45a5 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x17080391 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1f1b6a4e gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4f3da566 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6f3bd681 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x70028564 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x72a77e82 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7e8941ca gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x96de1ade gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9fc7efed gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdab00f2e gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd0eba3d gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfab67cc9 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x111161b9 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x20e1d7cb gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47be2cba gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x558bac79 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x82c6eeb1 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x940d1254 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x998ec04f gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xce650004 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdbde6cda gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde903b5a gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe1b5f87b gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe37847f6 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf6c32b28 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 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 0x944132ea 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 0xe88d2704 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5a9ec032 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x8739f026 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x2c4dda3c gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x372415e0 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x111ca89b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x18381a6d gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1ee27b3a gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3b96de61 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x60b083e9 gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x70be1233 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x73f54a25 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x82cf68d4 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8b940bed gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x94c302c4 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa33fad42 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb4218de9 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb8a62c8a gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd33a9913 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xda7acb15 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf832c22d gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfd57126a gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfefd40d6 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1220d64a most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1951479c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x24aa2ece most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x295488b7 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2accbde1 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4389fbbd most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4fa2abd9 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x68da1d27 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6b754175 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7595d3a9 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb22416df most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb76684de most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc30699ca most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xdc03e28f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x17de2132 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x19800527 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x19f3a2a3 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1dab6241 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e9a14c0 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3ebb4b8a spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41ecbda8 spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71231c2a spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8f9b0fa6 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x905f5cac spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x99f6d035 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa1c872c4 synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbab4a1a synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcba9ed14 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe402048b spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe9f9a199 spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf7450ce8 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x1d061af8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xc4b5b22c i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xe68917a4 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x04d97193 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x14c33a08 umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x275041ad umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x45c9dd22 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x62d6b5e1 umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb07aa5bf umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb9e4f849 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xfa0bfb4b umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0a608bae uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0aaa4bef uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0f450c32 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x116bd731 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x19fee2e2 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1c199ab0 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x226439cc uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2e400dd4 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x370b9906 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x464e88c2 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4ed668a2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x511c8251 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x55472392 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7052b7bc uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x799dc540 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7a1cb95d uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7e2fcf91 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8c6365ce uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8c694034 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x90d3dee7 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9226231c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x95fbda0c uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x96ff7ff7 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9cd0d7a4 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9f6ca61e uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa3f80cf2 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa86e37df uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb6a56385 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbe86544c uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc067ee99 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcd85e127 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xda13b480 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdc2d2f73 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe85d3ee2 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf3aca03e uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf3b09074 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf72fb73d uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0xd32526c8 whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x2515a9fa chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x51014c84 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6ebe83a2 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xac1925c7 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xbd26533e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd56dfe26 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xe1bf2df1 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x00ea95b5 wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x129ba4f3 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x3bdd99a9 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc0362950 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xd26bc37f wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xdb9001e3 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xea3ac927 __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x446963cd wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x4472f56d wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x483f52fa wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5027c060 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b207859 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x719e052c wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7f4b2892 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8e06c49f __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x91cd3b83 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x93b6f029 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa122401b wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa84506c6 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xc65c757c wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xd5df27f2 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x38108301 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xacf3e8e4 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xdce61bff int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x1428f032 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x2afb4ef9 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x310cae02 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x37364d88 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f5591d3 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2060c249 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x20ca0262 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x309831b1 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 0x5bc6d34f tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x82d8007a tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86f4e9b9 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9e66c0a4 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa7987809 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb363e0c9 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4746787 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4f108e0 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcf244d1c __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd18a0f81 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2febd95 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdec7db84 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdf3db22b tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf7f0131a tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x03548a24 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x39f9a89e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xebce1f1d uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x06b60543 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7a8c6a8d usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x096b8985 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4f7ced21 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7389122c ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0e8d9466 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x365da5b4 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x42696a63 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x54b9644e ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x582e984b ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8e0c2ee9 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x076346f6 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1eea8647 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x40a21345 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d704aa9 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaea333cf g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf25181b6 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0fd34944 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1aaba49d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a3c08c1 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x580358fb gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5e3d034d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78523f78 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7905c685 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 0x9be11e66 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbcb0d63d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc1027777 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc47d2462 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc5c76fa0 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4618e49 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb669a75 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfce5624e gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x09e5dfb5 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 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 0xbe9964ce gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf682320e gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4b8380a6 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x96a422af ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0a519875 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x21771d3d fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x305b0635 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43b950ed fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x45357d32 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x54488513 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5a486c8e fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64f0be8e fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x81852f8f fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x86c4da3c fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8d931fff fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb1ec3f2b fsg_show_cdrom +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 0xbb0f1644 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd40829c3 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe16f96e6 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe55d6676 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeda58c80 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x141249bb rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1befd8d4 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f9c5d9a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2412c67c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29e0bb48 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2fae1750 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33bda57f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x37e829d3 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47c00193 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x50136862 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9722f820 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1e9a313 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe445b2b9 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe71c75aa rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf3f15d67 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cee4b24 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cf6fa34 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x138e0691 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f5fb0cb usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21b6a03d usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26bfffe6 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27015fdf usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2916a611 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fa893b4 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57ca1867 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c3e48a9 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5cfa5c94 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dadd0b9 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fed2f09 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73b3ac37 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74b1381e usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e8d3293 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ebc9934 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81a712fd usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81c70c21 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86e71f50 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e180a13 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0394269 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0511e73 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb3115ece usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7909e4d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbdf6dfd4 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbffbde17 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc70801a1 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcece72a3 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee010a8d 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 0x29d59ca6 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2af93040 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x36646649 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x69114f5d gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7a188ff8 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7c68d6e2 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa3cb75b8 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb7fcea8d init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xed6abf8a empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0152b466 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x052276b4 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0852d644 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0aee1ae7 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25ce8de3 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3dac5530 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4090e0cb usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40dd4203 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41b05cbc usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x52981852 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5de8fd5a usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x698e5fc6 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6c43dc9b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e5caaab usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x780c738c usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x85898aa3 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a44a14d usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8cc49f62 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95c0bb2a usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa40c98c8 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5f5ea49 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb508129c usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6fbc197 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdad91efc usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe22c999b usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4f3ba589 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfc189c77 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x58a30da4 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f4550fe usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x66b2307c usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x69b01c98 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x84c059e6 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9b02cd75 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbe8a207a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd8d0069a usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe64036ab usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x63d492e7 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa15133ba musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbaf31625 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbd4ae14a musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x01b9fbcb usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x68a118df usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x731ded49 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc076a56a usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcd593b4e usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x5db0b17c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x476d400c usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xafa2a4df usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd041fd26 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xb2720366 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15878d03 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1cb576e2 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2afe1994 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52a871c4 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55060252 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74975366 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8426c7a6 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86653aef usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x91d1d1dc usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9bd93d9e usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1f02b15 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca98b210 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcca485c4 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcfc4760f usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd8f1d83f usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9c2de9b usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe41b3e8b usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf7a5acc9 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf995758b usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe5dd2d4 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe89e251 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x3c7e5989 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa1437365 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xef5ceeb3 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x2da53927 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/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03af0c92 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b25bf83 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d023305 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16646f54 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x259b084a typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26cbca77 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d3b17e2 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2fbba49d typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31b8a6d2 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33d1b9cd typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ef77d45 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43bc63ad typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x455cff5b typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4998ecd6 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ca305d0 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e7f066c typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c31dca5 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f494061 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x72a2fb19 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79d0c745 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x85661aca typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8c16e1f7 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93a82e43 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1b05ca4 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3ccf4fe typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc271e1fc typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd35a5f78 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf4b12c7 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1bf8d28 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9179278 typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf843ced9 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9004a66 typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0e6b7c4d ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x270a0ab3 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4ac00b82 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa5a9489a ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc69b99b5 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22ce995b usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b664040 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x35446acf usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x42102ea7 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x67dad157 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6d172ce6 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6dc44cf9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x854479c3 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb01374d6 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbfd22cc usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd58ad19d usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd84dae21 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeeab9e40 usbip_recv +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xc1710fef mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b538da2 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e6e3877 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f8e5ef7 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a99e9a4 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b8bc9e4 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e02a1cf vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20b3ead8 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x214912be vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29da4d66 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36283ca6 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a8a3db0 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56ed910e vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a97a7e0 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5db66f45 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e670fe6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fc7c30c vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x730f2d5a vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76280036 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7821eb3f vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x818bc234 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8874936e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8acdeb30 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8beb530c vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x900cb4c3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9829ce2e vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fe26da8 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0e39afe vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaeab9a44 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb14da08d vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb77a432c vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcf03bd4 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe47d62b vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3e22297 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8cf4cf3 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1433b60 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9ea3b79 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2c0dac8 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4195e6c vhost_add_used_n +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 0x1714e6b2 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x20f8b1e8 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x48f7841f ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x53ac953a ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x614b4d47 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x997cfa65 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe7b79964 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x3f76ab96 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x1be26a26 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6652062a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2c1782b9 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xaaf09a62 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x7b8e637e viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x014d5d77 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x14c1e0a2 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x230a5e2f visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x6aadaa4d visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x9a486dbf visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xf85183eb visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0f609c0e w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23eaa42b w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x392bd85b w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x39bcf366 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x42d219bd w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x68e7b2bf w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f20a5a5 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7828bb7e w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc089aa6b w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd12baabd w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea6c2149 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x025fae1a xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2f2ae98e xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5a9568f7 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa4ad73c3 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbc3b92a6 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4354de35 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4870dc8c xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4342a9c6 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6fc44d85 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe15f5456 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3ca156d4 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4b403d80 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x951410a1 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x98677f63 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa8b91aca nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf797170 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcd438848 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04dcba12 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07884474 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4a1e29 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c6b33b1 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d67392f nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fadd0ed nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1199edfa nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13f0ccfa nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ad9ce25 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cba588e nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e089f5c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ee7a9b8 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20aaa1d4 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x227174d1 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24781e7a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2831abf8 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8e2ef2 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3509795d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351777a7 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x351d599d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x376effa4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384b767b nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38df52d7 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d6ca283 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e5d8013 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x414aa025 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x426032fe nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43340e67 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453b6589 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aef3b01 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd52fbb nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f6a396f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52f5728d nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c04034 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x542c7cc3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5728a15d nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59c185b0 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f4409d5 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60604cf8 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61f7863b nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6211431d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65b1ade9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66c9329b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68735ace nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69779441 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a2521b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69ca54ca nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b63f539 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c53c5f9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc7d0d9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d40f3a2 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e6703ed nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f0919da nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f7ac516 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x713fc978 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71db39ac nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73bcce7a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x772126c8 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x788e0dfb nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79e0cdf7 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7f2fdc nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b89a783 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ccd89f1 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ffed9f5 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x834d12d2 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8545ebec nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89332f35 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ba98f4e nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c0a128e nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e164414 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f25d88d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98504e61 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x989cd4c6 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a72cd2f nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aa54fc1 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b0f8f85 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cda4109 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d2f5fdd nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa046b3a3 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ae25e4 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa305b9de nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3ff82cc alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5178f24 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa699c01b nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7c8aa36 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +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 0xac756d23 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeb703b5 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3af3d7 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb78b84e nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcaa2b68 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcbedc97 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd26e320 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef78236 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01d5652 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01f90d4 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01ffb88 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc088374b nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2234b8c nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3661037 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6f6d310 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc75c1612 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbcdd6fa nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc0776b3 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf11fe17 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf30b647 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0168f5e nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e6acbc nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85e1466 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda03dc53 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd75c3d1 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe3e2f0 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe24a4642 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe335d51f nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe404287b nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9444164 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9a37306 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebf76939 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefdde63d nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1acd25e nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30858f0 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7860d84 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf806545b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf967d134 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa879d94 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3382a5 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd36f70a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd9f35b5 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb567f1 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe9d3c29 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x441ee33e nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0188ed33 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02c6248d pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0402c76b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x046f3fef nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x068140c3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x079718b2 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a15080c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c872470 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e178bde pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12ca7b1d pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x142ef0dd nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163af8bd nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d840616 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f1515f2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2142c079 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23e1479d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24c1c72c nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25e18f13 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25ec5504 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fd304c0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x351979f3 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e23f795 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x421ab59a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4230938b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44a505a8 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49e0da0e pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ebe0f43 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ee29234 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x615ce0cc nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64fae879 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6554f78b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67fd914a pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bc6bbaa pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d260d68 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f009af8 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70e2c0c1 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a08494f pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x928e2cf1 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9965024e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x998849c8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f57a1e0 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0633dac pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa843a84b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab82bb4f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0cba8f5 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb39cf238 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb72d0d53 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbba3ed11 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7f872c3 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfedf51b nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd580b068 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6d9ef4 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6be7e3e pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebfdb63e nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2766e61 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2c7d824 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3c0bbd5 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf714e2b7 pnfs_generic_sync +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 0xfbcb4e2c pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x23b55362 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x83cd29c8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc843290d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x02fc355e nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x25a0e7f0 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x01dafe55 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0260cc05 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x02bab669 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0e8c7a85 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x6608526e o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x90b21373 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd020b6bb o2nm_node_put +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/dlm/ocfs2_dlm 0x264848c7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x362d42f8 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3867274f dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7b2591b 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 0xdef54126 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe03ff9c5 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x113ad791 ocfs2_stack_glue_register +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 0x9fa038f1 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa73e3f57 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xca78a297 ocfs2_kset +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 kernel/torture 0x06ce425f _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xa1b99f9a torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf1a967da _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch +EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x152502da notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x844d6369 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xaa47fe2d lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xda4f0045 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1b79b204 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2cf15fa0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x4c16b429 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x74383c2c garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xab179d39 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xbab14911 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x093f292a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x24694470 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3ac13bc6 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x55e899ee mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc9095ee6 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xdc04cf8a mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x38b70268 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x4c0e1db8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x436aba63 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x542d37cb 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 0x2a11f140 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 0x1d884028 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x22dc7bb1 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3879aacd l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8d1ad34d l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa01ff29f l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc90e8e32 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf89f6ec5 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfefbd791 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x20e35895 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0161f725 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0513eb3f br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e81f927 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a28e198 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5c4e70c3 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cb880e2 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d6a7171 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e74eb1e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74f4af49 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x898647f5 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb98507e7 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xca6ad58f br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf2a1f70 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4392fa8 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3b94881 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2b830fe br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6b00360 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff0eb593 br_forward_finish +EXPORT_SYMBOL_GPL net/core/failover 0x37a7d09d failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x4ae8cc45 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x5a03090a failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b163da1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x110f30ea dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f97f3d0 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2485d23a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27a1492d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2edf0f2c dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2edfff25 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x32a26e90 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33810749 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3800a2c6 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39acb4a8 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f2770bb dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e3c8073 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65cc2eec dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6df6e01d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x791e710a dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cf068c5 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86b2e029 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a6624e7 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eb0210b dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7d332ca dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8a6f43a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad7de892 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8283251 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2239b80 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1351f88 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd98b32de dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2d5f543 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe305ded8 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee05a71d dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf098e491 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5bfcda6 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe4ccbe5 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5894a58a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x73c0048e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7c2893c2 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xad88bfa1 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbce00eb7 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe7584f83 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03ffd2af dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e1b5a63 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x138924c1 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1efc9455 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35a48c12 dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41de920c dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46140179 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x465187ba dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60179a35 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62e7c83d dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f4942d7 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x759aedaf dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79b0833c dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x870e8a86 dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8a71d10e dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97ef148e dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa1c8836b call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa39b743a dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0ee50e0 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7d44187 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcffa9d1e dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x2496fe14 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x2bb3b0ac dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x955ee557 dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xc43a3fd7 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x158d0931 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1fa5b742 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc44c91ba ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfb473ed0 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x1ac2e151 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/ife/ife 0xeeeee786 ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x20152e2b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x417fb485 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfc09217f esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x509b4f7e gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xde9a9871 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x082ac7cf inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0de7fd69 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0f612cb5 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20685fec inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x35533b21 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x68b75a07 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x78f4bf02 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x873d84d4 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc81ae816 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe0826da8 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02a2e056 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c9f8277 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42954ec8 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44b99830 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59ab4ae3 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63e45bbd __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x807af3dc ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83f8ef38 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9455f00a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xacc2f87a ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb95b3862 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc2acbfa1 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc90764b ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd41a619 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe6275af3 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe82f8373 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1329dd37 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x081984ad ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7ad9fc12 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x42ff8e15 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2de0c52f nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3681ee52 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7bbe9965 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb8227656 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc5d7a82c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x6dde6a18 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x587da13c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6e4aa6b5 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9d5a381a nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6093ed4f nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbb4febd5 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x966a6aa8 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa79574fc tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe777e9b2 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe8e3e04e tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xebda5eac tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x48ae142a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5139e8de udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc5a48b07 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd38a7541 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdd509afc udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xebc4dd48 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf6af8b2c udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xff26a376 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x05425506 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x22a914e7 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb7e3bb13 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x19f13572 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2109ad17 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x900013b5 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc7c2e513 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe27d784d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x12a67271 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x32b17866 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x828f5d33 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd7612fdc nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1632bd10 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4fd15046 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5840e457 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb8f05160 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdbdf9cda nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xeab9cb71 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x006efe18 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x79028b40 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa6d60545 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x291a5e58 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe9328817 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17a6af1d l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x181a7777 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d2d3073 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21ef8951 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31dbca42 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3329317f l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ec12429 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4f1516bb l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50a78d85 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60116a10 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e7691d0 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x886d3883 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a7f1654 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa0dedb34 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xacd200b0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc295782d l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2d41401 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9e5fc368 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4efa2df8 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63d89e9e wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65ea95dc ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6f9ade33 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72235672 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75501f37 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x912ef229 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95d4d114 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa325496f ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4b6149d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc421a4f3 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc48328b6 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9bab209 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea53a21e ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf66475dc ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbd1294f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2521815e nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e01c1d2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x60b2abcf mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7eb92605 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdc17c1b6 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x020c1f8c ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03b1460e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a226168 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19781a6d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25a2bb2f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33ff1297 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4312a819 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d5f4d03 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 0x93e9f865 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 0xa7bda55c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa3067ab ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac7f1d44 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb97c23ab ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9eafaf7 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd49cfe5d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf14c58c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe88c54c2 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfda9c4e9 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x356ec4bf ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x481b3430 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x917fc705 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb8b64450 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2e1b13c6 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x305e9363 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x715d378d nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7290a497 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbdcd222c nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x026bfc3b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04741e07 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x095d59b8 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c700a7f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cccd1f5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d040419 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0da785ad __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dee35e9 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e4dc202 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ef1cc66 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14a89df7 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x163cc3f4 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b453120 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fce0056 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2305ce58 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x269083e5 nf_ct_helper_log +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 0x290469a2 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29cf8843 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2aa32ffc nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c90f7af nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30b73059 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x354415b1 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37ae609d nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38f0e96b nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c856c70 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d54f0e0 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x428c4a88 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4adf8f18 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cc3951e nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ec6ffaf nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5017f2d4 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59a26580 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e105252 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e3b2d8c nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6231cd97 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x648b5876 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c962fa8 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f35e4c3 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8a8e49 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fbc9e05 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x703337b0 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73d0e527 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x744d1f1f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74882520 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78960632 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dc81e43 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86e0a551 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dbfbbd4 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6fb259 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93c2c75f nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96fe74f4 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9846672b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a9df75d nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ca5a665 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f65f846 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa055c85a nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa40dd34e nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5615b8a nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa83629e4 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9f8b6ea nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadd2f23c nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6a16366 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd52d151 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd70433b nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc233c379 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4f7d0ed nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc533e5a nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf9f4b11 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd58dd94a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdad4a324 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb884d15 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd460895 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1024e3a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe18b52fd nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe614eb53 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe95a12b6 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb8f9a9f nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0e0e7d6 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc236929 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd9cd020 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff4c80bd nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x203c17d0 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe09c3539 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x200f3801 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x036cceb5 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b2f5867 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x33978ef1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x374bb3c3 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4dccf2f1 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x547d4f58 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5a643138 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x660881d3 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4094145 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8221b4c nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8648c3f8 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x79148711 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8ed419fa nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc4a71ec0 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe57fa49a nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0543ce93 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0763dafa ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0889370e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09ce40f3 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1bee20f1 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4c89d862 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x578fc3ad ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xff4dc808 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0b1f74b9 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9073355e nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xde302590 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xec89c5c3 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2a2a5ff3 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64f2c8ca flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87c58fd3 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9b533cd5 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaa5f9e6a nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb327e72d nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb86f4700 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc79e96af flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd84b8a9b nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf295608 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeaca6ab3 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf7f86590 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x529bce24 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x91479570 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbe6fa8de nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe5551000 nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xef4ba93a nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfc45dd18 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x408a7d4e nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x42ef07ea nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58b02d98 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58d54a3a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a220c6d nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x706aa70b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x763786e9 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x88eb1b6d nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9347078b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa861dbda nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc123c4e1 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc6402f5f nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd0d9604b 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 0xdaf15fba nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe54eb380 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff42f905 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x07af446f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x42ab29f3 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46cf7db2 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b2a585a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x831a8a13 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbe19ab06 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd0e9229f synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe80539b2 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe865a535 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xec616df3 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf0087f1b ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17eb585b nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1904a1b8 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a8f3139 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22a3cf0c nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29ac310e nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e92144c nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2efb5329 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x332893ff nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40bc6a5e nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5935447a nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59a45f71 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59d624fe nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c59752a nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66916e2d nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70aa917f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88a0b1f4 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c09c622 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e30dc8d nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x976c34f6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e862558 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3737278 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa79e9f92 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9a7b1f5 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb41634b2 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb591e5b7 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd4110a3 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc825cafa nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcce438ac nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0ae784d nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf26e820 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe079cf9c nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe750e4c0 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8005357 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8f57eea nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf92a3e05 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0fb35c60 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71dfea31 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x91fa122e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb22b1316 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd17290a2 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe54a6ce4 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2f61e6ee nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x77b4af1e nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc409b29a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x26717ab3 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x93ef1a01 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x89ef7e03 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb7aba735 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd97b7df8 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xddc8ad72 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0044ec20 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0dcc5a5d nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf5142c0d nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13df8d71 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17086975 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d6104f2 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c43be3d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ecd8da8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a1b0f7f xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dc40dd7 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63e06b1b xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6872708a xt_compat_match_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 0x81ff2103 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e5d02ef xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93c47eff xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d14654b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9fac3fa6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb753740d xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc321c83 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbdf57c32 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe634eb0 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc07a42b5 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd14ec789 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3583a15 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xddd8d577 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf42c7cb2 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd59b5113 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdaafacee nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf1ef586d nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1f87ccd1 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5d82bd5a nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6e8acc36 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x8082e7a5 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xb6371b11 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0ce8c9fe ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x34019e30 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x56e3fa2d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6b92f6b8 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcd514706 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef36b393 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x1d615527 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x340ab622 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x4a4a65c0 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x5df16e86 psample_sample_packet +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x03b75245 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x07878d4f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x07c1fd10 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2176e5f1 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x237946cc rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2546b026 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x25f8ad4f rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31078c8f rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x39a1f993 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3e9ddcca 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 0x5cd5970c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6459eb2b rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x66178fbf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7dcb2dd9 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x97efdd9d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa8c168ae rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa8c7e3ff rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb125c3c9 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xbe01c17a rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcb6681b0 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xd3c20eba rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd57be212 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd69c5496 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xdef6e3c7 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe4b3da8e rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe6e98341 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xf8f435f3 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xff7f1000 rds_send_ping +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x00a8102c sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x29f3aa0a sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9ae9403d sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbc6feb6f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x377fe2c2 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x498cd6a6 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5f1b2961 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7e3a84ef smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x9d21cd65 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xababe755 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xb32dd8f7 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc8b1ce88 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xd5c7d3b0 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf4b04df2 smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3658e1df 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 0x60ed48ac gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc49817fe gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe2d32712 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0101b5a7 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0169cc90 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01add7f1 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c30965 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0274f50c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031656a0 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0424c678 rpc_proc_unregister +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 0x0680d376 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07afb83f rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08230848 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a0e1c76 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e66c40a xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e6c738f xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f37716c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc73763 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107f5d90 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1183c7f4 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e8e4a5 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c9ec36 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154c28a5 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19603fda rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a653d63 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ace317f rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3d32b4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x201b2786 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21686534 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2183e82f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21cba593 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22bddc9f xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239e4a77 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c78e34 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23d21523 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26790233 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d13954 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e61a79 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273f6660 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2813ebc9 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288d155a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f9735e svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac20c87 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af82812 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d11c49b rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3008a73f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30cd182c rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ce83b3 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x333154af xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e3f074 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e16414 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a5e7fa rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c6a27f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b9e17b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bb548d8 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bfeb3e1 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce92c28 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f807535 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407017ff rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c2d121 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44dbb423 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46039af3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47122c66 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b42d44 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5f9e5b xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdafc7d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c559566 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c9b696a rpcauth_wrap_req_encode +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 0x4fbe7e6a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f67ee0 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51446f01 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5171f838 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ead009 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521438f5 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527c3c39 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53531b44 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589eca34 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59428446 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f7bb93 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b048798 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bafcc59 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd3c3b0 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d32594a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d62c982 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8f0dbf xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ddceb7f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef52237 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0907fb rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f269749 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2b892f svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fccef40 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60cc3b4e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6265b0b5 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x627cc1ff xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d058a3 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646db2fb svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6557766c svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ef60b8 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664e9335 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67eed5d1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c93182 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69358b1c xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69da6129 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c446670 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5fa593 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cadfc24 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e98bc61 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f15c98b xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f4e07f8 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb45c84 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x700da10d svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7037f8da xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70adb20f xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711b902f rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ebca1a auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721735da svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7229e2bf xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b9c956 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a785a7 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ad88f2 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a16ed2 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f38b00 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79943101 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab043e7 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b0157d1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ca4bf91 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f056e46 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82829eaa svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82e07a71 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x850a5f4e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859d20b6 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8778dd5c xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b996b82 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f05840d xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a493a6 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91393554 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x922aba04 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93fc46fb xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94fc6cbc rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94fd1092 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d18294 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1dab83 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac60ef9 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c7f3931 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c88299e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dcc1866 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f9453f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa25238a1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa358f6b8 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43cda52 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65258c0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ce5c93 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7f14139 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac13492d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac6d3a67 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8e1ef5 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6c3853 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf71daee svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafbc89fe rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18bcaa1 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb19d2d19 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1cc18eb svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb640899f rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a66eca rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb77c068e rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8557c85 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5960b3 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfe2b9a7 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23cdd02 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ca25d8 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc33b43d1 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e578b1 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc50e05c4 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b3fdf5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5be3839 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc63819a6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8398718 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8fd86c8 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b0743b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9fe3a16 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc79194b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0dda85 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6a989f svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15e33e9 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd170c31a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2df6802 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd61418de sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ce191f svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9aee514 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3a6b6d xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdae3a0d7 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddad31c0 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde300b8 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddf62315 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde2b5b1a rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8b1545 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8fee33 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ac2e83 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1efa93f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26a6d15 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f53f2e svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e74b77 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e937fd svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5fcf568 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6db618a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b8e4bc xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea6b63ad svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8a5e28 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaca1cab xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec089a7d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec0e5f5a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed635140 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed994f8f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede818d9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee3f400 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03452c0 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1238370 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf12a378c rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2e4f95f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7cefb79 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8469ae2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9990eb0 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe12b94d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7f08e1 svc_auth_register +EXPORT_SYMBOL_GPL net/tls/tls 0x0fb2d74a tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x476b6987 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 0x12671cea virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12d8922c virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1371d103 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x145fad52 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15b90b5c virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c21dc6b virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f9eb615 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2109ab15 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2413f4e0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d01dd7e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x312c3f36 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f2e809a virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ff1cd95 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x409f8975 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x620600ba virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e3c59d8 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f53e5cd virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x712d7a17 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7653bbc8 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fcfd661 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8488a178 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7a291a8 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5938c36 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8f0dc0c virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbdd9129c virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbed5423f virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3709d78 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc57d02a1 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc97533d9 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcec0322c virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd13837f9 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde81870f virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe564441c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1a77eb2 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa320c26 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfafb3e18 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c5f63d7 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c9fae0d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26474974 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x367824f7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43f7c81b vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7285ba9a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b000f54 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c1e6dd6 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x846d889b vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x88ced3bf vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x957aadd2 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca77a59a vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda8f0763 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6b6659f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7c20858 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf82cc71b __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9a491cc vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe41aaba vsock_remove_sock +EXPORT_SYMBOL_GPL net/wimax/wimax 0x21dda34f wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x39da3ac4 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4c06f99e wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x69ea064b wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6deaee96 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7ef3d479 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa707e1bc wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb1c19016 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd3e6ffa7 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd6e1b560 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd73e99db wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe04bda01 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe321d79e wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08a6550f cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1dad76f4 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e63dd86 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c5c0fd5 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3c870f44 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ce6ddb8 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7e963af4 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d45df59 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa990531c cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaf283b92 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xafb4ab5c cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf6ce0a3 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe38f6154 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xebf233e5 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xedc0f3d8 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfa95c281 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x30e15de1 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2b49def ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcbfe9b41 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd12897e2 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x4cda16ba 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 0x0b465e77 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x23a70a63 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL sound/core/snd 0x47c04ba2 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x6c62351b snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x7a89a191 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x7f78a0c8 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x885d57c8 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x94eec1f3 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x9980e0bf snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xa2f1ffe6 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xa69e73a0 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xb78ce95e snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x17bc71e6 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x94cd62c2 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x9f038dba snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xfdac5097 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x026faea1 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x03fd30ee snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x060cf2dd snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x19de4b84 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x22041219 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x239b3b61 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2e690fec snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4d9de050 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x609e723d snd_pcm_stop_xrun +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 0xa41b46f1 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x204b1aaa snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2deed5fa snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4284de63 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x75324c80 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x761d05c7 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7b6302dd snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb129c486 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb71b0b51 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd11942ea snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd120f353 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfcda2ff7 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7b129158 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x85858a26 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x42c56ae7 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5849eef5 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x628d9713 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c1f39fa amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7a6c435c amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x82f853ec amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa068f786 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07190c7c snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b0fc54e snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18651c2c snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d3dc1c5 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x20b69748 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2883c398 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b6af641 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33a95b63 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x365760a3 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38280fd2 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f6a6248 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x41f6c722 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x437ae71f snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43e3033a snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46009c33 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47136877 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5fe36565 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6809649d snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x68bfb70b snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8802a7c7 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x92503ed1 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9529cdca snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x95ed59bb snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x960b9860 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x97aca685 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f3461e6 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa86fcdd snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xafdad7fa snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc9d518c5 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb80a3ff snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcbed9db9 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd624749a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7898f4c snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1bd301e snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeba0b14d snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf19ed673 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4ad6ee5 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xff1c66d4 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04cc477b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x071e3da7 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ae0d6a5 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b9a060f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11b5e1b2 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x140431b2 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ca0968 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ad3baa2 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b250a8b snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ce7afeb snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d61c3c7 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e647f1d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20d669de snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22884204 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c2de9de snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c317398 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x319f4763 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x367ab950 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43f7f704 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46c7aa7e snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x486c5a82 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cff5a85 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x517e3a21 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x533f5f41 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56687088 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x568c562d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x586d063b snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a9aa5b1 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad4c7e8 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f3c7f25 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x610e8a1b snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x619a59b2 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x648838e5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7534a214 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76ec21f1 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c1b85c8 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x819dcbbd snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81eb6962 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x883f313b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89cef92c snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b3626ac snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bf1cec3 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8eacbe05 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fed62c9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ec8f8f snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x964c3c47 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9739ccb1 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x974f5a1a snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bde4e78 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2a7b662 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2b36ca8 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8696296 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa977cd15 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab3ed073 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadf40958 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafa418ca snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb84a3abc snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdda7556 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc08b4252 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4969a7a snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4badc69 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5194ff9 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc94d270c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd016d50 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf51fb94 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd195e248 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd29e312b snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4e96b85 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd823c889 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd99585ad snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda1bb716 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe2ad11 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec20f1d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xded61128 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0bfa289 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3a0f64d snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec2dd7a1 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed8d6dd9 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef456a27 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf32304a0 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf69f96fa snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf81f0f98 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9598d58 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9c42198 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x054bbcce snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x479793ea intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa8a6c184 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x29f74c5d snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d5155f3 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x43d28196 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5a1ef031 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7b06c9f0 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x90d4fa7e snd_ak4113_reg_write +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 0x088b041c snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a4c5da8 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aa58516 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0af468a0 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b63f03c azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bb5df87 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dd9dbe2 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11e4a16d azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1316bff4 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a15cc9d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d0b8dcb snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d3e804c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e2840da snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23c20904 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23f06cfa hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x248d0ed5 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25a55027 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28875251 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29cf8fe1 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2adadcb7 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ae01d70 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e02a1ba snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33ebacc7 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37bc9725 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39305506 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3befb74b snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d32502c snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ed54b93 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f6d62ec snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4483ab98 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45cc753f azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x476fb2b5 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48a4147b snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x499c9b4f snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b5be1a0 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bf86762 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dcdb74e snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0b1fce snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f14c63b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ff8a140 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50557069 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53641a5a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5490dbb0 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54db9813 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5607569a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b3b7b81 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5de35e3e hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eee8b44 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62296528 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x662c47ee snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b57dc8 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66ff1356 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67cd268a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68e71c79 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d70f25 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0c2e0f snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bedf3e2 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c9e749a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f98c6b3 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70839c93 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d8fd65 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73ebb64a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74fb194b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x768401ba snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b0a85f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x795f03c7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cbd94c7 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83d0bbbf snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83e7ec10 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b7bd070 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bb60636 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c69f444 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d008486 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x903bbfb4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b7cea7 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97118820 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b8ffd99 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c15d589 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa06a6d02 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1127ead snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa30abd7b snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3b931d7 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3ecc85f snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4a73c8d snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa54a8b07 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9d76997 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab9537ce _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad70b445 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0e678c0 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1508b70 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb395d7c7 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4395871 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5f6fcc2 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75f41d5 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbad6a667 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbec3cfe snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4565227 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce2eaa97 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf8b5d0a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd19fffca snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd311210d snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4607c48 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6daf611 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8d3af9e snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8daca3a snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd980a211 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb7be3f2 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3b0b3a 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 0xe27d657c snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2894153 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe85582e1 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe86d5d6b snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed831aac snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2d32404 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3896a95 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b8649a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf41b1284 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf54593fd snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd911eba snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe65b614 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfeb01a84 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b303d2e snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e9dc504 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21f624d9 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22d78ae6 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2835a61b snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d004e81 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c505ccd snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63045f31 snd_hda_gen_add_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69da7826 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7266ef7f snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ff5afce snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x86767df4 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cb72623 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e31afd0 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9e36700 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd55ddb4b snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8311453 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe33460b3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe38a120c snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3bdecbf snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3ced53f snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe44ccad2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x901a700f adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xa0961ada adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x056c02c0 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1782d75d adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x30c37d48 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x371bc634 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3f6a1eea adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9ca1ac54 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa745a0ad adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb9fba0e3 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfe42c576 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfe7491ad adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1f994816 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x233f11f8 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1746174b cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3596bd18 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3c914f4a cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x49a6e669 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x95f06e4d cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x07215628 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x30516908 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-cs42xx8 0xdd702b3c cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x5ad1c9c9 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x94a3b226 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa4a8647d da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0b642756 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2b6c2cd9 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xbd81d56d snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x670f205c hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xa9567a73 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x75e75ed2 hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xadcec881 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3d8710f1 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x98e0578c mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xadc5fc93 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb17831f3 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x88a7a481 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x0ccfc8de nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x41f60971 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6088de01 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xda32dce6 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x51c09b88 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xdd8270ce pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x528e9c9c pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8c0b9181 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x82f44cb0 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xaddddf41 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb348dc5e pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdc18a39e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3893ba35 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xab9c01da pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb8f3958c pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfdab3401 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xe6005966 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x75d42f28 rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0f62dff3 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x740ca8df rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x89b07b54 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf0e43798 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7a8fda16 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x35e442d7 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbafa2ddc rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xcc91964b rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf0dc3866 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xa31870e8 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x855e3bb7 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x98bda6d8 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0357cc7a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9c8ab67e devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc49d3808 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcce4f9d1 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe765a555 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x9f1d1f71 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xb6d3c92c devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x58613721 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xec89c30c ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6f15de9b aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7109530b ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0c98e753 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1baf52f9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd74cd506 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf3bbef6b wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1f3b7d8c wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5999f357 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2b7a3751 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x793cc151 fsl_asrc_get_dma_channel +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 0x009688a0 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0263709c asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x24a8663f asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x46586630 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6ac43b30 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78238053 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x84d5377a asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8b567635 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9a7cb95d asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9e63a644 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9f284bcc asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xae59cebf asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbf9f2052 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc15c0633 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9d35e84 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcabf4382 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcccb3d32 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff014348 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xe1f3c929 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xeaacb37b sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x390245a6 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3cc21f04 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 0x73f4ba34 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9c65ebed sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb2376e22 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x00899c7d snd_soc_acpi_intel_baytrail_legacy_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x08c27da9 snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a6c545b snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x210ac95b snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4c028d30 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ea3c4ed snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x52195614 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x59a53c32 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a93176c snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6038550d snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8b43f2f0 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x98f106aa snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9c3d1561 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xcbb222b3 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd5af17b7 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe7826509 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0d6efcee sst_dsp_ipc_msg_tx +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 0x257c2ce9 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2a8f2d10 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3bdb45b7 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x44245efa sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x45341c8d sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4a1c11e0 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5fa6c21d sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63e26f24 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6debfaab sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x723d935f sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72c1c214 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e454a9c sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7fd84859 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8f9bc594 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x939ea5be sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x998c5505 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8179e34 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb67e0c82 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb958df3b sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb919758 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbefb6dde sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbfe27cd7 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcf66bd21 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd05b154c sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd49d73e5 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd4af532b sst_dsp_shim_update_bits_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 0xe34287f4 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xeacc7ea2 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xff115db1 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x02624099 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x08845295 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x0b05daa8 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x1c970977 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x22986393 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x3ba4cc60 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4c5f937a sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x55f020e0 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x5ae8b49f sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x690be056 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x71e3d806 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7bbe9bf6 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8efb5001 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x960ae20d sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9f2f1732 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xacf13191 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xad72cb0a sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb70a4da8 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb7816b04 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb817c234 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb89ba8aa sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xbd43a911 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xc4b94ea6 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd0750581 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xdbbd35b5 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xdc814950 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xec97acb4 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf5f00314 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xfa4fd8a5 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xff676c7e sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x01abfbf1 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x173f21e3 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x37831ae1 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4d0527b1 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x62f11b2a sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x96b860c4 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9ab31d5d sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf6fd53a3 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x723bbfba sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb40ff91f sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xf2817ac9 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012d83e9 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01ffea67 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0231ad3a snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02b6a354 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0358bba5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0634c0ba snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b27179a snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c061d83 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11c2240a snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12c075e8 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x133f07c6 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x144ac67d snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1480922e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19cf6013 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19e20619 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1acb2a8f snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc3af91 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bec641c snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bedc074 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23085bc2 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24268901 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25614d76 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e7a0b1 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a556daf snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a9b7c3c snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b2e7407 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ca7b00c snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cdb9330 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d3857ad snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d9290ff snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fa4e85d snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3029b25e snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3087f35d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30bf9827 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32d3404d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32fe22dd snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34193d9b dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x359012f0 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37b5d088 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37eb16ee snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3841f99b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39b01194 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39f6252e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a0b8b7f null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a616981 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a89d501 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6d51f2 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8271ea snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4159bd4c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x464044c4 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47b98f97 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab1761e snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b05061c snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51301351 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5140ab6d snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x529429dc snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x542a3b8f snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x556a8427 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57164868 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58e49c83 snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bd1f4cf snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cfed986 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d7b92c3 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ee9dab8 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x639fbb03 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x665f59e5 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69db57b3 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d6687dd snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f32ed7 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a9bdcbd snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b9d8de4 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d4a12f5 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e93bf6f dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ee6d0d6 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eed51b0 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x826a6cb7 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8513ec70 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87998282 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8861c0c9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a2582e0 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3c32fd snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d3e7c11 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d7283d8 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ecf7b5a snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f289b51 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8126a5 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fabf0e2 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9003dd8d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90b8dbd7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93a8562a snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96595747 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9830653b snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e8dc36 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9abfceb2 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b35856e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3d67e3 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d84e7f9 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e50d72a snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0c95c98 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0e89570 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26ff844 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4add7ed snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa603c02c snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77e8634 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacbf2cb9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeaf6801 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb05427e1 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb05ec713 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1f3abd1 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb34a0648 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb48e2a7e snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e44ea5 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6c7694a snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb76ce4c6 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77debad snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb837f882 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9be23c7 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbab1207c devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc82eb76 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdfe9614 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf9903c5 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfee3b28 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0cf539b snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4664ed6 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5564ec4 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62cb279 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc65fcf4b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc76c72cf snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc871c324 snd_soc_find_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc89b21bc snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc942e2ad snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9a95ef2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7b7dcb snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0809b6 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc675467 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0cf5755 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1abd461 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd411aed3 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a159d1 snd_soc_component_read32 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5bdff40 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd648fcdd snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7597f7a snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8345f98 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda90480a snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdacb1f89 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc404e1f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc5c3bad snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd7d43a1 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdda23e06 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf976b68 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0a51f7d snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6690734 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7cc653c snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe86f8256 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8c12edc snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaccac16 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebdb0298 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed67bff8 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedc8c157 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee050c3c snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee0e8d9b snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefd27778 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf20c9609 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2befb1c snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa33eb56 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd379b56 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe6b1f7f snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffb7cb57 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcfdb6e2d snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd85e76ba snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd8be7c65 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdb63730e snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x17a4a7fc line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x19a826dd line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2641f06a line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3b1265de line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45a8ae5b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x51710562 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5199b22b line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5715af01 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8634f104 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6f7aa8b line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd08e0e3 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5069330 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe79e9ab2 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf9bf4e0a line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff1df42a line6_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0000d11b tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x000677b7 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x000742fe fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x00170156 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x001ae2f7 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0037fa83 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x0049eefc cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005b59c1 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x006c3aab acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x009bdaf0 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x009f360e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x00d1b4fc crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x00d36c15 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x00d3ff23 blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00f8571a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x00f899fc crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x00f8cb83 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x01019ed6 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x01083ffc gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0108a2ec init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x01180749 device_register +EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x012de7fa nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0139878e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x014018c7 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x0148b80c pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x014ce67d regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x014e53fc reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0160d5d3 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x0161409a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0185f3da fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0x01a5e917 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x01a83e02 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x01b3a3f4 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x01c11066 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c59ae8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x01cfc949 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x01d00e30 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x01d56937 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x02803d11 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x02889809 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x028b3985 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x028df430 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x028e197b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x028eccb5 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02993aea serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x02a05272 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x02a3b371 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x02bd1ee7 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0x02bef89f ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x02c7cd6b usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x02d75d02 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02fe49a3 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x030d8b5c acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03178ff2 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034e0ab8 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x035089ae pwm_lpss_remove +EXPORT_SYMBOL_GPL vmlinux 0x035234cb device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x036ba9aa rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036e9f01 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a2f680 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x03a6f0b5 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x03b3611e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03b6c63e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c63b65 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d5c075 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x03efce4d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x03fb9631 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x03ff4bd8 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d427c __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x040de9e3 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x04400d9f cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x045460fe shake_page +EXPORT_SYMBOL_GPL vmlinux 0x0460c327 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x0461314c devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049478f1 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x049929c0 hv_stimer_free +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c17523 user_update +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04dd9aa3 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e5889d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x04f3982d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x050201ec add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x0518be21 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x051eb53b crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05363524 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x0543e5f6 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055417cf iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0569ea34 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x057262f9 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x058b1958 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05b95eab __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x05bc4262 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x05c77d44 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x05fee926 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x06025a7c sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x06115d4d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x061c331f iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0620ed57 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0637c438 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x063f77db kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066b46b1 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x06712685 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x0684a354 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x0691b136 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x06af9a2e md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x06bab4b9 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x06d66956 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x06d8d029 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x06daf201 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x06df5f30 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x06ea557f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x06f9bfba report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x070257cb ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0702eedd usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0718b5c1 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072dbaa7 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x075d9c80 __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x076ae398 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x076b59f2 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x0773abac vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x0779527d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x0791a579 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x07a2af94 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x07a5184c uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x07a597c9 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x07a904e7 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x07b091fb power_supply_powers +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 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07d4b2d5 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x07edeba7 hv_free_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x07f4e9d0 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x07f5b33c proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x082c872b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x0833b34f hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x08404d32 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0847ef7e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088d1f19 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x08949cf7 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x08a54675 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08d41895 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x08fb3bc0 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090f8f19 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x091c5c7e usb_hcd_check_unlink_urb +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 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094dd486 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x094e7f28 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x0961affb rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x0968ea56 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x0971c6ff acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x097370d2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x09973d4f ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x099885dc raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x0999f6a5 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x09a239af seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x09aa9338 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c16769 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x09c1708d wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x09c1fc7a dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x09d213cc debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x09dd0058 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x09e24297 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x09eecf41 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0a017450 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x0a274726 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x0a30c8df dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0a432fff sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x0a4d93ef rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a755f45 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x0a7c54a4 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0a9887b2 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x0a9b3cd7 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x0a9d0ed3 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0aa6e4a8 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x0aae8cc7 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x0acbf513 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0aded196 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0af34434 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0daf90 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3b6915 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b589dd3 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0b5bb95e udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b6cf820 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0b72b284 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0b791702 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x0b85e876 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0b8a3c00 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b8f71af dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0bae1d8a devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0bb09054 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bb5c782 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x0bc12897 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x0be00221 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0c027f28 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0c0282b4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0c0aa25c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c12f7a6 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e77b1 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x0c5dfc31 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x0c724be6 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c792e81 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c85a7d6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x0c91b515 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0c97e376 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x0c9df24f usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0ca31bd8 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x0d00b7a0 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0d03dd14 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0d1a3a9e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d1b1488 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x0d2007c8 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5d6e3b ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x0d5f6eda nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0d63f47a sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x0d8b3591 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x0d8c4330 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0da05396 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dc7c9e3 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x0dd0d41c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x0ddaa0a1 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de26485 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0de869b1 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0df368b7 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0dfb61ac relay_open +EXPORT_SYMBOL_GPL vmlinux 0x0dfc4f54 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0126c3 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x0e0c8f59 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0e101791 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e384cd8 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0e57eeeb regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0e5e951f l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6da483 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x0e8e67e5 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0e8f7553 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e9e7ee5 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb137e7 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0ec7d8da cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0ef4a7ed devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f2368cd da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f36a6e3 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0f3e80af irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x0f4645aa rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f4b6493 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f56bdd4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x0f6b7cd8 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0f7c1575 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f9642f1 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0faa3cda bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x0fb336b7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ffa1070 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1025a5d9 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x1029596f pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x102ff065 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x105f6a65 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x10614ccf genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x1064d85f pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x108421b6 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10a36e5a cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x10bffa4b gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x10ec7313 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f63cfc ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x10fb95f4 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110f7802 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x112b8691 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x113782a7 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x1159a8a0 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x115e5132 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x117037a0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x118013a4 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x118775a4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x119abe04 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a6dfd3 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x11b7d199 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x11bb7c57 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11d781f5 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11e19807 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x11ef5f64 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x12122f58 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1228b2c3 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123c62a9 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x124ab845 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x125ed1d0 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x126181ea pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126a9761 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x126b2ffd inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x126bd8a1 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x1279302c regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x1286cc9a md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12aabb08 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12ad23a5 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x12b583b8 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x12b78107 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x12bae5b3 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12c58538 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12eae2d7 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x12fb0f6f serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13255361 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1347bd51 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x134ac1fe gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x135f3236 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x1361146f cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136b64f4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x1375a86f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13b12bcd nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x13e99576 get_device +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13eeb542 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x141fe86d dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x1422f879 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x14243447 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x142d3937 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x1435cc28 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x1443a86d dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x14640cc9 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x146f092b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x14708f3b sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x14737ee4 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x148ef7b8 vmf_insert_pfn_pud +EXPORT_SYMBOL_GPL vmlinux 0x14a1bf54 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x14adb953 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x14bcf347 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14dac58f kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x14e04d97 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x14f0d550 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x14fcb9bb dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x14fcbd85 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1510486f dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x151c3c5f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1542e189 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x1574565d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1577a82e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x157a1bef usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x158789b0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x159f2772 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x15aafc88 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x15b25b1a __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x15b5e862 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x15c7b8f1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x15d5d97a devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x15d6aca3 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x15de92b7 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x15f9e5b7 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165d8271 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x166a33ec shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x166d17f4 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1672a59b phy_create +EXPORT_SYMBOL_GPL vmlinux 0x167534d0 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1686d4e0 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x16892b27 uv_bios_call +EXPORT_SYMBOL_GPL vmlinux 0x168eab42 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1698ee92 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x16aeeed0 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x16be1b57 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x16c9c3b2 ata_pci_bmdma_prepare_host +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 0x16f74c16 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x16f8588e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x16fb7cb8 cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x16fd6780 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x16fddb38 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1712090b xen_set_affinity_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x1712c84f fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x172bf44c efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x172e0cc1 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address +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 0x1777e164 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178591f3 pwm_lpss_suspend +EXPORT_SYMBOL_GPL vmlinux 0x178b374a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x17919234 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x17939c5d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x17989ea6 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179d23c3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17aad6bf gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17b5b81d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x17c12cec scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x17c61dc7 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e60c57 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x181cbf36 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x183024d1 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1867c79d xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x1875b5a8 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x1876d63e crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x18a1d9d5 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x18a766db devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x18aa55fb tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x18b935f0 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x18c631cb edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x18ce903b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x18ce9c78 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x18e4ac11 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18facedc usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190112a9 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x190bae17 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x190bcbb9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x19186c7c devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x1937d1df pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x193c31e4 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x1949daa5 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x197e111c lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x197f31ae serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x198bc5c9 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x19906231 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19bb492d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ebd327 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x19efb290 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x19f02a62 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f6d560 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x19fb6bd5 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x19ff5c33 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a2300ab fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x1a51c9b8 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a98c4a9 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x1aa4d33c wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1ac08f13 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ada3fe7 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1ada7e83 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1aecfcf7 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afc91d9 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b109ddd dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x1b1da9c6 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x1b1fdc1b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x1b3ae502 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5203e5 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1b59b4c3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1bab13e0 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1bb1a9b1 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcb12fa of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1bd5a0a8 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bdde990 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x1be78395 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf4bd21 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1c01bdf2 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x1c0ff216 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c24fd15 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1c2727af cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x1c2bd46a skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x1c2df099 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c3ae1f8 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x1c41975a spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c495f57 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c534aa1 __list_lru_init +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 0x1c61e779 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c6a613e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x1c75d9c3 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1c7d65ec __memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8fdca1 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1c977ac3 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ca9bc26 l3mdev_update_flow +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 0x1cc321ab dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1cc428c9 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x1cc4b6b0 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1cd47dd2 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x1cea8fe8 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1ceacc75 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x1cfab204 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x1cfc0773 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x1d05672b devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d55f1c8 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1d667fa6 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1d67ff14 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1d681ae6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7d862d devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d8edf86 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x1d9032d2 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x1d91034a md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x1da1821d platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x1da4e239 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1dd6c08e debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1de7489c ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e130b68 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e2a3fca pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1e47168f devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1e4e6470 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e5a25e3 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e77e048 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8a9452 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e90e7bb badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1e9515cf perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x1ea75303 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1eaa3d26 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec16ee5 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x1ed2147b fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5d220c br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x1f5dd5f1 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x1f6b047e sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fb9555a clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x1fc907ba ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1fdf6cb1 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x1fe34883 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1fe564f9 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x1fe62a3f dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe97385 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x1feab434 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1ff21361 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1ff3314a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1ff4ba80 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20329611 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x203e5703 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x20439b86 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x204f56a7 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2063dfad tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x2089d5ad metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x2094262e blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209a8453 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x209fb66c regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x20a70c78 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x20afc850 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x20e947c2 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x20ea8526 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x21231463 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x213c5636 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2148e432 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x215004ba xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x217395e8 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21788a05 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x21873ae2 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x218dd4a2 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b5be94 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21ca89be pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dc2492 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x21fa4aaa ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x220467dd cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2215e1ad netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x221773fc mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x2217af40 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2243bec9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2250e2bf security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x225a0a24 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2288932d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x228a5d7e power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x2292fff1 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x22974e28 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x22d3617a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x22d9716c __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2315438f device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x231ec584 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x23320797 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x23370d2f bus_register +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23479bad uv_bios_get_sn_info +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235778a9 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x236796d0 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x237249c0 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a257d0 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x23a82dfa bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23b70c26 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x23c5cd5a devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23e83177 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x240b967b cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x240e197f mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x24166181 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x242a3528 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x24455a31 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24473b79 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x2455bbed max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x246ec615 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2485eb23 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x24934dcd wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x24a4b41b __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x24ae93f2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x24ccb2be bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24f715e5 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x24f9d282 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x25087cab usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x2510f2db pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2512a408 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2522e060 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x255b25de vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x25620dda gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25895a1e gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25955acc xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x25a6a529 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x25d1febc unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x25dd3087 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x25e3bcfa _copy_to_iter_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f5c0d2 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x260eed47 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x26168450 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x261d67af xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x2628989a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x26381718 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x263b6dfd sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x263cc259 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2667cc78 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x2670a227 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268409d2 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x269e00d4 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x26a5f002 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26aa5b64 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x26ab03d7 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26ab8c21 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x26babeb8 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cb15ec trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x26d3fdf5 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ed7d96 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x2706153b rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x27110e55 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2711e561 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x27157204 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277f634e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x278b50bf acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2796612d dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x279a7a92 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x27a1f577 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x27b3773f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x27c82e55 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x280ea390 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x28180594 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x2819c126 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x281d8804 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282f14af fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2855ec99 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28696cd0 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286efd8f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x2871e975 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x28883999 md_run +EXPORT_SYMBOL_GPL vmlinux 0x28a42bfa __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b825be __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x28bc4085 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x28bfc40f wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x2916f3b8 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x291de3e5 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x29583bd3 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x29649545 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0x2979fc60 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x297f8853 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x29839512 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x29842a6a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2987eebf udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x2992edeb adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x299b44d6 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x29c04d03 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x29c1879a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x29ceabef __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x29e1cce5 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f70a83 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2a005e29 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2a03517d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2a1beb26 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a50ad09 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x2a57ebe6 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2a5c7432 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2a660abe del_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6fce92 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2a797968 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2a7ae436 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x2a7c453d perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x2a849b67 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2acb1764 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b08b860 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b2a0562 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b2a3a8a platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b525f42 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6963cd crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2b72d9f5 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba0dd6c driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x2bda81ea dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x2bf07e6f platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2bf3cff4 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2bf8e4b0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x2c0524c8 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c34c685 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2c5625c6 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x2c5eb244 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7c6995 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8eecfb usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x2c8fe67b pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2cb22bd6 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2cb9bbf3 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2ce1f21d switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x2ce2c63f pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d15ead7 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d237595 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d323af0 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4691fe usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x2d48781e smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d5efb65 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d71d8ad device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x2d7777f7 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d84f82e fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2d851733 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x2dc59a19 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2de2b253 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2defc990 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x2dff40d4 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e19f4b4 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e4240e6 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e7ca5d2 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2e829250 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x2e906614 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x2ea47d81 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebd52d2 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec38d3f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x2ec445b4 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ed41388 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eefa1c3 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f010d65 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f06d7a9 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f11a1c5 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2f11c9ab bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2f1ba3ac __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x2f2ab8a7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f593e70 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x2f6302c3 xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f64d285 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6d5d6d pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f6e4869 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f9ffb80 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2fac9885 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x2fdcfa6e gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0x2fefa5bb bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x2ff246ed bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x300f550b acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x300fe65e crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x303271b9 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x30449d89 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3045010a dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3059a610 devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x305c188e lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x30a6e782 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x30c00a91 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d29969 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x30d68f6d virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x30d69adb task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x30e1dd5a hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30fd709a gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311a784c platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312b4d4b __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x313dbe6a iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x31758d5a mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x3178c2a4 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x317b3099 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x31812562 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3193dffb pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x319e59c5 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x31b128ff gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce3c5f __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e02709 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x31e6f437 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x31e9603b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x3202724e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x320b3864 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x320e2295 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x321b4b34 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32305e83 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x323314d3 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x32527160 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327c61dc devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x3287a144 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x3292de12 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32a1f07a fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b98717 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x32baf94e bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c018a6 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32d43e95 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32ec42d3 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x32f85015 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3300a525 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3333e466 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x334d9391 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x335838dd serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33a74ab9 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x33b10849 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x33c73350 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x33dd9940 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x33df68e5 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x33e5a826 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x33f48d5b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x340d8c80 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x34115d8c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x341bfa92 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x34319676 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3433a6bf tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x343ab337 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3446e248 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3457d6ef find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x346c10be regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x347d31ee ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x348b3fa6 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x34957ab5 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x349b9217 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x34af32c7 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34c01e91 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x34c4fcfd follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f63474 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x351ec156 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352cf542 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x352e3104 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353c8d03 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x3552ebda regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x35581894 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x3559bce1 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35619b39 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x3571a2b9 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3571e8cb rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3577e859 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3579ba4d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35928791 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x35abed66 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x35b3dbf6 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x35b48934 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x35b941cf phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x35bab5aa set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35c72285 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x35cb3948 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x35cc65c1 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x35d140f2 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d5514f watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x35d9f532 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x35e08429 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x35f18bfd tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x35fd222e crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3607e25a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x360a449a devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x360fca84 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x361e95c0 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x3623321b driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362b8e34 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x36317523 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x363ea538 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x364ae0e5 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3659b3c0 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x365fcbb2 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3660e366 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x3672deaf nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3676d8b1 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x36803d7f devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x3681a7b9 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x36888137 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36c64995 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x36df6aad netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3716f357 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x3723f0a9 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x373f20af crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375390e9 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x376a4ef2 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3786a702 device_add +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37a3fb9b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x37c16654 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x37c6848f iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x37c9651d register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x37d41b88 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x37d844de tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x37e07a53 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38082f88 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x381a1528 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x382a376a phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x385cc211 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x38633610 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3866105f balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38853ffd pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x389489dc regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x38b021fe crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x38b34eb8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x38bd9ff6 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x38bda32b debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x38c135cb pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x38c1669a pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x38cdcd64 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x38d80d1a subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ea4af6 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x38eacc0a xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x390af468 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x390e0e34 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x3925f73c pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x392d38f0 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x392d9209 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x392e751e devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x3949fe95 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x394b9842 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x394c974b nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x395540c9 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x396e2fd7 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x396e541c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3971f698 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x3977370c dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x39a60e3b usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x39c532ea devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39cab21d dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x39cd1def crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39fd0f21 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3a0c5163 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x3a1c8dea call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3a1d7108 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a298898 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x3a2c1268 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x3a420713 ata_sff_postreset +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 0x3a5ac511 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x3a60de83 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x3a62c6b9 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x3a688ac7 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a811c31 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9b07e2 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa9b5c5 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad5b61c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3add39b4 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3aefc1eb blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3b1c717a iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3b236e9c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3b331eb7 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b6d532d crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3b761ef3 md_start +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8ac564 inet6_destroy_sock +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 0x3ba0caa2 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3bb029d2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x3bc5d2ac xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0x3bcedaa4 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x3bd66cc9 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdfb3ac xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf83e4f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x3bfd429b inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3c035ac9 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c0ba3c8 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c194625 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c23993f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3c445a12 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3c4a4139 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x3c53c359 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x3c61a851 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3c73d875 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x3c80f1e7 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3c9b2228 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3ca6c562 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3cad7431 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x3cb5a646 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x3cb8b011 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x3cbd5f82 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x3cd048a9 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd18991 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3cdc68ae cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x3cddbd48 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x3cf492ec uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x3d133168 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3d1f801f metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3d2b9fd6 cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3d2e472e dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x3d302836 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x3d37d1cf dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d58d850 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x3d5e4bb3 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x3d7cb7b1 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x3d80e64b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d812d04 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8e4c53 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3d92d613 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3da50bc3 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3db5b04d gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x3db7efd8 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd597da regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfe779b inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x3e3e397d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x3e461edf set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3e4629e5 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb20e17 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ec18c98 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3edddabf pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f07d70a wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x3f242d90 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x3f2f53dd sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3f52973d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3f59e533 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f925c15 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x3f92f265 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x3f9a6459 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fbe070f xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x3fc87044 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x3fd547d2 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3fe0e2b7 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4001b842 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x40031659 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400e96f0 pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0x400fc35d crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x4015faf8 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4018a393 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x401946bf debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4029045b find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40444b57 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x4055e4a3 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x405fe1d2 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x4064f6ba debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406835db relay_close +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 0x408137d8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x40915bed dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40b47ad0 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40c6ff17 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40cfa8c5 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x40d2f2b7 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x40dfeec3 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x40e3d555 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x40ec5a38 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41278214 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4127ed88 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x413c21a5 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x414a8103 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414de7df usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x415fd5f0 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x41725e8f tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41872823 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x41886146 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418ba8b7 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x419afa44 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x41a63af6 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x41a6f234 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41bbc5b7 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x41bc7561 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x41c9f1bb devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0x41d07cd3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x41ed2ad8 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f1b9f7 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x4222d346 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x42319a7a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x42426394 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4287867f extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x428a183a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x428ecd52 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x42a8a41e iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x42ce8795 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x42d73585 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x42e2e1fb crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x431059f9 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x4321719b handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x436792aa dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x43733f63 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x43758db5 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x43797bf9 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x437cec7d devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438f9821 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x43a7f69e __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43b5162f pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x43b86575 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43b9b3d8 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x43b9b7d9 pwm_lpss_resume +EXPORT_SYMBOL_GPL vmlinux 0x43c33d4d tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x43c56e89 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x43ccfa9b regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x43d68677 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x43f1a541 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43faee21 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x441084ff dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x4413aea9 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4413b3e0 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4428732b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4430742d klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x4433f6f5 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x4454db9f iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x445a8682 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x446df875 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x447ea475 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e52ebd memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x44e9e2b9 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4513c561 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x452fc60e gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4545183c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x454e6fc1 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x456246f0 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457c3dc3 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x45978321 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x45b20c72 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x45b35b57 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x45b56909 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x45c33774 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d68e75 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x45dfa9c4 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x45e0b061 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460bb04f devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x461a9f2b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4627047c usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue +EXPORT_SYMBOL_GPL vmlinux 0x4665138e fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x46766316 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x467de6ae devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x467e02cd add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46983218 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x469de004 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x46b11548 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x46bbcf3e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x46c6d30b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x46d2aa8c edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472604a0 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x4728264d ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x47298a61 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x473109f4 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4740b6d6 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x47610ad8 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4762ce9f xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x477062b1 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x477a15e1 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478d2687 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x478ffb89 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47afc991 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x47b4d1ea ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x47bbdb43 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f21452 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x47f26c67 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x480480bc bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x484647be dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x487151c2 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x488d255f ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48c06b08 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x48e05b8c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x4900e36a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x49208c05 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4932a5c8 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x493c5bd0 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x496d4240 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x49717500 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x498be515 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499123e6 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49924e4d xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x49a1775c __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x49adcebf platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x49cfecfe spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49d41185 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49dc1759 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a0dcbac mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4a171106 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x4a1bbffc pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a1cb561 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a5dc1ee fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x4a7972e7 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x4a7f342d uv_type +EXPORT_SYMBOL_GPL vmlinux 0x4a86bfde inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a8e8b39 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x4a9126f1 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x4a975286 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4a9eaa52 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abac1f4 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x4ac2750e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4ad1f545 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4ad6a037 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x4ae457fa usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4aeed158 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4af60847 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b1cc82a gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x4b350c6b cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x4b37df4e usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4b3deb7b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x4b425524 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x4b4d8409 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5a23ec xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7b1e7e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b9a1780 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4baa5e4f pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4bb6427e input_class +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bc94c3b pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x4bc9e920 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x4bd80393 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4be7f706 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4bf6514d uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4bf8cfe4 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4bfada3d devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4c02edb7 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4c081d91 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x4c30cb7f __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c52444b account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c871b8f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4c959d27 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4ca2d289 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4cac1038 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4cad2091 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4cadbd9a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4cd2742a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4cec2642 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d00840a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4d10644a skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d277bbb tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x4d351a86 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x4d3d197b set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d53e66d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4d6b00c4 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x4d83e77f pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x4d8a3030 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4dadfe03 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dd2808e serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deb2d2a spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e00ee92 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x4e0901f0 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e22a7df balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4e2c0a84 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4e3a18ad usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e481167 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4ea8134c cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edcb788 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ee4b140 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efdb396 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x4f0ed2a9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f278ce8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4f32cb04 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4f3f49b9 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4f405cf8 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4f41fa87 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6c1ab6 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4f70c03d request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4f713e57 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f87ec9f sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x4fb0f93f mmput +EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x4fc74961 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x4fc83e1d usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4fcdc384 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x4fd9633e acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe36332 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x4ffe490d addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5031dd5e devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5032f467 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x503584a6 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x5040f0e4 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x505ea927 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5069435b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x50706459 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5076d7da rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5091612b fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50980ea5 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x50a567ce serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50ac4975 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50be61e8 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e0be6c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5101db89 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x5105c2fe fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x510d623b wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x5128cd2a sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5130bca1 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x51323828 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5139e83f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x51535698 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x515ef292 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x51679ac9 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x5170d5d7 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x51757be0 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x51818985 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x51853583 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x519a67d3 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x519b6b64 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x51a8b5ef gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x51af6fc7 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51b0fc50 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x51b66ada __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x51c41785 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x51cd9002 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x51d03210 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x51d27007 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x51dc159b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x51dc6367 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52390f48 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x523dd85e __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5241a74e nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x5246595f extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x524c48fc sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x52554945 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526029dc __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x5268a208 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x526e861d ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x52953544 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x52a2f1ee rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52ac021e sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x52b6a2c0 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x52ca9404 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52fdd958 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x532168b6 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5337ffd2 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x533afc5e nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x534592bf sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x53528604 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x53580835 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x535fc7ee clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537423dd sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x537609b3 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5388ea42 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x538b1a14 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a6ac15 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x53c47c53 apic +EXPORT_SYMBOL_GPL vmlinux 0x53c69826 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53da94d4 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x53de81f8 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x53e5951a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x54092439 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5424ae5b linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x54277dc9 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x542cbb11 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x5439a0a4 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x54433959 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5451512c fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x54571d46 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x545bb08b ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x547202f0 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x547ebac3 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x54bae0c7 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x54e991e3 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x55073861 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x550cb6c9 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5520462b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5525d4a6 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b01c5 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x55625cf8 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x55692d57 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5570b184 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x559497f2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x55993a57 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55a77421 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x55acc30d fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55e07baa usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x55e840e1 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ef9d3f device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x55f25b50 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x55fb7d63 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560fc31a irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561bed28 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56294f22 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x562b2db2 pinctrl_dev_get_drvdata +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 0x56465231 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x564b014e get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x564fdee4 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5651a6fb __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x565c8b0a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x5667ef40 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x566b38a8 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56812087 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569d6021 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x56a0d01b nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x56af8ada usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56c7334f serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x56c795f4 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56efd9e4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x56f126a9 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x56f615ce generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x57057168 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x5706367e mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x570ce747 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x57123c16 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x57136e02 dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x5713797f pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5732fc8f sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x5741a75a x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x57441aba ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x574fc58c system_serial_number +EXPORT_SYMBOL_GPL vmlinux 0x576b94f5 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57994f37 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a8b312 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57cb8a7d device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x57dec76e cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x57e42e00 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x57f2ef32 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583b060e __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5859a7f5 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x585ed1bb mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5864a111 net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x587533d8 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x58778fb3 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587b00fa inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x5881480d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x58814d47 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x58a36d86 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x58b08bb5 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58d4e84c rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x58fd2f87 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x590a0e31 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x590fb79d blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x591a17a2 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x59271767 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x5931e326 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x59445d32 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x594fd9b0 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x5955f62f task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x597e0946 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x599ddb48 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x599f163d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x59ac6036 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bb7d3d spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59d4805f nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x59e43ead __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x59e86179 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x59f0168d devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x5a329935 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a65b4eb __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a723e24 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a87a46d uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x5a90052b of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5abb8d41 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x5ad752e7 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x5adb30c7 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x5ae7b1f1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5af0c66a skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x5b0aeda3 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b28ee75 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b3ecd95 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x5b42218f usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x5b4b0fe8 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x5b640def gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6d69ca free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x5b70ce04 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x5b82f723 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5b84e995 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x5b884364 hyperv_report_panic_msg +EXPORT_SYMBOL_GPL vmlinux 0x5b8856f3 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5b92f246 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5bb289ac __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x5bbd2735 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc817ad serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c083510 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x5c1868ea cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x5c2128f4 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5c21d13e skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c31d89d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5c34d549 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c4f0b1d cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c77ceac spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x5c88cc5f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x5c94e24c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb3b677 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x5ccb6b85 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ccc9865 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x5cde5b7a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d0ef699 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2e567a usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5d319a5f ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x5d44ee2f irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x5d6f9b38 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x5d79f650 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d96941a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db2347a dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dc3b974 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5dc74943 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x5dc80f15 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5dd05488 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5df3e566 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x5e04e317 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e0ff527 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2e5984 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x5e4ce5e5 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x5e4d0178 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e648cc4 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e969b38 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5e9b3177 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x5eb3128c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x5eb6e752 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x5eb79e32 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ebc18cc blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x5ebe4568 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5ec2cb5f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed82e64 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x5edee098 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x5ee10e35 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x5ef5b911 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x5f1b1acc __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f27d0ca power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2ec9d7 efi_mm +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f2ff830 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5f3feb51 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5f435050 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x5f5e8b35 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5fab25fe devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5fae6406 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x5fb067bb sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x5fcecb05 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe4e745 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x5feae047 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x60043307 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6071920a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0x6087a78d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x60905849 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60929988 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x60989508 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x60a00ea8 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1bf6f devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60bbb931 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fbf479 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x61101821 nvmem_dev_name +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 0x613ab009 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x61580309 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618bf51d virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x61931607 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61affd7a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61ba1c7c rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x61d8b2dc irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x61db6a01 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x61e3395c devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fbb25c device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x62020bbb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x621181ef extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x621cb1e5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x622243f5 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62308056 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259be62 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62698b1f is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x62834378 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x628809b2 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6297b676 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x62aeebe0 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x62b12a1c smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c174cd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x62c7d895 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x62c9aded nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x62cda3b0 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x62d32c51 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x62d3d48e validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x62da170b ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x62ff3a85 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x62ffabd4 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63165bca regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631cfb3f blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6328d00f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6337e8db devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x6338b5db gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x633f5a53 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x634bdbd2 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x63522a16 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x635c85f6 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x636a56c8 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6376a359 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x637fe2d1 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63825eff __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x6397de56 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x63bf585d usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c8fd2b hv_setup_stimer0_irq +EXPORT_SYMBOL_GPL vmlinux 0x63cdcceb debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f4d45d bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x6416a66a __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x642860fd inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6451c9cc __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x646eca76 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x64921e87 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64bbd077 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x64bdcaa8 hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x64c009d2 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x64c5fb36 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x64c7af3f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x64cfd601 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x64d006ad regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64e7555f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f513e6 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x6502ab9e tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x651e9482 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x65230ebf subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652b5811 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x65302fc7 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x653f3e65 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x65741e39 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6575bc88 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x657aef73 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x65808fb5 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6588d6cd __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x659b95a9 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65a1ffc4 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x65c94f1a devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66254ff9 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6625f41f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6626c907 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6631adf5 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x66503c82 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x667ac28e ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668717e9 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6695d477 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66ac782a fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x66b12919 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c99317 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x66cf6c9a blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x670b1f5d blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x670ced6d __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x672a74d8 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6736569b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6749ac79 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x6757ba90 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6783c5a5 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x6785885e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67968325 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x67a970ce led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67ab8c81 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x67ae4301 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x67bf52ee debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x67c82c26 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x67d12b8e pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e341e3 uv_bios_freq_base +EXPORT_SYMBOL_GPL vmlinux 0x67edf952 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x680befa3 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x680f0861 vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x6816762f pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x6817860d spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x681fe388 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6829f8dc of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x683753d8 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x68522111 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x686340ea vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x6872afce pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689e7723 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68e2d7fa iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6923f3f3 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x693efe54 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x695d36d5 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6960553e usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696c13cb pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x696fec5b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x6971f6ce pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x6972d896 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x697742fb i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6983d17a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x6988b2d7 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x69a66fa6 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x69b00af2 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x69b054f8 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x69b2dedd regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x69bdb89e pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x69cce85c hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e7bced dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x69e7ea5c nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a065de1 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a35e7f8 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a436859 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x6a444a6d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a50fff5 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6a520796 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a64c671 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a6e82f4 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x6a75e617 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6a8016a6 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9433c2 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa3aa19 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x6aa7f1fe rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab146a6 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x6ab5bd86 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x6abe5637 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6af9d8b0 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1cf30b i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b350972 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b402355 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b4d0d76 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6b5213f5 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6b5ef1bb gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x6b61e8a1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x6b6bf27b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b85962a register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x6b8d6d35 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6b9fd2d6 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be195d4 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6bf6fe33 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6bf866c6 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x6c0b9dff rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x6c29e7ae tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3ce907 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x6c3ed5a0 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c46329f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c767a97 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x6c895294 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6c9c2d59 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca561fe edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x6ca9d2ba spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x6caa0c37 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x6caace38 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6cd893dc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6cddf0c2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6d036f40 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2cb1be __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3453ed dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x6d47b94b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d48e9db do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x6d5577da devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x6d65b1b4 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d735993 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x6d7c4fe7 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d852209 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6d8664da gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x6d89198e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d9d43eb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6da63a2b bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd40d1d pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0x6e04e3c1 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e099a19 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x6e1aca2c rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6e2d0a0f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6e2e9986 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6e2efdbe devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e406df4 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6e43dfdf sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +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 0x6e8ce104 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6e9919d8 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6ea08442 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x6eadd82f l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6eb71761 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec05cf6 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6ec55481 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6ec6dc49 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x6ed3779c bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x6edc9017 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ee8f355 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef7a4dd acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f207487 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x6f35f1c8 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x6f3bc0a5 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f3c267f i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6f5ab61c fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x6f638b55 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6f78651f sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f7d4d57 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x6f7f85f4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x6f8103df gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6f8286d6 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6f86f26d sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x6f9ba5b3 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa79509 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x6fb742f1 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffbe930 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x7001d259 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7011fd49 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x703157eb fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x703bf26b devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x70531677 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x70628c40 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7073e15b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x707e2b4b usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7082a20d clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x70853db1 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7092cc2d __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x709687f1 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5a234 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e5b88e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x70f2da3d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x70f36744 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0x70f9f372 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71203c17 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7151df63 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x7157ac8e md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x717b0b00 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x718c590d tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x718de0ca ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7191d611 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b590ab platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x71c67d8b usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71e88b04 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x71f245b2 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x71f4b665 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71f5847f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71f7ff1c usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x720276e8 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x72162c02 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7219e38e nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x7230270b ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7235aadc devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x72480768 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x72641cf4 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7281e85a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7295891c regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x729a1495 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x72a5c58e wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x72bab0a8 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72c9474c pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x72ce391b i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72dda2df cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x72e2c5fd usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x72e46af9 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x72eb41fe blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x72ec6105 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72f0a269 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x72f258fd tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x730b10ad cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x73173634 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x73448777 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x73450f8b splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x735d832c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x735df8e2 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x735e49af iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0x7366700a __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x737b418a sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738461ab devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x739a9c19 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x739f95f7 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ba520a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x73bda1d4 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e6fc12 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x73eaf6ca spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x73fa03fa arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x74003ca5 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x7415f1d9 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x741c064b ping_close +EXPORT_SYMBOL_GPL vmlinux 0x74395ed4 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x74471e4e xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745dffa5 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7460ad7e of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x746e6031 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x74721f09 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x74930308 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x74944634 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x749c2021 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x74adee14 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x74afd474 xen_find_device_domain_owner +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 0x74d7228a nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x74dbfc17 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ec0f52 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x75023b0c bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x7510e850 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7514fe6e tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7515b50d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752acca8 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x752c6b0b fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x753a9d27 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x75521969 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x758da96b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7593e4ed acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75ade056 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x75b5218f sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x75bb694c rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75ca6595 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75e75cd2 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x761e2ccc irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x762d6169 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x764ed165 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x76594816 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7659a375 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x765a5ba6 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x765a5ea4 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7669242c acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x767828e1 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7694964e dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x76afc989 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x76b284b9 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x76c94ee5 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e0153f wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76fb1fb7 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x770c58cb security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x77115042 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771497d6 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x772520f4 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x773caac0 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x77491ec7 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7750e04e skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776c9438 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7775336c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7775fdc7 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a8a3be subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c1c781 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x77c526b2 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x77c5a6a1 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77cf4a78 split_page +EXPORT_SYMBOL_GPL vmlinux 0x77df55dd hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f4e2dc pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x77fdb4d0 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x781534dd devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0x781651e4 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78311d94 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x78505f6a debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf894 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x785fe0ca virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x786a0be5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7871d4e8 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78812411 hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78a4e8af pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x78f4ca57 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x78fa2d4c aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x78fbb88c pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7903bb35 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x790596b1 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7913ceb7 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79150267 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x79334a93 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x79495346 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x794a43b4 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79640efc do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7971e993 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7984f2c1 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x79ace4e2 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x79b344c7 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c0327b virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x79c1260d __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x79cbf134 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a062496 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7a157941 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x7a1d3d9c devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x7a203449 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7a2a7e63 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7a4e094e gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x7a51117a pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x7a5ad2f1 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7a5d49a7 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a74c5f1 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7a7a51d3 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a9a16b4 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acb58e4 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7adf73bd get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7b0570ff i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b0de763 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7b162830 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b262fbe usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b29ce1c devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b645ade udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x7b66b3f0 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b91548c fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bc6b495 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c00299a serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7c15f747 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c242a72 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7c310f0b ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c57a808 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7c60c7d8 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x7c7305fd ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7c7ac3f9 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c8238e0 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x7c87b7a6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca05cbd iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ca70faf exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7caeeaaf tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc25805 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7cc9d61e node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x7ccb4760 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f4cd ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf16988 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf6b64f crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d02572c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d0f76e5 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x7d1960ed governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d22ea98 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x7d2a129d blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x7d44d333 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7d568808 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5ad1f3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7d6084eb scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x7d79bf95 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7d7ac8f8 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d8fac27 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7da4a958 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7da7c39c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x7db99dce irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7dc053fe __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x7dc22dfa pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7dc9d573 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +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 0x7df49b86 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e03470f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7e0d5e7c cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7e4a684f crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7e556c6a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x7e561d5e blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6c219d ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7e79a662 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7e842757 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7e897c70 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb8f281 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7ebcb88f __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7ec3faaa acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7eccbebf edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x7ed30df7 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7edf8a57 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f08d098 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f18d024 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x7f18f5fc devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x7f29486c dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x7f2b1a93 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7f329754 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x7f5ec5af spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7f6b4188 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f94a7e3 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x7f9dd99c rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7f9e70e9 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7faecc93 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fb74966 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x7fb93aa7 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x7fbe754e spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7fc0a16b rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fc84ded acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x7ff3a05f devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x8001308b ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x80124174 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x801fe3bb find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x8021dcb8 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x802cf109 device_del +EXPORT_SYMBOL_GPL vmlinux 0x803067a2 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8035b01b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80a34ae6 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x80abbe82 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80b777e9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x80b98818 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x80bf05d3 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e094f9 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x80e2ed9b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x80e5aaff udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x80fd4083 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x8109082e gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x810e850f nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x812b6ac8 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x8139884c gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x813b8406 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8148bd1d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8157f973 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81776ac7 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x8186eec3 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a275aa __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x81a7209b devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x81abf087 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81d6a881 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x81d7235c gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81f337ee edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x81f41ed4 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x81f73014 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x81fe98f5 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820c8ad0 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x8227e7d1 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x823ae091 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8261fdd5 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x826ead35 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x827501f4 __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x82788081 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x827d21b9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x827f8c53 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x828d8044 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x829d2d93 acpi_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x82ac47fb mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x82b1e6c3 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x82d28814 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x82d4c787 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d7f0a9 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x82e6c261 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x82ed181c tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x830f0c74 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x831f0c7b dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x832902f5 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x832ef109 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8344201d i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83711d77 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x8382e4d0 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8398de84 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x839a6497 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x83a736f1 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x83a77811 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x83b587a6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x83c149b4 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x83d22178 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x83d3aaa2 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x83e89168 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x83f10eda iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x83f2fb1b free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x83f4946b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8415760f __module_address +EXPORT_SYMBOL_GPL vmlinux 0x84255a75 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8426757a regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843821cf xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84482848 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8459b156 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84655554 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x848df472 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x8495669a platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x849f4981 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x84a2876f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x84bd8574 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x84d7b9a4 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x84d9cbf0 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x84f12e30 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x84f45bca pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8508e17f pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x853bbff4 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855ba565 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x856c88cb blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85aa8502 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85b41f4d irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x85b4a681 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85d97abd devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x85e5b1f7 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85ed2dfa mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x85f0b863 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x85fe26e8 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x86166a70 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861e4b61 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86232915 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x86335437 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x8633be48 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8635e3d4 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x8642b2a0 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86639ff0 acpi_subsys_restore_early +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 0x867847b8 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x86811585 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x86861a1d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8698b084 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x869a69f3 edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x86a9f3f8 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86bd9008 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86c9d80a seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x86f169d8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x86f2a0e5 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8704f31d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x870e6075 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8710581f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x871fc8be phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x87327e7c ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x87416e46 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x87438379 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x8744b3fa gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x874fde45 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x876f6c86 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x8778f3c3 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x8796c058 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8796ed30 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x87aabbed uv_apicid_hibits +EXPORT_SYMBOL_GPL vmlinux 0x87b159d3 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x87bc2476 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x87c7a9d1 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x87cab09a __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x87d40916 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x87e35609 hv_stimer_init +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x8806cd36 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x88096963 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x88131f09 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x881a846b clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x882984bc pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x882d50ae regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x882fbb34 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x88373252 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x884f78c2 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x887552a0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x887d3df6 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88a42e40 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88c68522 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x88c69452 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x88cbdad1 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x88ea577d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x89203740 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89270629 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893cfdfd restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895fa1b5 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x897629bb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x897c91a8 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x89828187 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x89864ad1 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x898f7007 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x899661e2 direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b4626c arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x89b69ba2 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89dc38e8 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89e0b783 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f21106 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x89f55f8d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x89fccf85 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8a07b2b9 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a099e06 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8a0bf986 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8a0e318b dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x8a10011e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a37bfb3 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8a596b22 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a5b8834 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x8a608d74 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a67dc07 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a83d07f clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a88de32 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8a9753c6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x8aa6d948 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abfb707 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x8ac0452c perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x8ad48159 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ae2b822 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8afd03d8 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x8afe98d7 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8b0d303f acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1f847c usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b21f3b0 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b34ac5e regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b66a6a1 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x8b6706d9 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b6faca0 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b9c9f9a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8bce79cd max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x8be736bd efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1daac7 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c1f2a31 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c31d536 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8c3de6f1 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c66074d scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x8c6e4af5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7af5b3 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x8c85fb39 iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c9741b1 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cbacf33 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x8cd8cb2a wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8d03f3a8 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x8d0ed941 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d26c1f6 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3ea4f9 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x8d405a47 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x8d468e77 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8d55ecd7 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x8d58d201 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d74563e irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d7afc1f crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x8d7b9388 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8ffc9b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8d9ab976 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8dddd4c5 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ddfa000 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e041602 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x8e25bb03 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8e35d116 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x8e419733 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x8e472c01 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8e4c7d37 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8e52995f devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e897331 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x8ea249cc devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x8ea70648 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8ec0f734 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x8ec85515 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8ec9e437 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x8edcb4b0 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efbcad0 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0a9c8e driver_find +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f2f18b4 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8f32779d __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x8f48f0f4 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x8f4aea6f gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8f4edbc6 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x8f68eb32 transport_setup_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 0x8f801d8d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f85dee1 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x8f8bebc1 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x8f8c19b2 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8fae1038 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fe82787 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8ff6d1ed input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x8ff8d971 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8ffafc2b pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x8ffcc534 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x8ffe704b acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x9029c1a9 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x90320995 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x903ad915 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90588193 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x905ab8f1 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x905c9b73 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x9066e2a0 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9080f0e8 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x9086dd6d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x908d38d9 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x90a020a6 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ab013d devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x90bd5f72 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90da9121 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90f22e79 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x90ff7bdd tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x90ff8721 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9114c7e7 xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0x911c7651 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9126583f usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x913b7a83 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x914aa0b7 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x914bd63f pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9165ad4c regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9172b722 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x9190b007 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x919d6ba2 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91a95aed inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x91be1ccf pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7a884 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x91cdc260 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x91d66f27 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x91f58376 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9200d869 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9205cfc0 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x9223001d genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x922d1d6b ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9243c233 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x927a1e17 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x927bf83c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9288b470 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x92a4c6cd skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0x92a8ecac mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x92ae8de1 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x92c8569e serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x92cb9337 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x92da6db4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x930344b3 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9309b1ad serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x93118e08 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x93297465 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x93342d9c gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93423d21 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x9344802f regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9354d302 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x936cecfe iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x937f18d1 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93850c53 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x938d14d9 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93b3ec18 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x93c431a4 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93d7f42e dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93eb282c sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x94004fd6 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x945b0564 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9468bb1c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94761ac9 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x948485d7 put_device +EXPORT_SYMBOL_GPL vmlinux 0x9489276f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x948b1a87 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9492c272 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x949d64b9 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94aa3296 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x94ac8a2d device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x94b531ac pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x94c284e7 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x94c8bcbe crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9503fd84 rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95092dc4 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x95159c09 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95356b28 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954ccfe8 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9551b7b3 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959018d8 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x959cbe5b fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a73d4e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x95ad47d2 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x95b13a68 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x95bba90f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c15e03 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x95c9c442 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x95cbd605 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x95d46159 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x95d8b0d8 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x95e8a752 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x960778e0 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x961828e6 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x96241b4b device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x964b63ff sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965615a4 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x96564ab8 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x96594077 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9659b3fd regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x966be3ac fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x967b4522 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x969d01fc __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x96a3f226 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x96a43d4e efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96b326ce crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x96bdbf93 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x96c40cec devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x96c68785 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x96eebb7e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x96f172e4 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x96f9332f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x9702376a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x97123777 fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x972d00de ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x974de8a8 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x976f70fb acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x97729f92 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977d3db3 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x97847bfb locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9786eac1 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x978bff47 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x97925bf8 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x979d1604 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x97a6c47c tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x97af9731 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x97b412b5 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x97d12355 hv_remove_stimer0_irq +EXPORT_SYMBOL_GPL vmlinux 0x97dab7f0 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e4435c pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97f93372 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x98058f17 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983e2cec virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x98409fff arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x987e553d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x9890ffb2 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x98928272 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x9893e83d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98bfdaa3 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x98d5cd05 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98e4131b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x99007743 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9916d97a register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x9931d724 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x99599b17 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996e6781 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9974af75 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9991476c of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9992546d screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x99b73115 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x99bf6f47 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key +EXPORT_SYMBOL_GPL vmlinux 0x99c5e016 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x99c942c2 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x99eb555e rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f0308e sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a28ee4a dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x9a509541 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a538b6d lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9a570428 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a8639b4 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9a8ec48d mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x9aa4b902 flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9abd4650 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad9b54c regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9ae8ef26 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af8d8bc wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9afb3535 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9b1f1ab8 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x9b32daf6 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5e5a65 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x9b687ea2 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9b68b2a9 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9b70a1b1 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x9b856fab sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b97f879 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x9b9869f2 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba1698b blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf226c3 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9bf2cdbb rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9bfa55f3 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x9c141941 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x9c25b384 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x9c25c401 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9c28d411 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x9c3418f7 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9c6d783d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x9c755d98 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8405a6 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x9c91ab46 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x9cadfb86 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9caf0f51 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x9cbdcb1a __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cccfc3c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d069c1e task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x9d0765f4 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9d084ea0 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1c99f2 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x9d1cba2b is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9d1ee545 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x9d4d68e2 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d73291c acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x9d92a532 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9db62c36 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9dc56d3b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9ddc5cff devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9df82aa9 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e12b824 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4dd646 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e4f551a fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9e5e4648 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e5e8eac __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9e6c651d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e773729 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x9e77a712 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x9e7a89f7 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9e7daf33 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x9e7dd428 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e82f0fd bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x9e854bdf pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x9e859596 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x9ea4625d efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x9ea843f2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ea8707e cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x9eb8cf2c pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9ec55974 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x9ecf290d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f079876 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x9f0b6a36 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f0b797d agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9f2e2dd6 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f3ca61a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f4f1ee5 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9f71bc72 uv_bios_set_legacy_vga_target +EXPORT_SYMBOL_GPL vmlinux 0x9f74d5e3 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x9f9a4a9c da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9fade2c6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fb17cc9 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x9fbef8bb __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc58232 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd29e58 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9fe37f14 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffafefe cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ffb4e1d wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa00e56c3 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0182d24 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01f1eb6 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa02eea58 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa046707e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0671e7e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa07b27be pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa0821247 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa0c8c35a usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa0ca44bd pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xa0cce1d1 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e8080b ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xa0f8df09 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa10a9dc4 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa12f7ce9 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa12fbacc rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xa1329026 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1683ab3 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16c0597 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa16d6972 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa1816641 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xa18d3f0f pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa1c8b988 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1e1028a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa1e3355f __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1f10a2f sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xa2046720 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xa20b9050 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa229bac1 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xa2311ba3 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa258934d pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xa2634961 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2766f96 device_move +EXPORT_SYMBOL_GPL vmlinux 0xa280c9fe dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xa282993f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa29c7a55 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2a7040e regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d62f20 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e3d5fb pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0xa2e511ef vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa303a0d1 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xa3141af1 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xa328085b trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa328503c __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa33f84c7 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa340fa5a to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa349de95 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xa352837a do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa35d8eb9 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa3851537 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c1e020 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xa3cf601f iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xa3d53d08 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f6b6e8 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4072a5c phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41364ad shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa4161088 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa428f1fd usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xa435cb78 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xa4428668 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa459045a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa470eedf kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48ddb58 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa49f25af nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xa4cd23fd tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa4f1b27b sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa4f2860a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xa4f866cd regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xa5072d17 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xa50d3dcc irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa515964b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa5209f97 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5313d57 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5321e94 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xa5341b6d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xa53de76b lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xa55608d0 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xa5604268 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xa564431d pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xa56af676 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa56f2408 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xa586fcdb uv_min_hub_revision_id +EXPORT_SYMBOL_GPL vmlinux 0xa593c8b0 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa59b5999 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa5a1df67 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xa5aa05bf device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa5b6422c crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e84a20 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f867b3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5fc9cda ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xa614bcd4 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa61cc519 of_css +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa640eb0f cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0xa645c0c3 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa6628905 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xa66c7e0b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xa674b75d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa6814579 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa6830581 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa693cb75 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xa69b3ac3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xa6a1aa2e tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6a533e0 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6d2fa2e blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa705f461 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa708b9d1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa722f381 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7272a00 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa72b3f72 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa742331d kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa75f3024 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xa78ce400 component_del +EXPORT_SYMBOL_GPL vmlinux 0xa78fd029 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa79028a1 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa7b0d9c2 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7c16dab bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xa7d00203 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa7d9a8f6 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa7e97002 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa7f8c21c acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xa8056d64 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xa8104dbd devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa8152907 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8233340 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xa836f2c6 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87311c5 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa888c4de rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xa8891e22 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xa8a10b34 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8bdb324 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa8dba5fd battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xa8f27297 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9016402 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa9108f58 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9139348 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa95af48e dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa98049c6 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa9945a67 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9c527ce platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9c669a2 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xa9c7b681 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xa9db84b8 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xa9df2688 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f1ee0c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xa9fb9f16 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xaa0db9f6 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2a8b37 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xaa2e2b59 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xaa2f54bc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xaa47fe51 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xaa566382 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa65efed crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xaa6741d3 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa700aba crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xaa8215ca pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8bd19c regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa956eb5 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xaa9dadd1 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab29a55 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xaab69fcf init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xaabc2fd9 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xaac33262 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xaac4940c usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xaad08ebe gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xaade68f6 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xaaf35e06 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab3255da dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xab4c4244 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xab598688 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab70fb16 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xab78f77f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xab94b49a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xab95b775 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xab981ade edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabae3904 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xabbe01d6 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabce3113 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xabce6005 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xabd45a77 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xabfbe5d7 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xabfc8ce1 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xac2c0a6b path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xac3c1f94 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xac4c6267 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xac584358 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xac67e5d1 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xac6a28eb fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xac7e25cf __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xac8c289e tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xac9248da pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xac99dc79 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xaca194f4 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xaca27fff thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xaca32027 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb93815 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xacbb1bd6 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xacc5f721 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xaccbc05d da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xacd214d3 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xacf9133d device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xacfcba9f irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xad023471 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad1e4966 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xad1e61c0 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xad2654dd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xad3152ac crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xad546492 mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5b6311 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xad5c3054 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad680b2a gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xad794053 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad970114 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xada1ea9b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xadc21cd4 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xadc671fb virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xadcbb8c7 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xadd9e1b8 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xadec5f1d component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae03a9d7 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae15553c reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xae1b4627 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xae1b85b0 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xae23614b fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xae2a041a of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae416f28 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xae431920 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xae58518b pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae710b8c nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xae756e6e fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xae78f582 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xaeb92d0b bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xaebcde2b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xaed1611c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xaed30265 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf010f53 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf142f45 add_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xaf351af7 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf52ee0c nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xaf58540e dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xaf5fd63a usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL_GPL vmlinux 0xaf638d4b security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xaf6f1cc9 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf8b348d devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xaf99142d ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xaf9a2874 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xafa1d764 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xafa4e582 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xafb8c79c serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xafc12838 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xafc25604 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xafd7baa8 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafefda55 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xaffeaaa2 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb0065b11 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb031cec7 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xb03671b8 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb03c1819 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xb042d24c devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xb04549c6 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xb058ddea mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xb080ebff netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb08c1492 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb08ecad1 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xb0a246e7 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb0a2be66 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0a7a961 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0a8b8b4 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xb0aba807 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c5ec9a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xb0c96114 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xb0cca7d8 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xb0cf21a5 cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d49037 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0d86ef9 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb0dd40c3 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f91ff2 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xb0fe013e fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xb10184d8 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb122420e dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb12ffc2c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb13cb9c1 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1479e3c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb149c539 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xb15282b3 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18652bb ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb1891f3a bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb18a7645 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb192ee81 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xb199657f bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb1a1dd76 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xb1b6ec6b gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d81d9f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb25d6fcc dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26db244 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2812728 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2bd5e9d pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xb2bfeb06 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb2c3db85 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb2d5cbfd kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xb2e30bd6 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fe5290 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb311c396 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb325f10b badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb33b349a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xb347ccd7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb37ab40a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xb383a033 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb38f6b40 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb39a1a1c dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb3a2c86f unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb3a35314 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xb3b25c5d vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3b2cd7d attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xb3b9b5ef crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb3c4eb02 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0xb3cef522 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb3db45c7 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb3df8f53 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb3e2066a ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xb3ec040d pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb43b2fa6 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb43f5858 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb456cbed kill_device +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb47d4fea i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb48b6c2a acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xb48eb1d8 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb4984f88 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b0f4be sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c897db fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb4ca15ab devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xb4d5e0d9 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xb4e16443 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f04886 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xb4f65bcd crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50e1f27 __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xb50e76de devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5150bed tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb529eb19 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb536e41a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb5635d84 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xb574bf38 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xb588061a mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb595b471 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5aed8f2 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xb5b1ae97 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb5bd02df devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb5c45129 flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xb5d3b583 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb5e4cef3 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5f97b17 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb601557f debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb60bd140 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb60e2718 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xb62505d3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62d9587 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xb655ba8c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb656c877 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb65e5a32 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb69436ff regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6afc95d rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb6b02b53 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xb6bded62 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xb6c953b0 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xb6c988e9 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f31777 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xb717086d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb718f20b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb72f7c98 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb738f29f power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xb74d8374 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb74e432f devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xb759d7a6 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xb7611c67 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active +EXPORT_SYMBOL_GPL vmlinux 0xb78d8848 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xb7907cf2 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xb7a2cdd2 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb7a3643e crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb7a84981 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb7bc84b8 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c7cf14 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb7ca2d15 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e0c550 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb82ea7bb sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xb82f7286 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb833377b mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb83425e6 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb845d724 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb8622ca4 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb87131f7 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb8728195 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb894a840 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8baeb24 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb8caf817 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d97f51 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb8de39ce fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb8e32e2e sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xb8e3a17b generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb8ec2b12 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9076519 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb907854b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb91a0723 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xb92cf0fd ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb9377cf4 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb9560f87 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb96ba8e3 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb97a450a devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xb98ccf20 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xb994a053 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb9b5b313 find_asymmetric_key +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 0xb9f4a409 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xb9fbec83 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba036ed6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xba104143 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xba15cd89 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xba1d7a4a serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2dc5db nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xba403d90 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xba46c6be dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xba47d44c pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xba566e3e edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xba586a3a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xba5c5672 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xba714cc5 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xba7fc8cc trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xba8ddb39 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xba9e6dd0 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacb5dca pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xbace318f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xbae25553 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xbaef81ab crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb043bb4 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb200206 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0xbb396a7d crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xbb3e70ee netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xbb49531b cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbb501e29 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xbb589a0f gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6be453 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb71ff42 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xbb797fb8 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xbb9660c2 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xbb995e33 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbba31070 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xbbae9213 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbcc8e6a class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbbee5772 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xbbf5df3e sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xbc44d16f blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbc47e383 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc62a980 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xbc69f754 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc743c7a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xbc856b5e dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xbc932055 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce8e279 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfb2815 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xbd14c8e9 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd616aa7 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbd870e51 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xbd8ef0d7 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xbd8fb88d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdcfd186 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xbdd3d677 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xbdd77d53 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbdda52d5 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xbde924c7 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbe088e48 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xbe0a5415 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1c6d35 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe1f6880 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbe2fe255 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xbe362d40 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe5039ef each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe6001b6 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7620c4 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbe8565ef pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xbe88f45c gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9e9aef phy_put +EXPORT_SYMBOL_GPL vmlinux 0xbea1f82f usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbecb9594 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbedaa2e6 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbee26000 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbef9a337 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf051552 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0xbf061b28 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xbf38c304 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xbf3d02c2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbf42307d pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf43f54d devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbf49f3eb irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xbf726612 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbf7e9f67 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbf9b2170 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbfd8c7 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc013b5ac platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc0253946 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xc03fcc93 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xc04529d2 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc066544d blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc0680535 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc06f2775 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc078e041 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc089dc7a __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08bfc2d irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xc0a03987 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ab1857 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xc0cd5fa0 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e38add device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f10ad6 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xc0f6807e vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc0ff9b76 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc119da2b power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xc1548b12 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xc154fdf9 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xc157f632 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc159427a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc167f5dc tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc16b1897 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1878a84 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc19b236e pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xc19ee66c acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc1a5de04 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc1b87adb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc1bddbd4 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1d02946 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xc1d40265 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1ec8b42 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xc1f5443b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc203cf56 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xc205c976 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc20ed3b0 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xc2142f39 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24ff8f9 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xc2512937 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xc257fae4 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2667d57 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc2807b72 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28620cc sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e1b168 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xc2edd0b4 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc2f525c5 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xc3190e93 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc336c770 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc350bcea devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3717534 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xc3729362 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc37f44f4 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc39710fe virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0xc3985a1f driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc39b6e59 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xc3a91655 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xc3acee8f fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3e1cab9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc3e84c5f pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3edf6aa save_fsgs_for_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc3f2756e bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xc3f556fd edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xc3fa07b2 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc4085bac ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc40bb71c efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xc40c4651 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xc40c4d03 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc41d7366 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xc41e17d2 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4385cba led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc443f634 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc44ce116 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4691b0c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc46bcc6b vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xc470106f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc484f601 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48fe6dc pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xc49097b6 is_uv_hubless +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a6eac1 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc4b5bf01 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xc4ef6584 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4ff8edb ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xc4ffaa20 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc508e4db edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc52bb84c power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc52eb4f7 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xc52fac3b wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc5369efe bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc548d03e iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc58ed23b sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc591c6e8 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc5a4e1d1 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a6bf05 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc5ad1b58 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc5bbacf2 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc5e3f896 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc5fbb679 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc6105e3e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6190811 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc6198528 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xc6313832 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc63e5ceb iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc654d61c bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc662ef1c blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xc668d471 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6796c20 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc6807f3d tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68b8117 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc697afd5 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xc697c686 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69cc895 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ae0879 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore +EXPORT_SYMBOL_GPL vmlinux 0xc6d810cf regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc701225a acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7174ea7 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc71fbb9c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xc7462f7f gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xc74cce10 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xc7669d1e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc7751cef wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc785301a nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bd6f20 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7ccb793 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xc7d0972a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc7db3712 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f21f4b clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcb979 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc81242cf update_time +EXPORT_SYMBOL_GPL vmlinux 0xc820f0c9 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xc823ddb1 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8438b8a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc8768539 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc88bd55c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc88f050a crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xc8a2057c metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c6ebe8 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xc8f63d86 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8f891d1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xc90f2001 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc9103412 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9128fd5 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc9275004 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc93ba875 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9554f4b bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9706e9f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xc975c84d sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9b7d164 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cb0240 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc9d14c05 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9e98b5a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc9eb3b40 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fd3f6c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc9ffda49 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xca0f62bf pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xca34d576 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xca35ceb8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca4183c5 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4c115c gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xca7a4fb3 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8766d6 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaae77aa pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xcabbf157 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac8a5c5 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xcacd2210 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xcacd42c1 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcae2e98c usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcafddf41 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2efb35 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xcb336020 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb60f199 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xcb67743d rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xcb75e4ce virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xcb77a3e4 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcb7b513c strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xcb83ebf1 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xcb8e80e6 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xcb96af3a perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xcb96e6aa xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcba48470 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xcbb25d76 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcbc847d1 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf6be9d __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xcbfc9efb __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xcc0a9b54 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xcc149429 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcc167fbd wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xcc1a3874 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcc1c0a69 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc1eb2f5 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc3d425c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xcc4eb8e9 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xcc89dd22 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc8de4d2 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xcc8e2466 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc99cf26 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xccb10238 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xccb3c4a2 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xccc705ca ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdd1a5c led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf684d8 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcd03efcc bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcd15a2d1 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd1de8c1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd270fbd ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcd28ffcc trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xcd29ba42 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd31210c fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8a1e7d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xcd915214 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9913b5 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda403f3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcda91bf4 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xcdacfdc9 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xcdb15677 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc114b4 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde89e4c device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xcdf4a768 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xcdf6a63a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce18887d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xce1d6d9d apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xce219a54 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xce263fc3 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xce296edf arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xce5b33d1 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xce5c0290 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xce6a9fe3 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8fa7c4 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xce9f081a flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xceb945f1 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xced57771 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xced5aff9 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xceda058a virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceeb9d45 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xcef2cb5b rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xcef5d39a blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xcf1825f6 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcf384108 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xcf40b4a0 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf684152 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0xcf6b095a pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xcf6d8e24 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd36e99 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xcfe7ec99 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd03dc3c6 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0519de0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xd0600de7 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07386c8 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xd0743121 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0797838 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xd0868f00 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xd095b332 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09a8555 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xd09d94c2 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd0a1dbb6 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd0a863c4 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xd0a9787a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait +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 0xd0dcfcf1 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0e95bbf blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xd0f45b59 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xd0f87c50 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd0fd6fd8 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1002627 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xd107b21c regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd128f604 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xd132fe25 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd136044b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd1482f46 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15b581b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd16266c2 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd1665301 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xd16bd98e handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xd16be61a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd17476f0 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xd17c4acc regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0xd182bff1 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd18fe280 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd1b5b2d1 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1ccde01 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd1e96b18 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd209de52 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd23a3fcf ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd24eb82d find_module +EXPORT_SYMBOL_GPL vmlinux 0xd252af79 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd2725483 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2747450 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd27fc919 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xd28236ed device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd28afbaf __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd2973ba6 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2bb6462 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d926a9 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd2e07780 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xd2eaf97d arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xd2f73791 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xd2faf7e7 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xd31d9d7e sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd3216989 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xd3365555 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd342e2a1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd352c52a blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd35b19e9 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd3629f1e irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3699d81 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd38d041a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd396ebba sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd39d1175 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3ba9c05 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3c0b202 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xd3cf087c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3d2e653 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd3d7e34b ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f7836f gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd3ffbaac usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd4005633 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40e80e1 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xd41945a2 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xd41b74a1 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xd4246b00 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd455937e devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xd45e2395 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xd464b121 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd475b56b devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd48ccc4b sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xd4aa3c2f crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d7e65a gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd4e1c53e ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd4eb96b3 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd4ef2a28 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xd4fee27b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd5094b35 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xd511c7f7 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd51732a1 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd54966dd elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xd54e4507 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xd55897c8 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cf4461 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5e17af0 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd60dc8ef dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd61c5d01 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xd61edd34 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd61fcb9f disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd62df56e put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd630a7e1 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd630c8bd xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xd63932d8 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xd63b32c9 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd641b4b6 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd651657b phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67e04dd devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd68c5055 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xd6a58dd2 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd6aad8c0 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd6aea902 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xd6c5bcf5 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd6d2c0f7 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xd6f1a886 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd6f7fc8d pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7040821 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd709b5a3 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xd70b2c95 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xd70ccb4a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7388833 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74f5089 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd7723de0 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd776de1a xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd780b734 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd78ae1e5 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd79e8558 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xd79f1efc irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova +EXPORT_SYMBOL_GPL vmlinux 0xd7c87332 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7cfc198 pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0xd7d828ac cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xd7db828e unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd7dd40a6 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd7e54f96 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xd7ea1f3d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xd81a0283 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xd81a8689 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd81ba597 cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd82e0212 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xd8310ccb inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8548c54 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd85d567b dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xd8659913 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xd868fb7d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd877b738 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88360c6 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8983494 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xd8b6ca4e iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xd8b8d18e register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd8cde541 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xd8d26aba ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd8d401da regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9167ae4 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93414e0 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd93c9d6a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd949886a usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd95b1e80 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd987f25b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd995b693 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd998b96b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd99e447a dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xd9a2d8e7 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0xd9c019f0 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9c85f52 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9daa04e crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd9ddc3a2 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda293fce set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xda2cf5df hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xda542fa4 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xda5837e4 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xda85e50f pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xda9c6eae rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xda9ca5d4 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xda9de6fe spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaaa542b handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdad37841 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdb0c8490 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xdb0e5201 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xdb1051d9 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xdb1cc477 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdb5a1b22 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb7a574f dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb977c93 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xdb9cc0f3 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdbb1fddb gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xdbc0abe2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbca233a cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0xdbdf252f __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xdbe919d9 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa7714 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xdc063d9b devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xdc320702 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xdc3777bd serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdc395c70 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc66a4d5 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xdc66f777 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdc6d0959 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8bfdd9 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xdc91646b wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9ac43f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdc9b6cb1 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdcc8ef87 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova +EXPORT_SYMBOL_GPL vmlinux 0xdcdc563b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xdcddade6 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdce5b0b2 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdcec9f2e dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xdcfa1f85 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdd0014c8 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0ef67d blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd10322e ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xdd1795da sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xdd1bc3a2 dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdd277806 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3f18eb dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xdd59a01c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd67d1cb subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd6f940f of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdda6a14c cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0xddaed286 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd68470 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xddd9baef intel_svm_is_pasid_valid +EXPORT_SYMBOL_GPL vmlinux 0xdddb0f47 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdddcad5f usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xdddedca5 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xddec3212 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xde03d60c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xde078bb3 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xde30b4e6 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xde3c437e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xde4745f3 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xde6a17c3 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde719610 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xde8c1657 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xde943501 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea31293 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xdead631b pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdebb2f59 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdec9a742 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xdee6552b usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xdefdf31b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdf074135 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xdf09a93b inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf0fd2aa bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xdf12ff22 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27594d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xdf317144 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xdf44d748 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf55ecf6 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xdf64f6fe bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xdf6bb584 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xdf6fadff nl_table +EXPORT_SYMBOL_GPL vmlinux 0xdf793d7d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xdf7b9989 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdf9b4e20 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xdf9eb7a4 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xdfaf37e9 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xdfb3e528 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xdfb859a0 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xdfbd9e7f to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfce4c47 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xdfdcec1f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xdfea7d09 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c711c devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xe00ed966 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe019db67 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe029a307 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0562648 iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe05f5cf8 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe07efd73 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08fb43c mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c90d30 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0dbed87 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1287d3d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe130defe mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe1319b7a tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe152f963 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe171b006 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe180b90a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe18528d5 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe1908060 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ca8af7 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe1e12efe fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe1e6bd91 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ff3078 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe2020462 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe20ad2db nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xe215cc68 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe227a5e0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe237a1c9 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xe239f8bf sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29dc263 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xe2b068f3 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2f6fe89 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31bc1a7 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe39dec3c rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe3acad02 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe3b45619 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bf9122 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe3c1149e devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe3c6d262 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3ef8539 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0xe40235df ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe407cf15 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4168c83 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42b231c sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe438dedf sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe45c7b1a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe45df013 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xe467b1bb genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xe4687817 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xe46a960e d_walk +EXPORT_SYMBOL_GPL vmlinux 0xe47cbadb blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xe483ae04 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe497d3b6 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe4ab36e8 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe4ad1958 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b8302f regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe4c14366 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4e2bac1 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe5093167 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe50983b1 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe50ec98a devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe5303de7 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xe53492bb devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xe53600b8 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xe562a60c cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5990dbf wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5a15f4c pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5a18ed1 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xe5a6929f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe5ec1916 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe608c212 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe614f839 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe626f8ae usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe63c39ea led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xe642f202 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe65e30d9 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xe69e59e0 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xe6a1e879 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xe6a2aaf8 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe6a83d5e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xe6b83f06 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe6ba3503 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe6bc336b blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0xe6d75b22 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe6daea18 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e9242e hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70b8cd6 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe721b794 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe724f09d gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe747a24b dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe76275aa handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe775924e bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7960688 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a5b48b dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xe7aee51a irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe7c47096 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xe7c97022 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe7d3c8f2 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e843ff transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe7ee0a6e fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f75fb9 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xe7fc9a87 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xe7ff2687 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8540c36 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xe85f95b2 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe874fa4f __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xe89ed64b devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xe8a0c8d8 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8bbb8d8 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8bd4b6e ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe8bed09f gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe8c9c0b4 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xe8ca3cf3 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xe8e86b0c __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xe90287f0 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe905048a xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe91fd99a md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94c3313 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0xe9894fe6 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xe9a67420 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe9a87a23 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xe9bc49a8 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe9bd3820 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe9bf61aa evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe9c00222 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xe9c288b8 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xe9c297d3 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe9c596d6 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d0945b regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xe9d154f2 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e21d93 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe9ec0d07 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe9ec5a79 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xe9f0c0b2 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea352e54 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xea3e4e31 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xea4a58cd xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xea4cbcce wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xea5ccb1f blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xea78ab39 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xea95bfcb usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xeaad42df irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xeab452d2 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xeac89f4e devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeadc8d9a sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae34bb9 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeae79b70 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeafb9df8 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb055c6a rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb0c2988 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xeb120665 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xeb385760 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb526caf class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb5e878d sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xeb806bed tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8a7902 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xeb8c4e73 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xeb98fe76 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xebaeddf7 device_create +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd07c78 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebf4f64e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xebfef1bd pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xec05bf6c regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xec1628e6 pv_info +EXPORT_SYMBOL_GPL vmlinux 0xec23a8ca posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xec393ddc inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xec3d14d9 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xec3e674a blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xec424350 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xec444df6 component_add +EXPORT_SYMBOL_GPL vmlinux 0xec49e16d nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xec560b0e bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec7a45b8 devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xec8e8f29 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xec9315fe clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xec978a80 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeca73a1b devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecefad1a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xecf1e4e9 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xecf27912 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xecf9badd regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xed0e93dd i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xed2725bc fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xed2d4e3e irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xed2dc4a4 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xed2e1e27 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0xed4a0f50 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xed7503d3 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed806727 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed83a6d3 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xedb62a4f l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xedc5fb85 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd6dc73 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xeddae5a4 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee128eae irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1505e3 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xee1ced2d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xee266114 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xee2cec75 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xee2f6fc3 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee39935c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xee3c2596 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xee4a0e42 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xee60f31d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xee66d6d0 regulator_set_mode +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 0xee7852da devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xee7b675a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xeeae34cb fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xeeb09c11 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xeebb0f5d bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xeec5a6c3 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeec689c6 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xeecef1a7 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xef15ce89 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xef1c9b96 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef35a454 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef487ec3 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef96b3ff devres_get +EXPORT_SYMBOL_GPL vmlinux 0xefa13ac7 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaf812a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xefbb4487 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xefc916d7 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xefd1efbe to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xefd5c8bf sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xefe811d4 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff602af scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xeff9dfc0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xeffc0236 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf001b033 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf032b3c5 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xf043cf08 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04840e3 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf04d9bc0 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xf06500ce key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf0692658 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf073ae28 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xf0768466 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf09f3d9e regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf0c0dc46 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xf0e6f7a2 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xf0f796e6 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf1047574 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf1175f84 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf11abb2c setfl +EXPORT_SYMBOL_GPL vmlinux 0xf11f6971 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xf121adad blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xf122fdc0 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf12e0969 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf1443ff0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf1681554 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf16beabb da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf176c01a pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf17d0c3a rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19d8bf4 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c80d11 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1d6d390 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf1dc755f pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf1fba690 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf1fc22d5 spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0xf2127abc hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf21d38fc vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22148a1 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xf243b463 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf24b88c3 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf269d2e9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xf2723bf4 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28d7f7b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf292e83b pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf295267d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2a69b9e acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2addacb device_rename +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c039aa iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2c4eb05 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xf2c8896f dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf2d5bf36 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2d5c397 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf2e22df7 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf2e48852 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf304665b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf315ccca pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31755e4 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3267673 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33ee0a0 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf358e106 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xf35b7602 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xf362e285 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xf371d5ad pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3954f31 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c8386f dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf3caf229 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf3d53955 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf3da901c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf3df09bc crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf3e38e80 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xf40dd200 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xf444aa95 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xf446b105 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xf45ae5b0 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xf45ee7b8 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xf46223ee ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf4646513 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xf4693a66 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf46e5cfb component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xf46f3e9c badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xf4783326 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xf47e020f cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xf4828019 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf4839f5d ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xf4957cda akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf49c15eb devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xf4a20b98 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b07a9c perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf4b36ca2 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4b539c0 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xf4de522a vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf4e06751 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50b66ca tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xf50caf21 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xf51559c9 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf5278c76 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5283b89 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56cb145 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b63738 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xf5b8840d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xf5c737fa serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5dae83b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf5dc8087 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xf5ea1578 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf620d052 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate +EXPORT_SYMBOL_GPL vmlinux 0xf62345f4 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xf62f9e5d serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xf6307aba perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf632f2d7 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf64050dd extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf6407321 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf647c372 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xf64cbd5b bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf6630c07 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf681db03 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf6906df7 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6b4a7c9 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf6b61f2c rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf6b83bf6 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all +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 0xf6f6bb7e pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xf70845f3 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xf72e2123 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf739c8b0 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7485a91 clk_hw_get_parent +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 0xf75819e1 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7741b4c xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xf784347d ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7942e36 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7a48ae5 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xf7ab1a89 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cce839 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xf7d3faea cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0xf7f4933d wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xf82b9cbc platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf85d88df clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf86739cf driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf877cd52 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf888bd5f balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xf8b358b6 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf900b4c8 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xf9136af4 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf9287a21 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9352452 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf944515c bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf951098d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9549459 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95a226d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xf96dfdfd dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf97b816e acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf981afb2 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xf989b104 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xf98e6fcc devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xf9914558 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xf9952b08 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xf99f7b61 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b1f1ea ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf9c3dff5 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf9c72cc7 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xf9c9b744 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf9e5816d tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xf9f5ffc9 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xf9f830f0 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xf9fd3f7b blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa208569 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa3a4b7d trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0xfa4d9b95 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa61c70e __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa70e13d sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa78bfde bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xfa796714 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfa7c4e08 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9ad052 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xfaaef7cc devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab5c89f devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xfab906a3 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfac1ee11 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xfad01533 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfada9c16 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfae64608 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xfae90349 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xfafdf784 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfb0ff6dd __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xfb252d0a i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfb2b425b led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb58b730 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xfb60ca09 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7fd468 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfb8049ba devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfb8ca8d6 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd265ba irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xfbd30941 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfbdd6f5f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xfbe68e20 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4493a3 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xfc475939 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xfc567b54 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc7242f5 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xfc7ec874 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xfc9877ff event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xfca108a2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfca9ccc7 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfcb57ee5 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcd1e962 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xfcd578c3 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xfd0accbb clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xfd26f96c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xfd36c481 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfd3f3f7a pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xfd41eff1 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xfd5732f8 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd74d9f6 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xfd80395d extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xfda1b354 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xfdaa660e crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xfdaf51c7 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xfdb71c20 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc6590e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xfdc70e7f sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xfdc89404 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xfdd7e5a3 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xfde032bf da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdf22bc6 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xfdf25325 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfdfbb4ae security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfe009a29 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfe0b5f49 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0e98c5 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe341310 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xfe3b4e47 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4a575f mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xfe608c6a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7ef2f5 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe8d9c9e clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9cca77 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xfeab0d4f xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xfeb04cfd ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xfeb42da2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfebd5452 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedb2143 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef0ad46 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1c6c58 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff225165 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff336199 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0xff33fe6e debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xff364177 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xff4e4e6b debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xff543c21 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5c1f02 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xff72a08e devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xff8a2845 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff9829bb ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb9222e handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xffc50cce udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xffc7004d dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xffcffe84 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfff642f1 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xfffa7b27 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xfffefcb4 register_asymmetric_key_parser +USB_STORAGE EXPORT_SYMBOL_GPL 0x0bacd85b usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1367cc1a usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1ab1adb0 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 0x40a11acd usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x417f77db usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cd9eaa0 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a826fa6 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f59db4d usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8a419fac usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8d6d6f58 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8ddc5386 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9fdaa04b usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa2e524fb usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa383a3cc usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaffcea0f usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb3570748 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb63069ff usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbf9db457 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd2b6a482 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe70534e8 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe9d9d72a usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb4cf051 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfb64c8a2 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfedafb91 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/generic.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/generic.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/generic.modules @@ -0,0 +1,5505 @@ +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_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +BusLogic +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +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 +act8865-regulator +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +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 +ahc1ec0 +ahc1ec0-hwmon +ahc1ec0-wdt +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak7375 +ak881x +ak8975 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd-xgbe +amd5536udc_pci +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apex +apple-gmux +apple_bl +appledisplay +applesmc +applespi +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +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 +asb100 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +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-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avmfritz +ax25 +ax88179_178a +ax88796b +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 +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs-drm +bonding +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +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-j1939 +can-raw +capi +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 +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-pltfrm +cdns3 +cdns3-pci-wrap +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha-x86_64 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8505 +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +chromeos_tbmc +chtls +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cio-dac +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-max9485 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5341 +clk-si5351 +clk-si544 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +contec_pci_dio +cops +cordic +core +coretemp +cortina +cosm_bus +cosm_client +counter +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpu5wdt +cpuid +cpuidle-haltpoll +cqhci +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +cros-ec-cec +cros_ec +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_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_kbd_led_backlight +cros_usbpd-charger +cros_usbpd_logger +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da9030_battery +da9034-ts +da903x +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_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +de2104x +de4x5 +decnet +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +dl2k +dlci +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-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dps310 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-edma +dw-edma-pcie +dw-i3c-master +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-pci +dwmac-generic +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 +echainiv +echo +ecrdsa_generic +edac_mce_amd +edt-ft5x06 +ee1004 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehci-fsl +ehset +einj +ektf2127 +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +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 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_ddc +fb_sys_fops +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +floppy +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fschmd +fsia6b +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_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 +gasket +gb-audio-apbridgea +gb-audio-gb +gb-audio-manager +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 +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +gigaset +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gm12u320 +gma500_gfx +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpd-pocket-fan +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-adp5520 +gpio-adp5588 +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-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-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpu-sched +gr_udc +grace +gre +greybus +grip +grip_mp +gru +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd44780 +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi311x +hi6210-i2s +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hio +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +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 +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hyperbus-core +hyperv-keyboard +hyperv_fb +hysdn +i10nm_edac +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cht-wc +i2c-cros-ec-tunnel +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mlxcpld +i2c-multi-instantiate +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-parport-light +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-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +icc-core +ice +ichxrom +icp +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx214 +imx258 +imx274 +imx319 +imx355 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int3400_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-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel-xway +intel_atomisp2_pm +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_cht_int33fe +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl_common +intel_rapl_msr +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +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 +intelfb +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_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 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +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_cxgb3 +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 +khazad +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +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_gswip +lapb +lapbether +lattice-ecp3-config +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-apu +leds-as3645a +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxcpld +leds-mlxreg +leds-mt6323 +leds-nic78bx +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +legousbtower +lg-laptop +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +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 +lmc +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lockd +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_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 +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +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 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-thunder +me4000 +me_daq +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +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 +meye +mf6x4 +mgag200 +mi0283qt +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +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_sound +most_usb +most_video +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msm-vibrator +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-quadspi +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxm-wmi +mxser +mxuport +myrb +myri10ge +myrs +n411 +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nand +nand_ecc +nandcore +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nic7018_wdt +nicpf +nicstar +nicvf +nilfs2 +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_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvram +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofb +omfs +omninet +on20 +on26 +onenand +opa_vnic +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +panel-raspberrypi-touchscreen +paride +parkbd +parman +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +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-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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_pcmcia +peak_usb +peaq-wmi +pegasus +pegasus_notetaker +penmount +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-cpcap-usb +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-denverton +pinctrl-geminilake +pinctrl-icelake +pinctrl-intel +pinctrl-lewisburg +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +processor_thermal_device +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptp_kvm +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pxa27x_udc +pxe1610 +pxrc +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qca8k +qcaux +qcom-emac +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom_glink_native +qcom_glink_rpm +qcom_spmi-regulator +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1b0004 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +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 +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rndis_host +rndis_wlan +rockchip +rocker +rocket +rohm_bu21023 +roles +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-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-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wilco-ec +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +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 +sbni +sbp_target +sbs +sbs-battery +sbs-charger +sbs-manager +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +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_fq +sch_fq_codel +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 +scif +scif_bus +scr24x_cs +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +seco-cec +seed +sensorhub +ser_gigaset +serial_cs +serial_ir +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh_veu +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shark2 +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm3_generic +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc91c92_cs +smc_diag +smiapp +smiapp-pll +smipcie +smm665 +smsc +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-acp3x-pcm-dma +snd-acp3x-pdm-dma +snd-acp3x-rn +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-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-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-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-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-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-rn-pci-acp3x +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +snd-soc-acpi-intel-match +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-bd28623 +snd-soc-bt-sco +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-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-imx-audmux +snd-soc-inno-rk3036 +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-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +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-rt5660 +snd-soc-rt5663 +snd-soc-rt5670 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +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-skl_hda_dsp +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sof_rt5682 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-atom-hifi2-platform +snd-soc-sst-bdw-rt5677-mach +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-byt-cht-cx2072x +snd-soc-sst-byt-cht-da7213 +snd-soc-sst-byt-cht-es8316 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-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-firmware +snd-soc-sst-glk-rt5682_max98357a +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +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-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd9335 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-acpi +snd-sof-intel-byt +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-intel-ipc +snd-sof-pci +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-intel +soundwire-intel-init +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sps30 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +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_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmmac +stmmac-pci +stmmac-platform +stowaway +stp +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +stx104 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3-wmi +surface3_button +surface3_spi +surfacepro3_button +svgalib +switchtec +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_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 +tea +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 +tgr192 +thermal-generic-adc +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-ads7950 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-tlc4541 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +uPD98402 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +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_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uv_mmtimer +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +vcnl4035 +veml6070 +ves1820 +ves1x93 +veth +vfio_mdev +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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 +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt-dma +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvrdma +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vop +vop_bus +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wd719x +wdat_wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wilco-charger +wilco_ec +wilco_ec_debugfs +wilco_ec_events +wilco_ec_telem +wimax +winbond-840 +winbond-cir +wire +wireguard +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-plat-hcd +xiaomi-wmi +xilinx-pr-decoupler +xilinx-spi +xilinx-xadc +xilinx_emac +xilinx_gmii2rgmii +xilinx_sdfec +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xlnx_vcu +xor +xp +xpad +xpc +xpnet +xr_usb_serial_common +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 +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zunicode +zx-tdm only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/generic.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/generic.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/lowlatency +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/lowlatency @@ -0,0 +1,23852 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xb11d45df kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x1aabad2e crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x2930acff crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x5288fb41 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x52b9ca09 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x74d0ee21 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x8508750c crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/sha3_generic 0x8fd45541 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xa50b1771 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xe8d81fd5 crypto_sha3_init +EXPORT_SYMBOL crypto/sm3_generic 0x49517dbe crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x6026ad29 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x0cc6064a acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xb26b2d16 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xc41d4f3b suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x0b506ae0 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x11c00baa bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x50695e8e 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 0x23918c84 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3313e65f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5a0ca219 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x76e1c4e9 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8a75ab9f pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xa3c8c935 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc7b4fe7a pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xcd3041da pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd9db4458 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xdca977ca pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xf2184302 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xf535837d pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x966f5837 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x8e93bdd4 rsi_bt_ops +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6867e4ef ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7a26e870 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb311313b ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf71ab112 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x36439f07 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9d62323a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd3478bca st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xeb6c9008 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x23090fe3 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x40849853 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9db4f436 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0894a7af atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1d237bb8 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x2e8f582a atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01906bd9 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08c23b99 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f81410e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2dcde373 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38790956 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3adc92ad fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d20c9f7 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x574f6435 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c994428 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x71d67026 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90a889fa fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x92c28664 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x97cc003a fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9cab8c38 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3d0b98b fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa873887b fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae42cb2e fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaeda1849 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb0717cdf fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbef5573 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd07e299a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9736018 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc667b40 fw_iso_context_destroy +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 0xe88aa078 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeadea28a fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf506d1e8 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/gpu/drm/drm 0x004f7115 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0090cf6d drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00bf4733 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02cc4a11 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039657d6 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x055f2853 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b5b9a drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x090ebcca drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09291591 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a426277 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b418732 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b9fb7f5 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca69292 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca8f3f5 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7454d6 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f21cc48 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa595ed drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10597403 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f07c49 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1165401a drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a8eb4d drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ba7db9 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1440e4ce drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b79870 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f4d292 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18816cfa drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189a5a6c drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x193933e7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1064d6 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b2c4d23 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8d88cf drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f085362 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a3fbbf drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213dd79c drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213ffcec drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b5b2a3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e6ccd2 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25002b1f drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25bc9835 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a780e0 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b2ec9c drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d23bb6 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29013a44 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29339114 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a723fd9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a93f718 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af34de8 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af70d36 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cca9503 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5f1c34 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed736b8 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed9c6a5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3104d44a drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3113223c drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313bfeb9 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3164900e drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x317d948e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3207d596 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3272b2b5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x329ba11b drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x361d6b37 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364c7752 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3698e7c4 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3726f014 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x375f78cd drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x383ef960 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388a50a8 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39efe6be drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b16d6d2 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7de6b9 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c5d5941 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c85f9e9 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd38fc1 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e117065 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f6cb4 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7395bc drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e95c418 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x430c85c5 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4458c98a drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45442d18 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45bc9640 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4655d4c2 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a6ba4e drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c498ed drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483da8ae drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x489d2e96 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b8fc14 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491385b0 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b20788 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5388b1 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c883643 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4fc109 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e276795 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec1054b drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5ae9d0 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x547fcf43 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5534c70d drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c70d37 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5743c596 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b641b4 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5811b539 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58179fd3 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5862c819 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59af79df drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0fce3f drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a9cf7be drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b6dda6c drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3f6e96 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db48507 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3a1614 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e64441b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ebd02e9 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f149dc6 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fcb1101 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61702d96 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6170e496 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c17acd drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fea3ce drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x639927e7 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64831cb9 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f9c2c6 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6501a215 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66414847 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x668c1e37 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c1cf49 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0a9b8a drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c91bc24 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da373e0 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc8cc4f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dee3250 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed0e7c8 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fba1a31 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70af3458 drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e53cdb drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72340051 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723a2a86 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x724d8767 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c3ed5d drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72cc9c79 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e4ce93 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7456ec7c drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d5818b drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764adec1 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x768697c8 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b9d1c6 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ff0d49 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7712bab4 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771addf5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7873e1d6 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79f68724 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79fc8dd5 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a308c30 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b3f81a9 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc2ae5c drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1a0cb1 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb908aa drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cefd94e drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf2f580 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d89c04d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e87b9c7 drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee62d3f drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f09e012 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x803a440f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x806d278d drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80cfc06d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d6eb79 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82391fd6 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8339ea3e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83e869a7 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84714662 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e303c5 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x861437df drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86524c6e drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88406b95 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b9af0f drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b73f13 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a849e41 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b16406f drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b220208 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b243d86 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b304c06 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8beb8ec6 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9f3b62 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e69d68d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecab8e4 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed6d347 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f0b710b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f68386f drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ffb3c86 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90526bb4 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9397d863 drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dd3f84 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bb2b2f drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99744e4b drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a31f8e drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac8cb88 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b67c5e3 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b873a5f drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc664c5 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcf8820 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf47537 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6b76b2 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8f6217 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccde776 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf6faef drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa056b647 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa12dcdb0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa198af00 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3611cc6 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa404b192 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa43f3c9a drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa489d09b drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4be6d56 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa507d833 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53b35af drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa656c6b3 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6bcb7dc drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76d105d drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8651ce4 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86a1783 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa999c52d drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac572146 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacede1e1 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3817c1 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada1abd2 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae23bc10 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee698f0 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd0a39e drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb023b63a drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0e559d5 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb179d08b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30bbb8c drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3171925 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b8d3ca drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4df3fa8 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb648ef67 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68370e5 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb70ab414 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7819f7c drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81ae09f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb99f799f drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1b3298 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb72ca36 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfe5d8b drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0f9267 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc33f083 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd64455 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf1052f drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe2a4ee4 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeaea4b8 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf834f42 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdea327 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc197f7fd drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ab822b drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc201f4dd drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc230f7fe drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f4c0b3 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc384699a drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e31e6c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3eeb7b3 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40179ec drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5158ba9 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc52555f3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56056b7 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57bc199 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b257b0 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e22ab5 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ea40f5 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81d7580 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc820ee57 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a38e5b drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc973a78e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca492035 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad8bd63 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaf44ca4 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca1c60d __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc48f81 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8bbf6e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcfa080 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0839b4d drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0adcd74 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b41e26 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d8d3ba drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21b116d drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2eb6989 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a84363 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3aa9775 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f9d998 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd445943a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4594e7a drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4910171 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d13ec4 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f8c959 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd526167c drm_agp_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ee033f drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83af12d drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c9a1d2 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda0d1cff drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbab87d8 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5e9f91 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd561838 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddc3c84 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddf9d96b drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde64af1f drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec441ae drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0786780 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17c768d drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3323098 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36d1f74 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47897d2 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5384c8f drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe595e1f0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59d40b8 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60446e8 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d23246 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7199b8d drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7acbbfe drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe820fa01 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87c63d1 drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91dcf33 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93f0d90 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9fc00f1 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2b905f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3a329b drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb62568d drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb65177 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebbe1fcd drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec30ce4e drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec6c3f09 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed751a2c drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb1e7bc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf112e534 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1341bc1 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27f29e3 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31ce93b drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf34ebfc0 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ec96bd drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf536fa70 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6323763 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69e2b2c drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf73e74f9 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ae8c51 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90aadc9 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98b2403 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1cb802 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7394bf drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafdb6ec drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd798f6f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8c6b9d drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd910d4f drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd95ec3d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb8b390 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffed17d4 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0150cb1e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02f4a280 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030243ff drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03b3ccdd drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045c5003 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x056b0446 drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06844047 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0906e19a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aacfd48 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc8745f drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be32c4d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be99351 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d29acea drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d468dd5 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e7d1d79 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ecf1fbf drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1352bafe drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161d54b2 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166a927a drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c440d1 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x180e6df7 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a97f2ad drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa373d1 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c280773 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c2c8092 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce86c52 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dc2304b drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e3ed051 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea572ec drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x209f6cb3 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f697b6 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x225c7d71 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2261d836 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x257781b7 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2692965f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28a50ac0 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28aa6d42 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a0f5678 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b0ed766 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb34266 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d72790e devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2df72b5e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f0d20b6 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f66bb4d drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ff609e5 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3026e9c0 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x311536c5 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31394695 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x320a96fb drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334762be drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355ee514 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x364aa85d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37eca132 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394855ee __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c726ad8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ce90085 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e3ce19e drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e954342 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x407a247a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40efdc7b drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48f7294a drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49a2537a drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c67fcf drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c4560e2 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e033f3c __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e6a3a89 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fcc1035 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50455a15 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52cba260 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53691aab drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x542c7d1f drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x554d0426 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55dfb39e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5763f5f3 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a29f517 drm_atomic_helper_crtc_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 0x5ce1905e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e20c5e6 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fa009bd drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601131e5 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61325539 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b93763 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62351cd0 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632d2b79 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x646689a3 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e5235c drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dce413a __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x708868ca drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a69929 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72af2a2b drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74bd9823 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75576117 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76333fb8 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766ccbed drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7772d223 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x781d6d1f drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b44bd57 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ba44559 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cbddec1 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d2d1a32 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d75547c drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f766970 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80440473 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80803b23 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d00c57 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8145d7f6 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83146cab drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868f22a5 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x878078f6 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f1c8ade drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f3b5c0f drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f6514c7 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e44df2 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a2fa30 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92ca5586 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944715af drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95068ec7 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9607bd3f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96314cce drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96523efd drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f93fad __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x974cd5e0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9789a6e8 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c50d18d drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eefbaaa drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa22df3e6 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4605f98 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b03121 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ce0cfe drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d2b220 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6889718 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68b2245 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a3a768 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaed6e87b drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb15c0b34 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb17f326e drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb31edbc4 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4a2b75c drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a3f00c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6ebe921 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a0cc15 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7d6ed0d drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ae63a3 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb96e16fe drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd64653b drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbed65bbc drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3c0811c drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc510004a drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc58f4f8b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7cbbbe0 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f97658 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8cb9034 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca95b462 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcafc090b drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd18d7df7 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd229205b drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd28f7672 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3f50695 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd45c45ab drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61101ac drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7725248 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd84fad19 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9364af1 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd96e66b0 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ecfdb7 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc356622 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcccd90f drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddac1602 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe11091fe drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe45dd756 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5cad9a8 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68a3537 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe793a2af drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe80a7853 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe830d5b8 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea821ad7 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb6d311a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee602266 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff9a890 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf181d87e drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c457ac drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2cf0548 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e0b122 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2ff6f01 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf319589d drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59afe7b drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c270c9 drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7431adb __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8618362 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ce5852 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc9395c7 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed2372a drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfee456e7 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfef982c7 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffac267b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffcaac49 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x049c62a3 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3096448a mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x34d1aea8 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3770557e mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37f5e15a mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4416312f mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4a276485 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5165799f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x51d55ebc mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5f19aef2 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ec4e80e mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x73d3213b mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x981b07c4 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa37c331a mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb70f9ab5 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb7735c52 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdd2e9a34 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfb9f705f mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ecb95c5 drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x15eb185a drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1af05ca2 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x332e976c drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a976426 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x421eaf5c drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x517f5872 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x651a53c5 drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x685b327a drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x79639d04 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9c3680d0 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9d46de54 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaff609cf drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb5eb03db drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbb51642a drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc51a093f drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xccd3d81c drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xebf54494 drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xed43eef3 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf1937b81 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x26cf2019 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x276cef52 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30696564 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40d85b8c drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x44ec04da drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x51365497 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56f4d062 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6a3385e1 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e354ba8 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x753e5ca7 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76f7c226 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7718a32e drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88f80890 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x97d60d1d drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb32e3e2b to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbb67b1a5 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd9097795 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec685fca drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf47dcbaa drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07e7f2a8 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c3e6cf4 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c915de6 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0de2ea4e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14b6712a ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16459448 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c12ce07 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c1b0585 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27c2acc7 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b6a5e18 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ce81e41 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5c4ccc ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30531b31 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33970d5d ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33a63c2e ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x340b5bf2 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x373aa0a2 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4232c143 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x431614f4 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4736be88 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a9eb923 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57aa5c87 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59fa5faa ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64872f1a ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67a05dda ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d72e438 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x790c81b1 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b151b3d ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7eaa7477 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8221fcd6 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8361f658 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89213843 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x899fd309 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dee7928 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fdc1480 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x932c38c5 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x959def6d ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96c6c11a ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x979048e4 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98a8397c ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e4b585a ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1606171 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa52284e3 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf5c4056 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf7078fc ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafafc7db ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6bb2b57 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb81ab8e ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7db03d ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1b3f852 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7b1eff5 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9492a9b ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddf4085b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf855c1e ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2a1b034 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe553f546 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe900ba78 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea1ed44e ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec079289 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedfa1f5b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee1ddb9c ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf505cf67 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8febced ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb0c3903 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfba83181 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd77a6c4 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/hid/hid 0xd128053a hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x02bcfb1b ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ffe37bd ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x17fb6e12 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x204b8f25 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x210d9cf8 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x240e17d4 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2e297a60 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x433a334a ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4b08ed29 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4dfb580e ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f5fed2a ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x549d7022 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x564233cb ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x596103d5 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 0x62a0e9df ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x68e0a2dc ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x73d5fa9e ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7a7bbd8b ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7a874339 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9161e207 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x948e5791 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9affc0ff ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e208564 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa1e55454 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa495979d ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa9e7fb4f ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaa4c1742 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xad5d09e5 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb374d173 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb929ee9a ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc290db9f ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcf8654c8 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcff04a34 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd4228ed5 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd434559b ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd442e5b4 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe16130f9 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe39865a7 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe590b2a3 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe6db3392 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe9973a29 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf31b0186 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x46a20b26 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x520b5d3c vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +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 0xbce3ea22 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x021ea261 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x14edf619 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc9c11307 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x07c5591e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe596d7f4 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb31b26e9 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x093ae535 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x65057a48 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb62d37c7 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b02a3eb mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2bb5c98e mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x31206d18 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5496bf79 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x768d959f mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7d22785a mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9e229a3a mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa01f3836 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xab7e7cb9 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaf9f06c6 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb260564b mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbb8766b8 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xccc802b0 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5a0f49e mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xedf4b6c7 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf5348869 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0bdf67f8 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0e07d4de st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8586da60 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x89f220b7 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdbc1d6d9 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x425bcae2 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8c1ec652 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa6abdd65 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd20ce5f4 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x0c6f4371 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0b0dade0 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1d37d38b hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x300aba63 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x36f6f5f7 hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x80c94b24 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8c145425 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc9cfd874 hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xcb1517dc hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe1bccaa0 hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf8aa07fc hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x359122b1 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x57ea01a8 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7562541a hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc88299bc hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3cdaef6a ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6dd453ed ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8149e515 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9f12c638 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb8abadae ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd36d3011 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd7086677 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xda95cae8 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfdf58889 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x40885186 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb1f13d2b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc7e40117 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe35ef095 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf85b4f8c ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3700454e ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa4bbfa89 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb56d8d34 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2839bc51 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3308d733 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3b86725c st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45877572 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x474700ad st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4d1a002c st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ddd4536 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51eccda3 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x52df2ac6 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5547540c st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x674896dd st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x71b902a5 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x761dcad6 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x87f7b4ea st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8886c489 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xadd01474 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe711582 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x111d06be st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x303624da st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xb4734a85 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x62d8abc0 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc4653c39 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf3654fa3 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x19896ea6 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1e0cd3d2 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x985a2840 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd7ee6e33 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xfa554510 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0b497d0c adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x31b117e7 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x8d74bccb bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x69d5eba3 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8d25a5d6 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x060781e4 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x27160cbd iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x2b505833 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x34187c82 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x3f91e4b3 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x49baa3a2 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x58cd3b53 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5ed49666 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x786d5c7e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x83887d19 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x9c2902ac iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xa7cd1dbf iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xab03d87c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xac6ce528 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xafd860bc iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xb7e879fc iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xc35026fb iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc59dfc45 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xd362b527 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd8447b52 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdb23dff2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xdf330089 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe0bb13a7 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x49ee8a13 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x399646d1 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x481e7b97 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9f150d20 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xda71920c iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0323e0c9 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4caf38c4 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x52c537a9 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9e943bb0 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x138b1727 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x20e384b2 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x04b34244 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x5f1891c2 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3d3af4d2 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8b5d1952 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb3fed5f5 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xcf854eeb bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2a5261f1 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3f8d3ac4 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x71ceddbd hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xfbd05ed6 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x83b62651 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x887da507 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xec76402f st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0a73a140 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0d6bfcbc bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xa84d23a4 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe0f57c22 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe7581ddf bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x63264771 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xa413f626 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0863fe90 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x498c6924 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7aa2e8c2 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04489de8 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04555c04 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0881e6f1 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a4c5657 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b1614d5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1cf0a353 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29d22e76 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a11ec65 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c7d979b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x374946e8 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c7a7437 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94a72687 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9fa36ce4 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xacf06439 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb20e7684 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb38b4e0e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe2afd8f0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf326a08d ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x009aba5a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x015be0ff rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02acf457 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e150dd2 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e1a13f8 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f14687e ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f9ec850 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ff9d5e5 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12e0b87e ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14b8b623 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1504dabe rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156f49f9 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1656d979 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d1dee6 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e078a28 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e364a51 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e59ea9a rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eacc941 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20edfd75 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f0ab26 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2235ccb4 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d28ed3 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x240578c6 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ff3d14 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c4e207c ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c6c80f3 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cfd1207 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dc8e4ec ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe770ae rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32580e6b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x333c332e __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x334e56a3 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f6a27e rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x367a3ba0 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36e456d1 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39141856 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3928b64b ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d42cd2b ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db989d4 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ece4782 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40110c76 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x414a4c8b rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42f0069f rdma_modify_ah +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 0x47811c8b ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48292376 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x487e17c7 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d55630 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a1d41a6 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b133def ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb8234e __ib_alloc_cq_any +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 0x4ec4706f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f6bc9e7 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x516d7938 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53c63b9d ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5546ef61 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55b3d241 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bcce1e ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55cb1be1 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x560133f1 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b567fd ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58ada2ae ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59383afa rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5956248a __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c570893 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efb5508 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb4db2a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61246416 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61bae522 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64c13504 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64d0d47b rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64f992c3 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6682092c ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66ae59c4 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67a056c7 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6864bcb5 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a879b8 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a8b1c26 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bcb7182 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ddb7552 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7417716a rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77068f1f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77472094 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0d4987 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ac46785 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d6a35f2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e45d6ab ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bf9ecc rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f905a7 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83553458 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8515677b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x856487b9 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x870d2b39 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8744fc94 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87578deb ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8796b2bf ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x894af6fb ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x897c390b ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x899c4e6f rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a1d63bd ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bf8cbed ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce930ff ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e205eb9 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fb4698e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90dd6f0f rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91162e8d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x915c988b ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9304d941 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x957fedc5 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b35b98 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b7c118 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a57ad5c ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ae859f3 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d07361b rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d219543 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d47c912 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e587214 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7b8a46 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9efed3de ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ffe7363 ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa16e0e97 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa278ce81 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c6dc0b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab7e78dc ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac36e89e ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad72dae6 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb06a1da4 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb48f3b26 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54c8b99 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6430e43 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6d90a64 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9cc5d46 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcb11b15 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd7c885 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe4265a1 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbef3519d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf2e6aa0 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1c09aee rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c69258 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc48a7c20 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc59c6818 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8041eab ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca02a68f ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcadf089e ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf514ab ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf6f1e98 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff9dae7 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c1bcc0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd198308b rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2591983 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2676904 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2afc229 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd307652b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd315a2fb rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd560882f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd626b2f9 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd64d91d5 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d4269c rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd845c404 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd92ac7ed ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdabb1573 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde2ef57 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3d0be7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfc3ac21 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0c83c3b ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2731c19 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe40cf2f5 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe419c06c rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f93fd5 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8e17f3d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9126736 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb8dca89 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf31a555e rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3857f33 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4eeb461 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6939981 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf78ed3f4 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e064c7 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8187f9e ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e7ccb2 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbd3f80a ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc4c605f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdd4de8a rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff7f00f6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fc1ec8b ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15356fd0 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2867bcf7 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x338a42e1 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37b957b0 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e71964e _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f8753f6 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x432bf3f0 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4433b54c uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x477fc9c2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59c41acf ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6bbf6ff5 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cb9542b ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x786b39ec uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f2ddac1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80c10e9a uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b063489 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94d4621b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x97762440 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac22844d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2153325 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe0f478a ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcac05815 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb2ec08c ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc976df6 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd21e9f57 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd264e284 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef70bdb4 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1512c35 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf464993b ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1955165d iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4c7935c6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa2337294 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa4af6722 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc9b40b9 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe9cff73a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf2b2c5ea iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd0f0f29 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x043f0336 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x141dc119 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1aa86b5a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31dcc1a1 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34cdf5fe rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3905408c rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cd54e38 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ebee032 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b9f82be rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d27c903 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6443c977 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a96b471 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7490c796 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74e205b3 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77678523 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a3e0a66 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ffdf765 __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8406f8da rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x887b3926 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d2f1106 rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d770efe rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96521b33 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c6823c7 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc98d2cf rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc455bb78 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5ac6d94 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8e7eab1 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeedc7c41 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0ec1c96 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf59cb535 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x07605758 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x271b905b rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4327a0e4 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x43b8030a rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4824297c rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x53784f68 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x55d45dda rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5bdd0446 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5be1a29f rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5da46258 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x69d3d95e rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6d8aa30f rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x82b9514d rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x84c8c258 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x859e9380 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x86e12321 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x98c07fb5 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9dcd5ec6 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa4df2ed8 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbb2b9a16 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbb9504f5 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbf53a81d rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc0583db4 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc5a821e6 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcaadafa4 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdc007d91 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe0051142 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe42f9f1b rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xee4e2200 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8178efc rvt_del_timers_sync +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d10a7ab gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x33462f4a __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x34c45224 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d430d1f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d519ab3 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7b7ee391 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf263207 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf901cc5 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd200ddb8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x17c461f0 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x26083b1f input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5167076d input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6167691f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x93e0de68 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x175dadbf iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x801289bd iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe815f999 iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x8a4d3a24 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x39f54d08 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x70813e5b ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x85f32301 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xd99d643f cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x3e1f8873 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fc94d44 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2bbabde5 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4a275dca sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x59167286 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x698626f9 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb9d4d653 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbd0f9d44 ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x19556018 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x4cb65515 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x72c52aa1 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7f432120 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xbdcec733 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xf53240be amd_iommu_free_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0a2a5425 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x133dd1fd capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x146da09c capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2499511d capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x39af2b02 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4467f021 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcda07f98 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd3a0fd51 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe596f1e8 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xebd450e9 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +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 0x0affa644 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1e97b624 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7f6a6fdd mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfdc01f4c mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x034f9295 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3367e931 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x01e478b1 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0fbe3804 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x228716f2 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22e52d43 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a4359f1 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34c2ab78 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ff89a28 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4580ad0b recv_Echannel +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 0x68046c1e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x69040c30 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a712280 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e1ac857 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75c8410f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81ff0431 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ee649d8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x966561d8 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c948bcc recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0997951 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb4046347 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc158c523 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcbdec41e mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe4863631 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe53d4068 mISDN_unregister_device +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 0x78cdf27f ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x92340005 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x2134794a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x22951d2e dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xbf72b0e1 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xfdc53956 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2615eb95 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2a8e7eff dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x923cf10e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x96f33e44 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb848655c dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc669c7ed dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x0586d727 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xc4058364 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x02e205da flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0b7ef26e flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5fecbc3c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x74d6da04 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x854cf8b7 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8ae8d524 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8b02276c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa1d8a3f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb9f14e12 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd71c2862 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd760aeaf flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xde1084d2 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf63c7697 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0e38913a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x226cdd88 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x715cc38e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd8835d09 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4872aee1 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x61269fad tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbe6ad94b vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf6c8debc vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5e5de938 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7b224682 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa27315d8 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb24386db vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe66bfcc9 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe9a4c356 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xc997ff15 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x066b71b3 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x087c2cf0 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09e5c92d dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14048662 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2dcd3bce 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 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3feecaf6 dvb_dmx_swfilter_raw +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 0x67480317 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69aacc55 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e518999 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fa6e61d dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74ec5483 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7defef8c dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7dfa967b dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8378e0c7 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93e02596 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2c98744 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafd7ba24 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc433f242 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd10643a9 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6677726 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd94d8d69 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe393ae6c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6dc4405 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef1781e4 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf89d7465 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf987c27e dvb_net_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 0x47ef9d3f ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x27639c06 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x01f34afe au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x05bb4872 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6de63d9c au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7333a9a6 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ca1c76b au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa4ade7cd au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbc071ac0 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd4c5f769 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xda7a006c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x22b39767 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xe7a4de97 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcc78c5a7 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xfc338b87 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf535c452 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x3c33e950 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd072d464 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3e5bbac1 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x5c68d788 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2fedf2d5 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x808869d4 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x757c54dd cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa2f2e64b cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa7d1def3 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x2bb8799f cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x32a87f9d dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3414bfec dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x84714bce dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa8dec13d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec1c9fe6 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ef20ff6 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f3125f1 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2505655b dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x25dea5a7 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a1eef17 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46eed279 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d140b43 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65a4dfd1 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x81b5174d dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x882178aa dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x910f73c5 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x990adf38 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa82bada2 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd64025bf dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe1e418a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x9d0224a1 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x19c35ebb dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x288c4f54 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2b2c502c dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x48fd4f5d dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x54f6338d dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe09c7631 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x313fc17b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x40011f8b dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa81f8b16 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfe3a445d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x135e30a8 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x5f74d555 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x014cf8ea dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x241060af dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2bb899cd dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5a40355c dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5b7a779b dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6c7d47cc dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x842a73b7 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ec865c3 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9f5f1c8d dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbc15cf40 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbe9efc38 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcfbed5fe dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd8b91d3b dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0e1b55ef dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1c19ec6c dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3acec49b dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5b34e738 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x66ffa56e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf14cd44c drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x6d53a14d drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x82938d6b drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb8515e23 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2032fece dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x758f97f5 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xaff5b555 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xde41b39d dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xb67528f5 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x660c06bc helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x913b40fc helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x79400204 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x6e87bcb6 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8c14fe69 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x8953de23 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xcb9a7b9b itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x5f202594 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x65900f54 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0e296cde lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x23355f86 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd8476e29 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf98f2ee8 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x5113491b lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa9e7217a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x964c8e5f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x4c1f2b6b lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1247bd84 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa8d684a7 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xab84cef0 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8938593e m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8dbdf3e4 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x32720a5b m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xc6a9904f mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x66d9fc1d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7ed7e3d9 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa54434f1 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x779cb924 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf5b1e54e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xfbbb5b63 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xd5e0a455 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x05484012 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x241d81c2 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xac2b6cb8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xba21e1c6 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xbea58386 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x21a24b98 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x1b4d3127 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xf7ce88d6 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x75208081 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x96a9f894 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x7076737f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x2c459b7d stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x60d4d7aa stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x226063f6 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x17b314af stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0fdf0b82 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xba7c0d6a stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xcae2728b stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x4406ad1b stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x873a46f6 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x088973b3 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc96b65cb stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x003a53c9 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x6b6627a7 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x0de73ae4 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6a066792 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7ce6d83b tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x5a170b32 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x95569436 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xbb9f74c7 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x55011caa tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe5412971 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1acf26b1 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x186cdc36 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x3099e19d ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x9a26ddd4 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf3643364 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xff2bf9a3 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x3eb5b7db zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc8f5a116 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xb8ec5c99 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1ac0686a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x36097b84 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x39b28c16 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x39bf61ec flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x891ea6d9 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb9dafe75 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xce4b157e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x43cb6d29 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbb33b665 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc876f810 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd75368d6 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x158bcdf3 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x16acac7b bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x20349435 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x03f32128 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0d6c446b rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2299b00a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x69aaebb5 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa0ba7992 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb9b8ff5b write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc1a2fb20 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf7d0db84 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xffcc951c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x2838f13d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0495eb17 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x23b59cef cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2fbf90ae cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6cbcd10d cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe10adef9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x1a3100b2 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1c78c286 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3db303f2 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x620e937a cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x96a10b2f cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa4a57ad2 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbd93af87 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 0x823bb30f vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9fd1d120 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa0b16a8b cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xae0f6fad cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdd6c6eed cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe7fda0f6 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1da5b6c3 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1dac5126 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5205da32 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x530f1550 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x82f2d151 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdc7a1ab3 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfa3b1e6b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08779706 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f8ee82b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x285b8664 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3fb800fe cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46597771 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c812797 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4de35178 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c26a7d9 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e4aed13 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x820ba069 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87bd2e09 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88b8b62d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x911bb281 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0b397d4 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6b0af1a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf47a609 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7bb98c1 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee3ddf17 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef08b616 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef45ccfa cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23a8ae28 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29065052 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2ea31028 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a44658d ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x556b1f52 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x600381f1 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x97f14ca1 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaba5b2dd ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc51a17e5 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc56c3791 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc70b103a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8768d0e ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd6333aa ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd34469e4 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe202e6f7 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xebcc2ebd ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9eb43d1 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0d28bf11 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f67fe5f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3026aaca saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x45de58f0 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x740bce7d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81e6e920 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab7d469a saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd2f803e1 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd8b9dcc9 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdc766bb0 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf89f139 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x62af51f5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/radio/tea575x 0x28e5c7fd snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x505a6a1a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x53bf42d6 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x77c7403f snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb31b6711 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdd46eac5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xea84f16b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xacaef42b ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe49694ae ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x2aeb3b27 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x65e51222 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0ffe81de fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd013c10d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd95cd0df fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x4251005a max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe34d9d08 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x3b4d47e4 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x70b65718 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x62801a06 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x8f7ba753 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x4571fcd4 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x36e3e460 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x53b403de xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x35bc6725 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x30ef78f2 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x343c40dc cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc84f8c77 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02d19a27 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x10aff8a4 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2cbfcc85 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2dc74c3d dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3fbee284 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9207017c dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcb71f6c9 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd8bf1723 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfc9fe301 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x16c3a3f5 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x51c5442e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5265ae64 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6d07aed2 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc52eef32 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd4e035fc dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe6c6a932 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 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 0xf83a3865 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ac45d3d dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x42931057 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4a35838a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x604cf27e dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa61423ed dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb464167d dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb50afd69 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe7f7e094 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xff3f5061 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x8ed88d2f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa24c61db dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8cdaee60 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfef49630 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e1350a9 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1cbddc89 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6e45f0a6 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x72f4ddb0 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77d1a40b go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8204a473 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8214e030 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb89ebb3c go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe34c0a14 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x343fc6d1 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4e9fb87f gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbf691c32 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xca2e01f6 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdc9e9ed5 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdea5d95a gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe0b170f9 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfa2d2661 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x085cb280 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd994d90e tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf7254ef1 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xda014c38 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf1c64df2 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x63796ca4 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc3523eb1 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdef1cfd5 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x020acaca video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a3f63ca __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fba8284 v4l2_ctrl_poll +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 0x17cd8d8a v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19517b00 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d655c6b v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x277f8c73 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f3cb46 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cd4bf07 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30492fdb v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31e940b0 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x329a6b73 v4l2_async_unregister_subdev +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 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b61cd1e v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cca3f4b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e2e9979 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49d9578f v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x554eb7fb v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55d694e8 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x563a63f2 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5dd0f244 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60d25518 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e1df1a4 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7093e383 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73598be4 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74b81b81 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x759067bb v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x791dc47d __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79f86a48 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a2fca38 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x801d1310 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80bf95b5 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89b065de v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93af7bfa v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x957d1e31 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x975156af v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ecf3ee5 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f760ffb v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa05db18f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2170195 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaafa9788 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaba04812 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae836336 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3a6b56c v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb75d5f7c v4l2_clk_set_rate +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 0xbf96ed85 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2672668 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5f8da46 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90ec611 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbc16d01 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccd6fe1d v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3e06151 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3e4e54e v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbfa9a97 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcfc6d38 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe38a1d11 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe414ba75 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe482b597 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe98d05d3 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3512978 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf703e4e7 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf79e6f27 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf90c7abf __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcefef58 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd71696a v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a167025 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28f3fa1e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x38473c78 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x519fc18e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x57803eb2 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8fad6ce3 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9c272cac memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa0412ce9 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3a4bae1 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2e61137 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcb1b851e memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe02c237a memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x092a267a mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12e8507e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x177b66a0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fcc540e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25434c55 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d031f55 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e884cb4 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35360845 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3800a441 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e687efe mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x526e0852 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58a69b10 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e4a7265 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63bd18a5 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7acb3d52 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b1b2de4 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e917538 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f09369b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85b0aeae mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9aecb67f mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa02f4869 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd86cc40 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6c204fa mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd77a82e4 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8558d43 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 0xe8e6339d mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebf868ce mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebfebbef mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeefef5d7 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16afba85 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dcba894 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42a60a9f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4eb71758 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ff2658c mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x584a100e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67c78225 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x804ff4d3 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85eef773 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87114fe0 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cb36a3e mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9886b5db mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab3f4afc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab5fa0e3 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3118c2c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb82fdfc0 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc5a13e8 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4be4368 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4c6a6fd mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb485c86 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe13e2f89 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe14541e8 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8e120b1 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeae8a99d mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf45e1de2 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc6df515 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff3e7103 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x36e9c4f0 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xe74219f6 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf332bbea axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x33071c0e dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x46236561 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xf3490bb2 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x1dfd83de pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xcb472335 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5555a295 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x601a8144 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ba31850 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa753535b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaab10c4d mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc325867b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6f2d836 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe739516c mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee258c34 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf80ef02f mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfb8d49e7 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x2ae68f7c wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x4a6ec8ec wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x78fd6bc6 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7ecce145 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xd5a5d272 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe79f69eb wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb1533930 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xcf86597e ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xb9f0fe98 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x8c406e3b c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xc108e671 c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x1545cfd0 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa5bff49d __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb93bb2a0 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x069ac8d0 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3a42f6a7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x47c3b594 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5a9bce03 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x73ed0e6c tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x91dcab51 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa7ec5787 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xadc5d9c1 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc038a7e2 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xcc2ffe6a tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xecad18a3 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf98376ef tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8497c545 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaa1cc6ec cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd5afadf1 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xee7327e5 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfc4c6914 cqhci_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x03675b3e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x18e40984 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x475b15d9 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x64057c9f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6e6abb92 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x78514efb cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe954ab05 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00227cd1 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x03d084dd map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x222826fd unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x75a74af1 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xe1a315b5 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1d5d198e lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x1f81dec6 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x01786acb mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xf8a255db mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xaceb05eb onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfcdb28d2 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x6149887e denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xfe58d560 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x027c898c nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x12c7d7db nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x163857f1 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1d60b136 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x315f12ff nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4646ba80 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x734c642d nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x87eda1c2 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ac9ba5c nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbe267c90 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x2e236034 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0x5fa5e2b5 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0418fbec arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0d39f7da arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x41fd3f36 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50841deb arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x66229732 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77ce912c alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86f9aa34 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb17baeca arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd0559699 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfa8a7556 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x13f9b791 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xab13a208 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdda17693 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x008f04b0 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07774543 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10339367 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x121debe5 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x170d43e3 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1edc5a3c b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c58662d b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33ff77d9 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x38ed083a b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a37b8be b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4cfb9476 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60f65e68 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a9cc220 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6def9e72 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7018d2b7 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ad20ab3 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8055b889 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x963e0a6c b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98873745 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b34b625 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cac8b3c b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4821ae0 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaaa80b57 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac2071cb b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae9451eb b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaeba871a b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb233b67b b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb46c5bad b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8e8a052 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb12e0f5 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfd40c0b b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc434e6ac b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc327cdb b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd08359a3 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd39180a4 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd543ea16 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdf36ff06 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeeccfb2 b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3583a54a b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9560c585 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa08ef2f6 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa3ffbc59 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb61a4d57 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd59df086 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x21bcc8b2 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6ff78d0d lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x16e2af64 ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xce5e5b03 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5dc1c544 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb97b5959 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcbabeee4 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x220e04f7 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x23c0169d ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2fb029fa NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4e64a8c5 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x832733d7 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95cd24f4 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa8e7039a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb2666464 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccecfa87 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd69a140c ei_close +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xceee2aca cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1006a3ab cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x83c368fb 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 0x025c4814 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1b56bc64 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20dd4972 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x388c3ef0 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x42395689 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x469de0e9 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x47b942bd cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x548a596b cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5acace49 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ae13c98 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6607382d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8799804f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8bfe653a dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd04c57aa t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf678c276 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfca78540 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x022537b5 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0df87928 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ea506e9 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10b8d191 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b39e344 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1da606c9 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fc908dc cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20aeebf8 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c1f8f28 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38edadc8 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a9c5175 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3aef1d34 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b96ce32 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3be15e20 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d6016a1 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dea37ac cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41bf41a7 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x473af302 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ba9b531 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x569f546f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x571ec1a4 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x627435fc cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a8a1d05 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7211c6a6 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74887934 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8513c173 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fc334a8 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9247c37c cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x971a9709 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97ffee9f cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9915c399 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6040313 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8a3fc57 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3c4491d cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc83004bb t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd031af80 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7ec13fe cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8b8c386 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd98eeb7e cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb9f9583 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfb9ad0d cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2156ba5 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3f152f6 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc3bd0bf cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x05f91ebb cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0ceb0690 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1c71ca16 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4b26ef7d cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x834d2f55 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9dcffc40 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf76c4faf cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5ad0dada vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6ce4e65b vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x88668be0 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8a9970db vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xeab5d1dc vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf91f585e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1b13dff6 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 0xb6de7a7d be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x1e056f7f i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x936ac252 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x179d562c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe536a4ca iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0820ee6e mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099c6a43 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0beab799 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10e833c4 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d6a3bb mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cdca3ee mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5b4659 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f9c8a87 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b0d1cb set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5b04a2 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d2e69ae mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x302e47eb mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x316a2c16 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446da129 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45462dac get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a3c56b8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x505ffc17 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56093392 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a171d31 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a598df7 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd88e3d mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76196feb mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x854b099b mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d88e4c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf7636e mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd951d4 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eda0e14 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa11c7175 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa505dda8 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c4f60d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaddb97f6 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb480de54 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4884b45 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb82fa959 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbcf8e4c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc2181e0 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd468560c mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4e94853 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdad11f13 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde29b4ad mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe625d8a3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f0f6fe mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa63bfed mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff769080 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0224d8c7 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06321b27 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0da5c0a4 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14185b4a mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17537cc7 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b4f5e9 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1895cac9 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19328e0a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b812c76 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fa64c20 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2071528d mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2516e34d mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25e2a2c5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e2e379 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x289d7b9f mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d75bc71 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec4536d mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32625c96 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a9323d mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3470c61e mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392c9805 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd310bd mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d304cf4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ca064c mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45d4701c mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ea5734 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d2c284 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bd0c5c mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537af4f1 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a8ee7c mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a6d77c mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ee6559 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a8ec60b mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cdc0ede mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed3ad92 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f371642 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f60e43f mlx5_core_dealloc_pd +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 0x6274247d mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e0bf3c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65266c14 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x666fda52 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69eee4c1 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a1f052e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a4b47e8 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722951fe mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x738af740 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x767645f4 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7786d659 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7fb485 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7af9b916 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e5c637f mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e8c7ea6 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd78054 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8099b57d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83b82286 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f58d1a mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c0e486 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86bc88c9 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89063fce mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ddd8b90 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x940cf93f mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d7dce22 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f659467 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1047ce7 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28ce626 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3a742d8 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e44581 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e5a43c mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8269c79 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa84963d6 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa299fdb mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8f25fd mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaf40ba1 mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae64918a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb085ae2f mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb08bfdd1 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb183ce6b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3abafb1 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5aba1ce mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60723ef mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb77bc77c mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfddc51a mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2539315 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc70a3b45 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc769776b mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc841d88a mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3f8f5e mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce734138 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2b9d4ea mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f37a5d mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd400d84b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd452beab mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd538b526 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa740c3 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdea07dc1 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf265404 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe101603c mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2d53703 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d8fe8a mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeddfa2a9 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee350f42 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a996ce mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8dd9010 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa1bb9a2 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfad65a53 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb843b61 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6d147d mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffc65898 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc9df2b22 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x09662e85 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f470e31 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16babea5 mlxsw_core_driver_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 0x1f93326b mlxsw_core_event_listener_unregister +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 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3909c606 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f260d87 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x64ff8831 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7962050b mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87fee31d mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x9eb8e80f mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f3537f5 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac5093f0 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb18f6037 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbdb29bb3 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +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 0xdd695ae2 mlxsw_env_get_module_eeprom +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 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe44d33e9 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf68557f3 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x420abf59 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6c416d37 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8fda634e mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc899ee5c mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x17493314 __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x247b0c5f ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x298c9ea7 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x31079f20 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x4623c1a6 ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x4fc1546b ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x5b1a2e42 ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6ce5150b ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x78389ffc ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8318bf60 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbcef0497 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc713fae2 ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xdf5fa47d __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x063bbdf1 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0e65c356 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9fffd21a qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe296801e qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x4df409b4 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xfc4ce7e2 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x071f3ab9 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x57733aec hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x617b11af hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd1f911cc hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfc7a52b7 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0x7db84a25 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/mii 0x10920dcf mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x5903b94f mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5ae44c85 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6633c55d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x6ca62d5a mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x7251dc84 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x9bee3fa0 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xabdd7cf9 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xfeaa0c1a generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xffdf88d6 mii_link_ok +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xde657078 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa849a724 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xccff99e3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x9eb1fcae cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xcc17aeda cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4731594c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5adc28af register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x905e4a6d pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdfd11c10 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x55e82638 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x16d2d682 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x2260861a team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x5695b298 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x7ed6e64a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xc19dd929 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xde0320c5 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe3d9e477 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf8979e9b team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x22870001 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2e9dee37 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa2ce5ac7 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1552d9ee detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2ea41fe2 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ef37cfe hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x71e86714 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7b372ba3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdc7f667e attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdee5e56d register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf81c56d7 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf81c8bcd hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfaa13d4a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x775fb422 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1076a6ea ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x139dc728 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x226a1260 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b0ea814 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x402bd82a ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x49a5a338 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64462101 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73cd4403 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a5c1fe2 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8742f524 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab134065 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf27d42f5 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf79be7d0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06a427f1 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11425f01 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1711255a ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b29f187 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2177fea9 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x256293be ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43a19145 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d73ccc9 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51dc63ef ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x523e1dd0 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x536e9744 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56bbd011 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cd87e8f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e0337a9 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6227609b ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x665afcfb ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e14df96 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7eb5f8af ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x829e903e ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83e03507 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c744d8d ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c9ecd8b ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9445c107 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x947c39ed ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9dbe1800 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1076cf6 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1c30989 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2f04e76 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4de0282 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9eb2aa9 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac39ced3 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaff04f18 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb17e7587 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb311577e ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba0eb7dc ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb31cb1b ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb33732e ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb3bdbb1 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdd0016f ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceafb325 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceff855f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd16f8ec8 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd762b523 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc23dcf9 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5e2c188 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf00062ff ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5d89dd4 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0126d18a ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x05bd61cc ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1cce7d52 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x524e11d1 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x610ff733 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c3b059d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x76daff5a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8614d69f ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc48fd0f7 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe1338b41 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe52f59f9 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15baadbf ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x187047fe ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x35b2d8ba ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43a84352 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45658d0d ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46380182 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x672fa22d ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d75a823 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d999f30 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7dbcbada ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80a44cda ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87db3f1b ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8eb7784f ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94e9e95f ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa607d563 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab4f3601 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc95a2477 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcaf18fbb ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce216d41 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6e9fd88 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd989765 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf902dbdd ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe921fb6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x007edbb5 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f82a7e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04760d9b ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0624aed7 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0821e70f ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c6301a4 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f162542 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13934518 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14a4a5a3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15e872c0 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1810ac69 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x183a4767 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x191dd095 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a34287f ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b297031 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db91a7b ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1df9ed14 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ea0a756 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23a170a2 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c09d8e2 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f69dc3a ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fa15956 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x317681ba ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375bb078 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38b1337c ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bda763c ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c45127c ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c6596b6 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41b20db2 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4213aaa1 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42a0cc04 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45b67c9d ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x463816e4 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465f53c1 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46e00da9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x473aea86 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d6d220c ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d94d253 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e0bfdaf ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527aa732 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53ad41ba ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c42aa9 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5457ebd2 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a490c9c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b97cb20 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dd9881f ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e072c29 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61f0ffff ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e3ddd0 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62f2cdaf ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63219fa3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69949184 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ee644f7 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x704fc408 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7600a8c6 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x770c6dd1 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a6c4fc6 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dd44899 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f1e35ae ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82751595 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85b6a21e ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x895557ca ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c274483 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c67bb18 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d21d69f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x927ddea2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95538752 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95784039 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa890afaf ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb16f75be ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2df3ce8 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb589b3a4 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba32acde ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbcbeba4 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc26cda11 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc278e784 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc292016e ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4edeb31 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc775ac01 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91b876b ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc935a7e5 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca57f394 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbda2400 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca96e81 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdb732c1 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2357ec1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2af4e24 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda43f4c8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb1bd42a ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd9426b1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf5a024d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0087fed ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2711b64 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe55556a8 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe742acff ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb58ad45 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed92fc0d ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedae0508 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee5398c0 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef5ace89 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf40478e0 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf44bf66f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf46c2aa6 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7de5de1 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf85a608e ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe6832e4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfea75ff3 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4aea0da2 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x695d8342 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcb6c24da stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x249615e0 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2bd4193a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x65158a12 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x66e1a771 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x68a22d52 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6a583ec6 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6b1c1678 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6b7b0718 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x797f8fd5 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 0xbf4ee310 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xccaf2f71 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd8a4f819 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfc37a4e6 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4b6bb51f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6fdf89a2 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xe00e9543 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x04962c1d alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1cd7816b libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26486174 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2b16d801 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c9d3401 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39930794 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ba4ecf3 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5c0af205 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62fa44da libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67be1b64 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d306673 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x833073eb libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x919ffc34 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a1881c6 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9ff9c022 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5603603 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9dc0fb1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5c5a358 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc7c38805 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf16072b4 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00bd7300 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0343d6e7 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0456f28f il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x053b5d05 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07130428 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x079a64d0 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07b6f092 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08f6f35e il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ff797b1 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x127af800 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15b572c7 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1681c2d7 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x186e01e7 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a304d45 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d8942fd il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23d299bf il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2939703e il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b08b0c0 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cb501fd il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e12f728 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ebcb896 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ba7666 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32dbc84b il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35853c33 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x360f6ac9 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39324e15 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c1fab1d il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d59758b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e4bf64f il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44d592ee il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4836d908 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f0d0112 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50677e15 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x516a94e7 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f578a5 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x583688e2 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58a7db08 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ef02fce il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x615f21a3 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6345b8dc il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679d3fe5 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b7287e4 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c5440dc il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cffeed8 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70111722 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7284dc14 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72bc0baf il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7814830f il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x835b8cc4 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86feeb6b il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88948a7b il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89aac7b1 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c928516 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91e71d48 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92822b7f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9424f3f6 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a7b40b9 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7965a93 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa82159c1 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8af6175 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa3615b4 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab1d057b il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab537622 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabe89d00 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad450fad il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafdfc1a5 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0f5b023 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2ae5234 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2be21da il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba7e5bd6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb63b3dc il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb18b78 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0b40c11 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2fd5c71 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7afa187 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc85bb6e2 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9abdfa4 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca1a975e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaf17889 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbb77681 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd74d76f4 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7515b9d il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9f2986a il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdabb3e4d il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde738244 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0ed95c7 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe19286ef il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe389d8fd il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe459ea5b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda00df6 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeed6a786 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf02acd3e il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf25b57ac il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d93b9a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9f3ad39 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbcc029c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc812e64 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdc5247f il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01dbcb68 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x025bc921 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04c93913 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a058a5b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a951cbc hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x17853dc5 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x18cd97e9 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x44ebe924 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48c1a161 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50c3092a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x53bafce7 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x56833ee4 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5cd40bea hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6cad955f hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70e713fc prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7bd85ad9 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x97a540f6 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0b03752 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa24dbd5b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa8c1621 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa8c3dc9 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xae53636b hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcf8b13c1 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd2c766e1 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xff15989d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x127b21b9 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14595474 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1ae4bb24 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x28864ef2 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d1d52bb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6c430b56 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x73c5ddd5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x76b61e86 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbedeceda __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbfdeb854 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc0770df3 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc7a15bbc free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd7a1fe49 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf00f3d56 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfa5b76a1 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd0148d82 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc513ab37 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x015b9a8b _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08007887 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ef19ba2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x118816d9 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1366935f rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26d63c6b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30e0388a _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44dae7db rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bdc5b50 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50bcb9e9 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55b67d07 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x612b1128 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72a220dc rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x731fcbd3 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73ffc027 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7933c687 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d9aa065 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7daae453 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ed867ef rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85d20d1a _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9160d0f2 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92c240fd rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x974c4fc8 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa37cc23a rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4ddf368 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3717042 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf39cda5 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc55ebed8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc98f68c3 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9f7b7dd rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4b924fa rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5744784 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd59f575d rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1bb3968 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe575d814 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe80d6a36 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefb15d76 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf45e031a rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9dcd465 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfef5f23a rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff0b6375 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x33b01aaa rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9e200e3e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9ee029bd rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcf61e223 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x46a14a6e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4dbe305e rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa8b44442 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf87c902b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x008477b9 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1433de1b rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1930f722 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19b742ed rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x204721fd rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e4b6be1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3755d1e0 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d8c08eb rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x465951fa efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48cd9b9c rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f49fd83 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fb6fa45 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ad58fa4 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60ac34e3 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x649f45a3 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1adb722 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa39e0b68 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa47c910a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa700607c rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa71cae6c rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7fc4816 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8708abb rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafc09a28 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8f40b1e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5d0c2b6 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0b4cf98 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd51993b3 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd52518e2 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee1154b8 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef4f5b8e rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4a55b86 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff579e2a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x02005a7b rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x066a7918 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0d14510f rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x122371d1 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1b4b3fd8 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1f692e54 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2632e1c9 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x268ed5ce rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2e7c7287 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7dde57e7 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x863bf2a4 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x86bcbe4b rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xbf043601 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd9e9f49d rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xed6dc4ec rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf0ab456a rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf4bd92b0 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x037c237d rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5ba36f74 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x846526e7 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8cd6bf69 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb1126c51 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6c503a70 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x730d27dd fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7318dbf1 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3dc84e99 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x59e0e721 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x180499df nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb2cac906 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe0c12582 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x1c60a331 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4271aba4 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbb422cc9 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x24703b56 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4a345982 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6023c6a4 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2012a2f7 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x35eb5d6d ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x43aab1f1 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4826d9a4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x51f2fd3f ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5b2c29a5 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6c9543c2 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd623bf24 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8124282 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe72e9e0 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09a2db0d st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2329677f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2efcff06 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3099e092 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3287e9ec st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x53a50d33 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x53dc85c1 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ae79f4c st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x619447c0 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x85c5a8c3 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9756aa19 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9eae6a8 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb86824a5 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf548b5f st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2f80e73 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc966175e st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcddae51c st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6f4d93e st21nfca_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x14e8ad05 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x29c71e09 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x360809bf ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x3e94fad8 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x4ebec007 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x50934ae6 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x6bff66c1 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x71d55f68 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x85d4ad45 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x89a0572f ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8cb6c2fd ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb1e4425b ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xcad15634 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xcc21cd33 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xd4a7fb6f ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe06a1196 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xeb382040 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf044d52b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf5561932 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xfd03da49 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x60ed425a nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb7be7acc nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x020f326f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x0a77e780 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0c9f0204 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x10a5ebd3 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x13e3e2e3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1957f19a parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x2435151f parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4484eb2a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x453287f4 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4a101393 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x503056fa parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5a9350d1 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x5db69edd parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x68da2f39 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6bc27728 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x747c72b4 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7f677545 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x84823e25 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x8742452e parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x8b0f7277 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x9903c3b3 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x9b118063 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9bdd0648 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9ee60357 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xbff6a93c parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xcacb3350 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xcdc0e574 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe69f2390 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xecaef245 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xeddbfd16 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xf7e9d2d7 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf8560188 parport_get_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x745cd3d1 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xdae37bd2 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x43254a4f pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5e96238b pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6946415f pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7a930eab pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7c72b1b5 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x801c0c32 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x82996eef pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9b42763a pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9dd45998 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad30d519 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb2c12d7 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbedb0367 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xccf19014 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd84924e4 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdea421e2 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfd9b807 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6b70691 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf9ea2391 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x09af5da6 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x322298c0 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5bdc22dd pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6b58166a pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x75d2521b pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x95709421 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x97e5bb98 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb2d5e8c6 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe15621c9 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf5ae8bb1 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6638de52 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6c0a5d0b pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0a36750d cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x85d39108 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc977df61 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf3c2a057 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy +EXPORT_SYMBOL drivers/platform/x86/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/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 0x097a726d wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xfccf0b8e __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x03befd28 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x27d0bc74 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2938b25c rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2c80ffee rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x55d58c98 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x55f02a71 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56e83c52 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6823663c rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8cc82623 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9702da5b __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5f80c45 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa6ca5775 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc66331cd rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf266903b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0121c9e0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x2640006c NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xd3e2c80d NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2ab25882 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4cba9f72 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x88ae67da scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9d9f61da scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x37f76834 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43c45b08 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4544321b fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5e17c2c4 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91300124 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97085d14 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf169c82 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb49fdab6 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbe7f80e2 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe2d5b384 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf8f66f90 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02bcab88 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0682c594 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c9becdf fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f77d920 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18f4fea6 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x192cc107 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bbee2f8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d254717 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23f44948 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x269017e3 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a34de6e fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d6d779e fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f7a64e1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38ce77c2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b51bbc3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b78562c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bb58348 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fd67266 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45b82ea3 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46d8609f fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5083bb57 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x565f3d84 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59c1386a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x612033b3 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x636a2719 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x693eecc4 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c613353 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70b92ed5 fc_elsct_init +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 0x8239390b fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2ee75 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f550b43 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91d65b53 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c6faf08 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b77d8d fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad3f8001 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafae7d57 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb10ae592 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb215ec6a fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2f5f97a fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd15fa70 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc323d0be fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a25360 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca766f37 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbb5b774 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd90ace2 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd02474c4 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdda7ad6c fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b341c4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4b9264f fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe56ba28f fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6e107c2 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedcfa4b2 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0dd19e8 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4d13bca fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5b445dc fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6e4b0a8 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc69c5a8 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeeb245b fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7388c5d5 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7c14f1d9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xab177a1d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0573fd2a 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 0x48b5acb1 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x658709a3 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x75f38030 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x842710af qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87077227 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d02b82a qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d35fa1e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f69872a qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6793747 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe96303c5 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xef4ffac6 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xef6993a8 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1db81ce3 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x30a949a8 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5916b435 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9bbfa81e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa77569f3 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbf81801c qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1741c497 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xbe11efe2 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xc26f56b1 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13a1e488 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b21d5ae fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x308ef1e7 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40041a67 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b2ef7be fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77b2305d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8af8a2aa fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b4956dd fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a275ea7 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab0e1170 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb39c95d7 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbece873e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6570be1 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfffdfa9 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde6273cf fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf77d81b8 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0405daa6 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31621554 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x334f84bc sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42b3b40c sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x500dd2bd sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52687d86 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52c51d60 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5785a069 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5addc3c4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ae7f3ab sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f7d4778 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60819bf2 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x784fe982 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e6324e4 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fe8af84 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x937d5dd7 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f882770 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad300491 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb37a1e20 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb72e8604 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc313a08d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc7fe8223 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcec1831e sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb1b59b3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcea1bca scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe282f843 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedfd43cb sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8dcd2f9 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa07abeb sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74f024c4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa15788be spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaec5e6e7 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xebb485f7 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfd72cc83 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x97fe90b8 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9f74e736 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa86a5909 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb5c9e42a srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd1ef5fe0 srp_timed_out +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x09640212 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe2260e87 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x11cfabed ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2ad72775 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7f3dec4b ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8dab2e94 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x963c5538 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xaca25c34 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc95865d9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xce4ccb6c ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd535a3e1 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x95685c87 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xd5cb90fe ufshcd_dwc_dme_set_attrs +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 0x22da77bb sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x307c7e7a sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33a89097 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x368c3a74 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x40326697 sdw_stream_remove_slave +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 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b994760 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8afa898c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8dfb1eb2 sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa903eee5 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3ac89db sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcbeff3e3 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0ac3091 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc6bc30d sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x00279b8f sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3be0f0c2 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x409bf77b sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4652cae5 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x479cc7d1 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9821c382 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa23e4c62 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa4d7f4db sdw_cdns_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa76a6fcb sdw_cdns_thread +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaa1b4327 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb2a9ea19 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd808ac25 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe4ede085 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf38f6338 sdw_cdns_get_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x5e07cd60 sdw_intel_exit +EXPORT_SYMBOL drivers/soundwire/soundwire-intel-init 0x6709b070 sdw_intel_init +EXPORT_SYMBOL drivers/ssb/ssb 0x063d4e74 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x065c9485 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x135d3c77 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1b1beefe ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2350b46c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x33586a25 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x35b99540 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x35c19aa2 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x3c4d10fb ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x42579688 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x4e1c47f4 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x55a0f21e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6d414fd5 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x73ce38a3 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x86f25d8a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x946decad ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x9631ee96 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x99a222e2 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xbb139774 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf1f85e2e ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x2780007f gasket_sysfs_get_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x2ad03540 gasket_mm_unmap_region +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x359ee501 gasket_wait_with_reschedule +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x44643c55 gasket_sysfs_get_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4ea2ab9d gasket_sysfs_create_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x64470a65 gasket_pci_remove_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x699a3645 gasket_sysfs_put_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x76530475 gasket_pci_add_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x79f5b4d0 gasket_sysfs_put_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb4cabe5d gasket_reset_nolock +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xb717ec28 gasket_register_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc5c7d312 gasket_enable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd304665f gasket_sysfs_register_store +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd6abd70f gasket_unregister_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xd7470f12 gasket_disable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xf3348e53 gasket_reset +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xf4699412 gasket_get_ioctl_permissions_cb +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xfdd9879f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x472389e0 ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x3ac57495 b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x498f8c6c b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7b1849fc avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x896cd028 b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x89749f49 b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9668293b b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x9acc0b32 b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa07845fd b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa120429c b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa1a519f9 b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xacde3e39 b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xaf46e53d avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc7ee14e8 b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe5b447b7 b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xf2816929 b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x21d40528 b1dma_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x4807f17c b1pciv4_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x4f11857e t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x6131dc2e b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x6b397e7f b1dma_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x768e08d3 b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x78dd433a b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa4df82be b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xcd304bc2 b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/staging/isdn/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12805160 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f2261b0 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x233ab362 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23feabbd rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ca8adff dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3964f618 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3968e4a2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x398b67f9 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42e69a23 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42f92c77 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49b2e6ba rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cbea67f rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x647cda17 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6588ce2a rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66c32921 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b0817dd rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c391d26 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7152e9bb rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79fe3b8f dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89465fc0 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f51109a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91014ea6 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9773eb57 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9813a464 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d13b4ee rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ffac262 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa33bd09e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae2ff515 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb26a99b2 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb37d8fc5 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca6e50cf rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd066a4e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1566bc2 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd27490ba rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd60e1118 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd632eea1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6e180f9 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaf3aa24 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdface181 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1bf270e RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe31b4486 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3a6cf0a free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea2c34ab notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed375dfa rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee5da2bf rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee8ab33a rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeed2b34a rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeefe1d57 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9c8252b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x080a6533 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a23cde3 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0aef13fb ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1550f4c6 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x156bfc95 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e18dedf ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f92c1d9 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ff27adf ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x353440bd ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x390c6398 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b9c86ea ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x402a3f48 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4da7f350 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50f27051 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5146942a dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53524fd1 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54cfb1d8 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55f43632 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58a448c6 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58cb81fd ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76c809cd ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x771ef45c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78caeaf5 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x855737db ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87a55161 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x885d2b1f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ff3f041 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x928db024 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95b1ab38 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x990831aa ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e3688ef ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0a75e07 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3800509 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5ae2dcb ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7fdf8f9 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe933ba3 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc42f1fea notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6917dfa ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc72435fa dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca95eb8f ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb36714b ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb8fb48f ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd108d6d1 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9f5d093 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb154e02 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2ac02bb ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe37c19e1 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb6287bb ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebe7b0f7 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xedb303a8 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3eb92bd ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf468a4a6 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6e50cf2 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x070a763b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b8617ff iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c3ca6e2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0da3c8e4 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e35bc55 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x191f2fad iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d2f7207 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x235825ba iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23870d23 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c78e64a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b7ee3e0 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4916cec0 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x503f2743 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55938ad7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fda874d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63a209bb iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64cdeab7 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91007a50 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9294baa3 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x965a3ffc iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x974c644e iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa4522007 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8a01128 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5420426 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba01a458 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba0dba1b iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5b9337c iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8ceed7b iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcef0980d iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0227d35 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd14f0f58 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4e41091 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8cabae6 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbc94f88 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde49ef69 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0352451 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2859563 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8371c89 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb2cd780 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef398c84 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1e25f5b iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2669d46 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7132f77 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc9765ca iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x0380ab52 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x07c3d16f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c3631c9 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c510e45 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e4512de core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x10ae4832 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x136375c7 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x16b89139 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b816c13 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2020134c target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2496cb07 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x267a4f17 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b2b3b0d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x33a659bf transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x39e0e6a7 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x40aaf6e8 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x449a3a0f transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bd47965 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4db531e6 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ee1efb0 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x52d69703 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x541468ab target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x56c09c62 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b96ca73 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x634aed3f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x64255f96 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x64b73ffc target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x64f4d137 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d7f6456 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6de1f832 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e39e832 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f907d4c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fd9e3e0 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x70a82908 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x70b8a3f0 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x73007b87 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x77b7b1d5 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d01c5b1 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x818bff71 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x82b0adc0 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b0b168d target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d338439 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9071ba33 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x90ceffd3 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x97ebf77b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x98e1d3c6 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b421f91 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de827da transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1925fe9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3ee2e08 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa61698c6 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f4433e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xac4a6615 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xacd1a6fb transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb009e602 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb404e580 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7b8b8bb sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb401b2e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc629e809 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6c4dd64 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc96b3dd6 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdb993e2 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf119454 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfe819e3 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3f4ba66 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd48adb4d target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xd491cbf9 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xde2e702f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1e353f2 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6b54510 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xef40fd5b target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xbf3d7cf4 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xd2f72c18 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8391e59d sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1df8c084 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x393c8757 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40a7df92 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8f3af8c7 usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x91c47ec4 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9910f925 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9b2450ac usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d0d2f02 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb04dda6e usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb8000b8e usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc5f93f09 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbb2a577 usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe81ae901 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x055d56d5 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x999f9007 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x10640818 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1760ff09 mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x27ea5fb2 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x46af5c33 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4e7b4a77 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8d7194f0 mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9631e043 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9b4b4d8f mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc8d09d1e mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcbb7533d mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe93fbfca mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xecca9f4d mdev_unregister_device +EXPORT_SYMBOL drivers/vhost/vhost 0xa41cfe8f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xbf1fda85 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0fdf447e lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5b3dad7b devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xbb2247dd devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd5b57a2e lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e1d9738 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2e55d8c2 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x700b0e36 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x772f5946 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 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc261d9b7 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcdf09075 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xec575b8d svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x21874e0d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd6c67be2 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x873e5601 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x423cac17 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 0x504bf37a mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9abf0457 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcfd56846 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe3839f35 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1de4dcf7 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x87701193 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa0f0697c DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe591d40a matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x6300501a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbe679202 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0b07430b matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6f0921c1 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbe3e5d49 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbf5d3a0f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x97310f8c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xcbc7b275 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1a6c654b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1fe86042 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x35aadfaa matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7b7231ea matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfb0f1b05 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x8860f8d7 mb862xxfb_init_accel +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/w1/slaves/w1_ds2780 0x42d0a873 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb2cc4303 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x81d0e6d3 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x946a7cfb w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x21c12be9 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x416e0d22 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4cf1f498 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x70a38905 w1_register_family +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x05bd210d __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x06817980 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x1e7ec533 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x22c95c52 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x27e3cbed fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x2e33e9e1 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x2ebf891a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x2fea3067 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x3d9adeb1 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x42270b8d fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x437391a1 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x4a49b7e7 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4b67ac8c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4bbe9c74 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x51f8aa5a fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x5e8eb688 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x6a89c5f6 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7de763e0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x7e825949 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x818cd75d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x92a5a941 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9affb9f7 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9be92a21 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x9c5fdabe __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x9c616cb2 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9f62d206 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9f9d2ccb __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa9926335 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xab87f967 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xafd2f1fa fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xb1c7e8be __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb677a56f fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xbe0de373 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc1af30f7 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xd29c34ba __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd2e058c4 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xd90d9d67 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe94862ed fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xeefc61e5 fscache_add_cache +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x01ca805f qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x022ed09d qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3fb36d13 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x5e778102 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x830bbf46 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xaba67c27 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 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x418626d1 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xdf80b371 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x30a91d98 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4577213c lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x65ea7d16 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8a10a4b3 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8c9d74d8 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9fb07c72 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x67450e51 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe7746b02 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x03ad1693 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xfd512f01 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0365913d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x0c5a0d34 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x0e6be79a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x17ae27fe v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x17e02ee0 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x1b55ca09 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x3a2d5d9a p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3aa3a70e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41bfb92e p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4f0251e9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x52d1a9b9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x57b1429e p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6129c3c2 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6b6cfb43 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x76bfff3a p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x89fa7311 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x906a7492 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9f975b6a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa30c4c13 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa5c3ddc2 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xab1c17ff p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb2a820cb p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xb2eb46bb p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xb37dbd32 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbb749e1d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xbb7ad856 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xbdab4104 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xbfc8147a p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc06d138b p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc4dc215b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xccf12781 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd405fbcf p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd526e6fa p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xd55fdd98 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd814f691 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xd9c2c7aa v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe5b1a4d4 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xebe23b54 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xef4a372c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xef76cf9c p9_client_create_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x253c147a aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x37769b96 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x69fe5d94 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xa6ccf740 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x31d00b36 atm_charge +EXPORT_SYMBOL net/atm/atm 0x38146f30 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 0x4cef0816 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7ce26546 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7e42cdce atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9bde1351 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x9e53781f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa640b277 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb07d7c2e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xc12869fd atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xd4f52fa2 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xdafb90cf atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf6c46ddf atm_dev_signal_change +EXPORT_SYMBOL net/ax25/ax25 0x0a973f7a ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x0c9a38c6 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 0x4d1aa187 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5450bcc5 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x72f384a9 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7d57cae3 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb0f22958 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf3d3595b ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01e114cc l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x078d9a40 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bb6bb05 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d6ec32b hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13f74d22 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ec2cca1 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21ffa32f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x290723c2 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x319251b4 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3478f3e3 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48b920c6 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a33ff08 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f7ec5a7 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5453aafe hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67bfb05f hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6858d9af hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x696b10a9 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6acdc17c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cb3108c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71016afa bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80a04a12 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e674d70 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90aa5e53 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x910ae609 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95867fc1 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96b0fc0f hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x970b29cf l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98de998c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a1f81da hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c0c8e9a bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c23854f l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb22e0e1e hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4832a99 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb624a802 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc848ec8 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc03c967b l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1bfe9fe hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcbda6cc8 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd183dde7 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5c326bd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee90c5c2 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf62720fb bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfde7faf3 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff1b2016 bt_sock_link +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x788447af ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x82395ca9 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc5148eb6 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe74f2c7e 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 0x52f8b7cf caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x5b30c80e get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x646da94f caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xdfb4ccd0 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xea9b3c2c cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x497e94df can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5cb820b5 can_proto_register +EXPORT_SYMBOL net/can/can 0x8b028055 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xc112d078 can_send +EXPORT_SYMBOL net/can/can 0xf72ac2c9 can_rx_register +EXPORT_SYMBOL net/can/can 0xfcf22852 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00302183 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x05710aac ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x05c239e5 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x061735bf ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x086ba56f ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x0e9d7a7a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x104ae2fc osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x1589b281 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x1808ffa5 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x1ac105b8 ceph_copy_to_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 0x22ab51d2 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x23a2fca5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x25a5241f ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x27ac1d91 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x28842ccc ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2acbd04c ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2ddaaaff osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x2f6f2ced ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x30741112 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x332f397d ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x35aab164 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x3886ae66 ceph_osdc_update_epoch_barrier +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 0x3cce58d7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x41553083 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x41d2a042 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x45365e9a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x479908f4 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x48a87597 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x4989403b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x4d26d8e0 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5037486a ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x538e5d0a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x5580ae70 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5791ca33 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x594a3b8f ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5cc6f26d ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0x611fd987 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x62c6f100 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x647fde54 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x65c89b94 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x677af780 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ab1613d ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x6c4af1ee ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x6f001c0f ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x7154085a ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x7285ed0c ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x73c55d39 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x77965810 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x79dbe769 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7e97bf22 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x8217c8db ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x86dc8044 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x882efe57 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x89ccda1b ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x89e0c085 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8aa1d24e ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x93d6be31 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x959afb9e ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x95b8a687 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x9807101c ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x9a8c3265 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9a97faa4 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c4e154e ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9cd827e3 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x9d53d21d osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x9f84291e ceph_msg_put +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 0xa0462f35 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xa3c8b72f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa4b92701 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa9433d2f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xabe93062 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xac0c92af ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad3fbf64 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad97f102 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xafa36021 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb400b09c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7c228ab ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe5bed8f ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc3f9582c ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xc409905e ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xc4a993ad ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc7b499e0 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcbe8b841 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xcffa96de ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd120a450 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd645de73 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xd6bd2df0 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd6cee6e0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xd8199947 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe0507adb ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +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 0xef8463ac __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf12e95b4 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf1fe0491 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xf26e2ba0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf40701ab ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xf57141ea ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xf852303f ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xfd1dc8b8 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xfd4a8393 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xfe61b585 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0258fe40 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d8d6628 dccp_req_err +EXPORT_SYMBOL net/dsa/dsa_core 0x4cc9f490 dsa_port_vid_del +EXPORT_SYMBOL net/dsa/dsa_core 0xa82e29ea dsa_port_vid_add +EXPORT_SYMBOL net/ieee802154/ieee802154 0x084267ad wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1bd66471 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x204f7f91 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc6a44fc3 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcb8d0617 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdfe56a04 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7be67e77 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xece32500 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x105eb905 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x14bd69f0 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1cbd3e61 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x27d23964 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbf0a4d86 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x16b1d073 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72d82dd8 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72ee641c arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe9ce8f04 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x24680043 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x83d1da01 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbdc4a589 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x476c884c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xc7f47d1e xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb5055f2d udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x01b30880 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x028f57d9 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x20c9ca19 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x23b8ac2b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x372ba88c ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x66559fef ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6aceb867 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x85cd6f80 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfd005465 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0f556ca4 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7e3bdc7d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd850b160 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4fbadfa5 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x98ee8a65 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x22d1d2d0 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa2126377 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x67227ff2 l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_core 0x82272cca l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x39dd853e l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0253e278 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x2b2a06ee lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xad26207a lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xcc6f1de2 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe042c82e lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xe12c4cc7 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xedbd6123 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xf860fcee lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x11d998c7 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3ab710f6 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x4c259d8d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6f357d29 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x9c60f126 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa53517f5 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xdbaa37cf llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x008f97ae ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x00ba6e68 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x01127bbc ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x01d78211 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x02bfca33 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x053decc4 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0589b253 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x06739d9b ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x0b80ad5a ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x141b4c58 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x18ced27a ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1e7f8a67 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x205b925c ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x222e989d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x2236caf5 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x229d4303 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2471fcf3 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x254da1fd rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x266df24a ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2ba1169d ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2d59b472 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x31128360 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x31e69f1a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3a0270b2 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x3f357ddd ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3f548957 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4191949b ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4784bdc6 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x47e33f05 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4e82d9a9 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x521f2ff9 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x52aca58e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x550adfa5 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x57e2455b ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x5a64ba89 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5ac9cc18 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5b6b2a9d ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x5b83f38a ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x5bdf6d21 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x5cf3a8bc ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x5df18ef8 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x64c84ec6 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x64eb7861 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x76f4dd66 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x82b5266e __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x83de5b6e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x85e2bfd2 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x86b1e8f0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x89e30dd5 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8dde556c ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x904edc8b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9d03c66b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x9d29bfb3 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x9f2c1bc6 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa02f9c53 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa143a840 ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xaa00ab07 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xaaa7cb1b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xae5a27ad ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xb005f292 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb69a50e3 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xb6a1c826 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xb6a38b47 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xbb912004 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xbbb10232 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xbdf89970 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbfe57321 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xc10878ff ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc1a3669d __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc24a3fa0 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc462f650 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xcf655e9b ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd08014f4 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd1e88f62 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd6dbff0f ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xda8134f2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xdd41833b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xddfe7c4c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdee20b4b ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdf29efd8 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe024f8ed ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe02d9c49 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe076ae4b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe0cb0dde ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe7e4dd55 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xed1036fb ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xeda52ce0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xef2b420a ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf28d1cdf ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf51f4160 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xf781b8f6 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xfde71b5a ieee80211_queue_stopped +EXPORT_SYMBOL net/mac802154/mac802154 0x0fdbd2ed ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x66bcd595 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x926b4e15 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb144e9ac ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xb3dbfdf6 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc8e8c55a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd6c9c6c1 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xeb9f203d ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05a8bbac ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31c13595 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a5d7251 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5770bf2c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59131412 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82850cb4 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91de6e10 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9169cec register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb29621ae ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb69dcb9f ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbef21707 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1437001 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7f36587 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeba34b11 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9aae129 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8e5a78f5 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf00c62cc nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x68bed086 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7ea298a0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xaa0b3def nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd260b884 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xef6e4b5d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x124bcfe3 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x17063efb 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 0x5920c159 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x649437c5 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7571c571 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xaec7ddac xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd027861a xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd78d3164 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/netfilter/x_tables 0xff1150e6 xt_unregister_matches +EXPORT_SYMBOL net/nfc/hci/hci 0x14034847 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1a00bb96 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1fcb2362 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x301a3eaf nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x3a2022c8 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x46f6a5aa nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x5bc49801 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x5f90fee8 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x64f142f3 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x689a8a95 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x68b7285c nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x79d48616 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x862aa1c5 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa283c5a3 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xbd012a49 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc3f15f2f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdfc901f4 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xef22a2cd nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xef9165bd nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xfab04d18 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfbe2856e nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x10b9d8f3 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x10c45dc2 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x115a5bca nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x152235ab nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x390f4509 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x40cd81b4 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4d05642d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x4e9e436c nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5168a850 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x691cf5ac nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x6c5c8444 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x86f467dd nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x8bf13e68 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x92ad3ec2 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x94094b79 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa3b337ba nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xafea29ce nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcd0b4d70 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd106d5a4 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd6e9c5cc nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe0576a41 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe7de2109 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xea8e0308 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xec6b905a nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xf52411e6 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf68bb083 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf6d06fd2 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf73b005b nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xfa8d809a nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x057d3c42 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x09e877f5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x241fbf5c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x26ac743f nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x276e10c9 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x410ee092 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x4e034863 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x560039d5 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x56a0e960 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x59177e06 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x6bbced59 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x723fef6b nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x730a8313 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x864833a2 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x89a0c46a nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xafd69f18 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xc49a6a08 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd28288b0 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xdb76d3bb nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xdd3d243c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xea06e47e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xea326812 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xfab97c41 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfae4a678 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xfb67e811 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x1dccbcb8 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x668b3622 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc36438f5 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfb6ace41 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x132c2ff3 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x1ddd04eb phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x721e71c7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x82e3c441 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x86c95a5e pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x8c1e12d9 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xe9269660 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xfd3029db phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x01ff2834 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x155c0c41 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x171821c5 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2457348a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x56ff09c0 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x59af61c6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ec026a0 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x80508234 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9866a06c rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x99e13bb5 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa04b7029 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa0de3dd rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb6fb4779 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb808e3d5 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd8b40fb5 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdb847edb rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf3204a69 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x54d721b1 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x02027ffc gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe0f48ce8 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf0dda39b gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x11b89779 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x155add61 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcd7b93a7 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x7829c122 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xa03068e4 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xc2635a04 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xfd3342fd tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x223ba65b tls_get_record +EXPORT_SYMBOL net/tls/tls 0x24c5e546 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0x2cf22908 tls_register_device +EXPORT_SYMBOL net/wimax/wimax 0x48c37fc5 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x6a83de9a wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x02c2c2ff cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x060fc8fe wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09d5bb36 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x0bf3b68a ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x0bfecc46 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x18217d31 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1bbdbcf3 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x1c7c9063 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1dc64173 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1f8f4ab6 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x23d52b87 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x2cf8a031 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2fe3d62c cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x30b527bf cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x318a7c2a cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3213de1d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x35c3c46b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x35f0e5a2 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x3754ef6c cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x37c92e3a cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3d0028f4 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3f117e3d cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x40f628f1 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x41a691fd cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x439e0ba3 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x4521babd cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x452a528f cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x514a1cb9 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x51920737 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x51c3ad74 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x5238a534 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x529d67d9 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x55d69e17 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x5ab38ad7 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5d49cdb1 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5e209fc1 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x620d8e48 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x620f611c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x62a3335d cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x65c47b4b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x6784a7bd cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6acb302d cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x74656882 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x76ef77a0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8093b76e cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x86d67b7a wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x88f578c3 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8db8173c cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8e7621fa wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x915e0e19 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x92b59a67 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x943b17b9 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9513007b cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x95d73ea1 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x962756c2 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x983a2b9c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x9b172bff ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x9d2bc2ee cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa0b60bb4 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa21660d0 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa4226319 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa8715ca8 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xa8afe654 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa8b39e1a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xb0285ef0 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb05c7eb8 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb73e9684 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xbc2cbc46 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc0223ce8 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc2dfa6d4 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xc45eda3c cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc6d713b8 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc7c5adfe wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc728de5 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xcc7bd76d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd95a3be4 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdb327701 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbf41add cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xde791dc7 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xe199e419 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe2a8cc12 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe37e8ffa regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe82d5d79 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xecf4f0b0 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xef35f524 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xf555ac2a cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5d30855 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf80f005c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xfcd98e53 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfd918216 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xfdb218ba ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xff93f064 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/lib80211 0x37401725 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7ca60a46 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc4d7cefe lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdd40402f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xef426b4d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xfd07e53d lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xdf8b1f7c ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5944efe3 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 0x582d063d 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 0xa3cc84d3 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaa9ad594 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 0xe1e12bc4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 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 0x5bec406e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02251efa snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x028423d4 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x0313829b snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x045cee54 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x13e2a606 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1a3763ea snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x21e8e43e snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x231954a8 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25615ba8 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x2e4e89ba snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x302beb02 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x32c53612 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x35054d0f snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x44a75f85 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x461fc68f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x47397540 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x57d9ad9c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x5b66ca87 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x60936b2d snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x6745498b snd_device_new +EXPORT_SYMBOL sound/core/snd 0x6a657cf8 snd_jack_add_new_kctl +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 0x7c647bd8 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x839eb11c snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x8a92a410 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f0b6245 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x97a2ba7f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9d9c0434 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa02975ea snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xa932ed87 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb458d4d2 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xb5bad9fc snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb89824eb snd_component_add +EXPORT_SYMBOL sound/core/snd 0xb9d386cd snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xc10809d0 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xc3dcd696 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xc4a90659 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc6d07c56 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xc6edf02c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xc80280e9 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xc86be2f5 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xd287825e snd_card_free +EXPORT_SYMBOL sound/core/snd 0xe7e52b25 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xef05c6da snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xf201e468 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xf3c1fe16 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf6d85f78 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xf71fe3d6 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x8e0519d8 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 0x0549e61b snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x06e0a355 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x164fb9d4 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1783359e snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x1c51da39 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x202f1cb4 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2395f121 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x25b40962 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x27ee9b1e snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x2a7eb124 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x2f174580 snd_dma_alloc_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 0x422765ee snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x495b8b75 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4a96fd24 snd_pcm_hw_constraint_integer +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 0x52111515 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x53a826cb snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6589a9be snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x72985814 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x72f2bd22 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x75870b9a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x76882975 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x7991f421 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x816f6506 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b527b1d snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa0521323 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92fad9c _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac886d5a snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xad80ccc5 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xae1bd2f9 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xb5eb4580 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xb61e5401 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb8dcaf7 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xbd0929f4 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xc225211c snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd09c0add snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xd158cc45 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xd6078366 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xdcfe6b08 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xdd91757e snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe963db70 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xeddc11ac snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xeeb79dd8 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xf5228f63 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xf607f9e3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfcd1db4b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a1e0f58 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0b817031 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18b5b4ae snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x39f162eb snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x547b53e5 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x569744ae __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a62b308 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ace22ee snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa1ecaedd snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa302c82c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6e16f5f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7553a1d snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xac3818e6 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad60e30e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7ad0c3a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb91d4e97 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xba8bc68f __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5af0e81 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe2b31cff snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xebfdb06f snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xce674b9e snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x3312dd39 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x377ee8d2 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x3b0c32c0 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x65aea5dd snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x6beafa74 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x6d94ff68 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x6ee6e46b snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x9b803c0a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9f17c285 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xbc15fda9 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xcdefcbed snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf3a36563 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xffb0f1ec snd_timer_global_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5584afae 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 0x1be54cbf snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x41a873aa snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7773b027 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x989e80b7 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa0603876 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa8263e2a snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb7dcd6b6 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd2502e6d snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xec61a348 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x05258aab snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0c11feae snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b8d3773 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 0x30ec2a75 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c3b6b51 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb23a5878 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb3a910f5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb041275 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xffabbf9b snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04ca9714 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x06483794 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ccd78a9 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x120ae729 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cb26504 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1fc8ec58 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2039a3e8 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33aaf678 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x340acafd amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3495789e cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35ba8296 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x491868e1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50650e32 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5717ef63 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6768597d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d980984 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x736ab5b2 amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fe05c3a avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8be5fcb2 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91f77c6c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x96364619 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a37bc7f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa683e039 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8cfb47d cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4fec714 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfee0173 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdafa5b60 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef532905 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6d328e4 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb58a73f snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbee2ba3 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbef0823 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x77bb2ce0 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe3ff6e3f snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3c661ffc snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x42a1485f snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59809534 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68d7a441 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6aa9071 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcd54a7eb snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec6cd74b snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf873a7cd snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x37f75307 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x394b0f9e snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x621a6f61 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x72242bd0 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x954d8553 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbe857cd3 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x03fcb09c snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x341f75e5 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x92004eef snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x96f8b3f3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5d079a5b snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6dd841ac snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1ed7b7f3 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3bf616b9 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x52b1063b snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x78b5a178 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7f191f8b snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xac5af68d snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x085e793a snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2488d018 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x62bc4f5d snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x685d5cd8 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8cd89e4e snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfbdc20fa snd_i2c_device_free +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x04e9a0ad snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d9a55ab snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x11400bd5 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x47589229 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x680275df snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7f41617b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa87f4846 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbd538e54 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd22cecdc snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xff701849 snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x088ee735 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16c01907 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x19a89a8e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1add8f06 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e0b979e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x50c0b216 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63528503 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7189dce7 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82b07198 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa95cf1b2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4af2970 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbee94d5a snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc58000e7 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9c750ec snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd9f0c397 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe89ea581 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf4090220 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf4a9ca93 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x06db6318 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1dd91246 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4d323e36 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x57f13b45 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8450f58c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd0fa5d53 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdbc0fa6b snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe7d25ac6 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf07e9cd8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7355d02f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x83647dd9 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc2c1c083 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1061783e oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25310d34 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x29d3cdcf oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x59054820 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5d3c9498 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e990ba1 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x600b4ac5 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b763d57 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d4960ff oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x838e792b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x86ae0773 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x875ea446 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88fc2cea oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x96eefbbf oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa6799cdd oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba783c49 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc304e3e9 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2babf55 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xddaaabcf oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe4b962f3 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf1988ced oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x096065d6 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8a24c418 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbbf13d1a snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfb096441 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfc6c142f snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x083807b0 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xe764c12f pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x45ad9485 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6ebb892e tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3951dacd aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x864aa2c0 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd8d94405 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/snd-soc-core 0x0917694e snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x30f93479 sof_tng_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x5e25cf8d cht_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0x8639b9f0 tng_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xa0154944 sof_cht_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xaabb51a4 byt_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-byt 0xad16dea0 sof_byt_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x368bbc28 hda_codec_probe_bus +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x769bafc4 hda_codec_i915_exit +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x8cf629ab hda_codec_i915_put +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0x9c82df0e hda_codec_jack_wake_enable +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xb95c947e hda_codec_i915_get +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xd8200a3d hda_codec_jack_check +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda 0xee28a037 hda_codec_i915_init +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x2c40fc88 sof_cnl_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x59841c66 sof_apl_ops +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x5b5be595 apl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x61cf31b7 icl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0x703e1716 tgl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xacf31f39 ehl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-hda-common 0xf4d48b52 cnl_chip_info +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x4da9b819 intel_pcm_open +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x53130fc1 intel_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0x89585de9 intel_ipc_pcm_params +EXPORT_SYMBOL sound/soc/sof/intel/snd-sof-intel-ipc 0xd1c3e1a2 intel_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06abdffc snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09b401e1 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a58641f sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x110a33e9 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12f273d7 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1378ae06 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x140a1bea snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x150a8460 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x165e4bd0 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a3d18f1 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e407d1c snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26f333e9 snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2783924e sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28bc2b87 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x323d226c snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3267e44e sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x530c849d snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fd3b6f8 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64b654d6 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x660e9964 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c7297d0 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d97df0b snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7078b8b2 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74d2f98c snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d5fafd3 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92ccbe67 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa636d3f4 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa972cb57 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaab2c42a snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaabc047b snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaee8d54f snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1b0d027 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1f687b2 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6c05a01 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7a5d3a0 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbdb963be sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5645c36 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1b250af snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfa1863c snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe30c206f snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe755bc17 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xedbbb004 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeed63a60 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3675391 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf55103f0 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcfa3789 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/xtensa/snd-sof-xtensa-dsp 0x6bfe43dd sof_xtensa_arch_ops +EXPORT_SYMBOL sound/soundcore 0x066250a5 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x43f58b3c sound_class +EXPORT_SYMBOL sound/soundcore 0x64a8dfa3 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc9750459 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd07616b5 register_sound_special +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x20c4d0bd snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x66900b18 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9f22a534 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc5e02e07 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd0d0190a snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd34b49f2 snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x293ac667 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x34ac95ae snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x48f920c4 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7d95566f snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x85659341 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x97bb24f2 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9db98086 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe2935f8c snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xafe91b3b __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 ubuntu/hio/hio 0x0f78a577 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x27bc41d3 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x280ec48c ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x304d5d57 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x477aed37 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x7a083c0d ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x85a08e93 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x9d74ce49 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0xc60cfdf7 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xd45c0215 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xe4902906 ssd_unregister_event_notifier +EXPORT_SYMBOL vmlinux 0x000cf050 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x001061de tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x001e835e dquot_scan_active +EXPORT_SYMBOL vmlinux 0x00565367 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x0061aff8 phy_print_status +EXPORT_SYMBOL vmlinux 0x00875c82 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0092b59d param_ops_long +EXPORT_SYMBOL vmlinux 0x00946f5f ll_rw_block +EXPORT_SYMBOL vmlinux 0x00a188b5 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00bbcb58 phy_attached_info +EXPORT_SYMBOL vmlinux 0x00be3898 phy_read_paged +EXPORT_SYMBOL vmlinux 0x00cab3ee inet6_getname +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e618da nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x00f32f04 inet_put_port +EXPORT_SYMBOL vmlinux 0x00f48cbb phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101de28 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x01079db3 clk_get +EXPORT_SYMBOL vmlinux 0x010ac081 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x01162091 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x0122eeb9 da903x_query_status +EXPORT_SYMBOL vmlinux 0x012db6a8 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x013e6ba4 ppp_input +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x01448537 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x0168cb29 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01761c28 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018d80f2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x019bad79 blk_rq_init +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d75bca skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x01e3a3fe vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021ed232 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x02338292 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x024c6ad3 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x024f17c3 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x025fe9d4 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0265a8b5 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x026b183e arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x026bb21f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028062a9 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x0286069f build_skb_around +EXPORT_SYMBOL vmlinux 0x028f0eee inet6_add_offload +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02be9148 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x02bf14c6 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02cac42d __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x02d1b1bf generic_fadvise +EXPORT_SYMBOL vmlinux 0x02e10a21 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f0b6fe __sock_create +EXPORT_SYMBOL vmlinux 0x02f412c2 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x03040ec1 tcf_block_put +EXPORT_SYMBOL vmlinux 0x031f0c7a unregister_filesystem +EXPORT_SYMBOL vmlinux 0x03248c88 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x0326bb27 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x032a588e blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033ed614 sk_dst_check +EXPORT_SYMBOL vmlinux 0x03501f46 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x0362db4f genl_notify +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036f6925 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x0374165b dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03824b83 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x03919e6a ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b29b9c super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x03c7c821 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0405f1f3 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x040c22f9 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x040e0fbd proc_symlink +EXPORT_SYMBOL vmlinux 0x041beddc seq_open_private +EXPORT_SYMBOL vmlinux 0x04316d85 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044df8cf xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x045e8ced phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x046a8b1a devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x047b2f7e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0493001a security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x049424e7 sock_no_connect +EXPORT_SYMBOL vmlinux 0x04963a03 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d8be90 should_remove_suid +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d939ff tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05382b5c bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x053b92e9 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054617c4 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x055bfd30 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056ae9c3 thaw_bdev +EXPORT_SYMBOL vmlinux 0x0575c8bd __ps2_command +EXPORT_SYMBOL vmlinux 0x057ba76d of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x057ef1e6 put_disk +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05bbfdf6 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x05bd7ccf dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x05c20102 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x05d28ba3 sync_inode +EXPORT_SYMBOL vmlinux 0x05ef3fa9 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0617ca9e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06892dc6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x068d61f3 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x069aac90 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x06a23468 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06af750d acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x06b7e444 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06e164a4 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x06efa47d vga_get +EXPORT_SYMBOL vmlinux 0x06f0fa1d generic_make_request +EXPORT_SYMBOL vmlinux 0x06f936f7 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x072b2175 start_tty +EXPORT_SYMBOL vmlinux 0x072beba3 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07439735 inet6_protos +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0746b86e icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x0769b6ae elevator_alloc +EXPORT_SYMBOL vmlinux 0x077557e8 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x078628df seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x07997781 poll_initwait +EXPORT_SYMBOL vmlinux 0x079af6e0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x079ccaec to_nd_dax +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a91699 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x07ad457a vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x07b94312 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x07bb54f7 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x07bfcf0b inode_nohighmem +EXPORT_SYMBOL vmlinux 0x07c32dc1 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07ee5698 simple_get_link +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081a7ce7 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08303ac5 x86_match_cpu +EXPORT_SYMBOL vmlinux 0x083e91d3 noop_llseek +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084736f1 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x084fca70 devm_memunmap +EXPORT_SYMBOL vmlinux 0x08544e4d __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x0858aa26 config_item_get +EXPORT_SYMBOL vmlinux 0x086d3414 submit_bio +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x089e541c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x08aaf5e3 node_data +EXPORT_SYMBOL vmlinux 0x08ab0021 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x08b02d97 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x08bf6f2d vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x08edf10a ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x09002585 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x091c0998 file_modified +EXPORT_SYMBOL vmlinux 0x091c5836 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x092d31d4 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093a219c ioremap_nocache +EXPORT_SYMBOL vmlinux 0x0944c43f node_states +EXPORT_SYMBOL vmlinux 0x095ce2a0 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x095ede3a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09682235 down_timeout +EXPORT_SYMBOL vmlinux 0x096fdb29 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0970fa02 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b26d78 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d83474 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x0a013b9e pcie_get_mps +EXPORT_SYMBOL vmlinux 0x0a0d4a73 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x0a0eb477 component_match_add_release +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a13a5e9 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x0a17cb1c ptp_clock_register +EXPORT_SYMBOL vmlinux 0x0a18cd74 generic_setlease +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a24e13a set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2e16b5 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x0a5c9f56 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x0a6cebb8 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84a8cc locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad10eb8 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x0ad3ca6a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x0adba32c nd_dax_probe +EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible +EXPORT_SYMBOL vmlinux 0x0b053cec native_write_cr4 +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 0x0b520597 inet_ioctl +EXPORT_SYMBOL vmlinux 0x0b54d29f eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x0b5f2e37 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b86ba5f dquot_release +EXPORT_SYMBOL vmlinux 0x0bbe997b pci_restore_state +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd8dc98 path_nosuid +EXPORT_SYMBOL vmlinux 0x0c058933 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0c0d39d0 input_inject_event +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c2485bb jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c492d7e devm_ioremap +EXPORT_SYMBOL vmlinux 0x0c5b88b0 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x0c678ba8 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x0c68067e pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c806ccc vfs_ioctl +EXPORT_SYMBOL vmlinux 0x0c837022 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x0c88956a request_key_rcu +EXPORT_SYMBOL vmlinux 0x0c990daf param_set_bool +EXPORT_SYMBOL vmlinux 0x0c9a1235 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x0c9fabe7 md_flush_request +EXPORT_SYMBOL vmlinux 0x0cab0473 security_sb_remount +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0cec4cb1 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x0cf6771b netif_rx +EXPORT_SYMBOL vmlinux 0x0cfc86e4 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x0cfe1ea2 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x0d022ffb mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d3262e9 sock_register +EXPORT_SYMBOL vmlinux 0x0d37632c genlmsg_put +EXPORT_SYMBOL vmlinux 0x0d398b78 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d72bea9 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x0d888f49 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x0d93858b dquot_resume +EXPORT_SYMBOL vmlinux 0x0d94c1b5 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x0dbcb3f1 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e3c3691 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e80f55d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0e9b7ff7 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x0e9bd390 pci_dev_put +EXPORT_SYMBOL vmlinux 0x0e9f811a filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecfdc1d phy_find_first +EXPORT_SYMBOL vmlinux 0x0edaf676 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x0ee9499a __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x0eea057d setup_new_exec +EXPORT_SYMBOL vmlinux 0x0ef3a824 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f117c16 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x0f1b61b8 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x0f288c9a netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x0f2cfcd4 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f4a4559 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x0f500299 module_layout +EXPORT_SYMBOL vmlinux 0x0f5c6bb1 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x0f64aa7b from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0f763599 filemap_flush +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9d866b pnp_is_active +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fadde3a bd_start_claiming +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcc6532 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x0fccc89b elv_rb_del +EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x0fd70354 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd907a5 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0fe36fd5 seq_release_private +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x101a169b inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x102e9a67 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1037b5c3 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10888b41 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x108cefca tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10c73b50 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x10d4e61e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10ef13db mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x10ef6f9a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x10f1f63d reuseport_alloc +EXPORT_SYMBOL vmlinux 0x11031046 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1108c21e acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x110f7e0b seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x112525a8 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x1125645e __sb_start_write +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116e7dc1 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x11702e60 dst_destroy +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1170f5a0 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x119e1279 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x119e2714 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x11aa89be __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x11d08234 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x11d3b7f6 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x11da8517 scsi_device_get +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e3749a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x11eea184 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11fbb14a i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x11fee2b4 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x11ffc7c9 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x12207b38 ata_link_printk +EXPORT_SYMBOL vmlinux 0x1220f0fc d_obtain_alias +EXPORT_SYMBOL vmlinux 0x122122e7 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x123088b1 is_bad_inode +EXPORT_SYMBOL vmlinux 0x123e42e8 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1251f2ff nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x125db59b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1291e167 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a420e2 __skb_pad +EXPORT_SYMBOL vmlinux 0x12c14dfa fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1316d726 netdev_warn +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x1322d528 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132ec21b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x135a7665 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x135fd7a6 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x13811419 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x1386c2da neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x1395fd7c remove_arg_zero +EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a0002d sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x13c18cb4 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13dc2628 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0x13e2093d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x13e50110 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9a4bf __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x13fdda4f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x140b1f07 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141604a1 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x142b094a pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x14436558 bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x1447d38e dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147d6867 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x1481bfce kset_register +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x14a173aa sock_create_kern +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cae30e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x14e35cfe fc_mount +EXPORT_SYMBOL vmlinux 0x14e94dfc pci_find_resource +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x150e3657 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x151db93f blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x15254a26 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x154aa2a6 get_super +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156075e5 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x15700a55 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x1570a4c3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x157779be udp_seq_start +EXPORT_SYMBOL vmlinux 0x1588dcde compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x15989768 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x1598a768 netif_napi_add +EXPORT_SYMBOL vmlinux 0x15b330f6 netdev_notice +EXPORT_SYMBOL vmlinux 0x15b3b7f5 skb_find_text +EXPORT_SYMBOL vmlinux 0x15b67279 cdev_device_del +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15be57fc __d_drop +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15d47b74 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x15eddbca uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x16000eb4 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x1604383e pci_select_bars +EXPORT_SYMBOL vmlinux 0x1604d257 stop_tty +EXPORT_SYMBOL vmlinux 0x1607cff5 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161e8e12 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x16269f99 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1629f095 __find_get_block +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x164b1d95 input_match_device_id +EXPORT_SYMBOL vmlinux 0x164ddeff xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x1659122c __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x16594bfc sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x165e4374 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x165f86be fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x16628eeb vfs_llseek +EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16b1eddd agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d34f93 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x16dde5db compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e34d90 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x16ebff9c inet_sendpage +EXPORT_SYMBOL vmlinux 0x1708013e netpoll_setup +EXPORT_SYMBOL vmlinux 0x17084635 pcim_iomap +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x173cf757 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x175c5d79 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x17909153 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x17a9e48e bio_chain +EXPORT_SYMBOL vmlinux 0x17ac9ae0 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x17ad1ae7 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x17add10f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17bf5ba8 generic_writepages +EXPORT_SYMBOL vmlinux 0x17e686a6 inet_protos +EXPORT_SYMBOL vmlinux 0x17ed3b3c dquot_operations +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180c9148 fd_install +EXPORT_SYMBOL vmlinux 0x181377bd __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x1823ec91 skb_store_bits +EXPORT_SYMBOL vmlinux 0x182a4dc4 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x183d2e83 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x1847dff9 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x184ba428 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x18691909 sync_file_create +EXPORT_SYMBOL vmlinux 0x187890d3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x187a4ecd __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a7a826 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x18aa5cb7 mmput_async +EXPORT_SYMBOL vmlinux 0x18ae7843 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x18b29d36 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x18b4ecd0 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18b841cb pskb_expand_head +EXPORT_SYMBOL vmlinux 0x18c73317 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x18cb4f9d inet_listen +EXPORT_SYMBOL vmlinux 0x18ceca86 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x18d076ab init_task +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ff4450 mmc_release_host +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x1917a0ba scsi_device_resume +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x19263ded devm_free_irq +EXPORT_SYMBOL vmlinux 0x193406df sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1956d93c tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x19831979 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c50687 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19f4883a dm_register_target +EXPORT_SYMBOL vmlinux 0x1a02e1ac from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1a0f3b68 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x1a127d7a pid_task +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a23962d dmam_pool_create +EXPORT_SYMBOL vmlinux 0x1a400e76 search_binary_handler +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a465980 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1a56ba71 param_set_byte +EXPORT_SYMBOL vmlinux 0x1a5d617d cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a698d93 audit_log_start +EXPORT_SYMBOL vmlinux 0x1a6d75fc send_sig_info +EXPORT_SYMBOL vmlinux 0x1a77da73 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x1a7f3b45 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1a802534 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a93ee03 release_sock +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab59b3f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1abd72a3 vfs_link +EXPORT_SYMBOL vmlinux 0x1ac01bd5 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aeef91e scsi_host_get +EXPORT_SYMBOL vmlinux 0x1af2b90d d_path +EXPORT_SYMBOL vmlinux 0x1b001745 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b18e95a dquot_initialize +EXPORT_SYMBOL vmlinux 0x1b2384cb fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x1b4398c8 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x1b524e9c phy_start +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b86c724 dump_page +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baf0ee7 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbc0b32 __kfree_skb +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd9fad2 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1bdf0b33 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x1be700b9 unlock_buffer +EXPORT_SYMBOL vmlinux 0x1bfaa0c6 dev_printk +EXPORT_SYMBOL vmlinux 0x1bfebcef phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1c144393 page_pool_create +EXPORT_SYMBOL vmlinux 0x1c1b9f8e _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1c2071ae blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c580014 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c70e1d7 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x1c850a96 kernel_write +EXPORT_SYMBOL vmlinux 0x1c870318 clk_add_alias +EXPORT_SYMBOL vmlinux 0x1cb26067 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cc20155 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x1cdf0622 free_buffer_head +EXPORT_SYMBOL vmlinux 0x1cee3f49 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x1cfba02c napi_get_frags +EXPORT_SYMBOL vmlinux 0x1d066ecf __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0974a0 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x1d128d9c pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1ebb99 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d31712a inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x1d33db79 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d53700b jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x1d69f5f7 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1d7928ed compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1dac42b4 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dcbd687 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4e9f2 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0a74ba mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e39b585 pci_set_master +EXPORT_SYMBOL vmlinux 0x1e40bec6 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x1e619972 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x1e625171 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e745236 secpath_set +EXPORT_SYMBOL vmlinux 0x1e7ad4da phy_init_hw +EXPORT_SYMBOL vmlinux 0x1e949b7e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaa0c2d sk_stream_error +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb17b3e block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x1eb2729b sock_wmalloc +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ece852c tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee548d4 __pagevec_release +EXPORT_SYMBOL vmlinux 0x1ee83e3b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x1f03fe56 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x1f0c1911 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x1f106a2d mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x1f156e85 pci_disable_device +EXPORT_SYMBOL vmlinux 0x1f336717 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x1f39bc01 dump_emit +EXPORT_SYMBOL vmlinux 0x1f89d409 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x1f9350b4 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1f9da3b2 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1fa6fc92 deactivate_super +EXPORT_SYMBOL vmlinux 0x1fa8756a pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fc247e7 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1fa89 config_group_init +EXPORT_SYMBOL vmlinux 0x1fd297bc touch_buffer +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200095b1 vga_con +EXPORT_SYMBOL vmlinux 0x20082a60 param_set_int +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2014b27d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x2030368c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2058034f __put_cred +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2087a951 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a8545a cdev_init +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x210ad230 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x212d3fb7 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x216758f5 poll_freewait +EXPORT_SYMBOL vmlinux 0x2171f8b8 dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x218bf726 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21aef2ec nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c05bc4 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x21c29325 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x21ddb47b __ip_dev_find +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21f0b16f clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x2209c0fb gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x221cd63c gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22415798 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x224bfd68 pci_bus_type +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22784d26 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2279dd65 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x227b1718 tboot +EXPORT_SYMBOL vmlinux 0x227b2be3 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x229a9c57 get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0x22a6a68e set_posix_acl +EXPORT_SYMBOL vmlinux 0x22ab8488 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x22abe706 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x22abf964 _dev_info +EXPORT_SYMBOL vmlinux 0x22af1ed0 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b68c5a scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x2319d08a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x23292d45 finalize_exec +EXPORT_SYMBOL vmlinux 0x232b9494 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x232ddb73 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x233e1df9 bio_endio +EXPORT_SYMBOL vmlinux 0x2340eea6 __frontswap_store +EXPORT_SYMBOL vmlinux 0x2360dc46 nonseekable_open +EXPORT_SYMBOL vmlinux 0x2360ff2d flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x2364d5fd cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x2364da19 key_validate +EXPORT_SYMBOL vmlinux 0x23753bc2 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238db972 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x238eaab0 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x2391719b drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x23982cb8 arp_create +EXPORT_SYMBOL vmlinux 0x239ec42b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x23b52756 d_invalidate +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23ce59ea nf_reinject +EXPORT_SYMBOL vmlinux 0x23d0b2f7 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f26026 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x23fc3737 input_open_device +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24179c8d udp_poll +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24282711 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x2429c286 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2455ec4b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2457913a udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245a8080 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x246089ab vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249300e9 make_kgid +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dfaeed i2c_verify_client +EXPORT_SYMBOL vmlinux 0x2501311c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2523c2df blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257f37ec redraw_screen +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259568d9 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x25a41f5b sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x25d40fed xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e55ac9 single_release +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ff9c98 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x260934d8 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260a20e6 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x2614ced7 cdev_device_add +EXPORT_SYMBOL vmlinux 0x261bab9d amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x26301a6d irq_set_chip +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2675bdc3 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2681e5fb inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x268a1196 release_pages +EXPORT_SYMBOL vmlinux 0x269303d8 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x269303f6 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x2694dd93 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x269be5eb bdi_put +EXPORT_SYMBOL vmlinux 0x26bac83d tty_check_change +EXPORT_SYMBOL vmlinux 0x26d24cb8 vm_event_states +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ed2ab5 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x27097c46 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271dcbc0 inet_frags_init +EXPORT_SYMBOL vmlinux 0x272a581e dev_addr_add +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x27300499 ip_frag_next +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +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 0x27902969 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c1daa0 vga_client_register +EXPORT_SYMBOL vmlinux 0x27cb8045 vfs_getattr +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d92fe8 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x27dbc546 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x280cdf17 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282b3c03 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x282e5b3a flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2830bf09 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x28330d9b tcp_close +EXPORT_SYMBOL vmlinux 0x283c9406 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x2847788f kill_pid +EXPORT_SYMBOL vmlinux 0x285dfa45 proc_mkdir +EXPORT_SYMBOL vmlinux 0x2862a6db scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28b0fbdf twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x28ce472c serio_close +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28eefe23 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29169516 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x2927e517 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x2935613e dm_put_device +EXPORT_SYMBOL vmlinux 0x29361773 complete +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x2959e6fa iptun_encaps +EXPORT_SYMBOL vmlinux 0x2964d55f mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x29673753 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert +EXPORT_SYMBOL vmlinux 0x29848519 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x298df820 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e65e20 param_ops_uint +EXPORT_SYMBOL vmlinux 0x29e6f9a8 iterate_dir +EXPORT_SYMBOL vmlinux 0x2a051199 __quota_error +EXPORT_SYMBOL vmlinux 0x2a17fd9d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x2a2a353c kernel_bind +EXPORT_SYMBOL vmlinux 0x2a2f2ee5 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a44eddb param_set_uint +EXPORT_SYMBOL vmlinux 0x2a6aa916 inode_insert5 +EXPORT_SYMBOL vmlinux 0x2a80cd19 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aac44d4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock +EXPORT_SYMBOL vmlinux 0x2abed8f6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x2ad2d14b __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x2aeccde7 vmap +EXPORT_SYMBOL vmlinux 0x2af7a8cf ihold +EXPORT_SYMBOL vmlinux 0x2afc5827 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2b4b5816 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x2b585830 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6b6e43 block_write_end +EXPORT_SYMBOL vmlinux 0x2b8ab410 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x2b8b6f74 pps_register_source +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9fcb33 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x2ba087f4 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x2ba6bee5 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x2ba85a36 proto_unregister +EXPORT_SYMBOL vmlinux 0x2bb16a92 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x2bb1e215 pps_event +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2bbbc8f4 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdfaa8c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x2c24529d scsi_host_put +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c27c792 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c544d87 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2c577483 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c850ac3 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x2c93ae17 devm_release_resource +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cc26a54 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd3b722 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d099cd2 __invalidate_device +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d542cf8 genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d7370a2 phy_disconnect +EXPORT_SYMBOL vmlinux 0x2d756cea rfkill_alloc +EXPORT_SYMBOL vmlinux 0x2d7865f8 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x2d84d59a security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2d8e4b45 migrate_page_states +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da95f76 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2db7bad7 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2dc1cff1 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2dcc670f can_nice +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2ddc9464 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1cc91f mount_bdev +EXPORT_SYMBOL vmlinux 0x2e2a98cf dev_uc_sync +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2bd075 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e59b005 simple_open +EXPORT_SYMBOL vmlinux 0x2e7d6959 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x2e9fa572 get_dev_data +EXPORT_SYMBOL vmlinux 0x2ea0a30c pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x2ea0b7e3 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x2ea3c04c __sb_end_write +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2eca709f i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x2ecd332e tcp_mmap +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2edf3317 arp_tbl +EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ef57a31 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2f028261 phy_write_paged +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f239063 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x2f243e82 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f39f6f1 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x2f528781 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f6d80c1 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x2f702956 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8dcf8f complete_request_key +EXPORT_SYMBOL vmlinux 0x2f9957eb param_get_ushort +EXPORT_SYMBOL vmlinux 0x2fc62dc3 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x2fd773f8 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x3011d691 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x301fa007 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0x3042d394 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x305a0b60 to_nd_btt +EXPORT_SYMBOL vmlinux 0x305ea56e jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3061c7a5 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x306e7b4e find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x307a7d76 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x308aa9fb nobh_write_begin +EXPORT_SYMBOL vmlinux 0x3091f2c6 lock_rename +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30975b33 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x30a1e731 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b60987 to_ndd +EXPORT_SYMBOL vmlinux 0x30c494e9 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x30e6ae3d mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30facb79 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3108049c scsi_host_busy +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3128dbb6 sock_edemux +EXPORT_SYMBOL vmlinux 0x3142e5a0 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x315855b5 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x3182b070 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x31834a5c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3188faca phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31cb1880 input_get_keycode +EXPORT_SYMBOL vmlinux 0x31fe7fa6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x321871b3 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x321dbd61 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3230215a mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3239515d netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x323c128e dquot_quota_on +EXPORT_SYMBOL vmlinux 0x32422e6b single_open_size +EXPORT_SYMBOL vmlinux 0x324c472e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x32571d07 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x32607c20 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3267777c pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3299aab7 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x32a692ee cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x32a7f1ee __neigh_create +EXPORT_SYMBOL vmlinux 0x32ae070f phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x32ae5741 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x32b61be1 vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0x32ca6a0a pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x32cab4bd simple_transaction_release +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x330ed83e dev_mc_init +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x3333711b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3334da53 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x333a60b6 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x33402ee2 seq_putc +EXPORT_SYMBOL vmlinux 0x3362a800 register_framebuffer +EXPORT_SYMBOL vmlinux 0x3368c412 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3378c22c flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x337ec9cc __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x33810425 vme_master_request +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d05f5f generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x33d9f028 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x33e20cda xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x33ebd3ef tcp_seq_next +EXPORT_SYMBOL vmlinux 0x33f05618 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f36627 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x33f44599 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x3465fb1d __seq_open_private +EXPORT_SYMBOL vmlinux 0x347214ab dev_add_offload +EXPORT_SYMBOL vmlinux 0x34802cc8 bdi_register +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x349a3d3a abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b7c51f pipe_unlock +EXPORT_SYMBOL vmlinux 0x34dc8641 cdev_add +EXPORT_SYMBOL vmlinux 0x34f03604 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x35168d0c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3520a877 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x35266a53 sock_efree +EXPORT_SYMBOL vmlinux 0x352e72c5 tty_kref_put +EXPORT_SYMBOL vmlinux 0x3539bc92 filp_open +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x358063f7 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x35906b37 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35acc71e dma_sync_wait +EXPORT_SYMBOL vmlinux 0x35e4a9ce __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x35f2d11c is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36119067 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3616f917 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x363d894b pci_find_bus +EXPORT_SYMBOL vmlinux 0x364c27a4 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x364e9557 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x36544377 wake_up_process +EXPORT_SYMBOL vmlinux 0x36566c0c flush_old_exec +EXPORT_SYMBOL vmlinux 0x36575d02 sock_alloc +EXPORT_SYMBOL vmlinux 0x365a2306 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3661a12f security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x367d4ec4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x36acd8aa scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x36b6cdb0 vme_dma_request +EXPORT_SYMBOL vmlinux 0x36c86b89 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x36cabfdc tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x36f09420 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x36f1d7ac lock_page_memcg +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371d3440 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x372977d8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x373bac84 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x373fdbd5 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37487f77 unix_get_socket +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x378b2bca __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x37a373e1 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37de87b4 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x37dfccd9 new_inode +EXPORT_SYMBOL vmlinux 0x37ec8d4a __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3812050a _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3829808c eth_type_trans +EXPORT_SYMBOL vmlinux 0x383e2753 scsi_print_result +EXPORT_SYMBOL vmlinux 0x38450650 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x385654f0 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x38587d1c key_unlink +EXPORT_SYMBOL vmlinux 0x386caa81 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388daa00 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a6288e file_update_time +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c8ecc0 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x38ce1b67 vme_register_driver +EXPORT_SYMBOL vmlinux 0x38d4c08e ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x38d93ea2 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x38e14dfa pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39157084 pci_iomap +EXPORT_SYMBOL vmlinux 0x39174ab5 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x39180372 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x391f441c mdiobus_write +EXPORT_SYMBOL vmlinux 0x3923c9d7 udp_set_csum +EXPORT_SYMBOL vmlinux 0x392856ef sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393c3a6b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x3944fb92 of_find_backlight +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394d00c9 md_handle_request +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3959a3e8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x397819f2 install_exec_creds +EXPORT_SYMBOL vmlinux 0x3984cf23 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x39905bd7 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bd99c4 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x39ca21a8 arp_xmit +EXPORT_SYMBOL vmlinux 0x39e00699 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39ebb3d7 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x39ffbf0c d_alloc +EXPORT_SYMBOL vmlinux 0x3a0624bd sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2b3b4f pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a731b1d scsi_add_device +EXPORT_SYMBOL vmlinux 0x3a893cd2 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x3a8b1cfc inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3aa18cbe nf_log_unset +EXPORT_SYMBOL vmlinux 0x3aa2fd22 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ad59f43 file_ns_capable +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae4ba7e __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x3ae4f15b device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2a7271 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x3b2bb5d5 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b362940 netdev_info +EXPORT_SYMBOL vmlinux 0x3b3dada8 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b4d8b73 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6e1740 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3b7c69ec pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x3b823ca2 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3ba27de1 __devm_request_region +EXPORT_SYMBOL vmlinux 0x3bc6a7ab nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x3be43000 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c03c516 cont_write_begin +EXPORT_SYMBOL vmlinux 0x3c03ecfe bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x3c0c60fa rproc_shutdown +EXPORT_SYMBOL vmlinux 0x3c14a596 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1f248e skb_tx_error +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0x3c4e4d18 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x3c7a38b9 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8ffc18 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3c98a146 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x3c998897 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x3ca2787d xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x3ca75f25 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x3cb14706 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x3cbb431a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3cd1aee1 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce6e8e1 PDE_DATA +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0a17e8 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3d1532be blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3d1ce82a __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d2997e5 inode_init_always +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x3d6b6986 __check_sticky +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dc041e0 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcd493c mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3df03979 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e43c7f1 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x3e631dc5 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3e75c8e3 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x3e77727a fb_set_cmap +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95ded3 vfs_unlink +EXPORT_SYMBOL vmlinux 0x3e9cee36 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x3eac5d48 prepare_binprm +EXPORT_SYMBOL vmlinux 0x3eb868f6 input_close_device +EXPORT_SYMBOL vmlinux 0x3ec02418 genphy_loopback +EXPORT_SYMBOL vmlinux 0x3ecaf38c __module_get +EXPORT_SYMBOL vmlinux 0x3edf0747 simple_getattr +EXPORT_SYMBOL vmlinux 0x3ee16ec5 eth_header +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3ef3b8b6 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x3efa06cb sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f27e38f tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3f2e0231 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f4c4664 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x3f609478 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3f6492cb rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x3f70f7a4 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x3f70fc46 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9d0741 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3fa75818 tcp_filter +EXPORT_SYMBOL vmlinux 0x3fb3ecae netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x3fbc7258 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fcf2bcf tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x3fcf8874 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd95b64 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3feda3e6 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x401a0a2f i2c_del_driver +EXPORT_SYMBOL vmlinux 0x40279df2 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x4028d657 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x402c674f refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x4032a627 get_tree_single +EXPORT_SYMBOL vmlinux 0x40375b4e phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x404a13eb netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x40527e61 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x4058041d vfs_rename +EXPORT_SYMBOL vmlinux 0x4074d1cf jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x407cf23b __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock +EXPORT_SYMBOL vmlinux 0x409be107 pci_request_region +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bd0e3f cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d26e94 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40ed9716 amd_iommu_rlookup_table +EXPORT_SYMBOL vmlinux 0x40f02e74 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x40f09144 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414ed07c pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x4151b688 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x415c77b3 __frontswap_test +EXPORT_SYMBOL vmlinux 0x4165f704 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x416ae236 dev_set_group +EXPORT_SYMBOL vmlinux 0x4182ac22 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41bc6651 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x41c1950e ab3100_event_register +EXPORT_SYMBOL vmlinux 0x41c3427b msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x41dd79b8 may_umount +EXPORT_SYMBOL vmlinux 0x41e1b98c __scsi_add_device +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41ee5b50 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f7b283 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x420c511b import_single_range +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42183813 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x421e3aa3 user_path_create +EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4231623a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4239f8fe ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4255f9ac devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425e6532 seq_file_path +EXPORT_SYMBOL vmlinux 0x42626d51 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x427bf667 fb_find_mode +EXPORT_SYMBOL vmlinux 0x4288103c pnp_device_attach +EXPORT_SYMBOL vmlinux 0x42bab734 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x42bb9093 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c31894 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x42ddfe98 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x42e6bece ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x42ec5803 inet_add_offload +EXPORT_SYMBOL vmlinux 0x42ed1a42 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x43021d1c devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430fd65e __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x43158f75 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x4335dd2c d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4346908a vm_map_pages +EXPORT_SYMBOL vmlinux 0x43494ca2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4364404b inet6_bind +EXPORT_SYMBOL vmlinux 0x4376a973 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437a109b ppp_register_channel +EXPORT_SYMBOL vmlinux 0x437dacff blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438c7a5d mdio_device_create +EXPORT_SYMBOL vmlinux 0x4390cc38 md_register_thread +EXPORT_SYMBOL vmlinux 0x43ab46a1 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x43ad1590 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b68496 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x43caaea6 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x43dc1e1b set_page_dirty +EXPORT_SYMBOL vmlinux 0x43e0d30e finish_swait +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x440563ee register_console +EXPORT_SYMBOL vmlinux 0x4408785b end_page_writeback +EXPORT_SYMBOL vmlinux 0x44097425 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x44132ffd get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x44162ac6 follow_pfn +EXPORT_SYMBOL vmlinux 0x4425020a __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x442e8c66 netdev_emerg +EXPORT_SYMBOL vmlinux 0x44359beb configfs_register_group +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44512b7d fddi_type_trans +EXPORT_SYMBOL vmlinux 0x445a1003 blk_queue_split +EXPORT_SYMBOL vmlinux 0x445a81ce boot_cpu_data +EXPORT_SYMBOL vmlinux 0x448f0950 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4494c008 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x44953d25 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a2dd24 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44e2233f tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4501741b udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45127857 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x451b2279 tty_name +EXPORT_SYMBOL vmlinux 0x45270e40 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x452947d3 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x452b5129 dup_iter +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452f3515 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x4534cea5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x453b5dfd unlock_new_inode +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4553a8c2 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x45560989 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4571a6c1 mntput +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459b4cc3 dma_pool_create +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45dfec70 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x45e2da5f scsi_remove_target +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45faf1d4 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x464222f2 phy_device_create +EXPORT_SYMBOL vmlinux 0x46597bfa vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4676f4d2 dev_change_flags +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46957a3a i8042_install_filter +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ac6ad5 init_special_inode +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46ec5aa8 module_refcount +EXPORT_SYMBOL vmlinux 0x46ef201b sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x470241cb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x470575c8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x4719f511 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x474194d9 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4742e9ec vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x474e0091 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478bf9bd input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47941711 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x47957150 sock_no_accept +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479aa533 iget_locked +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b1cce5 file_remove_privs +EXPORT_SYMBOL vmlinux 0x47c42a22 cpu_tss_rw +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cc6d65 i2c_release_client +EXPORT_SYMBOL vmlinux 0x47e6c145 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x47ec8cd2 d_obtain_root +EXPORT_SYMBOL vmlinux 0x47fc94b8 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x480ef5ce __register_nls +EXPORT_SYMBOL vmlinux 0x4811816a dquot_drop +EXPORT_SYMBOL vmlinux 0x48175b6c pcim_pin_device +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483248bd brioctl_set +EXPORT_SYMBOL vmlinux 0x4836942a dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x4839f3c0 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484c37e1 elv_rb_add +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485f61f3 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x485fc6da sock_kfree_s +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4863813a rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x488342aa kernel_getsockname +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48abf8b8 mmc_erase +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be586c alloc_fddidev +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d74a12 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x48e5d91d nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x48eacdb8 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x48f37b09 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x49412692 dqget +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x4958cb88 sock_init_data +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x495fdf50 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x497982fb fb_validate_mode +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499485b1 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a02f2b bio_free_pages +EXPORT_SYMBOL vmlinux 0x49a2b6bb fb_blank +EXPORT_SYMBOL vmlinux 0x49af2381 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b37e51 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x49bd42d7 pci_match_id +EXPORT_SYMBOL vmlinux 0x49c41a57 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x49cf041f pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x49e78a1b clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x49e8c84f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x49e95ca4 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x49ee5e39 hmm_mirror_register +EXPORT_SYMBOL vmlinux 0x49efec21 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4a06d719 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4a282622 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a5bb917 nf_log_register +EXPORT_SYMBOL vmlinux 0x4a5ed44c __put_user_ns +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9dd28c seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x4aadd9ad vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4aae5967 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x4ab106e3 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4ab6689d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4abbe8b7 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4abd7a6c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ac09292 dma_find_channel +EXPORT_SYMBOL vmlinux 0x4ad0ecc7 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4ad2ae47 qdisc_reset +EXPORT_SYMBOL vmlinux 0x4add0ac2 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x4ae673eb ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af9d2fa skb_split +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0eddaf devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4b26d866 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b5bcb1e devm_clk_put +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b68c985 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x4b6c047c fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0x4babeab6 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bb694c8 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd86023 fb_class +EXPORT_SYMBOL vmlinux 0x4becb9b5 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bff34be init_pseudo +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c347678 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c46bf0d do_SAK +EXPORT_SYMBOL vmlinux 0x4c605f52 path_get +EXPORT_SYMBOL vmlinux 0x4c8561a8 phy_loopback +EXPORT_SYMBOL vmlinux 0x4c9ab701 udp_seq_next +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc40320 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x4cc8fe70 tcf_classify +EXPORT_SYMBOL vmlinux 0x4ccd378a _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cdc400e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4ceda664 param_get_short +EXPORT_SYMBOL vmlinux 0x4cfad12f dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4d06a8a2 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4d276484 genphy_suspend +EXPORT_SYMBOL vmlinux 0x4d288618 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d585915 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4d641dcc mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x4d68fc39 ilookup +EXPORT_SYMBOL vmlinux 0x4d6d4b97 rproc_put +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d946801 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x4d9747d5 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d97ebc9 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db392f6 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd5eb45 km_policy_notify +EXPORT_SYMBOL vmlinux 0x4de976e9 padata_free_shell +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4dea40ea km_new_mapping +EXPORT_SYMBOL vmlinux 0x4ded7762 simple_lookup +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e32caf1 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e596bb5 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7542c9 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x4e906778 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x4e91bf2b cdev_set_parent +EXPORT_SYMBOL vmlinux 0x4e9ea227 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eb932cc d_rehash +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec67897 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x4ed053df inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x4ed708d8 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x4f10aba3 is_subdir +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f912e vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4f2203de is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f256e63 _dev_err +EXPORT_SYMBOL vmlinux 0x4f37d392 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x4f4e9b35 pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f6268ed vlan_for_each +EXPORT_SYMBOL vmlinux 0x4f70704c kill_fasync +EXPORT_SYMBOL vmlinux 0x4f783755 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4f9d6053 dma_resv_init +EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4fc59158 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4fd69d89 dev_load +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe378c0 get_tz_trend +EXPORT_SYMBOL vmlinux 0x4fe5b961 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x500444eb amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501409db do_clone_file_range +EXPORT_SYMBOL vmlinux 0x501acb1b qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x5026b592 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5046f940 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x50472da3 kset_unregister +EXPORT_SYMBOL vmlinux 0x504e4a72 dquot_disable +EXPORT_SYMBOL vmlinux 0x50514967 netif_device_attach +EXPORT_SYMBOL vmlinux 0x5057caed ps2_handle_response +EXPORT_SYMBOL vmlinux 0x505ebc95 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507794bb nf_setsockopt +EXPORT_SYMBOL vmlinux 0x507a1798 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x50948d52 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50abe4ae sock_no_listen +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50bac317 sock_rfree +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c44a20 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e2402f tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x510051da __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x5106a966 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x512557b7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x51334356 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x513f6cd9 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516568ab key_type_keyring +EXPORT_SYMBOL vmlinux 0x51760917 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x51817afd devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x518593ee call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x51b20a1e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51dc3ddd devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x51e8bf19 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x51f1193e netif_skb_features +EXPORT_SYMBOL vmlinux 0x52091b4b kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x520b3ef1 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5212e4c9 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x52216caa pci_save_state +EXPORT_SYMBOL vmlinux 0x5236056d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x52492357 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x524bacb5 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x526a2204 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52790a0f vfs_setpos +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529b1e5c finish_open +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f90ba5 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x52fae915 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x52fb324f from_kuid +EXPORT_SYMBOL vmlinux 0x52fefadf phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x53036747 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5303945a no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532f7673 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5356751b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x537db4bc dev_driver_string +EXPORT_SYMBOL vmlinux 0x537fc153 dput +EXPORT_SYMBOL vmlinux 0x539193e1 d_alloc_name +EXPORT_SYMBOL vmlinux 0x5397e462 dst_alloc +EXPORT_SYMBOL vmlinux 0x53a258d4 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x53a39ad1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d40c06 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x53defbf8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x53e45ad8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x53eaea0b vme_lm_request +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542ecac0 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x54303826 vme_bus_num +EXPORT_SYMBOL vmlinux 0x54361678 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x543bf9dc backlight_force_update +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x54688080 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b785ae unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x54b8350a dev_get_stats +EXPORT_SYMBOL vmlinux 0x54bf317a devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x54c52077 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x54ca53f7 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x54caa5f2 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x54db17b7 misc_register +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e78820 pci_get_device +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54fecb0c _dev_notice +EXPORT_SYMBOL vmlinux 0x5500616b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x55069d9d registered_fb +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551ea9c4 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x55282e5c skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x552c947d tcf_exts_change +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55570569 mdio_device_register +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x5567a507 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x556e6691 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x5577442e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5582d1b2 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559e6bc6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x55a87db2 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x55d98a4a neigh_xmit +EXPORT_SYMBOL vmlinux 0x55ddfc06 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e9369b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x562e5c28 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56382403 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x5643284b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564790e3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x569ce12e scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x56c103ec alloc_pages_current +EXPORT_SYMBOL vmlinux 0x56c6566f pci_read_config_word +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ce6107 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x56f31146 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x573f910a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5751c3d8 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57702fed inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578aefbe compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792ce57 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a00c7b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x57a83d62 load_nls_default +EXPORT_SYMBOL vmlinux 0x57b5e09c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57d42a18 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x57d44f9e flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x57da31a0 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x57e9c298 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x57f21c95 km_state_expired +EXPORT_SYMBOL vmlinux 0x57fb4127 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x581de194 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58308893 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5838958e scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5848da6a xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5851631a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5863c357 xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x5869fa2d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x5873b51e __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x58961c6c udp_gro_complete +EXPORT_SYMBOL vmlinux 0x58a0231d tso_count_descs +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b16c4f seq_release +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bbd549 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x58c1e121 bdevname +EXPORT_SYMBOL vmlinux 0x58c971ef dquot_quota_off +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fc82b2 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x59269739 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5933c165 dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x5947b088 input_unregister_device +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59548fd4 get_super_thawed +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x595e14a6 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x59738222 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x597f54c0 native_restore_fl +EXPORT_SYMBOL vmlinux 0x59958545 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x59995d2b set_pages_wb +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x599ffb2b dma_ops +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59afba47 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x59b07009 vc_cons +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b7bf75 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x59c2b6b4 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x59e70cea blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1b9e77 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x5a202c8d ata_port_printk +EXPORT_SYMBOL vmlinux 0x5a245f6d _raw_write_lock +EXPORT_SYMBOL vmlinux 0x5a25baf8 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x5a2b48e6 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x5a3580ef hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x5a4120c8 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a464f74 _dev_warn +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4afd09 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a5af629 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a903c22 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9383c6 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5a974233 rproc_alloc +EXPORT_SYMBOL vmlinux 0x5a9afd66 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x5adc59ed generic_write_checks +EXPORT_SYMBOL vmlinux 0x5ae11f87 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x5af0c6bc kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x5b192746 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b2fe8ee padata_do_serial +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b50f3a4 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b59c604 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x5b6595f2 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x5b6a9b28 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x5b70392d pci_claim_resource +EXPORT_SYMBOL vmlinux 0x5b713a39 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x5b857ea9 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x5b8f2b04 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x5b97dfee unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5bafb1e1 set_user_nice +EXPORT_SYMBOL vmlinux 0x5bc3700d ptp_clock_index +EXPORT_SYMBOL vmlinux 0x5be1b965 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bea24b3 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x5bed55c4 gro_cells_init +EXPORT_SYMBOL vmlinux 0x5bf440f9 param_ops_short +EXPORT_SYMBOL vmlinux 0x5bf767e0 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x5bf998a8 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5bfc81e5 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x5c22ab02 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5c3099a8 register_netdevice +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c4c3872 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x5c5bcdf8 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5c5e5324 dump_truncate +EXPORT_SYMBOL vmlinux 0x5c626518 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5c8af682 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5ca12f28 param_set_ullong +EXPORT_SYMBOL vmlinux 0x5ca8c748 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x5cc44643 genphy_update_link +EXPORT_SYMBOL vmlinux 0x5cd06df9 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x5ce618e9 unregister_nls +EXPORT_SYMBOL vmlinux 0x5ce86678 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d114419 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5630be pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x5d67a245 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x5d70cf09 nd_device_register +EXPORT_SYMBOL vmlinux 0x5d764777 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x5d86e080 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x5d94b800 param_ops_bool +EXPORT_SYMBOL vmlinux 0x5da49b02 sock_i_ino +EXPORT_SYMBOL vmlinux 0x5da4d8f5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x5dc24ee0 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5dc5707f amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x5dd3fc5b security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x5dd92069 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e00cefb register_shrinker +EXPORT_SYMBOL vmlinux 0x5e0e0d27 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5e1f7d9a setattr_prepare +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3abf14 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x5e3beb34 devm_request_resource +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e5d1e68 inet_shutdown +EXPORT_SYMBOL vmlinux 0x5e677989 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e738870 kern_unmount +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e7ee2ed capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x5e81b9b1 set_disk_ro +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e86beeb tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x5e934ed9 vga_put +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea07f12 get_acl +EXPORT_SYMBOL vmlinux 0x5ea778a6 vfs_readlink +EXPORT_SYMBOL vmlinux 0x5eafeb68 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb303e2 netdev_err +EXPORT_SYMBOL vmlinux 0x5ebdcfc2 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x5ecc2af9 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee075d4 netdev_printk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f08df26 scsi_device_put +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f12fa5c mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x5f208f4f param_set_charp +EXPORT_SYMBOL vmlinux 0x5f22a9c2 d_add +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6e9270 cdrom_open +EXPORT_SYMBOL vmlinux 0x5f729c48 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5f8022db dst_discard_out +EXPORT_SYMBOL vmlinux 0x5f83b629 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5f923e1f mmc_can_erase +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fc0b225 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fe82d41 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x5fee9c71 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6006e53b fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x600b12af neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x601be1f0 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x601efad9 neigh_lookup +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6028902d security_inode_init_security +EXPORT_SYMBOL vmlinux 0x60339718 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl +EXPORT_SYMBOL vmlinux 0x6045d505 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x60499fe1 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x60577fd7 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60595b27 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x605dcb0b scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6064fa4c tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x606700c6 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x6070f393 unlock_rename +EXPORT_SYMBOL vmlinux 0x607979bb inet_accept +EXPORT_SYMBOL vmlinux 0x6079cc89 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x607fef91 agp_copy_info +EXPORT_SYMBOL vmlinux 0x6085601b kobject_set_name +EXPORT_SYMBOL vmlinux 0x6085858a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x60879f5d pci_find_capability +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6094d46c inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ac8487 release_firmware +EXPORT_SYMBOL vmlinux 0x60adac2f devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b77d58 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x60c23a2c blkdev_fsync +EXPORT_SYMBOL vmlinux 0x60d82203 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60f1b4d7 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x60f56b14 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x60f800f8 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x60f94eb6 __put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x6108113c zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0x61125a84 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds +EXPORT_SYMBOL vmlinux 0x61228809 cdrom_release +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b173f dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x61316a66 netdev_features_change +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x614ba56a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x61519ccb jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x61525e0e xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x61560e49 generic_fillattr +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +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 0x618d00f2 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61ac4347 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x61b14ebb seq_pad +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb7f18 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x61cad5d3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61eae78d d_tmpfile +EXPORT_SYMBOL vmlinux 0x6204a12c phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x62068586 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621a6ea9 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6254332c ps2_end_command +EXPORT_SYMBOL vmlinux 0x62574f44 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6271f5f9 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627f9151 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x628d0fa6 tty_port_init +EXPORT_SYMBOL vmlinux 0x6291ffc6 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62fcdc92 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x62fd0331 kobject_del +EXPORT_SYMBOL vmlinux 0x6305ea62 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x6306e115 tcf_em_register +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63248749 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x63325953 param_get_invbool +EXPORT_SYMBOL vmlinux 0x6349ae63 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x634a60fe file_open_root +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6379fd04 irq_to_desc +EXPORT_SYMBOL vmlinux 0x63a5fa2a compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ad76c9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cd1a6d iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63ea6f7b inode_set_bytes +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f15288 d_lookup +EXPORT_SYMBOL vmlinux 0x63f90698 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x64054bbb dev_close +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x642347d2 bdev_read_only +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x64467b41 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x6455ead1 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x6477edba devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64820ecf __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x6483a4fd module_put +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6494ded8 unlock_page +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a1f386 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64afd6d1 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x64b6f6f5 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c718b1 bio_split +EXPORT_SYMBOL vmlinux 0x64ced0b8 noop_fsync +EXPORT_SYMBOL vmlinux 0x64e25074 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x64e9f6e4 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x65035ef9 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x65052a27 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651b15c6 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x65648b17 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x656a0373 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x6595b10b pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a4d64b is_nd_dax +EXPORT_SYMBOL vmlinux 0x65abd517 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e06cfb netlink_broadcast +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f7b44c locks_remove_posix +EXPORT_SYMBOL vmlinux 0x6600df65 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x66011feb iov_iter_init +EXPORT_SYMBOL vmlinux 0x66059468 vme_bus_type +EXPORT_SYMBOL vmlinux 0x6607ad7b xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x6609df2b backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x665796ce textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x665f6b34 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6675286f blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x667ad706 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x667d8782 inc_nlink +EXPORT_SYMBOL vmlinux 0x6684615e dcb_getapp +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66942717 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66d00d74 set_create_files_as +EXPORT_SYMBOL vmlinux 0x66d10224 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x66d544d1 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x66dc1f0d freeze_bdev +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66e218c5 tty_port_open +EXPORT_SYMBOL vmlinux 0x66fc154e fs_parse +EXPORT_SYMBOL vmlinux 0x670b7197 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x67103481 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67428f3e jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67536ea4 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x67789026 inode_permission +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679bee95 ps2_command +EXPORT_SYMBOL vmlinux 0x67a3f503 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x67a67776 put_tty_driver +EXPORT_SYMBOL vmlinux 0x67b00a01 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67d4e198 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0x67d84d66 tty_devnum +EXPORT_SYMBOL vmlinux 0x67ed0641 km_state_notify +EXPORT_SYMBOL vmlinux 0x67f0809a request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x67fb95a3 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x681e0ecc __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x681f1baa jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x6839667d locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x683b2308 __lock_page +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x685a1dbe vfs_get_tree +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689979aa padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68b0f5f7 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x68b691d5 _dev_emerg +EXPORT_SYMBOL vmlinux 0x68b97f64 _dev_alert +EXPORT_SYMBOL vmlinux 0x68bd0e37 dentry_open +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6911aad6 tty_throttle +EXPORT_SYMBOL vmlinux 0x69210ba3 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x692c4cb5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x693934c4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697c2a42 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d1b4d6 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e4ef58 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x69faab47 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x6a0231a7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1d2537 d_splice_alias +EXPORT_SYMBOL vmlinux 0x6a1e29ab skb_free_datagram +EXPORT_SYMBOL vmlinux 0x6a24e444 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a48759c tty_register_device +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5f6496 blk_put_queue +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a61ba90 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x6a6cc019 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x6a759b0f scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6a8b9128 devm_iounmap +EXPORT_SYMBOL vmlinux 0x6a91e030 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa86e04 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6ab91c0f mmc_request_done +EXPORT_SYMBOL vmlinux 0x6aba8c58 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x6abd9148 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x6ac38d58 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x6ac96710 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x6ad61937 locks_free_lock +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afbe165 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x6b019aed pci_set_mwi +EXPORT_SYMBOL vmlinux 0x6b07d0aa rproc_boot +EXPORT_SYMBOL vmlinux 0x6b23a705 free_netdev +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2f4b1c __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x6b4756aa param_get_int +EXPORT_SYMBOL vmlinux 0x6b4e5ebc cdev_alloc +EXPORT_SYMBOL vmlinux 0x6b516c1f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x6b533015 processors +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b58b3ad phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b65aef0 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x6b8283be convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8d1640 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x6b8f7356 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x6b9b7545 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x6baebdad generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6bb43e6c handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf0266 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be576c8 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x6bfac24d mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x6c06f255 fb_pan_display +EXPORT_SYMBOL vmlinux 0x6c09f8fb tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x6c1496cd xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c32e395 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x6c59cdb6 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c76d691 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6c7a5ecc __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x6c817ef6 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c8dbeca of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6c929d93 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6caa9f1a generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc5d4ad sk_common_release +EXPORT_SYMBOL vmlinux 0x6ccf57d0 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x6ccfd99c __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x6cd79d7e pci_clear_master +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d03ed63 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x6d04db2d padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x6d13e5fd dm_kobject_release +EXPORT_SYMBOL vmlinux 0x6d222a74 pskb_extract +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3d7fa1 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x6d40e2f6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x6d431561 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x6d53a705 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5d88b5 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6544f3 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6d690b83 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x6d8aee4f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x6db92e4a __dquot_free_space +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd7c308 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x6ddeccb3 sget +EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6de1897c blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x6dec27cb jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e06df0b sk_capable +EXPORT_SYMBOL vmlinux 0x6e22dae6 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x6e247fa3 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6e27d3b2 generic_permission +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e55f713 tty_lock +EXPORT_SYMBOL vmlinux 0x6e5973a0 blkdev_get +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e746ba5 skb_clone +EXPORT_SYMBOL vmlinux 0x6e848c9d param_get_bool +EXPORT_SYMBOL vmlinux 0x6e8927a0 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb04a22 sget_fc +EXPORT_SYMBOL vmlinux 0x6ec1b687 register_filesystem +EXPORT_SYMBOL vmlinux 0x6ece6345 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6ed7953b devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6edc4d0b pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x6f02c139 serio_rescan +EXPORT_SYMBOL vmlinux 0x6f0442ec kobject_get +EXPORT_SYMBOL vmlinux 0x6f3f8509 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f446636 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x6f447574 __breadahead +EXPORT_SYMBOL vmlinux 0x6f518148 netdev_crit +EXPORT_SYMBOL vmlinux 0x6f55ba74 wireless_send_event +EXPORT_SYMBOL vmlinux 0x6f742d83 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f81900f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6f843e3b xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9e98a8 tty_vhangup +EXPORT_SYMBOL vmlinux 0x6fa46606 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x6fa72119 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc0545b inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x6fc40ea1 bdgrab +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fccacc7 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6ffc8008 mdiobus_free +EXPORT_SYMBOL vmlinux 0x6fff5d18 pci_enable_device +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700108f9 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x700fe637 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x7010087e cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7022a4d1 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702f0748 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x704f97cb tty_port_put +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706c9beb pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x70a34999 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b11417 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x70bd2ece mmc_put_card +EXPORT_SYMBOL vmlinux 0x70dfdb34 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x70e4a6e4 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x70e67d01 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x70f6b131 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x70f7e6c5 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x710c2807 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x712078a2 vm_insert_page +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x715e4927 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717a73a1 phy_resume +EXPORT_SYMBOL vmlinux 0x7184c539 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x71984c66 dma_virt_ops +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71aab47e blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x71acdaec input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x71b5ce0e netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x71b7c5ad uart_match_port +EXPORT_SYMBOL vmlinux 0x71bc5770 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x71be658c file_path +EXPORT_SYMBOL vmlinux 0x71cd840b ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x71f5aa3b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x71fefc93 make_kuid +EXPORT_SYMBOL vmlinux 0x721b88b3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7227a8a7 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7259f3a3 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x726678f0 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x727b872c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72aa659d devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c48126 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x72cc7bfe proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee24b6 inode_init_owner +EXPORT_SYMBOL vmlinux 0x72f743a7 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x7313db16 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731c91ae pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x73211ba1 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x73247368 neigh_table_init +EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7360e36f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x736b5662 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7381342a splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x73896fad kthread_bind +EXPORT_SYMBOL vmlinux 0x73ab1129 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x73cee166 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e344a9 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x73f1d37f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x744f73ff tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x746e371c get_disk_and_module +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x749bf655 dst_release +EXPORT_SYMBOL vmlinux 0x74a9ad50 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x74ace289 keyring_clear +EXPORT_SYMBOL vmlinux 0x74ae4eda alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c49bd7 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x74cc17b7 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x74d20d6e get_cached_acl +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f5326a dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x7514cc0c sg_miter_next +EXPORT_SYMBOL vmlinux 0x7530dffe set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7538e87c scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x7544ec32 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x754b9317 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755edddb user_path_at_empty +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7572aa16 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x7578e0d9 proto_register +EXPORT_SYMBOL vmlinux 0x757b9e3e generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x757eb78e generic_update_time +EXPORT_SYMBOL vmlinux 0x7581072c tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x7581733b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758d9d50 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c6fe41 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d6b2c8 mr_dump +EXPORT_SYMBOL vmlinux 0x75e60613 key_put +EXPORT_SYMBOL vmlinux 0x75fef3e7 pci_iounmap +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761626c9 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x76162a2f inet_gro_receive +EXPORT_SYMBOL vmlinux 0x76238dbe blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76590e56 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766e22a7 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7695c96c vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a2565c blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x76ab496b genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x76abf269 sk_alloc +EXPORT_SYMBOL vmlinux 0x76b367da vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x76b398bd mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x76b4f02a put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x76bd138d devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d8f21e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x770475d7 sg_miter_start +EXPORT_SYMBOL vmlinux 0x771699cc cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x771ccec6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x772c3eec is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774177a8 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774c6e95 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7753dc70 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x777d4a84 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x778f8d4c bio_uninit +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77baa04a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d196f7 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x77d8e6ea bio_put +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77e9f8e7 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x78060d12 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7812c047 __vmalloc +EXPORT_SYMBOL vmlinux 0x781c01d4 netdev_change_features +EXPORT_SYMBOL vmlinux 0x78287d92 bd_set_size +EXPORT_SYMBOL vmlinux 0x782887cf follow_down_one +EXPORT_SYMBOL vmlinux 0x7841e953 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7847b0da generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x7868c108 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x78734b3b acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7896637a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789c7f9e iput +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a4bbcb kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x78bd056d put_disk_and_module +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78df7e16 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x79121587 mmc_start_request +EXPORT_SYMBOL vmlinux 0x7917f6b7 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x79246de5 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7927d35e ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x792b99e2 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x797250e0 register_netdev +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x797d95d8 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7981af65 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b4ca29 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x79bbfe57 iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x79cce00e dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x79cf687c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0d37a7 __put_page +EXPORT_SYMBOL vmlinux 0x7a0e5aa6 ether_setup +EXPORT_SYMBOL vmlinux 0x7a1badba alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a28715a shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a54b2ef phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7a56a337 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x7a57cd47 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x7a70eb0b __alloc_skb +EXPORT_SYMBOL vmlinux 0x7a7b769e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a8dba2f blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x7a8fd1c6 consume_skb +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a99a2a9 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad6bceb bdput +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b228567 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x7b2438d4 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7b3b41b1 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b50421b pnp_device_detach +EXPORT_SYMBOL vmlinux 0x7b549a18 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7b57dcfb phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7b8172e8 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7baab06d alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x7bb0bf23 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb8256c path_is_under +EXPORT_SYMBOL vmlinux 0x7bb93671 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bbd2476 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7be0a752 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7be4b878 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x7bfa781a dquot_free_inode +EXPORT_SYMBOL vmlinux 0x7bfd640c request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2285d7 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7c37ba25 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x7c416a80 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x7c4251a4 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c65311b skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x7c715224 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7c784b3b update_devfreq +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7ccf7b9f call_fib_notifier +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cdaacde scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf0644c bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d051b53 pci_find_pcie_root_port +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 0x7d2540e8 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7d2ac5cb rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7d30683d udp6_csum_init +EXPORT_SYMBOL vmlinux 0x7d3117d6 km_policy_expired +EXPORT_SYMBOL vmlinux 0x7d45561d sock_create_lite +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d63a379 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7d76f74b input_setup_polling +EXPORT_SYMBOL vmlinux 0x7d83c4d3 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc37ac2 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x7dc3a78f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x7dc68042 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dda4df4 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission +EXPORT_SYMBOL vmlinux 0x7de90c8a filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5be35 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7e0a5c30 ex_handler_ext +EXPORT_SYMBOL vmlinux 0x7e1205a8 d_find_alias +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e4dc015 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x7e514bfa simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x7e61210a copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7e63f172 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x7e74c150 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e883e23 set_nlink +EXPORT_SYMBOL vmlinux 0x7e8df7a1 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7e938c87 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7ea07606 revalidate_disk +EXPORT_SYMBOL vmlinux 0x7eafa092 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7eb639dd i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7ebf0f43 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock +EXPORT_SYMBOL vmlinux 0x7ee43263 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7ef713e5 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03aac6 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1bc0cd xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2ae6e5 set_cached_acl +EXPORT_SYMBOL vmlinux 0x7f3c3c3d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x7f482ee6 __free_pages +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f6706c6 __lock_buffer +EXPORT_SYMBOL vmlinux 0x7f788438 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f988bf3 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7f9c5049 dma_cache_sync +EXPORT_SYMBOL vmlinux 0x7fae8a06 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x7fbac8dc rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x7fdc03f1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fee6b67 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x7fefa7b4 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7ff5cdbc mdio_bus_type +EXPORT_SYMBOL vmlinux 0x8002de92 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x800c8585 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x8011d482 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x803c69ff keyring_alloc +EXPORT_SYMBOL vmlinux 0x80408294 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x8044b775 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x80571af0 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x8066c356 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x80956f84 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x8095a8dd qdisc_put +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a46043 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d9e0bb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x80fa16eb mmc_can_trim +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8114a652 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit +EXPORT_SYMBOL vmlinux 0x813e0b4c serio_bus +EXPORT_SYMBOL vmlinux 0x813fc97c qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81606454 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816b9110 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x817ac0e5 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8187b6ab init_net +EXPORT_SYMBOL vmlinux 0x818a4ac0 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x81903e27 tty_do_resize +EXPORT_SYMBOL vmlinux 0x81a04192 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x81ad8c99 framebuffer_release +EXPORT_SYMBOL vmlinux 0x81b280aa tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible +EXPORT_SYMBOL vmlinux 0x81be44a3 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f28aca xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x81ffefb2 security_path_mknod +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82235cf5 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x82260232 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x82322012 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x824072bf tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x82413e0b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828b8b33 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x828c539e nf_log_set +EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups +EXPORT_SYMBOL vmlinux 0x8291d5a1 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x82935eca __sk_dst_check +EXPORT_SYMBOL vmlinux 0x829499a5 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x82998b67 d_drop +EXPORT_SYMBOL vmlinux 0x82ba5f87 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x82dc8631 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x82f36010 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x82f4ec51 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8310d75b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8317eb63 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x83363ec4 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x83507777 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837cc2de xfrm_input +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a626c3 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x83e2b02b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x83fb7d7e starget_for_each_device +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8413691a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x843247a8 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x843696bf lease_modify +EXPORT_SYMBOL vmlinux 0x84405cd7 kernel_listen +EXPORT_SYMBOL vmlinux 0x8447a9bc no_llseek +EXPORT_SYMBOL vmlinux 0x846221df scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x846d8f67 igrab +EXPORT_SYMBOL vmlinux 0x846fd076 param_set_short +EXPORT_SYMBOL vmlinux 0x84708361 get_vm_area +EXPORT_SYMBOL vmlinux 0x8471acd4 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x8471dc9a __getblk_gfp +EXPORT_SYMBOL vmlinux 0x8477473f hmm_range_fault +EXPORT_SYMBOL vmlinux 0x847f5bea acpi_device_hid +EXPORT_SYMBOL vmlinux 0x84861341 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84af5124 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4cb06 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x84c927e2 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x84dfba14 touch_atime +EXPORT_SYMBOL vmlinux 0x85048609 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x85074840 page_mapping +EXPORT_SYMBOL vmlinux 0x8522150d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8529bf7b page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x8529ec87 skb_dump +EXPORT_SYMBOL vmlinux 0x852fb255 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x85315c1f dcb_setapp +EXPORT_SYMBOL vmlinux 0x854e9a06 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x855c3fdb vfs_statfs +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857b2fc5 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x859056dd inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x85a052e9 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x85a1abc5 iunique +EXPORT_SYMBOL vmlinux 0x85a284d3 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x85aed168 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c078e3 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x85c18288 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x85d731f9 d_add_ci +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0aa56 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x85f4c1f1 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x85f741dd cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x860532a9 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x860940c1 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x86171280 try_module_get +EXPORT_SYMBOL vmlinux 0x861de976 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x8632afe2 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x863571e0 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863bb0b3 bdget +EXPORT_SYMBOL vmlinux 0x864e302f compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86568f29 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x865efa5a param_set_ushort +EXPORT_SYMBOL vmlinux 0x86722234 passthru_features_check +EXPORT_SYMBOL vmlinux 0x868797ff dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8693f36b fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x8699fb75 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x869d647b phy_device_free +EXPORT_SYMBOL vmlinux 0x869dffdc pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0x86abf1c4 zap_page_range +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86dfa47d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x86e5e642 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x87513d91 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8776f927 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x8780a071 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x87a1bb8d default_llseek +EXPORT_SYMBOL vmlinux 0x87b342a9 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87caaaf5 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x87caf3fc input_register_device +EXPORT_SYMBOL vmlinux 0x87d47311 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0x87de510f rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x87e8bf80 eth_header_cache +EXPORT_SYMBOL vmlinux 0x87f95cc4 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x88097cb6 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x881182d2 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8856bc54 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x885c888c no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x8869458e netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x8875d40d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8879fc22 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889d975f pci_fixup_device +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b9d2bc phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x88d867e7 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x88d9aa3c con_copy_unimap +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x890aa6b2 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x89364412 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x894a96f2 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x894ed320 override_creds +EXPORT_SYMBOL vmlinux 0x895ed47c nf_ct_attach +EXPORT_SYMBOL vmlinux 0x89668f73 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x897baaa5 do_splice_direct +EXPORT_SYMBOL vmlinux 0x899a6cac dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x89a3205a pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x89b0562e phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c6daeb netlink_unicast +EXPORT_SYMBOL vmlinux 0x89c6e4c5 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x89d82bcd block_commit_write +EXPORT_SYMBOL vmlinux 0x89d8530b genphy_read_status +EXPORT_SYMBOL vmlinux 0x89e6357c pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x89f7694a dev_mc_add +EXPORT_SYMBOL vmlinux 0x8a05827d max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x8a073aa1 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x8a0ae92b __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x8a14c558 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1adba9 __destroy_inode +EXPORT_SYMBOL vmlinux 0x8a1ff4e9 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x8a280065 sock_create +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a39f59f dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a56c050 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a6bb5e6 translation_pre_enabled +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a72359c devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a881339 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x8a8cdc8a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa7436e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8acd6c96 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x8ad29bab _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8ae90316 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x8af5c036 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b1b8cc7 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x8b275dd5 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8b3ee304 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b881d38 generic_read_dir +EXPORT_SYMBOL vmlinux 0x8b9099f4 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b9729f0 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba8c199 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x8bd1c87c dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x8bd343d2 inet_getname +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8be4d57a __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8c0e5a72 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8c118035 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x8c164b8e dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8c173374 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3253ec _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x8c332ad5 pci_free_irq +EXPORT_SYMBOL vmlinux 0x8c453a34 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8c4afcdf fget_raw +EXPORT_SYMBOL vmlinux 0x8c55485c kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x8c6801e1 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x8c8e6bbd kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x8c97fb17 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8cac5bce netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cc637bf __scsi_execute +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d2689dc d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d582374 put_user_pages +EXPORT_SYMBOL vmlinux 0x8d641dee xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8d6ec819 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d820b01 security_sk_clone +EXPORT_SYMBOL vmlinux 0x8d8ba998 bio_add_page +EXPORT_SYMBOL vmlinux 0x8d8f6b82 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de09648 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x8df4cb67 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x8df7e8d6 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfbeab6 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x8e027329 generic_file_open +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e277991 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x8e2950fc skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x8e298e96 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x8e2fd38a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x8e40abad sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8e44e206 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x8e5d8db7 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x8e621f07 set_binfmt +EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e74c7d9 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x8e7d012a amd_iommu_pc_set_reg +EXPORT_SYMBOL vmlinux 0x8e7da594 kernel_connect +EXPORT_SYMBOL vmlinux 0x8e8148b9 seq_read +EXPORT_SYMBOL vmlinux 0x8e82eb61 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8ea7a53f pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec09d54 kill_pgrp +EXPORT_SYMBOL vmlinux 0x8ec2a979 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x8ed57c90 kern_path_create +EXPORT_SYMBOL vmlinux 0x8ed9d821 del_gendisk +EXPORT_SYMBOL vmlinux 0x8ee1e1f1 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x8ee57310 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x8ee9d9e4 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x8eeac639 input_reset_device +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f095d2c rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f32bfad input_allocate_device +EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default +EXPORT_SYMBOL vmlinux 0x8f3abeff vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x8f3d70f8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x8f546581 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x8f561461 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x8f596b91 config_item_set_name +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f80ef57 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x8f8a15f0 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8f8d2663 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fed8c91 seq_puts +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x9008253e skb_copy +EXPORT_SYMBOL vmlinux 0x90180249 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905805ff __brelse +EXPORT_SYMBOL vmlinux 0x90d44c1e prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x90d4535a tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x90dbc3cf nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x90e303c1 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x90e6ed37 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x90ed5c66 __scm_send +EXPORT_SYMBOL vmlinux 0x90fd5c80 mount_subtree +EXPORT_SYMBOL vmlinux 0x9103c0b1 inet_offloads +EXPORT_SYMBOL vmlinux 0x9117c051 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x912c1c9b ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9139bebd amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x914230c8 pci_choose_state +EXPORT_SYMBOL vmlinux 0x915e5928 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9160cd18 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91737ebd blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917b56c1 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x9192b0d3 dst_init +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a2262e skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b4b64f mmc_free_host +EXPORT_SYMBOL vmlinux 0x91c77c92 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x91e282ef jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x91f1d218 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91fe8f50 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x9208dd9d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9216edb5 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x922287bf mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x92269f8a param_set_ulong +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b156b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x92439661 param_get_charp +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92690b70 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92930ffe PageMovable +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92afd807 bdget_disk +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92e6ee76 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f089ef xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9304586a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930ca14a may_umount_tree +EXPORT_SYMBOL vmlinux 0x9312d055 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x93154358 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x9315665c bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x93500d0c qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93868ffe fb_set_var +EXPORT_SYMBOL vmlinux 0x93903c0f posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x93917746 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x93a0bfa3 register_md_personality +EXPORT_SYMBOL vmlinux 0x93a2bf4b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x93a3ed2e xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b18a9a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c3a9e4 unregister_netdev +EXPORT_SYMBOL vmlinux 0x93cc652a simple_release_fs +EXPORT_SYMBOL vmlinux 0x93d82f33 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x93fa1661 inode_init_once +EXPORT_SYMBOL vmlinux 0x940d90ee mpage_writepage +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943066a8 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x943352b0 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x94407388 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94580a74 invalidate_partition +EXPORT_SYMBOL vmlinux 0x94661f0d __netif_schedule +EXPORT_SYMBOL vmlinux 0x946786a5 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x948f5d20 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x949159fe tcp_check_req +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a47267 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x94b37aff scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94ccb761 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x94fe2073 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x950855ab nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x950bb2d8 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x951376bc ppp_input_error +EXPORT_SYMBOL vmlinux 0x9519a4bd vme_irq_handler +EXPORT_SYMBOL vmlinux 0x951e4f25 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x9523fcd0 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x95393979 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule +EXPORT_SYMBOL vmlinux 0x9569afde ptp_clock_event +EXPORT_SYMBOL vmlinux 0x958e24cd filemap_check_errors +EXPORT_SYMBOL vmlinux 0x959682b2 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bf93fd flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95e941a2 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x95eaab60 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9616f0ea security_path_unlink +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x963dcba1 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x965524f8 neigh_destroy +EXPORT_SYMBOL vmlinux 0x9659f312 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x966d0584 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x967d6fcc sock_wake_async +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9695048a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x969ca614 __skb_checksum +EXPORT_SYMBOL vmlinux 0x96a4f4da dcache_readdir +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ce0fde inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e75357 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970aa422 console_start +EXPORT_SYMBOL vmlinux 0x970bb2a2 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x970bb904 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9719ba25 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x97212af8 __register_chrdev +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x97535223 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x9754d141 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x9768aef4 security_sock_graft +EXPORT_SYMBOL vmlinux 0x977155e3 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x97760291 nf_log_trace +EXPORT_SYMBOL vmlinux 0x977bc826 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x977bf946 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init +EXPORT_SYMBOL vmlinux 0x978c38b6 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97964898 dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x9797762c sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x9797f993 pci_release_resource +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a17f30 __page_symlink +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b3883d inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c74d1c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x97d84a58 dev_activate +EXPORT_SYMBOL vmlinux 0x97e041a2 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x97e505dd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x97ee02f4 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x981be892 set_security_override +EXPORT_SYMBOL vmlinux 0x981c34f9 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983f1501 finish_no_open +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x985da9a2 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x985f919c path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x98719d7b ipv4_specific +EXPORT_SYMBOL vmlinux 0x98899695 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x988f0611 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x98a7e5a3 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x98c020e4 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cfad6b blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x98d3bb6b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98fbcdd6 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x994f2d4e pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9956a2d5 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x995b09be rt6_lookup +EXPORT_SYMBOL vmlinux 0x9973d6ab devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x998ab709 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99c6fc21 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x99ca9a79 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x99cd123c tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99feadd8 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a211fbd register_gifconf +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5fe9dc lease_get_mtime +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a8ba9e3 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x9a926c8e dev_get_flags +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab64cea unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x9ac408c6 dev_mc_del +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9af0cd0c security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x9afae45d misc_deregister +EXPORT_SYMBOL vmlinux 0x9b1bc1db skb_push +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2672ea notify_change +EXPORT_SYMBOL vmlinux 0x9b286817 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x9b30e22e kobject_init +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3c4400 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b51e442 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9b624f5e amd_iommu_pc_get_reg +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b72d457 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9b8ba1e8 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x9b962c0f param_set_invbool +EXPORT_SYMBOL vmlinux 0x9ba10ccf mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x9bae977c phy_connect_direct +EXPORT_SYMBOL vmlinux 0x9bb4e825 unregister_console +EXPORT_SYMBOL vmlinux 0x9bc11db3 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x9bc4edc6 ip6_xmit +EXPORT_SYMBOL vmlinux 0x9bdc59b1 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x9bfbfe62 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c194dd3 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke +EXPORT_SYMBOL vmlinux 0x9c3fc443 ip_frag_init +EXPORT_SYMBOL vmlinux 0x9c4d7d22 seq_escape +EXPORT_SYMBOL vmlinux 0x9c699c0e pci_disable_msix +EXPORT_SYMBOL vmlinux 0x9c7bc3bd phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c9b9a09 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf951ed bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d16e8c8 sock_from_file +EXPORT_SYMBOL vmlinux 0x9d17b396 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x9d27a533 d_make_root +EXPORT_SYMBOL vmlinux 0x9d2907e4 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x9d56f6ba fget +EXPORT_SYMBOL vmlinux 0x9d613bd7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d74f070 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x9d79dbc6 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x9d7e0be0 tcp_req_err +EXPORT_SYMBOL vmlinux 0x9d822b02 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9c9059 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x9da74661 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dc61e12 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x9dd428c2 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e1265c8 udplite_prot +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e4d0c67 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5995a7 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e70ada9 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9031f9 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9e93398a d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x9e977831 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0e290 seq_dentry +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eab8d85 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed3f030 padata_stop +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9f0f9166 send_sig +EXPORT_SYMBOL vmlinux 0x9f196f4a vga_tryget +EXPORT_SYMBOL vmlinux 0x9f26070c find_vma +EXPORT_SYMBOL vmlinux 0x9f2e269b fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x9f37f3ef migrate_page_move_mapping +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 0x9f66296a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f88050e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9a6efb mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x9fa25082 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc39714 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9fd58844 cad_pid +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff993d2 agp_backend_release +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00d1e8f input_release_device +EXPORT_SYMBOL vmlinux 0xa026cd38 skb_dequeue +EXPORT_SYMBOL vmlinux 0xa02975dd inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa03b2772 find_get_entry +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04b5626 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xa04c3d71 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xa0525ebd __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa0538997 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05ab1a1 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa066e336 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa06cdd7a inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d9ce7 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xa08348ad mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xa0a3725c __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aec757 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0cbf669 set_device_ro +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e16200 md_write_start +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f06f93 blk_get_request +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11371a7 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xa11a9ede tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1261b56 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xa12a6ba0 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xa1330474 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xa13de2bf skb_ext_add +EXPORT_SYMBOL vmlinux 0xa152052f __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xa154960e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xa1628304 param_array_ops +EXPORT_SYMBOL vmlinux 0xa16c8613 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xa1741937 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xa1825353 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xa1b92e14 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1dbd426 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e4c74f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0xa202c74b padata_start +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa212edcb kernel_read +EXPORT_SYMBOL vmlinux 0xa2301e17 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa2604d86 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28d4626 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xa2b70759 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xa2c928b4 bio_init +EXPORT_SYMBOL vmlinux 0xa2dffa2a current_time +EXPORT_SYMBOL vmlinux 0xa2f69bed legacy_pic +EXPORT_SYMBOL vmlinux 0xa30060cc inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa3095b16 kthread_stop +EXPORT_SYMBOL vmlinux 0xa33ab901 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xa3561077 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xa3707a35 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xa37b4302 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa398897e follow_up +EXPORT_SYMBOL vmlinux 0xa3bdac5e dst_dev_put +EXPORT_SYMBOL vmlinux 0xa3c5126c proc_remove +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dc60e2 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xa3df9952 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3f3b12a skb_unlink +EXPORT_SYMBOL vmlinux 0xa3fc4007 __scm_destroy +EXPORT_SYMBOL vmlinux 0xa3ffadd2 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4150bdc dev_uc_del +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa42bc2fb serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xa43b4b8d agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xa463cbbd udp_pre_connect +EXPORT_SYMBOL vmlinux 0xa466b3ae pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xa479bba2 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xa486e456 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xa4a8b778 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c2314e dm_put_table_device +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e25d7f tcp_child_process +EXPORT_SYMBOL vmlinux 0xa4ec40ed serio_reconnect +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa4ff0015 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5338bb9 drop_super +EXPORT_SYMBOL vmlinux 0xa543c3e7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5651514 sock_release +EXPORT_SYMBOL vmlinux 0xa583bb2b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xa58a5600 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5a7c9b4 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5c92a85 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xa5d8f443 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5e866bd inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xa5ece47c cdev_del +EXPORT_SYMBOL vmlinux 0xa5f2d7aa nd_device_unregister +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa616b170 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62b3aad jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa6337790 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa6526687 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa66997b6 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa6ac52b7 km_query +EXPORT_SYMBOL vmlinux 0xa6b3b039 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa6c9fbf1 param_get_long +EXPORT_SYMBOL vmlinux 0xa6dc3f24 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa6df0211 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xa6e42a6b scsi_init_io +EXPORT_SYMBOL vmlinux 0xa70b99b5 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +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 0xa7594827 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xa75bd31d mark_info_dirty +EXPORT_SYMBOL vmlinux 0xa7647a52 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xa7752aca tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa780fedc device_add_disk +EXPORT_SYMBOL vmlinux 0xa78165a5 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7abef18 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7dc7f80 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xa7dcc0a6 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedc1b __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa8242fe7 key_move +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa8416efc mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8490299 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8609fa9 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa869a85e xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa869e845 md_reload_sb +EXPORT_SYMBOL vmlinux 0xa87dc41c md_integrity_register +EXPORT_SYMBOL vmlinux 0xa8891fa9 dev_add_pack +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8987e54 skb_pull +EXPORT_SYMBOL vmlinux 0xa8b6a673 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cb9d65 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xa8dca4d3 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa943570c neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xa9488d58 uart_resume_port +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa954e9c9 input_register_handler +EXPORT_SYMBOL vmlinux 0xa95a9dba flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa971eb4a sk_net_capable +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xa99311af udp_disconnect +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9a9fb75 seq_write +EXPORT_SYMBOL vmlinux 0xa9ab73ac vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9e197b1 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa22bb88 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xaa29ba43 agp_create_memory +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3d24e8 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xaa3f9d70 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xaa42ce6f phy_driver_register +EXPORT_SYMBOL vmlinux 0xaa4c14f5 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa841508 d_set_d_op +EXPORT_SYMBOL vmlinux 0xaa8f096c f_setown +EXPORT_SYMBOL vmlinux 0xaaaad123 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xaab23ae8 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xaac6bd8e textsearch_register +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad1f55b make_bad_inode +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae64f43 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaecf4a4 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab6f66e5 block_write_begin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7e9d4c __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabb899d0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabf1dcf3 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac13c1a2 elv_rb_find +EXPORT_SYMBOL vmlinux 0xac14d290 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xac156ce2 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1abcb7 bio_copy_data +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac33bba4 udp_prot +EXPORT_SYMBOL vmlinux 0xac4f2440 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb9f9b6 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xacbd5319 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xacbfb8ed get_fs_type +EXPORT_SYMBOL vmlinux 0xacc47bb5 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace78e9c ip_defrag +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf298ec agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfbc53c kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad06ad63 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad1b501d backlight_device_register +EXPORT_SYMBOL vmlinux 0xad208e57 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xad20ff61 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xad25de34 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad336bed dquot_alloc +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad5374e5 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xad6afc0f d_delete +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6cecb7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8e60d8 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada72d1b kdb_current_task +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadf1ae02 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xadfa2eaf padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae018c01 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xae11442a proc_set_user +EXPORT_SYMBOL vmlinux 0xae13c3dd __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xae2254eb devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xae311587 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae38aaea tcf_idr_search +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae668571 con_is_bound +EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xae81de2e pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xae86e89d phy_connect +EXPORT_SYMBOL vmlinux 0xae8d6eb8 devm_memremap +EXPORT_SYMBOL vmlinux 0xae92af6d dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec43fa6 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xaed1f762 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0xaed9d802 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0xaef735ab netif_device_detach +EXPORT_SYMBOL vmlinux 0xaefb1d70 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xaf06068c kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xaf341203 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4bfcf6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xaf4ff708 seq_path +EXPORT_SYMBOL vmlinux 0xaf59cf37 eisa_bus_type +EXPORT_SYMBOL vmlinux 0xaf62745c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf7f68f0 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xaf8e929b set_anon_super +EXPORT_SYMBOL vmlinux 0xaf99d055 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xafa3581b truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafbb978a iget_failed +EXPORT_SYMBOL vmlinux 0xafd3f3b2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xaff0822f tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xb0122cef netlink_ack +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb028c739 has_capability +EXPORT_SYMBOL vmlinux 0xb02c3144 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xb035d71d rproc_del +EXPORT_SYMBOL vmlinux 0xb04313cb skb_checksum +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb07a8577 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b5f953 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f4e7d3 inet6_release +EXPORT_SYMBOL vmlinux 0xb0fd6e67 mdio_device_free +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb1102e99 md_write_inc +EXPORT_SYMBOL vmlinux 0xb1188c1c tcp_prot +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12365a7 vif_device_init +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13fe576 simple_readpage +EXPORT_SYMBOL vmlinux 0xb1499ff2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb1536290 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb178f4da security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xb181e1ba phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1ae285f add_to_pipe +EXPORT_SYMBOL vmlinux 0xb1bc67fe discard_new_inode +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ceaf81 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb1dbae2c gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xb1dc782f rproc_free +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1e7db28 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xb1fc8a78 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb217cca6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2222674 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb2275e3a dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb231e618 dquot_enable +EXPORT_SYMBOL vmlinux 0xb260fd61 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb27d17a6 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xb2879eb0 rproc_add +EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2b6ca4e __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xb2b7eb62 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2bdbbe9 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xb2beed76 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xb2d456d9 write_one_page +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f85de6 __inet_hash +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb3393bd5 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb345767f dev_printk_emit +EXPORT_SYMBOL vmlinux 0xb34d9bfc mount_single +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3635b01 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb384c015 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb39afad4 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3b89113 bio_devname +EXPORT_SYMBOL vmlinux 0xb3bab8a6 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d34b85 sock_wfree +EXPORT_SYMBOL vmlinux 0xb3e51ea0 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f5abf8 ip_options_compile +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb402bcbf jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4240d1d simple_setattr +EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user +EXPORT_SYMBOL vmlinux 0xb4538c4d check_disk_change +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb46f913b input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4a187ed sock_recvmsg +EXPORT_SYMBOL vmlinux 0xb4a9e44a devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xb4d64e8b scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xb4ebb0f8 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53d639b mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb561e6da filemap_fault +EXPORT_SYMBOL vmlinux 0xb56936d6 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5746cd5 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xb58309af agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5913690 get_phy_device +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a6cac8 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5b1a686 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xb5dc7ae5 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb5ded749 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xb5e44b94 make_kprojid +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f9848e mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0xb60ecc11 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb61361ab vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xb627f317 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63ac1e8 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xb63bd39d dev_addr_init +EXPORT_SYMBOL vmlinux 0xb63e6239 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb64b3270 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb665f56d __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0xb66d0246 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0xb66d9aea seq_vprintf +EXPORT_SYMBOL vmlinux 0xb673fe32 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb67451fa dma_supported +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68b6249 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a071a7 bio_advance +EXPORT_SYMBOL vmlinux 0xb6a134da get_task_cred +EXPORT_SYMBOL vmlinux 0xb6a1f8ff register_cdrom +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c404e0 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xb6c4ac7b migrate_page +EXPORT_SYMBOL vmlinux 0xb6d0d393 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xb6d4b49f kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb70008b2 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xb7043204 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb7082c49 free_task +EXPORT_SYMBOL vmlinux 0xb717956b phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xb7266a50 dev_uc_add +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb74dd687 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb765825b sk_ns_capable +EXPORT_SYMBOL vmlinux 0xb768bc0d remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xb76d8b92 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb796fd99 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7ca7d3a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb7f947ac keyring_search +EXPORT_SYMBOL vmlinux 0xb812a826 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xb814e18a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb8396ae6 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb86bbe38 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xb86ce950 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb8992094 dev_open +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c9d362 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f59703 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb8f86a90 netdev_update_features +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb9084835 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb932d29e clear_inode +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9439388 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xb943ca98 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb993879f pci_get_slot +EXPORT_SYMBOL vmlinux 0xb9950a98 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb99a74c5 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xb9a5301f seq_open +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bdf530 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb9c05c82 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb9cf6fef inet_addr_type +EXPORT_SYMBOL vmlinux 0xb9d36b0a blk_set_queue_depth +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 0xb9ef3adb inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xb9f31a41 skb_copy_header +EXPORT_SYMBOL vmlinux 0xb9fa82d9 tcp_poll +EXPORT_SYMBOL vmlinux 0xba02b629 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xba090a4f blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba133fc4 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xba13ec5b netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xba186c11 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xba24cc67 dev_trans_start +EXPORT_SYMBOL vmlinux 0xba332f9e netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xba3a92ef ___pskb_trim +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba508832 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xbaa842c6 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xbaabb3bf acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbad43203 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xbaffaa09 update_region +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb1ee8a3 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb294338 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbb3518ca inode_add_bytes +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3c5571 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xbb3ca9a3 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbb4a8ea0 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb518c6d twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xbb5ff912 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xbb68951b __bforget +EXPORT_SYMBOL vmlinux 0xbb7991a1 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb913e56 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xbb960129 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xbba623bb pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xbbac9aa2 kill_bdev +EXPORT_SYMBOL vmlinux 0xbbafebee posix_lock_file +EXPORT_SYMBOL vmlinux 0xbbb3811e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xbbd996ca agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbbe14a02 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xbbe70f90 md_update_sb +EXPORT_SYMBOL vmlinux 0xbbe7490a simple_statfs +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbf18fd5 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xbbf74562 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbc04773b __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xbc1a46eb lookup_one_len +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc60f556 rio_query_mport +EXPORT_SYMBOL vmlinux 0xbc7dae11 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xbc8fe380 dns_query +EXPORT_SYMBOL vmlinux 0xbc98cdcc sg_miter_skip +EXPORT_SYMBOL vmlinux 0xbc9e5097 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb18740 unload_nls +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcbf21bf follow_down +EXPORT_SYMBOL vmlinux 0xbcbfcb68 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xbcc21c99 request_firmware +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd1f2e4 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xbcd8dabd i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbcda1049 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xbce1bfbd pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xbd05c549 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xbd05eea0 fs_bio_set +EXPORT_SYMBOL vmlinux 0xbd0d6c44 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xbd1e8145 neigh_update +EXPORT_SYMBOL vmlinux 0xbd3b9972 edac_mc_find +EXPORT_SYMBOL vmlinux 0xbd40ff20 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd64d7c7 vfs_fsync +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd7638f2 tso_start +EXPORT_SYMBOL vmlinux 0xbd8d04f4 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xbdb897e3 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xbdeb6d84 mntget +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe214d6a tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xbe2492a6 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xbe293588 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5a8fc3 datagram_poll +EXPORT_SYMBOL vmlinux 0xbe5bd6bc security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe791f04 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbecde27a mdio_device_reset +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbee4467c kern_path +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf0b8ade fqdir_init +EXPORT_SYMBOL vmlinux 0xbf1b5aae inet_frag_find +EXPORT_SYMBOL vmlinux 0xbf218c3b dma_free_attrs +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf4e54a2 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbf5af82e phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xbf705240 tty_hangup +EXPORT_SYMBOL vmlinux 0xbf7d1462 config_item_put +EXPORT_SYMBOL vmlinux 0xbf86bafe dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbf8cebc8 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xbf91fffc __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfadc586 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc5d407 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xbfcad2e5 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff3d16b fs_lookup_param +EXPORT_SYMBOL vmlinux 0xc01cb46c devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc026dbdf fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xc0435854 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xc0553764 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xc0563f91 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc059ce27 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc0647c2c pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xc0703a7e mmc_can_discard +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07a7fe0 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc082dc5b mdiobus_read +EXPORT_SYMBOL vmlinux 0xc08594b8 __do_once_done +EXPORT_SYMBOL vmlinux 0xc08a016b migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a75a69 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xc0ac4bc8 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0d6d5a8 uart_register_driver +EXPORT_SYMBOL vmlinux 0xc0e62cfa get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc0fd49ee __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc0fe8c98 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc1444928 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xc14c03c9 empty_aops +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156744f phy_device_remove +EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc157ca47 get_user_pages +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc165b8dd to_nd_pfn +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1945eaf skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc1ab642a mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xc1b311ed mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xc1d0148d skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d905e2 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xc1eacabc pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc1ffd595 set_blocksize +EXPORT_SYMBOL vmlinux 0xc202f626 ilookup5 +EXPORT_SYMBOL vmlinux 0xc20714f6 dev_deactivate +EXPORT_SYMBOL vmlinux 0xc228129e revert_creds +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc2587cbd _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc2857399 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2bf142b dquot_commit_info +EXPORT_SYMBOL vmlinux 0xc2d47810 thaw_super +EXPORT_SYMBOL vmlinux 0xc2d6b061 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e97a3c pci_get_class +EXPORT_SYMBOL vmlinux 0xc2fec6c9 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc30a1b0d pipe_lock +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc325aee3 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xc329f673 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3328a7b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xc348871d dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xc3620436 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc3662a93 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36dc2f3 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xc375b87d phy_device_register +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38ea73e inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xc3a103e2 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ab436e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d0eef4 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc3dbf392 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc406fcbf bdi_register_owner +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc420045f inet6_offloads +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42bf629 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc42ee083 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xc445e6bc xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0xc457d0a3 I_BDEV +EXPORT_SYMBOL vmlinux 0xc458abc8 blk_get_queue +EXPORT_SYMBOL vmlinux 0xc45c5e6b netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc45e9989 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xc4654cea freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4795d1f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc47e8f50 fqdir_exit +EXPORT_SYMBOL vmlinux 0xc47fd5fc kill_block_super +EXPORT_SYMBOL vmlinux 0xc4840520 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xc48cc6c0 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xc492f928 genphy_resume +EXPORT_SYMBOL vmlinux 0xc499511d mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc49bae72 simple_link +EXPORT_SYMBOL vmlinux 0xc4a4eca5 blk_register_region +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4e1b494 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc4f25477 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xc4f48a85 serio_interrupt +EXPORT_SYMBOL vmlinux 0xc5090765 serio_open +EXPORT_SYMBOL vmlinux 0xc5209427 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc5298dae qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xc534cff5 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xc552d625 tty_unlock +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5664491 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc5876476 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xc58df508 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc5949488 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc595d595 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59c7b2b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc59ea755 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc5a1ce72 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c30ced bioset_exit +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e4a5d1 cpumask_next +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc60f5e8b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xc617b783 tty_write_room +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc626a3dc blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc65053ed remap_pfn_range +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6608f5f unregister_qdisc +EXPORT_SYMBOL vmlinux 0xc661c5ca kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc66f9498 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xc67da041 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc6afcdde dm_get_device +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d15b47 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xc6db58d8 task_work_add +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc709c90a blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc738ffa3 phy_detach +EXPORT_SYMBOL vmlinux 0xc73b6c12 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc74008df pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xc7478509 napi_complete_done +EXPORT_SYMBOL vmlinux 0xc769ebc0 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xc7760b1c key_link +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78a34e5 agp_bridge +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a1d02c set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b41043 twl6040_power +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c44a7d compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7de764f vm_mmap +EXPORT_SYMBOL vmlinux 0xc80184c1 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc8058496 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8155f72 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc81c2716 done_path_create +EXPORT_SYMBOL vmlinux 0xc81e042c devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84ce563 inet_gro_complete +EXPORT_SYMBOL vmlinux 0xc8581fff freeze_super +EXPORT_SYMBOL vmlinux 0xc8624bb0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc874261b scsi_print_command +EXPORT_SYMBOL vmlinux 0xc87575d9 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xc87bdf0f lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc889f710 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc896268a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c43237 d_instantiate +EXPORT_SYMBOL vmlinux 0xc8c66f41 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xc8e78f54 __register_binfmt +EXPORT_SYMBOL vmlinux 0xc8f375c1 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc92a14c0 lookup_bdev +EXPORT_SYMBOL vmlinux 0xc9363d1f alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96b246f try_to_release_page +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97bfe1b page_mapped +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9941800 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9af736d __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc9c10ea2 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xc9c7eea3 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc9d03ea6 stream_open +EXPORT_SYMBOL vmlinux 0xc9dc0e0c vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ee31a0 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9f86047 d_exact_alias +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1575ae __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca624667 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca7e3019 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xca87c349 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca994a93 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9d673b zpool_register_driver +EXPORT_SYMBOL vmlinux 0xcaae036f request_key_tag +EXPORT_SYMBOL vmlinux 0xcaafbba1 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadb485d eisa_driver_register +EXPORT_SYMBOL vmlinux 0xcaf0e695 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb4ff046 page_get_link +EXPORT_SYMBOL vmlinux 0xcb5f9091 padata_free +EXPORT_SYMBOL vmlinux 0xcb66f821 address_space_init_once +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7f69f6 user_revoke +EXPORT_SYMBOL vmlinux 0xcb8541bb mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xcb8b923c tcf_register_action +EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbccf3c4 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd5487d t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xcbdb01f5 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcbe1c8ea ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xcbeb4cb9 config_group_find_item +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc040ca2 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2e0fb0 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xcc323f1d sock_no_bind +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc35560c submit_bh +EXPORT_SYMBOL vmlinux 0xcc37c48f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc51b832 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xcc56d6df ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc8b4146 posix_test_lock +EXPORT_SYMBOL vmlinux 0xcc8eea8d dev_set_alias +EXPORT_SYMBOL vmlinux 0xcc93c5c5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xcc9d4747 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccc1a27d pci_map_rom +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc7b764 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xccc9de2a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccefb0db mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xccfad4ca devm_clk_get +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 0xcd0be62f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xcd1d1b83 dquot_file_open +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd816ff4 netdev_alert +EXPORT_SYMBOL vmlinux 0xcd88700b flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcda4b08f setattr_copy +EXPORT_SYMBOL vmlinux 0xcda77a84 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xcdabe5c0 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xcdb488d7 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xcdb61198 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xcdbd5198 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xcdbd65b2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdce42c9 vc_resize +EXPORT_SYMBOL vmlinux 0xcdd0c0ab simple_rmdir +EXPORT_SYMBOL vmlinux 0xcdd23aee dget_parent +EXPORT_SYMBOL vmlinux 0xcdd8be7f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcded048b ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xcded9252 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xce1b4637 single_open +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2e88b3 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xce3ecf69 netlink_set_err +EXPORT_SYMBOL vmlinux 0xce45ba78 block_read_full_page +EXPORT_SYMBOL vmlinux 0xce48b7ca skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5275d3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xce6bdcbf simple_write_end +EXPORT_SYMBOL vmlinux 0xce6dacde tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8288d6 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0xce9fb949 param_set_long +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf10b2a8 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf239ad2 load_nls +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf3c72e1 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xcf4efd32 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf576fcd netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xcf66e52f configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcf8b1b75 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcf9fbb55 udp_ioctl +EXPORT_SYMBOL vmlinux 0xcfafbc0b md_check_recovery +EXPORT_SYMBOL vmlinux 0xcfbce490 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xcfce03eb dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcff2a370 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcffd0ae3 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xd008d7b7 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xd025519c dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xd039c271 tso_build_data +EXPORT_SYMBOL vmlinux 0xd03dadde simple_empty +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd0429d37 param_set_bint +EXPORT_SYMBOL vmlinux 0xd0432f9d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xd0494775 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06f1f93 sync_filesystem +EXPORT_SYMBOL vmlinux 0xd09eda93 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xd09f101b dqput +EXPORT_SYMBOL vmlinux 0xd0a17aa2 skb_seq_read +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0c16b85 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xd0d33428 softnet_data +EXPORT_SYMBOL vmlinux 0xd0dca490 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f45447 bdi_register_va +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1095369 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd1162c7d fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xd120e468 xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13fd35d bmap +EXPORT_SYMBOL vmlinux 0xd1494b98 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xd16bb643 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd173a0ac put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xd1791cd5 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18d6be3 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19bd2e1 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xd1aa805b __close_fd +EXPORT_SYMBOL vmlinux 0xd1bf0b24 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd1c3549d sk_free +EXPORT_SYMBOL vmlinux 0xd1ca4324 clear_nlink +EXPORT_SYMBOL vmlinux 0xd1ca473b device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0xd1d15f1b uv_hub_info_version +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e13639 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2142343 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2295c7e flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xd22caa4a __serio_register_port +EXPORT_SYMBOL vmlinux 0xd23a2455 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd25685e6 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd26b5bf9 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2b01b49 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xd2b6eff3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd2c28fd1 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e9c696 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ea6644 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd2f574ca jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd30b94f3 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd31667bc xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xd3229de9 fsync_bdev +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3795928 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd37bb5a5 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd38f41f0 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xd3ac0246 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f92e96 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd435a997 put_fs_context +EXPORT_SYMBOL vmlinux 0xd44c4353 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xd454adec param_get_ulong +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45e8351 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xd4740467 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4996b5c icmp6_send +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4b5e857 md_write_end +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d8dd1d dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5091015 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd513752c super_setup_bdi +EXPORT_SYMBOL vmlinux 0xd515333c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd520d3ce blkdev_put +EXPORT_SYMBOL vmlinux 0xd52138fe console_stop +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd55549cb path_has_submounts +EXPORT_SYMBOL vmlinux 0xd56b046d ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xd570ce95 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xd59208c2 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xd5981b60 fb_show_logo +EXPORT_SYMBOL vmlinux 0xd5b109e1 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5cf7fdf abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd5cf8583 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd5d82647 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60cd5ff write_cache_pages +EXPORT_SYMBOL vmlinux 0xd60e5770 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd61860d5 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xd619b188 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xd62c2514 pci_dev_get +EXPORT_SYMBOL vmlinux 0xd6335e7d sock_no_getname +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd65180e6 genl_register_family +EXPORT_SYMBOL vmlinux 0xd6579451 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xd659a6cb mr_table_dump +EXPORT_SYMBOL vmlinux 0xd66610ee __f_setown +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6765a48 mmc_command_done +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6a65542 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ab2c80 current_in_userns +EXPORT_SYMBOL vmlinux 0xd6acb9f0 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c7ddf6 __block_write_begin +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6e67149 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fcad83 flow_rule_match_icmp +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 0xd71884a8 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd72b7961 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7544e27 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xd7588eeb skb_put +EXPORT_SYMBOL vmlinux 0xd763ea3c rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xd77817ae blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd77acd35 blk_put_request +EXPORT_SYMBOL vmlinux 0xd77e1d52 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd79b1629 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xd7b16a3f tty_port_close +EXPORT_SYMBOL vmlinux 0xd7b76078 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d58934 from_kprojid +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e91e0d locks_delete_block +EXPORT_SYMBOL vmlinux 0xd8078410 ata_print_version +EXPORT_SYMBOL vmlinux 0xd81b6b6a disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd83173f4 pv_ops +EXPORT_SYMBOL vmlinux 0xd83814ca blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xd840e360 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd84fb362 phy_attach +EXPORT_SYMBOL vmlinux 0xd8593e06 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd873f186 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd882c58f put_cmsg +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b82af8 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xd8c318e2 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0xd8cda551 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xd8ce9a3e hmm_range_unregister +EXPORT_SYMBOL vmlinux 0xd8d52612 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8fda2a6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd90438e1 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xd912d0b1 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9339df3 con_is_visible +EXPORT_SYMBOL vmlinux 0xd947845a dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd962092c mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xd96d36fa get_agp_version +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd977e604 current_task +EXPORT_SYMBOL vmlinux 0xd978bf6b __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b279e4 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c11033 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd9d4bf65 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd9ed7043 get_gendisk +EXPORT_SYMBOL vmlinux 0xd9f6b78a phy_suspend +EXPORT_SYMBOL vmlinux 0xd9ff2bfd kernel_accept +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda2a169b nd_btt_version +EXPORT_SYMBOL vmlinux 0xda32c1b6 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xda34e529 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda61e027 proc_create_data +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda93c21f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xda9421f2 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa99784 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacdfc31 sk_wait_data +EXPORT_SYMBOL vmlinux 0xdae4265b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaed7cfc simple_fill_super +EXPORT_SYMBOL vmlinux 0xdaf13857 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdaf654b2 dm_io +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate +EXPORT_SYMBOL vmlinux 0xdb44214d fput +EXPORT_SYMBOL vmlinux 0xdb53f3ab flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xdb66902a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a73a0 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xdb6d836b tcf_block_get +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8658ed mount_nodev +EXPORT_SYMBOL vmlinux 0xdb91f8aa scsi_scan_target +EXPORT_SYMBOL vmlinux 0xdbac23c4 scmd_printk +EXPORT_SYMBOL vmlinux 0xdbb22508 hmm_range_register +EXPORT_SYMBOL vmlinux 0xdbb41d5b inet_del_protocol +EXPORT_SYMBOL vmlinux 0xdbb6b2c5 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xdbc9ed69 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbda39b8 phy_attached_print +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf17652 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xdc047db7 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c98e9 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xdc2996cc phy_init_eee +EXPORT_SYMBOL vmlinux 0xdc2c0a04 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xdc34c33e pci_pme_active +EXPORT_SYMBOL vmlinux 0xdc3edc5f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xdc46b4f7 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4cda05 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5647c3 drop_nlink +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5c5995 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xdc5d581e security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xdc65d4cf proc_create +EXPORT_SYMBOL vmlinux 0xdc6c29fc kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdc6e0165 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xdc7fb51f blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xdc8dae9a blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xdc91f055 param_ops_charp +EXPORT_SYMBOL vmlinux 0xdca5b844 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xdcb00e15 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdcc77b53 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2db3d7 agp_enable +EXPORT_SYMBOL vmlinux 0xdd2ffc96 netdev_state_change +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd432c27 cpu_tlbstate +EXPORT_SYMBOL vmlinux 0xdd53533c xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdd56fd6c always_delete_dentry +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd7ab94e free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd83782e netif_receive_skb +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9283df security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xdd92bdbb netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xdd9cbbac vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xdda92ee1 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddb306b7 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xdde548f6 get_amd_iommu +EXPORT_SYMBOL vmlinux 0xddfe9b35 page_readlink +EXPORT_SYMBOL vmlinux 0xde0292ac d_genocide +EXPORT_SYMBOL vmlinux 0xde13e2c4 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xde1d9200 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde42fdf1 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xde44ee26 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde79d946 netif_napi_del +EXPORT_SYMBOL vmlinux 0xde840f43 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdec07290 audit_log +EXPORT_SYMBOL vmlinux 0xdec7de79 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xdec94f5f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefa0d07 neigh_for_each +EXPORT_SYMBOL vmlinux 0xdf27e432 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf377761 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xdf499291 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf56344b pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xdf5a3503 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xdf67f658 dump_align +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf91ed2b tcp_connect +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable +EXPORT_SYMBOL vmlinux 0xdfc5f2dc blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe20e8f eth_gro_receive +EXPORT_SYMBOL vmlinux 0xdfea9268 d_move +EXPORT_SYMBOL vmlinux 0xdff11d93 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe01448e9 set_wb_congested +EXPORT_SYMBOL vmlinux 0xe01a2916 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xe01e37ad inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe02a416d pagevec_lookup_range_tag +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 0xe045baea pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe05dd747 pci_request_regions +EXPORT_SYMBOL vmlinux 0xe068cf44 input_grab_device +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe081aaf9 vfs_get_super +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08cfdce component_match_add_typed +EXPORT_SYMBOL vmlinux 0xe090b35b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe09673a9 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xe09fd5e5 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe0a2ac12 input_event +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0adb3af vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b457c6 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xe0c80c8f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe0c94b32 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xe0d78983 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xe0dde41f i2c_use_client +EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable +EXPORT_SYMBOL vmlinux 0xe0e5ade5 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe0e8d0dc would_dump +EXPORT_SYMBOL vmlinux 0xe0f0576b rtnl_notify +EXPORT_SYMBOL vmlinux 0xe0fa9d46 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe131c45a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe1517357 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe166fbb0 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xe169cfdd mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xe18f0bc8 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xe1925fd7 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe196aea6 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xe1982461 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe1b2347f netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xe1d52eef nobh_writepage +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1dfc4ee path_put +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1ed698d _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xe1f67077 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xe20d3993 first_ec +EXPORT_SYMBOL vmlinux 0xe216e98d skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xe2173412 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2213be2 mpage_readpages +EXPORT_SYMBOL vmlinux 0xe2249032 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xe258f482 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xe25ee9d3 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe27afa51 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xe29f4719 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xe2a184ef generic_write_end +EXPORT_SYMBOL vmlinux 0xe2ac99e6 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe2bc87a0 read_code +EXPORT_SYMBOL vmlinux 0xe2c5de49 input_register_handle +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2df2c46 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xe2e9b99d rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xe2f2301f md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe2f7284e padata_do_parallel +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe3078c42 peernet2id +EXPORT_SYMBOL vmlinux 0xe31b755c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32f83c3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe337e45c inet_bind +EXPORT_SYMBOL vmlinux 0xe33d73a2 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe36ec51f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe37a4882 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xe37b8488 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3bb33c6 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xe3c91f8a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3e8623b noop_qdisc +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fe3ec3 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xe400c581 kfree_skb +EXPORT_SYMBOL vmlinux 0xe406a519 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4237c64 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43cc8e9 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe459fdc8 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xe4664ed2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xe47da6aa __phy_resume +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49304db __napi_schedule +EXPORT_SYMBOL vmlinux 0xe4bda730 inet_select_addr +EXPORT_SYMBOL vmlinux 0xe4c65fed forget_cached_acl +EXPORT_SYMBOL vmlinux 0xe4cea50e md_error +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe5090e1c devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xe50a495a udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xe516aa46 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe558e9da wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a7a31a dquot_destroy +EXPORT_SYMBOL vmlinux 0xe5bbb6e8 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cd61c2 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xe5dde89d mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xe5de001b __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe5e94e71 dquot_commit +EXPORT_SYMBOL vmlinux 0xe604a1b0 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61eb63c ip6_frag_next +EXPORT_SYMBOL vmlinux 0xe625b7bc mmc_get_card +EXPORT_SYMBOL vmlinux 0xe62df114 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xe63350a2 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xe661e587 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xe662ee9a dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xe6663cf1 soft_cursor +EXPORT_SYMBOL vmlinux 0xe6807839 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xe68459ae __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xe68e3cc5 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6bc82de netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe6eff113 tty_register_driver +EXPORT_SYMBOL vmlinux 0xe6f2ade7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe703c668 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xe705513e vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe70afe3a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe71223b0 napi_disable +EXPORT_SYMBOL vmlinux 0xe720d4ae __kernel_write +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe74180cd ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe74adc6e vfs_create +EXPORT_SYMBOL vmlinux 0xe76bf0eb configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xe773b2e4 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe7971f42 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xe79c310e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0xe7b10bfd xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d76473 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xe7eb1efc open_exec +EXPORT_SYMBOL vmlinux 0xe823e22a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xe82ee13e simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe8358ec7 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xe84cd956 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xe8508dca pci_release_regions +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86393c0 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xe86d3521 generic_perform_write +EXPORT_SYMBOL vmlinux 0xe882666f security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe8965e5d arp_send +EXPORT_SYMBOL vmlinux 0xe8a126f2 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe8a3cf94 param_ops_string +EXPORT_SYMBOL vmlinux 0xe8a5535f input_set_keycode +EXPORT_SYMBOL vmlinux 0xe8b77547 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xe8b89649 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe8bc0143 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xe8c1ad3b reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909cfe0 filp_close +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9200c18 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe957479b param_ops_byte +EXPORT_SYMBOL vmlinux 0xe9635249 netlink_capable +EXPORT_SYMBOL vmlinux 0xe96ef178 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe9946ad0 proc_set_size +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9ccd1b8 security_path_rename +EXPORT_SYMBOL vmlinux 0xe9cd2c7b dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe9d73dbe fasync_helper +EXPORT_SYMBOL vmlinux 0xe9e6d61d skb_queue_head +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eca75a skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe9eccbeb dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f90b92 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xea0291d4 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xea134b21 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xea1a6d0c qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea53c90e nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xea5472d9 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea7db489 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xea7f70b0 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea924487 eth_header_parse +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeaf45b79 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xeafdc74b logfc +EXPORT_SYMBOL vmlinux 0xeafdf5c4 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xeb01a757 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xeb194061 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb3173fc read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb39ac21 account_page_redirty +EXPORT_SYMBOL vmlinux 0xeb412a91 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xeb42b620 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4d3ed5 dquot_acquire +EXPORT_SYMBOL vmlinux 0xeb59e8c3 native_load_gs_index +EXPORT_SYMBOL vmlinux 0xeb5f246a sync_blockdev +EXPORT_SYMBOL vmlinux 0xeb676e56 is_nd_btt +EXPORT_SYMBOL vmlinux 0xeb751df7 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9dcf59 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebb53a86 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xebc7a274 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebebefad ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec40f9d8 __icmp_send +EXPORT_SYMBOL vmlinux 0xec44d501 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xec4860be rtnl_create_link +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e4f07 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xec5d23ed simple_rename +EXPORT_SYMBOL vmlinux 0xec691304 skb_trim +EXPORT_SYMBOL vmlinux 0xec6ad80c d_prune_aliases +EXPORT_SYMBOL vmlinux 0xec6f352d ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xec8087da genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xec8c5a9e security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xec91001e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xec9dfd00 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xeca9f7cb blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecaea7f2 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xecbf0b9d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xece6e415 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0c9aad adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xed213bb7 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xed2bf59d sg_miter_stop +EXPORT_SYMBOL vmlinux 0xed2f2bba mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3e9c00 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xed3f3e7d pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xed4d19b3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xed55a0df __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5d6179 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed6bc32d vme_irq_free +EXPORT_SYMBOL vmlinux 0xed834cfc prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xed83bde9 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xed8adc5b fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xed9e016f param_ops_ushort +EXPORT_SYMBOL vmlinux 0xeda1546d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xeda395f5 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xeda6950a netif_carrier_off +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xede81f14 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xedebeec0 iterate_fd +EXPORT_SYMBOL vmlinux 0xedf41f4c kobject_put +EXPORT_SYMBOL vmlinux 0xedf8be87 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xedfd91e7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table +EXPORT_SYMBOL vmlinux 0xee140bb8 mpage_readpage +EXPORT_SYMBOL vmlinux 0xee2b882a devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee44afdb scsi_remove_host +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee70b4da xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee86bd09 cpu_info +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee94bde3 iget5_locked +EXPORT_SYMBOL vmlinux 0xeeba3fd9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xeecf43a5 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xeed01733 register_quota_format +EXPORT_SYMBOL vmlinux 0xef0d2508 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xef2993f4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xef3dbc7b nf_hook_slow +EXPORT_SYMBOL vmlinux 0xef3f26cc sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xef850806 nd_device_notify +EXPORT_SYMBOL vmlinux 0xef8de18e dquot_transfer +EXPORT_SYMBOL vmlinux 0xef97834f param_set_copystring +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa0bd24 bioset_init +EXPORT_SYMBOL vmlinux 0xefae2d53 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb2afc0 __bread_gfp +EXPORT_SYMBOL vmlinux 0xefc80ad8 dma_set_mask +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd030cc bh_submit_read +EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xeffee0a7 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0102946 set_bh_page +EXPORT_SYMBOL vmlinux 0xf01184f7 simple_write_begin +EXPORT_SYMBOL vmlinux 0xf01e534e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xf034cb36 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf03e9f7f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf061e096 input_flush_device +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf076ca2c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf090fdb0 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a3b46b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf0f330c0 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf1027905 simple_unlink +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf120d918 vm_map_ram +EXPORT_SYMBOL vmlinux 0xf138d56e dump_skip +EXPORT_SYMBOL vmlinux 0xf13fe390 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xf154a7a3 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xf15ee213 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xf176ce6c param_get_uint +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf192791c input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1a976b4 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xf1c9228c bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e7bcf9 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xf1e80796 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f24495 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf216d357 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xf217fc6a read_cache_page +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf2288d1c pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xf25c2367 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xf26f6138 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xf2756c83 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf2840ceb __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cae4f5 page_symlink +EXPORT_SYMBOL vmlinux 0xf2cb92c7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xf2ce2d49 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xf2d6b439 read_dev_sector +EXPORT_SYMBOL vmlinux 0xf2e2ad45 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2fd28ce kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf30c6352 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf33330a5 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34703dd bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xf34f296a pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35659eb param_ops_int +EXPORT_SYMBOL vmlinux 0xf369c865 vfs_get_link +EXPORT_SYMBOL vmlinux 0xf370fc79 param_get_string +EXPORT_SYMBOL vmlinux 0xf37ae63c kill_anon_super +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39782aa dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a6887e give_up_console +EXPORT_SYMBOL vmlinux 0xf3ad2bf2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf3b2d915 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b3f76a nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf3d3b719 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf3df7c24 inet_release +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f85938 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xf3fe9bf9 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xf40c2de5 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc +EXPORT_SYMBOL vmlinux 0xf40fe95f pci_request_irq +EXPORT_SYMBOL vmlinux 0xf413d837 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xf4223fc8 agp_free_memory +EXPORT_SYMBOL vmlinux 0xf42ee0b0 register_qdisc +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf44e053b dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf496af94 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b19379 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4baff3d sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cc70f5 input_free_device +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4ee372b phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5044fdf unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf50f3478 rtc_add_group +EXPORT_SYMBOL vmlinux 0xf5339c59 pci_release_region +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53ff557 bio_reset +EXPORT_SYMBOL vmlinux 0xf55a11f8 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5ab31c6 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf5badf2f __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf5c0a195 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xf5cd2180 km_report +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf609ec03 seq_lseek +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf613bb9b param_get_byte +EXPORT_SYMBOL vmlinux 0xf6155ef9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xf62bcd7f generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64af932 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xf662cb15 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf684390b pci_enable_msi +EXPORT_SYMBOL vmlinux 0xf6a4cbcc rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf6ac6f78 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf6dbf26c jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf6e22817 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f8823d bio_clone_fast +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf737a1b0 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf759d8a4 md_done_sync +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77652aa blk_sync_queue +EXPORT_SYMBOL vmlinux 0xf77bb500 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf7911905 skb_append +EXPORT_SYMBOL vmlinux 0xf7925b12 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xf79ae9c4 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7a848ac seq_printf +EXPORT_SYMBOL vmlinux 0xf7b09f44 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xf7c745c7 find_lock_entry +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80e221c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8123438 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81612a5 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xf82501ea __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82b9137 ps2_drain +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8386d97 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8595510 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xf85c3e5b kill_litter_super +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88945e1 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xf8901e9b _dev_crit +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bd65f5 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d066ea vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8e173d9 vme_irq_request +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90d1634 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf926253d scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf930ec13 write_inode_now +EXPORT_SYMBOL vmlinux 0xf935e030 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94a5352 dev_addr_del +EXPORT_SYMBOL vmlinux 0xf9569b94 vfs_mknod +EXPORT_SYMBOL vmlinux 0xf960fd40 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf96cf0ad kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97a859b ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf97b5cfc dquot_get_state +EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9cc7ca1 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xfa07170d from_kgid +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa0ea0ce vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa40ce79 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xfa432619 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0xfa49bf40 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xfa4c7ce4 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa899116 __break_lease +EXPORT_SYMBOL vmlinux 0xfa8cb943 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xfaa1fdf7 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xfab518ee input_set_capability +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfae02093 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xfaf3d7f7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xfb251b8d kobject_add +EXPORT_SYMBOL vmlinux 0xfb2615b2 param_ops_bint +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4cd0db blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable +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 0xfbd24353 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xfbe08ef6 mmc_add_host +EXPORT_SYMBOL vmlinux 0xfbe896a8 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf0bc46 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xfbfcae26 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xfbfe4177 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xfc009501 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xfc00982a __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xfc07d5f3 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xfc22aede vfs_symlink +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc3e50e3 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc4a442b fb_get_mode +EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xfc7de007 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock +EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type +EXPORT_SYMBOL vmlinux 0xfc907686 __frontswap_load +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc22756 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd26a6ce set_trace_device +EXPORT_SYMBOL vmlinux 0xfd31a136 import_iovec +EXPORT_SYMBOL vmlinux 0xfd4ed36b generic_listxattr +EXPORT_SYMBOL vmlinux 0xfd9114c2 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xfd93877b neigh_parms_release +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd94814e complete_all +EXPORT_SYMBOL vmlinux 0xfd99bd20 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdac66f6 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xfdaf83cb blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb40e16 vme_slot_num +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcd1934 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe075c0b phy_stop +EXPORT_SYMBOL vmlinux 0xfe08aa9f i2c_transfer +EXPORT_SYMBOL vmlinux 0xfe0b658d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xfe0f60fc read_cache_pages +EXPORT_SYMBOL vmlinux 0xfe173439 ps2_init +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe241471 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6583b5 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xfe672f35 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfe678728 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xfe69ce05 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xfe725fe4 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xfe7562a1 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xfe771b22 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xfe888490 vme_slave_request +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec4bd79 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef4d975 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff24c292 set_pages_uc +EXPORT_SYMBOL vmlinux 0xff2b1843 build_skb +EXPORT_SYMBOL vmlinux 0xff56079d _copy_to_iter +EXPORT_SYMBOL vmlinux 0xff5942fd skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xff59bb05 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xff5ae513 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7847c9 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff897e6b file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffe7aa2a flush_signals +EXPORT_SYMBOL vmlinux 0xffebf2a1 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffc4e76 ping_prot +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x19711697 camellia_xts_dec_16way +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 0x6f3a8de5 camellia_xts_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x9056f10d camellia_xts_enc +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xaae4a1b9 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xc00f725a camellia_ctr_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0xfea2b457 camellia_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x315d28f7 camellia_crypt_ctr_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xc5e3cec8 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xee61eb71 camellia_crypt_ctr +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/glue_helper 0x2792b618 glue_cbc_encrypt_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x298ebbf4 glue_ecb_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x47c4e08f glue_xts_crypt_128bit_one +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x4a7679ee glue_ctr_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xb54e595c glue_cbc_decrypt_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xdcb93105 glue_xts_req_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x03a48018 xts_serpent_setkey +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/serpent-avx-x86_64 0x5cea0c9c serpent_ctr_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x99341b41 serpent_xts_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xa0100109 serpent_xts_dec +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xb75988d7 __serpent_crypt_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xbdfa6cc0 serpent_xts_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcee44453 serpent_xts_enc +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 0x2c7b3458 twofish_enc_blk_ctr +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x31ddef7a twofish_enc_blk_ctr_3way +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 0x009d34f8 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0257f5dd kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0472042a kvm_mmu_new_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0571169e kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05f5e773 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06017a0f __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065ffda5 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x082b300b kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x089f4a7c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08b2d047 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08cef5b0 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a149dfc kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c17e251 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c3b5c04 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d79b593 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ebcca3f kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11319112 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1272b16e kvm_vector_hashing_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15c4acc8 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15e67f10 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15f5cf6a __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16566044 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x191d9b39 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ad85e03 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1af85071 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b3d3619 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d03f138 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f085948 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fb95930 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2009cf76 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x219a986e kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22b5892c kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22f6643d kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x256bc956 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25ad457a vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28785b34 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b74a770 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b813a5b reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdb9b1b __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c49f9e3 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ce8ac89 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d12ca53 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d52b937 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dc81af0 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e5973e0 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e642f01 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eef06b7 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f474896 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x311b4f74 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x327fb878 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35a5321a kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37017b86 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3867b660 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3897bf8c kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38c68740 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39d316fb kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3026d4 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3abdd2a1 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b4babdb gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd1b926 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc82f45 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cea3d71 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d9253dd kvm_put_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41c5e543 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43a3753f kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4448e53c kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x468f0871 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47dac30e kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48807185 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4af127a6 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b42284c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bababe0 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4be022d7 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fd20240 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x511e49dc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52c4452d kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52d48871 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56f3fca6 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5802328f kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x580b81d7 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598e8a17 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a203ca5 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a9f0363 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5aa3c71c kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5be1881a kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c19163e kvm_can_post_timer_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cc33f64 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d03078d gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e3c48f9 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x601d0f9b kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62bcbf07 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x653b5ecd kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ece2a2 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66c4423a kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x685544fa kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68f54e0f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69460a96 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69d23c4f gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6fe5be kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c5a60ee kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c856ab5 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7002c5b4 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7034b22c kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70427094 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709149a6 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71f63e80 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72238ac1 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x728a4d85 kvm_load_guest_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x742d8931 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7478fb48 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x763c071f reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7763a671 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79549241 kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79799ec0 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a56764f kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c58de18 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c78484b handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d0ce109 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d8678a0 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x803b1b7d kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81ab3e45 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81ae6a22 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82806a88 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x849344cc __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x867690a7 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86931b5d __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x879eaae8 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87bed951 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x888d979f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88989b94 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88b34750 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x892c3b7c kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a00311c kvm_mmu_invpcid_gva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ad3b846 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ee50a16 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91d4d992 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93213360 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94abbd88 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94c25c65 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96a87941 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x980718be kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98dbba15 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99929584 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9be8fad1 kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c559ea3 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d95c8c6 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dd0e73e kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa27dc9c6 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3164bb7 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6c2e78d kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7cef445 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa93d5be9 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa975020d kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaba19dc7 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabcb0e8d kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabf32739 pdptrs_changed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae3bed13 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafe2a52f kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb097e540 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0fe6e92 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb192ae3d kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f29d1a gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb58d430d kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6eb5f30 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8e6768f kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc6235b6 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdebb845 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf0df6a5 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf38eb43 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfc61ecf __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1af327d kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1b16c8d kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1d769b7 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc70e6bfd kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca3ab5ad __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca65e069 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab0c0a4 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xccaf0161 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd263b6b7 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3c76be6 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6974e29 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8880039 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8ae2ac3 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda412811 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdae824b8 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdafe9067 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbad4d8e kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcea1c13 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd562a4a kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd9e7aeb kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe206cdea kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3ccde2b x86_fpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5fb1081 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe84ef8f1 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb5d4bb7 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec06defc __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee1d2e83 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee9e3956 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff935de kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0263b71 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf03937e6 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf250fd89 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf450331a kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf47e3dba kvm_no_apic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf602cab0 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7f5574a kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7f7a342 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8182f92 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8832db7 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa541ffc __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc0cc38b kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcc08cbe kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd576959 kvm_fast_pio +EXPORT_SYMBOL_GPL crypto/af_alg 0x02435cba af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0a15bc65 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c33250b af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x22bbddd1 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x2a5262f4 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x38e51789 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x48e04c60 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x52395639 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x57cc9d57 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x66ca3e94 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fb31bd1 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x9e65bfa1 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1a4556b af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xcc701853 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7e7b5c4 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4dbad95 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe642826d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xea04f6f3 af_alg_poll +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x1c54bf16 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x3c1b1a81 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1c91e77e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x411698bf async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x86c513a1 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9be970cf async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x08e7ba6b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x16cd163b async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x24e63c8a __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9b065db7 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1863d5fd async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x99154d1c async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7bc12be9 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xcca2b8ee cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xe7d84730 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/chacha_generic 0x3e7d1b88 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x427a353e crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x70b09b09 crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd5dff0c8 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x35a59ab4 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3bad6e36 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x44d61994 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ae4a14b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9a4d842d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa201005b cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa6e434fc cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xaccacabd cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb02f9c05 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6bf9f2e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7661c5d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe3d2a996 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf131069a cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0dec8097 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1051219b crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ad72854 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2679045f crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3745d04c crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x600a544a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x70357f3d crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x787cc7e6 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e065de7 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8830a262 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8bb7c4f3 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8bdde142 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc4b4663a crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf9a71c13 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x16b8ab0b simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7877faea simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x839468d3 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 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe25ed404 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x43292745 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5b6b94a7 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x825932c5 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x1c69ec8a serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x5b594dae crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xb1df3633 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xe856b334 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7e031faf twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x12f51643 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1b1af218 __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 0x5ecabf85 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa624cec8 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf5aa0f81 __acpi_nvdimm_notify +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 0x2405b876 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c87daf9 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d759219 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x32c8c4c5 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x349d3ec4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4918d6e2 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49c2f56e ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c31e7c4 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59009290 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f7df8d0 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fc08706 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7e375ed6 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaab6ec0b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xac1d78df ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2ca13c9 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb381b56b ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd11fdfa ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc32b60c0 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc9b8eb54 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd74b2546 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe172b37a ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe295fb26 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe666beeb ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7245738 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x04feef96 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x05e74ae1 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1ee30ac1 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25487697 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x355b6924 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x372047c7 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x51fb9545 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6bf715cd ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6cf02e8f ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb7683699 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1d3ecce ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdb7f007c ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe056cc65 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe14f6912 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4d74aa6 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeafca641 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xca304836 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x66dc9f2d __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7cf40ed2 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe11a5425 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x64cc84f6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xdeb1eb31 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x145a2ca8 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x679a0346 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6a5b07fe __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd1edd612 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xa86b742f __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc1346953 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09ed6323 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21f198fb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30943313 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x343f80e5 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x347a19f4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38766675 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x403524c5 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e3bcb78 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5829340a bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x784cdc86 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f158807 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84c1c013 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89d22a30 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8db60365 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93459ef2 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x950cb79a bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4a2b6fb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf9b460c bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc273523c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4a9a9d1 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2579a88 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7e142b2 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8a8821a bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc300127 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1d8cbc11 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20271f8c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2bccc6c6 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xad4e2eee btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb2c2bc2b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc9ec17dd btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1567b331 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1897acb2 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42527570 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bf6bf11 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f10f8f9 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5b1b8ab6 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5be0758c btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x684c2a7b btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6e75ad6d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x778a765e btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x82cc21a0 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c0200b7 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa16cf3d4 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac5de558 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce0c9fc1 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdc2865a8 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4747248 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x28bb17ea btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x61cd34c0 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6d068697 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x942fcc4f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94f2f0f6 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb639689b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb7cdf864 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb636970 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbe0cdf28 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf722cf07 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf810b576 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x237d33b7 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x54af1836 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa7d5bdd0 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa89eca65 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd1994188 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x59d20b77 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x638a0485 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8f4d7c04 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc4f2191d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xde8404ed btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0f5476d5 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x57ce764b hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x63e39433 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf98cee83 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x05ab25ef counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0e9569b2 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x20a6eb29 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3b5566ec counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x46e481d8 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5c7e3fce counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x641ffaf6 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x66f8faa8 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x74564af8 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7ee05ca7 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x97398ea8 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb8858a3a counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xddb406ed counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +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 0x0d7e39ea 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 0x6e4ec8c6 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 0x0563eebb adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c2d54f3 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0eb2ede9 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18b86c30 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x235d4f30 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b0d502e adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fd2f959 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x407e539b adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44601173 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44b2da83 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x455339ef adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x50ef0fa5 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x535c6f7b adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x543cf4ea qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62b134cc adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6cd8ebb4 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x75cbb628 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ac642f8 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8023f055 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80fc7803 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x83a340d1 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x898c511d adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x981893ca adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb47e5280 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb69ed63f adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc84c598 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3f561b4 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc5c953fe adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd50dad1 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcfabaac4 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd10f99b0 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd6510b9a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd6b5e0b0 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4ef165b adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe99129b5 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xec7ddd50 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xecad1cf8 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfeeb7cec adf_disable_aer +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xae63ad4c dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xd47d1c19 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x38e80d42 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4c255047 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8f772f95 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x93d2dd5f alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x96d5c6a5 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x98ccd8db 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 0xd19ce3da dca_add_requester +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x27cfa5f4 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa3fb54b1 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x32671dce do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x42dc8252 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4c6f6672 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4cbe6a62 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb6d0b0cd idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdeba17f3 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfbaaacb0 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x6a74b42f hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x89e2352f hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xa31ff9e9 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf3ab1b5d hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x17d1604a hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x50e0edf2 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x14511419 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x850ac0e7 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xbc2c3749 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd8c09cfd vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xdf11c0e1 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x4a7aef73 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x830c469f amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xaf761418 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x899f0ece alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xe9378b98 alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06304f08 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0770e2ef dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0b4912ea __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x10cc8f1e dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24bfb490 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a45e322 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x35f06ac7 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x66dce05d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x69ca261c dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ab6b964 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8c73b3af dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ef49a00 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbaba01f5 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbdcc40b2 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd30c42bc dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdd45b5c7 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6f2327a dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfa25f0b1 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfaded7a1 dfl_fpga_port_ops_del +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 0x61911981 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x79e399cc fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x83e12ae6 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x89b9b2b3 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb3ff986d fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc67283e4 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdd3984c3 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xde0eeed4 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdec05aeb fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdedaba2c fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf5b1a089 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xff2c14b7 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x05e0c5ab fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0bb49c22 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30db1ad4 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x45504942 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x66250a2a fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x897f4bd6 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x92374037 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x98678e85 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9f68b883 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0e7a106 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb9cd8a73 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc4602f22 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf22679e fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x14e7ccb5 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3a72cc7a fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x492bc1e8 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x69e89fd8 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6bbdba34 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf6304602 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf8667bc9 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x21999eda gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x75fa52f5 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x84f72297 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf30f72d9 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfa87b3ff gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x20b89db8 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x22c1a689 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4511b555 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x52ba822e gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x68475367 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2ad1650e bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc310831a __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd3c765e2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b5829b3 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e186bf6 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x24821d58 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37c15d41 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39794272 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3bac9940 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x40fa8641 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d12a832 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50616114 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5aa74907 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c9bef49 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6cb74b87 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d7e750b drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74be159a drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8b69724f drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9153f912 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xabea9ba7 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc9e6305 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd432b2a0 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0a2f176 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6081b16 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecb8bbb4 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecb94880 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfad2c362 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfbb799fb drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1b132c41 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x267e5ff9 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x620fafbc drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ae89e28 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa31922fa drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xccc56276 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfaf6814c drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xfb21db96 intel_gvt_register_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0f991bf9 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xc6cfd718 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xe3116323 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00418336 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x070a47cd gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x087559ef gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b3cba6f gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ad7d188 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b990e55 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1eefc178 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26ef664d gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d1dcd79 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e83c36c greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4264be1e gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4607e18b greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4aff60b9 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53578810 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56f2dc44 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e640739 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x691bf694 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b93727e gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6cc4199c greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75a510ac gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c4287fa gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8a21db5c gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93828571 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97199d52 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b11e192 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9cd2d1fe gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa77e4ed4 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaac45fcb gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae913644 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6a75305 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbcfd13a gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc9d48c6 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd391e247 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6b6adf1 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9d0938e greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf13b2eca gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfeea5a5c gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/hid/hid 0x015137b6 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x057fc769 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x061852ff hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ac9a132 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13c83d6a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x162427f7 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17429b72 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25976f54 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d69ac7a hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f798f61 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41be0fae hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a3b1b97 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c3d36f8 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5883bfc5 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d2080c0 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6248477d hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x686176be hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x688bc692 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74da06c2 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x836014bb hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x871cd0a9 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x877321e9 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8aaef825 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93901f90 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x978dafcd hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9968f35c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99bfb503 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c5122d5 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9edbbe03 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9153b8a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0af4249 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1c816e9 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb35ec8af hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb914f622 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba047f52 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba62f928 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbecfa45a __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1445175 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb2e5bdf hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8bf5fc3 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde99e597 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5ba1ccf hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6682a8b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb24efaf hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xe0b43121 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0e5e7690 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1d96d574 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x87245c15 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9393a237 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf3c6942b roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xffc39519 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a7ffd2c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4f9a1f48 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x517cff20 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x90ecd9dd sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa2b56b4a sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa6150ae6 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa75f4dc7 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xac242e55 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd98b3680 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x145d471c i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x4a92d69d uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x2e7a386b hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x67e1795e usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02812250 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b6c2e11 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0c59c116 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18cd6c83 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29a37734 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36cea2a1 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c08afff hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x417a6bfb hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x64726fc1 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6dc3bc02 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x927bc413 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a5bd4b9 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cc487ea hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cd97460 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc34dbcee hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xce65a86c hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee6f7200 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x010d01f2 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x030fd23d vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x159fdd95 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x26ca0da1 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35a944e7 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3cc682da vmbus_set_chn_rescind_callback +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 0x4b399b21 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b84e6b6 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4bf10d88 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x514495a0 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x56e9a324 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x64212740 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x72996bab vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x79f2f576 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80ed348f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8fc8ce2b vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x98b23372 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f7dd9e1 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2c786a5 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd41f4fdb vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6732179 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf0a51188 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6da92c8 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf7a596dd vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfab2e6b7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfb20fd8e vmbus_close +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x257e774c adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x648f3b1d adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7a0fb06d adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2a5a2328 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2efff5c8 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3dffa5ff pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4ebf3e15 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x585ce7cd pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x65b01244 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x75be7e79 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x775c876f pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x83b10f5d pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x94a79394 pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa18c0ae8 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa1d8924d pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb28487c8 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb79cd95a pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc251dbff pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc83f056b pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd8e97ee5 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdc30ef93 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf5767944 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x10d18564 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x46fb1945 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x74328cc8 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c1bc25d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9409007b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa118f58d intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa4a5dc47 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8e63564 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc6b05a26 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x15086181 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x44829534 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe2d102f0 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0ac8abc5 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x24ee9def to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x445747f7 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7913e092 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x99d6874b stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa4716233 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb5aaa9e1 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd387d418 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe217d1b2 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x95c6bb26 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa759d851 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa80a2fff amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb9ea1676 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xbce1fec9 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd639d123 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xedcb4d79 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x591ac6a4 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x29d1e502 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x43fb1c06 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x949f5ef8 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd7ff9142 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb2dad198 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e90b8fe i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x34b819d1 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a5f284a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5130ba3b i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53ddab55 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58e49508 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x69e69e0a i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x71170467 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x83d8d992 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8985ee10 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8b9bfcbe i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9947e80c i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9b81a810 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe7c42e9 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc899ab84 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9e49739 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca2d1624 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca9328c0 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd0a5b952 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd205dfc1 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4dff780 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe3a83f23 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xea1f5b05 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef8caa39 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xff68fab2 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x49393e75 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xdf64300f adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1cfb14d0 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2463a6d2 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7f53991c bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa219462e bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x47f95d04 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xad6d038b mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xdf5e46b2 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x65e0eb33 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xf4e2edff ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0785ef4f ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x47cfe13a ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f3548c6 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7f8eff5b ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8dc478dd ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9836a565 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xad77fd96 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd70f538d ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe3a03d32 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe417de5a ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5b267aeb iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa5ee6a95 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc24df4bb iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0e6c6c18 devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xccb56272 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfba91753 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x87c67c61 devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xf7039a35 devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x5b48ac48 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x26bdac26 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x54640a26 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6953336d cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6b2e024f cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x760dc981 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7de76ec0 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x904a5d21 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb187b2b3 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe02ac051 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0fcc182d ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa8f898c4 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6dccfa15 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xce319953 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x14df0a6a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x51675cbc bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xadf5bfea bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x40626c2e fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5a97e599 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x6de0d337 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1d976db6 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1f68ad7a adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x33af64da adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x42e801ed adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x64b7ba4f adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6e0544c7 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9bc2e916 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa3247192 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb5d385e2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdfde1a0c adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe17006c2 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfb673797 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x3d5a1b5e bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2bfb8c15 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x60944794 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa9cb6b7c inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03c2df53 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08fe9d9c devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fed22cb iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ef49b60 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2556bd1d devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x27211815 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32dc45ea iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35f87ee2 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4592669a devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x488183f2 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a6e1512 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4aaad883 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c66a9cb iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ce759bb iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e8e4eee iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51fb6ad3 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5370c1f0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54d242e9 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55c8d7f0 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d971314 devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ab2ebf7 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73de629f iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77189b5a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b056247 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80faf771 devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8aa9c3ad iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ae16633 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f0c819b __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91898b6c iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x921c34f5 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa28efff8 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa42f1829 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6200cf8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab79544b iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb44f7dbe iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3276758 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc43f581e iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7a7b84b __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd29d7c70 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6bc71e5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8506459 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe36cc6da iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe381420e iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5876dde iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed1aff16 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed4987a7 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1b4fc74 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9753487 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa8f6b1b iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd4be75e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xe1e5a33f rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x0466fb00 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x255693ad zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2c9782fa zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x35ecad55 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6014bd8c zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x844f9ff3 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdf9aa2e0 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x4dac7c9a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xd3d2388a matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x37ac3390 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x192693c7 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x192fc2b7 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1ee339d3 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27af3a4d rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3cbb173c rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x926a99bd rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa853d687 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xad72a7e3 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb50cdd4a rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc07db7aa __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc3fc6e5a rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc7ee8c7c rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xeaae9133 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0641f1e3 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc019ce2e cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd839dcc2 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x35340137 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd55e28f4 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1fc96871 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3d7e3094 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0f709321 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8e91be5f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb7df88ee tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf42102cd tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0a9126fc wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x301d2b89 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4af25503 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c851b5b wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5efe42d0 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6bc7c316 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6dca92b4 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8fd6f98d wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa76dc388 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab21b8c2 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbad3ded2 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf20fb180 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x27acfbd6 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x47db3036 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x67be1b1f icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x70e6f0e1 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x781369fb icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7cde2123 icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x97cb66d2 icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xbe3f57ed icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd3ddcff2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd9eec5c5 icc_get +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0447a93a ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x28087d4f ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x44f8aa67 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5c6ad758 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x635fdf79 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x67373925 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x85c7b7ae ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf534963 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdc5079a6 ipack_device_del +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1476058e led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x548cfa28 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x96a8fca6 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa0ff6f5c led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xaa3f1cbb led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xef25b453 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x17b96d63 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24ced12c lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x39eb0685 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4a462acd lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6881f5b4 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x78d1e8e5 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x84f701b9 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd2ac91a lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd489b4ac lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe034fc25 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe35097a0 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x132e41ac mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x22fb9ddb mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x301fb594 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x58294e79 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x824e0ee3 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9e2fdaf6 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9eecb246 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc2e6379d mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xca4123f3 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd35f6f5f chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe8adee26 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb4359ab mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeeb99a41 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf275f01d mcb_bus_put +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0150444d dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x368ce795 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e87c76a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x48d25105 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x549eb1dd dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x60584322 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7d47ce82 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x96263f60 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa038c273 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa279bb0e dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa55260ed dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xabfb6e45 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb40c8b5f 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 0xc45cd894 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc49fdd13 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd11cacc0 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd30e902a dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xa5c6f704 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-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 0xaf324d63 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xca10917f dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x48f7edb5 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcc624edb 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 0x33e1d162 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 0x44344cc3 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x51eddbae dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa30f6d95 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc17f0332 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 0xd9b3fb66 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 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x52d037df dm_block_manager_create +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1385289e saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x16768c4a saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x46b5407d saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4f741ef8 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5bcedd82 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9a2b52ee saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdd697a74 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe094b886 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf06fa37d saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc890eae saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1996befe saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x20c043c9 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x48276e23 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x691166ca saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x78119b05 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaead10c6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf890313d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03ce5441 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x099d1fbb smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b84ceed sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e080255 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x293e3448 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 0x48822ffd smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b002e57 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6115a765 sms_board_power +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 0x7e8c52ed smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x810ee846 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89f91237 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9a783a04 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bc2e243 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe581cea smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb81a978 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe36ca973 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfece405a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bb2aae2 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x11443171 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1be02d1b vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1de02a91 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x302b163c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x37e9d193 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c3f7866 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5613366f vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5cef7e1c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6954fb72 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x783f480a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8cf04fc9 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90fc3d4e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d31f1f4 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f47cb4a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa16307b5 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa69c7951 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac403915 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xacab26cc vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb718b17e vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb82210a9 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc27e4c66 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc064bfd vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd07b1816 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe9abffbe vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x4a8734bf vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbe949bff vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe9f2ca2a vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xd622f691 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x39583d2c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1321724f vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18d49a9f vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21278241 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x25bff9f0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2710f6d0 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ab0de6c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3cdbb84d vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f620178 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x496677b0 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x53b6376a vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57986433 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5c9e1047 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b80f08b vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d3c121f vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8169cd28 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9295461d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa03633bd vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa2892a6b vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa318671c vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa51afdaa vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb254be8e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc93b7974 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd02bec68 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1727df6 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb8ad736 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xde621ffe vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe95ff65f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf32eddf3 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf813f0a5 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb0badf1 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe5076fd vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xfe03fb19 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x204a3a07 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6477b48f dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xe28b3595 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x91aab7bd as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x208e4b16 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x6925f46e gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc62953f3 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x54447b77 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xdb967613 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xdac1245a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xf587197f aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x4a1a3fa8 smiapp_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0211fb2c media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1aaba45c media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ef12970 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32bdfd8b media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32d59bc4 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37353973 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38813f95 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d8db282 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x488a4a6d media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f2a1f11 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f2e6328 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50548995 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x554900c6 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57644752 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5cef1599 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63c03924 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65220372 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f4b7d27 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7545d881 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d1e2b0d media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f4b0e6b media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85c200b1 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bbe11b4 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93ec20e0 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x957c0e78 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95801fba media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9960a01b __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b29c5e2 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ceea2ea media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f8a2102 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa21ec9aa media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3da7b14 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa62c5585 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa633e306 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9c72237 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad716666 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc07f458 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4a6f1e5 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcec87563 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfa9d5fa media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe33b0139 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe531035a media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe73425ed __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea2fc9b0 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf247af7a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4963d02 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5dd55650 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c001d2e mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1cefbddc mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2fbf011f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39af8838 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5e8d34aa mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60857134 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89457610 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x96f8e094 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d9d78ce mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9e566328 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f7f2728 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaad0b23e mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf6b67a8 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd374031a mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdba5c403 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdf05f531 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1e7e41e mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf99f2100 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfac4f2be mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22095da3 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48157b48 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4aa9907b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5162ae69 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57ded4f8 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x713d9c01 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78740ba5 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8f41b4d6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa14e2ab6 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1cec394 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb60e968e saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc0eea7f9 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc407c6a8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8565212 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcb4e44e5 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd24d4b41 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd40d88e4 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4c1e25d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0cde926 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2d529945 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x378ccd7f ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa5490290 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa59c2bb9 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab5da0d7 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xced62540 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe4cfbd3f ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x14d63100 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x31dbfca3 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3a5ccf21 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa470588f mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xbaa1c4a1 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x03b6e32b vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x905c136c vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x913db438 vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xacfa0585 vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xaf4b4713 vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xef11fc12 vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x27366275 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3d3f4661 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x19c02e46 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x61887c19 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbbc5e6e4 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc29a2dde si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd8b50bf3 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x189d71c0 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x20fe9b57 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53bff3a1 ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x558bea18 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x60a6d4c1 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a110fcd rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8099771c rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92bf5c2c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x936fc517 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b99a012 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb49f1329 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbbdcff38 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xccb45b08 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd06b0ff5 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd16c58c4 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1bb834b rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd74863f0 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfa78e60a ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x1fefd8b6 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd456f694 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb91cd940 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9777d2ff r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf1454c69 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x3d1d3602 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1cec8a25 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe61a5f13 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc055894f tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa85a41da tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd5a35d95 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x336fa7ec tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x66d33c38 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x39263f16 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01c456d9 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a99688b cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x296e5a8e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3fe785f8 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x454c92b3 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x480ee62a cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61a49fc8 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6215eb83 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x693f1973 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6fe94cd6 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76586eb0 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88478d3a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x907bf398 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c523670 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbaf439d7 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc3c84aa5 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc530027 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdafdd3a4 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdbfbb457 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8700183 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf5ef1c9e mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xd75e4e66 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x00e95c3e em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x011c7a2f em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e6f47ac em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18e26ef4 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1afa66b6 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x262c33a4 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e1ebd51 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6358bc84 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d4d686d em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ad0089c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87af6246 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9be12b20 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa66791ff em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9b2f15a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba01bd5c em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd5d70ea em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe68f9b41 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xee005ebe em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0d5622d4 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1355dd35 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x78520861 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd0ff660a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x66c63b84 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7fd16540 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb0e28639 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0aa8a41b v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x16f05696 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x26e3540d v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3533ea0d v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3e6152ff v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x51c72c10 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x664b07e0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8c5e250c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe2908424 v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe09ed58 v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01071dca v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01d85caf v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0787f4c8 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d58e4be v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x153460e9 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a109047 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f7a9a41 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4aaaa838 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ef0b2e4 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54431edc v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5b48a376 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6575a8f2 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6936ee49 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a0a0ea8 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x72c12e75 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x751dee6f v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cf1aa5c v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x853afe1b v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x880ab907 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x948a27bf v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x955979d9 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97f9c689 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a037c4a v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2fadedc v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaab5ddf4 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadbcb4b4 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae9fa277 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb627d904 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6a7ea34 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9645454 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0488624 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce745a5a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5837bb5 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd718e8b4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee04c9c1 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04b3ae85 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x08563b8d videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1908be7e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2281cc56 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x279cbab0 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32c058ee videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3cdd9db0 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c31197b videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e025ebe videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55189a99 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a75651d videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5df3c75f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64a0b1f5 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a6ea2b8 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x793eb0bb videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8dcda45d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9675c194 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa999bb91 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad974a56 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb63460ca videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbaab6bb4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3e704bb videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd37ef7a5 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb46cddc videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x231f2c71 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3acd0644 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 0xb8d545bd videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc394aeb9 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa2821511 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xbccafead videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdd7a1270 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03a61799 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x075c2049 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x078e478c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d1c3b4d v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e97fa33 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11a9a02c v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14bc2d97 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14d2301d v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16df6501 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x170d4ec7 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c589a9a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e6cb8ef v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x428cd432 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ca900d5 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d4dcfd4 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e80e053 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5261f2e3 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52746b21 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x588622fd v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a514da9 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60999c73 v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64d175ba v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67d4f9df v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69fedb0d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x738519de v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74b20cf0 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x797958b8 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79cf9e46 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c08bac3 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x874c4111 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x876f4599 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91e9b5f1 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9239ff2b v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x954a82e3 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7ce2c0a v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab78df92 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac414a64 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0f4d5dd v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0fcc578 v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7085f11 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb620025 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbddb53dc v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe02c6f7 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfa03bd0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc01b13e4 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd1ce867 v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcffc294a v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6617f52 v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd70539d6 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5e62162 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6a8eb6f v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef7bb623 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf638a0b4 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7d1b94e v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2c6a42d7 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4699d995 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x70365ce0 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x08a80460 write_hw_ram +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x1925be76 read_ad_value +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0x7fb907b3 write_hwram_command +EXPORT_SYMBOL_GPL drivers/mfd/ahc1ec0 0xe6e5b54a read_acpi_value +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0147a71c da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e0a0b80 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x384b13ae da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3c69d103 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x757b24f5 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb166ab15 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb6ccf670 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1b89fd2d intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3878dcc4 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa8b22907 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xcacb35bb intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe76c6c67 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1e6877c5 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x33b88776 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x518e3d6a kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x55d3a2b3 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8317fbe1 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe976e54a kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfab0ff65 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfccfcb11 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4acc1be1 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb7a906e3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xccd603fb lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1879514c lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4c27b1d0 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x61c29e70 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x675781fb lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7e2b8243 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xda86ae1b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea2a444e lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb03c2816 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc45d684e lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd3de88df lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e42e2f5 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35670764 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3922a21d cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x392f7e5d cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4e268c6d madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x67f4c710 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7a17bf11 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7a1a6351 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x82a68ea5 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x82ab52e5 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93fa7508 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a73f915 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a7e2555 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xadce4849 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xadf2e2e8 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xadff3ea8 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0d415dd cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0d9c99d cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc19393a9 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc19e4fe9 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd11db875 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd800db1e cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd946e419 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd94b3859 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeec7ffe4 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeeca23a4 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3e108d1 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3ecd491 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2de8b047 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x39140604 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7181e504 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xabe3636b mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb9ec9603 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xeb59284b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2d792323 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36ca5410 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3e8394d5 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x43769285 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c87648f pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x83c413f1 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91ca4d87 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa1e99968 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd3381968 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb3f9eb8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf6b72138 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3f59b7b5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5eacd126 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x15ce6e68 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5b9c23dd pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6ae2913b pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbbe8013f pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc8d62c16 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xc2dfe249 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 0x000a7dc3 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07ca4cb5 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0849df23 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c0f45c9 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0da364a0 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15b0fde2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d3b8b6c si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1da89bcf si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x278bf367 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30623e60 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a28aa07 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e46b8b9 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46c6c9dd si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49b0a2d1 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4afab4d6 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53dab1ab si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x650b9aed si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66b23cff si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76cc8e67 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8852ed8a si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92da9c71 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2aba7dd si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa309541d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa96c035c si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf4a2aa5 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb43f2b14 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6bb28f5 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc532b773 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6aae7b4 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc99ac33b si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb0c8441 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0fd9ad8 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2cabfc0 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe46356d si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1f45861d sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3ebe918f sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x403687bf sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4802bb4e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd48895cf sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x31205871 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x64e25bb2 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9361325c am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfb37345c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x9826866f ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x23dd9a59 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2dac0826 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6a8c9559 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6e4219d6 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa32691a4 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbc626bf5 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe05c81ad alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x006caba3 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x007e3325 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x09843c21 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1725cfaa rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2fb21450 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33e9309e rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34031569 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c3062e0 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d67a0bf rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42b66d47 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d763789 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5866e24d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e625eda rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7441cb5c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7f0df951 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x93407f81 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x951cff52 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1f41c71 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb9352f0b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbee3b7c5 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbf80b5b1 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc9de975 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3c1965c rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdab4f859 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0adf1058 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0be8f3f0 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1275c846 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1b1e0dac rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x38133d7e rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4b21bbec rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4f0b3d17 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x673591d0 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x80175cb9 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x88c99e5a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa6cf6d90 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb4d61f91 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc820ec2b rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1d026811 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x51215d28 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x55f93806 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x81a06f6d 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 0x0bfcdf4f enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4203990a enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x44f5f0e6 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63227a15 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6def2c5d enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fe023f2 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa6f9d1d5 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf888efe enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x05696641 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0a20382e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5c360594 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7eb37176 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x80a0923e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbf0030a7 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbfedc7d7 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xddd603c0 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0017b642 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x032d69e9 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28a5cf4a mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x32638be2 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33ac99ba mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3e67c527 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x46899fe4 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x576c263f mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x64bba5d8 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77bab02b mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7f044c7e __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x824a5cb8 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87e226da mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8852c4e9 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x88fc880a mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8e7331fd mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e4af75b mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9eabb868 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa49d5af6 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb4893e7b mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb70e0ea7 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb9e78078 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb80b841 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca12dde2 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xccbb5c1e mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf4b88d6 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf0967393 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa37c599 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x79af1860 cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x9197e565 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xc2963dfc cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xe5b9dc25 cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xf53f4ddf cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x1709f073 mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xac257762 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xc83686e2 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0xe1228f65 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x419fa700 scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x6c00966f scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x8038fee2 scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xc26e0f94 scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x30b2313c vop_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x720e3408 vop_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0x9a6dd6c7 vop_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/vop_bus 0xb2633b95 vop_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x024cdea6 scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x0612a389 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x066ae447 scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1ad135fa scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1d32cd75 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x270f1e8b scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3f9d5615 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x4aff4dc2 scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x58a1848e scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x78917a2f scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x8f2fed3f scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x92a57702 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x93a62e43 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9421e35b scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9791323d scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa9956b15 scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc30ee481 scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc43ebc38 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc78d34c7 scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd1fdc10d scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd99b17ef scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdc5efeb1 scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe08ce227 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf1bd332b scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf45e1e41 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe5c5afd scif_client_register +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 0x7d5ba9a9 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 0x8481635a st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9724c6bf st_register +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x207cc8b7 vmci_qpair_peekv +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 0x49a46aa9 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 0x4d928d70 vmci_qpair_dequev +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 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 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 0x0641dc9a sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08138794 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10c734d2 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x178bddbb sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36cd742e sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4076d7f0 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5305ecd0 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x564f5ab9 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d71a34e sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f507c33 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f6d75fc sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fc09939 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x795ca6a9 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e08e0f8 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82020b14 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84cb0373 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88c80fc7 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bcf6673 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9912ac0e sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9924f270 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9bb90011 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c4e06b6 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e0f8edd __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4708d8a sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa93c3298 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8f1fcc9 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba6d29e8 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbcf51ad7 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbe39b909 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc49e3b52 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7e745ed sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc86de5ad sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xccb887c0 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4d77e10 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda0a19fa sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe86a8ea3 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3c3338b sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf7bf45c5 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf896595f sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51f64658 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x52bf5906 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x542ee82e sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x72d68d92 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x84042d20 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x940e1265 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa5cded6b sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaee9c56b sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf5253ebf sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x61a08e85 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9cbeab13 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa3978efb cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x70d3f661 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x832a39e7 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfd787237 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x12ed5f60 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x52a82a6c cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe69ec972 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf470cd55 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x15ebb7ac hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6e7f2d31 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x037a79a0 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x081d49d7 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ee9c184 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13424bc7 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d356486 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f3e51db mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23f7722e get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a2b73ea mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3010b5b9 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x327ff170 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36386122 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f6ed311 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fac14c4 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x479eeeac mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48b36243 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d338bc4 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x687c48b2 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b48c8f5 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7dfcf9a3 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f749250 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84ce94ff mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x874b901f unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x87ec5ec6 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89f3cb60 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ae71bc9 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cbe9113 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e683abc mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa041d3cf get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9d6148a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae8da94f mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3e8351e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4562224 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb69d20de mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7e4af19 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb89ed336 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3923bb4 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7b0945c mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9a1fa9f kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca9dd512 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd5fdc49 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd340a4e1 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde9b471a mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1886f38 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe43029e2 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe955d37f put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9b611a4 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea163d04 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0a6487b get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1a80647 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7bad73d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8c52676 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8d6f671 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9e8eafd mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0776be79 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x33271e8f add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x72923097 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa051940d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xebc6b493 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x039a9cba nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1b4aae84 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1ffba5b3 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x327a765e nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x40e986c1 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4cd13db8 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x59debb1d nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x75c92ed4 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb64d11b4 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc03cff89 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc770bd55 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe929f2f4 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf15408b5 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x29013909 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xefdb3530 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x63ff1edc denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x15e85bf2 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x164d9c82 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x17dc71f7 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x255c44ad nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d1683b2 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3392dac1 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35fc57ac nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3832c89c nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39a26be9 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3e40c097 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x43e1344e nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x51897156 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5d1d6e31 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x626f063a nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x781eb6a9 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e7d8a0d nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x80fbc529 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8aa42836 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xad26fb84 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc0af3c83 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc24e643c nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc52526e0 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd053a50d nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd713eeac nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe41326f0 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe9885a8e nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x322d49e7 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x410844ce spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9057c3ff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b557bef ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42e22983 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4d56538b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x61ed7bec ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c19de82 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73a227ee ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x883bc0be ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8956b77b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f8e8f97 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa19f0321 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa4dada88 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc478f46a ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd20c2b39 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd7beb6f0 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb3c7fd1e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfd741d5d devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0d8a2458 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6363e239 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6bbd4d61 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbdeb5790 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdc3c9db0 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf18c14e0 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x47763571 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7eacda70 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xef3691dc unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf2ecb610 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07634482 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09482227 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19a428da close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29fab6fc can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x31269d5a can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d20b9f3 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3fb72f10 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c6b5355 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f9bb794 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50acfd5e can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53d6bbbe can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56f4ca27 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57aeb44d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b2a1961 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cd4d4f6 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d51b0fb can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a7c970b can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91485a3f alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x93c45f4e can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7acadf5 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3f67e6d open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc48c3b41 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0703d9f can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe186da31 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe387ef06 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf207cd1a can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x123aa3dd m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x191a9743 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2ac8a316 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x66570820 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a3ba45a m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80a46973 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdcb029a2 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeb36f141 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x06cd7c7e register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0e9a4198 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7837cc5a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xccdf716b unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc3f4c2f7 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0d98fa13 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1de13449 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1e2119b9 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x283ad239 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x370d3722 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3bc9b1fa ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x44d09852 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4d5ed8d1 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5a71315e ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5d0d5605 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x605dc3bb ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x70891603 ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb3281401 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc675236e ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd7993651 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe85279c9 ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf205478e ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x40830236 rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x55232236 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6164b0e4 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x631ad08d rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6bee4013 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x80d467e1 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x84011fab rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9d4488c8 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa38a372c realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa39d0097 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa3e40be7 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb625edb8 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc22470af rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcc657168 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe05d0415 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xff932d3b rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0182bfae __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x027c75e3 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02f19911 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04bc4881 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05160fdd mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x055873f1 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05fa7ff0 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c6ebc5 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091935aa mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x092a7cd7 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09d62e98 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4193f2 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19346d55 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1be8ddee mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c60249a mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x200da6ed mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x241dae18 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2635544c mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a9d66ef mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd67c55 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d0c42ab mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db05b79 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d785e4 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365c372f mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379701f9 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3acbf123 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c78075b mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c868ad7 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x460df8ab mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47183b05 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47bacb53 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d6b249e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ca2b17 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ffb3db mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e37d12 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a5798dc mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d5290f3 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f22abf6 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61b076fc mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c787de mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685f6f98 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69390bd4 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69806abd mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a992391 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7072203a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71356228 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7176963f mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72163b7a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73075b33 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x756244c6 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7682781f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e0cefa5 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f894cca mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80930ede mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x812ef2cd mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8267ca5b mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8291e02d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85bab26f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c07bd6 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8734588b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8997d938 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89aa2218 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89c5d0ce mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a8ab5cd mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c036571 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c10325e mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c9749f1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ebc424a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fdde187 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c15396 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f0dfaa mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96593ab0 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97710df8 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9857ed53 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99bc8704 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f64512d mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fc926b4 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0316cc3 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa206b01b mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b8b2d5 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d80bd9 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb65c7a mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad3d0416 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae24bec1 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb18e088a mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb27d3b69 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb65643dc mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb80ff3bb mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba69e159 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc5772af mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf215e2e __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf8b9cdc mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc05fc0e9 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2203b12 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc29e0789 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36c9e4a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a20970 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43310e9 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc58758f8 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7a50e65 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc86b852d mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc99ccbc1 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9df7edf mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7d461a mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce302bee mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf1bd9e5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd62c06bc mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7698be3 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd93b7374 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3b4266 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdee280b6 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfa99191 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe109695a mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1ef08be mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2019e1f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2b98c40 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe62534e2 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee5f232a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9a9b1f mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c2424e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3e215fd mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6e831d1 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97b4b27 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbfcd9d9 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd4f4587 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfddf1d74 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0339d3e5 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0456f1de mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f400c1 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 0x075fe5b1 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f72100 mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c3c2d62 mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ccd152b mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x146f8a21 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184320d9 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1984daac mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ad9cf52 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e383bd8 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20490ca2 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25d50354 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d07aa35 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dfda2fa mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36083053 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36a0c0dc mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39f90244 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a991f9b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43fe930e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4564ee78 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c3f15a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f7e43e mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4adbfe2a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dfff6f9 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e847228 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588e731f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58953b2e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a3f026a mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1e7579 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x600281d2 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6399f06e mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b164273 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6de3f731 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0633d3 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7202e984 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x746f4fd4 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x778aedf2 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b52efc mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77de6747 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7adfc9bb mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c0a0ef4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dc7af74 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8238f896 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85dfa540 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86cdc6ba mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88cd239a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8996bef0 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89bc7669 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8caa809d mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc2f0cd mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90ab0839 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9161a81f mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x926373d8 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c8918d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9699a47b mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a254e37 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ac9b8eb mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13ef6e6 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac843aed mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ecf8f6 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5d720a5 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb687db0e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb81bc47c mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8687849 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8b7dbd mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd368207 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc02c2884 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0e4125e mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc268bc07 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b0b2e4 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca90783d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6537e7b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd994cc32 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddeef212 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde766c6d mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe46657fe mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ede041 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5f5a6d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef337d3f mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefba117d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91610ac mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdb050e5 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff9357dc mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xacf7eb3f 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/stmicro/stmmac/stmmac 0x215c727b stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2dc6acd6 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7cfecd69 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x803c5e6c stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x02088d5f stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x11319ba3 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3a44e3b5 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x573c73d2 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x84b50262 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x137f8509 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9614f9a3 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb170d5db w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd79d3d69 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x368deee1 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1fe02b2d ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4c3d4dc9 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6d172c78 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5041ffb ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe1289d13 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x207c849e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x83bf278b macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcb98d1d4 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf2ff81a2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x0ded9e23 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcb0e82a1 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0416238f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30355557 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x451efa8b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ef5c28e bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58ea3c3b bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f6c6be5 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b232a9f bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d9e4465 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99b8e243 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0c86073 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb423be0 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbcc26fde bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc93d37ac bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde257db8 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe250bfd9 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5d8797e bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea908a1f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf86481e9 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0x64602ac0 mdio_i2c_alloc +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 0x22f438f2 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4afe054c phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x524d7a6b phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9d6fce5e phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x1dbcd791 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x32388ee8 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x51be5e36 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x55ee3360 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x564b81ce tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8aa24c0f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x92199c74 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xa56a1aae tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xe0043ffd tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0f1826da usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x994b46e8 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa300d889 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa81a64da usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf39a2eba usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x22cf16f5 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2ec1f702 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x446a6c81 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x555e76cf cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f8438d6 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa1ce7a8b cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbcac03ec cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4d844e1 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd00ed33a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x40bf2610 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6a3b1e58 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x87c92d5f rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcc4f61e3 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdae84e8d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfdd3f99a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07cca68c usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09b83dbb usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ee74a99 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1edd6030 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29024a9b usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ce6323d usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2daac939 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f019c8d usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35671b3b usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39fb28b5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x429fd9cd usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c36a9ed usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x673fd1e2 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a04dac7 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e0c87c4 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x854bd8ee usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x904dcbb8 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91ad7b83 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa41134e4 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa88c4fbe usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb02fd701 usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb570ec08 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0522ed9 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc996cd2f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcff415f4 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0fac612 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2f5a9a8 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd59dc692 usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3518ebd usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf798f2e0 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf79df765 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfaee8e4c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe7ad5c6 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x46102933 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa3bc2a57 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb8dbca83 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf8d238b3 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0018ca48 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x16016254 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1d47fd56 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b2764a8 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6b9fd5ec i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6c66d180 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6e8105e1 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7f1c648d i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa952b148 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbaec8e47 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc213311c i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc2f9369b i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc9466b08 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf0b38c2b i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4df20e7 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfa23044f i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4804cbea libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c3d866e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34b278ab il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36b70c4d il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4732cbc4 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1689431 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01f7cf8f _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0592a411 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dcb22b8 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e8980e0 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11dbc256 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14fac49f iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1922ea7a iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24329d7c iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x256a3c6c iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27d27b2d iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x292f4b59 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d69bddf iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x345e75b3 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3746dac5 iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a308dea iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x429aed88 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42e85a77 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x454dc698 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f6f8e07 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50e930d9 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x540c9993 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5431b0f7 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x550bbe9e iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x57ec9ca8 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58d13570 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee48f0b __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5fdaa467 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60337068 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6862a2ce iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d7468e5 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x787fac41 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b441c8b iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c5c72fd iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f08c0c4 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82c97d48 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8565a23f iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8dfcb3df iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f047819 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90d97dde iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94900e96 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3c3a467 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3d3c8c7 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3ffd6bf iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa63729f2 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa211e39 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9e1dd98 iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb467119 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc58049c2 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5b304d8 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7c146d2 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc9f471cf iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb62dd96 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc5d0a5a iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde64f10d iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe810c07b iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4471417 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9a3ac73 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9d5a125 iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff95ed1f __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x14654b6a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x399f5ae9 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4d77899a p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7f61b68d p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8a6e1d32 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9b38e8f8 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc27b51f4 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xce740b0d p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe1e01e2c p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x02bf4e3b lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x259222b8 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2eb87d98 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x32c2d9f3 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x33c6d539 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4526d4aa lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x54db45e5 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5e6f59ac lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x63d12d51 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x684ebcde lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8443af34 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x86009155 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e5ee798 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9e63d1eb lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb71a026a lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc6f139e3 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5bb64de1 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5c0cda6b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x76d460e7 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x79d1db1e lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7f11e76f __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa1c6a21a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaff98ff6 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd8cca444 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x459688f0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x492c3e9b mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4c3283a3 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x519a24ce mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e549031 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6677de1c mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x83b8d93b mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88a90a3b mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94b04687 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x964faad8 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x96cb1615 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c2e5158 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1bf7406 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaf95c6b5 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9255a29 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbe1aa153 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1b06c9f mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc79371f9 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc7cc7f9d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc971ea2f mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd24747de mwifiex_reinit_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 0xdb7f972e mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee738897 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf16920f1 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x035fac29 mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03e5b1c1 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x043f2d32 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f11d78 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07866c09 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b712c11 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ecd5c6b mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19ce9d92 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a0c99c1 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b3de2c5 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cd1e99f mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28323434 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e5294e2 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38a46ac2 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f997a0b mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fa5756e mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4824b2ed mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4849b7f8 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49eca953 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cebf70e mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d914d0d mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4df7f6a8 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57c300be mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e109d71 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x614d7a17 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62e86dd6 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fb6e865 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72147a71 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7552040b mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c1ae2ca mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8abe9f42 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b7f9372 mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x901fa03d mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x903d72b3 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98d2f4fa mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a9ef939 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2e060a6 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab237abe mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5793cd2 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb85ed67b mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb99d6af7 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba458a2e mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3ebf3ff mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5a208ce mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc8eb0a8 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcff78fbe mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9d38360 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdef665df mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3966ac2 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecb3a85f mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8cee0c4 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc683e02 mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcfa6686 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x23504430 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x58f7666b mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x63b66920 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x65971f46 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7ee89587 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc5ec5121 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe47a9e09 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe9630e4c mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x09e2a348 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0a062361 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x14f3936d mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3d9f5c1b mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3f124c20 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x93bca6d4 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9d9a72d0 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00ac59b6 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0232e737 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09892dcc mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ad7d598 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b17a921 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x157124c6 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16fe2436 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f4a6193 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x227b2f1c mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x299b0e39 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2db6456b mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x357d5b56 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3aeab781 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d7639d2 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43f1bc89 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46bc5d76 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x530e3d06 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5841f648 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bda1f7e mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ce6fb9b mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62568d70 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66c072e2 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x698b42f2 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fef3877 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72e5fc1b mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7710325d mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b1e282b mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b64d6c3 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ccc99ba mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dce4530 mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ff10653 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85b6372e mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88276f65 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a2c5b2b mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c2596b4 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8cc25e87 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x905f8674 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96ef7ec4 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a13ca6d mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4560291 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa909503a mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9264f3d mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa926f4b1 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf878cbe mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4583bbf mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc561f7a mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0123cd7 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc24466dd mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc79a96de mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9db1d22 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6f6548e mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7be8731 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9178e86 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdab320e2 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbe8e24b mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdec6b3b4 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe184f4a5 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe50700f2 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe73a167e mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9f615b5 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee52d4b1 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2f30d49 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf75c757c mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1ea06fa6 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x361e444b mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5da47dfb mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8761b9bb mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9bd6bb4f mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc4c339d0 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xca93735b mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x155a503b mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x221495a6 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x26990316 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33c5732c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x373c25b5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x380cc6f7 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ce57e34 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f9cc2f3 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e4a80ff mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x65eb74bf mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b255b8a mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7e134a32 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8392363d mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa3908c48 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa7e04098 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa830f7b5 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4efeeb6 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcef1245b mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd97c64ff mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3100bb24 qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4c68090f qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x51ebd0b1 qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7e6f977e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x88858864 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbfbd1300 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd8570e25 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdfe24ca9 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf2757ebd qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d7e8881 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x190e2ae1 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24272307 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2973c430 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b6958b6 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2eff0f1c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36873729 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3740afb0 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b91639d rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b99381e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x467132db rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48c2ce40 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a960462 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e77ca08 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x514a07c3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58881d50 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62b420be rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64db6aa7 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64e99285 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ed6238e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7332318a rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a096d40 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7eb0ab67 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x850339f0 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8575ed38 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d699255 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95265820 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9daab5d7 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa0710b14 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa340c62d rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9e6af4b rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa4c68b1 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb667e088 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7893f87 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc02f1b0f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd56e3619 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5e0843c rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe61a864d rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xece631a9 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedc4617e rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef5c14f6 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1963837 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1c7e8ef rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbb6d4be rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x146706b8 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x26429bb2 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3c29a6c9 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4ea30f56 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5ed5ae2c rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6ad9821b rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x71e9215c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83485ad1 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x89bf0093 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92b2d897 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x944b82da rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9e985c0 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd55a3125 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe2735e41 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe8ef2fe4 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe91fb6e0 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07d4b9a4 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08308508 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0dbab3f6 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13a2c835 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ba76f44 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c4de8e3 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a709933 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30374970 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35bd3868 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3685cc0f rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43f6d82b rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4bd31eba rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cad6918 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60643571 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61ab550a rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61be4a35 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64d3a3fe rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6bdaf4cc rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ff2cf1f rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72764aaf rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x734e2665 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x746bce73 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x752156c8 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d192e77 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87811cd8 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87b6629f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8833f2a7 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9060e6e6 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91d0d7d9 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92107e8e rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ab6c729 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa42af1f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae1179d5 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb120451a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3ab9164 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9535511 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbaf16e62 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc076167f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc68de704 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd397a142 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdea566d4 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe12c94fc rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe391a3b6 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea405734 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf849b217 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe15322d rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2f0f09fd rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5b3cfef3 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6aa652ab rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7821251f rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf745241f rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x094e3689 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x47eb4519 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x83573704 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x89540631 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x11bd4194 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x30a8afa1 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e889881 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4db5ba7e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4debf5aa rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f2cfcdd rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x86b0e1dc rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x86e5cdc9 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x882d0abc rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9067bfbc rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa7647f1c rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9fbf7d7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd39dc35c rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe6fd51c0 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb5684a9 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf45eed9b rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4df320db dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62f83515 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65c8bf18 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc8cdaf0 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05d978ba rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c671b35 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x12ee6c12 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1371cb95 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x15198786 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18194a11 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a6b3a2d rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2782031f rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bab5b52 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 0x4315f485 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x477397e4 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f989be5 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65a3fd9f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d16017b rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b6de19e rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x847b5c02 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90d2312e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0853768 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc881e178 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd5f8f41 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7a234f5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7d1c772 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde2081d1 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6dd8d2e rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfcce4dc6 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00c779ce read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05b1b71c rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ab6aefb rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22c61e9b rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25014403 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x277a2c30 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31634516 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a28b0ba 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 0x52fedb86 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5517c91d rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74fe13ac rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88407ed2 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9038a910 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98a631c3 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f20cdd9 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f9c768a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9070db3 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9b21be4 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe0eff81 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca8461a6 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1830560 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd768ee9b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc8282d1 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0105569 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0bac1aa rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x009e4c67 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x08b3766c 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 0x7c3ace7b rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe4cb8f1a rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe632594a rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x19a8d51c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1bbe67de cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6cce9ca5 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xce95ec32 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0b27b566 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x716f1371 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xed639a98 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 0x0b89bb56 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cbe91e7 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x152c8261 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1545cd23 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2eaa3cdd wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31fafeaa wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3734c393 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cddf39f wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e36314c wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ecd2791 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x424a1918 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f6a5c6b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51b3cfee wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x531d1f7e wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54500118 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55af2d80 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65361b7b wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x690a9143 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x772a41d6 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b556a20 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c65ca9e wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7dfb554e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f0270c5 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81148101 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89db032e wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x919345bf wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91dfe4d9 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x920e06f9 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93ebd379 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99ed63e3 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa610d618 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad720969 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca959e59 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce743ee6 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0d6d199 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4385c88 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7e6a169 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe134679a wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe53e3c24 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee77c495 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf55c608c wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf637f82e wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf79508a0 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x670fd9ca nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xacd923d0 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xef9db92c nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x47c4252d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8aea2e7d nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf8a05062 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfae9446f nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x79566ae6 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x973ffffc pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa1537e2d pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfc1307c2 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0eb5d323 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1d322355 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2bd6e9b8 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x61ddd7b2 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x67dc788f st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7a801067 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dc65762 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7cfdd90 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x38775a65 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x786017fb st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa2d645a9 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 0x97c1def7 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb6d64271 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 0xcd15b242 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 0x897abc46 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xb767a8e7 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06ead102 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c5e5b21 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x189c5ce6 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d4f299d nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2384f98a nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x264616d5 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x286e41d7 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31c20c1f nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x330bb436 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bbd1607 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a543abc nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54bfcf6d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54e01c75 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x703b3b15 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71934196 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7355ce4f nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78e6441c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b697203 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7dd8cf89 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82a194f1 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85b11f18 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x903b345b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97a902c2 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4a7efde nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7950003 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf95c811 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb21dad3d nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb63eeab4 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb95747fe nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd8a7749 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1e15f77 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc281075f nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2a9fc12 nvme_get_features +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 0xd613c472 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf4e555a nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4daa2a8 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec5ce4f9 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf07c1550 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x12c23f1c nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x13411de9 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x25c7d538 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x36ca3182 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x36fd2d76 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3d782272 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x449a8542 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d5bed5a nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x91bde839 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa415646a nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa5ffc2f7 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe04faee8 nvmf_get_address +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 0x82b4faad 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 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x20097ae2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x44179693 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x44e14c6b nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x529f2db6 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5ed7ad44 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x78cca822 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7af9ed79 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9e51613e nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb828f32e nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbd8aaa32 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe83d8d74 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1ed91f84 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x7bef1c62 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2a3af5fd intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x55ce64c8 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xd493a736 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xf23a2d1e intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x721c99da wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x90c71728 wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x9bc637f8 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x9dd6f171 wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xcadde5ec wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1e4860b6 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x6c2828a2 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xa710a56b dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xfcb18332 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-smbios 0xfdecb2e0 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x659f040f intel_pmc_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0x9bd9354b intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xa7f53967 intel_pmc_gcr_write +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xad38eacf intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc49eaee5 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xc845c71a intel_pmc_ipc_raw_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xd2a5d365 intel_pmc_gcr_read +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_pmc_ipc 0xdea07053 intel_pmc_ipc_simple_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xc4925188 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xcc7c9d40 isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x3d2a8587 telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x4cb51f18 telemetry_pltconfig_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +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 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x61ca31d9 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x649003c9 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb541579 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4d40dfb7 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x838f26ed bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe0af4c7b bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x050d7347 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x94b545c8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9a8dc1ec pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x195ae6f4 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x20b2d4ef rapl_add_platform_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x9654bfc9 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa4940254 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xda44d5c3 rapl_remove_platform_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1d0a1dc7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6ad2dca1 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x81e96841 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x86e4dbbb wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8babddac wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9e347feb wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdc1a2e35 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xde3152b5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf7f473bb wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x22e2c094 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x7665abaf qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f1436aa cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a085150 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26b6ed84 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27d6dc40 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f4688cd cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fe8ad18 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ab10e83 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3acf3b48 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3acfed14 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4560b9a8 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f8f7ba4 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50cef349 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x529499cf cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d8fd204 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fc52d07 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x647c33d7 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e228a53 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x720168f5 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77b4a17b cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a6e8caf cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x836e7b02 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86817532 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92a5d915 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x962d01fe cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3913bfa cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7356ca1 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb06c4e7a cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb65a0458 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb999ba5a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd5a8a3f cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbffacfba cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc9952e6 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd70de415 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd894466d cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb801143 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde7ded06 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7d8c60a cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe843be59 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9a9aa13 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9e12e3b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeeaa1ed2 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9d32579 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfea6f246 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffadd8e3 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0665487a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3795e061 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x38a3a200 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47de47d8 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ac9ec2e fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c1ab623 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f9927cf __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x55454772 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a88d8eb fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x703ad95a 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 0xca877311 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xced322db fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd071f5f4 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd8fa28c7 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xefd19506 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc945d81 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x37126e24 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9482adce fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0c7c6002 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cf9e29e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61eabfa8 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ff195b0 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc6125854 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd93b63bd iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe13e6489 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xc34ea0a4 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0064baef iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04492401 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a5683c2 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e0edbe4 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e223f6f iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20f986bb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25d7f4dd iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26d4a840 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35facc4a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x387ccde2 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cdac630 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bfa381d iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d844374 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50272cca iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55154195 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5555798d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57dece1f iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c818e56 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x612ab447 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x687faef6 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d3b1335 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88c0f2d6 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9280ccb1 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x935ebda7 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0e35e62 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6d0da60 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9f6eb1f __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad28405a iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae58ae2c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb342fdca iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb520cf36 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b04c21 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba42d787 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdc124ee iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc80ac455 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb047774 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdd64fd9 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4551fda iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5374b01 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6ab6b9c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeaf98810 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd6432af iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1bf24147 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e14d9f3 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b328dc5 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x512cd3f5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65e21e67 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66806334 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fee7ef9 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa58cccf8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc91650f8 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcbe73d5f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcc1da79b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xccb1b0c7 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcef4c02f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe43625fa iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeea61862 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9913fae iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfdeda871 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0776c72b sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1540f95a sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ed09d97 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30ba8eef sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4334b294 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c70cd05 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52f1debe sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65d2b79a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x787f0154 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c5377a0 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81b1bd09 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d2254a1 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e427a5c sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2f1db31 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0a10b15 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb34036da sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3afb18c sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbffa9c84 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3cf0591 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb59a7bc sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd9a0a50 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcdc51b99 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd302c064 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf3916a5 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3e2377f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0182f742 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x027a49b3 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x037caf51 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x040a288d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e5006b4 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14b9cee6 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15c5605c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b9b53d8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x355482cd iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dd38688 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4348659f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c01a4b5 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x551d85bb iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e94db51 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ed6a180 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61a0ce57 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b6bcfab iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ad5a304 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ce26e74 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7faa1750 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82fb606e iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83690e22 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d61a231 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95dd9112 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6311f77 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8542011 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab3e37f8 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5ce7c72 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7b42fea iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb95b5da5 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd9ca713 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xccc54767 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd37a7f9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd165efa6 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd660e141 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd791a28a iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9751b6d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdffd7e72 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe17d6a62 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6a697c3 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf90bbe8b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x449cf456 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x678dd408 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x69c12a9e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x91317cf0 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x500f3201 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 0x1e894152 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2a781168 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5cdf6b57 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaa8f4e75 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xae57df9d srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcffa9996 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2794fc1f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5fb88978 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7831bc56 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa1d13cef ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbf47e6af ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd392eb3a ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7b9ad92 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf4fd6627 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfdfeb562 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1e1c4e57 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1f2606f4 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2e79e0db ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4fb5e55a ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x67bdb199 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x888edc27 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe7939c49 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x13ab7c83 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1f89bd8e siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x330455a5 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcb604c2f __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd783e7c7 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf0445456 siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0377395f slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0d847ba5 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e464ce0 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x120ffb98 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1945baa5 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x220f3df1 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2712a895 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27c9397c slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2fdbc942 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40b582fc slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40c2c933 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4303aa98 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4cf3baa8 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e200319 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52440a1e slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6199a2e3 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83028607 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x88359024 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d2401b5 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc0a5dd42 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2009b39 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0d1d7cc slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf0326ccc __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf355c1af slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf61c22a3 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd853d9a slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa9773c5d __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xed3ecb6b sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfa42c9da sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xc54bd07e sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3d078f80 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x50952fda spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7565b96c spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe1f18275 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe4473820 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe4e2f420 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1f71c981 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x234abc8e dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x87b08844 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbfea1f5a dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe3213ff9 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3de407ff spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6f63111a spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf5b3e15f spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x08e80324 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11d618b9 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x240c66a1 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b239742 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x304bde79 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x456e6220 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56691f58 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b2d774e spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61ee4bfb spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7b48a7fe spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9004405c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x955c6668 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa030a366 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab236b43 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xac21aa23 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd59e3138 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe08bfe5f spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe7f70a99 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc1d5b4be ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1229d1e1 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x15d71631 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2849495e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d990a9e comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2e832cb6 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x39c02146 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43fcc1fb comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45e311ac comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x469688c1 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4723ebca comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x49f46cd3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f6ebf37 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x541afa89 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x633fcb0e __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6526b658 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ad6b66c comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x77395e8a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7775f5b4 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7c016f56 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x82a27eaf comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8861d016 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90686b69 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2c76285 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa63f42e5 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa89d72dc comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb3603ace comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc086fe93 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc4e209db comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd0cdd9eb comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd47f32f3 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd97d8238 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdaaa3edf comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea3188ec comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec0671a2 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf874d18e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfae1522d comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2bf07d6a comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2c8fdc3a comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x37d4689b comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc555b723 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcd11f951 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xeb0c5a5f comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfa2ac8b1 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfc46f092 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2c2a0aa6 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x69ab53b8 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x69b5d772 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa0dc9893 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbda51c86 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf3e1ee09 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf6e16d9c comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x071f4683 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x717f9ee2 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x767744c1 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x78859e86 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa2e233da comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf9851504 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x5f8680ef addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x024cff63 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xddbfe902 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x1b2e2653 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x190a8cb1 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1db65d22 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x31a96726 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x42074435 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x430fbf89 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x516f102a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x59c5a812 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x89ce85f2 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb397e22f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb964d677 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xca308c7a comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd991a45c comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf3dd677e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8517606b subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xa896a633 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb7619b41 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x07854074 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x3336b53b comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xc127dede comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9e41eef6 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x317d7d7a mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41576930 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4a082017 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x63352ad3 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x65289d95 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x659bcf82 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83a61629 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x87e67e35 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8dd26884 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb2b9688d mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc803a329 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcebbfb7 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf44decf5 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf48733ab mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc1a3d0d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfe6897ef mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc5c42ef0 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf918ff13 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x69c73540 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb83d233e labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbc21d880 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc9b1c5b2 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc9d73e15 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x09a0e4de ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0e47283e ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2326fa37 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2ebcbdb7 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3180c89d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3a1b21b1 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4093440e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4563941b ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x725cff5c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x84c16d55 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8acd072f ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x917944b0 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa9d38ca2 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc73dfa18 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xef39b5d3 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xefe6e08e ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x07fde7c5 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x09e90aec ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0eab8419 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2a1a68ba ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3c7c84b5 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4e39e04e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5e910875 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x626064c4 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7da298cb comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa8a5c2b9 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb2b2b3e0 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xce90d4dd comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdf0a3153 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x606e481f fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x77bf8619 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb5d1a36b fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe6514ca2 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05a27028 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x15387b0d gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3e2a3d1b gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4d428e9a gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x51ec2246 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x536edde1 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64327acc gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x99c7c601 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa904f1d9 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xac199e8b gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xac9cdc47 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xedff2c8d gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf857cce5 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x15faa54f gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1d9a1697 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x25de05e4 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x56f52d4f gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x602b0539 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x78511950 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8af4849c gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa0d6040c gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaeb1b3b4 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5a8d4eb gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdecdc0d1 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe5e9962d gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7459732 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 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 0x944132ea 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 0xe88d2704 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x23c8d0f1 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7e3e276d gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xa21bbb72 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd6b8e9fc gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5784d00b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x149518da gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x175c88fe gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1ceb5353 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x30b7aeec gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3f1cfc44 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x62e52a54 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x669fa61b gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x730b355a gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x79ab7c17 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7fcce0de gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x883b6977 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x96fb6fba gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9825d23e gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd7702dec gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xdea290ed gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe9acaafe gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe9f91171 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x050319a1 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0567173f most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1ebc8881 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1fa5aeb6 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x474696f8 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x48c70ae7 most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x5912d3c4 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6939034b most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x72878c8c most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x78768229 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc3f358b6 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xcebc474a channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xdb3a7013 most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf9d37b7d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0d465199 spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2474d3bd synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7f1db5fc synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x87c8e487 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x903af808 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa3abdbf7 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa4a1130e spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaf5c0f7f spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb30b90af spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb3c31222 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb6e5f4f2 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbd32580c spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcee26c88 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcf11bce4 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd00e9b01 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe9ec5eef spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfee6521b spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x860e1c1b i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xc50be9bd i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xd5f35ac1 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x0aa503be umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x0c38c963 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x6df2ceeb __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x6f5e5517 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x8736fcd0 umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x96d48a1a umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xbaf42a95 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xe0c3a45e umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x011ffb76 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x050ae23c uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0529292a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x056ab85f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0dd3d436 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x159c26b3 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1abddeb7 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1b25a70a uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1e213fe4 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x244317f6 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x299ba181 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x309eed7a uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x386a221c uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x39a5a8fd uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x42518db8 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x47a7e838 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4ce00545 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x52befe51 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x53c4fe7b uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x59c1fa28 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5dadda94 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6b5039c7 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7d1cad2a uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8b5abcbe uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8da73553 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9062da3a uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xaf8d36d8 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xafebc676 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc4602129 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc5e3435e uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcb0ae100 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcd9371ff uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcdeaaa6f uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf0226b4f uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf91e0b3c uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfb099618 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfcd21476 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0xdebbac6c whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x08b9b849 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x5fb9efc7 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x61e97fd0 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb4ca31a7 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb6996da1 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd3a6d03a chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd3d29702 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x0261c629 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x9e631d5e rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xbfb6dd8f wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc7b74fa7 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xdbac6129 wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xe6fe67fc __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xeed6d832 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x176ddcb6 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2110bd5c wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2c4bba8f wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3569715a __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x42f2d146 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x67d09bd6 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6a8666d5 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x70649220 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x84abb319 wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x9807cd13 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa8287ca9 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xb6b9dd2a wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xfc270b1a wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xff11ee76 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x0d3bed18 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x87dace51 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xef3a1225 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x0b2b223c intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x4b611342 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x9365ecd3 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x9f499190 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ad4dcd8 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0bf0ff2c tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x148d1433 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23d54dc8 tb_service_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 0x52f0a712 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x58522e5d tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5e3a59b3 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64dd9855 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x68c76e03 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x700c67ad tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x84304872 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9bb1b10d tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3eab123 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb23c1e6b tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb9b029e6 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd8aa7fd tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc4def6e tb_ring_poll_complete +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 0xffc97a9c tb_ring_start +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3c1a0901 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x49923405 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x585b8582 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x319fd070 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x90027338 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0fde9860 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe0f7c96d ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfea06ba7 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3dfee455 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x48f1477c ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x555fdd43 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x79bfecf1 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc702379d ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf5b98b57 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0010ae1c g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x269cbf92 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb22dbff3 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd7b4cf33 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf5d1f7ef u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf9d38ffa u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22d7da4e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x301ca67f gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x47136c71 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b4918b1 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x697952ec gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76d93f69 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fe3d4d7 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a1d11b6 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaae096e6 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6fbd233 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcaa62c30 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc8d473f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcd925e32 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfa931c4e gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffc1547f gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7377567e gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa1532b70 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbe9964ce gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xcf81991f ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xed10aa4d ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x094af2b4 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0a484416 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0acd787f fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x186af069 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 0x2569ee6d fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2cba6744 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x30ad1576 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64b918f3 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 0x6ae0eed9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x984ef6cd fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9c474236 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xd163fc97 fsg_store_ro +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 0xd2186a77 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf6a1b904 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe9a7ef7 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff85a6c5 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xff9f357b fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f1aec4a rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19aa6d09 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19ba82d1 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4087f570 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4b5c7d88 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x511bacd8 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x51926a23 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60e57af1 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x67b6d3ee rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x67f9ace9 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x697517ce rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6e50109c rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8a875b22 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb440f603 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe0918858 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02682337 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0fcfdce8 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ff28b05 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21dfa920 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25cf38dd usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ac9017d usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d07ee25 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51d2af91 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x626cff6b usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6837f087 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a9f20d1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b79fba6 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e9352eb config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x884dfc59 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cee3b15 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d5bd872 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa219debb usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3b092c2 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3b154f6 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6684c0e usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xacc97ac1 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce55a317 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1354575 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6c4a63c usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe125e2ff usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe50cdb4a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeab355c0 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed591e41 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3195456 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8c24c1e usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc1fb419 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x02d1eb01 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0738ac9a udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1ccc08f4 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5940a96e 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 0x8d2dc589 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd0d86b39 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd4aa5443 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd4e01c64 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd8766922 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cb5e74c usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x116df96a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11fae2d1 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x194551a1 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28f44577 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34dc345e usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x415b93b8 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41cc2ef0 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x474be6d1 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5cec552d usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f4231f3 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x606457fb usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x652d3051 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93e40ade gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa727450b usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabf30166 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb86d41c1 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc273c4e usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbdf0ccbd usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbf6b124d usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc718798f usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb336871 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0d75cbc usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0feccf9 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf17d8264 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x57531764 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd6daa094 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x075f2e55 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0ba3f069 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0fe6beed ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c06e491 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ee713c8 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xab69e0c8 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7e76775 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc698654e usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe11f35f2 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2c67a737 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcebf0d77 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe302f6d0 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe5cab630 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4e6ef4cf usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x84fa05a5 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa889f1b5 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb33b4334 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe9c30327 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6ca67731 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x604052dd usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x86e75202 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xe13e4223 usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xce4993d2 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x275e11a0 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31213355 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x447951d3 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b030fb2 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bee91d8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55ef1676 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5742c244 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ad6190d usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f479a9e usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f43ec81 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb120049a usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4760caf usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4f8d402 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb9aae908 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbeee983c usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcfdd7db7 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe2220c73 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4475c03 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7799a3c usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xed792a9b usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc81889c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1a5b9bcf dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc9093b15 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x5d945220 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x0524616c 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/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ae85eb8 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x100cf8de typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11ca482f typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x14ce6b55 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2124007a typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26660a83 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3686f65a typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40605b83 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48a50603 typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x582eff58 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60ba2a08 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x646669db typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69ed67d8 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x722afbac typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b803902 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c755440 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80ab0bd6 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8c7f1217 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x930dc3af typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9be3f414 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6942ea7 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaee00e04 typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba3342a9 typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbca8431a typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfe43ac0 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc42867d9 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3dc3b7f typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda18f2f6 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe707dbe4 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe742cd1a typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb0f1821 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb83d972 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2b347f8d ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x849633f3 ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x906acd04 ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x92a62aa4 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xef456b79 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a1b1406 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0d2f680e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x133599d9 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16397c2f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x273d089d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2889471e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ecef971 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x625029b9 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7345bdf6 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab880f2f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xae4e90e0 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xec6e23c9 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbb4b4ed usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xc49b809f mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03aeb00a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04380669 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ad8d8ff vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b37244f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11109631 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24a11b7e vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e6dcf7d vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x422a1b91 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45a54606 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x465d08ef vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4693a359 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49b854b9 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x538cbaf7 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x590cd245 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e9eef85 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f4fa92e vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x694dc972 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x69fd0ea0 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x719d4160 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7890f216 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7eabca32 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84b6d7d0 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f41576e vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95430acb vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9dcc5f0d vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5355661 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa179b82 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac6e2e86 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad2c14c3 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1fe4e5d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb410a65c vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5041873 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb550f8f3 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2acd4aa vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7a1dc6b vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd86b0df5 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5f3bb01 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf72368d1 vhost_new_msg +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 0x479b0bed ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x62f40c74 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a6b26ab ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a4ab10d ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7540a39 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcbcf6e98 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf3072113 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x7d1b515e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xac5d72b5 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbb8fd4bd fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x91da3e5f sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc2ff8352 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x5a0b529a viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x21436db5 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x533f2963 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x57cb6d26 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x7a70dc8f visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x80cc22ea visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xac0d4fe5 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/w1/wire 0x06d5b488 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x336fbdb3 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x75e4d6c0 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c17dc02 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8f85ff06 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9b232a7f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xae51855b w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb97f45fb w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc5b2ca26 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcaa94d85 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf7b63213 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x14ce5306 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x49594c62 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4eb088c6 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x99f498fa xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc5a3a756 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x0aee9c76 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x2e9dc190 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0273b11d dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7e17fe7d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe55f38b3 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0884590c nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1e153679 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x352bc6e0 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x45e53c49 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6ff755d0 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe21551bc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf02db3f7 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00155f8d nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e4c5e8 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0133785a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x029c8c6a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x060008b2 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06338a00 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06c865cb nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0725a941 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c2afff1 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c82580f nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d61a370 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0da9e2c0 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2b43d0 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x151d4632 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x177a0e5d nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199099f0 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19b03668 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d02466f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fadd98b nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fe329c5 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2053437c nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21337ccb get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2140b7ea nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244a904d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25bb1800 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29866637 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a9e6220 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f440754 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34857c25 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365d4b19 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3775220d nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39eab537 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a859586 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d127edc nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f000bf5 nfs_fs_type +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 0x4110bbbb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4170f673 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423a2b94 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4521dd34 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45de0824 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47c63414 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x493f5b6c nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49425649 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ac8e9c3 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad44694 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fac6a8f nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x503bf41e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5512654d nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57677990 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a761ca3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a87d6d9 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be9e77e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60514180 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612bd904 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61ae2b39 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62455805 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x637e1e20 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6556c00e nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x658d8fce nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6868732c nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d03e86 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694d9c85 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6afcc5e5 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b0a1860 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c19ec5c nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71416011 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x733d1521 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c93d99f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f0ceab1 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80eeaecf nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82aa7a63 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b9d381 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84c58202 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88b256fa unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4dd546 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a61381a nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b297a70 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc934e1 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e936e09 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91c8a70c nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c1d807 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95010f4e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95dd5494 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9631d5ff nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9676f0d5 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a2a83f7 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bf4ff80 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fdaca50 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9feb8c38 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09f4ba9 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4146b6d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6965a44 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaad18154 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacad0a7f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada37f79 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3b07374 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb62f218c nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7de35df put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c69fe2 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc53ac51b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8cf1b87 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc35cbb2 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc478861 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd9d7ab7 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd37e3f64 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd55eac68 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5aa9e54 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7777beb nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89024f8 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda99ccc1 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb2641c1 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd213732 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe352b174 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8bc869f nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec72bbe3 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed42a320 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee15106b nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee425487 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeb38035 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeff37aaf nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0ecaac6 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf21073da nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2689b41 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30ecc1c nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46a8eb2 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf681da9f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb8d00be nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe2040a nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff969827 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8a6c4c9d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08894d7c nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a4f73be pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1279ab1a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x147463fe pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x203b717e pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x263de967 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ac220e2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e0e5722 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31eeca49 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37ffbc59 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fd66666 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4012edf7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44117887 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x444d33d8 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5127be14 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51fe1052 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5546fb6d nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x639ecc21 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d61220 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6670c8ce pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d3cbad3 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f0f8e6b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83bbec81 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84d2c4a4 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c6281c4 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a02e203 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a703bc7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa535a7 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9abd9335 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cd4f9ea nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ea15e88 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ea55eda pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa3e91c7 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabe2a4cc pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xade51f9e nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae4ea75e pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf7d91dc pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0bc0fbc nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb44b96e2 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb99e7390 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf9cc33e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34641f8 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ec53ce nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4f9b6b9 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd023d72d pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd100f2ef nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1403786 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd173b296 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd865e846 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb595ab1 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd269c47 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde2d6729 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2cd7d4d nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe332730f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a59584 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefd97b21 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf150892a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf39dbd0c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf85cd8cd nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x23b55362 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x83cd29c8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc843290d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7edd010e nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf46be677 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1f2df20b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6aa3a5ff o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7ec04cc2 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8cd8e622 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaaf5ef5f o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcf0d4ab9 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd0956d66 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/dlm/ocfs2_dlm 0x23377da9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3851bb8e dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x53efaf7e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x924e9846 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 0xde3ad711 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfdcf98ea dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6f698cb0 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x93ecfe4a ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x94e4f5b1 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa25e7250 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x470b962c _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x85fd5328 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL kernel/torture 0xfc2e3e08 torture_shuffle_task_register +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 0x441f57ff free_bch +EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x72969328 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x861250cb notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x98db9ffd lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf87802ea lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x4b770b1a garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x914c944a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x92aef26f garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x947c2c1c garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdccc128f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf0668910 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1a5a4851 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7113914e mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x98c66a04 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa7fe0b1e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa9751489 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xf9f95e50 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x5a344095 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xac08dd4c stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x392811a6 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x604dec16 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 0x14951db0 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 0x03d49afa l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x40008c5f l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x60420c2b bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa76a140a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab344722 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xce742d26 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe1859892 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf1ed5719 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xfa38df93 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00d27fe1 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x01d6eb3b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x028e4ede br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x05aa1331 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2325b6e4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c62628b br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x33873b78 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x72d3b6f8 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x73300653 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x788a330b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb87e39fd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbd6f220b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc08624a8 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc2b42313 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc32ce010 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd609e887 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6ede5ab br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6a7ad90 br_fdb_find_port +EXPORT_SYMBOL_GPL net/core/failover 0x036f76b1 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x078abb56 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xa9be6a59 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a49be18 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0eb72590 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b9f937e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a419a08 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cf6fec2 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44783233 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46561cde dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d804b1e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f362d7e dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55942968 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5756f865 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d2281c2 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63ba3281 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71e873cb dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x749aeb6e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b1ebc1e compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c56a153 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81ac5aad dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ed0f513 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d9553e4 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0f5f601 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4399bf0 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4e215ef dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbead1926 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf9ea1e6 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2a13bc3 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7c913f3 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9aa7b43 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda01bd37 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe16c6f7c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4746e25 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xebab04ff dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0d9ba81 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x44079c3f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6dd88165 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86345109 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb530d52c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf67fbc30 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xff93a194 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x020e88ab dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07414356 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x089b2f77 dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1577b794 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e6a4fb6 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fcc454c dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x450b9c03 dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ed4ddd7 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c0e78f7 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x856c7712 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93d5a5a3 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb140a822 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5e41c81 dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0b33ce2 call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2e17af8 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc60c251f dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd083a249 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe865d33e dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0232adf dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf93014b4 dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd745321 dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x35df26ad dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x4415c551 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xae3f2b9e dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xdcd4ee25 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0c2daab6 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x37dc521e ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8b2a03cc ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc3bd9b0e ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7d2306da ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xcc20e64c ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1f153cf1 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x30a9bbed esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa7310ee4 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x306f3011 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x877ffb8c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08cb5d86 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x197c9393 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e51adb6 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e8487c3 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5005e827 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x52f7ecf9 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x55746b85 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xadf55683 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdc5fcefa inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb51b81df gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0cf49fb9 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11432e95 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3122479e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3f07703c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f62ac09 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5943f474 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a11b79e ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d8222a8 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9c645819 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4c87ad4 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbc2ca9af ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8258577 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca9e41ec ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda75ed51 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf401ab29 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf562fa14 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa1017d4e arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xcbf799f0 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc84f2da4 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0b5db8d8 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x730b692e nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86c3a559 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa943ee20 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad98f88e nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb09fa5f7 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe5eda237 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9afcdb64 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb3d8a330 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe28fec53 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x677ad85b nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8307e134 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3c4a8d5f tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5e8f813b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6e49701c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa65b75e8 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc3d95f89 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a781cd9 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x20f9b4bd udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2937ade6 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x473bae9d udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x52c2f7ca setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x535894dd udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa849066f udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd5d5c33c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x587e06f4 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5d40df5a esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7b16b1a2 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0340f23e ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6a32f852 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc9e0e1ac ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x55262a01 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x87d93eb5 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe6b6edc4 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x06014187 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x361ee38e nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x26ed6bad nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x132dd2a7 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1d171969 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1e801efa nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x587538d6 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8e0a59cb nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x628a035e nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0959efea nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x78db12b6 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8c408360 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x2f71ec42 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd501c988 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15e85ad2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23b4510f l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x268a3ddd l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d33e758 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x41da8659 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4313245d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d2cd778 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76e5dd9a l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b344b80 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4f55d67 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7a64112 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa9ffa684 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb667f523 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc319729e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd993de4b l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdfe3d832 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5143ead l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x61fce2c1 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fd805cc ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12b04927 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b71ba17 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2469508b wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29949363 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b668547 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3c0b7531 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5dccd2c7 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e9ede49 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x705d335e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89a11db4 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5f8efd0 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdba24277 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0705a5c ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2fed780 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa3e31b5 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x053161fc mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x53594361 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x86b7ecdb mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9165e343 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd49ac1b8 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x118066d9 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f390cec ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x57f58404 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 0x80b93ddb ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ad3f75c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ed88437 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x945cbb04 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fe3eced ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa91e8be2 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaeb80b29 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc8641142 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd70ba516 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed2e4180 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xedbe98b6 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1f2855e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf297d72c ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b1326d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf91e2523 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x70d31bf8 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x92cf0dcf unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x972a21f4 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb73e3f12 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x27b5d1e8 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x517f5e66 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6457e09d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x846bcfe6 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe57cdb91 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0215abfb __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0328c7a3 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04a5d88f nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x086f6f55 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e805a68 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x145cab76 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16548a85 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x179ef425 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d237685 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f033932 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2037ce99 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2836f845 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c5a9536 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x341b5f52 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3523fe7c nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bccba48 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c57a3e4 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ca31f91 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43097a41 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x441109f4 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4894afc4 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bfe3597 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c3806f1 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ca752c7 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50d05e91 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x554dbb55 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59839644 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d082ef3 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f3d96a5 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x656f0211 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x694437ae nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6aafd3d2 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d755946 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5e340d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x704c528e nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73e6406a nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75433882 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b2381d4 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c7c187c nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x813eea87 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x825a4aee nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89c1aafe nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c13af0b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x936856c0 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b0da7a0 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0536946 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa86f42bd nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa964869c __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab5eadb7 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab88a1e5 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae2c191a nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf9b106d nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0c62109 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6133450 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd328769 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe153143 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc181a65f nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18c15c8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2311c5d nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2a6b3cc nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4b701cd __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9e1a7d0 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb49edfc nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd88fa0a nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde4a47f9 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfa06c91 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1a1e032 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe23f1840 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6a1a471 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe858030f nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe985abcf nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea96ee2d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec407ba6 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee3e10e8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee896f5c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf43c407c nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8a3fcfa nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb5cbc24 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbe5f9b4 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc001597 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffac58d1 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc1bf3584 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x350c87d8 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x25574638 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c3f6fc9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x212782ac nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3e70dc28 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57afb994 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x627a7a00 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0a4fb7c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb82592be nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca002bfe nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca24af27 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf8fb0ce8 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x41512bcc nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1f80a1e8 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5edfa3ea nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6b179b80 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeb84ad36 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1bb7f825 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5f200eaa ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x76ccbc93 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x89fb08a7 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf5a442b ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdc65a4a6 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7487ce4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x72f26f89 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5f6b180a nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4629e55b nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xdd7a0f6f nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe4347fd6 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2028b6b2 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x314890b9 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4c292098 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5918dcfe nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5dee5a2e flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7a175775 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7daf07ac nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbea59d7a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc76427b7 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xded8920b nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1939202 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf531d584 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x115ae246 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x54e5b6ec nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x5b031f6f nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7e7cb39e nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe01b0103 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf052bdc0 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03b60e14 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x066c3023 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10ed8895 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bd0d7a5 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4098b9dd nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4693b029 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x509a5bdd nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f92a220 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x61e9b63d nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8eff102c nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x956f2666 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xae7a9497 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb9d55432 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdaf7bec4 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe971f580 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2ef12d6 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 0x2ce59dfa synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x489a0156 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c622bd1 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71d39834 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x73b15fc0 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7ebae737 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9120a3cf nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbbfdf2a6 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbc91102a nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd5334bf2 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd7beb83 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c3aa6bd nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1aee24b0 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c38e440 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2befb527 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38dbe043 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x582ac142 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b600be5 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5eac3971 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68b211d6 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x733def5f nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84824198 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85ab8740 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87e05f9d nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x892bba62 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9005372e nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x937a589d nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x948a2cea nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a2160a1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b8ff683 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c8f48d7 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb02dfaa6 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1c228de nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba112c8b nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0338721 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc07af522 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc496d27f nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xceb26de1 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7b877d0 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb14f23a nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbfcbeb8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdce219e3 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf2b538e nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8dc6df7 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf111e24f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6a72029 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7c273abc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8d3afa29 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc194b851 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc9bf9239 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcae91f48 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xff9fcdae nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x27da8e1c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8d330ee0 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf2bdde7e nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x305a437f nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xdcc70b7e nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2b81c8a2 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c064f25 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x76c1c8d9 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd8077864 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbc0ba275 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc81cda9a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2e837f3 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x06132f75 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a42c4e4 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4149a147 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x463905ae xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x468d1526 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4fec1c01 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x50cf3eff xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x568faeec xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56aa82ea xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69ad58e9 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f37a3bf xt_compat_match_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 0x86d83b96 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88492dec xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x894e1c00 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x908efe29 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9474c4b0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbeea3230 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc401d6c9 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc77bfd97 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd02744ef xt_request_find_table_lock +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 0xed5a2ea0 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3c30003d xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa4eec994 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5f5483ea nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x91dc13b7 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc2f167f0 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x177aeb98 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1f116667 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9f117efd nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x025b38fe nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x25403b8f nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x451ad00f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x68e7dedc ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x978683dd ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xac666beb ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc7dae130 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc9000a4f ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x6e3c5898 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x97b1074d psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x9f7e5716 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xce1b78da psample_sample_packet +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x08c1991f rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x130f7c14 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x1a654102 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2153c77b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2dd27f34 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x310f0a77 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x372a29db rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x3a37019f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3a8d01bd rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x42c6f295 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x43ae5c79 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x545a378d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5a3f4e27 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x86ca308e rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8726ba7f rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x89a9adcc rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xa3de4f35 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xa5a9aed8 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xba8577b1 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xbb158e8b rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xbce32ce5 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf17ef05 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xde61be8e rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xdf9d269b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe7efbfc7 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xee83aaa2 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xf1eb86ab rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf417330a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3a80e2bb sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4aed17e8 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6643ebda sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x851cdf90 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x1241b052 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x217d26ee smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2f7a4bd1 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x3f0482e4 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x6091e2c6 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x8bd50499 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xba5e8b65 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc0c1a041 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xd5183416 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xf4efca34 smc_proto6 +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1d58036e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2890d07e 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 0x652bf679 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd1dec47f svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01aa5905 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f4a431 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a70cd3 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c3d495 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f9a697 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06384cc5 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c1232f svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0860c8b0 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08d9af78 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0915f96c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0287d9 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b501def xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f711e0d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f846313 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11909c0d rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1321d464 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151be64c xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ba5208 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16fa425b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x199d7362 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c4b494c rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd0ffcb xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd747f4 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cf0feff rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1fac18 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d0bf25 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x236c93c9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2391bf70 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2556662b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2714a1ba rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275e7df0 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27fa3e12 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281259c7 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299d84b9 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c364df4 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ccc550b svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db47aa6 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6a85f5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6bc348 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ea48426 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f777bb7 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x308c2dd5 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f330e4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a0eba5 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33bcd4f1 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3698ae73 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373d7067 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37928241 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6e651e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be5d96a svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d647a59 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e719418 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41acd7af rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4241ae57 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c8ac8d xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x444ccbfb rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4485acaf rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a64871f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b115d12 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b217a79 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c650ce3 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d082254 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d87a718 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dda9867 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb62759 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5080e26b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c9bca7 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522323e9 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ac11fb rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56aeabcb xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa060a2 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1ca88b xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b48047a rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bffa8ab xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d141bf2 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e088182 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e928024 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6090727f rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d7311a rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63bd912f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6558e69d auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658a8ba1 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b27e63 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67eabac9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c32ecb rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ef5b40 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69682450 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c632e1 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a381825 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6afa59e6 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b73b7fe svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c180f63 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e79768b xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e7d3849 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71489b02 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x715f3b87 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71667ba6 xdr_stream_decode_opaque_dup +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 0x71fb5d0f rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72198340 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d9a783 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e3b8cb rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735c48f1 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7431afcb xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75096cef cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76dc9bd0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab42683 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b690947 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7baeb3d7 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea1958c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc02637 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d0d41f xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81270bc6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x847b88d1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84954f31 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8692a4cb rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8830131f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c6b9bb xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6d2130 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed14bef xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd8125f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff4ba86 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90c1f334 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929a4152 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bafea5 svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x932b69ae rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9340e869 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x954c021f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958334df rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a8234b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a624fb2 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ad3e00c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cda193c rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f35b6cf xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f35e44e cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa582a661 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8198a23 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82c2bc8 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8348119 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8da70c5 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a2b980 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa07d715 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd7eefc xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae4593cf svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae503968 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea97383 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0832c85 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb21e3d46 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28006b8 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a83a6f rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38161a8 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8eaa363 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb994b236 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3147db svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb2ab3c2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd591ff rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc0c30da svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcaf6976 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5b84a4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde05a63 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe20ad08 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe4ac47c cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf12070f svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08cb460 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc210abf9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc30f7c00 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc31f7760 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc35fc549 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3cd1308 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d0b3ac rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc43c7fe4 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc841a2fb rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b64bcd rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98c7ea7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac95008 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbbcaa2c rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbf1f3d2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc15b3d1 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0411f8 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1ed59b rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce90193a svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf456a54 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0afdccf svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12d3a29 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3306ab1 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39e0b47 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4df2600 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5123841 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd77878b1 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88277e4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9583938 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd971fc34 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbae97af svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda246be svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf600753 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05dd3fb cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a019d4 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1d1149c svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe54c0b4c rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe662352b rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e2aa9a rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90de707 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec1e7cac xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee11f023 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee23a2d7 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2563c7 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee7f7ec0 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef70a8f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf069927c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0885f46 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0a134e6 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf395bc5e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5e4b984 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf77418fd xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf898c158 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfacf0e5e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfae6793b rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc700fb rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdeb037 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2ba08e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe39948f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb861be svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/tls/tls 0x660f0c05 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x8765571b 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 0x0970d7fb virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a467f2d virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b91d877 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cb61b8c virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d850035 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fa09473 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1258e652 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x179c65fe virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c771464 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1deb8f59 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a80416b virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31f80d5a virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x327a19d2 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x469eec5f virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46ed0688 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ec031a5 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x51a4fab8 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5470aefa virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6fe51fcc virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75c0781d virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d3b9d5b virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99fae9c3 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9aca7381 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa096b628 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4b3e61f virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb15ea8c7 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5c50adb virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6e8132d virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbdc19032 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca9fff9e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5b59f81 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6ee9c5e virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeec2f55c virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0a16c4f virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2f4e4ee virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfbf31ed8 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ee49ccf vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x273b920d vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bff3159 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37a231c5 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49bacf83 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5ab326ab __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6897d811 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b25b279 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8f00c326 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9663ff9d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x98541db0 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2c5b017 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa60f4129 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd50f8cef vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6a7be5e vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb6ebc14 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9e58b9d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfedf9ee9 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x10b2745b wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x168c49f8 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x29fc20db wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3d0c99da wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4fdcda0d wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c97d1fe wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa0fc2aeb wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb55d1ab8 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd2f437cb wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xda1b8462 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe0d1ced4 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe52e70c8 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfd6b1c42 wimax_msg_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x103c6f57 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3a19591a cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52001211 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6dae8eac cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x71a1dfdd cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7a065815 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9527109f cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x98abdb78 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa25dfbc5 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xadfadd11 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb34baa29 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce4f6526 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdcefeb12 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdcfcaeee cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe2854283 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf11be10c 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 0x11ac206f ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x193fdc07 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa0beff00 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe25f0133 ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x0196ebf4 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 0x09942570 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x104c802f snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x184766e3 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x26480886 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL sound/core/snd 0x566d6a7d snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x6836a32a snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x7278e9ce snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x77f049de snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x7b3833f7 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x869b9b96 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb6368528 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xc27c2b50 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x16d0ecdf snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2b3a0ff3 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc931aca1 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xcc604da5 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 0x1efbfba4 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54c8e29e snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5ae02cb3 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6620e4d3 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x749440d1 snd_pcm_stop_xrun +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 0xafbbfcaf _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbb593ff5 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbefea690 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa5ce53e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfe33363a snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x17905e0b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x19a8b291 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1db9c348 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2851a256 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x40417645 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9bda1187 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa84038af snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb157cbce snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcb021b62 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd0366f0e snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xef125c66 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x6f9c8b62 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbc30d1f1 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x27f47b0f amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5ca184c5 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9c7754a4 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbcafb237 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9bd8640 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd9bb182c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf43e0f42 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x003c11ab snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x058bf450 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07bae5fe snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0c79e00c snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11f5c316 snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1bfd9213 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cf7d9fd snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x203734ec snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2576fef2 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2af462ac snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c89cca5 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x306c7bc2 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3310f5d7 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38da0d9a snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46c18c4e snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60afe69c snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ed4813c snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6f9849b4 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71d1e585 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x801994ff snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x848b6352 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8e9bbfa5 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9c053424 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9cb7916a snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9e2e279f snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa405632f snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa6bd730d snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7c7a618 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xad3b5b53 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb5f993e7 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6e3f6be snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb99603f5 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba80afa4 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb518595 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xccd8f949 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcee63f39 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe8203346 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4c1e4ae snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10c5980b snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11cdba78 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1381440e snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x144082e9 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18b77e0f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c865a68 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e7e171c snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2147625b snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x256902c7 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28bb9416 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b573111 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b5f8676 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bf673be snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cd57267 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x302f2a85 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x319f4e44 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x336e8c17 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35135361 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ac2c472 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c4bd5ae snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e70ba46 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45ecf61f snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4640dbcc snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c02fe24 snd_hdac_bus_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 0x5155b9a5 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52ff51e0 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5548498e snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x592b8888 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ac01320 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d73a4d7 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a7590d snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65c0265b snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67db0711 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69372ee9 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c7fe374 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ec0c593 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71395ba9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71d8f02b snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7602808e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x771ca0e1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79ebefc3 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c2dd9d2 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fb8115d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x824f9046 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x850e5cb8 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x856e5158 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8593d865 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96b3bea3 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bd9d573 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d7421f7 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e24063b snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa004a88e snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3726996 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa41f9219 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab9258ad snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac1de45d snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaedad2e5 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf60d70f snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb447e1f2 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7a0f587 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdfad7a6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe038e82 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc344b4e2 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1b84599 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda7a0470 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdadc4e18 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdce3c935 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd864917 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf36a80c snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4b28159 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4f4f1d9 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecf46c2e snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed6e6bee snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0312d16 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1406763 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf239b7f0 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3341255 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4d71235 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf52e461e snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7b8627c snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa6f4e76 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa999699 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc1e2bc2 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffe06030 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4fb27709 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x872b7e63 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9e1798dd intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x277f332b snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x44e60ba2 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7d9761aa snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa0af01f1 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xba22ef85 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd45772fd snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x002c8f97 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01a9d538 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02c4ac6e snd_hda_codec_load_dsp_prepare +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 0x06ff9dd6 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09303667 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09c602ab hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb9db5d snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f269322 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x116a97b7 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a6bf14 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e0dddd snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1598dbef snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18548ccd snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1de2bab9 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e2a08b4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21b3d740 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21dd9d94 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x234e1c5f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2681aa56 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26821ace snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x276b5621 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x282a2105 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a49c8d4 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bd23855 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2da08c56 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e3a56fe snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e8031a7 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f1a114a azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x301ca865 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3025d352 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3560aee1 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3788de57 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3be15c9f _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ead0a21 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f061d99 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f481146 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4372ae09 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44be91ef snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44e69a7a snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46c8499f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49eb23e3 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c975ec9 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eeeeda4 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x516e49b2 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5349ad48 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5914d8a3 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5934f830 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a0c2c21 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ec77ac6 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x605e167b snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60df1556 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6214fdb8 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6354a89d snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64b52722 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689d42c9 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c9deb29 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e0e5a7e __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71e43245 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7390bf9d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7626e18e snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7923a92c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a46d5c7 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e1f8973 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f922cc6 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d38202 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x895b58bf snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a98eeb2 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cadd874 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ccbd434 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8ee267 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9027959d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90bba7fa azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90d1a16c snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x911d7e91 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9314afde snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97f96c9b snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98e2a4ce __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c5bce02 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2ea9119 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5cc1476 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa67d8e28 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac2ab501 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaca7b3cf azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb14a6b29 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb24aadc5 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26639e2 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3a681e0 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3c24542 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4d2bc46 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5351425 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7d537b4 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb921e3d7 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6723fd snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc29b7367 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e24c0c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6367b71 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbfb7e22 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdcb2ea6 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdcfcf1a azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce99849d snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf02e0ee snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf69d1f8 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd22a0408 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32beb98 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3b4baaa snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5254a38 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5bc45aa snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6a98fb2 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd709fe11 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7889094 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdac2ff80 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc625ea2 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdec62b05 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe042aae0 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe66319c1 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe90bf7d2 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0d7d1a1 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2999197 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf39cfda2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf691bb26 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9cd3603 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ff4f625 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2809e7d4 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c5afc58 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e48f355 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x324e27ee snd_hda_gen_add_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39709a54 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e960ad4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6eabfefc 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 0x7ff737b1 snd_hda_gen_hp_automute +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 0x947aed3c snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x963a20fa snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9851c9b1 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0cc6c99 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2db5f9d snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb050188c snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5dc1c72 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc64f2830 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc893b6d5 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd0a6f0f8 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfe3d9f7 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeb381854 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf15272e9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x65523e57 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7025c8f6 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0a2c4ba5 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x354f3526 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x664581b6 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x67e079f1 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6e2756ff adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x949a1ead adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb8dec97d adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd2ce4d31 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0114398 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf3464642 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x30b2b528 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd542dbdf cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1ba8b0f3 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa0c75fbf cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbfa2f679 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdd957f73 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdfffbdcc cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x49b8c0ca cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4f4810c2 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc91cbf15 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3f3771af da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xaaa20a7f da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdef742da da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x22a355ce es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x58185d95 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x0942ca3f snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x908a3a23 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xa93f4571 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x5ed79a41 hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf0957a2d max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x416cd9e6 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbc8ba2c2 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc61059f8 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc7cef66c mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xd83ec849 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x332907d5 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4b986df1 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x99ee5d44 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa52ba52c pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x2d01895e pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa29b0904 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3b8ad975 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xda278ed3 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x21dd7dc1 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x297381da pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x667f14d3 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xce6fa792 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1963cee7 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4a2a7cf5 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xca68c614 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xcd1c6daf pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x7c8473b7 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x1ab82aec rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x20d44092 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4445ebd8 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x60487186 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x888a22b2 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xe1d8773f rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x41e06050 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x59e60a40 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9ea18ca5 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa7589b44 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x6b438bd2 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xccb8c8c1 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc3f96076 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x65328b62 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9d233404 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa901d980 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcb079571 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xce751a99 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa05c0140 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x880f48a6 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x27784eeb ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6dd6c271 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe5d743ba aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xea65c7ea ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7b9ca78f wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x80cf9e27 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcb160901 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf94d7691 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xba9e24cb wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0e2e8e38 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6d317663 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb15e04f1 fsl_asrc_get_dma_channel +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 0x15abad09 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2898fcd6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4ca6a15c asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4de7533a asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x518f0989 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51fb31b5 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x574310dc asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x628554d8 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6bfa5787 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6fa2d120 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7bc2248f asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x84414a67 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x87ae590a asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x951b7cef asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8c63dda asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb9972743 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd22f453e asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4e351b8 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x70455662 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x815f5eb5 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x46dbf9b2 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x503bcfae sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6a48f2e0 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x73d81701 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf4bd178b sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x00899c7d snd_soc_acpi_intel_baytrail_legacy_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x08c27da9 snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a6c545b snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x210ac95b snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4c028d30 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ea3c4ed snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x52195614 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x59a53c32 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a93176c snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6038550d snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8b43f2f0 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x98f106aa snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9c3d1561 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xcbb222b3 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd5af17b7 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe7826509 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0397b64a sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0ed5eb99 sst_dsp_shim_update_bits_forced_unlocked +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 0x1a1dd8a2 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2abe764d sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x363a69b7 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3e2fb68d sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x52abfda0 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72c6fd88 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7384a72f sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x748a433f sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7a8c62f1 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x861edd63 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x86ab95e9 sst_dsp_shim_update_bits_forced +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 0x93d0c642 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x95031e44 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x951b7018 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b6a0f12 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa65f98aa sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa96075ae sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb941c4f7 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc122ec16 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc152364f sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc8fdc264 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcd171278 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xce6c2a27 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb53a7ab sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xde64c88c sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe552da76 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xec97e252 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf5b31a03 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x030ba891 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x03849880 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x06e4bb91 sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x16549962 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x26e729f2 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x2ace439e sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x32388f75 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x381dff4d sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4964ece0 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x4b9339ec sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x6fef612e sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7459bb34 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x7c9bd3e1 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8491faed sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x88e4f69e sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x8bfdc87d sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0x9f2cc6ca sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa2868fc3 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa32c1da6 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xa6851d0e sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xb5da92cd sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xbde1e139 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xcf731bd1 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd004a195 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xd0d3c80d sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe0feac79 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe529b656 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xe81fe16e sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf335cd60 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-firmware 0xf954d7a2 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1a3d2f3a sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x266637ef sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x39ad82a0 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x66a615ff sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x90c2ec07 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa6899cc0 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb6fd0b4f sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe7240e98 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x3f2b2e74 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb40ff91f sst_hsw_device_set_config +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xb95e3b41 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02f74564 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0407bdb5 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04229f47 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x074d8c8b snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0951bb7e snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x095a3126 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c0a276c snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d88c507 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e11ee72 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10613e69 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x117c750b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1589c653 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1787392a snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1801dbae snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19259408 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19606c77 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x196339b5 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198d47b9 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199315ee snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b13d697 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b581e92 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cb066b6 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cd50ca1 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1db11f80 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21948fd0 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22d50eb4 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2827083a snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a0e9a20 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b73535c snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d0c40d2 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31889b87 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3586feab devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d76d6a snd_soc_component_read32 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x392be3b6 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a9b8ad8 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf06dcd snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0e9af3 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e41b514 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e499d06 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ef153d5 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f1f205a snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x406f3885 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x412a734a snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4131b47e soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4203f8df snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e19443 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x456e29fe snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472ab5fe snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b8b6844 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x512db2a2 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52556fc8 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52bfab10 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ea11c9 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57272ad2 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b636b0c snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b9c7907 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d5b470f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fb3affa snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x600170a4 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6012c374 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60cb9ae7 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61e8a868 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62436506 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x625310d6 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a8ba1c snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63cb0f07 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6582dd9a snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668ebb86 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67918d66 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6854d6eb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b43eb6f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b4ef905 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c2bf1e1 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cec194c snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dabc1da snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f62921d snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72ad59bc snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746fe46b snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74963e86 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x757e8ede snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76c2f95c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77c635cb snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x795b4ede snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a5a37b4 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c546693 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ce0ad25 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e409780 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e5fc6fb snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ea71c1d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7efd5742 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7948e3 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fad1e1d snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81fff22e snd_soc_find_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8256d4a6 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82aa0d12 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8403a3a3 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x844e7666 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x861fcf4a dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eac660e snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d4b561 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91d69ba3 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9352c087 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9354ef55 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93c57272 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e5be0c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953ae173 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95e73527 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a602bb snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a116c65 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c8b1360 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dbd8d06 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e80f965 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f38048e snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1c37a9e snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa75553e9 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77664e3 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa784a4e2 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab3556c5 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab66f8c8 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb329b070 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4d18633 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb54497ad snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e70766 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6d9a15e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfc13a17 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a43bf5 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2305441 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4cc88f3 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc50aa266 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc67a5b1a snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc74d8e50 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc93409b0 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc1b84e1 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd00349f snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4508dc snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf7da9ec snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd221a663 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd38abedd snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd497e5f0 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4d91184 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5306c95 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71effcd snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7cc1fd9 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd88fdf2c snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda5edb41 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf83f1f8 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d053f0 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe41babf1 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe47e431e snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe651acb5 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b7ae19 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7cac883 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7d40279 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe827c585 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe887a25b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe94a2066 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea91615b snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec29ed79 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5bcf00 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedbade23 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeed9dedf snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef6028d snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef4c3278 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef68e65f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2fd0e7c snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9cbca4a snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd76eca0 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffaf25b8 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x29562b13 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x67549249 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa18b6ac9 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe860aa6f snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1dd6f100 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x26ec5455 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4df1ab6d line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ac5fb5f line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61622828 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73ee87df line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8412e06f line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cbd1118 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0db1005 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xccd8fe2b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd681370c line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee955950 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf1372657 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3282907 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf42d5669 line6_resume +EXPORT_SYMBOL_GPL vmlinux 0x00152a0e pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x004edc6f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005ebae1 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x00650087 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x007ae3ec rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x009a4906 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x00a44c23 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00c9f05d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00ef4ad3 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x01026fd4 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x010bfcfb pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x0116593d devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x011b94da blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x011c1664 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x01201625 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0151867f ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x015891c8 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x015aff09 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0162e6f3 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x016fed73 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x017aba4a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0180bcd0 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0x019f3cac virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x01b10fca ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x01b13365 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c169e3 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x01ca1792 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x01ce028f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x01ce74af usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x01ceb349 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x01dd4643 direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01f05e89 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0211d122 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x022308c4 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x022dec0f get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024e641a alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x025bd0e2 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x026fa5a4 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x027ac611 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x028c3023 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x028ffb87 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x029a8645 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x02a28d77 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x02ac9d38 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x02af5085 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x02eac6af bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x02f67b85 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x02fab8e9 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0314c2cd mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x031abf72 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x032837b4 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034453e4 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x0348b437 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x0361cfff acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x03657f90 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x0365adfc bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03787de9 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x0382ee52 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039724ad rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x03a50e7b usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x03af28a6 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c6a4f0 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d8489b i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x03e9adb0 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x03fc2b3a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x03fde3db pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x0401ad34 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x04406079 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x044c4c10 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04805c72 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04910c19 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x049929c0 hv_stimer_free +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x049ed708 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x04bc799b xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c34e3d tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c57a47 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e215b8 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x052b0341 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052d41d4 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05612f84 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x05621182 dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x058a0bc7 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05f04443 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05f61f44 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x05fdf172 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x0605d171 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x06060f95 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x061cc394 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0627e32c edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x062d592d __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x06347c8d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x0646829a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0647982b tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0650a184 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x066e23a6 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x067fec6f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x0682a6f5 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x06ac7fc7 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x06b6acfc spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x06b73be3 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x06cebd02 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x06d0ce4e bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x06df1eff ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0700ef5c devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x07050fce usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x070a78d6 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x07231ff2 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072dbaa7 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x073a9460 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x07513903 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x075b82b8 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x078ab78b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0791e2c5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x07b1e029 devfreq_event_reset_event +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 0x07b8ccfd vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07beb839 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07edeba7 hv_free_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x07f3d279 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x07f6bab1 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x080480c7 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x08084e9e serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081381c5 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0829767e dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x083638cb nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0851354e bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x0855ece7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0864c628 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x08663b25 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x087965df sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x087f488a da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08a92b33 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x08b11571 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c8596d dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x08d39bcb sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08d78e1e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x08e16d69 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0906f682 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091d7aed dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09229ec1 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093c2cc2 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0950a706 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x0968ff44 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x09726e6b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x0977a365 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x09837a53 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x099b25ed dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x09a05350 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x09af2914 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09d123ff gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x09f6e51b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x0a0d522c vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0a28921c devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x0a2b70a2 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a5984fc pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x0a5d69a9 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a65890d sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a78790b __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0ab16917 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0ab2029b account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0abb2d57 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0ac3a4ee bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0ac4f045 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0b03133f tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x0b0706d9 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b15a2d5 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3dd327 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0b449056 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b4e81d2 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5c9cbe pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0b690fe3 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0b71bd6d fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x0b728569 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0b775e56 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x0b8cfe69 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x0b8e21a8 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0b934244 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x0ba1beb6 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0ba9de01 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x0bc3f878 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x0bd520fd acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x0bd66f31 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c23dea4 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0c241286 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3ae84d crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0c481a62 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c48420e xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c554b54 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0c6a2455 cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c826ec0 generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0c90aeee bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb5040c xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x0cce15c2 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0cdb3076 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x0cf82ea7 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x0d055697 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d07a5c3 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0d1384dc pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d30deeb nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x0d3e0882 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a2a74 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x0d4bab0d bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x0d58b40a mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x0d5ba014 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x0d5f0798 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x0d66d49e devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0d861082 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0da72249 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x0daef46b edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dc6dff3 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de1eb70 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0decf7a6 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0f1b27 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b6157 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eac015d regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0eac04e1 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0ec6b0e4 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x0ed40745 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x0edbf066 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0ee53783 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f269b34 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f302b1a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x0f3b277c pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x0f3ec5ed kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0f41caeb fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0f45c59e device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f55dd7e devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x0f732e32 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0fa669ec fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd6383d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0fdd39b7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0fe646d3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0feaf91a extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10092947 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101ffabd gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x102dd42c regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x102e0a0f nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x10376d2f crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x103a50a5 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x10448a2a crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x105051b9 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x10587ea4 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x1058f80d tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x105d4b0d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x10799f08 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x109c93bd ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x109d8d16 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x109eb99b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x109ed2f9 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x10c66e6d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x10cacf21 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x10d85b7b crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x10d9248d fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x10dfdff7 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ecde21 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x10f13231 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x10f6f163 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x10f94cdc sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11084662 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x1118b6e3 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x111c947a extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x11295022 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11417255 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1144291c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x115b23be device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x115e8d7d dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x116ea790 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x1177eb7f edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x11911cf4 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a5c059 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x11a918b3 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11c34b33 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x11d0ea8e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x11d3b321 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11f54084 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x11f9af98 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x1211bf6e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x1217f639 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1219c5fe virtio_break_device +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 0x1248efd1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x125679ca of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1273fcd9 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129e1e16 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x12a36073 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12b3fc88 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x12c92346 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12df5d35 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12f33ff9 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13301930 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x13371c0c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1340f866 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x13581394 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1358c9b3 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x135f8cd2 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136d5cc1 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x13831632 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x1384607c rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1397099f iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x1397348d pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x13aa790b __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e3aa9a smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x13e8ced5 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13eeb542 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x13f8e036 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14502609 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1452097b ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x145cfb32 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x14609ba1 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1465588c i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x14661cf5 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x146ef0e0 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x148974b4 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x149c3750 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x14bb3616 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x14ca5b9b fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x1501ecdb blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x15048804 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x150dbac6 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1521bd46 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x152cbe6f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x152de92d tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x152f6632 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15656163 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x15716032 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x15766796 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x1583dff6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x15890450 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x159e95c1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x15a05c7c serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x15adad0e gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x15c7e65f iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x15d8e83f proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x15da7324 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x15e5e7d4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15efe413 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x15f9d841 cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x15fcf39c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1606dd6b security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x16085d0e gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x160c6c0b trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1626c677 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x164a125b setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x16892b27 uv_bios_call +EXPORT_SYMBOL_GPL vmlinux 0x1692cd71 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x16a83d73 cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x16aad1d4 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x16afcfd2 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x16bd01dd nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x16c06675 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x16d644e9 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dbf08f __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e245f0 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x16eee18e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x17044967 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x173668f8 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x173afc75 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174e4ed1 acpi_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x174ef6c2 mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x175039ce __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x17532b77 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x175a6f84 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1764d2fe __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1780bf25 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x17833dd9 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17adcedf clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17cfb964 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x17d45789 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x17d4a558 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x17d6eb8d dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e212ed da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x17edd74e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x181e031a dm_put +EXPORT_SYMBOL_GPL vmlinux 0x1837eaa0 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x183aa4e3 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x18459f24 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x18462c38 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185a0788 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x1877ca13 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x18794ab9 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x1888ce1c regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x189ef930 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x18b824e0 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x18ba66c6 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x18bf43f4 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x18c8ef8a crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x18cb1843 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x18db54bb ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190d7b09 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x1914641b strp_done +EXPORT_SYMBOL_GPL vmlinux 0x191a4c27 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x192f5b75 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1934426c sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1940f503 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x194fb350 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1963fbaa modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1975703f usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x198c6e8a cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x19942d82 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x199a3f45 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b046dc unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x19b3d521 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x19c8c82a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x19dc5a5b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x19e3910e fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x19e5577b lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19eccd16 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a01e3d7 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a119017 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a14bfcf tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a1f2d38 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1a42ddb3 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1a48c6a1 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a6634b2 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a83b77b pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a86ca60 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a87753f vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a8d29cf wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1a9659e4 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1a9a7167 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1aa798ff devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad5e029 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ad79cb8 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x1ae70943 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af912d6 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x1afa0af3 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1afc2476 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1affa116 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1b040b8a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x1b0a46f2 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x1b14667b gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5e61 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b2ed5ee shake_page +EXPORT_SYMBOL_GPL vmlinux 0x1b35d913 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b3708a3 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x1b43caba phy_init +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b58d488 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b630426 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x1b653dbb __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1b691797 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x1b6ddde4 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1b6ef726 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1b714848 devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b98e053 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba99caf ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1baad712 fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc741ac ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1bdf05c6 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x1bdf0e0b register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfcf87b each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1c033e5f ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x1c116a20 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1c1601cd led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1c18f2de debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x1c21f593 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x1c30ea1b ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1c315b37 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1c38b123 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x1c43c117 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c453a5e efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x1c4d59a7 da903x_reads +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 0x1c7d65ec __memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x1c806919 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c97e722 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x1ca02609 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x1ca1fe7a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbce74b usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cedd2a3 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x1cf56599 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x1d025740 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1d034ed1 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x1d06d8aa devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1d0c43ec devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1d0fb95d debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d273595 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1d2f488a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d32f795 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1d35b2be ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x1d4404ce acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x1d5e71a4 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d80184e crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1d816242 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x1d876624 device_create +EXPORT_SYMBOL_GPL vmlinux 0x1d9f483f crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e11c527 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e12b876 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e44fdaf acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e4cdde3 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8ef7a8 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9137b3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x1eb36aab devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1eb4a1a5 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed6027d gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x1ee0a4ab device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1ee19571 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1eeb3ca3 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x1ef3a55d setfl +EXPORT_SYMBOL_GPL vmlinux 0x1efae0cd pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x1efb2597 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f27eeb8 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f31f1f4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1f330bd4 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f33a88b __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x1f3a6a70 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x1f3d0179 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1f43728d strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f456e93 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f61ab03 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f88952e crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faa8ba2 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fc68575 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fec4c64 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x20117222 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20350564 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x204a4882 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20596c81 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2067f951 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x206ccb3e devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20bee424 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20c69757 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x20c89dee usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x20d68fa9 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x20efc5d3 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x20f8647d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x20fbd3d4 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2128adc5 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x214c4067 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x216bf81f __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x218974dc serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x219a4a42 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21ca264a dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221d9454 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22200c2e crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2229bfd6 iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0x223d1671 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x223e5570 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22556f86 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x22662194 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x226842e9 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x22774f98 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x228bf738 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x22938397 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x22971e22 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x229a483c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x229ba960 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x229d86bc pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x22d14103 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x22edf865 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f62dee ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x22f9d089 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x22fcdcee usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x23086f39 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x231afc26 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x23341321 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x23347138 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23479bad uv_bios_get_sn_info +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234f9349 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x236e3706 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23958a2b perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23c0e774 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x23c4c12e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x23d1feb3 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x2404b45d devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2409ed13 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x240ef1f0 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2410f595 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x2433b097 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x2440ecdc crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x244747c3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x245f1514 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246bd8de vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x246df185 hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x246e85fa fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2488dd0b devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248e7db9 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x24bec13b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x24bfdcde irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x24d5888f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fe6f2c __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x25241b3f iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x2528b007 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x252c2292 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254c3664 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2551a6e3 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x255ea509 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x256b717b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x257aef52 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2591d4cc __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x2596c8ef irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x259d0e1c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x25d1db16 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x25d81664 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25ef1321 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f7aca0 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x261c0b32 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x261d36c0 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x261ff31e tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x263eca01 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x2650b2a7 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2653c1ad gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26684a80 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267f7ef5 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x268df2fb bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b80821 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x26ba98cb fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d6900d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x26e09b43 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f9b109 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x26fd34ee edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x26ff7abc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2713069a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x27306ebe anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x273a9c26 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273e4cd2 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2754f242 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2767cd52 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x2782e67e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x279f11ad fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x27ab6d8d rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x27ace325 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x27b1d7e0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27b8bd98 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x27d60f7c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x27d9c9cb input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27ff9835 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281ca4b7 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x281d528d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x282a954b gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x282c34ba regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282fc7b6 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x283a1fbc cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x2849442f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x28539c1f mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x288fbff7 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2892ea2f tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x289399d6 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x28a31ee3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28c08a94 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x28c838b6 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e9698f spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x28fef068 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x290b6707 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x291805cc to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x2921123c pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x292a72e0 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2944161d gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x29443f61 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0x294ada51 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x29649545 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0x296e2a01 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x299b7d12 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x299cf047 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x29afde0d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x29b32cc7 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x29b5dbf8 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x29bb8fb6 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x29bd8447 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x29c2d91a ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x29debaff irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x29e58332 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fcfd1c ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a087aa4 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x2a11aed7 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2a206be8 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2a27eb6f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x2a32b8bf usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2a3ce051 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2a4c3832 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a56a0ac rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2a58ae55 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2a5e6730 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6b05f8 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2a6c47d6 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x2a7b3274 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2a8a9e1e ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2a8e4e9c phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2a9f0f2f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2aa146d5 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2aa5d4be hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2aadfc7d platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ab0b1be sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x2abaee06 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2abb2aa7 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2abd06aa led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x2ac268e8 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2ad49640 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2ad92f38 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2adb3fba ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x2ae0ac8b devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ae9a6b6 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x2aeb1061 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x2af57a31 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2afb1bc0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b04472a gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b07e292 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2492b5 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b289ddf sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b41bba6 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b48e798 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b5071d4 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x2b53ffa1 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2b577cbb skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6a7df6 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2b74f812 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2b814062 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b823970 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x2b8aa50a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba9f408 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2bb7fda7 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x2bc7374a dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2bd35b7b phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x2bf34b04 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2bf3917a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x2bf52ad0 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x2bfceb37 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x2bfd7b68 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x2c177e8e __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x2c1d8325 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c536b1a usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c668303 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2ca3587f usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x2cc7cead wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf784db __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d0ba380 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x2d0c3ab2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d237595 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2d262a7f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d3a85ea pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d3cfdf2 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d584d2a crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x2d596eae vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6b596d ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2d6c99d8 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x2d7462ca nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x2d889f84 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d99959d kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x2d9bc16a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x2dac5ec2 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2db47510 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x2dd26508 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2dd8305f gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2debe2da device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0b599c pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x2e13cb1d acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2d7fd9 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e318565 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2e4d2709 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2e618015 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e7bdd94 device_add +EXPORT_SYMBOL_GPL vmlinux 0x2e9651b0 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x2eb309e4 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebca73e unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x2ebd3855 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec3b79d bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ec74411 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x2edb6bec nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2edefcca ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eef3656 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2ef8759a cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0ea284 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x2f1a63e0 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2f20b7d1 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2f2b4d3a wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3fd8ab devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4f3cee ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2f5307f5 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6ecba9 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2f7a7ae5 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f9082b1 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f9517db securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2fb70ae4 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x2fc12187 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x2fcfad47 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2fdcfd28 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0x2fe68b6f tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x3009bccd pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x301f2d35 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x302e647a usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x30430426 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3046d0c0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x304aa1cc __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3076bcfd sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x30997ada dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x30b5ad00 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30c6bb2f syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d3d739 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x30d918ee ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x30e0a6b3 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30eeabad ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312da807 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x3140052c ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x315434bf map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x31856211 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31c06c81 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x31c5d33e irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d97e60 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e5108b pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x31ede3da usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x32073281 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3216d0d9 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32292f8b devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x323027dd sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x323cb477 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x323e253b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x32455bbf xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x3248fbb0 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x325ab131 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x326a43dd irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32824209 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x32848360 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x328677fb __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x329ad601 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x32a3d5a4 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b2b6cb irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x32b5a4ad pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x32bb1979 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c0969c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32c75e66 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32f000a4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x32f94a52 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x32fa53ac nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x32fdeaa8 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x32ffe4fd devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33275b14 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x332ac5b5 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33655159 xen_pcpu_hotplug_sync +EXPORT_SYMBOL_GPL vmlinux 0x33a75728 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x33b67f75 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x33b69b44 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x33c4f3aa pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x33c73d5b tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33dd9940 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x33e84c12 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x33f3c142 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3402379a dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x340b5c83 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x3421fbc3 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343b68c6 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x343faa14 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3455f539 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x346b7900 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3472bef8 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x347ba9e3 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x3485e17f ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x34b32c02 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34c53584 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f12e5b acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x34f50649 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x34f510b6 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35358567 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355ce174 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356f0527 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x35714082 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3581097f mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x358a27de alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35905e87 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x359bf7e9 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35dc9a6e sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x35dcaee7 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x35e208ff regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x35f40a61 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36099862 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x365b4efc ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x36796fae xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x36848b42 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bc9b39 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x36cb60c0 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x36fa9ab8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x3731b64a pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x373eda3b rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x37440759 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x374a6ca5 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375e4dde rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x37781aae dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37918bda pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3799ba5b find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x37ac583f nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x37c70c6f i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x37d5e0e4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x37d6c1dc __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x37db7ba5 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37ed7935 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37f91c1d serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x37fc4a68 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3847188b tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x384f4185 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x385fe6a1 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x38691a27 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x388a6766 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x3896fa51 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389fadd3 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x38a532d2 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x38abd888 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x38bab6ed get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x38bec0bb xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x38d588ad serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ea5917 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x38fa9751 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x393a2f57 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x3946d66e iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x394722d3 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x39527a2b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x395fc975 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x396189ee regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x396e2fd7 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x3972730b gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39742c2a sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3975ad19 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x3998a42f devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x39a1cafd noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x39b6be8f acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x39d94ed9 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e44917 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39e6390d device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x39fd4454 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x3a119975 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3a2223f8 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a27f0b5 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a521091 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a59418c pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a62aa5c tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a6bd060 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3a71b87c dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa308a2 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3aafd875 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3abaa07d ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3adf3b27 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x3ae59570 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af7eb56 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3afcb22b ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3b034207 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x3b094738 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3b18a1f7 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b20b2e4 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3b41e620 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3b491deb gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b505d15 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x3b58ccf7 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3b59b294 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x3b65193f cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x3b67bd6a skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8dda70 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b920402 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3b94f0a5 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bb2242e dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x3bc49951 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3bc9a58d nf_route +EXPORT_SYMBOL_GPL vmlinux 0x3bcfd04a regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3beca418 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c0696d0 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x3c0b62e9 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c177131 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1d5068 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c2dd52d regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x3c33a3f5 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x3c3c90a3 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x3c468405 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x3c46ff64 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x3c7cd12f devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x3c87c33a bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x3ca3b9d7 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x3ca8db3c devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3cba0b57 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd9328b devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3ce792c7 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x3cfa14e8 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3d03974d dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3d20e25d pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x3d2554dd irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d258b28 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d58701c tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3d82e22f usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d93abff __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3d9bfbbe pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd3b8ce ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3decce04 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x3df4eee5 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x3e0c2aac md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3e0dd69d kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x3e3496a1 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e3a31e8 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x3e3c85de blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x3e406772 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x3e432f5a spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3e44c067 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3e57b45b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x3e62c55c netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7d27e3 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x3e89c786 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eaae362 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3eb286f9 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3eb73303 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ecd27e3 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x3ecd3fc4 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3ed5a4e7 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x3edfa229 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x3ee31d5b nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef2af7f nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f095b08 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3f211d88 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x3f275a33 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3f3338d1 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3f33b653 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3f398ccd spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f3a7962 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x3f3d6fd1 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3f3d7a9c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3f4b6caf housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3f57f4ad __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3f79b6ef add_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0x3f839858 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f90a2da blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3fa01044 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb3c0f5 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe3c315 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fec2310 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x3feddde6 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3ff1fa31 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ff54173 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x3ffb530a devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4004bcaa sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x40084e49 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40162700 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402e6a11 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x40368098 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40404805 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4053df87 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x40657330 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406b5c02 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x406bb378 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406d93ad pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4072eb5f ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x4079bd5f blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4084d9b3 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x4092afd2 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a24620 crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40bb263b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x40c492ef ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x40cc2524 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x40d9b9db acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4112470a gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x413220b5 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x414a8103 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x414cd667 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414ea7c7 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4150b867 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x4159602e gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x4175001b pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418c5e8c mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x418e66ab switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x419d59b1 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x41a4ef39 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x41a632ed simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x41a64b2b fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x41ac457f wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x41ac912b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41c47bcd gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41c501b3 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41cf6f3b dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x41d0aff7 intel_svm_is_pasid_valid +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f028a6 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421e2c75 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x42255856 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x42297322 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x42313219 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x423f2637 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42a6f1f5 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x42ad137b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x42c1cefc devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x42c5557d rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x42d1a3f9 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x42d82289 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x42dab624 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x42e50c02 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x42e94403 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42eddd36 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x43207b2a shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x433cc4f4 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x43496437 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x43583204 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x4374f89b spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x437aa552 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x437e99f5 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x437fb14e public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x4389b462 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43944dbe acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x439ce99c regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x439eb613 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x43a77be7 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43ad3337 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x43adbc60 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd08 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43ec075c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4403a487 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x440607dc __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x44304772 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x44340f62 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4434204e rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x44394834 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x443e86af acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x445fb9af blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x447e3923 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44ab8049 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c046c9 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x44c6a3b3 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x44d6dec2 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x44dfd394 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f87fc1 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x44f8f349 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4509e7d9 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x451f29ed ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x452c0a41 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x4530fb4a blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x45311c85 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4543974b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x454fe492 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45608abb cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x4561b970 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x45624106 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4562d6c0 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x456df176 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458df633 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4592e7d8 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4594b18c devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x45b5d5d4 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d6da9e tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x45dfa81e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x45ece6b8 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x45f79833 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x45fa1b84 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46251113 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x462d488d validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4636aaca iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x463ddb1d crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x46606e28 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue +EXPORT_SYMBOL_GPL vmlinux 0x466bd653 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x466f665e kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x467f1b6c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x46824e71 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46afc42b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x46b2aa28 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x46bd2f87 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x46d7c56e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x470b2330 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474725c9 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x474bb32c i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x47604936 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4769012a clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x4772bf5e crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4779c3ab inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x4779cb61 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x477f57eb dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4789b51b cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x47936465 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c293c2 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x47c657f9 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x47ccf847 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ee7726 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x47fb2204 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x480a71b6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x481ce0b5 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x481d6618 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x48260e6e sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482a7b43 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x482b652a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x482d6c46 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48748792 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x488581bd inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x488c433d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x489c510d pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a8ac3b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48b9c7e3 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x48c63ead fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x48e90eb9 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x48f0651a dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f52874 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x49062865 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x490ea9f6 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x491ba3b7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x491d4718 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x491eef1e iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x491f3426 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x495b3406 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x496d34f8 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x49796fbb ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x49857f02 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x498e9739 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x499cbade regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x49c1dd37 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x49c2221c tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ec24a8 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x49fb6ac7 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x4a37f4dc platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4a3e68fd isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a5b7497 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4a5cec22 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4a609cc2 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4a6b284f iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x4a739f39 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4a7f342d uv_type +EXPORT_SYMBOL_GPL vmlinux 0x4a8312c6 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4a92819d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x4aa13cdb fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4aa79026 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4aa88c39 devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0x4aa9d9f3 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac478d8 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4ac650f0 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x4acb9d07 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x4acf3cb6 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x4afa977d arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x4afcc0b9 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4b0e49a1 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b1b555a ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b1d94aa mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x4b241c41 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x4b255532 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x4b2a480e sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4b3c7286 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b537afa regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b62ac7f clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4b6be19c led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b798a7f devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4b7e97a6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4b7ebd4f nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4b8c4e4b ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4b90ea85 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b925c47 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bab5635 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4bbb0b13 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x4bc0b9cf pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd24cc7 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x4beb0334 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x4beb5f15 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4c01d8c2 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c0c37e4 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x4c1d4df7 cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0x4c225aeb nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4c2af5a8 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x4c367a20 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4c37fba3 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4c39d11c pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4c3e7d35 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x4c42c0b6 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c4c6583 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4c51e38f cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4c660e32 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4c6a6202 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c757609 flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c82c64e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4ca40f35 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4cc33e06 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x4cd26f2b dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x4cdccfb8 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4cfff4c7 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0490de led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d05a207 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4d201c4f skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d21ea3f tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x4d2554cb virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x4d36e094 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d4fff2e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4d59ed22 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x4d62d9c9 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4daeb5f5 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4dc8d5cd virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x4dd2b4a0 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df47767 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4df4ba2e of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x4df673d0 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4dff17b9 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e13aeef dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x4e14810a lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e19ead0 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x4e29a005 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x4e35676e acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x4e495563 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x4e537965 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4e5bde92 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x4e70fcee iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x4e8c9828 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4e98bc1b blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eadfbd1 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4eb406f0 put_device +EXPORT_SYMBOL_GPL vmlinux 0x4eb936de wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed6d377 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x4ef596d7 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f23ebcd fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f41839b xen_set_affinity_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4f54f06b tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4f63341b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7a8ae7 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4f82d461 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4fa29967 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x4fac98a7 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x4fae006a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4fb562b5 flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fbb3222 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff5e511 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x4ffb81ce inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5007a6d2 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x500af1dd debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x50101914 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x50184ce9 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x501ed1e1 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5030dbe1 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x504f87e3 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x506c2fda ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50a92a2d bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50c71c34 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x50ceaeef pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d8b47f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f58fe2 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5131b8ea debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5139716c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x51438c14 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x5148ecf0 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x514c08ef debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x5170c2eb param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x5170f65e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x519e6312 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x51af77ae crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x51d4a6c7 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x520e6b2f set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x5222085b phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5227e3b8 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x523c8db0 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524bb077 iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52615052 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x5265727e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x5293d1cd tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5293df7a spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x52ac2099 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x52b479e3 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x52b98762 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x52c43b68 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e3e759 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x52f0cbbf virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x52fe6cd8 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x53086011 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x53128608 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x53341da4 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x535465e0 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x535d94b3 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x53612516 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x53616ad8 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5361bff4 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x5365ddcd usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53693306 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x5369fc6f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x53954030 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53ac71bb __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x53b78e1f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53bb8ecf crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x53c47c53 apic +EXPORT_SYMBOL_GPL vmlinux 0x53c7bd20 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x53cbd7d0 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x5400eebf pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x541415af pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542291fc unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5427530c thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x54334a12 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5469c4df crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x54803f26 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x548d9a09 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x5499bd42 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x54c4a151 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x54d06a6c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x54e6b629 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x54eea782 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x54ff4838 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x55073861 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x55082f88 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +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 0x5554f74f phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x556ba2b1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5574efab device_move +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55897c84 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55a90eb9 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x55af87fc devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b42fff xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d40947 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55dbae14 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x55e2ec0f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ef017d usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x55fc7cfd dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5602fad0 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560fe0e5 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561bd05c serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x56228694 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5625496d xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564345a4 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x564d6de4 mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x565c8b0a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5675c383 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x56786baf bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x567f26e7 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569c3b38 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x569d26a4 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x56c1bc54 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x56d4f95d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x56d54ae7 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e50ef6 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x56fb532c update_time +EXPORT_SYMBOL_GPL vmlinux 0x57150725 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x571949da regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x571e9ac0 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x5747d9d9 device_register +EXPORT_SYMBOL_GPL vmlinux 0x57491534 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x574fc58c system_serial_number +EXPORT_SYMBOL_GPL vmlinux 0x5751228d hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5772c2b9 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5777396d sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x57798f63 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5786df27 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x57907b7d xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b94d7e usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x57bf8245 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c6613a nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x57cff561 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x57d4c860 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x57d9a0fb pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x57e6aed4 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x57e82360 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x581caffe acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x5821669f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831c261 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x58560bbb iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5858f392 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x58714c3d sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58956b2e spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e1319b devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x58f03b99 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x58f2978a sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x58fc4072 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x590627a5 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x590ae52e regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x5910faae mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5948bf36 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x597711cb cec_pin_changed +EXPORT_SYMBOL_GPL vmlinux 0x597af1e7 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x597f9902 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598a1042 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x598a7e13 i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0x598cef48 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59c7633d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x59d99f5f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x59da620b xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0x59ef6e58 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x59f91fe2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x59f99a9e sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x5a0e03aa pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x5a1497ca serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5a21d3ac rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a289da8 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4e7d3f ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7eb3e4 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x5a8e1240 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac74bce sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ad9c428 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x5ada701d ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5ade72ae cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b884364 hyperv_report_panic_msg +EXPORT_SYMBOL_GPL vmlinux 0x5b926f1c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x5b98551e vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x5baf4641 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x5bb289ac __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bddcee2 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bf13b6c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5c0b329c power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5c12a15c crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5c1bbb34 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c325911 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x5c4b3838 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5c56fa93 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c7ade11 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c81b208 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5c895f29 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c9782d9 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5ca63b4b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5caa1511 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5ccd121a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d02e825 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d294712 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x5d36cc2e devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d5ac20d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5d608839 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5d773974 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x5d7c2be4 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5d7ea438 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dd340cb mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x5de59450 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5ded03a0 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5df42823 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5df8a3ae devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e13db7f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x5e1506d2 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5e15196b __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6d63ab xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x5e77a8ce serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7be494 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5e8507e5 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5e9a3e07 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5ead0e79 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5eee38fd ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5f050947 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x5f09b052 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5f0c1aaf crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f30aef4 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x5f467772 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x5f613e37 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f77f5d7 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x5f888469 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5f928513 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5fbd3f00 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5fd70cfc __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x60016799 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6002d701 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60098809 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x600d878b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x60188663 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x60254a5d pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x6029a2f6 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604a780f arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0x60898c08 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x608a836b sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b0566e usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x60b08693 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x60d399c8 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6107f4f6 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x610a19b3 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x61117fba crypto_stats_kpp_generate_public_key +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 0x616507f8 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x617546f4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x617babdb acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6180cc46 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x619b8640 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61a46187 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x61add8d2 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61d56ac7 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x61d91c70 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x61dedddc rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x61e5d75f iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6207faa9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x62089876 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x62211746 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623b5a69 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625eb262 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626745b1 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x626a3066 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x62a557fd usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x62b2c123 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x62b5d841 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62cae61a sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x62cf1f9f xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x62e91cce irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x630d84b6 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6324283d clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6329bd88 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x632efa32 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x632f1a9c acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63417791 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x63487a82 spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x634d38f6 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x634e598a gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x634fe9c1 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x6359b24a dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x6368e7f2 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x637fe2d1 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6382b9d6 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638ae7c2 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x6390ebb6 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c88ada pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x63c8fd2b hv_setup_stimer0_irq +EXPORT_SYMBOL_GPL vmlinux 0x63c91eb0 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x63dcd4b2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63edaa39 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x63f914a6 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x64184f69 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6435a1c6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6451ecbf gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x6452217e gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x645d7503 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x6464b9c3 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x64688882 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x64783c04 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x649643e4 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64b700e7 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x64b99729 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x64bdcaa8 hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64dd8af3 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x64ddcf43 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x64eb6c9d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x64edbd76 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x6501926d __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x65045b40 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x650503cd pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652ad79e sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x652b2f8b md_start +EXPORT_SYMBOL_GPL vmlinux 0x653b3132 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x65714ab5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6574fe11 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x6583ea0f fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x65853cc3 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x658ea1d3 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x65948cf4 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x65997639 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65aafa2d ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x65b0e91e cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x65baf993 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x65bc3a54 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x65bea57a serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x65bf0112 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e1ea7a pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x65f58ea8 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x6612f00e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6625b0e7 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x66831225 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668c0902 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x669381a7 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x66a5d02d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c0aa87 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x66c57255 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x66c99e79 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x66d2a847 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f4620c i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x67104286 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x67120aac pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674d1a91 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x67533da0 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6763254c usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6786893b __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x678eca30 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679a66e1 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x67c5df5d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67dfa55b iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x67e341e3 uv_bios_freq_base +EXPORT_SYMBOL_GPL vmlinux 0x67f6682d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x67face8e crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6807930d devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6833e61a phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x683d2012 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x684d8b56 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6851e0a2 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x68592473 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x686677b8 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x6870e7a6 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x68798470 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x688edfef crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a920e6 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68b377fc crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x68e7be9b edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x68f36c5e spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x690af387 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x690eddc4 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x690fa97b led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x691e1e84 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69342c84 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x69414de6 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x6942b2e2 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6953615a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x696f333b rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x697128d8 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6976c38e _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6979246b ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6992493b ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x699884ce iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x69a58e58 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x69b30c2b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x69b61401 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x69b90cf2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x69bc4f57 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x69cb5ef0 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69f180d5 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x69f250eb da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x69f7f34e hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x69fcc635 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a066747 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x6a114592 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a29e9c0 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a43c894 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4671e7 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a54b6ae usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6a59cd98 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6a5cfac5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a7145c3 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x6a81bbbf sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a8226e6 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a899927 regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0x6a8b9f26 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6a8c5e5e pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x6a909492 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x6a96cf45 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x6aa1d47a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa50615 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab66b1a gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x6ab7dc91 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x6adb36bf aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6adf5cec sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6af14ab9 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6af28b4d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6af63610 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6af6516e irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x6afa6be5 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x6afe7eb6 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b11ff8f arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x6b1f1719 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6b1f3005 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b4f633b genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x6b51709e iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x6b594001 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x6b62c858 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6b718563 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b73ec7b blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6b763d54 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba6aadc ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6c0268f4 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x6c300c85 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4016ff devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5010e5 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x6c50b780 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6c565f3b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7d8104 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca6d874 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6cbc7caa regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6ccb3b07 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x6cced744 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x6cd001c9 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6ceb98d4 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6cf3d70d irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6cf5c682 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6d03227e iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x6d069f5c user_describe +EXPORT_SYMBOL_GPL vmlinux 0x6d06a7a2 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d65b1b4 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6d6c776a class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d6ea1bd mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dcfa010 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x6dea035d split_page +EXPORT_SYMBOL_GPL vmlinux 0x6df6b9f6 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x6e0220b1 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6e1951cc inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6e23bbde xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x6e28d626 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6e297208 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x6e2c0fcc dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e400d2a skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x6e42ddb1 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x6e44f223 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e528bfd scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6e6bd77e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x6e6c527d devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e79e292 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9c3703 __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x6eaa317c key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6eaebed8 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6eb21373 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed1ba73 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6ee71410 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eea85c1 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efd4747 pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0x6f081ef4 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6f0d5730 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f33fcdb pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x6f34bb26 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x6f775552 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6f799dcf dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x6f7dc8d9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x6f7ec9dd device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x6f835ff1 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x6f99d05b __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fbf752a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6fd103a7 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x6fe5f571 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x6ff46dc7 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff99135 gpiochip_add_pin_range +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 0x7006f365 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x700f9e47 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x7012c994 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x7022412d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x702edd50 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x70332383 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7038ab5d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x70521522 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706550fa pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x70698381 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70844fed decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7091a93a bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x70b7762e thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d3265a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x70d89155 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x70e65884 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x70f5332f sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0x70f5a38e blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x70fd4a3f transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x710aeadf pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711c20a6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x712ab1dd dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7137dc55 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x713ffa5a rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7177dc22 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x717a105c __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x717aab41 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x71802c68 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7188c562 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a71643 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x71babe12 md_run +EXPORT_SYMBOL_GPL vmlinux 0x71befb4f tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x71c719cf i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x71dbf546 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x71f225fe pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71f674d5 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x71f9a5fc driver_register +EXPORT_SYMBOL_GPL vmlinux 0x71fbc33e devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x71ffec25 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x720f9510 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x721598c3 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x72192dac debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x724b5824 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x726e86be fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7286ecf6 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x729882bb debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72c6327a dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x72cef7e5 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x72d18fce devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d3574c get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x72f540b8 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x72f7661e crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x72f88728 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x730635f3 find_module +EXPORT_SYMBOL_GPL vmlinux 0x73096a92 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x7312be00 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7324d629 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7326a354 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7327b585 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x734bc9a2 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x735c11fd irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7376c370 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x7381a58e generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x739fb853 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73bc3d9a sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cd4e74 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73f1d689 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x73f3fd31 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7400408b dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x741f2fe6 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7438cd01 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744b6d77 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x746e5d19 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x747b3614 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0x7483886e crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x749c3bb8 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x74a312cc rio_request_mport_dma +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 0x74d33618 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x74d8de16 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x74e5aeb2 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74eef043 fat_attach +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 0x7538f764 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x755496bc relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7554b4d1 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75ada3ca hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x75b5982e lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x75b61f17 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x75bdf62a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x75c3e5dd iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x75cb0be7 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75f38532 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x76118d37 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x76180469 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x76212f03 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x76234ce1 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7627f631 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x76379113 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x765ec756 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76731f6e blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x767c9609 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76927b83 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x76b6ba09 pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0x76bdc940 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x76c1d5ad __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x76c5cb5d devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x76d951cd mce_inject_log +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 0x76f03673 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x7732ac9f user_read +EXPORT_SYMBOL_GPL vmlinux 0x775130e0 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7757d31a serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7777a85e vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b22f18 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x77c25d16 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x77c3577e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x77c6aa75 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77d026ac serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x77d36627 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x77e817ed skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f045c8 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7825a8a0 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78531883 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786ad7dc pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x78766e21 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78812411 hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7882dbcf regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x7890bde3 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x789975b2 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x78aa7485 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x78b1d0e2 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x78b345cf inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x78cab75f devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x78ee5639 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x78f8ee9d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x78fba60d __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x78fbb78f bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x79116096 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791b888c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x79391748 vfs_getxattr +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 0x7951f852 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x795c8c70 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x796b4b56 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x797030c9 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x797aa550 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7991a569 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x79aad028 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x79adb39b pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c41c34 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x79c66377 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79dcb661 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x79dcfa6c screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a078c9b gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x7a07c767 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x7a170ba2 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a4434d8 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x7a55a620 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a75a4c8 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a828dae arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x7a85e1b1 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7a883974 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7a8fa004 _copy_to_iter_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x7a921c39 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7a9628d2 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7a97fb4e fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x7aa3f1f9 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7aa61896 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x7aaeb459 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7ab50014 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acfd87f devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad27d43 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7ad6ad95 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7adad6be extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7ae0e4ea device_del +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b3eb951 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7b3f6943 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b403025 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b425dd7 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b4ef438 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5cdfd9 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x7b61bccb tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7b6cd31b noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7b6de2fa __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba593ea blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7ba78c6a rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7baa257e fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bc80953 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x7bcf8b3c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7bcfd6c1 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7bdb121f pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7be61c42 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7c1096ea acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x7c1ec4db pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c266285 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7c35c040 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7c6235d3 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x7c6a6ea8 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7c7d99e5 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7c7ddc75 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c8f1a20 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca7d96c vmf_insert_pfn_pud +EXPORT_SYMBOL_GPL vmlinux 0x7cac7101 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7ccd76f3 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd2cc4c sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ce0c3dd find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1880e9 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d25ab4a nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7d260990 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7d463614 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d676c96 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x7d7cb8fa class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7da72754 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7dcb563b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +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 0x7e0c4379 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7e1a3f93 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7e233f5b ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x7e2bcef1 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e5162c0 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5fe135 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e71867b pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x7e7bc731 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e96b3bb da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7e981348 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea1c31e l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ea6489f ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7ea71293 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb38a64 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7eb49128 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x7ebfb9e4 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7ec13fc9 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ed233df devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eed2aa9 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7eeddbb6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ef951de pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7ef9cd8c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7efe2d2e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x7f0b4d67 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7f2d2bde mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x7f510b6d register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7f5d5159 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7f71442d __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa5a92d bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fc69511 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fe6b7b2 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ff52ed1 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x80351dc1 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x804305ee iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805f0ed6 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8060bc44 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x806fa413 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x80741257 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8084d7a7 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x808ad561 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8096bf81 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d49ad0 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e21fc8 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x80f50ef3 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8108a69a edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x810c738c unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81248081 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x81334965 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816136ec thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b2af5c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81bcd288 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81ec8248 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x81ecf3c7 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820abd05 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x821347d5 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x821c2b0a dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8239dbbe cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x82480d2e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x825c26ba watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x825f490a ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x826c1807 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x82790184 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8286cfe7 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x8292fc74 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x82a03942 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x82a43ad0 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x82d2b73e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d961da __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82dee634 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x82ef8f92 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x830b7eee device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x830dc160 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8315a15b fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x832a7a57 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x832d4fc0 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x8339d42d genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838b5055 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8392533e regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x83aa21f1 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x83aafeeb rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x83b9569e devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x83c1ef2d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x83c4ffb9 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x83c57b92 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x83d41744 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x83e84bd4 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x840ab2a6 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x840ce61e regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841c66c7 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8425e20b iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84477aa3 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x84483300 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x848b7db0 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8490aa5c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x84ae4306 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x84ae61d7 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x84ae8504 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84baadc8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x84c6406a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x84c83e50 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x84c84647 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x84f36233 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x84fd4a08 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851579f6 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8522b5c8 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85631b9e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x856aab3b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x858dc725 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x8594cdd9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8595f6bc devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x859f9ba8 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85a6beaa crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b36010 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85b5b7bb phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x85b77b91 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x85bb2c90 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85d8f5fc shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x860aa96b devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x8621eb95 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86518e0c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865ac845 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8663b785 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x866cb816 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x86726c2c tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x86731891 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869e2497 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x86ac9348 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b929c5 cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0x86bf0ab3 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c8802f crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dd9edb extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86edfa9a phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x86eeb022 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x870f011f xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x8727b45b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x872a5ce7 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x873378d2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8737ae3b usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x87404808 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x8751c22c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x87751dd7 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x878a12da relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x878c85a2 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x878d29b9 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x878e80a0 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8792bc03 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x87aabbed uv_apicid_hibits +EXPORT_SYMBOL_GPL vmlinux 0x87b4798f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x87d007aa wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x87da3975 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x87e35609 hv_stimer_init +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x880a8c8b rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8820f56f devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x882ca81e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x883200e3 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x88385cbb loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x88396522 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x88405808 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x884a9a44 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x8866dca5 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x886d28cf kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x88881794 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b7154d ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x88c83d61 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x88db2dc8 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x88f3c524 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8911966f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x89163d6d component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x89205a18 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8935257c lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893f768c sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x8943979b platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895a84d5 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x89675aa3 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x8968173d netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x89704d99 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x8993054d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8996fb8c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x89a5333b da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b734c7 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c07f4a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x89d16ac8 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89ef3f08 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x89f84c32 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x8a07a00d security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a25686c vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x8a2690de fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8a37008b devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8a38dac2 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a43285f gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a48cff2 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x8a4ca7be hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8a52e32c tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x8a592b6d rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a98d23b sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x8a9f7dd5 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abc0ce1 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ae2f8f6 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x8b03d988 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x8b0967f5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b4a14d9 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x8b4d8b65 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x8b50718f gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b73fa5a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x8b8085e9 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b8c9dda crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b945cb7 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8b9643ba pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8bba9469 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8bc4dfab rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8bd9a282 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x8bdaa79b acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8bf6c13a tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c30691c pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c362c32 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x8c3c6080 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8c47f27f subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c491048 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x8c57e104 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8c5bb45c usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c6a13e9 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8c6e0a22 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c810d41 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8c8183aa md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c92a99b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8c9596aa devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c97e8bb irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cab3c72 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x8cba41ec rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x8cbd6bd2 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x8cdfbc46 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x8ce90334 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x8cec3ba9 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x8cedc372 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8cf3ad15 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x8cff0551 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8d00eb4e is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d0bd4ef regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8d0f556a dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d10619e subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8d14ce9c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x8d1f859f init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4cb45a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d585a44 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x8d664da8 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x8d716909 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8d7a9cc3 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d84acbd pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x8da9bf5a inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8dbd3781 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8dd53fe9 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e030846 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8e17aae1 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8e27305d encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x8e3af6c4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x8e65d7bf perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x8e69d0c5 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e6c3cb2 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8e6e57d6 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e76ad58 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8eb7357f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x8ec5b5d0 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x8ed8bcbb blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x8ee05397 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8ee53e31 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8ee96d7a pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef2835c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8f02ce32 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f3125f3 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8f3a0d62 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8f423c87 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x8f423fc4 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f66f3c2 pwm_set_chip_data +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 0x8f801d8d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f9b906d pwm_lpss_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fb759f4 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x8fbda03f devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x902e9aa5 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x9031cadb ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9060155e efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x906664b5 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x906706fd usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906d792e rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x906f1613 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x906fca70 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x9091cb1f fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x9093aee3 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x9095feb4 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90c74a4c iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90cb16c7 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90dfc6f1 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x90f6afdc devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9130d145 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x914aa0b7 hyperv_cs +EXPORT_SYMBOL_GPL vmlinux 0x914c0cf3 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x914ca0fd firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x914ebcc1 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x914f450b fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x91505fd0 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9152e468 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x915d019b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9173bf60 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x9188b226 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x918b68ab evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91a43487 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91bd76ff blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x91c11704 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x91c3a53b trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x91e2aaac gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x91ee4dc8 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x91f2181f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x9227d76b cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924205fa do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258937a e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x9261c30e xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9286f08b blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x929e42df devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x92c2d512 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x92ce4866 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x92d05f47 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x92d2f20e tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d6bc48 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x93015f3d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x93054776 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x93261058 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x9337c509 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x9339e755 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x933f867d dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x9340ffc5 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x9379f72d devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x937fcbaf cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x939279cc vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x93bb50ac tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93dc6111 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x93e46a41 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x93eba103 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f052d7 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x93f14029 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x93f1787f bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x94041d97 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x940e56b7 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x940f82e6 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x94336d07 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944703d1 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x944c5b7a fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x94564a02 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x945e9e9e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x94682e31 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x949c47c2 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a31993 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x94af9af5 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x94b719c2 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x94b9bd9b irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x94e6724d ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x94e89a2f device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x95007bad skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9517e229 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952a7a90 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x953379ba bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9538050a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954b244d skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956da4f4 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9572b43f irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a52498 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x95a57bc8 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x95bb4afb inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c78860 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x95ced701 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f819cb ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x95fa56d7 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x960ebf83 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x9622d15e wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x96265eb3 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9626e5e7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x9646a5cd sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x964c27f1 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x964e3b0d nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96622af6 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x9666000d inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9671c9e1 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x968787ba regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96a18921 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x96a2fbd3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x96b76d26 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x96be00bf regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x96eb65a0 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x9708d98b clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x970c230b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x9720d7a1 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9742e6c3 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x97493ec5 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x974b1406 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975de7ab bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97799ff9 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x977b9848 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97b011fc dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x97ba2efe bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x97c3b70e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x97ceb72f hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x97d12355 hv_remove_stimer0_irq +EXPORT_SYMBOL_GPL vmlinux 0x97db1785 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x97dbf008 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e45b96 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97ed1d69 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x97f09b73 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x97f0d050 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x98137f3a shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985c7d70 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x987486fb fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987ab0a5 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x9887527c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9889ca28 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x9892b0a2 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x98b0dafb wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x98bb3206 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x98bea984 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x98d173aa device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9902c102 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x99107907 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x992365be tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x993b22c7 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99470a38 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x994858c1 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99518632 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99615248 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9965f82d device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x997d439a kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a0ef45 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x99a5cf30 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x99ac9ba9 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x99c011d8 mcsafe_key +EXPORT_SYMBOL_GPL vmlinux 0x99c97242 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x99da30b4 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99dd83ff net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x99e39753 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f76e3e edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a090e94 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9a0c9bbc scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1a7db8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x9a52f9a8 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a613383 devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x9a69f8e9 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x9a7f892d ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9a95c77e kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a9b3fbd use_mm +EXPORT_SYMBOL_GPL vmlinux 0x9a9d87ad sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x9aa3f5eb __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aa9d0e8 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab2ddda acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af33e4d phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x9b215c9f gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9b4264e8 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9b478a6d crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b690670 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9b6dea9a ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9b7071fa __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x9b79d42a mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8bff4a usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x9b902e90 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9be852 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba76587 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bbe4c80 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x9bbfbde2 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c1c914a inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c45ab60 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x9c4e1529 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x9c55ba5f phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x9c5a569e udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x9c5ca648 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9c728cd0 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd581d5 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9cd83a3d pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cda2f07 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d00d54c input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1576b6 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9d49ea90 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9d4d2180 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d672bbf led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d84b5fc security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x9d8a9997 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9d915351 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9d9ad682 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x9daf6704 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x9db20843 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x9dbfdbf9 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9de00c0d class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9de2fb5f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e0caded tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e112df8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x9e1c1f86 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x9e2238c5 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x9e32235f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x9e39b345 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x9e423bbc unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9e468be7 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e55e353 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x9e603a30 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9e6da576 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9ea3c12f posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9eabaac9 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9ead8e10 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eb94ecb crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9ebc02ff vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9ec17cfb xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0x9ec1f5e1 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x9ed0044c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef3fa32 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9f1266bb devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x9f1d8cbd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9f2788e4 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9f34f22b spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f474fac tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x9f493d9a cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x9f54bb28 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9f62f0ea bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x9f71bc72 uv_bios_set_legacy_vga_target +EXPORT_SYMBOL_GPL vmlinux 0x9f789855 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x9f79ff84 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0x9f81b2e5 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x9f919512 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x9fab32df arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9fb86aff acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc18d72 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x9fcd6818 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fef20ac regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa024a4d5 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0548c22 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa06fa211 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa07318cb regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa089fad5 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xa08f3a31 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xa09e1fdc pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xa0a9721e handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0b0e6e2 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa0ba4ff8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e36067 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xa0ef9e29 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xa1007a65 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa1051180 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xa108d0d3 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa10b6a38 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1148f1e __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa1280173 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xa143175f sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa1742242 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xa18e58e3 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa1b36463 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f25590 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa23eadc5 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa2463cfa perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xa24e1997 __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa2559513 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2735ee1 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa2811f3e pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa284e46f power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xa2b061de regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa2b4ae27 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d72e31 __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa2d737c5 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa30524c8 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa32586f1 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0xa32974a6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa336b9ec fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xa34651f9 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa34c64f5 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa355ddba sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa35c5c22 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa363c672 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa38143ea ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3823e9c pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38e94d0 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3ac9400 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa3ae8630 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa3b236af anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa3b3f02e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa3b6a876 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c29a4b iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa3c3a44c acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa3d2e732 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa3dc9556 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa3dfc18c fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fda037 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa407e2ab i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa42bc567 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xa42e952c crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa4600236 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xa46351eb tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa482356d security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa48c72cf pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa4a547a7 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xa4d46394 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4d60ed2 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa4e292a8 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa4e6151b security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xa4f17bc2 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa4f52b62 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xa504ec5d init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa505f54e perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xa516b780 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa530f85a gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53622b0 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xa53929f8 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa53c09cb dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xa54d4190 pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0xa55a11d2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xa5634fd2 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa56a57b8 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa56df9d9 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa5807d55 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xa584651e gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xa586fcdb uv_min_hub_revision_id +EXPORT_SYMBOL_GPL vmlinux 0xa59493cd blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa59666d1 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa5aa06d6 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0xa5b540d6 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c9d3a8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa5d160f1 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5d5963d netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d8c776 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa5ead7e8 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fdf9d3 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa605ea9a l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa607bacc dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62b4738 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xa63001b4 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa64a1092 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa661cd56 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa6644bc9 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xa672494e blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0xa6781b6d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa67eba18 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa68747a3 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa69baea6 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xa69e38bd flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xa69fee83 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6caf19f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6efa38a debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa700daca usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xa708b9d1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa711a816 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa71fe707 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7346280 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xa74cb1f1 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xa74df259 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa74ee87b ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa75f0c83 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xa7686ffd br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa77eece8 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa78376cd crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa7844260 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa7b29105 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa7c09c8b lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa7c15894 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xa7cda26e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xa7d03556 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xa7e8bb50 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xa7fdd18c input_class +EXPORT_SYMBOL_GPL vmlinux 0xa80d5da9 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xa830fa59 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa8390016 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa847a009 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa84b379c acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858697c trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xa85eca81 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa862daaa scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa8641606 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xa87c8361 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa889369e dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8e0dcdf power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa8f432c5 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa8fbaf01 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa914e4ed usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa91bd379 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa935c9c7 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa95add95 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa9789c6c acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa994e7fd class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa997c40f bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9b85841 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9c965dc regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa1216c2 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2753cd percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xaa2e2b59 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xaa2f487f rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa3f7755 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xaa503131 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa57ff94 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7c3263 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8bb5c9 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab5ae1c acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xaac67b0a bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaacc4f88 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xaae05975 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xab1034bd debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xab10b616 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xab12b233 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xab1500b8 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab310f88 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xab48e08a md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xab68892e pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab70d951 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab824d65 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xab9ea377 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xaba60d9e inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xabae2940 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xabae984a gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xabb694af gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xabbcffd8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xabc014c7 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabebf0a7 cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0xac044977 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xac060e61 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xac0b0944 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xac104f86 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xac39456c devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xac50b4dc ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xac52a88c nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xac5a6b04 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xac672b5f sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xac8bd792 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xac9f13d8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb98363 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xacc61356 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xacc64502 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xacca5189 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xacd7e168 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xace38d71 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xace3e237 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xace5bb39 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xacf3b464 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xacff42f6 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xad062fd9 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xad0c2921 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad2679e0 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xad43aba5 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad58c131 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xad5a300c ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad671945 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xad68d15a devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xad862493 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xad9add78 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada43e02 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xada863af exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xadb8f873 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xadcfc20b pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xadd94464 cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xade32c25 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xade3e1a4 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xadf2513c phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae008429 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0658a1 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae206ccb of_css +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae334a0a pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3fe24c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xae49c8d8 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xae4f98e9 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xae624372 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xae66ff59 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae745746 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xae7a0a7c tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaee38fef regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0a550d gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaf238446 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xaf252674 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf2f0cfb da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xaf322c29 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf37c321 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf5c1509 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL_GPL vmlinux 0xaf61c05b tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xaf732c18 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf90e39a kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaf962398 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf9b4a00 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xafa18624 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xafa1bab0 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xafc1d682 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xafc9e5af gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafedc097 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb0071d73 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xb027da13 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02cea18 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xb03020b7 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb0539d42 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb0591fec platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xb0889a55 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb092e91a ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c7d0f4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0db164a __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f548a2 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11376b0 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12820de pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xb13124a5 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xb135ce36 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xb137c14b xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb13deff4 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb15b38e1 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16e37e8 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb178ebab ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xb181b6ad dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb198d76b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb1a36203 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb1af885b usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1da1113 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e222ef netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ef0548 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xb1f73a99 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb201860e fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2368f98 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2482df6 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xb24fe26f __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb2566af4 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xb26860c6 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c5c0e tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb26df0c3 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb289dcdf irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb28adcc5 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xb28b83e5 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a826b3 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb2aa255e to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb2bc933c dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xb2c9c462 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xb2d1806a pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xb2d92da0 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb300b6ce mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb30159c3 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3177993 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb31dc13d sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3281a61 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb334b53e rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb33b452a scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xb3438f4d skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb357ba4f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb366bc0d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xb369d663 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb38346af dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3a38864 efi_mm +EXPORT_SYMBOL_GPL vmlinux 0xb3b1c688 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb3c0f783 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xb3c61ec7 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0xb3e7c899 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb3f7ee5f node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xb3f88a7b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xb401d693 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xb4031cad dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb40a464c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb40bad19 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xb41b635a cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb41b66bd devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xb4293500 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb42f7537 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb43afb4c simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb447ed25 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb463cbc3 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb4724f18 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb47bc914 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb4956d5d skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xb4989185 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xb49e2650 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xb4a9903c blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c74ee6 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xb4d32b88 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb4d8ae7d gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xb50199a6 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50e1f27 __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5116d18 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb5138248 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb53d6b52 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb555719c blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb555c28d bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xb55ded6a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb56114b2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xb586e55a pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xb5a648c3 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a89d2a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5a98bac led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xb5c3fefb tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb5c46da2 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb605fbe7 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xb60dbf14 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xb61f2bdf blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb6216577 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6349e38 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb6468f7a gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xb6571718 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6691193 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6721d9f ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68dfac4 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb69af0ce spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6a5e0cb nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xb6b22c8f devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb6b65d8e devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb6e59f10 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xb71a1e87 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xb72b16d5 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb739c465 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xb7455f3d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb7594383 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active +EXPORT_SYMBOL_GPL vmlinux 0xb76f18cf __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb7731e81 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xb77da664 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xb77e7303 del_dma_domain +EXPORT_SYMBOL_GPL vmlinux 0xb79d2370 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cd3ffb pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fbe0b3 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xb810bfeb blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb8202508 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb8306a9b ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb83346ca devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb8352d70 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb845d724 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb86cdf6c spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb86fb198 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xb884aab2 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a3ee92 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ae97ee xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ec6676 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb90683c3 pwm_lpss_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb906d062 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xb909ceb8 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb978cb4a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb985ceb2 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb99d67eb pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xb9a38d52 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xb9b7019d blk_mq_free_request +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 0xb9da4956 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb9e321e4 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xb9fd1cc2 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba0b90c3 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xba0eb05a pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xba11bfc0 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xba1326d8 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba40ea9f skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xba527225 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xba5b66ef __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xba69ffc8 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xba779fdb sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xba947c37 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xba948f7b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xba99be4c dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xba9a3681 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbaae03a2 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbadea075 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xbae313d3 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbae9bed9 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xbaf59346 component_add +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb057c1f generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb0c1362 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbb0eaafc usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xbb31fee9 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xbb388c4f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb46cfd8 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xbb561da0 of_phy_provider_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 0xbb780354 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xbb7d5102 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xbb7d6126 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbb7f169b efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xbb9684bb __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbba32d41 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xbba5b906 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xbba8eb67 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xbbad1533 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbb2ae57 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xbbb733fe ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc732e5 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbbeb376d phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xbbf9ef0f ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xbc04bd46 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xbc1cf0a3 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xbc1d941e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xbc44f143 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xbc4ac327 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xbc4b0c44 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9ea1b0 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbca700d3 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccc2e2b serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd7b806 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce21def peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbce3c614 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf4fcc2 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xbd08a720 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbd0ce011 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xbd114641 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xbd34833e evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbd38e1bc crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd400b43 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xbd5a44ad gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd7589a4 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbd7bb445 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xbd87f2f2 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xbd8bd0af dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbd952363 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd95d5a2 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdbcb6a0 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xbdbde317 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xbdca76a0 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xbdd352df cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbddbc6eb power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xbde6dd1d devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdf059ea sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xbe0d77d3 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe224bb3 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xbe3fbe25 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbe485c58 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe4eab7c get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5f934d xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6b45af crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xbe84bdaf clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbed1e750 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xbed3d78e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xbedceec9 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf045938 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xbf135912 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xbf147add inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xbf210193 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xbf3d02c2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbf451ca4 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbf524eaf fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbf5eb376 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbf61d410 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf6cbc82 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xbf7e2d65 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbf8cbd61 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xbfa18b98 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbfa2f92d phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfb1be70 hv_setup_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc41b5a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xbfc49636 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xbfc4f58c ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfc9668f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xbfcf6858 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xbfd5b417 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xbfdb9b44 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff79373 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc0021cef acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc0119abb clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xc019ce81 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xc03c9e93 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc047d629 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc0673cba irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc084c9d5 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc0a1ff4b __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xc0a4c67b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0a93408 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0bea029 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xc0cc3270 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e915d1 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc0ea5202 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1076c8c usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11037e1 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc1247560 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xc139d113 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xc1521ef7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc15f1a5d pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc162c389 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc1cff9c5 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1ea7cd9 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xc1f9c2e8 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xc20747f1 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc20aec5d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22f5aba platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26dd802 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc27d0a3b of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc27d7f33 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +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 0xc2964e3e nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc2a2e0a3 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a67061 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc2a7f040 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c67e76 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0xc2d1d7e5 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e1c9db devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xc2e30492 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc2e74fe9 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xc2ea87b3 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xc2fa3775 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc318bda1 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc3285d7a check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xc33553d5 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3517d08 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xc35dc7aa trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3b61c59 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc3bbfaa1 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xc3bfc980 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3e4843a uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3edf6aa save_fsgs_for_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc3fbaf3c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc4167196 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xc4177d95 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc446db17 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4584449 mmput +EXPORT_SYMBOL_GPL vmlinux 0xc46534aa dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc4661487 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc46afc70 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc46cd63e usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48e4459 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0xc49097b6 is_uv_hubless +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc493120b bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc493c0ce fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a56b95 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4aa6b4d phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc4aad08e pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc4bf206a bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xc4c53327 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xc4e149b0 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xc4ed4245 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f5b8fc powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xc50a05c3 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc50ecaac crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xc540265a xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xc54ade75 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc55245b5 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc55c2f3f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc56887d0 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc5811635 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc5832230 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc585a9b7 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc585f186 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xc58c93a6 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc59b39cc crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b1627c dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xc5b89e35 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc5c095f9 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc6055b9c sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xc60d8785 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc60df6fd dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc6165e0f sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61901f9 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc62904a2 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xc64266d0 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc648ff81 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xc64fbd7e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6740865 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc6767717 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc67a61c3 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xc681959d tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc687deb8 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xc69a8587 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a3f562 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore +EXPORT_SYMBOL_GPL vmlinux 0xc6b3e761 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc6c4d704 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xc6d9fe3b smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6ec35db rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc732101d perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc73a3257 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc743f874 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc75f0b99 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc7697084 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xc769a1ca iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xc794d099 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b32910 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xc7bc6a34 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c8872d platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc7d33ac6 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xc7d75b11 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc7e1cc1c injectm +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80ffc01 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xc8215f8a serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8436764 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85b066d enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc863969a pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc873a8c2 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc874628a ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc87704c9 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8868999 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cc73cd virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f162c9 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xc909db7b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc912eea4 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc93f9380 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xc94ad556 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96948b0 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc9821cd8 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc99605ea fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9bc0c12 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0xc9c23145 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cdcb36 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0391a7 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xca0a409a tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xca193cb8 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xca20dd7b dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca48a547 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xca7cc5ba handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaa403f7 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabec311 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcae968ce acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xcaf6a3f2 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xcb066b4d pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xcb0e5577 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1dfb32 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xcb2320b2 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb311cb7 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb613d66 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xcb66638a fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xcb75561a xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcb757c55 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9b689d devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0xcba4ddfa ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf54066 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xcbf7cde9 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xcc13276f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc34cf7a rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcc371b30 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xcc4e532e devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xcc522a57 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc55dddc ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc92c11f xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xccab5d12 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xccb82062 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd77d89 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce52007 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccea9652 pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd1433d4 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2a3f03 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xcd3ab274 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd58d881 skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xcd5ea2cd regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xcd6dae1d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd84a233 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xcd8ed5af md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda8bba9 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcefade ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xcdcf8a6f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xcdd2c350 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xcdd780e9 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde647ac pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xcdf1a4fa kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xce00de0b bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce321f07 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xce50af78 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xce523034 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xce564bed kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xce5e7ffb clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce75bfdf edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xce78cbc2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xce7fff30 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xce840982 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcea6a5a9 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcea79a18 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcec82852 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xcecc648e of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xced8bcb2 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xcedecd24 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceed8318 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xcf05f61a pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcf1912de ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf602a2d __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xcf639c18 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xcf773f2e arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xcf7bd499 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xcf88bcaf fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xcf91199d power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xcf97dbc1 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcf9fe559 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xcfa270e0 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb7a4bc pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xcfc50fa0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfe8cca0 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xcfeee16f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcff04be6 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd00404c1 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd007eb92 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd00fe730 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xd01f87f3 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd053d61b devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd0559a19 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xd058dcaf gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06d0b76 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd074b47b usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xd08bdc22 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0xd091d637 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b14b4d serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d0c5c5 kvm_async_pf_task_wait +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 0xd0f91078 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd1090477 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xd1155427 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xd1414f7e fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15bc0ee pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xd176922a clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xd1771411 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd17ffe19 e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0xd185b8f9 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xd18960da fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xd1a57655 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd1a622cf xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd1c53355 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd1ca5c0a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1f22da6 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbc889 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd209afce powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21a523f ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd223cae3 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd2286612 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd2453484 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd261d24b sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xd263ccd5 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd2af1817 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2bbbba3 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xd2c42de3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2ca01bf i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xd2ce0f58 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2dc920d tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd312565f dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xd3236121 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xd33205d4 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd34dd40b rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xd354de5d netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3686cbc rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd381ce03 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xd38eca03 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae14a7 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3b304c1 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd3bbde31 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3d74197 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xd3df8b27 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd3ffc754 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd4034645 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40f7fa2 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd44227f1 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xd444efd0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd458a0bd gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xd45e756d apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd461d2c6 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xd4626784 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4635865 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd474feb3 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xd47e457e security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xd49573ec virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xd499380c __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd4a19a81 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4a99252 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xd4ab40fd sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d7158c spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xd4f53545 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd51a1012 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd538229e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd542487d get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5425762 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5728a28 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd579b3b5 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd589e8c8 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xd5a4026e xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd5a62a27 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5b221fd rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd5b38fb4 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c06e8e clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xd5cb043f devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xd5cea3f7 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd5e6663d clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5fb0c99 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xd605dd85 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xd6076024 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd60b800a acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xd62b8f97 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd6456603 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd657503a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xd661b682 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xd6676020 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd66cf1ae nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xd66fc02f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd671f911 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67ae83d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xd685d4ad rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xd6ae985c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xd6d49f83 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd6fd8293 pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd71420af pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xd718c901 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd71b5f4a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd749daa1 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7636075 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77dac3d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xd77f2bc3 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xd7816545 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd79bdf4e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd7a7338a page_endio +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova +EXPORT_SYMBOL_GPL vmlinux 0xd7c86cd3 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d831ea nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7f37569 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd8044f8c regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd82a6e68 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xd83a5cf3 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xd83fe4ae class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd842d28e __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8508ca4 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd8640718 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd87d1e8c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8848aaa sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xd89039d3 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xd8908196 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd8a52ed6 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd8a9439e sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd8b8e337 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd8be9d29 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8d6a8b8 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd8f5ac16 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd8f979fe ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fc0a7d sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xd9046872 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd90753ce skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xd9110af3 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91c4bc7 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd92e08a7 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93461dd relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd9397107 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd96a0937 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9705c55 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xd98df7cd pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xd98dfaee netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9968e06 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd998b96b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd99c9b0f rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9a18a03 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xd9a8075c ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd9b380ce dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9e5c369 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xda15b289 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda22fcab usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xda278380 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xda29903f __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xda2f996a skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xda373b4c devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xda4fba8f devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xda9889a4 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa15fa7 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xdaa23516 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdabe512c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdad2f2e5 flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdb1f2d1c powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xdb24be42 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xdb4164da xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb52b88a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb5fa708 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb6127cd powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6b492a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xdb71ea97 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xdb728cd4 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb7c9311 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xdb7e76ef wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdba5d2c2 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xdbd85dce __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdbdcd4a6 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xdbe11eda kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7098a crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfea334 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xdc0014b7 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xdc095931 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xdc2c59f2 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc45fa24 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xdc47df6f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7af0fb power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc80929c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc91c234 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcab0ed3 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcb46029 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdcbdd233 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova +EXPORT_SYMBOL_GPL vmlinux 0xdce05f04 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdcec5809 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xdceebd71 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xdd05827e tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0a2b73 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xdd23837a platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xdd246cbe crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd38a945 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd433310 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdd5a064a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd71627d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd80f02c firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd931214 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdd9c6164 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xdda3eb33 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xddb0ffd2 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xddb41255 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xddbc66a2 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcd42b8 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6d614 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdde8abd4 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xdde8dc80 cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0xddf510e7 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xde0602ca nl_table +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde0cf082 __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xde0d2596 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xde1fc3b9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xde2f1794 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xde485069 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xde58b4f2 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xde67434f phy_put +EXPORT_SYMBOL_GPL vmlinux 0xde6eb90d cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8f2075 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdeb4ffac blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xdec0f32e gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xded2f8de perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xdee4b987 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xdef78019 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xdefaf50b led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xdefedb19 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xdf0150c8 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xdf0c6a9a device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2ee351 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf5d0ab2 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdf6ae231 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf7622ff blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdf9c5b22 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xdfc69833 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe4e4cd rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xdfe61f19 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xdff87474 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe002117d sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe032ee45 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0xe04fea14 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe057fa1f __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe05875f0 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xe05994c3 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xe05c8be9 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05f53ff key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe076f561 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe078f3f1 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xe07f4559 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09f293f __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe0a1deec nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b35d47 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0da89b6 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe0ef6ebe watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1116daf uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe13df6a9 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1414848 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe14ef5b6 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xe16ae39b usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe17073b9 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe170a6c1 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe17159ab wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xe171cf2e tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c86b1 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1b1fdc3 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xe1b358c5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1cda3c8 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe1d0f820 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe1d8efb1 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe1dec033 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1e0d23d input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1ebc0b6 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xe1f0a3d6 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xe1f35849 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xe202082d sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe216debb iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2302e47 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe243237a crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xe25afc1e sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xe2624eb1 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xe26564b8 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe2698a82 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xe2847081 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe29357fb __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a08f66 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b94fab ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xe2bcfd21 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2e45d6d bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe2e8e386 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2ec5066 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xe2fca77c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xe3005437 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31d4c68 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe36d020d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe3710ac3 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe38da618 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39c9d5d scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3ab113c to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cbe5ed dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe407cf15 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe413f7ba wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42a094c pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4481200 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4546c26 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe45b9e2e rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xe45fd606 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xe4816eef phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe48774a9 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart +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 0xe4bdf8aa dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4d52919 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe4e40d69 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe500e651 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xe50ab67e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe519d301 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xe547b8c2 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xe54f0662 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe5528c1f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe55e6f52 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a228d6 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xe5a66415 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xe5ac720d get_device +EXPORT_SYMBOL_GPL vmlinux 0xe5be2134 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xe5bf7d39 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xe5c1bde2 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xe5d76d8c virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xe5eddc55 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe5ff62dd badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe6157b4e set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe61e90e8 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe639e1b0 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xe63b6fed pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe64669b7 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6629c05 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xe662fb5f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe66880a6 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe67de29e dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xe68949a2 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe68a11a4 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xe6dd6032 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f52583 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe7033432 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xe708d410 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7252660 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe7306f56 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xe73dd5ef xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe749a821 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xe74fb57e device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe762fa0c dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77437d7 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe786920a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe78993b1 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe7988960 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe79f4d25 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7b385ad fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe7c79d1e gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7ea3cca sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f6f425 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7f87a36 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7fa3135 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe805c908 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xe80ded2e power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe835bdab fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xe83665df pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85bd585 pwm_lpss_resume +EXPORT_SYMBOL_GPL vmlinux 0xe85c18bd usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86f3ef4 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xe8887437 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe88be5c1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe890083c of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe896c812 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe8a3d15c class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8e08de8 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xe90a0eee devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xe913588b fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xe91939f8 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9223b1f devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe924add1 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe937415e devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe938879f devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe9395efd blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe944addd io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe94b0f4a devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9898ed2 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe992d11d attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xe9a35d75 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xe9a3c1fc iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xe9a64b15 dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe9c663cf pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe9cc396b class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9de4fe0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe9e0480b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe9e32463 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe9ec4cce device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xea029111 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17f9b4 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xea3a9517 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xea5aa7a1 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xea73973a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xea7c446d nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xeaa559e4 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xeab53348 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeabd6515 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xeac99767 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xeacb4146 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeacc5635 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xead4ec8e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaede6f0 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeaef3634 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb0b8222 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xeb1b99b3 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xeb2a91e7 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xeb2df754 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb60efb6 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8a082d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xeb8e09e4 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xebc5ce96 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe6540b clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xebe76479 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xebe79a22 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xebe860d4 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xebef92c1 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xebfb4ba2 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xebfe523c devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec006f8c nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xec02fa35 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xec1628e6 pv_info +EXPORT_SYMBOL_GPL vmlinux 0xec2085b0 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec4a689f skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec73ae1a device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8b1d4c sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xec98b8ea irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecd05a15 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xecd5b5ef PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xecd72301 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecf27912 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xed0d3421 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xed0f1d66 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xed23701c bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed27a563 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xed40c481 kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0xed40f284 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed4346b6 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xed4c923a sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xed4cda77 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xed4d603d sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xed73fc30 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeda1e064 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xeda5a1a5 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xedb13916 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xedb6a86e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd0a27e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf99e58 fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1b003b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xee265e3b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee2f0908 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3b4d2e sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xee3b7dd2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xee3d0953 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0xee51aadf virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xee66b03e debugfs_create_x32 +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 0xee7ba421 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xee7e4131 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xee9fcda6 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xeea5988a fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xeeae8b14 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xeec587d4 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xeed03bbd ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xeedc4d01 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeeeaf3e6 component_del +EXPORT_SYMBOL_GPL vmlinux 0xef1867d3 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4fa5c6 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xef546230 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xef582b4b gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xef6261e1 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef734ea2 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef95975e __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefae560a inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xefb52cef regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xefc67b81 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xefcccb91 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xefd94f1c scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xefda956f device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xefe6c418 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefed5337 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf01996f3 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf035dfd7 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04883bc fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf04e7598 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xf056e25b class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf07daa6e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf085eb62 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf093fea7 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf0b25fb0 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xf0e718c3 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf124e8f5 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xf135b2b0 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf13d5309 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf1455540 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xf151d57e gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xf15aeb95 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf15b9c52 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf17b3cf0 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf17d8df4 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf183b418 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18bc766 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf18e50f7 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xf18fa0c9 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xf1950803 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xf19611fe i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1ccbe60 trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0xf1e8cb73 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf2127abc hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf21aed0d cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22edb0b rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf2366fe0 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xf23cfad5 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf2531f4d uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xf26487b2 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27e4039 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xf2822805 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf2836d1c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf29aa0a2 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2a93860 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2ba18cf clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf2c13a06 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf2d02391 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf2d33ae3 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xf2d4696e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf2eaebc3 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf308fdca dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30d526d regmap_bulk_read +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 0xf3223d30 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf3291475 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xf32bda54 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf336bfd6 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf35d01ba regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf3754183 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf37b6055 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3954f31 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf3a813e5 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c08385 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xf3de3ef0 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3f9fa72 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xf408ce23 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf40d1c26 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xf41e861b regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xf43108dc ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf43f960a get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf44c8fdc follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf4524da0 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xf4693a66 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf47e020f cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xf492bf1a extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xf49406ca inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xf49d700a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf4a00de5 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4cad405 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf4cb27e6 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf4d4f218 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf4f337d7 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf4fa7eec dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4fea098 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4ff0cf1 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xf5282588 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf528899b xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5388ba4 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf5427878 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf54ae8cf __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5a0c53f fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bf94c9 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5caa487 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5e4dd1c vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f9ce65 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5fa240a serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf5fec69d serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xf609a0b5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6179d0b mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xf618c6cd xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xf61a2a46 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate +EXPORT_SYMBOL_GPL vmlinux 0xf62592de max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf646b5f7 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf646d816 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf659f4bf fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf68e7b95 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a9c52d xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf6b6ab6b __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf6b9a4ba ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf6bbc6d8 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xf6beb7d7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xf6e47674 ip6_push_pending_frames +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 0xf6f37ce1 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf725bdb8 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xf72bbfa2 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf7347d21 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xf736bfcf fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf754289a devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf765b1ea skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7686e76 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf79c0b61 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xf79c3971 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7a9d322 cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf7b22b88 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xf7bbcfe1 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d53cb6 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf81ff97d xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf8273f9e ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8488f08 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xf84d866a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf87097b4 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8810f08 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf8b081d8 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xf8bc4cdb acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xf8c1b9f8 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8c3521b acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf8da2769 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f578d6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8fae71e dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xf8fde482 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf8ff11cf dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xf9177546 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf923cb0a edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf9263962 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xf92afe9d xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf9309226 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9748959 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xf9832510 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xf98e7136 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xf990ff33 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf9933371 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf9958458 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bb0d81 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xf9bc8112 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9c8e619 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xf9da96fa fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf9e9e199 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf9fce28d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xfa123f41 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1a9ec4 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa38a432 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xfa3b2e3b inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6b2b58 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa7eb330 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaac4951 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfab1ff26 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfac0ad55 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xfac0d26b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfac55f46 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xfac97c51 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae655ba driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfb13dd2e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xfb269097 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb475089 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfb4e74f4 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xfb56d141 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xfb5c0af7 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb60ca09 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xfb62135c vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb72660b iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xfb78b237 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfb878164 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfb97c469 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcf90a1 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xfbd5c495 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xfbeb43df vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfbee7cd7 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xfbf1df28 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc02d028 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xfc0cc856 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc121367 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc24bfa4 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2844e1 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfc2868eb dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc37c1a8 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4b18f2 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xfc4fa3d6 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xfc604c61 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc731b07 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xfc7539be iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0xfc8ddd61 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xfca06861 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfcb348a9 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc7b46a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xfccb5e91 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcd14750 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfcf7807c pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfcfd880e power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfcffdb47 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xfd03444b iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd561190 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xfd61c21f fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xfd685e0f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd73e049 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfd825a3d pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xfd82f905 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xfd94ddcd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xfd98837b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xfd9960fd kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdea57c8 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xfdf53f1b pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfdf8f8ae pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xfdfc9e5d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xfe01473e pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xfe04ff67 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe2e66ef irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe373cde iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xfe3e850e pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe58615c devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xfe5a5b40 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xfe61ca6d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea50f6c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xfea73175 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedc9093 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xfedce296 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xfeecce4f inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef38a8e devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xfef92265 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff13c23a devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xff17cb4c __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2df441 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xff2f9212 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xff31c62e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xff3a9510 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xff52312b cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff643321 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xff73f0d3 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb350e7 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0xffbea65e devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xffc5939c iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xffc60c9a sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xffdff39a gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xffe27221 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xffeb39f6 tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0xfff0cc49 mmc_send_tuning +USB_STORAGE EXPORT_SYMBOL_GPL 0x0d678b3d usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1ccf1ea6 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29b662a2 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x31062a2a usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x32e1ab6c usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3ed3b3b0 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6e236600 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x79b12217 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x82e57088 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8992f23c usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b1c3de3 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9562289a usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a6f45b1 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a7b2997 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa99773b0 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaacee812 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xafd7b0ef usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc41a3073 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcda0e97c fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf2099e8 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd58ed3a8 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf1b82a3f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfc50ee11 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xff9e2841 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/lowlatency.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/lowlatency.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/lowlatency.modules @@ -0,0 +1,5506 @@ +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_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +BusLogic +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +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 +act8865-regulator +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +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 +ahc1ec0 +ahc1ec0-hwmon +ahc1ec0-wdt +ahci +ahci_platform +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak7375 +ak881x +ak8975 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-rng +amd-xgbe +amd5536udc_pci +amd64_edac_mod +amd76xrom +amd8111e +amd_freq_sensitivity +amd_iommu_v2 +amdgpu +amilo-rfkill +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +anatop-regulator +ansi_cprng +anubis +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apex +apple-gmux +apple_bl +appledisplay +applesmc +applespi +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquantia +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +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 +asb100 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +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-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avm_cs +avmfritz +ax25 +ax88179_178a +ax88796b +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 +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs-drm +bonding +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +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-j1939 +can-raw +capi +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 +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-pltfrm +cdns3 +cdns3-pci-wrap +cec-gpio +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha-x86_64 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8505 +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +chromeos_tbmc +chtls +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cio-dac +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-max9485 +clk-palmas +clk-pwm +clk-s2mps11 +clk-si5341 +clk-si5351 +clk-si544 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +contec_pci_dio +cops +cordic +core +coretemp +cortina +cosm_bus +cosm_client +counter +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpu5wdt +cpuid +cpuidle-haltpoll +cqhci +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +cros-ec-cec +cros_ec +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_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_kbd_led_backlight +cros_usbpd-charger +cros_usbpd_logger +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +ct82c710 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da9030_battery +da9034-ts +da903x +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_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +de2104x +de4x5 +decnet +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +dl2k +dlci +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-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dps310 +dpt_i2o +dptf_power +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-edma +dw-edma-pcie +dw-i3c-master +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-pci +dwmac-generic +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 +echainiv +echo +ecrdsa_generic +edac_mce_amd +edt-ft5x06 +ee1004 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehci-fsl +ehset +einj +ektf2127 +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +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 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_ddc +fb_sys_fops +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fjes +fl512 +floppy +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fschmd +fsia6b +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +ftdi-elan +ftdi_sio +ftl +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_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 +gasket +gb-audio-apbridgea +gb-audio-gb +gb-audio-manager +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 +gdth +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +gigaset +gl518sm +gl520sm +gl620a +glue_helper +gluebi +gm12u320 +gma500_gfx +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpd-pocket-fan +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-adp5520 +gpio-adp5588 +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-beeper +gpio-charger +gpio-crystalcove +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-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-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpu-sched +gr_udc +grace +gre +greybus +grip +grip_mp +gru +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd44780 +hdaps +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi311x +hi6210-i2s +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hio +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wireless +hp-wmi +hp03 +hp100 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +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 +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hyperbus-core +hyperv-keyboard +hyperv_fb +hysdn +i10nm_edac +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cht-wc +i2c-cros-ec-tunnel +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mlxcpld +i2c-multi-instantiate +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-parport-light +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-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i40iw +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +icc-core +ice +ichxrom +icp +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx214 +imx258 +imx274 +imx319 +imx355 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int3400_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-rng +intel-rst +intel-smartconnect +intel-vbtn +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel-xway +intel_atomisp2_pm +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_cht_int33fe +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_menlow +intel_oaktrail +intel_pch_thermal +intel_pmc_ipc +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl_common +intel_rapl_msr +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +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 +intelfb +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_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 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +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_cxgb3 +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 +khazad +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +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_gswip +lapb +lapbether +lattice-ecp3-config +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-adp5520 +leds-apu +leds-as3645a +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxcpld +leds-mlxreg +leds-mt6323 +leds-nic78bx +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-ss4200 +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +legousbtower +lg-laptop +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +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 +lmc +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lockd +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_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 +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max8649 +max8660 +max8688 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +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 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-thunder +me4000 +me_daq +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +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 +meye +mf6x4 +mgag200 +mi0283qt +mic_bus +mic_card +mic_cosm +mic_host +mic_x100_dma +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +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_sound +most_usb +most_video +moxa +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi-laptop +msi-wmi +msi001 +msi2500 +msm-vibrator +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-quadspi +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxm-wmi +mxser +mxuport +myrb +myri10ge +myrs +n411 +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nand +nand_ecc +nandcore +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nic7018_wdt +nicpf +nicstar +nicvf +nilfs2 +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_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvram +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_xilinx_wdt +ofb +omfs +omninet +on20 +on26 +onenand +opa_vnic +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +panel-raspberrypi-touchscreen +paride +parkbd +parman +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +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-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 +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_pcmcia +peak_usb +peaq-wmi +pegasus +pegasus_notetaker +penmount +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-cpcap-usb +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-denverton +pinctrl-geminilake +pinctrl-icelake +pinctrl-intel +pinctrl-lewisburg +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-sunrisepoint +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +processor_thermal_device +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptp_kvm +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pxa27x_udc +pxe1610 +pxrc +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qca8k +qcaux +qcom-emac +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom_glink_native +qcom_glink_rpm +qcom_spmi-regulator +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1b0004 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +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 +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rndis_host +rndis_wlan +rockchip +rocker +rocket +rohm_bu21023 +roles +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-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-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wilco-ec +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +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 +sbni +sbp_target +sbs +sbs-battery +sbs-charger +sbs-manager +sbshc +sc1200wdt +sc16is7xx +sc92031 +sca3000 +scb2_flash +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_fq +sch_fq_codel +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 +scif +scif_bus +scr24x_cs +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +seco-cec +seed +sensorhub +ser_gigaset +serial_cs +serial_ir +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh_veu +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shark2 +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skd +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm3_generic +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc91c92_cs +smc_diag +smiapp +smiapp-pll +smipcie +smm665 +smsc +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-acp3x-pcm-dma +snd-acp3x-pdm-dma +snd-acp3x-rn +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-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-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-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-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-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-rn-pci-acp3x +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-skl_nau88l25_max98357a +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +snd-soc-acpi-intel-match +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-bd28623 +snd-soc-bt-sco +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-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-imx-audmux +snd-soc-inno-rk3036 +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-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +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-rt5660 +snd-soc-rt5663 +snd-soc-rt5670 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +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-skl_hda_dsp +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sof_rt5682 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-acpi +snd-soc-sst-atom-hifi2-platform +snd-soc-sst-bdw-rt5677-mach +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-byt-cht-cx2072x +snd-soc-sst-byt-cht-da7213 +snd-soc-sst-byt-cht-es8316 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-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-firmware +snd-soc-sst-glk-rt5682_max98357a +snd-soc-sst-haswell +snd-soc-sst-haswell-pcm +snd-soc-sst-ipc +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +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-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd9335 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-acpi +snd-sof-intel-byt +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-intel-ipc +snd-sof-pci +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-intel +soundwire-intel-init +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sps30 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +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_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmmac +stmmac-pci +stmmac-platform +stowaway +stp +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +stx104 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3-wmi +surface3_button +surface3_spi +surfacepro3_button +svgalib +switchtec +sx8 +sx8654 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_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 +tea +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 +tgr192 +thermal-generic-adc +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-ads7950 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-tlc4541 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +topstar-laptop +torture +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +uPD98402 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +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_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uv_mmtimer +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl4000 +vcnl4035 +veml6070 +ves1820 +ves1x93 +veth +vfio_mdev +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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 +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt-dma +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +visorbus +visorhba +visorinput +visornic +vitesse +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvrdma +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vop +vop_bus +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wd719x +wdat_wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wilco-charger +wilco_ec +wilco_ec_debugfs +wilco_ec_events +wilco_ec_telem +wimax +winbond-840 +winbond-cir +wire +wireguard +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x38_edac +x86_pkg_temp_thermal +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-plat-hcd +xiaomi-wmi +xilinx-pr-decoupler +xilinx-spi +xilinx-xadc +xilinx_emac +xilinx_gmii2rgmii +xilinx_sdfec +xillybus_core +xillybus_pcie +xirc2ps_cs +xircom_cb +xlnx_vcu +xor +xp +xpad +xpc +xpnet +xr_usb_serial_common +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 +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zunicode +zx-tdm only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/amd64/lowlatency.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/amd64/lowlatency.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/arm64/generic +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/arm64/generic @@ -0,0 +1,23588 @@ +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x986e5304 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0xcdb6a418 sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x20a6e4d5 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x2973327e crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x307fbaf5 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x3e45e99c crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x85f28747 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xfa3e0444 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x2a416ab1 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x3292c279 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xae018202 crypto_sha3_update +EXPORT_SYMBOL crypto/sm3_generic 0x79072a7e crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x90b46a51 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0xceec93be to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0x404d43d0 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x48849443 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xb4d6392f bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd16b29cd btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x65207fa4 rsi_bt_ops +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 0x17097b77 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x324b101e ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8fec9eba ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xe679701a ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f8f4119 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x67220bcb st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf627be6f st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfdb41100 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xca3b2a37 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdcecc8d3 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xff1fa626 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x65b4050b atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x66ba1ef2 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb0d15078 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x0a2225c8 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x2dadba3a 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 0x625ae743 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x792a7187 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3ec96b2c gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6f79c283 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8c9f2a1e caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa52a637c caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xec34b68e 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 0x4220539e dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x71899376 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x9d515eba xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x063f37d6 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c18c7dd fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ec17a44 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17eaba48 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x24022314 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28961213 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x29f4ae00 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36f305bd 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 0x3d9ce9ec fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4b333a7b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x59f2c1b9 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6f3f1062 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x857d56ed fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x91248f7e fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa273479a fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2f61818 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe2e1204 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xca89b82e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb94cb80 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcedc4165 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd12d207e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1b39c97 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdd9052ee fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe102383c fw_schedule_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 0xf3d19d50 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd8db49d fw_iso_context_stop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f72059 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01565c15 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021c5c26 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0377a2b4 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0449f6f0 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0458007e drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x047125c6 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0785dbd1 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b40e1f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b40af2 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09881821 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6821dc drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cac8712 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d10067a drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de5c074 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f134611 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3840ee drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f99ad45 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff7e341 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110d757a drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1246b42c drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13129f10 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x135017ae drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14520a5c drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x181ca1a2 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0b4af1 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c36de64 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce557e8 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e864d79 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd9cba3 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x210c9142 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22160f18 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228dea0e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229f66ef drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2384cb5a drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23caa32b drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2432adb7 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2438092d drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24eb23ef drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x265d6575 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270805fc drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x277faeaf drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282492b4 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x285f6fb8 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d59fda drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c09a052 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c7a5053 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e56a25f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f15b9b5 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe7d772 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c96299 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31048a0e drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x311ff9a9 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31461b28 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x318e6658 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x320a51c2 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b3fd45 drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33fb738f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34803811 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a181e6 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c8b192 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a1c5ab drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x365fb11a drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37237496 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x373ca4d5 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3773e38d drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37aafd09 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37cbf999 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab5aa9e drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3adefa09 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1ddcf4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce03ccf drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d9fd17f drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dbc5b57 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df0f484 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f29eec4 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4282d218 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bec25a drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b7bb03 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44ca7ed1 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x473aca47 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483fa166 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f30e9d drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490d0a50 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ffd5a3 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a246e96 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b43801a drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7c3ce9 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b88b36e drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be00515 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0cf29d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1c8450 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4faf7dc5 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x501fd813 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x503d7b46 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50464e96 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c412d0 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f6f9a6 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54da002e drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x550e1d67 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b13145 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55de1efa drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56029c44 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c73d77 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ad752b drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59479515 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5949ee6f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b69b93e drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bde4abf drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5b9ead drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f28c273 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5a02a9 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd43696 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60226af5 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60227114 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61b5066a drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a7fe3b drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630c931f drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6401f27e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645ccee2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a2a591 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fed912 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6513aca9 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e0c4be drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x673a5f77 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67470e45 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f105af drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c16ca3 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aa3c338 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0e0f76 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c237f09 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cec633a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d8027af drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb89023 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed2a5d3 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3549f8 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fe52228 drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706f1ab5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70baac0f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71756e26 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719d0bf9 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bb0054 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x735af539 drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c627e8 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7592173a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a74169 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x761f71fb drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x766021d5 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76988a61 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a1060c drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b79294 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77532960 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e45059 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x783a51de drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7876dc1d drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d9dbbb drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796bb3f5 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7987b6cb drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0a83f1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0b408d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c706a88 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca0833d drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4af034 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e22becf drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f28aee2 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f544f89 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5d3959 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83988869 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83bc667a drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de5ff9 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c23ab0 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87928cce drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885ff04e drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887dd946 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88977873 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897044a3 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8adfedf0 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c06514e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5c4734 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5f87e6 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e79e88d drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea78d60 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eaa959c drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f41067b drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x906fb802 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90dc506b drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90defebc drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f35982 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b25cf9 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x928c622e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93037185 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932b0eb9 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93d104a5 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93da080e drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940b663d drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943e1106 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ed2203 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9572340b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97242d68 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x972edfc3 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97989402 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98dd7622 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9930e0d5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x994c6a2f drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99775ae8 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c5e388 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a55e6f4 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a64444c drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab11f79 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b7af66c drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b93be7a drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baeac39 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c30dfff drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d51060f drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df5ad6d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9edbbcd6 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0284eb drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fce8870 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa11f7e07 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa321e974 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa326a4c0 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3525693 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa477055d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c10681 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5386af0 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e64500 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a5902c drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a9194e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab90e904 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb4d54a drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaefab39e drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0c320a drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf441ed7 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf826dbc drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafc06dd5 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb070a6ce drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb10c1fc7 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15d71a8 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15fdb33 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e81353 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3503915 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62ad63f drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6554fc4 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb771e5ce drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83b6f00 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84d1a1e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96e446f drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0c06a9 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbf3d69 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce48e0b drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd4c21bd drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd677997 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcd6b8e drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef787e8 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc083553c drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14b7cb3 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1863e12 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc295efec drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2cf24b8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f76b5f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4fd637a drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c10336 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc644fd86 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64c53e4 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc68ac18e drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73cda3c drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7fdd486 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87d7e23 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97a9884 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a06206 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f6bc72 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca774f20 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadef538 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3d09d0 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc798c6d drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccade4c5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd33ce8d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3bea28 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd6dacc5 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd90a170 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce02ce24 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4f55c3 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf05279b drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf75e2a5 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a8c726 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd336b6ff drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37470fb drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52f93f0 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5441eca drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54f6ff1 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5601fb5 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c2cefd drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6288911 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd644be70 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd662d111 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80f01d5 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8beca59 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9452748 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96229cc drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98bebbb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a6bf00 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3ba323 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb144e1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc424399 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc780bc7 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd592615 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd616a3e devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd69c818 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb32468 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6dc014 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfeeff07 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0afa4ee drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11fe169 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1531c35 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ffc3a6 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe220c3cb drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25f1678 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31b8def drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3af7c6d drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6279d3c drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe69e2ef5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d64225 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe705ad7d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71a9703 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8abdbb5 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91cc2fc drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0e1b26 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea78a3bd drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1fbe8b drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecac51ee drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf58a3f drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedca0a2e drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee72e691 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea3324e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb5388a drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf088d95b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b68bdf drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c53bb7 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1ff5a5c drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2687981 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3179bce drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31b8918 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf36dbe13 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a78d31 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4090c09 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4695446 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46c7a22 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48753c4 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54b6269 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf645767d drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70affaa drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf721ec89 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84b3d6c drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91da90e drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96b0a49 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac3fbb4 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1df521 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeeae6ac drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa2ff6a drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00aefcdf drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f15642 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045c0b84 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0623fadc drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x082c6e05 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0899757d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a915ea drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x099b92f1 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a1a3d92 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b10197e drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b6eb4c4 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9be379 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d2baa27 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df2623f drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ec901d2 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe1b117 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134240cd drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d750c0 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17fd4a2b drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a7a8d69 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bcb3b37 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be54366 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c2ef68b drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e3cd98a drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d0dde0 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2455b9bb drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24cbb50c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25523804 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a9a1645 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b57a17c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bc2bb24 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ebf1c5e drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f73197d drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31542e60 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3196a063 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3197f529 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32d82ce3 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x367ad582 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e18de6 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e2c784 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x387c8487 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3892bed6 drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39251d65 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3960624e drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b92cd16 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b93c3d1 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5597d4 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3efada9f drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x415475f9 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x418303f2 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42a3f962 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f71385 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f752e7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f836c5 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43a1b12f drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x447e69fa drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448fffe5 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a7307a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44ca41a9 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45aa21ed drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f26875 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47be1326 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48c8bafa drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a57f072 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a6e27a8 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c349099 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce8b0a3 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x504bfc20 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5121d12d drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543f20da drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54761488 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x563e6b50 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4a45c5 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c11c2c4 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb6e450 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x612e4562 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f94c76 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x622e60cb drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62f389e5 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef872ec drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdda8a4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700de167 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70717db5 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x726b7b9d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x743e6b9a drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750a8711 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7579cfa2 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7611c902 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x765b1bfc drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b3f3f2c drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e02cba8 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8312ea6c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85955c7a drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8652df51 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8795c80c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8840441f drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88667de0 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89b9f62c drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bf5d4ea drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1933bd drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb726de drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f4f6e41 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fd68ae6 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e51658 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90fbb105 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91168dd6 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91ad0403 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9361f50f drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93673592 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x938ab852 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93d49e8d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94b0fb53 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x963bbecb drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971cf4ea drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97cabc7e drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98828e0b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9898e9cb drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9917cad6 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9938432e drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b568183 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c13def9 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c945802 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d59cd19 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db89f25 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc7a83b drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa23e6816 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa40f38a9 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa46e0a9b drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47bd046 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa55f26de drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb79dbe drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad542133 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb5a636 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae482fea drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae720b9a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf61e4ea __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb087aa0f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb08faef7 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb38d5ec4 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5ef1eed drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69deeed drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb860ff08 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8a65e4f drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba74b233 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba9b64ad drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbdd72ac drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdac8cc1 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef040d5 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17e1945 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2226b31 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3bcde01 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e9dec4 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6818408 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84c4a34 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93fbf59 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0aa2de drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9ee676 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb46dc20 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc18830c drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc18e5c0 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc4f3920 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd08ca65 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce67ef31 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf658b89 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfad2b25 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd00488ff drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd51a8bda drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f32047 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7045b5f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd76c2e4c drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e57b2c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd96a3dd5 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdab4973e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde1010d1 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe04537f4 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe08ae89d drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b25e34 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe12fe6a1 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe159e6aa drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe181969d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6847658 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74e9147 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed9bd630 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf040f370 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04adda7 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf13b65bf drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf31da4d4 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3fe56fe drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5d37208 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6945f03 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf86ca454 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf971e834 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9f4fb70 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc9b7045 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6fcf60 drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2069246c mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x46551dd0 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x475b04e5 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x51ff52dc mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x574ca299 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7305eb4f mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9df1ce2f mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa2ac99f8 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa62d077a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa70c3146 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb70e1a0c mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba13f821 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc20342fe mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc877bef9 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb411595 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcff49ba0 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf9626af5 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf98f25e7 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x22d4f92a drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3862b744 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a951830 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x45caa5be drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4bb8983e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x52b557d0 drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72255b58 drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x76fb0922 drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7ea09b11 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x887e0bea drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x88823347 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8b36fa79 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9eaa8d8b drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa08853bf drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa4ac3205 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8bff60d drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc3fc1d8b drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdb3c0769 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd7a375b drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe78d70ef drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x1e6dc556 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x092ec9b4 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b73bb7f drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b0e7d17 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24948d55 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x44375965 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d9e1bea drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52a0c59c drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6184178e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x681d83e7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75feca08 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x78655257 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x97afb42a drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae153f66 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb3700088 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xba8855b3 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc4a51fef drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb7fd256 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfdfb13b6 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfefcbce2 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x10a73639 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x21223ff9 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x23d1b2b9 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x52def0e2 sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x60faf40a sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xfd72a78b sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x41beef65 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x911fffbb sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x97008c97 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb2fbe89b sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xc6c9f91a sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe08f1827 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x11c711f0 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 0x3d1f00e1 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03ceac56 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07da59f8 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ecc404c ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11d7bc50 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x152d14b7 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c04d091 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cad8efc ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dbc2488 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e89003b ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29767228 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cf42ea9 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x388d8115 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39ee9f30 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cac5b40 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ccc77f0 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4103fe35 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43c92196 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48d440fe ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51c93f9e ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x527d7398 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54fe9ec0 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55133dbc ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58a9cfa0 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a0d1699 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d4bba9f ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ecd038e ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ffed244 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60a25de4 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6545338f ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66b63615 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68a4340c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7368ea1d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77245ff9 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cdb95e6 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80f45923 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81b453b5 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x841b066f ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86275eba ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87fabd30 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cfd60fe ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90481edd ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x926067c1 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93ac5d4c ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1ba045f ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4298788 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8eab386 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae581d38 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5e87279 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7aa9b67 ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8fbbff1 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbeb77dde ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf0d254e ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd40fb2a2 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd88c1270 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd93ba83c ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc5bb1a7 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde0ed454 ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf699195 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe46f8619 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedc93017 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf49de21d ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa2971d0 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe949b65 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/hid/hid 0xebc4f716 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x08179f05 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x28e9f04f i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8b980491 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdaddb72b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x88925a8c i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcb75755b i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x6c0d35c8 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5ed611c3 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x8d781257 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x8f31d0d6 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x07d25573 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0fb0a082 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25852fc7 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x56d0704a mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x599c161d mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f6b49df mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6d02a33e mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7a700122 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x900dbb87 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9f6362e4 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbe47f47d mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd0b1be89 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe0a913b1 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3c5396d mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf992ffd2 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb16ba8c mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5bf0c1e9 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xca492dcf st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xf29f5c8b st_accel_common_remove +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1c680ae1 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7a4407d6 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x247e2f8c devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7e25d9fc devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb4346cef iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xeb95be9a iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xc8c0db0a bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x36adce80 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x99d108b5 hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xadf1d0ac hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb99b638e hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc57d5987 hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd3d448a6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd735966b hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe2b37f8e hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf1555aa4 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xfe196d06 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x02b98647 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x10158067 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa0e80fe8 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc37e5445 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x079f345c ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0ea8fee2 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x15dedf82 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x531cd695 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x83a7983a ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb343b0a1 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc0c9f2d7 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc6521ec7 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcfe14137 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2b1321ff ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x32f2b3ae ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x52179513 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7ff868c5 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x88b7481d ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1868fe17 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x44668d93 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe80250ab ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x047474ee st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x117c9978 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a0049a2 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ff7dd4d st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x282e5e73 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2de7134e st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a5e864e st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5e99dd6b st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x785fa522 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b99b1db st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99a91890 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2df7cc5 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xde7da91e st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4721240 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xef9721c4 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4344da5 st_sensors_of_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfb2c730e st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd400a7a st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x11eddc19 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x129b263a st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x4aceb85e st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x511fa361 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa1fbeb9d mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xeb5d2a69 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x363ac75f st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa8fd4637 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb693c469 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x1a6db3fb hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3dd55715 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x2cc1566b adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x3eac3db6 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x9bff0e1e bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x1e0ed1de st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7f2aa3d7 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x01fd3c82 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x04aeb9b7 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x147dd5f8 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x1f7928a6 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3d07f860 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x44a250b8 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x523bb4d9 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x5856144a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x8a0956b7 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x97f726f6 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x98e23fe1 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x9e30d480 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xa8067c4d iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xaf0db013 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xb89f15d4 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbc7aac21 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xbd810876 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xce2d0442 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xd15bbf89 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe00e75c0 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xe7efba49 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xf5077ec4 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xfabbf691 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x773b4288 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7ad6cb38 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7e496f5d iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x865637df iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbe68351a iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x298d1164 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x435d085f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7c1e20a5 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe84e6be0 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x35baf7ae iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf7c61abb iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x209408a2 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x5c711308 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0ca60eb6 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3aacc35c bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x70aabae4 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xee63d434 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1b21c198 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3fea2bb2 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x83498e41 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xf296858e hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7df8b474 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa7ce0cfe st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd320634b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3ccc627e bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x67194d73 bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x95099ab3 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd64abf1c bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe580ce65 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x0e15da2a ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7ca66753 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6208c894 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x73794fe6 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xcc2d0781 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x078ff83d ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ba20936 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13e8dcea ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3650d193 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37954f03 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x562c7af6 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69538ab1 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x732e63d1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f350de0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9d880c27 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa12a59e2 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6097df9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7b522ab ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7cca36f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd54a0474 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdfdcb1a1 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe1a6891b ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb3ae707 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01df24c2 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ab5f5c ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06f36500 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0840fdb7 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab02dd7 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9f96d3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5eae07 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108762b5 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1091e1a8 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d51a32 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x133b6346 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13d66516 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x160d6427 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1959a5e2 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19bf4474 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ab19efa ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bd3f06f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c52b56b rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca673d6 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cc0f664 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ed74215 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f84a12a rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20d8c183 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x216a6d1a ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22dcf075 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x244c01ec ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x262e0644 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x266cd5b1 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x289c1bad rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292f6d37 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae880c1 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b6465b6 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x313c9831 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3216dbf2 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32fa69b2 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3355bd94 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d4ea03 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x391efa2d rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af80a5a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b88b908 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d53c85b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e3ccca0 ib_destroy_cq_user +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 0x44d98653 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x464bc35c ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x472bdc28 rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48651b5e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48db11c3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c192e4 __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49fe10b5 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b2bc59f ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cac5895 ib_init_ah_attr_from_path +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 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51648565 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5188444c rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x539167e7 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d6763c ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e51a8d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57576e8a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c1daf8b __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d42238d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efa6669 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x606680c3 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6110ee96 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613ae3b2 ib_post_send_mad +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 0x62353c45 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62c1f940 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63344a60 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65c39346 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66a1172f ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6744eca9 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67eef34f ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x687f1ad5 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x690e9a7b rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7c82e1 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cc6801d rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2673eb ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e43049d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x730d8458 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7473d247 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75ce4077 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75fd3dd3 ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x788232fe ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78e39e69 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799483c6 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79dd96ce ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a4f1b3f ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a816dda ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e212cc1 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1b3029 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f8c3955 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x807b2ea3 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8243a2c4 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x825f7d0c rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84fc7542 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8565455b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87e51bb6 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x882cab44 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88734a7a ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88938dff ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x896fb4d3 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89bcdd69 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e22a9df rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e23733f ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e70cbce __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905509d2 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x928347c8 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93422425 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9381b0b1 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x940e732f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95102364 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95587919 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96543275 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a76327a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c6a1c5a rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d6f452f ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e39a732 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa12a7335 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f974c5 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa208de1c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa20e53d8 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa557132e rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab713aa7 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd2f7a2 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2284ba ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadefb862 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00fe5dc ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d8afce ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb285a65a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb29b7a5b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e8fa6d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb39b7103 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e2feb0 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6088819 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6364210 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7bb8843 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7be1fca ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8239fb3 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb864cae2 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde67916 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1235cd2 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc20febf7 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc231c23b rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc25da1e8 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2abd7f8 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2e5c91a ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3313428 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc592c1c2 ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc83a8673 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca574587 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac38a55 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd4b841 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc023c9c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf8bfa3d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd07481e7 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e7695c rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f8b44a rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd603fb06 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd632086b ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd772bcd6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a4f325 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b7207e rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9956879 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda513ca6 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf0533ff ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf17b12a rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe02aa65e _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe138b79e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35ee9e8 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46b2b6e rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe53733af rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe54a500c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe87b1f1f ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c6b1fa rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95c1c14 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeafa6c5a rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec7ca954 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed897d03 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea3e833 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeee41239 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf12274fe __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf16b416a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf24e90f7 ib_modify_port +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 0xf83bfa15 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8512cd0 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa7bf49e ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb179a80 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x037cfcea ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e2550be ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1aaa7b7e uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ec263e8 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2631e7a5 uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ac39109 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d52e9d3 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3211a523 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37ec4755 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3efe2dfc ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4748a566 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47ec861c ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b1b1dd8 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53e76c8d ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63d22553 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68a6b73d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8054926e ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8786cd09 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b6426ac ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9150d9aa ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bd7849f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7cc49dd ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0303dce uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9595905 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca285201 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdee942a8 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed03857c ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf02bd89e ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9d56d96 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfebf0826 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2a86cf3d iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5946b580 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5dc42229 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72b884f2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad3f99c9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbda0e29f iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd2d0345e iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb60920f iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00efb672 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0625fd85 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12f528be rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17afa5a6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2254899c __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x364a2c2d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cd934b8 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f272783 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f9203a9 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x472022a8 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4899e933 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a831ebe rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ee94c0a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6729dba7 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b577bb9 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93f5e046 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5dc4fd9 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc93f17c9 rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd13f7adf rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc5287b2 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf70ed47 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0675435 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe07d78c6 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb261321 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec1040fb rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee34aa3d rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6978357 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6c75654 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf78b25e4 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb49d5a6 __rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2449547a gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x28360af7 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x82468d52 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x91e17130 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f8f4f50 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb776cd71 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc500a4ae gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd2dff5be gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe22257f2 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x045e14fe devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x76c3902e input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8f8680b8 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc3be1c79 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc58e03bd input_allocate_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x0b39d6bf iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x36c1e827 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xbe7f28e1 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x84a9cc2c matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0c6ace6c ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5584a5e3 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6c92b94f ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf27a94ba cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x0af705af rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3df7e34d sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x40852848 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x65b77d35 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd103f0bd sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd2016446 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb5838513 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf6b8b710 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2499511d capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x39af2b02 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44e10751 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x472a7320 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5d106417 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8e4183fc capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9067c577 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb661e639 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe85ab744 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xebd450e9 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +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 0x14cbe9a6 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9d151eb5 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe1ad281a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf92f8210 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2defe798 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7ba4efd0 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19e8c9c5 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b730cd9 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x24ad9659 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32df8d48 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e5d2524 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40e53a9b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50d53749 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56a17ed6 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6aa59c85 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6affbd2e get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7435eb45 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e01fec2 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x804b241a get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x818db078 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81f5c4af recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9873929f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa540bb13 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf28bbe3 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd23937d3 bchannel_get_rxbuf +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 0xdf2f1f93 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4154fa5 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf773a639 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa2cdcad mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xa97047c4 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 0xda987a5b ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7b5b8349 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x883b1fbd omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa46e320f omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7c1e7807 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa8a5afa3 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdef248f2 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x1c847bef dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x68029b33 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x9d76aa9e dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xbe6a1bbf dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x20ad3494 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x41c6ba03 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6d775b7b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbd7ffdee dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcab2ff8c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe856f6a0 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x8c9faaa0 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xa3d7e02e raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x029c4cad flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1323f067 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b6c29d9 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39b15213 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39d57529 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x461abc23 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6bd9d9c5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7750d434 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x967d0fa3 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd5903ce flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe354bca6 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1a41ab4 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfde2f540 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x06239188 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8681679f cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8794759f cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc1276002 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4bb54b8a cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5daa8b99 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x88ad02b2 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc4d40deb vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1a4058ae vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1dcb59ac vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4a7484ab vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xddc965ff vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xeac681b0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf233b3cb vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x37dece92 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x071da893 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x079e2666 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c47af80 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3467e18d dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3feecaf6 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42077e4a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e4aa4c6 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f0e7658 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63b26c84 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67480317 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69ef08e2 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f4fb1dc dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7751ad77 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b0d51ce dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80985cc4 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93869ce0 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0095567 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3b9c4f1 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc70a5c4 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1c8c872 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5efed95 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd445e7cc dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5835859 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7c2a962 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcf60586 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea01f363 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeee98c40 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe4038fe dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfecdf43e dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff57eda0 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x5865446f ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x3f25ede2 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x114ca2cc au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1c6a69c6 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x302f319f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3c6fd5ad au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x47de23cd au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7c8cd474 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x823241d8 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8aac5c49 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x93dbb677 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xb45cbe7d au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd767d7df bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xadae3402 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x57f9f469 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x31970256 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa8886933 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcbee0e40 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0e97a915 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x724dfbd6 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x005f8f57 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1176e3d2 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd2d9c4d2 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8282624e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa25c3050 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x62b4a1f1 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1acaa559 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3c09ce84 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7176e498 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7449a74e dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbaa17231 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41562828 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4da38dbe dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d888a00 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f400cb1 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x86f22cfb dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8dc0403e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8e6f0d03 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa4f6fd1a dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae0b90d6 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb7b36234 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbbae41b1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce3d5d8d dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xde17e055 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef6afb8b dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf34497f9 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x1033cd62 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x06a675b8 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x36524933 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4587fe32 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4ff36bb3 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5ffe12a7 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7758dbfe dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fff4a5b dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8b152b63 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc8d6843a dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf63dc7da dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x8c98a232 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xfa979870 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x056c9378 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x098f31a5 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x17fb2474 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ce22533 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f3993fc dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4b5dfad4 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4ccaa09c dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6742d9b0 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x73da9ae1 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x80e87a57 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8ed462e0 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9bdad0e6 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfa59d224 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0cc690c5 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3bd40a19 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7f21869d dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd439789c dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf9186d7e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa4aafa6d drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xca02410f drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x1c893f68 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x1c051659 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xd5661009 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x662646bf dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x75a59862 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xcde862d7 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4a5df1c8 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x16124ab0 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xb36f7d24 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xff7546a3 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xe91f0f4f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x510b68ad isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3a8b100d isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xa1631c33 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x6c778529 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x817d955c l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x53fde63f lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x198b34aa lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x80557f62 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa430c527 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xdd2a9bf9 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x68510e1c lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5e5902eb lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x0393b6b9 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1435aa6d lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x39cbe20f lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x80fcc019 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x16dfa61b m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7eedcb73 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x03619566 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x16d87e15 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xdf113d3e mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x45140c2f mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe1e9f449 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb9d12b3b nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa0a235ea nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x06346419 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x084dbc25 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb766cf99 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe86078f1 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0f6e29f6 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3af60745 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x40312268 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x92b49d32 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8fa24b72 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x323537b0 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x28d065dd sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xe64ee689 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xcdccb930 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x2ec6ae5d stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xdd5cac7d stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6dce8a2e stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x537e5443 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4b832a51 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x75e40180 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xad64f013 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x964593f5 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xc59ca0ba stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x0de18cc9 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0da8445e stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x0ba0fd4f tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x29132136 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd22fb191 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x92a66d7d tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb6d26592 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf34ad49c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa5227bad tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x035fd80f tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x04adb294 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x0b7e58a6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xaf5be5b2 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf10d68f1 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x640d18be ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x940aa1a7 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4f52c927 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7ca8a59a zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe2d57858 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xbf41e933 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x72debc91 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0eff6a23 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3a6ab648 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6fe2751e flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7b96f583 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9208d03a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xac8ddc15 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd123b9fb flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4b793e76 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96bad5ce bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb7b6a540 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc296f9ec bt878_stop +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 0x29ede685 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x571bd1bb bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5c0fb2ce bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0fe00aa9 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f8fcdb0 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x30f1ed29 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b45c8d5 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4df75909 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5a42520a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x916e9c99 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc7513308 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xefd24149 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xb48a2eed dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x138dadc6 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x420339d4 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x47e75f0e cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaecb126c cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xda8938ad cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x55e9d0ec 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 0x43b4a5de cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5131a102 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x532f64f6 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x587c50a2 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b135498 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbba41614 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd92733cc cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa46eece9 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb01a9141 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0c8c0da4 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5d33fa8c cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x643f71ff cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8d524dfb cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0010ccee cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x25d27571 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7c084c91 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x88d8bdb5 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb073e3d6 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb9a19557 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc8500ce3 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e52d5e8 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x18361f7d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ac2970d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x33e72884 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x48454e42 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53497c9c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5fbf0b1a cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x61492fd3 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a304735 cx88_core_irq +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 0x91f9232e cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9e81b29 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xae36962f cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf57e587 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbb3e78b4 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc51a5191 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6ede300 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6878990 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb74f98d cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe012e057 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xffb9b84a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1767b659 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b6ca707 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29acd2dc ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3c8c18b6 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41d4269f ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4cff4cad ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x76804eff ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82ce75ab ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0b50655 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa484f473 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc00c7143 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc3ad8053 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7b2d253 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc92f2207 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd55fce5a ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe36e8d39 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfda19fe9 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2141da10 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x24f4f4fe saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x254ccb7b saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x581824fa saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74f8f7a1 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8418fb6a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x86debcb4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaf0df30c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba403b9a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5e1cdf5 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf10ebafb saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfc9d9329 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x360c9dcd ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/radio/tea575x 0x087f2616 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1553f9b2 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d41b9d2 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x427f8e05 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x482e2e2b snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x73b5b710 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xccd7e9d4 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/rc-core 0x106cc8a3 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7f71ef2d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x41dce737 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7d003874 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x18c4567a fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xaefed469 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd7d341bc fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x4c88ea71 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x514ae9fd mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xf839fb87 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xb5371cb3 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7e82d62f mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xaa5bfb33 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x34dff506 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x023d98df tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x0b437188 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x64e18ee3 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xa6d1852d xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x54130516 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf02af9df cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x00f707f6 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x22de4e41 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x478991c9 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5cbbb185 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x98e2d65c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb042a2f4 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb7d1e296 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc278c307 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc89ccfd6 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x00676507 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x08a62850 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0f43cda9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1ddfa6e7 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x41590a1a usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x625a68d7 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf00745ef dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3ee3fbb3 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x094e26f4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4f718773 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x58f5d63e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6467ba25 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6d83f9a2 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x862702eb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x96151962 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb919f53f dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeef97fa3 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xab7be549 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbe1f1059 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8fb1793a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf051afa0 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0dbe2b31 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17ebccc5 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x351174f2 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x498fb495 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x524d485e go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb2652cf3 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdf415c47 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf96344f0 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfecb2aa6 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0914c73b gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0d278f37 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2524af60 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x25d3084f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x38c3c661 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x669ca236 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb301b515 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdc465bdb gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5f16487d tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7e89404d tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xee8d7cea tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0e14d150 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x25d3d09a ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x10068326 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x37cc236a 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 0xc78db7ce v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x055840e2 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a2610b7 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b03267f __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15ab8da8 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a925b09 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e4c9747 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f0b2993 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f61a06b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2363967a v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27d7ff87 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35fc56b7 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c4f2a3c v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x414409ce v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4721f06c v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47618111 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49c6811a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bb4907c v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e2670d4 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50a20ade v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x511ba1e2 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6090335f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63b40e71 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x643e7c4f v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68a0cb64 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68f19d64 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ac959ce v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c94e18b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d11c691 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7129d541 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71879d9f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71ba4c14 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x725824f4 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77664129 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cc881f0 v4l2_ctrl_sub_ev_ops +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 0x8ad62cec v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cb27e9e __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e0490a0 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96399c10 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a581b1a v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6415cdb v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa79510a4 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa88f86f0 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9804579 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad86ac2c v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae8c4d02 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf8a98e5 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb44c871d v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4fec4d8 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbad65ea7 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbf8d95d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc021d9ae v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1bcf2e0 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1dc7804 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca77f621 v4l2_querymenu +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 0xd45d1890 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4a0103b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc53820a v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde314b69 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe286f6e1 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6a3c5a2 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea880423 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeee7baa8 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf848e4fb v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd5a6eb8 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/memstick/core/memstick 0x02e5f124 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x167a82f4 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3404cb53 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x38664db9 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x74794af8 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8da14239 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x96d38270 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa1d22dfa memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaba7dd01 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcee2787a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4302a4a memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xed85e9f6 memstick_new_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0340113b mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1787e140 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bf0f7eb mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23743db6 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34255ca2 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34c715c0 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4022f6ff mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4748cf3a mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51d8f8aa mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6998317e mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69cf8846 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6be9e59c mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7612f75b mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79dc1edd mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b5c3e4a mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d0a5978 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x846529ac mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f07a7b3 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe1b14a7 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc09edd9c mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc86af806 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc8700ed mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2ef3003 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd89c5777 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd95f4a35 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0cd8127 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5758fa1 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf94233b0 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa7ca975 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0035c6e5 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x009e976a mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03e74616 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0482e300 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b5b8134 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0df1b7d2 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21cccd75 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27e2fe66 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x29bc277d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x310ff9a6 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39df9e9b mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46ccad95 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4dc142c4 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5462381b mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68ba31bf mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c2572f1 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c521155 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74009460 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d20841d mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9acd9f05 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb484132c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1995747 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd15bdbc mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd026636e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda954f73 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbaeb548 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf4507e28 mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x93503378 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xdbc396a9 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf2797f2b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x21571a68 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x3827bb10 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x5d63a05a dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x1485b46c pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf98a6fb0 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73bbe308 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83b3bb13 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8bcfa8f3 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8e7779e0 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8ea99585 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6f59dd9 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd7c20ce1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd96d51b5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5186345 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe688b359 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xefe8234f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x14717d18 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28bec7d8 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3d8eb7ea wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x780c052a wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x8b137f35 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb929c4ac wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6bc852c1 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7749e221 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x97d84ebe altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x73a437ec c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8cfc7f44 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x21973567 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x35307ad1 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x485e06c7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x66167d76 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x70ef7f49 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x72768915 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x763c8aaf tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e55ea0a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9c3c1819 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9fe4d9d7 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb66d8e67 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xc343c368 tifm_eject +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8351aea2 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa3149b6d cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa55cbd82 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa6e4455f cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbf59f3c9 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x108255e4 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4875ead1 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc9abfea8 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf607949f dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1565635b mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8c1a1c08 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x02b8311f cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x07998c30 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0e980934 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x298aead5 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2adfae7e cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x88164ff7 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc1fa96bf cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9e4920e6 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa8cd30a4 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb9dff036 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe1e47dc9 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xdb57184b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x89d45850 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xa2f1ed81 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x3e10ec07 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x47eeba7a mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x22107ae5 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xad1420a0 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x8d782e80 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf574b742 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xe2fe536b of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1a9807ec nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3d788009 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3fa15589 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42d03b69 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4fb08865 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e71084e nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbb65de08 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd2caa387 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe10f318f nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0f9e150 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xc1c16358 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xf2418b60 nand_correct_data +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11901029 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1457f271 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1823a803 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1861aa3e arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8c622434 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa5ac6a60 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa96a26e3 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc9404db4 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdb8a3dfc arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xed9b4da2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x24ea0cfc com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2659a5c9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb7e637e7 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0153150f b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x097f942d b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b930a3e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d37c5ea b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20b5c520 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2aba1f2a b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d1a28fa b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x342dab4e b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5079dd5e b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5eb3ccad b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ed09a85 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6778cd82 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b0bb291 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7dfdf526 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83badf08 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x89b1dcc6 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ad776dd b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b6c993e b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8cbe4b9e b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ccb34d5 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f90406f b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92cc7a72 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x945c058c b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c97f3bb b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ea9b359 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3458a60 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa90615b6 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb39ce83c b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb40b2c58 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5e4bdf7 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd2488e2 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf1ee330 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd792a9bd b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe05dbf4c b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea448eaf b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf07bcbd4 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7bfad7a b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd9bf820 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x23097187 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2a1dde94 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x392d6ceb b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5dd3465b b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7cd40132 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x94634580 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x40fa337e lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc522164e lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x63ff2d7a ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x2f5f3212 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x28a545a8 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4932a925 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x867520b3 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x73bba8be vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xbdd51d12 vsc73xx_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x00c502c7 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21b76a7a ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x395937b0 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x397d7818 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4c46b3f8 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x65a8a03b ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0c96bda NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa51294b0 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0c7f321 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0e31302 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xec26f80c cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x36b11673 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x56814177 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 0x037a06fe t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e9d3e0f cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x31e3a211 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3dbda449 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x412722df t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d6bc26c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d7327b5 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65413034 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7cca12b1 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x89ad3e1b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x98de10a1 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa992488c cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5a5a1f4 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe36a1126 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbf0f362 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfdedb0cf cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x019dbe75 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0726dc79 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16c96fb1 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f465fc3 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26962611 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fd2ed38 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d50a909 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40cf46de cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a7d887d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67086223 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69653130 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6db42af5 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x732d91ee cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78ffb7e0 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7afe1f5e cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7be9d7f2 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c1a1ee5 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d54547f cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dabaad3 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b69f5ae cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x937e573c cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa24c36d4 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2d40c9f cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa50edf07 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0040803 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7a0213a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc81c0453 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc674e83 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xccd29265 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdcb8318 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3ca6da7 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd55e2dfa t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6c21a01 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8eeaf80 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd974b7bd cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9aaf7ee cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe22d669e cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe969e43f cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef565390 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0147eba cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf35a25d2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5142074 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8079ddb cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd7e22f4 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x141590ed cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x285824fd cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3831f45b cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x628f76ca cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x834f0bb7 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x86fe70dd cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9c861911 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2c19eb87 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x36829ab5 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4898d211 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb2d10587 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc75e4e9e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xee0d3173 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3d8aec1b 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 0x8b9ecbfe be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0cd5a2fa hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3bd4b5cf hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x64c8f906 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x729a480e hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xbabadbd8 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x1eb8d2b1 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0adbc0a5 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x12df70f4 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5f6c8cf8 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fd96341 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x93df9913 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xaf555844 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc668d54e hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf796107e hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x415052fd i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0xa649816d i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xcd6c18d5 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xcef4b836 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x0cee09c5 cgx_lmac_linkup_start +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x0ff59a9a cgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x27c65569 cgx_get_lmac_cnt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x380cb7a1 cgx_lmac_evh_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x399852d2 cgx_get_cgxcnt_max +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x3e6f11a1 cgx_get_pdata +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x45a34f51 cgx_get_mkex_prfl_info +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x54d178c8 cgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x68dff5d5 cgx_lmac_evh_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0x93295045 cgx_lmac_addr_get +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xa90238f3 cgx_lmac_promisc_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xce7b3103 cgx_set_pkind +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xdaec7b61 cgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xdbeffa32 cgx_get_link_info +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xf66092a2 cgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_af 0xfbd0b5b6 cgx_lmac_addr_set +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x02ff2ad8 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x0b4355fe otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x3d2db96b otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x5f39f021 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x7293c32a otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x7e432589 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x860526bf otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xa96a948f otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xc4da7f13 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/octeontx2_mbox 0xf35c1679 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15f5d133 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1990d86a mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23838732 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25dd1a2c mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2762c1b9 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b1b4304 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b96a8ac mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36494727 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b33fed mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39078b00 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4296a898 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4497e9da set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48f4f13a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x495cc932 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bcfa0b0 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5119b22b mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x542b6950 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55446af6 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58a0b9b0 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64479c71 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a363b0e mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b107e08 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7018dead mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7606f67b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76869cdd mlx4_ALLOCATE_VPP_get +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 0x834764ba mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8918167d mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898483dd mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f504d45 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d9d8f4 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa18ed2bc mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5d543bc mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5dd73ae mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bc7589 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bafd5f mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd155051c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d7012e mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6117480 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe35aa4b1 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe951b844 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd64202 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0bd61dc mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2091a98 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf435ad1d mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00a93847 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0137715d mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01825f55 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c954bc mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08784c5a mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c55832 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e16b5a0 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x107245b2 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b54397 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1258a147 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1347f620 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x176a1d16 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dce9427 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f6626c5 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2567129d mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x284e14b6 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a20a9a5 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2acee0bb mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c651a26 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc9befe mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fea365f mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30eb2ca9 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x382b369f mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4143e4d8 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44b6db8b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49de238f mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b2b3db7 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c1cf6f2 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e2b37aa mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e21aaa mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51ee68b2 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ec1e86 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5599ed06 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e479c9 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59fb59db mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b792dc9 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dcc471d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ebe8273 mlx5_eq_notifier_unregister +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 0x65370496 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e1f84f mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ae513ac mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecfc8fe mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7041d6c3 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f7675e mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73005f4b mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73920778 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f61bdb mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a64cc0 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7805105f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c6a3a8e mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e4e9928 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80fd3f1b mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8165a0f0 mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8345ac96 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835091bc mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83da13cb mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84752d1c mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8635b1f2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86edb404 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0bb7fe mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8da474dd mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f158501 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f15c0c2 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906cb1be mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f4c5d6 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94addb34 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983b534f mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x988e424f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98dde1ba mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99a591dc mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9abfaa93 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b27a575 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdc71a8 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdcb14a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d06231f mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eb2bc4f mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f465233 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa12e3e12 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2454c56 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa43d6c41 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa587eab5 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58f9a45 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5bf2532 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa65aa21d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9c40273 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cf88a6 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2207d03 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e23fd3 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61146ad mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb89a1572 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8f1c663 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba25cec1 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb1a1473 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22bed9d mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4d08f9b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8850ee mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcabdf4dc mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb0f34e2 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc22f75d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5b7e35 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb1e195 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdef147e mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd09bfb33 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5afe08a mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb9b6e82 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbcfddd9 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e8bef5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe72a5b83 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef9a0a80 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5481922 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92bd29d mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe31ff89 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xda5520b4 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0cc8bf17 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +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 0x1f93326b mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x205b3569 mlxsw_core_driver_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 0x26c646a3 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3cb5ba6e mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f3ebe9d mlxsw_core_skb_transmit +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 0x6305befb mlxsw_core_trap_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 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67facf18 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7217a4f8 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90d2e0ea mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cc17b72 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc3a1c08c mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbc17d83 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdccc432e mlxsw_core_skb_receive +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 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe845b491 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf3bae954 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf7451cf4 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x286e84f1 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb6a39482 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x5bb9f192 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xadfc77f3 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x09b1d012 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x1e4548b2 ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2a0b8d04 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x392198c0 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x4c2bceee __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x63a52f30 ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6d918a00 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x7448fd4f ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x77da049f ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9f341963 ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb9bc4a7c ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd6680834 ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xfc38c8a2 __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0536edd1 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x435cf9a8 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 0x54cdc8e2 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7290ae94 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/qede/qede 0x97b548ac qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xb28091a4 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x193aa82c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1a364196 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91e9bb0a hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x985d5c96 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc1397efe 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 0x7db84a25 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/phy/bcm-phy-lib 0xaa4abc60 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4118d8fb free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb195ebc1 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x3d0fc6db cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x60c07ea2 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x08e5ce40 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x14b96ff1 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x16c84a05 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1adeeedd xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x87c1d946 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2c012c9f pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9ec9de34 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa4aeecac pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xef6e9f90 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x1e59a7ca sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x14920205 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x2984c9a5 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3138e7ba team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x59e15c85 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7fc4e8d4 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x89240479 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xee0960d5 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xfebdc721 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2e5e5e6a usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x93d5896b usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xac8caad8 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x076a748e unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2404df28 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x26c62134 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x26ce35cd hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x51fd2ddf attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x557fd5d8 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99719d70 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa5c25bbc hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xabac96ca hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf1f26cef unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x9c69cb02 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x05095966 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x106bb9c1 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1138ef7d ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3a75e638 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3f0063ab ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41c9fbda ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x474ef66c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x48b5bdde ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x554b6620 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5bbe6687 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9932c583 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8b2863f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca596b9e ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00fcf9d5 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02b4db05 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0abba79d ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1387d81a ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a76ca64 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29def9b4 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f451015 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x430bcaa8 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x444aa481 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x469f9f6b ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49f83bc4 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e144381 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50dd77c4 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x510bf30f ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x520698b4 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57b01d61 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62c6379b ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64626c84 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73fcd5d1 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x777eab9c ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78b94302 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d7d37e4 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f8f8c47 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x828e1c10 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x942638ca ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9462c015 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ab05ef3 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bc09f92 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3d987f5 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8e9db6a ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbab95226 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbda23aaf ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf4a5616 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc16762a1 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc18e6303 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8e28f38 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcde8d2be ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd08d79c8 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5aeecb9 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd749fe04 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdbf8de28 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2433315 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4612128 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe484e7c7 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe98f047c ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeca809d1 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf324e097 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6233d24 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2165df18 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x44e931af ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x523ef04d ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x565d7bbb ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x744ebf3b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x94830cab ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbeddcb21 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb577d39 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf1612a34 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf512ea93 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfe6f9417 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06c17a59 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1577573c ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1de23de9 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f25c881 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e67a7d2 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44c77c41 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f0f7d6d ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5666f40d ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66d0a055 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x742eeb05 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x74f08d25 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x765f5c89 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80517076 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c13bf1e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf6127e6 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9b76d90 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc22eb2bc ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4885fc3 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcec3684d ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0972c00 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 0xd6a681fd ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8ca5597 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfae6d8f1 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01538cb2 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04fe3a8b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x069cd798 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0adb0fde ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b6fef7d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c48e54f ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ce206af ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d91b799 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dfbcd7b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e267975 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x154d0d47 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15ba0cdb ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x196fe7d6 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a694cb1 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b0ead4f ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x245f0fa0 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24d05916 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25a8e1a3 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25ffe8bb ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c4b8823 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d541e60 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f359361 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f486488 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x319549fe ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x325aaabb ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35ee43f2 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x365f9930 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c5777f5 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e0b5ac2 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40d322cd ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x419c4e87 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42c2216b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43948fe0 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ba461a3 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c043948 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f37b7d3 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x510cb2ae ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e30f88 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e3b014 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55204db6 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x569ecd20 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a01ac87 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c5e323d ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc6807e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e474bc7 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x612991eb ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x627426e1 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64a6de25 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64f00323 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b89cda ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67c79d6b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c6a15e1 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d988619 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f263cb ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73914b15 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746037ef ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7853c3dd ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78721a73 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f7cb6c0 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8020a535 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80efffe9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c06956 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c40d63 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84754f24 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x863dd880 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87c492cb ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b18c8d0 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d237b64 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d7170c0 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96f237cc ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e318c3f ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e37ebed ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa04f4adb ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1f1cc17 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa58e0a02 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa636ebd5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab4f512a ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac69be00 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd2250a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf87cdaa ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb359a424 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4f55ff7 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7a05e6f ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2c0f56 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0fe5ed5 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc21bdc61 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6295895 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc67ee30a ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce3ae9a8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf0f8e9b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4afdd79 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ba0257 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7e102a5 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd87bca8a ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbfc1e3d ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd92e0db ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2b3351f ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41ee6f9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6215673 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe632b532 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec111ed9 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3af2dd ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee248bb8 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf583c9a9 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd28f970 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe167085 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe77bb5b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x97c670f4 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9fab5c6c stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc4d0aa42 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0804b657 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2d94d8e5 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x30a0d127 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x39bdb618 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x536e473f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x53e47b5e brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9dbd3acb brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9e662f8c brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa07c8c81 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xaf436804 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb1a2215c brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xba585321 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 0xe1f52ba0 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0669b5a9 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x094f46da libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d7a2bba alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2cac51b9 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x38de1405 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3f5582ce libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x43ecd333 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x467007f6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5249ae05 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a75ee8c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7b2b47af libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa4f6031d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad69fa4b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc3fb9efe libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce3bc305 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8869e78 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe3d574a8 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xed177590 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf906e844 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfdc46a04 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x060e3136 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09b3da96 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fd58b47 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x132202f0 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x145b2731 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f8d85c0 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2343d234 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2987dbf6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29a3ffaa il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db99749 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ee08dd0 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35296b89 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35487670 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38d0ce6a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ba71f14 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c0a7987 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x400e3527 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41457ab4 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4239e04a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43f41b89 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4da8bfba il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f9632e7 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff4321d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff46b5e il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x515bee62 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55fe779a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5994e6f2 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cd2ee49 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6253f441 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x637c8d9d il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x644b178e il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x649216f4 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64a36599 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64ea7af1 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66a1cbe5 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6742b72f il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x687b761a il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a24ae3f il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c234cb1 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e3c0def il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x716a0849 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72612b7e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75e00cf7 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ce17cf9 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9af00c il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f485d4c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b81e362 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94018e3c il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x965ef8ab il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x982d64bd il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9875e53a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9929a2a1 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a4a3a87 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a6e651c il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fa0916e il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa15c9112 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa38f6730 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3c53a95 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6d40c5d il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9bbf982 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9c3944d il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab973b48 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacb06be2 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae99aa23 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb494cebd il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb873755 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb963f97 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbe3ee8f il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbf95367 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe41504a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc36d5ebb il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc446000e il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc52cac61 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc552abb7 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6b07e96 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc86c77c9 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb32f070 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb723cb7 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd325fa6 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb42027a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc13ae46 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe11ffce6 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1635d3d il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1c4c803 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe382fe9a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe566515b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe987165f il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb653e47 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed5403a9 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed8eb885 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef11fa79 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef2445e3 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0868e9f il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf981e0ba il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9b099b8 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd9c8eca il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdb5a249 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdc8b1cb il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee9c199 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a6a247 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb72ade7d __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15c2251d hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x289c5f68 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x323d2af3 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x35f1e306 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x46a9bf41 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50de8d65 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x524a9918 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x567ebe82 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ae26f44 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x772dacdd hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d9edf68 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82a3a1ed hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ecba9ee hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4201c7a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xacd53b26 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9158331 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc365a546 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca1d4d73 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd04f32ec hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb6be734 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe84f4d69 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xee99a59c prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf11738a9 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa6739e1 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb58c451 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20b542b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ac47eb7 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43c2d7bb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x54a347e5 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x57426022 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x65d59290 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6608f682 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8893a6db orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8ca8d567 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8e8b18cd orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9b1456d7 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa5f1ab79 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb2baa30c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc1b6b7f5 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc386c486 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf819d1f3 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x41706d74 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4eba5974 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x069a2c34 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ce9e60b rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e67a2bd rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ee7a4e0 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16cb46d4 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19cd9d59 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d9cdbb6 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x202a6c18 _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 0x24be86fb _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x352a79b7 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4431c995 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47676087 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4eefcaec rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50d9ef8c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60626efa rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64823b01 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64bc774f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6703e973 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68b6cd7b rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7691764e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76d7b673 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8050602d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x835212bf rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x876424a2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95a4d97b rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98c3664e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cfa1e63 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa14a9b6b rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6c57d9a rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4833418 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbce07979 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc638220a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce78b73d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda4989ec rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3a42b76 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4878fd9 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee3a9820 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf80c5756 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8a044c4 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa6a26cc rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb073951 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1ba3facb rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x62abcef4 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7c068ad8 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb7308f6d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0c371bd8 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3c795a3f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa50d1cb2 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa7401579 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c801231 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14bdb14c rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26064fd0 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2be72d2c rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3328f0f4 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d81be3f rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x450ae566 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46830e9a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x468f6074 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56235d0e rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cd5df36 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64ff336e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x683754ff efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6aed817b rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e67e6d7 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72273d0f rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a4ca66e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x827665b0 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99d70865 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5258b34 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf062cb4 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd16b9722 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3056b79 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd81ef6fe efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe64cefa9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefc0e189 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2262c04 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf231c294 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf313e725 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf322b4a2 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf48216fd rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5a053ae rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x21736962 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x359f78a6 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3cb345eb rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3f7df4c2 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x43797edb rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x475b6f57 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x48eeef51 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4f7d39cc rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x60bc3015 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x71f22f9a rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x77810e4c rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9754d9b4 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xacbb15e5 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc30b5d61 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc8dadeab rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xcee475dd rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd33a5449 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe8941882 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x06ac4157 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0a037c5f wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x721e9228 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd3a04567 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4503f09d fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc92b6a89 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe0c50e09 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x745dcd55 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xaade5970 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x37056bf9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb178b817 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd1c36bc4 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x7033542c pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1606a010 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x327523fa pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1a3c41e8 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x644dd001 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9b154669 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0cf78a91 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18e5e8ce st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x544e0fdd st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x622ae300 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x67556102 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x686d1e4d ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x699c7f9c ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7168c2ca ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa47c44e4 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd0f7908a ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07b2e4b4 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a569d24 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1569a8ec st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x255bb76d st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x294893c9 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4917d873 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58e8ed4a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6239ce4a st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x775f6b1a st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7de76d8d st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94a00657 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9e57e2a5 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbdf671cb st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf270d0f st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc7cbb5d1 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc869b63a st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce3e8a23 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec64f2c7 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x060664f0 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1624bc34 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x18577446 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1b2b4300 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x21068382 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x23cae875 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x39dcd99f ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x42021ac5 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x4e8158c7 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x654c615c ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x661341ee ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x71d30df7 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x7cd8d53a ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x8401fcb3 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x878aebd0 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9fd9b7db ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xa43aba54 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xaa344e63 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc3c1ec30 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd2dedbea ntb_default_peer_port_count +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xae2a2973 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd6663557 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0c781f4e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0fb536fe parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x14af9c26 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x1db9e28a parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3007b8f3 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4007c4aa parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4451b355 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x57ab4101 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x59bf1a61 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x5c600f2a parport_write +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x606995ac parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x65737b5b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x6a9cdadd parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x7540da9a parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7c2c1849 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x876f3400 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x894a0efb parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x8afec805 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x91568e15 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x990eabaf parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x99d93a12 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa0a5ebd8 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb1a49861 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xb8decdda parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xba8dfa4c parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc23e5ba6 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xc46be927 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc5c46d1f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc77b6c87 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xcd03f999 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd3d89e94 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xfbcfdfcb parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x0bdf0c35 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xb3677990 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x021bae9a pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x437382ed pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4b51f35d pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x581d6bf4 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7e64f398 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x964e75ee pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9e799145 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa3fe4057 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdcf15c7e pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefcf4a0c pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf37151ae pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2fbb1944 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x39abac9d cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x95c9101e cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa04287fe cros_ec_resume +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xfa1855aa qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01d62d10 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x132ddc3d rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15353f2a rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1f894990 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x324e05dd rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x325091cd rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f113546 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x69e19f9b rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x811f9db8 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa9af3c9f __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcaff68ed rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd25298c4 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeae1201b rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb342be7 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x198776a2 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5d7f17ac scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x85cc2b2a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xabbd3533 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xaca873c0 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d1274af fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x30192333 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3fb4b95e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x81e7babc fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x98b0501e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa14428f2 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5b30614 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf8b1fd5 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcaf036ce fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcbb2152b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfdc1bf10 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02cabc83 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02f8375d fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0682c594 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b6f5b37 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bc347e2 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1849960f fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20668e0f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25a29143 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31ab33d2 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38d93772 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b47328e fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b51bbc3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c381400 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fd67266 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fed6841 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b7cbe94 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c2efcc8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x573a93a1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5767d646 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62e5057f fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x678459d4 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c88bb18 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72eabe4d fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77f51247 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x801163d0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85afae5a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8db3b7df fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2ee75 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fd7b6c1 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90040507 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x926eff23 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97d883fc fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4473bcf fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4f62023 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5cd882f fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3724b53 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb39c9b3b fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4678ffe fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5cf7e57 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6a6c591 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb85a9b44 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbda22603 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc06b1b73 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0d38d17 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a25360 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc874f369 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbb5b774 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbd034c8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce56eb08 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd17d4b65 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1cc355d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd36687ea fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd559728 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddad17be fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2b9908e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b341c4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec76c243 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeeb245b fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3a0b6744 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5c5cf25e sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xff4281a6 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x711370c3 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 0x04c38a32 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x050c5939 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x17d4015e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1aadcbf9 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5679ec69 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e9ecfb8 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78648cfd qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78c3604a qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x899f63b8 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xec234e80 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeefe162f qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf7dea192 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x400e6aec raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa64758bd raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xac58c37b raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x06007cb7 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15d00d7a fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1af4070f fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x329f0a9e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x387c84a5 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c60bf7a fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43508408 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49510309 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62cc74a0 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83e5daa7 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88a51cb4 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b833fb1 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x972e4ee0 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa9ab3f87 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xceba4ced fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd9b457bd fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02321a86 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08299439 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e77da5c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39eca6c6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cc56ebf sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4809d2fa sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e6514bd sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5270b59a sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54aedc73 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56730c2f scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a09462d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e5c3d1e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6211fd4d sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d812df6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7115bf44 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x977af438 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4977cab sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6de3931 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd2311bc sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2ab25e4 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd75cd9f6 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9bce5cd sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6acc362 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6e00694 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec5149c1 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec67edfb sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1cd8711 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3234f21 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3490006 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23db8b99 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x630ebd27 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8ddde659 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9317da36 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe9048f7f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x125a0fff srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5071172c srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x63baa82c srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7dfcde0e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1685855 srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x4f553aca tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xfa388182 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x059a8ebc ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x103f0bab ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x12ff147e ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1a370938 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x66542d91 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa2d58752 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa5889ebc ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcbd94dae ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd7926cee ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x923cbe59 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xaf22a2b6 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0348ce8f cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x23d0b9f2 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x34f6582d cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x50396152 cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5989f124 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7201d27d cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa066b5c3 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa9dc86da cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xede9ce4c cmdq_pkt_flush +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf93dc078 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x06346e97 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x218c506e geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2225dd2d geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4364ffe6 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x62c4e758 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9ae5e924 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xac844b4c geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xba31b6b9 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd0727449 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdce03756 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe5c8ba1e geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf87bab1c geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x00f7ede1 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0e55322f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x274d2fcb qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4abab79e qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x57a51881 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x77c01870 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x90a73cb0 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc85e88ec qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xec95b0c5 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf10387bd qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x1241de8d qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x03a399f0 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x046fc1a7 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x102c7710 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41422354 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x441b9385 sdw_stream_remove_slave +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 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8a3e1ec3 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ad5a55f sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7766000 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb966c91f sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcb4101eb sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd7b974bb sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe039a376 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9c52980 sdw_handle_slave_status +EXPORT_SYMBOL drivers/ssb/ssb 0x0b0d6729 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x0c769760 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x0d7fb115 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x0f8b8af0 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2bfc3984 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3388d06f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x3e3f28fd __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x441d05dc ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4fa07fc6 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x65f7bc8c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x6862a62f ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x78f29978 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x82b08ae8 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x83fe82b0 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x8dd2caeb ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x92d8f714 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xaea76dfa ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xba8b2418 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc601956c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd3b311c0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01a14bc6 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13ebb210 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x150b93f6 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23da2f9d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25f665ae fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26675844 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29cc56e6 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a3d60de fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30e4ac54 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40362283 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x439a17c1 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47f8e512 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f915571 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57915f19 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67377c13 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70ca5110 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x732df548 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x82786067 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c4e438e fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa33447bb fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc891207 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbed52ca fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2ce59bd fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd801bd9 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xde1a84c6 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x065f9c9d gasket_page_table_max_size +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x06f02105 gasket_pci_remove_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x19b4914f gasket_disable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x339c2b95 gasket_page_table_map +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x372973e0 gasket_page_table_are_addrs_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x38c3d415 gasket_page_table_num_active_pages +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x3ca03ae6 gasket_register_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4109757c gasket_page_table_partition +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4292ff96 gasket_page_table_is_dev_addr_bad +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x448b39ff gasket_get_ioctl_permissions_cb +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x4ea236c0 gasket_mm_unmap_region +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x69142ff1 gasket_reset +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x6d449a18 gasket_sysfs_put_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x73816c04 gasket_sysfs_put_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x77311f6a gasket_page_table_unmap_all +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x8c92da47 gasket_page_table_num_simple_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0x9c589e47 gasket_reset_nolock +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xba4b8cb9 gasket_sysfs_get_device_data +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaa2668a gasket_num_name_lookup +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xbaf2f8cd gasket_page_table_unmap +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc0da6e09 gasket_unregister_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc225208c gasket_page_table_num_entries +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xc75437be gasket_sysfs_register_store +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xcddaa14e gasket_wait_with_reschedule +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xdbe7405d gasket_sysfs_get_attr +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xea586391 gasket_pci_add_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xf332c743 gasket_enable_device +EXPORT_SYMBOL drivers/staging/gasket/gasket 0xfe1c5fe2 gasket_sysfs_create_entries +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x22270d96 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0cc056db ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0eeb8df6 b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x24bd48f9 b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x29420272 b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x71c0e050 avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x77804460 b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7a001beb b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x87ed7ddf b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb2981ab8 b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb3e54aaf b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xce9c8f7d b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xda3cefc7 b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xda64208f b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe65199d9 b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xf57c7159 b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa2571ba avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x3eb973d4 b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x3ef802e3 b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x56ede545 b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x6a2aa018 b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x8f1dfe97 t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xa26625de b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc9d3d2f3 b1dma_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd7c143f5 b1dma_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xf2ce4f92 b1pciv4_detect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b15e0db rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10536e28 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11a40bfc rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16dd18ce rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x204f7435 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x244e7d7d rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29a28118 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ed42dcd rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f4fe68e rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a91eacf rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aa395d3 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4dd094d4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x501b7022 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x503b4339 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52d71c28 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5dd7bf5c rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60def551 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67187ad4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68d03116 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68daae02 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d320934 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ecd6e62 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x740d691e free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7631e5ba alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7776ecf8 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ef35055 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8481b923 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9442abd8 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ed28ce6 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fb14a4c rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa39fa7ea rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5c91f68 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf427647 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb25e8342 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2ac197f dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb600eb51 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd2527c5 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc03f88e2 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb06d6b9 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd34147a2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbcd122d rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7573bc5 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef6c8a77 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef79f50e rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf502ff61 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6d3af92 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8ee0304 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf90d542a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffe328ba rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x008e34d9 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a4cae7a ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x180b43f9 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2612096d dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bdfccc2 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d25bdef dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fb4d3e1 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x348babf8 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3eb82e2b ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ebe0050 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40ce7212 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46002231 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46f483ac ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b15dd6a ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c5dbc71 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ced87ef ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dd9588c ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bfbad52 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75d8892c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78d1c229 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7abbb16f ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7adbc6f3 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ee84916 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82b19045 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a8ab8fa ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91133752 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91a30ccc ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96219401 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x990d260d ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99698aa8 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7f53a4c ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7fbaf80 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdde15b7 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbeda83c6 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4e1f861 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce2c43e8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd06a552a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd10cb73c ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd410a51b is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda70a94e ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf793359 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe431e6e9 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4aa1dc8 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6ccb5e4 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec62b937 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2761da7 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2a81568 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3f08b73 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf52596c9 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5f579f2 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa7bceac ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb668b11 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff5455b1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x03ec8e32 vchi_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x04390690 vchi_service_use +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x18bb8ba7 vchi_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3317ac58 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x347e59c9 vchi_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x36331e4f vchi_held_msg_release +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x45a172d0 vchi_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4784c007 vchi_service_close +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x49a7510f vchi_disconnect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6216493d vchi_msg_peek +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6ae198f8 vchi_service_release +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7b2177c7 vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8561e970 vchi_bulk_queue_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x940e4bdd vchi_queue_user_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x94535fd6 vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa7fc046a vchi_msg_dequeue +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa90297a8 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbbb12b82 vchi_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc8b507b7 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xda468542 vchi_bulk_queue_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdaf25f60 vchi_service_open +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdfae4319 vchiq_add_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe03ce8ca vchi_service_destroy +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe928e745 vchi_service_set_option +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfc90ea41 vchi_msg_remove +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfe69bc62 vchiq_bulk_receive +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05be0d5d iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x080952df iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f839652 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c9dd019 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e8e74f2 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2eaca3fc iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31b91b2b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33f16584 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a9dabd9 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5062bf8d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x520e49d5 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5529e3b9 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58bd5dcd iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e6577a6 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6304f1dc iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x642ddc3b iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a9fcce5 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7833e09c iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7891a367 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a860623 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aa9d17d iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f12e292 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8493982d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87ec4242 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b85abb2 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f5f5837 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x903567f5 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99dfd14a iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0574f1e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad3c5f7f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb06b632e iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb217d7d1 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd69aff7 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce6533f6 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd24d7936 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd50a0da6 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6b42dfa iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8387459 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd938e893 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9c2b67b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb1dde68 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd216efe iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1f6d3f0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeff63f0c iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/target_core_mod 0x00e7285a core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x037762d6 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x03c7f4f4 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x07645721 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a221d83 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cb4104a target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a568356 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x281b4184 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b2b3b0d core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b622de6 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2efd5d66 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3052afe2 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x32e1b1b6 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb90918 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x50093ff8 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x506a73b0 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x510868cf sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x5566a400 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x57f3ada0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eb05f3e transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x601944f8 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x614d1767 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6725447b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x68dc0bc7 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x68e2929c transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a8a9ac9 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e1fac92 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f79e1c4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x80a194b6 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x86062a60 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b1f7515 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8be29172 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dc693c8 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9139b71a transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x92dbded9 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c8ce963 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ca2dfef sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e8cf1d6 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f431235 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ffb677b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa30b166b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3d9a13f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4d1de78 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5d44c3c target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa622a242 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xab6b1314 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xafc13070 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3cbfecf transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4b9a8e0 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb549b1aa transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6b81933 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6dfc1ee target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8ce5f8e target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbd34c4c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc10593ad core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2bdcac7 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6deefbc transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcab1224a target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xcab3d1a3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xce58fd12 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd84a87c6 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd759fd9 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe01c5bbf target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xea0ca57c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xea10d990 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xed2f3ac2 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6004421 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf654f7ad transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf876555d target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb2f571b transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd9cc338 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x12e7c580 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xfe3f3aef usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8c6bf8f7 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ca78cd0 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1b058419 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x257eaa1d usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4beb017a usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x836fbe9e usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x85bf9e56 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x97c2e73b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc91e5b83 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6a660d0 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7d14bca usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef1d339b usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfa4a981a usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfba37531 usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x99c8f32d usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd68c14fd usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0239fedf mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x03464e09 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x15d2f123 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6e4eb36e mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x744679bb mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x75f0355f mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x760d22e2 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8d43dcc0 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa6f21cab mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb0821057 mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb6011060 mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf8b13674 mdev_dev +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1cd46ba2 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x2a4e81ab vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0xad5ee358 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xc7542113 vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x33fe0865 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xa9e6c8ad vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1293463b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2c17f532 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x714a6f96 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf4611a6f lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0ae270f8 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 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 0x9558eeec svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa5ca7983 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbb03b2d4 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc189b813 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcd486f93 svga_get_tilemax +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 0xfd9805c2 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x3340d5c1 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9b4df2bb sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe5c6f919 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x504c7963 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 0x26c92dc1 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5da82935 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9b08b957 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa8f0e669 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x14e35f7e matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb214091d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe165abdd matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe52e2e03 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x19b422bf matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x6f925bcc matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x37ed6fed matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3a4195b0 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x877742e2 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x91395946 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3250f530 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd0ddddf2 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1b399df6 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4f71ec02 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64b9d673 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x68b6373f matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x794048dd matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x2d928d12 mb862xxfb_init_accel +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/w1/slaves/w1_ds2780 0x1ee4557a w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x28768603 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x89cbfaaa w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa53682d4 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x321652a1 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbf484fea w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xe7c2bc3d w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xf5e74823 w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x6ef336d0 bd70528_wdt_set +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x97fc32be bd70528_wdt_unlock +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x99308f5a bd70528_wdt_lock +EXPORT_SYMBOL fs/fscache/fscache 0x03be0491 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x070c7a53 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x07e3a350 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x0c749042 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x0cb4e2a5 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x12e1a96f __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x151c5d42 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2e751742 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x3445eb61 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3acd3376 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3c61b846 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x45ac0f54 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x46971bff __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4f89f639 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x630387ba __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x650e6209 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6b31ce82 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7aad720b fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x7ca7a059 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x81a26158 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x84374451 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x878c85ae fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x93702482 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9864a2cf fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xa3316296 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa4794b73 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xaecef84e __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb4560c1f fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xb6fca19d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xba5da500 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xba999560 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc13245de __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd7abf50d fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xe7e6128e __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe825fcdf fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf8b269ba __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xfb31625e fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xfd087cbd __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfe8ac487 fscache_object_destroy +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0e27bf4d qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x2cd00d5d qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x82ae1724 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x832491bf qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9025527c qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbf92a7b2 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 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0393de0b lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x3ea00ab8 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x078175bd lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x09e29066 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x15d88cdf lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x370ab10e lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd1470b9a lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf32605c3 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x16a5f25b register_8022_client +EXPORT_SYMBOL net/802/p8022 0xe0418960 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x01e21ad7 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9fa27bf6 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x006eca2b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x0990f67c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x0a75d985 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x105235e7 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1178e318 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16d3a446 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x1b84c60a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x1ea3f257 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x2742f649 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2a2310c4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4551f29a p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x479ad22d v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4ac80239 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x4bd50720 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4dd54ff5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x4e112568 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x57af333a p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x5807e091 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5aa500d6 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x654548a3 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x685372ba p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x6c36e95b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6f094b29 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x71ce7cc0 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7a48968f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7b941b27 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x86ba2f5a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x8a9011f1 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa07001c3 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa0f95784 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xaa36774b p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb7891ff2 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbd70386d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xcdd95c72 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xd29bc7cd p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xe13d17f7 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe795be41 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xea9d7e74 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xeacac0c6 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf6a4016c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xf99cec77 p9_client_mknod_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x0ec1940f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x29b3b0ce atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x444fa623 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x67c2235d aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x234db50a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x283571bb atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2b692214 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2d90ab4a 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 0x4b59224e vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x87f7dd15 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x982b7f81 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa18906e7 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb38f65ad atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xc8c4d17e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xe26c0fed atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf43d08b3 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf883d9a7 vcc_process_recv_queue +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x22ea2042 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x5274e09e ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8943c8a6 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8cfe08c2 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x99ab6e11 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x99b903e3 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xa7472247 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf8993f76 ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x038521f0 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0769c7b6 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07a9f6e3 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f02d012 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1072f382 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10cad1ed bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cf1a16f hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2092bdc1 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x220e905c hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2403c393 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3acceb90 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b4751e9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43ea9723 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x452c27f7 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e67d639 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f7610c1 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57e645de hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x676f9f1c bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6781a6fa bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7072da2b bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74e08b7d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7729eab8 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7899322c hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a9629dc __hci_cmd_send +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 0x7f6396be hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81e5a35e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x876f89b3 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89f444cd bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93f62b47 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5d3cb1f hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb08e772d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb267ccd7 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb614e2ab __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb890bc9f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe6434b2 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4bd99e0 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8b818b9 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0087094 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe72b9048 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xecc3532e bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf28fadfa l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2b85547 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf679f7f6 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcaa6e40 l2cap_conn_put +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x635c68c6 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd6fe4bda ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe5d35fd1 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf3b317d9 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x143b56c5 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa4b2287d cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xafbf1c1e get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd3c9e274 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xd4ca393b caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x15abc48b can_sock_destruct +EXPORT_SYMBOL net/can/can 0x51772bcc can_proto_unregister +EXPORT_SYMBOL net/can/can 0xaf38072c can_send +EXPORT_SYMBOL net/can/can 0xdd799657 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xe5e6e937 can_proto_register +EXPORT_SYMBOL net/can/can 0xe7eb9699 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x08b86952 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x0ebb3f5b ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x0f2b25de osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0f5430aa osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x148d1e38 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x16e2ed0b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x18839e55 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1a347673 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x1c26341b ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x1cb058b6 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x1d939775 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22892178 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x24d86839 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2acdee15 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x2e1a641c ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3213472b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x33c0b621 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x33e8d51b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x35c1c673 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x35d1b321 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x37788b8f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x38ac6dae ceph_osdc_put_request +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 0x3d72b972 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x4288163d ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x44f77284 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x45e18023 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4883dcf8 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x4941b047 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x4c120c56 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x4cf6c8aa ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x4edfa766 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x5040c00d osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x5199085c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a6178e4 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c87339f ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x5d952983 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x5de9cb91 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x60f16c80 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x61d700bb osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x62e33cc4 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x636d5506 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x639b8bab ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63bd1f30 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x69122aa5 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6a5a4e44 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d42eae7 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x73dd8e8a ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x760d413b ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x780a042e ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x786b4ff1 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7b6b81da osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x7c1dedde ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x7d5e4af0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x7d9b6c6a ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0x7ddd58fa ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x7e334b65 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7f6807b0 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x852a97dc osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x853d0f14 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8711384d ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x94bbc629 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x996771f3 ceph_auth_update_authorizer +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 0x9cdd88b1 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 0xa1277e59 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xa220a2e2 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xa451e100 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa47a388f ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa9bae63e ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xace81187 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3da92fa ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb93d6242 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbded2533 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbebc4c8a osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbf64b528 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xbf7f18ef ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc3ec2a65 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc5058958 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc736df1e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc98869ea ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca80eb72 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcef460da ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xcfa9daa9 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xd01cc3d9 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd1c2537c osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4a0e2d4 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd514ca9f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd57a5c4e ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xd6297004 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xdb65f510 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xdc559d91 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdc74ce5b ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xded6b744 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdf911150 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xdf9406ce ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe0b7b01f ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xe268476e ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe54487c0 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe84deb26 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xe99d65c3 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xed46ad4e ceph_copy_user_to_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 0xf40701ab ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xf6eb930d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xfdb3aa24 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xfed30fed osd_req_op_extent_update +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x268a8dc8 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x36878ccb dccp_syn_ack_timeout +EXPORT_SYMBOL net/dsa/dsa_core 0x11877b6d dsa_port_vid_add +EXPORT_SYMBOL net/dsa/dsa_core 0x9b6aa3db dsa_port_vid_del +EXPORT_SYMBOL net/ieee802154/ieee802154 0x205cbbcd wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6b69b53d wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x795e3ce4 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd198cdb wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd8ee1851 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfaae3420 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x2d879cb6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xde3ef3b3 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xa5b53f2b gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x417614c0 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb9b1628c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc1e4dc52 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xff7692f6 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x120ba2a4 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x34ba0679 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc91e2a8c arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd99e8435 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1abdd53e ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7d1fb318 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd28d1fc6 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x56a297d5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa38c1788 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xdc77fa7c udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f9a4897 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x329bc020 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e57c2f9 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7ad6e31a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x82a798c1 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x82f97d57 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb0325fac ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc982cd36 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe1aa5a9d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8816f336 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc5d8af68 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf1d2190f ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xb45b8918 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xb95f436a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x67893639 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xec746aba xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0xc4caaf7d l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_core 0xd05a2625 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xe40b8fe2 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x07c85afa lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x1aa09d98 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x2e4c5d57 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x41f6c93e lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x54099589 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x5bad2e60 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x5c97dc41 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x6b626d97 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x07919108 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x0abd00d6 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x103c7f42 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x198a31fa llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6331ae53 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x745e86f7 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9c01df90 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x0005dd2c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x0120c23d ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x02c4164b ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x0681e2d6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0791dade ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0818b434 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x09dccc76 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0a0ecd2d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0a141401 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0bac96f9 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x0ca495bc ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x0ccde786 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x11ee3373 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x14faf598 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x19b4baab ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1fbdf425 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x2628aadf ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x293cb521 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x30eef665 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3161ac43 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x329b8c1d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x34abec50 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3687f58a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3970d799 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x412cbe84 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x43888493 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x43d7b138 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4ad0a72e ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4c6265be ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4d6b5cb3 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4d9f2848 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x4f1bd4e9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x53914959 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x54297bea ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x554afb01 ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x5be4a084 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5cc4f92f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x624e0697 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf7327a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6dd2ea51 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x6f073f2c ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x71edd57c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x734fb309 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x73fa47bb ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x744862ba ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x78909953 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x7c6c0291 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7e5aeaea ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7ecaf997 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x805f0eff __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x85b0229a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x860dce12 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x8aa5830b ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8b327d59 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x9170caef ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x93e13e6e ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x98f56ad2 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99566342 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9b7cb72d ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9c59e632 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xa234ebcf ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xa9b87a3f ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaa4d9d8b ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xad99b49a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xaf88e444 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb1c6be98 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb2416832 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb2d9a483 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb48474a6 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb5a277fb ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbd1f83f3 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xbe1f1cc4 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xbfc65749 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc29c73c9 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc2f842d1 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xc95201aa ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xca228c71 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xcc8503d0 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xcec49c62 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xceea6e60 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd54ccc94 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd60cf056 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe15c8824 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe21864a8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe751d670 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xeb1e3cfc ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xeb260223 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xec271e34 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xef3cbf91 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xf27d1a06 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xf4b85312 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf69c33c1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x4ce1c969 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x827c7264 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x9645ea66 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa76770bf ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xad15e0d7 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbe1043e1 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc0b2e288 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xec1c2ebe ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1996b673 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x26f95267 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29e8c241 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2cdb9443 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31bbe401 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f41f8b3 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5c003a7d register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94d38b0b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5eec3f2 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7ef6151 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6e03f5c ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc51cf5a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf5f0774 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe639b211 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec6da76c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0c1ee908 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7816f5fe nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x00edef00 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0c8ad031 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2675e279 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x6eb1cf6e __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x89c22d0c nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x184fa1d9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3c25bf59 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4175dc10 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x477473c4 xt_register_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 0x5951bca4 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x70c0b665 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x8cd77f38 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x95312266 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xf162d048 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0363423f nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x15ee925f nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x2940f049 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3cf67e62 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x652de77e nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x6a5585cb nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7004d8bf nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x72330f2d nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x756c7d26 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xa3c9358a nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xa6ce4653 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xa83d79fb nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xa9f35316 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xb414bcd7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbec39e6c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xc81b26f1 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xcc6b76a6 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd60bf4b0 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xddbf613b nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xdf36cf9d nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xe8695b82 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x054bcdb9 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x07738d36 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x098b4744 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x1522f454 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x30d4df97 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3d878491 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x466f5731 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x47238e5c nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x4984e227 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x59f0ad7a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x5d4122d6 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6928771a nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x74b672cd nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x907861e7 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x9189cfec nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa2770f49 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa39321ed nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xaa9543a3 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xadc7749c nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb3cee9ca nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb560646f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbc9b96be nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xbdc90859 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xcfda5e25 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd4343360 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xda83f375 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe0dc5d37 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xf41f925b nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xf6edad27 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nfc 0x0697cb4f nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x118c0aa8 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2c97174f nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x30841464 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x39a55939 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x44060050 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4f68fc27 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x534690a5 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x553f48cc nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x559f4944 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x5d174372 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5eda0eb5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x6031112b nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x76ce7b21 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x77b0de80 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7cc591fd __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x8e018a7e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x99871014 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x9dd562e3 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xbdfb39f8 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xc3cb8528 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xca8fb9ec nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xde27f772 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xede23d83 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xf1110de8 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x78003def nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x873c78e5 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xea52d327 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf5923891 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x070cbd81 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x0d74b3a0 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x3242671e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x4652311a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4b08546b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x604e6285 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa402f4cf phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xdf5dbb05 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0504f95c rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1995b8c5 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20679ca1 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2da847a0 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x30285472 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x321c4ea3 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f62113b rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6bff864f rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d885b86 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e1202b2 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x86a53dd5 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b3fc81e rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e2a00f2 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb02fa3f0 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb3b4191b rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcace0273 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf6ea62b3 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/sctp/sctp 0x60a93d43 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0178d8ae gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6279e633 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x944e4f17 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x24995593 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x29ddf956 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbe48c92f xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x0c7036b4 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x256f5595 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x36b103c5 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xc8a7a9d9 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0xa09665cb tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0xbc657e0c tls_register_device +EXPORT_SYMBOL net/tls/tls 0xc6263e9d tls_get_record +EXPORT_SYMBOL net/wimax/wimax 0x990dcbce wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xaf6e18fb wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x01a2304e cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x046ffac6 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0c02ec9d wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x0ecd763f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x116c9066 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1393d235 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x167d14c0 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ffb20a cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x208b98ff cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x228e48f6 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x241541d5 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x24568295 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x251f6856 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x28cf15bb wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2d123cdd cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2d516a6c wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x319bd0f1 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x325c3711 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x34ca43bc cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3570be0b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x38d35fe0 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a367037 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x3a4b868a cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3bdbe445 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3c8939a2 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3ea3b6ff cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x3f96b7fc __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3faf46f6 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x45107f23 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x46a52e18 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x48a6763a cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4b7e1174 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x539dac15 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x56629aeb cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x581c0c04 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x5acf335a cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5d121b95 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x5dcd6877 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6221d4cd regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x66089224 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6825a48d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x687a565a __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a77632d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x6a9d07e0 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x6ab8d7b1 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6c2f8f78 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6f7ab1b6 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x757d6c23 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x77da6ae4 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x785a4f8d cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7908972e cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7dba49a7 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7dfcd8b0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8088fd0f cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x81f3d7d7 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x827425be wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x856218a8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x89657752 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x8bbc6eae cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x8bcbfb6b wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x8c925031 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x92b0a5b7 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x93f7e69b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x98785270 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9a76abf7 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa3f5f177 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa47c9a0e cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xa94e37bf cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaa6caccf cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xabd05648 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xadaecbbd cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb38f6248 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb3bc600d cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xbd8261a5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xc2f29cb0 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc7d73c69 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcb1325ef wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xcbcdbde2 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xce0c8f37 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd0454aac cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd140da2f cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd76a3dea cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd89a514d cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd951ed6 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xdfa6121e cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdfbd5f8f cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe24f5489 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe753c1ad ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xeb7c4fcc cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xec0fb1ad freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf71de499 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xfaeb141d cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfcacc93e regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/lib80211 0x15266349 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x1bbe651c lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x4860d3db lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x81ffe5d3 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x9c6a69bc lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc479268c lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x7c0d2b70 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x0685c2aa 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 0x28b71eea snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2abcf9f5 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 0x89f6a946 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xec70b7e5 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 0xf0a1fdb3 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 0xaff8cb52 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0036fbeb snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x046b3c59 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x05abadb6 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x0d92808e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1ea410c3 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x1f6b4e64 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25fdcab9 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x2c6755ff snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2f669fd9 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x32c29a36 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x35f9d6a6 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x36e7553e snd_device_free +EXPORT_SYMBOL sound/core/snd 0x38b5ed0f snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3c3eb750 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x41a45cc3 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x46928c81 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x523ca410 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x55462e9c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x55ec607e snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x5c6402fb snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x5dce1148 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x6a7df9f0 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x6ba325a2 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x70ed0e21 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x74024ad0 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8aad40a8 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8eecac7c snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8f9af2cf snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x9645e7ea snd_device_register +EXPORT_SYMBOL sound/core/snd 0x99369f6c snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9cd1b14c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9eb7bbe1 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xa4fdab83 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xa9086b80 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xb019c20e snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb9903c69 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xbc353a29 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xc1def813 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc7c27671 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xc91d4f55 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd88ede76 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xe32ad8cd snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xe5cb43b3 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xe69dd1cd snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xede7fbbb snd_card_new +EXPORT_SYMBOL sound/core/snd 0xf1d52a37 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xfae7b4ee snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x38bd173c snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03de08b6 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0ae9f88e snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x0b978527 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x10a796b8 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1589bc5c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x215ddfe4 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x26202dba snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x374f4ac9 snd_pcm_hw_rule_add +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 0x3d6254a3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4136a6e7 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x4b5e68bb snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x4ca10fac snd_pcm_hw_constraint_step +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 0x52967ba3 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x560f7667 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60ec4d2a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x6203aece __snd_pcm_lib_xfer +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7157ccfc snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x7a3f51b9 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x7af32834 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x83aa8308 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x8bf3191c snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x8d169300 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x8efdfa46 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8f23d657 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x90e9e65c snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x985fd208 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9cbda9fb snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x9e57ad7f snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa4e671d8 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac67b419 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xaccf7f02 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xb265519f snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbd08c016 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xc46760bd snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xcc99c878 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xcd7fe00e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xd0d0c2dd snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xd8ed5ea4 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xdc7f7ef2 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xee8f3f30 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf6adfd39 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xfcea466b snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e151e1b snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e23e4cd snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d16094f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x314b4be7 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3a4a1665 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d3b8058 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6a2045ca snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87188b38 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x880f2d58 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b4ba70b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e2055d7 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x94d06d61 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97cea47b snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ad72c7d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc986b00d snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfbdaf6c snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9052bcf __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7881f63 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfaa5bfdc snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfff23731 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6019f2e8 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-timer 0x0dca37ca snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x238cfa8e snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x25b6e5c8 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x51c6c038 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x60e35f6a snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x88937f84 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x8a6b93f4 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xb82bd1e8 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xbfdb4865 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc39dd75e snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe8a69f87 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf3195c8a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xfda2785b snd_timer_global_free +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x23770771 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 0x05b1e88e snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x35882e8f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x472a55ac snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x635c19bd snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x74daa2b4 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x84b87dc7 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9ddba184 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc103e53b snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf8353578 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1254686d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1352335c 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 0x26e9d961 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49a22f68 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6780d3ca snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ebf6d88 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xba576af2 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddf8e9ed snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeca34ad2 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 0x116b49ee amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1272214c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12879b90 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x137f76d4 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x160b128d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b0be3fa snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bc57bc5 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26c208ed snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a9db925 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3018dfbc cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x311a94cc fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4465a944 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49b617a9 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e1c2d76 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x509c3723 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5267752d amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x903b8251 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0b249bd fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa3492231 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb201c991 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe414a88 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1b1b7f3 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5091008 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd01017dd amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd13e6e64 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd192bd5a amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda352405 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdaa150cc cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf84013d fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe630c424 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef03bd5f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa1fc2bb amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5f356707 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa2f01775 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9883e043 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa3d4eeaf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb4276aa0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc3dc4c6a snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc4cb521c snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc88650d3 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xce098721 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfee4fe39 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x498d837e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8438dc30 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa4ace035 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf11cb41f snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc83dd932 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf3b3296b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x05b114ab snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2b782477 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x45c5802e snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xabb107cd snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbc5a701a snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd33be1a2 snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16d64569 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x171c8df8 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1dcb86f1 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25d0915f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x29ff27a4 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x42ad4990 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c35ea50 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f832fcb snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x749dc5e4 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ae183fd snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1b4eeca snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa64345c1 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa969b99 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaac662cc snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5f1faf1 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca869e6c snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe65f481f snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x218d5875 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa576c6fe snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfad2d39a snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x17ae35f8 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x353bee40 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3c51d1ed oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3f3dc688 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b4f7953 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x505ba46f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e84eb79 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ecfeab0 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b802aa5 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70153ec8 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x708b1408 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75f6f3b6 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x954cf559 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3788ecb oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8c6010d oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb071044 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd20f81e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd946c88 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc45b43f4 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc0b65bd oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfc15604c oxygen_write_uart +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8f6d6fd1 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xeba6668d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x34e321e9 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xa1f71245 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x41755e9c aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7c8e3cbf aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7dee6796 aic32x4_remove +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x36e5af63 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0x742db118 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xbac1e1b7 sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01772c72 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03f75059 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06d42153 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x091b920e snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0cbe512b snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1334281e snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17f0dbc3 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x240232dd snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26da236d snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2731f787 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x312eb7b6 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38557648 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49f84206 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f3ba91e sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61254c26 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x635a2e75 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x670f56ba snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69b131ee snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a83cf72 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7058d7d2 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7197e1c1 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76df755d snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77359e0f snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78b4ea6a snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bbe2a1b snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ba35681 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8d1fac1a snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e7dfec4 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93dc7a3d snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9668795c snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9919c23b snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x991e2d36 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9d989680 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9dd33c17 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e9f274f sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6b9142c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9395430 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7819d26 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3a3d437 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7eff651 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdaa67b6a snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdde0e9fb snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5f0ceba snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe69faf79 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeeabad26 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf55bef5c sof_io_write +EXPORT_SYMBOL sound/soundcore 0x2fef019c register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x967cca68 sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9f910155 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xafe50ae0 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd919c8c0 register_sound_special +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 0xc3d1a01e __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x001374ea scsi_device_get +EXPORT_SYMBOL vmlinux 0x001b68a8 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x001c2a6b dentry_open +EXPORT_SYMBOL vmlinux 0x001d31a3 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x00349437 kobject_get +EXPORT_SYMBOL vmlinux 0x004ab20c page_pool_create +EXPORT_SYMBOL vmlinux 0x004cd380 d_obtain_root +EXPORT_SYMBOL vmlinux 0x005f9caa __block_write_full_page +EXPORT_SYMBOL vmlinux 0x00602d5f pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x006c782a pci_match_id +EXPORT_SYMBOL vmlinux 0x00750730 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x0076d78f seq_dentry +EXPORT_SYMBOL vmlinux 0x00966fe9 dev_trans_start +EXPORT_SYMBOL vmlinux 0x00b58c55 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x00b954de kill_block_super +EXPORT_SYMBOL vmlinux 0x00bdffc1 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00db4fca pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x00e3477b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x00efbf93 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +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 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x016116fb iproc_msi_init +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0184583d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0187a97d qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0188e198 km_policy_expired +EXPORT_SYMBOL vmlinux 0x01998490 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x019de655 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x020ecfff dev_change_carrier +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02191b47 dev_printk +EXPORT_SYMBOL vmlinux 0x021d81c8 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x02256d21 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x02277421 devm_request_resource +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022dcd5f __ps2_command +EXPORT_SYMBOL vmlinux 0x02354f9b acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x024ce147 udp_prot +EXPORT_SYMBOL vmlinux 0x024da2b4 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x0251de09 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x02542188 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x025a1e15 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x026d5bd6 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027e1689 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x0285b88e blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b0cf4e device_add_disk +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02bc9434 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x02cf8680 __sb_end_write +EXPORT_SYMBOL vmlinux 0x02e3e8b2 of_find_property +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fbdc31 unregister_netdev +EXPORT_SYMBOL vmlinux 0x03031bdf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x0317ffbb seq_printf +EXPORT_SYMBOL vmlinux 0x0323dcdd i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x0325a9cc cdrom_release +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033fe618 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x0351ef08 d_alloc +EXPORT_SYMBOL vmlinux 0x0353768d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0357dcb4 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036a1689 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0383aa2d vc_resize +EXPORT_SYMBOL vmlinux 0x0397112f unlock_page +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a3c5eb pci_write_vpd +EXPORT_SYMBOL vmlinux 0x03c1fe8d rtnl_notify +EXPORT_SYMBOL vmlinux 0x03d5245d rpmh_write +EXPORT_SYMBOL vmlinux 0x03ea820b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x03fc34b4 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03feea40 cpumask_next +EXPORT_SYMBOL vmlinux 0x04014d29 set_create_files_as +EXPORT_SYMBOL vmlinux 0x04257e2d pcim_iounmap +EXPORT_SYMBOL vmlinux 0x042c899a neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x0435f1fb set_blocksize +EXPORT_SYMBOL vmlinux 0x04377185 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x043ce328 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0456f754 tty_port_put +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x04837ccf fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0487e9bd netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x04905414 tty_vhangup +EXPORT_SYMBOL vmlinux 0x0497c21c phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0498afed vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x04a1f41d blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x04c88a31 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x04c989f1 sk_wait_data +EXPORT_SYMBOL vmlinux 0x04d455be input_set_timestamp +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04eded95 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x04f2886a blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0536b619 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x053868bd ppp_channel_index +EXPORT_SYMBOL vmlinux 0x053e9723 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0560f956 fc_mount +EXPORT_SYMBOL vmlinux 0x0568b294 bio_free_pages +EXPORT_SYMBOL vmlinux 0x059c8762 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x05ace9f2 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05bcb7a4 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x05d72821 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x05e2461a scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060cdc25 device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x060db06a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x060f90c1 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x0611e9c8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0632e2f6 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06412e08 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x067a4fea scsi_remove_host +EXPORT_SYMBOL vmlinux 0x06831715 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x068b8bbe cfb_copyarea +EXPORT_SYMBOL vmlinux 0x06957a47 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0x0696857d tty_register_device +EXPORT_SYMBOL vmlinux 0x06a6780b of_root +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06db1841 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x06dbe093 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x06e2b092 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x0700f2f7 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x0701524a __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x0702842f __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x0719973c scsi_init_io +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074e6c46 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x0751b95d input_allocate_device +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x078c9879 inet_release +EXPORT_SYMBOL vmlinux 0x07954250 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x079d39d4 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c8c516 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d0690d path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x07ddbf06 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x07df46ab devm_clk_get +EXPORT_SYMBOL vmlinux 0x07f34e3c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07ffe7e4 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0820eb17 bio_split +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0830899a forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0850c2a3 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x086e9c25 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x086ffe95 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x0880fcfc input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08a9f6e4 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x08c76d05 phy_write_paged +EXPORT_SYMBOL vmlinux 0x08df3e98 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08ec592b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x0911d862 netdev_notice +EXPORT_SYMBOL vmlinux 0x0917490b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x0919f05c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x091b28eb register_filesystem +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0933ac1c netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093f7d7e dev_mc_flush +EXPORT_SYMBOL vmlinux 0x094290e9 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x0949ee65 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x094dafbc nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09681ece may_umount_tree +EXPORT_SYMBOL vmlinux 0x09682235 down_timeout +EXPORT_SYMBOL vmlinux 0x096a6b4f simple_setattr +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09885bb1 dev_open +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099f3288 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x09a29dae __frontswap_load +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d46633 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09ef56f9 inet_select_addr +EXPORT_SYMBOL vmlinux 0x09f159d4 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1a05a4 get_task_cred +EXPORT_SYMBOL vmlinux 0x0a1bdd87 page_mapping +EXPORT_SYMBOL vmlinux 0x0a1c6eca pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a22175c __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x0a26dab7 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a44a3b0 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0a53ebd8 phy_print_status +EXPORT_SYMBOL vmlinux 0x0a5947f9 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x0a6f2320 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a827a99 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaa2fd2 find_get_entry +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aead6da ihold +EXPORT_SYMBOL vmlinux 0x0af20eae down_read_interruptible +EXPORT_SYMBOL vmlinux 0x0afa4d53 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x0b016606 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0b0b71c6 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x0b14866c fscrypt_inherit_context +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 0x0b2c5aa6 empty_aops +EXPORT_SYMBOL vmlinux 0x0b3df315 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x0b4c9bb8 pci_free_irq +EXPORT_SYMBOL vmlinux 0x0b4ff316 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x0b5870fd netdev_printk +EXPORT_SYMBOL vmlinux 0x0b698cf6 filp_close +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b783a46 address_space_init_once +EXPORT_SYMBOL vmlinux 0x0ba5bf26 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf6865a neigh_lookup +EXPORT_SYMBOL vmlinux 0x0c0a199b netdev_crit +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c132079 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x0c25a520 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c4442cf netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x0c46da66 vm_event_states +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6f45d9 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c78aad2 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x0c808fa9 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x0c89d0ce security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x0c95d5e0 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x0ca5ceea alloc_fddidev +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccb9bfa of_device_register +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd7b1e2 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x0cd81837 vme_slave_request +EXPORT_SYMBOL vmlinux 0x0cdef348 simple_getattr +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce2c85a md_update_sb +EXPORT_SYMBOL vmlinux 0x0ced9916 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d08fa8f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0d0dae11 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x0d14cca2 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x0d2d95c7 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x0d36ca20 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d593661 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0d5a6c9e dst_release +EXPORT_SYMBOL vmlinux 0x0d5a8672 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d966109 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x0dc489e8 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x0dced1ec mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x0dd72fc6 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x0de43f94 kern_path +EXPORT_SYMBOL vmlinux 0x0e16110d inode_nohighmem +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e52740f dquot_quota_on +EXPORT_SYMBOL vmlinux 0x0e64bc57 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x0e6624bc wireless_send_event +EXPORT_SYMBOL vmlinux 0x0e6b1a0f of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x0e6ca81c phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e85b71e __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x0eb3deb2 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x0ec14473 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee4ee1e dev_addr_init +EXPORT_SYMBOL vmlinux 0x0ef8a66c md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x0efc5d1e ata_dev_printk +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0af84d dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0f12bb9a tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f41d534 phy_disconnect +EXPORT_SYMBOL vmlinux 0x0f430d13 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x0f431b7f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x0f628e68 tty_lock +EXPORT_SYMBOL vmlinux 0x0f832ac8 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9e8602 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x0fa9d44e mmc_request_done +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb4c2a2 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x0fb56cf3 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x0fd377bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe2fc7e __sock_create +EXPORT_SYMBOL vmlinux 0x0fe73802 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0fec489a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x0ff667bc dst_release_immediate +EXPORT_SYMBOL vmlinux 0x0ffbf8bb qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0ffe9293 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10005721 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x10160011 phy_device_create +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10394c48 simple_open +EXPORT_SYMBOL vmlinux 0x103b1bc6 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x105a1255 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10982fbe twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x1099f37e poll_freewait +EXPORT_SYMBOL vmlinux 0x109eca35 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10c4915c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x10d63730 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e2d436 serio_interrupt +EXPORT_SYMBOL vmlinux 0x10e48093 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x10e800fb blk_register_region +EXPORT_SYMBOL vmlinux 0x10ebebd2 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x10fdcb19 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110a9c90 component_match_add_release +EXPORT_SYMBOL vmlinux 0x110b9725 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x1115d0ce may_umount +EXPORT_SYMBOL vmlinux 0x1125bd4c netdev_features_change +EXPORT_SYMBOL vmlinux 0x115d6426 devm_clk_put +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116c0661 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11753a31 tcp_close +EXPORT_SYMBOL vmlinux 0x11877195 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x1197a7ae filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x119b55d3 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x11a3ac90 config_group_init +EXPORT_SYMBOL vmlinux 0x11b68145 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x11be60e6 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x11c2b92c nf_reinject +EXPORT_SYMBOL vmlinux 0x11c9c87a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x11cc88da vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x11d6e069 d_invalidate +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e37f09 get_vm_area +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x1203a123 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x121db4f9 d_add +EXPORT_SYMBOL vmlinux 0x1220d5f0 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x12446f5d blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x12484b25 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x12485c3a cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x12532d28 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x1253afbf from_kuid +EXPORT_SYMBOL vmlinux 0x1263f6d6 cdev_device_del +EXPORT_SYMBOL vmlinux 0x126dde66 of_get_next_child +EXPORT_SYMBOL vmlinux 0x1276138c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x128562e2 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x12871f0e fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x129b0c3b of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cc3263 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x12de3d85 bio_advance +EXPORT_SYMBOL vmlinux 0x12ef7b71 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x12f653a3 call_usermodehelper_setup +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 0x1314a139 kernel_accept +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13238c73 pci_get_device +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132b7508 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x1349b560 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x136bb331 input_get_keycode +EXPORT_SYMBOL vmlinux 0x137c12a7 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x138b8be0 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x139cee21 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13acf3ce key_move +EXPORT_SYMBOL vmlinux 0x13c772b6 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13de36be rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1403220c devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1416f082 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x143211e2 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x143a4c30 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x1451efe0 devm_memunmap +EXPORT_SYMBOL vmlinux 0x145844e1 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x14602d26 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x1491dbfe pci_find_bus +EXPORT_SYMBOL vmlinux 0x149bf5f7 kernel_read +EXPORT_SYMBOL vmlinux 0x14a9f1ff d_path +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c08fb7 skb_trim +EXPORT_SYMBOL vmlinux 0x14c24c74 cdev_alloc +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d9fe2d inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x14da5a7a mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f86948 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x150dd965 inet_accept +EXPORT_SYMBOL vmlinux 0x150f086e locks_free_lock +EXPORT_SYMBOL vmlinux 0x1515e3b3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1522f6f6 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15331173 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1534bf5f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x153ce17e mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x15451c82 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154ca49f ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x155ec389 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x157136b1 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1583f2e3 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x1597fa4a security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x15a49bf9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15bee2b4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15d28996 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x15da38c9 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x15e4ec83 config_item_put +EXPORT_SYMBOL vmlinux 0x15ea4898 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x15ed1341 fb_get_mode +EXPORT_SYMBOL vmlinux 0x15ef4a50 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x15f1649d tty_unlock +EXPORT_SYMBOL vmlinux 0x15f1c33d posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x15f21284 prepare_binprm +EXPORT_SYMBOL vmlinux 0x15fb0c83 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x15fd2957 twl6040_power +EXPORT_SYMBOL vmlinux 0x16021517 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x1607776e call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x161f393f dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1635834b nd_device_notify +EXPORT_SYMBOL vmlinux 0x163afc0b vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x163f3482 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x164d1bfd vme_dma_request +EXPORT_SYMBOL vmlinux 0x165946e0 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x1666dae3 iov_iter_init +EXPORT_SYMBOL vmlinux 0x166731c3 file_open_root +EXPORT_SYMBOL vmlinux 0x16687fbf sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x167874d5 key_alloc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16808ea4 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x168d6256 proto_unregister +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x1699c84b netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x16a082ce vmap +EXPORT_SYMBOL vmlinux 0x16bc0473 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x16c23b0a mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d1ada7 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x16d327b7 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16e95241 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1713bbf5 scsi_print_result +EXPORT_SYMBOL vmlinux 0x171acff4 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x171dd565 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x17297a89 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x172a616f pci_assign_resource +EXPORT_SYMBOL vmlinux 0x1750db84 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x176052e0 dev_change_flags +EXPORT_SYMBOL vmlinux 0x1765ea1f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x1766db4e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x176ae896 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x17722c19 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x178efd75 sync_file_create +EXPORT_SYMBOL vmlinux 0x1791ad58 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x17927635 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x179692c7 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x179be536 seq_open +EXPORT_SYMBOL vmlinux 0x179c43b5 of_device_unregister +EXPORT_SYMBOL vmlinux 0x179d49be vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0x179ec969 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x17ae216e ll_rw_block +EXPORT_SYMBOL vmlinux 0x17bbcf09 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x17bc5d2f iov_iter_revert +EXPORT_SYMBOL vmlinux 0x17c3dbf7 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x17cd29fe inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x17e7faf4 generic_writepages +EXPORT_SYMBOL vmlinux 0x17f75cc6 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x17ff1547 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x18437913 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x1863a865 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x186e743d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x1889bf67 secpath_set +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18c0c8dc twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x18c7da97 find_vma +EXPORT_SYMBOL vmlinux 0x18de7548 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x18ded661 console_stop +EXPORT_SYMBOL vmlinux 0x18e06816 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x18e3aca8 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1906b2ee noop_qdisc +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x191e9b8e read_dev_sector +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x19315592 block_write_full_page +EXPORT_SYMBOL vmlinux 0x19393b4d amba_driver_register +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x195fd9d1 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x197db291 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198b128e fddi_type_trans +EXPORT_SYMBOL vmlinux 0x198d6c01 neigh_table_init +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a1ccde flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x19a56c82 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x19bd30ad pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d0872d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x19e4014e inet_ioctl +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a514ea4 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1a57f548 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1a7f2700 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a940716 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aacac95 __bforget +EXPORT_SYMBOL vmlinux 0x1aaf8bfd fd_install +EXPORT_SYMBOL vmlinux 0x1ab0860f audit_log_start +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1adf7b0d mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x1aee54d8 i2c_release_client +EXPORT_SYMBOL vmlinux 0x1afbc559 posix_test_lock +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0197da thaw_super +EXPORT_SYMBOL vmlinux 0x1b08b1b5 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x1b0d1fb3 update_devfreq +EXPORT_SYMBOL vmlinux 0x1b20ac2d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1b243660 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x1b2aeb78 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6c3836 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7a5d65 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bac4c90 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bb8f6c4 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1bb9fd87 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x1bbbf2c7 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x1bccf1dd bdput +EXPORT_SYMBOL vmlinux 0x1bd405c8 sdei_event_register +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd7b385 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x1be27d11 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x1bf3f1c9 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x1c014c9f twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x1c087286 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x1c22b12c security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x1c26e460 tty_port_close +EXPORT_SYMBOL vmlinux 0x1c2cb713 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x1c3110c1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c442856 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1c4e4de5 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x1c539a59 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5bbbc9 mdiobus_read +EXPORT_SYMBOL vmlinux 0x1c8a6c8a kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x1c8cae48 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x1c95d68e devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cd62c85 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf4e7f4 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x1cff09d8 proc_set_user +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d135876 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4cf797 unregister_nls +EXPORT_SYMBOL vmlinux 0x1d5cd6f3 kill_pid +EXPORT_SYMBOL vmlinux 0x1d8daba1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x1db892c4 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dece127 inet_dgram_connect +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 0x1e17b631 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e6200c3 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e6b0b97 xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e82bd4d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x1e87128a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea159ec mmc_can_erase +EXPORT_SYMBOL vmlinux 0x1ea32686 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1ec9e573 phy_stop +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee9e225 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x1f1f9eca page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1f30eac0 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x1f3b0a0a noop_fsync +EXPORT_SYMBOL vmlinux 0x1f46f5d8 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1f531d0a console_start +EXPORT_SYMBOL vmlinux 0x1f55a093 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x1f5e98e6 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x1f602d39 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x1f65aba9 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x1f7823f1 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x1f8f6ee8 tty_devnum +EXPORT_SYMBOL vmlinux 0x1fabc3f2 init_task +EXPORT_SYMBOL vmlinux 0x1fb40564 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fce3b01 phy_init_hw +EXPORT_SYMBOL vmlinux 0x1fce7887 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fdcb1a1 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1ff983ab __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x1ffff635 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20066132 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x200a6f31 xattr_full_name +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20211823 lease_modify +EXPORT_SYMBOL vmlinux 0x203107c2 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2058034f __put_cred +EXPORT_SYMBOL vmlinux 0x2062e7f8 sock_no_connect +EXPORT_SYMBOL vmlinux 0x206b20a4 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x2072ca4e phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20826273 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2089c9ab xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x20a1b519 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x20a745dc sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a95558 zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0x20a987fc pci_bus_type +EXPORT_SYMBOL vmlinux 0x20adaa9f phy_suspend +EXPORT_SYMBOL vmlinux 0x20c198ab security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x20c8df16 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cd09d6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x20d51c27 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2104f04e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x210884dc tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x210cf318 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x211128c1 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2147c5f3 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x21617529 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x2169818f vfs_fadvise +EXPORT_SYMBOL vmlinux 0x218b7ad5 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x2195cbe0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x21b4031b dcache_dir_open +EXPORT_SYMBOL vmlinux 0x21bb7727 find_lock_entry +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cca352 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x21dac47c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ed1cc5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x21fc68b2 put_cmsg +EXPORT_SYMBOL vmlinux 0x220d73b0 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x220e55d0 mem_section +EXPORT_SYMBOL vmlinux 0x2215b540 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x2215bc50 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x221cfb36 phy_find_first +EXPORT_SYMBOL vmlinux 0x22292878 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223481f7 bdevname +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22772165 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x227a53d0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x228c92a8 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x22920792 module_put +EXPORT_SYMBOL vmlinux 0x22af3388 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b60101 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x22d299cb pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x22d90802 param_get_charp +EXPORT_SYMBOL vmlinux 0x22f0ad8e misc_register +EXPORT_SYMBOL vmlinux 0x23020d39 bdget_disk +EXPORT_SYMBOL vmlinux 0x23509e00 kfree_skb +EXPORT_SYMBOL vmlinux 0x2355e712 padata_stop +EXPORT_SYMBOL vmlinux 0x2364da19 key_validate +EXPORT_SYMBOL vmlinux 0x2369a6fe genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x2376f2dc config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2395614e phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x23b1f762 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x23b24e1e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbb925 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x23c257c8 register_framebuffer +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23d2b12d file_ns_capable +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2405996c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x2408a8f1 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x2411b74c flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x241bde6e inet_add_offload +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x2438df58 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245e6d88 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x2468dd4b gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x246feee9 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2481259b d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24882c1c tty_do_resize +EXPORT_SYMBOL vmlinux 0x2491523d fman_set_port_params +EXPORT_SYMBOL vmlinux 0x24a6fd4d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x24a7e9c2 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x24a92c14 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x24aa1584 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x24b4a836 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x24b6158f neigh_seq_start +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e48b2a fifo_set_limit +EXPORT_SYMBOL vmlinux 0x24ee3aaf phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x251058c1 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2516647a tty_check_change +EXPORT_SYMBOL vmlinux 0x2517977f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252de916 fasync_helper +EXPORT_SYMBOL vmlinux 0x2530532d kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x254407e2 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x2564ef9f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x256b7692 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25783b23 fqdir_init +EXPORT_SYMBOL vmlinux 0x257cd5da tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x257f5a1f udp_sendmsg +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25832c58 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x25854553 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259889c8 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x259fb20e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x25a65511 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x25ae0714 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x25c341da lookup_one_len +EXPORT_SYMBOL vmlinux 0x25d0a25b of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x25e4917c skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x25e65314 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260e965b input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x260ff7a7 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x261803dc vme_slot_num +EXPORT_SYMBOL vmlinux 0x262e823a wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x263959a6 dquot_get_state +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x264607af sk_stop_timer +EXPORT_SYMBOL vmlinux 0x26487175 set_page_dirty +EXPORT_SYMBOL vmlinux 0x265cc942 kset_unregister +EXPORT_SYMBOL vmlinux 0x26626180 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x26630dce jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2665db8c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2670def0 pci_select_bars +EXPORT_SYMBOL vmlinux 0x2672cc24 phy_attached_info +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x269379ca pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x26991b7f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x26a6e5fd zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x26d39007 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e9288b ppp_input +EXPORT_SYMBOL vmlinux 0x27040848 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271cf59e __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x27316f47 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x27331553 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273613cc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x2737525e scsi_add_device +EXPORT_SYMBOL vmlinux 0x273a21cc of_parse_phandle +EXPORT_SYMBOL vmlinux 0x273ae068 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27567e00 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x2771571a uart_register_driver +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277d8c92 kernel_sendpage_locked +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 0x27877db1 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x278b45d7 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x2794afcb request_key_tag +EXPORT_SYMBOL vmlinux 0x27a9d040 input_setup_polling +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27c52392 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x27c968a4 vfs_readlink +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ce60ac ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x27ded1f9 seq_open_private +EXPORT_SYMBOL vmlinux 0x280604e8 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x280d9e23 keyring_alloc +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283bc78b scsi_register_interface +EXPORT_SYMBOL vmlinux 0x28558cd1 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x285f06d9 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x285f8693 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x2868736d alloc_pages_current +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287e20c9 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x288f83af devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x289b4084 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x289c5a7c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x28c1ceca blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x28fad9b9 clear_inode +EXPORT_SYMBOL vmlinux 0x290e3b58 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29343867 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x29361773 complete +EXPORT_SYMBOL vmlinux 0x293eeb87 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x295a38da vfs_symlink +EXPORT_SYMBOL vmlinux 0x295af7dc cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x295fd09f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x296cafcc xfrm_input +EXPORT_SYMBOL vmlinux 0x296cb509 __xa_insert +EXPORT_SYMBOL vmlinux 0x297e3cff skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x29ad318c page_symlink +EXPORT_SYMBOL vmlinux 0x29dc1be2 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e89a46 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x29fe1afc can_nice +EXPORT_SYMBOL vmlinux 0x2a09d439 vfs_fsync +EXPORT_SYMBOL vmlinux 0x2a0ee820 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a306b56 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x2a60c2d7 node_states +EXPORT_SYMBOL vmlinux 0x2a7135e5 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x2a7e4421 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab7989d mutex_lock +EXPORT_SYMBOL vmlinux 0x2ac5364f pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x2b02ed3e __frontswap_test +EXPORT_SYMBOL vmlinux 0x2b10e246 bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b250405 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x2b3316e7 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2b4884ce done_path_create +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b61b5dd dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2b65b481 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b70a938 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x2b72cc92 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba75f92 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x2bacce5b kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb9af28 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2bc18ee6 dcb_getapp +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bd7b6fd kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x2bece3cf rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2bf1b2fc pmem_sector_size +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c0426b8 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x2c0938ba i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x2c156298 imx_dsp_ring_doorbell +EXPORT_SYMBOL vmlinux 0x2c18a3d3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c7640f1 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c9253d7 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x2c98e25b put_user_pages +EXPORT_SYMBOL vmlinux 0x2c9c798c fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x2caa42e7 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf4a539 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2cf6b222 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d034bd2 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2d51c3 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d328780 vfs_get_super +EXPORT_SYMBOL vmlinux 0x2d331882 scsi_host_get +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d44d3d7 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9773fd flush_dcache_page +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2db3d320 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x2dc6a16d _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x2dc99208 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dda58e0 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x2dde3881 dev_uc_del +EXPORT_SYMBOL vmlinux 0x2dfee3d6 _dev_warn +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3f4a81 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e679f00 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2e67b262 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x2e7260eb nonseekable_open +EXPORT_SYMBOL vmlinux 0x2e90e291 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x2e99536a __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2eaa156c param_set_invbool +EXPORT_SYMBOL vmlinux 0x2ec1997b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x2ec3453b qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x2ec3b226 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecb727c sock_kfree_s +EXPORT_SYMBOL vmlinux 0x2ed4d991 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2ee0bcd3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0e7254 get_gendisk +EXPORT_SYMBOL vmlinux 0x2f0f2a9b alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x2f20d946 pci_scan_single_device +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 0x2f530a44 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f5acf23 freeze_bdev +EXPORT_SYMBOL vmlinux 0x2f68ed17 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2fa17e64 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x2fa82a66 mmc_get_card +EXPORT_SYMBOL vmlinux 0x2fb8ca53 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x2fbd2851 put_disk +EXPORT_SYMBOL vmlinux 0x2fc1a0ab netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x2fc4450d add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2fee5245 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x2fee9027 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3002399e param_ops_bool +EXPORT_SYMBOL vmlinux 0x302b7e08 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x303100d7 drop_nlink +EXPORT_SYMBOL vmlinux 0x30565693 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x3073e091 sk_net_capable +EXPORT_SYMBOL vmlinux 0x30762e25 page_readlink +EXPORT_SYMBOL vmlinux 0x307af13b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x30909fc8 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x3092b9f0 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30bd5ee0 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x30bd61cf simple_rmdir +EXPORT_SYMBOL vmlinux 0x30c18016 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x30cb3c45 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x30d0d457 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3103802f gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x31041aaa i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3131b1bb pskb_extract +EXPORT_SYMBOL vmlinux 0x3141aa8b eth_mac_addr +EXPORT_SYMBOL vmlinux 0x314294c4 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x315718d9 write_inode_now +EXPORT_SYMBOL vmlinux 0x318d6fec mutex_is_locked +EXPORT_SYMBOL vmlinux 0x319b4b6f skb_queue_tail +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31bd4eb8 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31de8aae cdrom_check_events +EXPORT_SYMBOL vmlinux 0x31e0d85d n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x31e156d1 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x31e5eb59 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x31faf9ca sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3208b9c7 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x3209f1de seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x3242b07c ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x32432d98 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x325d68a3 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x325fd466 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3280cc8e arp_tbl +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32aca303 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x32c64d5a scsi_dma_map +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d72bc0 generic_write_checks +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32ee5d3e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x32f7c985 clk_add_alias +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x3327ee4d alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x33469b21 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x334e79d5 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x3368f4e4 get_disk_and_module +EXPORT_SYMBOL vmlinux 0x336c939f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33972d3e mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x33a40085 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x33a9ee64 genphy_read_status +EXPORT_SYMBOL vmlinux 0x33ae6546 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x33b98324 skb_seq_read +EXPORT_SYMBOL vmlinux 0x33bd8b01 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f0a822 iterate_fd +EXPORT_SYMBOL vmlinux 0x33f33a88 dma_virt_ops +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34252617 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x34284af1 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x343f2a1a set_cached_acl +EXPORT_SYMBOL vmlinux 0x344ca9d4 qman_init_fq +EXPORT_SYMBOL vmlinux 0x345cf976 migrate_page +EXPORT_SYMBOL vmlinux 0x3467d17e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x346e233d build_skb_around +EXPORT_SYMBOL vmlinux 0x3470c6d8 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x347b84b8 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x347de93c phy_device_free +EXPORT_SYMBOL vmlinux 0x347ec623 seq_puts +EXPORT_SYMBOL vmlinux 0x349319d8 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f13db __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34a3e779 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x34ac372c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34ce0b85 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x34d215da blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x34d39545 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x34d6c075 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x34e984ce path_get +EXPORT_SYMBOL vmlinux 0x34f21b08 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350b407d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352d6e54 phy_init_eee +EXPORT_SYMBOL vmlinux 0x352e0c80 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353a4bc7 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x35465e15 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x355a6071 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35694d33 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x356f363d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3572aa56 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x357a18d5 md_reload_sb +EXPORT_SYMBOL vmlinux 0x35835d09 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x35843735 PDE_DATA +EXPORT_SYMBOL vmlinux 0x359b272f mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x359ec42f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35adacca amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x35b808d3 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x35d23122 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x35d57847 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x35d67ec6 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x360ad6d2 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3614b669 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3646c57d read_code +EXPORT_SYMBOL vmlinux 0x364bcc1a mdiobus_free +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365ceefd iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36810c7e filemap_fault +EXPORT_SYMBOL vmlinux 0x36a9e815 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x36fb9b69 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37232a01 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x372cf99f sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376c8e14 phy_attached_print +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377c0616 should_remove_suid +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37809e58 tty_kref_put +EXPORT_SYMBOL vmlinux 0x378de8f6 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x379eca78 generic_perform_write +EXPORT_SYMBOL vmlinux 0x37a1909f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x37a37c51 proc_create_data +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c0393b seq_lseek +EXPORT_SYMBOL vmlinux 0x37c95e54 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x37caaa72 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f196eb pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x37f73620 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381da4dd blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x382e171a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x383b6497 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x383c84bc simple_empty +EXPORT_SYMBOL vmlinux 0x386a33a2 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x387c427b skb_ensure_writable +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 0x38a2c1d2 md_handle_request +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38d3fe7d max8998_read_reg +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38eb65c8 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x3911649e vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x391164ee fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x3923835c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x39272793 to_nd_btt +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x39373ac8 generic_make_request +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3942c57b scsi_device_put +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3971b0da napi_disable +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a82cc4 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b73309 import_single_range +EXPORT_SYMBOL vmlinux 0x39c2782b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x39ce80b6 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x39e323af skb_push +EXPORT_SYMBOL vmlinux 0x39e47b4e elv_rb_del +EXPORT_SYMBOL vmlinux 0x39f9769f irq_stat +EXPORT_SYMBOL vmlinux 0x39fb384c md_check_recovery +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1e1d65 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a33259e follow_up +EXPORT_SYMBOL vmlinux 0x3a4e507b blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a7bb2f8 get_user_pages +EXPORT_SYMBOL vmlinux 0x3a917f78 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac687b3 amba_request_regions +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 0x3afafca9 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0595e1 param_get_long +EXPORT_SYMBOL vmlinux 0x3b12f9ec sync_inode +EXPORT_SYMBOL vmlinux 0x3b1447cf irq_to_desc +EXPORT_SYMBOL vmlinux 0x3b184711 pci_get_class +EXPORT_SYMBOL vmlinux 0x3b1887aa nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x3b20389d generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6e7bc1 mdio_device_create +EXPORT_SYMBOL vmlinux 0x3b711437 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3b7e0913 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x3b81a222 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x3b825fc1 commit_creds +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3ba431e9 key_link +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c368e6f tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c5c0260 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x3c6a6546 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8d0a58 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x3c9c3639 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3ca93b6d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x3cabf47e seq_path +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce51645 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3cf64db3 vm_map_pages +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d04e618 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x3d092b03 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d454613 keyring_search +EXPORT_SYMBOL vmlinux 0x3d4b5e10 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5bb3fd refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x3d620f0a rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x3d9280b6 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da3bf1f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dc08b64 generic_permission +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcfb7b3 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x3dd46255 register_quota_format +EXPORT_SYMBOL vmlinux 0x3dd60ce6 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfdb77f ps2_drain +EXPORT_SYMBOL vmlinux 0x3e117e14 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x3e218b6e param_set_long +EXPORT_SYMBOL vmlinux 0x3e26ef35 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e2c4139 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x3e2e10bc genphy_update_link +EXPORT_SYMBOL vmlinux 0x3e34c3d5 unload_nls +EXPORT_SYMBOL vmlinux 0x3e39e497 pci_dev_put +EXPORT_SYMBOL vmlinux 0x3e3d9ba0 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x3e78c55a of_device_is_available +EXPORT_SYMBOL vmlinux 0x3e7f621f inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3e8024c8 inc_nlink +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e939ad5 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x3e99ec10 inode_init_once +EXPORT_SYMBOL vmlinux 0x3e9e00c1 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x3ea63783 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x3ec09697 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3ec6b5ab generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x3ee78924 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eee8d57 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x3ef54776 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0b6cc2 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f511abc sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x3f6734b1 __free_pages +EXPORT_SYMBOL vmlinux 0x3f7aae53 km_state_expired +EXPORT_SYMBOL vmlinux 0x3f86920d __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f93f513 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x3fa4249a mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fbfa89c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x3fd1c7fe security_unix_may_send +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff453d5 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4005f38c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x40147c70 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x401edf96 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4026d930 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x40357bbc pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x40591af4 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x4061a6c4 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x406b2ad1 simple_lookup +EXPORT_SYMBOL vmlinux 0x408add54 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x408f047f scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409bcb62 mutex_unlock +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bd7d94 vme_lm_request +EXPORT_SYMBOL vmlinux 0x40becb38 complete_request_key +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e5e54b param_set_ulong +EXPORT_SYMBOL vmlinux 0x41195593 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x41350ce0 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x413890d4 dcb_setapp +EXPORT_SYMBOL vmlinux 0x41470c6a kern_path_create +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41492353 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x4152accc send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x41563e84 pci_choose_state +EXPORT_SYMBOL vmlinux 0x416741c7 seq_release_private +EXPORT_SYMBOL vmlinux 0x416d0a82 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x4186f4b8 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41909a7e kmem_cache_size +EXPORT_SYMBOL vmlinux 0x41bbf363 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x41ddacad is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422ce162 unregister_key_type +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423327b9 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x4235cf0b tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x423a89e5 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424a346f fman_register_intr +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425ea690 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x42698cb8 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x42989e48 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x42afeb36 seq_write +EXPORT_SYMBOL vmlinux 0x42bbbb59 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c3763 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x43179749 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x432e3069 __cgroup_bpf_run_filter_sock_addr +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 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438218ec generic_write_end +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438886ba bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x438c542a rtc_add_group +EXPORT_SYMBOL vmlinux 0x43aacff1 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x43c290b3 __serio_register_port +EXPORT_SYMBOL vmlinux 0x43dcab93 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x43ef7543 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0x43f06db5 bio_uninit +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x4401bb88 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4468dfef bdget +EXPORT_SYMBOL vmlinux 0x44709fe9 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x4470dfbe param_ops_uint +EXPORT_SYMBOL vmlinux 0x4472501e dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x448153e5 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x4485ce57 __napi_schedule +EXPORT_SYMBOL vmlinux 0x4490c431 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x44941410 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449ada0c unlock_new_inode +EXPORT_SYMBOL vmlinux 0x449b3dfe __ip_options_compile +EXPORT_SYMBOL vmlinux 0x449e4978 netdev_err +EXPORT_SYMBOL vmlinux 0x44a1549e backlight_force_update +EXPORT_SYMBOL vmlinux 0x44aaa1e6 fb_pan_display +EXPORT_SYMBOL vmlinux 0x44ccd11b nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x44dabab1 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f258df vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45014cd8 sync_blockdev +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a30c8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534ae66 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455dee64 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x4570d8c4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458583f4 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x458fb043 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x459786fa inet_stream_connect +EXPORT_SYMBOL vmlinux 0x45a8b153 blkdev_put +EXPORT_SYMBOL vmlinux 0x45d22155 bio_add_page +EXPORT_SYMBOL vmlinux 0x45ed502e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x45fee06f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x46093fe6 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x4617583b dst_init +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x462ecb9b ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x464cc3af dqget +EXPORT_SYMBOL vmlinux 0x4655e271 input_register_handle +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c2492f clocksource_unregister +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d0568a inc_node_page_state +EXPORT_SYMBOL vmlinux 0x46e26d5d nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x46edade0 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x46f8ce6d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x46fea403 vfs_rename +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x4707dc5a __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x472138f6 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x472ee549 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x47340d30 phy_connect +EXPORT_SYMBOL vmlinux 0x4739ca6e pci_release_resource +EXPORT_SYMBOL vmlinux 0x473f8532 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x474ed9af netdev_info +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x47684962 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4775ab79 kill_bdev +EXPORT_SYMBOL vmlinux 0x4777ce8d from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x478df80c vfs_get_tree +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479c1659 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b6a0c8 bdi_register_va +EXPORT_SYMBOL vmlinux 0x47b99bab xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x47bb352d dquot_scan_active +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483083a4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x48331e1e uart_add_one_port +EXPORT_SYMBOL vmlinux 0x48379df7 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48444ae3 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x484581a8 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a3df57 vm_map_ram +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48ad7da5 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c2029f pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x48f00232 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490f0e1c vme_init_bridge +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x49119a37 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x491df756 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x49351626 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x493eeb16 kobject_add +EXPORT_SYMBOL vmlinux 0x49728934 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x4994d7b0 pci_restore_state +EXPORT_SYMBOL vmlinux 0x4996694b fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x499a0e85 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c2885e uart_match_port +EXPORT_SYMBOL vmlinux 0x49c5fe7b iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x49feb265 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x4a0ab517 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x4a2c771f ppp_input_error +EXPORT_SYMBOL vmlinux 0x4a52eee5 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x4a5ac115 dcache_readdir +EXPORT_SYMBOL vmlinux 0x4a749699 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ab092bd scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4ab208ba acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x4abd061d pci_set_power_state +EXPORT_SYMBOL vmlinux 0x4abd9ccb dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af4adcf mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b5e9a93 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b60fb64 is_subdir +EXPORT_SYMBOL vmlinux 0x4b623281 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4b7a7bab tcp_splice_read +EXPORT_SYMBOL vmlinux 0x4b874350 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bc5b062 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x4bcb6b76 rio_query_mport +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd6e930 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4bdb4814 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x4bde6e64 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x4be35572 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf36649 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf7be96 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4c067409 param_set_charp +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0c3a0c jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x4c1acaff netdev_alert +EXPORT_SYMBOL vmlinux 0x4c1bb57f dquot_resume +EXPORT_SYMBOL vmlinux 0x4c1fe589 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x4c2e683b param_ops_short +EXPORT_SYMBOL vmlinux 0x4c35b79c xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5432c2 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x4c73f546 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x4c753475 kernel_listen +EXPORT_SYMBOL vmlinux 0x4ca1e296 free_netdev +EXPORT_SYMBOL vmlinux 0x4ca72b81 dquot_operations +EXPORT_SYMBOL vmlinux 0x4cad16d1 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x4cb1cb50 mmc_release_host +EXPORT_SYMBOL vmlinux 0x4cb58b68 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4cb5daf0 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x4cb66371 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4ced9a93 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x4cee1be8 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4d0040a0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x4d04cc00 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1ff60a wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d57bd0e twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d86271a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dc58862 sock_create +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd7e95a seq_vprintf +EXPORT_SYMBOL vmlinux 0x4ddf2c3b xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0x4de107f8 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4de9d551 audit_log +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df238db pci_disable_device +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e0ec180 search_binary_handler +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e31641c dst_destroy +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3cfe6a eth_change_mtu +EXPORT_SYMBOL vmlinux 0x4e43865a iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e539d55 get_phy_device +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e78137e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x4e7daebe d_tmpfile +EXPORT_SYMBOL vmlinux 0x4e9af311 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4ea227db neigh_direct_output +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4f09363c amba_device_register +EXPORT_SYMBOL vmlinux 0x4f17343b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f8649e0 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x4f9e297b i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4fba67bd file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x4fc3986e security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4fe5b351 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4fee9bef acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x4feeb6f7 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5011a45c _dev_notice +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x50294d14 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x503973dc of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5073967e pid_task +EXPORT_SYMBOL vmlinux 0x5088d394 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a18399 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x50a1844f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a64710 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c57b74 sock_efree +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50cd5ab1 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x50d99ad6 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x50f3d8d7 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x50f5662b nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50f9181d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x50fd25f1 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x50fd3dff tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x511309a8 send_sig +EXPORT_SYMBOL vmlinux 0x511a8423 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x51421910 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x514c7bad free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5167b154 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x516a09aa simple_fill_super +EXPORT_SYMBOL vmlinux 0x5180b4fe of_translate_address +EXPORT_SYMBOL vmlinux 0x51832455 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x51b1c90d tty_register_driver +EXPORT_SYMBOL vmlinux 0x51bd55b5 completion_done +EXPORT_SYMBOL vmlinux 0x51c5ad9c ip_setsockopt +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d6bdae iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x51e46d52 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e8b206 tso_count_descs +EXPORT_SYMBOL vmlinux 0x51fd4169 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5213d26f param_get_byte +EXPORT_SYMBOL vmlinux 0x52164045 __invalidate_device +EXPORT_SYMBOL vmlinux 0x5226fdcd eth_header +EXPORT_SYMBOL vmlinux 0x522c2159 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x52359ef7 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0x526e9a29 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5295dfb1 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529cb2fd generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x529e6cd8 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x52cd4122 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x52cff2d5 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530f11e7 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x53173e0e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x5324e119 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x5324f4b2 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x534ddf08 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x534e08a3 del_gendisk +EXPORT_SYMBOL vmlinux 0x53544d24 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x535cea4d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x535e3b5e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x537aa6d0 sdei_event_enable +EXPORT_SYMBOL vmlinux 0x538f0fa6 __netif_schedule +EXPORT_SYMBOL vmlinux 0x53abaf56 mount_single +EXPORT_SYMBOL vmlinux 0x53b811e3 nobh_write_end +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53ba36b0 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x53c0cbd7 dst_alloc +EXPORT_SYMBOL vmlinux 0x53da6dff unregister_qdisc +EXPORT_SYMBOL vmlinux 0x53e581ef abx500_register_ops +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53fe89b4 d_alloc_name +EXPORT_SYMBOL vmlinux 0x5400a05b __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x54076c39 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x5415f87b kernel_getsockname +EXPORT_SYMBOL vmlinux 0x541df902 dquot_drop +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543388df qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x543ba8f7 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5449e055 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5451e955 proc_mkdir +EXPORT_SYMBOL vmlinux 0x54a14d5c free_task +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b6d599 unlock_buffer +EXPORT_SYMBOL vmlinux 0x54b96200 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x54cfbe0a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54f2a71e sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x54f78647 skb_queue_head +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5526b742 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x55408b1b dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x554543d6 processors +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556338d7 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x55698598 input_grab_device +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x557c007e compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x558407f6 put_fs_context +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a286d3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x55c52002 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x55cd3ce2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x55d7da4c acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eefcc7 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x55ef040c __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x560d2bd6 bio_devname +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x5623ef82 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x56293f16 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5673feaa key_unlink +EXPORT_SYMBOL vmlinux 0x5675d46c bio_chain +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568c6afd kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x568d87be security_inode_init_security +EXPORT_SYMBOL vmlinux 0x568ef987 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569abcca acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x56bedb56 tty_port_init +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e54b1a __check_sticky +EXPORT_SYMBOL vmlinux 0x56e62f49 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x56f412c7 tty_hangup +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x571d9c32 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x5747f98e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576f3196 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x5779e299 follow_down_one +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x5795a3e2 register_netdevice +EXPORT_SYMBOL vmlinux 0x579ad104 try_to_release_page +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57e009a6 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58234e15 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x5826b735 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582bd15d netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x5830bb10 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58538d35 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5859d2b1 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5873a199 bh_submit_read +EXPORT_SYMBOL vmlinux 0x58770426 nf_log_set +EXPORT_SYMBOL vmlinux 0x587a93e6 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x588360fa udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x588f4d13 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x5891cfb6 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x58a3e2ac tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x58a641b2 dev_mc_add +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58aff73c km_report +EXPORT_SYMBOL vmlinux 0x58b3010f rt6_lookup +EXPORT_SYMBOL vmlinux 0x58b3e8fd blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bcfbe3 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x58cadf6c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x58e03667 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f7b296 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x592090cb netdev_change_features +EXPORT_SYMBOL vmlinux 0x59301da2 set_posix_acl +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x595b75d4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x596842f4 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x5972cc4a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b85ad6 zap_page_range +EXPORT_SYMBOL vmlinux 0x59df9720 proc_symlink +EXPORT_SYMBOL vmlinux 0x5a0ab917 inet6_protos +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a3f82ba mpage_writepages +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a511017 _dev_emerg +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac5062d to_ndd +EXPORT_SYMBOL vmlinux 0x5ae28539 md_write_start +EXPORT_SYMBOL vmlinux 0x5ae9320d dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b348778 genphy_loopback +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3d034a __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b47b5ac devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b57290b __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5b62c33d phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x5b786123 poll_initwait +EXPORT_SYMBOL vmlinux 0x5b7b4367 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x5bbdb0d7 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5bdddffc input_set_capability +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bec83f8 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x5beca6a1 account_page_redirty +EXPORT_SYMBOL vmlinux 0x5c10cc39 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5c179503 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5c1be2ce tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5c1cba7c serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x5c1d1de9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c637452 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x5c769e40 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x5c7bbd00 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x5c7f9f99 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5c8a8620 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x5c8c87a9 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5c99b719 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x5ca3c8ee notify_change +EXPORT_SYMBOL vmlinux 0x5caf92bb pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5cb731d2 pci_dev_get +EXPORT_SYMBOL vmlinux 0x5cbd800c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x5cca734a pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5cda2a04 simple_rename +EXPORT_SYMBOL vmlinux 0x5ce0ad5f __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5ce7c653 __skb_pad +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf5c500 skb_ext_add +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d3935ef simple_statfs +EXPORT_SYMBOL vmlinux 0x5d3a65a2 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x5d3ff0fc sock_from_file +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d596ebf pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5d7400dd passthru_features_check +EXPORT_SYMBOL vmlinux 0x5d7b82b2 __block_write_begin +EXPORT_SYMBOL vmlinux 0x5d8f8516 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x5d958002 skb_put +EXPORT_SYMBOL vmlinux 0x5d96bc43 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x5d9fd42c nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5dbb120b devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x5de84d65 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x5dff442b __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e26d98b __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x5e27bbe2 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e358c20 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x5e36d6b7 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3d059b __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5e4877c6 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5e4cfdad nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x5e4f469f dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5e52e4f5 dquot_enable +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e72042f dm_put_device +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e989b31 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x5ea06303 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5eb12f77 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9b447 phy_device_remove +EXPORT_SYMBOL vmlinux 0x5ebedb58 phy_start +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed51608 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee83cd4 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x5eef7e94 __kfree_skb +EXPORT_SYMBOL vmlinux 0x5ef62979 __phy_resume +EXPORT_SYMBOL vmlinux 0x5ef67015 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f27b6ba blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5f2c42f7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5f30f1f6 do_SAK +EXPORT_SYMBOL vmlinux 0x5f3569d7 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5f515880 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f71d21c cdev_init +EXPORT_SYMBOL vmlinux 0x5f7ccb57 __kernel_write +EXPORT_SYMBOL vmlinux 0x5f8d5cd3 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f96e4d9 md_done_sync +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fc73676 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x5fddcde7 request_firmware +EXPORT_SYMBOL vmlinux 0x5fe55046 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600ce5fe __skb_ext_del +EXPORT_SYMBOL vmlinux 0x601f2241 sget +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6041d3b9 register_sysctl +EXPORT_SYMBOL vmlinux 0x6055e45f rtc_add_groups +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6063b7ca dquot_commit_info +EXPORT_SYMBOL vmlinux 0x608557e9 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60976690 simple_write_begin +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60ade059 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b3f05d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x60b60edd fman_bind +EXPORT_SYMBOL vmlinux 0x60b7b946 hmm_range_unregister +EXPORT_SYMBOL vmlinux 0x60bcb302 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x60cce958 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60f81364 config_item_get +EXPORT_SYMBOL vmlinux 0x61072067 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x611bf0f1 prepare_creds +EXPORT_SYMBOL vmlinux 0x612707bd input_register_device +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61387194 file_modified +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x614788dc scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6151823c setup_new_exec +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61710d15 __bread_gfp +EXPORT_SYMBOL vmlinux 0x617218dc __register_binfmt +EXPORT_SYMBOL vmlinux 0x617b1ac0 stream_open +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 0x618a484f dst_dev_put +EXPORT_SYMBOL vmlinux 0x61972bf9 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a44fc3 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x61a578cb __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x61b744e8 keyring_clear +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb4925 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x61da5b16 proc_set_size +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f0b456 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x61f5156e tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x61fb7b99 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x62068ea6 submit_bh +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6266af58 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x626d5648 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62871090 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x6288fe0d make_bad_inode +EXPORT_SYMBOL vmlinux 0x62890955 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x629bdbd9 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f35fba xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x62f3ded5 inode_init_owner +EXPORT_SYMBOL vmlinux 0x62f968fd tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x630c8f50 kill_anon_super +EXPORT_SYMBOL vmlinux 0x631507d7 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x631682cd input_get_timestamp +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x635cbf99 submit_bio +EXPORT_SYMBOL vmlinux 0x6362e30b elv_rb_find +EXPORT_SYMBOL vmlinux 0x6372293e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x63805d1d blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x63948cd6 skb_append +EXPORT_SYMBOL vmlinux 0x63968825 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x63a72e3c security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c34ac7 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c8129d nmi_panic +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63e3c07f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f11dfc ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x640644e7 mr_dump +EXPORT_SYMBOL vmlinux 0x640d772f __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x64127441 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6416926f posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x641ea55d __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x642d36dc no_llseek +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643c160d watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x643c7941 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x64486808 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x647712e7 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6480cdb2 sg_miter_next +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64826f2d blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x648e8297 I_BDEV +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ae9a4c simple_pin_fs +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c5f367 tso_build_data +EXPORT_SYMBOL vmlinux 0x64c653c6 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x64d3ee59 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x64d59a78 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x64dda944 unlock_rename +EXPORT_SYMBOL vmlinux 0x64e0541f iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x64e06aaa mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x64e43541 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x64f2c0ce truncate_setsize +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6517d12c start_tty +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651a8b69 d_splice_alias +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652d259f devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6535ff45 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x65469bdd ipv4_specific +EXPORT_SYMBOL vmlinux 0x65498f04 udp_ioctl +EXPORT_SYMBOL vmlinux 0x6550eab5 blk_get_request +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x655c8812 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x656fbd29 md_flush_request +EXPORT_SYMBOL vmlinux 0x65709635 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65938c07 pcim_iomap +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b09b1f mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x65cbb847 inet_listen +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e79b87 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6605b05f skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x6618f3ee fget +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662b24f1 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x66473111 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x665725af fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x665c8d0c of_match_node +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666ae254 pci_release_regions +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6677a81f kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6678a370 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669d2784 inet6_bind +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b61349 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x66b77616 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66ee3d8c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x66f8c844 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x67033bee bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x6726b079 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67527fbd mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x67630829 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x67704d73 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x677315ae devfreq_add_device +EXPORT_SYMBOL vmlinux 0x678894c3 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67940e80 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c7f9ab skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x67d64a68 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x67e00c31 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x67e57c14 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x67f7f191 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x67f9d0ae get_super +EXPORT_SYMBOL vmlinux 0x67fb80b7 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x6800a70b register_cdrom +EXPORT_SYMBOL vmlinux 0x6808e96b mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x6812a7c9 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x6817f2e5 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x681f19a5 param_get_bool +EXPORT_SYMBOL vmlinux 0x682f9efd blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x68318dbc scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x684762e4 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x68577c5b vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x685c5f72 kernel_connect +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x6872d11c pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688feb3f open_exec +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68cf2d58 serio_open +EXPORT_SYMBOL vmlinux 0x68d4f477 release_firmware +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6913802b mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6914a036 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x691ccb2f flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x692aa3c5 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x693e2481 follow_pfn +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695e413a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697326f3 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x69905c7e _dev_alert +EXPORT_SYMBOL vmlinux 0x699c0328 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x69a9ba84 write_cache_pages +EXPORT_SYMBOL vmlinux 0x69aceca1 cdev_add +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b5ab5a tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e1f2b7 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x69f10aa1 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x69f5783e jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a079436 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x6a1c9cce blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x6a2507fe pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x6a30f2ec mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x6a310657 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a7dadfc cdev_del +EXPORT_SYMBOL vmlinux 0x6a7fb0dd dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x6a9c60aa nobh_write_begin +EXPORT_SYMBOL vmlinux 0x6a9f51b6 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa1ef82 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6ac45a03 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6adbba80 deactivate_super +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae32c3d jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x6ae39e78 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af071b5 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x6af63c5f call_fib_notifier +EXPORT_SYMBOL vmlinux 0x6afab60c udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6b09f91b pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2941b2 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3aaf3e pci_disable_msix +EXPORT_SYMBOL vmlinux 0x6b4024b4 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b4e1585 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b6c9a59 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6bbf7d03 generic_update_time +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc5dd49 redraw_screen +EXPORT_SYMBOL vmlinux 0x6bd2b3be skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x6be0d38b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bfd9a32 skb_copy +EXPORT_SYMBOL vmlinux 0x6c1d8ea3 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c352d5c rproc_del +EXPORT_SYMBOL vmlinux 0x6c474f74 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c636517 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x6c69e067 genl_notify +EXPORT_SYMBOL vmlinux 0x6c74b8a9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x6c79b4ba pps_unregister_source +EXPORT_SYMBOL vmlinux 0x6c7db764 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6c822846 d_find_alias +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb9cc5b ip_defrag +EXPORT_SYMBOL vmlinux 0x6cbf15ad blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6cd9bd9f ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x6cdf72e9 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6cf3d37d blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d043403 param_ops_long +EXPORT_SYMBOL vmlinux 0x6d0868cb dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6d10d6a3 consume_skb +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2b5b3d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x6d30d61a __module_get +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d53ff12 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x6d5980fd fs_parse +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d923d4c dev_set_alias +EXPORT_SYMBOL vmlinux 0x6d9dfe4c devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6da87cc6 discard_new_inode +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd5f1eb uart_update_timeout +EXPORT_SYMBOL vmlinux 0x6dd6b422 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x6de00c20 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x6de13801 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df1caf5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x6dff491c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e0296e0 new_inode +EXPORT_SYMBOL vmlinux 0x6e1216b8 vc_cons +EXPORT_SYMBOL vmlinux 0x6e159b25 arp_send +EXPORT_SYMBOL vmlinux 0x6e1987c0 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e2fc694 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6e4db639 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e60098a of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x6e6918d4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x6e6d83f7 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e75a807 nf_log_unset +EXPORT_SYMBOL vmlinux 0x6e82f0d6 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ed4036c simple_link +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6ed96cae of_get_property +EXPORT_SYMBOL vmlinux 0x6ee7705d mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x6ef30c0a mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x6ef439a6 padata_free_shell +EXPORT_SYMBOL vmlinux 0x6f0596d7 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x6f2ee58f pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4bf85d kthread_stop +EXPORT_SYMBOL vmlinux 0x6f4fb046 ata_print_version +EXPORT_SYMBOL vmlinux 0x6f56c7dd xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6f6ce511 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x6f6f8d6c d_instantiate_new +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f79b062 ip_options_compile +EXPORT_SYMBOL vmlinux 0x6f866b75 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fb27d74 skb_pull +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc22980 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6fc7be3f kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fec3a8d scsi_device_resume +EXPORT_SYMBOL vmlinux 0x6ff2758e input_match_device_id +EXPORT_SYMBOL vmlinux 0x6ff854ce netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700e2b8b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702a8bcf devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x702e20b1 rpmh_flush +EXPORT_SYMBOL vmlinux 0x705daafb linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x705ed0f8 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7086943a cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x70981f9d touch_buffer +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70be04df udp_disconnect +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70e923e5 inet_frags_init +EXPORT_SYMBOL vmlinux 0x70f19dc1 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x710b564d mntput +EXPORT_SYMBOL vmlinux 0x71257058 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713a69b4 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x713c3450 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717c95af mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x71947288 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x719645d5 vm_insert_page +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a84559 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x71c01b89 make_kprojid +EXPORT_SYMBOL vmlinux 0x71eac3c4 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x71fc903d bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x72080436 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x72126010 path_is_under +EXPORT_SYMBOL vmlinux 0x721a4979 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x723381a2 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x723d5f68 dev_addr_del +EXPORT_SYMBOL vmlinux 0x72463963 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725eb15d scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x7262b17c blk_put_request +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x727ec4ba acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x7283d98a scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x728d799a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x729a3ef9 serio_rescan +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bcdeaf unregister_filesystem +EXPORT_SYMBOL vmlinux 0x72bf255c vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x72db403b mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x72de0b66 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72edd18f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x73002610 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7307ef42 iov_iter_get_pages_alloc +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 0x731e06e7 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x733550a1 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x733a62e6 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x733ed24a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7354813c nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736048d2 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7362b9b4 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738fcbd5 dm_register_target +EXPORT_SYMBOL vmlinux 0x73c2d74a pci_pme_capable +EXPORT_SYMBOL vmlinux 0x73cad0d2 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x73d11b0b d_drop +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74367ee8 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x74509b63 i2c_use_client +EXPORT_SYMBOL vmlinux 0x7465edbb page_get_link +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x74865051 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x74a0173a scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x74aacbdd tty_port_open +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c19858 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x75109b66 dev_get_flags +EXPORT_SYMBOL vmlinux 0x7547aaa8 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7578b3be mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75b21d02 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x75b561b8 fb_show_logo +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 0x75e48ed8 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x75e60613 key_put +EXPORT_SYMBOL vmlinux 0x75ff4cc4 touch_atime +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610dbf1 dquot_destroy +EXPORT_SYMBOL vmlinux 0x761801ae phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7638efdb pci_write_config_word +EXPORT_SYMBOL vmlinux 0x7640713b devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764a014a bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767cdc75 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x767e13cf jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x76844a1a ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a3d3f4 finish_open +EXPORT_SYMBOL vmlinux 0x76b259a4 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x76c325d7 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76dd254a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x76de7693 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x76ef03fd netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x76fb1e1f inode_set_bytes +EXPORT_SYMBOL vmlinux 0x7720ac72 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7729ae47 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7730d1cb sock_rfree +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774425dc param_set_copystring +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77465366 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x777038a4 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7776cbfd meson_sm_call_read +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779bf453 init_special_inode +EXPORT_SYMBOL vmlinux 0x77a6087a iov_iter_zero +EXPORT_SYMBOL vmlinux 0x77aad8d5 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x77b6ab18 rproc_add +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bc77b2 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x77bcad4c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x77d6b8b8 security_sb_remount +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77eeb789 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78107c54 seq_read +EXPORT_SYMBOL vmlinux 0x7824b7fd kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x782a9896 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x783ee957 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78487f3b blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x7906f9b1 set_bh_page +EXPORT_SYMBOL vmlinux 0x791097fa _copy_to_iter +EXPORT_SYMBOL vmlinux 0x79128f6f input_set_keycode +EXPORT_SYMBOL vmlinux 0x7925004c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x793c1c03 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x795a279b mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x795e79d8 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x796a2ad0 proc_remove +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x79743860 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x79795a3d of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79942c47 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x79a104be jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b268f9 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x79c17d32 import_iovec +EXPORT_SYMBOL vmlinux 0x79c2f9d7 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x79c5e7b6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x79eb6618 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x79f2926a netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a301d5c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x7a4135d6 node_data +EXPORT_SYMBOL vmlinux 0x7a420a16 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a51b711 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7a6d49a6 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7a7e6644 of_get_parent +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa01d0a of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab67530 sk_capable +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abd4e36 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aebb933 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x7aede7d7 vlan_for_each +EXPORT_SYMBOL vmlinux 0x7af6e4cd __mdiobus_write +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b1c2f8e abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x7b3a456c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7b4a65d4 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b61a614 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7b6b2246 set_wb_congested +EXPORT_SYMBOL vmlinux 0x7b77be17 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b945546 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7b9df7e1 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x7ba03ef1 __find_get_block +EXPORT_SYMBOL vmlinux 0x7bb05476 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb8a5b4 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7be11526 qdisc_reset +EXPORT_SYMBOL vmlinux 0x7be21d61 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7be31992 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7be354fb tcf_block_put +EXPORT_SYMBOL vmlinux 0x7bee26a6 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7bf470dd dump_align +EXPORT_SYMBOL vmlinux 0x7bff8b14 misc_deregister +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c60ec70 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x7c67ad7c install_exec_creds +EXPORT_SYMBOL vmlinux 0x7c6c9680 skb_checksum +EXPORT_SYMBOL vmlinux 0x7c83fefe setattr_prepare +EXPORT_SYMBOL vmlinux 0x7c9b141f __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb784b7 read_cache_page +EXPORT_SYMBOL vmlinux 0x7cbd5b21 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cec987a dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x7cedd53f generic_listxattr +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf400c9 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d048795 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7d067d95 skb_tx_error +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0fce09 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d150cae iget5_locked +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d6c1762 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x7d783381 cdrom_open +EXPORT_SYMBOL vmlinux 0x7d9216d6 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x7d9a06e7 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x7d9b3a33 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x7da3f681 vme_register_driver +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dba1794 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7dbfacf5 generic_fadvise +EXPORT_SYMBOL vmlinux 0x7dcc3d95 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x7dd50278 get_tree_single +EXPORT_SYMBOL vmlinux 0x7ddbad2e key_task_permission +EXPORT_SYMBOL vmlinux 0x7ddc5161 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7debc50d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfb4ea3 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7dff0db2 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7e0826e2 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7e2cdea8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e46adc0 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x7e4f59a4 do_splice_direct +EXPORT_SYMBOL vmlinux 0x7e602864 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7e6acbc5 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7e892855 serio_close +EXPORT_SYMBOL vmlinux 0x7e8b6edc pci_set_mwi +EXPORT_SYMBOL vmlinux 0x7ebab345 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7ebf6c26 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x7ec724ba input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7ec78bdd rename_lock +EXPORT_SYMBOL vmlinux 0x7ed187b5 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x7eeb0628 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7ef2688b __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7efa575c max8925_reg_read +EXPORT_SYMBOL vmlinux 0x7efabf4a skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f220c16 neigh_update +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f26d247 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7f3b0aef from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7f4c71a9 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f62d50a pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x7f6b694a vme_master_request +EXPORT_SYMBOL vmlinux 0x7f7d70f9 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7f7f5892 single_open_size +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f820a10 check_disk_change +EXPORT_SYMBOL vmlinux 0x7fb9918e ata_port_printk +EXPORT_SYMBOL vmlinux 0x7fd0cf24 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x7fd0d683 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x7fd27744 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x80387ea3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8051a3eb end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ac2088 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80db80bf md_error +EXPORT_SYMBOL vmlinux 0x80e70843 current_time +EXPORT_SYMBOL vmlinux 0x80f83b0a remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x810eabc6 vfs_statfs +EXPORT_SYMBOL vmlinux 0x8111ad02 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8133c67d complete_and_exit +EXPORT_SYMBOL vmlinux 0x813dff81 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x814c358b from_kgid +EXPORT_SYMBOL vmlinux 0x814ce166 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81536813 proto_register +EXPORT_SYMBOL vmlinux 0x815a8b15 invalidate_partition +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81660778 file_path +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818bc6e7 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x8191b2aa serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x81b395b3 down_interruptible +EXPORT_SYMBOL vmlinux 0x81c49824 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x81db2c45 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f3417e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8205879f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x82066c01 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820be98a scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8243a153 bioset_exit +EXPORT_SYMBOL vmlinux 0x824bc0f2 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x825490fb dentry_path_raw +EXPORT_SYMBOL vmlinux 0x82582fd9 path_nosuid +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x826e05f9 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x8277e14e try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82910214 load_nls_default +EXPORT_SYMBOL vmlinux 0x8291c4f0 set_groups +EXPORT_SYMBOL vmlinux 0x82a24d84 dev_addr_add +EXPORT_SYMBOL vmlinux 0x82af5db9 amba_release_regions +EXPORT_SYMBOL vmlinux 0x82b8a105 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d07ae7 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x82f36010 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x8309f379 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x8316bdc0 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x831c4794 filemap_flush +EXPORT_SYMBOL vmlinux 0x832b6501 __f_setown +EXPORT_SYMBOL vmlinux 0x832e9244 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x8338b087 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x834cba39 bd_start_claiming +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x83641a3f uart_resume_port +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x83877f09 dma_set_mask +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a3ce62 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x83aa8297 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x83b5eee8 param_set_short +EXPORT_SYMBOL vmlinux 0x83c534dc input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x83d3607a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x83e2bf91 vga_tryget +EXPORT_SYMBOL vmlinux 0x83f97e56 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x8400effb devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840b2ffb jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x841ac3e1 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x844244ee kobject_put +EXPORT_SYMBOL vmlinux 0x84452b95 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x845821bc devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8482cee0 xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0x84a013de kill_fasync +EXPORT_SYMBOL vmlinux 0x84ab3ee0 dqput +EXPORT_SYMBOL vmlinux 0x84bc8933 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c1c605 param_ops_byte +EXPORT_SYMBOL vmlinux 0x84d5f710 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x84e7db69 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x84ea2b1e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x84fc10d8 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x84fc9616 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x85195b86 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x851fba8c dquot_initialize +EXPORT_SYMBOL vmlinux 0x8529957e pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x852ce292 input_reset_device +EXPORT_SYMBOL vmlinux 0x853b4508 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x8551a122 genlmsg_put +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x85544e54 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x85554ee8 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x855f6dbf ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8567bdff __seq_open_private +EXPORT_SYMBOL vmlinux 0x858253ec jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8588100a netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x858dc306 dquot_release +EXPORT_SYMBOL vmlinux 0x858ee9cd locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x85907c8e phy_validate_pause +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x859508d8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c8160e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85faba4d pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x860024a0 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x8601b72d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x861fd1d8 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x862dd2fa nf_hook_slow +EXPORT_SYMBOL vmlinux 0x86397f47 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x866054e4 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x866633dc bioset_init +EXPORT_SYMBOL vmlinux 0x866eac2c dump_truncate +EXPORT_SYMBOL vmlinux 0x867683b9 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b3a5b0 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x86b3d2a2 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x86b816c1 skb_clone +EXPORT_SYMBOL vmlinux 0x86cdaefd devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x86dfab73 param_get_ulong +EXPORT_SYMBOL vmlinux 0x86edbb4f devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x871ab9d0 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x872326b9 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x873a8ae3 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x875fc27a generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876c3c9b of_dev_put +EXPORT_SYMBOL vmlinux 0x877a0df6 vfs_create +EXPORT_SYMBOL vmlinux 0x878141b3 dev_deactivate +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x87a66bc1 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c74447 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x87dc66bf pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x87f6373f __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x88123260 finish_swait +EXPORT_SYMBOL vmlinux 0x8812f3e8 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x883288b6 kill_pgrp +EXPORT_SYMBOL vmlinux 0x884b6a7a simple_readpage +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88abb2da blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88c34660 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x88cdbf4a unregister_shrinker +EXPORT_SYMBOL vmlinux 0x88d329a4 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dead55 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x890f062d netpoll_print_options +EXPORT_SYMBOL vmlinux 0x8910745b padata_do_serial +EXPORT_SYMBOL vmlinux 0x89258c00 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x89297216 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x8932e4e5 block_truncate_page +EXPORT_SYMBOL vmlinux 0x893f52a9 __close_fd +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x894b5123 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x894ed320 override_creds +EXPORT_SYMBOL vmlinux 0x8956bcad seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x896c7480 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x8998edc7 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x89ae8f55 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x89b050a8 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c1accb tcf_em_register +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1b2c4a md_write_inc +EXPORT_SYMBOL vmlinux 0x8a1de1b2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5d6230 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x8a631647 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x8a6793c9 mmc_command_done +EXPORT_SYMBOL vmlinux 0x8a67c15c bio_init +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7befde fget_raw +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9a4ecd sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x8aab35b3 rproc_alloc +EXPORT_SYMBOL vmlinux 0x8aafbf0f locks_copy_lock +EXPORT_SYMBOL vmlinux 0x8ab71f38 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x8ab72bda pnp_device_attach +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8acbf93c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x8addacb3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x8b001465 param_get_uint +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b01d64c dm_put_table_device +EXPORT_SYMBOL vmlinux 0x8b14933b iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x8b26169c release_sock +EXPORT_SYMBOL vmlinux 0x8b26fb99 of_dev_get +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b44ddb7 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x8b4b47b1 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b5db8b6 sock_alloc +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b68310c generic_setlease +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8d025a netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bb45f65 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x8bcb14ac simple_transaction_release +EXPORT_SYMBOL vmlinux 0x8bcdd250 iunique +EXPORT_SYMBOL vmlinux 0x8bd1a6c3 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x8bf417a7 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x8c06b38b get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0x8c0beab6 skb_find_text +EXPORT_SYMBOL vmlinux 0x8c208396 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2dc637 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8c4b45d9 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x8c5873e6 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x8c59c891 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x8c82f786 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8c9c64c0 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8c9f00ae fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x8ca29f19 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8cb3cdd2 __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cb852e3 sock_no_bind +EXPORT_SYMBOL vmlinux 0x8cbc606d rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ceb9908 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x8cfd7629 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x8d0562a3 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x8d4d2a9d pci_enable_msi +EXPORT_SYMBOL vmlinux 0x8d4dc542 dm_get_device +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d576d88 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x8d591fe5 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d830934 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x8d8c4a59 user_path_create +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da6ace0 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x8db83a28 mmc_erase +EXPORT_SYMBOL vmlinux 0x8dbb22a0 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df68f81 block_commit_write +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfdf56a sdei_event_disable +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3a7ab9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x8e500753 __skb_checksum +EXPORT_SYMBOL vmlinux 0x8e62d5cf bio_reset +EXPORT_SYMBOL vmlinux 0x8e64bc38 abort_creds +EXPORT_SYMBOL vmlinux 0x8e6b330d secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x8e7f3677 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x8e88791e vm_mmap +EXPORT_SYMBOL vmlinux 0x8e8dc23a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x8efeb05c fput +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f060681 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x8f37cfdb netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x8f4c7450 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f7cc0f2 input_flush_device +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa0b995 param_set_bool +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8faaf75b vfs_getattr +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fbe5b78 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x8fc51206 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x8fc85191 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90097284 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x90172394 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x902d4847 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9033e3fb ps2_handle_response +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9036afd1 param_get_string +EXPORT_SYMBOL vmlinux 0x903be9f8 sock_wake_async +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905b5d8a has_capability +EXPORT_SYMBOL vmlinux 0x90761d99 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x908f7936 inet_del_offload +EXPORT_SYMBOL vmlinux 0x9090d59d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x909b7a40 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x90aa1785 block_read_full_page +EXPORT_SYMBOL vmlinux 0x90abf9ea cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x90b17596 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x90d528e7 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x90ece224 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x90fdfe0e try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x91067834 of_node_get +EXPORT_SYMBOL vmlinux 0x912367bb generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x914ae2a3 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x914c0b74 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x915d56d4 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x915f6fd7 con_is_visible +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919e8ba7 of_phy_attach +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b9ec80 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x91bbf445 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x91cc691a sock_create_kern +EXPORT_SYMBOL vmlinux 0x91cddcc6 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x91da0cae mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x91e5a80d phy_read_mmd +EXPORT_SYMBOL vmlinux 0x91f01166 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x922f17f8 vga_get +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9237dad9 default_llseek +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924be16a dev_addr_flush +EXPORT_SYMBOL vmlinux 0x9250d90b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x925175be bio_copy_data +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9271813e task_work_add +EXPORT_SYMBOL vmlinux 0x927280ba neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bd1953 skb_store_bits +EXPORT_SYMBOL vmlinux 0x92c0b0d8 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x92c51681 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x92d6b8ee __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x92e1d325 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x92ec287b pcim_enable_device +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f306b9 mii_check_link +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930cc54f mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x93206bd6 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x93295535 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x9360359d input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939e38e5 register_md_personality +EXPORT_SYMBOL vmlinux 0x93a3fa8c tcp_parse_options +EXPORT_SYMBOL vmlinux 0x93a6370d devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b898aa udp_gro_receive +EXPORT_SYMBOL vmlinux 0x93bf630e genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x93d22823 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x93de0b23 clear_nlink +EXPORT_SYMBOL vmlinux 0x93f6e281 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x94005175 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x9422d032 padata_free +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943578fc tcp_init_sock +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x947a116f jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x947e2672 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x94805928 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b60d89 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c98db1 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x94e84949 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x94f90101 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x95063b1a __skb_get_hash +EXPORT_SYMBOL vmlinux 0x950b9089 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x9519601b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x9529b1f9 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x952ccb3e netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x9544b499 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x9545441a gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955190ef skb_copy_bits +EXPORT_SYMBOL vmlinux 0x9556a852 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x955fba36 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x95695f28 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x956d3cc3 i2c_transfer +EXPORT_SYMBOL vmlinux 0x95724bf0 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x957548bb tty_write_room +EXPORT_SYMBOL vmlinux 0x95865c78 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x95921a77 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95cbf447 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x95d0427d vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95e12c2c blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x95f65be4 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x960249cf udplite_prot +EXPORT_SYMBOL vmlinux 0x96069b25 kobject_set_name +EXPORT_SYMBOL vmlinux 0x9608a290 bio_put +EXPORT_SYMBOL vmlinux 0x961c54f1 __breadahead +EXPORT_SYMBOL vmlinux 0x96354a9b vfs_setpos +EXPORT_SYMBOL vmlinux 0x9656a034 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9659d235 mntget +EXPORT_SYMBOL vmlinux 0x9660b4a5 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x968b4b6b request_key_rcu +EXPORT_SYMBOL vmlinux 0x96afbc78 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x96b0942c param_ops_bint +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b65767 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x96b93ab3 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c774c1 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x96cacfc0 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d8807a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9702607b d_obtain_alias +EXPORT_SYMBOL vmlinux 0x970d60af netif_napi_add +EXPORT_SYMBOL vmlinux 0x971110dd nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x972726dc arp_create +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9740d51c unix_attach_fds +EXPORT_SYMBOL vmlinux 0x97431fc6 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x974354fa phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x97503cd0 pci_request_region +EXPORT_SYMBOL vmlinux 0x977f511b __mutex_init +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979689cd fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x9796ebda tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +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 0x97c6fb94 hmm_range_register +EXPORT_SYMBOL vmlinux 0x97c9e826 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x97ca0c2d km_new_mapping +EXPORT_SYMBOL vmlinux 0x97d98d24 napi_complete_done +EXPORT_SYMBOL vmlinux 0x97ea4762 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x97fea98c fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x981908f0 devm_ioremap +EXPORT_SYMBOL vmlinux 0x981be892 set_security_override +EXPORT_SYMBOL vmlinux 0x981c6ac0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982d2f46 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x9853ebd8 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x986a1302 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x98710b64 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x98737eb3 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x9873fbf4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x9874f150 dev_get_stats +EXPORT_SYMBOL vmlinux 0x98956b32 input_open_device +EXPORT_SYMBOL vmlinux 0x9896efb7 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x989b2e10 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c4256d of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cab207 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x98cf3156 netdev_warn +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e378db param_ops_ushort +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98fc84e8 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990bc161 hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x99147274 dump_page +EXPORT_SYMBOL vmlinux 0x99168677 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993fe981 set_anon_super +EXPORT_SYMBOL vmlinux 0x9950dcea scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x998125d3 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x9987085a try_module_get +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99ba354b vfs_unlink +EXPORT_SYMBOL vmlinux 0x99c5f4cb kdb_current_task +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d600aa dev_activate +EXPORT_SYMBOL vmlinux 0x99d67df7 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x99e0ac39 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x99e4928c nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x99e4f19e pci_map_rom +EXPORT_SYMBOL vmlinux 0x99f0055c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x99f2add9 datagram_poll +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0f7c31 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9a0fba63 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x9a128844 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a25b467 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x9a27b7f7 udp_seq_next +EXPORT_SYMBOL vmlinux 0x9a301c14 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x9a325d62 ilookup5 +EXPORT_SYMBOL vmlinux 0x9a54f033 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a604a74 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9a654508 registered_fb +EXPORT_SYMBOL vmlinux 0x9a679315 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x9a70211c kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9a717734 bdi_register +EXPORT_SYMBOL vmlinux 0x9a72c33b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a8ef7fe dev_close +EXPORT_SYMBOL vmlinux 0x9a9e8a4f copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9abd26cf dev_set_group +EXPORT_SYMBOL vmlinux 0x9ae4eb22 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9af05cdb nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x9af07dc9 d_delete +EXPORT_SYMBOL vmlinux 0x9af39581 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x9af7aa57 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x9aff810d tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1e90a5 netlink_set_err +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b54e9c3 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x9b58ac66 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b7c48a8 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x9baa627c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x9babde41 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x9bad15ec genphy_suspend +EXPORT_SYMBOL vmlinux 0x9bcb1130 tcf_block_get +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c21afa9 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9c23d3bb key_revoke +EXPORT_SYMBOL vmlinux 0x9c5dbba9 add_to_pipe +EXPORT_SYMBOL vmlinux 0x9c6d03c8 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9c79315b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x9c82f987 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x9c863881 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c99d17a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x9ca7e60c pipe_unlock +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb88a22 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9cc74b5b mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x9cc8acd5 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf986a1 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9cfde1a2 __devm_release_region +EXPORT_SYMBOL vmlinux 0x9d094807 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x9d0a875b napi_gro_receive +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d175313 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9d182508 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1d1137 make_kuid +EXPORT_SYMBOL vmlinux 0x9d20f25b _dev_crit +EXPORT_SYMBOL vmlinux 0x9d31127a ip_frag_next +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9da10c5b blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x9da33d98 sock_register +EXPORT_SYMBOL vmlinux 0x9daa4cdf inet6_del_offload +EXPORT_SYMBOL vmlinux 0x9dba15d0 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dca0c8a lookup_bdev +EXPORT_SYMBOL vmlinux 0x9dcb23d3 vfs_llseek +EXPORT_SYMBOL vmlinux 0x9ddeb620 param_ops_string +EXPORT_SYMBOL vmlinux 0x9de44718 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e105e44 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e215bf5 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x9e21eb67 migrate_page_states +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5b8a32 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e79e303 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e882db2 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea1c7ea netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eaef168 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x9eb3cfb0 wake_up_process +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eded5bd acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x9ee49f37 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x9ef2951c tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9f0e3576 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9f3f8d11 param_set_bint +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 0x9f5b472d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x9f5c027c abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f7cd592 update_region +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f7e2fbe tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fa87dcf param_get_ullong +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fb92d7c of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x9fbadb9d generic_read_dir +EXPORT_SYMBOL vmlinux 0x9fc2cb1a phy_read_paged +EXPORT_SYMBOL vmlinux 0x9fd026d0 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x9fd41a3e reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe45fef filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff371c4 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffea724 single_release +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01e0db1 unix_get_socket +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa03e5e16 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xa03ea295 bmap +EXPORT_SYMBOL vmlinux 0xa03ef558 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa0595c5c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xa066e47d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xa0717974 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xa0736bf1 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07af005 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xa082cd33 inet_protos +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d8682 skb_dump +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096b889 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xa09ccada pnp_start_dev +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b18e77 inode_set_flags +EXPORT_SYMBOL vmlinux 0xa0b74095 nd_device_register +EXPORT_SYMBOL vmlinux 0xa0c25c40 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xa0d89216 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e47ec6 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f86ad1 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa14cb767 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xa1599e06 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xa15ee60e get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0xa190c915 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xa1b468da dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d6387a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xa1d889fa km_query +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e3c353 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xa1f2ebcc dev_uc_init +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060138 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2186eef adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa2337574 ata_link_printk +EXPORT_SYMBOL vmlinux 0xa23f6c14 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa2458dff sget_fc +EXPORT_SYMBOL vmlinux 0xa245af34 edac_mc_find +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa260fac4 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa270c01b security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa27101da remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa274687a rproc_report_crash +EXPORT_SYMBOL vmlinux 0xa27cade9 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xa28acb61 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xa28bd188 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2901713 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xa2957f08 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xa2d719c3 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xa2db38b4 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xa301b017 dm_io +EXPORT_SYMBOL vmlinux 0xa3084ad8 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa30cd710 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa3386de6 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa33c0eac wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xa33e4b77 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa3511bca netif_rx +EXPORT_SYMBOL vmlinux 0xa3543d06 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xa35b68a2 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa3858c3b __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xa38b6bf6 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xa390a7a7 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xa3963a84 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa3b82b96 tcp_connect +EXPORT_SYMBOL vmlinux 0xa3b8e8d0 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d50027 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xa3e08644 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xa3ecf6d2 __quota_error +EXPORT_SYMBOL vmlinux 0xa3f085a2 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa3f18d36 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xa3f27cfc generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa42487be pci_iomap +EXPORT_SYMBOL vmlinux 0xa43c4850 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa43f4af1 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xa487ae49 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xa4afa28c tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xa4d13b55 genl_register_family +EXPORT_SYMBOL vmlinux 0xa4d33121 mmput_async +EXPORT_SYMBOL vmlinux 0xa4ee8333 input_free_device +EXPORT_SYMBOL vmlinux 0xa4f461dd module_layout +EXPORT_SYMBOL vmlinux 0xa510dd61 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa51189ba netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5514705 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5814465 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa591b9b7 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5f0f15b fs_bio_set +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa5fae12e alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa639582d pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xa6425bd6 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa645ebb5 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xa648aa02 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xa6673a30 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xa676f1a4 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa6857373 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xa68d5935 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0xa68f0ce7 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xa6988189 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa6b3bd09 serio_reconnect +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa71f0838 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa7335ab1 module_refcount +EXPORT_SYMBOL vmlinux 0xa74bd38d locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74dfd23 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xa7512fe3 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa75b6072 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xa75b671b inode_init_always +EXPORT_SYMBOL vmlinux 0xa761c6c1 register_gifconf +EXPORT_SYMBOL vmlinux 0xa7745cd9 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa782d88b pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xa78e89a6 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa78fe68d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7a46235 init_net +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f4a6e9 udp_seq_start +EXPORT_SYMBOL vmlinux 0xa7f4c0d3 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa819f448 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xa82bc775 iput +EXPORT_SYMBOL vmlinux 0xa8414116 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8920809 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8a9d585 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e8d540 pci_enable_device +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fec007 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa91270a4 con_is_bound +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9389703 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xa93e8ff7 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa95c3a81 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa984c4b7 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xa98516c0 ns_capable_setid +EXPORT_SYMBOL vmlinux 0xa986dfa0 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xa98dadf2 eth_header_parse +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c901dc jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa9ff8369 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa03a3ab jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xaa040d71 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xaa0b80a2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xaa0f6d5e in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaa0fd03b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xaa10eaba xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xaa14af14 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xaa151ffa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3d905f meson_sm_call +EXPORT_SYMBOL vmlinux 0xaa5121fb fsync_bdev +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa759781 dma_find_channel +EXPORT_SYMBOL vmlinux 0xaa9870de security_sk_clone +EXPORT_SYMBOL vmlinux 0xaabda52d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8bcec mmc_start_request +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae33ca8 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaec0a71 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xaaf6fd73 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0b1f78 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab51e8c7 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xab57d528 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xab580557 mipi_dsi_host_unregister +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 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab92052e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabc7ee64 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xabc95a98 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xabc9a22d cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabd63ead dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xabd82809 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xabd8ed24 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1cd504 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac4b9af1 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac707754 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xac714e3f pci_remove_bus +EXPORT_SYMBOL vmlinux 0xac7a8b9b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xac82e5fa blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac889d92 get_fs_type +EXPORT_SYMBOL vmlinux 0xac93c012 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb72b0c mount_subtree +EXPORT_SYMBOL vmlinux 0xacc1ff0d qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0xacc44e60 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xaccdd36d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd9d239 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xace8ab0f locks_delete_block +EXPORT_SYMBOL vmlinux 0xacebd162 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad23db08 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xad2dfa41 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8f2a59 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xad94c6ed __pagevec_release +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9c8344 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xada1d168 dma_resv_init +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb35e95 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd2122e of_device_alloc +EXPORT_SYMBOL vmlinux 0xadd3a300 vfs_mknod +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0185ff nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xae0b7029 md_register_thread +EXPORT_SYMBOL vmlinux 0xae27585b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xae2a782a mmc_of_parse +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae52e16d i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5bfb29 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xae69eee7 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xae70332d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xae742bb5 qman_enqueue +EXPORT_SYMBOL vmlinux 0xae77fa4e xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xae7e3a35 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xae86acc4 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xae97a3a8 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xae9cc836 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xaea3782c __nlmsg_put +EXPORT_SYMBOL vmlinux 0xaea56487 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xaeb11b97 input_release_device +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaed1806f end_page_writeback +EXPORT_SYMBOL vmlinux 0xaed940ee get_cached_acl +EXPORT_SYMBOL vmlinux 0xaf1821b1 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xaf20ee45 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xaf262296 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf507de1 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf724850 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xaf893e47 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xafa7f565 inet_addr_type +EXPORT_SYMBOL vmlinux 0xafaa1d04 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xafafca1e tcp_mmap +EXPORT_SYMBOL vmlinux 0xafd70bcf set_binfmt +EXPORT_SYMBOL vmlinux 0xaffd5047 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xb00faf37 netlink_ack +EXPORT_SYMBOL vmlinux 0xb014d2ad param_set_int +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01fb02d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb02d9021 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb0344fdc jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xb03750fa mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xb03ba8d8 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xb03ddcf5 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb0514f71 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061a98a mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xb0678c05 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xb06f0daa cdev_device_add +EXPORT_SYMBOL vmlinux 0xb0759848 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xb08a67a2 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0da6989 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e32c09 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xb0e82031 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1344bf1 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb15ab250 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xb15cfbd1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb16efca3 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb18f033f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb1b19903 nf_log_register +EXPORT_SYMBOL vmlinux 0xb1b32268 eth_type_trans +EXPORT_SYMBOL vmlinux 0xb1baa6c6 devm_release_resource +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 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1e64afb __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xb1f0e82b tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb1f67372 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xb1fdf700 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xb202f172 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb21f4a04 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb227f64c alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xb229f53b sock_recvmsg +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23226d7 tcp_prot +EXPORT_SYMBOL vmlinux 0xb290c578 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xb2aa21a2 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2ac286f __icmp_send +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2e2f91a iterate_dir +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2eca119 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f473dd xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb3068ce0 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31e29ac inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb34209e9 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xb351bfac dev_uc_add +EXPORT_SYMBOL vmlinux 0xb3560e5e vfs_get_link +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36c8fa8 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xb384ca2e cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0xb38589e3 kobject_del +EXPORT_SYMBOL vmlinux 0xb3a1948a md_write_end +EXPORT_SYMBOL vmlinux 0xb3a944b7 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e1042d pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb40e7a2b padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb4127026 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42d1dae max8998_write_reg +EXPORT_SYMBOL vmlinux 0xb4378bf3 set_nlink +EXPORT_SYMBOL vmlinux 0xb44dbdf1 tcf_register_action +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4931a6e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xb498dcb0 file_remove_privs +EXPORT_SYMBOL vmlinux 0xb499bbc8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4a9d9b1 would_dump +EXPORT_SYMBOL vmlinux 0xb4b49989 sock_release +EXPORT_SYMBOL vmlinux 0xb4c2916f netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xb4c80721 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f6ec01 finish_no_open +EXPORT_SYMBOL vmlinux 0xb52306bb pci_set_master +EXPORT_SYMBOL vmlinux 0xb53d8681 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb55da1fe amba_find_device +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57c00ff input_unregister_device +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a5f22f ps2_init +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae0f7c mdio_device_remove +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5ee8684 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xb5f6c33b flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xb5f794ec pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb5f8e13e mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xb5fd4398 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb6009fe8 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xb615935e vga_put +EXPORT_SYMBOL vmlinux 0xb619542b nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xb61e0dd5 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xb622cffe nf_log_trace +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb64fe718 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xb6509967 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6628417 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xb676cd0b qman_create_fq +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67e4169 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6872635 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xb688606d inet6_getname +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b8abc6 param_array_ops +EXPORT_SYMBOL vmlinux 0xb6c2dd55 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb6ca437d xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e4ebfc bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb6ee3a65 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xb6fc87c3 bd_set_size +EXPORT_SYMBOL vmlinux 0xb71cb384 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xb729bd21 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xb72c10f5 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xb73673cb tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb74f2a9a seq_release +EXPORT_SYMBOL vmlinux 0xb75a1bcc __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xb77fd64a kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb783181f scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7939764 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xb7953dc6 d_rehash +EXPORT_SYMBOL vmlinux 0xb7aa83a0 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xb7ad63d7 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7ced816 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xb7e02a98 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb7e05d3e nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xb7e17681 is_nd_btt +EXPORT_SYMBOL vmlinux 0xb7fd7bec d_instantiate +EXPORT_SYMBOL vmlinux 0xb8131710 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xb8219a82 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xb82742dd dev_mc_init +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb8332cfe param_ops_int +EXPORT_SYMBOL vmlinux 0xb8515c4d da903x_query_status +EXPORT_SYMBOL vmlinux 0xb858f036 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb86947af vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb8857739 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xb89a4c65 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e43f2 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xb8af2666 bio_endio +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b418b1 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xb8b9300c of_iomap +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8cc056a __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb8cc9685 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb8ded796 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb8e99265 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xb903738e sdei_event_unregister +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9134f4d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb917ea05 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xb92669d3 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xb9293f8a i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xb93fd8a1 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb946c3c2 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xb9502ef7 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb95f4a33 input_inject_event +EXPORT_SYMBOL vmlinux 0xb96475dc nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb995707d md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bf6c97 fman_port_bind +EXPORT_SYMBOL vmlinux 0xb9cbe24b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb9e26468 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb9fc468f ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xba0077aa get_super_thawed +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1d93a4 of_node_put +EXPORT_SYMBOL vmlinux 0xba346111 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5b1473 sock_edemux +EXPORT_SYMBOL vmlinux 0xba613aa7 drop_super +EXPORT_SYMBOL vmlinux 0xba6a0b47 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xba875db3 netif_device_attach +EXPORT_SYMBOL vmlinux 0xba9613ac xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xba9b0520 write_one_page +EXPORT_SYMBOL vmlinux 0xba9c585c simple_unlink +EXPORT_SYMBOL vmlinux 0xbabcab7b tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xbabd02f7 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xbac58131 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbaddc139 ilookup +EXPORT_SYMBOL vmlinux 0xbae31b6a d_make_root +EXPORT_SYMBOL vmlinux 0xbaf258f2 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xbaf2ff5a pps_register_source +EXPORT_SYMBOL vmlinux 0xbb00ccae finalize_exec +EXPORT_SYMBOL vmlinux 0xbb04cdb6 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb059145 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xbb0938da sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xbb202231 bdgrab +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb239296 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2b2093 brioctl_set +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3d6efe dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb521eb0 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb8a7a0f is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xbb8d665d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xbb90be65 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xbb99af1d abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc01193e of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xbc0b1ac2 mpage_writepage +EXPORT_SYMBOL vmlinux 0xbc128087 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2a79f7 mdio_device_free +EXPORT_SYMBOL vmlinux 0xbc5f55c8 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xbc71fb5a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbc83f079 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xbc8fe380 dns_query +EXPORT_SYMBOL vmlinux 0xbc956e3e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccc9621 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xbcce48c7 input_close_device +EXPORT_SYMBOL vmlinux 0xbcd1ffbb dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbcea2078 input_register_handler +EXPORT_SYMBOL vmlinux 0xbd02c29f netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xbd0bea8a netif_napi_del +EXPORT_SYMBOL vmlinux 0xbd0e2f98 sock_no_getname +EXPORT_SYMBOL vmlinux 0xbd0f65e9 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xbd12445f freeze_super +EXPORT_SYMBOL vmlinux 0xbd1fa82c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbd2a1d05 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbd39039f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4a029d send_sig_info +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd73b44f devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xbdc06fcc ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xbdd1c894 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xbde30218 kthread_bind +EXPORT_SYMBOL vmlinux 0xbdf2f118 sk_common_release +EXPORT_SYMBOL vmlinux 0xbe041096 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbe13b8f5 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5bd6bc security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe7342b1 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe82b973 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xbe8a7aed flush_old_exec +EXPORT_SYMBOL vmlinux 0xbe92db56 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xbe96607f mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xbeb75573 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbeca2ed2 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xbed557c5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xbed6d18b __alloc_skb +EXPORT_SYMBOL vmlinux 0xbedd8dfb input_set_abs_params +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf0e355f dst_discard_out +EXPORT_SYMBOL vmlinux 0xbf5283c1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xbf6e3c47 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xbf841ac1 dma_cache_sync +EXPORT_SYMBOL vmlinux 0xbf8eb849 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9d3154 pci_clear_master +EXPORT_SYMBOL vmlinux 0xbfa10266 inet6_release +EXPORT_SYMBOL vmlinux 0xbfa89020 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xbfaeeb50 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff4cc50 dump_emit +EXPORT_SYMBOL vmlinux 0xbff81fe4 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xc0047cc5 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xc012bce7 pci_find_resource +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc0270441 kern_unmount +EXPORT_SYMBOL vmlinux 0xc02cd2a7 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc0328362 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xc049c20d sockfd_lookup +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c10eef security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc0c60a84 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xc0cc1d68 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc0cce96c soft_cursor +EXPORT_SYMBOL vmlinux 0xc0e9014b gro_cells_init +EXPORT_SYMBOL vmlinux 0xc0eb3c3c generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc0f6f4aa thaw_bdev +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc108f377 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc13077fb __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xc13264ec neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc1464baf vif_device_init +EXPORT_SYMBOL vmlinux 0xc14b2277 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc156c981 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc172d310 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc1aefa0c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc1d434bb dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc221d03a mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc223fbc1 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xc228129e revert_creds +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc23c8273 param_set_byte +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc25a8502 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc28bff4f generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a940d3 simple_release_fs +EXPORT_SYMBOL vmlinux 0xc2b4df95 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc3010192 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc31188a9 __inet_hash +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3428996 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xc35c822e inet_sendpage +EXPORT_SYMBOL vmlinux 0xc35f9b04 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xc362a1d2 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36ca0e7 sock_no_listen +EXPORT_SYMBOL vmlinux 0xc3715818 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38b3fdf fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3afb16b amba_device_unregister +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d2fa6f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc3e8709a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc3f1af42 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xc3fedcce dup_iter +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc416ad54 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc417f8e3 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xc4193d88 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4249fa0 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc42f9ffb abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xc44cbfbc dma_supported +EXPORT_SYMBOL vmlinux 0xc45390eb pci_pme_active +EXPORT_SYMBOL vmlinux 0xc4578450 inet6_offloads +EXPORT_SYMBOL vmlinux 0xc45fadaa crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xc46ec775 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xc472a9d8 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48d95f7 mpage_readpage +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4b51fbc inet_shutdown +EXPORT_SYMBOL vmlinux 0xc4fc5e52 __neigh_create +EXPORT_SYMBOL vmlinux 0xc5064aa0 param_set_uint +EXPORT_SYMBOL vmlinux 0xc5086254 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc50e35ec devm_free_irq +EXPORT_SYMBOL vmlinux 0xc5165917 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc518f932 inet_gso_segment +EXPORT_SYMBOL vmlinux 0xc51d7287 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc531c429 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xc54e3563 tty_throttle +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc57426e2 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xc5788595 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fdef84 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61d55c0 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xc61f90d4 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6273297 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xc629c69f dev_mc_del +EXPORT_SYMBOL vmlinux 0xc62fa81a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6382e80 pci_request_regions +EXPORT_SYMBOL vmlinux 0xc65e2346 nf_log_packet +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc6714c7d rproc_put +EXPORT_SYMBOL vmlinux 0xc67987f6 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xc6823f05 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xc68b7fe9 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc6ba624a cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e2fd10 vme_bus_num +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73dbeb4 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xc74e57e6 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7952957 seq_pad +EXPORT_SYMBOL vmlinux 0xc79862c4 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xc79911b8 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab6f38 inode_permission +EXPORT_SYMBOL vmlinux 0xc7bb7121 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e3c977 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc7ee8d1c scsi_ioctl +EXPORT_SYMBOL vmlinux 0xc8030baa dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xc8042669 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81b6853 mii_check_media +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc8387050 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc842227e from_kprojid +EXPORT_SYMBOL vmlinux 0xc8432c18 arp_xmit +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84b25f9 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xc856d336 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xc857e3db kmem_cache_create +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b4ca64 __lock_page +EXPORT_SYMBOL vmlinux 0xc8c11747 phy_loopback +EXPORT_SYMBOL vmlinux 0xc8cffec1 param_set_ushort +EXPORT_SYMBOL vmlinux 0xc8dd5df9 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xc8e7622c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xc8eae96b dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc8fb5310 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc8fb8727 simple_write_end +EXPORT_SYMBOL vmlinux 0xc91adcba csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc922b7a2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc923edb9 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xc926e38b configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc934166d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97a550d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98a04c1 set_disk_ro +EXPORT_SYMBOL vmlinux 0xc9957204 __arch_copy_in_user +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b4f0bc configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9f01feb devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xca0363ae inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xca03e524 blk_get_queue +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1b63b2 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca35dd4d memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca462ab6 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca78a707 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xca86f172 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcac6f7e4 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xcad03980 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xcad0e071 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaf0bd38 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xcaf2034f __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0e92a0 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xcb1346c6 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xcb1d025b km_state_notify +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb4bd897 param_ops_charp +EXPORT_SYMBOL vmlinux 0xcb4c497a dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb80f4c7 seq_putc +EXPORT_SYMBOL vmlinux 0xcb893f70 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xcb894e37 hmm_mirror_register +EXPORT_SYMBOL vmlinux 0xcb9e1a22 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb1475e d_lookup +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbbf42fb uart_get_divisor +EXPORT_SYMBOL vmlinux 0xcbc45485 nd_btt_version +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcd99e9 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd4e5e1 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xcbde57ff rproc_free +EXPORT_SYMBOL vmlinux 0xcbe5855c ip6_xmit +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc114db6 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1f5ae4 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2649da nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xcc2cf670 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc36ec23 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6c8972 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xcc705080 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0xcc8fcf22 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccb075e1 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xccbf0ae5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc43ce3 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xccc889dd fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xccd13952 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce51f17 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xccec2fc0 ps2_command +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccefa71e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccfe1905 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd0de0af fman_get_mem_region +EXPORT_SYMBOL vmlinux 0xcd1c0b0c mmc_put_card +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd4b9e04 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcd55ec78 block_write_begin +EXPORT_SYMBOL vmlinux 0xcd607de6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd964a1d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xcd976cb5 nobh_writepage +EXPORT_SYMBOL vmlinux 0xcd9b5664 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xcda974ab migrate_page_copy +EXPORT_SYMBOL vmlinux 0xcdad5278 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xcdafe241 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xcdb1ec94 build_skb +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd07d27 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xcddf45c2 __vmalloc +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf65855 security_path_rename +EXPORT_SYMBOL vmlinux 0xcdfb90b2 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xcdfe9ae2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6477b2 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce88ba1a tcp_req_err +EXPORT_SYMBOL vmlinux 0xce9b52ab filemap_check_errors +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceaf0a0e d_exact_alias +EXPORT_SYMBOL vmlinux 0xceb5dc88 __put_page +EXPORT_SYMBOL vmlinux 0xcec2070a neigh_destroy +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcee2047c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefa708d fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf118a66 __page_symlink +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf21c82b backlight_device_register +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2ade61 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xcf2c4c6e mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xcf4363e4 mii_link_ok +EXPORT_SYMBOL vmlinux 0xcf43eeef dput +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf6d8ad4 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xcf723f22 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0xcf7c3e41 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xcf83d83a __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcf9b177b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa51662 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xcfb8ce80 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe0d269 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd01c03b9 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xd02d90e0 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd049ef20 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd07235fe mii_nway_restart +EXPORT_SYMBOL vmlinux 0xd08c1d5a skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xd091f035 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xd0a06eb2 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a81e07 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0d46df8 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xd0f67f28 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd11ccf8d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd142eeb2 iget_locked +EXPORT_SYMBOL vmlinux 0xd147b946 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd1793fd3 revalidate_disk +EXPORT_SYMBOL vmlinux 0xd180c27d tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1867923 sg_miter_start +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1a217bf netlink_broadcast +EXPORT_SYMBOL vmlinux 0xd1a72da2 d_move +EXPORT_SYMBOL vmlinux 0xd1adf3e6 _dev_info +EXPORT_SYMBOL vmlinux 0xd1d02c73 mdiobus_write +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e6843c phy_detach +EXPORT_SYMBOL vmlinux 0xd1ff92c7 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd21ad078 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xd2218622 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2433da4 block_write_end +EXPORT_SYMBOL vmlinux 0xd24c008e io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27b3e75 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd2bca91d pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xd2be3605 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xd2d546ed phy_driver_register +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ddae4d tty_set_operations +EXPORT_SYMBOL vmlinux 0xd2deaf3d pagecache_write_end +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f28e21 is_bad_inode +EXPORT_SYMBOL vmlinux 0xd2f8e5b3 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xd305b21f scsi_remove_target +EXPORT_SYMBOL vmlinux 0xd30abd53 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd3105799 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3298895 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xd32c8884 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xd34abf35 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3553b3a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd356a793 skb_copy_header +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35b71bc __nd_driver_register +EXPORT_SYMBOL vmlinux 0xd364616b free_buffer_head +EXPORT_SYMBOL vmlinux 0xd36d3df6 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3782336 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd37ca2ed blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd382912a inet6_ioctl +EXPORT_SYMBOL vmlinux 0xd389f82d sk_free +EXPORT_SYMBOL vmlinux 0xd3a4285b devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xd3daa1d1 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xd3dc3b19 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f9c99c generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd439734b fb_blank +EXPORT_SYMBOL vmlinux 0xd44338f4 mmc_add_host +EXPORT_SYMBOL vmlinux 0xd44f62ab devm_iounmap +EXPORT_SYMBOL vmlinux 0xd451feff netlink_unicast +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4685551 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd46f7eaa pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4868ca9 locks_init_lock +EXPORT_SYMBOL vmlinux 0xd48f9a7f skb_dequeue +EXPORT_SYMBOL vmlinux 0xd492cfce blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b0cd92 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd4b2c72e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4bb58a7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd4c39ceb __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd4ce99fe security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e4f2d0 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd4f2213d mmc_free_host +EXPORT_SYMBOL vmlinux 0xd4f2a041 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xd4f8ad45 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50c8dde rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xd51a2abb inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd51b25dc sock_i_ino +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53275c1 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd533f805 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd54773a7 __scsi_execute +EXPORT_SYMBOL vmlinux 0xd55fedef padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xd583ccb4 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xd583f619 of_clk_get +EXPORT_SYMBOL vmlinux 0xd588b1ae jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd5906cf4 phy_attach +EXPORT_SYMBOL vmlinux 0xd5971b79 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd5affc3b simple_transaction_set +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c894e0 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd5cfaf53 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xd5d86cc8 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xd5f2d6d6 get_acl +EXPORT_SYMBOL vmlinux 0xd5f53116 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd6030ec2 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60f57f5 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd6153a46 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xd6166a83 setattr_copy +EXPORT_SYMBOL vmlinux 0xd61faf8d genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd665cc4d dev_add_pack +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd676b744 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xd687e4cd blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd695e20f netdev_state_change +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ccb809 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6e74163 kernel_bind +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f77de9 __do_once_done +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd70fe2f8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xd7159cec phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd71d8477 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd734ae3f mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7559e71 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xd763f001 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd77a8ce9 vme_irq_request +EXPORT_SYMBOL vmlinux 0xd77cf757 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd798457e kernel_write +EXPORT_SYMBOL vmlinux 0xd7a42217 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd7abd53c register_netdev +EXPORT_SYMBOL vmlinux 0xd7bdbe5b scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd7bed4f6 fb_class +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dfd6d7 ip_frag_init +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e685ef xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd83894c5 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd8528c6d skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd853d502 ether_setup +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd863c1a0 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd87c290b netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xd89a048e __brelse +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89fa31b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xd8a09127 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xd8a5ca56 __put_user_ns +EXPORT_SYMBOL vmlinux 0xd8a98904 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8bc4646 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd90b55ec padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd9255ff5 stop_tty +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9468b28 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd95f0e11 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xd96dcccb cad_pid +EXPORT_SYMBOL vmlinux 0xd97964b5 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9940203 vfs_link +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b0f011 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd9b42e74 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c9aa91 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xd9d384ae blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d9203a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9da7223 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd9e8aee7 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd9f9cafa pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xda236789 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xda254bc7 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xda2cbeb8 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xda311a05 __devm_request_region +EXPORT_SYMBOL vmlinux 0xda33b898 config_item_set_name +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda6e9b30 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xda71acbf invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaaf20ca netif_skb_features +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacaca2d pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xdad05b74 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xdad51863 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb008f71 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xdb0ced65 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xdb1a546c make_kgid +EXPORT_SYMBOL vmlinux 0xdb205259 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xdb3b9bb6 key_invalidate +EXPORT_SYMBOL vmlinux 0xdb44b93a dquot_transfer +EXPORT_SYMBOL vmlinux 0xdb55c076 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xdb5a8818 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xdb5abfd5 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xdb5f07a8 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7c144a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xdb842f64 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xdb9a111b follow_down +EXPORT_SYMBOL vmlinux 0xdbcaa068 unregister_console +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdd9d95 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xdbdf4cba napi_gro_flush +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf674f5 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xdc09c3f7 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1a556b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc34500a kobject_init +EXPORT_SYMBOL vmlinux 0xdc394eaf pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc42215d bdi_put +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc501c67 dquot_alloc +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6068f6 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xdc62a268 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xdc6d3542 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xdc6d56b7 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xdc7910ef iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xdc83c144 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xdc8b969f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcad6be1 security_path_mknod +EXPORT_SYMBOL vmlinux 0xdcb0829e dma_direct_map_page +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdccdba1b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xdcea4579 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xdcedbae6 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd23f8e5 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2fc94c blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd3e6c18 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xdd3efa89 md_integrity_register +EXPORT_SYMBOL vmlinux 0xdd3f7000 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xdd40ef67 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xdd57a6eb of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xdd5bb93c elevator_alloc +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd753e8f xfrm6_rcv_tnl +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 0xdd894baa seq_escape +EXPORT_SYMBOL vmlinux 0xdd93db1d file_update_time +EXPORT_SYMBOL vmlinux 0xdda06c0b devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xdda57133 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc15ffc reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xdde95ff5 blk_put_queue +EXPORT_SYMBOL vmlinux 0xddf0d896 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xde13bc36 __frontswap_store +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde345aaa inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xde3521cd __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xde47f9cf genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde59ffc0 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xde7687e2 dquot_commit +EXPORT_SYMBOL vmlinux 0xde7c21b5 __scm_destroy +EXPORT_SYMBOL vmlinux 0xde872cb2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xde92811e mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xde945bc9 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xde9c99b2 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xdebc9044 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xdec2d528 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xdec452d7 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xdecb39d5 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded0ba73 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded6a415 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xdee365b0 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xdeee15b4 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf063b13 scmd_printk +EXPORT_SYMBOL vmlinux 0xdf15116e jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xdf1f6956 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3084ed dma_dummy_ops +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3c5912 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xdf41ca10 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xdf421700 dget_parent +EXPORT_SYMBOL vmlinux 0xdf4925a3 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf905fd8 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xdf90aa1b vme_irq_generate +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf95fdb6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xdfa96c5c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xdfaa3a98 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xdfb14029 down_read_killable +EXPORT_SYMBOL vmlinux 0xdfb70048 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xdfc11482 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd1a0ce netlink_capable +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe9be6d tty_name +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe019cef4 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe045fed3 dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xe0494072 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xe04b9103 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe05a227b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe05cbb19 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a06b8d irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c54c40 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe0daf9d3 sk_alloc +EXPORT_SYMBOL vmlinux 0xe0db9053 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xe0e3cea6 ns_capable +EXPORT_SYMBOL vmlinux 0xe0ee27da fman_get_revision +EXPORT_SYMBOL vmlinux 0xe0ef8d1f __d_drop +EXPORT_SYMBOL vmlinux 0xe0f4e3bb tcp_poll +EXPORT_SYMBOL vmlinux 0xe10252ff kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xe10edf12 inet_getname +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11bd32f kthread_blkcg +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe125f8be dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe155fabf __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xe156a138 inet_bind +EXPORT_SYMBOL vmlinux 0xe159bde1 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe1876822 dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0xe1984d46 init_pseudo +EXPORT_SYMBOL vmlinux 0xe19b6a5d pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xe1c8ac8c fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe1c98fa2 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe1d2ca11 get_tz_trend +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe2022673 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xe20d3993 first_ec +EXPORT_SYMBOL vmlinux 0xe21a9889 lock_rename +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2230320 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe235f14c t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe237da60 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xe24f440b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe25fe514 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xe28d72c1 _dev_err +EXPORT_SYMBOL vmlinux 0xe28ec2fd pci_find_capability +EXPORT_SYMBOL vmlinux 0xe2a1e3b3 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe2ac1dc8 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xe2af60ca blkdev_get +EXPORT_SYMBOL vmlinux 0xe2b43f33 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xe2bcd1e4 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xe2c70279 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xe2cda8a1 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e0c7c6 __flush_icache_range +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe30ac4ff xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xe328cd8f __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe35e47ed logfc +EXPORT_SYMBOL vmlinux 0xe3680774 iget_failed +EXPORT_SYMBOL vmlinux 0xe371ca3a of_phy_connect +EXPORT_SYMBOL vmlinux 0xe373da45 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe38b8ad9 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b7ac5f release_pages +EXPORT_SYMBOL vmlinux 0xe3bad0c4 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xe3c23230 elv_rb_add +EXPORT_SYMBOL vmlinux 0xe3ce2366 register_qdisc +EXPORT_SYMBOL vmlinux 0xe3d1f5dc __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3ff98da generic_fillattr +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe40ee5e9 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xe413822d xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe470cdf9 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xe494b082 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe494d404 current_in_userns +EXPORT_SYMBOL vmlinux 0xe4a54148 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4db8591 kset_register +EXPORT_SYMBOL vmlinux 0xe4ec30cf netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe4eea972 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe4f3e469 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xe50b4790 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xe50cfa37 vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0xe50fe4bb acpi_device_hid +EXPORT_SYMBOL vmlinux 0xe51958be i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe535fb7e filp_open +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe574d85a clk_get +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe591e639 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c7e757 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe5cf42b5 fqdir_exit +EXPORT_SYMBOL vmlinux 0xe5d059b2 blk_rq_init +EXPORT_SYMBOL vmlinux 0xe5d56c7b i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe5f0bffa tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe6039345 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe60b84b8 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe625b73a scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe627bb4a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe63d4614 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xe657e18d sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xe66a4c27 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xe66e9836 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xe67f890c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe683cfb1 inet_offloads +EXPORT_SYMBOL vmlinux 0xe68cebc0 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6aea9fb dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xe6cd4f2c fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0xe6cd7923 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xe6e6bdb0 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe6ebb7ea __i2c_transfer +EXPORT_SYMBOL vmlinux 0xe6ef1748 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xe6fa1c29 inode_insert5 +EXPORT_SYMBOL vmlinux 0xe6faf0b5 sock_init_data +EXPORT_SYMBOL vmlinux 0xe70898b2 configfs_register_group +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe738ce06 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe7464dd1 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xe74d9d19 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe76c3b5f skb_split +EXPORT_SYMBOL vmlinux 0xe7804aa6 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a6b713 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b0d05d textsearch_register +EXPORT_SYMBOL vmlinux 0xe7b5580b genphy_resume +EXPORT_SYMBOL vmlinux 0xe7b8098a ppp_unit_number +EXPORT_SYMBOL vmlinux 0xe7b9644b jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe7c25a0f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe7ccde2c phy_device_register +EXPORT_SYMBOL vmlinux 0xe7cfddbc dquot_acquire +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f79f68 scsi_print_command +EXPORT_SYMBOL vmlinux 0xe81aa835 mount_bdev +EXPORT_SYMBOL vmlinux 0xe8214173 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe85286e0 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe855eb15 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe85bece7 mount_nodev +EXPORT_SYMBOL vmlinux 0xe85d690a sock_gettstamp +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe891d863 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe8a16ec8 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe8b577f1 tso_start +EXPORT_SYMBOL vmlinux 0xe8b81ac4 pci_irq_get_node +EXPORT_SYMBOL vmlinux 0xe8c8f377 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xe8ced791 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xe8cef9bb request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe8d70d40 page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0xe8ddb510 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8fd621b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe911210e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96387d1 iptun_encaps +EXPORT_SYMBOL vmlinux 0xe972ab48 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe978272d md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe97faa55 sock_no_accept +EXPORT_SYMBOL vmlinux 0xe992be0a pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xe99bc77e input_event +EXPORT_SYMBOL vmlinux 0xe99f9638 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe9abae65 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xe9acd243 scsi_host_put +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9cecc27 peernet2id +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea0de2d2 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xea1a039c csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xea202d46 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xea231bdc down_write_killable +EXPORT_SYMBOL vmlinux 0xea3a44f9 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea3f2015 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xea4e2970 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xea5ac004 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea8f7226 give_up_console +EXPORT_SYMBOL vmlinux 0xea9154b7 pci_save_state +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac2c7a9 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae8e055 security_sock_graft +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb3075d3 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xeb30fefa reuseport_alloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb423a77 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4445f2 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xeb6d91d6 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb93b850 padata_start +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeba81693 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xebbe4632 dquot_disable +EXPORT_SYMBOL vmlinux 0xebd0119c device_get_mac_address +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebe16857 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xec01448a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec250882 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d28be phy_resume +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec55bb31 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xec60c767 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xec640e14 skb_unlink +EXPORT_SYMBOL vmlinux 0xec8c5a9e security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xecb6195d mmc_can_discard +EXPORT_SYMBOL vmlinux 0xecc4ba6d tcp_check_req +EXPORT_SYMBOL vmlinux 0xecc72cef kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xeccc9a95 param_get_int +EXPORT_SYMBOL vmlinux 0xece277fe param_get_ushort +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfc9366 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed291bee of_match_device +EXPORT_SYMBOL vmlinux 0xed38d325 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xed45a5ff path_has_submounts +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5be55c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed64fa1f pci_request_irq +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed6c9459 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xed7eaa1f iterate_supers_type +EXPORT_SYMBOL vmlinux 0xed8057d0 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc5eac8 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xede598da of_get_address +EXPORT_SYMBOL vmlinux 0xedf83192 register_console +EXPORT_SYMBOL vmlinux 0xedff4be5 acpi_load_table +EXPORT_SYMBOL vmlinux 0xedff7750 bdev_read_only +EXPORT_SYMBOL vmlinux 0xee01f455 netpoll_setup +EXPORT_SYMBOL vmlinux 0xee23553c udp_set_csum +EXPORT_SYMBOL vmlinux 0xee24b74b pci_release_region +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2d9e1e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xee33d87c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xee37ec30 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xee58bfe7 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee85e637 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9d9b4b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xeed5c602 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xeee234ca __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xeee3e2c4 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xef3f0939 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xef408b0b rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xef475c38 param_set_ullong +EXPORT_SYMBOL vmlinux 0xef574b3e icmp6_send +EXPORT_SYMBOL vmlinux 0xef5c24a3 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef8ee529 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xefa16911 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc55273 qdisc_put +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd591df blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xefda3afa netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf02a5ef2 netdev_emerg +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0864655 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08f4dd7 mpage_readpages +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b1b85e max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0d38c5b inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xf0f8a339 inet_put_port +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10dc309 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf1108338 posix_lock_file +EXPORT_SYMBOL vmlinux 0xf11afbd9 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf121991c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xf16c6469 __scm_send +EXPORT_SYMBOL vmlinux 0xf171c503 pci_get_slot +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a70b64 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xf1c20c75 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e1849f compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fc4e3d udp_seq_stop +EXPORT_SYMBOL vmlinux 0xf1fdf739 pipe_lock +EXPORT_SYMBOL vmlinux 0xf21017d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xf220715e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf22a8d83 profile_pc +EXPORT_SYMBOL vmlinux 0xf2309d42 seq_file_path +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24a9b0a __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf24bc9d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xf2514962 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xf25e5fa8 param_get_short +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2996fed ___pskb_trim +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a9ffdd copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xf2af3981 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf2af9c41 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xf2b5f652 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf2bd0a02 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d106e0 path_put +EXPORT_SYMBOL vmlinux 0xf2e1a78c d_add_ci +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e65e6e tcf_classify +EXPORT_SYMBOL vmlinux 0xf2f70c25 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xf2f919d8 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xf306dd09 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3202ab3 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xf325478a sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3542f13 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf375aa6c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf379e0cc pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38ed2c4 set_user_nice +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3918522 qman_retire_fq +EXPORT_SYMBOL vmlinux 0xf39a16f4 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf39ef573 tcp_filter +EXPORT_SYMBOL vmlinux 0xf3a1b875 load_nls +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3abaff7 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b4f3bd vfs_iter_write +EXPORT_SYMBOL vmlinux 0xf3c5eb15 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf3c88383 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf3cd7e0a seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xf3d9725c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f604b4 udp_poll +EXPORT_SYMBOL vmlinux 0xf3f9f556 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xf3fae198 softnet_data +EXPORT_SYMBOL vmlinux 0xf40e7a73 __xa_alloc +EXPORT_SYMBOL vmlinux 0xf4173d1e __register_chrdev +EXPORT_SYMBOL vmlinux 0xf43bca8c sock_create_lite +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf440776b simple_get_link +EXPORT_SYMBOL vmlinux 0xf4458d67 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xf44a21ae kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf44fe96d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf46e4a75 dev_load +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47de6df fb_validate_mode +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b7370c udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b7cb81 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d468d8 proc_create +EXPORT_SYMBOL vmlinux 0xf4d4800c i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4df1c88 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xf4dfa2a4 mdio_device_register +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f2c1b8 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xf4f3ec18 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf4fdc339 config_group_find_item +EXPORT_SYMBOL vmlinux 0xf5128907 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf5398114 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf57957a0 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf58abf02 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf58e6226 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf592ad4d tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xf597874b __sb_start_write +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5bc58f2 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf5c060f4 param_get_invbool +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf6065e85 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xf61cfd21 vme_bus_type +EXPORT_SYMBOL vmlinux 0xf61db672 d_set_d_op +EXPORT_SYMBOL vmlinux 0xf629ca49 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf62b881d get_tree_bdev +EXPORT_SYMBOL vmlinux 0xf63e1b8a security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xf6401536 dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf64362b4 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf647c630 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xf656131a dump_skip +EXPORT_SYMBOL vmlinux 0xf659d353 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf65aeb16 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68b86f8 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xf692cd94 vga_client_register +EXPORT_SYMBOL vmlinux 0xf6ca5112 PageMovable +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f82a3d devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf719904f sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xf723fe70 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xf72ce7eb fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xf72fd2d5 __lock_buffer +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73e4f42 of_find_backlight +EXPORT_SYMBOL vmlinux 0xf7513d21 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf7810799 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xf7864958 mr_table_dump +EXPORT_SYMBOL vmlinux 0xf7933784 km_policy_notify +EXPORT_SYMBOL vmlinux 0xf7bebe23 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xf7bf8854 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xf7c37445 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xf7e34bcd ping_prot +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f67674 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf7fd6388 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf804388d of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84ba774 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84faec3 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf860f673 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xf86b516a flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xf86c1402 neigh_for_each +EXPORT_SYMBOL vmlinux 0xf8778d31 user_revoke +EXPORT_SYMBOL vmlinux 0xf88862af f_setown +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88afe4b simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xf88b2e02 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xf8927e6b pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xf89d5a25 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xf8b9c5d3 d_genocide +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8c4cb37 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8f52cb2 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fa7e1f tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9562737 napi_get_frags +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97d7de2 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf99017f0 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf99a12fe input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xf9a110ff gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b12b35 inet_frag_find +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9caf04f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf9cc9be8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf9cd8ed6 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xf9e06fe4 flush_signals +EXPORT_SYMBOL vmlinux 0xf9f2d6ec page_mapped +EXPORT_SYMBOL vmlinux 0xf9f83113 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xf9fe1a32 generic_file_open +EXPORT_SYMBOL vmlinux 0xfa035265 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa20fc25 sock_i_uid +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa33a2bf put_disk_and_module +EXPORT_SYMBOL vmlinux 0xfa37e812 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa62fe2a set_device_ro +EXPORT_SYMBOL vmlinux 0xfa689a8b param_ops_invbool +EXPORT_SYMBOL vmlinux 0xfa6f839b msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xfa7e45f5 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xfa8275cf tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa956231 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xfa9a8519 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xfa9c3524 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfadd49a1 security_path_unlink +EXPORT_SYMBOL vmlinux 0xfafbf640 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xfb0d21d9 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xfb2507fb fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xfb2d5c6e xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb5fc53f sock_wfree +EXPORT_SYMBOL vmlinux 0xfb62ff89 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb746cc9 down_killable +EXPORT_SYMBOL vmlinux 0xfb79df17 neigh_xmit +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb62392 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc396e7 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc1c72df __break_lease +EXPORT_SYMBOL vmlinux 0xfc234cfa __sk_dst_check +EXPORT_SYMBOL vmlinux 0xfc2e4a20 key_type_keyring +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc4e052e tty_port_close_end +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5c46e2 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0xfc7e2596 down_trylock +EXPORT_SYMBOL vmlinux 0xfc80b4d0 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xfc880eaa scm_fp_dup +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc8e3c98 register_key_type +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc3a286 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf9c587 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xfd02b284 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xfd104057 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xfd1b4a4c tcp_child_process +EXPORT_SYMBOL vmlinux 0xfd226e57 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xfd3cd386 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xfd513fad iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xfd5a1d8b fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xfd5dda4d generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xfd8afd1b fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xfd94814e complete_all +EXPORT_SYMBOL vmlinux 0xfda0bf07 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb2df31 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xfdc2d5e4 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd28e64 rproc_boot +EXPORT_SYMBOL vmlinux 0xfde575ae noop_llseek +EXPORT_SYMBOL vmlinux 0xfde670bf of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xfdfe7c29 __register_nls +EXPORT_SYMBOL vmlinux 0xfe016ca7 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe29d3f6 register_shrinker +EXPORT_SYMBOL vmlinux 0xfe2f2a34 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe61d654 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xfe6bb15d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xfe76edd2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9be357 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeaf350f get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeba1a6c cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xfebf1d84 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xfec2194b vme_irq_free +EXPORT_SYMBOL vmlinux 0xfed4a114 put_tty_driver +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee36da8 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xfeeb1c82 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeedf0ea pps_event +EXPORT_SYMBOL vmlinux 0xfef40267 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfefd2bc7 fb_set_var +EXPORT_SYMBOL vmlinux 0xff0a9394 single_open +EXPORT_SYMBOL vmlinux 0xff128562 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff4e7322 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xff5376f1 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xff6832d3 netdev_update_features +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b95bd igrab +EXPORT_SYMBOL vmlinux 0xff820114 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8853c1 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffa85ee1 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xffa9755d genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc49cad devm_memremap +EXPORT_SYMBOL vmlinux 0xffc74443 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xffd220bf serio_bus +EXPORT_SYMBOL vmlinux 0xffddfb48 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x289a383f af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x305fa730 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x416a4a85 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x58e7a6cb af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x59ceaaf7 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x62d55a45 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x67ca5a39 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x700006d0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8412eefb af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x92c91012 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x95b7f2ac af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbdfbf476 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xbf6b34b3 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xca2d236b af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xcd1d4220 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xddb395c3 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xec2f524f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xf1239bc3 af_alg_poll +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xc0ca2dc4 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x86564993 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6fb28f5a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd227193c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x11f89bc0 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x288e633e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x42f60c45 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa84b3920 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbfac7e0d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdc475f0a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x392cd458 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x98fd1fce async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x539a96e9 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3ed740d4 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __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 0xf4d22f41 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/chacha_generic 0x1e9f5906 crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x5c531118 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xb205757a crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe0d10792 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x0b19957f cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x0e8b2665 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x1733504c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x44210291 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5e1aa412 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6043d1c9 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa7ef0bad cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xadf527b0 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb877322d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc3d42900 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc98456b4 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd3a475b5 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf47638b6 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x048fe096 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04da7d40 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0e7dc53a crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x11d956f4 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x36941da0 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x461717c2 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x70437318 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fbc2961 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x99978a55 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9cf9ad66 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb216ff98 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb5abb631 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc452e5f3 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd301a78e crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4a8215cd simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x64edabb5 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb383e7c9 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xdc3ed07e simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2bbadc74 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x96062e31 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe235a1f6 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x41749ce2 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x6255cf7d crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x63f2f3c3 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xa97c2a57 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/twofish_common 0x2a9c1834 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1dd9c7f6 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 0x53e7ecb8 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x81782fe8 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xad2eb928 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfaf3ab7c acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x64b2977b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x55188918 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x6265d4b5 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x07487738 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x4394eb32 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x20dd7c9e __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xbdd0aab3 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0418ff45 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x44baf03c __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x56b3b35c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7f2ad8cb __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1ef6edc9 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe1bcd79f __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03aac544 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d5b836d bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2213c470 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3880569c bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38e5ccfa bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49a27874 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a7f8c75 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68b2f034 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73c6c988 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e29eceb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8af20687 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c6c5c82 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9c1a1493 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5dbb20c bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8159c46 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4406100 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb0f9713 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5dd6cf8 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7692811 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd96dd683 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde34ff8d bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe712a45f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4a98088 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf991d75d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x11c35aff btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1fd110d2 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4224a34d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x79de1f50 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b7f6adf btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbe8aacad btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04a7f90f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x151d0aec btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16a9cc19 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x23094d8a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2bfeb192 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x363be691 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x570c4774 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6657471e btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7c4cb1be btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89e8974e btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x92d221cb btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x994590a1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4e9aede btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe27438e6 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe30a9e84 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea400718 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xee5b4787 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x05e5edc1 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x336a644a btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f6175e5 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x64d84ef3 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6605cd2c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79b13267 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x939e4b25 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa35f4aaf btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8a00da1 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc0254c73 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe1653b79 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1b355d65 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5a1083e8 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb57a6ffb qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcc2f880b qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdc29ecbf qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x634ac706 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8451d72f btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8ed6eff5 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc2c45efe btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd49e815a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3d9b2d93 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x543e52d7 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x601df68c hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x80fed7d7 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x01461592 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1341971a moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4c8c10f1 moxtet_bus_type +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc1fbc10f moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xed2ba934 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x72ff973f __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8e705cb4 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2be8f94e qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x653458b6 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x65c927ab qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b6159e1 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ca8a88d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7655a09f qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x80d68926 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x83811bbd qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8cb1c5b3 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x951258d4 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd3ad6d39 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf7b72fef qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x03d3a7af sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0a96f18f sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0b579624 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x20e969aa sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3005c034 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32e68ffc sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4d9bff88 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5be88ca4 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x67deac3a sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x86e82b4e sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa4a0f683 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc51bb55f sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfc3762c1 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x104ad532 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x370db055 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x40e55ea4 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x52fb4cd6 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x77e95116 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7a3915dc devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x891122e0 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb5aebc77 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc0f0cbd0 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xca9cd0af counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xcab50e69 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xcc0bba81 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd9008dfd counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +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 0x8719f643 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x004ab924 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x230d4615 hisi_qm_get_hw_version +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x40f5bac3 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x41a29cd6 hisi_qm_hw_error_handle +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4f4ef9fe hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x519cc7bf hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5404d983 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x55b3db4d hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5e69dd98 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x69c439e8 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x742db255 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x93dd5aba hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x94a7e266 hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x952db450 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb0cb9804 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb8beed41 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbf2421f6 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc8a03574 hisi_qm_set_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda3a2fc5 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe67404c1 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe9945e22 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xea38285b hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xb4966a7f dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x71ba0364 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xdabd05c8 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x37634b7e dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ab99c7b idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3c28355a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b542c7e do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9069c21b idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc5208d00 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdc0643ec dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x031674e5 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2258741e fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x23ddff95 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2ad21ddb fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x33cbd351 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48458d31 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4d8a6719 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8338849b fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8fbc110e fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92132a46 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9281c517 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x99fec853 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9e8649c1 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xab58be8e fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcb8cd80d fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf645ef25 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x15cf433f hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xabd98a99 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7fa65714 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x805ea418 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x006fe386 alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x1db8b75e alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ab13ffe dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x23a9b528 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3410459f dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x34d9a90f dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x424a8ee5 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x53c5cf1a __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x85d0c2ab dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5d8673a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7676bc4 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa81b8ba4 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab2040cd dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xac5c89e7 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb481c8f8 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb64f4b2f dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc23ac55e dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc517e6f2 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd5a49617 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdeeab81a dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed828b66 dfl_fpga_cdev_config_ports_vf +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 0x1e82f98d fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2f24776d fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3400edb4 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x52d65811 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x821833c9 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb54ef216 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcb3c7486 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xda685af1 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xda7ac226 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe80ddc4c fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfced1ce7 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfe0bfacc fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x04283b78 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x39169dd3 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x42c3bc7b fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x44d47228 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x531c5985 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83142bdd fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f149cf5 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa221902f fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xad1d619e fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb27f54d4 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb98f9a15 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe5de8221 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf71c5446 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2368f8ff fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4fc83b8f fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6e86c526 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x815b6423 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8f0d59e8 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa731b0b4 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xeac2e13e fpga_region_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0c4b2c6b fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1b4d9a50 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1ca8188d fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x22330d8d fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2df62dfa fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4393a511 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x666f793e fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x822ce9b3 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa5008e8d fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe2354c0d fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x0f710804 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6ea28e9c sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x8ef14a56 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1860ced5 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x23312a7c gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x733282e4 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcb38921d gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcd888c6a gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3ce236f2 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x525c2d55 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5873de33 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6cb0ae79 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x82550e04 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x246ca73a __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xccccd18e __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0bece739 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x16c4738d analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x181893cd analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x28f9be9d analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2d194adf analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x30ba3a55 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc7f2fb66 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf426f517 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 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9cc5b79c dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc20c24a8 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-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 0x79134fcd dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xbf81f4af dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d13a62c drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x11c7f1c0 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x18c0e335 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25ea8aa2 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x34042719 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48aa9788 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5bc7bde8 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c2eee8e drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6173d44e drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ac7c88b drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6b4b34d8 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7039d686 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70be25a6 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ae8e614 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x936d5210 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9424ed9f drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e076f3f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa78c5701 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3df1be6 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0ad90c5 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9bb67be drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdeff4061 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0669f6a drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0de4de1 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe212b235 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3435a0e drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf053bc42 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6ea1c2c drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa9c535b drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0b74ed2c drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1eed604b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2c3f2303 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xac9177f7 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb9000f2 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf018759f drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfb9a1af3 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1ec8b31b meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x68f39659 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xeb2a048e meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xd6601b15 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x01a8e5ae rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x0b465164 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x254f955a rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2739977f vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc2d2d0ba rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x41772961 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6c31659b ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xfbf01242 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00639cd8 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02e8b22f gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0442541b __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0551b558 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0808670f gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x09b89a87 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11752bc7 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x198f3ad1 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x337967dc gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bd2b1e5 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bfcfc5d greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d52d107 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3df159a1 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef75a08 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3fdfcadd gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47638e26 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c54587a gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d1481b5 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66cabb4b greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c472ae6 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7437177d gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x770933ae gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7765b836 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8bf98f05 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x95ce450b gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96c94714 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c1a3686 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d4d0bff greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae9627b5 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf32c9a1 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9f9983a gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbedacf10 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfdd7b7e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc1a66ba1 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc397c10a __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8c92cd __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd30c4c55 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd397823b gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd49e30d8 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0032a7a gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1d06ed5 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf31b3c3f gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf55dd82b gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a5c80ec hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ba531c9 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1791db56 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f840515 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20d31a25 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26552b8b hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2710a846 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b6dd7ab hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d1e3d83 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ee965f4 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46bae02b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a35b50b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x529ade80 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5571ae5c hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x570543af hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x580a59da hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63e11c52 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6815f60c hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72e7d1b6 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x78f254d1 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79e7b9ef hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82b3bb01 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b8a020d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9641d0b0 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3863c1c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4051e08 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa40d3ba hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae0a76a9 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0987260 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3ceaf34 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaf60322 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc92bfae4 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd239a356 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5150c8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd524ae7b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd931e0ef hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc4921c7 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1189b06 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6778f01 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea8872f4 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec744dd6 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf352f4d8 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf46487b2 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb341b6d hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xcfd1f0c7 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0240d45f roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0b3bd9b1 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x631bb128 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc404d5d9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd56f1258 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xefa17bea roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0b7a53d1 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3d793dc7 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5364dc6f sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x58466f15 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x738e7600 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9e5e1579 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa445354c sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd05a7288 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfc71422b hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7100c636 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xb36a7ce1 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x2b8ba89b usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xeb16040a hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x03126d6b hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x05d91c05 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b992a96 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1aa07555 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x239722e9 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x26ea2ce4 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3dc15a49 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5e864ced hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f601af2 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x67ae9068 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79dad739 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x99dd178d hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbf89055 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xccd75e9f hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6f4c85c hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2003725 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf620c746 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfac05f33 hsi_async +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0284aec8 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5b62e53f adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf8c75ac1 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x16816c06 pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1b8b4963 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3034af30 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x33bbac4a pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f3f3220 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4a47e87e pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4f30bca1 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x531e40bf pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x591d563a pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5a861fcd pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x71a91af3 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7497938c pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x796009a2 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x950e178e pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9d87cedb pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc09d99d7 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe6c86c20 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xea0a9196 pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf9f50d92 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x017e0f7d intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0c5c9b5e intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2acd9f2f intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5e9b07a8 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8447582a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9d7b6cce intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa07b4506 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb6c098b9 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb86bce18 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x230c16a3 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4c141c4e intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x70882532 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4a024327 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x69f4354c stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a8c54b6 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7aa2ceb3 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa1fa4e45 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaa3ebda0 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcc5c50b2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe98351fd stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xff913aad stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x19136980 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5beefe2c i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x67a69d03 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d7c01f6 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x17a728e4 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x080bfd14 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1cb82d6d i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x20254661 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a9637eb i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b9c14a0 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58aa4a29 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61f44f2d i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66add0f3 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66fc62c5 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e6d5760 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73bf3558 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74af8d74 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7bcd9c29 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7e399efe i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8b2f9ca1 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9b29b1d1 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9cc2e240 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad196ea9 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb474b565 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca4ea5e5 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd0b297a8 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf32d0ecc i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf742842b i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8613658 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfde94fb4 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x2cfbc6a4 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x91a9f670 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x252dc99f bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x90ce6edb bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb7004827 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe1de7edc bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3487b3e8 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x595dea4c mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xad93c505 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x80faf9a7 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xaed06db8 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x00196bb7 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x38f220e1 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6abb0333 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7dc6cfe0 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x88b81480 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9288ef37 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9e02a2c0 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9f702e55 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9f8cfffd ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf3fdb0d1 ad_sigma_delta_single_conversion +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 0x376ae45c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4e4ec2c0 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 0x8958de25 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-hw-consumer 0x22684d8f iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xc9ae321b devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe0819244 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x09d1df7a devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x11af100f devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x1f3a140b bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0c3546f6 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3c4b6ca5 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7d1bc1d3 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8054d96e cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8064bb38 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xab62d7ad cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc670195d cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcace432b cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe33b30d7 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8c0fed04 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9506aa2f ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6736b55c ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xe13a4579 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x37557e01 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7727fda8 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe86809c5 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x140cc66a fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x6d5f0160 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x72b8f415 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x01681372 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x255f24d3 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x468efdb0 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x551c9ad9 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x62334f2b adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7447e87a adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77a11fa4 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x800830d7 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x90fdaaa5 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc2f1e8cd adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc873496d adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe17b06df adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x830b139d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xce8ed493 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xf6690b83 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xfa34867f inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x064ee5cb devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x090a2ea5 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ba8e58c iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x103fa81e iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x107769e3 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c99ccce iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e607249 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23666a46 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x256053a5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x270a6c95 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2745ff92 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c34cd7a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ca3c42a __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x330660d5 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36b841da iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a84394b devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4411d4f9 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47d5ec52 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56aebfb3 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5969f452 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5acd797f iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b1720bb iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x711461d3 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7736d62f devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78010979 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79687e36 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f21f6ba iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84fe28fc devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8efca4ca iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x905f92aa iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94c6dbff iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97cd02c9 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d0b7521 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa416a327 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5b7c7c5 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb206d664 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb33d86a8 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb39960ad devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9977c03 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3873a48 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6d09d5b devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7b40797 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcba36a39 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd192959 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd227ac62 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe55125cc iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe82e0290 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1f7a9af iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfcff72f5 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe9030ec devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xa61e5fc0 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf5666184 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5890a271 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6631f325 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7b870fca zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9b01476a zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdb10cfb5 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xddc9baf1 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8ca4adcf input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xdba512b1 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x121218c4 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x16a6b43b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x34d83c99 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x381e86cd rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x439d28e9 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x47a852a9 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x56016325 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5d62733e rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9c2c232c rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd0a8e3e1 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe37f2691 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe4c9af52 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe9344f63 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xffbbb7aa rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2f13f6ce cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9a65fb68 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xaee9ca01 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xca8b13b1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd9097bb4 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x26f07b1e cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc365618d cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0aef3729 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4471ac8c tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x65e78e84 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x94bbb6ec tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27cf0303 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x36964446 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3783f969 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3854a40c wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44c0b8ff wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4dc53896 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f28bb17 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb5b8ea26 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdd16e61e wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdfc7209e wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeb65039d wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf6db1ec7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x54af30d1 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6e948bd4 icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x81a4e10b icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x89645fc6 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xa84a8525 icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xb76442f9 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc24ce93c icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd1294f54 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xda3535a3 icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xdd345eae of_icc_xlate_onecell +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 0x07c57e64 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2ac0e0bb ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b260223 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x799949a5 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa78d24eb ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb3ebb45b ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb705fb6f ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf2c5e2e4 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfcf6862e ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x03eb1c7b led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x36a96539 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5d3558f4 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c58b363 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb5109f6b led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb75524e0 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x104abfe7 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1f7cdf4a lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x42583b3d lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x59614fd8 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x654f849c lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7e9f4498 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x89363294 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbe2c0257 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb81d68e lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf0b26b9e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xff2e4119 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x31453ea1 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x59ae0d14 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6321427e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x67ec466f mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6810c386 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7dd2530d mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xae9d94c4 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb3d6c12e mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbcc0f3c8 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbf403e01 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc3b9c681 mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe3b411f9 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xebab2087 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeeba703f mcb_bus_get +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26357a63 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x362afe6a dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4ece639e dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x533da9b1 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e74d301 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 0x945ed100 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x999f2f7a dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f18e8bd dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4f1e30a dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa8b2f463 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1a28509 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb5b124cd dm_cell_unlock_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 0xb9a5f043 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbc2d28d4 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf391ab89 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf73f7f5e dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfe3e6bee 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 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 0xf74d2fa5 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0cec7266 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3ad1e1a6 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8a6c1716 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa6078fe5 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 0x16612a0e dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2ae97c91 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3d19effd dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x79d83a9c dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xe55394fa dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xef42ed57 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/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2bcef97 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x287b1372 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4ee4c384 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6d5edc45 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f901d24 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8234a9f8 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x96b5c301 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9bd66663 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc47a362c saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe9a62a09 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9c3870f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2dc8b27a saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x565ba793 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5f79177b saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x64142be0 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x75af53b5 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x957b80fe saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf25ec405 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00471834 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x005f3580 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0449b80d smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x07db4eae sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16747dd9 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c7d199d smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34e813d6 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 0x4793df5b smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78fc7307 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95d7dc5b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa41a555a smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc5e1ce4 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd6a994b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8fa2730 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce59f2ae smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeff24f69 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8ef14c7 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a066da1 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16466b62 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ad1e7f1 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ce5e998 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2168e800 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x233f667c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3224fdd5 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3bea3f33 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d22a85c vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f623848 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x51743c50 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e569527 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6113fd6e vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f9b7c01 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7469589a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7cf3a573 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x836b83c1 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x875163ed vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddae992 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90828029 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3c69cf9 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaeaa0545 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb631c5be vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbfbe757a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc88264fe __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd2f9591 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec50b01c vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed7760f3 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfc654d63 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xaf6e6d20 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc953fc32 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xd1ee4438 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x530d9bda vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x8e311322 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x032b7b08 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x092ec871 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0c7d05d7 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23529c3c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28af9cd0 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x366a9fb9 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49de6719 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f229dd2 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5709b26f vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6fcf5f12 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x716cc19f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x725e0776 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x802e821e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8611dc5c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fc38ca0 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x92f475cb vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97aa14a8 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9b73ff9f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4e9a99e vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa55332c1 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa587a139 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb39e98a1 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3e34d2b vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd1c9c12 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc39cbd09 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5c02fb8 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc60b2266 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4f625de vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf04ad03f vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf05e6c89 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa53abad vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x1f884c6c vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3ca50dc4 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3fc0288f dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf1f3a18a dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd52790b4 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x5e594ed7 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x9e3d7b88 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x555b61e4 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x90830935 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xe38d6c9f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc53259b3 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd3c07e7d aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x56d12291 smiapp_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0981d98f __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0aa9d7c8 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0abd3461 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10653b83 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10e23821 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1241a070 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12e49ace __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x148102b2 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18758046 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26072782 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2709d0d6 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b163888 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cfde2da __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6af73b71 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c78d2f2 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x725ceb55 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7303c3f0 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73c65ced media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7eccce5c media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81fa3ed3 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8976e3c2 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ac3dfd5 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x950100a0 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99e55ebc __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9df57487 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f5ab813 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9fb5edea media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8af2ed0 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf356290 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaff508a3 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb35ea878 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6e16a74 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc81c4184 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9d339cd media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda50ab3c media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf20641b media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdff9765f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe35bd908 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7c1dff8 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9516b28 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xec546325 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef7c4c2d __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf43c012f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4c7b0b2 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5371729 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf85b663d media_device_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb0db62e2 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x113059c3 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1999d2f8 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f382d27 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x546996a6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5cbe53d6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61fe2451 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x675fdb8e mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7aba6df0 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7b4e5b66 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x871fdeac mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x87228bbf mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8eec1cee mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9666e622 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa10e3cfa mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacf0549d mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc086748c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda9a7d99 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9e482c9 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb4ab58d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d83ff7c saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x146e1eee saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x194e1be5 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3a5c9da6 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d1131b5 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5fa304bd saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7056780e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x710bffdd saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7244c82f saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x761ae430 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f6edb98 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xadf65d3f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb6efa5d6 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9cb9f5d saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9cf8c63 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd104e89f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe190acb6 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecaa958d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xef585c80 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0300dbdf ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0ece259e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x69e6db62 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb933e3b9 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc855c55b ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe5ccea86 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfee5e96c ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0206ea98 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2c37888e mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x724cb513 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x768c6061 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd30c78d9 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x0fc79880 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x101c0c16 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8a89e164 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8ab19672 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x97959e95 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcfcb94fa vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd0709d6a vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf6d5b1b1 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x02d1b931 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x157d2811 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x18da6233 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c6da58a venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1ee4cbc8 venus_helper_power_enable +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x242a5d9e venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x262b503c venus_helper_unregister_bufs +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 0x31e14cbc hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3b47b528 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3fb7906d venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41f777ad hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x45abb7d7 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x46b08e10 venus_helper_set_core_usage +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4dc123d5 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x50793ee5 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x575bf155 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6a60c08d venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e1b9055 venus_helper_load_scale_clocks +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x75e930b0 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x770030b6 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x77d6f137 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x79e418ac hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d11dadb hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d8ba08a venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f722eb5 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x815b7cd2 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x84d1f440 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8b36ea5c venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c62167a venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8df2e877 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x94c7fa98 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa167ec10 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa484ae9a venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa96ef216 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaebfb2fb venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb02ad1e7 hfi_session_unload_res +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 0xb630d8af venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb7b1052 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbd87b1c9 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb185ce8 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd193cbe hfi_session_flush +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 0xdde4f6e4 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7c643c3 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9b4187d hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee526cfe hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef23426f venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf8416e4c hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff544ab6 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xffabaad3 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x33499e43 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x2a5e09d5 vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x3afc9a5a vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x524b9ae7 vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x58330040 vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x7f200a70 vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xad20564c vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x10d5d86b vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x3af6b0fe vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6b723e33 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xaae0ef81 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xca4d7aab vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xdf467d4e vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe44b7b24 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x30d8793c xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8492a619 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x89627c91 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaca4c3f7 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xba01c4cd xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc72820d7 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe578cb76 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x1303b465 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 0x55adc3a4 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5ecf3e3d radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x010285fb si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x31d6a912 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x32d589f4 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd7177a11 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe8d3850e si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0b6e332f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1a393e79 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2732793d rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x292c5ac0 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32fb4a48 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x366ac4a3 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c4b96cc rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fa5ce77 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4024971 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5179330 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa98390ba ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xafe8ca11 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb79e3ea4 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf0fb030 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc385dee1 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd24c1bee ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc387106 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf24d2918 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf55e4fce rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9e063a3 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff2caf1d ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x94bb40d5 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xa777255d microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x55577da5 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xc75cf8f5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc442acd0 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5b59633f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3d3259b0 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcbfdcb4d tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc6a8908f tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x77abe7f3 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc9f524c2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x31d40486 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7e6ab335 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcaa0797b simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x263f8e9f cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36bd92a3 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x39b61ff2 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e698fb1 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b2aa2e8 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a688cac cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c6494e9 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9134389c cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9e3f1484 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fe9b335 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcfb2b4d9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0ebb99a cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd120331f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1e106f5 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdfcba0b8 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xebd4dada cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf4c63c2c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf930cf0b cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb423e06 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfbc9407e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x69d56efa mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x9e2919e8 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0bb52691 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15144ea1 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e39a661 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d1b1e3a em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x445fba15 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a09adf0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b171d9b em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d1403ae em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50ffc5ce em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5bbfba88 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d689c4b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91ff8c3f em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3c91311 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc666a414 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc79e721f em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcae7641d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5a858c9 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xed91ea70 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x48813201 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x851b5cb2 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbca41d43 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf9769fad tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4bc72ef7 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbfa062e4 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc789c895 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x15d1e3cd v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x20e7fc2c v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x27ff859d v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3f4d81d4 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x41ef5b94 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x57c17ebd v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x82e05f90 v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb7ac1b5b v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd31006e2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xeb65c17b v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01174bc2 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06ae36de v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c8c60d3 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16a92379 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1806223f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b66f50b v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d213bf0 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21049710 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22af3065 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x319ac8c8 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b94c067 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d5cf039 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45a53990 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60251e3a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60a42551 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c0ddf20 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x742f272a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x755b4d89 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x781d7ddd v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b42e148 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95cd0e74 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9df38ecd v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa680b00 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadc83f4a v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb105851 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd150d5bd v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd32b8b73 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4bff4a3 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5ec8fe1 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdacb00ad v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3bcd80b v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe99270d3 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb45cfb2 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf050e66b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf918a6bb v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1147b410 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x135fd8c8 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x154a60d5 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1bc32336 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x28f033ed videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2aec92c2 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d9c865b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fb5a90e videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bd66dae videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46df56b3 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4be5dc70 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b6341f3 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f05c708 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x630519e9 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63133bc4 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7390acc3 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88441e14 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f8f9477 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9db3e533 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3968442 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb50bcc32 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9dffc5b videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc6ef342c videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdceb2f65 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x144e25a6 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 0x760eb8af videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc6f7a87a videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd980a2e2 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x64067a82 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x6f0490d1 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x83dab910 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x029f219d v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x044bbea9 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08168963 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133529bc v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19c9584b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2931acc1 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a53ca39 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ba7d000 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32431a1e __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bf3301b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cb980df v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e13d4fe v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42a5c209 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43996a8c __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b2798e3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68122016 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e09458c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f38e99b v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8130501e v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x827cb2f3 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8998b131 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b2fc8b8 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cffaaf7 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97217cce v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a85b09e v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ff32910 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa36ee826 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa0353c3 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4d31006 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb795f071 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbccbc001 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe1114d2 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf2ec642 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc13a18f3 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2d18895 v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc40bb12d v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5cf9711 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc97bb9a3 v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb5093d1 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce1f86a9 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0700018 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd36d9b2c v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb78ad30 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcdb3669 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddf88225 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfa9b181 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfc34be5 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe30dd3ac v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7371c64 v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb05ede3 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb2d4b8f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecddb7ef v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed259cdd v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf01d4c21 v4l2_device_disconnect +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 0xfbe06a00 v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd96fab8 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdf3d0bd v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfea5e80d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6b8c1b5c pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x758f6d74 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd2f105ba pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19c89292 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8f2a5cf5 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa185ffe0 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb4e0f955 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xba6d4b54 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdaf66f4b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe860bf10 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0707f88b kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x16198198 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x294cfb0e kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x345c6203 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x42b56855 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6f40f9a5 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x75953830 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd571afca kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x369293a0 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc553aa2c lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd029d92a lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0b99e78c lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x37c554cb lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x86e12af6 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x89c740b2 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8c55ca6d lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa6604bd4 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc44fe7aa lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x23516813 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x30dd68fc lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa49bb06a lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0555d75c cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05580b1c cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18732069 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x187efc29 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2992ecef cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ff23b94 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2fffe7d4 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33b6f7b2 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37274c24 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x372a9064 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4660ca50 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x466d1610 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b463d65 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b4be125 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cc72698 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6ccafad8 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74125128 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x741f8d68 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7bd8d60a cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8ca3609c cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8caebcdc cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf967d90 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf9ba1d0 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd6a8857d madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd93ef10a madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7750b00 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed4867cf cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf5851f48 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5ef5a655 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xae242d14 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbb94a753 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc0acc9ed mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xee9e6634 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfc91935c mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25dffdc2 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36f0400d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6c2ab318 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73545084 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x86309c68 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x86f9983f pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb901ae63 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc26eadaf pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc5f0d325 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8268d70 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe19e0f88 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x14ef29a3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd0b00c70 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x36440567 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6870e1e5 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc1f24409 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0b78904 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff0da938 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x613a2c57 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 0x08cfe924 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09451ffb si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b0a3a1d si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26066b4c si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x282f4938 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35bfd57a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39c5bb60 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3da0edec si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f60c585 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ea37eb2 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a1da014 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cbe7ed4 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6214c215 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66d6f871 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66e4d83c si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e43d4b0 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ec30ac6 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7110754f si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82cc38fd si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84edd95e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x95d53a47 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c9f3592 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e82a08b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa574f925 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac192053 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad733ecd si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc425efb4 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcba0d72d si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd14f6616 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6556d79 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd87cade2 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd7481db si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4bb80b5 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf94df60e si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x420f255a sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x49fdfde8 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8100a3d7 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x907db0dd sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xaa0005db sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x16315e76 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd2f680b2 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0f7fe153 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2bfcc380 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3c151de9 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd8666f32 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x11f460a1 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x34c4906d tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x7450456c tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xadb00ba4 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8bd6b69f tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa43b9f2b tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc534018c tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5b8cf764 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3920d7b1 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x47db8282 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x896c1097 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8fa92559 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc7e14d2c alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe4ed4f5f alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfaf6b22f alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0ce9514e rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x19ea47a0 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x21120484 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33276ee5 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3bc7500d rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3f145d37 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4caf1671 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5147a397 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5169eb71 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62703be6 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6bae5e0f rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x72a7b667 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89b7cd4e rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x942f78fe rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x94e751d2 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9a0767c3 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d2bb134 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0b36130 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1a3537d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1d5daf2 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd082ed29 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4964e49 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf08d50b7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc7ca104 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2055ed5f rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x20a4ed80 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x28449418 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2b0c52eb rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3ebc6538 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x515491f2 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6c0ebc51 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7910d408 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7d06be29 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x89db085d rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa594f2ac rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xad48f541 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe527dd4d rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x22923be2 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x35e8162f cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc90d4d53 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfbd380ae 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 0x5ce217b8 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x683834c5 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6ffc6cad enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa8b5daf7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xabf9f06c enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xccad7a6d enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd8d4241e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf8cf387f enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3eaafc72 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44dafb0a lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6d1fa568 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xadc2e6af lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc829a404 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda604dea lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdbf007ec lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe53c7a05 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8481635a st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9724c6bf st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0c9075c1 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0e2f601c dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x23b20cd8 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xc7f555aa renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xe3de0f81 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05f31bca sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1197671a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2264a09e sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2795866d sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x27cb46de sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2843c0a7 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c15958c sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c453596 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2cbe1ec4 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x34fcc348 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36441f07 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46716873 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46897ee4 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c025719 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x505e1d55 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52fabe41 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ae5ab13 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x615f29fc sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x616c7a6e sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61e32748 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x636e5815 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6375170a sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x788fea6d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78a3f126 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d380393 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82d15dda sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x832b13cf sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f6fe43e sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93465a23 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9be51b5c __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac79f51b sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb88d7472 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6b54bd9 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf21535a sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd19e2e2e sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd90ca142 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf10065e4 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdaab3bf sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe81bc9a sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f7a3a6f sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1dad06f3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x39da8e08 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7018f718 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7154d58a sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9a5de848 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb61f7b04 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb80ed64a sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xec57b9b1 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1a45b31c tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x27845df4 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2c6d9bb5 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 0x4f9af87c tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5fad7436 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8704d710 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x949e3fe7 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb740d6ad tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfec9a75f tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x011c2d57 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3e3508bf cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc32b2d29 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x21a19a4b cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5ff3d19b cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd25855cd cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb066fccc cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x57deebac cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbcddcabe cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xec16c225 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x9a2b7232 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xee2fba7c hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00e52706 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01f666e5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03b416cf mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07d45310 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0af73e78 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11fac92c mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19eb4e19 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20e76664 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a4b6bc8 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3251da9b mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37550ea9 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37580edb put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b26939b mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3bdbb5b2 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4481f725 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x47e95ba1 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d27a1ff mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54d64a89 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6167d76b __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62e3f36d mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6438b96e mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6584a478 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66ba3943 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67cb2c90 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6997514e mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69d40259 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x779ca165 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ce9cf8a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f1e03d3 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81c4641a mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x881f6c0f mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89a91b58 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f625dcc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92bf0a46 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x931da237 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0ce9ee4 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1bdef45 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8915b75 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0cdca12 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0fd71e1 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb12c143b mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2ca4423 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd85df5c mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0a4e244 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8ff511d mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbfb2318 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd02749d8 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd26054d5 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4465416 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe19f1d94 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62c1ea0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea7b1658 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3faf8be mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7255379 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x453f27d1 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9531fe44 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa0fca5c5 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xae3ad637 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc250e2af del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x11147723 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x53caaf3f nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x63c103af nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74a37298 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x924d45d4 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa8520f02 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa89063e1 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb158d468 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb1a627cf nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbfb855ce nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1915308 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd965ff6c nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf24489c0 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4bd28ceb onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa44afd63 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x467169e2 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4bc360b4 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x8c36a487 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x182094d8 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f906118 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1ab4cdbb nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x22bc263d nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2b13672e nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d2795d5 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4bb30571 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5abe60ac nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5c5641bd nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64d07ea7 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79960dc4 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7cf5a19e nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x991429ce nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa00e3abf nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa08417b7 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xae31b72d nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb5e1d222 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb61043b4 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbcb179f2 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd7b069b nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc9e59b74 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xde037141 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe5b14eb1 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xebbdd4cb nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf544df26 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfbdbd436 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc951caa nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x49c50340 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x3b5816bf spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe639a0ff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x004f5a12 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x17b9ca1e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19b245d8 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 0x44334b17 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5615d6b0 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x609f601e ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x77eb4ff4 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x79d0998a ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaa91eaa6 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaecfc77a ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4ae807b ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdce08c6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd01ca7bc ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xee470c3e ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0e141871 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x34b72f07 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x50b5dd42 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5b7fd409 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x86215bad devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa252ea1b mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xad2f63a3 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc19aab79 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3d12ddd mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd1218e98 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe2e7ab68 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe388793f mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa2cd341 mux_control_states +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x67447f16 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8731a642 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x01e4a1a1 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x160fa9d9 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x599e3390 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x697ca64b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x94fa1eb6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xce0bec9a register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x16930ea0 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa174068b unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa81a9f23 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb8762fc7 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0db47ed9 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0fd8ff0b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x22e8dda1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36e70b06 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d5fe0eb can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x421e6018 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ac65532 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b11b8d3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x714309d0 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a4606eb of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85a03127 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89e2d719 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x950c978f can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x95266c60 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b2aeb89 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac52ebf9 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xadce9d73 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb4070e19 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc686cdea free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9f7a598 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd206c895 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6a71a7b alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb87fcab can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde92721e can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea6505f3 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xebf8614a can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf4402d16 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x177ac8d8 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x27368a67 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x28257e4a m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5be5f2bb m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5ebd8f2f m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa7964426 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd282a920 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd3e5108a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x11f810ec register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78b177b7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe08b85e4 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfef50483 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x9369af02 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0334f164 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x18ae9805 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35d87707 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e702d27 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5231bfcf ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5989ffab ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7040f015 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7975b3c9 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x87dde6f1 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9543a2c2 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa0169f12 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb963e196 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd69e008e ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe16c15d1 ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe574f799 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeeef44c3 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xff916c44 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x098e3859 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0a277b9b rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1f87806e rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x24e57bd2 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2558e24f rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2cea6059 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x39b1a78c rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4318f372 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x571ff173 rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb02469b5 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb24ad89a rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbc83be41 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcf9d9d27 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe4046c58 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf734f95d rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf833a5de rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x183fdb69 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6e5c986f arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x012405b6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x027851ce mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x074a8312 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x076cce28 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07e2cb71 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d4b4c35 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1079027c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11013b54 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12270dfb mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156c17ac mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15c76d8e mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17eae893 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18bb6137 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d7b172 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ba789e1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d363593 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1db4fb9c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a0015e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22490d80 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2521fdbf mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25b7d7ad mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x293a6f9e mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d9b171c mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dff5935 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x301bac53 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b6b9dc mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x341141a4 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359c31ab mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e599eb mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x368eb364 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3768ffa4 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3769ea45 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x377ae53c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39431f6f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3da7991f mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x405fbe7d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40675cc6 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f0b011 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e65fac mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x477bf2ab mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x481ad6d9 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50a46544 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5216af63 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x534b805d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5480655f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x597ab60e __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b42174a mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bb7ea0e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x629f883f mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6345c020 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x637d6cc2 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6440c338 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6498729f __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6965c1f7 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b4fc78d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c824442 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e8c4fde mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9dda85 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73fe9a22 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77d6f1a9 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78560ce5 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78d52be2 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b930691 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb33858 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8045000c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x807e6e62 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83445941 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83d2ab7d mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8657c6b5 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x874a2e5d mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87f610c1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f4ff039 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x907a21c5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f887b4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93cc1b2c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94e564bd mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97f1ce20 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fb3be2c mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa10616cd mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa61d2444 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa632095f mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa68d3c4f __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa732076b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92bf643 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab7a614e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabcda791 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae87d5ef mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafeeae2f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafffd282 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0299cc5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0306764 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb38870a3 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb531d3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd85a1ce mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeeb3ed7 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc160288a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35d6ad5 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b9a16e mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0cde7d0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd54bf99a mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd73c3fd9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85a7f9b mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8664615 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda120632 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb048597 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdca4c833 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd3c411a mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebe5614 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeda7d38 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1fbc84b mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2147323 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2dc5086 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe50c19e1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe61408fd mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72e1195 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea4ffc93 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1a34e30 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1a85852 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e8d430 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3529f91 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f06843 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d2382b mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf893f577 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf99baec9 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbadc8d3 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd867ca mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x011d7239 mlx5_modify_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 0x0816ba77 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09a89105 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a7add56 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0afa5f3a mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cfa68fa mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc007ae mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1152f1ba mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x146880b5 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dabf50a mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f5ba62f mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e8aa3b mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28b3930f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28dc9595 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f73e85 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cab4d36 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2da8c28a mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x324c06a0 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36cedffd mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x380c3be7 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec07364 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eecca90 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x400e3cbc mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426fb1bb mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479f5015 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4aeacb4f mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4caf12dc mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1fdcff mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7a8673 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5095fa5a mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537a025d mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54cfd473 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59c5b5c8 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b9a572c mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60737626 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6260e6a8 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65cf56ac mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67f1cbcf mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69111a2e mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5d7c75 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6caf0035 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd34365 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f4bb55b mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7870bdda mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cbea5bd mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e95a1c4 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ec9e882 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fabd19d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7feb95f9 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8157f527 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f0c499 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d35bba mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8575df5d mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88609aef mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x894e8707 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bc44e54 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f2df300 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa06aa179 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4f706a6 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5c54b90 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa839cd6c mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8934e4f mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa92a629d mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac09b512 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad9eefd2 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf68f572 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb12dfc63 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb48c5614 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6613909 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa56a4c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe4d2692 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe513db mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99fb88f mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8f8f14 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd294b74b mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7b80317 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8d68b62 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe667fe7d mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb96182a mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee7830c9 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2180ea3 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4dd7a65 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf512e267 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa5d8bbe mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc938f15 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff70ae36 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9883c3b8 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/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 0x00a3df06 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5de58d2e stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x62df9802 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 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xedb7b784 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x496f7cf0 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbc20f47b stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbf8e86bf stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xccfc20fb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd974a64e stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3112f71d w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x44e77c3d w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x592e235b w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x793c9641 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0xf78d16c7 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x137fcac7 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x17d58cf9 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x759f2619 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd9641ccf ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf5c6c81a ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x053a1737 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x55179f25 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x57e10cf9 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5b8fca73 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x70027a3a net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x87094a65 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x032a9544 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06698c58 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06833f27 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12857ab9 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20401906 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x231df047 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35fa7016 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d6abb92 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6343e05c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x71d740da bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f3ee207 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x801af46a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x956ae19c bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa88d9f2c bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8a5e61e bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3d438dc bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed765bf8 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf40ea6e7 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xe4099bb6 mdio_i2c_alloc +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3c62ad2f phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4eb5e31f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7c1b2c3b phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +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 0xf5db9219 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0de1e9f4 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x0ee022d7 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x33ca0247 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x4d6f4cfc tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x84b032f4 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x8e165729 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x97dc8205 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xd5801499 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf1b917fb tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x032a62f2 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0eda0857 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x73848778 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x930a769c usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe5dd27ff usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0600f771 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2ac83369 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x36a4e3ec cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x430f28dd cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4456bbdb cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51678d33 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x708f7328 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9d77cb62 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3bc8e71 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0db63d34 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5323654b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5e8db8e3 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x67d9bb48 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c6cbaa1 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x809876c8 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x132697b9 usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19aedb04 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31da8653 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x340b2a09 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39a02c7a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e8e380e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49859165 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b6f88a3 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bb0261a usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50df38de usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56220b8a usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56959ee1 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56e9218c usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57521a11 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x692acf49 usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e381d90 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f9a0645 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74bb16f4 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a08aeab usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d5364a8 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa22f7855 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7dcbd4e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9fb992c usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xced3a8ac usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf0a11c6 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd69e58c1 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd811a6d usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2a8b53f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe42bb8a4 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8bd5a95 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xede7b7ce usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf02c7431 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbb0ff8a usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2b1a4b67 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2ffe25b9 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5ecacfde vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6bc1a4ed vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1d810d5b i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x22511c52 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x228cca2e i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x43dbb24a i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4bf01600 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4c62cbdd i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x822818be i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9eb43951 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb0bb87a7 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb1fe7898 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb7ba3ea5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb86296c8 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbcfa2668 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbefce274 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xca37945f i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf35f964c i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc60d3bde libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x140c68a4 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x332aaec8 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5977a484 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70119174 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91b07ded il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0469d8f8 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x061da3ed iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0684f831 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09154da6 iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a0846a5 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fcd04a8 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12cc13ed iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14bbde79 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15970eb5 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17ee9806 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1942f2ec iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1afe0c96 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22453c63 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22b34653 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23d20288 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2bcb2708 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c1ac996 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e742a61 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f60ce13 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3389f184 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42ed6efe iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443f5ddc iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x500b49e7 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a1428ed iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5addbf00 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d801422 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60913ea6 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x64139254 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6534d18c iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6723b73d iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68a8518f iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a7bd7f7 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e949f3c __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75e704b7 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x847b5aca iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87a1c5e7 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8db96785 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9016c20d iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91359654 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91591bfb iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x948de091 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97b5afd3 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa22d66e2 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaae661a iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xacac2bb2 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaeb272fe iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb993cfca iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdea9695 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3f168bc iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc97df3c4 iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc9ac4611 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc1d5dc2 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf69707b iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd270c30b iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe29652ac iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe35c673e iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea6b169b iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee03ccf7 _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0694c9a iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfa235cf0 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0ccfec07 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x141dfe9d p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38067c73 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3b43bc64 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3d193c1d p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x57f0aee7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8d7f5688 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x93db6dda p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe576b67e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x06dea29e lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4520580b lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5e57892e lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70c82262 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c5e7ced lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x831f2aa6 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x886ae65a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9c145470 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9c7a7519 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa5881973 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa7499e41 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb8d4ecdc lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc613977c lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcd81f987 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd468cec5 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4554d9f 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 0x10e3edf5 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x577423e4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7d688d24 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ac40134 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9b1eb244 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9c348a6 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc699fec7 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe0c105ef lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x037232e4 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10c5bcd2 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13eda282 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1960bd5e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e48dbea mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e959341 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25627414 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x323b7a27 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x397d0b21 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41420099 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5460a156 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b4ae3e5 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x775b96b4 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dd20e4f mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1c9aac2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa2fef4e4 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf2d800b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3459736 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3c7b28a mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce09f3bb mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdaf1ad5c mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2e23d92 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf64c9638 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe5c0b0e mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02447362 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04157a3f mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f409cd __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08517e4c mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e49e995 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x158c9ff9 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x174e5814 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a862f25 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bcbbbb5 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26adc19a mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27b0c46c mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a727b5a mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2fc21b87 mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36fc04f8 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38b6cfd0 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3953b0ef mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x424ef947 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a5dee7d mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53885b1a mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57196c92 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x587a3a8e mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68412d91 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a210832 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a7ae863 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b8c2fb2 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x746f67a1 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7706f344 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79ba5a65 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f1c0721 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83c89554 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88b862cb mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90e05ddb mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e889ac0 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5f3c855 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb03fda61 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0567cb5 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb10b0a47 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1993073 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5a19244 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd90fe2b mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4ee8d77 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5fe45f3 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc81441eb mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca30d917 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcab38f6f mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0f376e7 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd409853e mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5473e3a mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8a1afa4 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbb966e5 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2ba6bfb mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb22016e mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef60e2bd mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03fbe382 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ebc1517 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x28cb5f2e mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x46b5bdb6 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d7c16d8 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5e413678 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8750fcc2 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xadcd8f6d mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x16a3c10b mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1cf9b4e7 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x45b0e863 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x54b1cb19 mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7d385b69 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe207fd59 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xefde8631 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0148cd41 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x054c96be mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05aa1fed mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0aa8e67b mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ba0d1db mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d56cc31 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ead6326 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2347a752 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2790774e mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34aa179c mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c9da6b4 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40f1e468 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41026393 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41d620fc mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42fc4526 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4470636c mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b4f496d mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b7288a9 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b7736ac mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51943ccc mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x520abc00 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5293db23 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x566d5a91 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57a59b7f 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 0x5ec92411 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bc99afa mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6dc26b5b mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7452bb7b mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74f2ffc3 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x762cb529 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7670b595 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8353cc24 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a75e5fc mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bfcbe6d mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8cc8fd32 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90373388 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9392d0f0 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c101c76 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaef44438 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf71fea8 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb15605e7 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb383b48b mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb934ca3d mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbeda250e mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce5e2a62 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0265c44 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd597c084 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd85459de mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb5547a0 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdcc9273d mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde0205b0 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe06663b3 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4731f91 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6a12914 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe92c8142 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9f2df54 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb396cd1 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed75d7a5 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf12d7650 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5039317 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf900ff01 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa6140f4 mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xffd3bbd5 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x04635ff3 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1aaf1994 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7d213cc2 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa59a780f mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa94b0896 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbb92f92d mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfff6eb85 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x08312f1a mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x31bd2f86 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4bd16282 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5cfada02 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7cc3cb26 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85707efb mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85ad8b61 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8c60d111 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ea57ddb mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9519f42c mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb025b81c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb500f1a9 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb75aaf41 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc061f84c mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd8c60c6f mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe5158d5f mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe5a3b9bf mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe7a6092d mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfd7cd5e7 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x213da9a5 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5d5653a8 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x99349e69 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac6dc7c8 qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac762969 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb5cfa70c qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe29083c5 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe541b587 qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfc82f10a qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x008f9b95 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b7c290d rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d8bbf01 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x176d4424 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b620166 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c74bb1d rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e01d3c9 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f940410 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2def7ab5 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3cd17020 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x413caaaa rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x462ec590 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54bbed29 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55ccbb4f rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6078d01b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61ddc3cf rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cec55fc rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7005736c rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x719ce5b6 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f4e30b8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82e3fa8c rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86135e51 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b1c7c57 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x907861af rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9101751d rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94be8885 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b0df934 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d0fd97a rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ea7d55c rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9eed9603 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3e72473 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa402783c rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8f9c1cf rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba76d9c8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbffdb124 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc105984a rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1f0028a rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2dba963 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7ba694a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca3da354 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd30c8fa4 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7474dd1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8e15342 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf61f1735 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x14143bef rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1f9525be rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2227db6a rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4679ad83 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6bb4a96a rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9b90b4de rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb139fd78 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5fa246e rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc91c229a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcaa66ff0 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd4321916 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd8718260 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd3a5122 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xeef5901d rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4c66360 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfcddb061 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02321e3c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06f80743 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a10c249 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b444b18 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1277806e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1efec3dc rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22803ca2 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b58a2c9 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39cf0740 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39cfe5aa rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d6ad18b rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4371b9a3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x437ea821 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43bafc11 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47100f0f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cbf1215 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4fd71439 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52fbc42e rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54f93a7a rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55c43b4e rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x617ef25f rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61ed5f5c rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6255ecc4 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6387bf34 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65fdff95 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68601151 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69e466c2 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x709e0d49 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7145961c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72e0f920 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x791a7940 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x805b8f6e rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81d47004 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x874b9ebb rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88936138 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bdbe410 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e04e8c6 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa62c5149 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb346f4dd rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3788cdd rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4de36d2 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5fbb29b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb1cb2a7 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9c708b2 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfaac927e rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff0b5aee rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0d02896a rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3fcc7bd7 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x43c1d305 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x86290b42 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe580a092 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x483c96d5 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x62f878b3 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xead527f5 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf6f75c3a rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x02e6d813 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0d293b6a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e81c2de rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x26c319a8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5b39a289 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6a0eb31c rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x77321f31 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8e4252ed rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9425c949 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9c2f56cf rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9dd543be rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb62a988 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9dd3785 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd19880f rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xee24edc9 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xee9fb637 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x577eda7b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae4ee48 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe72344a4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf842c339 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0303fa5a rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11ec5232 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13a1300f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1596992e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1c8beaf7 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1efedf6e rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29ccccd0 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2acb857a rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3319746f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x407f788e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x630c5c7b rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64c1430d rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e06946c rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x749916d6 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75adee1c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b279c4a rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x860e5631 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 0x911e79c5 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93a1d62b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e3a35e3 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0f41670 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5ec5486 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfba2681 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee589562 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf87bcdc1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06a3c08b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x243528c9 rtl_swlps_beacon +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 0x2e998c72 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ad07d2f rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3de6a7d2 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x424279f5 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53d9acb4 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x579204b0 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f5fe6a6 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79848727 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a19bb7c rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80a192df rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92dd0276 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x960bde5b rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c54e7ef rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e06e164 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf0d0935 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfa49a7e rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0aab315 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc205fcfc rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5441345 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce79ff23 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddb9f220 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe72e57a4 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec2135f1 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x15dac421 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x761dee0e rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x86603e39 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbb392fc1 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 0xd2aed2ed rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0c44320b cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4e405215 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5d94d2c6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa2e09ee8 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x059f9138 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa6edba0a wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf40ca88f wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00bcf94c wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0379b811 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07722abf wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10b14bd9 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15526cd9 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b108aab wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2069155a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27d8be35 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cf43cad wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32a7e330 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36a2af00 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x460776d6 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54480768 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x554fd2b0 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dbfbdb6 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d6b66d5 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x703e5dc2 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73c53cef wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x784c42d9 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86d59692 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8881e9f8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d728600 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x915e7315 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x941775cb wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x994841fe wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa52cbe80 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6e83c08 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacc7a8ed wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb03c1032 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9532d86 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7e69939 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4990e45 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8c318ea wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdac865f2 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdda78adf wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5ca7311 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7a62fc6 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea09229e wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea763351 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0166b2d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcf8f040 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd384911 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd72c489 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x63f43d73 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x69b48302 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb41cf726 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc642d629 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c891ef7 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x26d8cbad pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x52a90f75 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5480868d pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2ce630da st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x40135a8a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70f820e8 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7c660b2b st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x91564bcb st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc3e2405d st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd8a47902 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xef18dc99 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0061ebe5 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd9c235b3 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfa6720ca 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 0x20f19476 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb6520f6a 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 0xe925bf14 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 0x7c456c9c async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf39b0b01 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dd00863 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f92d938 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10198687 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2869922a nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38528b12 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39111fe5 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4001692c nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45064cc5 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b498a18 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d83c75d nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5bb63177 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f4e3594 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60d7c1b9 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64cb48cc nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x691eeafd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c6d35a6 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8db23162 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x924a7672 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9973c711 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0131eae nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa247f49d nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa874f3dd nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6bb2425 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb83051f5 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfa196d0 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfb2f292 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0a24e42 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1075b24 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd99f9453 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf89849b nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe40d8e56 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe43c349f nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe85efdd1 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed79c06b nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf11de4f4 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5b3d888 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf795e791 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfcabfac6 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1152cf20 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2a2e7dc5 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3b0ed820 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3cde5d23 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4862c4e1 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x559bd1a0 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5bc874ab nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x68209aa2 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6b7349f9 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7026b553 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8807aada nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf34b211d nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x2cf008a3 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x06b53703 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x168c4894 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2ba0af58 nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x53236f64 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6429b60c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7d11d38f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7d3c731c nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c1e3cfc nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9ed503f3 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd55e2c8c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf011b04c nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7219dd1b nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x243c198c iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x05707f3f switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2000576f hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2b3a99da hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6ae948ed hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x817b3464 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8e3a5131 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x933a2e8c hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x968ea989 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb659dcda hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbbc7b9c2 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbda7b6d7 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xca96f87d hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcd199965 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xebf1010b hisi_uncore_pmu_counter_valid +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf9ef5e3d hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfffe8fc2 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x295ebb8e sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x0a62db1f ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x1741330d get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x1cb12d11 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x5fcda1a9 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x61c0ebb0 ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x87e64a61 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x94f69ab4 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xa74cfb2c ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xa8176ffa ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x167a6fa8 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6223986f reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7f788cc1 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd7b65547 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x368b2527 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x374dbaac bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7cbc5e91 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x22660e83 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2452f44e pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8adc5ad8 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x21f01f28 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x267353ef ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3766ac57 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x53bff078 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdcd58943 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xea3a0f89 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf1486b09 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x090e24e2 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x192ca1f5 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x90a29ee1 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9a4e9e0e mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbd1ff014 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x278ff361 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x34d29db4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x47d734ee wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7da052f4 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9d43d7ea wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9decedde wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x391314ba wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1c606f94 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4436514d qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x497460ff qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4d2847ce qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9b4daed6 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc980105f qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xce6aa732 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4a903993 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x88af39b2 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x95027369 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9aea8ac5 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb1025d91 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x601e15d1 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x005b63f7 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 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 0xa5a372a3 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01f056fd cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0462bcd5 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x111403cf cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15c8389b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18cd7d25 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20e94937 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21356091 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26553e40 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2846d1f4 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2eea2948 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39446842 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d90318f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45579812 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f0e9453 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f791cc4 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5378d8de cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x552cca65 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55622d86 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58e1f837 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b3e3f7b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d8281cd cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e4a97ce cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64e8c7dd cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71c8fd5b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7442f854 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d07e818 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ebf5ae4 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fb10dcc cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81f62e73 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a111855 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d6ef66a cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d8b0026 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96306c77 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaac31b57 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafe9843b cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb116d69c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb36a16ad cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb55c77b8 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf761643 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0851646 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc10b4e32 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca4e6e23 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdcbbefa cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf432561c cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x062b629a fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0b888e9e fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x180f7e24 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25b94a39 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b0e51d3 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f3eb4a6 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x394e6c67 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f9665fa fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x46055a3d fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x96d36578 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad080633 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1d41e66 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb5cf4ae fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd045b630 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf2a9216 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xff6a634a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x82cb42b2 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xeddc5bcd fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x044b20fb hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0f5a9ad1 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x10625681 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1243bca6 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x21ec9cb1 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x242b99ef hisi_sas_debugfs_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x351708a7 hisi_sas_debugfs_init +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x42c26c7f hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x43811012 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x546892a8 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7d3c7d8c hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x94b44f78 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa9f0e418 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xada98377 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xafd17478 hisi_sas_slot_task_free +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 0xb1bd7d89 hisi_sas_debugfs_exit +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb2261bc1 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb32dc01a hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbf646004 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc0f439c3 hisi_sas_phy_oob_ready +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 0xcfb3cd50 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd3c3f202 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 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 0xf02f6a61 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf31fb0d8 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf63330b9 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0dd15bd8 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5d86b9a2 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x61e3836d iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x74d7c428 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x971adf37 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa976cc81 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdd2bd186 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xc34ea0a4 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02faab5b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04dd5769 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0859a1be iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bd664af iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eaa0d07 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x131a3d8b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x271c600d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29f22a4b iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c2e259b iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30ec19b1 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x311847b7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3769e43d __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65f03701 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bfa03be iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70dbec10 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7222c585 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d473b2b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f87c3c9 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x904975a3 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92221cd8 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9387ddf3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x938b4f33 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0a4895e iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1deeea2 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4278c1a iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xada63fe0 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb73bc4a1 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7d30fc1 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca20c9c4 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd392778 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcda9c40a iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfdb5a91 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0dc6089 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5205432 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd64918e4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd96708b7 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda1e4de5 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe12bb1b8 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf38213a7 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4358883 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa0ddd41 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffc07cec iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ef2305a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x136bec7b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x26643ebb iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47cd132d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a1612a4 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x589b1ebd iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7dbf1cb8 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8fdb8915 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7ca8dd3 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc148ae34 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd9b9a560 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe17d4913 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe74a099f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe781dbd7 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef3f175d iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf10fd225 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfdf873ee iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0dfdf838 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ddf7282 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e469830 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37c7a1bb sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c114cb5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4dea8352 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x552044c7 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71220e5c sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7379ebe6 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x745bfe57 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78fea0d9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x793ce750 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a7c041b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e0103c6 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8723ec0e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87f3bd73 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a962eb0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3ba30fb sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5b21cde sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb79cbc5c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb91b91c3 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc11185d sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5403456 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd53213a8 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3f1fc33 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0640e836 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08306280 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x127a5801 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13813ba5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15d672c7 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17363cd3 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x188a5f50 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d4ed6cc iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fe4dcc4 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x200ece85 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39fbc111 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41c73f1f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b357f3e iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x540e19dd iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55590e37 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x559b2ffe iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b092b45 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ea906f0 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75a41d81 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a1efe83 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b5d76f1 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ee3c39d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87b70f54 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9832c76b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9992a0df iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f245698 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa77bdeb2 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0a13e40 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc088f62d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc111ac08 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc72379c2 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc845401b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca60a5b7 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5d9b993 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe152dd6d iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4a02e77 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb11da0b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf17d87fb iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6c8c5cc iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbd6406d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfecdb96f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x09ed38eb sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x28c461b3 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x67667c41 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfd757d84 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 0x6728db0e 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 0x0e7e8748 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2f3a840c srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x55bd36f5 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7869aa25 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa52c0e17 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf5a33865 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0e8eae71 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x26c1c979 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x327bdc85 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4620e6f3 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7a2777ab ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8df683e8 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbabf0dc4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbd33d864 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbe4a69e8 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x08d60011 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2dd72ebf ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5d762db7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9ed648b5 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xace47556 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb8c5947f ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdc70f138 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1fd7a3b9 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x36fd3831 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5cf7350a siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6cf8d6ca siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa1997ef7 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf5ab4712 siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x043d54b7 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f83879c slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f6d64c8 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b00f052 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d7131e7 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7edab676 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8ba4c9ce slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d8dce37 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f989669 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x960bbb3b slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9808fc39 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9b6d5fb0 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ea3fdb8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5ddc52c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6b15a1d slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xae472770 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe0e5064 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2b432c5 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc569b260 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc62d6961 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xca3196a4 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd0024ecc slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdf19e7ee slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe5f1d2bf __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe7ed5f32 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed57296b slim_get_logical_addr +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 0xddcdee08 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x18026bd6 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x96e355bc dpaa2_io_service_register +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 0xc7ac2138 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x41626202 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x95462671 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xaf75d557 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb592dc92 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x03c9a66d llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x0679b34d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x5f15df29 qcom_llcc_remove +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x7e773088 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xad3516c4 llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xb534ec76 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xb68b1300 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xcea41ad5 qcom_llcc_probe +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x37c098bd qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x3cdcd20f qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x9b2610ab qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xce86a1a1 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2ea3133e sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd38052af sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd558d362 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x48cd306f bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x83107da9 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xe3dffd96 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4c0e28fd spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6e7eb561 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7365e77e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc21fb491 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdc8058de spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe9874fc0 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x03a5342c dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x052a9859 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4307bfad dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c12203e dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8c5a644d dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x633f7a98 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x991a5ee2 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xfb2414f8 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00f67196 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0118fa64 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e38b8d1 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0eabc03a spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1329588d spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34ddc7ca spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ee8d5e3 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x466accfe spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x649007d0 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88e3633a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9252ca4e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92abd741 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97fb5355 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa11bf0f7 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9f423e8 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb71850f1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd05face5 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfb9242d5 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc2bc94ec ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c198629 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1241a0ee comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x131f43b3 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1e146839 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1e992db4 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25d18ea7 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c0c034b comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3c3735ae comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x47f06324 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d8403b7 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x506a0134 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5200ebe9 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x57c48207 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5823780c __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5ad2385b comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64efeee3 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c62f1e6 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88fb5ac9 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8c5c7b2f comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92adf12e comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x949fdc13 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95b9c17d comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x95e690da comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9abf06f3 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb309ea2b comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6902300 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb943446 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc216e6f5 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc596bfc7 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc97131ee comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcfc38661 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdbc9b3ea comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdc0eb35c comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0f89cd9 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf14030d5 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfd395286 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b2a46f5 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x52c48175 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x80518147 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x857d7ced comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x934a49d1 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe3f1f368 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe69006b8 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf45f857f comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2289497e comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2a1fba98 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3207c8ad comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x461d67db comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x89ca4185 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf0a637df comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xe41fcd49 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xa6daad02 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xdf18e5e8 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x4b14959f amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2242d016 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4c22e1a1 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x53660304 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x599626fc comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6270737c comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x72f80bfd comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x782a5271 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x78e37e47 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa1f349bd comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa7101d6d comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xba7f89e9 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xed974a12 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf420dddc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x229a86f5 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3df32958 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe24e45d6 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x7562852f das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x093ae37a mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ac6c8e4 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2138d055 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x475a8b8b mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4c31ce5a mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5abb8e10 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8036e55b mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x83785e13 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaf24de56 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbac639fb mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc66c308c mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcc21da8a mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdcb9995e mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe638bf93 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf402ea89 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfd3f32d6 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x1e1d2704 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x8766f20a labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3e979d77 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x44175296 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x469c2823 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x547b01d1 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x714a3dc8 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x78b5c4d5 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x91a16980 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x91d85d0c ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x95ab6398 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x968a89f4 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9cf22c5d ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9dba69bd ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbb72c3e1 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbff5e4fa ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc3df5c92 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfd6380c5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x051264a3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0771ac57 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x12f17d05 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x385cb320 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x685ab6e0 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6bc812f3 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x245e02b8 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x34a7dde0 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4a6d5b5f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x67a7a931 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7c1f6d94 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdf4cabcd comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe539e2e5 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x15e8fa7b anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x295c3463 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x31b86124 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x38e4b03e anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4cbfbc13 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5099de27 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x59941984 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x868863ce anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x93cf2184 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa5334e8c anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe787a224 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xebf8eed3 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf67ef4c0 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x216eeb21 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa08794d9 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xec19014c fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf10b24ac fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1932aaef gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3cbd4483 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x46b6d0bb gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x58988217 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5bf41b29 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5f32cadd gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x67206365 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x803c4a45 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x88378605 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9e1218e9 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xad353a2b gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb3a76db2 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdfb83011 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x15f46cae gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x18b09e1f gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2d68c977 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x30686254 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4bbc7656 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x624acbfb gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x664d3ab9 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x71c65a81 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7ab382f4 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7f31ef2a gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x805c795c gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x856a827e gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdb229886 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x28a1c26a gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 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 0xf8c32108 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x0f091b06 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x18aae6fd gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x013059df gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x56e8fadb gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xfcb4c430 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0b2d7d29 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x16300e94 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2d143017 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x6886e50a gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x6fce6431 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x70e24a5e gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7d8f773d gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x97defff8 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa2d2f5ce gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa6767cbc gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb388a4c2 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xcf25b775 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd26bec38 gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd8f29e24 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe656f764 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe7e94700 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf80efb90 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x2e5fa911 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x71b7d154 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0x7c588c89 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0xb779bfe1 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0xb9e1e2eb nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/staging/media/allegro-dvt/allegro 0xd6c56cc1 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0a473b00 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0b5a419e amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c1dc36f amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1ec00811 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x22c1560a amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3adbda2d amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x41256837 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x490b3dd6 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5c355f6b amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7c0a696e amvdec_add_ts_reorder +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x98b10899 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa4287f3b amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xabe7b2f9 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb39828ce amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb7c70ec6 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdef4ea9d amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2b9d4512 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3494ad80 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x41987531 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x4924462c most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x70166dc3 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x746e335a most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x82a3270b most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x97e48a91 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb40d94c0 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xbfd3e35a most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xcad0957b most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xcbe15c7c most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe4421a81 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf65f1413 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8f6142 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x22fee934 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x49dd0caa spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4da6e80a synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x58a76d12 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x79f02067 synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x86f86324 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x94782c7f spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9855d8ff spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9ec0355f spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb0d8eb91 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb747b0f6 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc0869679 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd38f1951 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xec32f4dd spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf6748808 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf7cbf201 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x611493e1 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x883cf9ea i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xdb769781 i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x0048594f umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x0f95d97f umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x4a10950c umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x56e808c9 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x5a3f95a1 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xb8202245 umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xdb2203c4 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xdcc04585 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x028c370d uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x05e97a85 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x062f8d55 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0995ede3 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x19d21a59 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x19fd3ed7 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1be7893f uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x26344114 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x38683025 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3af51708 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x493a7fdb uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4ef03e4d uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x554ae450 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x574f377f uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5ada425e uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5ceafec5 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x61436b03 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x61ecd5fd uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6d62f3fb uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7407c3aa uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x77dbc0bf uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7e7a12d1 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x85e4ed19 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x86970e45 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x920693aa uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa53f0dd8 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa6801303 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb088b924 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb7c3cfb0 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcc6f873f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcebb11be uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xda267753 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xde5f6b88 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xea7d0c8c uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xeb9449de uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf3b1474e uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf8effa31 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x731cb252 whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0c33f15e host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x319e76ca wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x465897bb chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x60737cf1 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x75ff0ec7 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x796cf6e3 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xae2bc340 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x010082e4 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5b322c43 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x929c5798 wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xa35812ab __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xbe63f993 wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xea3dcbf3 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xeb56472b rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1f0652a7 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x4cfc4939 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x5f2a5cdf wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x62477296 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x76562ae7 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x770b2567 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8dbeb345 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8e76723b wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x93df31f2 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa5094768 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa709219f wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xaff8b6af wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe97fdb6f __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xed4f3a7c wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15feffd5 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x26f7868e tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x31bfba13 tee_shm_priv_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x397111f2 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x55690456 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x58371d5b teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x628458b7 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x672c38c7 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x68e19975 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6dfe6814 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7096c6e7 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x74691d42 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7922ad6b tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a75e846 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x88eeabdb tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9205cf5c tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x98f65f22 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9f74180f tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb41eeda0 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbf763af2 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc36c5da0 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc40d50f7 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6d586b8 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcd0aa995 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcd620d7c tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd480036f tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfc028ed7 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfeb338b3 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa8d4c169 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb07a477c uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe5b40dfd __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2ade06f0 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xdb3bf200 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1dd74551 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1e4d7a4a ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc4d4961d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0af608bf imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0f7eb72e imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9b0cd5db imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa1234245 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xeafb0028 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0b9cb211 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x45817c72 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x56b620d5 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6b90ddc8 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb557af28 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd593feda ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0baceaa8 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x331ffb23 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x50b85981 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9ecf98ac g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcd81300e u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd801dba6 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x002a91e9 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12d92454 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x130729f5 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1416c56a gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e2f3f46 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4ebedb26 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x533e17d7 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c650875 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62ed1ded gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x652ef3e5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa09214c2 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc443d29a gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc9a78e04 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd5b0102e gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf404d202 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a877a08 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x76930744 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbe9964ce gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4da47965 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57f469c5 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xba8fea21 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0421c34c fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x26ee67b2 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e3ed01b fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x37bfbe16 fsg_show_file +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 0x41438268 fsg_lun_fsync_sub +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 0x4c2b2e12 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x607d45b8 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65cf72cc fsg_common_set_cdev +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 0x6f3bd13a 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 0x850a8c40 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xa7628c40 fsg_show_inquiry_string +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 0xabde2876 fsg_lun_close +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 0xb55d40ce fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbb76a88a fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc28cd435 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfbc34d39 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfffddef9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x00aae1a3 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d0b7e97 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a5b5842 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5633b1c3 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60741ec6 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c8570c9 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d30ae82 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8125a8a1 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x86d5410c rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8a90b4cd rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9518d3f6 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa572c682 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa869a633 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcbf87401 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf9f1585b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09321a85 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1007a708 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x138a32a9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18502994 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2325d5f7 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x300a04bd usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3775b5db usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3857a7d3 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41b42ead usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57ca9671 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59c5cb20 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a000631 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61caa9dd usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6adc3359 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bd806ce usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c7dc1f5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e8e5625 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9cbb0e64 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb608695e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb73d6ec0 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb78e5ec8 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0ae7d22 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2823565 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5cd24bd usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8d67195 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee8c9572 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2d76301 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5e803fb usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf6367f27 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf750005a usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf79eb668 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x08217cb2 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x21f1be62 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x83e23c3c udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x97bb6c04 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc7097250 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe047b1c1 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe701b1b5 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xee118cea init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfbf39b57 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x158e1229 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x16207f6e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x16b9308b usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x210f32ec usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x213d1dc3 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28d7b077 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b08fe81 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4627e6cf usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x482d6f47 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c2b1832 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d56baaa usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5d79175c usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5df5455f usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x672218e0 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x72c3ca27 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c96a87b usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e58fb58 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x880d6321 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94c3d8ac usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x99cb3c0b gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4426039 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa83bf898 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc39150e0 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd16f669 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe4fc58ce usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x738005a0 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd0bea9b9 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x181aad0f usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f35dc16 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2169cb03 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2b56d58b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4af13d01 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x937696b7 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdfcfba67 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe27a755f usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe89ed1d2 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x667231b1 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x68ad2ea5 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x839d0375 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xff1d6fab musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2bf00650 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2d0c9c6b usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5d8ec033 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdf837d0d usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe59c0c4c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xe2b8dc78 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3a4b348c usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01fdf9bd usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c7d137b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x283b6f17 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3191c24c usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fd0c5bc usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x536e78eb usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66ed6788 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e4c767d usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x769b2417 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x772147ea usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7847e69e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x83c9a2d2 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x924b51d6 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9465c747 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa469c387 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xab26d7aa usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad39a20e usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb3885008 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc4c384c usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1440da0 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee02ccf9 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x70d3f843 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x92b938cd dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6eb8fe37 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x4aa53d80 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x06a73591 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0831e327 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cd38e51 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x176e8c5b typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2aebf60f typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b95e1c6 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f5aef5e typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x314f6925 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c821a41 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ffaef38 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41633912 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45a82dbb typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51843404 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60b26018 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x664f935f typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bcca436 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81beb77b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bcbc5c9 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8cca6e29 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9286c9df typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa44690a8 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa62b3002 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa79a9b95 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7d635a4 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaee3d4fe typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb09bd906 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6dc5619 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5be74a3 typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcce50c49 typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcfa94963 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf38353f5 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf43c7cc9 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1095df07 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x220cccfa ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x34f4e53e ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa2aa71d2 ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfecc3e77 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x15afe103 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x210ab705 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52fe67ed dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5fa681e6 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 0x78d8bc4d usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8442527f usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fe1bd33 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaf2a6de5 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb50546ab usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc339e64 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd73ee9a4 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe46a7b89 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xee4ef2af usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x69cf0fef mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x772fec20 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9f3e3ff6 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb4917ac7 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd7f8bed2 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x30294b2c vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6b64b885 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x871ebda6 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9171b7c6 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95d48491 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x96b5f89a vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x98243aac vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcc38925a vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd583d81b vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x4d376404 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf33ca985 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x032a04cd vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x080a1748 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x139df98c vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19c25a24 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x211af98e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x323ac2ed vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x330aadb4 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bb3dcdc vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x444cfe20 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49945b61 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b752b03 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b5623ac vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e597359 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e7964b6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6082af55 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6556d213 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76671127 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78b74844 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d13d664 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d2bf88c vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96ad5422 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97f3935e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c86ed54 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7ed4983 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0c6387c vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3689177 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7a97a25 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcd5a93e vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2a8f40e vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc34e5058 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0f238ad vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd116c6e7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfed97ed vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe140a060 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2561dc2 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedb7f7e7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeebe55ea vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa3c64ac vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0ca7da2f ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60a558ae ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8a68bd69 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb8a264d8 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbaf088cc ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcda68081 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe56679e0 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa47ff411 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7b77a5b9 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8561d3a3 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcb922ee1 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfb8e879d sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x16a2f047 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x241de157 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2d715fa4 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x306d1b57 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x34119c40 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x382fa336 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b387a63 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c13dcb9 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4786765 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9df5a15 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaed69873 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1a94f63a xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x665a8f52 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x9785cfca xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbf7d08e2 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe425eff5 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x01fd909f xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x12edd725 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x39d57c2d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3da922d8 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6602da30 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x56e8e767 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9353fa5f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9b16edac nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf24eac9 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe34f4d4c nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf44cda83 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfc22c994 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x002ff7af nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x044770bd nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bbe326 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x062b889f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x072ee0b4 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a7d7009 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c365964 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ddb167c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e5fac5f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10b96544 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x115b5345 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11fdc710 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12c56cfc nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x130d28c6 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199cb45a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d6aabd4 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f5e7297 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fb7190d nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ff21b33 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x204f1061 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21dd7bba nfs_file_set_open_context +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 0x28cf1aae nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b86fda9 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8051f3 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3046cdee nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x318a1b9a nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3907502a nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d31584 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a446bdf nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d201fd9 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d5fb499 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e94637e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f280c54 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f85c8d6 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x416209a6 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43273bbe nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x464aa4a0 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x473005cb nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49ddc6fe nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54eb97c3 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d56924 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b1b17f5 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d7ac09b nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d7f6f97 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8dd595 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604e58e5 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60828588 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652a6d0b nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65570cc5 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5b2e41 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e719f97 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e9cbe40 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f805553 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f84c2c4 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fda5787 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7432d73e nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78758749 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79d71946 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a80bbea nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b05b302 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1c5e96 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x828c9252 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82dba7a9 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8377e460 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x839d1b30 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d80daf nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84d980f7 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x859d28d4 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86fa81b2 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e448e4 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89770513 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c46c13e nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x907d9741 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91ad2366 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9422f67a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a0bb4a nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b4c48a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x981def43 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993e054a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1bf1e7 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cfef903 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e430867 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e62d293 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3e4e01 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1309d11 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4a31f47 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +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 0xaee2fa4d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb30b46af nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb338f263 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb46ea542 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4bf5b78 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d2a5c9 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5b6f5a2 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6286cc0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8052075 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb825293c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8971b42 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9b1449e nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3bfcb1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba9dc18c nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf200840 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc11f4891 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc76de856 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77c2294 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc85c9f90 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc95e51be nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc97aa288 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9eca833 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca7086d9 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcba3cbf2 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfaf761f nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd174b5bb nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1219c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd76d8094 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb75a356 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0b3456b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4858a60 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9355420 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9d31e2d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9df17c3 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1bdd46 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ebc1db nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf258f8c2 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ae5a33 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf617af8a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6c04e69 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77c56c7 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf898300a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5937e8 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff0a08f6 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xb073edb9 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x010ffe16 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01f21ed7 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a3fe0a9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14000992 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15adc8e6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x167a7085 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21cf5b05 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23148459 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x240cacfe pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2418fe94 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2446eb38 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fa61326 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31736faf pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x340dec57 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34e9bc9f nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38f139d7 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e595fb5 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d40cc5b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f1693c8 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54d67d98 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5adcd649 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e1f6b4d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60c42c92 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65e3a986 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c81b8ae nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca63a34 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x717ec1c5 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75d70648 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77f36bb5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80bd4d5c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8aba74b7 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97d7adc0 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ab36b3d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f76eadc pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fa29265 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeb7b65a nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0a7e3b6 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0ceb0c6 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4d1d99c pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb742e286 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7994ea3 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdcce1a8 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdf2c904 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7bfeb57 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7d81a22 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd00542b7 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd23ea0a9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4d7cbcf nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6a36243 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd88b3b69 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd90158d5 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9f88c56 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7225e1 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7c43c9e nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefec58d7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2843622 pnfs_ld_read_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 0xfb0e6aa9 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbaf9859 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe5d1f4d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x23b55362 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x83cd29c8 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc843290d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe0bce7fe nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf4b57334 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x29f444c4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e15eaa3 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x30a1e397 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 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6dae20db o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6f06963a o2hb_setup_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 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc9d8155 o2nm_node_get +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 0xd532e8ce o2hb_unregister_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/dlm/ocfs2_dlm 0x115e1856 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3c418631 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x520bcb2a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c013f33 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa174cfdf dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xafab62f5 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x9abfd855 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcf1a8039 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd4014f20 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf0795b33 ocfs2_plock +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x25a60249 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x951ff4cf torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x9d48649b _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch +EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4362456f notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb59f9854 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x18ac32b0 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x501dcf33 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x3cfe80fd garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x47d020b5 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x526d4a9a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x7c333389 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x853ac611 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe732d9fc garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x152c1ff0 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1db79dba mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x1f7cd4ae mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x48a4d170 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xc256f029 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe092bdd1 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x32c21cf3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xf0041b71 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xd09dda56 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe82c2e35 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 0x385f6282 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 0x20bddb05 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x46a42382 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x58341a13 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5f14c34a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9d469e93 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e41c8a6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xecdd1481 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf93ef95a l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x78025453 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1a6410eb br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1afeb978 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c09578a br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x324f524f br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x393e8f9c br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61772457 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6566c98c br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6bd6e6a2 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f5ef73c br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fc5bafb br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x867fa378 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb01265c6 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5c9ac0b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8eea92c br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd64cc589 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb9eade2 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf531d2e2 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa842be4 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x25b5aff1 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x3eb87cfb failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x74942670 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12c247ac dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19a289f6 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21ae91d4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39fe036e dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40b60d23 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42008ebf dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x436ae881 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45f3eb2a dccp_poll +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 0x659e2235 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71556806 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73076be6 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x793d6393 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d9bc0ec dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81ba7794 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86c0d700 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9079449e compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91a1a5ed dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a2d9a46 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2624a42 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2c783bd dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa340b6cc dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa87821d dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba5abf0a dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2016ab3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b6a26c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfe75d82 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd60f6282 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbb901ce dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd6413d0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0939adf dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe13ff613 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe26c98c6 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe94ba5b3 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4133712 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4182300 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x167625a9 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2fbcb708 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd6b00fd8 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd971c09e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe4609d63 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xec1a952e dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0116d9ab dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x075a9085 dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10058262 dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x127d4c20 dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x14ac519b dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1aa3b176 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28cb38fc dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a1724f7 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6379fefc dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x859ac8a5 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97234232 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9ab537f6 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa88bd24d dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa88d5fec call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf8f5c7e dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb71665a1 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf4748a4 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6ad8460 dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf39ce832 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9dca65f dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe9b7105 dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xb1368a47 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xc0044f7e dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xe89aa924 dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xf33f0196 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x01c41d72 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1756ac00 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x84c0f549 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfc4d6e3f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ife/ife 0x560add29 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/ife/ife 0xfd51e7c8 ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x461bee1d esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1b4f61f esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf688ce64 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3715e14e gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xacff2785 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x01bc2a5c inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x069a4acf inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0fe8509f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x57d7a658 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7151abfd inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x89d0ad02 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96ede733 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb59b0d72 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc76a267b inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb790be78 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03b0f02f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12196451 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12cc4f3d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b7f53ed ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1da2cadc ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f0b0b40 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20ca483f ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d1fa508 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e0f93fd ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84b91b8b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac01df71 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb967898f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc00e41ae ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1bd9250 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0e0272b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe47c939a ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xfa8088f0 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf4e8cf6c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe3f92c36 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x47910693 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x727d468f nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fb40bb7 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb3d1a2a4 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc37c14f1 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xff3acb04 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xdf0a89d0 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7c38cfe6 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7f858652 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc9ae646a nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa0bb6568 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xc4d12a5a nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08e1ad82 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x40918561 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x876852a3 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8d90f323 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xde7962d0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x215b05da udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4c0fa8e8 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x56828858 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5feae477 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x674dcd6a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7588ee14 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7a5aea64 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8f28664f udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x35aee88e esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x77019c50 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8084dd43 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x52508bed ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd65ca053 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf85ebc77 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2d6b267d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8a3de706 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x396bd40a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6332bd7a nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x818e65a1 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x65d71e57 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x04fa8266 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3c03764e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac4c2ef3 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd8f6e102 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe8dcdadf nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x586d28b9 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x41f52d27 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x75443de3 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfa28dded nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x156a45cb nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x1ebf4f8f nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1f4083dc l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20b186ec l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25d63579 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cef5162 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x407b9430 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4691221c l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51414eff __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d4c4a86 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a78a8f8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cbaabc7 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87fb870e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x930d69ea l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3bde9c6 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc49b7355 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe738f626 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe95036cc l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf054df7f l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3dcb9f8b l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x040696e7 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x044ef458 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x182beb24 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e7dfc6f ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2cebc5be ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f0b26f7 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e1906f1 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x990f634c ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xab280a5a ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb646f001 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7707a6e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb8ff19e4 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc6d082d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbce0095d ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd27879f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf31b74df ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5060cc3c nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5260e8be mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9d64a09b mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa76d0b91 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd8929126 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03902a87 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x146f4f66 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23951246 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x252bf56f ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2957b821 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x386a0de0 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7c9bf579 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83ac80b5 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c6619b4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f00a930 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa0d17da5 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac176cfd ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbfcc6d63 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc04cfff8 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6a9bc35 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xccfa3851 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe86bfafc ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec0a34f3 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x96423b65 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdb3be1c3 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe4d2facd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf2f0907d ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x075ce756 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3e0ffd2c nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x70d6021a nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x914e9e80 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaf3ddc66 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0578223a nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09302d4c 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 0x0bdb8ec4 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c25a0e1 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e35ba38 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x113df238 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11f944e9 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14cb7847 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e516a62 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24113742 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26eaf6c2 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2832d83e nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29da45e2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2edeaeca nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f4aa94f nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x300d7a90 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x314ea10c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32bdf145 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36006498 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x378d1cf0 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d4e1120 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40572439 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4195a9f4 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4617da27 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x461bb207 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4821ba29 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48cd5aae nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a8ab21b nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b2dbc93 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53d24125 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541bdfa8 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9edb22 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bd616e1 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d133ee5 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x675a2ba3 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e035b8c nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fdc51c8 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71d7b6ca nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7206f214 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78e54ab1 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79fb1c3e nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x830d38d4 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85b7c06f nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87787259 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8782e103 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87eecb69 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c0f8987 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c10f8c8 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eddf780 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93a7ca76 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98a8bb21 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x990ca861 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e7c5efb nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa79170b1 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa832ccf5 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ded624 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8e7aaca nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb285a363 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2bffa0d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdeabd82 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe68049f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe7af77c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe96031d nf_ct_get_tuplepr +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 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc905de77 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccfa4b36 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0a63585 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2f0f0ce nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5c0a3f6 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7623aae nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd778a9e1 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb508d4d nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6e540ee nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7d7baaf __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe98eb383 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea10bea6 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef6c5330 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf54ac2cc nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9dc662c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb291e7d nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcf7deda nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff645955 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf3f72770 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7a37627d nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4558c9e0 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x06d76a32 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1c16b90a nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ebaac9e get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x34a9b071 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x38e03d46 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f74e317 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x40c291b7 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa758ab93 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd66260e8 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfaae4f92 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x6351fd0d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x351c7975 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x71075dae nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xad8ee544 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe1f03f06 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02e86d3c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0a3e8580 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x12391d15 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a45d9af ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x674fbb50 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x69fdbd5f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc5abcaad ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x18851fa6 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x3a4c31f1 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x86c4979a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x89e90e5d nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xefddf572 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x094f7754 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1075e770 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2b48d243 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x34ebee6c flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5620dbf0 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x812c418b flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x81765b3c nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8d287d09 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa33ab9b6 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa5372e9b nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb46c4d2f nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf80c254b flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x10016ddd nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x216d1190 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4a2ee30c nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbf2827c5 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xc7acfeae nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xcac0ab74 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b74f7b8 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15c035b9 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17bac3d3 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1bc4749c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x365510ba nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6300821d nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6fa6b0a3 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81ee7875 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa515c9af nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xae1f5d5b nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbcf2d494 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1c1056c nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4ecdcb7 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb040e13 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xef097b12 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf8c2c71f nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c85502d nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x37a9faff nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5238c43d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c8c4498 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6d0b55d2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8283dc2d nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x846eec65 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb9af76ff nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd83dfebc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdfe81257 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf3d4d031 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04c26b4c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0532e8c4 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ee7a6ca nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1775631a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18364177 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2437b2d8 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25f18fb9 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ec86265 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33fd8bde nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3412d7a0 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x368af56a __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37440c09 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41742268 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d078a52 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4df667b4 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52882501 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a2f28bb nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6123f3b1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c41bf7d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7692821f nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c86cadc nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x826fbd10 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fe9bbb4 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa55822dc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa838de2d nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa0d9d7a nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4e4e34c nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb627babe nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe811175 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2fd10bc nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc786bcd2 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd08884d7 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde2d2010 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe076cc00 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe34a19f5 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf030af2b nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8bd1036 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9e47425 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x02cd335a nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x19e68512 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x377cd47e nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5938870e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x78956a0b nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe10b577c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x731c0cf2 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x74ecf37d nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcf063ca2 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7dea42a8 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9e4db383 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x08d9fd2b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7d4cf2af nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe505437a nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf84c2f2a nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2a7c38ec nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xaf31e383 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xefc5a9d8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14682d7f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56480a88 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60026949 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6116842b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6305cb78 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b4af1d4 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f26c5b9 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8801e7a8 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c8b25c5 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d38e576 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90c926ec xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x957fa930 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x994e6335 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9df726e1 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa026e2e8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb12ae2e3 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2d8837c xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb4bbbf14 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb66b2f7a xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4f2af4c xt_compat_match_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 0xd5960715 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xcbce4848 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdb6e2522 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9c68071e nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9cbe9fb5 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfa1f6b30 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9fe5c5e2 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcb31d2c9 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf66e8630 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0370c9c7 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xbe022440 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0d3c7372 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5a888437 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6c7b45d4 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x845dba9f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb5aa4441 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd1175364 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x6b6e08cc psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x8a7bb35b psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xccbd67aa psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xe11ea214 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4cef3dcc qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4d11e503 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x52336e35 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0689484a rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x089d1a49 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x13347cea rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1beda61b rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2abe4a37 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x332ac409 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3970f4bc rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3adf220e rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x47cb066a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x4963161a rds_inc_path_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 0x67c646ec rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x67e2b689 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x74abeae7 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x75d707e1 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9354a75b rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x977a004b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x9a7a3a74 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xacafcb22 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaff12a7c rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb12f93f6 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb3ecdeba rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb4259ee0 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb5eae90c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xe5966709 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xea51a871 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf0ebbfff rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf5d087de rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf6b071e4 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1d3cc958 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1e9fd7fa sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x27dc3c88 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7627c1fa sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x16a916bf smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x21eda51e smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x3c0af285 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x3f0fbdc8 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4c3be600 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xab38d49b smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xad581f19 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xebb3e338 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfcbc757b smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xfe43c20c smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x087234d6 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x08765da1 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3395084a 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 0xd1809ad9 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a44675 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031f7555 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03443b33 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x036acc13 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c3f85f rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b8af10 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06cc5fb3 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072f49e7 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ad65d3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0976fba7 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c5cd117 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8ffc78 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e02c876 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e32d491 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1294252b rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12fb24ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1421c039 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146e8866 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151e34ed rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195555e7 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc9593f xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1c7d2e svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1ee798 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1c0348 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee5ce96 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b7cec7 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x212d8025 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2204e762 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25166744 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x259f16d1 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x270f762a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2758ef05 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0054cd rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a40d72c svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cc43646 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cdd829e rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cfdaa6a rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d3e9521 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa1d914 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd13e14 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3000e7e4 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x313b0167 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b7b4c1 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34be42b4 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a23acd svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365aee02 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b156c3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a3dc9b0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a62b0c5 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d548e45 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec5463c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f5dc744 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x405d27f2 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435cc87e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c9d946 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462d29ca rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d0309c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48fa9c79 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fcd9a3c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e4ac41 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51277b7b rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x523b7fac svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52a388e7 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x535fbd5d rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54168ba1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543eed53 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556fd1e1 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5730ffb8 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573f3247 svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x578ee193 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afc5ea3 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c8f17c9 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ceb4c4f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d89147e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1cf3f2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x671b5a4f gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a513067 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4a19f9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b75bec9 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d362798 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70e0ca01 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710d7a28 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711e5e01 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732128c9 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x755348d8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75b08ac5 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x780b3b21 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x789316ac svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793cabec svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7adcf9d7 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b54a5d5 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc2fd21 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfd2931 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f46ce07 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f6e6319 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7d2ad7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80fc3f0e rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814aa24b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8185a11f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83847c97 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x844ff90a xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85301f94 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d0bd1a xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8738363d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f031c5 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a05d8fc xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be1faeb svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c76c11e rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce632a6 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce8eb75 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e050aa1 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929be3dd sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93bd82df svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94586ec9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964810d0 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cc0f58 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x981762a2 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983597da xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e84ec4 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9942356b xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aec243e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9beb5c89 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c3dace7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccbc97a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d22bab8 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e4ba3c4 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed5d01f svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f650ad0 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0c5d700 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa165b1db svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31c3f7f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3224cc8 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa38db298 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa449be58 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa456ab3e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4bc8a9d rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6a82627 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6b9cc24 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6bd27a3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa878735a rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92d9090 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6e3670 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab4fccf7 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada8bf2e svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae607841 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea4c88a write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9e2e24 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41cf23b xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4263630 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb430551a xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a04ef9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f0357e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba1656bd xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf78f6c6 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc028aeff rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc256857b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b8fc89 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc350e4a2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5cbce3c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc90b93d8 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc99d7db8 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9bd0922 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8642fc svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1435f1 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7bb0dd rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6faca7 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb0a883 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce50abda xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce75109f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceef2ae0 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5e155b svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff9c5ef xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd051cd3e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd11fb2d5 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd13e7776 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32e05b0 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5058898 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ccd786 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8127d84 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd8111f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc53b203 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf277ec3 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf7b2bca rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe03d1fe5 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d6c15d xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0dcc228 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe23a0501 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2cb336e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bf7c34 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a7884d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe59d579f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e7978d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7723462 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8207e1b xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8842bc1 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8bbeaf6 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8fd5a46 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9055c26 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c14ced svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebaf017a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec55fae1 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd7ae77 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee114a39 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0526640 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1231a00 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf133845f rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2391d25 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ccce9c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf349638e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cf4644 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf527e8f2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf621e7c1 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78dbc2a rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7bd6cf2 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf898d508 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c38804 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d66dd7 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa464888 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfca807bc rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde0a6e0 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdfcc0d8 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfed5339e svc_rqst_free +EXPORT_SYMBOL_GPL net/tls/tls 0xb298c152 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xba4cf318 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 0x05fe5731 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x073b2de2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b8ffe14 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12b13464 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1406a065 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15f8edfc virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c7cac98 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2de14b00 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3160959b virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a912b15 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ea25520 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x636cc84a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x66666422 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x689b7cc8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7102d028 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x758020cd virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80b2b304 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8340b687 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x854a37ff virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87445eb3 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88e3468d virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92e696b6 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x974a846b virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b92ccde virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa45c313d virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa87f0e4d virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9a408c3 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabcdfde7 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7ff2c0e virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5b12a7e virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc685b3d virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4a7c202 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef22783f virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0184d10 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf76f18f2 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf91930a4 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0116d69a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a1f74f7 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x238d7361 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26ebdde1 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37739cba vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41ed7dac vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60ce4246 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71b69739 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x81f6a41a vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d65653f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9cb701ee vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e09ea89 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad07a5fb vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca7b1e1a vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd904a3b vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf66c8b1 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6292c91 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6a78a4f vsock_add_pending +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1bebacd0 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1c49a77f wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x33f5c2c6 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3458ff6b wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x49a20786 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6ecab09d wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x76fed8d1 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82e3d7b7 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8928d00e wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8add474a wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd640b0c wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4d63468 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf811c9da wimax_dev_init +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x021311d9 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1169ba6d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1218ef9d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x323b4a45 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4658b416 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52ed8044 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x578936ac cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d1f4f3a cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7b10cea9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x90b26d9d cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b7db86a cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa52ae699 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa855bd52 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc01c70c1 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc09e6457 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd4c0dd9c cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1908d275 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4053e5b0 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4412ec17 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfc97955c ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x1dee86be 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 0x1a600e9f snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x23c2dea1 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x35abc723 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x5218efe8 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL sound/core/snd 0x5920e1de snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x6bbec880 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x90dface7 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xa976bdcc snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xbfe47066 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xd0a972b1 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xe4b9ccf2 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xebd54a6e snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x17e55b64 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x7d21bce1 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x85bf17af snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xdc069be9 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 0x140d8706 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x627b7908 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x659ee9aa snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x78fd5668 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8b112507 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8e7c47ee snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa44471e7 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 0xaf474ef7 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb31faa47 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe671290f snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1bbff358 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x48ffb327 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4c59dbec snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c167494 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72d69913 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x766f6919 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7819cfb6 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d1b2258 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc1192c1c snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd51d668f snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe547a3ec snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3bf0b62d snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x82fec1bd __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0c7e9d63 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x22b972dc amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6a972447 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6de149ad amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7b19663d amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x869a39f4 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfeacff4c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00055633 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00287d68 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02cfe7ce snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06414540 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a85012d snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb397a4 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x144ee207 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1572f13e snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x159d340a snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16972a10 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18fd39ba snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f5a3e39 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fd96bb0 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20a1c96f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2391e1c5 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x241d4b02 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25343d64 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2820d0e8 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2abc85ba snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c6d4be3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30ea0f69 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3382b3c6 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33eb9904 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cb711b6 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d49a621 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4060661e snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x421c91a3 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44bf0df9 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45a44573 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48276dbe hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c1838ea snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x553f2ac6 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x595ed59d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e7e0ceb snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ed7cf97 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f02ae59 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60ab427c snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x610394d4 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x616eb1de snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66056002 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x669ca60f snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a203872 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x745489db snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76f82c6e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7af6f4bd snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec0769f snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f1c764d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84abf6df snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x864a75cc snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91400bec snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x948d3133 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99225105 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d0e1438 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e764cfd snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa38be4a9 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa94172b5 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa1b87e2 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab7cd823 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab8e5e4a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf5924a4 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaffa5c83 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb245300d snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb703b07a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8b0028c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc263e58d snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4933b02 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7e5fe31 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8632a73 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc91f5c8f snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca93e908 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcba45cc2 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd526ef9c snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6bcd9de snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbd52eea snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe74f84a0 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8fec772 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea383d2d snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4d558d7 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5255980 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa80710c snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa8f7a10 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca8524a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3108745b intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x43c7d81d snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x5ac23100 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x735604dd intel_nhlt_free +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c9e7e3a snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x349eba39 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4026ff72 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x40e15a0c snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x73621065 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe03756e2 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x006840ca azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0155856c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0193adb8 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x027bf17d snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ff7744 snd_hda_jack_tbl_get_from_tag +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 0x09d913f8 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b8166d5 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c85a5c0 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0910a9 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0a5405 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f5c4123 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11db6480 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12e538e2 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1368c09b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14330405 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1954bfad snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e13fbf7 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22dfa808 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2656c96b snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a868f71 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b37acb0 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cc5579b snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e65c33f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa678c5 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x301a1030 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x322d9b58 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32ceee1f snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33743a5b snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x339d91b8 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b724a6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35d58bb3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3689d5f3 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37697d4f azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39416fb2 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b2eb7a6 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b3aa1c8 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3beec038 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dd589c8 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3de595d2 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e5ecaac snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4d3b48 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x420a863c snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44f9d4c9 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46afa8f7 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49208e20 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x494b80f8 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x512bb0d0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x573c231c snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5767ff09 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a356f22 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bf40d53 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cd98376 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4c5d47 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63224846 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63affbc9 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65b2eb38 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65edf017 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67c07e84 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67f53db1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67f9b300 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c583590 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d28ab85 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f24c124 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fc895d9 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71b5abf1 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755fefcb snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79761fc0 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79e4baaa snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c0d635a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cec3d75 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e97d89d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8234bbe6 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x825ceb96 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84586d27 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86568475 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87c6c757 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x880cd9ba snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a7b3b69 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f585910 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90381a41 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95bfb61f azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9840a571 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b4869d4 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e093ca7 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1b96b7 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa46c7bdb snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ead56e __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa61ad38c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa86e441c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa51a6a3 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeb0d35b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb271f11c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4558db1 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb459f5b1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb97a445f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaab39c2 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc9fc02a snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc173ac7a snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc20516ae snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3508412 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc661e5df snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc68ff617 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9343209 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca26e328 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb9d495f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc1a4cbb snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc780102 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc65055 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd535d884 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7d323ce is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda3f551c snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb7df9d9 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1a00dcb snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe213d65e azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32afc00 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe82a61e8 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe881edee snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe950280d snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa28431 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3ee2788 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8f3ef0e snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x058f029f snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09a08758 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d395135 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17f60c60 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17fe2479 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a8dd236 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x655ababa snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x873b20b2 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9411edc9 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x97200fd3 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae9e2452 snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf80ace7 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2caa5d9 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5ff4d06 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7f0f5f8 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xddda40dd snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde0ee118 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe323004a snd_hda_gen_add_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe574fcc9 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf36389c0 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc74123c snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfeaf002b snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x254c648a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3f42225b adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x028f0bc0 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1357c555 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x295c2079 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x32d03334 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x36ce5c25 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5a267de6 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x613db31e adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x67a907d7 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd6347180 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xda5d2586 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6b306591 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 0x841c4b4c cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x279237de cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x44c7b346 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x522b919e cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x81df1067 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe0d608cf cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0653149d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x236d2817 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4306ef22 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xab0dc416 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe8fd7091 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfb00c678 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2a5b4f73 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb26984bf es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x84b8c2bb hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x46248b20 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x262e6b2d mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x48aec9e9 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb9353422 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd0ba9bc2 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbc9e45b1 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1b96b101 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x76c0a559 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xec30a173 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd24e2530 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xeb800d5b pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x591ccaef pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbcdfb114 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x118ad5df pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5c4d1075 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7238be88 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb891015b pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc36aef13 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xcd7f1494 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe88f9f54 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfdd3b341 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-rt5645 0xcc371970 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd3d04cf3 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x75cb45f1 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18a2ba09 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x63466d4c sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x84dd8a0d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdf568b3b sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe3f99a0b sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x5c842150 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x49ce3f8e devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6e634ab4 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe18b54d7 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xbd69bc10 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x25ab20dc ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1e54889e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3b793855 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x676bc336 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf28c8cc1 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x6eb49199 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5ceddc0b wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xd61f4594 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0d14d0e4 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc11f8bd0 fsl_asrc_get_dma_channel +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 0x0fa52a08 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x27f37558 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x341c16f8 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x43fc879a asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51c3268b asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7098cf74 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7f2dee06 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x88b0e765 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97880195 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb48f2691 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1ac76fd asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcec60d40 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf5f9ec9 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd0b14f47 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd90e783a asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb634cda asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde845119 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb069ec7 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x10f44be5 mtk_afe_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x12243513 mtk_afe_pcm_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16b9eaa9 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x33242936 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3aca5885 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3cd82971 mtk_afe_dai_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x46b0c6be mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4abb0f34 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x64e668be mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6a90bcb4 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x95a9d6b1 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc2ea4fbf mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc9a14473 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd8d05071 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf0185a67 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfc0dff76 mtk_afe_dai_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfc608926 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1f37e667 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5556a56c axg_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x89b99670 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc3c5e124 g12a_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x216268ee axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x50aa52e6 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x71158c71 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9258a990 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb0e9b620 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xd6361dff axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xf2948bf2 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xd041c129 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x18ee719d q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x611a4759 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa4d4b803 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xdbb190db q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x151ae9d4 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x33b7c94d q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0015f65e asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1662c5a1 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x56160186 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xabbe137e asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xe8ed2e10 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x64eadd17 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6db14d42 snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe22074cc snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00e47623 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04dbffda snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0839313d snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b6700c1 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bd06f76 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bd8fe76 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c7ec80c snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d941fea snd_soc_component_read32 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1d69e3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x106e540b snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10afdd4c snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1255eaff snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x126dca33 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1273d7ef snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15f62161 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170f45ea snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17725e80 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17f9045b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1958a5e0 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f0cca97 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f9b82f3 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22b117d6 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23153b72 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x235c3863 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2362b9fa snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a5be549 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f725cd4 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fdaed71 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33916997 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x340ba9cd snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34b45a24 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34b917ae snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3562b225 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x369abe94 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36b86b8b snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x379654ca snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37bbae8e dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b2d2db5 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b69dba7 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca9fe60 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e172322 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e5143e5 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f078f68 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40ae264d dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4120a594 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x445667d1 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4477de50 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x460b2b25 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4664d5f7 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ecc3d5 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b40a1e7 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b42e447 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf30de5 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51453559 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x552ef73b snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55646d92 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5656db8d snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57258c51 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57265665 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b56a37a snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ba2312a snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cce7105 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d01b5f6 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e5a6ce3 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f85bd55 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6024adb7 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60ec9a34 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63935342 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666e3e93 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67be3f36 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6adc0718 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bb1d065 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da6a167 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fbc4d5f snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72a1caf2 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x763cac70 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x766025b2 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768493cc snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x776cb0ad snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b34e56 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77bb922c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x787c0fc2 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a128bc8 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7d0d11 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ebd3484 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f25f0a1 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x803a54ff snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8198cd20 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ba9585 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85200ad7 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x858b7cf9 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86a2de24 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8711a908 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bf2f525 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ebf6fd5 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa0eddc snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fc5829a snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91dd1923 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9314f0e9 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967fb38b snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96904e84 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96dfbf53 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981c82e7 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98538a25 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9963707a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ae49922 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b2ed747 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9de7fad0 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e85fdac snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef20508 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2be1374 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa491ae33 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6ad973e snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7d83dd7 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8001694 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92279fd snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa067edd snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2d4fcb snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac3b1efe snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae267439 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f66ec1 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f47dc8 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9b90d01 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba5ac445 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb3a0064 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc15cac8 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc462baf devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe44c42a snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc09c5610 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0ed3e5e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc42da1da snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5493d3d snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56f3044 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5a684fd snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62c4b0a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6eed485 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaca47f3 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb71b644 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd3f1718 snd_soc_find_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdd58ebc snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfebde97 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd120da1a snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd211c7b9 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2f5f1b1 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd381212b snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4225e74 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7253f90 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd90731ab snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd3e123c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd8f0d27 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddbb7001 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e999db snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3994dec snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe73a179c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe74e3345 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7966877 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8e772fe snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9039da0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea109f54 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead9f396 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5bbeab snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf10fc7cb snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1b016e8 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf65fbaa9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6dd5a40 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe004493 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe1c1821 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff6432a9 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x236c3735 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4ad648b3 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x61c0c13d snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xaca349b4 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06e29268 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x135757d6 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e6d4371 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3665ac0b line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x49fbe8fb line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5378f0aa line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63ddbe8a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69d812a9 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6cfbaa65 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x99eefdf7 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4025927 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb897aca line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5b400ba line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe6795e6d line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfca6ab38 line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x000a71bd pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x001c1c4b rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x001d969e vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x0025c46a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x002e4105 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x003d2b1c acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x003f98e8 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x004fef21 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x007f3bd6 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x00890dc2 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x008971ac rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x008cd939 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x008d3ef6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x009569cc gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x009b5e8a usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x00cfb7e1 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00d20d5e scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00d5c8d6 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x00d97bc0 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x00e6a54f dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x00f0cf52 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x011f4679 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x012a5efe pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01523232 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x015b9efb extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x015fb6c8 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018f5398 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x01abeb2b fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x01b7b8a0 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cf51d9 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x01d13bf0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e26150 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x01e9c9f9 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x01ea2410 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x0220a3d8 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x0224921a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x02372317 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x0245a75b ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x02859c8d phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x028edfbb get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x02b10d3d pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x02df7b3c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x02e25263 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x02eb8ce1 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0318e23f skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032b1451 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033a73d7 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x03431f7f sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0368e7eb param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0380c2b0 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x038bd6cf wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0398c089 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03da4c8e vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x03e04972 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x03fe288a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x03fe3bca device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0401e61b ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0404d8c9 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x040895da devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x04423bef badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x0442a767 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x0449edf4 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x04630de0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046819c5 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x047ae0cd xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x047c2223 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04961475 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x049d2adc scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a0044c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x04af9b16 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x04b4563c dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x04bc15df fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c0f72f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cba10b kill_device +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04fbf49f led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x0506dd50 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x0515203b attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052d5658 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x05304ab0 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x057b2f42 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0580200f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x05847fe3 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0586a6f6 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05974ccc dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x059ad3cc gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05bb04f8 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x05c74985 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x05c8c004 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x05e8835d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x05ebe3fb __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x06129840 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x06148283 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06279838 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x06307910 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x0644d974 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064f455b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x065bd1db housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0660fd02 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x066e9d7a mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0x0674e11f free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x0677e4b7 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x06965b04 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x06b21c57 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x06e04592 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x070134f1 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x071aed96 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x071ce140 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x0721ceac pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0732d0ed gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0749ab77 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x07515e99 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x075ae686 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x076eea34 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x077d69c5 devlink_alloc +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 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c0fa31 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x07c23703 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x07d9010a regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x07e731b1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x07e9437c devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x07f99abb of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0802217c blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x08110cca uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0824119b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x082ad950 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x082f840f devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0834aa91 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x08427558 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x084edee5 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x085053b0 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0850918a fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x085ad8ad __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x087a9505 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x087b97bd trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x087d8a2a phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088209fa platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x08921c93 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x08b29366 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bf13b0 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x08c24737 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08dd4c10 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x08e02acb md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091d2491 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0945a0e3 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x094696c7 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x095e9268 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x09787304 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x097fbd88 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x098ae448 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x098efed2 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x09a036fd lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09ba2e02 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x09d46967 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x09e9a6a1 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x09fe57e7 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a001689 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0a0b8db4 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x0a0c9d45 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x0a123f16 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x0a1f548b wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x0a235cc9 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0a3a170c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x0a3ec139 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x0a40419c pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0a4f43f8 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0a5db8a6 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a704ee0 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x0a7d07fc dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0a7e9032 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0aa99250 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x0ab9a65d uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0adbcf7a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x0ae8a302 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0ae8f924 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x0aed1c7f kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x0af0ef2b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b059af2 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b4d8321 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b673d5b do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0b67e3ff sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x0b9c3fa9 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b9d8249 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x0b9ddfbd clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x0baee0e1 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0baefd92 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb820e8 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bc75e1c hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0bd107b9 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x0bd4c634 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0bfd4648 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0c080692 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c270e25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c328256 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c483bdd i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0c544d10 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x0c54e3ec iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x0c82bf7f usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c8edd5d dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x0c97db90 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb579c0 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x0cb60f33 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0cc3b29e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x0ccba7fd __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cde22c7 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0ce91320 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0cec2e7e firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x0cf34b04 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x0d116ad0 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d40d8be ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4cb93f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0d51fcfc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x0d69416f bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0d932bce power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0d95397f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x0db3d4ab blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x0db94ecd fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dd8bb66 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de09e2a pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0ded0498 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x0dfe3c54 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e09e6b0 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0e0d8679 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x0e11fd1f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x0e129273 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e154f54 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0e3f61eb sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0e59bbd9 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e807b16 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0e926702 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x0e930eeb init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0e9ee60a tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb5867a bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0eb9adc9 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0ebc6f4d tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ec9f1f5 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0ecfdb38 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x0eda03ce handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ee86ec4 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ef64ee9 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0efcb198 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x0f294f34 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x0f31d571 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x0f3f0d31 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x0f6067f8 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f877747 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x0fa55442 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x0fa5d3d8 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x0fbfc0cb pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0fd0a9af regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x0fd14cb0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fe79274 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x0fe87b91 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0ff95ec4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x0ffc3029 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1015ac1c fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1029ba73 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x1037dacd pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x105852bd pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x1070d55e scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1074143e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1075358b blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x1081b0b6 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1087b9ec sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10933a66 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x10a3f347 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x10c4a5ab tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x10cb21c0 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x10d0735d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x10db6350 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11094ce6 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x111cf3f1 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x112d515e input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x1172d487 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x117629df desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x1177c2e7 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x117925b5 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x1185c249 arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x11975479 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x1198f235 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x119d5f0f edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11af18a2 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x11af3754 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x11bebede perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11d177e4 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x11d17892 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11f4aaf1 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11fb69ae iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x121011ef xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x12155c24 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122c6681 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x122f5bb1 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x12316e26 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x12461bb7 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x1249bb74 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1257246e power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x12680dda vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1269be74 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x128c5ac4 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x128f92b1 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1292ed53 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129dd026 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12ab31f1 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12b055b5 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x12c92fc2 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x12d40d61 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12de1f2e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x12de408f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x12f7a0e5 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x12ff9c28 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x13194bdc aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133dfd18 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x1351cdfa dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x135293ff crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13864f28 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1391ce07 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x139906c4 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x13a3462d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x13b080a8 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13c19ee7 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e6a546 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13efa0c9 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x13f56414 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14226cd4 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x142bc30d blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x143fcf44 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x1449f73b ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x144f52ce genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x145507f2 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1485a307 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x148668a6 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x14893938 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x148bdd08 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x148d9a8a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x14b5978a device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x14cd26ba gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14e17fca mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x14e6a12c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x14ec85ba bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x14f24c17 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1520e2f7 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154bdbe5 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15685cbf crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x156e52cf hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x15791f56 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x15925583 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x15b1f62a ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x15b7611f __module_address +EXPORT_SYMBOL_GPL vmlinux 0x15c283e0 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x15c31d7d param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x15d6e5ae gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x15d7bb0d ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x15dd2545 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ec7f97 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x1606325c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1633fffc devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x163e9887 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x164188db blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165555e4 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x165728f4 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x16633bb3 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x1664ad24 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x169a441e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x16b7bacc __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x16c8fa1c spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x16cd2cf9 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x16d726d4 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dc880c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16eca13c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x170201e2 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1737a3f7 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x173b41e6 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17535649 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x17538ecd devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x175a3e37 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176c0b48 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1780c945 __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x17914d00 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179e6c00 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17a3ca74 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x17b7ad9e dm_put +EXPORT_SYMBOL_GPL vmlinux 0x17c023ff mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x17c1819d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x17c4d972 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x17c8cb79 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x17cbfbbf pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x17d39fc5 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x17d4a7a9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x17de9a1a stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x1805ea0e usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x182f0a60 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x183c6d8b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1862a83e gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x187cf730 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x18990e6d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18addffb timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x18c51ca3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x18c5db27 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x18d074b2 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fa1ae5 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19030ae2 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x19151003 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x191b284a raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x1928d93f pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x1942b451 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x195c46b6 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x195e0bd2 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x19608071 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x196b52b8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1977fe1d d_walk +EXPORT_SYMBOL_GPL vmlinux 0x197e0157 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c68dd5 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f69b35 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a15de15 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x1a22ca48 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x1a54e83a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a55ddf8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a8067ec crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1aca5ab7 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad02d66 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b128da8 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1b138c0a i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1b1471f3 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x1b158683 cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1b4b2943 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b54b57f fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b6131b9 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x1b66dcfe devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b6d8e37 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1b7bb691 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x1b7e926a devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b90788e of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1b910771 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1b922027 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b930b6f kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x1bac3474 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1bb65a93 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1bbaf7f0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bda6a19 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1bdb02df evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x1be235ea fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf07059 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1bf9811e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x1c06e536 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x1c0f7af1 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x1c368cc9 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c3c0e26 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x1c43fbc9 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c44b902 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1c486d80 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c4c1076 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1c4ed16f acpi_subsys_suspend_noirq +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 0x1c76d5e1 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c93def4 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x1c966ac2 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x1c9c4867 cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0x1c9cf5af fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cad49ae usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x1cad7160 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1cb1bed1 nd_blk_region_to_dimm +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 0x1ccf317a __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1cd33956 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x1cfb3ef5 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1d01dc3f devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1d15d32a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x1d1d714b ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d1f43a4 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d31f310 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1d69754b __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d8c4b9b pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x1da8f133 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x1db3d4bd fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x1dc59172 find_module +EXPORT_SYMBOL_GPL vmlinux 0x1dd69ba7 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1ded4c5e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1defada7 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x1df6a107 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e07a3af __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x1e1d18ba security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1e284133 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1e338862 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1e339537 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e54821e gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x1e59c503 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1e5a93d8 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e5c70b9 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x1e6c96a0 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1e6f7b36 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e80a651 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e942323 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1e98ff2a irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1e99823a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x1ea02596 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x1ea8c10b devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1eaec09e sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x1eb1b2d4 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x1eb351d0 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebd3b5c spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x1ebe4c61 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec6778c nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x1ecf60b6 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1ee7d3cd hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1ef4cedf pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1ef77b74 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x1ef95a48 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x1efc0428 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x1efdd196 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f186789 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4e1518 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1f507dc7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f613c3d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1f6b2585 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x1f74380d __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f861d85 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8fb045 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f93a830 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fb90eb7 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1fc836bd nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1fcfa9ae __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1fd1c310 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff261ce devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1ff435fa arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x201ae8d7 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x201b9c56 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203da316 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2041a2e8 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20532239 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x2059aa57 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x205d6470 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x206c40e4 md_start +EXPORT_SYMBOL_GPL vmlinux 0x206c4fd5 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208c3659 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x208e881c __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2093f4dd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x2098317e extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x20adf0b2 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x20b54d61 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x20c1eb87 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x20c82662 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20d9022c __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e144a0 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x20f98840 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x21036667 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x211ea401 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2122bca6 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x215fc6e6 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2170cfd6 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2187657c fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x218c8ace powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21c79164 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d64f6a dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x21d980c2 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x21f348d6 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x21fab4de ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x21fc0593 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221b1000 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22223bfd sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x223d43ad debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2240f3a8 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x225896ab debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x225936e7 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x2260c4b8 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x2277acd0 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2277ca62 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x22927089 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x22992ba3 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x22a4e0b8 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x22a5a084 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x22c44ef9 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f9c8e0 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x22fa799f phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x22fc5cf4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2301a17e component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x2317c413 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x231a2b88 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x23325537 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x233372d9 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x233bd177 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234e38bc of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2354a306 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x235df8d9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x2366e4f1 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x2367a64e da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x23709b7a da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2382b4b3 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23868d32 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239a6dc4 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x23b9b009 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x23c2c1b2 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x23ccc6ae regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23dc734a vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x23ed41f2 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x241aaf58 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x241c4104 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2477ecb0 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x247bb6ca sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24b38e9b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x24b3c24b devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x24c05106 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x24db25d0 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x24dfd8a2 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x250faa93 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25395fa9 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x253e4a46 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2568370f tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x256a784c disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x256d8357 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x2572d6e5 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x257e7fc0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x2591dc4b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25982a18 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x25a5b07e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x25ab4054 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x25be5d11 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x25dac849 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x25e01d5e regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x25f3e614 cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0x26073bc3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x260d0b25 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2611f803 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x26149bb6 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x26254c0d register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x262fb494 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x2631bfcf __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2658e47e ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266ac6ba arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x266f18ba security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x26789b53 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x26793324 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x267d1270 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268977cc dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26adc149 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d973cc device_move +EXPORT_SYMBOL_GPL vmlinux 0x26da759d gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26edbbf5 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271210eb mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x271d62bd sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x274f7a45 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x275a0e1b inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x276c28c0 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0x277013f7 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x27715e4a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27763d3a register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x27785fd5 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2785c7b3 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x279166ce blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x27a8cfdf irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x27bd5592 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x27c4eb5b regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x27c9d5f9 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x27ddf750 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x27dfba88 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x27ed4c25 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fca340 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x28022499 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2812c9eb software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x282a1f59 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2834b278 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2854f88a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28655ff2 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287540b5 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x287a536e ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +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 0x28b28c38 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x28b68615 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x28d841b0 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x28e985b7 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x28fe6204 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x2904cdac nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x29062fd3 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x2908e8c9 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x290c4f59 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x291bfb1a find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x29213be3 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x29285903 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x293126f6 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x2948a8e6 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x294a8b70 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x294be267 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x294f1238 component_add +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2976c191 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x297c4dc2 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x297c7221 net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x29885988 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x299fead2 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x29a137a4 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x29a75de6 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x29a86533 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x29bb12d3 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x29cdb736 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x29d8f599 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa43c0 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x2a10b998 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2a11764a anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x2a11d188 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2a1eefea pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2a1fa4e5 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x2a2a9272 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a30fdd6 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a401353 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2a447332 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a44a47f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a648eba aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a69ab4f bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x2a6f88fb xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x2a7ad764 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2a94129e blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2aa0072b handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab1f815 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x2ab625fc ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2ab66a4b cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2ac95dfe tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x2af97343 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2afb3a77 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2b04ec6a shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b07d69d sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b14909b rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2b1ea3fd device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b2c1611 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4e8dc0 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x2b54bc35 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2b56eb3d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9fa1b8 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x2babd148 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2bb70e69 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2bb9470d platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x2bc589c5 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2bd4959b hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x2bd94658 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x2be5c10a inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x2bf5679a to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c00abc1 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c100bc7 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3d131b arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c3f7dfb wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x2c5569da thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c77c845 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c807ec7 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x2c836ca7 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c90cc85 xen_set_affinity_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cacacb0 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x2cb5e46a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2ce09b67 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x2ce0a5b7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ce7e6e3 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ceb2b4a devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x2d016ffd debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x2d14c923 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1aecd8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d237595 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6c19b8 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x2d6f3dfe sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x2d7fb496 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2d9005a2 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2d9c4a1c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2da8b889 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db72225 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x2dc55ffa inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2e05d2bd switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e11ffe0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e546930 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e55f348 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2e61c345 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e84efae kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x2e8a4340 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e8e50fb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x2ea43c1c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebdee8c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebfaa88 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x2ec56440 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2ec5d3b4 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2edf9b2f vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2f0b118f mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2aa5a5 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2cd3d5 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x2f3098d0 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2f33df82 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2f366066 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2f3b874f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x2f3d465d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f68c4d2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x2f6e81dc tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x2f764a50 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2f77fcd3 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x2f8fa612 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa592f6 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x2fb72e9b sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x2fd5c833 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x2fea26b9 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x2fee6801 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3001b301 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x300ec4e7 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x30228cac __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x3023867f spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x30291edb nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x302affa6 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x304210ac pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x30459302 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3051d17a ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x305b2438 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x30788054 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x3078e6e4 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x30803a57 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3090cb05 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x30964f29 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x30971c69 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x30a66ab3 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x30ae635e gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x30bc43cf phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x30bc5e25 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x30bd6885 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30f7f25b sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x31058ed7 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3108c6d5 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x310b9897 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x311560d1 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x31156853 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3150024d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3170f21d usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31b1440b kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x31b151e4 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31b4b60a usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x31b88cc6 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d31bf0 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31ddd39a serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x320980c3 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x321a63c7 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x321adae7 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x323a03d4 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3240f214 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x324ac520 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x324aea1f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327e9ca5 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3280a31a __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x3280df7b dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3289759c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x32a38be7 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x32a52910 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x32aae694 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32adb0fa wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c1936c iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x32c335d0 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32cbe817 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x32d1b63b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x32d6a9d5 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x32d86276 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x32e3a28e rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x32edb6b7 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33032bb0 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x33134e0b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x3325fc21 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3334b8c4 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x333dcca3 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x334569e5 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x3345d04f regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3360fb5b gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x337734ce pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x33aef627 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x33afb29a cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x33cd1b15 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x33d8d73f ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x33d9717f __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x33dcc32a fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x33e028b9 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x33e8dec6 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x33ee602a debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f1721c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x33f93596 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x340986b6 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x341257a6 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3416180c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34689f26 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x34858dc5 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x3489a169 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x349f012d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x34a510c8 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x34adc6b0 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x34af0b31 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x34b622f8 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x34b8df33 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x34b96bee input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34c024d8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x34d620c8 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34eba701 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x34f7b357 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x35187ace pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x351882af sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35304b89 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x3543ab8a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x354a3c68 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3562bd1a ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x35749019 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3592589f ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x3593355b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x359ca687 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x35b2fcf4 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x35c35480 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35d2a857 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361b08db sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x361c0332 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3621cf42 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363267a0 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x364e707d of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x369fca56 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a6eaf3 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x36a7e8b3 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x36c37e87 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x36c555f9 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x36c5767d simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x36cdda06 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x36ceb048 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x36e42559 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x36e8e70b regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x36ea3b70 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x36ef7923 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x36f332d4 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x371ddcc9 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x37271b71 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x372c241b fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x3733385c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x373dd94b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37516dcb ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x375776a4 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x376d5f65 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x377b03c1 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377ce7a5 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x377d160c devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3781f571 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3784b813 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x37892001 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37927b03 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x3793772d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x379653ab xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x3797636e kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x37a3a78a sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x37bc3020 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x37bce81e devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x37d0209c acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37d56a38 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37fb023e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38150745 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x38246da3 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x382770ad devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0x3827bf0c bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383b66be acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x384bc380 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x385a0a15 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x386649a9 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x38674075 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x387d0070 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x3883335b cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0x388968dc pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x388efab9 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x38974ed3 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x389a2b52 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389c9be6 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x38a79fc1 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x38a9049e regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x38ae1486 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x38b3f462 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x38c8c384 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x38cb13fc pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x38d7b751 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x38dafc6a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x38dc1c63 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e9d395 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x39101938 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x393560b6 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x394e318c bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x3972b28a platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x399bb8c0 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x39b55b73 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x39c56be4 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x39c7a87b mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f0b48c fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a1380d3 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3a1460c7 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3a2a4325 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a2ed329 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x3a334bc3 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x3a356206 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x3a3a4682 platform_device_register +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 0x3a6419e4 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x3a7cbbe3 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0x3a99d4e7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa5e8d3 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3aa7308f irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3ab485b6 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3abfb6a8 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x3ac0d9c3 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x3ac3e037 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x3ac5eb7f iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x3ac65c40 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3ac9835e __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3aca0e55 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3add9fd7 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x3afa02e5 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3b047fdd iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x3b11ad02 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b714a0a pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b79607f of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3b839a49 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x3b83e462 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x3b865c17 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3b884bf7 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8bff57 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3b95398c __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x3b9a4784 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba4542a of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x3ba84566 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ba91227 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x3baf3697 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x3bb954c6 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x3bd95d43 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be0ca29 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf2150a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3c07a5c9 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x3c19fcaf usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1f734d nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3c212744 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c506ce5 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3c5d2767 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3c5d35fb cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3c796a70 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x3c7b8702 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3c8ec29c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x3cc37997 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd2567a virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3cd6dc53 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x3cdb4704 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3ce77caf register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3d070b17 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d22fd3f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d430012 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d4d058a __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d528609 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3d54f6ae xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x3d558104 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d77ae02 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dceef86 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd394ce tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3dd791e3 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3ddc6637 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x3de9bc84 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dffe449 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e3daf0f fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x3e438f0f register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3e452cb8 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x3e498b88 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x3e605145 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0x3e699f4c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e8cd2ca scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e8d577e arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e9d4364 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb12272 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3eb3df8c blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x3eb7abec crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3ebb5a3d spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3ec8c560 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x3ee396a7 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x3eeaa967 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3eeba873 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef831ba input_class +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f11dd82 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3f17af97 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x3f1a5721 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3f1d1565 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x3f2196f8 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x3f22f9b5 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f2abd0e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3f6168fb powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x3f767dc7 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x3f775eb8 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3f7b5fed regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x3f7ca42e acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f955cca dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x3fa2c91e devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3fbca419 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3fc50ddb sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x3fd03110 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3fde40f9 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fe9c614 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40130141 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4019d8fb of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403a90b0 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x403ce843 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x405ac4b3 ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406ccbe5 powercap_unregister_zone +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 0x408a43d3 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40b43bd0 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40b844c7 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x40bb0522 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x40c2d021 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x40ca35a8 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x40d279cd dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f3043a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41067871 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x41070033 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x410729bb tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x413655b3 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x413a8ee2 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x413d026d platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x414a8103 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415576af kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x41631d8e vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4163bf3d pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x41687e13 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x41795a60 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x417dc93d of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x417e5ff8 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4181d6c6 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x418410d1 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41afc26c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41c45d6b pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x41cf6478 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x41d88810 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x41e57711 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x41e65ae0 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x41ec2b81 __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f66ede pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x42230915 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x4239d44d ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4240dba1 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x425603ec __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4267d913 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x4281d5c5 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4285f22d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x42a999b9 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x42ba4194 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x42ba766b kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42cf47f6 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x42e07b48 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x42e8f443 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x42ee2634 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fba1c7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x4304ba48 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x431c6f25 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x431f27c5 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x43489436 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x435c1c32 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x435fa928 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x436e3e1d crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438ed208 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43e8498e sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f78b83 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x43f7e231 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43ff3cf5 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x44088cfc spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x440918c5 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x441721d9 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x441c43ee i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x4420cb6d irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x4436eea7 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x443f9d56 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x447385a4 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448b6bc4 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x449380f7 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44a78fc0 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b0cbf3 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c5717c devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4505f37f i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4544409c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4554526c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45564aed virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x45583c4e wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456c8a48 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x456d1b57 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457ed7f8 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x45951e8d nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x459ccd4e cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x45bdfe8d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x45d02f72 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x45d42d3d devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x45e1f0ff gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x45e673df perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x45ecf0ee dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x46086add acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x4613e603 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x4618deeb iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x462b457b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x462dcba7 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x46552ce2 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x466093fb init_iova_flush_queue +EXPORT_SYMBOL_GPL vmlinux 0x46682287 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x4668a2ac task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4675f8be dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x467cb0f8 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x4682938e gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468d1054 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x46a8d954 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x46b9ec98 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x46d7a89a ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x46e31811 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x46ed94f9 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46ffe7f8 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x470a26ff of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4755aefa sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477b1228 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x4782c9f6 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4795fdfb regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4799c4d5 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a0e492 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x47a5ff5e acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47aef018 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x47beca98 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x47c149f7 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47dcd61e acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ee1fbb flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x47f63527 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x47fd95ff inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x4800950e of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x480449b7 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x48136482 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4820d3a7 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x48211122 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x485d65ef pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x48654c4d devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x4868db20 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x487327e3 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4894be81 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a4b721 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x48a5373a spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x48de8c0a crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x48f2b710 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x48f4296a class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492e66be pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x493f78e0 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49582d25 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x49593c86 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x496b92f9 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x496f77ed save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x49723aca ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x49780f0d do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x498f4ac6 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4993de44 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x4995d544 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x49acd801 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x49b854e0 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x49bc5321 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x49bfd10d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x49ccc5e0 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x49ce3738 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x49d915ea blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49db6bf8 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a002a9a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x4a2cd0cc da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4a2f4075 ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x4a311294 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a6c76e0 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4a7392c6 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x4a8a59b0 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x4a908ea4 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4a939e78 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4aa58bea inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac6d466 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x4adb7580 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4af9e33f sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x4b066300 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4b0f1db1 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4b1473d2 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b1909a1 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4b1a8d17 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x4b1fc942 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4b2ff059 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b3f1c83 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4b4189af led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x4b48e72f debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b4dcd13 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5337b0 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x4b6b9d7d kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x4b75285b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x4b7b768e device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x4b92110b __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b961cb0 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x4ba812ba __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4bb7a711 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x4bb9252e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4bc6e8ae devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4c0c0842 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x4c1dc880 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x4c3e7586 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4c4c1083 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c5bca72 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x4c5ce80e handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x4c75ae38 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c7a2e2d __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4c7d54cd tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x4c7d6009 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x4c86925f mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x4c9160ab sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4c9be8f6 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x4cb5097f devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4cbe7edb ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x4cdf6c7c set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ce6eefb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x4cf8c732 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x4cff6ed0 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d09fe02 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x4d0cf836 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4d12ffe5 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x4d175e54 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x4d1f7cab skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d43a46f srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d54ab3a __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x4d74a184 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x4d86f085 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8c3bf8 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x4d8e829f preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4d9b848b tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d9ff22b acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dbdb767 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x4dbe69f8 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4dc03ba1 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x4dc2c545 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4dc39982 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x4dca423c gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddbceb3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4ddfb965 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de567b1 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dfa55a7 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x4dfae7d5 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1b021e acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x4e3ba10a iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4f4c9f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e54ceeb device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4e693dee bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e7f3f3c xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e865d14 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x4e8e7d66 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4e934390 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x4ea0c1a6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x4ea1c6ba efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb207a7 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4eb66865 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x4ecb6fbf sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed63863 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f06ab75 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x4f13cacd of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4f15118c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x4f155770 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x4f18c630 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4f205df1 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x4f22d3a8 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f299a09 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4f3eb127 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4f459c7a edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x4f46aa56 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4f5c6f09 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f94f690 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fb734aa gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4fc02643 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x4fc4932a iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x4fce9a3f irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe7c837 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4feac3ac mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4ff3003f meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x5004fc13 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5033089b set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x50433589 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5086285d ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x508a8cee nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x508bb865 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a317e8 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50aaac45 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x50b13d5c ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50d5eb5a scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x50e3d226 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5101fd52 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x5118396a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51312229 xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x5131b2ed tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x5134ed4d udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x5135fd15 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x51422aef ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5145f3f7 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x515167b3 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x51536c20 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5157948c ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5164895c devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5192304d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5192a84e devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x519fe19e dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x51ce282b i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x51d0aa56 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x51dde90c pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x51e686ed ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x520587e7 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x5219387e account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x521fea06 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523eba8f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524a1620 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x524d91b5 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52654d7d dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x527a5f36 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5287d103 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x529496b5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x529eb8da virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x52b03f17 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x52b8f146 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x52bf431c dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52fa9a0d metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x52fec8df fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x5310cc35 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x53152100 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x53312234 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x53334961 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x5356ed6e __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53700de9 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5374c364 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x537a303a kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x53876ce6 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x539e3827 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x53b28545 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x53b8e626 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x53b90749 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x53dbbc78 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x53dff31a netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x541a0a24 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5427c82e pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x5428e237 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x54297d09 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x54434f95 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5445237c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x544ae20b tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54526f00 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x5464e1a8 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x54767808 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x548fa145 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955855 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x5499a34f of_map_rid +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54cdb94c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x54d5053d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x54d9ee41 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x54de2180 blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x54f445b7 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0x54fa5a99 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x55036f04 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x55197dc8 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55382ce6 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553c23d6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543d5ba skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0x555f9eca rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x5568a132 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x556d2606 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5574b2cf devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55867b88 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5588e880 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x558b570b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x55948b11 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x559c8c84 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x55c40e0c find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55dcd803 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5604feb5 devlink_free +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 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563c7b00 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56414fac rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x564b867b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x564bcf2b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x565de378 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5674b3cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5679b15d of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x56821087 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x56946209 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x569b69df devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x56c046d0 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x56c5d637 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x56d37ab0 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56de6a92 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x56e2b50b crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x56e52502 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x572265e5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5727f2c7 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5728567e tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x57298676 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x572c7d58 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573e2971 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x573eade7 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5742a6c5 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57482973 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x574cb6c1 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x574d436b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x574f9f8c rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5756ee61 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x576b60e3 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x577b5d4b mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x57866d0c i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57983456 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b207fe bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x57b86257 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x57bfae1e phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c6d0a1 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x57d128d7 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x57d33658 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x57ef514a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x57f9f422 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x580333bd rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x582386e8 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584bbf38 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x585aff80 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x586ada38 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x586ce895 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x588af757 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x588c6220 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x58940be4 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x5898b703 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x5899be86 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x58a76393 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x58c79ade alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x58cce2a7 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58dbd060 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e6f893 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x58ebc2cd netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58ecb832 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x590e03da io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x592a8445 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5935b8dc fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x593b3c2d blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5945a8ca regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x59582784 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x59597376 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x59746d29 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x599d5b3a posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59d4ee1c sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x59d6f927 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59fc771a stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x59fe70a8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x5a136c3b input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x5a143c95 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a3f2616 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5a46495d tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5a4752db iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a521a8b regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5a5c37d5 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x5a5f311e rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a80a95f devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5aa5fd74 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5acada6d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x5af1e3b9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x5afc7e37 bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x5b00b425 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b0a572e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5b1f4568 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5b210bc1 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b488e68 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x5b53b39e pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b5ebc5f led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b674761 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6da11f fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b6f39ed pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5b7ae77e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x5b7c5cc5 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf8974 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5bf26f3f pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c25419e perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x5c297a09 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c4738d8 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x5c48d1c8 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5b0336 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x5c5c7eec gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5ca6d1d1 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cacf2d5 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0fecb iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5cb23700 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x5cbd8412 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5ce14f44 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x5cf0dc0b device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d04bc3c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d06dd5f shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x5d0755f9 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d091149 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d25db57 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5d2ba0e3 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x5d3da53d pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d43881a __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x5d486f0b ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5d5d7d3b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5d637e9f watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x5d64b781 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5d64fce6 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x5d762f09 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x5d797414 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x5d8834f1 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db30783 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x5db30a0a xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x5dc1377c usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x5dc7b05d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5de58bb4 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x5de7447d __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5de80723 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x5deea6dd fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x5e052b44 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5e09b040 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e0fb666 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x5e137360 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5e155684 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e365d34 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x5e394807 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x5e43631d fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5e447a5d devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5d0e76 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5e61a8e5 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5e70dcc9 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7995b9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x5e7e05ae ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5e829e6e mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x5e964532 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x5ec410c9 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ecb6c3d kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x5ed9b60e udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x5edc309b __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x5ee141cc register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5eef7918 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5ef261db device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f12d024 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x5f1ad251 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5f2007b8 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f57d6c8 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x5f5bdbe1 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f89d23d dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5f9ca309 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x5f9d1954 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5fa12903 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fba4b7c pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fc86625 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5fd9bc8c blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x5fda707f tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5fe30a36 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x5fe34c9f pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x5febd03f kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x5ffa1ab8 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60105836 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x60289498 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x60367c91 cec_notifier_register +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 0x60475ca6 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60527df3 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x60623a88 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607e4451 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60806523 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0x608163ff crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x608d2b23 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x6091579b of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609eaf25 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ad0b50 flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x60b1ddef sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x60ca93b7 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x60d1d150 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x60d6aa9b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x611f9b63 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612f6b91 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x613948bf devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x6143761e arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x614936ca tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x614b5f9c is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x615c634a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x6168e006 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x616f8e5e seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x61777e19 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x617bf627 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618242be of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x6187c146 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x61a82259 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x61a9a9a5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61bd8b0b ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x61cccd9a power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x61d6b264 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x61d8214a sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x61db23bc wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x61f1e772 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f82edf crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x620e3757 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x620f4fc8 vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x6215cf49 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x62225937 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6242b74e devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x624c42de dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x624df51f phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6260c8bc cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x62632161 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626f87ec watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6279a9b8 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x6289f08f pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62919e8f crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x6298a552 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x62aac593 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62d065a7 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x62d67809 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x62e1cd34 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x62f482f2 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x630a8807 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x630bb7df ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x630ed6da nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6326cc58 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x632bb7d3 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x6342dae5 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x63495b9a efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x634d1157 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x634f0455 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x635315be pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d217fc yield_to +EXPORT_SYMBOL_GPL vmlinux 0x63dec52d debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x63e5040b xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x63ea4e63 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63eaa4de pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x63f7219e device_create +EXPORT_SYMBOL_GPL vmlinux 0x640714a2 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x64088863 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x640ccc08 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x640e8281 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x6413e51f crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6418ed7c usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x641b0301 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x6424e9c9 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64488518 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x64496b92 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x6451adb3 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6452d6b0 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x6461e5d1 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x64638552 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x6466c4eb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x6474b69c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x647500c2 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648760f1 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x649b5607 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x649e3979 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x64ac35cf xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x64bebe8a spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x64c92739 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64d28a25 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d7d153 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x64e0a4c9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x64ecc2b8 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x650ad430 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x651307e7 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6521a30e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x652b2b21 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6534b42a dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x653839ce dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x654dfcc3 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x655180ff device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x655d8994 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x656e27c4 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65703ac1 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x657f3680 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x658e3053 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6597ef99 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65adca52 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf56da devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x65d6660b lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x65d7ff4b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65eae613 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x65f131b6 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x660c2909 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661c33be da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x661eb6df fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x66253809 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x66305bbc of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x663434c3 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663aebbf cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x665cc7ac ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x66716ac4 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66907dc6 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66a6d109 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x66a721df subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x66a750f6 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd6b97 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x66cf9616 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x66cffa49 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dff89d __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x66e18c73 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x66e925e1 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x66edecd0 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6705df24 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x671206a4 regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x671c8e5e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x671d9b6e vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x671f3e04 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x6725d895 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6736af1a devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67591d4f dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x67731a8c exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x677e901c msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67ac77c7 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x67b91803 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x67bb4d3a usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x67beb34c dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x67c94e5b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x67cde2fd skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x67d1ecfc phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcb339 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x67e6c543 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x67e7026d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x67f92abf platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x682664fa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x683374dc xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6834f10d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x68427993 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x684ba690 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x685bb8d5 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x6869c8eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x687220f6 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x6889628f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x688d0e03 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68965193 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x68a28c01 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x68a94ab0 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68bc0af0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x68c685fd device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x68ceb5ce spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x691eb510 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x6920cde5 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6922f271 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x692398b9 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692dcb97 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x693279a0 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x693f4edf pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x694096ae serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x695513a5 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696cdc08 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69715c51 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698e5037 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x699ef9a1 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x69bc0ab4 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x69bcd2c1 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x69c37160 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x69cfdd5e perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x69db1b18 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69fc3880 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a0477b9 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a43099e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x6a45ed04 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a802826 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a968417 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a9c8224 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa423af ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6aaa02eb probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6adacf03 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x6ae86929 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x6af794d1 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x6b04eb2e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b1dd580 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6b1e31bd mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b372d32 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b5764fd spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x6b57defd tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x6b6ad412 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6b70fc30 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bbc3c83 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd571d1 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6bff5660 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x6c1b540f usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x6c32315d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3d741a ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5a5fca ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c64efab of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c66a6e3 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x6c77d0df dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x6c8bc7bb ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c922cdf fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x6ca3b796 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb0509c regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cc11b0e set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6cc32dab serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x6cd54651 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6cde0f5a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x6cf60eed bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6cfb19d0 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2eae12 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d329945 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d4a6a7e xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6d5a3ba6 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7426ae srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d869eb5 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d9b1045 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6da76fb5 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x6da7a79b pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x6daa8ef6 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6db0872c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6db51a30 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dcf1fe5 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x6dd188fb ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ddbd1f0 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6df94a96 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x6e0857e4 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x6e0ee6f4 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6e139b36 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6e238df9 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6e33934e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e50c7b9 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6e5fb599 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6e696ba8 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e698b7c power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e84618f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea49e47 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x6eb31447 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6ebb9e85 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed711a6 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6ee0d977 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6ee35197 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ee3cda4 __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6ee6b7a0 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1d0287 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x6f3b990e dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x6f491f4a iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x6f5098d5 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x6f5c8800 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6f7be756 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x6f8957df spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x6f8a9fbf edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x6f901f78 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x6f9d540b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa25014 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x6faae3fa key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x6fc7afec devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6fcc0b7c dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x6febf49d nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70225fa4 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x70242cd3 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7036c05f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x705433af regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x705f4e54 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70779209 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x708510bd rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x708bec7b spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x708c47d3 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x70a37595 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0x70a65a98 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x70adb8ed usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x70b69f6d security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70da67af __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x70efcd59 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x70effa68 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x70f0f74a acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x70f303fa phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x7107ae90 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711528c9 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x71313dcf ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7166f777 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7179a170 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x717aa88e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7181fd5b xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b2de9e devres_find +EXPORT_SYMBOL_GPL vmlinux 0x71c71b82 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x71d8da14 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71f6783b vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x71fdc3b4 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7203339f crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7207dd9d crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x721126d5 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7214e2e7 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x721ef53c get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x722b7221 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7247f119 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7249d8f3 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7261ab46 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728afef4 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x728d5780 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x729de2ca peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x72b6070c aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x72bd355f of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x72c042ff kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72daaeb4 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x72e65b16 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x72fb4b48 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7312029e hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x731b2e60 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732d2f0f acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7358562b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x73736987 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738a38d2 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x738a57c0 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x738aa7b4 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x73950cf8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x73993aa6 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x7399d37e nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c35fe2 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ebc4d1 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x73f74278 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x74049464 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x74299e5f debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x742efb95 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x743863bc vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x743a06ad blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7453c584 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x7457de38 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x745d961b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x745ff1a7 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x748c9cfb tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x74910f4d irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7494db2d serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x74997b28 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x74af45b2 of_phy_get +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 0x74dbdd8b devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x74def5ef wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74eb9d15 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x74f0094d pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x74ff4e99 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x7500a73c ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x75034d4a kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75174c53 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x751d4270 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7530018a firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7554f768 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x7556abe6 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x75641b95 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x75672a04 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x756b5d74 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759c81b7 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x75aa04d2 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x75ba3b35 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x75c15f9d gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x75c22fba security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e299ca acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x7600ff3e generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0x760cbd01 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x7616b56c raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x761b4e7b rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x76541d11 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76701bc3 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x767e91cd pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7687c453 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x76996427 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x76a56890 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x76b0b744 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dae1bd virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x76e66c75 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x76e79ab7 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f33df8 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x76fec534 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x770316dd devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771b1e7a clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772b8c15 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x77304765 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x773598ee iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x77532939 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77664af8 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x77804046 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7783946e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x778649af blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7793e4d7 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x7797c791 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x77a644a4 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x77a735fb shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77eb2fe7 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77ee23b5 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x77f10a88 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x78081fbc tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x780aec96 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7811880e path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x7819d633 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7828a6d1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x783b20ca dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7840ffb1 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x78459fcb register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x78467cac crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785f2125 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x785fe105 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x78669d16 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x7867b13b switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x786dceb9 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x787379df power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7898403d dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x78a7e1dc strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x78bc43cd regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x78ca90f5 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x78cf7d1b led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x78d91859 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78da0e88 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x78e40a92 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x78f1284d devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x79086a7c ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x79099e54 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7939b0cf of_mpc8xxx_spi_probe +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 0x794e2327 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x79683c21 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x799a5564 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x799aebb1 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x79a00f1e request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x79b12523 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x79b15555 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x79b2757f usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79d11a82 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x79d99335 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ef293a devm_of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a1a8a57 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7a29b63d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x7a2d4412 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7a2d8ca7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7a36c553 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a53ed53 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x7a5dfc6c fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7a5eae6d ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a70f11a vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a921f38 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7a970dc9 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x7aa50142 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x7aa8e3d9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7aab0e47 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7ab33ef6 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7ab4b5ab tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7ab625ec xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x7abfca43 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7aca63ee bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7adfa991 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7ae20fd8 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7af547c7 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b2556b2 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x7b496814 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7b4c9ba9 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b58dd2e ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b62cd6f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x7b632ea1 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7b6315 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7b7d1289 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0x7b7d1699 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba1c98c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7ba2387f dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x7ba72579 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bc353d8 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x7bc92847 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7bcca61f clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7bd97755 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7c15fb25 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c21d657 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c348ff9 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7c4b9071 get_device +EXPORT_SYMBOL_GPL vmlinux 0x7c4d3e8e flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c565b5f crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x7c681aba efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x7c6f7a59 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7c71c9d8 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c81e377 rdev_get_dev +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 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc3b231 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7cc61863 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd364d5 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf73ea0 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7cf7a927 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0a457e ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7d10a65f pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1e1ea2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7d4ea0a4 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7d56caed pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5efad4 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x7db0e9d5 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7db9020f device_add +EXPORT_SYMBOL_GPL vmlinux 0x7dbbc63c __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x7dda0f19 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7dded386 gpiod_put_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 0x7e194e5d nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7e2f2b9d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7e3c92bc crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7e3efe71 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7e4ba1a4 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5e11c4 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e649e82 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e7750d4 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7e798618 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7e7c7b2b ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8f3969 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7e9c3234 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb17d19 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7ebd7dfe fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7ec28228 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7edb9852 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7ee02760 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7ee1a69b ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x7ee644af ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eeb1ecc power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ef63b0b device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7f01cfa6 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7f05e4e3 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f06b070 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x7f1c4bce gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x7f268dfa __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7f36e228 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7f41c7c8 bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x7f427f98 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7f459081 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f559d2c xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x7f5a5a12 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7f5ed8ca usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7f6e4301 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f7b07e6 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9a2352 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafd2b3 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x7fb4ba62 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fcf802d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fd0116b pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7fe21512 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7ff8f69a lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x7fff009a ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8001d588 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x804e4f5e crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805e055c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x8067845a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x8068cb17 cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x806b17d2 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807a69ca trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80acd599 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x80b0b474 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80bf77e3 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80df95dd edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x80e976f4 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x80ef3add shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x81093491 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8112961d devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813620d4 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815b032d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81879172 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8189bf82 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x81906dda usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x819e7ce9 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a70964 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x81acef43 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81c25a8a dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81e1dc26 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x81fd4f79 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x82005883 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x82015242 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8241893e devres_release +EXPORT_SYMBOL_GPL vmlinux 0x827599e4 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82938da6 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x82954db2 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x82bb6450 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x82c81cc9 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x82d4cfc2 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x82d5bf07 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e2e820 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x82e3ea53 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x82f41912 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x82f42b53 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x83045acc __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x83096d8e replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x83106653 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8313e702 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x83194b28 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x8322b58c proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83611298 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x83716d94 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x83888f8a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838dbd04 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x83961625 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x839bbe32 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x83d0abd4 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x83d2d2aa sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x83fd1dc9 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842bb5ef iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843095fe regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x84329c45 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84631b1d devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x84699294 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x84701bbc do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x84708d9f ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8479a890 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x849cf4a2 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x84a294e9 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84ad6447 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x84b0a22a __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x84b2f6e0 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x84b83b45 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x84b9ddc6 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x84c4b20d crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x84ea7641 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x84fc66a4 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85162702 bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x853109c8 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x853455d4 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x85365544 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x853c6dcf pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8558f960 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x855d2122 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x855fc9f7 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x856b59fe get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x8575019d ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x859b4c2f dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85a8c9c8 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x85b1c626 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85b56086 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85ec0063 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x85f18da8 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x85f4b27a crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8600a9b1 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x8605aaf7 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x86169aeb blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x864cae0a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8651d126 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x86521873 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86607e6e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8664d71a crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867992e1 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x86866d37 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86b10b9a of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b5b4cb dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dd8216 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x86eee3a8 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x86f4f928 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f71f13 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871e39ce dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8759a21a blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x875c2e86 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8760a856 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x876bc47c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x876d0a9d inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x878c262e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8790050e virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x879e8b1e arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x87ce6a18 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x87d9870d dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87f3f530 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x87fc43a2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x87fc4e45 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x88043677 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x88066be2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x880fc9ef mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x881313e6 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x881f2f80 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8832d1aa usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x884521e1 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88931dd6 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88be4c2a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x88c23281 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x88da5aae tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8905b357 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8908bd49 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x8908d7b1 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f68cc thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x892f74de tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89465db3 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8951d161 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x895e02af devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x89621dfe cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x89696218 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x89721a61 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x897af088 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x898602a8 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x899bf477 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x899fad50 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89aedf45 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x89af4a57 fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0x89b8db28 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x89bb3fe4 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d09a9b of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x89d1a657 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89ebfd86 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x89faf7a2 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8a08f9d6 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x8a0e66ec nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x8a17972b __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a2f3115 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a49c68e set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a7416b6 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8ab23b22 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x8ab497a2 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac68049 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8ad8c228 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ae5ba75 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x8b05780b strp_done +EXPORT_SYMBOL_GPL vmlinux 0x8b111e90 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1a8f4b gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8b2454b7 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8b2526fd __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b39c711 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x8b48d4a6 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8b4bb01e otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x8b56e5b8 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8b588e02 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b702468 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x8b7b305d handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b9100b8 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x8b92f56e regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bb2fcc3 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x8bbc6466 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x8bcc08c8 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x8bd24590 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x8bd821fd noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8becef07 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c059700 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x8c1bbf83 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8c1d266f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8c2b0503 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x8c377dcd usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x8c3c2168 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c44ca4a user_update +EXPORT_SYMBOL_GPL vmlinux 0x8c46abe4 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c5ec6c1 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8c5f8aa6 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c69946e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c82381c devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8cb8ab00 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x8cbf2da8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x8cc63507 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8cce1ff9 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x8cd06ba6 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8cda5c03 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x8cdfb16d bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8cebc22a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x8cfe3133 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d0cfd95 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d1c572c cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x8d1f890a __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d21be91 cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d254fda srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8d2e42f2 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3b0104 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d6c64ac inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d845add __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x8d86eb89 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d931b91 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8d9edb19 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8db54855 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dd884b6 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x8ddca034 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8de60de8 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x8de8e518 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8deb69c7 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8deb6ada of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x8def2a6a dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x8df82a65 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x8dfbc8a7 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8e132723 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8e1c540b fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e534ddc pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8e59e777 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e5ee61d ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8e636012 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x8e6e06d6 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa102 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e944571 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8ea60957 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8ea812a6 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8eb42b95 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8eb8b92c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x8eba6e47 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x8ed07e14 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x8ed9ca8e ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x8edcae5e irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ee8c446 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8eef7bc8 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8ef76645 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x8f018b70 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f19a389 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f33c353 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f4a2a3d mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x8f6a15aa nf_route +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f764d55 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f801d8d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f864348 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x8f8c575b pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x8fa52902 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8fa538d9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8fbbc499 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x8fbc068c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x8fc4ad3f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8feac1a1 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x8fec7b65 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x8ff762aa proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x90007e2c device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x9007d972 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x90103770 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x90334e27 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903cd222 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x90428716 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90646b96 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9064ea10 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906bd17e blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x9081b5db btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x908f7372 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90920f99 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x90a3c17c cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x90a87aa2 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x90aec6f3 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x90b693c5 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90dcb323 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x90e1d734 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x90f3973a of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x90fc71ce nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x910233da iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x9111cd16 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x9113642d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x91158346 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x913a5892 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x914885be strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x91506c7f devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x9163fd47 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x918d1eba unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x919425fd pv_ops +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91a0162d __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x91a3d57e gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91b02767 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c8b5b5 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x91d28a08 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9215c17a gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9226cbdc posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x92418498 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9280d613 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9283d40a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9289799a pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x92ba331c disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d55b5c save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0x92d8e56f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92ed8d8f bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x93074838 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931580d7 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9318586c clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x9328610c phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x932f078d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9346d9c1 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x935964ce linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x9395c979 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x93a56bba efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x93ce0fa6 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x93cfeff8 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93df306f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x93e87f7a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93e9578e iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93fadddf proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x93fe793a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942a9ec9 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943a769a get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94499430 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9468681a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x948590c6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x948ff616 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a7a937 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x94abff7e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x94e60b1f qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e8c1a8 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f968a4 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x94fef886 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950f8e12 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952d9f33 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x953672e8 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x953d3dd5 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95476d18 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x954d303f iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x955ac281 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x957b7bb7 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x958a9a35 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95949640 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x959d26b4 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b26353 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95cbeb58 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x95d079f2 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x95d97726 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f1825f sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x95f487f3 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x96244ddf dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963d42aa __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x96439f12 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x967b0493 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x967b5761 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x96890c51 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969c460c rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x96f075cc __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9700f944 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x971014fa fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971da5e7 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x971f2a09 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x97255d5d setfl +EXPORT_SYMBOL_GPL vmlinux 0x973599ee lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9744638e rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x974c54db tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x975160a4 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9755d0d4 mmput +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x977631e9 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x978e1d8e xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x9790b6b1 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x97924d74 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x97997a88 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x97c7ad97 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x97cff547 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97deb47d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x9801b928 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x980822c7 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x981719d6 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x982e1446 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x982fe418 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98460f62 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x9847ad08 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9859d5cf devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x986d7171 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x98725263 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9881371d bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x98a32195 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x98c3425a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x98cb06d8 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x98cb8bcf __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x98e31c67 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x98e74d9d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x98f56345 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x99067f8b badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x990b4fcf __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x99133482 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x99237833 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x992637a1 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x9929b87d dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x9938902a ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x993bc05a kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9955fefb unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x995ac873 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x995acdf1 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9969ff7c iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x996dc362 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x9975a87d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f194f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x99a15e2b devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99a7704f __class_register +EXPORT_SYMBOL_GPL vmlinux 0x99ac918f rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x99b35eb5 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x99b41e20 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x99c2cfb8 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x99c80f3a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e793f2 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x99ecdee3 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0e3a4b fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x9a0e7586 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a17d692 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a6e6114 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9a7bdfde dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x9aa91df3 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x9aba1f68 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad1c401 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ad79d7d device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x9ae4191f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af7d676 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x9afa31ec power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x9afc00ce da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b129d10 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x9b1ba02e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x9b4cae90 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5011a5 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b5064ec dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b57e673 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b6f5503 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9b776e33 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x9b816885 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b89fd14 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9b8acad4 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b976552 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba3d36b cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9bcf8121 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9bd1c32f led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c0f2c11 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x9c1fec4b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x9c2602f9 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c3ca173 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x9c3fefbb dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x9c779dce crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c808ef0 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x9c8ec644 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c8ef37d sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c93c259 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9caab9ef acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdb4a50 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9ce1c6dc pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf6bc41 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x9cff4d1a regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9d04b3d1 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1507ba virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9d17fb7c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9d28aec7 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9d4a0231 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x9d65cc2c ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9d6a4b79 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x9d6d904c i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x9d72788e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x9d74eb83 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x9d9044da vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9dbc843f rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc4b735 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x9dc9a2d8 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x9ddcc88c virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x9df4a1b4 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9df82dff xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x9df9dc3f srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e01f2e4 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e13a187 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9e2200c2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e2345a4 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9e245790 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9e2729b2 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e366bc9 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e5b06b8 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e6171c3 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9e68b3a9 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9e6d7d55 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9e7289f0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9e78a94f cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x9e7c79bd usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x9e9258cd rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e92d747 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9e937d27 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9e948eee rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9e9dc5ca report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x9ecad2be fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed776b5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9ed8b2b4 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x9edbb977 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ee0eca4 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9ee2a05e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9eeba1a8 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x9ef0f42e of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x9efb522b bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9f3306ee ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f4bd0c1 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f5a92d4 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x9f5e1fb7 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x9f62e68a dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x9f8e6d62 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x9f9ecc59 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9fbbea06 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc9b50e nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x9fc9c5a4 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0062fff nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa008e9a1 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01c20d8 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa031b372 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa057afde crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa08369cf spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xa08932df crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa08a084e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa08e19b5 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xa0910c11 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa0957b9b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa0af58d3 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa0b01ab8 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xa0b4ddc6 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xa0c6befa hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d5a4a8 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa0e1bf58 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa0e61ca1 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xa0f3d5ae bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xa0fadaa1 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa0ffa054 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xa1002ae2 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa10812ec sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xa10e8e2a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa10ecae1 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa141424e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xa1503701 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa15358ae ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cce7fa platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2217cb8 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xa230ce90 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2533230 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2693e93 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26de8da edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa26e7c89 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xa2702a32 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xa277420d tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa27b0c25 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xa2819a44 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa289e1a1 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xa294c47b trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xa2abda49 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xa2ad003d crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xa2c74331 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xa2d94c77 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa2fc48c4 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa32bc91e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa32bf904 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xa32d9fbd device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa37a23e4 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3860b22 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa38f09db flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc457e sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa3c447aa devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3e6d187 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f93cbe vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa3ff068f devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4075245 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa412fcff devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa4131850 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa416ec1e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa4288cf9 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa4304a51 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa4403131 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44b9239 put_device +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa47b6394 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa484f42c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa4c63725 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4d761d4 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xa4dbde04 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa4e701b0 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa50335f4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xa504c8dd bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xa5164f0b fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xa516c7ca debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa521c4a5 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa524c137 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa529d82d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa529d84e __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a205e nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa562b5c4 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa56333b6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5761bd1 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa58e2bf5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xa58e763e skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xa5b6196d genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c27f90 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d83882 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa5da3ea8 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xa5e9f9bf acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xa5ef6992 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f587c9 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xa5fd2519 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa62840dc usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa6533fb1 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xa6631248 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa6840205 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xa6a5963b subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa6ac9120 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b0fa48 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c6c48f __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa708b9d1 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa72b3b5d inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xa72c84d9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa74e05b4 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa750505e ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xa7538a97 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xa76487cb ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xa7673c02 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa76dd04a devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xa772ea28 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xa7761c11 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa7903e00 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7968597 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xa79a7b06 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa7adb632 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa7b89470 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xa7c699d1 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xa7d70c67 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa7dd7bb5 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7ed7888 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa7fd748a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8071a6b vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa8161a5f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa81b75b8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xa8269fb4 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa82d0580 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa8316eaa fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xa83505c6 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa8452b82 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85aa943 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa860726c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xa8675181 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa874fe6d balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa87b1020 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa8895c8c bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa8a6b2f5 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa8ae1065 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8bcea07 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa8bd92f7 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xa8bf9ce1 xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0xa8e6f1ca fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xa8e8d0cd crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa8e91d59 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa8f2744b devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa8f90ef1 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xa9003bc7 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xa90074d4 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa9078c56 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93d6dd4 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa95d8ef5 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa96010e0 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa96bb71b device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa971e3c4 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xa993e3a0 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xa9985bc5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9b3a980 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xa9b3cc77 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa9bc8b74 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9c0942d irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xa9dd43a3 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e429d0 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa9ed9277 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa9f9be87 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa9fa4a49 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xa9fd8c78 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xaa1f8c9c check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2549ea cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0xaa28f959 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xaa2cbef2 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xaa2d3c00 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xaa334783 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa42998c acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xaa5d1ebc __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xaa657f6b blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xaa683ae3 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6ceef7 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xaa915c97 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xaa97c46b task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xaa98c948 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xaa9bddd8 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xaaa5b676 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac522b8 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xaad4f216 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xaad5b319 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab00d0e4 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xab06d2ef usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xab0e913d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab104f3f of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xab1ebd1e __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xab29fe1c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xab37d1ee nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab4ac5c9 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xab541808 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xab5652b9 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xab5f6a95 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xab63f3a9 cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab819cf9 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xab98ea6e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcf9565 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xabd3eb09 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabe26c8a ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xabeda0fa show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xac0ef386 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xac1a1a98 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xac1a61a1 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xac21cb31 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xac49f3d8 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xac535954 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0xac6611d8 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xac68953c extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xac9cc42a cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xaca145b9 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xaca348a6 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xacb4174e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc7fc27 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xacdba502 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xacffe03c usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xad0de7a0 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5ebb11 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad85c0f7 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada39ee9 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xadb3d9af platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xadb82bf6 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xadc0d411 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xadd92bca irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xade6b114 cec_pin_changed +EXPORT_SYMBOL_GPL vmlinux 0xade7faae inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xadeb03bc ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xadf6702c __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae01279a skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0c6f0c bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae0fc3e9 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2ce97e ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae317e4c crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4305d0 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xae4dc015 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7a10ca __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae88e9b4 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xae8a1f82 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xae99b8c8 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xae9d996f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xaeb12315 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xaec04177 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xaecdaf68 clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xaedf96bf lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeff9f70 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf14321b dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3b8202 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf518bff ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaf5c265e of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xaf5c55d2 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xaf6610d6 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf83635f i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xafa86a1d pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafde4ef7 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xaffa3c58 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xb01055dd find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0269fd8 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb031b49c pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0xb0437cc3 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xb050b3ba dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xb053817d fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xb0725eee relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a0dc2 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xb07b92a3 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0a8dfa2 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xb0a986ea dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb0acadc5 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xb0b59f1b devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cb0d50 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xb0cbe503 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0d071cb tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ed0e6c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb0f89226 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xb10bd556 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb10c57d8 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1303c94 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb133b02e devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb15d912b of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xb15dd58a acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xb15eec93 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb16170a9 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1b2acdd regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0xb1badc18 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d245fd pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xb1da783e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1de40dc xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xb1e1b6c7 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e6ad1a metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb1fa3df6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb225fc7e usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xb231270c cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24d6d1b pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xb2557171 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb269127c blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a2b95f uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xb2b62a7d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb2c95066 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e9229c irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb2ff2c79 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb312d745 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xb31fec24 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xb3216fdc console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb3237403 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb33469da perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3351c6c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb34a523e mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0xb350a158 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xb351c845 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xb3692d81 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb36c5c25 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb3709bb8 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb379e893 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb392084d fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0xb39626ca dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xb39f927f fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb3a33975 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb3c72e65 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0xb3e35230 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb3ee2bea fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xb3fefb2d xhci_mtk_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb410a04e spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb41597e6 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb435214a regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4404c1a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb44c816d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb45a42ce pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb4743f39 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xb482a415 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xb488d196 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb4a68ca0 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb4ab914b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd6de7 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4cbd4b6 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xb4d6d1c5 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xb4e547e4 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xb4e96b40 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f21892 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xb4f2899b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6bb6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xb501a033 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5082f5d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb50c2bfd irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb50c371c regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb50fd89b gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb514fa03 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xb51dd973 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52447d6 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb52709ae tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xb53530b7 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xb536c222 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb5430add devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb55a99a2 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb561a3c1 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb568d49b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb56d51b9 update_time +EXPORT_SYMBOL_GPL vmlinux 0xb57b69b8 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xb5858ab4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb596d7c7 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5adc5b7 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xb5b79eec ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xb5c65ab1 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb5e6e102 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb5ed48c8 bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5edc3f9 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb60498ed vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xb605aeff hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb60c1411 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xb618acf7 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62b654f crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb63acb97 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xb63b3317 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xb6401e3f phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb640e4a2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb6480287 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xb6481bdc usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xb65cf91d usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xb671231c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6a23cff gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb6a6a81f devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb6aa82f5 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xb6acb755 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6b095b1 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb6b638c7 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb6d68af5 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xb6d71e81 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb6db53b6 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7019851 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xb702838b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xb710c19e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb736f2a5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74a08d7 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb7710c50 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb774d6f8 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb78b6af1 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb79ea67f wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xb7a0c23d key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb7c69766 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cf9f83 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb7e119a9 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb80b6873 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb8145f0e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xb820c4a3 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb831019d led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb832ea0a blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xb83519b9 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84767f4 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb85d1958 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb86b5211 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xb86c364b clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb86ebfe4 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb86f0ee5 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xb86f1d75 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xb8763f10 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb87c3c31 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89c4054 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a21f7e nl_table +EXPORT_SYMBOL_GPL vmlinux 0xb8b5fdbf crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb8b8ae3b __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e5d9dd smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb8e788ae fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f42bc1 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xb9016fbc tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91b2f45 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb92ae837 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb937978a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb93b9d1a usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb93d3d71 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xb95be0f2 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xb9628406 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb970ac7b ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xb97be2f7 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xb993fb7e gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb99a2a65 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb9a04538 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb9a13c36 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb9b2ee37 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bd2615 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f89246 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xba03d425 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xba0ee550 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xba148697 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xba1f9337 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xba288112 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba552c5d crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xba56cc0b clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xba5babb8 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xba5f9657 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xba781938 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xba837b9e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xbaa3b2e9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xbaa47f27 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xbaa61467 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabda802 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xbac7bcc2 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbad33510 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xbadd9b4f zynqmp_pm_get_eemi_ops +EXPORT_SYMBOL_GPL vmlinux 0xbae75722 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbaecc77c cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb1a6d72 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xbb223cab regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbb28981c __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbb2d5d00 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xbb5a3434 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xbb5fd55b pci_reset_pri +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 0xbb7e0da2 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbbcf07b1 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xbbd47a81 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xbbeef2f0 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbbf7c3ce devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xbc01ac4c pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc0371d2 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xbc2c3afc shake_page +EXPORT_SYMBOL_GPL vmlinux 0xbc34aa0c efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xbc36199d __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xbc68333b ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6dd069 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xbc6eb74e bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xbc70e3ed md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xbc760da6 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc7fced0 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbc898bac xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca53e63 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc0acfb sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcce998c __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdc3386 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcee9120 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd0eda45 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbd167675 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xbd27302a da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xbd3c3a09 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5591d1 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd68d389 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xbd74c9d0 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbd7dda41 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xbd82020b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xbd9c3e22 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xbda3eafe bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xbda6af23 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xbda9415a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbdb77d4f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xbdbe18ea extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbdc797de posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd50cf7 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xbdda4064 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xbde06bc7 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xbde2b8be i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xbdf20c16 crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbdf7d70a __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbe024a65 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe477dce inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe71077a tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xbe8abdfb gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb6350b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbeb7bc75 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbebbfc97 mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0xbebec12d debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbec6606f sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbed7b619 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xbee726a5 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xbef1f4fc of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xbef27695 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbf01a915 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf030429 direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf281987 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xbf299ed0 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf3613e3 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xbf497d41 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0xbf537c85 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xbf5f53cc tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xbf6ced4e __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbf70c783 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf7e4283 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xbf881369 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf9bc4fc usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbfa3850a ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xbfab3945 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfb5e8b7 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xbfb75aa1 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xbfb89cb8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcf8cc5 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xbfd40606 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xbfe115dd devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe607c5 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbfe74eb3 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc0009088 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xc007b8d1 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xc018f3ca lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc01e3d42 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc023ee70 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc025e5a7 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc03015c8 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xc054dbf2 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc05a7d15 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc06f3871 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xc06fb82b pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xc071855b rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xc0746663 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc076ab3e iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc07856e6 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc086d255 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xc08b94ab __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc08e3b39 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc09d0783 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xc09e9292 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xc0a5f039 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ac4f4a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xc0bf91c6 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xc0cc01ab blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc0d598af of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e3db49 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0e7eca4 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xc0e9a476 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1026176 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc124953a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xc12e73b1 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1416d80 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xc15f86aa phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xc1667fe4 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc167506e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc16c5211 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17222c9 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc191a5ff regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xc1934d12 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc1968049 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xc198ba77 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc1b43f92 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xc1b5ba83 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xc1bf762a crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xc1c2e44f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc1c6a6d5 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0xc1dd5316 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1ecca7e ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xc1f60b4c crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xc20e762b pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24d0e26 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xc25c92cb skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc25fbb58 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc2751381 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2868030 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc290250d of_css +EXPORT_SYMBOL_GPL vmlinux 0xc29ff5a0 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b3bf4c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c958a0 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xc2d62a89 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2d6e0e5 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e0aa32 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xc2f6ae58 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xc30c6837 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xc3142e7d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xc31f73a2 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc338c87d ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xc3394e5d xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xc33c15a7 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc341600e kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3622f9d percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc363b7a2 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3a62a56 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc3aa334e irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3d0e398 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xc3d7efdc udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xc3d89021 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3df2aac blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xc3dfa30e to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc3e68471 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc3e88b0d scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f6848c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc42475bb gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42831c5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc436c09d spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4480779 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46814f6 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc497f475 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a3c28f extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4aa5842 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc4ab95d0 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc4ac8eef __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc4b991be xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0xc4ccdc53 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc4d656be device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc4eae733 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4fb797f ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xc5003463 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc511197c of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc5156bf3 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc52f0388 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0xc5341f13 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xc53bd90d dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xc54ce6db clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c6d80 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xc583a480 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc590cc05 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc594d840 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc59818db devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc59942a3 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xc599e7e3 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc5a26b63 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5c4207e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xc5cd66c3 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc5d789df alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc5f54cba regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc609ce67 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xc6137198 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6375dde led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xc63c6592 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xc6479f4e battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc64b4e8c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc657c4ef nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6618793 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc664821c gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66dccb0 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc67b79a8 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc68b88a3 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xc697a973 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b65b45 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc6d044f8 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc6d2c7a5 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6dfcb5b is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc700330c gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7172f4b encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xc71c6b74 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc72e191c i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xc74ad5ea __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc75001eb crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xc7586c9d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc75cb44a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc77c69f2 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc77d4500 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7859e5b inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc788bf71 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xc7903334 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xc79413b2 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xc79f650c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b929b2 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc7be880d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e1676e virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc83201fb cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc83661f9 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc838a834 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc856e855 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85a8550 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc888c40c devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc8a55d59 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bd8393 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xc8c1f483 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc8d4e3d2 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e679d4 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8f43835 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91c83b4 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc92c90a8 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xc931877d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9404ec9 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc942c2c2 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xc953e990 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97a00c9 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc97a0984 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xc97ae13b ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc983e101 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xc9a02286 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xc9a96b0e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xc9adf17c of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xc9bbcaf2 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xc9c28265 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xc9c88f96 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xc9d69600 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9dfacc9 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f1b25d of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca05db2f devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xca09f0f4 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xca1c52f0 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xca3fd2a7 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xca40fd51 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca44518f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xca4b5b2e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xca4f3044 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xca72a670 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca80909c sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xca8141ca xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xca9fb6a6 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xcaa7d573 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcab60ad5 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac4a390 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcad17d33 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xcaf031a9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xcaf2c845 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcaf55912 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcaf7b7dc sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xcb097c1b sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb22d013 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3d2fa6 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb5f2eee xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xcb71dd75 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb7897ed pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xcb7fd201 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xcb99fccb pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xcb9e2108 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcbb3782d blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xcbcc066b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf8e9e4 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0xcbff4056 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xcbfff306 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xcc122347 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xcc236f17 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc46064c acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xcc47356b of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xcc4ec23c gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xcc5a779e addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xcc7b1323 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcc87c548 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca5e59b dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xcca6c030 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xccab533c blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xccb39910 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xccc3f140 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd45582 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccd9808e __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0d34ca nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xcd12e3a0 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4b8481 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcd5badd4 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcd6492d7 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xcd6d603f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7618a8 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd7fd57c pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0xcd7fdb87 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd8b50ce ip6_datagram_recv_ctl +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 0xcda2816f nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xcdaf86e1 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc2652b led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xcdc7f2ae pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdca5219 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0xcddd83d7 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdfc12ae __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce10f89d l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xce1bd118 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xce298689 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xce299de2 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xce314962 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xce571623 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce696ae6 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8d71fe cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xce9b4980 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceba3107 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcec8eac4 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xceda979d ncsi_unregister_dev +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 0xcef743e0 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xcf09b2d0 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xcf1cca75 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf4099f3 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcf47095d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6ae27a blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xcf7d8dde regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xcf9bb10a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xcfaa4d2b ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xcfaa761a xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xcfae6b7e pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbec3ae iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcfc15f4b rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfdf9421 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcfe5ac8d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xcfec906d irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xcff79554 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xcfffd818 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd010b714 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd029f461 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd0374261 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04213c3 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06fe460 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd07c22ec edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xd088ecba ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd08da021 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a022b8 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xd0ad87a2 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd0be7d8a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cce43e kvm_vcpu_gfn_to_hva +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 0xd0de0fe2 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xd0eab338 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xd0f2179a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd110d6c6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd1138684 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xd1329fbc i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xd137ddd1 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd13949e0 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd13ad429 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd14868c6 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd16fce8d __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd1bb447e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd1bdd539 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd1c5b562 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d93a12 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f69da2 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xd1feda4e fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xd202437b fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2130849 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd217fe8d __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd2261116 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd2342266 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd261bd65 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd276d80b fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xd27dfd21 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd28de2a5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd2935b8d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd2a7f222 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xd2afb5af mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d6aa47 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd2e1a85f fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xd2e8b72d device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2eb9022 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2ef4dab pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xd3027406 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd30b52f4 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd3108c45 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xd31cd32a virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xd32694be sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3421ce0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37cc9f5 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0xd37f0cb7 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xd3841336 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xd38dca2c clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd3963f18 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd39811d2 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xd3997334 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd39dde25 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3bfa753 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3c839b3 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xd3e19e3f hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3ea45ad acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4020d78 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd402e173 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40d6226 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xd410e87c cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xd41177fa cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd430b0e4 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd449fbd1 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46dbca2 iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0xd48de3d6 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd4920cb6 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xd4934fe8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd498df3f fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xd4a5238d platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xd4b000f1 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xd4bbcaee spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d26b1a nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xd50041f5 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd50a9c4c crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd51030ff iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd517bb31 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xd5198fd0 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd5274cdd adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd529ecc6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xd52b4cfc strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xd53125b5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54b518e tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd551bd76 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd553bc79 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56eed6c pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xd5770c3a genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xd579176a ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd5849a93 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5965061 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xd5969a70 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5b57ab3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5f03a8e xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd5f56dcb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xd62a2163 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xd6342942 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xd6377719 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd6448c61 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xd64c2e10 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd64eef0a __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65fbfc7 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd6601df6 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xd6713564 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68ba3db rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd69151f9 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd691ecd8 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd698e42d get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd69a69df shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd69ec1de free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd6b3febf devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd6b5e302 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd6bb1974 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xd6bfed27 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xd6c59ace fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd6dc21a9 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd6dc3d6a devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xd6e6b285 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xd6f51bb4 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xd6fe4c00 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd70e5b30 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd7153bf6 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd71b26b9 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd746c137 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xd74cfdcf __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd76294cf sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77ddf54 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xd783a95f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd7946ae6 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xd7a878e7 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xd7ab3264 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7bc2013 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xd7c39fff free_iova +EXPORT_SYMBOL_GPL vmlinux 0xd7c555af fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd7ca9884 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7f10c30 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd7f6d0a5 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xd806bf5d anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd818ad30 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd837383c md_run +EXPORT_SYMBOL_GPL vmlinux 0xd838ebf7 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd863f54b max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xd86c347e i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xd87abc38 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88972ae scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xd8914e42 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xd8a149a6 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8ab65f9 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd8b0610c ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xd8b1cc61 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xd8c10e4b devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd8c30cbb usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xd8c497b5 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xd8e8aad2 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd91d749e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd91edd1e rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd92fe6ec kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd933ea01 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd9349ae0 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xd939eb24 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd93b4b0a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xd93f576a rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94487ec ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xd94b93dc dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xd94d756a bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd94ef946 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd9687f61 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9717b84 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xd9a43cf2 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd9baad20 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9d5d879 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f34ce8 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda012e58 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xda01eb64 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xda15a15d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xda4e6b81 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xda5906ac __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xda72585b usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xda78aa5c shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xda7e71a4 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xda838e60 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab194b5 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac107fb regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xdacc569e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xdad0965c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xdad5ac38 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xdad6bfc9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xdae4ddd2 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xdaf1bd21 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdaf457b2 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb02fa60 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdb0377e6 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdb0ee65f dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xdb39158e bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb3d8e4e i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0xdb440bc9 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6469d4 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdb6638bc blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xdb66eda8 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdb6f289e regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdb735885 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba0583f clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdbcab89a usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdbcd9f98 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0a51c4 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc15d289 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xdc21e866 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xdc23debf dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xdc2cf628 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xdc40b2f8 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4d387d sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc79555c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc829ff4 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xdc891252 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xdc8c685a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xdc95f6bf blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcca711d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xdccd03e5 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xdcd18d2f queue_iova +EXPORT_SYMBOL_GPL vmlinux 0xdcdee973 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xdce23a83 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdce5714c devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xdce5c1d6 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xdce6e354 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xdcf4340a of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xdcf4c982 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xdcf60341 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdd06a412 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd082320 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xdd18d3c5 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd411be5 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xdd4c7695 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xdd52dd00 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdd60040f device_register +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd62d43a regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd6afd61 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd7f64f0 cpu_logical_map +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd8a84d6 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xdd9293c0 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd950863 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xdd9d7cd3 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xdda87eda gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xddaedae6 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xddb3ee53 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf3feec kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde1c1e58 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xde2d3af0 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xde4e636f dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xde596ab1 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xde5b7c94 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xde65bb65 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde73842b usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xde7da71c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xde8b5afd pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xde90bd93 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xde932a2d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdeaa02f4 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xdeaaf8c0 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xdeb04933 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdeb3e9b0 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdeb4004d dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xdec8610c fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xded0c3f6 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xded4651c relay_close +EXPORT_SYMBOL_GPL vmlinux 0xded8763b platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xdf0ed740 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf3e40c9 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf46a5c9 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf6ede34 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xdf6fd12a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfa7335e of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdfabbb37 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xdfaea93d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xdfb7b303 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xdfbaa3dd tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfcf6932 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfcf80f9 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xdfd85f73 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xdffb1b6d srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xe0040df7 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c2140 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xe00d37d3 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe00e92d1 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xe0296232 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe02ddfbe ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe037666e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe0465f9a mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xe04e5777 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe0505dfb device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe05a7ad3 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0746be3 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe077a168 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe084f128 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe091caf0 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0a3b3e1 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe0abaa97 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bc5c72 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe0c7e9c6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe0d56741 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0e36dce rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0e97078 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe0f6aa61 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0fcbc7e wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1160469 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xe1513229 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe1667834 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17aa5f0 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xe17e5220 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe19ee3be watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xe19f938b shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ab53df pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe1ac56e8 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c92a3c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xe1d3130c regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe1f4ec02 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xe1f670a4 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe1f9ba6c pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe1fd94a2 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe208f717 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe20cfb01 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe2108a5e of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe2197863 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe21e70bc rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe227e86e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2317cf6 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe232db35 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe232fc0c scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2360fe7 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xe237b4ab pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xe23ebafa hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe249bd6c serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xe2582a12 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xe2633676 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2749d91 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xe27f3adb devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe28abab9 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2931de2 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xe2aacefd of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe2b0717d iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xe2b2266a alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b69574 tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d1fcfc serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2d67d01 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2df2da8 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xe2e5ee78 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xe2ef2931 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe2f405a5 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe2fb018e devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0xe2fca837 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe2fdbb5b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30d9829 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe3249e58 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe324c2bd ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe333b921 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe342363c of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3562d52 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe3675bd4 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe38446bc bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xe3887af9 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe38b85c4 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a082c2 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe3a34743 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xe3b858b2 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3ebcdc6 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe3ebf9bd arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe3f7333c pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41db905 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe4205c3e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe431d3dd relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe437d151 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe4380cfb create_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4427205 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe44dd84f __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe450be1d each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xe4556a58 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xe458c3a8 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xe47cf982 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xe48282df xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe48bbd7b balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xe493abb7 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xe495926a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b3c066 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4bef712 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4c13f61 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f4c9ef dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xe4f7bf84 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xe4f8f87c ping_err +EXPORT_SYMBOL_GPL vmlinux 0xe501156c genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe52749dd nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xe52cbf2b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe5325a5c pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe54c6d58 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xe553786f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe5538557 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xe55578cb usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xe5779f26 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58e719c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe59c7f74 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xe5afcd57 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xe5bf8a59 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5e8bc63 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe5f01e8d fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60d08a6 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe615f8db crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64bab09 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe64e2b4a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xe65ce794 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xe661874d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe67362f8 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe68d407f pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe693aa79 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe698e24b flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xe6c4c9d7 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f41f44 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xe6f454ba pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe720d030 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe72643f4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xe7364b2b rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe73be0c9 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xe74638fd fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe76069ab cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7b4cec9 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe7b58f10 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d73795 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xe7debe47 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f34fd8 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xe7f57bbe tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7f9d51e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe808d140 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81b6586 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe81f803b nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe84a80e0 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8535371 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86a8285 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe86c7ace pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xe8892ce5 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xe8a16869 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8d72bf1 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xe8dc3d64 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe8e00e05 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe8fd3383 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xe904fe4a debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe90853a5 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xe9188d06 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xe9318c59 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe97265ef regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9759d4c ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe9845a3f ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xe98e7c25 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xe9aa9fa9 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xe9d02e90 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d62745 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe9d79d09 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xea037a7e dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xea0aa79b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea26450c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xea26a1bf sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xea26eeed clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xea2ce9ad of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xea3bacfa sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xea3f4a5b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xea4deb9a key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea69e5f7 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xea979403 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xeaa1fb19 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xeaad96f9 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xeabaf3e0 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeac23b7f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xeac698b8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xead354c3 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf34797 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xeaf7fe0f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeafe91d9 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xeb17b6f1 blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xeb206c70 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xeb35a93b devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb3cb512 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb3f8466 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb40d995 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xeb43226b led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xeb5a5926 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xeb5b9269 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xeb77a5b1 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xeb9cb755 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xeba0e994 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xebac39f5 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xebb58c1c blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xebc6c79c blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdbf2b1 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xec111429 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xec16144c md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xec1fb26d pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xec2c0e25 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xec465957 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xec492f54 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xec56d2bc tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec5e64e4 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec70c96d regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7ae62f __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xec82d726 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xec86d2b7 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xec89f22c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xec94ea15 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xeca2e081 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeca9fe40 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xecb18a62 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc80ed5 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xece1b52d add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xece1ed50 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xece4b582 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xecf32af0 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xed0747d9 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xed115f54 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xed1bcb5d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xed1e9ecc devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed3ba54d iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xed3f8d83 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xed41ece6 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xed458496 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xed52d5aa component_del +EXPORT_SYMBOL_GPL vmlinux 0xed5b8067 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0xed75df91 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xed7b7407 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed8ab006 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xed94e1ce dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xed97ca37 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xedac3fa3 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xedb0b9c6 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xedb636df nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xedc77e03 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd14f11 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xede2047b xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0xede54ce3 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee02719b irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xee06d0df rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xee0d22dc __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xee16ab1f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xee2f74b0 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee47a133 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xee49fc3d meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xee57697d devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xee5d9f2c ata_host_resume +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 0xee75254a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xee81c736 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0xee964bb7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xeec3e1c4 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0xeec40765 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee1bcff of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xeeeb46d1 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xef181806 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xef1af53e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xef1d0370 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2dee71 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xef2faea9 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef379ac2 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xef45aa70 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4d70ab split_page +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6eaca8 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xef7d2878 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xef895f80 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xef92ceb2 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef93adea efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xef979be9 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa36f77 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xefb3eeb8 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xefc0537e disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xefe46fd6 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeffdecd1 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf01fd5d3 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf0276750 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf0555a0c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf066ab12 xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06e7b33 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xf07435c6 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf07d107f shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf08050c4 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf08ebaf1 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf0a14cee kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf0a6dc96 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf0b3484e nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf0c1d469 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0c7437e extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf0d37c99 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xf0f4a7a7 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf11036bb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf115eb9f evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xf1307b72 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf1394a00 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xf145fe32 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf1471861 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf1686a38 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xf16d3fd0 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0xf17e6282 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18b88d1 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xf18c80bd kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xf19a79b3 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xf1a8847c extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1aba004 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1b005d4 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c0195a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf1d05648 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xf1d436c1 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf1e951c5 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xf1f17dea hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xf1fb823c xhci_mtk_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf206dd1d devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xf209cf9b regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf2111aa4 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf21208d0 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf216d787 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf231f42e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf23a5df9 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xf23c52a8 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xf2514e67 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf26b780e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf2838122 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf2875bde phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf288d6f2 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2a344dd srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf2a8fcef dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xf2aa380b iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xf2ac0f17 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf2b09229 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2ba80eb spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf2be0eb6 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf2d6a3dd ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xf2eabde9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf2f717b0 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf301e1bf dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xf303bc20 perf_pmu_migrate_context +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 0xf31675d0 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32bcc4f dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf355db38 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xf3565bfa phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xf35d03aa thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xf36413e0 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf3682502 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf368ac49 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xf377c0c4 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d37b6f regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xf3d44dfa ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3e45705 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf418273a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xf421339f srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf42cb84e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xf42f27b3 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf43d5ccc __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf45282f9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf45dce83 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf467b3b7 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4779776 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xf47d31f9 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xf484c658 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf48e8d25 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xf492b3e6 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xf4999d45 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c0f196 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf4c83f2c of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf4caf1e8 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf4cd37ac debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xf4d54a47 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xf4f6140c nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xf4f701a0 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf4fb999a dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50e911e copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xf51001dc of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf51fc1d7 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xf52c1c3d dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf535cd95 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xf53b9f7b pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0xf5447ea7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf54539a7 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf554f419 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5678f10 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf584c603 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xf590f330 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xf59e3a52 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xf59e6289 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0xf59fdf49 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b07df3 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5bf52c1 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xf5c9e20a wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5de6822 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5e2d421 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf60f41db qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xf611c4cb __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf637a406 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf669cc6b lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xf67736bb usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf69574aa dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf69f76e5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xf6a0811b bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6aaed2b devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf6bb4a4d pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c9228c sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xf6ca791f ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf6dbef07 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf6df3c30 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ee13a4 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6fce4ee __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf6febf9a phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xf6fed3a7 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf705377a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xf70ef843 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf71c116b acpi_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xf71ec592 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf72bbfb2 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +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 0xf7587d27 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf75a472b regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xf7682022 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf76d80f1 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7b69260 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7b6b823 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf7b984f2 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cacab4 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xf7cfe9cc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf7e4b237 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf7e5caa4 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf7e5d928 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf7f36080 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf80cc57c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8118dbb __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83e5d66 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xf8454e05 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xf846902c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf854bc94 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xf86d2476 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xf872dffa bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf87a02b2 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf88328df pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf8aa54b0 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf8b6e8db extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xf8d0b91e tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf8e0eb7a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf8e18bf0 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf8e7faa4 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f8ecce devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xf8fe2bd5 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xf90433a3 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf90f816f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf9112f81 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xf911c9b2 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xf913dbff fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf91e0643 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xf9229b16 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf9304af7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94e9eab ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95fe96e ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf9840fa7 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xf98d6088 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xf99b0407 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9adca26 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xf9bef372 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xf9d81d25 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf9d9ef67 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf9dd4f0d edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9de3e6b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf9ee8118 user_read +EXPORT_SYMBOL_GPL vmlinux 0xf9ff7b90 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xfa017443 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xfa03cdea sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xfa0a8896 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0xfa14ba0d usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfa16bcca inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1fd7df fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xfa21522d iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xfa3016be register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xfa32095b store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa42dfe5 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa45b806 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xfa4635fa devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa63878d irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xfa6634c1 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa7c82a1 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa98160a cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfaa2c7d6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xfaa55d01 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfacb0053 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae3e5cc devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb1a5757 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xfb27f094 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb33a93f wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfb3535d1 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xfb484120 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb75ccf8 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfbabc087 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xfbabee33 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfbbc4036 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbe0514 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xfbc0bd45 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xfbd31b9a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xfbdfc558 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xfbe5e406 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xfbed41d5 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xfbf84fb9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc04e037 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xfc04f75b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xfc0797e4 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xfc11011b regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfc115259 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc262bd9 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfc2ca2e5 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfc33665a devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xfc37136d skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc565564 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xfc67d73d ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc7af690 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfc8056a7 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xfc9832ea __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xfca354ed nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1642 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcf528e2 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfcfcdde0 cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0xfd0d102e gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xfd3f2de6 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xfd488db6 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xfd4d8821 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xfd527bd9 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd6672e3 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xfd6a8465 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfd6bb316 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xfd6e335c regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd782cfd cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xfd90b6e0 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xfda87c1b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xfdaa22a5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfdbcb84e wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbdc9c7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfdbfa9c3 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xfdc3935b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xfddb75d7 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfdf4ae99 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfe070b26 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xfe0b0f96 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0f3807 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe2aa43e acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe3fa6d8 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfe41fbbe virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5cc5c2 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xfe680cbf of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe700cb5 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfe70af75 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe8180fd get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xfe945121 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb0b18d gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfeb38032 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xfeb4341b tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xfec672db rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfec6e507 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xfeca2cfa xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed88346 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xfedcca54 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfedd0710 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfeee3880 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0b0fbe security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xff194008 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xff1c1000 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2bda0d __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff450611 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xff58fb14 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5b7037 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xff938410 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xff9e2655 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xffa39c44 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbece24 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xffd26db3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xffd2f601 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xffd976b2 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xffe60384 of_get_videomode +USB_STORAGE EXPORT_SYMBOL_GPL 0x16c75ea4 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x18f58349 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 0x1fd493c4 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x273036f9 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2cabd772 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2f4cffa3 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3e589d16 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x471410f5 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x55bdddf6 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x598af2f0 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d0d39c4 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x832cd8eb usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9388d40d usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96e313f6 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xabf1e5e6 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbc972b90 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc0c4cde8 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc40797fd usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcdafcea7 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd614f737 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe07432dc usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe1e54dcb usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb491729 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf3e30cba fill_inquiry_response drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/arm64/generic.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/arm64/generic.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/arm64/generic.modules @@ -0,0 +1,6003 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_exar +8250_men_mcb +8250_omap +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +a100u2w +a3d +a53-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +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_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs450 +aegis128 +aes-arm64 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +aes-neon-bs +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_brcm +ahci_ceva +ahci_mtk +ahci_mvebu +ahci_platform +ahci_qoriq +ahci_seattle +ahci_xgene +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +allegro +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc_pci +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anubis +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apds9300 +apds9802als +apds990x +apds9960 +apex +appledisplay +appletalk +appletouch +applicom +apr +aptina-pll +aqc111 +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_dsu_pmu +arm_mhu +arm_scpi +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 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +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-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axg-audio +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x-rsb +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bam_dma +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-flexrm-mailbox +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm203x +bcm2835 +bcm2835-rng +bcm2835-v4l2 +bcm2835_thermal +bcm2835_wdt +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm7038_wdt +bcm7xxx +bcm87xx +bcm_crypto_spu +bcm_iproc_adc +bcm_iproc_tsc +bcma +bcma-hcd +bcmsysport +bd6107 +bd70528-charger +bd70528-regulator +bd70528_wdt +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs-drm +bonding +bpa10x +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb-avs-cpufreq +brcmstb_nand +brcmstb_thermal +brcmutil +brd +bridge +broadcom +bsd_comp +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence-quadspi +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sdm845 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capi +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 +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-pltfrm +cdns3 +cdns3-pci-wrap +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8318 +chipone_icn8505 +chipreg +chnl_net +chromeos_tbmc +chtls +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-hi3519 +clk-hi655x +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-pwm +clk-qcom +clk-raspberrypi +clk-rk808 +clk-rpm +clk-rpmh +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-sprd +clk-twl6040 +clk-versaclock5 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobra +coda +coda-vpu +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +contec_pci_dio +cordic +core +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppc_cpufreq +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-cec +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_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_vbc +cros_kbd_led_backlight +cros_usbpd-charger +cros_usbpd_logger +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da9030_battery +da9034-ts +da903x +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 +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 +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sdm845 +dl2k +dlci +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-integrity +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 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dpaa2-console +dpaa2-ethsw +dpaa2_caam +dpot-dac +dps310 +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dumb-vga-dac +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-keystone +dwc3-meson-g12a +dwc3-of-simple +dwc3-pci +dwc3-qcom +dwmac-altr-socfpga +dwmac-dwc-qos-eth +dwmac-generic +dwmac-ipq806x +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dwmac-sun8i +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_sys +ecc +ecdh_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-mxc +ehci-platform +ehset +einj +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +emxx_udc +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +envelope-detector +epic100 +eql +erofs +error +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +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 +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +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_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +fscache +fsi-core +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dpaa2-eth +fsl-dpaa2-ptp +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mc-dpio +fsl-mph-dr-of +fsl-qdma +fsl_dpa +fsl_ifc_nand +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +ftdi-elan +ftdi_sio +ftl +ftm-quaddec +ftsteutates +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_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 +gasket +gb-audio-apbridgea +gb-audio-gb +gb-audio-manager +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-ipq806x +gcc-ipq8074 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sdm660 +gcc-sdm845 +gcc-sm8150 +gdmtty +gdmulte +gdth +gemini +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-ce +gianfar_driver +gigaset +gl518sm +gl520sm +gl620a +glink_ssr +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd70528 +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-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +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-moxtet +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-pmic-eic-sprd +gpio-raspberrypi-exp +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-sama5d2-piobu +gpio-siox +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-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-xlp +gpio-xra1403 +gpio-zynq +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpmi_nand +gpu-sched +gpucc-sdm845 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hanwang +hbmc-am654 +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd44780 +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hibmc-drm +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-rng +hisi-sfc +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hpre +hisi_powerkey +hisi_qm +hisi_sas_main +hisi_sas_v1_hw +hisi_sas_v2_hw +hisi_sas_v3_hw +hisi_sec +hisi_sec2 +hisi_thermal +hisi_uncore_ddrc_pmu +hisi_uncore_hha_pmu +hisi_uncore_l3c_pmu +hisi_uncore_pmu +hisi_zip +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns-roce-hw-v1 +hns-roce-hw-v2 +hns3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hyperbus-core +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-synquacer +i2c-taos-evm +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xgene-slimpro +i2c-xiic +i2c-xlp9xx +i3c +i3c-master-cdns +i40e +i40iw +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-core +icc-smd-rpm +ice +ice40-spi +icp +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imon +imon_raw +ims-pcu +imx-cpufreq-dt +imx-dma +imx-mailbox +imx-pcm-dma +imx-pxp +imx-rngc +imx-sdma +imx214 +imx258 +imx274 +imx2_wdt +imx319 +imx355 +imx6q-cpufreq +imx6ul_tsc +imx7d_adc +imx7ulp_wdt +imx_keypad +imx_rproc +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int51x1 +intel-xway +intel_th +intel_th_acpi +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-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 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +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 +kbtab +kcm +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kheaders +kirin-drm +kl5kusb105 +kmem +kmx61 +kobil_sct +komeda +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +kpss-xcc +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +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-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-sc27xx-bltc +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +lego_ev3_battery +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +lima +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lkkbd +llc +llc2 +llcc-sdm845 +llcc-slice +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 +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 +lpasscc-sdm845 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-encoder +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_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-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mceusb +mchp23k256 +mcp16502 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-mscc-miim +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-octeon +mdio-thunder +mdio-xgene +mdt_loader +me4000 +me_daq +mediatek-cpufreq +mediatek-drm +mediatek-drm-hdmi +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-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microtek +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlx_wdt +mlxbf-tmfifo +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_sound +most_usb +most_video +motorola-cpcap +moxa +moxtet +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi001 +msi2500 +msm +msm-vibrator +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-quadspi +mtk-rng +mtk-sd +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nand +nand_ecc +nandcore +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +netsec +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +nps_enet +ns-thermal +ns558 +ns83820 +nsh +ntb +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nuvoton-cir +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-sc27xx-efuse +nvmem_meson_efuse +nvmem_meson_mx_efuse +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sunxi_sid +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocelot_board +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +octeontx2_af +octeontx2_mbox +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +ohci-platform +omap-mailbox +omap-rng +omap4-keypad +omap_hwspinlock +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +owl-dma +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-arm-versatile +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9881c +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-kingdisplay-kd097d04 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-nec-nl8048hl11 +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-rocktech-jh057n00900 +panel-ronbo-rb070d30 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e8aa0 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panfrost +parade-ps8622 +parkbd +parman +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-pf-stub +pci-stub +pci200syn +pcie-iproc +pcie-iproc-platform +pcie-rockchip-host +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia_core +pcmcia_rsrc +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pfuze100-regulator +phantom +phonet +phram +phy-am654-serdes +phy-armada38x-comphy +phy-bcm-kona-usb2 +phy-bcm-ns-usb2 +phy-bcm-ns-usb3 +phy-bcm-ns2-usbdrd +phy-bcm-sr-pcie +phy-bcm-sr-usb +phy-berlin-sata +phy-berlin-usb +phy-brcm-usb-dvr +phy-cadence-dp +phy-cadence-sierra +phy-cpcap-usb +phy-exynos-usb2 +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi6220-usb +phy-hisi-inno-usb2 +phy-histb-combphy +phy-isp1301 +phy-mapphone-mdm6600 +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson-gxl-usb3 +phy-meson8b-usb2 +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-ocelot-serdes +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-emmc +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-sun4i-usb +phy-sun6i-mipi-dphy +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sm8150 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +ptp-qoriq +ptp_dte +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-brcmstb +pwm-cros-ec +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-ir-tx +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-sprd +pwm-sun4i +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q6adm +q6afe +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +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-pon +qcom-rng +qcom-rpmh-regulator +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink_native +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +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-qcs404 +qnoc-sdm845 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raspberrypi-ts +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-brcmstb +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-scmi +reset-ti-sci +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmtfs_mem +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-io-domain +rockchip-rga +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rocket +rohm-bd70528 +rohm-bd718x7 +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-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-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +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-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +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-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +rza_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sahara +salsa20_generic +samsung-keypad +samsung-sxgbe +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 +sbs-battery +sbs-charger +sbs-manager +sbsa_gwdt +sc16is7xx +sc2731-regulator +sc2731_charger +sc27xx-vibra +sc27xx_adc +sc27xx_fuel_gauge +sc92031 +sc9860-clk +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci +sdhci-acpi +sdhci-brcmstb +sdhci-cadence +sdhci-esdhc-imx +sdhci-iproc +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-omap +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci-sprd +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sh_veu +sha1-ce +sha2-ce +sha256-arm64 +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shark2 +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skd +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 +sm3-ce +sm3_generic +sm4-ce +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smiapp +smiapp-pll +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bcm2835 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +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-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-armada-370-db +snd-soc-audio-graph-card +snd-soc-bcm2835-i2s +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7219 +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-imx-audmix +snd-soc-imx-audmux +snd-soc-imx-es8328 +snd-soc-imx-sgtl5000 +snd-soc-imx-spdif +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +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-g12a-tohdmitx +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mtk-common +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5663 +snd-soc-sdm845 +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-spdif-rx +snd-soc-spdif-tx +snd-soc-sprd-platform +snd-soc-ssm2305 +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +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-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd9335 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-acpi +snd-sof-imx8 +snd-sof-of +snd-sof-pci +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-variax +snd-usbmidi-lib +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 +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-brcmstb-qspi +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-hisi-sfc-v3xx +spi-imx +spi-iproc-qspi +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rspi +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-sprd +spi-sprd-adi +spi-sun6i +spi-synquacer +spi-thunderx +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +spmi-pmic-arb +sprd-dma +sprd-sc27xx-spi +sprd_hwspinlock +sprd_serial +sprd_wdt +sps30 +sr-thermal +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +stratix10-rsu +stratix10-soc +stratix10-svc +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sun4i-backend +sun4i-csi +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-gpadc +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun6i-csi +sun6i-dma +sun6i_drc +sun6i_mipi_dsi +sun8i-adda-pr-regmap +sun8i-codec +sun8i-codec-analog +sun8i-drm-hdmi +sun8i-mixer +sun8i_tcon_top +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sunxi +sunxi-cir +sunxi-mmc +sunxi-rsb +sunxi_wdt +sur40 +surface3_spi +svgalib +switchtec +sx8 +sx8654 +sx9500 +sy8106a-regulator +sy8824x +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +synopsys_edac +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +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 +tc358764 +tc358767 +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_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 +tea +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 +tgr192 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +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-ads7950 +ti-ads8344 +ti-ads8688 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-sn65dsi86 +ti-tfp410 +ti-tlc4541 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_sci_pm_domains +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc_core +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs-qcom +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +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_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vc4 +vcan +vchiq +vcnl4000 +vcnl4035 +vctrl-regulator +veml6070 +venus-core +venus-dec +venus-enc +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_mdev +vfio_platform_bcmflexrm +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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-sdm845 +videodev +vim2m +vimc +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wcnss_ctrl +wd719x +wdat_wdt +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-enet-v2 +xgene-hwmon +xgene-rng +xgene_edac +xhci-histb +xhci-mtk +xhci-plat-hcd +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_can +xilinx_dma +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xilinxfb +xillybus_core +xillybus_of +xillybus_pcie +xircom_cb +xlnx_vcu +xor +xor-neon +xpad +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 +yealink +yellowfin +yenta_socket +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zunicode +zx-tdm +zynqmp-fpga +zynqmp_dma only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/arm64/generic.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/arm64/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic @@ -0,0 +1,23075 @@ +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x45882973 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x9dacdad2 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x87458bab crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x8b8f0206 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xcaa434f3 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xce70aa5d crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd7f67fd2 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xd9093883 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x5f700f1e crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x9a0cf465 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xafc8a1df crypto_sha3_init +EXPORT_SYMBOL crypto/sm3_generic 0x316cbc1b crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x62661b98 crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x8b01d2f5 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xc4291217 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xe5929c13 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 0x0da81c3a paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x27f65003 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x30107d1f pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x327da940 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x382d5f73 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x49fb5fe9 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x69dd92f7 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x89fa4a36 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8c7433c0 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x8e771a82 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa2ec09c5 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb4a9afd7 pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb9524733 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xa373b8d8 rsi_bt_ops +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x029a7d8b ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x312f64b9 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5c7fd0e0 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xffc132da ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa5a1168d kcs_bmc_alloc +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc8e605b7 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0a29e4e0 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x346dc86c st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa974f8e3 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd46c04d1 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x336612cb xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x94728a9f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd22b67b8 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x25438bea atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6b341658 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd3b3f73f atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0b232c40 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x236d6cd9 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3ed4a752 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x66342f79 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8a760b1c gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x46efe449 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4b74fe69 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4ead8e70 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x6de99a64 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x756131a7 cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86089940 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x893ab046 cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x8a8c929e cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa2ea5326 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa970bc2f cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xbef6ab16 cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xc6c7d14b cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xe05ab546 cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x686d05f8 cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x9dc00876 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x875d0abe caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04b597c1 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bbdbbfd fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x284efe32 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ecab222 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x303d826b fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x38b0d78f fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b7350cd fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x419df6c3 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49e21f03 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x760826f6 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7828f752 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x854f5321 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c3428cb fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x970042be fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ed124b8 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0cc719f fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa206af62 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8f7d282 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc21c94c2 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf10d9c9 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0d737e1 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdea6b836 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef7bdbe6 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf155ac99 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe80de66 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xffd4c9f3 fw_iso_resource_manage +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000e3ca1 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00702890 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008ce68a drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x014f7047 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d14c57 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f809ac drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0308ccae drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0394c483 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04202bf2 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04378ca8 drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04cda855 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d6ebc9 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a90e39 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x066b76d1 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08638a90 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091281fc drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x099704ea drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09bdde4b __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b814c07 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c13a52a drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9d2920 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f34ef55 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1043958b drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10854bba drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110d470a drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x118dcc96 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cbe762 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d3e918 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c8f773 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163a5e4d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16a52bca drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18622d50 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1910ad2d drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1918ad73 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ef0f31 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a43ca27 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab702be drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b166f45 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b40aa1d drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1beb3ca5 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c46bcf9 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c57cf6b drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cbbbc7f drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ceddeed drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d271834 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e29d599 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb66102 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203f2d91 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d39f63 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f64424 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225c3b60 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228eeb5e drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23bfe2da drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246e2a6c drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2680a080 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2769eae2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2790e204 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d23c3f drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28973f2a drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a40cea drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a6c636a drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa34f59 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b46f23d drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b74677f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb210ea drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c28d73e drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c901d8a drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4fe671 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5be1b9 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f395b12 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fbef178 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x307ebaed drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d101ab drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d5356b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ebb38c drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3125111e drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31db5b1e drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3224f8e4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326d41c9 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c04437 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333a7f1c drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337ef7d3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34e2b1b3 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34efa941 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36dbcbcb drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37620838 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39e4c00f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a12f42f drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a5eff57 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a95f652 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b545204 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc595b6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dcb72f6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e5295d6 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b20e7e drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4125ad06 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x417e4e3d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42686840 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42701532 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42bc3bc0 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d0efad drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43eaf058 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4694ae76 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e9b181 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x473ce010 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f663ad drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fbf238 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4921a0be drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a283cdb drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a57f58c drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbdb33b drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c59d432 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da50a30 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a91504 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52bda13e drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53f76702 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53fc350a drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562b32bf drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57236f1e drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585fe58c drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a56dda8 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a7ae31f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0acc3b drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b36555e drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4e2a4d drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b521588 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b591d79 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd3e5d7 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d26a37e drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db25ea9 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe36c9f drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61354e02 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d35e8d drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x625b3d7f drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62bfb812 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x631e515f drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6322dac1 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6465f692 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b6ecaa drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65bed795 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x661be8e8 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x662c5096 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66694e9f drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6745e1dc drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69156b9a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692f6796 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a821d84 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc742a5 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c145551 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c73599d drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c99913d drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd6e7b3 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd52f55 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de604c9 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e55f2a7 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9bfc74 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f994c76 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702326e1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7088c131 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71b65f60 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7262a3f0 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72734db1 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b20ba0 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73683326 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a01324 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x743a73c1 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74696750 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7540099f drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7551b99e drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x760e7e59 drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764d88ab drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771ca51b drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77411e2d drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b4035c drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x785aa1f1 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7935a028 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x793d915c drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6df049 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c41ada4 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7d5283 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ccba5d7 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf0c35e drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7daee766 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db84c15 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef4327c drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd2d00a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80bad475 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8125407b drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8160cae9 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81918b8a drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8225fb44 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8323030d drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b26648 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b811e8 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840667fe drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84821280 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84aa298f drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8728709b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8744156f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f5bc5d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f62506 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8814e0d6 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a239fee drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a75a1ed drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aae8062 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb3960e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bc952e3 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c341087 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9121e4 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d94926c drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da2c636 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8ec631 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e483a9 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9294d67c drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f7e9eb drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ae1e9f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9963dd8b drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a35e526 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a57a123 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b7542e1 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd9c546 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0330bf drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ddd07fa drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef2e3ec drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b2617d drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa213e9a7 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa219ecfd drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31e9ae9 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa365b157 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36c8670 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38949c5 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4effb96 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa553a691 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa590916f drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa654af37 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a397ef drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa71b834d drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa752df28 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75e488a of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80cbbe1 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e1a35e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9be286b drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb1e22 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacdd5858 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3af717 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4b8372 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafadc9e1 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb168fcd9 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17d249d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18e7348 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2fba94a drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5621a42 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6dda371 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb874880b drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ad23a1 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93c224e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb988553f drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f00b4d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb791eeb drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc039539 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce14e5e drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6cb6a0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf1d34e7 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf313716 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc037815b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a50ad4 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc323e441 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc358d013 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c01339 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc45aea59 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4db416b drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55d920a drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce9af3 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64876b3 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6954c73 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75b6681 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c42bcf drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e2727f drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb606086 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6d3752 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbf8a055 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc2f8a24 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3fba4a drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc4c11dd drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccba14cd drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9f8245 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f6f3c1 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd103de23 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2215993 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd23afd99 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3245a55 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ab4ac7 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd574bf22 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd74cd41a drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd831b0c5 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8aed4a8 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b25bc0 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f43e29 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda2e90de drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda449b62 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab5a31c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad8ca01 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf3d09a drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb62dbe2 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde5c9a86 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff6a605 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b72401 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe122fbdf drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe37c8b9a drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c44e4c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ed0b7b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41b86db drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe459cbde drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ec5527 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51552eb drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65f756f drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85830b6 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea66ebdb drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae73cef drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebda55de drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb64d53 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedabdac4 drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb0486e drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede18eed drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed21306 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef220cd0 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01f44f6 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf158fb04 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf19eb242 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b09c11 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22c4238 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23f7fbc drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf244b8fd drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31b70ab drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf38d704f drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf40e7acd drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4384ffb drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c664ec drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf717ef43 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b3cc18 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf85e23e0 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9af9f06 drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9bd426f drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa182043 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa233559 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa26f10b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2eeaff drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaed45cc drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb326cf0 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4358ee drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb5147ed drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb83d96b drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbaa5bbb drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfccc2025 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8fd547 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe364d45 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff85adf9 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff8a2e83 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb2c8b9 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01a31593 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x041f2f64 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04ffca96 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0582b8b1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06239bb0 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07828236 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0803417e drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08600b52 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e9259d __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a18ca55 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be39a85 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fcb540b drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115d444a drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12c3cb23 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1878c257 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d182b2 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a58ac36 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b7c4c8d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e66f8cc drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20843d45 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x228c2dad drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24867fe7 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2587ca3b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f098b6 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f4eda8 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29984e2e drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b4e948d drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6680df drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d73f908 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f64ed5f drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x302129b7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30c28fe3 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x310132f5 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32a35b45 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3318f5fe drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x332ce207 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a5ee7e6 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a716585 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3734e0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b4dfb4b drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b75b300 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bb8f0a8 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e9c487a drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41e520e8 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420b0be0 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42dc6fe0 drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4429f654 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44931c6d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45bf5fc8 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ff1279 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4846a435 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c8a2d9 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b1b8811 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b66730e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd21880 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cffa600 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4df0d220 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1fd2e0 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51a2a08c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c9e1de drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5463231b drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57adc809 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58816dd3 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58dc2d26 drm_atomic_helper_crtc_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 0x5d079993 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5db43f4e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e502fac drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x660daab0 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ec19b9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6895d377 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f12cca drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aa9881b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c1e3edc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cbf3b16 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7017bbbd drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7090f229 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71422b79 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72d9bddc drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730667c5 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74560ef2 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x760d0abd drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7742f5bb drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b09d73 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7809fbd9 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ab3e5b9 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b4874c1 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d62c69d drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dd1ca77 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e16b729 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x834c3aef drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8434044a drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8527387b drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85776f57 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894551e2 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aef90c6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aefe3f8 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b6cb4a9 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8daace12 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd0ae56 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e5f6841 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920d3776 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x943b6882 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x949491d0 drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96934c1d __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9723b32c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9865e2c1 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a1be246 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a237060 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c75966a drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d2e08ab drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db12b71 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa040cb1b drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa126990e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa14c383f drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1aa7bdd drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1bc1567 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2473551 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5cdc0c0 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8db3708 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa94a6995 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e3ecf7 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa536881 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa786e55 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6b5ffc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae39e67c drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf9b3fcf drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d119d5 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb23d8557 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2a8f42f drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34ed9c7 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3849fb6 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d75020 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb524c108 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba7563f0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba0c252 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf0ee40 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf0afd7b drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1257d6 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf46b866 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0a2b406 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0a50ac9 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0a8851b drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2b1235c drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc49c77fe drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5670a53 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc625c786 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc636edd4 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc773c1bd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81d3c86 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc869e802 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc899be9f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd26d258 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1fe604 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe0c7af drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcff6a915 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd049ecf6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0bb930a drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b1996c drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f838e8 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4087a00 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd699806f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6c8ea55 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd750fe4d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd974c5e5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda5256aa drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbac04ad drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc5c27ff drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc99faed drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcdd2cf0 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2106479 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2420825 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28b8e28 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29472b9 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b31fee drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31bd6a7 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe322d714 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe333cc26 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3617d6c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3b8c3a0 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5692f2c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5dd3f14 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6c28584 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8124a66 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea6176f3 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec2d083e drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee54f020 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0504fa6 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0aa7aa1 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2832fb9 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b75286 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3402d69 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf63c0224 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8bd5e2d drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb503d3e drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe0171e8 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0db9b174 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4409501b mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78e157ff mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e9e6477 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x82d8b714 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9d553dd9 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9e32920b mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaf33b0a5 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb834c40a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc42b0002 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcbcebe4f mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcea3ec27 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd3c351f8 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdba1b3f8 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdde0b47a mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7ae35b3 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xecd6d8c1 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff7c0063 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x04bf1a89 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0a9baeca drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x148c5566 drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1dc9584e drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1eb4e530 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1f896a5c drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x211fe4d6 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2ed4167a drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3b0e7d01 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a394f1e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x507a276d drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5af6295d drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x711a1e5f drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x77c5ee3a drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb12aee55 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb9f8e533 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc1529b5f drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd3b32ea6 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9cbe3f1 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfbeebace drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x3f9e3e28 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x054710aa drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e3394c3 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1c7fc718 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2191a428 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21e356fa drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4acb8dce drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bd87809 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x523b54bd drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e41d60b drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f21ae94 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6d4546b2 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c8df0f9 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9e25a10b drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa1b7de39 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb61d6739 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc10d7b58 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd9ad5bb1 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef8fa7b9 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf481d713 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x034adc7c ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09bc924f ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b56484b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18d2602c ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x191ed1b7 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d96c73c ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20a36491 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21fc6e83 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29b6730b ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29e2b2cb ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e7e16a3 ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fc4f6c3 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x305e309b ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3118c760 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35292f21 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b4d222d ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b960ce6 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42056528 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x495aec7a ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49968f3c ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a74a852 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50beb078 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5581874e ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f78d1e2 ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6484f91a ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x657b5dfc ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cb95631 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74114ed8 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74b67278 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74cb72c2 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d3cec1b ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x808a9113 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x815c81ce ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82f5323b ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90f08af1 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96a88376 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x981249d7 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d2ac227 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ef77af7 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa17d38ea ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa422b9c1 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8cb01d0 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac3b7503 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaebda39c ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf46726f ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba4bd39c ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba5a3dc8 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc32a6cb6 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3a59c08 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57e2afc ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd84cee35 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda593ce7 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc59df6e ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf04428d ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe108a89d ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe14987b9 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe859252e ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec74858b ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef59154a ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf07c4f66 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf33cea41 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8aaab81 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfaa90502 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb706847 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0bcfe7a2 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f173ac3 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x12cfb2ef host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2e8fdb75 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3675214f host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a0aeba8 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3aad063b host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x45a6741e host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4919227c host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5114acfd host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d7099c4 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5f8aee5f host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6be54a79 host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c22f4e8 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89e68ee4 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b90bdb3 host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x917b1aee host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa370389f host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb02bf169 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb6a33fdb host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbfa2d716 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc81b5157 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcb2eb38b host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcc2dd8ee host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce3cd60d host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd4bdf074 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe77ae94b tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xef12680e host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/hid/hid 0xeb277d40 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x1fede531 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x12926407 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x27c0dbfb i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x34ae2a06 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3c131100 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8a0ad61c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9ff025e1 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x3576a91c kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x792a8f81 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x7c2f8618 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1272d999 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x12864737 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25d98c30 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x34d8422e mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3aa7bcce mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4224319d mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x47de1a71 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49b55c2a mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a69d5c6 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96f9ec83 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9e25e14d mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9f425a52 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa2da8657 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc8015287 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd7ec1c93 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdad67ac9 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x97edd118 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe61e287c st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfcbf4b8a st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x0c3d4937 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x60101a30 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6c579cec iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7677858f devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8121a360 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xee3d6944 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xc0a1684e bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1b794304 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3705d39f hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5a0e2fa2 hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5ea8f54b hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5ef5e9fa hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x728dab76 hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xccf445f0 hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdd0d2a57 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe87910ab hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf061bd9a hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4b44299f hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4ec3d061 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x683c4aa3 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x68596afc hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1907f680 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1e1585dd ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x266ca8a0 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x399c627e ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x59f39a97 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa45097af ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xae1d4a0e ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xea2f6718 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xebdd05c2 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x132a45fe ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2bec10de ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3471c36b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x50b41cad ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc730a1ed ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6d333909 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x85e20317 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdcb88663 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0c3e972e st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d96e53b st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ef9eda4 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2a72c83d st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3b880fc8 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5652e109 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x57bb8fd7 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59ac97f2 st_sensors_of_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x626a5fda st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6581c9cb st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76a141fe st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac2e714a st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xada3a926 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc77e9ac st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2fc690e st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4b3a6eb st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcef47d6 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf40d9716 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf8edc0a4 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x8f70424f st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x09d0ac76 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4e1a37b3 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa6aea88b mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9bd72432 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9c9a176e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfadd12a5 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbc5be24a hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd33f97a8 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xdec99ec9 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xebd7801a adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x0ad35e9a bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x106e86ab st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7c6f93a1 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x2b0421ad iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x2d3942fe iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x30bad0c5 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x34e6f662 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x36b86b78 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x3f3d9686 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x51c03117 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x64f471b3 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x707e489d iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x766ad2c0 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7fefd21c iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x80901b63 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x823b227f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x85683c1d __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9cbe7989 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa13014d1 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb026a886 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd1fe84ec iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xd5dbe537 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xd7cb1de5 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe4842a79 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xf98433ff iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xfe09b506 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xbf5ff376 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1abd3992 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x38313050 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa29cabf7 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xac08de85 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6622c296 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x78e6a116 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9649a624 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa696bb4b iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x913e0948 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x979d59bf iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x07142be8 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x4337640b st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0bdbd14f bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0bf34da0 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe3bf8cd7 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xeccade73 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x299c7765 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x32e4116b hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5fc79f56 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x78a781f6 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x1cf4cac4 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6b29d904 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb7d733ff st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x436f694f bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4ae97645 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4d4dfb31 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x8c03e63d bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xa7cb2653 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x898c29b1 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe6018351 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x18d83200 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x9189fb56 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xeebe4112 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0fbc44bf ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x23f0b361 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ebd985c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35efaf84 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x395e82b5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c921969 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67d16496 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75a863f3 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x78cdf119 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79fa5afe ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88a3bafa ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d3a7011 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b4c20b5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9feaef2f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa728ea8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7bcc6d7 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe97fffe9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf39556d6 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0081393a ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0188a50a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01a721dd rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c8d75d ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x021769ae ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e507d6 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a32bcb ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04d45100 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x068a7259 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e3ecd6 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095b972b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09868ec7 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09a5368b rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0be39c99 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca69ca7 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cec92fe ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119f2bb7 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d19491 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13d12ff2 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e8eb5d rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x194c8d9d rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ba079b3 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bc3d2c1 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c44bd45 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d760871 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e536d6f ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7a60c1 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f79bc1 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21c171ba ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b6275d ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245e753d ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24c5045e ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25bd9829 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28830f4b rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c6035c0 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c84a122 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ca29686 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d2428b3 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e8a9d9a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f1ef68d ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31bb0db3 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337b4e7a ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3407821b rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ca112d ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x390540c0 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x393bf34c rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e905d8 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a993053 ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ada3f32 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bec7f73 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc9f074 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cec7c71 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d63bce1 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb33b6b ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406055d1 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4201707c ib_create_rwq_ind_table +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 0x479ecbef ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a7ae01f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c878b57 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d1b761f rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d220dc6 ib_process_mad_wc +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 0x4ed6bb20 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7223ce ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x514a81b2 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ac06e3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54eacc2d rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57c89c03 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59a7e6eb ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a744d6d ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a97f7d5 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5acc5170 ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff8fbbf ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a91307 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65c7def2 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6663c98d rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66df486f ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c624bae rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db67a4a ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e69744d __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x709afd19 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70f6d687 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7224ce02 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d6c42a ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x731073aa ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a6fbb5 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x764bf991 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7809a43d rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7965be0c ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79f38cf6 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a2cdbbe ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a683c82 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5f9c19 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b9e4bbc ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ee0f414 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80992aa0 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8448e2b3 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x845dc6f7 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8675ec74 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88b2c4f3 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88dec69f ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8adfdf0e rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c37ab79 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d356a1e __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d5e9410 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90031177 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 0x9103c6c9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93335f0f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x933e7138 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x948b6e23 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d50c83 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f7a3cb ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e775ecb rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0013fb9 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa06a2a79 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3cea4d5 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa76cc59b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa15c8a8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4d4f87 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaad43bf6 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaecd4ad2 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb605efa6 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9502f8b ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d05669 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe11fa9 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe8f8b0 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf0076b3 ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf053246 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc020f8e1 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0e66e92 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f7143d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc122ee44 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1657ff5 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3aef5c8 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b988d2 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4ac7d05 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6116a6f ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6391ad2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ff069f ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc86e57b9 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89c315c ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9ba3ca2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e1aa16 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca409963 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc277646 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda097ed ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce07bc23 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceb14349 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf4f9ec4 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf64f25e rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfd045aa rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd007cb63 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0830aed ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e83e67 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3938c19 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43fa59d ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4dd091f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4e5bf73 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5bae33f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd73df107 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8ddaaf8 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9c86c11 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaaa7ff2 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcaecd6a rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1344372 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1eafc81 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe322e9ac ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe440a2f4 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe48fa4b7 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe638dacb __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe64a25f5 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe653cf57 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6b120f7 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6bf07e1 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7cd34ac rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8036c69 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea20a8d9 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea30f6d0 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd35838 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec33813e rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec47d818 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec6ae7e4 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed6f0144 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee1b0f3f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2f33fdb rdma_copy_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 0xff9211d9 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b68c391 uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f420deb _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27e2af02 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a70268a ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x42e7f5ce uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44cf1d3f ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47d60b3f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e11911f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e47c626 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f66a252 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61b8c632 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x664a95dd ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68d382a4 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73511008 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x777abf21 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86ce2d2e ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a75151b _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9035f540 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92187f8f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9317c96c flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95cf1b67 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafd37f60 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcfacb7d ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3266cae ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8d9d660 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe07cfd92 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebdbd1ae ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee61cda5 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3d14238 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfaa020d9 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0284682d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x06ed4477 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e12539f iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57c908b7 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5eced97e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67c9460f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb34e89ab iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc1104560 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0157513f rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d9b8f8e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0eeb86fe rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d65d304 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2298bd70 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2318dce3 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2779c87d rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2caa60a1 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2df1e77f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31aba376 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x486f49f9 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d1f3549 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5551f42a rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55e3cbf8 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5abe79ef rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x623975cf rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cc4a0f9 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8765e3ac rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ea3d431 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x918fed9d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa03b1279 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa076a3c5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf14f09e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0891c41 rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9c9b964 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe54f26de rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8cee1cc __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed36393c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xedc1302a rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8f28fb7 rdma_unlock_handler +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2aed8823 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2e3083e2 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4917ac25 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x74ed38c3 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9159bc1c gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbf7eb0cd gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc064c6e2 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xddecb8f6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe0585d8c __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x2ef70867 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5390c2b9 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5950a9db input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xba26f2ec input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe11840c4 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x4a402a2a iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x65859658 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xdd50c241 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xe21a3920 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x50fa1339 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb039800c ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfcc21c7d ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0ce1baad 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 0x2b38897c rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5f16ec32 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x70762971 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x81c5ea81 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc415a53f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe0e2d19a sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x13cc81c2 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xeb52b92a ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/iova 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL drivers/iommu/iova 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x521a1dd6 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5c943c8f capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f42b40c detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x64a28bca capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7818bdfb capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x809ef2fb capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x84aff03a capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc17f9416 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9b139ff capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf392fd26 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +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 0x4217c978 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc21201c7 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe686d3bf mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfc1343c6 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x64cdce48 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x781b8eea mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b0dcbad get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0cccb4a7 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1934b765 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ab2370b mISDN_unregister_device +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 0x31d054de bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x33fe5d72 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f8ed164 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42932df5 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50b05ac2 recv_Bchannel_skb +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 0x592c4e44 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6912fe8e bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e015147 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e9ed06c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f36275e recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a7cad5b mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83302139 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87f54f6b get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8676936 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbda27f1f mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc48cf2d3 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7e0b9f1 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb480dc6 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfce14981 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x879995a3 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xe2a1ddc2 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6e6e74f9 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x83b8ceeb omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa06a1912 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0d8904a0 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x34c333b4 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x611da4ca bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7782e88f __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e23be52 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8efff430 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9ac7c147 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xadb6b25e closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf788fbb bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc140a4f7 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2e8205f bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc4022eb3 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6a36e24 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2381a89 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd47b1f8e closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9e35cf8 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3e5dad3 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfa93de35 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/dm-log 0x21780ac7 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x2197f1a4 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x66225cff dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8532378a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4973c244 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x582da63f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x65d613fb dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6f347da3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xab1327bd dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc7d692df dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x5eddbb78 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xd1b7e1a0 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0783b9e4 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0f53ae01 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43a566f2 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43ad62ca flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6ac78424 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c6a3ab0 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84704acc flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x991dcf83 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb58edf9c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc6f7233f flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd338569a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd6933b58 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe0f8de7c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2f777b1e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8a4e970b cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9f160859 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc4e7d7ed cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xc1180529 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xd43cca35 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x2f759330 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe834f927 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x71d31663 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7201d555 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xaedb3cc0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb112ee09 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc6ab84cb vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfebb9792 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x0983d22e vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x006d6880 dvb_dmx_swfilter +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 0x19158c70 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x203bf5fe dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21381c3b dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26c12186 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28f72703 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35c0e9ae dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e96a73a dvb_unregister_device +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 0x4be5c646 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x542bf5fe dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54c68af2 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x599b44c6 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a5ab729 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fed14de dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70d686cb dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b334d3c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83fa269e dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b6a3357 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x962d74d4 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab68645f dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7712e62 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc22a234b dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcffc5ceb dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5316fb1 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdafc31c5 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde78e567 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb8e5376 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedda2b2f dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf967ab3f dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdcf8e61 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc478952d ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x77cf34fd atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x01e42a53 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x467b86bf au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x46f39025 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6fac1cbe au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa3958123 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb1d7369c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbcdc257c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde111b5c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde11f8f9 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x17e106e1 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x81d34c6d bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa32eefae cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x1dadce3c cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x3f17d9fa cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x331b56ad cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x84f12ac2 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x304f5bce cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x2dc05ac2 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4a43e889 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7e7c2be4 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0516922c cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe90e2ea4 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xfbf5647b cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x6bdb2ff4 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2f1aba3e dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3e85baab dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4c215001 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x582a7c18 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xaca7db6c dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2b55735f dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3cbf3511 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4e20b06f dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5bc3addb dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x69201576 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72306f89 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x758e60a6 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x81a1610f dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9f1022c5 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbb88b1fa dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe310b2e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xccdea5c4 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xed069763 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeedd28f4 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf35f6ff5 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x4b9c4a2d dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0cc940bf dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1440da74 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x21bfa5e3 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x90f94dc4 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb01a5faa dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd162ef0d dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7f14e319 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9c864d84 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xae8fe39d dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaec2f3ac dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x3a6240cc dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x91469857 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0f48cf23 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1ca08736 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1d7bb2b8 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x27e30eb1 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x537090d4 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54bc34dd dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x60f04020 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x72b7ccaf dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x882b2a65 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa03afd62 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xad1c2b58 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbe435d00 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd6e2b88c dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0c50ab38 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x554de4d8 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x721b456d dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xba707567 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd4d46d8a dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1fd8c07b drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x52de15e9 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x508948a8 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x891e6167 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x634e6d42 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x1220d3b9 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb9eef7d1 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc2e204e1 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x8ad52a6a ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x70f1fffb helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc8e22c7c helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x636897e1 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xde126d4c isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xb0b3d8c8 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xc2f03ee6 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2afc0857 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x445997d7 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x0c4d80e3 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xdbd4fa06 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x49427c89 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x217d3d9a lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x46873dd6 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xd3aa4055 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x138fd661 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x89c1c40b lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x9687b858 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa975abf3 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc16c5986 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x46cccc31 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2517cf50 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa52a7677 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xb9faf17d m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7221aed1 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x74555ef6 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x928ccacf mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xaa464018 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x448d7119 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x342b385d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xfb683e3b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x39c66b3d or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf0cf78c5 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x594b04de s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x44d5a3f6 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x795181b2 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xf11a5e47 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xfdd7011e s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc5f67127 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x00601bb4 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1a8549d9 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf11bb4c9 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb45b07ec stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xb0221812 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x960eb289 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x536dd234 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1a132e10 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x111dd144 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2f7afa95 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc99d20d7 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc9d8cf36 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5e41439d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc0ce4d2e stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0b619676 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x0a60c7b8 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x9388452d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd7b4ce40 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5a6b4ecc tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7e1f4623 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdb64c662 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcd36b7a0 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x0ddf03a3 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf84f0fe3 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xbac2b845 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe35b9272 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x889ad62d tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x34f67280 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x3f4ec26f ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x804e2223 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc173d2c8 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2dcc7ec0 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf447913a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x070f9c71 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0c624064 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x22f25a09 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50e875b2 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x80ffcaa9 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8d6a4fc4 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e5edd1f flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb83088df flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1c1daf8e bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x738be0c0 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7e3b6500 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xff632792 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x59d193ca bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6c6eb8ca bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe0c49e4c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x02e733f4 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x372bc0c1 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x45ce022d dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x500ea327 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x52f0aca3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x82a4953f dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9473ec6b dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa56f28e8 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb38253d9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x2973beca dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x14c497c8 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4e997b61 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a56619a cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa1ee6877 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe33feb75 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x59a5ad6d 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 0x0d441480 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3fc64354 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4fe48c66 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6dd33699 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x71b25bf4 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7917e0e0 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc6dcdbcc cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa069d7fd vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa8849a21 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2572cd43 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3357d150 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5a0dbaa1 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcf2b7645 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1488a679 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x34bb3433 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x48313860 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7dc30f96 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8302cb57 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x836f852a cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x84b15f82 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x050b946c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x317a2b05 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x404b27a1 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f10fa0a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74a8f843 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x774eeb8f cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7957819c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x80b137ec cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8311bcb5 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8857208c cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8f53286a cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba99d289 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xca986d91 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0dee6c4 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1f5268c cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3623d72 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe30811ae cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe90f1ca9 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb7f8d91 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef4528b5 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b2320e0 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x119425e4 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x304571b9 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x322a7438 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x569a87bf ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x67eb0297 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x842aa118 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9203e50f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa450f8ac ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa7f194e9 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa96dbffa ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaac61aec ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0f44b89 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb12cdac1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb861c335 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbe6b0cf9 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdc1b6826 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0b58a1a2 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f63e3d9 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1bf5df21 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x48585304 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x55323d1e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5d4f21c0 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d17e90d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x79046850 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ee78ec7 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2c07a08 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6e9fe4c saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd411e5e8 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc8fa922a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x6671c6ea vdoa_context_configure +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x787fe8a8 vdoa_device_run +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x7fe3d6f9 vdoa_context_create +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xd96c63ec vdoa_wait_for_completion +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xfc58eef7 vdoa_context_destroy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x099f3e3f csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x40c014aa csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xb727ded7 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xdbd89336 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x2163ded0 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x2b9f15a1 sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x2e3f520e sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xd3600c8d sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xf63ac41e sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x08ea27f6 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0f031c9f vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x103db7e5 vpdma_dump_regs +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 0x1a76435f vpdma_enable_list_complete_irq +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 0x2969a32d vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x326bb834 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3d462132 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 0x4e3961d8 vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5118bd7d vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 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 0x6aa66e00 vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x79b5f823 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7ad092c4 vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x87c0415e vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8c32ef9b vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8e69b879 vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f232df vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f311f0 vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa0973b76 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa633ace7 vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xac3bba66 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdd7f11d3 vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe5a27c4e vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe7ef779f vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf93ba9bf vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfefbda83 vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/radio/tea575x 0x553a9545 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x56e6d5ff snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x61391c0f snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8c82b129 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9038fcdc snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa45f55e6 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc63de769 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6866dbf5 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xdcf0a735 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x620440b2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x58395e4f fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x019afcc0 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf542f005 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfbdf422a fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xd9d67b5e max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc45ee71c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x32af404e mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x7fa1a77a mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x66f8391b mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xe65b8cf3 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x2ca51a32 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xcf125938 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x26025a00 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xd5caf2cc xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd0ee2d69 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x603498fe cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7ffe7651 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x11fb863d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1fa6a255 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x69662e6e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9222f1b9 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb2d1f80e dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc4e95080 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcbd97680 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfad9802c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfdaf4e26 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1a011b49 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1b3207b9 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5dbaec9c dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x840fd712 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x89376669 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbb1bb407 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc0b9a408 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xbeaa3ecb 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 0x2da9c545 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x33df32d6 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f66a77b dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7912ab0a dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9673c325 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9d34290a dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9eaca432 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc57963ef dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd98b91fc dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc08ceb74 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd6e1f7b1 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x55b82d45 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6b5261cd em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17e6e996 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2e8d94b1 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f98988c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x40ee4444 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x450aab8c go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x60f459a2 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb5fd1e22 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbcefec29 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf049fd1d go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x05eea4bf gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x365cee29 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9f7b5f66 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaf0d9554 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb6247667 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc17f4874 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe824c447 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf58d75db gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x59e460fa tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xda3a2321 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdbad4344 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8c5db5e2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa79ab428 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x18f43d54 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x385071fa 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 0xe3607e90 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01577ca6 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02f62b65 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0511e36f v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x051c4d0d v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x066695dc v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x071f52db video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07f311f1 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ae38623 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c30ffae __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0cba8db6 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123941c8 v4l2_ctrl_subdev_log_status +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 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2075266d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26ad541a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ab4ccf3 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312f1a6f v4l2_async_notifier_unregister +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 0x36d242d1 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3764a97c v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37cc8e98 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c0a442e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43fde38a v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x451ae67a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4dfc874b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5130aa2c v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51d4030c v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5aa2f23a v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5aaa1663 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d0e2848 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e985d40 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fda9bc3 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783ddd0a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b22c268 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8675e65c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a1b4d44 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x985e9b8b v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9de91cc6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a9dcd1 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa681d153 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa768f9df v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9de334a v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa20f974 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab4ec85b video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0d70487 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8d28421 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb99f9539 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf479b10 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc18b9585 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6399caf v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc71acbd8 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc73ddac2 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc774fb4f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd162c78c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf9d4345 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe12c423c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe569513f v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe67fa4b8 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9f26642 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec122c7d v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec981e45 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1453c0e v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf20ec64d v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3b3ba07 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf712d718 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf96e5b55 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd3164c8 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/memstick/core/memstick 0x04b178bc memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x15fc8d4e memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e05c38f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3833c361 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3bc719be memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x439534d3 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4ccd4d6a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f9e170f memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb187aa0c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc61094ab memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf4e8761 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe9d35d2c memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05e260a9 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d56a50a mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ec0b343 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11efa11e mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17b0f9dc mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x268739f7 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f250bba mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3aeaf7ff mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x410a3607 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4174d694 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x492af975 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d4a997f mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53ff28d5 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c7c1cca mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5dd29409 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f822333 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66ca3f30 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71edbcca mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x752a8532 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80c142c8 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x859713c2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a5699d2 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f4600b1 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x96364ac2 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f3c7a56 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa961d09d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc15c2c1e mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbb09f85 mpt_config +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 0xf5680473 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0211c62d mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x036e1e1e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e4f0ba2 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33e0bfad mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37838066 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3fcf05c4 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4884240e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50ab685a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x632cddd2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705f02d3 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78f2eb8d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87de4d34 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c3be608 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8dc48354 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6846289 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad0637fd mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaddd4d74 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xafbcd885 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb29b07f0 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb87a5bc0 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb952eafc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbf33b30 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4020547 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4188e83 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9304b7b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe957aa35 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff45af93 mptscsih_slave_configure +EXPORT_SYMBOL drivers/mfd/axp20x 0x0c9e6494 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x175bafff axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x2130a313 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x56ead43f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbd374dfb dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xd3a60a3e dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xafc47702 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf211ed79 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1ebb351a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5c74a6e9 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7474d863 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7ff6805f mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x864ad6b2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa9d5d3bb mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb044a101 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb2f74469 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb5b48a85 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc635c341 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5b65e32 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x10b06eb9 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x228ad520 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2f6fa294 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6a1faf38 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x7197cebd wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xbde8d70d wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7d14fb03 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x94319d41 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xe54686a0 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x74e106de c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x7bf79705 c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x2ee7818f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x34feac15 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4c65c526 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x60aff09b tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x6293f4ad tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x763f3dd7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x818e5b35 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x91d8ae3f tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x993bcb30 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa7ff8970 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8a9565d tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb16306b6 tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x0a6198a7 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x263d765a dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2e8b45be dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf903ecc2 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x763938db mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9bff0692 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x137548ad cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1f2c57d2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x592f5a6d cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf417604 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcebf1b6d cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xde21ea8e cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe208b75a cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x20dde65e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xbc0ac725 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x525cb730 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xbce8c0a4 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x940f7d85 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc4eb3a3b denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x24351100 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7eb47fa9 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xa2f4591c of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x065652f1 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c257411 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b6fcc7a alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x61f234a7 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x91c1ec19 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9678a238 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2405b9e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7acb243 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8f0843c arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff9efc64 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x15dda81a com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x18962a4e com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa9efeb51 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x044802d7 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0704be05 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12185274 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x198f12f4 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x22a4c191 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24e98982 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27245c79 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b6635e5 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x447163c3 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47660564 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a157ec7 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bfaedc8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55df8b28 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x610a549a b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6479fefb b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6edd616b b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8565bf50 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x892e4473 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x912174bd b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95d793a8 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x964f4ac3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c683db0 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cb2143f b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa899b9a4 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa94baf53 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba4ea1fa b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe7464f9 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3d51f63 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9bf10ab b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9ca6797 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd18f2e62 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7d6e914 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe116bd93 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe611ad4e b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec70fcff b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee18484b b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf242dc58 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3633750 b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x012d3d57 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3f1e8cac b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5aa6bbce b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x689a4d7d b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x850081e9 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x95604095 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdf7d0f69 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe4ec5fc5 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x05568940 ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xab5af82d ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1bc31432 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3a257afa ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xee776d52 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5c5d9f9c vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xcbe869cf vsc73xx_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x110b6205 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x159f9d43 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x16fb8af0 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x19a2fd1a NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4fac10e3 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x53155838 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x999aa5d8 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf762189 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd70f7190 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf4d0910b __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x6e382843 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x083ca625 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0da04775 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e27501a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1276c790 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f024840 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x407eda81 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cfdca18 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67863580 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7518dd1b cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b45adef t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb03b5113 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbcbd20ef t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbcf2f374 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc6fd271a cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca73d7e1 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc6a7e4b t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x090f405b cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dab3847 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24a6a1cd cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29ccd31d cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35df53c6 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3716467c cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ccce7c4 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3efdfd0a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4823c58b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48d39d31 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 0x550380be cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x578e8ae3 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5964d847 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7386de7d cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74453922 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7790a23d cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b7b4ca1 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a39df03 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9013b689 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b99a649 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bfda6ec cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fb7cd34 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2713d43 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab219f4b cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafde5a75 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2b5ca6b cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbaa3eda8 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb384ac1 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd5fa828 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc04caf5c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2059894 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4d62f2d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9b9d3e3 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb10c150 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd439e6e7 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5c49397 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc6f9965 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf139725 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9c149f3 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9fab0f9 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea286fd3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee699554 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9498eae cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfacc8fd6 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x07d0f83f cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0c17497d cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x168db05f cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3816b2e2 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x476f09f1 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb28fb5fc cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb5e5aef3 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0edf86c6 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x31c764f8 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x84e1fdb1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9723058e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb81d412f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf87004e0 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2990e61e be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4089c6e7 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x267e4fad hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7b337b62 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9cb73c13 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xaf3e2d8f hnae_ae_register +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 0xec660fca hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x5c7de5f6 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x17a65989 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x33e8f30f hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x72d14097 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7ffa28e4 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x90a565de hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9b432053 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdad8d14d hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfe34394d hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x344157f1 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x6ab0b1ea i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0b6c047e iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x61f17e5e iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a96904 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06ccff03 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x105f81d2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x161183b9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e41da3 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38fe685d mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c2a17af mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4250a1b6 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c52ac5f mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e3bea23 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x514ba067 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5988c4cc mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c120ac1 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc884a5 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x600881c6 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699f2ee1 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1e9f7f mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7221c212 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a2a1eec mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bf66ff8 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d2e3e2a mlx4_get_cpu_rmap +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 0x85d51909 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8782e0df get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a4ec6f mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x926eb1c2 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92fea5d8 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93109718 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa21e13b2 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8de76ef mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2fe2b6 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaefe43f5 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb36ae5dd mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc28baa15 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a2a821 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc66af904 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xced4ae6f mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd569ba52 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd780aa4b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd846eb85 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb697581 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebfa546e mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecf1759f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee53b512 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb8e446f mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x035324da mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044bcbc5 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06dc3779 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c16f135 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2fc676 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c767c96 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f1fc445 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15aaeb40 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169f7da8 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182b41d1 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x187d49b9 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d73c63 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19fc391f mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1acb1822 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b4ee5d3 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e8f47d0 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ed25c96 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21124abf mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23240e6b mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x232b3edb mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24a2730a mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x269114f9 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d754fc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2807856e mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c183a8f mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c7f2818 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dac3b14 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30c4ff21 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x311a1aa6 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3234c42b mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328a1e3a mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32b5f57c mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d0815a mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3780f1d8 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37ccf252 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38dccfe6 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39153c11 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b7a5c6f mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4b58d1 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd0f0e2 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c5b42d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x450bd783 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45388589 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x474c0a21 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x480f7ae7 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49eaef7c mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49eea77a mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad7e9d4 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d17a488 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x505f8965 mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x513fbd0c mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51992786 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567b552f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c7ea3f mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fa7d83 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a71d7f8 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bafce91 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb96130 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bdbb9dd mlx5_eswitch_unregister_vport_reps +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 0x61af95f8 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e3e744 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb4aba3 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd42812 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d40fae5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6debc8ba mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fd9ffc8 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73193ce9 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73379199 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b92e642 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c936c50 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ed32bd6 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f60c5e9 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8046b4f3 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82fb577f mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851932b3 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8602dc4d mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90018bd2 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e7f92f mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9572aa1a mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d47eb2 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95da08ff mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97c7a6d3 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98acf3d2 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98ddc4ea mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9964ebee mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d06b70 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae19c37 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13cd79a mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa41659f7 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9ae4a77 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e82d72 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01fb632 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c7ae95 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6926a8a mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba0a48df mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb626b28 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc081573 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd813ace mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe573a52 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeab4ec2 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd31522f1 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3256cf9 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdabd21e6 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd141b62 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd1a6c73 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1d2df49 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe482a037 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a0dca1 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e0bdf9 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d71b0f mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec37e081 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eeca40 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf210047a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3f8103e mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf581184f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6b23f99 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf71ea578 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7c51dc7 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa2a3ea4 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbad240c mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff05e262 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x51975f84 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1142eca8 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c8262f0 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister +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 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2ea55928 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x386798aa mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f3fee64 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x45b26bdc mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49295174 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52c93788 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x56e26e12 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6fc545e0 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7d3043be mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x81d4d966 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x965e2685 mlxsw_afa_create +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 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc38ca77b mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc62851a8 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf45cc45f mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2e731232 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x861173da mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6d79a65a mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xdb991802 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0f4b5441 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2946137c ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x37b9794f __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x49389009 ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x52e1dcae ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x641d83ed ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8269fdb9 __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xa648013c ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xaa7abdc9 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbb2ae39c ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xc1221e35 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe736038e ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf2ed0d57 ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x28685544 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3994e83f qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4ee809e8 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1f0e3294 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3987d869 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4873b9fb hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4d165d18 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa3332d5b 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 0x7db84a25 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/mii 0x1c41e704 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x25093440 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x5b19c55c mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x691251c6 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x6c2604f1 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x85972488 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xab10e6fe mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xcb9b2f26 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe1cc1520 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xea408778 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x8088a04b bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x49c2acaf alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x6244c11b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0dc6ea08 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5e6f8a0c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9f9afa97 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x157b1950 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0adb3bed team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x0d0f17e1 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x3745f8de team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x63c6cab3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x7a909305 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x81e9ca8f team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf8e492f0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xfca01b44 team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6d6f1e34 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x78de4bac usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf775e91d usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0975c4ef hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2ec8fbdf hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x342e6013 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5706d556 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x666bd89b register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x683908f1 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b7244f1 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x74f063a3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x93b67c69 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb851e2e7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xd0258eff i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1849b558 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21189f5d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23eda2f2 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x271bffd4 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x31918632 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3bc4cb37 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ef42e1d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4ff420c9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x994ffa64 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xada62bf0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0057066 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd49bf392 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc7db879 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x003625ce ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x062cf055 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06f07457 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08d3d3a5 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09adfad0 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a2b0b16 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bfb699d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b9f253 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x147c7c48 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16bc4cde ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dba6862 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x225d8d0e ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26e2cd7d ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x371d8915 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b2b5885 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d7eb8f4 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42129494 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57ae8f00 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x599ef75c ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x628aad75 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6563fe44 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x729c3aa6 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8495b27f ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86c9f0e7 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8aa5f197 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x915d74cf ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x944d2c90 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x994808e6 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bc74085 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e32a5ce ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0d964d2 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2705683 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3a7db67 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5f42acf ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb22d1a84 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd9d61ed ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0883796 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1cbdc22 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5871203 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc63de679 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc703070d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde680143 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xded0b421 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0a5f7d1 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1c0b389 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf63daafd ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6894ae8 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdb47f9e ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x16766579 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f04ca4b ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x616cee05 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6903c757 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa23f0a87 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb5320406 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcfcd7809 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd776dc91 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdd97e971 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe2af034f ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xece69505 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00c69648 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0afac486 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0bbe0f27 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cbf3339 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12c7d0a4 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x197a9e92 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x314b0f39 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3a4f4b0d ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4317a780 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x527c1c55 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6622bcca ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76c2664c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bd868ec ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cd95417 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ddf8472 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cacbd8c ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2d79e11 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb972efb9 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 0xd7b0d3d2 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xee76c4da ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf42035b6 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4377d2e ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf90045bf ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0057e716 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04ba7b79 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05f76702 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08819a26 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09b3fa0f ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e95cdcf ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f97565a ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ef74fb ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11765541 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x185ef596 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x196ef494 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19d76a96 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d296b72 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20b68be3 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23211931 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24308985 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26d5a72f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32053785 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321eaf0a ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a7547b ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x373b1bfd ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x378c4d2d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39375fa5 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd81ac3 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fed0ef9 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40b8f632 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41232957 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43be5b70 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x451c2c0a ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x454a5a58 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45f4c1ad ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4723de97 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48f77b21 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d6b9d1d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc889b7 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52671fb6 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527bf5a6 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x558f79fb ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5774632f ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5888702d ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59e5644e ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a3c2c8e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b198156 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b54f10e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dce6274 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x603a2e8e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6180026c ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x640aa7f6 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6447cda8 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64f1ecd1 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x660fe204 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67384193 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68c4273e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c2f9b8b ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x711fc2f9 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71796d86 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72b0c9ee ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77172b27 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782ed270 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d031aa5 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f3c06e8 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x809ef1c8 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80aec01c ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82a548a6 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85084e0d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x872f299e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c66c087 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6e775a ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x981be226 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a027a5f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ab8b74b ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fc68640 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa00a233f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2433b21 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2e058b1 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2e986c7 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa494a686 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7230d1f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9808941 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9da95e3 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab3d8c9f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf167169 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6eb962c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9558db ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0579bd6 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc08a536d ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2bf0091 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2cdb984 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc56f1903 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbf296fc ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdbcedcf ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdc2bcdf ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcee2ed1f ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd04ce75b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4a993f9 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd99928ea ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9c4caa6 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc643749 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe11acdb6 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1d80e42 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3e60373 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4a5bfaa ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe84c3459 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed2c9cee ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5bd5c20 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8df2a64 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa5717ee ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x30321124 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x372546ec atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb56c2773 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x06a9d29b brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0e026658 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x112f1f4a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1596a14c brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1be32a2f brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x492b273e brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4a46d3c3 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4bcf664e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x61d47c28 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8c2ed22a brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbed55f5f brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb529c03 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff04e971 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27e48264 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2ce8545f libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3c217042 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3cc2aef3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41cea219 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x42c9b5c2 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45358479 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5d8b3fa1 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7cb4542a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x829a1fb9 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8fb0b875 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x90c9dc28 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x910607e9 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x94f9e3a1 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb69397f6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbf14919b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc292ec34 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xca5d458b libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd7923178 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xee4d06eb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01270c56 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0218b378 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0440b3de il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b95f941 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0de8cdfb il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x108dd2f1 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x173ca686 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x190bad61 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e4823a7 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x200c18ea il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22cedeac il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26b02da4 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26d9022f il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x279ee229 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x289250e8 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ad71ac3 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf13b0c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cd389ef il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e99938f il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f6dd667 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30a18ff5 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30d7842d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x316e6626 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37725802 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x386c1c64 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3873eb2e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d3b922d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e087699 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e96621e il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41b28b9a il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43329ca5 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46aa0ae8 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ad9e868 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c3d98f1 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cd0db61 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb886ac il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5082e461 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5095b72b il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52872b2b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55d6839b il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5975a9c4 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x599ea27f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dc107b0 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x724d3dfd il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x745be84f il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7505c271 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7740727d il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x795d671c il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b950cb8 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7eabe08f il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f9cc812 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84678a28 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x849846f4 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86248749 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87f2e475 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c8b14ce il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8df75518 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90e89edc il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9151d020 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x919a6d53 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92ebf9b6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94073bb9 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9692cf53 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a274b75 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9af36dea il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c4219f8 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa150203a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2b21474 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4bd96f9 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa926afd2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa2ec678 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabab36c5 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3fc1b5b il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6fa157a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7230d6b il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb0767ed il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdd849c1 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe46a722 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc45b8fb6 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6aec97e il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc85c2019 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc0c6299 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd231fa6d il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3250f34 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd39283cc il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3b6cdd8 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd54f3f07 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe15be382 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4f3cedf il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5d5d10f il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb7d9baf il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebc7c7a5 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf17211d5 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf691fd28 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8896fc7 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8d14b14 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa10f2a3 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb095605 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09de39f2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e03f18a hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e0ed006 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1039f5d3 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a5f0011 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1bc04dfd hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x239dd8c7 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33899f15 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d58be0c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5436631b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74da2ac7 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7ffa04fe hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d29dc81 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95361bc9 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95bdd47a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9755c097 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a07f448 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa502efe1 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xafc125e2 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b093fa hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5d70b5c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdecde52d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdf695144 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe269ffdd hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe9d13d1c hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x008c2e21 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0d9cc9c1 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14800c4b orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d44450b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ae5cc81 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4b9cba41 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5d53e579 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6e01e0a0 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x744162e1 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x80c836ca __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a09587a orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xacca4aa8 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xafd4fc4e orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc8559721 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xca597551 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb4c9831 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x93eacab4 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x672c22fc rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0761eeda _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aa7588b rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0af1c14d rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bbd1537 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bd89bf6 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ee90cd9 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11b1e02f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1335bd91 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x179ca067 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17a8d2e2 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ba590ca rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21780999 rtl92c_phy_update_txpower_dbm +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 0x2a8797ee _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e5267eb _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x343f9dae rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3936fb49 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41f4817c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4630f0ad _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x498a6dcc rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4da4534f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x560a5e88 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5626f82d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x584d285f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61624c5c rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69cacd1f _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7538ba6d rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75a968f2 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7761e628 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3f4d06d rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa468c88 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf76cc66 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9d9c676 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1fe3ab7 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd65484f1 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9ec66cd rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde0a4799 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde29806e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef0fdcd3 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6181149 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd7cfe07 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfda9b652 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x336d8578 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9baf34a4 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9faafd8d rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe4a07b5a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x66c88b48 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7062b830 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x95f1ecee rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd6e72681 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04302647 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0769bdcd rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c11e698 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1273b731 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x169ac10b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23dbdefd rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d704e3a rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ca38c55 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc6806c rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46d0ac88 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47e09420 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5863b407 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b73c113 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x617a2ea5 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d992ea2 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75d49bd8 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f6c5baa rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82ac0301 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90492fd4 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90f397d3 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x961ebb5c rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99b4ddd4 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9bdb0ab3 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad8c6b97 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5052e3f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb610a34e rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb68135fa rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdf119d3 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf800b638 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8535793 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa339476 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe8c49c4 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2212c009 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x5f8c6923 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x60592c9e rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6271b74c rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6af0bc9f rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x6ed2ad13 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x790afe09 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x8532d7a1 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x92913e28 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x933d1315 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xabfae4e1 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc895f9d2 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xcc8b7b0a rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xd4b4b245 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe07cc6cf rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe90a4fd1 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xeae85c72 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x9c76a683 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0b2b6d6c wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x50a54c19 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa6d92064 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc213c091 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x17f45fa5 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2734b613 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc7dccbe8 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x178e38d1 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7bcba20a microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3bb0eb69 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4ed57994 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb6a93c1f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xebe746a9 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4c636074 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x91ab68e3 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x02a00ef2 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x948aff9f s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x98522a91 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c746396 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x51639270 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x98d1d078 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb0a23658 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb7165cb4 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd80cb391 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd944a664 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdfa310ac st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf4e10935 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9c0817b ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x049ba288 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x050d8c9e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0613d770 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ca9430f st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44555f92 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58b3ed28 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x59e4c60d st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b61f85c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7b8dc751 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa163d34f st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac8ee1b4 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad9496a8 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd57f54d5 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8ce5d26 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdaf8ae55 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe993fb46 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf0cbc9bb st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa74a74c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x02898395 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x1c17f461 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x475f4335 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x50734d1e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x60ba3696 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x60fa7be2 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x70882076 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x7370a4ab ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x740979ff ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x76435099 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x86e357af ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x8ffbc97b ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x956dd8f0 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa5027c42 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xb36c66c0 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb976f494 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xe27590dc ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xf22193a9 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf9dee889 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xfdf7afda ntb_default_peer_port_count +EXPORT_SYMBOL drivers/parport/parport 0x05068543 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x26bb0be8 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x2874afb7 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x2c10304c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x2f9f039d parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x33422af5 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x376a1df1 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x43f78a59 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4dda3436 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4ee55602 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x50d46a40 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x580d3bbc parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x63460541 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x6ca6c569 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x784f56c9 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x79064b2d parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x7c89ceb0 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x7dde450c parport_release +EXPORT_SYMBOL drivers/parport/parport 0x94e7a0e8 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x98aeb96c parport_read +EXPORT_SYMBOL drivers/parport/parport 0x9907df6d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x99582d9a parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x9ffefcfc parport_write +EXPORT_SYMBOL drivers/parport/parport 0xa7ade383 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xc357a470 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xcb524c02 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xd55f47d5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd76d64c1 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xeeb8ef07 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xeedc4d3d parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf9dc880f parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xfe9f8f7f parport_del_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x77a4da41 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x8b03b49a parport_pc_unregister_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2b696ea1 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x439f4883 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd9194d73 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf66ce3f0 cros_ec_suspend +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x2f1c2e23 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x154d479f rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x192da9b6 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x245b1a22 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3333cf3f unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3c4a9855 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4426b752 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x481105e0 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x58bab760 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a13c942 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa1658488 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb09d1811 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4e5aa0e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcb759b0e rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdfa2460d rpmsg_unregister_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x428392f8 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x085378fd scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x868d86c4 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x887e34ea scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa206ae64 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3238dfcb fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c8c691b fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4ede5fe4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5810cd5c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d6c3703 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x879dd4b9 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e96356f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a7e5510 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc275971e fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5e5c561 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf48005e1 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14e3eb9f fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15a4819c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ce15c59 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20c304e5 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x275d213b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2faf8b6d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3707bb37 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3856ac10 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b18d5fd fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c8560af fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e5b6212 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f7fd392 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50ff49ff fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55151e04 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57eec3d5 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e4b8354 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6523095d fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x655b7087 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6944ce3c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f59711b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71657eab fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7451678c fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74b062c3 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79a56749 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bdede76 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ec17dfc fc_elsct_init +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 0x81c8bda0 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x865c03b3 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8905b904 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dd1ff38 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95386722 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95f20768 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98e32909 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9acc4cd8 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c5fd609 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f1b8c65 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8e88867 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaee24ed1 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf04d497 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1a85be9 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb73b5dd7 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9d605bc fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc36c9668 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc65322b7 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6571b2d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc768b1b2 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd321299 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd37718fe fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb1c1473 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0de418b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe135ef06 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3ef7f89 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe80c5252 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea5aacd1 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf446b4f4 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6b129e3 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc53895b fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe114489 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04d583c0 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcef3b8ca sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xefebbc9c sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xdb6bd5e6 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x14dc4834 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24bd4724 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2b789732 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4208087e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x82f1970f qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ae7adbd qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa25c9e5a qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaf7fa25d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb8a59380 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd77304fa qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0abb9f2 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf2b8d1c4 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/raid_class 0xaa17b54b raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xdc215d6a raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe3765da5 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1779822f fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1fd6e155 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x669ff6a5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x720e8c97 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8682ea03 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a7c8df7 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c8961a8 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94ee9f92 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9972b762 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f55cf21 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa6df7d0 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe021d48 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6261439 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd31df93f scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeaeaaf27 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf707f482 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0099a9f6 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08dd5add sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c51f36a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1058c3bf sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f7aea76 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x217042a7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x377ac3d3 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46832f59 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53a82830 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6705c80a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x678c2f71 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a292a3a sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x783d8e48 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d360189 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f22c315 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x824cb405 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8639884a sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8af0916c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d93bdb8 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e6305da sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x917b1e5d sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3f5beeb sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5a24776 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb64dd837 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb996143f sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb38b35e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd191dee9 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb567445 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8565d0f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x12403743 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x33337152 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x65845314 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6a0052b1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7859d292 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x29fe5db3 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58aaf722 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9e3e7206 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdccd1954 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe23ac28a srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x66496627 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x8f89ed9d tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2006bed2 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x54b059c5 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x74b54b2d ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7ac049c0 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x945d937f ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9798503b ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x97f8ee39 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe16a0c2a ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf9aef610 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x52aa1a6a ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xb04b1597 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x12b26a2f cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x134db152 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2cd36d83 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x35fef1cd cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52eb8e83 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5ab2e662 cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5f2b37ce cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6d61d952 cmdq_pkt_flush +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x782df519 cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91bd54f2 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x14746619 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x21b5761f geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2241e202 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2acd4040 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x34cc32ce geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x38bd7bf0 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x48ccf116 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x86d6f362 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaaf97762 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaf9daf82 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xce3d2f84 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe0d701b0 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2234b71c qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2bda41e1 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42e3afda qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x50a34bfb qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x662503fd qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6754f904 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x903c6565 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9892ea31 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcb75215c qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe8d9dfa8 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x694c56fb qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x8bf3ad3f qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x161317d6 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2a8596e6 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3bc95792 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4463ffb6 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53528b40 sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58e65264 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e32b253 sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x862ca1d2 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa3811707 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa519b493 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe6c8102 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc0a8370b sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc22dd593 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/ssb/ssb 0x014c423a __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x0e3f499a ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1736b142 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2b121721 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2c196997 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x39220872 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x39382169 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x44b30137 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5de65a25 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x73f5f4e2 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x93c658a0 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb3118bad ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc09807e2 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbeddf9d ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xecaa78a3 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xee0dfbef ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xee30d9f8 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xee4eba1c ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xefb756b5 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xfeb6fe64 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04d4b84e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ec0efe9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3043d87e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31fb9e90 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x348e5ca9 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35b7d4ed fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36cb58e1 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x596f26fd fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d9de50f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e2c5428 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6631ceee fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6dde23d6 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74467358 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87b99f3c fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c9c7d9d fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9389780e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96cd4f68 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa674bbff fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9a40b27 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab3802df fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafa4efd8 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb501c697 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcda10e17 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3eda3d8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb7ab108 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xd24977a9 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1b1668b5 ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x06d316b5 b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0e584a69 avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x0f28fae7 b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x183269bb b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2cbe208d b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x37b20ec4 b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x4496ec48 b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x55edae89 b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x5e9c0882 b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x793e6699 b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x87d35eac b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x90368e88 b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x949bbc39 avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb6a78e30 b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xcfc19260 b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1f1a6eee t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x230667a7 b1pciv4_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x394d2f9e b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5d0bf5c1 b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xb3500b60 b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc6de45a4 b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xc7a82e60 b1dma_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xcb33bb5f b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xe0e2d1d2 b1dma_proc_show +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x89f6ae1b nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xe88b78a4 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x026476b1 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09b00600 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bd1144b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0debb220 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x137d36e7 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20d9375c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2550167a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x266b11c6 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31d4bc7d rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34f2808f rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x385a61c9 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d2b50dc rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4060fc93 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41637f98 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46c34cad rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47022c98 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bfb7792 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cff8ec2 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50fc91cb rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x597b7b4e rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c59dcab rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cc99ad5 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d16cde5 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x715407fa rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7416ce22 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79e8cead rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f8bdc9b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fc9d389 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x895c6378 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ab38837 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90ddf6f7 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97bcc716 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x986603b8 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99211365 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dca263e dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab45da13 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac0a520a rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb66e2217 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1a68dd6 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc44c8b76 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc593dc46 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9fda954 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1985966 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd21a4063 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbc39030 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0f13276 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf27423e2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc53fd5a rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfded4d27 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04ae9fc4 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x055ffae4 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10e135b6 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a55ce92 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a9ec510 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x234d96f0 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25d0f5ae ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2666cfa5 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c49dad7 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e0bd111 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x340dbe0a ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36bbccb3 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38931ae1 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f6b5f3d notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46e463a8 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47938df1 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49e9ffbb ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a94ef1d HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50009a98 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5365ba7c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b971d85 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x709bae61 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7437e8da ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7609b27d ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x780954e6 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f150ce2 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8682d674 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x949d0451 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9643b78c ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99e449c7 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c0e93b3 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1d084d2 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4607ad2 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa690cb73 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacb36521 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3205228 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb343c7da ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6c522ec ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7e36edc dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd9196bf ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5377b1b ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfb2a29a ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd09b6e16 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5ddbd5c ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcc8f35a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4511b0f ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7229342 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe92cfc1c ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe97ff521 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefd5b5f0 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf02fc939 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf76b3e5d ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9655103 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03e1ccfd iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fc5ab25 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1426ba5c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16e573fb iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26bcbdc8 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x291adb76 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e8a5115 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x307b8aa9 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38e0e620 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43028a17 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b380e77 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ec4cf65 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x563e06f1 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bfcebce iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cf21b23 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63c3b314 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65351680 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x695fc602 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d349c7a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70b84a0b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x720c6a0c iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x727bff69 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7290ec24 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75df543c iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79a4c1ec iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fe65500 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81eeaf35 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84ce9225 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87a3ea83 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89c01be7 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x917d0afd iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94626fe6 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa471f926 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa54f89e5 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa74e7397 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc35cf52 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc468c5d0 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdedd70b9 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe13817a3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3bda9dc iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea74bf4b iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee28d7e8 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 0xfbec0b16 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfeb162f1 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x00ba0324 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ca8e607 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d640413 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0db85e78 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x10800c7c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x121db6ef target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14046c07 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x18b9c0d6 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x19f3fb52 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d20c5db transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f0c18fe target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2296f294 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x23742731 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x275f2893 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f867083 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f978df1 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x3514d04c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4056e3be transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43504f19 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x448ac8ea sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x44a6dd5d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x463c9f83 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x46a4390c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x48c7ff66 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ffaa9ea core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b697099 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ebb9716 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x61e6d088 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6744ebbe transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x685e02f4 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x69d9af88 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bbb0697 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d2e5f71 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d79cbb5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e3e4b1a transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f2e8d04 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x729db4a0 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f0f108 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ed598b9 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f15ca23 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x81c17beb target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x8adfbd5a target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f4efe30 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x908eac0e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x90d23f62 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x91bced5d transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9330d0f8 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9401e5b0 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0512500 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa35993d9 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa887f441 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8d5c6b4 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaef24d7 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xaba4090f sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xae02dc8c spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb541d399 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbaff91b6 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbeaea694 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc35f5c1f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4ff5040 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc714465e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7872786 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8130a6c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xd14e7de1 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3a288dc core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6edc6c4 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0690161 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf44a667c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf80c170e transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfab39b4c core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbdfbfa1 target_complete_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x627425ec usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x0574d9c9 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x2b8c70b5 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x03838800 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b2421ec usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39e158fe usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4200c13a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x42e4ed0a usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5b0f67ab usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6cd8d819 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x861c2daf usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbacf1a75 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2d7909b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd7fc5dc9 usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd8acf205 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfb531559 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x105590b7 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe60e40a3 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1a01ac1e mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x467d61a0 mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x580ccbd1 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x73aabd1a mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9191113c mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9f70a368 mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xabc7eaff mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbb27297c mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe6faffe0 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xeb170620 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xef67d05b mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf2571b72 mdev_get_iommu_device +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 0x42869298 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x87eb7e15 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x9ce01fab vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xa09c93a6 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0xf2ce8b81 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xfe6e04c1 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_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 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa75ff962 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc7f2440e vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x548135c4 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5db8cfab lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb48c521f devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc999d963 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x022f71f5 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6d9284a0 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7e525a96 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 0x94fb4a16 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xab920dc0 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc7557668 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 0xf8ad74f0 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x481ba8ba sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xbacf5f13 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8584912e 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 0xec601195 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x624ea131 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x297c6fcd matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x96bf1e5d g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdc26f764 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x615a4141 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x74656503 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc93c4d55 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd12aa5fe DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9c7d7341 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x961ba9b0 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0692f255 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x19a56a07 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x61ea6f26 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfc3ed0c5 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x76a250d7 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe76abe38 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x11b38ad8 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x273a6c36 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2742d4c5 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6b10304c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9cd2e499 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xb469ca6b mb862xxfb_init_accel +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 0x05150d0f omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x05400ee9 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x13c58263 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1570f5e1 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1aac9a26 dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1af0d7c0 omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1af675fb dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x23ef4522 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x289a9e8e omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2d8343e3 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3f6b9a7f omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45adda75 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x52cff88c dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x53bb59d2 omap_dss_get_overlay_manager +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 0x5c3fc29f dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5ebfa878 dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x641f4ec4 dss_mgr_disconnect +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 0x7473e6d9 omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x75db05ae omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7b25df49 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8153550a omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8bb905b7 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8c5a04b0 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9221fbd9 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa39e1db3 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4aa4b58 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc004fc9e omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc83e77ab dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xca84bc07 omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xce466b8f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd6540d7f omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x67c54d8e w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xaa6f3a61 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x35c052b5 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf179787f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x13b101d1 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x2d253b88 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x67cf5696 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x95a9175e w1_register_family +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x32d52e6c bd70528_wdt_lock +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xe1ac8610 bd70528_wdt_set +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xe3ec2515 bd70528_wdt_unlock +EXPORT_SYMBOL fs/fscache/fscache 0x03bf6d16 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x0b79c056 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0c2f97ea __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1f9efadf fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x28e5327a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x338ba5af __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x370aa035 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x39810143 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x3e049f87 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x41cafbdd fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4a90ad42 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x4f9e60f5 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5390f6c1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x55f79832 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5c5bd9cc __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x67a8c8c1 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x687e138f __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7125c17f __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x719625a5 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x735fc00a fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7faa50d7 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xa825dc0d __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xabd11f6a __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xacf66a46 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb69db95e fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xb91089ed __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xbe9f6557 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xbf0b3517 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc612d403 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc8d2212a __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcf055c3d fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd740aacf __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdeb4d4fa __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe1db8d88 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe88538ac fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xecf33a11 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xeefd59ff __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xf0752c95 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xf27080ad __fscache_unregister_netfs +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0f7e4cdc qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1f13508a qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4a33e551 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6ceaf048 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x87597a34 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xc5b29ee2 qtree_release_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be +EXPORT_SYMBOL lib/crc8 0x5a742e56 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/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x107b40fa lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0x995abb6d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3826f1f9 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3f63501a lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x45f376de lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa1f34d95 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa6f4c099 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8fc2e61 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x27a12e72 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x4f39285c unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x1228b89a register_snap_client +EXPORT_SYMBOL net/802/psnap 0x4cfb0136 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x09543ccf p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x12257c60 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1dd80dea v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x245ab5d2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3189a1dc p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3269e98a v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x35405ced p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x516fbeaa p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5ec18478 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x601de782 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x684c37a4 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x6a15cd7b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x6b00cf9c p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x8303b1b8 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8a69cab7 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x8aafeb1d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x8be490d9 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x8d2dc3d8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x8ee3c4b8 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x90196e7d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x92fe15ba p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x9579b2f5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x95b89050 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x9d72f56c p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa5039ddf p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xb7d0b8d3 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xb80d00ff p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xb89d82d0 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xbf8abf88 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xbf904cb4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcc611114 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xcef06c36 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd0d5851b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xdce824aa p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe57d8f5d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xecefda96 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xed1b765e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xee6feb16 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf28dfd53 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf5ea78a9 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xfffb927d p9_client_symlink +EXPORT_SYMBOL net/appletalk/appletalk 0x24c8632e alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x5e3c503c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x78b7bc2e atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf9b500f2 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x21c19578 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x229a2c93 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2684cf91 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x60c2ee6c vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x6e4efc69 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x85db9af0 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8641ddbd atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x9808baa9 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9f63c30a 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 0xaf7b7d60 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xba4949d5 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xdb86c1e1 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf07f4785 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0a1e2e72 ax25_listen_release +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 0x4df9f8fe ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x86ddc469 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xccb5ba0f ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xcea4cdca ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd23a4017 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe9d22375 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xedf5b85f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0717a6f0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c5dc711 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10dbbd81 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1be6b46f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fd7807b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27e830e0 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2889b7d4 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a3a4123 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32754034 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36aed98e hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3934a8bf hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4773afed bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cb8be9d hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f38f181 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x595b75b2 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6429a85d hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6663bec5 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67469324 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a9da101 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x762559c6 l2cap_chan_close +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 0x7ed5b4f4 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81874499 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8aed7be0 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91e8f4e5 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97f668b3 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c5ef6f0 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7fef361 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb13559ae l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc27d45ba bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc32cd05f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc358a369 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6978c62 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4b71bd7 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda302499 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddffae04 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe114a226 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe33fd37f l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe55c730d hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeae2670a hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec426973 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf138230b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb5b9df3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb635114 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff45901a bt_procfs_init +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0beecf56 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x299e236d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa814a774 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd1f8a21b ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1d741946 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 0x5d6b197b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x762379aa caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x83df5337 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc3e1fc89 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x3d80de9d can_sock_destruct +EXPORT_SYMBOL net/can/can 0x611c6487 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8322f7df can_send +EXPORT_SYMBOL net/can/can 0xc8ff63fc can_rx_register +EXPORT_SYMBOL net/can/can 0xe8a01e04 can_proto_register +EXPORT_SYMBOL net/can/can 0xfc669a4d can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x06f9faf5 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x07598acf ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x076082ef ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x0a11dc79 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0ea24216 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x0faa6bec ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x0fc75554 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x12f182ac ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x14884889 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x15652c40 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x175ffa30 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x17eb73e2 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x18b86a6a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x1ac6523c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1b4703f8 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x1b878511 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1dc1e313 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2466816a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2594082f osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x2ddeb6d5 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x2de4f967 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x30be73e4 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x34fb9af4 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x35b9aab6 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39073798 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x39d6c55c ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3cbc6e38 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x3cbcac55 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x40ba80eb __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x417de946 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x43567150 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4873b3d5 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4aeadff6 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x4ca9b448 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x4fd5a646 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x564612e7 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x5655b202 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x577b302e ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5bb5b495 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5ca3e812 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6380200d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x65694553 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x673d90c1 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x687f55d6 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bf2067b ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6c38aa64 ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6f088e94 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6f5004d3 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6f5c5f84 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7592fdd6 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x77a41cab ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x7be2597b ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7ec12462 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x7f504e56 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x80c51f59 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x8389721e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x86e2ec1d osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8a4301c1 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x8ab63ebb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8c32a316 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8cbcc991 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x90299f67 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x908ddd36 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x93b4ee46 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x94b06c32 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x9acebf42 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0694cb0 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xa1f444ec ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xa22af282 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa3c53f21 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa7da1828 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa9020729 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae0875a2 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2bec26a ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5bb4486 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xbac74117 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbaf97c99 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xbc1a7489 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe4c06c0 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xbe928b5c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xc4e112ab ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xca595ae9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb2701a0 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xcf2b0f17 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xcf542bfb ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xd1156f52 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd5177713 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xd7e26865 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xdb639890 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdb70c544 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xdd2c0d3d ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xde11ad3d osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xded5af66 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xdf2b8dee osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe0937408 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe1f3ffac ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xeb937245 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeecd638a ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf0c27c91 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xf3dfe007 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xfca7bcfc ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xfccbd9b6 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xfd9fb255 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xff5c746a ceph_zero_page_vector_range +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb76eb754 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xea597c88 dccp_req_err +EXPORT_SYMBOL net/dsa/dsa_core 0x26ee459e dsa_port_vid_del +EXPORT_SYMBOL net/dsa/dsa_core 0x5b141320 dsa_port_vid_add +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3b3a49b2 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5336542e wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9c6300e8 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd525dece wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfc8db022 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe7ac973 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x06c7b0f0 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x0d5fd3c7 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xa8158d3d gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x60057d9f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x80429162 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8f62ee08 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfdc5480e ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0ebd7330 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x657b9d5f arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8b4b0501 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbaa71458 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8d75c655 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x92c13334 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xab12d83b ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x25c19af8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x5278ccbc xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x76395f53 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x44bde3ae ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x463cfbf2 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d677165 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6fbd7364 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8fcc977b ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c0ad7fb ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa8e17c25 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc2ca7863 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xce0edecf ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x55b26cf0 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8c51a1ab ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb111a285 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0adf339f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xbcacd2d7 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x50854dd6 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe19418c2 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x0f88758f l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_core 0x2eddc1ba l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5cb24211 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0221c4fd lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x0e06079a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x27902cb3 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x44316660 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd3072a3d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xd7a9a4fa lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe11c88e5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xf6fff478 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x04d87e3d llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x124d23a9 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3dfeabdf llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x55318aff llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xab64ea33 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xb79bc8d9 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xfa4f3ed4 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x0422fe0e ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x07c0aed4 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0e2be89b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0f4ee40a ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x12c56eba ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x13018e77 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1410d95b __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x14f7318b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1aa5ec0f ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1b2da40e ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x1e781fd0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x1fdebe65 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x22bb684d ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x2348e05e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x23d9435b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x24477331 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x26dc83be ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x27979695 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2abee2f8 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x34b52774 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x3619ae80 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x3a01a6da ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3ccd13a7 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x45335c44 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4855d01c ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4d3453bf ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x542c6a42 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x547bac3b ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x54cce863 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x550179d6 ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x553c1c21 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5562aace ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x592e0fde ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5eee4e69 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5f69be6a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x60804937 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x60e93e59 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x670886d0 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x674205e2 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x67cb7f8f ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x67cdce6b ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6b6f8121 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6c790cb2 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6faa1cc6 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x75b390ff ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x7f42845c ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x846f00bc ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x88154ee0 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x8a035ca9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x8a9d0f76 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8b2b28a3 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x8e54e7b6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8eb663ca ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8f3869d6 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x9122b6fc ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9702f12e ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9cc376e0 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x9d52daf8 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x9f84f83f ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9fc272c9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa59e7b7e __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa73491fc __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa9514279 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb027eb7e ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb37c7807 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb4d61246 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb4ff8fbd ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xb6a3d232 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xb6b87bce ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xbbb7c932 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xc608382f ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xc98a1247 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xcb674044 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xcd2b44df ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcdc32672 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcfa41646 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd402cb88 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd56219c6 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xd9666cee ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xdb28e537 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdb9eacce ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdc3f7705 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe91794f6 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xecac7d11 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf13640ea ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf1ca7d73 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf353c639 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfa289f29 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xfc6c9189 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xfc714a99 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xfcf1d389 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfddde53f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac802154/mac802154 0x3d025381 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x59ea8c86 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x5b67b335 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x9e941d3d ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbc9712b5 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xe511a525 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe9434cf2 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf2ea63d6 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b7bce92 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0eee46e8 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x190f6b7e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x297c4de0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bb483c0 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ca0559f ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a68aa94 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x866ed92d register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x888f1a56 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cc84003 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa226b711 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3753060 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca322bb8 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd39adc92 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcc23b07 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x684cb861 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9d033c9d nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x3ab317b4 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x63c22404 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x8c310b9d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa0c5785f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa3257c40 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x14ff8e76 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2a82bf87 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x61486edb xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6981287f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6ddea620 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x90b73030 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xaffaf4ca xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xe4f476ba xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf9be0f48 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x16e47f74 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2f6ca1d5 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x324e8ead nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x3aeff34e nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x41e8d020 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x46329841 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4b08924c nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x56b058ef nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5cc97c64 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x786253a3 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x8512c982 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x87f175ac nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x8bc2364d nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9dde2ff1 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xaddd5c1b nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xb9f44564 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbc88e663 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xccd39621 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdf0fc5b1 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf268c5fd nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfee04f0a nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/nci/nci 0x05dd4bf0 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0d7e2dde nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0fe70c06 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x1f5f23d4 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x3104fa9d nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x46c7498e nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4a6783c0 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x4afb20be nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x539f3997 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x5ac29187 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x69edbf6c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x766d58b4 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x77f902ea nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x82b599ec nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x84319777 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8c99372b nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x96b201cd nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa74578e1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xad17b206 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb1bbcea9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbb43a3e0 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xc8a2b12b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcba1e963 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xd3ca7df6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd9aebf91 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdc943003 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xf4df1373 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf8a78064 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xfc3d43c6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x1062b023 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x10eb657c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x329dba95 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x3c9cabf1 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x4a6c31aa nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x539176ea nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6d201631 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x78d5e5bb nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x7c9e5b2a nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x7f16868b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x8a84ceff nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x8cb1757a nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x9e0d629e nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa394e287 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa574ea5e nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xbadd2c6c nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xbb0ae064 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc81e23a8 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xdbb38df4 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xddad1f2c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xe2371aa8 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xe6326134 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xea74bbe3 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xf5a42e80 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf7a60775 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x42312386 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa8c9aeed nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc780d429 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc9f28039 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x3e105994 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4309c947 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x4c352295 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x8bb9019f pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x9b5836d2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd0dec0ee pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe186156d phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf6f31343 phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3135b7d3 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x37719956 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x468b8481 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a930c5a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ae9f1b1 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7b5ae8fd rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8052615f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x88191138 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x97ad0416 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9d3870a2 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb31559a9 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd0d16553 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd267a19a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc16f18a rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf932737 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4fb786b rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfd241743 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0x4837b5dd sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1447715c gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x808d63e2 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe95c5f0a gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x41d85c1a xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xeb533605 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf99b154c svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x13dea2f5 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x212d4da4 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x31dbded1 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x59b27502 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x07a66c62 tls_register_device +EXPORT_SYMBOL net/tls/tls 0xcb485f55 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0xcd234a30 tls_get_record +EXPORT_SYMBOL net/wimax/wimax 0x0bd0f9a1 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x98040d51 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x08f11333 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a305f3e cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0b542b8a cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0bc7fb91 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x10934db7 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x119ef382 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x14cddf3f cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15d3755c cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1cbfb7b7 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1fbc7e3d cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x21442cb4 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2358a011 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x256aefe6 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x2815d077 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x30c9ebe9 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x34287d8e cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x348f2291 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x355ce42a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x379ceead cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x37a78de0 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x3badb316 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3be36602 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3c05dbe3 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x3c438328 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x4309552d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x455aa7a4 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x45c2eb52 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x471ecc4a regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4a2dc989 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x504d99c0 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x58310131 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x599be90f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x5e9fa133 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5eda234b regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x634a7f64 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x65ae413f cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x66caf246 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x67a6888c cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x682cf987 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x68473a4b cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c7bf244 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6d297d72 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6ec41f9f __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x71217a58 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x77692c01 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7d385bdf cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x7fb9b73c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x80e1711b cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x81a16b34 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8207116c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8428cbc5 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x8444548b cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x8b98256c cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x8d898efb cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x986c276b wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x9a9af84c cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9ac6d5b8 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x9f3f920a ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xa362d3e0 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xa84d44ed cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xac0f98f1 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xaec72482 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xafd01c9c cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xaffd32f6 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb1f3ded0 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb3887042 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbb060fdc cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbc73faa7 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbc987769 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xbcfa1027 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc1ce8184 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xca8fa7e4 ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcb54dd6b wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc334124 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xcc4fbd04 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xce1aafc9 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xce5b5c65 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd6201221 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xd7f6f362 cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xda0dd0df cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdb4d5642 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc44c0f4 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe5a1d8fb __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe8014a8e cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xe9ed1c4c ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xea72ef06 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xee2b9a85 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf03b83ce cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xf2287392 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xf42f0509 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf573ede7 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xf8d1f7b9 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfa15d218 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfb73d7b8 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/lib80211 0x0678ca6a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x397fd12a lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x616bb3e0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7de2d710 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9fbf9826 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd7add4e7 lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x8f893459 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 0x29adb7b4 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x61d34b7a 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 0xd90fdc42 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xde5fbd42 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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x22559873 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x3ea6c596 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0272276c snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0421b1a5 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3aa043db __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48d66aef snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x572b66a3 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x588f4c6e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x666106d9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x80b5dddf snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x83b3874e snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x86298e91 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9132fb24 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x92029ad5 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa386dd72 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3bd59a8 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc4ef4147 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc510c314 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xced97618 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe6f9a6fb snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf604921d snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf727350b snd_rawmidi_kernel_write +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 0xe38ec6a0 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 0x8f63334c 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 0x31f8f676 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x327ffca6 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x78723055 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x78cbe77f snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8e905756 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf83deb6 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc6b11df8 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xda8b8985 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf0b9ce25 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 0x324ca62b snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c61f163 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c7e41c4 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6e178189 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ac56dc7 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8dfad6f3 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xace1251c snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed5da577 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1a22f93 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x050011dc amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a8ef09c fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11855b43 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cb669fc avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x247c235b fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a466d22 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3773d556 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c413d93 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42b80989 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49d72d6b cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b9008bb avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca9775 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55455167 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x643d2ab4 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67d7671c amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e2de4c5 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a405b2a cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x827e0b9f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8349601c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8645ebcc amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ab2c85d fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6c3a005 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa97aa077 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3248ce7 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbfc112a9 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb8f14f4 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9b75e91 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeac72d59 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeef0f775 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeffbcae3 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf053ff2f snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7251531 cmp_connection_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x578c95c5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xfdea3cfb snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0818026d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x765d9bd1 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x79214f27 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x87652a09 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9db02b01 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xccef7a51 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe1c3a0d3 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xebf9def1 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x586a6392 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6af7a7d8 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x99cba85a snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcc720694 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd5bf61c0 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xec9e2975 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4dc422ec snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9e823634 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb79ee63e snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc2b444bf snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe3101e2c snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf1c6c5eb snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c1b0273 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40e81c2b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4cb05ef4 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c6d5254 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x665522a0 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a74c6bc snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x74d96244 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7abd75cf snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x826dd6ba snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89a0c2c6 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92dd77cc snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9c26fb7c snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa696179 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc0ee8b9 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef9b6769 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xefc2c7eb snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf2af1608 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x195838b6 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x69fdbaab snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6c71bf0e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1a83315e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e52c45b oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x46bf25e5 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4edc9696 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x512c6950 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64d2c9a1 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x73602db8 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8382b40a oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8617a531 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9f6a0a39 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4a3b655 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb444ef2c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb91ea458 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9b464f8 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc88b59be oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4177dcf oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd7d1a4ab oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xddb0cd21 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0d855d2 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf118d56a oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf55bdb2b oxygen_write32 +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4f220dfe pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9018c481 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x55232dbc tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6b6410b5 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0d0fb9a1 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6c713b88 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9f3a0a1b aic32x4_remove +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xcd490fa0 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x9a0cdbc3 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0047d86a snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00c9615f snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x055b9c9c sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x093d083c snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a5ee119 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ce223e2 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x14ed660a snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c456a81 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25f152c6 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32db38d6 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3859a131 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38c01c8a snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b4e32b7 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x448969e6 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5006a99d snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5034451d snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51985d54 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5f70ee75 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6779b251 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a49a6ee sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6cb13ec9 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7feaaa9f snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83a8c433 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85437adc sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93f4233b snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95c59469 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9906aa56 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a92815b snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa001e8fc snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0bca122 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa878a287 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad3698ac sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb5e12b2e snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfde5aee sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc844c600 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc5d89e6 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccf67610 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd30a1e48 snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd468b448 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd818f6b8 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9e48bd2 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe251f2a9 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xead9f1ac snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed095445 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0580c8f snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb66c4b2 sof_mailbox_write +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x04ed91f2 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x0037ad5d generic_fillattr +EXPORT_SYMBOL vmlinux 0x0053393b xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x00a6db0a flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x00bd8c6b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x00caa200 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e90983 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x00f4acf6 dump_truncate +EXPORT_SYMBOL vmlinux 0x00fd57d0 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x00fec856 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0109fff6 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0113f485 try_to_release_page +EXPORT_SYMBOL vmlinux 0x0114ea81 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x01215b94 padata_do_serial +EXPORT_SYMBOL vmlinux 0x013c98c6 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x013ea85b nf_getsockopt +EXPORT_SYMBOL vmlinux 0x01413de3 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017e048a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01841866 set_cached_acl +EXPORT_SYMBOL vmlinux 0x0184475d pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0189c739 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0195728b sock_efree +EXPORT_SYMBOL vmlinux 0x019899e7 logfc +EXPORT_SYMBOL vmlinux 0x019b69a4 netpoll_setup +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a9a939 vga_get +EXPORT_SYMBOL vmlinux 0x01c72108 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x01cf3aee pipe_lock +EXPORT_SYMBOL vmlinux 0x01cfc4b1 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x01de9fe0 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x01e1f532 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x01e867c6 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x02079357 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x021a5d76 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x021eb5ef mmc_remove_host +EXPORT_SYMBOL vmlinux 0x0238c997 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x023fff9e mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x02494341 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +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 0x029e4025 dev_uc_init +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a55e33 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x02a6b886 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x02aaf3a8 rtnl_notify +EXPORT_SYMBOL vmlinux 0x02aca1d9 tcp_prot +EXPORT_SYMBOL vmlinux 0x02c15aed from_kuid_munged +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x0309105c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x03123f7c follow_down +EXPORT_SYMBOL vmlinux 0x03176e86 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x031b6969 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03445367 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x03556d02 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x0356e04e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x0358e353 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03677f46 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x036e84c8 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f430a proc_symlink +EXPORT_SYMBOL vmlinux 0x0380fd76 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x039057c1 vfs_symlink +EXPORT_SYMBOL vmlinux 0x03960421 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a50c53 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03c703fe start_tty +EXPORT_SYMBOL vmlinux 0x03df8615 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04048dfe kernel_write +EXPORT_SYMBOL vmlinux 0x04252b48 follow_pfn +EXPORT_SYMBOL vmlinux 0x042671b1 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x0431f4e3 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x0432a0bc current_in_userns +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x04bd5f3e bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04c82e41 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x04ca6448 md_done_sync +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d7331b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ecec48 md_update_sb +EXPORT_SYMBOL vmlinux 0x04f695ee snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0512b489 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x051ea4b9 tty_devnum +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0528a85e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054c9a43 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x05642178 genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x056d5407 pci_request_regions +EXPORT_SYMBOL vmlinux 0x05859cb2 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x058895c1 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x058cb14c nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05ca18a2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x05e7806d seq_escape +EXPORT_SYMBOL vmlinux 0x05f4f287 vme_slot_num +EXPORT_SYMBOL vmlinux 0x060fe352 setattr_prepare +EXPORT_SYMBOL vmlinux 0x06126a5a snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0632fa51 vfs_unlink +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06387e57 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0653c599 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x0663ba44 inet_add_offload +EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x067ea780 mutex_unlock +EXPORT_SYMBOL vmlinux 0x0686ce94 has_capability +EXPORT_SYMBOL vmlinux 0x06a11191 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x06b6bcbb ip6_frag_next +EXPORT_SYMBOL vmlinux 0x06c80e16 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06cb8dc9 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x06f478ed cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x06f9b283 would_dump +EXPORT_SYMBOL vmlinux 0x0706353c of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745be44 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x07512423 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x075ac0b7 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x075ffe66 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x07688e95 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x076955eb register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x0777e72e rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x07802c74 inode_insert5 +EXPORT_SYMBOL vmlinux 0x0783bc25 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x0794ad3b ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x079c58fb xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c75cd2 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07e3cdfc flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x080019aa tcp_sendpage +EXPORT_SYMBOL vmlinux 0x08035700 scmd_printk +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x0826ec6d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x082b0b2a pci_resize_resource +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083c9366 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache +EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x086f4173 cont_write_begin +EXPORT_SYMBOL vmlinux 0x087152d9 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x0872f36d unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x0881d798 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08883515 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x08af5e47 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x08b82ebb tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x08c6f86e pci_reenable_device +EXPORT_SYMBOL vmlinux 0x08d5caea neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e7dc10 ps2_command +EXPORT_SYMBOL vmlinux 0x08ed42e3 sock_i_uid +EXPORT_SYMBOL vmlinux 0x091b587e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0941dfda neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x094eb4d9 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0960385a inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0971a2aa snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x097229da locks_free_lock +EXPORT_SYMBOL vmlinux 0x09736ffa neigh_seq_next +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09ad85a1 sort_r +EXPORT_SYMBOL vmlinux 0x09c4b0fc sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d8bb72 km_query +EXPORT_SYMBOL vmlinux 0x09dca63a hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x09dfd98c md_reload_sb +EXPORT_SYMBOL vmlinux 0x0a01c598 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x0a0e03f2 get_acl +EXPORT_SYMBOL vmlinux 0x0a19ade5 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x0a1acd2f phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x0a1cb533 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2bc083 audit_log_start +EXPORT_SYMBOL vmlinux 0x0a2c3fb2 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a4133b8 thaw_bdev +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a608515 pci_pme_active +EXPORT_SYMBOL vmlinux 0x0a6a9d88 inode_init_always +EXPORT_SYMBOL vmlinux 0x0a7f8ef8 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x0a974d82 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa51ae0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x0aa633a0 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0aa92814 key_validate +EXPORT_SYMBOL vmlinux 0x0acb8070 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae4e46e pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0ae55fba irq_to_desc +EXPORT_SYMBOL vmlinux 0x0ae95eab dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x0b12be91 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b23f3dc qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x0b26fee8 do_SAK +EXPORT_SYMBOL vmlinux 0x0b34a3df mdiobus_write +EXPORT_SYMBOL vmlinux 0x0b40d7cf _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b54aa0e kernel_getsockname +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0bb57dbd sync_file_create +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcdd611 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0bda0df8 inode_permission +EXPORT_SYMBOL vmlinux 0x0bdd38cd fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x0be1c69b uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0be68138 __devm_request_region +EXPORT_SYMBOL vmlinux 0x0c23c070 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3d3fc9 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x0c413096 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x0c446dc7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x0c4917f9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c942be0 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca596f0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x0caa3fd7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x0cbd08fc call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0ccd4a3f PDE_DATA +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0cee3630 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d16426b tty_port_init +EXPORT_SYMBOL vmlinux 0x0d2e9510 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x0d3994c4 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d42bea5 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x0d4f93a1 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5c015b mr_table_dump +EXPORT_SYMBOL vmlinux 0x0d5dadda fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x0d5f66b0 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d638720 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x0d7efa56 km_report +EXPORT_SYMBOL vmlinux 0x0d9222f7 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x0d95e030 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x0d9acbaf i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0db07bba neigh_update +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dda66df rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x0dddd645 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x0dde603d of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x0df2c6f1 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x0df49e82 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x0e06b98d security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e2fd007 register_cdrom +EXPORT_SYMBOL vmlinux 0x0e494bc5 blk_get_request +EXPORT_SYMBOL vmlinux 0x0e499b7b vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x0e4baadc pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x0e52d6e5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0e5ea74e ps2_end_command +EXPORT_SYMBOL vmlinux 0x0e7089e4 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x0e79389c blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x0e833590 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x0e84977a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x0e9514bd blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x0eadddf6 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecd42e1 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0ee4bef3 param_get_invbool +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eeb52e6 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x0ef77497 filemap_flush +EXPORT_SYMBOL vmlinux 0x0efbb6ae proc_create +EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0e065d cpu_tlb +EXPORT_SYMBOL vmlinux 0x0f0f4907 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x0f2b6130 ps2_init +EXPORT_SYMBOL vmlinux 0x0f4124d9 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0f5b4b79 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x0f7def16 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8dde4f dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb880f7 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x0fcb05fe clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe584d0 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff1bb4a devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x0ffa6478 vfs_create +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x10117398 _dev_crit +EXPORT_SYMBOL vmlinux 0x1015532b tcp_poll +EXPORT_SYMBOL vmlinux 0x102ad30f blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x102bb3d1 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x1038f879 amba_release_regions +EXPORT_SYMBOL vmlinux 0x10604255 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1070b16a elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x107792cc rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1085d5ee down_read_killable +EXPORT_SYMBOL vmlinux 0x109d0eca __vmalloc +EXPORT_SYMBOL vmlinux 0x10a8d8d8 sock_create_lite +EXPORT_SYMBOL vmlinux 0x10aab51a _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x10ae59ca configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e68e9c skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110d94e7 cdrom_open +EXPORT_SYMBOL vmlinux 0x1117976e blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x11188a94 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x112f8d14 napi_get_frags +EXPORT_SYMBOL vmlinux 0x1130daa3 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x115054da input_setup_polling +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11678126 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118a039e fqdir_init +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x119eb468 seq_puts +EXPORT_SYMBOL vmlinux 0x11c21157 scsi_device_get +EXPORT_SYMBOL vmlinux 0x11c528ac free_buffer_head +EXPORT_SYMBOL vmlinux 0x11dd8494 md_check_recovery +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e5b296 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x11ec0f24 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x11f33976 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11ff9fd1 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x1203c19d dev_addr_flush +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x121ca021 neigh_for_each +EXPORT_SYMBOL vmlinux 0x12225868 skb_queue_head +EXPORT_SYMBOL vmlinux 0x12404190 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x12541d64 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x126c385f seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x126d6aa8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x127789ea snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x127b1a8c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x127cf45d put_user_pages +EXPORT_SYMBOL vmlinux 0x128d0e1a fb_show_logo +EXPORT_SYMBOL vmlinux 0x12903615 get_cached_acl +EXPORT_SYMBOL vmlinux 0x12a152e3 skb_copy +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c360de vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x12c3a441 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12dd16c1 bd_set_size +EXPORT_SYMBOL vmlinux 0x12ef07ab simple_setattr +EXPORT_SYMBOL vmlinux 0x12ef75d1 cdev_add +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13080efb __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x130dcb0d __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x1310ea13 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x131e773e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132f82c2 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x134be57e mpage_writepage +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1378d94b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x137f5576 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x13a56a6f setup_new_exec +EXPORT_SYMBOL vmlinux 0x13a943aa bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x13b499de dquot_disable +EXPORT_SYMBOL vmlinux 0x13c40a82 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13edd472 mdio_device_free +EXPORT_SYMBOL vmlinux 0x13f02751 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14011680 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x14124902 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x14284023 bio_add_page +EXPORT_SYMBOL vmlinux 0x142f7298 single_open +EXPORT_SYMBOL vmlinux 0x1440c3c7 snd_component_add +EXPORT_SYMBOL vmlinux 0x145c7d38 bio_reset +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1463fda8 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1483f06e kernel_sendpage +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x14bcbd5b backlight_force_update +EXPORT_SYMBOL vmlinux 0x14d2782f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14dcf1e3 bdev_read_only +EXPORT_SYMBOL vmlinux 0x14ddd00b of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x14ee6bc1 backlight_device_register +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x14fcda22 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1502c7e8 iput +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x1504a60b misc_deregister +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152a013d inet_release +EXPORT_SYMBOL vmlinux 0x15303311 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1553c0ac pcim_pin_device +EXPORT_SYMBOL vmlinux 0x1562c9eb call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x156e058c clear_wb_congested +EXPORT_SYMBOL vmlinux 0x157a1e68 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x157dcd4f phy_write_mmd +EXPORT_SYMBOL vmlinux 0x15922353 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x15a8433a locks_copy_lock +EXPORT_SYMBOL vmlinux 0x15b40249 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x15b80804 pci_find_capability +EXPORT_SYMBOL vmlinux 0x15b9e1f2 register_qdisc +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c5d130 blkdev_put +EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x15e52b91 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16372266 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x163ca7e0 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x16629186 dev_change_flags +EXPORT_SYMBOL vmlinux 0x1667ee1e snd_jack_report +EXPORT_SYMBOL vmlinux 0x1683a60a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1690dce4 mdio_device_create +EXPORT_SYMBOL vmlinux 0x16a13ad2 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x16b30d84 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e72c41 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x17141fef __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x17181866 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x172728d5 _dev_emerg +EXPORT_SYMBOL vmlinux 0x1728f4d9 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x172c6d10 dst_dev_put +EXPORT_SYMBOL vmlinux 0x172d060d security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x1734ea34 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1738c19e _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x17755394 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x178658b5 bio_uninit +EXPORT_SYMBOL vmlinux 0x1786d1f3 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x17993ce0 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x17a51fc3 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x17be8cdf thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x17cd2244 brioctl_set +EXPORT_SYMBOL vmlinux 0x17e801e9 d_path +EXPORT_SYMBOL vmlinux 0x17ea439d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1800505b phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x180a3732 end_page_writeback +EXPORT_SYMBOL vmlinux 0x18127133 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free +EXPORT_SYMBOL vmlinux 0x1870b439 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x1870e09f udp_ioctl +EXPORT_SYMBOL vmlinux 0x187210b3 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x18849637 bio_put +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18d7c2aa sk_common_release +EXPORT_SYMBOL vmlinux 0x18d8a941 ip_defrag +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e6ae9a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x18fc76b3 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x19060ec3 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x191c9263 dev_close +EXPORT_SYMBOL vmlinux 0x19370db5 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x19585ace xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x195d4ac9 memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0x195edb59 generic_writepages +EXPORT_SYMBOL vmlinux 0x19623f54 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x1965a60f _dev_notice +EXPORT_SYMBOL vmlinux 0x1977f6dc phy_device_free +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199ed2ba bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x19a5c15e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x19a6695b simple_unlink +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cb8fe1 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x19ebe154 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x1a015c32 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a278aa4 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1a3b147a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x1a5510de xfrm_register_km +EXPORT_SYMBOL vmlinux 0x1a599cfe snd_jack_new +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a6799f0 tty_do_resize +EXPORT_SYMBOL vmlinux 0x1a6f01c3 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1aca3752 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0x1aeb7629 inet6_bind +EXPORT_SYMBOL vmlinux 0x1afba28f sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0a8177 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x1b1895f9 of_phy_attach +EXPORT_SYMBOL vmlinux 0x1b209f2b netlink_set_err +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b5c0d11 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7375a6 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8445f7 tty_port_open +EXPORT_SYMBOL vmlinux 0x1b87746b mmc_release_host +EXPORT_SYMBOL vmlinux 0x1b8de7ae __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x1b99efea request_key_rcu +EXPORT_SYMBOL vmlinux 0x1b9f2832 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x1ba92c27 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x1bbc6601 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x1bc4c2a5 kobject_put +EXPORT_SYMBOL vmlinux 0x1bd6ace5 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1c1c1337 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x1c20ce73 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x1c26cee9 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x1c3ba2c6 blkdev_get +EXPORT_SYMBOL vmlinux 0x1c555ee8 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6e9605 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c7854b3 param_ops_uint +EXPORT_SYMBOL vmlinux 0x1c969f81 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x1ca8a552 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x1caf4c2b wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x1cb19ab7 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cb76887 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x1cbb3640 serio_close +EXPORT_SYMBOL vmlinux 0x1cc5b243 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x1ccbb3ed pci_dev_put +EXPORT_SYMBOL vmlinux 0x1cd69abd i2c_verify_client +EXPORT_SYMBOL vmlinux 0x1ce3810b scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d25853a vme_bus_num +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d6a6473 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x1d74c177 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x1d85812c devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x1d8f3dc9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x1da39004 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x1da41523 dquot_resume +EXPORT_SYMBOL vmlinux 0x1db04e2d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de0d17f pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e037bc3 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e2bdd7d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x1e35164d skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1e4d0a92 ll_rw_block +EXPORT_SYMBOL vmlinux 0x1e6c8db5 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e71beb1 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1e7766d8 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x1e8094d9 key_put +EXPORT_SYMBOL vmlinux 0x1e8a7eb3 file_ns_capable +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e97a728 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea656a4 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee1a5e4 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ef12d57 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1efba651 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1f04be5d phy_start_aneg +EXPORT_SYMBOL vmlinux 0x1f0fdb5a devm_clk_get +EXPORT_SYMBOL vmlinux 0x1f2198a0 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x1f45e0a5 __break_lease +EXPORT_SYMBOL vmlinux 0x1f525db4 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x1f7b484b pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f83f2cd mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x1f90fd1e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x1f9ec9b5 pci_find_resource +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc23e9f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fce9522 rproc_add +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe17d4e i2c_clients_command +EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1ff1e9cf mpage_readpages +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x2002e6f0 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20657e45 iget_locked +EXPORT_SYMBOL vmlinux 0x206b2af8 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2081f1d3 bdgrab +EXPORT_SYMBOL vmlinux 0x20846110 down_killable +EXPORT_SYMBOL vmlinux 0x2090ae4b mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x20943ab2 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x20a03252 input_event +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bee733 kernel_bind +EXPORT_SYMBOL vmlinux 0x20c3535d current_time +EXPORT_SYMBOL vmlinux 0x20c75fe9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x20cde79a get_fs_type +EXPORT_SYMBOL vmlinux 0x20d22594 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20de2348 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x20f0ef40 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x20f50961 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x20fe4059 set_binfmt +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x212133db xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213f077d __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x215773ba kmap_atomic +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21713837 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x217782ad unregister_filesystem +EXPORT_SYMBOL vmlinux 0x217c2800 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x217e0d53 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x21828653 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x218ab764 kobject_del +EXPORT_SYMBOL vmlinux 0x218f3947 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x21928b1a vc_cons +EXPORT_SYMBOL vmlinux 0x219c7d3c audit_log +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c0ddb4 param_set_ullong +EXPORT_SYMBOL vmlinux 0x21cbaa02 dev_deactivate +EXPORT_SYMBOL vmlinux 0x21d6086e dev_remove_pack +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x21f9c9f3 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x221a4f43 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x221f0f24 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223c9b1e hmm_range_register +EXPORT_SYMBOL vmlinux 0x2246f722 d_lookup +EXPORT_SYMBOL vmlinux 0x22651cd1 nf_log_register +EXPORT_SYMBOL vmlinux 0x2265dff1 ip_frag_next +EXPORT_SYMBOL vmlinux 0x2276d239 put_tty_driver +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x2279bd54 dm_put_device +EXPORT_SYMBOL vmlinux 0x2282739b xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x229499b1 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d90187 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x22e154e0 __alloc_skb +EXPORT_SYMBOL vmlinux 0x22eff230 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x23009571 dev_mc_add +EXPORT_SYMBOL vmlinux 0x230e9441 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2321e0d1 module_refcount +EXPORT_SYMBOL vmlinux 0x232bd290 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x233be5cf insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x235d56f2 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2361fa8b tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2363cc4f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239dacb6 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbdeed _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23bc5dea search_binary_handler +EXPORT_SYMBOL vmlinux 0x23c17160 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x23c47137 _dev_warn +EXPORT_SYMBOL vmlinux 0x23d82dfd udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x23eac62a kill_fasync +EXPORT_SYMBOL vmlinux 0x23eb6ebb pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23eea787 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x23f1576e skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x23f54d6c consume_skb +EXPORT_SYMBOL vmlinux 0x23f9c5ce xps_needed +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23ffc5c3 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x24044b37 locks_init_lock +EXPORT_SYMBOL vmlinux 0x241cc032 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x242062c2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242141f8 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x24388165 __d_drop +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2457b372 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x246f572a netif_skb_features +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x24830e1c pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x2499118a super_setup_bdi +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b24f0a devm_clk_put +EXPORT_SYMBOL vmlinux 0x24b97378 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x24be66e7 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x24cb5729 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24ebdb42 pci_release_region +EXPORT_SYMBOL vmlinux 0x24f4093e param_ops_ullong +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250c4977 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2516b839 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527f838 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x253919f3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x253a9d6e deactivate_super +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257662db get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x257aa9b1 __quota_error +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x257d0e23 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x257db747 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25ba6f9d dma_direct_map_page +EXPORT_SYMBOL vmlinux 0x25bf6f24 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x25c1c575 neigh_lookup +EXPORT_SYMBOL vmlinux 0x25ca670d kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x25d84e18 snd_register_device +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f47f9a netdev_emerg +EXPORT_SYMBOL vmlinux 0x260e5957 key_task_permission +EXPORT_SYMBOL vmlinux 0x2610aa9e blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x261ebcd2 dget_parent +EXPORT_SYMBOL vmlinux 0x2627109f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x26349944 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x263b2c15 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x26439c65 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x264d0bf2 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x2659e7db __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x265dd497 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x26a19943 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x26a4b24d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x26af2774 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bf51d8 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x26db64ab inet6_offloads +EXPORT_SYMBOL vmlinux 0x26dd793f skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x26ec5128 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2700be5e d_add +EXPORT_SYMBOL vmlinux 0x27060cc0 dquot_alloc +EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x27270f43 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275b92b1 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277b983c tty_port_close_start +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278da03a cdev_init +EXPORT_SYMBOL vmlinux 0x2797ee65 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x27a09796 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x27a0f5a6 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x27a8b79f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x27bb1aa7 fc_mount +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27be4795 genphy_resume +EXPORT_SYMBOL vmlinux 0x27c68705 node_states +EXPORT_SYMBOL vmlinux 0x27d030fe security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281b51a1 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x2821f2b7 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x282827c4 fb_find_mode +EXPORT_SYMBOL vmlinux 0x284323db flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x284e4df3 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x286cb816 kernel_read +EXPORT_SYMBOL vmlinux 0x2873f17b lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28771610 vga_put +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x28a2f742 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x28ac75ae udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x28b260e9 dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x28dcf65d __ip_dev_find +EXPORT_SYMBOL vmlinux 0x28e5ca05 pps_register_source +EXPORT_SYMBOL vmlinux 0x28e80c37 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x28f99c0f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x291a7f32 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x292b4faf vme_irq_handler +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x295a0f31 sget_fc +EXPORT_SYMBOL vmlinux 0x2968dc08 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x298347ad netif_rx +EXPORT_SYMBOL vmlinux 0x298721ab make_kgid +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29cf13c1 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29ee34ef xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x29f1cef6 unregister_console +EXPORT_SYMBOL vmlinux 0x2a25b6df find_lock_entry +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a6cab5d pci_choose_state +EXPORT_SYMBOL vmlinux 0x2a773897 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x2a796e83 seq_putc +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa64051 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x2acfa402 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x2ad287ab elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x2ae56cc1 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x2ae967a7 flush_old_exec +EXPORT_SYMBOL vmlinux 0x2af71113 set_page_dirty +EXPORT_SYMBOL vmlinux 0x2b181e08 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x2b1b37c7 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x2b2ecb47 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x2b4ef88b inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x2b5332fa vfs_setpos +EXPORT_SYMBOL vmlinux 0x2b5ab97d _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b703a61 block_write_begin +EXPORT_SYMBOL vmlinux 0x2b80e169 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2b8db0e5 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9c7db3 prepare_creds +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb33077 vscnprintf +EXPORT_SYMBOL vmlinux 0x2bba609f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2bbb59ff snd_timer_start +EXPORT_SYMBOL vmlinux 0x2bbfed7d udp_gro_complete +EXPORT_SYMBOL vmlinux 0x2be2945a pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c217d2c __ip_options_compile +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2b8960 read_cache_page +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c37555a scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x2c3a056e devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c9d3756 vsnprintf +EXPORT_SYMBOL vmlinux 0x2c9e73dd update_region +EXPORT_SYMBOL vmlinux 0x2caaac0a simple_release_fs +EXPORT_SYMBOL vmlinux 0x2cb4dc56 mount_nodev +EXPORT_SYMBOL vmlinux 0x2cb8d956 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2cc935a9 file_modified +EXPORT_SYMBOL vmlinux 0x2cd1f040 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2cdc2074 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x2ce2478f inet_del_offload +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d0bc6ec vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2014f7 pci_release_regions +EXPORT_SYMBOL vmlinux 0x2d280d40 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3b326e mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d70948b fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x2d8420b0 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x2d8d2500 phy_attach +EXPORT_SYMBOL vmlinux 0x2d8dc9ca pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x2d8ef0a0 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da81bff _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2dc84b98 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x2dca397b inet6_protos +EXPORT_SYMBOL vmlinux 0x2dcb3eb2 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2dcc4089 dev_add_offload +EXPORT_SYMBOL vmlinux 0x2dcfc6ab scsi_init_io +EXPORT_SYMBOL vmlinux 0x2de2393c rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x2dec67cd _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x2df736e4 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x2dff8bab snd_device_free +EXPORT_SYMBOL vmlinux 0x2e18e79b take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e3575ba vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e48261e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2e4ecd9d param_set_charp +EXPORT_SYMBOL vmlinux 0x2e4f717a __icmp_send +EXPORT_SYMBOL vmlinux 0x2e54e5b7 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x2e643057 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x2e798ef3 mntput +EXPORT_SYMBOL vmlinux 0x2eaa3720 clear_inode +EXPORT_SYMBOL vmlinux 0x2ebba1ee md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x2ec0b309 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x2ec49c2c padata_do_parallel +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecad5a2 dqput +EXPORT_SYMBOL vmlinux 0x2ed1b995 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x2ee799a2 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x2ee98c74 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x2ef78cbc xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2f036795 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f07343b bio_copy_data +EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2f229316 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3f61b8 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f6ea6d2 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x2f86bca4 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x2f89731c key_revoke +EXPORT_SYMBOL vmlinux 0x2f94221e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x2f97d372 revert_creds +EXPORT_SYMBOL vmlinux 0x2f99b261 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x2fa41ac0 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x2fc376d0 unregister_netdev +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe901aa passthru_features_check +EXPORT_SYMBOL vmlinux 0x301b1db8 locks_delete_block +EXPORT_SYMBOL vmlinux 0x301c1a0d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x301e4e9c netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x302057a6 d_splice_alias +EXPORT_SYMBOL vmlinux 0x30213a78 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x30275bfb __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x30618658 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x307555ee flush_signals +EXPORT_SYMBOL vmlinux 0x3076d7a8 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x308169f6 pci_bus_type +EXPORT_SYMBOL vmlinux 0x308cbc9f dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x3090689b fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098b130 init_task +EXPORT_SYMBOL vmlinux 0x30a24643 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x30a4a233 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c36f75 seq_write +EXPORT_SYMBOL vmlinux 0x30d16226 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x30d51e2e dquot_enable +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource +EXPORT_SYMBOL vmlinux 0x30e37e40 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f25a4d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310d741a iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3144fc5c simple_rmdir +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x316253fd tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x316cfd8c pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x31750d1a ip_options_compile +EXPORT_SYMBOL vmlinux 0x31867529 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31de1a99 sock_create_kern +EXPORT_SYMBOL vmlinux 0x31e06a6c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x31e0e645 devm_release_resource +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x321fc401 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x322e96ce inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x32400849 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x3248cbf4 bdi_put +EXPORT_SYMBOL vmlinux 0x324e7646 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x329774e9 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x32b2091a dma_cache_sync +EXPORT_SYMBOL vmlinux 0x32b684ed __check_sticky +EXPORT_SYMBOL vmlinux 0x32c71c0d param_ops_short +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x330545dc nf_log_set +EXPORT_SYMBOL vmlinux 0x330accdb bdget_disk +EXPORT_SYMBOL vmlinux 0x33181b07 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x335038ec configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x3350a1b9 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x3350a261 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3352731b tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x338d7118 phy_start +EXPORT_SYMBOL vmlinux 0x3391f958 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x339f51f7 iunique +EXPORT_SYMBOL vmlinux 0x33c516ec flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x33cc8ca3 unload_nls +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e48bf8 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x33e753a3 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fac2a3 vfs_link +EXPORT_SYMBOL vmlinux 0x340ddebf dmam_pool_create +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x342d9e4e dev_get_valid_name +EXPORT_SYMBOL vmlinux 0x3447f767 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x3455970e forget_cached_acl +EXPORT_SYMBOL vmlinux 0x3463b555 input_set_capability +EXPORT_SYMBOL vmlinux 0x34665cb4 try_module_get +EXPORT_SYMBOL vmlinux 0x3479f9d0 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x347e6f9c blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x34832302 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a40283 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x34b6ad0a serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x34bb7154 __scsi_execute +EXPORT_SYMBOL vmlinux 0x34e74776 skb_dump +EXPORT_SYMBOL vmlinux 0x34e83dfe km_new_mapping +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6105c uart_resume_port +EXPORT_SYMBOL vmlinux 0x34fbeba9 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x350cbf0e param_ops_long +EXPORT_SYMBOL vmlinux 0x350e9161 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351957a0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x351a1814 uart_match_port +EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x35317fc7 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x35381bb8 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x35520887 vfs_statfs +EXPORT_SYMBOL vmlinux 0x3556113c sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35696cb2 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x35766e32 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x3591d4bf jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad60e2 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x35add8f4 devm_request_resource +EXPORT_SYMBOL vmlinux 0x35d2201e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x35d3a24f irq_set_chip +EXPORT_SYMBOL vmlinux 0x35dac914 hmm_mirror_register +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360d58f5 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361d5421 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x36450100 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x36457810 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x36595cf1 get_task_cred +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x367921c3 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x3680de23 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x368e9d9f __phy_resume +EXPORT_SYMBOL vmlinux 0x3693f851 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3695a443 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x369a2bcb __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x36a3bf62 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x36a3ed28 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x36ad1318 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x3719c69b pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3721c860 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x372656ca seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37473453 phy_stop +EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x3755660b memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x377eecb4 phy_suspend +EXPORT_SYMBOL vmlinux 0x377ef7dc xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37a75923 udp_seq_next +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37bd3f93 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d19588 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f81f2a kern_path_create +EXPORT_SYMBOL vmlinux 0x3815a4cd pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x38171d74 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381d0306 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x38218032 sock_no_connect +EXPORT_SYMBOL vmlinux 0x3821ef72 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x385c542d shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x385dd409 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x386623b4 from_kprojid +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x3885d5a6 kill_pgrp +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388f4134 simple_empty +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3896d40b generic_setlease +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a8adb0 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ae4a17 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x38c22c55 complete_request_key +EXPORT_SYMBOL vmlinux 0x38caf45c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x38d363d9 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x38d698d0 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x38d8e220 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x38e0432b mdiobus_free +EXPORT_SYMBOL vmlinux 0x38e529ea ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x38f75f17 param_set_ulong +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39455117 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39492885 finish_no_open +EXPORT_SYMBOL vmlinux 0x395eb57b eth_type_trans +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x398d3f13 mmc_get_card +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a12ca7 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x39b4d638 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c717e3 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39e1e781 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x39e92cee pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x39f6a40c __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x3a0ff991 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3a181d9b security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x3a19062b file_update_time +EXPORT_SYMBOL vmlinux 0x3a1b6e07 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x3a278cb3 sock_edemux +EXPORT_SYMBOL vmlinux 0x3a2d058b pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a55ac57 da903x_query_status +EXPORT_SYMBOL vmlinux 0x3a65ddc3 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3a7eaf1b serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3a9006f7 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x3a9d8715 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x3aada4b6 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x3ab5a638 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aca7e08 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x3acd9972 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3adbf7fc pcim_enable_device +EXPORT_SYMBOL vmlinux 0x3afbf79a path_get +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b34ab33 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x3b3eae84 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b42d635 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3b45c03f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x3b45c8ec scm_detach_fds +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b697738 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x3b6e0124 dst_init +EXPORT_SYMBOL vmlinux 0x3b71bda9 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x3b917bbf complete_and_exit +EXPORT_SYMBOL vmlinux 0x3b944cb8 noop_qdisc +EXPORT_SYMBOL vmlinux 0x3b9837aa __page_symlink +EXPORT_SYMBOL vmlinux 0x3b9dd317 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x3ba954a4 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x3bb723ef simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bbf79f8 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x3be0ca82 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf11f3c ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x3bf382de __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3c01512e inet_shutdown +EXPORT_SYMBOL vmlinux 0x3c05d55d follow_down_one +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1b2cb7 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3c339358 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c4234cc netdev_change_features +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c98070d get_tree_bdev +EXPORT_SYMBOL vmlinux 0x3cbb9926 clear_nlink +EXPORT_SYMBOL vmlinux 0x3cc5d628 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x3cd51879 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x3cdb5840 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3ce0e174 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf0797d dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x3d0bab50 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d44c398 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x3d52fb7f unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x3d561a88 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d8915d2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3d8edfef dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3d9be19d skb_tx_error +EXPORT_SYMBOL vmlinux 0x3dba3e45 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3ddeae71 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x3df4e86b iov_iter_init +EXPORT_SYMBOL vmlinux 0x3df4fceb register_netdevice +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfe74ab mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3e0e9dee netlink_unicast +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e59f0ba serio_bus +EXPORT_SYMBOL vmlinux 0x3e60caf3 vlan_for_each +EXPORT_SYMBOL vmlinux 0x3e72094b mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x3e8297a3 nla_reserve +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e984ff3 tcp_connect +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ef94377 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f1a779b jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x3f1bea29 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x3f4171d6 tty_port_close +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 0x3f74363d kthread_bind +EXPORT_SYMBOL vmlinux 0x3f75554d cpu_user +EXPORT_SYMBOL vmlinux 0x3f88c8ae refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f967cfa unix_attach_fds +EXPORT_SYMBOL vmlinux 0x3f98f9c4 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x3fa07ccd fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x3fca0c2e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3fd5bcb5 vga_tryget +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x4014c2c1 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4024a338 arp_tbl +EXPORT_SYMBOL vmlinux 0x402aa8c8 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x402d0676 mmc_request_done +EXPORT_SYMBOL vmlinux 0x40371d36 pci_get_device +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x40506be1 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x4052cb35 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x4059f54f tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x40661118 elv_rb_del +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a4bd79 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40b8c663 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x40c3a3fc neigh_event_ns +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c9618e security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x40cc3164 scsi_device_put +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr +EXPORT_SYMBOL vmlinux 0x40d522a5 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f14752 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x41089cc2 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x410cfcd7 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x4116b588 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x41287182 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x415b5cb9 pci_clear_master +EXPORT_SYMBOL vmlinux 0x416446d0 sk_stream_error +EXPORT_SYMBOL vmlinux 0x4174be22 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41a6c455 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41cf91ef seq_release +EXPORT_SYMBOL vmlinux 0x41d6322d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x41d6f075 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x4207bf00 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42304add sock_no_getname +EXPORT_SYMBOL vmlinux 0x423ddef9 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x4242c309 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424daef2 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x4257a044 key_move +EXPORT_SYMBOL vmlinux 0x4257a522 posix_test_lock +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x427d16ed inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4284049a page_address +EXPORT_SYMBOL vmlinux 0x42934b3f dm_put_table_device +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42af1ded __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x42bd968b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x42cb5f93 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x42e5efd5 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f6a356 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x42f76af8 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43089087 cdev_del +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cb4c1 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4360603e backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x4365292e set_create_files_as +EXPORT_SYMBOL vmlinux 0x4371bea5 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437b890e input_register_handler +EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43ade9b4 console_stop +EXPORT_SYMBOL vmlinux 0x43b64e7a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x43bfa557 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x43c4a68a unlock_buffer +EXPORT_SYMBOL vmlinux 0x43e0b68b xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x43e5cc63 rproc_del +EXPORT_SYMBOL vmlinux 0x43e70130 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x441f0289 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x44216515 module_put +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442a587c __serio_register_port +EXPORT_SYMBOL vmlinux 0x4435edab vm_insert_page +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x4453cbea xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4456b0d3 netif_device_attach +EXPORT_SYMBOL vmlinux 0x446305c7 __lock_page +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4464a5ab proc_set_size +EXPORT_SYMBOL vmlinux 0x4478c04a address_space_init_once +EXPORT_SYMBOL vmlinux 0x448ababb crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x448be972 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x449d9a68 iget_failed +EXPORT_SYMBOL vmlinux 0x449feb66 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x44ac7d5f iterate_dir +EXPORT_SYMBOL vmlinux 0x44bc1b70 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44cd38c0 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452c6423 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x452cfb72 inet6_getname +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454a4ad7 get_user_pages +EXPORT_SYMBOL vmlinux 0x4558a232 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x455c57e9 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x456b01e0 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x4576988b devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457f7683 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x458db3d4 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x4592f1a5 eth_header_cache +EXPORT_SYMBOL vmlinux 0x4597321c phy_validate_pause +EXPORT_SYMBOL vmlinux 0x45a47367 netdev_alert +EXPORT_SYMBOL vmlinux 0x45b389dd md_flush_request +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45d959c8 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x45daa413 param_get_ushort +EXPORT_SYMBOL vmlinux 0x45dc8368 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x45e9838a ip_setsockopt +EXPORT_SYMBOL vmlinux 0x45f29889 netdev_info +EXPORT_SYMBOL vmlinux 0x45fc1ade file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x460d3048 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4624a4a4 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46307e75 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x463ca9df flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x46437c12 mmc_start_request +EXPORT_SYMBOL vmlinux 0x464c7b1b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46da2d81 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x46e4c4e3 fb_blank +EXPORT_SYMBOL vmlinux 0x46e6c509 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x46fbe823 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475c7792 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4769f6fe mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b4f1d7 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c6eb5a keyring_clear +EXPORT_SYMBOL vmlinux 0x47c869f9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x47e2e6fd ps2_drain +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47eb7e5a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47fdecb3 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x481a81da snd_unregister_device +EXPORT_SYMBOL vmlinux 0x481f80cc iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x48208267 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4834880b drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4853579e mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b1ae27 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x48b6a451 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb80db hex2bin +EXPORT_SYMBOL vmlinux 0x48cb057c register_sysctl_table +EXPORT_SYMBOL vmlinux 0x48e3d09f pci_write_config_word +EXPORT_SYMBOL vmlinux 0x48e7bf82 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491c55e6 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x492b435d touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x49352584 fget_raw +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x4943afb9 cred_fscmp +EXPORT_SYMBOL vmlinux 0x4947d941 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x495ad6e7 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x495d867a mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x4981516d padata_free_shell +EXPORT_SYMBOL vmlinux 0x498d59e8 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x499350d0 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x49992114 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x49aa67d3 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x49baf158 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x49d3457a cpumask_any_but +EXPORT_SYMBOL vmlinux 0x49eb8815 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x4a030648 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x4a0e1bff vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4a3070f8 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x4a32a00d of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x4a37354c input_flush_device +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a74ecd2 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x4a78b409 generic_permission +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ab96411 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4abbe833 icmp6_send +EXPORT_SYMBOL vmlinux 0x4ac6b9ce md_integrity_register +EXPORT_SYMBOL vmlinux 0x4ade8b2e kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x4aeb0eab flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4af0fe20 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4af6f97d devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0ecc67 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4b1dad57 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b21d95d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x4b308962 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x4b473ec6 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b567e2e cqhci_init +EXPORT_SYMBOL vmlinux 0x4b5bac15 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x4b5e93d7 filp_open +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b63c2c4 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x4b65577e __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x4b813308 sock_register +EXPORT_SYMBOL vmlinux 0x4b916f86 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x4b933f4d mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x4b935194 vm_node_stat +EXPORT_SYMBOL vmlinux 0x4b93d2a2 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x4ba8183e input_get_keycode +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bc27c64 bmap +EXPORT_SYMBOL vmlinux 0x4bc9ec35 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4be4d09b iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bee51c7 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf55ba0 __devm_release_region +EXPORT_SYMBOL vmlinux 0x4bf819af mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c00f010 cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c33ad41 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c68c128 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4c7cfeef in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4c92298a __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4c97058f always_delete_dentry +EXPORT_SYMBOL vmlinux 0x4c9bfe15 setattr_copy +EXPORT_SYMBOL vmlinux 0x4cb785ae d_alloc +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cc73b74 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4d05a362 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1cf022 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d612cab sg_miter_start +EXPORT_SYMBOL vmlinux 0x4d633c89 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x4d634803 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x4d7201aa seq_vprintf +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d72f5a2 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4d81864d km_policy_expired +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4d9ce621 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4db30ef6 new_inode +EXPORT_SYMBOL vmlinux 0x4db81c7f netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4dbd7d25 padata_stop +EXPORT_SYMBOL vmlinux 0x4dc0c844 ping_prot +EXPORT_SYMBOL vmlinux 0x4dc9eeea bio_init +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df8d564 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x4e04333f skb_queue_tail +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e109dcd __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x4e195d1a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36f455 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e5c8dcb __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x4e632b74 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x4e67c154 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6b40ce sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e96d0c2 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4eaa460b input_unregister_device +EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4f13b3ef inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f22d6f9 completion_done +EXPORT_SYMBOL vmlinux 0x4f2c510f skb_seq_read +EXPORT_SYMBOL vmlinux 0x4f4e1bc9 register_shrinker +EXPORT_SYMBOL vmlinux 0x4f6ce915 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4f74be0d snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f87d424 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8ea501 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4f93e108 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x4fa417ce dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4faf1728 ppp_input_error +EXPORT_SYMBOL vmlinux 0x4fb4f61d find_get_entry +EXPORT_SYMBOL vmlinux 0x4fc13dae mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x4fcc7d1d genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x4fd2edb1 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x4fe41220 kfree_skb +EXPORT_SYMBOL vmlinux 0x4ff1f667 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x50067adc vm_map_ram +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500daa16 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5018fd30 netdev_update_features +EXPORT_SYMBOL vmlinux 0x50293ab5 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5056ce36 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5057e6b3 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x50666d97 d_set_d_op +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5078dd0d __block_write_full_page +EXPORT_SYMBOL vmlinux 0x50a05a36 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b3809b iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b90c6e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50e4c342 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x50ef00ab of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5108e2a1 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5135aeff vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x514b1c11 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x51538bfd __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x5157bdca d_instantiate_new +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x5180482a sk_capable +EXPORT_SYMBOL vmlinux 0x5181ae72 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x5199dd1e _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x519aaaf7 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x51a2299f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f1cc55 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52081df3 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x521acacd param_ops_string +EXPORT_SYMBOL vmlinux 0x521ebd80 kill_bdev +EXPORT_SYMBOL vmlinux 0x522f4197 __frontswap_load +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x524a8b5d pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5251c855 param_get_charp +EXPORT_SYMBOL vmlinux 0x5262eccf devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5265123f inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x526f681a iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5273986e snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52b428f0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x52c8ec41 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x52d55e71 __skb_checksum +EXPORT_SYMBOL vmlinux 0x52d6a923 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52ee2b96 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x52ef1d0e sock_alloc_file +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f29232 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x52f9ef79 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5335d0ad freeze_super +EXPORT_SYMBOL vmlinux 0x53366c5a snd_card_set_id +EXPORT_SYMBOL vmlinux 0x534c0170 sync_inode +EXPORT_SYMBOL vmlinux 0x5352b71d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x5381972b netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x53942bc5 set_groups +EXPORT_SYMBOL vmlinux 0x53bce31e snd_card_new +EXPORT_SYMBOL vmlinux 0x53bed05e iget5_locked +EXPORT_SYMBOL vmlinux 0x53c29dbb bio_chain +EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x53d02098 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x53e87f3e put_fs_context +EXPORT_SYMBOL vmlinux 0x53eb342c lock_page_memcg +EXPORT_SYMBOL vmlinux 0x53ef844d pci_write_vpd +EXPORT_SYMBOL vmlinux 0x53fef174 noop_fsync +EXPORT_SYMBOL vmlinux 0x540d70d9 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x5420a4a2 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x543bcf72 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x543c6882 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x545af4ae scsi_print_result +EXPORT_SYMBOL vmlinux 0x54685ab8 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x5473c027 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x547a40b9 read_code +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54d2a456 register_quota_format +EXPORT_SYMBOL vmlinux 0x54dfc49d dev_printk +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f80457 vme_dma_request +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5511cd24 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551cae45 input_register_device +EXPORT_SYMBOL vmlinux 0x55262342 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x554544fd __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5548f28c dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554cda2d pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5550080c pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x55515e11 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x55523b4b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x55580fc7 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5558f66b tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x556bb9a2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x5587a212 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55b13514 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x55b47e51 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x55b8b8f5 dump_skip +EXPORT_SYMBOL vmlinux 0x55bc2404 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x55cdda4f jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55fb234d __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x5607414c ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x562aac9b padata_free +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5640396e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x5645db9e mr_table_alloc +EXPORT_SYMBOL vmlinux 0x564655f0 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x564bfb35 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x564e282b security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x565d5d39 truncate_setsize +EXPORT_SYMBOL vmlinux 0x5667a277 down_timeout +EXPORT_SYMBOL vmlinux 0x5671e71b user_path_at_empty +EXPORT_SYMBOL vmlinux 0x567aa58e cdev_alloc +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569178f1 nf_log_packet +EXPORT_SYMBOL vmlinux 0x56b9d80b copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x56c77a56 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56c879f9 config_group_init +EXPORT_SYMBOL vmlinux 0x56df138f super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x56f1ca0d vc_resize +EXPORT_SYMBOL vmlinux 0x56fa1e60 component_match_add_release +EXPORT_SYMBOL vmlinux 0x57191bf6 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x57270436 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x573ded35 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x5740c6d5 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57536fa1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x579a0eb1 dst_discard_out +EXPORT_SYMBOL vmlinux 0x579b1a66 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x57a1f30b inet_getname +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d0be71 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x57dc8f0f prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x57e34e16 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57e67761 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x581a2332 dev_trans_start +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5822e081 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x58283bb8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5832ba37 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x585f3241 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x586873a0 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x586daaed padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x587ac771 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x5894f9d3 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b52fe0 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e153dc release_firmware +EXPORT_SYMBOL vmlinux 0x58e1da8d xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ea16f6 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x591dc85e path_put +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x59750e54 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x597f96ca mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x5980494f dump_align +EXPORT_SYMBOL vmlinux 0x5980ed77 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59b999dc page_get_link +EXPORT_SYMBOL vmlinux 0x59bcc9f8 drop_nlink +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 0x5a20338f bio_free_pages +EXPORT_SYMBOL vmlinux 0x5a2c6a93 dcache_readdir +EXPORT_SYMBOL vmlinux 0x5a3d648f kset_unregister +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a658cac rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x5a6fcbeb pci_restore_state +EXPORT_SYMBOL vmlinux 0x5aa6b8f5 dump_emit +EXPORT_SYMBOL vmlinux 0x5aaea7cf ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x5ab0c90d do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5ab47de8 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x5ae597cc submit_bio_wait +EXPORT_SYMBOL vmlinux 0x5ae89159 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b161378 pci_get_slot +EXPORT_SYMBOL vmlinux 0x5b1b9fec cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x5b303a44 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b37d89d tty_name +EXPORT_SYMBOL vmlinux 0x5b483387 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x5b4e8012 _dev_err +EXPORT_SYMBOL vmlinux 0x5b59f0e7 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x5b637040 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x5b828f60 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x5b8b13ba snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x5ba4bba4 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x5badbb78 string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5bb9e98d from_kuid +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x5c24b315 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x5c2b0ceb xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c431243 arp_create +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c719e18 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c8cb68b pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5ca51aa8 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x5ca922f9 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x5cb4cf8c input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cbe8735 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5cc1073d dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0x5cc28ae4 simple_lookup +EXPORT_SYMBOL vmlinux 0x5cd841b4 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5ce8d328 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5ce9a942 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5cf17890 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x5cf29553 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfaaebe pipe_unlock +EXPORT_SYMBOL vmlinux 0x5d0862f6 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x5d1442b1 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x5d249d9d hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d398408 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x5d3e08bf inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d54093d mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x5d73cc3b phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x5d7405dc phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x5d7ab977 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5d810f97 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x5d977be8 set_nlink +EXPORT_SYMBOL vmlinux 0x5da82c79 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last +EXPORT_SYMBOL vmlinux 0x5dbd6812 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd3aa46 inode_set_flags +EXPORT_SYMBOL vmlinux 0x5de04aa7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize +EXPORT_SYMBOL vmlinux 0x5de8ddb6 set_anon_super +EXPORT_SYMBOL vmlinux 0x5dec31c4 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x5e22569a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x5e52b7da sock_no_accept +EXPORT_SYMBOL vmlinux 0x5e5d2a29 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x5e5e5763 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5e689edb __sock_create +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e718620 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e72f758 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e7c8691 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8cb4ad xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebc75b5 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5f01e12f finalize_exec +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1cc404 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x5f383996 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x5f3d1fc4 discard_new_inode +EXPORT_SYMBOL vmlinux 0x5f5ec56b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x5f67a23a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5f6da45b sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5f710a37 touch_atime +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f849a69 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5f97a6f6 d_make_root +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd3673b tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x5fe6c246 snd_power_wait +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +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 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x602d9511 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x603249d0 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6061be5c icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x6069fd70 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x606cc63c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x606d3964 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x6071cae7 vfs_getattr +EXPORT_SYMBOL vmlinux 0x608ef53c devm_iounmap +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a242ac __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ab5e60 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x60b97853 set_wb_congested +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c6c0ba scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x60cceb56 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ec943c dst_destroy +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x612787bd set_device_ro +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6132ac38 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x61459d21 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61604b0f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x616ccb6b nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x616df358 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x619383e6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x61b1e451 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c29c82 __seq_open_private +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61d119fe lock_rename +EXPORT_SYMBOL vmlinux 0x61e250ec register_md_personality +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6206fd98 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6246228f capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x6249bfc8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627aacfd flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x627d4340 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628b0d33 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x629f592d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x62a669e6 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x62aac450 release_sock +EXPORT_SYMBOL vmlinux 0x62b40a26 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x62b5c162 sock_wake_async +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62f21719 misc_register +EXPORT_SYMBOL vmlinux 0x62f7098c pagecache_write_end +EXPORT_SYMBOL vmlinux 0x62f8507f devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x62fd3ea3 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x63029b08 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x630f2cb8 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6315d74a refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63199f6c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x6323439b dquot_transfer +EXPORT_SYMBOL vmlinux 0x63275086 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x635c10cc pci_map_rom +EXPORT_SYMBOL vmlinux 0x63667259 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x638e2ad1 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x638e2cbd lookup_bdev +EXPORT_SYMBOL vmlinux 0x63a31931 pci_save_state +EXPORT_SYMBOL vmlinux 0x63a5de58 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d26030 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ef28ab icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x640c81b5 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64253dbc flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x643d2e81 dev_get_flags +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x64579d1d fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x64606231 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x646df7fb __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x647b9535 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x6489e299 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x648c1ffa wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6494347e pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a0c45a of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b37cc3 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x64be23c4 simple_get_link +EXPORT_SYMBOL vmlinux 0x64f6b7f5 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x64fec0e2 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x650844da d_obtain_alias +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6510c586 amba_driver_register +EXPORT_SYMBOL vmlinux 0x651314d1 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65168ad7 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651acdcd mpage_readpage +EXPORT_SYMBOL vmlinux 0x651cb366 bio_devname +EXPORT_SYMBOL vmlinux 0x651d1269 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654ad534 qdisc_reset +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x655f61f9 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6562201c dma_pool_create +EXPORT_SYMBOL vmlinux 0x6566110b get_phy_device +EXPORT_SYMBOL vmlinux 0x65717c33 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x657f47d1 generic_fadvise +EXPORT_SYMBOL vmlinux 0x6580492e km_state_notify +EXPORT_SYMBOL vmlinux 0x658218ab neigh_app_ns +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65aa229b scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x65c1e91f of_clk_get +EXPORT_SYMBOL vmlinux 0x65cc6578 freeze_bdev +EXPORT_SYMBOL vmlinux 0x65cd4256 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x65d2e2f2 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65f938db twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x661fb7dd tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x663789e6 get_disk_and_module +EXPORT_SYMBOL vmlinux 0x6638f56e tty_unregister_device +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x664aa1cc param_set_invbool +EXPORT_SYMBOL vmlinux 0x664fb08e of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x665d5670 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0x66916be3 kunmap_high +EXPORT_SYMBOL vmlinux 0x6698d6e5 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x66b65509 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x66b7a119 page_readlink +EXPORT_SYMBOL vmlinux 0x66c900dc xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x6706f28b mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x670d4857 __nla_reserve +EXPORT_SYMBOL vmlinux 0x67229d3b vme_master_request +EXPORT_SYMBOL vmlinux 0x672b3ba5 xattr_full_name +EXPORT_SYMBOL vmlinux 0x672be94a i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x673af8dd jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x6774c4a5 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x6778d222 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x67790452 skb_checksum +EXPORT_SYMBOL vmlinux 0x6782d34a rename_lock +EXPORT_SYMBOL vmlinux 0x678c3a21 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x679d2ed4 __free_pages +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b870b5 con_is_bound +EXPORT_SYMBOL vmlinux 0x67ea76de __mdiobus_write +EXPORT_SYMBOL vmlinux 0x67ee9c13 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x67efb15d dev_uc_del +EXPORT_SYMBOL vmlinux 0x67f5b6a8 ilookup5 +EXPORT_SYMBOL vmlinux 0x6808c968 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x680ab293 param_ops_bool +EXPORT_SYMBOL vmlinux 0x681382e4 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6846ee72 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x685404cf snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x685869d4 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x6860e0e0 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x68683cd3 d_obtain_root +EXPORT_SYMBOL vmlinux 0x686e2eab __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x68741dbe invalidate_partition +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6893fb89 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a7219f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6921f4d3 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x6943c2de phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69adc5aa default_llseek +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c0554f nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x69ca0762 serio_rescan +EXPORT_SYMBOL vmlinux 0x69cc974a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x69d308a3 __do_once_done +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69df0649 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e563e5 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x69e9cbac inet_sendpage +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a06fe13 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6a345bc0 block_commit_write +EXPORT_SYMBOL vmlinux 0x6a40bbcb xfrm_input +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a6eb79c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6a8613c6 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x6a91ce5d key_invalidate +EXPORT_SYMBOL vmlinux 0x6a94785f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6aae6a6d hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0x6abe056a eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6ad02a3d dma_supported +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af4c9e0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b0ad716 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x6b1d2dc8 dput +EXPORT_SYMBOL vmlinux 0x6b246c19 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b322fbd __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b5f02a1 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b66dcba xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6b74dfed try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x6b7bf880 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6b7c9d8e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b99b9f5 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x6bafd014 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x6bbc6782 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6bbf1d8a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcdc1f9 netdev_state_change +EXPORT_SYMBOL vmlinux 0x6bdb35c3 bioset_exit +EXPORT_SYMBOL vmlinux 0x6c0820b5 d_move +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c2c084b flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6a11f4 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x6c7eb7ae d_genocide +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c8159cf wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6c848c35 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x6caddd0e sk_net_capable +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb59fae nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x6cbb5199 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x6cbdbf03 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce0539e module_layout +EXPORT_SYMBOL vmlinux 0x6cefee85 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d0792f5 free_netdev +EXPORT_SYMBOL vmlinux 0x6d0a82d7 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2fa3a5 fb_class +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d391ced call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x6d3c8578 __block_write_begin +EXPORT_SYMBOL vmlinux 0x6d59035d can_nice +EXPORT_SYMBOL vmlinux 0x6d63dcaa devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d784a6f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d8f7123 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x6d98ad9e sk_ns_capable +EXPORT_SYMBOL vmlinux 0x6db94956 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x6dc35782 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd46147 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x6de353e5 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x6dec0b21 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df1fc08 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x6df92243 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6e0c41ac jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x6e44581e devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e503476 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x6e525b80 bd_start_claiming +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e79d728 inode_init_once +EXPORT_SYMBOL vmlinux 0x6e915a89 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6e9767d3 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec429b4 __neigh_create +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ed89c35 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6edbc0e6 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x6ee3ccc6 generic_make_request +EXPORT_SYMBOL vmlinux 0x6ef6c992 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f078ed4 config_item_get +EXPORT_SYMBOL vmlinux 0x6f17152b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6f1739a5 single_release +EXPORT_SYMBOL vmlinux 0x6f2aa85a posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6f3e3ddd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x6f4b33e5 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x6f749938 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f826be6 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x6f86d746 empty_aops +EXPORT_SYMBOL vmlinux 0x6f8730d3 __inet_hash +EXPORT_SYMBOL vmlinux 0x6f929055 fs_bio_set +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fc0f1a2 poll_initwait +EXPORT_SYMBOL vmlinux 0x6fc3558e init_pseudo +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fe0ec45 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x6feb1b18 devm_free_irq +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70026677 kill_anon_super +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x700c1c1c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702dc86c iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x703947bd __d_lookup_done +EXPORT_SYMBOL vmlinux 0x7057a8dc get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7075ea1b bdi_register +EXPORT_SYMBOL vmlinux 0x70a4328d vme_irq_request +EXPORT_SYMBOL vmlinux 0x70c77932 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x70cfab65 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x70dcf574 nobh_write_end +EXPORT_SYMBOL vmlinux 0x70dfddac proto_register +EXPORT_SYMBOL vmlinux 0x70e8da9b rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x70eb9626 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712e06d9 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x71323fd5 config_item_put +EXPORT_SYMBOL vmlinux 0x7132fb9b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x713e2dcf xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x714ca6bb __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x715da569 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x71671e70 nand_bch_init +EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71767909 prepare_binprm +EXPORT_SYMBOL vmlinux 0x71839119 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x71880313 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x71a0483c sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a8cd7a nf_log_trace +EXPORT_SYMBOL vmlinux 0x71b3dd9b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x71b8cc51 mount_bdev +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e72d37 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x71ef52ac alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x71f96a85 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x722fdf68 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725709be seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x725fea20 mdio_device_register +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x72b595a9 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ec1195 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x72fc605a serio_reconnect +EXPORT_SYMBOL vmlinux 0x72fca2b2 put_disk_and_module +EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x73149fc0 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x731aa226 d_delete +EXPORT_SYMBOL vmlinux 0x73327c55 dev_open +EXPORT_SYMBOL vmlinux 0x733f1930 __kfree_skb +EXPORT_SYMBOL vmlinux 0x734e4d07 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735f33b0 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x7375b7f2 write_cache_pages +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73a251b5 padata_start +EXPORT_SYMBOL vmlinux 0x73b1b4e8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e63784 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x73fcfb75 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x740c1d74 __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741bd099 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x741d2d27 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7425fe02 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x74296026 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7433de70 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x74402363 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x7464b616 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7472cf4c backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7479e1c9 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x747bb072 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x749b5850 user_revoke +EXPORT_SYMBOL vmlinux 0x74ae2728 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d9e113 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fa9cc6 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x74ffc08e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75192710 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x754f348a complete_all +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x756a1f8d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x757f2655 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x758f1c77 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x75900854 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x75a3981a of_find_property +EXPORT_SYMBOL vmlinux 0x75ab24ef msm_pinctrl_dev_pm_ops +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 0x75f132f1 empty_zero_page +EXPORT_SYMBOL vmlinux 0x75f5df83 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x7607c5b6 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76173f89 dev_addr_del +EXPORT_SYMBOL vmlinux 0x76174234 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x761cb4af snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x762a98e2 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x763ab6c3 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x76420ae3 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7657f197 rio_query_mport +EXPORT_SYMBOL vmlinux 0x76661035 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766e7885 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x76734de4 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x767f1d08 noop_llseek +EXPORT_SYMBOL vmlinux 0x769cd548 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a8d289 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x76ad9183 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x76c7240d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x76c8d3fb find_vma +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76fb3759 nf_log_unset +EXPORT_SYMBOL vmlinux 0x77097d15 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x772cd2a9 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x77315049 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x77401999 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x7755b704 input_match_device_id +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77924fc2 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779e6f5f serio_open +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77be106a __scm_send +EXPORT_SYMBOL vmlinux 0x77c1e115 proc_create_data +EXPORT_SYMBOL vmlinux 0x77ceab19 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x77e0bfe3 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ecd492 __lock_buffer +EXPORT_SYMBOL vmlinux 0x77edd793 phy_driver_register +EXPORT_SYMBOL vmlinux 0x77f6b96f kmem_cache_create +EXPORT_SYMBOL vmlinux 0x77f6c690 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7817a176 fqdir_exit +EXPORT_SYMBOL vmlinux 0x782583c9 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7840b111 tso_start +EXPORT_SYMBOL vmlinux 0x785b50c6 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x78675efe mpage_writepages +EXPORT_SYMBOL vmlinux 0x7868b3b7 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x786fad9e migrate_page_copy +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7885ffd5 cdev_device_add +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a6c0a1 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x78b1070f __dquot_transfer +EXPORT_SYMBOL vmlinux 0x78b3ebd1 genl_notify +EXPORT_SYMBOL vmlinux 0x78beec79 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x78db612c kernel_listen +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ea1bbf blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x78f50629 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x790014d7 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x7902959f bh_submit_read +EXPORT_SYMBOL vmlinux 0x790ac8a4 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7933010f config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x793f927e sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x7942e64c pci_get_subsys +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x79484a38 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x795f79dd pci_assign_resource +EXPORT_SYMBOL vmlinux 0x79685cb6 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x796eeb50 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x79818121 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x79a0d080 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x79bbd578 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x79d4fa79 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x79f9fc8a ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x79fb23cb phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0e6f46 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a5ddb76 pci_request_irq +EXPORT_SYMBOL vmlinux 0x7a5f2138 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x7a622671 qdisc_put +EXPORT_SYMBOL vmlinux 0x7a779efc blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7a8e29c1 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aacc2ae i2c_release_client +EXPORT_SYMBOL vmlinux 0x7aafe7a9 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7ab17077 read_cache_pages +EXPORT_SYMBOL vmlinux 0x7ab3915f skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac089d9 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x7ac970b4 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad50e98 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade9187 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7ae9056a xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b144dc3 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7b20b2ec bdget +EXPORT_SYMBOL vmlinux 0x7b219ebf xfrm_state_free +EXPORT_SYMBOL vmlinux 0x7b27e898 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b331993 param_set_bool +EXPORT_SYMBOL vmlinux 0x7b4f34ec seq_lseek +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7e49fe bdi_register_va +EXPORT_SYMBOL vmlinux 0x7b900ed8 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x7ba1300a __kernel_write +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7ba67c73 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x7bb2a8bf unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7bdfd231 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x7be50fae config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7be76ccb snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x7bf56bdc mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x7bfa74b7 open_exec +EXPORT_SYMBOL vmlinux 0x7c04b696 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0x7c10fb76 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x7c11d635 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order +EXPORT_SYMBOL vmlinux 0x7c34d756 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c631b7a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7c797b76 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x7c7bee82 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x7c8c0fe3 __breadahead +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c8fd0dc qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7c91a397 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x7ca43262 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc5e70e tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7cc851e3 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +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 0x7d0dd84f devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x7d286834 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7d474d41 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7d4ac937 param_set_short +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5a3ecb nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7d5efabd ata_dev_printk +EXPORT_SYMBOL vmlinux 0x7d62583a rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x7d7accbb zpool_register_driver +EXPORT_SYMBOL vmlinux 0x7daaa479 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x7dad26e2 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbfbcf1 __nla_put +EXPORT_SYMBOL vmlinux 0x7dc31bb2 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7dd356b6 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7dd43e30 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfb43e3 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7e0bb881 file_remove_privs +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e19cbb9 migrate_page_states +EXPORT_SYMBOL vmlinux 0x7e1f08aa snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x7e2167a5 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e32e7c7 irq_stat +EXPORT_SYMBOL vmlinux 0x7e3536a4 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x7e3bb6c9 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x7e42bc08 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7e533655 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7e54389e blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x7e6f671e unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x7e7d251b snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x7ebdf718 get_gendisk +EXPORT_SYMBOL vmlinux 0x7ef0ef30 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x7ef8bd9b tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7f373327 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7f514d28 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fb9f377 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x7fc32a77 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fc3a000 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd1d007 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7fd22d43 pci_iomap +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7ff435ba sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7fff1b8a wireless_send_event +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x80156b65 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x801a36bd sock_i_ino +EXPORT_SYMBOL vmlinux 0x8026cfdc sk_dst_check +EXPORT_SYMBOL vmlinux 0x8031acfe dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x80328cbb of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x8036d2e6 ata_port_printk +EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages +EXPORT_SYMBOL vmlinux 0x805a7243 get_tz_trend +EXPORT_SYMBOL vmlinux 0x805fcbd9 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x80601d33 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x807a010d rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x80c43765 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le +EXPORT_SYMBOL vmlinux 0x80c9afe4 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ccc669 tty_throttle +EXPORT_SYMBOL vmlinux 0x80d06371 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e6dc0d rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x80f7198e __module_get +EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8120b3da path_nosuid +EXPORT_SYMBOL vmlinux 0x8134a50d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816b7d7b imx_dsp_ring_doorbell +EXPORT_SYMBOL vmlinux 0x816f33a9 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x817d8de0 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818c8710 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x819862b7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x819ce422 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81c40deb eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f38e4b skb_copy_header +EXPORT_SYMBOL vmlinux 0x81ff1ff8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x81ffde56 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x82043dc8 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82193a97 __krealloc +EXPORT_SYMBOL vmlinux 0x821d9094 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x8224c646 seq_printf +EXPORT_SYMBOL vmlinux 0x8229b4ba __frontswap_test +EXPORT_SYMBOL vmlinux 0x822b338b phy_register_fixup +EXPORT_SYMBOL vmlinux 0x822d0072 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x825af634 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x8265b302 kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0x826b5184 __frontswap_store +EXPORT_SYMBOL vmlinux 0x82740db7 snd_timer_stop +EXPORT_SYMBOL vmlinux 0x8275ae1e blk_execute_rq +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8281be22 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x828fb0fb xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x829a6412 set_user_nice +EXPORT_SYMBOL vmlinux 0x82a1cd35 sound_class +EXPORT_SYMBOL vmlinux 0x82aec1c7 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x82d76a70 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x82dda7a3 may_umount_tree +EXPORT_SYMBOL vmlinux 0x82efbea2 blk_queue_split +EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x82ff78c5 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x8303a811 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8321fae3 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x83289469 device_add_disk +EXPORT_SYMBOL vmlinux 0x8329a803 commit_creds +EXPORT_SYMBOL vmlinux 0x8336d9f4 key_type_keyring +EXPORT_SYMBOL vmlinux 0x833a05cd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x833adbcc read_dev_sector +EXPORT_SYMBOL vmlinux 0x833c9cdc tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x834d3918 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x834df25c phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8362cbb5 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x8377fc0d down_write_killable +EXPORT_SYMBOL vmlinux 0x83787787 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x837ce003 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x839374bc blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x83a2e297 cqhci_resume +EXPORT_SYMBOL vmlinux 0x83c46599 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify +EXPORT_SYMBOL vmlinux 0x83d2a0b0 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x83f9c2ff netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x84115c2e pcim_iomap +EXPORT_SYMBOL vmlinux 0x84178664 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x8417f54e elv_rb_add +EXPORT_SYMBOL vmlinux 0x8419069a may_umount +EXPORT_SYMBOL vmlinux 0x842df978 phy_attached_info +EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table +EXPORT_SYMBOL vmlinux 0x84434fac qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table +EXPORT_SYMBOL vmlinux 0x8453c38a dev_uc_flush +EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase +EXPORT_SYMBOL vmlinux 0x84659677 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x846934c5 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x847540dc napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x849052dc sync_blockdev +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84d5403f of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x84f88972 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x85012874 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x850cc08e dev_set_group +EXPORT_SYMBOL vmlinux 0x85439836 inet_select_addr +EXPORT_SYMBOL vmlinux 0x854c688c netif_napi_del +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85501ad2 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857fe60a param_set_long +EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x858dfecd scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x858e6e0b of_get_property +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a8179d hmm_range_unregister +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bc0564 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x85c368be unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x86013a0c __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x861d2952 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x862bc663 memset16 +EXPORT_SYMBOL vmlinux 0x862d2f01 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863d571f hmm_range_fault +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865b8af1 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x865f4b15 block_write_end +EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc +EXPORT_SYMBOL vmlinux 0x866f0a71 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8690bc6b skb_split +EXPORT_SYMBOL vmlinux 0x8699d1a7 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x86b89ee0 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x86c65384 I_BDEV +EXPORT_SYMBOL vmlinux 0x86c94539 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x86d025ae mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x86dc270c tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x86e17132 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec +EXPORT_SYMBOL vmlinux 0x86eb737f dentry_open +EXPORT_SYMBOL vmlinux 0x86ef5505 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8707537b generic_write_end +EXPORT_SYMBOL vmlinux 0x870bbe6b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x87150913 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x871ea98e vlan_vid_del +EXPORT_SYMBOL vmlinux 0x87214f82 seq_open +EXPORT_SYMBOL vmlinux 0x872f8705 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x87310bc1 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x87354994 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x876b5b0f tcf_idr_create +EXPORT_SYMBOL vmlinux 0x876c7c7b rproc_boot +EXPORT_SYMBOL vmlinux 0x877816cb dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x87ecd7d9 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x880027e1 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8808de7f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x881010a9 dcb_getapp +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x885342de ptp_clock_register +EXPORT_SYMBOL vmlinux 0x886b1059 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88878e1b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x888e17c8 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x88afe652 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88b469f4 omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x88d0f4d5 input_release_device +EXPORT_SYMBOL vmlinux 0x88d5eccd mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88df4605 bio_split +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e983ae kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x88fe0937 dev_addr_init +EXPORT_SYMBOL vmlinux 0x890de126 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0x8931b945 __netif_schedule +EXPORT_SYMBOL vmlinux 0x8934da1a __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x8938ff92 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x893d8f94 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x893e789b __lookup_constant +EXPORT_SYMBOL vmlinux 0x8943df84 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x894950c3 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x89552aba dma_set_mask +EXPORT_SYMBOL vmlinux 0x89721bb2 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x89845c50 generic_write_checks +EXPORT_SYMBOL vmlinux 0x89850555 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x899bb566 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0x899f06ff thaw_super +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c9672b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x89e82ed4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x89fdb7e6 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x89ff6fef configfs_register_group +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a264890 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8a3566b9 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x8a3784dc __xa_alloc +EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase +EXPORT_SYMBOL vmlinux 0x8a45234e input_allocate_device +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4c8a3e kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a569a94 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8df23e do_splice_direct +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa02e42 drop_super +EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x8ab2806c rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x8abde868 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8adfd84d vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x8ae0b4ca pcie_get_mps +EXPORT_SYMBOL vmlinux 0x8ae8f157 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b01a590 path_has_submounts +EXPORT_SYMBOL vmlinux 0x8b1f1279 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x8b2a925c devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x8b4588bc rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x8b460122 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x8b4bc210 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8b524ee4 register_gifconf +EXPORT_SYMBOL vmlinux 0x8b52e9db mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b664372 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8b66fbbe md_write_start +EXPORT_SYMBOL vmlinux 0x8b6aea03 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8847e4 give_up_console +EXPORT_SYMBOL vmlinux 0x8b8ebcdf i2c_use_client +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9db1f9 tcf_block_get +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba02dad mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x8ba234c8 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8bac3cbe mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x8bb839a0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x8bb8a113 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x8bc866c3 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x8bcfb99a path_is_under +EXPORT_SYMBOL vmlinux 0x8bd3044f __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8beb5ebe dev_get_stats +EXPORT_SYMBOL vmlinux 0x8beb6fb8 of_translate_address +EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring +EXPORT_SYMBOL vmlinux 0x8bf9cdd5 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x8bfe461d dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x8c0f4b39 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8c10147c nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0x8c27e697 nf_reinject +EXPORT_SYMBOL vmlinux 0x8c2806de i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x8c396df3 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x8c431030 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x8c56115f lease_modify +EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8c77fecd ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x8c7decfa blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x8ca17eb6 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x8ca3585f phy_device_create +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ce01290 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table +EXPORT_SYMBOL vmlinux 0x8ce1c038 omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x8cfcd545 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x8d16d79b mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x8d26b23c tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x8d312b5e xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8d5410fc bio_clone_fast +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5847fc pci_enable_device +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d923e4f fb_pan_display +EXPORT_SYMBOL vmlinux 0x8d929f91 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x8d9ce9a2 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x8da113be vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x8da7e928 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x8dac2a81 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x8dca072e cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x8dcbfcf2 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node +EXPORT_SYMBOL vmlinux 0x8e04267a __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x8e116a88 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x8e2cc86f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8e3139ff d_rehash +EXPORT_SYMBOL vmlinux 0x8e3f495c __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8e4cc275 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x8e5e7b8d phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed +EXPORT_SYMBOL vmlinux 0x8eb0d596 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed4a3ed sock_alloc +EXPORT_SYMBOL vmlinux 0x8edbef13 __brelse +EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8edd4235 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x8ee2470a path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x8ef6fc2a phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f1c3bb8 task_work_add +EXPORT_SYMBOL vmlinux 0x8f341f0f param_get_string +EXPORT_SYMBOL vmlinux 0x8f3625fe _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x8f42514d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x8f467439 send_sig_info +EXPORT_SYMBOL vmlinux 0x8f4a6422 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5a0f97 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f907a7a register_sysctl +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9db8d4 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x8fc7859e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8fce1937 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x8fcfd564 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update +EXPORT_SYMBOL vmlinux 0x8feb765e of_get_next_parent +EXPORT_SYMBOL vmlinux 0x8fee6c77 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x902e8962 __put_cred +EXPORT_SYMBOL vmlinux 0x903d51c9 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x904a3416 override_creds +EXPORT_SYMBOL vmlinux 0x90588b1c __sb_start_write +EXPORT_SYMBOL vmlinux 0x9058b199 tty_set_operations +EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x906406b6 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x906446ef snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x90699530 blk_get_queue +EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x90766303 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9083ebc8 touch_buffer +EXPORT_SYMBOL vmlinux 0x90888566 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x908900be filp_close +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cc63a4 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x90e81aba irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x911225f3 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x911df72d md_register_thread +EXPORT_SYMBOL vmlinux 0x91399a47 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x9155b345 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x915d50c6 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x919b196b __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x91aa8a04 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c56293 key_unlink +EXPORT_SYMBOL vmlinux 0x91c8f1ca tty_write_room +EXPORT_SYMBOL vmlinux 0x91ce9dd5 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x91f030c3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x91f61eb3 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x9212b0f6 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9234b161 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923ea194 __xa_insert +EXPORT_SYMBOL vmlinux 0x9241c329 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x925a77dc inet6_del_offload +EXPORT_SYMBOL vmlinux 0x925e11c9 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x9268c1b6 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x928cb6ce crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x929a10e6 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x92aceee6 request_firmware +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c9f928 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x92cdb5aa netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f1e075 __bforget +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x93386723 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x933fae37 pci_dev_get +EXPORT_SYMBOL vmlinux 0x933ff583 udp_disconnect +EXPORT_SYMBOL vmlinux 0x934685e8 ns_capable +EXPORT_SYMBOL vmlinux 0x935d4d05 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x936b9822 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x93713086 sg_split +EXPORT_SYMBOL vmlinux 0x93753dc0 param_get_int +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9384d1f9 vfs_get_link +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free +EXPORT_SYMBOL vmlinux 0x93be297d security_path_rename +EXPORT_SYMBOL vmlinux 0x93c56d35 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set +EXPORT_SYMBOL vmlinux 0x93eac9d7 amba_find_device +EXPORT_SYMBOL vmlinux 0x93eb64a0 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x94205154 vm_event_states +EXPORT_SYMBOL vmlinux 0x9425caca _raw_write_lock +EXPORT_SYMBOL vmlinux 0x942b5ff4 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x943b9131 __destroy_inode +EXPORT_SYMBOL vmlinux 0x943dc60e eth_header_parse +EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness +EXPORT_SYMBOL vmlinux 0x947927f5 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x948b0f6b send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94afdced tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x94b36d3b adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x94b86dcd scsi_register_interface +EXPORT_SYMBOL vmlinux 0x94b9596f vfs_llseek +EXPORT_SYMBOL vmlinux 0x94ba02f9 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94bfb7cb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x94ccec58 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x94d5df1a build_skb +EXPORT_SYMBOL vmlinux 0x94d66bfe efi +EXPORT_SYMBOL vmlinux 0x94ed56c5 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x94f4b9b9 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x94f9b472 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x95094a3c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9515195f phy_disconnect +EXPORT_SYMBOL vmlinux 0x95255588 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x95274777 snd_info_register +EXPORT_SYMBOL vmlinux 0x95297072 ether_setup +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955b35cc tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x955cc2a8 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x95613c8f udp_poll +EXPORT_SYMBOL vmlinux 0x9565f2bb arp_xmit +EXPORT_SYMBOL vmlinux 0x95a506b1 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x95ad881f vme_slave_request +EXPORT_SYMBOL vmlinux 0x95aff1c5 ata_print_version +EXPORT_SYMBOL vmlinux 0x95b8b367 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x95ccbf1a sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x95d3d918 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95de8394 d_find_alias +EXPORT_SYMBOL vmlinux 0x95e4bd40 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x95e631d5 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x95e9f9b2 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x95edab57 nla_put +EXPORT_SYMBOL vmlinux 0x95f4bca3 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x95f4f16d generic_block_bmap +EXPORT_SYMBOL vmlinux 0x9649acc8 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9663df88 param_set_uint +EXPORT_SYMBOL vmlinux 0x96885d83 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969c5ca3 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x96a5ac02 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x96b47a13 vme_irq_free +EXPORT_SYMBOL vmlinux 0x96b52aec pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f3dd6f mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x9700e831 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x9702bf67 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x970604a3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work +EXPORT_SYMBOL vmlinux 0x970f894d devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9726c007 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x972a17db mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x9736908b param_get_bool +EXPORT_SYMBOL vmlinux 0x973c5636 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x9768a48c qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x976ee585 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x97780655 inet_frags_init +EXPORT_SYMBOL vmlinux 0x977e1033 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x9783486d xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979362a4 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x9797a918 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979f23e9 mount_subtree +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97d1af34 should_remove_suid +EXPORT_SYMBOL vmlinux 0x97dab113 udplite_prot +EXPORT_SYMBOL vmlinux 0x97ebbb69 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x97f7f3c7 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x980212d6 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x98130352 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x98135508 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x98157b00 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x98242d96 key_link +EXPORT_SYMBOL vmlinux 0x9826d3b4 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x982ecfac register_framebuffer +EXPORT_SYMBOL vmlinux 0x9836bacf skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x98491750 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor +EXPORT_SYMBOL vmlinux 0x98a1f075 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98a38d31 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x98b11aaa sock_kmalloc +EXPORT_SYMBOL vmlinux 0x98bc6e8e input_set_keycode +EXPORT_SYMBOL vmlinux 0x98bfa21b genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x98c3f649 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x99090b37 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990c6521 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9939804e sock_no_listen +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x99417f32 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9959b87a nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all +EXPORT_SYMBOL vmlinux 0x998115bd mmc_can_trim +EXPORT_SYMBOL vmlinux 0x998bb6ee iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b4111d tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99e65e0e netdev_crit +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a12d07b sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x9a167087 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2a0597 done_path_create +EXPORT_SYMBOL vmlinux 0x9a3fe7d8 sg_miter_next +EXPORT_SYMBOL vmlinux 0x9a42448a __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9a4aca5f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x9a52dcd4 kmap_to_page +EXPORT_SYMBOL vmlinux 0x9a564c13 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6155f9 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x9a642c53 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x9a7099b2 seq_pad +EXPORT_SYMBOL vmlinux 0x9a7289a1 __scm_destroy +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec +EXPORT_SYMBOL vmlinux 0x9aa698ab cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac16a74 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9acb8066 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x9acbd075 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9ad20fab input_register_handle +EXPORT_SYMBOL vmlinux 0x9af61a1e ilookup +EXPORT_SYMBOL vmlinux 0x9afbba06 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9b03a963 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3e8fb3 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b69cbce scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9be81612 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x9c0ca34d devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x9c561eb3 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x9c573a8f rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x9c586100 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x9c5d1d67 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9c6038bc md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9c667a9b dquot_quota_on +EXPORT_SYMBOL vmlinux 0x9c740eb3 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9ca0332f dquot_initialize +EXPORT_SYMBOL vmlinux 0x9ca59fa3 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbc4eee jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x9ccfffb3 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x9cdc7b85 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14f6f8 generic_perform_write +EXPORT_SYMBOL vmlinux 0x9d242a7d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9d2d895f genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9d531249 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x9d5603fc mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d68d35a skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x9d84c28d buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x9d9a8c76 processor +EXPORT_SYMBOL vmlinux 0x9da0c057 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9df40d30 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9df619ec __put_page +EXPORT_SYMBOL vmlinux 0x9df65408 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x9e0297b6 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1eae55 sget +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5bf086 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e62c720 dev_mc_init +EXPORT_SYMBOL vmlinux 0x9e6313db netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x9e65ad7d fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e6eee98 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9e73b798 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9e9d19d6 blk_rq_init +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea35eda vfs_readlink +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed39a54 down_trylock +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee1d60b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x9eea94c9 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9f0667d5 revalidate_disk +EXPORT_SYMBOL vmlinux 0x9f1d6011 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x9f1f3b02 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9f367dcb cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x9f3e4180 __invalidate_device +EXPORT_SYMBOL vmlinux 0x9f416ecb tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4880e3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x9f4f61fc nf_log_unregister +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f52092a seq_path +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5fefc4 mmc_free_host +EXPORT_SYMBOL vmlinux 0x9f763940 clk_get +EXPORT_SYMBOL vmlinux 0x9f8c03ac dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x9f959e48 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa296b7 make_kprojid +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fcf2d1b nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x9fdc9f1c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa008143d jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xa037ec41 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xa0427f5d of_get_parent +EXPORT_SYMBOL vmlinux 0xa042d4be of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04bbf43 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa073f34b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xa07d5c3f bio_advance +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d0e18 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa099f731 skb_pull +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b112c3 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xa0b8c0f1 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa0d666be edac_mc_find +EXPORT_SYMBOL vmlinux 0xa0d7ff3c vfs_get_super +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e82b64 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fc470d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10b5284 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xa11a8d96 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa15a8959 register_sound_special +EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa174d8fe dns_query +EXPORT_SYMBOL vmlinux 0xa175248f skb_append +EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue +EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa1ac60b7 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa1add648 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xa1b07db2 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa1bab14c reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1fc33a8 f_setown +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa22389c5 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa23cc6e4 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xa24491bf ida_free +EXPORT_SYMBOL vmlinux 0xa24eeadf reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa250bc4c dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2785906 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2973d0f filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xa29985e2 of_dev_put +EXPORT_SYMBOL vmlinux 0xa299e030 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0xa29cce3e sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xa2a7db7a tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa2bd77a0 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xa2bf14ef xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xa2de77fb fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xa2f099f3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xa2fdb89c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa32356d6 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xa328de78 param_set_int +EXPORT_SYMBOL vmlinux 0xa330b30a pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xa369635a of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xa36edfe4 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa380b9dc dev_mc_del +EXPORT_SYMBOL vmlinux 0xa387f2a1 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0xa38d103a mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xa392e43e rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa393d0ab padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xa396538e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xa398bee7 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free +EXPORT_SYMBOL vmlinux 0xa3ac158f sg_alloc_table +EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa4266495 from_kgid +EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xa43d4278 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa455371f generic_listxattr +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa486f1f1 scsi_add_device +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4a12a7b ppp_unit_number +EXPORT_SYMBOL vmlinux 0xa4a653b3 file_open_root +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xa4bc5d2c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa4ebc6bb n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xa4f4b5e4 mmput_async +EXPORT_SYMBOL vmlinux 0xa4fe72b8 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa514940d __pagevec_release +EXPORT_SYMBOL vmlinux 0xa52c9061 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xa532a100 tcp_mmap +EXPORT_SYMBOL vmlinux 0xa538ec2f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xa53ec9bb pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xa54a279b get_super +EXPORT_SYMBOL vmlinux 0xa5500a68 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xa56b8399 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xa57c9f51 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa58edfc6 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xa5950907 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xa5a9eef8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xa5bee35d pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa5cad4e4 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa5cbbe1d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa5ccc686 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa602fa94 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61e1601 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xa623e361 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa63b8858 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xa6417bfe from_kgid_munged +EXPORT_SYMBOL vmlinux 0xa6433d27 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xa65fba03 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xa66ac9a3 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa66cf859 cqhci_irq +EXPORT_SYMBOL vmlinux 0xa66de63b page_pool_create +EXPORT_SYMBOL vmlinux 0xa67fff61 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa692e758 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6997cf5 vprintk_emit +EXPORT_SYMBOL vmlinux 0xa6a1122f __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6a85c58 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa6b587ec inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xa6c112a3 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xa6c2f097 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa6e92a5f tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xa6ea7de3 dm_get_device +EXPORT_SYMBOL vmlinux 0xa6ebc634 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa6ef62bb nla_append +EXPORT_SYMBOL vmlinux 0xa6f4c201 keyring_search +EXPORT_SYMBOL vmlinux 0xa6feff4d sk_wait_data +EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xa735fdba reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa738264f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xa73c5f33 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa76089f8 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7b3181c up_read +EXPORT_SYMBOL vmlinux 0xa7c87577 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xa7e1ba06 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa7e3598d dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa8005917 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa802694b netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xa80fbce8 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xa8358684 md_write_inc +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84add4c mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa851c570 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa86782e0 mmc_erase +EXPORT_SYMBOL vmlinux 0xa87a29d2 __close_fd +EXPORT_SYMBOL vmlinux 0xa8954b40 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8acd10d tso_build_data +EXPORT_SYMBOL vmlinux 0xa8c75b1e __register_nls +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d45228 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xa8d79cb1 submit_bio +EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt +EXPORT_SYMBOL vmlinux 0xa8ed0f57 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xa8fb1e37 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xa9012377 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xa9155ac8 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xa94f50d8 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xa95c15c1 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa95c565f snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0xa95f7950 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa9644ea8 i2c_transfer +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa97440f5 tty_lock +EXPORT_SYMBOL vmlinux 0xa977bde9 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa9784970 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xa980dd03 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0xa9bc649e mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xa9d11d02 device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0xa9e5b8d4 tcf_classify +EXPORT_SYMBOL vmlinux 0xa9e5f106 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f2f087 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa9f4e869 rt6_lookup +EXPORT_SYMBOL vmlinux 0xaa537174 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa9c6c20 file_path +EXPORT_SYMBOL vmlinux 0xaaa93af1 dquot_destroy +EXPORT_SYMBOL vmlinux 0xaab48510 __sk_mem_reclaim +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 0xaafd9237 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaaffa13e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xab1920fb ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xab2e557d __register_chrdev +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab45984d mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xab4e8658 simple_write_end +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab80ab58 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xab89cb76 pci_request_region +EXPORT_SYMBOL vmlinux 0xab8b75c0 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabee0ca4 param_set_copystring +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabfc1947 dev_add_pack +EXPORT_SYMBOL vmlinux 0xabfdb845 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xac06fb79 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xac081ee7 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xac0f9d5f single_open_size +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2f5223 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac4f26f0 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac66e2c0 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac8e89eb configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xac92551b gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xac9446bf write_one_page +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xac9bf330 fasync_helper +EXPORT_SYMBOL vmlinux 0xaca26fca phy_attached_print +EXPORT_SYMBOL vmlinux 0xaca9d5e5 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb16b52 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xacb31ecf _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xacbed72c fb_set_var +EXPORT_SYMBOL vmlinux 0xacbef357 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xacc2015b simple_statfs +EXPORT_SYMBOL vmlinux 0xacce865a inet_listen +EXPORT_SYMBOL vmlinux 0xacd618ec tcp_splice_read +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace57672 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xace70bf4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfccb7b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0882e7 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad2bcde1 param_set_byte +EXPORT_SYMBOL vmlinux 0xad3d6880 genlmsg_put +EXPORT_SYMBOL vmlinux 0xad4a3573 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xad60e126 request_key_tag +EXPORT_SYMBOL vmlinux 0xad63e848 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xad645ee2 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xad65e38d snd_card_register +EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8c8088 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xad987de2 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada06d2e phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xada3459e vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadce8070 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0xadd36a40 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xadf59a70 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xadfa216d netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xadfa577b linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae15c0a5 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xae185520 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xae21abd8 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xae2dac75 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xae305251 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae34afe9 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xae58a859 seq_file_path +EXPORT_SYMBOL vmlinux 0xae62c042 __put_user_ns +EXPORT_SYMBOL vmlinux 0xae746ff5 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xae957cbf xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xae97b1c5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xae9849dd __request_region +EXPORT_SYMBOL vmlinux 0xae9bfae0 phy_read_paged +EXPORT_SYMBOL vmlinux 0xae9d9bc5 snd_card_free +EXPORT_SYMBOL vmlinux 0xae9eaf0c hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xaeacc691 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xaebf5984 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xaec06c2b __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xaed8fbb8 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xaed945f9 key_alloc +EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xaeee7f84 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xaf0912d2 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xaf221f33 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b0909 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf60199b xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xaf67f643 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xaf69d416 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xaf9ebee8 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xaff17c78 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xaff18c97 nonseekable_open +EXPORT_SYMBOL vmlinux 0xaff6f3c9 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xaffa54ec kern_unmount +EXPORT_SYMBOL vmlinux 0xb01a4f93 proc_mkdir +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb0363ae1 bioset_init +EXPORT_SYMBOL vmlinux 0xb036c21b sock_no_bind +EXPORT_SYMBOL vmlinux 0xb03bcf21 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb0411173 write_inode_now +EXPORT_SYMBOL vmlinux 0xb046d95f invalidate_bdev +EXPORT_SYMBOL vmlinux 0xb053a121 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb05d894d filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06fefc9 genphy_update_link +EXPORT_SYMBOL vmlinux 0xb085cf8e stream_open +EXPORT_SYMBOL vmlinux 0xb090ef67 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a38781 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xb0c4ee43 dump_page +EXPORT_SYMBOL vmlinux 0xb0cdbbe5 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb0d1b5e5 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ed48d0 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot +EXPORT_SYMBOL vmlinux 0xb0fc3bf6 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xb0febf14 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb120dbbd pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1285d8a scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14948bd filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb164d248 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb17e378f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xb19f6172 pci_set_master +EXPORT_SYMBOL vmlinux 0xb1a20ba5 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xb1a42c3e kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb1aab2eb of_device_register +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d2f685 fget +EXPORT_SYMBOL vmlinux 0xb1d486da devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xb1d8a5ea snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0xb1d99e11 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0xb223ede8 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xb229c289 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb2328ab4 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xb2344172 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma +EXPORT_SYMBOL vmlinux 0xb271d487 elevator_alloc +EXPORT_SYMBOL vmlinux 0xb271e159 scsi_print_command +EXPORT_SYMBOL vmlinux 0xb280338c snd_device_register +EXPORT_SYMBOL vmlinux 0xb283561c ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xb2894d28 kobject_init +EXPORT_SYMBOL vmlinux 0xb2af197f dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2b9530a elm_config +EXPORT_SYMBOL vmlinux 0xb2baeed5 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xb2c31251 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xb2d0053e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xb2d2a87e bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2ff5ad5 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30c5d58 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xb310b7ca set_blocksize +EXPORT_SYMBOL vmlinux 0xb3246e95 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb3562376 get_tree_single +EXPORT_SYMBOL vmlinux 0xb3667805 dqstats +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb368c3e3 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb3a9f9de mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xb3ba374b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e8af7c pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb3eb3768 set_bh_page +EXPORT_SYMBOL vmlinux 0xb3f35198 eth_header +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb405986c bdput +EXPORT_SYMBOL vmlinux 0xb4096892 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb40b032a devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43ee266 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xb442f57e ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xb448b658 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb454ab44 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb456a8af scsi_remove_host +EXPORT_SYMBOL vmlinux 0xb4603df2 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb4760489 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49a3b88 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xb49b2fff udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4afa419 param_get_long +EXPORT_SYMBOL vmlinux 0xb4f0b4b8 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f18259 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xb4fbf66b netif_device_detach +EXPORT_SYMBOL vmlinux 0xb5155ad8 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xb536422e tcp_filter +EXPORT_SYMBOL vmlinux 0xb543ac27 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xb549ed6f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xb55deb37 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb561ac5b wait_for_completion +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5838384 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb5899c03 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58c116d flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xb58e2a05 of_get_address +EXPORT_SYMBOL vmlinux 0xb59178a2 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xb5a2aca1 param_ops_charp +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a55214 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c1f08a set_security_override +EXPORT_SYMBOL vmlinux 0xb5dbf14f snd_card_file_add +EXPORT_SYMBOL vmlinux 0xb5f1d560 udp_set_csum +EXPORT_SYMBOL vmlinux 0xb6056b9c redraw_screen +EXPORT_SYMBOL vmlinux 0xb614ec99 stop_tty +EXPORT_SYMBOL vmlinux 0xb62f451c _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xb632256d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xb6398494 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb65c5294 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xb66f4bb1 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xb671c348 no_llseek +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67bb082 skb_store_bits +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67ce0a7 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68424c9 _dev_info +EXPORT_SYMBOL vmlinux 0xb6847ae3 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b56298 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run +EXPORT_SYMBOL vmlinux 0xb6cfc229 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ebecef tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb70b4feb jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb71d54bc tty_unlock +EXPORT_SYMBOL vmlinux 0xb726b0c9 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xb7296d0d of_iomap +EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0xb77be4af sock_rfree +EXPORT_SYMBOL vmlinux 0xb77d7584 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xb7aff3e6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb7c143d3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d0e46f __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xb80b9de5 inet_ioctl +EXPORT_SYMBOL vmlinux 0xb8100d94 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xb831b4c0 pps_event +EXPORT_SYMBOL vmlinux 0xb83d27f7 save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0xb87d790f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xb88f52d2 skb_ext_add +EXPORT_SYMBOL vmlinux 0xb893b77f unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8c202b6 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8c742f4 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb8db8a17 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xb8e61019 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fca195 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb90308f7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xb90cee51 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xb90e2586 tty_kref_put +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9141373 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xb926cca9 vfs_fsync +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94c571b tcp_init_sock +EXPORT_SYMBOL vmlinux 0xb9511912 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xb9562ef8 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb95bacd9 inet_bind +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb9831a05 inet_accept +EXPORT_SYMBOL vmlinux 0xb9883ae5 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xb98b4f0f sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xb99130bf __page_pool_put_page +EXPORT_SYMBOL vmlinux 0xb992fb2b page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0xb99fcd0f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xb9a21d8e gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9c34dca of_match_node +EXPORT_SYMBOL vmlinux 0xb9cf25b8 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f02ba2 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba1987aa vmap +EXPORT_SYMBOL vmlinux 0xba1a205e vfs_mknod +EXPORT_SYMBOL vmlinux 0xba290c25 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xba2d222b netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xba335f5c block_truncate_page +EXPORT_SYMBOL vmlinux 0xba3fd63d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4a0e74 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba56eedb vfs_rename +EXPORT_SYMBOL vmlinux 0xba64f607 dup_iter +EXPORT_SYMBOL vmlinux 0xba76ae62 d_drop +EXPORT_SYMBOL vmlinux 0xba8c609d __next_node_in +EXPORT_SYMBOL vmlinux 0xba8d1556 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xba9be771 set_disk_ro +EXPORT_SYMBOL vmlinux 0xbaa7c8c5 krealloc +EXPORT_SYMBOL vmlinux 0xbaae6ce4 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xbabd02b3 dqget +EXPORT_SYMBOL vmlinux 0xbac8100f rproc_alloc +EXPORT_SYMBOL vmlinux 0xbae0d47d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbaf17b0a tty_register_device +EXPORT_SYMBOL vmlinux 0xbaf434c2 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb07217a __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbb11d5e2 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb356cd4 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xbb425cde blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0xbb4655eb inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb8a57a4 tso_count_descs +EXPORT_SYMBOL vmlinux 0xbb8e28ff scsi_host_put +EXPORT_SYMBOL vmlinux 0xbba68d55 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbba9fa36 phy_write_paged +EXPORT_SYMBOL vmlinux 0xbbadd579 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xbbcea0ed datagram_poll +EXPORT_SYMBOL vmlinux 0xbbcff9a4 check_zeroed_user +EXPORT_SYMBOL vmlinux 0xbc0006d4 param_get_short +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc135230 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xbc304f4c __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xbc45ec94 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xbc6229f0 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xbc7a6136 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xbc7b5071 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcac9a50 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xbcbce6fb igrab +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcf761ae netif_napi_add +EXPORT_SYMBOL vmlinux 0xbcfb2591 netdev_warn +EXPORT_SYMBOL vmlinux 0xbcfd64cb tcf_register_action +EXPORT_SYMBOL vmlinux 0xbd2cc263 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xbd3fe738 mem_map +EXPORT_SYMBOL vmlinux 0xbd49deec default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbd5f5c87 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xbd735303 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xbd794394 dst_alloc +EXPORT_SYMBOL vmlinux 0xbd7a2d67 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock +EXPORT_SYMBOL vmlinux 0xbd8555f8 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xbd91a70a ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xbdbd905c snd_pcm_new +EXPORT_SYMBOL vmlinux 0xbdc9342c skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbddf0d00 dev_driver_string +EXPORT_SYMBOL vmlinux 0xbdee59c7 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xbdfe7f2e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1f6e9c max8998_read_reg +EXPORT_SYMBOL vmlinux 0xbe3f4da5 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xbe45f433 of_match_device +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe58206e vm_zone_stat +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6cb1a2 phy_find_first +EXPORT_SYMBOL vmlinux 0xbe7f14bf shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xbeab3d3a md_finish_reshape +EXPORT_SYMBOL vmlinux 0xbead6dde dev_set_alias +EXPORT_SYMBOL vmlinux 0xbeb9ad90 PageMovable +EXPORT_SYMBOL vmlinux 0xbee187b7 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf04344b genphy_read_status +EXPORT_SYMBOL vmlinux 0xbf1b1acd md_write_end +EXPORT_SYMBOL vmlinux 0xbf27839d udp_seq_start +EXPORT_SYMBOL vmlinux 0xbf2e2a81 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xbf36f302 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table +EXPORT_SYMBOL vmlinux 0xbf550082 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xbf62fde1 block_write_full_page +EXPORT_SYMBOL vmlinux 0xbf6c7043 xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0xbf6e51bc dquot_release +EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf768d54 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xbf8099e6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbf894cbc md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xbf9252e1 set_posix_acl +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb201b6 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfda8030 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create +EXPORT_SYMBOL vmlinux 0xbfe57c11 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0054889 simple_rename +EXPORT_SYMBOL vmlinux 0xc00a8a6e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xc0165d82 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xc022ca5d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc02f550e snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xc04d2210 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xc04fb3e5 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xc05475b9 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc0708967 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078187b __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08e655d sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a2ccc3 vm_mmap +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0c1b176 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xc0d5b64e register_filesystem +EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xc0fd4412 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc104368b wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc1089d6e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xc10bb080 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xc10e7255 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc111160e napi_consume_skb +EXPORT_SYMBOL vmlinux 0xc11530cb request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc12fdc25 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc132f7d5 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15a64da ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc178f985 phy_device_remove +EXPORT_SYMBOL vmlinux 0xc1986000 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xc1adacbd vga_client_register +EXPORT_SYMBOL vmlinux 0xc1bcb08b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xc1bdc6f4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc1ce56d7 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1ddab4c vfs_get_tree +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc200e6a1 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xc2026949 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xc203cb45 ppp_input +EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0xc225bdc4 uart_register_driver +EXPORT_SYMBOL vmlinux 0xc22d1133 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xc23d6484 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xc23e3d51 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc248c3e5 kmap +EXPORT_SYMBOL vmlinux 0xc24c0f92 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xc25691e4 send_sig +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2705a55 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xc271c3be mutex_lock +EXPORT_SYMBOL vmlinux 0xc279969a omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xc299fc8c of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2c04fbc blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xc2c1fd9d mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0xc2dab9aa config_group_find_item +EXPORT_SYMBOL vmlinux 0xc2defcaa inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc2f6e44f devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc3116d42 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc329fb59 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc33ff5eb pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf +EXPORT_SYMBOL vmlinux 0xc375e000 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc386a3c5 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3ae71e0 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xc3b0e599 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xc3cabf42 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc3d9d890 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc3e55548 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xc3ef80b7 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc40072f8 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xc407a383 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc40b1245 pci_disable_device +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0xc4574de1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc457c97e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init +EXPORT_SYMBOL vmlinux 0xc4720d0e __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4781ed4 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xc47d54ef clk_add_alias +EXPORT_SYMBOL vmlinux 0xc47e0d34 genphy_loopback +EXPORT_SYMBOL vmlinux 0xc486492b scsi_remove_device +EXPORT_SYMBOL vmlinux 0xc4bdeaf2 tcp_close +EXPORT_SYMBOL vmlinux 0xc4ecd562 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xc505e288 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0xc5141344 input_free_device +EXPORT_SYMBOL vmlinux 0xc51555db clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xc515c19d dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xc52d18c2 update_devfreq +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc550eec4 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc5665200 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xc56f379b mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc597654b kthread_create_worker +EXPORT_SYMBOL vmlinux 0xc5992914 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a1e018 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6166786 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc629197f netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xc62b6111 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63a92ed pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666b4eb tty_register_driver +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc6884be9 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xc6886ceb tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc68df3b3 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0xc6979671 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xc6988ba0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xc6b7b1f9 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cd57d3 inode_init_owner +EXPORT_SYMBOL vmlinux 0xc6cf4200 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc6d86145 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xc6e50d79 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc6e9124d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc71b748a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xc71b8160 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc71c5793 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc720b8c5 fb_get_mode +EXPORT_SYMBOL vmlinux 0xc72eaf43 devm_memunmap +EXPORT_SYMBOL vmlinux 0xc7571538 of_device_is_available +EXPORT_SYMBOL vmlinux 0xc75f3017 pid_task +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc782cabd qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7988577 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a1a977 cdev_device_del +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b18860 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xc7bd94c6 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7cede24 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d721e0 is_subdir +EXPORT_SYMBOL vmlinux 0xc7e098ff pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f00bc0 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc7f37139 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc7f96030 init_net +EXPORT_SYMBOL vmlinux 0xc808d99d install_exec_creds +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc8437549 inet_addr_type +EXPORT_SYMBOL vmlinux 0xc844a622 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84afc2c kernel_connect +EXPORT_SYMBOL vmlinux 0xc851d363 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc851dff0 param_array_ops +EXPORT_SYMBOL vmlinux 0xc8587fee mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc893a6f4 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc8969b64 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ac7586 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 +EXPORT_SYMBOL vmlinux 0xc8b9e857 d_alloc_name +EXPORT_SYMBOL vmlinux 0xc8d1dd02 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xc8e854c8 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xc8f6e2fe unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc8fec953 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc8ff1f70 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc929c9b9 proc_set_user +EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc986b4fb devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xc986ca07 bd_finish_claiming +EXPORT_SYMBOL vmlinux 0xc98d1f1b account_page_redirty +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b097a3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc9cb1a0b zap_page_range +EXPORT_SYMBOL vmlinux 0xc9d1f580 framebuffer_release +EXPORT_SYMBOL vmlinux 0xc9dcaebc snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e237b6 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xca06da3b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xca1a0805 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca23b09c dm_io +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5e4278 blk_register_region +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca77aa85 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca94828a make_kuid +EXPORT_SYMBOL vmlinux 0xcaef8286 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf4de92 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb13fa0e devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xcb2b349a __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3d01e3 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xcb428c41 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xcb44ca15 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xcb51b369 sock_wfree +EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load +EXPORT_SYMBOL vmlinux 0xcb7c0580 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xcb7c29a5 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xcb7e636f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xcb874722 dquot_operations +EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcb96eb72 tcp_child_process +EXPORT_SYMBOL vmlinux 0xcba05317 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbb943d2 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd640f6 tty_hangup +EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len +EXPORT_SYMBOL vmlinux 0xcc060c6c of_dev_get +EXPORT_SYMBOL vmlinux 0xcc0be86e snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xcc0efa47 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xcc17102c console_start +EXPORT_SYMBOL vmlinux 0xcc1c4374 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xcc22536d finish_swait +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc3c66b5 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0xcc48e43f mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc535982 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5d9ce8 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xcc7ec7e3 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0xcc8bf693 iterate_fd +EXPORT_SYMBOL vmlinux 0xcc964b48 phy_resume +EXPORT_SYMBOL vmlinux 0xcc9ea5c1 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xccb5a4d3 import_single_range +EXPORT_SYMBOL vmlinux 0xccbf7527 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xccbf9c19 neigh_destroy +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcceed1a4 __ps2_command +EXPORT_SYMBOL vmlinux 0xccf48d9a twl6040_power +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd2137f7 seq_dentry +EXPORT_SYMBOL vmlinux 0xcd2461a4 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xcd278007 km_policy_notify +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2c8b85 snd_timer_new +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd41c931 snd_timer_close +EXPORT_SYMBOL vmlinux 0xcd466c76 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xcd49da28 d_invalidate +EXPORT_SYMBOL vmlinux 0xcd550eaa simple_fill_super +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd7dbbe8 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xcd8445e9 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xcd8c0cf2 ip_frag_init +EXPORT_SYMBOL vmlinux 0xcdb081e1 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd6046f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xcdd795fc __sg_free_table +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f17c8 skb_dequeue +EXPORT_SYMBOL vmlinux 0xce76bdc7 vm_map_pages +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce887d0e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae709d input_reset_device +EXPORT_SYMBOL vmlinux 0xceb4a634 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xceb81f21 param_ops_bint +EXPORT_SYMBOL vmlinux 0xcec201ea __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xcec6129a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xceca3043 sock_from_file +EXPORT_SYMBOL vmlinux 0xced79ae5 sock_create +EXPORT_SYMBOL vmlinux 0xcee2476f ppp_channel_index +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef2162f netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xcef7b828 input_grab_device +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf01d044 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xcf0641ea sync_filesystem +EXPORT_SYMBOL vmlinux 0xcf09d1ce map_destroy +EXPORT_SYMBOL vmlinux 0xcf0e9ac1 proto_unregister +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf267b97 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xcf3fac84 cpumask_next +EXPORT_SYMBOL vmlinux 0xcf476e8f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xcf5e1c65 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xcf5e7fa6 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xcf6272a7 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xcf66c383 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xcf6c5cb1 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xcf6c7d0a __serio_register_driver +EXPORT_SYMBOL vmlinux 0xcf7a9567 security_sk_clone +EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf904483 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcf960f91 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page +EXPORT_SYMBOL vmlinux 0xcfbbc1f4 tcf_em_register +EXPORT_SYMBOL vmlinux 0xcfc0514b bio_endio +EXPORT_SYMBOL vmlinux 0xcfd11b37 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xcfd9d200 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0xcfe0f9ce ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xcfe16194 register_sound_dsp +EXPORT_SYMBOL vmlinux 0xcff76ad1 genphy_suspend +EXPORT_SYMBOL vmlinux 0xcff89023 snd_seq_root +EXPORT_SYMBOL vmlinux 0xd008ec34 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd017b578 kobject_get +EXPORT_SYMBOL vmlinux 0xd0186b25 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd02e0682 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xd03f6fdf phy_connect +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd055dcd0 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xd058880f amba_request_regions +EXPORT_SYMBOL vmlinux 0xd05c91e7 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xd0628f65 inc_nlink +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0840848 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xd09a76c2 free_task +EXPORT_SYMBOL vmlinux 0xd09c9a03 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a3ff84 input_close_device +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d19b73 fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0xd0daaf8b dev_remove_offload +EXPORT_SYMBOL vmlinux 0xd0dae007 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0f86149 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xd0f8679c inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd112a8dc tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd14bb9ca kmap_high +EXPORT_SYMBOL vmlinux 0xd167bb3e _copy_to_iter +EXPORT_SYMBOL vmlinux 0xd1701d8c peernet2id +EXPORT_SYMBOL vmlinux 0xd1721325 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd180e53e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xd1bc73f8 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd1d28018 param_get_byte +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ec67af tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xd1fe7042 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd207e3f3 get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0xd20f6553 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xd21637f8 nand_correct_data +EXPORT_SYMBOL vmlinux 0xd2192078 inet_offloads +EXPORT_SYMBOL vmlinux 0xd2368ae4 proc_remove +EXPORT_SYMBOL vmlinux 0xd240ce71 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xd24bb333 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd250cf5a do_map_probe +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2605444 load_nls_default +EXPORT_SYMBOL vmlinux 0xd270dba4 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27c447f register_key_type +EXPORT_SYMBOL vmlinux 0xd285561f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd320a8de textsearch_register +EXPORT_SYMBOL vmlinux 0xd32c4502 _dev_alert +EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd33c6a39 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd355d3b3 sock_release +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35edd4d inc_node_state +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd376cc26 ata_link_printk +EXPORT_SYMBOL vmlinux 0xd376f86f __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xd3771f19 block_read_full_page +EXPORT_SYMBOL vmlinux 0xd39382fa vme_bus_type +EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xd3a7e063 skb_clone +EXPORT_SYMBOL vmlinux 0xd3be12ef netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xd3c14954 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3ed80da genl_register_family +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd426bec4 input_open_device +EXPORT_SYMBOL vmlinux 0xd429b766 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0xd45a3f66 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0xd466c9dd __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd49c7e5a mmc_retune_release +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4a44e4e rtc_add_group +EXPORT_SYMBOL vmlinux 0xd4b65e1b pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd4b74d49 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4bdc800 dquot_commit +EXPORT_SYMBOL vmlinux 0xd4c60706 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xd4d01088 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xd4f3def6 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xd4f4e478 abort_creds +EXPORT_SYMBOL vmlinux 0xd4fbb95c skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd501afd7 of_node_get +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd529f905 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xd52eb326 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd5603bad poll_freewait +EXPORT_SYMBOL vmlinux 0xd5737b4a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5bf5eb2 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xd5dbc298 __sb_end_write +EXPORT_SYMBOL vmlinux 0xd5e6d12a netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61a9031 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xd61d2022 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd639a872 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd63b0bd9 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem +EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract +EXPORT_SYMBOL vmlinux 0xd65f4516 cdrom_release +EXPORT_SYMBOL vmlinux 0xd666e9f9 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xd66dbfd1 inet_gso_segment +EXPORT_SYMBOL vmlinux 0xd6730306 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xd6850959 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c32f9 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xd68daf80 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xd68f7590 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xd6bdb00d __napi_schedule +EXPORT_SYMBOL vmlinux 0xd6c1aea8 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6d73501 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd6db0268 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd6dbbda0 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd6dbdec3 of_device_alloc +EXPORT_SYMBOL vmlinux 0xd6e70ca2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f83109 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70e1e50 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xd71017c5 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xd71b539a skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xd724bb5a of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xd7315af4 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd75626b4 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xd7754ce5 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd78b0201 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7b83213 kthread_stop +EXPORT_SYMBOL vmlinux 0xd7d20c85 param_get_ulong +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d73966 cad_pid +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7faccca hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd815e0ff pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xd81fb39c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xd82d2b75 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xd83dc5e6 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd84ecae0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd860755b __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd8618ce5 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr +EXPORT_SYMBOL vmlinux 0xd881c4ac unlock_rename +EXPORT_SYMBOL vmlinux 0xd8867da1 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd890fb31 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a019aa inet_protos +EXPORT_SYMBOL vmlinux 0xd8a35938 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd8a4595b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd8a5bd86 generic_update_time +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b00ab8 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd8c65806 of_get_next_child +EXPORT_SYMBOL vmlinux 0xd8c6d04f param_set_bint +EXPORT_SYMBOL vmlinux 0xd8d00812 vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0xd8e1aba3 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xd8f430c3 param_ops_int +EXPORT_SYMBOL vmlinux 0xd909c5a2 registered_fb +EXPORT_SYMBOL vmlinux 0xd927660f md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd93ba70a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xd9428610 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd961492c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xd97205b7 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd989c2e1 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd98e1590 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xd9a92a84 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd9c304a6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e9607d get_thermal_instance +EXPORT_SYMBOL vmlinux 0xda1c7832 inet_put_port +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3e5705 seq_open_private +EXPORT_SYMBOL vmlinux 0xda608af9 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xda6a8d57 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda77e5c2 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8a608c skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xda92fb40 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xda982731 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xdaa030dd blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xdab51a6f dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xdab6b6d6 dev_addr_add +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdaf8598b security_binder_transaction +EXPORT_SYMBOL vmlinux 0xdb03a2ab on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xdb25a9db generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xdb2fbbcf udp_prot +EXPORT_SYMBOL vmlinux 0xdb39c2cb kobject_set_name +EXPORT_SYMBOL vmlinux 0xdb3b712d ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb5f9e31 dev_load +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit +EXPORT_SYMBOL vmlinux 0xdb84b5f8 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xdb8873ae skb_unlink +EXPORT_SYMBOL vmlinux 0xdb9ca3c5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xdbaae4ad cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xdbb625e7 phy_init_eee +EXPORT_SYMBOL vmlinux 0xdbc19974 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xdbce0beb snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0xdbd7165d tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0xdbe61f17 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xdc01e52a pci_pme_capable +EXPORT_SYMBOL vmlinux 0xdc029223 page_mapped +EXPORT_SYMBOL vmlinux 0xdc060f4c fs_parse +EXPORT_SYMBOL vmlinux 0xdc09d38a simple_getattr +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc279c77 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdc46e0a4 softnet_data +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4a948e pci_free_irq +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5a61c9 submit_bh +EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xdc5d3324 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xdc5fcd8b pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xdc674274 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0xdc77d170 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xdca13c5b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdca9d9f4 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xdcc94d08 param_ops_byte +EXPORT_SYMBOL vmlinux 0xdccb44f9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xdcccb1f9 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0a356a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xdd0b9607 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2911ba ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd3f5395 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xdd4ffa9b mutex_trylock +EXPORT_SYMBOL vmlinux 0xdd67915c snd_timer_open +EXPORT_SYMBOL vmlinux 0xdd68beee tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xdd77a1b2 load_nls +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd80f5af sk_reset_timer +EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdda24d5a mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xdda4c863 page_symlink +EXPORT_SYMBOL vmlinux 0xddb044da __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xddc48ce6 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xddcb3d3e pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xddcf161c of_n_size_cells +EXPORT_SYMBOL vmlinux 0xddd0787c snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xddd808ff netdev_features_change +EXPORT_SYMBOL vmlinux 0xddd95233 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xddf29651 vif_device_init +EXPORT_SYMBOL vmlinux 0xde03cd74 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xde0d1f9a con_is_visible +EXPORT_SYMBOL vmlinux 0xde154b7e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xde19551c mmc_register_driver +EXPORT_SYMBOL vmlinux 0xde33d8c4 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xde4bd720 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xde5a2c7e sock_init_data +EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get +EXPORT_SYMBOL vmlinux 0xde6fb01d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xdeb04466 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded290fb try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded59fe5 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0xdeda392e simple_link +EXPORT_SYMBOL vmlinux 0xdef3180d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf0fd45c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xdf20b939 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2c2d01 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xdf2e741a blk_put_request +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5b1769 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xdf67a178 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xdf7cc518 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf964fc9 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdf994a34 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xdfa1ee91 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xdfa24cbd snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xdfa802df fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xdfbcc124 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff7aa98 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe00332f9 arm_dma_ops +EXPORT_SYMBOL vmlinux 0xe005ff6a contig_page_data +EXPORT_SYMBOL vmlinux 0xe01e4c68 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe028a6ca atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xe0360552 check_disk_change +EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next +EXPORT_SYMBOL vmlinux 0xe08527d4 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08b6f65 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xe08fa209 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xe090b692 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xe09a1b7d dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c99adb msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xe0eeda5f ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe10bbc43 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1151ec9 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe1190a1b get_tree_keyed +EXPORT_SYMBOL vmlinux 0xe11b6e93 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe13b67b9 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1415754 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe157b5b5 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xe1617f62 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xe16367fd blk_put_queue +EXPORT_SYMBOL vmlinux 0xe172d0d3 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xe17ae8b9 nobh_writepage +EXPORT_SYMBOL vmlinux 0xe185e36c snd_device_new +EXPORT_SYMBOL vmlinux 0xe1880b6c tcf_block_put +EXPORT_SYMBOL vmlinux 0xe18ee22b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xe1b1d3b2 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xe1b999c7 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e0a1da rproc_free +EXPORT_SYMBOL vmlinux 0xe1e209ef put_disk +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1e8b8ed pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xe1ef9cb7 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xe1f1b16d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe1f52df3 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xe1fd42e7 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe22969de notify_change +EXPORT_SYMBOL vmlinux 0xe22d1116 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe23dbbe5 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xe240fc75 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe2537ae6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe25810b8 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xe25d36d3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe26762eb sk_free +EXPORT_SYMBOL vmlinux 0xe270d224 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xe27a5487 tty_check_change +EXPORT_SYMBOL vmlinux 0xe2885e68 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xe28d80a4 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xe28e4207 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xe2a298f4 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe2ac51be unregister_key_type +EXPORT_SYMBOL vmlinux 0xe2cd447f __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe3105ab3 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe3172bce generic_file_open +EXPORT_SYMBOL vmlinux 0xe3173d4e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe33267aa tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe337349e md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xe346f67a __mutex_init +EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xe36977a3 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xe3a79e67 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xe3be89c0 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe3e03517 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ed25f6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xe3f893bd fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe3facbbf napi_complete_done +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40994b6 simple_map_init +EXPORT_SYMBOL vmlinux 0xe40ac8d0 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xe42b05f7 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe4470243 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xe44cf94a netlink_ack +EXPORT_SYMBOL vmlinux 0xe463ea79 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe4702b3a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xe477fc9b memremap +EXPORT_SYMBOL vmlinux 0xe47cb0c5 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xe48bfe31 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xe48d1cd9 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xe49d5960 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xe4ab122f soft_cursor +EXPORT_SYMBOL vmlinux 0xe4b1c2f9 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xe4c1ccee abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xe4c2fac9 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4dd9b0a tty_port_put +EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one +EXPORT_SYMBOL vmlinux 0xe51b2ea7 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52f5ec2 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe52fcc0d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xe5377d56 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58733fd pci_select_bars +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe594695d inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5da1788 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xe5db2854 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe613cfd0 inet6_release +EXPORT_SYMBOL vmlinux 0xe620c21f mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xe64231c3 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xe64280bc fd_install +EXPORT_SYMBOL vmlinux 0xe6723a25 __skb_pad +EXPORT_SYMBOL vmlinux 0xe678d212 d_tmpfile +EXPORT_SYMBOL vmlinux 0xe68f3b6e tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6957979 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe6afa4f3 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xe6c12171 complete +EXPORT_SYMBOL vmlinux 0xe6c23ec4 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xe6c87a7a sk_alloc +EXPORT_SYMBOL vmlinux 0xe6f95e7f __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xe6fba338 import_iovec +EXPORT_SYMBOL vmlinux 0xe6fc80f4 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xe707bdf8 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe7141165 fsync_bdev +EXPORT_SYMBOL vmlinux 0xe72a7d56 skb_find_text +EXPORT_SYMBOL vmlinux 0xe7305873 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe73bdac4 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe74fd68b del_gendisk +EXPORT_SYMBOL vmlinux 0xe76f9df0 dev_uc_add +EXPORT_SYMBOL vmlinux 0xe77255d7 simple_write_begin +EXPORT_SYMBOL vmlinux 0xe776896b remove_arg_zero +EXPORT_SYMBOL vmlinux 0xe7898260 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe78b7c37 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xe7a5fe6b skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe7acb9f5 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xe7bd0f5c security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xe7c0ac54 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xe7d35231 kset_register +EXPORT_SYMBOL vmlinux 0xe7d37e90 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f8dd4a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xe810af86 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xe81fa969 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xe823746f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xe8352010 unix_get_socket +EXPORT_SYMBOL vmlinux 0xe83cb08e amba_device_register +EXPORT_SYMBOL vmlinux 0xe8407500 phy_init_hw +EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xe84ea704 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xe856ceb7 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xe86b387a dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe88240e1 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe88e26a9 bdevname +EXPORT_SYMBOL vmlinux 0xe8a6c194 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xe8a88c44 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xe8b178dd param_get_uint +EXPORT_SYMBOL vmlinux 0xe8b6b4b3 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision +EXPORT_SYMBOL vmlinux 0xe8bf01fa tty_vhangup +EXPORT_SYMBOL vmlinux 0xe8c994db amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift +EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0xe8d77b94 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe8f5ab9f tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92d98f0 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe93d5792 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xe947207b tcp_parse_options +EXPORT_SYMBOL vmlinux 0xe948f9c5 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xe950809c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96b82fd generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap +EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0xe9a82afb netlink_capable +EXPORT_SYMBOL vmlinux 0xe9b00212 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9db0e61 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eaac32 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xe9f65da1 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f7e51a gro_cells_init +EXPORT_SYMBOL vmlinux 0xea131f3b inet_frag_find +EXPORT_SYMBOL vmlinux 0xea173ef0 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xea1c89bd scsi_host_get +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea2a09ca kill_block_super +EXPORT_SYMBOL vmlinux 0xea3368c3 napi_disable +EXPORT_SYMBOL vmlinux 0xea349d1d dst_release +EXPORT_SYMBOL vmlinux 0xea372610 __f_setown +EXPORT_SYMBOL vmlinux 0xea3c57f1 register_console +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea5a6170 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7e66b6 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea83c7a0 security_path_mknod +EXPORT_SYMBOL vmlinux 0xea853bef md_handle_request +EXPORT_SYMBOL vmlinux 0xea9741fa inode_nohighmem +EXPORT_SYMBOL vmlinux 0xea978c46 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xeaa368ca vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xeab9284b iov_iter_advance +EXPORT_SYMBOL vmlinux 0xeabe4f1f netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xeac8aa81 posix_lock_file +EXPORT_SYMBOL vmlinux 0xeacc0df1 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0b9bf9 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xeb191401 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xeb1a86b0 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb251b62 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xeb2a31a4 rproc_put +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb9cf189 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xebac9542 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xebc74877 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xebce454a security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebec5f7c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xebedf00d generic_read_dir +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec01a959 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xec097f07 is_bad_inode +EXPORT_SYMBOL vmlinux 0xec108d9a finish_open +EXPORT_SYMBOL vmlinux 0xec124050 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xec13c8f9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xec1be26a of_device_unregister +EXPORT_SYMBOL vmlinux 0xec1c8c6f wake_up_process +EXPORT_SYMBOL vmlinux 0xec1d4f12 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xec28b38c __udp_disconnect +EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec748e41 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xec86c928 d_add_ci +EXPORT_SYMBOL vmlinux 0xec993f94 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xecb9477e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xecc5be35 arp_send +EXPORT_SYMBOL vmlinux 0xece6bc3c pcim_iounmap +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecfd0ad6 make_bad_inode +EXPORT_SYMBOL vmlinux 0xed0ad2b2 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xed3b78f1 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xed470694 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xed59bda3 mdiobus_read +EXPORT_SYMBOL vmlinux 0xed5d353a __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed704f86 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xed766800 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9c7c73 netdev_printk +EXPORT_SYMBOL vmlinux 0xeda228cc nand_create_bbt +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbef52a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd7c9c1 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xede004d2 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xedeb59d9 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xedf9f77f fput +EXPORT_SYMBOL vmlinux 0xee078d13 phy_device_register +EXPORT_SYMBOL vmlinux 0xee149e30 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xee194158 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3c39f1 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5b1798 mmc_add_host +EXPORT_SYMBOL vmlinux 0xee651685 ihold +EXPORT_SYMBOL vmlinux 0xee757ab0 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xee770cd3 zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0xee88d7d5 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeebc9b67 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xeec62e5c jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xeee24fe6 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xeefa2d40 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xef09c37c mount_single +EXPORT_SYMBOL vmlinux 0xef0f8fb1 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xef1d13d6 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xef2a6b78 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xef36bfa6 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xef58abc8 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xef5a8a20 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xef5b619b filemap_fault +EXPORT_SYMBOL vmlinux 0xef702329 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef92ef87 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xefa92056 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xefb7bccf _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xefd3d8c6 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xefdb8db5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00c77e8 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn +EXPORT_SYMBOL vmlinux 0xf01e82ac tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xf0221898 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work +EXPORT_SYMBOL vmlinux 0xf03d527b i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf054ad5c mmc_command_done +EXPORT_SYMBOL vmlinux 0xf05f358f security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf0769cab dev_activate +EXPORT_SYMBOL vmlinux 0xf079b2b4 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf07f56a7 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xf08a6063 config_item_set_name +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf094fa03 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0c4150b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef52e8 down +EXPORT_SYMBOL vmlinux 0xf0fb44c2 security_sock_graft +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf102732a crc16 +EXPORT_SYMBOL vmlinux 0xf1063d62 seq_read +EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf10e8d28 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xf11f0f31 tcp_check_req +EXPORT_SYMBOL vmlinux 0xf12eb044 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xf14cc39b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf1527349 keyring_alloc +EXPORT_SYMBOL vmlinux 0xf153b547 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xf155eab9 d_exact_alias +EXPORT_SYMBOL vmlinux 0xf16dfc46 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xf1733126 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19a3d75 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xf1a96936 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align +EXPORT_SYMBOL vmlinux 0xf1c336d3 mr_dump +EXPORT_SYMBOL vmlinux 0xf1cf1da5 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xf1d726d9 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e82475 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xf1e8539c of_find_backlight +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f7d13a __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xf209ed0d __find_get_block +EXPORT_SYMBOL vmlinux 0xf2100152 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf21bb746 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xf21d16e3 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xf21e26e6 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf228a7f1 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf22f75fc inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf230a218 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2600d69 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf27f674e dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28e669c d_instantiate +EXPORT_SYMBOL vmlinux 0xf2931d2d mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf2a557af ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d60a1b neigh_xmit +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2ff96de pci_match_id +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf314fab2 tcp_req_err +EXPORT_SYMBOL vmlinux 0xf320fdf8 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xf3248d76 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf32cd651 simple_open +EXPORT_SYMBOL vmlinux 0xf3389a0b phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xf33eb51f nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3479c5a of_root +EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf34e4643 phy_print_status +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38dbfc8 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3a1f513 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b84783 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xf3bd3e1e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf3bdc171 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf3c2421e security_path_unlink +EXPORT_SYMBOL vmlinux 0xf3c7bb17 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xf3cf158f get_vm_area +EXPORT_SYMBOL vmlinux 0xf3d41f5f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xf3d5b273 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf409f48f mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xf41cb7a3 skb_trim +EXPORT_SYMBOL vmlinux 0xf445249e skb_put +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44cf6f9 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf451842c tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xf455fb44 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf4722e5a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47bbbcd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4a5cb82 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c9046b __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf500585a kern_path +EXPORT_SYMBOL vmlinux 0xf502ae1f snd_ctl_remove +EXPORT_SYMBOL vmlinux 0xf51a13ab balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf51b811c generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xf530de5d devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5475645 dma_resv_init +EXPORT_SYMBOL vmlinux 0xf54c2119 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf5530b8f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf55658eb devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf558da86 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf564a8fb xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf56bc4ef skb_push +EXPORT_SYMBOL vmlinux 0xf58ca1fa init_special_inode +EXPORT_SYMBOL vmlinux 0xf58e73ce of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xf5966fc8 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xf59ede15 snd_timer_pause +EXPORT_SYMBOL vmlinux 0xf5a6810a snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0xf5b53161 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5bc9ebb netif_rx_ni +EXPORT_SYMBOL vmlinux 0xf5bf5c9c __register_binfmt +EXPORT_SYMBOL vmlinux 0xf5c0103f eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf5cdd39c secpath_set +EXPORT_SYMBOL vmlinux 0xf5d27b2c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf5d639f4 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf6034d34 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf60ce35e pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf61f499f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf62e3052 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xf6378429 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf6414937 security_sb_remount +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64822af phy_loopback +EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf65bcab2 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf664087e devm_memremap +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67c99e1 kobject_add +EXPORT_SYMBOL vmlinux 0xf6802aed page_mapping +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68952a1 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf68d0aa3 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xf696e240 vme_lm_request +EXPORT_SYMBOL vmlinux 0xf69cd006 netdev_notice +EXPORT_SYMBOL vmlinux 0xf6a17612 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0xf6b972f8 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xf6c0c91d __close_fd_get_file +EXPORT_SYMBOL vmlinux 0xf6d584ab generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xf6df77b5 pci_release_resource +EXPORT_SYMBOL vmlinux 0xf6e0a76c simple_readpage +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f59b37 follow_up +EXPORT_SYMBOL vmlinux 0xf6f5aea8 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf6fb897a ioremap_cached +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf704dc28 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7436a34 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xf747b919 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xf7490ac9 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xf75007e4 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf766c9fe register_netdev +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77590d6 pci_iounmap +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78bde48 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xf79231fe of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xf793f8ce dquot_file_open +EXPORT_SYMBOL vmlinux 0xf79b1954 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xf7af924f unregister_nls +EXPORT_SYMBOL vmlinux 0xf7cc92f6 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xf8102354 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8150621 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xf829ec62 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83524e4 release_pages +EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf8445947 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xf84bdc09 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xf8505803 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf868464a of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf87c5764 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xf88f1a51 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xf8941994 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xf89e2dad kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xf89ee49c dquot_drop +EXPORT_SYMBOL vmlinux 0xf8b3c2bb pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf8b8592d fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8dc0c4e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xf8e7c565 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf8ee247f fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf9250145 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf934d72c of_phy_connect +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94c9cd1 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf98487ed pskb_extract +EXPORT_SYMBOL vmlinux 0xf9961fee sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf9a36b47 down_interruptible +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b787a3 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf9ba93b7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf9bfa662 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9eb706b devm_ioremap +EXPORT_SYMBOL vmlinux 0xf9f4345f kernel_accept +EXPORT_SYMBOL vmlinux 0xf9fa9152 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xfa11a045 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfa131275 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xfa361bce ipv4_specific +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5b1652 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xfa72c68c devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xfa850665 phy_detach +EXPORT_SYMBOL vmlinux 0xfa856370 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa9e4ec9 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xfab117cc cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xfabca985 mntget +EXPORT_SYMBOL vmlinux 0xfac2685e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac9b59e mdio_bus_type +EXPORT_SYMBOL vmlinux 0xfacb2398 put_cmsg +EXPORT_SYMBOL vmlinux 0xfacb930e rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xfaf7a8bd dev_printk_emit +EXPORT_SYMBOL vmlinux 0xfafd2624 seq_release_private +EXPORT_SYMBOL vmlinux 0xfb08134e pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xfb0ad723 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb235c67 netdev_err +EXPORT_SYMBOL vmlinux 0xfb32f429 dm_register_target +EXPORT_SYMBOL vmlinux 0xfb335919 user_path_create +EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4cdeb6 cqhci_deactivate +EXPORT_SYMBOL vmlinux 0xfb54ef63 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6c8a12 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xfb6d05a8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb961aef skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbaf1cf3 input_inject_event +EXPORT_SYMBOL vmlinux 0xfbb5eb24 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xfbb7a3f3 kunmap +EXPORT_SYMBOL vmlinux 0xfbc2f8ad jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe5c21c generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xfc07c6c9 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xfc0c5fa1 iptun_encaps +EXPORT_SYMBOL vmlinux 0xfc13f7f1 kdb_current_task +EXPORT_SYMBOL vmlinux 0xfc18f386 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfc45a266 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc658873 pci_get_class +EXPORT_SYMBOL vmlinux 0xfc8228c9 km_state_expired +EXPORT_SYMBOL vmlinux 0xfc9fb581 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xfcab5829 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdcf68e inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf15619 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xfcf4ac2a migrate_page +EXPORT_SYMBOL vmlinux 0xfd01290f dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xfd07b7bb jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd3bd64f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xfd46ff1d tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xfd4fb669 kill_pid +EXPORT_SYMBOL vmlinux 0xfd5a07f9 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xfd5d295f lookup_one_len +EXPORT_SYMBOL vmlinux 0xfd67570a md_error +EXPORT_SYMBOL vmlinux 0xfd6a16b8 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfda8aa38 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdbd77ce dquot_free_inode +EXPORT_SYMBOL vmlinux 0xfdc01b70 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdda50f0 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfdfe2ed7 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1bfbb2 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xfe2488a2 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe540ce6 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe711405 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfea2a7b3 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xfea3e081 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeb80267 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff301523 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xff4f91b6 of_node_put +EXPORT_SYMBOL vmlinux 0xff565f51 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff76f7ac rproc_shutdown +EXPORT_SYMBOL vmlinux 0xff7df4ed mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xffa0fbfb __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffc0b5f8 unlock_page +EXPORT_SYMBOL vmlinux 0xffc83cc4 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff668c8 build_skb_around +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x64c00b35 sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x6778d924 sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x04ba7ab7 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x08be9a26 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0a56b545 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3792b5c7 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x3fc3e65b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x4101cb15 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4ab9a6e1 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x51b6204f af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x58d87f0f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5fdc5c03 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x65904804 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ef6b06f af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x85742211 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xacc91647 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xacfe9d75 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb07c9677 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xb8ecf47d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe990fd91 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xd641987a asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x63fb963e async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x53d5371c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa67a4fb4 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x58aa335f async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7bf2edc9 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1b9a04e3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x482bce05 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x521d5a71 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd335520f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4815e2af async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe59c3b4d async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf831812a blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x6519c77f cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc751266b cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x23460ae2 crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xa4d78180 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xad0481bc crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe32fc0ad crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x5dcf91b9 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ccba655 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7a38c7da cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7d33180d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x827cdb7a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa8a0ed91 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb05e7f7b cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb673f62b cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8ebbe3b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd6ca814 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7645162 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xedd3a28d cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf0ed3b6e cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0b568bd7 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x19d3c11c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x228ad32b crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a67b9e6 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4127cf9d crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x42ac912d crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6d1af503 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e01cf16 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb36e6dfd crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc689fd38 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc2db3f1 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0a96766 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf6033612 crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf8a85790 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x57a0d4eb simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x61779236 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x686ecf44 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x6b0713e5 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x09615b82 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x639ef638 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc6251a6f crypto_poly1305_final +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 0xf15a758c serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x82732f36 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xafd18bbf crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xf5e6194e crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x5e7a1375 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x0a812531 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x36bda271 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x22391889 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x47737780 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x59ddc1a6 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xc74a11a9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2ef18c23 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x62761a91 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x9c328eec __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xa8e6e097 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4db35469 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa2efcf98 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xaa64dc0d __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe8d7bd51 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7fb1dea0 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9e33544f __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x07c2bb1d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x140d0faf bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x142586c2 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a8dc7d8 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dd429ab bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ffc2a7b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2828302c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x428860ed bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45dfc121 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5182e5a1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53d5ec19 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64b7a46b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73910393 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x79628223 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bd11df1 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e75cb11 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae980d6a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb23abfd8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb77f5be bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc30edb14 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc1fd97b bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd6ac3e6 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe431fc38 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9de628f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0eeb5a03 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x36a9d5f6 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x718f9f9f btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x999c561b btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb6bc2757 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbcf79186 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04156f23 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0801e13c btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0f6064ab btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18a1c4fd btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d101419 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x48d47efe btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x68c507a2 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d8293d8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9a445779 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9af964b5 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9ca1f8af btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0418999 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa85d4c4d btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb07f99e9 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbcaa5142 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2a770cf btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffb295aa btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2262b7a0 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x339250a3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x34491dac btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7d6293fb btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa12e716d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb243c771 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbe4bdb9b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6ac97a5 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe2ca40fb btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf708e746 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfebde81d btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x487cf11f qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6902af8e qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb21d7fcf qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xce7bb5f4 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe0447c4d qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x09a8b5d0 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x767bc52e btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7d61a178 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9b9425ba btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaa0117e8 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2cec8b46 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x322599fd hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3c3a3cdb hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfdca4053 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0c7f7895 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1194a402 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x33fa39c1 moxtet_bus_type +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x76d87c06 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd12aab8a moxtet_device_written +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e13d6f qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x21aabf5f qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2df91853 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x421070af qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x512af5e1 krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6678b5a8 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 0x6ca8a88d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x749eda9f clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7795f883 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x83811bbd qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb73a2cd3 krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd6345be4 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe87793a8 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xecddec00 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x223a4ac7 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x25c2afa0 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x578f1fe5 counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7470f5b4 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7c1f2a34 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7d7712fb counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x84fa6169 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x85d77857 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xba9a481f counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc2974207 counter_count_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0xcf503c7b counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd784aa82 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd7f9c04b devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdbf92101 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe2c1c828 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x29ccfd82 bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x7e2077f4 bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd5328478 omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x49078716 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb3c067dc dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3818b295 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x72b2c050 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x73220056 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9663dc90 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc829d535 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe3b458f4 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfc0c89a3 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x02c45d6f fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x135f19c9 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1821557e fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1e6b3338 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2586d8ea fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5faa6546 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x74c833a8 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ce00347 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x929b0f51 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9ee86ec4 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaaed47d8 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb69fef60 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd78f21d6 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe7cc7939 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf34fc004 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfc1bfd8b fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2b945b46 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf39c372a hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x3fd21a66 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x9ecc1aa8 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd9fb3acb alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x00e37769 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x09bcc463 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x526ee10c dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x554d2175 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55e35afd dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60897795 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x69ec3140 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7385468d dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x80a0f6a3 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88ae9224 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8c7e9e0f dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9912a908 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9a9073be dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9d2b8c48 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7c9e2ce __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb1c9eead dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc36a6aee dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe3b6a40b dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeeffbf0c dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x08ff3afc fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0fc0be92 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x33ccea7b fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x37785d91 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4abc6161 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x529130a1 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x53b11bb6 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55fc58ab fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x75aaa7a3 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8595324e fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd835549b of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xee36e532 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0af3074d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x14764c73 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1f3a38e2 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2dcfb66c fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x329b4b43 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46b899e9 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x553d01cb of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7df8e417 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x811d2420 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x881531c0 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3e9d15d fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc0a5030c fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf02f3b4b fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x002381c0 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x16744094 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x18227d5f fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x36618f48 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa46cbf1e fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xaadef489 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xadc6e060 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1b184ba0 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x26fc1899 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3407e8af fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x506c42ed fsi_bus_type +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 0x7aa64b29 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fb0c6e4 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x96370a23 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9847ec14 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa23b2e90 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd60ee41a fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xee7ca389 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xb0607373 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xc569ad63 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1df5f665 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x21d6a178 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3b5515cd gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7c19960b gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc725a0b9 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x36481a39 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x445f4d01 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x53396898 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6d994bc3 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xff5ba185 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xd45ad727 aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xdc580b6d aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6adc14c2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xcd8089b5 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x03261b8e analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1b02715a analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x47ebf691 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6340c30d analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6c5e1068 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8a6e9bec analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbe834f93 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd3d1e470 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 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6a23053b 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 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc979e2d0 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-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 0x7865f67c dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xbbda7af1 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x169f1c9d drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1a346451 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ae2978c drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2cbb4cb6 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x378f1f74 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b800dc6 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55244a2d drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x554519c5 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f8d1f49 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63bd4ae4 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x64c55e73 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x724c5cce drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74b19eba drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77755cee drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79b26ced drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9537b4d8 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9846630b drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c9a60b3 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4bb993c drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbbd3b13e drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbff91de0 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1f03990 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcaff6e62 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc0d9a87 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd99c7cb1 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe277235a drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe82c11ba drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf07ea935 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf7800bb4 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ff9cef5 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8df5e0bf drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x95bb56b6 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa2c9f18f drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc580d4a5 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe4fa4254 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe66f8807 drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x265d76ab ipu_plane_disable_deferred +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x541921ee imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7083383c imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xbcc59155 ipu_planes_assign_pre +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd45b67a5 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x54c780fa mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5e5746f9 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa7a2088d meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xba693df4 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x4bf6f37c pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8bc14344 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x918b2ef3 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xba435cfe rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x033a8cd2 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe683cf39 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f4ee1f ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x09b17d11 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0cb4c30f ipu_cpmem_set_stride +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 0x10c061a9 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 0x1339e908 ipu_prg_present +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 0x14d73d55 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x16ef01b2 ipu_set_ic_src_mux +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 0x1b3e7c64 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b651b10 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1c7931fe ipu_prg_channel_disable +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 0x1feac920 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2047aa61 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20e09f6f ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x22a08b61 ipu_prg_channel_configure_pending +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 0x2583c9a0 ipu_cpmem_set_format_passthrough +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 0x281edaf1 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2955e322 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x29da46c2 ipu_dump +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 0x318bc853 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x355d30d1 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x357f13c9 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3cc4339d ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f4c23 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x45faffe4 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47268a2c ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +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 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5602eae2 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5c9fd2a0 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5fd0bed7 ipu_cpmem_set_resolution +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 0x63593ec7 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x637589c8 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66e729d2 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b2e0a2f ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6be67c6d ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x73e4d315 ipu_image_convert +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 0x759a36f9 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x75e66dd7 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x773cf71b ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x793e56dc ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7ea350bf ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x880c5494 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8b21957a ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ece82bd ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8fb42668 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92472edc ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9327b1f6 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x948e50c8 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x990a9a22 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9940a446 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9b4d8c6a ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9c3b87ed ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa495a502 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa70f5b86 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa829777c ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaeb03b0b ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaf22d06e ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb107fd63 ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba9f1b62 ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbada1d35 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbe2d3617 ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc226fc77 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc46eafcd ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc8964423 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcc8b9233 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce10db35 ipu_stride_to_bytes +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce6f0aee ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd1aaa0c1 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdac81e26 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe2796131 ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3df2bfc ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe400b70e ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe41cde3d ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xed25d939 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf438178c ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe2070b7 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff227fb4 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03492e34 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0676768b gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0677823f gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fe136c3 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16753104 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29f7da7f __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38b89571 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3da1df24 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x412c36d7 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45aabdb9 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f380021 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50517685 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52a0ed59 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ea360ef gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68702ef4 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c8f81dd greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75c9730a __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x76d22623 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d068b34 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81b971aa gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81dd1a4a gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x878584ac gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b0c6307 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8bd83848 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92438c2b gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9abd2ed6 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa6998feb gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb30453a3 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4ddebc3 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb97a76c6 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbebe6e9f gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc884c754 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb0e51e3 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce708347 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1ab9ce6 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb7d1f72 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde0eb53e gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed6be0aa greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef598879 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5deb4dc gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9cf8635 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcd391a8 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfff758f4 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x088649dc hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b701ef2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c5cbf23 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13622ce6 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1db4933e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x211362ee hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2609a969 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26f8be10 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b3e5dc2 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35068a92 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a1a2805 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cd4f32f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d504213 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x509f306d hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x582d157c hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62ab6caa hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fc18eaa hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71928a00 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7206015d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x740947b3 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77cb2cad hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cc745fb hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f635559 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8388c4ca hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8724be1a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x971fedf2 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b785625 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6e45fac hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb76e75f7 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7e3b098 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc79347ad hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc813bc2a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9fbe127 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1040bf9 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5a5d6a7 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6e01e79 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf01586c hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfc857dd hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeba2b517 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebc84048 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf18619a5 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf67909b2 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9750aac hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdb8e378 hid_ignore +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 0x61666041 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x09b35584 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2052658a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6542ef4a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x69351cac roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa20039c5 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd9138793 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x03e66b5d sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x26131d11 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4c4e536a sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x67beab16 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d24ba2b sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70144102 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcc48673b sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd133abd4 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe1db65a3 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe9f1a576 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x91689904 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0e2d3765 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x72ea633d usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x17948a31 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x4cfeb454 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x90287bbb ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa5dc7e46 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xd277f85d ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x758acb25 ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x01c60ef1 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0fc96275 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2381c22f hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x376e14e0 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3eaa669b hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x44309d70 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5213daac hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58f7fabc hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5adad746 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61e2218d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f6d463d hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ddbd86d hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x96893be6 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa37b4137 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6ffaca3 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6945870 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdc8dcfdc hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe9428e54 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x1d9720f0 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x49dbb2b0 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa13dd6df adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1176fdca pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x16faa63c pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2d47210b pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x327f4aa3 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x434e5130 pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5153a6a7 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5566828d pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6b0ee8f8 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x796657bc pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7a92ae4b pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7c82632e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7f4d5787 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90863fa7 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa896fd40 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb33ab317 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb725a65a pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd02dec5a pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xee46149e pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf1d08d3b pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2f596ba3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x389630de intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x670b1edd intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9bbcf401 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9bc28927 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9ef1f4e1 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb63ace78 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd30b573b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf24ab208 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x14f891fb intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x785a8aef intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xaace6d69 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01b456a0 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x15adb851 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x275a4ebe stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x475147d7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4ac71f89 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5d40be7c stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8e913db5 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa1dca959 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb078eaa8 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1088e62b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x228ae84a i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5a103e4e i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x951947dd i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x70330470 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1cda8ed8 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1dd8bf61 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21d4dd3b i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2804853b i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4267909d i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4950a8df i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x499a86ed i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4adc7154 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ed56bdd i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6805695d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x750338a9 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x750c8897 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x890f4ca5 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x89cbddce i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f3d9d0a i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa1af3414 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa34151c0 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc49b1f29 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc8933848 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd2657883 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xddbddcdf i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdfc12ce3 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe1a013b3 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe3823d3d i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc15d515 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x19eb153a adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xdf0ec269 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x43d3a835 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6ffb7b7b bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x973fb641 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb927014e bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x37159375 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x73c7bc5c mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb0ef917b mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x4522f929 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb6e7713a ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x317bdb28 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40e57869 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7db84d99 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9c07d374 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xad88dd1d ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbdb8becd ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd0e37c2e ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd67bdc8c ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf0f6e046 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf7d8ab87 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1b4c7dab 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 0x73fb88b2 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 0xfcae9a8b iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x21205b13 devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x719f03b6 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 0xd5c0d07f devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe7633263 devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xf2b000a7 devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x29324e3b bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x04da9747 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0f0e63e0 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x26407aee cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x320d4640 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x71a49a66 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x75b88c4b cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x78294e10 cros_ec_sensors_read_cmd +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 0xbb6be3f8 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfd27d0f5 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x82a33275 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x962ff026 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6df0cddd ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xd6ca6437 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x354abf5a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7308e947 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6de4e37 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x39c8a0b4 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5e2f6fbd fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xabf5c9ce fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0993db16 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0e04b49d adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x13c85f5f adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x13dfd182 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x33c2e5e7 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x400ba10e adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x70414e99 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x77670b8e adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7cacc87f adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9b77f485 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xde12aa29 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfb900686 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x0ff334c9 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x283f026a inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x34d43b76 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbe691139 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00107d2a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03fa5a14 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05fe48cd devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08bafaac iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f8d87bf iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fe4dc2b iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2620f002 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35990f22 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c374dc6 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4245612f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4902e8a4 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51e6a3b2 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x533367a6 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x558b686e iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x587cffd9 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59c0b45a iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b436819 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x639b589f devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66094b36 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69f35351 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a8f6ec5 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x763784a6 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78985831 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c5615cb devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7eafe737 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81afaed8 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x825eaf1e iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x853a1a1f devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88d53908 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a08d3a3 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90e54b09 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927d1c6f __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x972b4025 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b0f29f1 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b9e519d iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa96a0761 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaadb5bcf iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0cddf4c iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5550609 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbd34b00 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a5be5c iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9b7e646 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd08f8778 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb5bb1f1 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed8db294 devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf21deec5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf59ad29a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf75257e9 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfacfd7df devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffd8d65f iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x661a352f rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x65094f58 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0c616bc8 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa217836c zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd1d5b992 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd20ca3c5 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe36f4d27 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf9f2c019 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb1465701 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xeebb75d2 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa145f47b adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x17272814 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35cc4b4e rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4b872feb rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4ddcaa08 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b723888 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x711113ca rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x86ed1d6c rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa5ea4654 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa618ed11 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb0de1dde rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbf8ed860 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xda0d337b rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xff5ccf6e rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x06fc5f23 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0aa796ec cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf1b29335 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x432cec66 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x87d8478d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x11b88b9d cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xdafa9255 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0fab818a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x386b001d tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6a10f4ae tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf9213415 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1549f52f wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x322f7cf9 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3dfafc06 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c6939b6 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x51d724ec wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5949cb1a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5c9fe3e6 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x80c33928 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x96d100a9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9720344e wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa07609b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcf27733b wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2cf66c38 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x5242fce7 icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7e29dca1 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x8e19ceac icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xa1635da4 icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xb01b8909 icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xd99c69fd of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xdf62ab17 icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xe4f08c06 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xee0acaef icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x14450656 free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x560ca013 copy_reserved_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x632be339 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6591423e alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7b03b40e reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x89032608 put_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x99b29474 free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xa4066476 init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xb9939bcd queue_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc76f53b7 alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xdaa3dd25 __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xf4901ce0 init_iova_flush_queue +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x08bb1b19 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2d5ad92a ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6e7a64bc ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x90cc47f2 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9195fecf ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa2874117 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbc1ef57e ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcaaee248 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf24fbf72 ipack_put_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5f435ca0 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x65d4193f led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x83e08299 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x86749868 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x894b6ba8 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb8a5c680 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x165392a6 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x17819e55 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x392a937b lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x54fcd37e lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5d48110d lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7e7b31e1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x93aadaaa lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97e32032 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa042853b lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xae1d4647 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbe9a00cc lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0b61b259 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x12c49297 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3567ac10 mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x35a996d4 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x65463887 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x73608fba mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7a70811e __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x965d93e9 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9f5d2fe4 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa0f5f8e2 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbaef107b mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbcf52873 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8b5be17 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcc070dec mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf32cd2d1 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1626c74b dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x167195f7 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2af12c44 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3322afe3 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d75a4e7 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64525054 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x745ad764 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x75914673 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x89f868e8 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9804c3ee dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa43eac62 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4a90d5d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb365948e 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 0xb77b38d2 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbf4041c1 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 0xceed89e3 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa158582 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x25efb354 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +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-cache 0x030308a4 dm_cache_policy_unregister +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 0x36ea0d11 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6ea9ed69 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc987914c 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 0x2b39e6b1 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 0x970764c2 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbd47f5e0 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 0xc8d376e1 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 0xdcc93cf3 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf61ccbe9 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x00ca2ff5 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +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 0x2adee13f dm_btree_cursor_next +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 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +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 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55f98e63 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7083b63 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8dbd4e1 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6367ed7 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1c2730eb saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1e904bc9 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x254b2703 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8515eb9b saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8a140c5 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbe314164 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc2402ffb saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe39505ca saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe53bdaad saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf54bfa60 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x09271f34 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x32084127 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5ad610db saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x72dcc8d2 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9c44cf0f saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc75e5be8 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfcee79d3 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x02ffd15c smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x072ea86a smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d809f40 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23dfc46a smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3e6667d1 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4088c5a7 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ed84b3e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a5cd5db smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96adbe01 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa52ea62d smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbad3fa0 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbde22850 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc7ac3013 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc867c530 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcf222911 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe5807918 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf303e636 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x04b35a39 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0aa6af5e __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c35a7a9 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e9506ae vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10a98990 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x15466ba4 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16f67eef __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x17a21c76 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2369f055 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x290619db vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x31d44104 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b9fd1a8 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3de316e6 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4305428d vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4430cbff vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ae92386 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x68a856e3 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6dd7c287 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7eeeee2e __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80f3c348 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x840f9321 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9e9f534a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa03e6cc6 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa668fbb8 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaf28311b vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc24a4535 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8192224 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc94b39c vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdd5424bf vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3934e929 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3d8d6048 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x98fb7f3e vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x7d22271c vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x212dab3a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x004efcc5 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x083e9801 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0bf537fa vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x109d031d vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f3900ab vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23de5114 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x280204b3 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34bf9b1c vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40d5786e vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47505e44 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5270be54 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62844da3 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ea0c026 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7029bf99 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77067ede _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79b4e852 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ff9a9e1 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x83b6373d vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x89fa1826 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x96176caa vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ab04ea2 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa9084027 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb49ec8a3 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc1d53917 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5ead1a9 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcbb4720d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9afc3ec vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdaaeb038 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee13ec69 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4baf572 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf945ec48 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x6da10455 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5f1d1bd6 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb2a89b56 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeed9bd6b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x6d056195 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x50d9957b cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xc8b45e61 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x670e4de0 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x51b2eff4 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xa88b1496 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x71a959cd tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x2bcbff2c aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x404b0d7a smiapp_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07b9b66e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18080b7b media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1dbacfdd media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ea5b6aa media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x263cf268 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37088264 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x420b5779 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x424686bd media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44087284 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x636bd21b __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6908e0ac media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f6047fd media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76b2d039 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7959642f __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d6ca714 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83faf7a4 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x850a36fc __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8793ee68 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x890f0d1a media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c3b1726 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ffa5e29 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97e5da1d media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9956ce3e media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9fc9c757 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1b97986 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3c08214 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa72b9fcb media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa97af843 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb937ddfd media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba9357c2 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca34f2fe __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd57e35d media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcea38b1c media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf4290ac media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf48c379 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfc4ab28 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6e8a5f9 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd96d2caa media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9712631 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde699ff8 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf262f56 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xecfc8d0f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee15aeaf media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8ffaac6 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfadd7e89 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfccc09d2 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x77f23ece cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08ef8d31 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0bf1b69c mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e863339 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ef3ea3a mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14450f30 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b6698d5 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2d637853 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31ca958b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46ff1d42 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a559f43 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fda05f8 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x848f70f5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x90123e3b mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x925228cd mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0071eed mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb169e0a8 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd708cedc mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8c86de6 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedc02793 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08881ae1 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x17a300d0 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a21b89e saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f23f47a saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f5cb9ee saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44e56c39 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45d9fba4 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4837a1d3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b2f89f3 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57a6cbc9 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x731d50bc saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x792713eb saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8aaf7b59 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa361c22b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab7c0cda saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb069937 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc31cdd98 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5435d69 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xebb933e9 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x110b560d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3247420e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3a0e42d6 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbd2cba38 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd6252d1d ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xda1b5fef ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf93b8083 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0d2a67e6 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1fa32b3b mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5b311f93 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x720b6172 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xee83c1ae mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x11b041ab vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x167f1dc4 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x236ae504 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x54b86b09 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x80ec7f8c vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x86acf62c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8fe6e228 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf7b0f495 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0a59c11d omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0d615dfe omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6e8a3074 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3a734283 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x39142c7a vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x767f82fe vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x7d1e6a0f vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x969f8fe2 vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xe013ffaf vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf8ca7b25 vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x04effa06 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x13b62ec8 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x580410f3 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5dce3ff7 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x6091093d vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x9701a1b3 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa876657d vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0e294a58 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x403f4c2c xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6a4e4f68 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x719beed6 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaecbbf99 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcfe93c11 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfdb1d31a xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa24221dc xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2edec170 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x50b79b83 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1bb85532 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2a4a6a62 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3796a80a si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6832cbc5 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfe451e2a si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x165d7b66 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1aaa6953 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26485967 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27a0e842 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a19878e ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x38f4979a devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3df34ef5 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x439b1d8f rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x62541547 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x772f613b rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79437c62 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ee01ae6 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0770c91 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa08cd706 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba09216c rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc01326a5 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc41dd8c7 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcbc41f03 ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdff32df ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdea4ee32 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb59047f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x01af4e34 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x286b2c1c microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x9fb048cb mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xdedbab1f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x643c3b93 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x19bc2749 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x653e27e9 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6e584655 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xfcfb4b5e tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x101c21e2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3cad9ffa tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x356ccb3c tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xeec1caed tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x0ad218b8 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01d06b4a cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b211954 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x171ffe5e cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19a42b23 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23fed051 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32841bcc cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3f0f1aa3 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x53f7e333 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6106fde6 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6b38f9f6 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f88c34f cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f58dfb3 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82a40de0 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa25188d8 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb7389771 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb8a1fb2 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdd7e2a8f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdde5a528 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea27cf12 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf736fffe cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe0fbdc6a mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x2cc2936c mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1226a2d2 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ff25334 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3559d77c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f85cabb em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42b3aff0 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x60430dd6 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6988b3de em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x97a9223c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ea07e17 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa4905775 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabf56e8a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb23652bb em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc09c1a7e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc9406da0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd50b76ac em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde27758d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf1ae4a7f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf8fe497c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x18327a61 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6aa03ff1 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc060fdfe tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdf2564b2 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6481b146 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8568551c v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc6e8dc81 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x15c91fde v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1a5a4a20 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3e7352af v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbd57f1fe v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc227508a v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xca30511c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcdaa3f1d v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd6ebab83 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdd619c12 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf3cac2b8 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x029d04b3 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x080eb3f7 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08ced8ad v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11bb111b v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x194bd0a9 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x300ff585 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4093feed v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x450cd2d7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c1e9ab3 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5620c76f v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x588972a6 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c41a209 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x687ae99d v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6acc7fa0 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b6a6b7a v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6efb3f7d v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7930e1c0 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ab17d68 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7efacd54 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86655919 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c8086ea v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9188e761 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa86a5045 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabbdd6f9 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaeaa4df0 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb10963ba v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc22be28d v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9442dc8 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2af0eac v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6ba3938 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe89efe15 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe90f3f3d v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9a31722 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee5e24f3 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa7a6c95 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x060fe125 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x081bad28 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0894263c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b81656c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f74ef68 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x424a21b7 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4865256e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a4f6fe3 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ea546e1 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f2dfac7 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ffe0e7b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a2bdc47 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x724ab352 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa52c18db videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb232b2d9 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbc7f538 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd0e54fe videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcac3262d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce5054a2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8006cca videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd99fbae4 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9ad7ee0 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8fac36b videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2b59e61 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x080bee70 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa59c4853 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb56e2ab3 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe546a253 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x1c37a64d videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc8ac7616 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xec7b1053 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0411f74e v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0657aba5 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x082e851b v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09a565cf v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x113b31d1 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x163d86bf v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1983cf67 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a6dacf7 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x218504f4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x249a7fa9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25560ade v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28a128ee v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x348a2fa1 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34ccb6d7 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ebec859 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e2dda70 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f21172a v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x524a5763 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52b0fe6a v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5493fb97 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5dcd1873 v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67ce935a v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68416471 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6968e5da v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69d09fef __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a146972 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c30ce77 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6df9170a v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f42041d v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x700ac7b8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71571a08 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72a51d16 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x822fd2c1 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bd73613 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f1ca189 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93cf0f22 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95ff7832 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9804f7a8 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ce274bd v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e01ead0 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2e603d2 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7ddb410 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb6bf11a v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf56d98a v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc164af02 v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc74dea0d v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb3ba106 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf842e4a v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0697430 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde9e7f92 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe29688af v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef86b33f v4l2_async_notifier_add_fwnode_remote_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 0xf957b37b v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x27ed2092 pl353_smc_set_ecc_mode +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x2eec2ab2 pl353_smc_ecc_is_busy +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x31112d75 pl353_smc_get_nand_int_status_raw +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x80ef3725 pl353_smc_set_ecc_pg_size +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x84eeb67e pl353_smc_set_buswidth +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc00d163f pl353_smc_set_cycles +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc37aa3c1 pl353_smc_clr_nand_int +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xe2603369 pl353_smc_get_ecc_val +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0xbcf322c5 ti_emif_copy_pm_function_table +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x02979aee pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xccf33d75 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe8c4d83c pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2290f0b9 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x32208607 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9d669163 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb69db7e6 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb736be2c da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xed637bb8 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfc6acc90 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c76dc20 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4f579dfc kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5693a972 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6eac469e kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc008038a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc52bbb09 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xea1bb964 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf54d2585 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb8a8267e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xe11e087c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf135f844 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2a32179a lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x74c4582f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8165e5ea lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8b71d9e5 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x94378b3c lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdac0c92a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf10e98f0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x56f1bbbb lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x8d6158bb lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x99d6a7f4 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01736454 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x15a6d4e7 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1e577661 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1e5aaa21 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x237b9677 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23a88685 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2db3151c cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5d626b6d cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5d6fb72d cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a873694 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a8aead4 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x97a1c1a1 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x97ac1de1 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9902df76 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa5d35ad9 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa5de8699 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2383d12 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbd062d69 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbd0bf129 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc9b22b98 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc9bff7d8 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd391c883 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd494dcad cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd49900ed cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe6e647d5 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe6eb9b95 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfe333065 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfe3eec25 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xacf5ca0a mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb4d58298 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb597f7b6 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe86a8c88 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xec4f812a mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfe407442 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x11e613f8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x39d446f1 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3fa51160 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b304aa7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0466dc3 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa19151e2 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7a242cc pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8e936fc pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdcbf9a18 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe9d87801 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xefc56cbf pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4f8bdf81 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc458b4ee pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x18485f2c pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x18cd8cfb pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa0a94fe1 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xace59f3e pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xed99cc5d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x6a049032 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07cc91e2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x136479b4 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2688847d si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ee1f70b si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x306d36f4 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31246178 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3561361f si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36c30a7c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f2a2ceb si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4492934f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51192ced si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51c615db si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51fd2cee si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55815b79 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5703c4e5 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x622fcc22 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x774cfb33 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82b53579 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93a69bee si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9892439e si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3d15510 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae7ab872 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6df4e9b si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6e595f1 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7044da0 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf2c56ec si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd10e8255 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2834f1c si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7e69c14 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7cad22a si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb40c55b si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf29c5b57 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf36514c8 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff230f06 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x6b091608 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xbc068d38 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xe1a02109 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xf0d59621 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x58189c21 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6246d4ae am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc5e17840 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xda32552f am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x999337a9 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbd5c95b9 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcb8a7694 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x13178b03 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x08f792b8 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0ce454d2 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x135d12b0 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5de0a10e alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x77f40056 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb1b6e071 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf621e423 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06631893 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0ed1e358 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11968454 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x175df29b rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3cec6ce5 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4eb4fb72 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65e56262 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e0f4888 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x790eee7d rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8fa9b484 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9476ce3f rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa06b077c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa282bb5a rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa3b525da rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbad53e48 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1628cc4 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9ee8a97 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcfd2eb26 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd00928a6 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda07e668 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5886c21 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe6e84188 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8d364bb rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfd854c10 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x25e9508c rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x29a380eb rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x316474d9 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x51991f8e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x594deab3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5b35e5f2 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6a06dcb4 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7dd3d9ad rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f0b8524 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa5cd0880 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb5c061c1 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xde094631 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf57f0df6 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1b6f0529 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x710b3fe3 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x86d7c10e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa76b8426 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 0x2b982abe enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x648b8821 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x99c8cd24 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa3b83b3a enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa68c81c1 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa9c16792 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc42d1540 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf813d558 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x78073083 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7f958405 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x80759e19 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x97e15fb4 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x97eb6ab6 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa9f98ed0 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf24c9231 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfe3a326e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x271a86a1 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdff8b32 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x184c3802 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xae923a2d dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xdd9e3e6f dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x5659bedc renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x9d35b58c renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1ce3853e tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1f3b1f2a tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xaafa807b tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xabfc20c3 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb86304a1 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb88b7db6 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc804a792 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe11ac9c2 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe3354999 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1fc9100a cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x20e035e2 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xddfe1074 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3f74a716 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4126ecc6 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcc8d6890 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xaeb3c191 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4443deaf cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa76f6d3e cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb66113ce cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x29dbb8c2 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd304c39f hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7e0f0237 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x8b1ba39c onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0ab8a280 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xb811364e brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xb83462f3 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xc44dcdd9 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x3747baee sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x58eb5ad3 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x850db0bd spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x05be40bc ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08ce0c2d ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x279aa401 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3c54fe1b ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x441d7576 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6247ec8d ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c816166 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6e228c56 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x73ae74e4 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7aebc886 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcc651041 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe21e8b63 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe64b8a02 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf588de15 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x397d84d8 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5019b0e1 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x635cef82 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6b66f960 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x83098aed mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8a07ddf6 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c77dd13 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa566fe31 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb00ae4e7 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8349db5 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdeaa47e6 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef478e02 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfcaa035a mux_control_states +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5583cd15 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x76852af7 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0e3d68e2 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1a38bc93 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3279eb22 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3d3ac859 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x547e7f5f c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb58f5cff c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x48493d37 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x55dea665 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x774f0e08 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe9ba7035 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e43a129 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15b7ce9e open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17b29db7 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1aa4b027 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26b57000 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x27f732d1 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f8a6435 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47762428 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x61816a81 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x63a33820 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ed3f1dd can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x81120b57 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c81f368 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x931eafa8 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96246808 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9fe29c10 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab9a5031 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3aa883e can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb4bcdad4 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbdd57c8c alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7fac153 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb3e7ce4 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda897cc1 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc3a1521 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd712f81 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea8fcc70 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec3b6346 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4a960a29 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8045c99b m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x82214693 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa8584956 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc9c5332a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcd2eeeba m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xef1f824e m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfa9fb672 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1e6f208a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x378d6979 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd8dd01f4 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe286ffa8 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xd2d874a3 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1abbe3ef ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2dd39073 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35d546a2 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3ecfa39f ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x480029ab ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x53b6c7fb ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x54572c34 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ff999e2 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x60306f3a ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x672812d3 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6f5fb258 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x91f69d13 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb23a2a20 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc48b029 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd2cbfe20 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe475018f ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xffb47bbf ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x012b0f3b rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x067f634f rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x19c6c9c6 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x235c875e rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x292a74be rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x35c7f232 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x51384065 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x65f7d29c rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x711b9674 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7173d43d rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7a69cf10 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7c93f6c1 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8aa436a6 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa722dcec rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc2525cf8 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe59a1b7f realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7b240661 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf80eb07f arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01b4e4e4 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0393ee81 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f1028b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b876a6 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e921894 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f169c47 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1237ab41 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x154c3938 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x154e1ad5 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x160de4b1 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0dc201 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a5d8115 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2222b615 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a794706 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c40eb2a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e5d83cd mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30577ce4 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38422feb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a8c82ce mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c08b55c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c18b0db mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ce4927b mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42729b21 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44e78332 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4508bc3f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49525e0f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb071fd mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f3574b1 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ff4947a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51411ddb mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53409091 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x546ca849 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f5154b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582941fe mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582ae2c1 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5969b760 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59e89959 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0c5288 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b80b3fa mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9ca419 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x608278ec mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61656374 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62b6714d mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x631863ac mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63c9ff6c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x652b3a1b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d12093 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6829c7f6 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x688fba42 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aa57f78 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c0bd7cb mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbfe72e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f4978e1 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7011289e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x704f2419 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7064c0dd mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70b13261 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72736240 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a14903 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76d9619f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7742119e mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78283397 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b0e9938 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bc98de9 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x800a5cd2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8096cde7 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x833995e5 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86f9ca47 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8771647c mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8836fce2 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e1e5704 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1c0783 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90661240 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f4d28c mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95fe1007 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978b4885 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997b5643 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c368b8e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e01c333 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e725393 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fc9db45 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa04cf27c mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1f73cd1 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3355a06 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4995ec7 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6922ac2 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa740e9df mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabfe7221 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae418935 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0340d61 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0e297fc mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2cabe11 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb567855c mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb867958d mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb88c7e80 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd32743e mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1698d64 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1754331 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5974dc2 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8da1904 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f92c2e __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9600277 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9c626ff mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9eafe39 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc12620f mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7e5b68 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2406eae mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d917d5 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd50291e9 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a34f56 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86df354 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf6721fe mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1edda46 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63b7fd1 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecb598aa mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee6c9b52 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9dc9b1 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf254d8e8 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3c36ea9 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4025187 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5607ce7 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5716c56 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77113b7 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8c15b11 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd765498 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe3e0101 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b030b1 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039612ff mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04a647ed mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07699238 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09c7cf95 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b5722c4 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8c2eec mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc30a35 mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb9e72a mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f1d5be6 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fb3ba1e mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f77271 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13897a25 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1472511e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17ceeb17 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1820796a mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac8e82a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e557031 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x250d91de mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x253a2c77 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28a46264 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf909f9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e98170e mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd0921f mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3349abe2 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a35a20 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35101e3a mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3548e37e mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x382b28e3 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42a2c063 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42a31c23 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x468af447 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ca66fdb mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e82e7df mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb2cd73 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb5149a mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fcdaa33 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565ce30d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b2e819 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d979749 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63253df9 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692575b8 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b59688c mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ba5d8c4 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6edd468e mlx5_core_dct_query +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 0x73c73267 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79fc2183 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7feb348f mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8855c772 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a8f48f7 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bb8dd82 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f6ea8e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f3e0fe mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98cb6c8a mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c858a97 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f3389e3 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa151e5ad mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa599cc4b mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab93132b mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacb5bd9c mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaefa1f59 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2d1c195 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb332950c mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3cd7e39 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3d0b1c1 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb44cc4e7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c8a8b7 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92ce00f mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc17c45c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7937de mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe18ac7 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e841e1 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40b76e1 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc684738b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8db95f4 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd05bdcda mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3228a95 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a6dc0d mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9651800 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac44a0e mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc04cf0e mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfab8e39 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0c08563 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a1c1ee mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe981dc7b mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaacf35c mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd92910 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1b4f64fb 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/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 0x2d9bc440 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x57ae914f stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7cc107a5 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 0xab61d16b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x02648ac0 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x029c27e3 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3141a813 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x988c5ebd stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xeba84486 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x759cac65 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd91135dd w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xde7c17ca w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe50080c7 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x38cb31b1 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5e9e3a64 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x682e2263 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x821f1a02 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8eb2d9e8 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbfb4d343 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x146467bf macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x43b7d545 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x791aa118 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa30d6ed8 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5086bfa3 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x72b111a0 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ac3e8de bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27d8ca28 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2946f743 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36a78186 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42672f50 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d944b57 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5293c52c bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65f2606b bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6945da79 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fd6934e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0aded4e bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa33b8c4d bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa48058c4 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf297ef2 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9be9aa0 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba96aa1d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd54de25f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6c990a6 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xadb932f5 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x1f9e8c54 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x38ce5185 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8853ef80 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaabcd8c0 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd63f7384 phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0c259120 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x4a611f9b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x534b2915 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x5f8819f7 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x66a94139 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7f6da2a8 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x84765895 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8e140215 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb6c30f70 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1d8a7a58 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2e02cd57 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2f296b1f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5ff0c3e5 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7a856c36 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x07643c4b cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x21f2fc95 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x337f079e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a9c7bdd cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8264f2d7 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc0405122 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8a4e7fe cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf29054d5 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf98e73b5 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0301be2c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x19f0275c rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x258c749a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb646863f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0ce606c rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf77a6507 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x085d239b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d972401 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16410c2c usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22fadaef usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x315f481e usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d39ca0f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x534ae80c usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55e45efb usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x577176bb usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5cd02356 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c87e553 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6da307cc usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x728f6ba3 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b4dbb82 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82a92d50 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87647ed7 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9262344e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93e90bd0 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95e88550 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x988da8ba usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa540d247 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa62c625e usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab47b1bc usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad3f4bd6 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8aba2a7 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba34232b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbb7847e usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc894e624 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd02a9d9c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe18fb4e0 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe335e9d6 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed6f7ba0 usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf07834b3 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x047a15cd vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5f4e6e06 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x95486d3d vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9fbafd8c vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x02e58c80 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0e8174d5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1493c760 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2c84be47 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3aa84f60 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3ffab965 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c84c811 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x674322d6 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x892c8928 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9e0f5e17 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcabb4ecd i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xce182bb3 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd75a1aef i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc4f3f76 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2859932 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xef3a1264 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xb81d7787 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55ca3f0a il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c31238a il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9197bdd5 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c58de6d _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb6294c8 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0189c36f iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03dd0d81 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f0f6623 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10aa5232 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b221b53 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d34356a iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22d86fe0 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24091e0c iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26d4df2f iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26eb2ef4 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x307bdb31 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35822409 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x402ff4a5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a438936 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a993954 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f532cca iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5359415f iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x576d7793 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58243158 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a25a849 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c117bbe iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f51b064 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62315c53 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a07abd8 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x704e9c43 _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76565c82 iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7717dc9c __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b6ac603 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x843639d7 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84811247 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85ee5675 iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86ae92f1 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91674031 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93db6565 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a001090 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b0bcf78 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c37037c iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xad3c0b16 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb11a885d iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5bf679d iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6db1070 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb70ef3dc __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb985bc21 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc094c3b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbceee3f3 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0094fbf iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc215d0a5 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd03ea58c iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd46366c5 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd60fa09e iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcc070e0 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe704a2a2 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf7e15987 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9b6c16d iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfed75647 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x249a935e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x50e71df7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5f944bba p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x775c0219 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x79713cca p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8010a664 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa3a846f4 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcf0b1b05 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe9245fe3 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x02943033 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x14013463 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4019a0d9 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41df1b94 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b9457b0 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x529cf788 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56323ff5 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x57829ab5 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x769b58bc lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90e8e928 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90f8ebcb lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb7219326 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbb7ed9f1 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd22ab190 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xda7a7b94 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf13d7537 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x21cb5fff __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x751ec75a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x80995fb3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8c31195a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa466a174 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa4da93b2 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb26f6c04 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbebb5993 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20d5fcae mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x30f6f534 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x38359f71 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45382aa5 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4fa0a7ed _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5754a98a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5dfd05bb mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61c191b2 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6a138324 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7817c4b2 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8ee03787 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9998f1fb mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9a7f9cbe mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9f50909a mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb374d1b9 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb7a2caf7 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd6a13265 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd813af3d mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda50b800 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8103368 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeb919b6b mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xec313ee2 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeda6152e mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xef52663d mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02103d07 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0643e73b mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07f3042c mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1254baa6 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14a2b4be mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14a893c9 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ffaec6a mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22d096af mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x290d8c0d __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29e84222 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bb6646d mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3909369e mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b6c2f34 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ef26999 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4140a040 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4669e4de mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47e9c26b mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49f3d3da mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a05823a mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5663a19f mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57faac4e mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58da6c8d mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5bc4468d mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x608384e0 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6adc005c mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75c00dca mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7612360a mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76981a36 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x828cf510 mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c423d6e mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95a081f9 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1e917ff __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa226a898 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8f904a8 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab1510c0 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab762e87 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb37af9cb mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba53eebf mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd9caea7 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1cfd944 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb597bf5 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce3a23e0 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3377285 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd504a0d5 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd54deeac mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd974ef09 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb537942 mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdefd898a mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfe49c64 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1c486b3 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4111f60 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5458d92 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfff862b0 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x05320706 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1137cd4c mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x22bde54a mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2ad70f21 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x52a88213 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa20b9f3a mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa9c89eed mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe480eb72 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1caf2141 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5d680f87 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x66f1960f mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa31668d2 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc03b7dc1 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc8dd1e84 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf06892b1 mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x096da337 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a05674a mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d0ad8e3 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18e3e07b mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c32e9f9 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2146da2c mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21587b76 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x253f59d1 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29de32ef mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d3d00b4 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x318586c8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31cac756 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bb69ed6 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c12a87c mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cf395b6 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4309fc16 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47d8d309 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c649592 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59b926e6 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c010f24 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d1fbc01 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61b42444 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62936dfe mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65d1dc67 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6710d1a8 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a3ed80f mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d91cc7f mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fb74cdb mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77abd40f mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f4384c8 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80141634 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8051774b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8237aa4f mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84658b6e mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87351714 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d0028d8 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92f9686f mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93745a52 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x994e27c6 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a606fb1 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa192c62b mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2451503 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb04a7b84 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb6c53a5 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbcec375 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0d718fe mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6005c90 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7f2a618 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8044028 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc95f334f mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc33c88a mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf3d68af mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd237705e mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd60ad629 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe294a933 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe489f678 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe711346d mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb89e65e mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefb2a95a mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf71ae901 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf76e1da5 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfaaa5919 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfff99d51 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x46b26f46 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x47bcbd84 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4acc355c mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4cc18f6a mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x54676612 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9390b0d4 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9b6acf72 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0ceb957f mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x19440777 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1b218d70 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4832d5c7 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x49885976 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4cae1b4c mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x534a90fd mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x66314d57 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x729f76b3 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x773a7b2e mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x878dd29f mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x888a56b5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x912ae897 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ebd3280 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa9675386 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb3af3db7 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe84aec10 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8719fd8 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff055787 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2dba90d0 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2e9ccf69 qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4ad8ad08 qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6bf293b5 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9e2d7feb qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbf10684b qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc7c2fc00 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd4e4f848 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf8ada12a qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0cc70195 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x168cdfc7 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e0aec3a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x20376744 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21d94e69 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2de3ec8e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ed77240 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3194c892 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3af63edc rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43825244 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4bc43bb8 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55d810b9 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6049a94b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63cd9e62 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f22dcfa rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7301cb11 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78cb0423 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79341954 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c4f8265 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d50164c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e1b5ce1 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8827fd23 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b7b3ce8 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d68acd2 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e366784 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ba7c440 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9fedc789 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3ca7be2 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa57a6a4a rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaea3242d rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb584521f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9f46b3a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc338af56 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8df1b6e rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc6f0299 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0676a03 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe44ccca5 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe6324d46 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe92a749e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9a7e349 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea73635e rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xefada9a9 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf429244e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd246d7d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x045039ba rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c749f20 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1fd12bc6 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x23f0eec6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3809fb9f rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42ea328c rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x43df6fcd rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x50e564a2 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6cec6ac6 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9203d7cb rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa93257da rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9f4f29c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda40df84 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xeb5c935f rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf7ca7319 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff7e2d5e rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0240ef75 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03884ea2 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05be516b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aa586b0 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ec0993f rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x15296467 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27a32a69 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3001cd55 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3129e04b rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39d932b3 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4306f215 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x433de175 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b66dde1 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62ec4129 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64a43ff8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68cc1a36 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70a794cf rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x725a9a81 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74c41917 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fb25a8c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x833e907a rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x840c20ef rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8653805a rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89abcc3f rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e87c58f rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c3755e8 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa459595f rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaacb99b7 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad697af4 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb973ca8e rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbf6e996 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc3aae19e rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc58faa1d rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8f63ed6 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb729b80 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1578000 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6a3bebd rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd97ec582 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe76ada62 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe90cdd9a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe920aec5 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeef2511d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf7032d9c rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8540a56 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8a23625 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9d44768 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4776b732 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x647aed95 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x80fe17f7 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xcb702b2b rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe5f8dfb0 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x37a22f63 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3ad59bab rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6aec5a85 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc08e365c rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04036268 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x414f0d38 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7121be88 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7d9ae278 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x910a3328 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2fe0d25 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb8fbeb5 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbdf4f5e4 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc37db182 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcd3327e4 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd18bab15 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe671be87 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xebfd361c rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf2fb7168 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf7e05a41 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb4ea8e4 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16b8add5 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28b3ba72 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c8be5d4 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x609a6776 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0079e41d rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f988deb rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x202c637f rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x257bc0a0 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d9ac790 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4470d074 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44e4d61b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fe78447 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bd90017 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f94b5e4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89c68d28 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 0x9029e1d9 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97a10f9f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98797028 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x995f8626 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xafd89abe rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd1bcd0c rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcada04a4 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb932721 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf81ca33 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd101c981 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8fa7af1 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdee54199 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe33e0ab9 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe35051b8 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0450eea8 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14558238 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14fbd168 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x245022cf rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x338a40fa rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x340cbbe1 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c5d43c8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45218c83 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x491fe193 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d082f8c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5deaa27e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69c952c4 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b854c76 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70b16e8d rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7afb8da7 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f7f107d rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9af8174c rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa33d39cb rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb266dba3 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4382f2c rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdffb6cf rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd272ab8c rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3ed62db rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcecffab rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1f55d99 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3fb36cfd rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x501a1058 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6e15e221 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9fb9a205 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 0xf175fa90 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x07501d2c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x57d53788 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8b9067b5 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfb344882 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x251e27a4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x596557e5 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x882897c3 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00a2e585 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07c2d1cf wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ec427b4 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x128b08c2 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13477d65 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13c32b4c 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 0x223d5aaa wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f28b2bc wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x320fbf6c wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3224c750 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33ec90eb wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4857124e wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a19ff31 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x589c69b3 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fe267a0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x663dbea6 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76b76106 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x785cc7d7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78d4cedb wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8492d08e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ac5f23a wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x912bc5a4 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92e092bc wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x982f60ab wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa48654df wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaef85beb wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4cfa440 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4fb35ac wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb3eb924 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdeac325 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe6fcd00 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc32d247c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc361baf4 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb440eaf wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd506b525 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaece305 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddce71d4 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfdf03fe wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3ad2621 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf663d30e wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc26f239 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfceff21b wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd62eb7d wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x12ab502c nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x38e45265 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x391dd3f3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xeedde32d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x097b6f9e pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x568c85c2 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8a26174e pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf0b3ba35 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x245acf48 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3c90acf5 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x56d8fbbc st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e4e4543 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaca88a33 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf10a44a5 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1845b3c st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8e2303b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2b4f1ae9 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x73469c31 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xeda0cc36 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x26f935d0 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2f920ae0 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 0x512c928e ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x009bc8b4 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x014797e5 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x049b4e9b nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x057ca9af nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08ab44f7 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dcba4f6 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1083176d nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1490544a nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1501a2ec nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19876274 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ce841a6 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e2dd1a6 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21e2dd71 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24c567e7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27f88473 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d13af89 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d21ac0e nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e78385e nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e8c179d nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78fcb6b6 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x794a5e33 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x795db131 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d318555 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x829a1ada nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bad8818 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bca29c0 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9228238f nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x932fd54c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97615136 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99c9ef6c __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa14b19a5 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2b177ee nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6d9d594 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab478af3 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb128967a nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbdb723f7 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4e316e7 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6a0251a nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc94458b3 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x001211ae nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x04388861 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e464d80 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1f1da7c8 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3eb9fe1c nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6ae51464 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9973ee30 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x999b6ecf nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9e1d8c86 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcbb7a9a2 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdfb37f9b nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe0e97cbd nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe1355541 nvmf_fail_nonready_command +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 0x3fb8c36a 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 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x16285122 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x17ad867d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2daa0a5f nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x43fa3661 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5defb4d2 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6d0e2f96 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85852472 nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9d1d26b1 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd230dd46 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd93e3446 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf827c0fb nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x598d576a nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x87927681 nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xddb93c97 nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfee33ec7 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x23e4ef4c switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x208b13bc ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x37ee2480 ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x4fc54691 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x77e2da7b ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x7e5faa68 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xa914f9b0 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xbb0b9750 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xc420dfc8 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xec0e10b9 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x83e1bba2 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x88fb6d76 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9464aade tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9f00a234 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc50d1437 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xec14f656 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x3a31c701 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x8cd9f409 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xd0fbcbdf omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x14e30d01 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x62ee624c reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x867145b5 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa2fc048b reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0f1cdd1f bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa6169921 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb6025814 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x000844d7 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x30d3acfd pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x70e3a792 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x36fc74e8 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4b00e471 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x61796ca0 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6acbbfdb ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa32e61c8 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc8b4e000 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xef3137f0 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0aa229cc mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x21c49c17 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x83c7e28c mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8691eb55 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x86c81245 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2f895505 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3cd78eb9 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x56b864e4 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x83ef1bbc wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x907da1fa wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe649514e wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3c0ddcb4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f6a68c8 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5b02960b qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6c29f2b1 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6f5d02da qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x76088270 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8fbc1758 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb28efb09 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3651c402 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3e54aaa3 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb59bc38e qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe9f30646 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf1ea511d qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x68a2f253 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xa0a5466b qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 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 0x94fc04a2 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x092b7f75 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d9cc7ec cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1597f7ab cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1732241c cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x196b825c cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2446eb81 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ba3aac9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3133080d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35b1b73d cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4297772e cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48068887 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x512516be cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59ae2f6a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c2b3af0 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6310627d cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x635aaf43 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a0c1616 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70142c22 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x777299dc cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ae29403 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b2927a3 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b3e9192 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8311c8da cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x853ed3ed cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x888f6f55 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x971af892 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ddb46a8 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9f2e361 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa5ce463 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf127972 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3d71626 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb49ed33a cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7032f5a cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8fa2824 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb65bcfe cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd2c5a57 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4ae8457 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe19f042b cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe49cecf1 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8ee1253 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed93f27d cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5aacf99 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbf32d88 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc4624ab cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x01f9a540 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e319507 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fa3f411 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fee95a5 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a95c1d1 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cef634d fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30a38c34 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3d7978ca fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x624afa1e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x648520c1 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a70c831 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8369182b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9de1143a 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 0xe486f7ea fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed7632e1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf6bf986a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2a3eb0a5 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x46567f0b fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1de01ddd iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x73b8c28a iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0e9d25e iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcd880311 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd596513d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea0b1f54 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf5735439 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x3b641d18 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b578f92 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2120d6b7 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23e694b3 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e46a230 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3355f161 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a353374 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d61a516 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49dc42ce iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a70b602 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4aac61c5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f1a10bd iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b540692 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x707e1e5d iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72673517 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x744f2cf5 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c5effa2 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fcfdd4c iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81d573cd iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86c83bfe iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93820df4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9658e79e iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98cd4d64 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x996ae917 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b67720a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ba8618b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2a23bc5 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4abf47e iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3593fc9 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcbd3de3 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc230dc1b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3bb0a11 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb79c17f iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc8d6f4e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3206135 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd44c887a iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd89ebf78 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd975bbd0 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb8d909d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef94829a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2a644ac iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf69732ab iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9d5c3d1 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01feafd4 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x044d3aef iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b782d30 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1478d083 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x262c8950 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3448a451 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40c86f19 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41b27db5 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42f115fb iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d16b746 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa2d57e2a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa9539d23 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb27c42c4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf76eaad iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc284ab39 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0be283d iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfdb36de6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06f6250d sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ea115e7 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e50eb53 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a1c8dfb sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48998bc2 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c2d484c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e7b80e1 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ecf7d81 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x554ed810 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f6b1fa7 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c8cb30d sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e77ffac sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x862c57c9 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa365f49a sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaad15d52 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab9b0eed sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xadb3f80c sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8e573b8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcabb75e1 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf7c0903 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcffda860 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd21400df sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe408334b sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf00724ae sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb52ba54 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d516ffd iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10a027a8 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11d7ce4c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x191ccaad __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x211edf52 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24f023c0 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d846557 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x318c9a58 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3523eff6 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fc2ca9a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fef877e iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x531a4bb0 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57da36ad iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58d9c865 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d9d2b2c __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6520fec2 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66ec8ad5 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6849e47e 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 0x6db0738d iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f7477d5 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd7d6be __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x834178ab iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x853ab82a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85a2bcc2 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88f54c4b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c244d79 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f63a24b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f9ae949 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ce47d2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa43269b0 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5a54bbb iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8271234 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaaa1d09f iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae1029b6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb04f005b iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb53b1eb8 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc90ed749 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce4dfc5d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe13ad259 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5d5f4f5 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe973542e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb725d51 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf71be0ae iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf73aa7b9 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7fcf62e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe15ecc0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x70f58c70 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8ed7293b sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb2627813 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc05c31cb sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x1679350c 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 0x2a325509 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4a1e690a srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4edc6dad srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8ca98996 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xce53b387 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe2143ff3 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1767ed28 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x24df8dba ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7caac82c ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc4806987 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcb6eda6d ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd52ef60c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd628f374 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf38569e3 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfb82986c ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0c7623b3 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x17d02075 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x25ab33ec ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x497d6c76 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x580a83e9 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9d5d46de ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb40ed179 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x76b28024 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x929efc3c siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa5abd9e1 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa78a756a siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf71c4486 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf76d6824 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0ebb12b6 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f1cf16d slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0fb496e1 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2822fd1b slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2fad3254 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b920d6e slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4717daa9 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x478eb707 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x553b08e1 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x703a038a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x741b1858 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74e82a90 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90956557 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa160c516 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1d31087 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa24fd4ec slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa700b9d0 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad619401 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb48415bd slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2379e04 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc7b465d8 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe851dd10 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9f3b286 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec46b359 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf94c17eb slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xffdfeb23 slim_alloc_txn_tid +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 0x791d72a1 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x192e6459 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x78e0e76d aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xa29f9c68 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xbfb0b886 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x06285798 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x09afc16e llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x14f99b76 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x2027e82d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x42d8049e qcom_llcc_remove +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x617208bb qcom_llcc_probe +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x62ff6e92 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xdffee709 llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x000edb5b qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x83862d66 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xaab6091a qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xccec656f qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0cf624d7 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa0259d3d __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xce468045 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x06d7dcef spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4598a044 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x74b62eb3 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb9256e07 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd821bfbb spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb6e3612 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5f5614e6 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x67d8c9cc dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x67e46907 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x69925bda dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7fcdd67b dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x588df49c spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb31b5a20 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbb2547a6 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1647adfc spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1cb05a3c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3fe44970 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51e21167 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fa44c13 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7108dd7f spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x823d243c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x897d907b spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b54f9b9 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e868f10 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e139b13 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0102d1d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc796cc48 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcaa2213a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe48c48fc spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9ca5503 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xee732c87 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xee7fa549 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x88c098a3 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09a618e8 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09e8af31 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0bfba236 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0ea890a1 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d90ce2e comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3d201bf4 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43ef65c2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x54bf96c1 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56d3269a comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x588a578b comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x623238af comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6477fe61 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64a7827b comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x800e89c6 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x82b282f1 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x88777c06 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8949f29e comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8956a53b comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x930a9d5d comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x94078ada comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x985db672 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9a764a09 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa564c25c comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaaa1579e comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1762c28 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb603edb9 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb035634 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc905e474 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd1cfd3d2 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdaa0e702 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe28cb795 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7c24d86 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec7d67ca comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xee573f63 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3c6a1c8 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf7cea394 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x23183530 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x381bf0cc comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6f35d678 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9d5b0e5f comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa2c183e2 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa4e113d4 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb753b56d comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe5397a56 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x086002e5 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4d17338f comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6d896e18 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcfd033a7 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe3c8cfd1 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf07b3719 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x9ed2ff55 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x4fdd7b9b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x9e9421ba amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc36804fd amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x01432b4a comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2a665922 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x69fa55ed comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6d5304bd comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x75d3b28f comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8b7f012a comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9c9e459e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa088505a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbcd17a0c comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbf7a449b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd82b4eb0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xea073a89 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf9d8b0db comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x51af8c4e subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xebbdc743 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xee7e94b6 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x58a54628 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1e6eeb52 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x21a17373 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24b657ce mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2cc49026 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x391fab12 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41cfe100 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x51dfd772 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x57e31468 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6d12f2cf mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8326f000 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x858b7b54 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x90d5fae5 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x913110fd mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc51c61f4 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdf7e84c7 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf10807bf mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x02931d51 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7c763e1b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12ccc778 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1f2d3fec ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2e57a1a3 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2f5b58b2 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3066463c ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x426e72cf ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x59e45c0e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5c442d81 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5da338a2 ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7954f169 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9588fd17 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x959c832e ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9a77e18f ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xab12fe92 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc5bea87b ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd67d825b ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x17dcc1b7 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x207767cd ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x870079d1 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb95b4999 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd1b1ca3f ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe9857a51 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x05dc5c2f comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7f8a5968 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x84dc5e14 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9f97428e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xad36c28e comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb5cbaf6f comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc6682674 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x55853f02 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5a0a1c10 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x66585c9c anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6680d034 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7b037429 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7da5c3f7 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbc25996f anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd457f26a anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdaf6f36e anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdd833251 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe9ea9609 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfaf74c22 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xff7ea98c anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x57184b06 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x863d0898 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd483146d fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf94d6fd5 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1674c675 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3807f10d gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x51505f0a gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5f86482e gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b390692 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa3a75736 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa657a765 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa9d15082 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbcdd834a gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc49c9065 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc850136e gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeef5c9fd gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfd5dd78c gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2f49d990 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x31a4019a gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x39944a92 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x39ec6b6c gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x460c2a98 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x63db4a47 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8beff700 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x98fcd33f gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa4aec4ae gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xace6ae58 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb75b1885 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7a4a97d gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf8a6793f gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x864e750a gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xee699c45 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1040a5af gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x275c8835 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4aadab64 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4f6072a3 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2b4c88a5 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x17181608 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1c2e8fca gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x1eca8214 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x231e2ea9 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2b4fa797 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x515e7cd4 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x531eb60f gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x55bb2088 gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x563a8401 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x594e062a gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8b92304a gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x9678b964 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x968f4a05 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x96b3815d gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb9a3ee98 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xc2cefcf5 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xfbc69495 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x00027ced imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x03c2b78b imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x04f96ae5 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0861cecd imx_media_enum_ipu_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x18bf57dc imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x254d3da3 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27852dab imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2dea1896 imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x32bd3365 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x43a8df38 imx_media_enum_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4ec3c340 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x63d3c2b4 imx_media_create_csi_of_links +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6496361e imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6c52c72a imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x74881664 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x78cd1b03 imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x791923f9 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8760f64c imx_media_ipu_image_to_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8df47f43 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x916fc9b2 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ecbc324 imx_media_find_format +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 0xa98ba391 imx_media_find_ipu_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9f141f1 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xaab938e1 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb00fef98 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb625ff2b imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb816c87d imx_media_mbus_fmt_to_ipu_image +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb941e0b1 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba84d46a imx_media_create_of_links +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd1e2c977 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2acfb08 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe9c3b849 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf7918930 imx_media_enum_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf7a48a40 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf816ac2b imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x14aacc94 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x408a955f amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4ba4287b amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6bf4979d amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6efff65e amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6fcccca5 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7dfa597a amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x898580d8 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x986ea085 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9ff0de54 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa7c1f971 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb172cea3 amvdec_add_ts_reorder +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4a84c30 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd688e610 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdde16aef amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe2ff9e72 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x1b1e6dac most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2023477b most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x24845923 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2e904abe most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3293bdfa most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3fadef84 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7a246f75 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x8421842b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb28f3506 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb76d91ef most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xd9408f55 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xe045ba2d channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xefd9e438 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xfe06897f most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x02753866 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x19c31f50 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x523a6f16 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00eb1c1c synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1640c11f spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1ec6c753 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x45d20ec0 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4c65374a spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4e306337 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x51a6a1e9 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x53dadda9 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x54cccd6f spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5616842d spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8181ceec speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x933e17b2 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa47f58eb spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa6ae1a10 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb97ee8c2 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd79d40f3 synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf25dbd31 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfc747dc4 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x2caf200c i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xcb68825d i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xeee394c0 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x2c5746ec umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x93fb25f0 umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x97b65166 umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x9c464618 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xda9c1393 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xe37a8435 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xee0d975f umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xf14a4990 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x04fb548c uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x14e6e61c uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x196f9ff6 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1b6796ae uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x26c4a46f uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x29e19317 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x29e6872e uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3798978a uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4f1bf778 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x58edc980 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5ddc0f0f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5fcb8fc8 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x653be158 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x68bd1311 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x746f11a8 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x83670168 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x8d2d6de6 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x97d26822 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x99f8e39b uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9a3c9288 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9ebac57c uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa14b820f uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xaef7e7a0 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb09b0a97 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb14f2036 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb24adc24 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc4edd9f5 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc7d9ee98 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc84bfbca uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd06a23b6 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd26a5a7d uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd278726d uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd4945c73 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe206e3c4 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xeeb09fe0 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf20e86b3 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf2d0d060 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf441b701 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf6f1b9f9 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfb10074f uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x8a504bb5 whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x0ddbe9ee host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x30748766 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x3c370eb8 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x6b9664e9 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x902ccdc1 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xc2702f8a chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xd8c2941c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x042038e4 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x17260b07 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x4b24ac90 wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x71951fbe wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x979578d2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xbc29fb95 __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xcce5570d rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x069c6c04 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x1581a9b0 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x215332ad wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2de9daff wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x364f3539 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3b676eb8 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x63a08ea8 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7060b900 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7142d76f wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8237c2d7 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x8bef9188 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xabe8084f wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xac69c3c2 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xbd8871fb wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0197371f tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x156f0a53 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x161b5ee8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2930ed0d tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3501ae14 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3521d40a tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4274e69a tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x442c0bce tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x492c7f02 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x701a3109 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x778f19fa tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81d161ad tee_shm_priv_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8cb56555 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9913cc1d tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9c04dab9 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa929a639 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb95fadff tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbba6c0a3 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbfc73b6b tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6cb8678 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc99ed19f tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcaee37c2 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd10d5f7a teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd60f6c10 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd6e600d5 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd878fee2 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdcc7c4cd tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf51e598e tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4fe3961a uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb9e6eed7 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdfdc2b5a uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3c947c5d usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xecff80ee usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1835fe84 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x591beeac ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x82b0fc05 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x16537fe0 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x54e06af3 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa511523d imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb8f0d92d imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe7ee7b31 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4ff307cd ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6de7435e ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7560b7cc __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x81c42cac ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9546fa7f ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf69d7153 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x166810e5 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x360fb6ff g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3be37744 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x55ec5fea g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8a03c082 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe8a9e86f u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x04ade4d8 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1096f588 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20ebf27e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27841161 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5075e18d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a60e72e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f1d86f3 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x710f6677 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78ed16d8 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c8df097 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 0xaac58a80 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad01bf38 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb90c41d8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf121c26b gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf3046a2f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x35067ec4 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8164436a gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9435bd9d gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf54dff38 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3df5db03 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa67cc16d ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe88b0a26 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x075eb6e5 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x139734f0 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 0x19de30bc fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1e5faf67 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x25bec2c9 fsg_show_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 0x45866849 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6495f2de fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6beb4207 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6d90cc98 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7a9dbfcb fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89bb34c9 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 0x986cb62a 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 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 0xbeea0c9e fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc09452d7 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0750f2d fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4269327 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5e718ae fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x02b662a9 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x08c712b3 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21728e2f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4222d9de rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5601997b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x61be22d4 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64e1437d rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x733af998 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9b537d6e rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa29aa946 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3915220 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc813c101 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd5b51ff3 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe65eb69f rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0ba6521 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02193964 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03572186 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1400961f usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1737e396 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x186c499d usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x305fa27d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37cc5df3 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x392391eb config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3cac33c3 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x416666d1 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4234483c usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x520b35a4 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d9db786 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61b05fd9 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e1fc310 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77d91f73 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c5916a6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fba83e6 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cbe46e2 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ed6e188 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9427791a usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x975dc047 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4fb66c6 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb3ec2ef7 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbbfa82af usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8d35961 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf04bc14 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd9d3c45a alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe429226a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaa57d5e usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf954f2fe usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc996fdb usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd42b60a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x33858924 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x40709da0 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 0x85c1a948 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa8cb0bbd free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb3d91dc8 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd3447c36 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xea3473cb udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xee9709a7 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf4e435c9 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb80f0620 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf55a3956 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x03001aed usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x04e1d91f usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x309e0bc8 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4389c386 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5316aa32 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x582e3935 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x89890d41 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa08d8ce9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd6c00a3b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xbb96f31c am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x25d490d0 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1eaed40f tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9def5a03 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xaa09cf4e tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xfa79330f tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x2b8a4554 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0947b7c6 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1206e99d usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e590455 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x207a76c0 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35df83c5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4f24e810 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59c04e22 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61ebe681 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a7cd8a7 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x724d5ece usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x75f927ba usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76f9adf6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bff810f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d10c48b usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbaf85cb7 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3c8c436 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc77ae477 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcfb903fb usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb547c7b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe00a0e42 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfddcb32b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x15c6f065 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf215451f dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x44b4275e tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x167aed7b 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/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c7c091e typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dbdda93 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b6c2031 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29378bc9 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33e5cf9e typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36970874 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36ab2a97 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3971ce57 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x397ada83 typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51cdc000 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e15e86e typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f1b4674 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63020b48 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63d064d3 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x678d4942 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69d2bb7c typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75e299f7 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ab78ba7 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8149c5c4 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x846d81ab typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86cf116c typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8905d21c typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ee2d593 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x936ccadc typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94ca347c typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad18a04b typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaef8631d typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfa5b551 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1aa6b3c typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc70e10d7 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe18de0bd typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5972cef typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1682da68 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3978ee44 ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5fb2b423 ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x961c1538 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xba6867bb ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x08288479 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0de6abbb usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2139f3c5 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x230c2ddc usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b6bd4d1 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x482189f1 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4c801de5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x739c9775 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e22b370 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8e0c4cd9 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8fe0a5a4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7004db1 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbbb872a8 usbip_event_happened +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/vfio/mdev/mdev 0xb3987e8f mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9477944a vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa8073670 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe65871f1 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfbec6901 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x79eb5b8b vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x96351cd5 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x98bcd719 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbbd90673 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd251efda vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd31c6358 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe6ae4b45 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe741e984 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf9a67d84 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x2b8f224d vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb2849b18 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b6026d2 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c7af227 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1cc046e8 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x229d4227 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x253dfb16 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x387437d0 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cb82a4e vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ecfb8e4 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x424497d8 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46d8c448 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bde37cb vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fb6533d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x526a76bb vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x634b79e1 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d1e0e41 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70c5fbf9 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79b779ed vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff494c7 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84499050 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x862d0e0e vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c1a4c50 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f82743f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x923de417 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94123aa0 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98bde32a vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99267edc vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5b3a0ec vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7c17884 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb99b424b vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0086d38 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7f100ab vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe002ed09 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe058ad96 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8aa6b01 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec87ca8f vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef696fda vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefb25c90 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc4bf37c vhost_signal +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2ac087d8 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x55caf418 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x59325f57 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcf0f69cb ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe211805d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe61c7481 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xebfd928b ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xc2d65df8 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4aa8ec1f fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc730e227 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x15ee2ca6 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4218022f omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6d1f3793 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xadf89ca6 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6cf06bf6 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd4a672d0 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x17ac1af5 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x66e9f357 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x78886c45 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa0532b1e w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8ac97ae w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xace536b7 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb4f4f8e9 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd01f47e5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd24ea4a8 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd4869f2d w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeca9c0b4 w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x876ef5a1 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xedc7491c dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xee336582 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x04291bd0 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x261cecd3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5d30aadc nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x64d07ca2 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84c49f2f lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaab17329 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf3edbb36 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00979b3b nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0409c6a3 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0448061f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x052ca569 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x059a7174 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07da333f nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0caaccfb nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d70557e nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2ae394 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fe17fe8 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13bb1b6f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13d188d2 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16e98f7c nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1710e78c nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c53ee3d nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203912d6 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20838b20 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20a67991 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bacfb7 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x222c219d nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e36952 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x287bce5e nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2965457e nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c15638b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6f4452 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x305bf72f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33d2bcd7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37c426f5 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca15ca3 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6261c4 nfs_write_inode +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 0x432d5fac nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x465ed7d1 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49c4c03e nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc6ac41 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc7fee0 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fdef2f2 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x547c2096 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55508e7e nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56a2baa5 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56c87d22 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58eb4337 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58f918b3 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a80b094 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf9d491 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x606f8061 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609fd489 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61bbadbc nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63b34175 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652e71b8 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65edbb40 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6612a178 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66c0a03b nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67e249ab nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x691338b2 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d9776db nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x728fb86e nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74236494 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74681621 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7607bd55 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77e7ff40 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b78611 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79641878 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c30b63b nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebf4ace __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fb80360 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82af0f5b nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x840b77b3 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4e59d4 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8eb0e03f nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4ea2c0 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92819080 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92cb08c4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94bf29f2 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95e4f1c5 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a408b4 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9980af71 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0666db nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0d4243 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa25a7c nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa02e6509 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07373bc nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07cb6b2 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ddc450 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa602a2f7 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa66c4fea nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa72f3187 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa847adea nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91480cc nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93f1dc2 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa04128c nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa09b7ac nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaac301c1 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac995c96 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadbd1161 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1bc3f3c nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb31e5e8f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb625f92d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd5bb98 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4eaf28 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc05b0d16 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0e782f8 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31869d7 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a23abe nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc648fecd nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77bd9e3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc88e940a nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac9710d nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb2e033b nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd0a0e1a nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce6f29b1 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd14a5926 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1ab2ab7 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7618880 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcadb992 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcd570ba nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddcb840a nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf33fcb4 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6d1462 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe01d02c0 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d9cce6 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe670ab70 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe922e535 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed1d6ab2 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee2d40b0 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01c86ee nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2f0c6e6 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4a0bf84 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf976984a nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4c3ca1 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc007d8d nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe10a87b nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x569588fd nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x003fb82c pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0077efbe nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c79e02e pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16c0392b nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20c4816d pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x214eb9f9 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2150d880 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24e96d16 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26c7db25 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3249ed55 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36751a61 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b006be0 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d54d964 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3da767ad pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e5517a5 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e73f10c __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4015c654 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x425a1ae5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44acad21 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fca4767 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5205f7ed __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58ebe6bb nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a2e63a9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x606ab1b0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62e7582e nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a386008 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e16b52a __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86ab483a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b3ed097 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c1cea06 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cafbefd pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cf7b688 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x953fc7e3 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d669fe1 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ee58985 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f0d56eb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa969aeff nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad030fea pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb84109b6 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85de48c __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9291d5f nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9a77037 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd64c52e nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0c229c1 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151e45f __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3cb0756 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4355b15 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4fc04eb pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0261f0 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca1ef7c7 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb3d80dc pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb86b178 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd57883e nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcea276de nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3366cd0 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5290d3b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda98c036 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1eca9bd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1fb5fc4 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7271159 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec3c68d3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0a48760 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf58f2afd pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5cc9619 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf81e38a6 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf979ed1b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x01fd3372 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b42ca63 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd7977b22 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb79dc33f nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe6edcbf9 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x022b4e74 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0fa2b09a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3715ea08 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x41fc4b90 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4f9dcf24 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 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x71df26ee o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc04c4d33 o2hb_setup_callback +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 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x079b6f75 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x55b1136f dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb4fde040 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcafa1e64 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 0xe85ea93c dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xef246b37 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x07630ef0 ocfs2_stack_glue_register +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 0x1e00a6f5 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x29fea95c ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5f4122e8 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 kernel/torture 0x0c2a8d83 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x0c61776c torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3f18589c _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x24f31c95 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa7461a7d notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1fbd9436 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8366f5ca lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x04a7cc42 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x0a864735 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3e06e0d3 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4cc13902 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x65289196 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xb325e516 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x0f6d26fa mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x4e2bd1ef mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5c9ccd3d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x85c1a8a0 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa0abd55c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa2774cb3 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x3ec94398 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x540c7c57 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7d7fb676 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa9ebbf2a 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 0x51feffb0 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 0x13ea3e63 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x15b0d3a5 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x162e532c l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x20293105 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92595628 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd228d662 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeef5480f l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfded1bb6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x75134a0e hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0526d932 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c759927 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10cba1c1 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x13b31517 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c6fd7b5 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2bc19f53 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b38b422 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x46e9118d br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5c051365 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x643c07b7 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x84eea5ee br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x91c0bb39 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7834712 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc71e2b32 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9c2cf4e br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcedbc81c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xede615b7 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe30bfff br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/core/failover 0x338d3d3e failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x8c4ddfa0 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xe58adac3 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x07d6916c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c2886a8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c643cd8 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30c4cbb0 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x447c4f3d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4742ce33 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f4cf1ec dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55e72823 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x608d0ffb dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x653e4825 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68875463 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x692775ba dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a95c7b9 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7873cc31 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82b2bd21 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82faf5e8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85669c47 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8edb51b3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a9ac590 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f72aa24 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa43e19f0 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef1c85f dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7fcff20 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5033160 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf5cc944 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf76a28f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5fac510 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdcf808e6 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf1a9fff dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe62f6827 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec011faa dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0784aa7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf459a66a dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x058e5f51 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86372e7c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcb20b0a6 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xea3cdc88 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfb59dd44 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfdce2c79 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1c2907a6 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x223e63ab dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22eadd82 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b4d8f80 dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f8b4e98 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x517a66dc dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d4f6958 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c6c6b82 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ccfcbea dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e2915a1 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x868919c0 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8863fe4a call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x905c2c26 dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94580579 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9554a725 dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb9dcf67f dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc6ed3e8f dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc896a310 dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd093092f dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb37e860 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe963eeb dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x1117a030 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x17c666ee dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x41d0bb22 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x7fa1ffd0 dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72235504 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x77feac34 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcb3654fa ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfd4441a4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x56ca04c3 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 0xcb5612f4 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x65f6bbfe esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe2f2a89d esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe75a4fe0 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd22eebb5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdfffe0fc gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0d94fae3 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x27c43da0 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c8c1457 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6529d81b inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x834227ba inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x998a2afb inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa86225b2 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb532ecf2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb68105b1 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x8d80ece4 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02b60986 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x161ae09e ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23a36810 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e93208d ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x405dfedb ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x412a4592 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x48769953 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6aa2bd95 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ebc4e0e ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76ab5ffd ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7aa12b6a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99512c83 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca2e83ae ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdfc24817 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe80ba05a ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfdb62662 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x433ae70f arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x48faf408 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x0bcdf3e1 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x3c06cc83 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x01e9cfc3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6178d0a5 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe2dd4d22 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe671d488 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfed79fb3 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xee46b2a4 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x29001f63 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x54b6d839 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x62315180 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1f562218 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb8e4abd3 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x086f39ce tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0962a1fc tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x82599d73 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb6309c92 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd716c021 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2510bbb6 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2c24cfc3 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d5a63fc udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x91603ef2 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbb0afdf5 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd1946bdc udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd3862c18 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe48ae451 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x419c42d6 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7817dcb7 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdb50a6e6 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x048f384f ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6e4f2e14 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdedd84e9 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2096ee7e udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x46e96b93 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x5bff4992 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2cdf030f nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb7da677e nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xc66e8b0c nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5128dc7e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6e17a53c nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc23fe38f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe23947c1 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfbda0543 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x692113cd nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x358ef943 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x591076ce nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf8b05e75 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x247038a6 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x6fd470c5 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15f300de l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18447f92 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ca92685 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x34c334ae l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x359b5d1e l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x365fc83a l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a3fd442 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5082d644 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5aed2651 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78998ce0 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7eb2ab4d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x934bae1f l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa9dcda5b l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabaa8fac l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda74e285 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec630834 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6801ae8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x4fe87c5a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x011d8acf ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1319e954 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56401db5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5878653a ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89f3615b wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x983238eb ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x98cb28ca ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9da62142 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa005635d ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0cdf180 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7b0cb5d ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9f01945 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd113a90f ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd23ddf73 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbe4e74b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5401c26 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5b22480c mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaa1027bc mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc009ba10 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcb3918a3 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf08ce4ba mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15e24e11 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1d066c6b ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x214720d9 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 0x258d6b50 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32ff9233 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c567c1e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5cebf647 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f0bb4a0 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61228952 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x677748bf ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x732a11e4 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x840591fb ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9567f4e4 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa78a5f7b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae0b50de ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd048276c ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0d2583a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeee63c4b ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x48c4e8e3 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa109d054 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xabc8dea4 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf6867c50 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0fbec0f3 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3833ac86 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x856ec6d6 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd3ff4e37 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfffb1688 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0079ead4 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019f7af0 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01c814ac nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01d5a5d5 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02374113 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0796f9b1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08fecbd3 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cf78fad nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b6c391 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a19b747 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bb36e59 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ee66bf7 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25cdcfbc nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x272b2db3 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bc21331 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c3f820c nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f0b528a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f7237ea nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x377ab8a8 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x385a9bb8 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x400411ad nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x401a55c2 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40b27193 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x469797d6 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46f66e0e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x474f09f4 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51fab3be nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54f29687 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5611c488 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x568c7cdf nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x590bbadc nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6163cf3a nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x638cbd2a nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64017ac7 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6475c858 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x670d05fb nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bba36cd __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741b147f nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76a694df nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7710e389 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a7fa136 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cfe6448 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80953f20 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84579f0d nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87937172 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91e84f1b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a4aecfc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bf1ea78 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1bdbea3 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8bd632b nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac2eb6fa nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacb40ac8 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae4bdab2 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafd42c62 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2962ddc nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc08c1e9 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbedbc22e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0cea13e nf_ct_helper_log +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 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc71022b6 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7b75793 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc95fcd23 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca87c77a nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccad0463 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd732d8c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcecc84d1 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd958a071 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe103b352 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6d0afc5 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe86a7e2e nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebbe9c0b nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeccb6b34 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecd462b2 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedef9aa5 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef6135c3 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a7f068 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2352920 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2d73675 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf47a7f51 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7c62fbe nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf91e4186 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfab4af88 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0d9d03d1 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8d01e43f nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x26b6e8fb nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2b2cc5e3 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x33eb9f30 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x36fa637c set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3c602e30 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a435534 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5dbfd897 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86c97884 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa02c8035 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa7642b2c nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed2804a2 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x53ddab57 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0b5dda71 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2e8af480 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x63580202 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9fd51aff nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x871f6c7d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1366560 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xac694ec8 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc90d8612 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb5315f6 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe178f623 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe859db97 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa034578b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xc62d9239 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x108b814f nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x52ec9c98 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xca256a51 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x08366734 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x09b58b6c flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x156fe19f nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35030864 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39444bd3 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x526b59ac nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5dea761e flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x86cbdfa4 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa444f8ae nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaddb60ef flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb1e0fe77 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd863f802 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0654d119 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x14e35585 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x22326705 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3df1fc7e nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6629747e nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7fc1282c nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x23da996e nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2cadeb70 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3747d5cf nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x470343f1 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ed6a5d7 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f5fd476 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x56a3a0a1 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b75457c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e4049ee nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8be8b014 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99f79118 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xabcd7797 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5175e69 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdcb090f7 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfbdc6610 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff2114f2 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08e4bf10 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1d429d4e nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x31e8534b synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x399ffe19 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x66f274e5 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7ed84433 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x89a1c9ad synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x923b4d63 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa527adb1 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb0818fef nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xddc6ed5b synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0270f9fa nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x039fc92c nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0490e6e8 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0de1b752 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0eab0bfe nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x144a795b nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1459a077 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c1a1531 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2aa6c7d4 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c2ee0f8 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e78a597 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x358edddd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e2f9d7b nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aac03d0 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51ec43c2 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55932647 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x589a8d71 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a9bed57 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x658983b1 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x666c46bb nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x699068fa nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69eebb47 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a019629 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6dd899a0 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x725d2053 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77c15342 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e34b9e1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9acad4c8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f90de05 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa166188f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadf71e31 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3fd7a75 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd44e2dfa nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd942ad7f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb0e23d8 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf07deb5e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1a12401 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7ca8fd1 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2231cfa8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3066c239 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8f96346e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaece660f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeae42073 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf6216765 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x247252db nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x40d163b4 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcd8abd02 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7523f2eb nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xab1129c9 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa0da2468 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbe56f696 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe42ee841 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xff39c971 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x288c156b nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6ff053e2 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe148a9af nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x112bdae3 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1485c9c1 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x255053e0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ac3d320 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x495956ca xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x59b6e3a1 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63655341 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74a94a8e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x780c1c4f xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ec73ac2 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d144fee xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa0b6cf5 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba75525b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1e93c81 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd9467f6 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x05b24cce xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc6d6f40b xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x59ddea02 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x62dacb49 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8ca15381 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x460acb9d nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xeac96071 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf7da7bf6 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x07c2d5d6 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x20d4ca75 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x10b66a9d ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f108e76 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x726eb945 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xae391be9 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xba477832 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9fa67ac ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x01842074 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x8e6fe530 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xaa1d5f8e psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xf9e5c0a1 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa2682740 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa6670e27 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe5273c7e qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00e780b7 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x162d96d5 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2811c727 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f690109 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x36b0c598 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x38a3ac21 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3b7b95f4 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x46b7f8cf rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x477b7532 rds_message_unmapped +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 0x5a7a1d8b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x5e95d6ab rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x5ed50f73 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6bad24db rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6dd025ac rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6e088020 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x705b6a7c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x798f0978 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x96811560 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xa2df50d8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb4f52e11 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xca1e89cd rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xcd14aef3 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xcdd30996 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd096eb3e rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd0f93c81 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd7e75990 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf138454a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xf8da1998 rds_send_xmit +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x62c024f0 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x9ee50e24 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x29c34584 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6159d2a4 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x87d54045 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x923accac sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0dde895e smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1e7fee05 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x259f1657 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x46b07db9 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4b16e3cd smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x5e04b7a2 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7e38682d smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc2b1562a smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xcc6572f2 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xe9894f72 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x08f290a6 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x134f1498 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x386039d6 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 0x7059fd2d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0157c8f7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017f0626 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01ab1c8f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01abb732 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0213d6af rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024607a6 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03dc4496 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0535cc1f svc_rpcb_setup +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 0x07f2d35b xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a81318 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a8f03d rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x093c0972 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09691bfd rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a44977f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a49c3de xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af6ca37 xdr_process_buf +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 0x0c75e813 svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fa9a887 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1301eeff cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13446da2 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x135ee637 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13767750 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14cf6f57 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182528df xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1903af9e read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a6ae78b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bfcc3dd svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e71d579 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x202c2752 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b46041 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x215f483b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b7c455 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258cd6f2 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27a31d64 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284d5530 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2864ae87 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28dcf6c0 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a8c31d5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2acb8d97 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b227751 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7abcab svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d681fce svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2daa6c56 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed916fa xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f902a52 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34dceccb xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3596f92b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36014bac svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x385d08ac xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38c82127 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395a2a94 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39de79b2 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e27e0a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6244b2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a69f7fa rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aaa8ece auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b27f7da rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c040278 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1e1bfa svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cec7eda rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec4aa22 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed19ba8 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x405ea49d rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c7c7f4 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46335141 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x475be951 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a11146 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a68ef60 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f87e0cf svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508f525a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5292ec36 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542128c9 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548639e2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55608e1d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c9ef20 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e837b5 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aab7209 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2e8236 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b956e19 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c9db013 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6b187d svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f22b03f rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60233f76 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x605e2591 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640ef1ad rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66700ca7 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66bb596a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67cfb880 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x683435ac xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68805d90 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69cfe5f1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a72e28b xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa44c00 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aab5694 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4191d7 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e259fa9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70be62ca rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711f1ead rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7476e8e6 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75bf9594 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7754e8e3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78ef6829 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78fedf5b xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a120ccc rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa7ad64 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd99e4f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e3c9add sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8260909c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x844f5aa1 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ddfc50 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a09d9b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89e27c87 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b95e509 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf48af4 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d04339d rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e07b458 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3930ef rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb85773 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938e22f0 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e3b38d rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x941335cd xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9461733d rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94bc1725 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94d096b4 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d5fae7 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9728e870 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972dcb16 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f15bfa svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99dd3ec9 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ad01ae8 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aeb66d9 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aed9d0e xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b02f0a2 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b24ed8f rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d599370 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa005caa2 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa211b8f7 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa23729c2 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4753482 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a13d3f xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa532bbe7 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cb314c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa0c9d52 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabcd5b53 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac573f4a rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09a7fef xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0da71f2 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23e4510 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb249a816 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb381bbbf svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38f336a svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4548882 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5b6ecfc xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb640309b sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba64bf06 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb021037 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb57b5e9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbb1ee8 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdea4637 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdfa0613 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe606348 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe6b49d9 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8e7b8d xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7c3c94 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc149fbad gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e086ce rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45b4fc7 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7473905 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77c76d4 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d19213 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d8ea93 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7f8638b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc860310c rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9eafb2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc08825d rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee527cd rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc43494 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c673fa svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd329cfa3 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c7e930 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45c61a7 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4af1936 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71e8c04 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b80e0b rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ee25fa rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd854e09f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f14a54 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9be959a rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde66ceb8 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa03e39 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05904a5 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b32548 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a93648 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25255f5 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c1fd11 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30b4c9f rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe396a27d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4bd3ed9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4fbe77f rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe54d42af svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87e4ee8 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a2f7d9 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf3fec0 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb432d4 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece99ab7 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0337fb svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf30bec37 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3ab4c0e xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3dedb34 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf55f4b40 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5af43f0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6164fe0 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf67b2078 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b3620b sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6dcd9c6 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74b249f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf845fcbd xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96be6e0 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaae858a sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3cdca4 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc6fb4c8 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe873025 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/tls/tls 0xc3960909 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf0b79361 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0201075d virtio_transport_notify_recv_pre_dequeue +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 0x071bca01 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0de94a57 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1444cbd4 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16fb4826 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b9d7d49 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c485dac virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21925799 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b565ee4 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x347c2e15 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x388f4e51 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39780cb5 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40ac805e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48e90ad8 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ab76c3b virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f1f250c virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50c14e9e virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5822546a virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69203892 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ee2566b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a38dc61 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x942f5500 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f272d5e virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3ba4bf5 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb66cacf8 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe777244 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9b68f72 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcef1b81f virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6aa9988 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc5d2dd0 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdefb7eb8 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0b4a73d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5efba46 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xece7a83d virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0e426ae virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe97706d virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01c4b58c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0877ff3d vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fee60c8 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x163c4684 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x183f1bcb vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x202a3cd5 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x28858e91 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x311f2e6d vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36c1ba6e vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x389a9ba8 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x396d1a6d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61d1b4da vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b4b9145 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85077b6f __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95fbb4df vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc6301a3 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe4b53ccd vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1bd658b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wimax/wimax 0x01bad24a wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2657dce1 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2b25e065 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x370faaae wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5026a4cc wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5b7d8b11 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6681197d wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x67a8e17d wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7e9858af wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x81cac3ae wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x87e7c195 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa31bfdd2 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd10b95c wimax_msg_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1fe96f23 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33962d7e cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x352e1a70 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e1b749d cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49868c3b cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66d0714c cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6efc313b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x761b72d3 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8074791f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a70e20b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e7ce6a0 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bc0edc4 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa461db4d cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf440086 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd191b8d9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xebd0aa43 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x34b58056 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x379c3206 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x769548fc ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcc08aff3 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x035ffeb9 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x189f8a27 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4ea9dcaa amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4f06fcec amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5344f195 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9ead9d26 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba49c580 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbc03d935 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc3462944 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00d3befe snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d0cca15 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1629fcf6 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x194f351c snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a148690 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d43454b snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1faf797d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25b5c987 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26006ddd hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a604770 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cf7d4ce snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3287be9b snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33eafdd4 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34ee6519 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35097676 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36290f1e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x372cd32b snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b7b13bd snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4250601f snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42577541 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x427a4553 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x482bb8e2 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bc4f82d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51132956 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x525b1f1c snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b79aeea snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b891087 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d0375b0 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3c0f64 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e40d3b3 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61029229 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61fc3f34 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x673d9e98 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e62557b snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fd87032 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71f72677 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 0x7810069f snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78219799 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x801ec4de snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81f36de8 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84713b49 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87a02671 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87da08ad snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8930d404 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x907336bf snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9306afe8 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93cd3140 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f10b6bc snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1a1263a snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4b5aea0 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5913599 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa59ed146 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e77e49 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac874288 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada20854 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae40c93b snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2509a8f snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3c556e2 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb60823dc snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb819be35 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc9c9eee snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4f400cc snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca72eb9c snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfd19501 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd62a5de2 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd800ca90 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd83b887d snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8b46207 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd97e0890 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde8afe27 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe11f97b6 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe48a6008 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe51cace8 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2a0c44 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed293887 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeeebec4a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefae420c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0eadbef snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb7bdb01 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd8439ba snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdd7e697 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe4a371f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4272a672 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x26b7678a snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x44cf250d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60c1e054 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xafc31756 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb677a30d snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb1a421d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x036e06ea snd_hda_apply_pincfgs +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 0x07235c7c snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x079161f9 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07a8f530 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a4e886a snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b26772a snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b3faff0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b484696 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cec6c03 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e6b0892 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x151d0fb2 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x177ae8b8 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x183408ba snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c510197 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f2d2844 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24a8c59d snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24b11485 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25c8e1a9 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2941925a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bbead12 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dc929db snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2de70e86 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eaf9bed azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f50b308 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f7e5360 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3618135c snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3713f6f0 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a7022f4 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b9f0a97 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f8c9b28 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43ccca5e snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44342015 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4609440c snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x489a6931 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49781507 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49b8961a snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49beec0f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aa4c7e1 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b08f8b5 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b149080 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c0b1599 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f00cfc4 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f6dcf56 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51d9a7c8 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55d15c46 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56e9abeb snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58c133ce snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59d688a7 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aa8902c __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ca428a6 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dca7503 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ec0cd75 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f321230 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608f7d5d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61c67111 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65f002ba snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b3df030 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6beb22e9 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d00ddb7 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d1715b8 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e54d218 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7249e8dd snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7291f492 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c10dc50 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf28649 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8387de17 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87868f63 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d596532 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90710687 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90e15953 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91e6dcc2 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x959ae96c snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x983c8fd8 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a386346 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d61aeef snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0689bcf snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a4dcbb snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa186c847 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa75c0c1b snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e495b5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa05129c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaceccf snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab52f703 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0c955fe snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb250a325 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6a66557 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe663859 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf836779 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b74f04 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc22d6bfc hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3005326 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3464e4a snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc67c91e8 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc807d375 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8b80f56 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc97c65db snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9e83c85 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca134180 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc2e4d2c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf587e70 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3264f2c snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd453a0ec snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd672e84e snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd728049e snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb766000 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbae4e5c snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3e2917c snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d20c08 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5829546 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1057c4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea6da7ea azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xead815ef _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb662793 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5121f5 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf13b4126 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1f6db4e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2fcdb8f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7ba2290 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd9e660 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc112277 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce69a55 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e3f517e snd_hda_gen_add_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10985aac snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x117b99af snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b04f961 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f61404f snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x323de2a9 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33e0feeb snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x412fa32c snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4d5dfa35 snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e495ded snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5de1decb snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c37609f snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x701ace9b snd_hda_gen_add_kctl +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 0x7ceb5a6f 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 0x87ce21f0 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9abbe398 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d1f3459 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa02046c5 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa211e946 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb31ef03e snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc4ed63f7 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1efc5cd snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x2033d802 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x52e46950 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x16703458 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x24d7ff07 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x284b2da6 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x370fc27e adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3f64e501 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x785ee5a3 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x97a67b01 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x98e59adc adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xccd1c500 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xddb29a22 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x002f0d58 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x00cf9b13 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c858ca6 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x13e3c262 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x159d57ed arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x183ae323 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1f9d3c32 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a320ab7 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2aec5cb1 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x30d332bd arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x327ea60e arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3e393a25 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3fc64418 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x429998db arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x48acc863 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4adc8348 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4b3b3d71 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4bedd4dc arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4f531025 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x596e105e arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x598fda71 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x60d5c265 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69bacd00 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x72c9ddec arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7520efd6 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x76b0084f 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 0x8fa5f20a arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x97a75484 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x99f93ebd arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9b5ed905 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa5eeb5fe arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa7d80b9e arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb1912401 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb41264a9 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc982a1b arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbd8e4de0 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbe4de897 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3cd32a8 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc972984b arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb9040b3 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd4da91bc arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6ad9d45 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd8768fa4 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdd9dddad arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf82e5f7d arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfa9acf83 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfbe7c383 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x14994497 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 0xac515d25 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x28865255 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6dbb7e40 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x83979f64 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc0eb4ca8 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe7dd55f1 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3e7fb7a0 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa7730ef4 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd674d227 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa54e13c8 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdb11f3fd da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfa21c3ab da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x6d8b0296 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf8491519 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0xed411dec hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x885dfa93 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x9ff8755f max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3e80623b mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9374dfb0 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfb4aa56a mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfcc8b409 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xb9808610 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x36b02c8d pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3c1767c9 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf94135e2 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x3ba7cbe1 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd481d858 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0c077fff pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7c90d33b pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1f9b3faf pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9dd45128 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdcf535e7 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf75c624e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0d3076bb pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x31acb0c6 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x85970ab0 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbe1c40e2 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0df20361 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3327ff67 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5e2a10ad rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9ec232cd rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6b023772 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xb40d61b1 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x3063f023 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x425a794d rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xa8c77592 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x82df2128 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x85727011 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa6e80191 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xafb05a1b sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbb8740ae devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x60c156fb devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x49412b84 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x09abffd8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xbe448c0e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x8b01da70 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x8ab8d66a ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x25caa1d0 twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2b0e9319 twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x8f2136b3 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xc0066a5c twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xfc057ea1 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1077a02e wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1151ae7e wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1c78155a wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2681a4a4 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x29ab6919 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3071fac0 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ca21992 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4cf5368d wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c561d2c wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6dae5d0e wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x78894738 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x79e42f04 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7d0c423e wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x82af935b wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x855e049c wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8950a298 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96a38fdc wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbead7f66 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0253820 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xde94489a wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0c07a36 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe658869c 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 0xf0626506 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1fbd165d wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x30f2b0c3 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6b7eef45 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 0x8513220b wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa49707cf wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb8795758 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbccf41e0 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcf9c052d wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x68b268ef wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb55cc124 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbbdb5b8e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd536c0c5 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xcd0857cc wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x49f1fa1c wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x69e703db wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xbf42452b wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x08ef71f1 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x771375e3 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0f805241 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x117185df asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x45916806 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76c4b10b asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93b356a9 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x94ec627e asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab10c9df asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5b1f002 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0f2c7c8 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2a65ac7 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf058909 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda1fc84f asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdbe155db asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdda6fbea asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdde68be2 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf8e0dc2 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb755929 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff454e81 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x174b8810 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x176c4155 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x19d22503 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ff0e13a mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x348164dd mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x50c9f7ad mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6120062e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x65886dbb mtk_afe_pcm_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6e370050 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaee7028f mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb062c02e mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc4739da2 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd12d0431 mtk_afe_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd4e51209 mtk_afe_dai_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe1e2a3a2 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe2e66dee mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe9cb1913 mtk_afe_dai_suspend +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x297ae168 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x78382fbf axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x88453c73 g12a_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd15fb549 axg_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2db27767 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x3aaac2bc axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x679cd72f axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9734c838 axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb711a93e axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xc9d5d721 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xeaf1cae4 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x1ae2ac2f axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x9922fc96 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa8b87f13 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xaff08af8 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xcf23e2b3 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x151ae9d4 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read +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 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x762f944c q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0ba255e6 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x10fe1f96 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x52728991 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x880a1270 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xc58b61a6 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xc4d5a1c8 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x0340de96 idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xb49a4c84 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0368d38f snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1730b511 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6ccccc20 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xda703e18 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7ca9553c tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd4cb1ce4 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd6a92240 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x6c98fabb tegra_asoc_utils_set_ac97_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x738848d8 tegra_asoc_utils_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x77d4dd55 tegra_asoc_utils_set_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x836952d3 tegra_asoc_utils_fini +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x386bbc30 tegra30_ahub_allocate_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6060e6f9 tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xc865e1e8 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0xbe592ac3 omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x111882ac edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x9e1a703f sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x165bcbc1 uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x45f3cd3c uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x74284dde uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x874b2773 uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xa30d7ff4 uniphier_aio_dai_suspend +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xafbbf869 uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc6845160 uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xcd26b46d uniphier_aio_dai_resume +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xe2ac0ac7 uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1063b9a9 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1266a707 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x196b192f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d3d606c line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x442d9c17 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x55ee991f line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ab27d7d line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6153f707 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x84b328ea line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8596c31b line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x888384da line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x975a65f7 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb02bc04f line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbdab5f89 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc51312ad 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 0x0017e425 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x0026b387 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0026d881 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x0028f9f5 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x00475148 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006eb4e2 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x0074e82c i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x008d0585 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x008ee111 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x009831ba rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x009b11b3 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x009eaa46 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x00c7e62d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x00cab702 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x00d191e1 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00df1ab2 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x01011f99 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x01032046 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x010ce9a9 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0113ede0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x012a51de bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x013644a7 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x01490f31 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0153beff class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x0177bee5 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x017f4a83 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0195397d dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x01969edf generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x019c3153 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d2887c hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x01d4cc00 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x01d747f5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x01da6fad wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01daf413 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e3b04b devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x02128b65 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x02220040 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x022bf21d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x0232416e sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x023f7021 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x025421bd invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0266cb78 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x026b153b raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0283977e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0289e7f4 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x02900eaa wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02a09f0a devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x02c3a444 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x02dd63ee fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x02ddac34 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x02e4ba8e irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x02e6a783 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02f24aaf sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x03023dbc lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x03066397 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x030f2604 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x031ee3cc devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0323c477 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033c6c0b pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x03435940 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034bdcda mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x0358c44f regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0360be1b irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x036d8d39 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x0390c140 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a5dd90 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03b50464 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x03c554c7 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x03ccdbd1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x03d3112f cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x03d50291 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x03e292cb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x03e64904 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x03ec80ba lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x03eef750 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x03ef6504 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x03f5c01f ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x03f65342 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x03fd2025 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x040bdc59 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x040f8240 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x042ac4b8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x043fb80e ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046cf717 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0478bd7c user_read +EXPORT_SYMBOL_GPL vmlinux 0x047ea265 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049bcafb arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x04a16e1f __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x04a85983 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04afc71d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04b35897 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x04b5e388 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c63df9 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x04ccb026 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x04cfe68d tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x04d65dc0 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04e2076c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x04e4a7e9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x04f17570 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0503c886 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x0525b8d0 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x05279927 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0542230e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055df17e hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056655e0 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0590b1d8 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x0595accf led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x059a48fd gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x05b1fb57 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x05bac2e7 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x05cc3e80 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x05d72fdb inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0616a562 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x061f0c56 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062d1ed9 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0632a726 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066ae8f5 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x06749cb5 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0689eaa9 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x06a624d0 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x06b5224a do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06ebe794 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x06f0647d irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x07051371 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x070d1352 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x0713be2a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0721f1fb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0737598f driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x073a92af rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x073e898f amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x074496a1 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x075042b8 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x075ace8d init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x07618298 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x077a5047 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0793aac0 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x07a6c995 elv_rqhash_add +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 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c210d5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x07c24bb0 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x07d172a4 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x07d7ec6c ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x07e75624 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08073cf0 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08268c3b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0831808f devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0850f737 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x0853e2f2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x087177cf snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x087a84b7 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08814d26 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0890871e fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x08970dc4 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x08aeed7f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x08b3f98b exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x08c00e72 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x08c2a0d4 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08c92321 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x08caa760 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x08d05e1f snd_compress_deregister +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08dbad5c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x08e94300 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x08f79a08 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x09177413 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0937b876 cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x0956b414 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x096daf01 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x09789fbd sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x098561c6 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x09932230 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x099b1274 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09de2689 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09f2dc5a sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x09f42771 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x09f730ce fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0a032b7a gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a039f0e rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0a22631c clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0a427407 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x0a4b9f9b usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x0a69c778 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a74d79d uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0a96ff44 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0a97d0fd tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x0a9a8ce0 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0aaed044 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x0ab96099 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0aba8fa5 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0abc1190 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x0abc3d93 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0ace4be2 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x0ad10d53 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x0ad1ee11 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x0af50ed9 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x0af72c5c led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0afd8d78 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0x0b06dd20 component_del +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0e6cb8 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2b6439 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0b40f1bd posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0b41d504 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x0b47e94c __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b50919e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0b6e583d pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x0b70a535 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0b7aa35d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x0b7ae558 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x0b7b5117 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x0b814264 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x0b9b3d58 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x0b9d8d78 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0ba2b413 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bc02058 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0bc20c57 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x0be2d551 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x0bece05f genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x0bef3cbb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x0bf495ed fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0bf919c7 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x0c02b2f6 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0c07cbcd da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c0a5ff6 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2391e9 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c387ef5 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x0c4a6dd9 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0c5a26db usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x0c5f5581 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c7268c3 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x0c772c74 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8c2fec pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c98be54 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb1cd04 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cbc3f6e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0d070b3a dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x0d0ba6f9 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d287eab __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x0d345507 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a95df of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x0d549974 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x0d57a3ec set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0d5a45db usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0d6106ca of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x0d6f963a __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d7500b4 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x0d8e1863 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x0da37665 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x0db0f53f of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0db9c35f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x0dbc3563 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dd4679b snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de840f9 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0def3009 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x0dfc2be5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x0e536ce1 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0e545cb2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x0e66dd07 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x0e6afe82 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0eb6ac5c cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x0ed8adda __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x0ee33d75 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0ee62358 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0eef6ea7 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x0efc025d pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0f09f240 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0f0d4ca5 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f170fae snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x0f1f6249 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f49efac extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x0f4ae674 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f94eafa rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0fa13479 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x0fbcc411 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x0fc53aff __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x0fd6363f ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0fde3a0f ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0ff841d6 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x100427af snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1010a9bc crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101a6caa of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x1033d4aa sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x1051dad6 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1057eb90 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1080e51f get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x10831719 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1085144e ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x10862ae9 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x108bcef9 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1097d334 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x1098b8ac device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x10a53e2f dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x10aeceeb ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x10bec9b9 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x10c6ce77 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x10d8b1f0 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f08199 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x10f65e6a add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x10fda904 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x11076c6d phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x1139f74a tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x113d8188 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1147d7bf usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1156e02f pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x115de978 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x1172d17d gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11aa60a7 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x11b87f1f dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11d17481 find_module +EXPORT_SYMBOL_GPL vmlinux 0x11d344fc snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x11d357ee snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x11d5c445 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x11ec64b6 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1222f8ee unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x1225eb06 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x1227cb04 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x123c3e6b usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x12459131 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x1249f9a7 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1255a5d4 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x125c53d7 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1280730b snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x12830faf inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1284fb9d devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129f910b platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x12a669e8 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x12aac399 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x12ac3fed serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x12ad8ea1 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x12b82ec9 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x12c1dcd6 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x12c6d9d2 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x12cb20e4 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x12cc15d9 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x12cd8f26 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x12d90ef9 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x12dc1140 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x12e15b21 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x12e414a7 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x12eb5678 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x12f78ff9 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x1302aa76 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13241fff cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x13261c6f rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x13379860 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13433ac3 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x1345593c pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x13483c47 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x135af744 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x135c9d5b crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x135ccc74 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1377b445 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x137e2312 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x138b0a7c amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x138de42d devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139facb2 blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x13a96e32 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x13b0415d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x13bdd275 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x13c3fbda crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x13dced60 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x13eb835b snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13ef337c genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x13f82ab2 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140cbf1a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x14147443 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x141911b0 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x141b892b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x141d42ac platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1421d86e soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x1435110a balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x143bc090 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x144dfd1d mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x144fccce usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x14515bf8 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x145515e9 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x14946a07 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x14a825a5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14a9eac9 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14de9ae0 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x14e92614 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x14f1e6c3 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x14faeae5 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x15285ddf syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154aa19f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x157e6809 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x158e6fee software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x15a51c61 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x15b50929 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x15c66d3a regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x15d0df5a fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x15dc2b40 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x15e5a139 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x15ed0f8b devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x15ff43f8 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x16010873 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x160b3a0e register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x1639f1da dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x164ccd19 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x165095ab tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x169a450a lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x16b57333 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x16b8b890 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x16bc8f22 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x16c29643 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16c630fc of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x16d84e91 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x16d98efc device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x16da110e regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16dffea0 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x1703c603 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171997cc __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x172fdff0 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x1737e07d usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x17445400 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x1747d6a6 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17631c51 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x177a0633 arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179cba96 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x17a90f53 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x17aac67d pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x17c9c2cb __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x17d3d638 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x17e53f43 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x17e6b044 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x17e9ed76 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x17f605bc ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x17f7acd6 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1804a386 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x18084ed3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x181a1c47 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1823ee8a pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1833d35e serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x183a472b devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x183d5a93 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x18451642 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x18467190 iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x184fbcf3 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18692e8c sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x187579bb devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x187fd389 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x18862d3e __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x189183ea nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x1894ab91 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1899758d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x189d8ccc pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x18a01d9e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x18b68042 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x18c4be46 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x18dd86dd bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x18ddfa86 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x18e3ccbd sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f47683 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x19177b7a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x1919d686 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x191f70d7 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x192a152e sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1931f2e8 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x19370f18 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x196e58ca pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x197f2aa7 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x1988903d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x1992fdeb nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a68e80 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x19aa7fd4 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x19b671ff tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x19b863ee pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x19c0f0b0 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c5ee30 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x19d5bb04 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f72aef ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x19f96d85 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x19fe9c61 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x1a0ca919 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a11d743 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1c7661 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1a24be13 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x1a519aa9 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1a52e08b ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a610a4a usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a66fe25 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1aa351b6 of_map_rid +EXPORT_SYMBOL_GPL vmlinux 0x1aa506fc tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x1aaffa1b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x1ab1a445 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x1abd58ff devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1acd04fc usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1acf6ec6 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1ad066cc input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1ad2bdc6 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af3fc47 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x1af477dc wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1afbd71e bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x1affca64 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1b014546 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b03fb25 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b08ac31 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1b22df1b virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x1b25d6e6 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1b371cba netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x1b37cc65 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b38b79b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x1b3ec0ec netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b4a0537 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b604523 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b951b6f fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x1bb96634 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1bbaebec cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc9cba8 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1bce7d7e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1bdaa365 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x1bf1aca4 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x1bf2aa39 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1bf5b6f9 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x1bffd525 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x1c2295c9 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x1c28857b pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0x1c441859 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c790db0 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8b0260 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c987599 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1ca14d38 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1ca4fc53 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccb975b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1ccbf5eb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1ccc0a08 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x1cd55050 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1ce327ac __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x1ce6e152 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x1cf95f67 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0x1d05195b pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x1d1030d5 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1d19d474 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2258c4 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d41ff95 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x1d4368dc usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x1d5250db fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1d773585 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7a56ca tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1d7dbc58 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1d7f8814 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1d83616f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1d86556c regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x1dab2696 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x1db98ae9 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x1dbc435a device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x1dd1cda7 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x1de2f37d ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x1de58679 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x1de6c41d crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x1de9181b fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x1dea1388 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1dece0ad fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0x1e000d74 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1e0364ba i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x1e036a4f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0e7dd5 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x1e18315e dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1e1b8657 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x1e2406b7 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x1e261f46 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x1e36ee9c tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1e47011a crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1e54e0ad mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e75fd4d device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1e78e576 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x1e79a78c skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x1e7b2618 fsverity_prepare_setattr +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 0x1e9c43e6 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x1e9ed64f crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebbc8f7 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1ebcaee8 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec001f3 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x1ec1809c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x1ed4b0be is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x1ed4e48f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x1ed95b41 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1efab7bf clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f044f08 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f1d9f36 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x1f2a7dfb blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7fb448 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f96551c mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faeb61f ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x1fbfc289 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fce901f usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x1fd44b55 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x1fd82640 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x1fe0395e wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff01c36 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1ffa3f72 cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0x200b3b81 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x202423b7 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x20495d44 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x204f790a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2099558e gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x20cfb484 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x20f633f8 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x210db02c __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2113cc42 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x2117ae7f hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x21256767 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x215b4d85 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x217dc66f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a6ee86 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b1f020 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x21b2ad28 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x21b37445 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x21c9bc38 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x21cc4a5a nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d8f1cb pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x21e12498 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x21ed1373 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x21fe1474 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22332415 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x2242b78d crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2242e9b1 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x224a0ec3 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x224a4c9f tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x225c1810 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x22648c02 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x226aba68 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x227291e7 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x2299fb86 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x229b9ab2 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x229eca63 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22c39384 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x22c4fd9b pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x22d266b9 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x22dcb9ab free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x22ec4a7a rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2308de91 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0x230f37a3 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x231ba695 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x231bfa5a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x232d0947 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x23311b93 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2394230d __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2398f03a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x23b02899 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x23c5ce02 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x23caa06b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x23d94f3e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23e873e1 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x23efc624 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x23f631d8 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2419d07e sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x241c4ca6 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x241f5315 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0x242ef313 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x2431ee84 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x243a452e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x243e39b8 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x2456ab4c ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x245fc624 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x247269dc pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2495aac5 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x24a273c6 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x24a5fdde pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x24a90e5e vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x24aaa2f6 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x24aef4f8 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x24c5ab05 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x24cf1d1b crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x24dfc86b posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x24e81dde dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x250a113d of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x2510c306 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x25258d08 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253f7dce snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x256c8ccc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x25876024 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25991830 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x259c73b8 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x259d10f7 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x25ae0d0a clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x25ba2b45 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x25c33997 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x25c368c5 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x25c668c3 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x25c8e60a bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x25fe5b6b devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x2605d249 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x2607d8cf crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x260ba678 user_update +EXPORT_SYMBOL_GPL vmlinux 0x2615864f spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x261a1f3b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x261b664b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x262a16cf power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x262e4e00 serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x263b53b2 xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b8da8 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26638e2d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2677f998 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26a320d0 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26a86e7c bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x26a97057 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e55ebf param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x26e946b6 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26fbd134 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x26fcac92 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2753b77d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x278746cf phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x278e2123 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x279b33eb pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27be4f2b ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x27c0307a ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x27c7a7b2 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f74132 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2800b7ca pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0x281975ee device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2873f4ec ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x2876553b devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28876bf9 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x289c9f15 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28abd2a3 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28b1446f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x28c75542 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x28d3e708 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28d469c8 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x28d56e22 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x28d81ce6 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x28de25f1 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x28e3f54b crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x28fe74ab pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x292b3bf6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x29355523 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x293d0688 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x29417a86 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x294d728e skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x2954c58c devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x296b77c7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x296d40b3 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x29737d4d ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x298fd859 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x29941eb1 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x299a0a9e spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x29b549fd gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x29b8970c replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x29bff909 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d78dca __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x29d7d91e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29d905d6 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x29d9ce0b blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x29dd7a21 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x29e18faf dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x29e449dd usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a019bc8 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2a1f6d2c mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2a299ad5 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x2a53bff4 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x2a54faff pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2a66c70f serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a67cd2b clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x2a6ee435 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x2a8502b4 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2a865862 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a866c7a devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2a95f097 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x2a975aa1 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2aba31ea serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2ace0143 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2ad3456c vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2af5b2d6 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x2af9aa3c crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x2b1b549d usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2b24d86d pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b477873 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x2b541135 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x2b5599cb mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x2b625686 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2b73ba56 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x2b7739cc crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2b7a90f3 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b98fdae sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2b9ca924 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x2ba5a447 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2bae5fea usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2bd946e6 cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x2bef1594 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2c0eb257 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x2c0fb899 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x2c16b476 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c37cd33 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2c3e0dde usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x2c3e1760 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x2c4c93e0 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2c4e2e88 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x2c5a5afe inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e1be2 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2c9477b3 nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9d50a9 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x2c9e0ad5 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x2ca1d4ca device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2caa88f5 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x2cd70047 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ced243b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x2d003ec3 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1f721d nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d450135 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2d46a954 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x2d57e9bb regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x2d593371 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d6bc60d fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x2d7469bc device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2d753b3a extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x2d835992 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2d95e747 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2d9834c9 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x2d9e2a78 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x2da1ab1c sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2db13b4f pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dca5ad7 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2ddfd4b3 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2bbc3d irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x2e2e8f3a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e30509c percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2e375238 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e5031a4 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x2e5159f2 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x2e5b85a2 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2e6d3cce dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x2e941bd3 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec1d4a8 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2ed74f52 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2ef0dc74 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x2ef8c1da security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x2f01b48b efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f3a0e30 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f3faddf shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5a3eb8 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2f5c1223 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7f6478 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x2f895416 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2f89f67a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x2fc30e71 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2fc7504b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fce7211 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x2fcebeb3 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x2fec8631 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2ffb6d96 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x30163648 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x301bdbe0 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x301ef7fd call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x302b61a9 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x302d1845 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x302db494 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x304cb800 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x305bec59 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x3068fb67 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x307a616a vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x3081433c ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x309791b5 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x309ac359 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a7b901 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x30b023dc fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x30bf2e1e fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x30cb382d regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x30da8cbf list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x30e10422 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x30f105b8 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x310d60e4 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3113b78c ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a503b md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x3136d531 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x31395143 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x31414c15 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x31498349 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x314d332e flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0x3169914b sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x317b67a1 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319cef91 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x319f9b15 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x31a56112 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x31bc268a gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d69f93 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x31e084e5 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x31e17bc9 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x31f0915e md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x31f14efb blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x31f1daeb strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x3203b25d iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x321e1dbf page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x32243ca2 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x322943fa devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x32404334 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x325571b2 device_create +EXPORT_SYMBOL_GPL vmlinux 0x326d1ff2 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x327b6956 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x327d5028 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x32a3cff8 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x32a43013 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b71e8b genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6c29e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x32c74ca9 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x32d742a4 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x32dee0aa ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x32f24522 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x32f3d3d7 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x32f40aeb of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x32fe5646 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x3320eb0a genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x332bae43 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x332bce09 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3332b169 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362bc32 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x3372721f usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x3376597a ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x337b6e50 flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x33a6d345 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33e8af0d regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fbd3a3 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x34134c19 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x342c8345 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34424b92 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3442fb18 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3455ba04 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x345d386b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x345e0fb3 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x345f7326 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x3467e713 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3469559d net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x346fe41a xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x3471da8b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x34908579 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34ad48f3 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x34b230df snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x34b52523 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x34b54d79 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x34cc9826 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x34ccc17d pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x34d2fbbb scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x34e23e89 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x34f1b356 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x352aa152 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3542c349 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x354e728d balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x35681a0c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x357f66dd balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x358dfbc7 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a20670 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x35d78938 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x35fbab4d cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x36042645 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3607aed5 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x360c0ef4 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362de961 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x363bd5bf stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x36420c0a reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3669b2a1 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x366f1165 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x36765651 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x367e8357 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x369343c4 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x369e2418 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a1f1dc kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x36e09f9c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x36e78076 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x36febde9 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37080e39 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x37188481 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x371ca34b snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x372c97aa skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3731e884 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3738e9dd alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x373da70e regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x3749b050 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3752207a snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x3752e825 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x37560f76 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x375779b4 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x3759173e usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x375cdd54 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378638cc snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x378f1b7e pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x378f589f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x379da3b8 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x37be8947 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x37c6fe19 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x37cf37f1 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x37d28719 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x37d30358 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x37e49afa pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x37e5e3c1 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x37e8e6cf addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x37f9cfe8 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x37fa2f77 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x383361e7 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x38356974 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384f8013 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x38535426 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3870a985 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x3871047c of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3879fe91 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x38873c37 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x38888339 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x388b142d of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x388fb8a5 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x38933034 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x3895fa3c blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x389b38ed power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x38adc42e serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x38b56b42 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x38b703aa sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x38b95df4 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x38ba2119 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38ceaf52 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x38d64028 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38eb2754 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x38ff27a5 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3903cfb1 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x39174654 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x391ca878 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x397236e3 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x39842279 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x399245d8 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x3992e81c dm_put +EXPORT_SYMBOL_GPL vmlinux 0x399ad092 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39a9fbfa snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x39c7ce62 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x39d0642a sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x39d7ae11 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ee90ac pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x3a052217 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3a0acb4a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3a0b6ce2 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3a0e1426 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x3a16cdff bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x3a1e5869 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x3a37ac8b spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3a3c9925 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5c1d06 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3a90ffe0 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x3a94031e attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3a97baeb bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aabad88 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x3aacd6ce devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad55290 devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x3af2cd55 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x3af93421 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3afc2f1c sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3b0bac0f usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x3b21deb7 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3b24f423 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3b284012 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x3b298c3a serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3b357d4e snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x3b4b2cb7 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b725452 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3b726cd9 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x3b989735 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x3b9ac4fb of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b9ee1ca __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x3ba26281 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3ba27c0a pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x3bab5b6d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x3bbbb33a phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x3bc5932b stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3bc6d378 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be19620 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x3be34c74 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3be61c6e switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x3bf02f1b ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf807c8 usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0x3bf820ff usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3c0df869 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c1b0772 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c218f68 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c36c1c2 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3c3aa5bc get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x3c3d4d71 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x3c430980 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3c4a2f95 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x3c57582c badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x3c591a9a inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x3c59e0de devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3c63e100 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c651f33 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x3c66462a crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x3c6df0d6 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c73de7d iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x3c7929f8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x3cb904d1 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x3cbc10dd nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x3cbe980b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdd33dc amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x3ceab5ae gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x3ceeb899 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d16065e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3d19110d regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3d290095 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3d2cf957 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3d4eb8ac pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d51f250 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x3d5880ed phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x3d6ba875 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3d73b674 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3d8650d1 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3d875364 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x3d87dc8e fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x3d9748ad device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3da44158 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x3da4e44c bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3daea11f blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x3db45830 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0x3dbcc413 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd78c49 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x3ddd4c93 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfabba5 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x3e0bf608 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e5f5622 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x3e5f7645 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e70faf0 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x3e7325a0 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x3e84832d devm_of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3e8f10fa serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x3e90c55a register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x3e93f174 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x3e96c632 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x3eb29b2f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x3ec35277 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x3ec5df9d arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x3ec96e58 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x3ed74f9d __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x3ede8647 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef6961b ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f020b5a sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f223b13 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x3f34cca1 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3f46ac16 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x3f5f9507 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x3f61501b device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3f713dbf fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f92c796 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3f9a9d21 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3f9b6c30 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3f9f3dc1 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3fa359c0 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3fac65d7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x3fb0808a cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x3fb09614 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3fb57128 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3fb6f1ca __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x3fcc8106 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3fd3fe06 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fead448 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ff8256d blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x3ffe7005 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x40003fbf scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x4001574a fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x40019fc2 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x400fd38b devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4017f2c7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x401abab7 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x4029dec8 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x4030b0e7 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x403ebeb9 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4043351d mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x4044a899 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x40586d20 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x40592a2d sdhci_request +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 0x407ff9c0 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x40965460 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409b2520 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x409b93cc nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x40aa93c8 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40bb5663 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fb9e85 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x411efdfd irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x41237c1a ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x412b4184 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415beeab inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x41616fd4 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x416e65c0 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41851829 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x418ac5b8 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x41a42f59 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x41ace5b6 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x41b2a9d0 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41c35891 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x41ca92cb power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x41d12c94 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x41e2003d pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x41e859a6 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f23502 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41f5f6b4 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x41f8080d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x4237f687 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x424f7243 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42679297 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x426c7e83 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4281fda3 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4285db0f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x42887525 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x428bcf44 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x42991c26 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x42aadcce clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x42acb07e kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x42afec80 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x42cc7e37 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x42cffd38 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x42ddcfa7 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x42e2885f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x42edc769 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fc52bd usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x430f09b9 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x431a2613 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x431e8d7e housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x43202ed6 device_move +EXPORT_SYMBOL_GPL vmlinux 0x43369ce1 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x433d30b6 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x434280ae component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x43598ef6 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x435c26e7 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x43618b6d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438993ce ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x439344c1 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x43980da5 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43b456a1 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x43c0f67f efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x43d0c85f ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x43d132c4 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4405a990 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4411aed2 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x4411d9a5 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x44160e61 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x441f57ff free_bch +EXPORT_SYMBOL_GPL vmlinux 0x44339406 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x44356b13 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44524725 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x44531e80 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x4481bc8c of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488183a bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x44ac7d9e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x44ad141f ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x44b17249 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x44ba1042 percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bb052a serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x44c177c4 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x44d32644 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44dddc7e blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x44e5dd36 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x44eb8e30 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x44f3038b bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x44fba540 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x44ff7508 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4500ba05 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a8c0b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x4515c87c regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x4515d27a mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x45231e14 fat_truncate_time +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 0x4582fcb5 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x45929825 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x45b9eead __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x45c07242 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x45e83aad debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x45e9693a dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x45f1bc79 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x45fbb449 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4602e4cd tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4605228a devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x46099aeb iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x461cc657 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x46234316 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x463bd915 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x463dc103 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x46495263 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x46499c19 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x464db440 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4652a169 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4671b196 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469e6e67 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46ea4d8f efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47042d3c cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x470dbc92 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x474ca6f0 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476985c3 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x476a178a extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x476e6b26 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x4773c4e5 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x47863936 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4788ff91 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x4789d69d tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x478d7133 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x478e3ea0 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ac11d8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x47b7dc6c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x47c0c3a0 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x47db23ff dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e35ff5 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x47f77c65 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4800c32d tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4800cb18 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x48150967 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x4844ec6e regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x484548f4 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x48542884 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4864e9c5 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x486ee34a spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x48816c68 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4882c70d phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a75368 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x48dc4188 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x48e8c50f __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x48f5a55f ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x491cf04b spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x49271a27 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x492cb079 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x492dc49b pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x4930472d pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x493e6908 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x4953f785 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x49608fec nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x496d2bed virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x497215cb mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4982fe63 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49940f6f fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x49a2b36f of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x49aec6fb ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x49aeec7b extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x49aef3c4 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x49bada6a clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x49e90d0f pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eeac5b snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x4a09e004 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4a0f42ed sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4a129d4f wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x4a2acaad virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x4a324c6b irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x4a34b471 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4a3d3baf sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4a4671c2 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4a48696b mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x4a5c1ee5 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4a61842c sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x4a83c34a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4a86da79 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4a871382 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4a8886d4 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab07f7f usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4ab639fb snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x4ac2a7f9 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4ae7eafc scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4af57d4e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4b05d205 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b14671f blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b1b53fb ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4b2a6c0f mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0x4b335cdf virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x4b361902 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x4b3bb211 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b530927 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x4b5d9581 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x4b6b0936 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x4b6fd0af scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b7fb4f2 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x4b92ecb2 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x4bb7ae3e __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4bd8d840 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4be24bb7 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4be73da5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x4bf4fcf3 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x4c138640 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x4c3e7a1d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x4c487464 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4c48ae81 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c5ef01a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x4c7b2918 crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4c86cf31 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4c887555 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x4c89246e irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4c967e5d ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4caa06f9 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x4cb1cf44 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x4cb826a8 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x4cc21e86 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4cc82102 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x4cf17d9a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf864e1 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4cf90b85 devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0x4cfb0787 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x4cfb8757 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0a1f74 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x4d12b650 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x4d15f7d1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1f97d9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x4d326e40 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x4d35c238 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x4d3687d9 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d469cf1 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d7549ba rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x4d87f43c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d88806b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d8beefa dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x4d934902 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4da1266a __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc4fcea platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4dcc1204 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4dd44f67 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df0031a usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x4df265f1 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4df391d4 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1ab643 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4e34fddf kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x4e38036d request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4e48e755 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e616c06 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eaede78 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x4eb0e185 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x4eb91765 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4ec81c68 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4ecf37b0 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x4ee7951a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4ef05168 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x4ef5807b pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef7a132 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4f029e92 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x4f0c84ca nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x4f1d9b47 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4f22a726 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x4f31b6e8 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x4f52825a register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4f543ff9 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x4f66b972 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a8810 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f772237 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x4f7b2423 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4f81b817 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x4f82e68c gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4f94cc11 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f99e323 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x4fa1e60b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4fa8da4b iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x4fa95ae1 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fee0d94 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4fff5e41 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x50150ff6 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x50181f9a __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x501a912d debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x50329679 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x505466fc snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x506694ba snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x50875807 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50944647 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x50985c2d phy_get +EXPORT_SYMBOL_GPL vmlinux 0x509f3a21 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x509fbfe3 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x50a0a5e0 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x50a4b61b efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50b9fefc regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d1fb7e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x50d8558a irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x50e0e457 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x50e51c63 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e8a69a pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x50e8af3a __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x50e8c626 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff2d68 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5108b0f5 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x5108b2d4 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5108dec3 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x5152e1df mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x5167b260 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x516d7894 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x5194fe2a switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x51a698c4 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x51b03197 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x51bfe838 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x51c53f94 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x51ef51f7 xhci_mtk_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x51f6a5a1 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x51fba0b7 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52023968 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5207a554 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x521df820 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x521e7744 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x5271dbf4 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x527d88d5 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x529f4c37 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x52ad8925 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d88392 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x52da65dc device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x52f39a91 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x52f3bec1 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x52fde201 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x530a5999 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x531896ef snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x53202207 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5325fdd3 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5328ece0 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x532948b3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x532e7538 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x5330e2f5 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5332e706 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5340e2aa ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x535e655e nf_route +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53694ff1 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539098c9 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x53b061b7 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x53d95e75 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x53e11528 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x53e916e0 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x540083f9 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x54172c4d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541edd32 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x542f3676 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x54304a57 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x54484118 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x544f3232 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x548605e5 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549896f5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a8bb33 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x54ae9a9f pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x54ca7d46 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x54d24f89 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x54df9e13 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x55204d12 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x552db437 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553b8e9f tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5556fbc7 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x5564c4b3 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55720a62 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x55737fd6 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x55772359 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5578a2ed bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x5582837c dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x558601b0 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x558ad057 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x5596cd7b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55a5e59d ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x55b6c28c debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x55c43cbc software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d45a68 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x55df353a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x55e5c6eb dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x55eb4a35 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f62456 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x55f7c3ef ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x55fdf3e8 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x55ff2b04 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56136708 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56213815 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5628f8af ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x562b8d8e nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x562be32e init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x562e9c32 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56343f80 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x5636520e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564785f2 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x564a4863 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x564e15f3 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x56598a09 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x566fa786 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x567dd758 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x567e748a sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x56882c65 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x56898d1e edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x569651df of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x569e8c5a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x569f2059 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x56a3c04f gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56b2f11f gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56da7d0c ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x56e02aaf regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f77171 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x570c923f get_device +EXPORT_SYMBOL_GPL vmlinux 0x5714123d snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572aafbb evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573c4dab sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x57484034 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x574922ad snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x574c31d2 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x574e72e3 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x57500b8f snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x5752f1bb spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x576866b6 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x57839953 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x579039f8 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57915f0f snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57b594e0 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d71ee9 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x57e775cd sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x57eb5968 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57eb72c6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x57f0ff6d pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x580d1db0 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x58116b0d snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5819e15d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x5826d078 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x58591348 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x58685b15 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5871a783 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x58751464 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5880a8da irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x58a8ea0d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x58b92541 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x58d988bf sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58dfeb72 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x58e36011 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x58e96c82 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x58f0edd5 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x58fd457c ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x58ff6e1f percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x59015709 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5908f37f arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x590a4073 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x590d1c1e gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x591c8fae devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x591e8fa8 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x594d16e4 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x594fcb20 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x5950363a snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x595be440 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x596a5106 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x59711f74 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x59747756 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x597d0c48 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x597d878b gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59acffaa sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x59ae5eea crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x59b75ce9 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x59c74f77 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x59d13073 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x59df6273 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x59f0ba57 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL vmlinux 0x5a1fd656 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a57e822 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5a5c6ac9 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x5a6ab648 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a76e56b sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a991b66 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x5a9f8167 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x5aa85b31 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac24451 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5ac956ee fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x5ac9b634 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5acca7c0 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5addf358 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x5aeba7b8 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x5aebbfeb dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5afa6a11 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5b03b787 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b075fb1 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5b1768f2 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5b1b8b86 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b332bad ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x5b404140 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5b6a59c5 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0fb3 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x5b97aaa0 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x5ba6aaf9 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5bc0f5c4 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd5f014 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf03f41 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5bf1282e __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5bfe985a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x5c12d43f skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5c17ac37 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c4938d8 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c792eb8 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x5c7beff6 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5c80f1c1 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x5c85293f rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5cab7865 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0fb5a rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5cbcde25 xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0x5cbd4c91 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x5cbf5ab9 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cc81bf2 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5cd148a7 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5ce98b62 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5cf334fe ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d08184b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5d14ce30 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x5d1d9157 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x5d361ae3 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5d407886 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5d5721c1 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5d6142c6 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5d708f99 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x5d76e179 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x5d86599f rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x5d8a6aae dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x5d8bed99 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5d99c8d5 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7451 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x5de007d9 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x5de33657 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5dff4140 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0ae2bc da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5e243c2e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5e25b551 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x5e4c45ad sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5d23ef pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e7101aa usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e8da44d anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5e9059db napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x5ea19e89 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x5ea2b6ef nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x5ec45ece vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ec8d727 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x5ed26ad1 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x5ed559fa show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x5f00dab5 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5f282049 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5f29d7c7 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x5f3556cb ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5f4477b3 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5f561056 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f716497 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f71de8e nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x5f7f17fb devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x5f859962 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5f9e1a1a __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5fa28f2f pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x5fbc9392 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5fc23d9b ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x5fc2c660 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd3ffce devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x5fd87aff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x5fe1365a tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5fe81a66 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x5ff5f8dd iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5ffd4440 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600a62f4 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x600bef3b ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x601a9386 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x6027f639 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x602bd5f2 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x602f5e60 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6032b6a6 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x6038af26 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x603af8e5 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x6044f154 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605b8afe tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6089b8fc l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60976d28 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6098165a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x609d9e3c arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b0699c ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x60c9c20b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x60cfa4a6 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x60d8c84f cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x60dcbecc sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x60e7e703 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x60ee3173 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x60fcce56 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x61052a0c check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x611550ff transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x612072ff platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x612760b4 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x612793a1 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612ce7da fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x612f5a46 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x614150ff __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x61506270 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x61539c0a genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x6158cfe6 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618dec36 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x61dfd88d fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x61e27149 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x61e884af rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x61edd760 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f996af bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x61f9a7fc device_add +EXPORT_SYMBOL_GPL vmlinux 0x61fd7d68 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x620a168e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623e1bdf adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6268034d kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x626bf671 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x626f15ed pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x628af880 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x628d28b1 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x62b0981d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x62b21ff0 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x6305a203 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x631089f8 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6320fcae ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x63236023 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x632c50e4 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x634d1056 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x6354a01f kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6354b8b6 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6365d124 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x6372a88b tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x6372e170 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x637d6c6d phy_put +EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x638e8403 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x639acf3b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x639f40c8 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x63a76136 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x63a767bd d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63e5e8ef tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x63f7e3bd regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63fb875b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6423c513 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643c3bd4 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x6457bd32 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x646b1def ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x646d30d0 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x6473244d pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647834d4 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x64922f05 __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x649de203 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x649e03fc unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x64aa0985 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x64ae10d6 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64c35f8b devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x64c753e2 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d35f7e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x64d8a0b9 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x64ddae39 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x650afeaa phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x650d8bd9 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x65178b56 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x6538dddc dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x65396b3e firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6543a19f sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6554a561 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x655a8f16 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x655f4df9 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x655fd0f2 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x65650017 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x656b3ce7 vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x657c945c is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x658ef331 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x65a51893 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x65af2173 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x65bcb36d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x65c1bd3e pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x65c7d3b7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x65cc03db skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x65cc1a66 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x65e026e7 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x65f37e02 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661aa1cc md_start +EXPORT_SYMBOL_GPL vmlinux 0x662141d7 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6647ab40 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x664cd30a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x665dfb30 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6666fcba tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669797ba pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x66a71329 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bcac13 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x66c6d84d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x66d5543d dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x66d6506e flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d8c413 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x66e8ddd0 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x66f5fe89 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x670473da __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x67102e2d crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6718eddc dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x67190605 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x67280aa9 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x673059e7 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x67327213 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x675460aa sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6760a562 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x6760f9d1 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x676b9193 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0x677b4bd7 bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679826a6 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x67afb029 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x67bb5eb8 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x67da2af5 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e9d565 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67f1beb7 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x67f7f1e6 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x68133108 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x6818f4e5 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6822fab9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x683314c1 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x6835038d switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6840568b usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x684cdbd5 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x6883bc59 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6894835c __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a1eca3 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x68ad6e73 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x68b88711 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x68f37e9f __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x690311ab ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x690a228a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x691c85b6 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x692b63b0 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x695241ca console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69865a90 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x69b28600 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x69b4dc57 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x69dcc5e4 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69f06379 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x69f51fd7 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x6a03206f pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0c4218 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a120848 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a24b438 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x6a3ccf1e simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6a437b17 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4739bc pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a4ee2d1 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a71f4ea cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6a7c0cae cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6acf0080 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x6ad2b63d dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x6ae641b6 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x6af8a8f8 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x6b04970e vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x6b1133e1 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6b1990c3 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x6b2a313f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x6b2f5bc8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6b325b03 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b36c5ff kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6b3f3a66 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b46f85a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6b59edbe dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x6b59f470 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b689b4d devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x6b6a133c devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x6b72e663 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x6b7825d5 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b869621 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0x6ba381ea sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x6bd14268 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6be070f7 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6bf9b4dc uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL vmlinux 0x6c29b013 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6c2c89e1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c329641 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3e3b4b regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c3feb38 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x6c430c52 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c43ed48 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5102cd crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6c5fa599 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x6c662297 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c68bdaa usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6c746300 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x6c83e944 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x6c849570 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x6c870e69 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6c87c14e hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c8a11fd __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x6c9233ea devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6c95daaa xhci_mtk_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x6ca3a863 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca67732 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6cbcdd30 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cde1866 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0b8c5e percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3cffac power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7ce111 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d84fe54 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x6d850fdc sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6d9ca173 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc13bdc sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6dc17198 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6ddc5519 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x6df4d33e inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x6dfabed1 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x6e211337 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e220a57 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6e2826d8 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6e2bda65 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6e2d4556 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e672ce6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x6e735005 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7ad674 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6e7c7e24 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eb12aab free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec2e87a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x6ec2f479 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efc9ab8 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x6efcd67a wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6f0a7392 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f193fbc rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6f20ef92 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6f305860 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6f34fd72 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f3bfb19 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x6f406c93 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f60ed0a bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x6f66d4de tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb65a6f dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x6fb65b5d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6fb6b1a7 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fc55829 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6fd3a337 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x6fde2d2b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x6feb09f0 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff70dad page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x701a3c56 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x701d5c97 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x701f4ab9 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x702da245 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7033227e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7035d7ee blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x70478f5b devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x704a0938 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x704c18e7 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x7065c929 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x70712002 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7083f067 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x708c3c92 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x70b575e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x70c4ba52 task_cputime_adjusted +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 0x70d19977 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x70d29938 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x70d5e262 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x70d6ea0d __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x70fe5120 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x70fe9e2f switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x71055534 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x713666ba clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7165f346 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x71762c2f pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x719c8c6f clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a3da73 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x71ba3027 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x71e884a4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x720a2200 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x721a837a metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x7220868f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x722909f5 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x722c5557 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x722d5a4a usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x7234d40b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x723be5dc ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x724d6638 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72a075ae ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x72aee1ad sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b7d8d4 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x72c6dedb sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x72d9dba8 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x73092ff4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x730e7db1 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x73275243 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x732965de pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x732a777a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7345594b ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x735ea8ef of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7364b5ac gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x736ab86b spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7374ed5f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x7380b44e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7391ba22 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x739db0e3 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x73a45678 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73ba2172 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x73bb1f5c pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x73c20039 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x73caf4e7 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e3e582 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x73ee2545 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x74042e7c phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x741e228e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x742443c7 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x742cc4fa dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74413295 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7445a03d lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x744673f1 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x747b36f1 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x747bd817 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x748aad4d devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x748bf22f regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7492f02b ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x749b9c88 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x74aa4c2f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bd3521 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x74be5bcb serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x74cb6c02 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x74d25f09 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x74eb4a49 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x74eea5e2 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x74f2f920 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x74fed6e0 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x75081993 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75295b01 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x752c89f9 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x75337d3e arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x754a7d3b pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x754f768e blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x75633c49 gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7570ec16 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x758eda08 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759440c6 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x75b16e86 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75cb26f0 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x76038783 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x761227d3 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x7623d058 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x76617eda init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7678158f sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76907634 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x76a8d0a5 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x76af906e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x76bf54b5 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x76c1ea46 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x76d60f5a fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x771838b8 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7718a8c5 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x773a54b7 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7740e651 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x7745aac5 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7751910f __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775eeb1c sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x776757e4 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77703e96 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x77731c39 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x77829ef5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7786143a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779a2d8c pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x77a8d34e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77aea42f dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x77b1b293 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x77b66272 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x77c44108 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x77c58d81 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77dee7cd ref_module +EXPORT_SYMBOL_GPL vmlinux 0x77df7acf snd_soc_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x77eec996 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x77ff8c77 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7823f5dc sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x7834b70c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x78467684 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7864fa23 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x786d1c2c list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x786f56ed device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x787c3dae devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x788730a0 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x789368f0 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x78a7f6cf virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x78c774ed devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78cb5b5e of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x78d8de91 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x791a8eb6 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo +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 0x7954bf84 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x796cf33e crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7970c164 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x79763ed4 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x797d5c88 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x79860baa cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x79a0bbc1 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x79b581dd tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x79cbe67a i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x79d6f2fd null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e47ada crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x79f0c408 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7a3893af snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x7a601100 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a77d8e5 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x7a79ca43 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7abca186 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac3f9a9 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7adcaace __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7af749ab pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x7b02dd40 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7b11caed ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2de766 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7b3925ff xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6004bc bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x7b6ab016 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x7b6f7035 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7b792c2e genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x7b878f1f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7b87c8b4 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7b8bf034 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x7b8ef84f dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7b93d782 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x7b944c5f srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba32342 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ba9d6eb gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bb38528 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7bb8fa24 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x7bbb4aad netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7bf8c976 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x7c0ae268 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c1281af gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7c179263 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7c25c673 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7c32fb55 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7c403969 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x7c5a33b3 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x7c755216 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c78f8cb mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c816a00 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7c93018c ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7c96b67f cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9f25fe usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7caebaac regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7caf72f6 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cddd53a stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d0e9dbf usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x7d1206ae usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x7d2b3f3b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7d4c6e6b serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x7d58503d sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d62e7fe __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7d7e755f regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7d93c76d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7d999029 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7da595a0 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7da7ccd4 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x7daed0c3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7db0216a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7db8e648 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x7dda0f15 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7df87e2b of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x7e034b32 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7e1eece4 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x7e42ffb9 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7e4db30f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6ca145 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7e6d2e20 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7e79b13a sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7e7d9701 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e83e3d3 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7e85ae70 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x7ea73de6 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x7ebcbd37 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7ed6476a probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eda6998 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x7ee4eced fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7ee61175 regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f0057ec debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7f0b4ea2 usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x7f0e008e wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7f106130 mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0x7f3043e1 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7f35a99e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7f4ac6a9 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7f4ca426 update_time +EXPORT_SYMBOL_GPL vmlinux 0x7f607b32 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x7f621b4f driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7f66fd92 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x7f67f502 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f6a68c8 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x7f74ba1c cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8a3747 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7f8a42b3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f9f195c snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fa14282 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x7fa26ad1 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x7fa720a6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x7fc862df snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fd7020c tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x7fe38160 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7fed7af0 cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7fee9dab alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7ff18f35 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x800819e9 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x80187a52 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x80309ddc trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x80326779 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x804dc3d2 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x8054ecf5 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80581fd3 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x80584961 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x806fbaf2 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x807a8891 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809b919c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80a6e00a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x80bd89b7 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c757b6 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x80c7e1e3 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x80c92c36 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x80ff927d vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x811106cb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x8112a7c4 __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x8112cecb housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811ef15d sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8131acca md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8162041e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816fffcd cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x817e292f security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x8181b8de netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b440b3 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x81b49500 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x81dc4f4f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x81e0d48b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x81e432fa mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x81e601a8 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x81ec71c3 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x81f2b867 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x81ff5930 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x82036ac4 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x82071099 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x82382ab3 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x823b88c3 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x823e8b0e sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x82478517 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x824aa794 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x825d54b3 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8281e945 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x82be3faa nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82fa2e02 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x82fe6cf9 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8317259d ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x831c0283 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x83297f8b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x83351b96 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a7c41 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x83457d39 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x83478f7b sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x834904b6 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83502ef1 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x83621bfc device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x837af401 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x83891a66 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8390e4f9 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x8396674c tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x839aad72 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x83a0a4ea nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x83de986a mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x83e1b2b8 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x83f55ee7 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x840d7a07 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8464293b cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0x846e84f3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x8475d6d7 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x847bd2d4 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x84862146 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x849b569f metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x84a0258a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84a93c54 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x84aa3ce0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x84c7a1b5 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x84ce9ca6 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x84d671bb usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x84d9b05a power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x84ee0e1e fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x84f0dab6 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x85052430 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850dd083 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8510806f perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x8517313d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x85175f62 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8529ebb4 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8534fe99 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x85388591 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x8546d120 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x854d8fc8 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85615f48 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x8561c1f8 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x856c0a18 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x8570f468 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x8576269b dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x8599314a clk_register +EXPORT_SYMBOL_GPL vmlinux 0x85a3eb9d __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85aca8ec user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x85acb812 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x85b3f3cf inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x85b922a8 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x85c17ef1 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85e0e9df securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x85eb964a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862589ff gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8635014a cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x86408e1e dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x864a20b4 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8657db3b nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865dab9b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x8665230b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867773db bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x867c4f1b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x867dd140 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x86806218 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868ff874 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x86927504 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x8697879c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x869fa4a9 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x86a06290 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x86b2d4b9 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86f00711 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f9f015 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x86fadabc perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x87013855 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8733f061 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x874aae1a snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x874ff950 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x876684ba pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8773f995 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x877d3ac3 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8784d4e9 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x87c384ed bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x87c93b85 blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x87cdd560 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x87d9645e kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x87dd3a2e devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x87e3c6f2 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x87f4cb37 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x880a8699 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x880d0369 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x882a1cac spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x883ca9d7 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x884f209e dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x885ebe16 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x88634dfe ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x886471ec fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x8868f131 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x886a7006 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x887c5a9f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x887d0446 usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x8891c8ee pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8893431d devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x88967898 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x889ee946 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88cf53f3 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x88e7f4ba wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893788bc snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x8944a5c0 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894a4fdc usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x896af192 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x89702dcb of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x897860e6 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x898616e8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x89881c57 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x89882546 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x89ab26b9 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x89ad1569 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x89bbadbf ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x89c43cd1 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x89ca1a99 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x89e691bb pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x8a0cfc86 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8a1876d6 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a3ae269 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x8a3d687f shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a6090dc blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a69c435 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x8a7b4d87 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x8a7bb504 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a8d9f8d dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8a9bc177 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8aa02161 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab06a50 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8ab9a34f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac1ca2f __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x8adc7030 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x8aefe686 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x8af1cd13 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8af8e459 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b151db3 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x8b1e347f md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x8b27f4f7 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b388175 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b4b5c04 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8b549ed0 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8b54a6f7 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b7ca02e register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8b8fa240 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b92558e nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x8b94cd83 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x8b98894e skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x8bb890ba subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8bbd9168 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8bc0ef6a mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x8bdc8a6f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8bdf5831 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c07bca5 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8c141573 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x8c15127e spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x8c2921e2 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8c29aa89 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x8c37656b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c3ab56c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c658bfe pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x8c66fae4 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x8c673391 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x8c6af804 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x8c6fa77c fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7bd877 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8c846f14 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8c89768e snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8ef6cc aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c902e0a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ca430ca sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8ca77e8f ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8caeeeaa rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8cafe3bf ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x8cbeb675 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ccf1126 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x8cd563c3 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8cf10be5 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x8cffc7a4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x8d0a22d8 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x8d144935 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x8d19adec usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x8d215ab3 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2f86ce verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d42dbb7 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d57876a dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x8d7d4b68 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d8292b3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8d82ebd8 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d971bad usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x8daec7ca ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x8dbc5566 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x8dd36a4c usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8dddf92f irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ddfdd81 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dea3008 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x8e015aea of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x8e03c6cf rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8e1f06a6 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8e21e7bc tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8e3777bb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x8e4212a7 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8e748e31 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x8e77a84e regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8e78a6c6 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x8e78eee5 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8e7ae343 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8e7c9e62 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8e899bfc pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x8e8e28e1 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x8e9e3de5 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x8eacd75f nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8eb65987 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8eb86456 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ec0de45 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x8ec61f1a devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8ed116fe led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8eece948 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efb7cc9 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x8efcfa8f nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0a17d5 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x8f0bc5fe spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8f14d41b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f25fa9c fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x8f2fbd75 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8f49e11d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8f4a4784 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x8f4dbf11 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6d97ac virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f82dcc6 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x8f8e6502 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x8f98889d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x8fbfe654 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8fde9d44 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x8ff2e25e of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x901c6c99 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x901d2d73 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x901e5ad1 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x90268e89 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9035bcfc spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906a28a2 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9087392b put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x9089b3ed pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x90a79153 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x90abcc81 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x90ba7a98 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x90ccc92e sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x90de210d create_signature +EXPORT_SYMBOL_GPL vmlinux 0x90ec0b50 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x90f01e1a skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x90f7668f __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x912276e2 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x912f80f6 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x91335e76 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x91453295 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x914e1eb5 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x91624825 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x9181ae00 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x9185cde2 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x919cdc57 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x91a0c494 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x91a2c99d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91bd7a75 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x91c2205b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d31aef crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x91d7ac95 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x91e51a55 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x91eb6512 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x91f9c1fa get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x920f716b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x9214bdca transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x921c08c2 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x922bca4c component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x923d74cd pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x9240341f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924eeae4 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x9252accd pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x92684b63 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x927d2d72 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9282f433 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9285ceb2 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x928cdfe1 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9299f49a blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x929fd84b mmput +EXPORT_SYMBOL_GPL vmlinux 0x92b1e8b5 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c1eb70 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d72357 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92ee7f20 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x92f82756 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x9304591f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x930c2861 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x930c3182 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x933e5cd2 xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0x9347da9b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x93485c87 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x934c578f mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9356eaf6 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x9373d697 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x9381ebb8 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x9392845b crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9397069a snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x93a190de of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x93bcccab mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x93bf6285 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x93cd893c pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93fa8dc9 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x93fb510b list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x93fd09b7 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x93fd0b48 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x9410670e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x941bdc38 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94206f80 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x94232750 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943b233c nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x943fe4cb __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x944181fd __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9441f00b l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x945f5fb9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x94676d3f musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94716e89 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x948a8286 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x94932b3e fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x94a46d6d arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x94aa511e regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94cc275f pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0x94d34a3c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x94d75573 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x94e2b3ac mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x94e867f4 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x94ff2921 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95125773 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954b9328 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x9556c8d7 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9566d157 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x957043d5 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x9583b811 nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959b6ce1 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a0a88c blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x95a5a1ea mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x95b3bc05 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bd9427 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x95d27254 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x95dfbe91 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x95e65d1f __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f41f8c uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x95f5f7ed of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x95fb786f usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x960f6094 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x961186c8 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x9621e1ff usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x962753f7 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x96394de4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96562cd1 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x966dee50 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x967d5ff4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x967d9003 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x9685a864 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9691f73e dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x969912aa hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x96b78e13 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x96e023bd wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9715d6e7 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x971d61f0 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x971dd320 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x971f9980 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x972861ad of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x9731dc71 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975d1312 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x975f7390 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x97659959 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x976c6f13 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x97770670 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x979085a6 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x979580f7 i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0x97b71dc9 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x97c0b50c tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x97cbce81 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x97d43366 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x97dbe0fe fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e22b7b badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x97e6f39d tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97f0db19 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0x97f8fa6e pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x98307e2c regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983cb182 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9841f1f8 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x98444c4f get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x984e2a7a blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98545cf3 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x98602770 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x986f7f79 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987fb2fe pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x987fd303 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x988238d1 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x988e5063 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x989965d4 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x989b6952 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x989e9154 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x98a13a5e phy_init +EXPORT_SYMBOL_GPL vmlinux 0x98a70c5d _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x98b749c5 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x98d43455 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x98f51739 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x992af6af pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x9961c0cb ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998ba773 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x9994f95e spi_async +EXPORT_SYMBOL_GPL vmlinux 0x999eac19 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x99c7e3df device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x99d58020 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x99d81ff1 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x99e2990a device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x99f19088 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f3ca66 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x99f8a450 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x99fd984e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9a048866 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a13bb92 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9a2e4e06 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9a372ee7 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9a3aea64 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x9a48b45c led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a5f88f2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a631154 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9a65262f of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x9a72792d virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9a73ac63 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9a7f4b73 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a87b95d snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x9aa21590 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9aa5f5d7 nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0x9ab356f6 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac4c68a skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x9ae99f6a pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af11166 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9af35202 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9af92e91 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x9b00a4cc skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x9b16c72a anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b1b0990 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b299638 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x9b371ff3 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x9b499d92 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b708e0d sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b94957e crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9bc1f1d9 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x9be8b33e serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfcebd0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9bffd61b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9c28a681 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x9c3b13f0 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x9c55af7c pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c73ff9a usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9c7db561 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c817d87 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x9c96b494 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c9bd4f3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x9ca3f4df bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9ca52c38 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x9cb9fdc8 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc722d1 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x9cd59296 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9cd80279 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9cefb207 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x9cfacabd usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d175c40 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9d19cd7c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x9d1b1751 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x9d2e3c66 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9d764984 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x9d7d60fe spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8bc7a5 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x9d95fa9e snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x9d9cc611 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9db40266 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9dba64d7 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x9dcd1fd5 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9dd0ed3b pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x9de77f07 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9dea4997 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e03e846 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x9e170006 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9e17daef device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e24bdcc da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9e34ecad gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9e46d902 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e476637 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e4dd913 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x9e5e71e0 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x9e61c6d8 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x9e70aefa to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9e741dc1 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x9e7d0640 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x9e8a812c blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x9eabe1f2 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9eb681ed register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9ef17443 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x9eff2ea0 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x9f5c554e of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9f6c71c1 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x9fa51418 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9fc392b4 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea4328 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x9feee10e key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x9ff26de2 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x9ffef835 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xa00147c2 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa0115679 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xa015ac01 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xa01a65f0 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa01d68d3 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa02a733c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa0330098 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0569dad regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa06403f5 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa08ea9be usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0xa0995d7e rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0a118c7 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa0ad3002 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa0be12a0 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xa0ca375f of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xa0d7f283 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0dfcea8 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xa0eeb0dd tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa1015fbd virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xa157f62b ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa1658ddf crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xa16bb289 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xa16dff59 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xa17b8e76 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa1840356 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa192ee0c snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa1a34749 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1a43af6 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xa1cfa529 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1dcd5fd skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xa1e40e08 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa1e48fd4 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xa1f0e6e6 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0xa1f549fb uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa1ff01f8 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa208c03a ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xa20b9acc platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20d541f edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa228cb6a blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa24e834b vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2747f31 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xa27d786b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa290f721 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa2a948ef usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xa2af1c72 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2c7d7c3 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa2ce4d88 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xa2dd8f85 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xa2dfeb50 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e34728 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2e897dc devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa2eda35a amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa2fc3fa8 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa302dc11 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa31cf608 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xa32a52ed usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa332206d of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xa33ae856 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xa347039f tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa34b74b6 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa37706ca skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38f34f5 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3a861eb pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c2bf52 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa3df8562 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa3e21336 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3ebcbc1 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f21389 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa3f2220e of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40b0595 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41b563e regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa41d21b6 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xa4292bed scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xa42a41db ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa42e39ca fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa444c9d3 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44fbefa __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa44fd8ef rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45c814e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa45dd845 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xa46f6e35 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa473e795 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa478284c of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4baddac software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0xa4bb788c fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa4c09229 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa4ed1c7f usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0xa4f296bb ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa503afd4 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0xa54ad3c1 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0xa56f9141 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xa572cf03 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0xa57ad52f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xa59d8bbf nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0xa59f32f4 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa5aca564 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xa5b4b48a rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xa5bbb140 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5dc855d usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa5de6f87 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f9e1b6 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xa60069b2 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xa6015418 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa60797ee device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa60efb09 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa60fa4a2 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xa610de37 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6276325 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62ffa2a ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa64e122c fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xa64fa1bf virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa65acb2d devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xa68077a8 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0xa69f5fdf inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6cd4db6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa6e12b2b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f10276 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa6f94546 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa6f9ba2c devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa6fda141 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0xa7007635 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70b3171 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa70bc60e sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xa7301e08 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa735a82d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa7392b0a irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xa74028cc usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xa74a085c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xa758270d vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xa7668c63 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa77003f1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa79406b2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7a21d45 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa7c0d66c serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xa7c5781e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7d1cbd7 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0xa7d3f380 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa7d60c7e ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xa7dda283 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7eb7ac0 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xa7ec4e6b pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa80eae12 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xa8103732 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa8126dc0 __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa84324b8 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858cc13 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xa859cef7 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa86c396d cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa8953448 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa89bd9eb wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa89ddd81 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8a1c9ef locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa8b19044 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8d46271 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa8e53e01 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa8ea00d1 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xa8ea2a16 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa8ec7ee8 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa8f0cf82 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9041de1 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa92a9d52 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93c6d3b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa93d08a8 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa941c674 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0xa950d299 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa9623e63 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xa9629c2f xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9682323 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa97976c4 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xa983c579 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xa9983dd9 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xa99e52c1 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a66a83 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa9ac63a7 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9b81db8 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xa9bda1e0 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa9be711e iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xa9c5dffe usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e6c3b6 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2d216c da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xaa2e95db nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xaa39ace7 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xaa3fe48a regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa569ab7 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0xaa83c2e5 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa8d4c27 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0xaa97be20 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab66f98 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xaac24e62 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xaac9ec45 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xaad37506 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xaad6a66c otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xaae0d6dc sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0xaae1347e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xaae91358 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xaaeb3901 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab0c2398 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xab192871 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0xab39041f fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xab46770a usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab4fb0a8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xab55294c max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xab5b67b1 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7b39d1 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xab7b5767 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xab8ab279 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8d262e net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0xab935a1a pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xab9d794c da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xab9f99f7 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xaba313cd usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xabb91825 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xabbfeb93 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xabd4e779 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xac015960 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xac038074 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xac053742 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xac07f3fb gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xac20a9d5 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xac20bc42 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xac693873 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xac9c3fc4 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xacb35362 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc828f3 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xad098b55 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xad18b44b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xad1b1b88 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad2335bc mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad2b1869 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xad492196 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xad50ab69 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad585ad9 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6502cf devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xad8b6ee9 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0xad9b9c54 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadba0152 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xadd34451 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xadd6c700 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xaded28e9 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xadf84986 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0a7260 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae12e78b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xae196703 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae33104f regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4b9c6e clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xae53afef tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0xae62348c dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae78a667 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae83662b pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xae9621b8 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaec6bb30 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xaec91a80 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xaecb3ef5 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaefcbe65 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xaf02b5f2 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xaf0a5e43 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xaf20b27c vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaf20d0fb fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xaf211223 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xaf2f3c0c snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf38fd5b rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf438091 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xaf53ad85 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xaf76ba4f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaf7cfb08 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaf812d80 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf8d3459 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaf915e04 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xaf9b90be irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe7d9e9 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb01ee61c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xb020230b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb020b97d regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb030e0e1 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xb03e0211 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xb03ea3be kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb03ef9f0 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb04632d4 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb05cce76 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb05dc9b1 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xb06a1261 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0xb06a45e8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb074cb68 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07ce23d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb07fc7cb dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xb0971fa4 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb0984ebf find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0ac6f19 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c0097d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xb0dab486 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xb0dd562e tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0dddf95 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb0e47bab __module_address +EXPORT_SYMBOL_GPL vmlinux 0xb0efe4a6 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xb0f8fa2e dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb0fcf1f7 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10ff5ee power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb1104450 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1151d00 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb135ba51 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb140cb82 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14c0593 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0xb16471db irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb1741dc3 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xb176d899 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xb18110e0 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18cc502 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xb19c9a42 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb1a67cf2 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cc1c2e dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0xb1e8b8c6 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb1febd74 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xb210fd83 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb2186c80 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xb219faa8 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb220c41b dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb225b7ee dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xb22d7671 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24a0ece blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb24d2fa4 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb24fda91 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb251a33b devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb262d44e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27cc327 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2a472ff of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xb2a59438 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xb2b7ffa3 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb2bf1576 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb2bf884f of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xb2cebd12 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2d2e2db snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xb2e490d1 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xb2e61600 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30c56c5 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xb3109b9c blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xb3113ce6 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0xb312e1c3 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xb316635c ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb31c35a8 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb31e4742 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb32c201c regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xb354fe60 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb38569f5 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xb3a72e9d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb3ae6539 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xb3bbae6a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3bfc640 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xb3e7ed1c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xb3f44e14 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0xb40562d0 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0xb40a0e53 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb4155a7f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xb4351c69 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44276f1 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb44cc7b0 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb44f1e3c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xb4621045 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb467543c device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xb48f6e23 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb4908f80 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xb49203ba clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xb4947433 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb495a2db regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0xb498c7a7 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0xb49de221 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb49f7b7b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xb4b26366 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bb5de8 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb4c5582a br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xb4e568c8 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb517950a musb_writel +EXPORT_SYMBOL_GPL vmlinux 0xb51977ab devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52e0321 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb538a3f6 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xb549eb99 devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0xb54c6022 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb54e71b0 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb56c55bf dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb59024d6 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xb5aa1c96 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0xb5ba2c0f regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb5bd2171 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xb5c4a239 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xb5c92493 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xb5cb3135 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb5db7121 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e7b0fc phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xb5fd621b paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xb6022cb9 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xb616b7d3 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xb625a677 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63506c6 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb638ae0c cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb63cd195 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xb6470824 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb650ff56 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xb651a9bc crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb653917e devres_release +EXPORT_SYMBOL_GPL vmlinux 0xb6552df5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb65f4a8b mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0xb66c6cf1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb672384a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67ffbf1 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6a4250f sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xb6ad631b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6b1954e iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0xb6cdb213 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f69dd9 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xb6facaf8 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xb7016a35 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb70ea06e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xb717584c dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xb72b7595 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xb72c6678 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb739029e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xb74e8c26 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0xb757102e rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb75ce981 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xb763f6ed regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb7655cd6 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb769b22a debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb7b53315 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xb7b81fa2 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7fba8d7 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7ff96bc dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb8093ccc sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xb8163212 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8273624 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb85a2a40 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xb86b6ad8 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xb86b8821 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb877aa5d ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb8802ac4 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89f32e3 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xb8b6d6db spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8bbd509 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cd82e4 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xb8e1f78b __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xb8ecff04 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8f3cc33 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb9046995 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb90dcf31 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91b2a02 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb91ff192 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xb921a5e9 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xb92993ef pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb93e08ca snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb94100cd led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb941f46e spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb942b5ea sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9449fd0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb96a581f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb96a6616 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb96f55fa mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xb97260f0 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9794cd2 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9843178 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb99ec74e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xb9ae3135 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xb9aea394 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb9b467bc blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d26a7e pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9d9f73b mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f9f98d hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba011522 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xba0a0812 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba46baec amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xba4f78a8 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xba511a98 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xba5c7960 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xba5fb914 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xba6d6604 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xba72a69c led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xba7d3e7c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xba7d622d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xbaab9c2f sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbada6832 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0xbaddcd6b skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xbaf0f041 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xbaf36f9d __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb015cf8 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xbb096ed7 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ad9ea fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xbb20f908 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb27a3ad spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbb2d4f69 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbb3b8018 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6c9606 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbb82550c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbb902505 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbb9ed83 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbc613e1 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbbd82308 musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xbbddc24d __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbbf28f4a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc05fa21 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xbc097061 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xbc1e08b3 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xbc252082 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbc2eed23 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xbc355ca1 xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xbc453ca4 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7a1f0a dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xbca21501 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc1456d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd1362d usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce39ab7 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbcead2d3 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcec5f98 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf448df pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xbd028f01 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xbd129653 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0xbd1d37fc ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xbd2804ca usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd58097b fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xbd5a8b44 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd73d76c power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xbd849088 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbda25743 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbdae3317 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xbdcdae4c cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xbdce2e8b posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe03ab14 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe072308 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xbe0b06e5 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe22aa4f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xbe3bad08 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe524fd7 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xbe66a7f8 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6f30d7 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xbe904422 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a3751 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9af246 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb669bf find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xbebc3d99 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xbebeeded nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xbec51c54 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xbed44f27 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xbedd45f0 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xbeedd446 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xbef8f42e clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xbefb53aa register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf06ac02 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xbf1af89d devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xbf2d5a58 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbf368c6a extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xbf463373 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xbf4701b7 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbf5ab541 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xbf7f12ba generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0xbf7f638b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbf7fc2f9 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xbfa2d2eb pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xbfb87629 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfde3f2d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6f9d6 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xbffce09b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc0127f6e phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xc0417994 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc0420b23 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xc0461617 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0473aed usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc0589270 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc0627292 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0xc069bfd9 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc07399da devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc07fd22b vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08435d6 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc093781b bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xc09b99ae trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xc0a8254a shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0abe10c metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc0cbabd5 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0cecd11 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xc0d60465 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dfa468 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fa8f7a __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc10c647e cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11252a3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc11bba5d devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc11bfd98 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc12bd608 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xc12e2a9d cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc13b9778 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xc144ad76 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xc1451a11 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xc16450ed iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xc16595ff wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc1683717 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1793587 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc1882127 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc19aae3a pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0xc19c09e3 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xc1b07123 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xc1d9bf30 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc1e0aff0 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xc1e33d41 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc1f4a26d irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1f5cbc2 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xc1f89b7b devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xc1fccc5e srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc20e848e iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc2106804 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xc226e9f8 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22ba09e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc23edd33 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xc2466959 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xc2583c3a usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xc25c71ca snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xc25eb330 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc264f5ac ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xc275f4fa of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29f05c3 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find +EXPORT_SYMBOL_GPL vmlinux 0xc2e24c47 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xc3152902 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xc318cf03 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xc32490cc sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc327d21c __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc3343c72 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xc33b1ffc ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc33ed841 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc3402624 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34af36f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xc356f46a rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc3645683 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc366a801 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3904249 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc39cd51a devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d5b07a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc3d8e64a regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc3db0d99 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xc3e5c2f2 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4022585 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc4037f55 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43381e6 sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xc441ccf8 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc4461222 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xc449d7fb pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45ff715 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xc467c8b0 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4736c53 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc47539b0 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc4786927 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xc4837831 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48ba444 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xc4a4cb3b sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xc4af528a iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xc4c50007 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0xc4d2b454 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5042bb7 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc53016d7 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc535f862 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xc53f9035 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc54b1da1 nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5562861 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5abf2fe edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xc5bebcdf platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5d210a4 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xc5e31561 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc5e40671 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xc5f3da48 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc60f4576 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc618b65e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xc61a6865 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc620c77d mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc6325400 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xc642cee7 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc684e3bb pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc6896548 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc691146a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xc693760a gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc69b0658 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc69b2009 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6aa6624 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc6adf6e2 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6ae7529 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc6bb07af snd_soc_component_read32 +EXPORT_SYMBOL_GPL vmlinux 0xc6c3ed50 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc6c55c4a _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xc6cf8baf sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xc6d3939a __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc6e67d03 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc6e91490 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xc6eb9dd5 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xc6fcc1bc scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xc7077b6f snd_compress_register +EXPORT_SYMBOL_GPL vmlinux 0xc71d834d bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc71f328a snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xc720b544 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xc72d2ba2 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc74531ab platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xc74cd163 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xc7627707 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc771f25d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc7764de6 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0xc78ae47b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc7919de7 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc798b531 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b73c61 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xc7bba8f1 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc7bd127d tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xc7da6c72 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xc7e31965 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f9a458 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc805dddc pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xc80d4024 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xc8125ea2 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc830e112 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc8313308 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xc83cf9c0 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc846a002 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xc848f1db register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc8563e64 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85ca678 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xc878e520 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xc879d873 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xc88a9f9d call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc891136a __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc89128f9 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xc89885be nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b3a829 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc8ba7373 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8cb59d9 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xc8d17498 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e1aef2 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xc8f6d9db genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc905a365 rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc917b57e ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xc92e885a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc930aac8 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9546999 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9632fc0 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xc965b523 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc96eacdc pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98c69c1 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9c1f42f unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9d393da sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc9dc876f __put_net +EXPORT_SYMBOL_GPL vmlinux 0xc9e19563 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca118d19 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0xca11b640 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xca17d4b3 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xca257974 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xca32476c snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xca380d22 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca47b245 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca59b284 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xca5dc1c4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xca6b2c06 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xca7047ca wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xca787a2c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaae1a3f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac10033 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xcac60bff iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xcacee676 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcad2cc76 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xcad7a60b regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xcade6d41 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcaed20cc tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcaf8e4c9 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0xcafe394e device_del +EXPORT_SYMBOL_GPL vmlinux 0xcb059e5a __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcb15c8d3 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1657bc usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xcb1b4a6f mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xcb2346f5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3bd1d1 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xcb530a4a __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcb573250 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb64fbe4 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xcb686858 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcb6a439b sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xcb759444 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcb930043 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xcb9d62ad rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xcbc0ccb4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xcbc463a0 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xcbdb0a95 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xcbde1fb3 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbe429ef pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbebbb69 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0xcbf8eae6 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcc04f299 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xcc0820c2 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xcc1b186c of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xcc20ac52 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xcc26b60c sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc58dfb2 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xcc68b1c4 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc75d52f device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xcc92da78 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xcc937a23 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xccbeadd3 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd594aa gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccd99c4d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xcce18367 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xcce1cd57 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf79fa6 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xcd01ac01 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xcd0c0c22 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xcd1baab3 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2b0ec5 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xcd322f63 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xcd3710dc tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xcd6e84bd handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd6ed7ec regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd8254ee dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcd828bda gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcd830cfd crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xcd8ca48a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd96b4bb ping_err +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda380b5 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xcdb46e05 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc8bca6 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde324bd spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcdf2511c devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcdf520bf iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0xce123408 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xce1aa3c3 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xce2fb26a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xce3f00d5 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0xce4a52b3 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xce562fd1 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6e99e5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xce81afea tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xceb956ee thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xcec1ec4d tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xcec75648 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xcecdbed4 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xcedb19b9 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xcee0f60c freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee230af tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcefb29d5 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xcf0758a2 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf0d1895 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xcf25f900 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcf27d8ff snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf36a290 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf569779 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xcf603609 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xcf7cc640 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xcf7e5f00 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xcf9a2bea do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xcf9adce2 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xcfa565a4 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0xcfaf9feb ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcfb51998 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd66df0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xcff00a67 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xcffe38f7 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0xd024216b xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd02acfc3 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd03a5b72 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06a9efb fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd0793572 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd0b34e1b dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d5728b iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd0d5a894 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dee771 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0fa338e of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd105987a sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0xd109935a iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd13d3bd6 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd14da128 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd1586bb2 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xd15c2beb ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xd15e6bf5 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xd15f03e1 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xd1613003 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd19e977e fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd1a0326a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1a5ab13 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xd1a8d46c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd200d1ff devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd205716d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20ecc0f bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21cb4fc alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xd22d629e nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0xd232dc27 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xd23877b9 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd23a1b31 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd243413a extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd2538ec7 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xd257e158 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd264d870 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd286b717 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd29d11a0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd2adafac dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b1ac6a tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd2c7a27d __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd2d15162 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd2d35432 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xd2d9e742 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd2e2a1c6 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xd2f9230d sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2fe1c86 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd301b62b usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd302b816 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd302cb65 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0xd30e9c76 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xd31064bb inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd33a8aa8 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3586522 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd36bcc8f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xd36fb7aa usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xd37ef0c6 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xd385290f inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xd38910b2 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd38af1f6 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xd3977e37 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3b1541a xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xd3e7422a crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd3f4a0b7 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4069c15 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd40f16a0 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xd419ac20 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xd428b15f efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xd42eb12f of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xd42f0ef9 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd4361bbf regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd443dddd dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44b857c __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd450f337 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd4708f6e udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xd47d90b7 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd494d579 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xd49521b5 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xd4953f53 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd4a63d75 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd4aeb855 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c1e411 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xd4dcffd3 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4e31654 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd4f52ba3 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd509ea95 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd51cd14a ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xd52889f1 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd5320207 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56c4fdb ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd58d0acc device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd5b07a7e snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5ca33e0 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xd5cfb6d4 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xd5d71fba regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd5e2423f percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xd5e9786d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xd5eb9f12 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd5ee4cb4 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xd5f4ae0c dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xd60283bb pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xd609c1fe snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd613b263 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xd625583c rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd626d20e xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd6271d7a snd_soc_find_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xd62dfb34 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd637a55b tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xd63a0851 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xd64e4e09 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd6524a57 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd66f65e9 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6743ec1 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xd67cf337 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd67f956b netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd6a4190a find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd6a93d59 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xd6ab9acd gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xd6c5669f inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd6e555b4 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6ee0e5b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6f8b41e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd706c698 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xd70eea55 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0xd7136224 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xd726cd89 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd743b808 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xd7479be1 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd75f4b95 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd7ac018d sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd810cb98 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd81bbe58 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85d919c tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xd8721e00 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd8723f94 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd877bf45 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8857d95 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd8955a8e phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd8a0e92a clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xd8a17dad tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xd8c4ad51 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xd8c65c94 usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xd8e33a60 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xd8f849d4 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xd9014e44 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd902fc84 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94753fd usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd948218a vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xd966fd9e tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd981776c phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd984681c of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xd98528b8 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xd98f17e5 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd993367f dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xd99c1b92 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd99cf956 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd9a33e8c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9a83a33 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9ae25dc sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xd9b10b5b dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xd9b71d36 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd9bdf514 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xd9ce745f amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xd9d56f2d regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd9e782dc dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda097884 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xda1c19a6 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xda1d04d3 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xda328952 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xda410add freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xda61800e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xda79b71b edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xda8f54a2 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xda938d6f __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xda9d0a88 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xda9ddb19 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdaa18b26 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab6ceee usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdab71dc1 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xdac1e384 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdac657cd dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xdac9cac5 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdacbcaf6 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xdacd6e49 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xdad2d53e security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdad70466 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdae599a2 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xdae6d738 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdaf9f2dc tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xdafcc193 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb0536d5 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xdb11398e mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xdb199898 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xdb1f75ec of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xdb225ea6 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xdb34f024 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xdb515fb3 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb891295 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8f69c2 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xdb9b4544 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xdba72a65 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xdbb05024 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdbc87a2e blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xdbd2287e gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf860e7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc26a952 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xdc28c4fa of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdc2a836d extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc47173d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc649b5d cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc68d9c6 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xdc76a368 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc851e6f usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xdc891329 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc996fd8 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc9d9441 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca1e59b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcd92ede __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xdce1bfd4 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xdce56957 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xdceecf12 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xdcf61853 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0b6e1c fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xdd0dc550 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xdd102d86 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xdd177027 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3589d2 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd40d48a snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xdd4ee30f tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd88ea09 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdd8bc58f serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xdd97830d of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xdd9c9425 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xdda374e5 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xdda454cf sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xddad8807 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc4ab4d cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddc750bf blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdddd0e13 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xdde88679 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xddee4152 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xde0dbe31 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xde116bf0 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde1494c5 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xde26d430 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xde2b913c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xde46d04b direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xde576cc5 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde86c04a mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0xde8de241 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdebec804 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdef36bec imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0xdef4a880 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf1939d7 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xdf1f5b5f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2d4c5e da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xdf384022 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xdf58d7bb pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xdf7fa33b __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xdf84098c tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xdf87ec8b regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfa81beb max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xdfa8ba23 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xdfaa7ed6 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfb15eb3 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xdfc0711a debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xdfc7c0d3 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe36b42 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xdffd7a87 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xdffdf4f1 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe02ffd3f bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xe036c358 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe0590ee9 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xe05b359c fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05efd9d fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xe060bdc2 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xe06f6fba regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe092e656 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe096f245 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0a83dab ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe0af7740 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c0eaea devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0ee4401 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe1087d8e dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xe114f47a devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xe1190ec2 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe12140b7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe12cba15 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe14a07ca cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0xe1502545 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe15c7960 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe15ebd30 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe1638c9b of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xe16401e7 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe16d4a7c pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe172c422 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17ce7e7 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xe1998183 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xe1a0b51d thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xe1b06060 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c9d22c usb_string +EXPORT_SYMBOL_GPL vmlinux 0xe1cfa261 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xe1d2090c reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1d6d3fc pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe208d7f0 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe22a0628 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xe22d14ed key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2432cce gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xe24bae46 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xe24bcde2 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xe24dd9e7 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe254cec4 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xe25c65ac open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xe261b273 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe271bc31 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xe27f2c4a xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xe29d4982 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0xe2a08b7d __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2a34261 skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xe2ad616d snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0xe2b159c4 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c83a41 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe2d07a02 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2d425b6 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2ded661 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xe2e01cd8 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3055a0b devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe307f6c5 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe32324fa pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xe356342d snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xe3570d0d dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xe3583f7d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe3816501 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe390e7a9 trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0xe390fc5e device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a9f94d iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3b09683 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xe3b62061 put_device +EXPORT_SYMBOL_GPL vmlinux 0xe3b639ec pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xe3c0daf7 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xe3d6890d nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0xe3ffd270 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe4014ca7 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xe4060382 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4070b10 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40dc0d8 clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xe4195279 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe423e321 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe494148c of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xe4954950 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe4965d42 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4af00fb ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4bd734d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xe4cc2e0c rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe4db7993 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe4dc8b26 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0xe4debc04 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe4e3720f security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e6a3b5 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe4ec0c65 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe510f350 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe5255aa2 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe53014b6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe532814f split_page +EXPORT_SYMBOL_GPL vmlinux 0xe536938c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe550d6ed rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xe5528924 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xe56acf5c regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xe57b8ea9 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe586dc2b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58c8af0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe5979f73 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xe59ee23f synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe59f015d cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe5a22cb5 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xe5a8f143 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe5b6e143 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5d694bb da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe5d7409c alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xe5d97c76 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5e58556 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5ee344b __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe5f256f4 component_add +EXPORT_SYMBOL_GPL vmlinux 0xe61867be pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe61cc1e4 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6297d78 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe6345418 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe635e035 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe63e180e wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xe657b081 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xe65b5874 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xe65fb4f3 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xe6634b1b decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xe6689ce6 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe68790a0 xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0xe689f0fc regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe68b7cae spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xe6bb8c91 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xe6c72130 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xe6c785c8 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe6cd714b pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xe6d81d31 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xe6e1eadd devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e4435a iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6e98f8c sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xe6f05d03 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe71bd263 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe71ef4f8 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xe7268e10 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe762e714 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76d91cb ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xe775b60a sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xe777e04d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xe77814ad crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7d33667 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7db9182 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe7e41bfe regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe7e90664 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f0f3d0 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80fc133 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe8142a4e usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe82318f2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe8256cf4 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xe827d169 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xe83a0e0e cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe846a711 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe84b6c6e badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85cad37 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8694e2d phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xe86d8a9f __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe87885e8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe884e36d nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe891cdea thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe8a52458 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0xe8ba7d6a ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe8cbeee4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xe8d117cb xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xe9059f53 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe90635a8 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe91129dd ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe915f582 cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0xe916f69c udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe918e3ec xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9237358 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe934b814 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0xe936daea dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe944352e usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe9444f99 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe9547016 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9741195 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xe9752d3f bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xe9822562 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xe98c46d1 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xe9a51f8b tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9b37d52 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe9d01f7a devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d2209b trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe9e3be36 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe9ec345d extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe9f53a81 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0xea043dcd security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xea06d44a iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea147175 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1d2155 md_run +EXPORT_SYMBOL_GPL vmlinux 0xea330fa9 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xea44737b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xea4983c9 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xea49eaac pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea870a03 setfl +EXPORT_SYMBOL_GPL vmlinux 0xea98b4ce vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xeabc5b39 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xeac6edf1 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeadac772 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xeadaced6 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaeb40fc rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb07964c usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xeb10ccd6 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb261f15 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb56a1a7 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb7ed106 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xeb8d2d04 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xeb8edc8c virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xeb95c478 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9dd7f0 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xebaa3d30 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xebba0fe4 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd0c565 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebddae9a power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xec0c8906 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xec358ffb probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0xec3b0a36 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xec409d1f nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0xec51ae8d __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xec5a877f dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec69072c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xec708493 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xec719819 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec82f218 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xec84e27e of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xec93f084 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xec9afcdf blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xecae07a6 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xecaef6dd dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xecb55a0e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0xecbdf54f blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xecd6cb92 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xece6b129 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0xecf10ce6 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xecf21510 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xecf8ab46 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xed0b01bc iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xed0b7356 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xed145169 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xed15386a __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xed1e65ec usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xed67b5f9 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xed6f889d ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xed72a010 of_css +EXPORT_SYMBOL_GPL vmlinux 0xed75f994 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed8935e5 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xed8b511f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xed8bbe99 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xed9562ab clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xedab190c usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xedac4d1b gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xedbad07d device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xedd2b7e0 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xede3da8e of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xede504c4 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xedf0d2d9 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xee20a1f4 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee51824e xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0xee6b4c12 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee73e03c blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xeead621f cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xeebced33 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xeed5383c crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xeedbfaa5 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xeedd51c0 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee6e332 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xef058510 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xef213b33 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef3a3291 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xef3eba95 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef513e87 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xef51db20 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xef690adc devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6c4dd2 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xef7d1c37 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef8a9b6e exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xef97b9fa lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xef9d626f ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa3e16c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xefa5c5e2 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xefc4cb49 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xefc7806c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xefd578c7 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xefd7d2eb of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xefe43e86 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefec3944 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xeffb4115 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf001d135 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xf005f582 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf0079cb3 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf00bec9d ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xf00c04c1 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xf0202ae3 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf0209525 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xf02448a6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xf02753a8 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf032a00a power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf054143e ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf062fa5c irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xf0643953 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf06ee302 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf082111a nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf0822e7a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf0954d57 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf0ad46af dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf0b38a07 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf0c808f3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf0cf94b8 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xf0d45b60 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf0e394c2 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xf0e8a643 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf0f2a971 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf0fba6df inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf0fbd448 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xf10dae28 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf10dd2d1 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf127ca50 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xf12849be led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf13f08ed irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xf14003d9 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xf1481bef devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL vmlinux 0xf17c69cd attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf195937a tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xf196aee5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf1aa7967 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf1b04062 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c3a9d6 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1c3b1c2 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf1dbdc36 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xf1f52d46 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0xf20d1cfe sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf214f45b __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf223bf71 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf22555a1 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf23a7d6d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xf243b6ca sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xf2486751 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf250d740 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf25e3061 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf279d623 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xf29319b6 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2a1defd of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xf2a7a228 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xf2b56f9a __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf2c50b28 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf2d6b0ff sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xf2e1ea12 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xf2e6defa ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf2ea362f of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xf2ed108b fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf2facca3 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf2fc5469 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xf2fd68a1 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30bd2ee devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31cb72b of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33e85b8 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf3428766 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xf35bd415 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xf35d4c1b gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf362549c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xf36e9601 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf372278d md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf3743a7e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xf37a674f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39b2bdc arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf3aaf87d usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf3ab462a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf3b22c57 edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3d0ecb3 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3db6c6c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ddb pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xf3e6d968 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf3ee3011 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3f1aafb sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xf411749f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf41489d4 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xf4167157 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf41b5b75 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf445e73e usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf44e3ebe pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xf460887d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf46a830d l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf4764198 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xf47f3e5c platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf482faf5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xf48a2082 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf49291c2 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xf49a542f __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf49bfcf5 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf4a42677 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf4ae0f10 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b24a01 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf52196c7 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xf54a05bf snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c188f pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56408de nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0xf57b4163 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5844c48 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf585272d genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xf58e10b0 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf5901e1c fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5af38bd cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xf5b12882 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf5b13670 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5e398ca sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf61118f6 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xf6149fa9 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf6276fe4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf62a516b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xf631b062 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xf63d8653 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf64c3be5 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf658789b driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6686729 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf66af105 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf678073c dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xf67fb15a get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xf688a643 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xf6a33983 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xf6bd4b7c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf6c80fd8 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dbd8 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e07d14 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xf6e6d5e8 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf70376e2 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf736bd4c __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xf736cdb4 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xf7405673 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xf743906e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf7509af4 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xf764bbae xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0xf76569fc devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf76a2931 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf76a9fd3 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7804c0c usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf7899bad pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7ce2580 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xf7f15ba0 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf801dc32 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf832a4a2 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xf83409d8 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xf83f6137 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xf83f6602 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8427e92 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xf84ee99f snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0xf85d3287 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf86a4364 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf86a7ce4 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf8797405 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8881caf gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf8918cfa ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf896ce52 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xf8a820fe devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf8b2997c wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf8c4c68b pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf8c81181 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xf8e20911 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xf8e53837 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f3f892 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xf901b87b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf907e02c pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf915dde2 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9404ab7 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9591484 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xf967b209 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf972227c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xf9917746 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ab6ce1 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xf9cdd7a2 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xf9d78cb1 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xf9e76eaf iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0xfa044972 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xfa0c950a of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa233968 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xfa374a52 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xfa395681 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xfa5ef1d4 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa600fd4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6e6753 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0xfa707b1c fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xfa766cf4 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xfa9f408e ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xfaa9313f crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfaaa62cf pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xfabf809e iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xfad2ea4f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xfad34629 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xfad59595 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae7c972 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xfaef0144 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfafd3d61 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb111408 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xfb124948 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfb22a7e6 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb437ae3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xfb453336 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb4550f8 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfb58134b xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xfb6a2a7e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xfb6ca8e4 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last +EXPORT_SYMBOL_GPL vmlinux 0xfb7a7fda akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfb7ca60e tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfb843a97 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xfb8866dd tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb8cd4bc __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xfba42757 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfba4e661 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfba6a9d5 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xfbb4c54b edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfbb6701e clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbd4adc pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xfbe2b6ba arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xfbfb512c wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc085787 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1d5c15 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfc1d9593 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xfc2350c0 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xfc297f7e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xfc2f6576 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfc3f1218 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0xfc599a0e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xfc6278ef serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc7177a5 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc7c7a86 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfc8072e7 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfc83946d fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xfc874cc2 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xfc904632 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfc94a58d uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfcb3783b thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcb3990f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfcb866a6 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xfcc17119 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xfccb33a9 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfcd22ec6 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfcd291c2 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfcea1ed5 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfd040770 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfd0ff2eb pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd14f8bd mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xfd18157a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xfd20e079 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0xfd31a7dc devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfd4177ff of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xfd476e90 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xfd4ee9fa spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xfd50e00b irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfd70317e dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xfd7815b9 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfd7947c6 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xfd839204 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xfd9df47a snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xfdb0682c fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfdbbc830 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdf13f21 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfe02baf3 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xfe089f73 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe0c4d8f device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xfe1eb850 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe29b8e1 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xfe370fc3 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe3e01e2 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe48eecb __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xfe506ce9 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xfe53b419 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfe735d84 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfe75b437 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xfe89e36d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xfe957a6a mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9ae2b4 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xfea662b1 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xfea7693d dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xfec5323e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xfec84fc3 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedabbb0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfee03c9b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfef18891 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xfef20986 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfef67ace btree_init +EXPORT_SYMBOL_GPL vmlinux 0xff047704 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1ef746 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xff24ce27 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff41d67a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff50be3b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xff55d7d4 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff628e3b ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xff7020a5 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xff7672fe sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xff92ba19 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xffa1a931 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb85504 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0xffc51cd0 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xffd771a3 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xffdd7782 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xffe5687d crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xffe89580 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xffea5901 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfff3eb07 mpc8xxx_spi_probe +USB_STORAGE EXPORT_SYMBOL_GPL 0x0b045691 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x18eb0761 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 0x1e965450 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x21c65b0c usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24e62a47 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4618acf0 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x758501bf usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x75b9e71b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a1b2991 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x82e74f15 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x83761330 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x89b47673 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x985ea209 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb5b2f223 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbaf2a879 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbf6ad06d usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc10ece6c usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcdd1e976 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xceaeef5c usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd4ddda87 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdce92580 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdd12d5bd usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe20344c2 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xedd8086f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic-lpae +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic-lpae @@ -0,0 +1,23021 @@ +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x2fbd8b3e crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xe7602d49 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x5c917eea crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xa39ebc1a crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xb718564f crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xccf6730f crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xe05bb058 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xfb7396c5 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x63d78133 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x914f5179 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x9c06920a crypto_sha3_update +EXPORT_SYMBOL crypto/sm3_generic 0x95a5ff51 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x97deb04c crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x57e711a4 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xd15f24fd bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xfaa6d6bc 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 0x0e673902 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x372b5bd8 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4857914e paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x585c1bcf pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5bb207f0 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x64fc5cec pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x6ed1602b pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xa4d85abc pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa65f6bb3 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcab09ba1 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xe3e2c027 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xfb4ee468 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x80a01794 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb8d851a4 rsi_bt_ops +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 0x0e40e452 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1ffee546 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2c1fcd02 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0352a41 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7d1a0c99 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe264d1e7 kcs_bmc_alloc +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x06e109ef st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x57d4878b st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5a1ba3c8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e64ece1 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x27408444 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8df8b190 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe0442604 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x06cf36d4 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xac7a2341 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd3548f80 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dec75e fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0984428c fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x19851e0a fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25ae3cfd fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2dd980b0 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34d76c3c fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dd20ec8 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45aff400 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x643ed2e5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6bac7de4 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c5cc4bd fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d746102 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x819e2357 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x94942607 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4dbb557 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9b64ba4 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc29f71fb fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8a479db fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf0ffb20 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd062b245 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd43ba663 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4e8ac47 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd95b8b2b fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0f188e4 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf41babb7 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff07024a fw_iso_resource_manage +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0041371a drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a35193 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0120097b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ec5ec9 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05239659 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x052c0435 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07389618 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075f2fd5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0769d046 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07958914 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c5594b drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0808ca5c drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ac9829 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c3aec5 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09095724 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bafba2a drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc853c3 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d24776a drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e984fee drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec32ad9 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec92d6e drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f16d320 drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6f3499 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1043958b drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ddb1ae drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10fbac78 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110c44ab drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11107b12 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d11400 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14bc86b6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15438657 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x156fe8c5 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1659ae16 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c67cbe drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a935711 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5dc4e5 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5f8efb drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c46d7b4 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c849511 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca95433 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd4129f drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1a46b9 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e40c1ff drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f63b9e0 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2014f17f drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2177b2dc drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d39f63 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231dbb89 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x233fe171 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2356757a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24011f29 drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24584f88 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26050d23 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262b3645 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x266a1a48 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271f2139 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278d89b0 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c91321 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d23c3f drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2803079a drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29979fbd drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d38d37 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af8189c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3c9057 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b460113 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8f8387 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc1c9bf drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2daeb43d drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebed2f5 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7abf1d drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3096c30b drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a1f057 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b91b28 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33083614 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x334e4f47 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3408de05 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x342bacc3 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346068d7 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36651f45 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369186d2 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e84351 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388e4d8f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f0f131 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x396fc911 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b13aaf drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af90b1f drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c0ffe8d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccefdc6 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb32af9 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee8b325 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f7d363c drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc124c2 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc309e8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42134bda drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4249758b of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d508e4 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44851e39 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c1f212 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c8acab drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453a84e9 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469d3660 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4702d862 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f264d2 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49027734 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4957e610 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b484c0d drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcb7654 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c7cfdb5 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d515db2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da50a30 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e56c2f3 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb8ab0d drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5025d121 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a9ffa6 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f99873 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5190f9fc drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b4ccf9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5250c87f drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ee3a39 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ca9261 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e27bcd drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f1fc1f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5772e55f drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a20d2d0 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0acc3b drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3bef41 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b521588 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b95fff2 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3b5d1b drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca2942 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd99d97 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb4d710 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x609e0e19 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622d5e07 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65acc7a0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x663340dd drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x664d0433 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x666e981c drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c16f25 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x670fe59e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671f090b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67755eae drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67dbd604 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6887e972 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x690da7a5 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69cbd1a4 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a482566 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aec2aa7 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c489b04 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e34a9b4 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e4a937f drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea118f1 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4af4fd drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6faf7f39 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70277206 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706d6f40 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x708447a3 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7254c19f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729ec67b drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72cb84ab drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73546000 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ca738e drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74bdbf6b drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75718bb8 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759e2406 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77bcf4ca drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e3926b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79151e17 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x791703ef drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac90ab4 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af4df7f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afa57f1 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bbe5414 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8c2aa2 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8087fb12 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x816e0240 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829066e9 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f0a649 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x850ecff7 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853ca7ca drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85625151 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a747d5 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b434b7 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87abcc71 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bd05b3 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x895ab785 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a427ad2 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb7d247 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce75928 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2c880b drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d7f3619 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1cc686 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fd7ecb6 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fdb2359 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9064c328 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90909015 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x928aea3c drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92afd934 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9382ba2e drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95fb1996 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x963e2f11 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9692c7f1 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98518be2 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x985c4cac drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986be27a drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ff5f90 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e46059 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ff9cec drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b46c7d1 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6ab6f0 drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b97cc17 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bce4acb drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d56877d drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df8a2f4 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e3bc7b3 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e475cbe drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa12acd71 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a25322 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2dd5e9e drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa32176cc drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3caef06 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f6c1f0 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f5415a drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6750973 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67a2293 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7391bbe drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8155812 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f08dfd drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa91fd2bb drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9df68c4 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa688cc3 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb1e22 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace752aa drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae4f783c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae59f46c drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedbe590 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf62592f drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb09f7bb9 drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24e08f7 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2bdce31 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f9df31 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb360bf2b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb429d171 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb595296d drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f7f00a drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63dbf98 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb673f915 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b36f40 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b9d3d4 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87d189e drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d17748 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb971c7dd drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5b52d9 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb999caa drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1550c3 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03d4e83 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc08157c1 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0880e89 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ee040f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1aa7b49 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc38c6957 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b9df02 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bf4345 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc411325c drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42d2c14 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4cb111b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50534bb drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58283f6 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5bfc848 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a17f9e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c42bcf drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc83c0c69 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9aac471 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb05bc0f drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbbe4e6b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc89fccb drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8fa3d2 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd738139 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd875e90 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde6d55a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdeef14a drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce400b8f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6b8be9 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef2bdd1 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef5c32b drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf55a61c drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcfd56d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfea65b1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03e6fbb drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd10d2465 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17b7103 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4740c81 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d2bf7c drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63c5448 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd67adf34 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6c4368d drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd788e073 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ee9751 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bcf7d0 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e62f99 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1289a2 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbdb3c22 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc4961f1 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca18f9f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd5498a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdedc7a77 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05ac2d5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06d2977 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe075d0bc drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0851941 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34c8e72 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44884b8 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e93fc7 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5244142 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59f33c4 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66f5562 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7013b78 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83a8862 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b59d2e drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f683f4 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94e8ecb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea69bf44 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb55075c drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf70b57 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec2feeed drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec4a4d87 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec65d7a0 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec750efe drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec92465e drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed5c6998 drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedbda8c7 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee34a151 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef000896 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff158cf drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10d6cc4 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf148e39d drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1eca6ca drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf20b2d79 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf26a1dcd drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3193e63 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf395fa6f drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3cabf6c drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c863e9 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f11bbb drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e51d73 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a7d9f1 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8da2975 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf923494d drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1edca5 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc02a0c6 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd7b6a03 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9880f4 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde45e00 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe0451e7 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe9e0f7f drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfedb27ea drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff8eab67 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff3fac5 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00689270 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x016a0b86 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01ba950e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02d6a417 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0319a8eb drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03aa01a9 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03db5145 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f330c6 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04f027f3 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x059232fc drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06603415 drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06d393d4 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x071dd303 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e8f2af drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093d39aa drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c19f06 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eacce79 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1126bbbf drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1165b9ec drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11bc4fdc drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12094bb4 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12b6f956 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13247ff6 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x142414d9 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x170baaa6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18585962 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x192c7949 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1946f0be drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aac2a3e drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b7ba83f drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba8f760 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cba8940 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ccce17a drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cf7ebd3 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fa4f101 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd2935e drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x201b20b2 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d2f2ec drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2333d5b7 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x235c3d11 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2424e03f drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x259f9fb0 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2665c314 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a706b2 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x270ae653 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27851d98 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x279099d0 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29754649 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a0ecd4f drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d310f47 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d7dc464 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e177619 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x300f22e6 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f174d2 drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3269b22e drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x328648d4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x336d8b9c drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x339c2d06 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3732fbc5 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x387255b2 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x399d8803 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39de681d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba083bc drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bf96467 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d58764a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fda5a49 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42feb339 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x432b6fbd drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45d4e563 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469d1a0e drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46cf617f __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f1db9d drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af99486 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6ffdcc drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd5c622 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4de974fb drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4df056cf __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e599590 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e7229b2 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa3b09c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fe278c4 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5166d0b7 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5362883c drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538164f8 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53fb5636 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a5b915 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1cf9dd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8d7d7a drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d1f68b7 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eb9fad4 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x603bb1e1 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62e5897c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64537043 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68bc42bc drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c836216 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6da53328 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e2a7434 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f950175 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff83942 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721ddb00 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72806628 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73a64dd2 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7515d6c3 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x762cfd8c drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768d043e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77294dad drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6b1afa drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d01fba0 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d2d6e84 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7db2c16e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80341878 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80cd94fe drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8103d205 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8239e52a drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8358d8a7 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dec4d drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a51f34f drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e510607 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944d626c drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9840d330 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b59c21b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bacd546 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e060b6c drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f407bf8 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f5a7f6a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0029ed3 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa339d94a drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa345471d drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa648f605 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa782cc1e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ba90df __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91c4dcc drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa932e5bb drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb1b8ff drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae1a36de drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0500a1a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb160ccb8 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb23889c1 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb29ca0ae drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3319516 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b9ac2b drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb403a34c drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5e23c02 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb331aeb drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc3cbf7a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd822cc drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbea205ce drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc07b5181 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc18d5a92 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c583b4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2854434 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7144d0e drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca645a93 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdc85473 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcee8305a drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3ef64e drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0f36d0d drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd572bb51 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6077896 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6cd6111 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7450273 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda4cf0d1 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda8636dd drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcb3c7df drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcdf6fa6 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd8d94bd drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde045b5f drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe11a9d29 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe17799c8 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1aca240 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1ff0344 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5bf8963 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f2633a drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7460b6e drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7aac3c7 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea54ce93 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed29603f drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4190c2 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7a368d drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee32badd drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf042e337 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2811d38 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf368aadf drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4eee621 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5179f87 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bac412 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8767a7a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88a8f9e drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d411cc drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf951c073 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa010fae __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbd21d2c drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc296712 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1f46ab drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed9ad18 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00ec89ff mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x023448db mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0cdbc04e mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x115641bf mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36dfb146 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50944fc4 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x87c3b353 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa323346d mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba00b242 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbd7db837 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc1d5e01a mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc8c7934e mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcf5ec2e3 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe14da139 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7d05f73 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7e9eff5 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfe23a1be mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff9431bb mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0208bc7d drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d2204c8 drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x21c45326 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x26df50ab drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2b7a9179 drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a8fa786 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f92a31a drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x56680063 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c2988bf drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6e9e8f23 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x78c9df93 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7b863846 drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x89f05a48 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91d18408 drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9b426b58 drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb78c1ebb drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb98a00d5 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc26ef40d drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe8c145e6 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9f64ddb drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x31c8a9c1 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22d53e6b drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2bbf1151 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x346ac6c6 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36efa42b drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3af6d812 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x558a46a4 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x77f41f5c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f71de8d drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x903036b2 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93a7006b drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96c244cb drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb07e6bbf drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8ed9118 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbe7f5bae drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc53c72ed drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcada5d79 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd8d35cc4 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdcf772c5 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe817c65e drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00539d19 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00a47922 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0347bdbc ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0535c7ca ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08744d37 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b627df1 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1392fc5d ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x153c9df2 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cf211ef ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2139c946 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21e069dd ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2370e636 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24524caf ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x253749e4 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3393def7 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c46cb86 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c80207a ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40cba3c4 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x458e3951 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c84ccce ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d316605 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f4bdfe3 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dc932b7 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x689c4a41 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0e550f ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x730a167a ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bd64808 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d361f92 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86ac2a50 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86e1e6f4 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87599004 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b116060 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fa16ad1 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91341aad ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9192a21b ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9acf27e5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e9edf70 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0dae732 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5999a4e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac1b740e ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb35cee0c ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb985a159 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9909489 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba4b3312 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdd3149a ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc67ebc31 ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7d1cbb7 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce13c138 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0f90d52 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3b6f481 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7982883 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd86cfdbc ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd6c3366 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfb527d4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe23c0e35 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe51ff319 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8cc43c7 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf08bca71 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf275011b ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc45970b ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd5fbbfe ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdffa381 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffcfe4c8 ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/hid/hid 0xcb1a8867 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x34257f35 sch56xx_watchdog_unregister +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 0xb2d3e751 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0f9796e5 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9eff70ed i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc5e0aa57 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x31225c7a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x77977a9d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9dec03bb amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x05588a15 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x25de4c6f kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa2782b6e kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x13ce86e7 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1e48498d mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x22c5363b mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d50629e mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x51ba8aa8 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6edfd6ca mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f2fb7b7 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a694ea9 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93971b2f mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x97ad4f34 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c034bad mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa4e2cfc4 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb4435378 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd2266aa3 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe529974c mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf9bfe11f mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5d545fb0 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd5a80bd9 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe95c730c st_accel_get_settings +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd1121d43 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd39afd95 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x43d55ef1 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x43f37690 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5b8300e3 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb813cc4f iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x1b465b81 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x0fc3250a hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x48192007 hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4fceb796 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6795e934 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6e996fbf hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x9a53b165 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa77ba6b1 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xd17b05a3 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdbd84428 hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe7420cef hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x15a378ab hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6a01fc8d hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x79bd9ff4 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xaea3b2a9 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x27b9eb3f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d65a869 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3eae1bf2 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6bdb9dc7 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x807b6099 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8d8a8ac5 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9170b54a ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd6a258eb ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdde73395 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x17b23521 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x78538ee1 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7863e2fd ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc55ca85b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xea8c565c ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x429eca2f ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x42af9171 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x42e24179 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23b5fc15 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x361dd055 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55d93a6d st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x567d90bf st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x67ccad2e st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8aba5ed2 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x988578b9 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9dca6243 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa199f404 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa48b675f st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa99c2886 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xac189b3f st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd39ffb6 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2cb540d st_sensors_of_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb53b979 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe93e1459 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf850c45a st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe0d9484 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x18138204 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xbc283251 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x15ddb8b5 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x8ce5e29b mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe5f0cb40 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd45f714e st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd77921e3 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfa03bba8 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb1af6fcf hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xfbccd642 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x2c856db0 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xd0a32d8b adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x636e0154 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x20002be6 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3dcb53c5 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x1cc2efab iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x2a9d3bbc __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2f9e327e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x554427f9 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x63dbea72 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x6941180e iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x6beac658 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x6dd24ac9 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x719b163b iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7cf8abcc iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7eb79fe7 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x8e64d6d5 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x9306d1c6 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xbb72bdfb iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xc0f30d14 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xcc222ba7 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd6f6f782 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xd8f9a9dc iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdd45a539 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe03208c1 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xea282b52 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xf593b238 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xf9729057 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x2b35cfe2 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x04f46725 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x215711b1 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x34f4c613 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa49e49d9 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x02ea2fb1 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x67a6cf57 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x73e09fa7 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7fe4d1a1 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x61b4ba28 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xae4717f0 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9865c0e4 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xae2d2a17 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x48ad2e6b bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x50382a90 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xd8b20c48 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xdb57a9f8 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x34dff863 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3979a5ae hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x79ecc8d1 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe0e1e10a hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x29500552 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6bf77009 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbaf447f9 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3417dac6 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7a87db08 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x8e831442 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd7392139 bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xde9107a4 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xda757d50 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xed93dfa7 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x34e47573 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd7ac28f9 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xef385942 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0e4b4fa4 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x146e4035 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x214f57e2 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24823ebd ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2eb2959e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34d781ef ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4497e575 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x54c8e30b ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x588e86a8 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f080d23 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x84d5dee4 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c097059 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9485dd1c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97758c1d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99c11176 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f9b5f53 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc57ca838 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf06cc891 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04050e0f rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04e30bbb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05492935 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05663b0b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05d753c6 rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0898f3e4 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a2f8a17 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab60044 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c2221aa ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ce049d9 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3fd59e rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e333d6 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112f6304 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x135112ef roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14edc836 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1501558c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15eb73a3 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x191bfca5 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a9c8362 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb967a6 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c6d9c0a ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dcd74dd __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1efadb43 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2141c9d2 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2321c770 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25262e6b ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28336ddd ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb2d2f6 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e9a2153 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe768d0 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x307342ac ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30e55352 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32b7080e ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3374c651 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35ab0929 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x373494b6 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3925aaa0 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39b01d99 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a1af8ab ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a6fadfc ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c3924a6 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f98a685 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff767af rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4018fe0c ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41fdbb00 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43eec19c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x444a8d29 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46df4711 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4760ac93 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x493228ca rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x497b7d1b __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b2acc6f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b63eaf6 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c2c5b1e ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce06cda rdma_query_ah +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 0x4ea4a3f3 ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f15d168 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50d3587f rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ac06e3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x543b65b6 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x546eab88 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f16079 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57674f20 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59e347c3 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a50de3f ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c7eb700 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0328b5 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x610484b6 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x612a3c95 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6170307c ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63b65aa0 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65e6c302 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67459657 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6836eaba ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6870764c ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69d499ff ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be8dfa0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ccb67d6 rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d6853d3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f54f6e0 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71e00894 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f29b09 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f88bfe rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7882d73b ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ec74c7 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79376d10 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f18f521 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84d69fd4 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8595dc76 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c7d17b ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881ba75a ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89448a7d ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3b5dd8 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a8796ea rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e40d491 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e87ce67 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1d1e7e ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90df850e ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94507adc ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x951a6b29 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956fdad1 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a0b73e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a53e339 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a957b8b rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c14fa5f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea0d205 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fd701cb ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0d8fd34 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2583056 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa38ec6d5 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ba298a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4389297 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5dc2bc2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa29fcae ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac09d9aa ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadfee20a ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae266de0 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf2953bd rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf2c2336 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb03360fb rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0ab7af8 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c5923c ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3f3b0d9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb49dea6f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75c8db7 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb89feb7b ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94334d9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab84deb rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb659d8d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb66898e rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc170680 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd255662 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee4d613 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0b6c3bb ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1b2967b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1d7b718 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc25e2f5f ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2714c47 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc27473a3 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b33ba8 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc583f32b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc60e4715 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc638f59a __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66009a7 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9bbce4a rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1d56cd rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3a683c ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe0fd9e rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe72096 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4772a67 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4fc7994 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd84e9acb ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9c22984 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb6e5227 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc2eb241 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd4a5795 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdff1cd45 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07bcb1c ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1d5e027 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3b07327 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3fcc475 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f312e8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7596b4f ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7744499 ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8036c69 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe93e5c1f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae8fa86 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeafe0948 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec1d9720 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee599abd ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef67b53c ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14224df rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf272fa54 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b98585 __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6be07c0 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf71e314d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7c1c4bb ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf822b856 ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaa4bfe4 ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb8a43ea rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd994143 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe331bac rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeace205 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8bcdcd ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffaef32a rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09db5903 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e653734 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ee370d4 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a77e94a ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38ad7887 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49e573f0 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5076bb4f uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x524bdd91 uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58fc3359 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5db0d436 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61ec8af4 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x680b1691 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x752b6cc8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8220a89f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85a6840c ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a19f765 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98249623 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9fe04430 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8f8946e ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadac48ee ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0208beb ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7fb2ec0 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc017c586 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc37038ed _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf5b8d47 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd33149bb ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8efc810 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd41306d ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe51ec6d1 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5f3e9c0 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1111edf2 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19845901 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x57418b53 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b4dab77 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8155fe0f iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8af7c129 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xde7c5561 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3a6f0b5 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x024a6bde rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02752108 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02f60685 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b725e69 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e0e52f7 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1859cadf rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a93b2f5 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4632f288 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b28d40f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5067273e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x681fe06a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e09dabf rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e417352 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x773c31d4 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x796a618f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c670374 __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91fdd077 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9707ee19 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e171746 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9f3f2119 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1ea6d3f rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac62d6a7 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xafd11800 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc821313b rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1d3d1c4 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf214c1b7 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf28b9a9b rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6d90194 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf89e537d rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfba277cd rdma_read_gids +EXPORT_SYMBOL drivers/input/gameport/gameport 0x08742c38 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1aeac941 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x48a144bb gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x763821d8 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7bf7e7b8 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x86b6e539 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8e35397b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x93f83d2e gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9d1fbc24 gameport_close +EXPORT_SYMBOL drivers/input/input-polldev 0x69711911 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7df58cae devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa2e70598 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xba4e9a9d input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf9b0a6ca input_unregister_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x18896f7c iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x23dd7540 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa4cac332 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xebac7af9 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9586b6b2 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa6277b31 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xcedf7d86 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xdc0dd8da cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x4115989d rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0a795763 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x14e796b4 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7beb4eac sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x85c35412 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf56ded3d sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5ddff11b ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd22edb17 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x03c414c2 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3f53bde8 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x589e5616 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5c943c8f capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7818bdfb capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x989febf0 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd4e1fc98 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8a5e150 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe02bc454 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf392fd26 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +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 0x8db2a2b7 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdc8f3940 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdf2869e0 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfe156b81 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x28285baa mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x8172edda mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x208f4b7b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25b781e1 mISDN_initdchannel +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 0x438469e5 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4390ad9d recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x461cc851 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46fa9064 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d7a2029 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f55fc48 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x646567ac get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x746536b3 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90eb4088 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94806a55 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98cc7f2f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f0f2838 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa757abca mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb07110af mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca41c590 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1ae6f4d mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3e9961a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd52969b2 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xddbda8d7 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe29b08ba recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc2b8265 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x59086937 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x877375f0 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x38284309 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe0ec6e65 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xee0bbde5 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/bcache/bcache 0x0d8904a0 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x34c333b4 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x611da4ca bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7782e88f __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7e23be52 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x8efff430 bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9ac7c147 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xadb6b25e closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xaf788fbb bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc140a4f7 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2e8205f bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc4022eb3 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc6a36e24 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd2381a89 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd47b1f8e closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd9e35cf8 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3e5dad3 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfa93de35 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/dm-log 0x173675bb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x1f471199 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x90859d3b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xcd7c61e6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1be4a333 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5b017ca9 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9d6f94c4 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc860be48 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd312fda2 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xed2f3993 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x2144aed2 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x51ea323e raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00101230 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0401e5d9 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0b1ae716 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e029699 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x42cd81ad flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b67a67d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x71d7c26d flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fc2c5b5 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8702ec46 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc3202a8 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd125de35 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd999703a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeda46e6d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x035ac0e8 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x066824ad cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x29a34308 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x625aa6d1 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x08eb87d1 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x91314bac tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x67e0f2e5 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x88b31b0d vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x354185ea vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x915d931d vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9da66426 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xca888101 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd5cebd64 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdabc0724 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x8908de0d vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x006d6880 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02a23331 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f5a4e66 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21381c3b dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2adeff43 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34c90818 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x39f37656 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a2d17ce dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c51bb01 dvb_register_device +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 0x445477cf dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4738b191 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4be5c646 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f167ead dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x506e9340 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x61022f98 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fd0d718 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b334d3c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x843a8b49 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e65a622 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8f435984 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3a1fc7c dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8a76c64 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5e3050e dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbab637fb dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb81b4ef dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0bb4a3b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdafc31c5 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe895a2fc dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedda2b2f dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfcd0c59d dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x31c50d6e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa1efd6b5 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1ed5335d au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x29fbbe5a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3c2a3846 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6a614af7 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x702d094f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9bcf91ee au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa4e656be au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xad1992a9 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdebaecf4 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x85d47875 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x8f216b32 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x99e16eb6 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xb76cb2ce cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x05d858e2 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5716c2c0 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc87c0119 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x46c52933 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xf1853e79 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1f1881e4 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x811abfcb cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf5ead68a cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x40440524 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xee988540 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x48bdd4df cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6be45a9c dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7061877e dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x709b8708 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x982d936d dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa95d0c76 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x069270e9 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x164c41e4 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1ab4ab56 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20089fab dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5f70873c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ebf35e1 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71f1f86e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x74b36810 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x817eb961 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94f29eca dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb8fda926 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8083e39 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca43623a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd08a2b55 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8443092 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xe257910a dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x13679b23 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x29ae9a66 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x64d5aa15 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa6177631 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaeb40595 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd7fd4c68 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0e222cab dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1472cdc0 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7a633d03 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x897e69c0 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x02858fa4 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x8ce42853 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x070d3932 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x794eeeb7 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x79a46c29 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7de16522 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8129f231 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9840b179 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xba9d532e dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbf9ecb89 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xddd1253f dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe04dbac2 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe5e6952b dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf2c07d20 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfa6992d0 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1d050f2b dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2919be39 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x79f94de3 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc31b37a8 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc6c38790 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x76c0ce46 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x961d29d7 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x7fbc0674 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe87d70c9 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2736a8b8 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5443324c dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc8bd884e dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xff8d1624 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xc631dad1 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x507157d1 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xac8f0d78 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x96d50fa2 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x3ddfad7f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xed9fbb0f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x6d94d15d isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xe1cca539 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x31478479 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xb6c14968 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x48bd8e28 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x33e7b3af lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf5361da0 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x3293615d lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xe965c14d lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa8037f29 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xfbb64ca5 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xe668939e lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6fa7780e lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x99a51b6b lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x8e73b3b5 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x54466945 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xffc5a8c6 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x1e9a41b7 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7d84f0ad mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xf18a17f3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe0fb4261 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xea1d6e7f mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x0ff9572e nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x428edb13 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb01c180c or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x47f777f0 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xb735b1b6 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc20b30cd s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4c1e5d63 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xbbb337d9 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x6a5a6a54 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x153fd501 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x6f370dd5 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x76c48bcd sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6c21d9a0 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xa2b49c06 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x13182f35 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xdf91725c stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x9198196d stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x239fa211 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x496b7930 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1eb88f38 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x20dfa4e9 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc6387eab stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x40580da3 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xc7f940b0 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x584ae72b stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xb79c7045 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x7559d351 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x34e8f5e7 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6b5d07f1 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd9ead63c tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xfd9eded3 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xae7ad5cc tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x28b755ec tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x371082bb tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xcb19496f tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2bd42d51 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xcc6edcae ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2fd9fef4 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa01b30b3 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xba918b6a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x48d72084 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4927db94 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x87501759 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd04929de zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xc4e50f18 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0a638af0 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x11624ca1 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5c2f417b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x700e67bb flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x957f868d flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb9b86a0f flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdadd7679 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3474d83d bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb0b32e93 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc622ae91 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf780ac93 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x30f31179 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8a05d5cc bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb72fa862 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x02997b2f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x09beac7b rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x142bf471 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x156bbc07 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2dfafee9 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37a0a6c6 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9216035b dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9af8bf0c dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbf543630 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xe1e938d4 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1e36240b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x30252c8d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x94e41f31 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf4928381 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfe9fc4ed cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x59a5ad6d 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 0x16024e39 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2636007a cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x675acf55 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x74a9ec81 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x81312374 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb8f35b24 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6baa1de cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x62710088 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc87065b6 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x044cd27d cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5181b607 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa8706a57 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe8b67fde cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x04d99c30 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x18ce18a4 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2dbb3d06 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x66b4e072 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7a11b83c cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8799ba2c cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc504dfe2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x057d0765 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0dd97d74 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17e38741 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x511e17a6 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53c3bcff 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 0x7880af6e cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fdd2eb1 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89c0831c cx88_core_irq +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 0x91d82faf cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x923e0ccb cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93f04c6d cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb2a4b694 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb321ce6c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb3f6ae4 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf170088 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4f68c24 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe516228d cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe6fca6af cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe81f5a70 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf29298e2 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x00e99a4a ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x096a73ec ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10d275e6 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x211b89e6 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x33117708 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5692e6d9 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x715cf6b5 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9df4dfea ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa0b938e3 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabe65cba ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc52a75eb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xccd6fc90 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd960853f ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd9f0a05 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdfae7d71 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe4724dce ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe9f435d7 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 0x1423bf88 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2ab84f4a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2acbb65f saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x45f438aa saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7d7368bc saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x843a5539 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93400e82 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbfdb4f8d saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6e9fe4c saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xde39c6f2 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf9631cae saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfcd528bd saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xcc659d68 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x0ec44a90 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xa94ed1be csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xaaa0ddaa csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xd65b6335 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x26941dc7 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x36bb9ff1 sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x5b65793d sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x6bc064d1 sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xb308c810 sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0b913bf3 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x19163d91 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ee5d41c vpdma_add_in_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3269c1e2 vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x32a33201 vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x35025c58 vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3b3f4afb vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x414e92be vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x4392312e vpdma_map_desc_buf +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 0x519b5204 vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x697fa947 vpdma_submit_descs +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 0x752488ff vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7b000af6 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x98c3e90c vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9de56bd8 vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9ece601a vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9f175d7a vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb817ffe9 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd1512474 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd68dc6d9 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdb840242 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe116e92c vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe1656460 vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xff1ef3fc vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/radio/tea575x 0x392601fe snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6b7ee351 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a1d43a5 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb2535f88 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbe659938 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc0fce334 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xea3617e1 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2da0f88f ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb90ce7bb ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xbbad237a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa3e3e00d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1558217c fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x41c124aa fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb9d52c97 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x63afa60c max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb4b1ccda mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdc72c68a mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x917c21be mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa61ab32a mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xc96ec22f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xec479003 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5796f33d tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x8931d711 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x4e8ac6df xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xe5a1f1b8 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa6709031 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcc0f4ff8 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x39ff5482 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4d7d05c8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x50af631b dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x61ad36a3 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7b0e888b dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x80e8ae47 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa80e1b3d dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb5f1fd2f dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeb343057 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0a05f433 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6c51571c dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x78c31c71 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa1f62f32 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa4334f95 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb7f31d6a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xef6f173f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x48bf65e2 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0ed81739 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x281ed2af dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56fbf764 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6c6620b2 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9cae3387 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9d769384 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc47081bf dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xca043983 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc95d0f2 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x0484877d dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc4f5ca96 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x53b0e600 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb77f6295 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0593adeb go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1c3e1814 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x36bc2087 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x57a086ab go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x996df525 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc01ce64b go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd266b566 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf148df41 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf37998e2 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0ecb71f4 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x166fa82b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x26540888 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2e2b5c9d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x67797353 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8597ae86 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8f16d0ec gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x95decb5e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1b0a8739 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2fc25c09 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x53b52de6 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8921fa39 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa2e6fbf3 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x035aca99 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 0x5bc024aa v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8fc890a4 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0139ad5d v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02320b75 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0350b42d v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x041432d8 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14584e52 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15eb0891 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20abe866 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2154f8a3 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27141f88 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ba45b1c __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3114ccaa v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3288dd7e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x366137b0 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37015eab v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37375362 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40f04aab v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4358097f __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5583709b v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b11b66b v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ce4667d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60d1c248 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61bf8454 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68d2189e v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ccd43d2 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70f9abec v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72c790e3 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76044bd9 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77883ab6 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x872c6949 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ef6601f v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x936d8b22 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x983e8cb3 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99c192ab v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c5777f6 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ccd8118 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9eeacc54 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1f2c664 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa32db300 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6b7d54a v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb08e9b01 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3dc1da4 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4b2abb8 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7307fc1 video_devdata +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 0xbe2a7ef4 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1489649 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc699b305 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc78ba5a5 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce9db459 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf470324 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4973b5c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd80b9471 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb84b91c v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf351b7b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0631360 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe45e13b7 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4d1b72a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe97706d8 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9a1a418 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9d6712d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2992aab v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3a9173f v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf76a2893 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb30725b v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff80d6bc v4l2_async_notifier_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37bf3382 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x46154492 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50548072 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6de3c759 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6fd0783b memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8547a055 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8f945aa6 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x945eb46d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa8d3b4f7 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaae96869 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8d3b930 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf615ffd0 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1702d0f4 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1eb9162f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fae39f0 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x356ccaed mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x378620b1 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39206301 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39abdef9 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ea37271 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46cc1b9b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49abef33 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b66adbf mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e048e83 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50eab4b5 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x515805ff mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d8ca540 mpt_free_fw_memory +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 0x7ef2b4f4 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80e8f7b7 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f779ba8 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a764b4f mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa027c4a4 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf1f881f mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb82c3459 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba2c203c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc419ad01 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd06b390 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd180e2c4 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd372e470 mpt_get_msg_frame +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 0xec83c493 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4783f25 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02804759 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x077ea87f mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0aebd6ab mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x329e7f6e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x463ca6ef mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ad1d4af mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cc75669 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5eb741ec mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ec7460b mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63083b03 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x674a3540 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8138fd42 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86822463 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b491afe mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacb2daca mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae5b5638 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd877b95 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc025d8e9 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc45ee2d3 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd1602ce mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd4ccead mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfc1bc17 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2fbdd59 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6145a7d mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8d62157 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9e41076 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfaf2417d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x0f71ae54 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x55525143 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xd2b801ab axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x0a2c5ed9 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x392b12af dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x93ae020f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x8706d72f pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdb9981e7 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0655ee6b mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1771446e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2052498c mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x20f0fb2a mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x21e5345b mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x67b3b7ca mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ad6baef mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x71e39bbe mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa7d8e8a7 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb22c773f mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbf85bceb mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x1e9ba650 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x81f9a47d wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb3c31fe4 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xcde45e72 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xe653bf86 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xeff25734 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x387b3c60 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf3e682ee ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xfa435565 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xcec0cc05 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xdd63edda c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x3651bac0 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4924a620 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a9b63a3 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x53ffb614 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5622ae4 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb9e96c90 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xbe92dca4 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xcdf62eb3 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd05c2648 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd0abfca2 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xda39dff0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xf8c670bd tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x10f67043 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3beea245 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x86eae9fd cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb2281858 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf559e05e cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2d029520 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7574bee9 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7c9047d9 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x91d10e51 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x6a3bc4a6 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc7c9a25c mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3c6d22f4 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76072605 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9e74fe35 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xadbc0563 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbfb25c78 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd2a33ddf cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda9cfa98 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x705336ee mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf687d69c lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x4943889c flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xcf1e58e4 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x4db7403b denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x7792f5a4 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x9da87903 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x30340c56 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x36b48ae6 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56c049d6 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x65f96ae6 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x66bf9373 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x89839dfc arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f1e970d alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e0bf08e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaf2e226f arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb489e5d2 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4e778f05 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x734ebc22 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb48ed7ad com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x087bb160 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b0926b2 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b81a364 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c0abd18 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c40a3df b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3211e9a3 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34ed3038 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42daa8f9 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b3b75d7 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e01429f b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56845dc8 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5814ef12 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59818ccf b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a54d1f2 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f1fc558 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66d5fac7 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6abdf3cc b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74ada8f4 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8cdc1783 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x915020b4 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x934fc5a3 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fc039d3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0436139 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad32f100 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae505436 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb40806c2 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb240317 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc021f84 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe3f96878 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb068aae b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xebece3ac b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xecfb651e b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeda67832 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2ba2ef9 b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc8ea2e8 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfdcafa4a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe6c5aea b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff34608d b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0ff89c04 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1674faf8 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x468ef0a9 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbd49cd91 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc89d6f06 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe93bb2dc b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd47fc678 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xfdb895dc lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xbc4f412e ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x2dc6d656 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x659a7b2b ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x75b78e0a ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x7bfefb5c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1e8af090 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x79b7a0b6 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x026e4134 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a3b80fd ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73b7e2e8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75df3b45 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8fbc5ad9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb23200d7 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbc1f275f ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcaba2715 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf20e790 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcfe04ffa __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x45f6c07e cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x05868831 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08eedb1c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1371f528 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39bbfc9e cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x569c43e5 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d7bced7 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e1be977 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e5e4348 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x74cf4e4b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9055a14d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf092bad dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4007f8a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcef2d446 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd77b64e0 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb7561f7 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe39cbb9 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0100217e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d8ac426 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29107c65 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d1ef489 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d8f7738 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4761a811 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c4d87c2 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f8dc81b cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x638e96cb cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68e9ebca cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a20c13e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a34bec4 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cacb3ef cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82780fb4 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89e7288d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90aa27ed cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9931a69b cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d27afa4 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9dc1d44e cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9eda41ae cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1872307 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa287eb5c cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4d9d949 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5c586b5 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa87fa6bf cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4062242 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc18c826e cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5f3bb27 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc786adaa cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7a86dfd cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcaea4257 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbd8442a cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfb35eb5 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd08f9406 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1042762 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd57aa243 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7e03e17 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb814ff9 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe22cf340 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe305953d cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf21d0d8c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf66d043e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf80f2614 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfef6aaf1 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0c195535 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2aa7d1ac cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6beb8dfc cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x863ff154 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x97568124 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xafb1537a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfe282101 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24a0699c vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3cbed21b enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5c1ffc95 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaf484a1d vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb74f7cb1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcbc35f5e vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x20a72564 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 0x6d12da63 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2aa00a71 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5d926a92 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x964fedc0 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xedda22dd hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfbb4ee3b hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x0dfd18a1 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x10c67cfd hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x202cd422 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x276c18d7 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x47736983 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x537b15fc hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6391bd23 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7d2c0fe5 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd738a48b hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x196f5728 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2ce727d2 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0ba4ec0f iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x513c0318 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01014674 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0338405c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0382370a set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043979a1 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04bf845c mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b9d4bf mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2173986f get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21aa652a mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x317ea1ef mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ee6e46 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3da5425d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43a614cf mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446f5777 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44776b85 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc90fc0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x570c31fc mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e82478 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6347b76c mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f6da956 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779f37dc mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a6d3e4 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b80dfde mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8109b6ff mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82984ff3 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88390779 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c489fab mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fdb0e47 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ec2355 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa16b89ac mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b46f06 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6ade2c6 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc51b2fdf mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd381dbb mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd886848 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c13444 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd71f5fd0 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd73f2c26 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffb5535 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1795902 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3a41ae6 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88ff833 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93e9e0a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0af800 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffc8a57d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x044bcbc5 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d65fb3 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x081a0874 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bba650e mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c2fc676 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4260e8 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4d206f mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13735bef mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157a20c1 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16347729 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19fbfbbc mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae30344 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3ca452 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c13571 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x234f786b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24baf346 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24dbb972 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25f43e94 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x264e8776 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2807856e mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2830fea9 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2834f8f3 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2840863d mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a22f744 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a32ee6a mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b109bf2 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c72efba mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f34e250 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3127f91e mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x321bb988 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33460e67 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361249fe mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39153c11 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ccb8873 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fecaf13 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41c9e9cd mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e04513 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42d26dcc mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x449890c5 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x484512c0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48eae2b7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad7e9d4 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb4ff6f mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f612bf5 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x566a8afe mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56df507f mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x573d271c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fa7d83 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a3a88c5 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c1a35c6 mlx5_core_dealloc_pd +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 0x64b6374a mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660b41ac mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68c005b1 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73193ce9 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7712e8b6 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7700ba mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf4a59d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef95f20 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84106d1f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8557a7ba mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b714ec mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bdb912e mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bed78b2 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c300294 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc35522 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90018bd2 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9214c901 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x924f1f41 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94117f57 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a0a133 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94be586f mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9572aa1a mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d47eb2 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a4857a6 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5f9c55 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ca7760f mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cf69b20 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d16c8ae mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa050356d mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3dfcd49 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa461cb92 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa952de22 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa608af7 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabcbcd00 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8b7366 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf9bc934 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb133ca40 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a1655d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39bb690 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3cd85cf mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4267444 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb43740d8 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e0ce27 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc431d99 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0a4c3e mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbedfe2fd mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf233351 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc564e825 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce0f19a0 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd267479a mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2eb82f9 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7e1768e mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdabd21e6 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb0ef563 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc24c09a mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf812a61 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe138831f mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1569416 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe48b6748 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe62e694c mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9241532 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08d262e mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a3a58b mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eeca40 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf337aae3 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40c1d68 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf43cbcc8 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a6b02e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7717705 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a2d11d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff05e262 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xd7fa31c8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister +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 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35b1eb59 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40ae9a93 mlxsw_core_driver_register +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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ae3cc8e mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52086abd mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7badf078 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827d8787 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8383b8f9 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8857fdf6 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d77a88f mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9c78dfe4 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb4c8b872 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8ddbe81 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc0675137 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc472d421 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf5c946b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1671c42 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x23f7c80b mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xabfac38f mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x48f8b16a mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xab8051a2 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2b4d23ed ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x4138609c __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x85c33096 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x8b23a4d4 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x954477ca ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x96796f9c ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x9acea42b ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xad762fbe ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xaea45b8e ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb6d475ca __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xcedcb0ed ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd17ac345 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf20d22f1 ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x745048b1 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7b19525f qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe7187ca1 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x08d88439 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1803f554 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x75fb8668 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe19b315a hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf09e891b 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 0x7db84a25 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/mii 0x077e5afc mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x10b469dc generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x53729320 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x768be01d mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x9590f831 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xa6591175 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xc050bc99 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xc9853365 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xd99bb191 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xdf98ed51 mii_check_media +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xbb9b4b10 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x58327aa3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb3c4a06e free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x58a3b9dd pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8fef1382 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xac3ee244 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x43d4f923 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2356cf0f team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x26fffe58 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x5e33c854 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x73d221fa team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x8706625a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x92c6da0c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xbecf73ec team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf0c41820 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1390c3d2 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1f80946a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3338a725 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0b57326b hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3fcf98a1 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x546d599a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x808be1b6 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb74218f0 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc3e5aa45 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd4cb9e14 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xebb212d8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xee2dc619 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8174200 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7271cdc4 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02a2bc62 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e303a3b ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x11972f84 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x27a878d4 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x304fd0b7 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42de0e08 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60790da5 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa142746f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb8f37622 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc69b0946 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd6343706 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf6f54b6 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0c61049 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00677dec ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ae845aa ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d7673e3 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d9bae72 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13ac5f79 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19097e43 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f9ff2f8 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22cb8acc ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29c2a9ab ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b83e42f ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4466c8be __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x448ed04c ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49254d26 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4df0f098 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x510d151f __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56f72e77 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59696f50 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c43eeab ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e35c24d ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x647926f8 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66e01c52 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x686e0888 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x703fb0b4 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x727e543c ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77b69084 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ccbac82 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x85f96fa5 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86c9f0e7 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87cd3de3 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f22c3d8 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1f0d2ae ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadddc31c ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2f8eaf7 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba50d2a7 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe4d515c ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4bdee50 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc610d534 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6ab03e3 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4a9ff39 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4e409d9 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd576cebf ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd95bdbb6 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda9cca02 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde4672f5 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe51a13ee ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea09a053 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefc30804 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfeab5649 ath10k_mac_tx_push_pending +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 0x443f2e35 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4cd4cb9a ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4fc44eb4 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x598ff21b ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x857aa777 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 0xac97c665 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb960c5c ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xce8f2702 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe08c4a8a ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe75bc1df ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfc1f6df3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12cac472 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x135312c9 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1508827a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16fcc86c ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x181376e4 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4309d725 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x439c9ca5 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5200949f ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x590f02da ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59d8d1e6 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ff45716 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b776e05 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x96b22a07 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b297cdf ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa039473a ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa94ab460 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb89e7442 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba4a19c7 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb1c9a11 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5959368 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7ba8929 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb2b2798 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3c9547a ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x036f5041 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x097a1c3f ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x097b2ffe ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a0e57ab ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c7c436e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11ea06b5 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13eabd4f ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1617993e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d9bf01 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b087d90 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20b92e86 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22d60396 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23b550dc ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28011111 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b0f3cec ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d472baa ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d4b6388 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d808eb6 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3a2f68 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x304ce146 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31dcd321 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32d41bb5 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3354dce7 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35dea0d7 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36235fe9 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d32bb2d ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4043acea ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d60d7c ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48edbaa6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x518b7ab9 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x530866b5 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x566ce621 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aaaf1a8 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c1e2cc0 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ce85d18 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dd39efb ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ffec9ba ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604b559a ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61a7efd0 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62882027 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x655d7049 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65956326 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x699375b6 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b36ddef ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6de9cf07 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72417d93 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746fbb08 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d54ab4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75ba9858 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7682cc96 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76ea5d7d ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b45cc3 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f16a390 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8001673f ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84df4917 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8967e716 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bedfda1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x947d0135 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97a678f8 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd849f8 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4ee7d86 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa73541b7 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7643a22 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa97d0ace ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac3ae6cd ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0146718 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1be4e63 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28dc77a ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6895678 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb73c49ad ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8368b31 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb876c9e3 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8cad644 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc207978 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc70fd9b ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdbd18b6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbef9c560 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc078771b ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc287b257 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5f8e0f5 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6cc0b6e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc752a706 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc845ac55 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb883836 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc950899 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7366200 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd750b704 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7da9321 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8487497 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9c8123d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb88109d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd8434db ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde624edb ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebc6ce5c ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec1c4763 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef143ed5 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf15a7bef ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2aec964 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf399bd75 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf42501af ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4ad8370 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7694716 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9693ed5 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae19c84 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb35d241 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcc94e77 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe6ed10d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcbe0251e atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xda1843d5 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe9d93c97 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x007bc1a4 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07b28acb brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0f72a5c7 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 0x30dbebca brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x31789913 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x360210b8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x50418602 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x585bf0f4 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7e3f36d2 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x800096e2 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c00cfa8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9de964cf brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd977d64a brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x215862b4 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22144a42 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c3cc584 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4632a1e3 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48b941ee libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x551880d0 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7786e9df libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87a78d01 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8cb527b0 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8df17d70 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x999cabc3 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b0dc52f libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9fa03130 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6db3849 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc9c7b678 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd1f67c1d libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd6309fe0 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda019848 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf1104fb8 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6f08fd5 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03e29a5f il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04eaacdb il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x086f2175 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x089f3894 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b06872e il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ea4e185 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1008982e il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10591e3c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x107b4b60 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x152902f0 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bcb321f il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d2adadd il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x236fbaf2 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ae7b8bb il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e97dca4 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32ba6a0b il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33bc4075 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x340c8c3f il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35a41a78 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c6b928 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39e865a3 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c63b3ac il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40d07be1 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4799f447 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x480fd278 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d2b007d il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d447e12 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x502fe255 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54e9b6ae il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x555bd872 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x557ad63a il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5767485d il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5842068e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a32d23e il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ba27ccf il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bc0bcc6 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ee2f6d3 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6012f24b il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60fbb77a il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64ad51e3 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67daa5b7 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76879a56 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78040d5b il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7be73ce5 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c353854 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e27a383 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x837a3926 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x853995e1 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e2a4c10 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93493e0c il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93d3d7f1 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96c6563e il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99c81d05 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ad42973 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b9e48d6 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bb22718 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c0084f4 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1d3a5db il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6de62d1 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa75e5792 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8532333 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab57fbdd il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb133bb0a il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb215a3f1 il_power_update_mode +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 0xbc946642 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf6b800b il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc02b1e13 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0ceb5fd _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8e6dba7 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc93a589c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9893bff il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc18642d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccbcc1da il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd697b03 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd67d4e53 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd72fadf5 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd799b13c il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8cae440 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb4ae339 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddf7b47e il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf2d66a2 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf56d293 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6e464e7 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe72dfdb3 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7f5c59e il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea64e4b9 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb7904a3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedbc64b7 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5fe73c6 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9a45023 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa0f77f7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa9b0035 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaa8925c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd4f0f49 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe53c275 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfed85f4b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff868737 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffceb792 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33c2544a __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa44e2870 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9db4d3 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ba8955b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c7925ae hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x141a523d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x154a364a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x161641e9 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1eab23d7 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2cb20fd8 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38cba3be hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3ab691e0 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5efa58af hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70201fe4 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x71093472 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76186b1e hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c012fbe hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91607bee hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x922b543b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa2c22349 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8125fc6 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb340330 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe456940a hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe49f0546 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe59bf24c hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xec746db0 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf607e530 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfe212250 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x03a68aca orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0be65c76 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x391da802 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x462aa205 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b933442 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9ed1d520 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa8845af4 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa9187eac orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcec73220 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfe025cb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd9857936 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb4c9831 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xee02ed80 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xee0e1d3e __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf1310004 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfefb335e orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x5ffb6ae2 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xbe6619ec rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0024d75c _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06298e7a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1085bc7f rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1097fe45 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13a7c9f8 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15507bfa rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18ba6042 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bbd7db5 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dbca242 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f8efbea rtl92c_set_fw_rsvdpagepkt +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 0x2ee022a5 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3338a85d rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f9c18ae rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48e79d74 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a5abff6 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d104b33 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x560b9306 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f52e44 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x683f4db9 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a1bc88f rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x757eed16 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ecd565b rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x866bc9a0 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d5ade43 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f131afc rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92a09133 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97008912 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98a28e07 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a8a5d1d rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb04bb4b4 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdde0c64 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbea9e5f8 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc32f4fef _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcce394c6 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd294171 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe23f3758 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebdf8b07 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec1430d2 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4521174 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa36ec52 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd500752 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x07d81351 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x46f3ef4f rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x47e0c5aa rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xee0a857c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0087aa47 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x19816c2e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbac91586 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfa44f0e5 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x066e1668 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0995bc2a rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e219e7f rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35e691cd rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c8ea352 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c2447eb rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58028e8d rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x584e58a3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b4b4e38 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ea13e8f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60816977 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d4007fb rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x756f36e4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8996826e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e70545a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f485caa rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9158a113 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x965e688c rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a3cc55d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab68b356 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xada7a26a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadbc12b8 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0d9c42e rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb44683b5 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3b5e800 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc543c59e rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6369abf rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbbad573 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd92a51f rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe259837f efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6762173 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf91a808f rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0b8fd165 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x0f273cb4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x19af0f31 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x330e5b91 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x4bf9a071 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x577ecaa0 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7b65cc19 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7f47dd95 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x908fa5ad rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x93766957 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x94a7a727 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xad80df47 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xb2831b17 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xb90fba72 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc5512ad5 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf7c55447 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xfa91b0e9 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xb977de26 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x233b78c7 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2d90c775 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb8ffecdf wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbe6ce389 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x02074d66 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x46e471ac fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9c3f4cb8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8ff68531 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x94d0fb39 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x080ff77f nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2f7a7cfd nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4fc1d5cb nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x969fc28d pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xafb2e420 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc2ea8adf pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0b435321 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x932f9bcd s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9b788481 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2a3208e2 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44f24b6e ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x557fd1a9 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57fe23e1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x75a4272d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7aa33994 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7afb1796 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7ea14a87 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb390d4bf ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe1204d5b ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ac8df81 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1372acce st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2793720d st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e12a1bb st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6fc4e8bc st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x798c8650 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f1371c3 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x857b156e st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b550157 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa3efa41d st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab85db91 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb78f5860 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb8ca9d49 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc72797c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc5221815 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe608736f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5a767a7 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xff89e1ed st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/ntb/ntb 0x171f4590 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x193f167e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x30a9a236 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x330b5634 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6374f902 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x68f1abb8 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7faad5df ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x962c3f45 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x9a1eb4bf ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x9abd7c92 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa7feffb7 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xceca46ad ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd2c3a3b3 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xd67be36f ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xdd9b60a8 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xdfd3a3a5 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf0dc6bcf ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf1082f5f ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xf6b8745e ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf6c6dce5 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x55701457 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5bc06cb2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x184cc12c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x1d3f8fbe parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x1fceacae parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x20d6734b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x22f29884 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x23627f48 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x3410711c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x52bf41e0 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x730112f2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x76311256 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x83d34fdd parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x8a69ef22 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x8de3b3eb parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x9765a9d2 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x9866b960 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9f453285 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa1e5c143 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xa491af50 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa689c619 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa9655f47 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xaa67c119 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xada4e1df parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xb2ec7815 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb8943078 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc35358ae __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc3c8d367 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd20462fc parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xdac5a3d6 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdbbaffb1 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xed1ba984 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xf05d255e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfcb98fdb parport_find_base +EXPORT_SYMBOL drivers/parport/parport_pc 0x02441818 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x761dc40c parport_pc_probe_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4a803a32 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7c6e14f6 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x834c3433 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf1c2f52e cros_ec_unregister +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x730c7324 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x12036f11 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1d8fe6e1 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fc462a0 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5e039ef3 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5e1f3415 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x64416ead rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x72b9e6aa rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80968d79 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93d8b99a rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9b36497e unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa89df868 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad0dc892 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb9faae63 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf712d834 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xdcbaad22 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x437994e5 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbe3396ed scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xca910274 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xefe74721 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ca07c12 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x23bb71b2 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c9f21dc fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x77400606 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c184de1 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x978b4e22 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x99994a72 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb06aea64 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd66b6d1f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdfb689da fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf2e9a95a fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0727b5bf fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ca39b9b fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cf105e1 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e79a541 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f6af4f8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14f00a70 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1507bfde fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b1ece9f fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22a4ebd7 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x263c40bc fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2726cb97 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x273e7979 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27997452 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c7c4b5d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31cce20f fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3263b78c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33bac1e9 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4094e13e fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x444fa905 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e5b6212 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f208899 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f3a322b fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f7fd392 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56c97d3e fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c87365c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62d57bfb fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64b7febe fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x655b7087 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f7d940 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e61b2b4 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79a56749 fc_seq_set_resp +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 0x834808d7 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85069d75 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x865c03b3 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c12ddf9 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c750218 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e6983d9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9260e6db fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93404086 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9acc4cd8 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ae8abe9 fc_rport_terminate_io +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 0xa549a1e3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa561b8d5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab473460 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf1db91f fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb658c199 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb426f71 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6571b2d fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf21d9ff fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7c40636 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd829b9db fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaa9f4cd fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe14bf2c8 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2115af6 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe264fc2c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3ef7f89 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeef0872e fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa99bd23 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6ac4d45b sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8f0124be sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcbb331b9 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x8f5f94e6 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 0x06d08729 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1240620c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x156e6e62 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32d677fd qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x49afcc27 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x60d4cd93 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6693ba4d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7a592db1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbc2b839f qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbf2c438f qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd01a2ba8 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf647a202 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/raid_class 0x04d700ad raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x63249bcb raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xad63acae raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0627cd3b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0837fd99 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f590bc3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f8d5680 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x10b36854 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2948b882 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ba69e1e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48232ca2 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x538a405a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e109aba fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6910e13d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c158ab6 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9621422b fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x976d7f12 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c8301ea fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeebb0d02 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x023574ae sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18c39786 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ab17b3e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d7eb667 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fbf2024 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x223238db sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ac739cf sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ba4fa51 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4551d0a3 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46662ee8 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4724e01c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49613820 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b5bfb7f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c327bb6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63ea2988 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x652ada66 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7938fa69 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e59f10b sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e8777bc sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95a3e5e2 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ba17893 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9b3cf49 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcac3fa65 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb6938bc sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf336867c sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf887d3ce scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8c377ba sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb6f8664 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcf05806 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7e34f752 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x94a35049 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa5e5a2cb spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xadc19334 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd8542089 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1e34f98b srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x40474c64 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x83944e4b srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb4f13ee3 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf1d73048 srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xb6a3cd0e tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd2785bfa tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0ef27cb9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1b46d81d ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2577aa9a ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5e3e45ad ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7cec8764 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x97d57979 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x99582315 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe356688f ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf023a42f ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5b563f74 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xa4317061 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f51b3ef cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1e6ce782 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3a99874e cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x46bde78f cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x59ab9e73 cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8cd5a570 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x94887ba0 cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd8b8fbcc cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdde7bff5 cmdq_pkt_flush +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xecb35570 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x13d95ee5 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2255b21b geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x272f139a geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x34e22e80 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x610c69e1 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6297ec0b geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa87650ee geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa8e576f1 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd5baa3ac geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe6665ca0 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf88ee8b0 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfced14db geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x063b5e8d qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x304b5560 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x35a5e5dd qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x44107cbb qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x489df586 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5e55f11d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x78a8233e qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbebdbfd7 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe3d2c76e qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xed110a1e qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xcc8f550c qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x43c36877 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4687501c sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5a859b9d sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d597579 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80407b51 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x97bd537c sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x991129bb sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3846920 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb5caead1 sdw_add_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbaf2613e sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xccfd03be sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe306482a sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef9ad8c5 sdw_delete_bus_master +EXPORT_SYMBOL drivers/ssb/ssb 0x0c113cb6 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x156ba1c7 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1595f65a ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x2064cf7f ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x52947f55 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x6b8dda37 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x6c761af4 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7b05db96 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7b9258f9 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9510f8f2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x96d42da7 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x9f8b160a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa0573655 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa7aa22de ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xb31a906f ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xba7e200e ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xba95a4bd ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc090f157 __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 0xef6c2d5e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf90c3bb8 ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1366f416 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1497b514 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20cdaa23 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34411279 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36a81442 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a67cab7 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b33f22f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5dc9067a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6a565319 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c238e2a fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7db72781 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e4ac55c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8570d7aa fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x91141bd1 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96c95fd0 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96e62269 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7e411fa fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7eafe50 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb90b4bac fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbad71ae6 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbc93601 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7f3b3bb fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9027fef fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe9ebb96f fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeedebf69 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x350b691f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8049680a ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x07de0916 b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x3282b328 b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x64ca4749 b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x671b0708 b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x69ae1abd b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x7a2aba38 b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x841fc6d2 avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x855c9258 b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x8943997e avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb4d40763 b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc9f80521 b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xd2420bb0 b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xddf055c3 b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xe894e54f b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xf0cce536 b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x18040dab b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1ef31946 b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x1f530308 b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x64af6d6a b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x922ebf4b b1pciv4_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd60ad5b7 b1dma_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xe1a7bf62 t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xf533bd77 b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xfb7942a0 b1dma_send_message +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x056165b1 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x087b69b6 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08d88c58 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0909043f free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b7873fc rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c0ce9c7 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0eeb399d rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x133eea8d rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x179c956c rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27b558cd rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f62201 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x397c7e2d rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e6d15fb rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56d47797 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63450e2c rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64ae361a rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64e91b42 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6897b84d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b6a9342 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74ff45cc dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x760f73ff RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7668f569 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77367c26 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77e1c84d rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7addf1a0 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b96e879 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8651a58d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8af81c99 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ba88ee6 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d201e99 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90f2fb59 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a117a88 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a5657d0 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ac0cc58 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c2a1554 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaf70e0e rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafdebe13 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb864d51a rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc589d61b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5bdf722 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5ffb590 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcab3f73d rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccc4f975 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfcc46b7 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1330b93 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb42ba06 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb769b3f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecd63aee rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfbfa5e0f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x089eab91 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20856df2 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b2146c1 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d1d4894 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2eb73a75 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32f27e68 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36988662 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b747911 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x419d9f75 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x420136ef ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58008f7c ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5987a1bb ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59b8ade4 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5aae6fb3 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dac05b7 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x665ad20c ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67384f39 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69dbf4f1 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70ca9c09 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72ad55ce ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74915b9b ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x785a41fe ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85d09f4a ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86d29967 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8878dd46 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b272890 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9445f4b6 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ec44ade ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f79fdfc ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa057e580 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1ea52a2 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5f1be84 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf0722c2 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf2374a6 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb129729f ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5a99bd3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc2574a7 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe45183c ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc299001d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2d4be80 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc67af413 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9bba17d ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5d3e50d ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc50840c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd477087 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf497c8e ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe26968fb ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe37e9c70 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8db44cb ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe98427d8 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefb686fc ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf657a3e5 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6bc438e ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x058f9530 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07eb5eb7 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09b94a9b iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c10592a iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14762292 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19de9606 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28b864ee iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x444f709e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49cd515d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51a550be iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5285f7b5 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57485a5b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c0c8da0 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aa896c3 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e066c82 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ea4d951 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e0d8942 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fbcf24d iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81b6b413 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83782255 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x902a4574 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9912cfb5 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d08eefc iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ef052f7 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa16f606d iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6a20b14 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7a665b8 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa995ecca iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae6ffb88 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb55bcb86 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b64419 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc22a4640 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc62afda2 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd054606d iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd34bb6ed iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6567a02 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8561593 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd98c31bd iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbd8178c iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf7a822c iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0efa124 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe56a0e6e 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 0xf7a614ab iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd4bc98e iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0343f892 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x087f50ca target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x09ff22fe target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bacec9e transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x10d6ef38 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x12cd29d0 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x15f61a7d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c245ba0 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d481d08 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x245f270a target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x34708f2a transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x39e1fb1c transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a91beb3 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x407b82d4 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4315487f transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x48ba1e94 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a67e75e transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a90b719 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e6b6e7d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x5712fcc5 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b1ae084 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6488da8b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6844431e target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cb903f2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cebf6b3 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e7b2ce6 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f2e8d04 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x723e9e10 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x77495f34 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dea20f2 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x800c2331 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x84421a66 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x8527d5a8 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x85b7a92a spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x868988c8 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a2f05f4 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b242335 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9680e856 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x97a7eb29 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x97d90824 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x97f3040c transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x994ec703 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ecec3fa __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2ad13b7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5424411 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa95237a2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa027d89 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae0abe91 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xaeda1a1d target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0455a7f spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xbad583f7 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcf7ee77 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe54a585 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2274b19 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc56b9b1a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5829c59 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xca6e30c4 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd1a5c92 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf1158fd transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd726b8a2 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd800f06f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9c8d4d5 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xe34088c5 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe408016f target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6e35b33 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe80c72e6 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xe865c9ed core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe99ec580 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xee518d64 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf48b371e transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8404191 spc_parse_cdb +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3449f7ab usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xae4e6081 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xaf273de4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x133b9a56 usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d68ae80 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2d8a212f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e560272 usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e3827ae usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x72527fb1 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7adb94c5 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8e43b49d usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9a8b717f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad7e491b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbbaf55ee usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc9502bab usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe5f4479c usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x13724adb usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x258785c3 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x03795392 mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x38924842 mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x482023e5 mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5380f606 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x580fa5fe mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7ef13eb0 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8a9c1dba mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x92dbd86c mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa5f206f9 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbc223ca8 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd217c4fb mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf3b9f376 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x0e973ef5 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x4838748a vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0xa87d1ad3 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xaf08645b vfio_unregister_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x92bc68a4 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xcaea3042 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_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 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa75ff962 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc7f2440e vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6d387251 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa1f60d2a devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xea7eff0a lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfbf775ad devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5c12a25b svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6a628cf2 svga_tilefill +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 0xaa89b30e svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb164a8b7 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc74afd71 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcb36dec4 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeb9279eb svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8ae042e7 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x77f412ac sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf9387a89 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x07667f93 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 0xa626adb4 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x48621eb3 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x65193a5b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe49c3b5e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x17a99da0 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6f129e13 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x751a8805 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcaafa026 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x46d4c422 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x04534fac matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1a584ba0 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x62686520 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6bb2f020 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed4d69c3 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa11a101f matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb7c97f95 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x06c97ecb matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0f9d13e5 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x81b7918b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd1491ff9 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf599ad45 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x51e03f77 mb862xxfb_init_accel +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 0x0439ff7f omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x19445c23 dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1b848f34 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2538399f omapdss_find_output_from_display +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 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 0x4026bbf3 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x421ee7bb dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4866da6a dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x486b86d8 omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x51f87162 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x575f66cb omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5f90028e omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 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 0x8162c249 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8d129809 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8e9dda93 dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8eb69a15 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93148d6c omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x94c68a1a omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x960a2c27 omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9eb4994c dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb0271041 omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb5a4c0c9 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb826164a dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbd628983 omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdadcb87c dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe0170b5a dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xebe95099 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf2c66595 omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf566d9c4 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf74cbe95 omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa95d18f dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfb7546be omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8ac0c98c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xef5542d2 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb931e35f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe6e6d5be w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x02d9497d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2fb0fec0 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x43021e5a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x917c2319 w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x24a57459 bd70528_wdt_unlock +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x72a089f9 bd70528_wdt_lock +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xd9b297c5 bd70528_wdt_set +EXPORT_SYMBOL fs/fscache/fscache 0x02a2f697 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x053f00cb fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x05b7dfbd __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x0856bcfa __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x0c67e1d2 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x13102247 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x16371ba3 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x170f3106 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x176eb12f __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x18cc0dbc fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x231072ad fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x29d07e1f fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x2a810d3a __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2ec7ccbb __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3fdaee36 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x402fdddc fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x455d440e fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x564fe472 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5764f0be fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x5c57ba1b __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7490b04d __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x7fbd89c9 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x82bddfe5 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x9217d033 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x92a2bcf1 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xa23de6a6 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa90a6ca5 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaa4cded6 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xad16f2c5 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb265b286 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb9071382 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd0436113 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd5a5a2e7 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xe02176f0 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe5e2617a fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xef1b6dd7 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xf8834700 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf8f156f7 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf9f87de9 __fscache_check_consistency +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x3334ba71 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6ede3744 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x742c2ee4 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x95569cca qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd1286563 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe81a3dc9 qtree_release_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be +EXPORT_SYMBOL lib/crc8 0x5a742e56 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/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x7dca6389 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xca332dd9 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2ea6a720 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x33e42487 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x68150703 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7bd0b3e1 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcd4a4c95 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xea9bfdb2 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x0c4705c5 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xa560bd87 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x75adecc8 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x8c54e6bd unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x022644ca p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x05779b8f p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0883ea52 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x0a144639 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x0bb2be7e p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x1cc18cf8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x1d965211 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x2c0019f1 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x314d146a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3a6df63b p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x4560350f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x4940f9f9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4b5222e3 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4bcded26 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x5872e333 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x59ad20ae p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x610dbcbf v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x63564597 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6529070a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x658326d4 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x6ddbed12 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7884629f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x876316d8 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x94494abe p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x95b89050 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x95cec060 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xae6dbd0e p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc2824f0a p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc51bda28 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xc66980be p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc75340e6 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcf6283dd p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xd091c5e8 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd3a4ecd9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd5daa7fb p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xdb4d3547 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdd42a6d9 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xe1bf3791 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xe8da9814 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xece23068 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xecf825ac p9_client_mknod_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x48bc8457 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x8b63a85b alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xafd715d9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xb5802ec0 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x20447a04 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x21958ad2 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3e5baad3 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5d191182 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x7377fe85 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 0xb1425162 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xb5ce17b5 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xb5f3f696 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xcd9544ba atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xd8466c9f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf14266ed register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf52ecf89 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf90f670c atm_dev_deregister +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3a371c9c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x3ec27e98 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5d0a6c53 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x71cac736 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x99abf8a9 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xa8606b01 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xae0218fe ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd8debb2e ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a0edd09 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cd4fbf7 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fee40f6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16e77093 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x173d4a4b hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1870358f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1baff570 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e98098f __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28f20fcc hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29b14f52 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3520535c bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36910fe7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37c0dc36 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x409d7a25 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b10ee5b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58edca3b hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a743845 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cd864a7 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e45f34d l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x605c3919 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60a2c153 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x632362f5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71bd5d26 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76856711 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b456435 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ac9e5e8 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ebf747c bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f34f632 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9075edee bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98b1d7dd bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e6147e6 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8eade2b hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xada21c59 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2c438df hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc611ed1 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc35c00ac l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5ef303e bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb5868f6 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3d30d70 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc8053bd hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf36f49fd hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf68d701d bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8df4a79 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfab01496 __hci_cmd_send +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x08937f00 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x33a7aebb ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb289bcbe ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc7b73fba ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0cd15a93 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1701d909 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x75eef858 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xf42978cd caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xfb18fdfb caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x0df1605a can_rx_unregister +EXPORT_SYMBOL net/can/can 0x43fe44f3 can_proto_register +EXPORT_SYMBOL net/can/can 0x5ed1a313 can_rx_register +EXPORT_SYMBOL net/can/can 0xcc20bdb6 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xdaf3704e can_sock_destruct +EXPORT_SYMBOL net/can/can 0xf79ea23b can_send +EXPORT_SYMBOL net/ceph/libceph 0x0057620d osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x038bf158 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x08dfe00c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x095bb111 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0f5f4dfa osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x0f9f2140 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x10fcc2a6 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x123a606b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x25e336e5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2657a91c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2df2bcb1 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x2fc0a7ee ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2ff85f70 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x317ae6c2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x3308652e ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x33398cb7 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x354f32b1 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x3697116f ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39073798 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x3b004898 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x3b99aa05 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3e076a29 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x3f91fe9f ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x50ee4671 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54b53710 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x598d3186 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x59b90c83 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5bae3775 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x5c3f2450 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x5cf9515a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x62ba6134 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6429d310 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x66598796 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x694b9762 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x698dac68 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6a31a54f osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ae23185 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6d39ac60 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6dc8d06a ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6f5c5f84 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7496e683 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x762db147 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x76a7c391 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7741743a ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x79cfc382 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7e0f4db4 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x8093737c osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x86f8ee49 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8804bc04 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x89b30c0a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x89f273d2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8ab63ebb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8de06328 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x8e064a66 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x8f1ed388 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x911f61ae ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x94bdd04f ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x969646d9 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x9adacf2f ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9bc932c4 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9f950e33 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0581dca ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xa0b03206 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xa130d5bd osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xa1f444ec ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xa264bdfc osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xa386602d ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa39a418a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa8b9ceb8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa8bbb6c4 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xaca82104 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb158a24d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb47db2a0 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb5323c90 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb77d3641 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb9c240bf ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xba87f229 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xbae70ae0 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbbf260bb ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbd467318 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xbdd2effa ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xc422a77b ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc53950ad ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xc5e25151 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc6113dd2 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xc68294b6 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcc33a4af ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xcce324d9 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xcedbfe7f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd488c66e ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd64d9bd0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xd905b541 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xdb5b9b5a ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xdb70c544 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xdd8c268e ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe53816e8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe70403ca ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf33920d8 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xf814d7e1 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xf8f54936 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf96ae948 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xf974d90b ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xfa5bb503 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xfc4041d5 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3d1953e2 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x41473aa7 dccp_req_err +EXPORT_SYMBOL net/dsa/dsa_core 0x2f247809 dsa_port_vid_del +EXPORT_SYMBOL net/dsa/dsa_core 0xac3f10a4 dsa_port_vid_add +EXPORT_SYMBOL net/ieee802154/ieee802154 0x015c42a6 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x140c2c24 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ea94570 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xac7223d2 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb8e038e3 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc0b5871f wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0b057b66 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5db94a35 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x1a31df09 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0f4f7fd0 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x48c20c24 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4ae22579 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6874f279 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x02d9638c arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2afcd7f4 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f99434b arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa0d7a9ae arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x621430f6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x866a1b9d ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf80baf93 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0dd37128 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x0e0ee729 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x462f61ca udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x32de4eac ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47acfa69 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x531c465a ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x64bfcab0 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x935e7808 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5278f1b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd54b4901 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe2d301ff ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2f03bd7 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x90186ded ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbc0ebdb0 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf3263441 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x04cb363c xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xc9366e99 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb5383ef6 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xde346ae8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/l2tp/l2tp_core 0x85d686de l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_core 0xc1b3f23c l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x8c0c42ae l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x25734304 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x4a9939a2 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x6ac4889c lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x739b0513 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x8812cf8e lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x8b8c6f67 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xb17807c5 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb4a7656e lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x0b08a56c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x2996bc6a llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x565bcb67 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8593e83f llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x93b3a9b4 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xcaa06c91 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xea6fbc59 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x0143bb17 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x055e0c90 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x087eb19b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x094b04e4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x09da6cb2 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x1182957c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x11e578b2 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x19765311 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1b0983cf ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x1dc43862 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1e24afab ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x2078c0d0 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x211acd0c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x229d9647 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x274bd715 ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x28d268ff ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x2a40ac84 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2b07991b __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2b269472 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2cabb021 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2e21a2a7 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x2f39839a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x2fa7453c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x311d83e3 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3705a831 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x39d6e1d2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3e4cf6b4 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3fce52f2 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x40a79a18 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x49a30e86 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4d4f986b ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x53d06f28 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x58279c24 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x588162b0 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5d66e43b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5e6d5669 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x63e1a02d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x711a953e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x7369ec54 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x765c789f ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x77912bff ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x78d362a8 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x7c2461a9 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x7ebbcbde ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x84dfdc3f __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8953b552 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x8a36b089 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x8d37f503 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8d7e8242 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9027673e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x92a05e5f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x950636ee ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x97169e9a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9dd707ab ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xa2f5662f ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xa5a4eee5 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa5b45080 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa6713d25 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xa69454b0 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xa822800a ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xaaa78fcd ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xad23c8b5 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xad6cc8a0 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xadc2d806 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xae848f5f ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xb10db492 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb39321c9 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xb4af7f7b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb5bef4fe ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xba4a0a2c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbb107854 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc0c845e7 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc14842a4 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xc2397dd4 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc2c19e02 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc3284eb2 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc44f13b1 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc88a8017 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcac066b1 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xcbdbd0b0 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xcd4ab3ac ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xd06c1ec5 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd4243cad ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd87c0568 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd919b62c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xda64d26b ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xde62f933 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe4bdb8b3 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xe8ed47ce ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xeae3c62b __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xec5492ba wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf433008c ieee80211_rts_get +EXPORT_SYMBOL net/mac802154/mac802154 0x18b7b3bd ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1bf79c8a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x23e27565 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x60344fe7 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x699692c8 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x8a71ac7e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa1c9a35e ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe9bbcb76 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c928709 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2648e661 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f4afbf1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40a59cc7 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x410f3ee0 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x449de35c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53235c77 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x614b34cf ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d2bd983 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b801c07 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d2c6614 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcbdccdc0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6fec01b ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe98265ab ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf28660b6 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6aaa1b8c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8d786e28 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x05bcbc39 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x7b8c9cbb nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xd051acc3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe865ac8f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xfbe42651 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x095bcca8 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x176d005a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1fbf8a9c xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2c38aba6 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x350bd431 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x47ec3e09 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x7a037151 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbcf5b982 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc97284b3 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0d9344c4 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3506793d nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3d3e03c0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x46efb7b9 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x520d1ece nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x59604b66 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5961b97b nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x734ec0c0 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7ad0f462 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xa595336f nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xadd43fcb nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xadf200ac nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb2f8576e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb7404c0e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb949d5ca nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd68662ba nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xec2a8f19 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xf6d08ab0 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xf7bdae55 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xf85f4cd1 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xfd55959c nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x06b81b5e nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x0caed481 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x2381afbf nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x32fce10e nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x385b2f4c nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x38602aa0 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x3a8c67a1 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x40343a59 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x556b9633 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x575f15cf nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x6441fe70 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7022cadf nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x7805714d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x79663c02 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8b0d2a65 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8d0f82cc nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x99b71dfb nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9c58b727 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9c5a78d4 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9d882a69 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x9f6c4da8 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9ff4dd76 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbee11d58 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd31da00e nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xd7fb43f5 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xdb1830be nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe65d1831 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xeaa79849 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xedd27249 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x129e4db6 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x194fa1aa nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1db7b9f3 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x349e62bf nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x3822de8c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x4f5b6c96 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x54685090 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x56f84227 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x578ec2eb __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5a1b72b0 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6d258f78 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6e9857c1 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x75cb3114 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x8bd94a63 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x9d9606ad nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa41aaab0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xac2e9e27 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xb1d5ef65 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xb1e0de0a nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xb4251dfe nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xc9257fc3 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xca0262d0 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xcafc67e7 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xd81aaaf6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xfb4a7366 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x457c42d1 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x55a6c848 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8ada84f6 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf219e6b1 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x15667837 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x48e69793 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x51f40aa8 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6a077813 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xaeb155b1 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xb71d2f2b pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xe8b7c47b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xeddaa2de pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x01ba3e3f rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c0ab4c0 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15a4fdf0 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20f92a79 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f69529c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39cad748 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x43a85c6a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x54389942 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6d284a7a rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7981a245 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d43603d key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x967ab268 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5b5db68 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd955d578 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xde3289a4 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe502c064 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe2aa0dd rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x61780adf sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3cbb5988 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6bd85e1f gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc6890f05 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x897a63c3 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa1fbc697 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc71a141c xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x1b7cba6d tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x28f51853 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x8fe8fcc8 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xc775b88b tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x2a580789 tls_register_device +EXPORT_SYMBOL net/tls/tls 0x3cb6ce72 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0x90867608 tls_get_record +EXPORT_SYMBOL net/wimax/wimax 0x117befe7 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x8685047b wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x00f1e5d1 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09cc0d2f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x0d27f561 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x0e05c124 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x0f242439 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x10ae4454 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x112374a2 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x13532ac8 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1428c913 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1617ac48 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1fcb498f wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x20b3d960 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x275fcf7f cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x2f535dcc cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x32e2e144 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3439dedd wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x38ea864b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3ceaff11 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3eed1f76 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x40b7f37c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x412070f4 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4131bbad cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x439a6f9a cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x43cba930 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x49b94962 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x49f381b0 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4df99cc3 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x4e9adaf3 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4f04c866 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x4f38ee33 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x51236b46 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x52cb25d2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x53cc9892 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x5aa2a5ef cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x5aeffad8 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5eae3bf5 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x67f95e8e cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6ca68ee7 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x6e1456b2 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x6fcbc314 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x77363e87 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7943859c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7b64cbfa cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7e8140f6 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x80343214 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x80e933aa cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x83b644f8 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x85ec9749 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x86628b73 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x8caed884 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8d2c7d26 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x900b2d2a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x915b25a4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x915de3b0 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x947ebd07 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x96e56cfa cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x995445f0 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9c0f65d1 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x9d1f9dae ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x9d35f8b3 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xa0f7e0ce cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa6f886bd cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8d1200c cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa93b49e4 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xac333468 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xacee9150 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb49c5f7c cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb6b3c6a9 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb6b78f2f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xc12a1eef cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b20ae9 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc415ef6f wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xc85ca128 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc51d393 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d226ba __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd3e9835f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd63ce2cc cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd71578a0 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd7f6f362 cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xd922eb51 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd3ecc11 ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xe1785f7f ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe31521ea cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xe699110e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xeb951f5d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xee703fcd cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xef42b63e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf115b394 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xf140d093 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf2a7807e wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5bcb9e5 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xf5e78bfa cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf92beff7 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfec7fb8e cfg80211_probe_status +EXPORT_SYMBOL net/wireless/lib80211 0x0d242a3d lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x56a5fd35 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7e40e507 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd623e727 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xeb47fa22 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf2c455b7 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x26ad2faf snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x80ace315 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xadff154d 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 0xd93bafc7 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xff187b1e 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 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb5763d5b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x29b313ea snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0156baec __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2af85a43 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2cf4db9d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47bfd3fe snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5cefbb00 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8a577b29 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8efcb518 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa171f5f5 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa90ef38a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb985ed77 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb4b9bd4 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbba05974 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc4424f3 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5e029fb snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5eefb1c snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc915bcba snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd09ff372 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd71769ee snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd7f62e53 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf736711 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xb0e2e812 snd_seq_device_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x0b3608ce 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 0x18532e0c snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x25637677 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x278844a5 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x91b110a3 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9bf689af snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb45b213d snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc1e51dbf snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xce9fa7b3 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcef25197 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00324faf snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x03bda46c snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2604e82c snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3e546b49 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x809a9afc snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbebfc6f6 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc17e1cf4 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf493472b snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf9e57cc6 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x036c1bb1 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08156621 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a41a605 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16e978f8 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a2e2857 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22d47033 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b8d7c1e amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3987deff fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5774d066 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a7b4faf avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x692f0a31 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a38ce9d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a491ef0 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x792c5948 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cb59e72 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7eeec1db amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x872372ae snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x943c9697 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e3b92cd cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa7b7b59e snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa82b2a6e fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac9a75c7 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae2ca65f amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1c8b50a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb652560b avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba119bed fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc069a670 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5c33646 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd40c2dd0 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd56521f2 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd55154d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe14ee1ce cmp_connection_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb368d0d3 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd4d6ad61 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x12d10795 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25c0abcf snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x27542abf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52216f0a snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5dcf232c snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8bda3d6a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbb5cb35c snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd939b3d5 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x21e2c9fc snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9e9b4c37 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa02af872 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc1a44da3 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc29b0ce3 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd1a6ce46 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5f75f984 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8f347236 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9723aeaf snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9f10b650 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd7b73077 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfc424f54 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3313024c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x46380d30 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5039caae snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x72597396 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc2f097fe snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd190440a snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15a78152 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1aea073b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f990e8d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x259779f3 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3c98589d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x42c1a8e2 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4522074e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46c27760 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d458e43 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b2a79e0 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x95026b24 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa12cb055 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd4ae4ca snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd87ae01b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1d79d9c snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec2381ef snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeef20fcd snd_ac97_update_power +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x03250a97 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x330399c0 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3f4b4076 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x40c7a585 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5ec8219c snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69889ebe snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7b519bc6 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xafab42cc snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc5893260 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8bdd3e71 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa7ca913c snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xee02ed4c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x17a6922b oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x292cb69d oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x319ec076 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x691d300a oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79968e77 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x801bbc05 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82f34abb oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x872856ad oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8f271ea6 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95be5a9f oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2919da6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa97e25ad oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab38f82e oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb1440cf oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc682434e oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf3054b7 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7d971af oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefadc373 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf08d439d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf480ff63 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5f8ff55 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x193e0fda snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x74b0b977 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7760ba06 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7e252cb7 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc0127477 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x3997355d pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xb21ca8d2 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd38feb25 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdcfa0a64 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x33d03cda aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3ccb4e33 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe69d2c1c aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x9922fc75 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05e97719 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e581134 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f225e21 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18b4ba6f snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c367bdd snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1da791bc snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cda6a67 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x304d9718 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4486fe2c sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a0506b1 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4bec7b49 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fc96242 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fd2274b snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62ffaec5 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x683bebe3 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f561666 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f988ea2 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81031d27 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x867c850c snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a4ba747 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ecd5f30 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91063f43 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9cb011f9 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0977261 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa52a77d6 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa56744e1 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7220098 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae0cd53c snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb5c25964 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb929977a snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbeb225f sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4fb4120 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc65a3943 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc862141a snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce6bacab snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0f3a2af snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd25644ad snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4cdede6 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd8ee5edf snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe70f9754 snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7255295 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4cf494a snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9da2867 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa131329 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff363d74 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff8a38e9 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x12dacb64 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x18fd03f4 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x64b8298a 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 0x8295cfc4 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbc407a20 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xedb98f3c snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x44db6e41 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x801ce873 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x97b7ac12 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9f632a2c snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbc531e15 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbe2c305c __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc0f9c9ea snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd7295068 snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x4c248bbb __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 0x0037a798 elevator_alloc +EXPORT_SYMBOL vmlinux 0x004158d2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x005376ac sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x005580dc bdev_read_only +EXPORT_SYMBOL vmlinux 0x00841954 pci_map_rom +EXPORT_SYMBOL vmlinux 0x00ad440a md_write_start +EXPORT_SYMBOL vmlinux 0x00b3c897 generic_listxattr +EXPORT_SYMBOL vmlinux 0x00b9bea3 md_check_recovery +EXPORT_SYMBOL vmlinux 0x00cd9a14 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x00d499c0 kdb_current_task +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e8a979 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x00ea2999 kthread_bind +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x012c7bc6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x0143b55e security_path_rename +EXPORT_SYMBOL vmlinux 0x01450530 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0x0154c858 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015a4221 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017bc19d deactivate_super +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188b017 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x01934f7b padata_start +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01af661f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c72108 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x01d00644 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x01d7030f security_inode_init_security +EXPORT_SYMBOL vmlinux 0x01d9102b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x01f792b6 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x01fe800f vme_slave_request +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0226ebda read_cache_pages +EXPORT_SYMBOL vmlinux 0x02404e50 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x025120ec dquot_resume +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0255656b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x02607ba1 inet6_getname +EXPORT_SYMBOL vmlinux 0x0263b02b snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x026b04fc sync_blockdev +EXPORT_SYMBOL vmlinux 0x026b2cf8 udp_prot +EXPORT_SYMBOL vmlinux 0x026b5c2d __kfree_skb +EXPORT_SYMBOL vmlinux 0x0272b4e9 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027934aa tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0279cbf6 devm_ioremap +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x028f5204 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a12968 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02ad375b cdev_device_add +EXPORT_SYMBOL vmlinux 0x02b7d9c2 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x02c2b4e5 proc_symlink +EXPORT_SYMBOL vmlinux 0x02ce76ee try_to_release_page +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e73468 of_find_backlight +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eba345 con_is_visible +EXPORT_SYMBOL vmlinux 0x02ec7561 fget_raw +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02fe3def pci_enable_msi +EXPORT_SYMBOL vmlinux 0x030049e7 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x0302cb19 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x03059ded d_alloc +EXPORT_SYMBOL vmlinux 0x0308afca flush_signals +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03447b05 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0350dee7 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036935cc module_refcount +EXPORT_SYMBOL vmlinux 0x03798b12 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b8ded8 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03c11e9a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x03d5212c of_platform_device_create +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0429c735 may_umount +EXPORT_SYMBOL vmlinux 0x04320f8d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x04366a15 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x045d2805 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x046abf65 current_in_userns +EXPORT_SYMBOL vmlinux 0x046c7b97 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x048c1529 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x048e4b89 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x04925f96 of_match_node +EXPORT_SYMBOL vmlinux 0x04938a0c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x04a5f1a2 follow_down_one +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0515c652 __icmp_send +EXPORT_SYMBOL vmlinux 0x05170fec xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x0521e7ff mount_subtree +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05306d87 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055213ab rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x056956be devm_free_irq +EXPORT_SYMBOL vmlinux 0x056ae800 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x05910013 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x05a8bce2 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x05aa0952 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x05ad7742 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05b717db vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x05bfbb5a tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x05ca18a2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05dab5d2 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x05de13e9 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x05eee48e file_open_root +EXPORT_SYMBOL vmlinux 0x05ef2d06 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x05fc1cc3 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x05fe234e find_inode_nowait +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0620a028 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x062b3080 iunique +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065b550a nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x06619a26 mdio_device_create +EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x067ea780 mutex_unlock +EXPORT_SYMBOL vmlinux 0x06807c35 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x069112e0 soft_cursor +EXPORT_SYMBOL vmlinux 0x0696154c mmc_remove_host +EXPORT_SYMBOL vmlinux 0x069b6d8b flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x069faa5e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x06a336bf jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06c8f36c netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x070b914d set_user_nice +EXPORT_SYMBOL vmlinux 0x0728a49d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0752ada5 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x07760bb5 sync_filesystem +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x078300d3 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x0793dc38 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a8f51b __skb_checksum +EXPORT_SYMBOL vmlinux 0x07b76e6c inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x07bf4084 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d2375b km_new_mapping +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07e4c861 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x07f165de flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080b2024 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08131567 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x08199197 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0823daf8 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0834829c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x0835bb9b mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x083861d6 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084d0d1b napi_complete_done +EXPORT_SYMBOL vmlinux 0x0851b2ef input_set_timestamp +EXPORT_SYMBOL vmlinux 0x0857a308 dquot_release +EXPORT_SYMBOL vmlinux 0x08690bbf __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0875efbd kernel_sendpage +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0884dc87 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x0886340b fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x08883515 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x089fe931 tty_hangup +EXPORT_SYMBOL vmlinux 0x08ae9395 ping_prot +EXPORT_SYMBOL vmlinux 0x08c4a459 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x08d054fc blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x08e17da8 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f3f869 of_dev_put +EXPORT_SYMBOL vmlinux 0x09098cdf mmc_request_done +EXPORT_SYMBOL vmlinux 0x091b587e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x091bf45c remap_pfn_range +EXPORT_SYMBOL vmlinux 0x092e3684 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x09407801 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x09477b4a dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x095741a7 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x0963ff77 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x0968b6f9 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09852a14 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x0986d96e bio_clone_fast +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099c2da4 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x09a7534c devm_request_resource +EXPORT_SYMBOL vmlinux 0x09ad85a1 sort_r +EXPORT_SYMBOL vmlinux 0x09b1dd19 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x09c416aa blkdev_put +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d9bdae generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x09ea28e3 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x09f3bac4 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0a0e967e path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2d8a46 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a38b0a8 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a492e5b watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x0a62356b inet_frags_fini +EXPORT_SYMBOL vmlinux 0x0a63dc87 simple_setattr +EXPORT_SYMBOL vmlinux 0x0a6b62d8 cdrom_open +EXPORT_SYMBOL vmlinux 0x0a6c9714 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x0a6db712 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x0a719343 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0a759a41 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x0a77ff31 seq_open +EXPORT_SYMBOL vmlinux 0x0a7a7a5e kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x0a876494 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa92814 key_validate +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ac9d1c8 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0aebe2b8 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x0af9c3a5 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x0b0b61d6 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1bd704 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b22e520 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x0b26dbd3 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x0b40d7cf _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4a3736 md_reload_sb +EXPORT_SYMBOL vmlinux 0x0b514028 dev_set_alias +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b75b087 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0b924f1f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x0b94059e xfrm_register_type +EXPORT_SYMBOL vmlinux 0x0b98e1b7 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x0bb97603 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc6b09e sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x0bcdb005 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x0bcde5dd unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x0bd20a8f neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x0bd45b17 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0bd5fceb eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0bdf729f xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0beee9e0 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x0bf0743b snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x0c08573b mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x0c0a3e5b phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x0c1a5d71 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x0c1aeb56 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x0c231928 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2ae60e vc_resize +EXPORT_SYMBOL vmlinux 0x0c5d5cb0 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c750a43 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x0c79280d __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca7762d input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x0cb43a52 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc741f4 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d144af0 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x0d1f3640 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x0d2c4f46 fs_parse +EXPORT_SYMBOL vmlinux 0x0d322865 phy_attached_print +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4719b5 sock_no_getname +EXPORT_SYMBOL vmlinux 0x0d501e41 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d594ea3 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0d5fe58d netif_rx +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d7ac45f set_anon_super +EXPORT_SYMBOL vmlinux 0x0da94ee1 check_disk_change +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbc0367 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd42595 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x0ddcc111 pci_enable_device +EXPORT_SYMBOL vmlinux 0x0e099e13 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e21d72e snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x0e325a19 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0e686a90 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x0e9aa06b tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x0ea1fcb1 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0edcf2c0 seq_path +EXPORT_SYMBOL vmlinux 0x0ee44df0 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0a1157 mdiobus_read +EXPORT_SYMBOL vmlinux 0x0f21d497 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x0f29c528 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x0f667d1e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x0f782324 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x0f7c6f8d xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f872f13 phy_loopback +EXPORT_SYMBOL vmlinux 0x0f8fe1c0 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x0f9c35d5 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0fa25c4a inode_permission +EXPORT_SYMBOL vmlinux 0x0fa2886c pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x0fa3c222 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x0faa510a jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb14d69 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbb15ec input_inject_event +EXPORT_SYMBOL vmlinux 0x0fc8c6b7 fasync_helper +EXPORT_SYMBOL vmlinux 0x0fd1e661 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdad32a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x101ef634 __module_get +EXPORT_SYMBOL vmlinux 0x102d594e blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x103572db ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104ac4a6 cad_pid +EXPORT_SYMBOL vmlinux 0x1062fa22 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1085d5ee down_read_killable +EXPORT_SYMBOL vmlinux 0x10b5b24b param_set_charp +EXPORT_SYMBOL vmlinux 0x10b5fcbc kmalloc_caches +EXPORT_SYMBOL vmlinux 0x10b6acd4 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10cf23fb param_set_uint +EXPORT_SYMBOL vmlinux 0x10d8170e snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10f7455c vfs_get_super +EXPORT_SYMBOL vmlinux 0x10f8772b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111df8f6 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x112eda70 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x11500b2f d_lookup +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116d79f9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11829e5c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x119c5cc8 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x11abff0c pci_match_id +EXPORT_SYMBOL vmlinux 0x11ae4652 vme_master_request +EXPORT_SYMBOL vmlinux 0x11c1298d bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x11c1cb23 input_register_handler +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e3604b dev_disable_lro +EXPORT_SYMBOL vmlinux 0x11eb8c82 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x123ac0fa __serio_register_port +EXPORT_SYMBOL vmlinux 0x1266976b sk_net_capable +EXPORT_SYMBOL vmlinux 0x127f5751 security_path_unlink +EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x12830a65 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x128a742d migrate_page +EXPORT_SYMBOL vmlinux 0x1291242a hmm_mirror_register +EXPORT_SYMBOL vmlinux 0x12a2a558 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cd7b71 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x12d84b36 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x12da3409 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x12e58301 get_task_cred +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1312b7cb snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x13141734 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133568af icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x1337bda9 arp_send +EXPORT_SYMBOL vmlinux 0x13498a80 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1356ab2d dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1372af3e skb_seq_read +EXPORT_SYMBOL vmlinux 0x13811ff3 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x138be64e eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x13a419dd ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e11429 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f7bbfd dqput +EXPORT_SYMBOL vmlinux 0x1400d797 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x140634c0 skb_split +EXPORT_SYMBOL vmlinux 0x14307872 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x143d1381 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x144cf3b2 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1471d05d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x1499303c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x14b17659 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x14bc17f8 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x14c3eeb5 blk_rq_init +EXPORT_SYMBOL vmlinux 0x14ca4b8c dst_release +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e89d33 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x1516917e pps_event +EXPORT_SYMBOL vmlinux 0x151c490e jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x151fea35 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x1524c27d jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x152643e0 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15355f24 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x15400ddd pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x15450395 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15b2d9b1 iterate_dir +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x15df0a2c tty_unlock +EXPORT_SYMBOL vmlinux 0x15e90e16 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x15f214b9 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x160599b7 generic_writepages +EXPORT_SYMBOL vmlinux 0x160a0808 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628973d netdev_alert +EXPORT_SYMBOL vmlinux 0x162a1554 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x163becd7 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x1660b19e phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1665cb57 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x16673543 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x169a2048 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x16ab351f logfc +EXPORT_SYMBOL vmlinux 0x16bc5961 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x16c47b48 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x16ce2eaf simple_transaction_read +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1729793c __pci_register_driver +EXPORT_SYMBOL vmlinux 0x172d060d security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x1738c19e _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x1773d1bc mmc_of_parse +EXPORT_SYMBOL vmlinux 0x1775bd17 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x17867914 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x1789d3fd xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x17a62b4d vfs_getattr +EXPORT_SYMBOL vmlinux 0x17cb2341 netdev_printk +EXPORT_SYMBOL vmlinux 0x17d51920 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x17e1b3fa lock_rename +EXPORT_SYMBOL vmlinux 0x17f2e70f fifo_set_limit +EXPORT_SYMBOL vmlinux 0x17f69a15 generic_write_checks +EXPORT_SYMBOL vmlinux 0x17fceeeb flush_dcache_page +EXPORT_SYMBOL vmlinux 0x17fcf21a phy_drivers_register +EXPORT_SYMBOL vmlinux 0x1806578e __destroy_inode +EXPORT_SYMBOL vmlinux 0x18429e74 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1873e28e fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f6fd4d rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x18f834f8 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x190fdec4 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x1912be44 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x19183436 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x191a4feb devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x191b1161 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x19242e38 efi +EXPORT_SYMBOL vmlinux 0x195acf09 sock_no_connect +EXPORT_SYMBOL vmlinux 0x195d4ac9 memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0x1960c189 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x199eb0e5 find_lock_entry +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b8690e i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ca663a pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x19dae206 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x19f98013 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x19fba794 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a4ebc65 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x1a4effb3 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1a5379e1 unregister_console +EXPORT_SYMBOL vmlinux 0x1a566f4e inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a66ad15 kmap_high +EXPORT_SYMBOL vmlinux 0x1a6c5e98 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x1a7590b4 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a80690a xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a91d45b km_report +EXPORT_SYMBOL vmlinux 0x1a998136 kill_block_super +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0x1aea166f scsi_host_get +EXPORT_SYMBOL vmlinux 0x1afd5ca8 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b37510f fget +EXPORT_SYMBOL vmlinux 0x1b424e51 d_obtain_root +EXPORT_SYMBOL vmlinux 0x1b448f20 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x1b4a81b7 poll_initwait +EXPORT_SYMBOL vmlinux 0x1b4f9b9b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1b609a99 proto_register +EXPORT_SYMBOL vmlinux 0x1b60b411 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8d4357 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x1b9d8a6c snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x1bb392ed dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x1bbb8cb7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1befbdba __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1c3da5c2 arp_tbl +EXPORT_SYMBOL vmlinux 0x1c3e475b mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x1c3e4874 dput +EXPORT_SYMBOL vmlinux 0x1c424537 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x1c48cc75 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1c52b9bb kill_pgrp +EXPORT_SYMBOL vmlinux 0x1c5ad2c6 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c7fc438 irq_set_chip +EXPORT_SYMBOL vmlinux 0x1c92cc7c param_ops_charp +EXPORT_SYMBOL vmlinux 0x1c95f095 amba_release_regions +EXPORT_SYMBOL vmlinux 0x1c99b9f3 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x1c9cb106 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x1caf4c2b wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cb4ea02 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x1cc0d330 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1cdb5d7f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1cdd665b tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1cee7d21 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d1bba4b vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap +EXPORT_SYMBOL vmlinux 0x1d4804f0 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x1d8a2c13 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x1da717b0 user_revoke +EXPORT_SYMBOL vmlinux 0x1db85b2e nlmsg_notify +EXPORT_SYMBOL vmlinux 0x1db913b4 file_modified +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddffa10 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1def09e2 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1e08bac6 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e137d1b pci_select_bars +EXPORT_SYMBOL vmlinux 0x1e184705 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e227e0e show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x1e2a8ec6 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x1e31f3b3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x1e645824 console_start +EXPORT_SYMBOL vmlinux 0x1e677914 tty_devnum +EXPORT_SYMBOL vmlinux 0x1e6cd2c2 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8094d9 key_put +EXPORT_SYMBOL vmlinux 0x1e832dd7 dquot_alloc +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea6720d super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1eb985e1 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1ec51b07 mr_table_dump +EXPORT_SYMBOL vmlinux 0x1ecf488b d_exact_alias +EXPORT_SYMBOL vmlinux 0x1ed56043 secpath_set +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edeec7a neigh_update +EXPORT_SYMBOL vmlinux 0x1ef363b9 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x1efab6d6 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x1f01a3b3 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x1f41c69a km_query +EXPORT_SYMBOL vmlinux 0x1f4982ab skb_trim +EXPORT_SYMBOL vmlinux 0x1f4f4741 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1f4f9b39 thaw_bdev +EXPORT_SYMBOL vmlinux 0x1f572d63 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1f58b867 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x1f58bae3 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x1f6ec9d9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x1f702534 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8d62fb kmap_to_page +EXPORT_SYMBOL vmlinux 0x1f96e22b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x1f974847 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x1fa16fa1 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1fbad0c2 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdcc92c fb_set_var +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fed6a65 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1ff9c440 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x2005753f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x200a65b1 iget5_locked +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200d4878 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x2018c2d5 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x204b05f8 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20664fe6 ata_print_version +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207d7cc8 mdio_device_register +EXPORT_SYMBOL vmlinux 0x20846110 down_killable +EXPORT_SYMBOL vmlinux 0x208d1367 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a7de0d fb_show_logo +EXPORT_SYMBOL vmlinux 0x20b02448 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x20d18048 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x20d45ab7 input_setup_polling +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20f3ef2a security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21137c9a scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x21159daf pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x212133db xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0x212ef4bf param_set_bool +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213f535d do_splice_direct +EXPORT_SYMBOL vmlinux 0x214add22 netdev_warn +EXPORT_SYMBOL vmlinux 0x215323c0 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x215adc81 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21772df1 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x217753c9 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x2195b1bb of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x2197aeb5 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x21b93c77 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d24ee1 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21f530f2 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x2211fc4c dma_set_mask +EXPORT_SYMBOL vmlinux 0x22197aa8 unlock_rename +EXPORT_SYMBOL vmlinux 0x222d8932 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224e3429 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x224e8699 dump_page +EXPORT_SYMBOL vmlinux 0x2250bef1 sock_i_uid +EXPORT_SYMBOL vmlinux 0x22548d53 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x226657c3 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x22667acb dev_change_flags +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x229499b1 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bb3dd1 uart_match_port +EXPORT_SYMBOL vmlinux 0x22bf8867 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2343834f twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x234a6a3d __seq_open_private +EXPORT_SYMBOL vmlinux 0x23619091 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2367c77a balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x236d1bc8 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x236e513a inc_node_state +EXPORT_SYMBOL vmlinux 0x2376a4fa sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x23852fe6 mntput +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239c3af9 ppp_input_error +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbdeed _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23ebe2b5 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x23ec8529 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23eea787 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x23f9c5ce xps_needed +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fd7551 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x240df58f __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242d8cc3 block_commit_write +EXPORT_SYMBOL vmlinux 0x2430861a generic_setlease +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24541de4 noop_fsync +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245ac0af vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2487e0fa pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x2491a088 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x24a316b6 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b97378 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x24cac039 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e72ce9 of_clk_get +EXPORT_SYMBOL vmlinux 0x24e7549e pci_iomap +EXPORT_SYMBOL vmlinux 0x24f48414 do_SAK +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25453eee scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x25460c43 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x2589dd5c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259cb3c5 phy_device_remove +EXPORT_SYMBOL vmlinux 0x259db84e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x25a05fd3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x25a428c5 pci_find_resource +EXPORT_SYMBOL vmlinux 0x25a873b0 vfs_fsync +EXPORT_SYMBOL vmlinux 0x25ae4aec netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x25b43050 inet_select_addr +EXPORT_SYMBOL vmlinux 0x25c318c4 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x2602dcce tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260e5957 key_task_permission +EXPORT_SYMBOL vmlinux 0x2631a21c path_has_submounts +EXPORT_SYMBOL vmlinux 0x2632549b cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x2635b903 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x263811e0 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263d9da8 clkdev_hw_alloc +EXPORT_SYMBOL vmlinux 0x264354f1 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x26653da9 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x26982ac0 generic_fillattr +EXPORT_SYMBOL vmlinux 0x26b089f0 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x26b59fd9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x26bb851f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26cb434d devm_clk_get +EXPORT_SYMBOL vmlinux 0x26d6e599 registered_fb +EXPORT_SYMBOL vmlinux 0x27213205 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273968be to_ndd +EXPORT_SYMBOL vmlinux 0x27478ef4 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278afb45 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x279ccee4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c68705 node_states +EXPORT_SYMBOL vmlinux 0x27c8d7ba dump_skip +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d169c1 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x27d19d62 locks_free_lock +EXPORT_SYMBOL vmlinux 0x27f9000d bio_list_copy_data +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282ca2c2 d_invalidate +EXPORT_SYMBOL vmlinux 0x282e8a3b vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x28471fa8 tcp_check_req +EXPORT_SYMBOL vmlinux 0x285a8ba5 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x2880d473 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x288940d0 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x289ffeca sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x28aafa3e mpage_readpages +EXPORT_SYMBOL vmlinux 0x28af4efa snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x28d020e3 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x28daf68c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x28e80c37 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x28fd069e dquot_quota_on +EXPORT_SYMBOL vmlinux 0x28feaf31 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x2919c201 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x291b9e64 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x291d4e55 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x2948c661 open_exec +EXPORT_SYMBOL vmlinux 0x294b4650 finish_no_open +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x295d0710 dquot_disable +EXPORT_SYMBOL vmlinux 0x2976ac3c get_cached_acl +EXPORT_SYMBOL vmlinux 0x297742e6 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x29819e07 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x298b0575 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x2994557b mntget +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29ad601f dev_uc_add +EXPORT_SYMBOL vmlinux 0x29c37c56 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x29ca9f5b __lock_page +EXPORT_SYMBOL vmlinux 0x29d75c87 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29e92740 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x29f41620 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x2a13d748 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x2a238342 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a2fed1c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a464438 vfs_unlink +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a99d312 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa1505a param_set_copystring +EXPORT_SYMBOL vmlinux 0x2aba654a generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x2ac15f72 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x2ac3a181 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x2ac71a93 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x2ac83a15 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x2acfa402 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x2ae10c48 hmm_range_unregister +EXPORT_SYMBOL vmlinux 0x2aec0283 vme_bus_num +EXPORT_SYMBOL vmlinux 0x2b05b9e0 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x2b066020 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2b139b8f inet6_bind +EXPORT_SYMBOL vmlinux 0x2b18ab1a d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x2b2d5f5f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x2b3060fc devm_memunmap +EXPORT_SYMBOL vmlinux 0x2b3d3288 redraw_screen +EXPORT_SYMBOL vmlinux 0x2b42f1ef touch_atime +EXPORT_SYMBOL vmlinux 0x2b543f33 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x2b588d52 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2b5ab97d _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x2b606461 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x2b683cbd scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6c3d0f configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x2b739398 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2b75bd5f nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x2b9290a9 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2b9928fa simple_getattr +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9c7db3 prepare_creds +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba18feb phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2bb33077 vscnprintf +EXPORT_SYMBOL vmlinux 0x2bbfb12f release_firmware +EXPORT_SYMBOL vmlinux 0x2bc58b3d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x2bcafd4a tty_throttle +EXPORT_SYMBOL vmlinux 0x2bcdc382 set_binfmt +EXPORT_SYMBOL vmlinux 0x2bed5fdc tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x2bf2e160 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2bfcfbdb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c0095a4 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x2c02d2ff device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x2c07273f mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c1630c8 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x2c18945c __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c398b04 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2c4c7046 tcp_child_process +EXPORT_SYMBOL vmlinux 0x2c63205e security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c72472a dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c8a5c5c snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x2c8fe8d3 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x2c90a8f8 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2c93929c inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x2c9d3756 vsnprintf +EXPORT_SYMBOL vmlinux 0x2ca02846 inet_ioctl +EXPORT_SYMBOL vmlinux 0x2caed9a9 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x2caf72cf key_move +EXPORT_SYMBOL vmlinux 0x2cb0336a dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2cb04086 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x2cb96d2b phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x2cf3b2dd iterate_fd +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2337d9 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d38f060 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3f815b proc_remove +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d51a34e sg_miter_skip +EXPORT_SYMBOL vmlinux 0x2d561ba4 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da81bff _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2dc6245d file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2dcb3eb2 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2ddbe3a1 iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x2ddd9e2a vme_dma_request +EXPORT_SYMBOL vmlinux 0x2ddf6579 set_nlink +EXPORT_SYMBOL vmlinux 0x2de33629 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2deb1591 sock_alloc +EXPORT_SYMBOL vmlinux 0x2dec67cd _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x2df9b4b9 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x2e047cd1 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x2e0881d1 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1bd509 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2bc272 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e49c7f2 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x2e94df62 framebuffer_release +EXPORT_SYMBOL vmlinux 0x2ea5ed97 genl_notify +EXPORT_SYMBOL vmlinux 0x2eb57b87 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2ebef932 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee15c1b __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x2ee7710a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1260b4 dma_find_channel +EXPORT_SYMBOL vmlinux 0x2f12eddc bdi_register +EXPORT_SYMBOL vmlinux 0x2f167bc3 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2f1cc499 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2f1f715b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x2f2a1597 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f38a335 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2f46dfa9 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x2f4b97b0 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f63082c dcb_setapp +EXPORT_SYMBOL vmlinux 0x2f659c9e dump_truncate +EXPORT_SYMBOL vmlinux 0x2f6769df of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x2f6ea6d2 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7a8a2e tcf_block_put +EXPORT_SYMBOL vmlinux 0x2f7c4917 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2f89731c key_revoke +EXPORT_SYMBOL vmlinux 0x2f90ffbc kernel_connect +EXPORT_SYMBOL vmlinux 0x2f91ce7f max8998_update_reg +EXPORT_SYMBOL vmlinux 0x2f97d372 revert_creds +EXPORT_SYMBOL vmlinux 0x2f9e092f pci_assign_resource +EXPORT_SYMBOL vmlinux 0x2fa58325 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2fb57e14 vme_irq_request +EXPORT_SYMBOL vmlinux 0x2fc11002 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x2fcd85de tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x2fcf019d __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff3d3d0 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2ff827c7 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x300cdcb4 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x30275bfb __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3031199c input_close_device +EXPORT_SYMBOL vmlinux 0x30712029 phy_device_create +EXPORT_SYMBOL vmlinux 0x307f6e34 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x30887ca9 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30de7019 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31002330 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310ed212 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3120afa6 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31280f3c __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x313727b0 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314852c7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x314b8617 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x314bfba1 input_open_device +EXPORT_SYMBOL vmlinux 0x314d06bb netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x315c71a5 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x315cb7f8 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x316bb1a0 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x31846980 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin +EXPORT_SYMBOL vmlinux 0x31a0e058 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31bfc900 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31fcc3d1 of_match_device +EXPORT_SYMBOL vmlinux 0x32406c33 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x325369b7 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x32665d02 mmput_async +EXPORT_SYMBOL vmlinux 0x327085fb crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x3274b2f0 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3281ac48 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x329aafdf scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x329b03cb unload_nls +EXPORT_SYMBOL vmlinux 0x329d3ef2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x329e71a4 padata_free_shell +EXPORT_SYMBOL vmlinux 0x32bcf0db truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x32bfb5cf abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32ce446c mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x32d05d32 amba_find_device +EXPORT_SYMBOL vmlinux 0x32f255fb __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x32f42231 make_kuid +EXPORT_SYMBOL vmlinux 0x33072371 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x33124d20 of_node_put +EXPORT_SYMBOL vmlinux 0x3334710a rtnl_notify +EXPORT_SYMBOL vmlinux 0x33704730 tcp_poll +EXPORT_SYMBOL vmlinux 0x339b596c dma_resv_fini +EXPORT_SYMBOL vmlinux 0x339dad0a netdev_update_features +EXPORT_SYMBOL vmlinux 0x33ac7c71 serio_reconnect +EXPORT_SYMBOL vmlinux 0x33acdd92 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x33b9bcb7 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x33cbc510 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e9e577 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f39d4f of_node_get +EXPORT_SYMBOL vmlinux 0x341000b1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x3414ff4e dquot_get_state +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3421d3bc rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x34312aed phy_write_paged +EXPORT_SYMBOL vmlinux 0x344040b3 snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x34514f6c security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x34594b49 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x345b979c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x34661e74 d_add_ci +EXPORT_SYMBOL vmlinux 0x34693777 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x3474c524 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a829c1 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x34b62b56 keyring_search +EXPORT_SYMBOL vmlinux 0x34d53d31 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x34e22992 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x34e37e57 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x34e8b91f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fbb512 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x34feb408 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x35010ace blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b5209 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x351d3409 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x3528683f of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x3533eff0 rio_query_mport +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3554872f rtc_add_groups +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x35642e95 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35696cb2 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x3576a97f uart_suspend_port +EXPORT_SYMBOL vmlinux 0x359cf2f0 is_bad_inode +EXPORT_SYMBOL vmlinux 0x359ec7f9 __free_pages +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b4a984 phy_device_register +EXPORT_SYMBOL vmlinux 0x35d7efc3 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x35e1ee75 phy_init_hw +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x35fb6b7f pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x35fea1e7 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x36053b38 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x362a2069 skb_checksum +EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e4747 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36709114 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3679da8e inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x369a2bcb __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x36d9af5d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x36dc237b padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x36e4523c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x36e8b2b7 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x36f3ce5d nf_getsockopt +EXPORT_SYMBOL vmlinux 0x3710df87 follow_down +EXPORT_SYMBOL vmlinux 0x371b4f14 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x37273526 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x372bb11a vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374a161b of_n_size_cells +EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3756e099 dump_emit +EXPORT_SYMBOL vmlinux 0x375fb061 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37aad6cd rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split +EXPORT_SYMBOL vmlinux 0x37bca6a1 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d0861f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x37d9d453 __lock_buffer +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e8853c iov_iter_init +EXPORT_SYMBOL vmlinux 0x37e8d39d pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x37ec17b5 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x37ee20c6 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37febce5 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x37feedc8 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x38078e82 i2c_release_client +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382512c8 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x38450225 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x3881de6e param_set_ullong +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3893f9bc finish_open +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bbc7f1 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x38ceeea1 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x39105102 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x3914c862 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x3916d238 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x391cf724 put_user_pages +EXPORT_SYMBOL vmlinux 0x392e8dee dentry_open +EXPORT_SYMBOL vmlinux 0x3937e35e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39463241 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x396225ae __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x396c42b8 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x396c73d5 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39745772 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x397959b3 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x3980426e tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x399232ac netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a12ca7 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x39a6bb9f fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x39a85b2d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x39b2d3b3 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x39b2da85 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39e1adb5 tty_set_operations +EXPORT_SYMBOL vmlinux 0x39e7d6ec inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x39ec5e4a snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x3a03d1e4 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x3a0f58ce single_release +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1876e0 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3a1a3b99 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0x3a2347b1 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a401c15 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a59e248 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x3a6c1a9a dm_put_table_device +EXPORT_SYMBOL vmlinux 0x3a8754df km_policy_notify +EXPORT_SYMBOL vmlinux 0x3a97c814 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x3a9a258b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x3ab715dc scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abf6e96 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae3c1c6 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x3af92fcf device_add_disk +EXPORT_SYMBOL vmlinux 0x3b13fe42 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0x3b1503b1 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x3b19e521 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3b22fcd4 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b449641 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3b4c2f57 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x3b4f9af3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b64ea22 mr_dump +EXPORT_SYMBOL vmlinux 0x3b697738 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x3b917bbf complete_and_exit +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bdc7365 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c0a7473 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1d5364 bio_put +EXPORT_SYMBOL vmlinux 0x3c31285f unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x3c3dc1df kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c4def55 ip_frag_init +EXPORT_SYMBOL vmlinux 0x3c51cf3f ptp_clock_event +EXPORT_SYMBOL vmlinux 0x3c578e9e netpoll_print_options +EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c957728 md_flush_request +EXPORT_SYMBOL vmlinux 0x3ca9a085 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x3cb05a30 d_tmpfile +EXPORT_SYMBOL vmlinux 0x3cd49925 kernel_write +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d008868 user_path_create +EXPORT_SYMBOL vmlinux 0x3d035681 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3d04480f vmap +EXPORT_SYMBOL vmlinux 0x3d1600fd tcp_parse_options +EXPORT_SYMBOL vmlinux 0x3d18401f __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d45be00 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3d46a1e7 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x3d52fb7f unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5de68d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3d5f5df3 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3d61e6cc writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3d8c8fc0 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x3d9d0e41 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x3da9ac26 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x3dab2200 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x3dbd3594 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3dc92459 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3dca9782 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcbb9b1 pci_find_bus +EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3decb0c9 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0cad49 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3e156d64 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x3e15facc devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e35f7cf tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3e374afa unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3e3c07fc netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x3e590d22 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x3e60ea24 bdget_disk +EXPORT_SYMBOL vmlinux 0x3e610311 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3e63937e inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x3e67009c bd_set_size +EXPORT_SYMBOL vmlinux 0x3e771fbd fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x3e8297a3 nla_reserve +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e90dcf1 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e93434e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x3e9eab8a phy_find_first +EXPORT_SYMBOL vmlinux 0x3ea5d84a of_dev_get +EXPORT_SYMBOL vmlinux 0x3eb9bf45 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x3ec7687e add_to_pipe +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ef5d48d is_nd_btt +EXPORT_SYMBOL vmlinux 0x3ef5f11d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f20e8fe skb_unlink +EXPORT_SYMBOL vmlinux 0x3f216b04 kill_pid +EXPORT_SYMBOL vmlinux 0x3f3a076e call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x3f3e4692 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5f45fb skb_find_text +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f690f26 kobject_init +EXPORT_SYMBOL vmlinux 0x3f6ed025 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3f7ab145 fsync_bdev +EXPORT_SYMBOL vmlinux 0x3f80dc38 block_truncate_page +EXPORT_SYMBOL vmlinux 0x3f82e931 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3f87f99b nobh_write_end +EXPORT_SYMBOL vmlinux 0x3f88c8ae refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8f2b17 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3fadba99 seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x3fb01823 sync_file_create +EXPORT_SYMBOL vmlinux 0x3fbd1f29 bio_init +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd5f434 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3fee29b4 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x3fefee15 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x3ff83db2 _dev_alert +EXPORT_SYMBOL vmlinux 0x3fff657c nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0x40126044 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x40286e55 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x402ccfd6 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x40318df1 is_subdir +EXPORT_SYMBOL vmlinux 0x40376ea1 param_get_invbool +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x403d84a8 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x4042504c devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x40858891 skb_pull +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409751b3 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a4c2c8 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40af2759 make_kgid +EXPORT_SYMBOL vmlinux 0x40b0b455 __snd_pcm_lib_xfer +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 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f88f75 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x41076bc8 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x411753ab iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x4129bd29 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x4141308c rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x414396fc rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x415e3e82 phy_connect +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 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41c02927 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x41db181d skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x41e21522 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x41f90524 of_root +EXPORT_SYMBOL vmlinux 0x41fddf9e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x42149d2d nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423e2b55 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x4254497d simple_nosetlease +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x426cc85f inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x427691cd param_ops_bint +EXPORT_SYMBOL vmlinux 0x42799147 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429c5e45 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x429e91cf fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x42a88374 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x42c48892 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x42ecc5f5 of_get_property +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430ca6bb sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43383cd0 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x434d555e dquot_scan_active +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436e47a0 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x4380c0d9 proc_create +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43961403 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x439eb8ea inet_release +EXPORT_SYMBOL vmlinux 0x43a0c04a filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x43bfbe6a param_set_bint +EXPORT_SYMBOL vmlinux 0x43c5e5c1 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x43ceb80a ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x43d6a538 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x441cecc4 scsi_print_command +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x4433d628 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x4441cb27 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x445d37e6 iget_locked +EXPORT_SYMBOL vmlinux 0x445f8e87 simple_empty +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x448a5b55 audit_log_start +EXPORT_SYMBOL vmlinux 0x44acce42 pci_dev_put +EXPORT_SYMBOL vmlinux 0x44ad47c6 pipe_lock +EXPORT_SYMBOL vmlinux 0x44b47d03 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d3c7de scsi_add_device +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4502b15d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4506d55d gro_cells_init +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x451713fb get_tree_nodev +EXPORT_SYMBOL vmlinux 0x4517e672 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x4520e18f of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453edb6a wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4549cbe5 simple_statfs +EXPORT_SYMBOL vmlinux 0x4562a134 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4563564a filp_open +EXPORT_SYMBOL vmlinux 0x457236e6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4591f9d2 keyring_clear +EXPORT_SYMBOL vmlinux 0x45942f4c __put_user_ns +EXPORT_SYMBOL vmlinux 0x45b5137d ppp_unit_number +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45d8fb03 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x45e11313 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x45e57029 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x45eac239 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x45f45eea uart_update_timeout +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461d1d3b dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x4625445d sget_fc +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46387d5e proc_create_single_data +EXPORT_SYMBOL vmlinux 0x463c1015 invalidate_partition +EXPORT_SYMBOL vmlinux 0x4654a840 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x465afd7b noop_qdisc +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4677c86a d_move +EXPORT_SYMBOL vmlinux 0x467e793a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x46819801 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x46865a2b mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46b97060 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d94c6f tcp_req_err +EXPORT_SYMBOL vmlinux 0x46ee70a2 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x4703de3f iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x471aa064 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x472c4d7e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x474cdf55 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x4768189c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x476953e2 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4787a695 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a38c64 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x47b98e22 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x47bff83a tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cd0215 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x47e16fbd dev_get_flags +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f7554c snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x480733e5 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4808f057 sg_miter_next +EXPORT_SYMBOL vmlinux 0x4823beaa inode_init_always +EXPORT_SYMBOL vmlinux 0x483d3f32 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x48519260 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485ea53e eth_type_trans +EXPORT_SYMBOL vmlinux 0x48640896 key_link +EXPORT_SYMBOL vmlinux 0x48654737 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x48697768 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x486fe8f0 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x489e9ce3 dst_alloc +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b3fc91 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bb80db hex2bin +EXPORT_SYMBOL vmlinux 0x48c68213 simple_lookup +EXPORT_SYMBOL vmlinux 0x48cb057c register_sysctl_table +EXPORT_SYMBOL vmlinux 0x48da2cb2 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x48e11920 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x48e26c6f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x48e8e6da clk_bulk_get +EXPORT_SYMBOL vmlinux 0x48ee3f5e clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x490420ea i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490a0538 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x4943afb9 cred_fscmp +EXPORT_SYMBOL vmlinux 0x494b7973 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4972a0b0 inet_accept +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a8309b dst_init +EXPORT_SYMBOL vmlinux 0x49c07a4e vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x49cc2f62 dm_io +EXPORT_SYMBOL vmlinux 0x49d3457a cpumask_any_but +EXPORT_SYMBOL vmlinux 0x49dac695 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x4a0a612f netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x4a0e86a2 simple_unlink +EXPORT_SYMBOL vmlinux 0x4a162a84 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a3f468d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4a409026 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x4a46b067 pps_register_source +EXPORT_SYMBOL vmlinux 0x4a72b1f7 nf_log_register +EXPORT_SYMBOL vmlinux 0x4a77ad7a twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x4a8070eb jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x4a889549 scsi_device_put +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9d36aa jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4ac7a34d simple_link +EXPORT_SYMBOL vmlinux 0x4acebd1a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x4addae74 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x4ade8b2e kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x4ae15d25 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4ae423df del_gendisk +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0cfc20 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x4b170455 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b2cddd7 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x4b473ec6 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x4b4975de blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b5176ff blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4b5c30e2 ppp_input +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b723113 tso_build_data +EXPORT_SYMBOL vmlinux 0x4b7e4d72 of_get_parent +EXPORT_SYMBOL vmlinux 0x4b935194 vm_node_stat +EXPORT_SYMBOL vmlinux 0x4ba13657 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x4ba2e9f6 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bb7fb2e devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x4bb8750f iget_failed +EXPORT_SYMBOL vmlinux 0x4bbb5630 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4bff6ccd fb_class +EXPORT_SYMBOL vmlinux 0x4c1ca5fd __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c285808 fput +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2cd3ea kobject_del +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5667bc xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x4c7c6cd7 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x4c9eeba9 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x4ca22c3e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4cb4a2aa elv_rb_find +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc1866b sockfd_lookup +EXPORT_SYMBOL vmlinux 0x4cc73ff6 stream_open +EXPORT_SYMBOL vmlinux 0x4cd3964b skb_store_bits +EXPORT_SYMBOL vmlinux 0x4ce01b6d skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4cf235d4 pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x4cfebc19 __breadahead +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d28e7cf iov_iter_advance +EXPORT_SYMBOL vmlinux 0x4d2d4630 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4d337651 sk_alloc +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d633c89 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x4d634803 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x4d6cb8e5 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0x4d6de099 file_ns_capable +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d762768 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da33044 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4db5d08e get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4dc1e4a0 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e0c8eea ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x4e10bbec nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x4e19e2e7 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4e26948e nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x4e2c1535 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3fc7dd devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4e4ec2d2 tty_port_open +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e511363 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7650bd dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x4e927ecc pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x4e95bb98 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4ea88daf nf_log_set +EXPORT_SYMBOL vmlinux 0x4edb3d23 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x4ee8beb9 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4eed5a39 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4eef6411 migrate_page_states +EXPORT_SYMBOL vmlinux 0x4efe2402 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x4f069e86 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x4f13b3ef inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x4f191483 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x4f1a375a set_cached_acl +EXPORT_SYMBOL vmlinux 0x4f1ca274 eth_header_parse +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f22d6f9 completion_done +EXPORT_SYMBOL vmlinux 0x4f507cdb pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x4f600301 param_set_ulong +EXPORT_SYMBOL vmlinux 0x4f69197a dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f82b2d5 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4f8354db get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4fa350a0 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x4fa417ce dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4fb5377e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4fbda2e9 simple_readpage +EXPORT_SYMBOL vmlinux 0x4fe71ebe snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x4febb669 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x4ff819fe clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5005f589 sound_class +EXPORT_SYMBOL vmlinux 0x5007c3e4 param_ops_byte +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x503f26f8 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5047d482 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x505a0a4e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x505d307a lookup_bdev +EXPORT_SYMBOL vmlinux 0x5068835e mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50771d80 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x5078b201 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x50990c17 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50cce2ba nf_unregister_net_hooks +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 0x5100ddb8 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x510cc7aa blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x5120c1bd mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x512b1662 locks_init_lock +EXPORT_SYMBOL vmlinux 0x513fae76 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x514cc273 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x51538bfd __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x515d7426 flush_old_exec +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516b9b71 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x51760850 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x51803618 udp_seq_start +EXPORT_SYMBOL vmlinux 0x51c16b17 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x51c916c4 qdisc_put +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52171c74 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x5228809d __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x5229776c blackhole_netdev +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x5230ff96 mmc_add_host +EXPORT_SYMBOL vmlinux 0x5233ab4d __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x523e164c netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x5245ef07 sk_stream_error +EXPORT_SYMBOL vmlinux 0x52627868 ipv4_specific +EXPORT_SYMBOL vmlinux 0x52718915 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5276e4bb flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x527b7fcc snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x528a0e50 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x528a27b1 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x528b62d0 _dev_emerg +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52919a72 of_device_unregister +EXPORT_SYMBOL vmlinux 0x52956220 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x529a2ebd get_thermal_instance +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52ea0c39 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5303ea5a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530bb593 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x531383cd tty_port_init +EXPORT_SYMBOL vmlinux 0x53222ec0 md_update_sb +EXPORT_SYMBOL vmlinux 0x53396f0b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x5365cfe3 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x53838575 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x5387a301 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x53942bc5 set_groups +EXPORT_SYMBOL vmlinux 0x5399e902 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x539c7eee flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x53a2c43b of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x53b37225 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x53b37d10 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x53b992fd __inet_hash +EXPORT_SYMBOL vmlinux 0x53c80f98 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x53febee8 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x5410ce70 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x5420a41d blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x5425690b mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x5425d25a vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54526665 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x5464f529 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x5465c4ae empty_aops +EXPORT_SYMBOL vmlinux 0x5467a2bf generic_read_dir +EXPORT_SYMBOL vmlinux 0x54718bb0 sync_inode +EXPORT_SYMBOL vmlinux 0x5477761a netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x547c48b4 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b400ca neigh_seq_start +EXPORT_SYMBOL vmlinux 0x54dfc873 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f339f4 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x5501ba8d pci_get_class +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550894cc vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x550927d9 rproc_alloc +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55440366 inet6_release +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a7de32 sk_wait_data +EXPORT_SYMBOL vmlinux 0x55d4eb90 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x55d69795 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x55d6a3db snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x55e1fcbe get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ef3cf0 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x55f9f627 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x55fd62ca vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5635b7e1 tcf_block_get +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56488e60 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x564d280e snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x5667a277 down_timeout +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5694ed24 phy_start +EXPORT_SYMBOL vmlinux 0x5697a1d4 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x569e2127 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x56be87ff __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f9a385 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x56fc18c9 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x570803a0 unlock_page +EXPORT_SYMBOL vmlinux 0x571ed86b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x572bbc52 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x57324c33 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5737525a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x57433afd kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577abb01 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x57962473 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x5797c87b snd_timer_open +EXPORT_SYMBOL vmlinux 0x57af7fa2 __pagevec_release +EXPORT_SYMBOL vmlinux 0x57c487c2 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x57c6a2fd param_get_long +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f9f8ec sock_efree +EXPORT_SYMBOL vmlinux 0x57fea01c genl_unregister_family +EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x58049ee3 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x5810114b blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581ceaee blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584c63f7 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58aefff6 sk_capable +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c4c0a4 has_capability +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f3fa96 __find_get_block +EXPORT_SYMBOL vmlinux 0x58fa94a4 netif_napi_del +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x59140f22 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x5917e0e9 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x591c2fe5 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5934a9db bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594ca452 fqdir_exit +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59518722 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x59659d35 phy_resume +EXPORT_SYMBOL vmlinux 0x5984ae34 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x5998d205 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59dcd020 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f4a06 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a3a7e8f pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x5a440b03 from_kuid +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a629282 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x5a6d6b5d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5a701f10 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x5aafc859 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5ab73a34 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x5abff6d2 brioctl_set +EXPORT_SYMBOL vmlinux 0x5acf8c8f input_flush_device +EXPORT_SYMBOL vmlinux 0x5ad9bf1b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5aebf1dd rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x5af7cdf9 neigh_for_each +EXPORT_SYMBOL vmlinux 0x5b0444bc blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b24d283 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x5b288c2b seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5b2f3919 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x5b303a44 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b433948 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b55120e install_exec_creds +EXPORT_SYMBOL vmlinux 0x5b9f0e31 param_set_long +EXPORT_SYMBOL vmlinux 0x5badbb78 string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5bb93e38 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bbeefef devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x5bc48f5e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x5bd8be7d md_handle_request +EXPORT_SYMBOL vmlinux 0x5bdaa20c vme_master_mmap +EXPORT_SYMBOL vmlinux 0x5bdb6767 bio_add_page +EXPORT_SYMBOL vmlinux 0x5be1e584 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bee3210 dev_mc_init +EXPORT_SYMBOL vmlinux 0x5bfc61ac dev_uc_init +EXPORT_SYMBOL vmlinux 0x5c1562ec generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5c29422a snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x5c398360 of_translate_address +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c6adf45 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c752de0 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5ca7ea7d invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x5ca81bf8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cd841b4 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5ce9a942 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d03cbc5 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x5d1349bd unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5d1442b1 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x5d249d9d hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5d2c509b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d38b308 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5abb99 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x5d5cbc86 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x5d635436 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x5d6b8fde alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x5d7033df phy_attach +EXPORT_SYMBOL vmlinux 0x5d72f417 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x5d810f97 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x5d87dc2e vfs_readlink +EXPORT_SYMBOL vmlinux 0x5d9104ac kset_register +EXPORT_SYMBOL vmlinux 0x5d912d68 dev_activate +EXPORT_SYMBOL vmlinux 0x5d9e5ba2 get_phy_device +EXPORT_SYMBOL vmlinux 0x5dab54c0 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5db8bb15 dm_get_device +EXPORT_SYMBOL vmlinux 0x5dced014 set_page_dirty +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize +EXPORT_SYMBOL vmlinux 0x5de8d573 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x5df07dc4 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x5e131e94 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x5e1b4842 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e483248 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5e58c152 __sock_create +EXPORT_SYMBOL vmlinux 0x5e6de86c dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5e701c7c submit_bio +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e81487f cdev_device_del +EXPORT_SYMBOL vmlinux 0x5e82970c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8991fe blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5e8ecf60 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x5e93f5a7 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9d3f1d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebacf3c __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5ebadd0e __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x5ebb3eb3 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x5ec604b9 nf_log_packet +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ed9c450 inode_init_once +EXPORT_SYMBOL vmlinux 0x5edcea4f seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x5eee2d49 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x5eeef5bd sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1ab863 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x5f2eab35 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x5f30728e __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x5f4368f8 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x5f53d0d4 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5f62f617 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f8306ed proc_set_user +EXPORT_SYMBOL vmlinux 0x5f849a69 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5f8618d8 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x5f8d0759 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x5fa6cb6a page_mapped +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff1afed set_disk_ro +EXPORT_SYMBOL vmlinux 0x5ff8c319 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x60044733 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x60061203 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6013c97f vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x601dae71 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60449b02 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6068a0bf dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x606a189a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x607d9b79 skb_dump +EXPORT_SYMBOL vmlinux 0x60907a82 mdiobus_get_phy +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 0x60ad2600 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x60be361a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c6d490 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x60cbb38f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60dde6d6 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x60e8a630 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x60f3edce config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x60f5169a bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x611c01bc twl6040_power +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x61230696 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61305950 netdev_change_features +EXPORT_SYMBOL vmlinux 0x61334733 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x613c2ba8 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x61418310 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61594fe6 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6161bf2d param_array_ops +EXPORT_SYMBOL vmlinux 0x6164da42 md_done_sync +EXPORT_SYMBOL vmlinux 0x616fb3ff __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x617607d8 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x617a9ff4 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x617e77cf xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b986ce end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61d15162 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x61e6608d input_reset_device +EXPORT_SYMBOL vmlinux 0x61e7b6ff __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ee0f4e scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x61f09fc5 tty_register_driver +EXPORT_SYMBOL vmlinux 0x61f94527 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x61fd30cc ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62184631 sock_init_data +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624692c7 sget +EXPORT_SYMBOL vmlinux 0x625ffe32 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x626b6cab snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627d4340 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628d30f8 rproc_put +EXPORT_SYMBOL vmlinux 0x62b313a0 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x62bdf5ea phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62c95da5 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x62da8e38 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x62e5437b set_posix_acl +EXPORT_SYMBOL vmlinux 0x62e908b4 filp_close +EXPORT_SYMBOL vmlinux 0x630f2cb8 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6320a593 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6322c611 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x6323c96f md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x632c5424 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x63337de9 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x63736587 inet6_offloads +EXPORT_SYMBOL vmlinux 0x63a4cfff pci_clear_master +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a8b723 netdev_notice +EXPORT_SYMBOL vmlinux 0x63aade96 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x63ad6419 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x63ba5b5a abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x63ba6ff6 no_llseek +EXPORT_SYMBOL vmlinux 0x63ba8213 d_find_alias +EXPORT_SYMBOL vmlinux 0x63c11cf0 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d08d21 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x63e22d6c md_write_inc +EXPORT_SYMBOL vmlinux 0x63e7ae7b devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x64021085 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643522a8 drop_super +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x6464914e phy_validate_pause +EXPORT_SYMBOL vmlinux 0x646d5d12 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x6477b0f1 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648c1ffa wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649aeacb of_get_next_child +EXPORT_SYMBOL vmlinux 0x649ff9b1 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b79b22 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x64cf3596 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x64cf8581 may_umount_tree +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6510bccc ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65168ad7 fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651baa45 phy_stop +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6520a47f mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65462aaa hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x657cd802 sock_edemux +EXPORT_SYMBOL vmlinux 0x6589b87a snd_jack_new +EXPORT_SYMBOL vmlinux 0x658beb9c snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65ac12bf dev_printk +EXPORT_SYMBOL vmlinux 0x65c3df7c backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d5c8ce page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65da9598 follow_pfn +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65fa7e34 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x6613ad92 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6616f440 neigh_destroy +EXPORT_SYMBOL vmlinux 0x664001a4 genphy_update_link +EXPORT_SYMBOL vmlinux 0x66454667 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x664afa37 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x66542d37 of_phy_connect +EXPORT_SYMBOL vmlinux 0x66574953 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667646e2 sock_create +EXPORT_SYMBOL vmlinux 0x6677bb55 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x66829fd9 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x669418f5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x669c1db2 register_console +EXPORT_SYMBOL vmlinux 0x669ebf1c nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x66b67472 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x66b86286 inet_frags_init +EXPORT_SYMBOL vmlinux 0x66c77d9d simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x66cd8ca4 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x66cf9c02 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66f780e7 dev_open +EXPORT_SYMBOL vmlinux 0x66f93689 generic_file_open +EXPORT_SYMBOL vmlinux 0x670d4857 __nla_reserve +EXPORT_SYMBOL vmlinux 0x6712c79c send_sig_info +EXPORT_SYMBOL vmlinux 0x67156681 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x671b9af1 misc_deregister +EXPORT_SYMBOL vmlinux 0x67221297 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x672d2c11 kmap +EXPORT_SYMBOL vmlinux 0x672fac13 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x672fd649 __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674eadce cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x6756a5a4 seq_puts +EXPORT_SYMBOL vmlinux 0x675d0034 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x677572ef setattr_prepare +EXPORT_SYMBOL vmlinux 0x6782d34a rename_lock +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67901c88 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x6796282f nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x679c39b4 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x67a5d806 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d38ab6 netdev_crit +EXPORT_SYMBOL vmlinux 0x67dab232 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x67dfaeaa bdget +EXPORT_SYMBOL vmlinux 0x67ea9369 ihold +EXPORT_SYMBOL vmlinux 0x67fc4f0f alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6808c968 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x68112359 follow_up +EXPORT_SYMBOL vmlinux 0x6835ae58 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x683f60ff ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x6856e046 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x687111af inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x68749716 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x6876e155 snd_jack_report +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6883588b pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a4a65b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68b5d9f1 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x68c9e5f2 kthread_stop +EXPORT_SYMBOL vmlinux 0x68f04558 _dev_notice +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x690dbf9e reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x6938c616 _dev_err +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x6961304d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6982a319 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b27ace thaw_super +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69bf424e cdev_alloc +EXPORT_SYMBOL vmlinux 0x69cbfc5d mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x69cd679e proc_set_size +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69f0c9f8 finalize_exec +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a06fe13 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6a1b3bfc scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x6a1d63b4 tso_start +EXPORT_SYMBOL vmlinux 0x6a440a24 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x6a45a52b block_read_full_page +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a673791 ioremap_cached +EXPORT_SYMBOL vmlinux 0x6a79d1e9 nonseekable_open +EXPORT_SYMBOL vmlinux 0x6a7e6470 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x6a91ce5d key_invalidate +EXPORT_SYMBOL vmlinux 0x6a929b0f jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab93790 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af6653b unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b0775ae bio_devname +EXPORT_SYMBOL vmlinux 0x6b0fadc3 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x6b1ba424 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6b264450 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b322fbd __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x6b403ace inet6_protos +EXPORT_SYMBOL vmlinux 0x6b435e94 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b80eaa8 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8da2f4 set_blocksize +EXPORT_SYMBOL vmlinux 0x6b93d5e5 clear_inode +EXPORT_SYMBOL vmlinux 0x6b95d28d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6ba7bb0f snd_seq_root +EXPORT_SYMBOL vmlinux 0x6bb74187 kernel_read +EXPORT_SYMBOL vmlinux 0x6bb80cff vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc522f3 dcb_getapp +EXPORT_SYMBOL vmlinux 0x6bef1644 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bffa5ef sock_no_bind +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c32c447 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x6c476de9 dev_mc_del +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c620e33 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6c735028 pcim_iomap +EXPORT_SYMBOL vmlinux 0x6c7d09bd vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x6c7fad08 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c883042 vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0x6c96dd1c genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x6ca1045f touch_buffer +EXPORT_SYMBOL vmlinux 0x6cb0b802 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d03bf83 PageMovable +EXPORT_SYMBOL vmlinux 0x6d04bc5f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x6d061607 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x6d1194c6 input_set_keycode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5175fa kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d7180bf tso_count_descs +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6db83ba6 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6dc8f006 __put_page +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddc8bed pneigh_lookup +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e05123a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x6e2807fe block_write_begin +EXPORT_SYMBOL vmlinux 0x6e3b4050 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x6e44b2a2 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e5ff338 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6e66559a nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e782488 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x6e7b30e6 empty_zero_page +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9fdf10 sk_dst_check +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec46a09 pci_choose_state +EXPORT_SYMBOL vmlinux 0x6ecd806f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ed2fa86 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f10c1bc proc_mkdir +EXPORT_SYMBOL vmlinux 0x6f12c4db vme_register_bridge +EXPORT_SYMBOL vmlinux 0x6f1737a0 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x6f1a42f5 fqdir_init +EXPORT_SYMBOL vmlinux 0x6f22a31c tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x6f339cf9 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x6f57e3c4 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f7ede77 send_sig +EXPORT_SYMBOL vmlinux 0x6f8963e2 init_pseudo +EXPORT_SYMBOL vmlinux 0x6fa42613 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6fb1322f pci_iounmap +EXPORT_SYMBOL vmlinux 0x6fb73ea0 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd05cf3 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fff060d kfree_skb +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70006fbc reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x7012c18e mdio_driver_register +EXPORT_SYMBOL vmlinux 0x70138e03 inode_init_owner +EXPORT_SYMBOL vmlinux 0x70218c72 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x70298ac2 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7037578d __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x703c10f3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x70516309 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7061d3eb textsearch_destroy +EXPORT_SYMBOL vmlinux 0x70635194 ip_frag_next +EXPORT_SYMBOL vmlinux 0x706a08e3 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7074d8fe fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x7076a584 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7096b13e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x70bc9838 update_region +EXPORT_SYMBOL vmlinux 0x70c65e7d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x70db20ea fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x70e17fca end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x70f1ab42 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x710b1005 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x711dc297 __bread_gfp +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7156e1cc scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x715986a2 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717e0dc2 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x71831e7b sock_release +EXPORT_SYMBOL vmlinux 0x719997fe of_get_mac_address +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b40c11 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71dcef65 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x71dff42e security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x71e0b7a0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x71e74632 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x7223b07e mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x7228daa6 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7246bbe6 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x72532b1a sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x7263e620 noop_llseek +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x7286b3d1 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x72a4bcdd tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72ba6e17 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x72bf2b99 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x72c45bd6 nand_correct_data +EXPORT_SYMBOL vmlinux 0x72ccc559 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x72da7a9c zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f19e06 kern_unmount +EXPORT_SYMBOL vmlinux 0x72f694c8 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x73002281 get_disk_and_module +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 0x7335fb68 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x73438853 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x735f33b0 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x736f01a1 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x7370133d snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x7378ee0a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73859887 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x73a4377b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x73a7366f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x73b994a6 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x740c1d74 __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741d2d27 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74489a53 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x744eff5d register_cdrom +EXPORT_SYMBOL vmlinux 0x74652e58 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x74719057 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x747a843f nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7489bf66 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x748f6972 cdev_init +EXPORT_SYMBOL vmlinux 0x74967a03 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x74a43bbe netlink_net_capable +EXPORT_SYMBOL vmlinux 0x74a56fcf ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x74a80d4d nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x74ae2728 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x74aede25 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x74b60a9c mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca74c8 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x74d54e47 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fa9cc6 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x74fcca8f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x74ff4255 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x75020871 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x754f348a complete_all +EXPORT_SYMBOL vmlinux 0x756bf11b tty_register_device +EXPORT_SYMBOL vmlinux 0x759cde41 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x759eb8cd simple_release_fs +EXPORT_SYMBOL vmlinux 0x75a018c5 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x75a1b8fe scsi_scan_target +EXPORT_SYMBOL vmlinux 0x75a265a0 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x75a6ec2a pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x75aa0a51 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c4f7c5 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d48cf0 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75ec5bbd inet_sendmsg +EXPORT_SYMBOL vmlinux 0x76002de8 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765202dd bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7661f4c0 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76749526 vm_insert_page +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a6caf9 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x76ad9183 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x76b61908 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x76b884bf tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x76bffaba tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x76c731eb input_get_keycode +EXPORT_SYMBOL vmlinux 0x76c8983a of_device_alloc +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d30829 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9d861 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x76e6cc88 neigh_lookup +EXPORT_SYMBOL vmlinux 0x76e768cb generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x76ebf3a9 dquot_destroy +EXPORT_SYMBOL vmlinux 0x77041995 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x770e74e3 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x77100334 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x77325226 km_state_notify +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7745b5bd of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x774ea535 uart_resume_port +EXPORT_SYMBOL vmlinux 0x7751cbba dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x775a3703 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x77681eaa import_single_range +EXPORT_SYMBOL vmlinux 0x777ed304 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x778ac5a8 __close_fd +EXPORT_SYMBOL vmlinux 0x778ec9f3 snd_device_free +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b4051a skb_put +EXPORT_SYMBOL vmlinux 0x77ba822e of_get_address +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c4564c super_setup_bdi +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77eb755f generic_update_time +EXPORT_SYMBOL vmlinux 0x77f6c690 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x77f96e7b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x782076d1 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x78594b41 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x785b4657 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x7865f291 pci_set_master +EXPORT_SYMBOL vmlinux 0x7877ea1d of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x7879b726 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x787bc6e3 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7899c1d2 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a59dbf xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x78ac2640 skb_push +EXPORT_SYMBOL vmlinux 0x78bc5678 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x78ce6f3b flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x78d481e9 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x78d8fc93 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78fc6f91 passthru_features_check +EXPORT_SYMBOL vmlinux 0x78fdcead sock_i_ino +EXPORT_SYMBOL vmlinux 0x790069f2 put_tty_driver +EXPORT_SYMBOL vmlinux 0x7911478f dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x79ef811b __d_drop +EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a25e863 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7a260289 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a467af5 get_gendisk +EXPORT_SYMBOL vmlinux 0x7a53b1ce abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7a578e94 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x7a5aaae4 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x7a5e827d locks_delete_block +EXPORT_SYMBOL vmlinux 0x7a7beaeb dquot_acquire +EXPORT_SYMBOL vmlinux 0x7a9082fc tty_write_room +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa82fc3 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac6d6c3 __frontswap_load +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7ae37b14 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x7ae8051e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b0d1373 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7b2701db open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b363e5b skb_ext_add +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b618fc9 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x7b71a08e __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x7b9572f1 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7b9a872c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7bc0f826 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7bf4e62b mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1aa44a blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7c2e3799 vga_get +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4af0f2 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x7c50a15f devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x7c521fa0 amba_driver_register +EXPORT_SYMBOL vmlinux 0x7c803f6e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca9ef92 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x7cab7a5b of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7caf508c ps2_end_command +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb460f5 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7cb4e372 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7ccc7481 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7085b of_device_is_available +EXPORT_SYMBOL vmlinux 0x7cfae474 dev_addr_init +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d02fd01 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7d0c5738 iptun_encaps +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d27600d devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7d28d6ad xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7d31a3c8 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7d3afac5 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7d3e8fe3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x7d457d7f netdev_info +EXPORT_SYMBOL vmlinux 0x7d474d41 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d51d3db devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x7d5386f5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x7d591a92 peernet2id +EXPORT_SYMBOL vmlinux 0x7d5a3ecb nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7d5efd33 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7d753e44 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7da158a2 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7da6b646 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbfbcf1 __nla_put +EXPORT_SYMBOL vmlinux 0x7dcdc4d2 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df912a9 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x7e04501a uart_register_driver +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e19f394 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7e1b9189 tcp_mmap +EXPORT_SYMBOL vmlinux 0x7e28ba04 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e32e7c7 irq_stat +EXPORT_SYMBOL vmlinux 0x7e4437e6 kernel_bind +EXPORT_SYMBOL vmlinux 0x7e53b48d ip6_xmit +EXPORT_SYMBOL vmlinux 0x7e6b1b86 netif_napi_add +EXPORT_SYMBOL vmlinux 0x7e769757 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x7e8fdb5d scsi_init_io +EXPORT_SYMBOL vmlinux 0x7e90360a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x7edf1f1a flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7eef3e6e snd_device_new +EXPORT_SYMBOL vmlinux 0x7ef4e06e mmc_start_request +EXPORT_SYMBOL vmlinux 0x7ef6be26 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f062f1d padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2609f0 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7f32c6fc pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x7f38aed1 mdiobus_write +EXPORT_SYMBOL vmlinux 0x7f47ed90 should_remove_suid +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f63ca82 scmd_printk +EXPORT_SYMBOL vmlinux 0x7f77e811 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f83f17e sock_create_lite +EXPORT_SYMBOL vmlinux 0x7f843c31 make_bad_inode +EXPORT_SYMBOL vmlinux 0x7fadc46d rproc_add +EXPORT_SYMBOL vmlinux 0x7fba7217 snd_power_wait +EXPORT_SYMBOL vmlinux 0x7fd0e825 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe5fcb9 prepare_binprm +EXPORT_SYMBOL vmlinux 0x7ff2ab34 bio_copy_data +EXPORT_SYMBOL vmlinux 0x7ff3b187 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7ff73a06 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x8003f444 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x800eb95b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x801b9e02 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x801ee007 path_is_under +EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages +EXPORT_SYMBOL vmlinux 0x8054d045 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x805ad266 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x80616e0f cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8070c9db copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x80720e2e scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8074e70c pci_resize_resource +EXPORT_SYMBOL vmlinux 0x8083036b sock_register +EXPORT_SYMBOL vmlinux 0x80881b13 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x8099501b cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x80b9f853 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dfe3e0 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x80eb1159 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x8107cde4 pci_disable_device +EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81179136 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8117bcc8 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x81192304 make_kprojid +EXPORT_SYMBOL vmlinux 0x812426f4 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x812f3c55 misc_register +EXPORT_SYMBOL vmlinux 0x8130a9f0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x8149448a free_task +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816755d8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x816ab72d generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x817341b3 snd_timer_pause +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81859d57 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x81a09bb5 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x81a821a7 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x81aa083d tty_check_change +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f3aed1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82193a97 __krealloc +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x82234463 snd_timer_start +EXPORT_SYMBOL vmlinux 0x822ebb09 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x82528b42 bio_chain +EXPORT_SYMBOL vmlinux 0x82649b9d snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x8265b302 kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0x8279c296 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828f0604 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x82b07a23 d_make_root +EXPORT_SYMBOL vmlinux 0x82b30cbe dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x82b66b42 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x82c3b2ea ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x82d59c67 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x82d625c0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x830f80ea datagram_poll +EXPORT_SYMBOL vmlinux 0x8312155c ilookup +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8329a803 commit_creds +EXPORT_SYMBOL vmlinux 0x833a9054 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x8348217b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x8354be8d fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x83662908 block_write_end +EXPORT_SYMBOL vmlinux 0x8377fc0d down_write_killable +EXPORT_SYMBOL vmlinux 0x83796778 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x838abe94 pci_get_slot +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838e6366 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x839a2d44 unregister_netdev +EXPORT_SYMBOL vmlinux 0x839e090d simple_rename +EXPORT_SYMBOL vmlinux 0x83a6e16a hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0x83afb5f1 free_netdev +EXPORT_SYMBOL vmlinux 0x83b332f7 vga_tryget +EXPORT_SYMBOL vmlinux 0x83bfddee pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x83c1a1ec rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify +EXPORT_SYMBOL vmlinux 0x83dbad81 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x83e2ad14 nand_bch_init +EXPORT_SYMBOL vmlinux 0x83e92c3c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8443b25f sock_wmalloc +EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase +EXPORT_SYMBOL vmlinux 0x846408b5 blk_put_queue +EXPORT_SYMBOL vmlinux 0x846a60ba dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x846bba2f simple_write_end +EXPORT_SYMBOL vmlinux 0x847674d9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x848bb23f kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bb50a3 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x84bbfa36 config_group_init +EXPORT_SYMBOL vmlinux 0x84bf94c1 inode_set_flags +EXPORT_SYMBOL vmlinux 0x84c0ab7f unregister_nls +EXPORT_SYMBOL vmlinux 0x85128610 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x853c97a4 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x8544dc38 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x85517543 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856b3dca devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a6024c netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x85a7e5af napi_gro_frags +EXPORT_SYMBOL vmlinux 0x85aeba07 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x85b5aae3 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c33ca7 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x85da758e nobh_write_begin +EXPORT_SYMBOL vmlinux 0x85dbfdbf __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f004fa __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x85f4dfba fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x860420ed load_nls_default +EXPORT_SYMBOL vmlinux 0x860f5921 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8618cede put_disk +EXPORT_SYMBOL vmlinux 0x862bc663 memset16 +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864b81f9 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86506a4d seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x86648801 serio_bus +EXPORT_SYMBOL vmlinux 0x866788ad inet_bind +EXPORT_SYMBOL vmlinux 0x866f0a71 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x867711d2 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86ae957d invalidate_bdev +EXPORT_SYMBOL vmlinux 0x86c04e14 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x86c37a65 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x86dcf0a9 __quota_error +EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ffc108 pci_get_device +EXPORT_SYMBOL vmlinux 0x87090480 get_acl +EXPORT_SYMBOL vmlinux 0x870918e5 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x8714d6a3 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0x872f8a51 sock_no_listen +EXPORT_SYMBOL vmlinux 0x873e025c netlink_capable +EXPORT_SYMBOL vmlinux 0x87461158 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x876cab45 start_tty +EXPORT_SYMBOL vmlinux 0x8777e7ed posix_test_lock +EXPORT_SYMBOL vmlinux 0x87839af6 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x87a6370f bd_start_claiming +EXPORT_SYMBOL vmlinux 0x87a79073 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x87ac30b1 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x87ac7b61 mem_map +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c78192 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x88014ad0 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x880d7570 register_md_personality +EXPORT_SYMBOL vmlinux 0x881354e7 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881cb352 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x8853cd39 phy_driver_register +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x888cdd16 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x88a1c8d3 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x88a6afa1 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88b469f4 omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x88d918ef skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x89011b86 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x890f56ac dev_addr_del +EXPORT_SYMBOL vmlinux 0x89169e5c sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x89174d0e neigh_event_ns +EXPORT_SYMBOL vmlinux 0x891d6636 param_set_byte +EXPORT_SYMBOL vmlinux 0x891dd0c5 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x89241fc0 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x893e789b __lookup_constant +EXPORT_SYMBOL vmlinux 0x894c2b63 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x895f7a45 unix_get_socket +EXPORT_SYMBOL vmlinux 0x89671403 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x898eda91 netif_device_detach +EXPORT_SYMBOL vmlinux 0x89ac1ad7 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89d3500a phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x89d74088 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x89dc4916 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8a085bde pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8a0bbf19 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8a0ea688 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a23e320 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x8a315715 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x8a33a535 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x8a3784dc __xa_alloc +EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a5c5153 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x8a67006a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x8a73ade6 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7ebf96 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x8a851a19 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa25d21 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x8aae9800 __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ada2c4a nd_btt_version +EXPORT_SYMBOL vmlinux 0x8adabcdf jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8aec42bb read_dev_sector +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b086d39 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x8b0e7e32 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x8b1fea23 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8b30ba11 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x8b460367 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67e481 udp_disconnect +EXPORT_SYMBOL vmlinux 0x8b6f52aa dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x8b7c7042 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80db6d dm_register_target +EXPORT_SYMBOL vmlinux 0x8b82802d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x8b855987 audit_log +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9da3d7 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bb5af58 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x8bbb5a98 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x8bc8748d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x8bd127fd release_pages +EXPORT_SYMBOL vmlinux 0x8be6c08a generic_fadvise +EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring +EXPORT_SYMBOL vmlinux 0x8bfa4dae dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x8c028a92 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x8c069434 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x8c13af97 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8c6871fc gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x8c81cdc8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x8c8cff9d kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x8ccf2700 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cda02e9 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x8cdd2eca fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table +EXPORT_SYMBOL vmlinux 0x8ce1c038 omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x8ce4568b input_unregister_device +EXPORT_SYMBOL vmlinux 0x8ceecad3 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x8cf7a05a flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x8d375b95 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x8d3b372d pci_scan_slot +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d577ce8 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x8d6fa284 __devm_request_region +EXPORT_SYMBOL vmlinux 0x8d711bbc fs_lookup_param +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d989bd4 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x8da1f553 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x8da8982f netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x8db30c41 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x8db5cafb security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x8dbfb7e6 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df0ed4a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x8df243fa nd_device_notify +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node +EXPORT_SYMBOL vmlinux 0x8dff29c6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x8e060245 default_llseek +EXPORT_SYMBOL vmlinux 0x8e087668 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x8e116a88 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x8e2059b2 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x8e3fb01c security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x8e519973 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x8e5ef856 block_write_full_page +EXPORT_SYMBOL vmlinux 0x8e727580 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed +EXPORT_SYMBOL vmlinux 0x8eb65975 sock_create_kern +EXPORT_SYMBOL vmlinux 0x8ebf9bcd rtc_add_group +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed819b9 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8eec5aba no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x8f002005 simple_open +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0fcbdb fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8f11f5ad d_rehash +EXPORT_SYMBOL vmlinux 0x8f24b9c4 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x8f318d3f edac_mc_find +EXPORT_SYMBOL vmlinux 0x8f3625fe _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x8f366050 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f8e808d drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x8f907a7a register_sysctl +EXPORT_SYMBOL vmlinux 0x8f924b76 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9ef64f da903x_query_status +EXPORT_SYMBOL vmlinux 0x8fa7b2d1 f_setown +EXPORT_SYMBOL vmlinux 0x8fbf70b0 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fddd41a mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x8fddd863 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x8fdee473 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x8fe2bcea gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x9001556e processor +EXPORT_SYMBOL vmlinux 0x90102b34 file_path +EXPORT_SYMBOL vmlinux 0x90136b04 textsearch_register +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902e8962 __put_cred +EXPORT_SYMBOL vmlinux 0x904a3416 override_creds +EXPORT_SYMBOL vmlinux 0x90597a54 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x90686c75 freeze_super +EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x909aa24d dev_driver_string +EXPORT_SYMBOL vmlinux 0x90b1b8b2 proto_unregister +EXPORT_SYMBOL vmlinux 0x90b6da5f param_ops_uint +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d71d50 param_get_uint +EXPORT_SYMBOL vmlinux 0x90de93e2 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x90ecac88 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x90f1006d __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x90f39fb3 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x910563f4 skb_copy_header +EXPORT_SYMBOL vmlinux 0x91142a86 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x911bde31 dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x911f356f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x91348584 drop_nlink +EXPORT_SYMBOL vmlinux 0x9140e0bf dev_uc_del +EXPORT_SYMBOL vmlinux 0x9141069c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x91448aa1 from_kgid +EXPORT_SYMBOL vmlinux 0x91871154 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x918e48fb t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91ced6ea kmem_cache_free +EXPORT_SYMBOL vmlinux 0x92124d5d ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x92191ef8 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92312267 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923d9ee8 phy_detach +EXPORT_SYMBOL vmlinux 0x923ea194 __xa_insert +EXPORT_SYMBOL vmlinux 0x924dac9d __d_lookup_done +EXPORT_SYMBOL vmlinux 0x925a4f55 __check_sticky +EXPORT_SYMBOL vmlinux 0x925b21c0 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x926bff1d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x926c527e ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x92724ca9 km_state_expired +EXPORT_SYMBOL vmlinux 0x92765780 md_write_end +EXPORT_SYMBOL vmlinux 0x9287208e get_fs_type +EXPORT_SYMBOL vmlinux 0x9295fc09 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x92a1b6f6 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x92b49808 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c73c87 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x92d8f59e inet_sendpage +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f3d596 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330e304 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x93388935 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x934685e8 ns_capable +EXPORT_SYMBOL vmlinux 0x934767c7 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x9350eb66 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x935862b7 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x936aa1f5 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937cc5c4 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x9381d739 _dev_crit +EXPORT_SYMBOL vmlinux 0x9386c670 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x9389698b fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x939af599 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c3e8dd ata_link_printk +EXPORT_SYMBOL vmlinux 0x93c95f37 kill_litter_super +EXPORT_SYMBOL vmlinux 0x93cfe536 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x941926e6 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x9425caca _raw_write_lock +EXPORT_SYMBOL vmlinux 0x94270d27 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x942a3382 sock_no_accept +EXPORT_SYMBOL vmlinux 0x943d940b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness +EXPORT_SYMBOL vmlinux 0x947d24cc netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94990ff0 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x94a0e36d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x94b01d6b inc_nlink +EXPORT_SYMBOL vmlinux 0x94b08106 config_group_find_item +EXPORT_SYMBOL vmlinux 0x94b5d21f mount_bdev +EXPORT_SYMBOL vmlinux 0x94bd6892 genphy_loopback +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e22f0a security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x94e58614 blk_put_request +EXPORT_SYMBOL vmlinux 0x95012fa2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x95432f1d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955cc2a8 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x9560e285 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x9567cbb2 freeze_bdev +EXPORT_SYMBOL vmlinux 0x956a4dfe snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x95899e81 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x958cea0e pci_request_regions +EXPORT_SYMBOL vmlinux 0x95a0772d inode_dio_wait +EXPORT_SYMBOL vmlinux 0x95d232e2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x95d3d918 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x95d57c02 ps2_command +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95dcb403 clkdev_add +EXPORT_SYMBOL vmlinux 0x95edab57 nla_put +EXPORT_SYMBOL vmlinux 0x95f8c93f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x95fc893d i2c_transfer +EXPORT_SYMBOL vmlinux 0x9615b251 mount_single +EXPORT_SYMBOL vmlinux 0x962d6a71 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x9630cd6b simple_transaction_release +EXPORT_SYMBOL vmlinux 0x96326b19 __neigh_create +EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user +EXPORT_SYMBOL vmlinux 0x964e8621 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x96537761 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965a66a4 bio_split +EXPORT_SYMBOL vmlinux 0x965b50de __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x96817df9 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9691d321 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x96a9ec4b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x96aa6df0 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c2eb55 neigh_xmit +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96fa933c netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x97076790 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work +EXPORT_SYMBOL vmlinux 0x970e6d5a padata_free +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97221a23 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9728fc13 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9729b384 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x974a3c24 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x97518a67 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x97594005 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9766509c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x9768a48c qcom_scm_get_version +EXPORT_SYMBOL vmlinux 0x976e53e4 sock_wfree +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9798a17d netdev_emerg +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97ba8fa7 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x97bd019e end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c30e07 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x97c4cfb2 save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x97d0c161 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x97d664ae md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x97d818f3 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x98253d9d kset_unregister +EXPORT_SYMBOL vmlinux 0x98353ba0 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x984011f7 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x98414e35 phy_init_eee +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x98546df1 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor +EXPORT_SYMBOL vmlinux 0x98924eff snd_component_add +EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98c02d34 con_is_bound +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e69949 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x98ff429a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x9934e934 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x994191fc __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x994195a3 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x99430730 qdisc_reset +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9956d048 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all +EXPORT_SYMBOL vmlinux 0x9970bdc0 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x997c6a75 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x999c7162 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a7dc8d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x99b5b40e eth_mac_addr +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99dd4d61 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a17276f ilookup5 +EXPORT_SYMBOL vmlinux 0x9a1db9cc kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a29cfdc tcp_connect +EXPORT_SYMBOL vmlinux 0x9a50b271 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x9a51a267 generic_write_end +EXPORT_SYMBOL vmlinux 0x9a56082f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x9a563175 mmc_release_host +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5ee370 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x9a62dace inet_protos +EXPORT_SYMBOL vmlinux 0x9a66c3fd inet_frag_find +EXPORT_SYMBOL vmlinux 0x9a6a4d5f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9a72a24b fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x9a72aa9e of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec +EXPORT_SYMBOL vmlinux 0x9aa1ac7c phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x9aa6a1e4 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab08aae __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x9aba65b3 security_sb_remount +EXPORT_SYMBOL vmlinux 0x9acb8066 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x9ad41d3f page_address +EXPORT_SYMBOL vmlinux 0x9ae1c7c2 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x9af4287b mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x9b07fc98 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b290559 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b540dc4 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x9b668afb register_filesystem +EXPORT_SYMBOL vmlinux 0x9b66cc18 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7c3b48 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x9ba0a67e vme_bus_type +EXPORT_SYMBOL vmlinux 0x9ba1b497 pskb_extract +EXPORT_SYMBOL vmlinux 0x9ba9aa93 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x9ba9b194 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x9bd085ae xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9bd1a0c0 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x9bdee530 netpoll_setup +EXPORT_SYMBOL vmlinux 0x9be40f65 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x9bf2c033 inet_shutdown +EXPORT_SYMBOL vmlinux 0x9bf77cd0 param_ops_short +EXPORT_SYMBOL vmlinux 0x9c089091 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x9c1057e9 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9c13fba4 arp_xmit +EXPORT_SYMBOL vmlinux 0x9c16212f generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9c2534b3 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x9c3cb54d crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x9c411ddc devm_iounmap +EXPORT_SYMBOL vmlinux 0x9c532762 vme_slot_num +EXPORT_SYMBOL vmlinux 0x9c56c487 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9c7c5dce omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x9c7e4d80 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x9c87078c nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x9c8c9d0b seq_write +EXPORT_SYMBOL vmlinux 0x9c92b42c dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbec1ca jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd74c2f pci_free_irq +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ceac60a i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x9cf540d8 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x9cf88b64 irq_to_desc +EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1f9c21 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x9d230dfd i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x9d504802 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class +EXPORT_SYMBOL vmlinux 0x9d65dc68 dup_iter +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d7f77da __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x9d867cc0 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x9d8ac71d cdev_set_parent +EXPORT_SYMBOL vmlinux 0x9d9527c3 posix_lock_file +EXPORT_SYMBOL vmlinux 0x9d983534 __frontswap_store +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dc69c4a __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9dd8c494 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9ddf5ee8 notify_change +EXPORT_SYMBOL vmlinux 0x9e062641 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e34fd94 path_nosuid +EXPORT_SYMBOL vmlinux 0x9e4f4e9e snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e59785f dma_cache_sync +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e657acb register_quota_format +EXPORT_SYMBOL vmlinux 0x9e6a44da security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e7ed92d inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9e863aac of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea2a0fc i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x9eaf9fd9 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec9e71a scsi_host_put +EXPORT_SYMBOL vmlinux 0x9ed39a54 down_trylock +EXPORT_SYMBOL vmlinux 0x9ed46363 generic_permission +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eefef27 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x9efa0431 file_remove_privs +EXPORT_SYMBOL vmlinux 0x9f05c498 security_sock_graft +EXPORT_SYMBOL vmlinux 0x9f234ecb __sk_dst_check +EXPORT_SYMBOL vmlinux 0x9f241542 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x9f284f9c __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4877d6 cdrom_release +EXPORT_SYMBOL vmlinux 0x9f4b49ec dev_addr_flush +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f92799e generic_perform_write +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc19ce7 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x9fc5ff17 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x9fd1195c snd_device_register +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe8f9f6 current_time +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x9ff0e993 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9ff52771 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9ff54757 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002a373 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa00a7d83 md_register_thread +EXPORT_SYMBOL vmlinux 0xa0151f24 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xa02fa114 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa037b147 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa039118f snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa047a2cc tcf_em_register +EXPORT_SYMBOL vmlinux 0xa047fd92 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0xa048ae4a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa0490362 hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa061a54c blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa06d8a35 vfs_link +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xa07517ce param_get_string +EXPORT_SYMBOL vmlinux 0xa07875f1 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d560da write_one_page +EXPORT_SYMBOL vmlinux 0xa0d97606 ip6_route_me_harder +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 0xa0f40d16 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1093914 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xa115068c ptp_clock_register +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1562e31 set_wb_congested +EXPORT_SYMBOL vmlinux 0xa15865fa truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa174d8fe dns_query +EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue +EXPORT_SYMBOL vmlinux 0xa17ded56 snd_card_register +EXPORT_SYMBOL vmlinux 0xa1839690 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa1a33b03 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xa1a61a63 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c94e71 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user +EXPORT_SYMBOL vmlinux 0xa1dd679e blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa2002c69 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa2032ae2 register_netdevice +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2303539 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa24491bf ida_free +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa27a6ec0 ll_rw_block +EXPORT_SYMBOL vmlinux 0xa27b5e31 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28e9785 __scm_send +EXPORT_SYMBOL vmlinux 0xa2b171d0 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa2bc8846 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa2c0a9a9 __brelse +EXPORT_SYMBOL vmlinux 0xa2c3d5bc page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa2ebdaf8 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa325c5c9 serio_interrupt +EXPORT_SYMBOL vmlinux 0xa32981d1 config_item_set_name +EXPORT_SYMBOL vmlinux 0xa34e2ced dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xa3524e6a mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa35d2c19 import_iovec +EXPORT_SYMBOL vmlinux 0xa362f672 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa36a460f inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xa3817b46 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xa39d8ffd rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free +EXPORT_SYMBOL vmlinux 0xa3adc5c6 serio_open +EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3d4b6a7 keyring_alloc +EXPORT_SYMBOL vmlinux 0xa3db50a9 d_path +EXPORT_SYMBOL vmlinux 0xa3df63fe vm_mmap +EXPORT_SYMBOL vmlinux 0xa3e70c2a bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xa3f5a5b9 amba_device_register +EXPORT_SYMBOL vmlinux 0xa3fa43f8 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xa3fe143a proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xa400c0c0 unlock_buffer +EXPORT_SYMBOL vmlinux 0xa4076658 fb_blank +EXPORT_SYMBOL vmlinux 0xa40b5531 console_stop +EXPORT_SYMBOL vmlinux 0xa41712ea pci_claim_resource +EXPORT_SYMBOL vmlinux 0xa41c57ea kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa43ad3f8 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xa441da00 icmp6_send +EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa47db743 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa49168cd nf_log_trace +EXPORT_SYMBOL vmlinux 0xa493ce9d blk_register_region +EXPORT_SYMBOL vmlinux 0xa4aea63c vlan_for_each +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xa4bef054 sock_wake_async +EXPORT_SYMBOL vmlinux 0xa4cd2f6e remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xa4d0c3ca twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa4db31ff devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xa4efe0c4 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa4eff6e8 kill_fasync +EXPORT_SYMBOL vmlinux 0xa50036db pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xa53775ec jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa543c996 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa5447955 inet_offloads +EXPORT_SYMBOL vmlinux 0xa545bc12 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xa54feafe tty_unthrottle +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5654221 netlink_set_err +EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xa577d7bd tty_unregister_device +EXPORT_SYMBOL vmlinux 0xa57c9f51 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa5816539 netlink_ack +EXPORT_SYMBOL vmlinux 0xa58c493f udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xa5a58d70 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa5b08d4c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa5e7af5e mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xa5e92a22 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa5f11ecb devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xa5f69e87 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa63096e5 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa6525668 simple_get_link +EXPORT_SYMBOL vmlinux 0xa65ee216 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xa66a500a ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xa672b3d6 kobject_get +EXPORT_SYMBOL vmlinux 0xa67aac22 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa693c15b igrab +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6997cf5 vprintk_emit +EXPORT_SYMBOL vmlinux 0xa6a25bb6 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6ba624a phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa6d216a7 param_set_invbool +EXPORT_SYMBOL vmlinux 0xa6d5cfcb key_unlink +EXPORT_SYMBOL vmlinux 0xa6e85f29 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa6ecdeb4 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xa6ef62bb nla_append +EXPORT_SYMBOL vmlinux 0xa7146980 d_instantiate +EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xa715154d eth_validate_addr +EXPORT_SYMBOL vmlinux 0xa716522c skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa7285b60 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xa72bfd81 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xa7308338 from_kprojid +EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa73f7c0b devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xa746c34a mpage_writepage +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7505f8a __skb_pad +EXPORT_SYMBOL vmlinux 0xa7565b51 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xa758e1eb netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xa767a7df dev_load +EXPORT_SYMBOL vmlinux 0xa76c7815 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xa76dfc9e __f_setown +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78966d0 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xa79aa670 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa7b3181c up_read +EXPORT_SYMBOL vmlinux 0xa7bc594d dma_free_attrs +EXPORT_SYMBOL vmlinux 0xa7ce3c25 __page_symlink +EXPORT_SYMBOL vmlinux 0xa7da819c pci_scan_bus +EXPORT_SYMBOL vmlinux 0xa7e31b8e sg_miter_start +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xa817113c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xa829bc6f eth_gro_receive +EXPORT_SYMBOL vmlinux 0xa8326648 build_skb +EXPORT_SYMBOL vmlinux 0xa84064ab tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa843b3f2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84e8251 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xa867f17b ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xa8966f5e i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xa899caf4 single_open_size +EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b3818e mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xa8c4d4b0 cpu_tlb +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8dad99f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa8e16caa setup_new_exec +EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt +EXPORT_SYMBOL vmlinux 0xa8f4b475 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xa92138a9 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa9218579 init_task +EXPORT_SYMBOL vmlinux 0xa92201dc dma_resv_init +EXPORT_SYMBOL vmlinux 0xa92f0849 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xa93a7c0a of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xa95d0161 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9925ee4 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xa9a76e72 skb_queue_head +EXPORT_SYMBOL vmlinux 0xa9ab7cb0 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xa9ac505b mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xa9b6f2ff udp_gro_complete +EXPORT_SYMBOL vmlinux 0xa9cb18a6 inet_gro_receive +EXPORT_SYMBOL vmlinux 0xa9d13568 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xa9dc5131 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa9dfabef __bforget +EXPORT_SYMBOL vmlinux 0xa9e18be6 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xa9eb316e pci_save_state +EXPORT_SYMBOL vmlinux 0xa9f8672f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xa9ff7a91 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xaa016976 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xaa1608f1 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xaa19bca6 mmc_free_host +EXPORT_SYMBOL vmlinux 0xaa62fbd2 release_sock +EXPORT_SYMBOL vmlinux 0xaa672c41 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6b6bfd devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa762adb proc_create_data +EXPORT_SYMBOL vmlinux 0xaa8a9bbd xfrm_input +EXPORT_SYMBOL vmlinux 0xaaa44949 dev_trans_start +EXPORT_SYMBOL vmlinux 0xaab12ead of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xaac7843f security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xaacb1be0 devm_memremap +EXPORT_SYMBOL vmlinux 0xaace733e tcp_make_synack +EXPORT_SYMBOL vmlinux 0xaad0a8e0 nand_write_page_raw +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad154c4 param_ops_string +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadab304 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xaadd4b20 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xaafd9237 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab16399f sock_from_file +EXPORT_SYMBOL vmlinux 0xab315853 _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0xab32e94c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xab333688 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xab363b49 vif_device_init +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab4c5b15 config_item_put +EXPORT_SYMBOL vmlinux 0xab5b1fee security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xab5bf6bd config_item_get +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6975bd dma_supported +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab735372 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab80ab58 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xab8abe24 dev_get_stats +EXPORT_SYMBOL vmlinux 0xab92faa0 security_path_mknod +EXPORT_SYMBOL vmlinux 0xab9d0ecb kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xab9dec43 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0xabb0c4e1 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xabb8c38e __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xabc9ddbe clkdev_alloc +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0ffaa1 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xac198ab1 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac220cb5 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xac2a41d0 sock_rfree +EXPORT_SYMBOL vmlinux 0xac2b7f67 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac54dcfe __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6d2a6e xfrm_state_add +EXPORT_SYMBOL vmlinux 0xac821643 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac88dd44 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xaca12d6e end_page_writeback +EXPORT_SYMBOL vmlinux 0xaca1f1a7 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb31ecf _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xacb43939 d_drop +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdb9ff3 seq_putc +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0f4003 param_get_short +EXPORT_SYMBOL vmlinux 0xad223ac3 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0xad27d604 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xad41ae1d xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0xad467006 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xad4948db csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xad624b89 ether_setup +EXPORT_SYMBOL vmlinux 0xad6b58a1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xad6f7144 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad82daa0 module_layout +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9dd493 account_page_redirty +EXPORT_SYMBOL vmlinux 0xadaa1f2f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xadacfa94 udplite_prot +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb2a797 vme_lm_request +EXPORT_SYMBOL vmlinux 0xadb767ca twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xadb932b3 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc2c580 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xadcb0df8 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0xade07063 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xadfb4e27 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae05d014 vga_client_register +EXPORT_SYMBOL vmlinux 0xae0aa6f7 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xae25c141 vm_event_states +EXPORT_SYMBOL vmlinux 0xae2c3d7e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae78a11a __netif_schedule +EXPORT_SYMBOL vmlinux 0xaea918c8 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xaecc27aa put_fs_context +EXPORT_SYMBOL vmlinux 0xaed945f9 key_alloc +EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xaeec1c5f zap_page_range +EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xaf1ae829 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xaf22476e input_set_capability +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf412b7c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xaf4d162f pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf748ee8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf86ba75 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xafa3afed netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xafb2ef2f dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xafbaadf5 genphy_read_status +EXPORT_SYMBOL vmlinux 0xafeafd83 fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0xafec9a3f param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb0047336 dquot_enable +EXPORT_SYMBOL vmlinux 0xb00a50db nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xb01a2247 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb0236908 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb02c404b kernel_accept +EXPORT_SYMBOL vmlinux 0xb032d51d tty_do_resize +EXPORT_SYMBOL vmlinux 0xb03f0b0c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb05d3ff0 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06845a4 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb091b31d cfb_imageblit +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xb0d1b5e5 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xb0d3ad3e dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xb0d62426 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xb0e08ab2 tty_lock +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e84749 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xb0ec89fc nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb10e94f9 get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12a8ac7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb130c00e ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb1450e2e phy_device_free +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb1666a81 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb194dce9 seq_release_private +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c3fe4f xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1eeadb1 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb1f2e271 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xb1f7a6f3 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb1fa82f8 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xb2061533 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xb208afc7 submit_bh +EXPORT_SYMBOL vmlinux 0xb21694a5 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xb221a81b phy_disconnect +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb240c89c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma +EXPORT_SYMBOL vmlinux 0xb24e565d ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb25ad201 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb25f86af __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xb26f9c0a get_vm_area +EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xb2ad0f18 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2c237ad kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xb2c91c82 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xb2d0053e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xb2d2b224 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2e2f182 find_vma +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2e8d08c inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb2ed223c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb309e5b1 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb325a4c1 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb330abc6 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xb33c807f vc_cons +EXPORT_SYMBOL vmlinux 0xb3593f3a xfrm_state_update +EXPORT_SYMBOL vmlinux 0xb35f7410 setattr_copy +EXPORT_SYMBOL vmlinux 0xb3667805 dqstats +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36f799a done_path_create +EXPORT_SYMBOL vmlinux 0xb3956d71 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb39a3028 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb3a064a6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xb3a4f51c cpu_user +EXPORT_SYMBOL vmlinux 0xb3c2c456 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xb3ce294d snd_register_device +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d943a6 inode_insert5 +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fe05a3 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xb40848b7 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xb4164601 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb430e5b9 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45d7496 snd_timer_stop +EXPORT_SYMBOL vmlinux 0xb46fd6a0 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xb47d17ea __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb484855a of_find_property +EXPORT_SYMBOL vmlinux 0xb48ad9b2 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb493f640 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xb4970a59 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4b50709 seq_read +EXPORT_SYMBOL vmlinux 0xb4b877ea vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb4bdfe88 snd_timer_new +EXPORT_SYMBOL vmlinux 0xb4cbec5b blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4fad224 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xb50f9786 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xb511bac6 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb54003c4 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xb561ac5b wait_for_completion +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5827b8d pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a14dee generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c1f08a set_security_override +EXPORT_SYMBOL vmlinux 0xb5ce9756 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xb5d157c0 pipe_unlock +EXPORT_SYMBOL vmlinux 0xb5e57503 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb5fdb882 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xb5fe919c simple_fill_super +EXPORT_SYMBOL vmlinux 0xb60c38dd phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb62f451c _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xb6542ce7 kill_bdev +EXPORT_SYMBOL vmlinux 0xb65ceee4 dev_add_offload +EXPORT_SYMBOL vmlinux 0xb6783428 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69a1cd1 cdev_del +EXPORT_SYMBOL vmlinux 0xb69fc630 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b56298 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run +EXPORT_SYMBOL vmlinux 0xb6bf8c10 kunmap +EXPORT_SYMBOL vmlinux 0xb6da24ee blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb6da3cda __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ecdb62 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb70acd15 mmc_erase +EXPORT_SYMBOL vmlinux 0xb714d774 pci_find_capability +EXPORT_SYMBOL vmlinux 0xb734edee blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0xb77f0806 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xb7941ae7 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xb7aff3e6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d44591 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xb7e8afd7 tty_name +EXPORT_SYMBOL vmlinux 0xb7f678ab skb_clone +EXPORT_SYMBOL vmlinux 0xb80e8483 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xb81b8545 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb8327505 inet_gso_segment +EXPORT_SYMBOL vmlinux 0xb8397899 register_sound_special +EXPORT_SYMBOL vmlinux 0xb83b9082 init_special_inode +EXPORT_SYMBOL vmlinux 0xb851133a ata_port_printk +EXPORT_SYMBOL vmlinux 0xb8553b8d skb_clone_sk +EXPORT_SYMBOL vmlinux 0xb85cf43a stop_tty +EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0xb883846a tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xb8910958 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89b92af pci_release_region +EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xb8ad3f14 security_sk_clone +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b566ce input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xb8c42b29 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8d4700d scsi_device_get +EXPORT_SYMBOL vmlinux 0xb8e78579 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8efef9e clk_get +EXPORT_SYMBOL vmlinux 0xb90479cb d_add +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb91b2a53 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb933bc27 of_device_register +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94ccc46 snd_card_new +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb96819a8 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xb97d910f mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xb98331fc __do_once_done +EXPORT_SYMBOL vmlinux 0xb9a21d8e gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9a9df00 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xb9ab3eb2 elv_rb_add +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9c231e2 param_ops_long +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f381a9 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xb9fc2cd1 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba0795a0 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xba0d39cf mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xba3b2917 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5c4c78 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xba72ddc7 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0xba8c609d __next_node_in +EXPORT_SYMBOL vmlinux 0xbaa7c8c5 krealloc +EXPORT_SYMBOL vmlinux 0xbaae6ce4 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xbab8a882 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xbabccd2a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xbaf434c2 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3a18fe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xbb417de8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xbb479118 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xbb4b610e phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xbb4e9aaf inet6_add_offload +EXPORT_SYMBOL vmlinux 0xbb5aa82c page_symlink +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb73beaf neigh_table_init +EXPORT_SYMBOL vmlinux 0xbbcff9a4 check_zeroed_user +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc1373b0 seq_dentry +EXPORT_SYMBOL vmlinux 0xbc17ebc9 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbc22513a dquot_free_inode +EXPORT_SYMBOL vmlinux 0xbc50271e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xbc548653 vfs_statfs +EXPORT_SYMBOL vmlinux 0xbc78d619 tty_kref_put +EXPORT_SYMBOL vmlinux 0xbc858cd1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb76cf5 udp_poll +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc0bae9 get_tz_trend +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd4d539 mpage_readpage +EXPORT_SYMBOL vmlinux 0xbce5214c skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xbce721c5 eth_header +EXPORT_SYMBOL vmlinux 0xbcee70c6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xbceec805 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xbd18c28e vme_register_driver +EXPORT_SYMBOL vmlinux 0xbd1b621e seq_vprintf +EXPORT_SYMBOL vmlinux 0xbd224983 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xbd30bff6 dm_put_device +EXPORT_SYMBOL vmlinux 0xbd4c3ab5 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xbd598269 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xbd784317 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock +EXPORT_SYMBOL vmlinux 0xbd829211 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xbd8555f8 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xbd917f69 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xbd94c561 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0xbd9eafd2 load_nls +EXPORT_SYMBOL vmlinux 0xbda060f4 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xbda0846f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xbdacbf54 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbdc05633 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xbdc535fc pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xbdef669b of_get_next_parent +EXPORT_SYMBOL vmlinux 0xbdfc49b4 update_devfreq +EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe131eba inc_node_page_state +EXPORT_SYMBOL vmlinux 0xbe177b20 file_update_time +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe58206e vm_zone_stat +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe5df073 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xbe5eab99 key_type_keyring +EXPORT_SYMBOL vmlinux 0xbe697195 bioset_exit +EXPORT_SYMBOL vmlinux 0xbe6a4e72 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbe71db4d scsi_host_busy +EXPORT_SYMBOL vmlinux 0xbe837133 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xbe88b025 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xbe8d98ff padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xbe9278f5 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xbe941687 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xbebbb98c __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xbebdc660 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbed1dc11 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefd7fa7 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xbefe7106 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xbf1b8429 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xbf47203d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xbf4792f2 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xbf4bed3c backlight_force_update +EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table +EXPORT_SYMBOL vmlinux 0xbf4e424e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbf5bdc43 fc_mount +EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xbf78b7b6 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xbf8dbc02 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9e20d7 dst_destroy +EXPORT_SYMBOL vmlinux 0xbfbb5413 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xbfc36544 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xbfc6f30c locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create +EXPORT_SYMBOL vmlinux 0xbfdfc51b netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0212a14 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc0288d88 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc03b6ed6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xc042804c setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc0467f93 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xc04b5b7c devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc055c8fe set_device_ro +EXPORT_SYMBOL vmlinux 0xc0577ab2 nand_create_bbt +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0927610 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc09b4284 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b6c1a4 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xc0b87b8b of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xc0fce7d7 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc104368b wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc11f4cd5 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc13a7ba6 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xc13d82da serio_rescan +EXPORT_SYMBOL vmlinux 0xc14351e0 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc14a1b3e adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xc14fecca softnet_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15e92b6 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc1642faf scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1841535 input_free_device +EXPORT_SYMBOL vmlinux 0xc1a17108 backlight_device_register +EXPORT_SYMBOL vmlinux 0xc1a49d46 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xc1ade1a9 consume_skb +EXPORT_SYMBOL vmlinux 0xc1b321d9 inet_put_port +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e021e7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xc1e500f3 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0xc228b33d tty_port_close +EXPORT_SYMBOL vmlinux 0xc23cf72a snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xc24631c4 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xc25526c6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc26c55f6 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc271c3be mutex_lock +EXPORT_SYMBOL vmlinux 0xc287c1cf xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc288c2a3 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xc28bacdb ip_options_compile +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b0cb33 cont_write_begin +EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2ce2782 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0xc2d07dc4 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc2f61f80 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xc2f8a1d7 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xc3044022 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xc3044d86 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc321d1b4 genphy_suspend +EXPORT_SYMBOL vmlinux 0xc3283c81 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc34ddd0f vme_irq_free +EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf +EXPORT_SYMBOL vmlinux 0xc3598cab dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xc375c62e fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xc37b51cd generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38201e7 tty_port_put +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3a6d2c3 d_genocide +EXPORT_SYMBOL vmlinux 0xc3dbb911 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xc3ee283d __sb_start_write +EXPORT_SYMBOL vmlinux 0xc402a2e9 dev_close +EXPORT_SYMBOL vmlinux 0xc412d668 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc4136952 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc427855a genl_register_family +EXPORT_SYMBOL vmlinux 0xc42883d4 inet_getname +EXPORT_SYMBOL vmlinux 0xc43d1a2c d_delete +EXPORT_SYMBOL vmlinux 0xc44ad6f4 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47d032b xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc47f7e0a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc482891d tcf_register_action +EXPORT_SYMBOL vmlinux 0xc486c7e8 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xc48cb86d fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xc4ad0158 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc4afa811 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xc4b6cf43 put_disk_and_module +EXPORT_SYMBOL vmlinux 0xc4c95455 vga_put +EXPORT_SYMBOL vmlinux 0xc4f78b82 request_key_tag +EXPORT_SYMBOL vmlinux 0xc4fd868c phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xc5062f9d param_ops_int +EXPORT_SYMBOL vmlinux 0xc5087ac6 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc5175fa4 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc5459fb0 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc561a746 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc5992914 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a20451 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL vmlinux 0xc5b18573 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xc5d2d539 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fe26cd nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xc602a964 request_firmware +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc618a292 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6353f50 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc6715b41 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xc67ade3f rtnl_unicast +EXPORT_SYMBOL vmlinux 0xc6818e49 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc6b20df0 vfs_create +EXPORT_SYMBOL vmlinux 0xc6b4ded4 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc6b8e751 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xc6c70053 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d1a473 seq_lseek +EXPORT_SYMBOL vmlinux 0xc6db4994 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7071a8d tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72d3a5c qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xc73271ba to_nd_btt +EXPORT_SYMBOL vmlinux 0xc74caa68 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc76eb8c6 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc7791995 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78bcd47 kobject_add +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a940d5 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc7bdc281 bdi_register_va +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c94d49 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e80559 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8036446 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xc80735ad hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xc808c297 pci_bus_type +EXPORT_SYMBOL vmlinux 0xc81e3d2a of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc8356eb0 poll_freewait +EXPORT_SYMBOL vmlinux 0xc84157d5 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc84319bb __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc852d22e pci_write_vpd +EXPORT_SYMBOL vmlinux 0xc8577d21 genphy_resume +EXPORT_SYMBOL vmlinux 0xc86881c0 finish_swait +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8789151 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xc87dabd0 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89d17b3 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xc8a03827 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8af13a0 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 +EXPORT_SYMBOL vmlinux 0xc8c0e9eb map_destroy +EXPORT_SYMBOL vmlinux 0xc8e4f6aa mmc_can_discard +EXPORT_SYMBOL vmlinux 0xc90e3b5b dev_addr_add +EXPORT_SYMBOL vmlinux 0xc91f1faf dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xc93296b4 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xc95ac3a9 ps2_drain +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9693113 vfs_symlink +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9839f18 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc999c37f __register_chrdev +EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b2e2da __vmalloc +EXPORT_SYMBOL vmlinux 0xc9b86384 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc9cb6ce1 fb_pan_display +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xca0d8b98 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3bd427 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca46faba devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xca4ea7b8 clear_nlink +EXPORT_SYMBOL vmlinux 0xca620c01 input_register_device +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcac39c10 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xcacb7758 param_get_charp +EXPORT_SYMBOL vmlinux 0xcad1e091 discard_new_inode +EXPORT_SYMBOL vmlinux 0xcae1689b pci_enable_wake +EXPORT_SYMBOL vmlinux 0xcae23271 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xcaef8286 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0e872d module_put +EXPORT_SYMBOL vmlinux 0xcb15c20b sk_common_release +EXPORT_SYMBOL vmlinux 0xcb1a95c0 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xcb287fdb mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xcb28cc2f __kernel_write +EXPORT_SYMBOL vmlinux 0xcb29ad6c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xcb2af58e pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3b5e0b bdi_put +EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load +EXPORT_SYMBOL vmlinux 0xcb8481e2 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xcb84ee3c of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xcb87cbb3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcb991d7e dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcba9365b i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xcbac6632 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xcbb01ca7 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe28ab2 bdgrab +EXPORT_SYMBOL vmlinux 0xcbe3e04b cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len +EXPORT_SYMBOL vmlinux 0xcbfa89b6 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xcc1007ea inet_addr_type +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2d31a8 vfs_rename +EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0xcc3f8e3e max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4c3837 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc50ae58 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xcc5129cd __register_binfmt +EXPORT_SYMBOL vmlinux 0xcc5232fb vfs_mknod +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5dc0b5 pci_release_regions +EXPORT_SYMBOL vmlinux 0xcc71bee4 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xcc727576 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xcc73f0ac mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xcc93e081 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xcc9e0fc7 blk_get_queue +EXPORT_SYMBOL vmlinux 0xcca877c5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xccae50d5 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccde7eb7 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xccf7c919 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xccfa8445 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfcde03 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xccfd228b param_ops_ulong +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcd05462b of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd0b112d rt_dst_clone +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd431c51 request_key_rcu +EXPORT_SYMBOL vmlinux 0xcd4f62c7 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd7694b8 netlink_unicast +EXPORT_SYMBOL vmlinux 0xcd76a603 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xcd7d3504 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcd7dbbe8 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xcd80c9af xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcd9e5a5a devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xcda0800b ip_check_defrag +EXPORT_SYMBOL vmlinux 0xcdbb6af6 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf30caa tty_vhangup +EXPORT_SYMBOL vmlinux 0xce043a53 amba_request_regions +EXPORT_SYMBOL vmlinux 0xce196bf4 fd_install +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce39b644 dquot_drop +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce4262ec get_task_exe_file +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce63cb57 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xce66700f snd_ctl_add +EXPORT_SYMBOL vmlinux 0xce765c53 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceda72c9 param_get_int +EXPORT_SYMBOL vmlinux 0xcede275c memremap +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef0d346 path_get +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf211776 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xcf2cf354 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xcf32d262 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xcf3fac84 cpumask_next +EXPORT_SYMBOL vmlinux 0xcf4f8191 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcf5412fc __scsi_execute +EXPORT_SYMBOL vmlinux 0xcf5a622f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xcf69f4a4 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xcf6df612 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcf7e747b snd_timer_global_new +EXPORT_SYMBOL vmlinux 0xcf82fa24 ip_defrag +EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf882942 genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0xcf935f01 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0xcf977583 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa837f3 dst_dev_put +EXPORT_SYMBOL vmlinux 0xcfbfd19b generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xcfc61855 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xcfe86e8b dev_deactivate +EXPORT_SYMBOL vmlinux 0xcfe922d7 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xcff3f1d8 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd038ddc3 bio_uninit +EXPORT_SYMBOL vmlinux 0xd03def34 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04c7414 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xd04ca5a6 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd053293d get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xd0559d8f __frontswap_test +EXPORT_SYMBOL vmlinux 0xd055d858 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xd0608301 kobject_put +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd074a204 get_super_thawed +EXPORT_SYMBOL vmlinux 0xd07abd55 dget_parent +EXPORT_SYMBOL vmlinux 0xd07fdffe snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xd0815394 param_get_ushort +EXPORT_SYMBOL vmlinux 0xd097159d register_sound_dsp +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a58ea4 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd0a71723 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c1ee22 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xd0c3af33 nf_reinject +EXPORT_SYMBOL vmlinux 0xd0df5505 __ps2_command +EXPORT_SYMBOL vmlinux 0xd0f0fc71 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fee992 phy_read_paged +EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0xd10997b7 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xd1197595 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1407eaa sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd141af1c of_phy_attach +EXPORT_SYMBOL vmlinux 0xd14a8a1d param_set_short +EXPORT_SYMBOL vmlinux 0xd14f1f5a alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd17633a8 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xd17ddb34 set_create_files_as +EXPORT_SYMBOL vmlinux 0xd17e11f3 simple_map_init +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1837d76 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xd192330f register_shrinker +EXPORT_SYMBOL vmlinux 0xd1b9bc43 blk_queue_split +EXPORT_SYMBOL vmlinux 0xd1becbb6 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd1c97ace dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xd1d02fc6 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd21f6af6 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xd226e9c0 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd2340780 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd23c9ac9 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xd2485d8c md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd2522110 dquot_operations +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd264a0af snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xd26c4648 snd_unregister_device +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27c447f register_key_type +EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel +EXPORT_SYMBOL vmlinux 0xd283a023 clk_add_alias +EXPORT_SYMBOL vmlinux 0xd288841c omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xd28aeedd kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd2bc4018 kunmap_high +EXPORT_SYMBOL vmlinux 0xd2c6cbf0 component_match_add_release +EXPORT_SYMBOL vmlinux 0xd2d881dc rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xd2d99659 fb_get_mode +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd3026192 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31d74e6 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd3365e39 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xd3438a43 dev_set_group +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd36be0bf iov_iter_zero +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd371303b tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd398747c bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd39adeb6 nobh_writepage +EXPORT_SYMBOL vmlinux 0xd39d5053 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xd3b2bc29 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd43b184e tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xd451bdad __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd45cb680 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd4614011 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work +EXPORT_SYMBOL vmlinux 0xd47ff361 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd485bd40 netdev_err +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4990246 mmc_get_card +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4aaed49 dev_mc_add +EXPORT_SYMBOL vmlinux 0xd4b66035 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4db53db inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xd4e154fb snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xd4e5003b dquot_initialize +EXPORT_SYMBOL vmlinux 0xd4e99173 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd4f1ef55 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xd4f4e478 abort_creds +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50f0454 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xd521f863 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52c95e2 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd535336d devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd5424fdb get_tree_single +EXPORT_SYMBOL vmlinux 0xd545545b iov_iter_revert +EXPORT_SYMBOL vmlinux 0xd54bdda2 fb_find_mode +EXPORT_SYMBOL vmlinux 0xd55a3f67 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xd563b2a9 seq_file_path +EXPORT_SYMBOL vmlinux 0xd570a9db mmc_detect_change +EXPORT_SYMBOL vmlinux 0xd5a7ba33 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xd5a975d2 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xd5b2bbb3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c242a8 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd5c3ecf8 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd5d1920d devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd5f70ca6 scsi_print_result +EXPORT_SYMBOL vmlinux 0xd5fb8f4b md_integrity_register +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6205dcd wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62f6860 skb_append +EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem +EXPORT_SYMBOL vmlinux 0xd6452e21 put_cmsg +EXPORT_SYMBOL vmlinux 0xd64b06cc serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract +EXPORT_SYMBOL vmlinux 0xd6692a94 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6a310a2 seq_release +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xd6c08ac2 read_code +EXPORT_SYMBOL vmlinux 0xd6c3072d uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd6cf0b1a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ecb903 snd_card_file_add +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd705f9d2 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xd709268a wireless_send_event +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd72f470b bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd747a8f9 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xd759112a ps2_handle_response +EXPORT_SYMBOL vmlinux 0xd7723974 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xd785fd74 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e166a4 inet_del_offload +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7eb999a snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xd80eecc7 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xd8197461 phy_attached_info +EXPORT_SYMBOL vmlinux 0xd83dc5e6 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd844235f inet_csk_accept +EXPORT_SYMBOL vmlinux 0xd8567b82 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xd85dbfa1 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd860755b __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd8616a56 km_policy_expired +EXPORT_SYMBOL vmlinux 0xd862f682 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr +EXPORT_SYMBOL vmlinux 0xd8938fd7 tcf_classify +EXPORT_SYMBOL vmlinux 0xd89d326c scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a40dd0 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aac232 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd8b3eee1 __napi_schedule +EXPORT_SYMBOL vmlinux 0xd8b54bfd xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd8c4c5ec dquot_commit +EXPORT_SYMBOL vmlinux 0xd8c52e05 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xd8d711c8 mdio_device_free +EXPORT_SYMBOL vmlinux 0xd90d6397 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xd90d7622 page_pool_create +EXPORT_SYMBOL vmlinux 0xd9183019 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd92c90a1 pci_dev_get +EXPORT_SYMBOL vmlinux 0xd94e6662 d_set_d_op +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd96a3729 phy_suspend +EXPORT_SYMBOL vmlinux 0xd974a08f __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98e1590 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xd9a3655a I_BDEV +EXPORT_SYMBOL vmlinux 0xd9b1fb25 blk_get_request +EXPORT_SYMBOL vmlinux 0xd9c781a7 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xd9c9f938 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e2212f dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd9e90b68 netdev_state_change +EXPORT_SYMBOL vmlinux 0xd9f7bc67 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xda05d77d input_register_handle +EXPORT_SYMBOL vmlinux 0xda0bcc5d devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xda0dcfb3 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xda195977 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xda3b2a33 write_cache_pages +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda57f94f eth_header_cache +EXPORT_SYMBOL vmlinux 0xda5851e6 fs_bio_set +EXPORT_SYMBOL vmlinux 0xda59abc3 seq_escape +EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7b0c9a address_space_init_once +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad9118f mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdae49d7a kfree_skb_list +EXPORT_SYMBOL vmlinux 0xdae52812 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xdaeb2627 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xdaeb3f4f snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xdaee2552 PDE_DATA +EXPORT_SYMBOL vmlinux 0xdaf3d9ac rproc_del +EXPORT_SYMBOL vmlinux 0xdaf6f007 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xdaf8598b security_binder_transaction +EXPORT_SYMBOL vmlinux 0xdb03a2ab on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xdb05b469 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xdb1e231e try_module_get +EXPORT_SYMBOL vmlinux 0xdb2008cf pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xdb2d384b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xdb2f099a netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xdb30f8a2 pci_restore_state +EXPORT_SYMBOL vmlinux 0xdb371eae scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb42c2e4 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit +EXPORT_SYMBOL vmlinux 0xdb9ca3c5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xdbaae4ad cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xdbb49764 param_get_bool +EXPORT_SYMBOL vmlinux 0xdbbc6163 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3f9737 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xdc5f1ec6 input_match_device_id +EXPORT_SYMBOL vmlinux 0xdc77d170 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xdc785b2d elv_rb_del +EXPORT_SYMBOL vmlinux 0xdc8cb30b pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xdc9e600a __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xdcc2e14a mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xdce0b2f9 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdcfb56d2 would_dump +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd109989 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd319b33 get_user_pages +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd41b632 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xdd482622 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xdd4ffa9b mutex_trylock +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8e6737 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xdd9deec3 vm_map_ram +EXPORT_SYMBOL vmlinux 0xddaceadb udp_set_csum +EXPORT_SYMBOL vmlinux 0xddb2754b inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xddb6608a devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xddd59ab2 mtd_concat_create +EXPORT_SYMBOL vmlinux 0xdddd4ed3 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xddefe99f __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xde0b6df3 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xde0ebdce ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xde0f0969 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xde16900b snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0xde2e20dd kill_anon_super +EXPORT_SYMBOL vmlinux 0xde2e978c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xde315384 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xde433c08 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xde4b8472 param_get_ulong +EXPORT_SYMBOL vmlinux 0xde4cd80b scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde538229 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xde5bbe46 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xde617a65 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xde74f6b8 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xde86289f vfs_llseek +EXPORT_SYMBOL vmlinux 0xdea505e0 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xdeb1613d __alloc_skb +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdecd39ca ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xded290fb try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee00fd4 netif_skb_features +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8432b ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xdf0f125a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xdf22e940 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2cda6f genlmsg_put +EXPORT_SYMBOL vmlinux 0xdf360d3f seq_pad +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5dac61 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xdf5e2af5 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xdf76f21e of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xdf89f98d pci_set_mwi +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfbc94f8 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xdfd1e7b0 hmm_range_register +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfdfd296 skb_copy +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe028a6ca atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xe03f0a9d sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe0549b5b abx500_register_ops +EXPORT_SYMBOL vmlinux 0xe05fd9f9 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xe0653e77 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe07665f8 snd_card_free +EXPORT_SYMBOL vmlinux 0xe07aec8d __phy_resume +EXPORT_SYMBOL vmlinux 0xe082eb62 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0xe08527d4 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08b13b3 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe08eafb6 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0ad4ebd do_map_probe +EXPORT_SYMBOL vmlinux 0xe0ad7440 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bd0090 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0cbbc10 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe0df85d7 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe10f5dcd snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14f1044 input_grab_device +EXPORT_SYMBOL vmlinux 0xe1519eca filemap_fault +EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe16f534f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xe1835837 new_inode +EXPORT_SYMBOL vmlinux 0xe19b8657 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xe1d312a3 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1fe17bc netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xe203f315 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xe207d47f pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xe226824d fb_set_cmap +EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe2299bcb neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe265ac11 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe2784d77 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xe28e4207 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xe2a46f47 xattr_full_name +EXPORT_SYMBOL vmlinux 0xe2ac51be unregister_key_type +EXPORT_SYMBOL vmlinux 0xe2b64de9 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe2b7ffde delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xe2c651be dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d6b745 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f91c84 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe30be784 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe346f67a __mutex_init +EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xe3483dbc gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe3585608 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xe35db366 task_work_add +EXPORT_SYMBOL vmlinux 0xe38e02d8 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xe38fca95 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xe3b8d9ce of_iomap +EXPORT_SYMBOL vmlinux 0xe3d76382 napi_get_frags +EXPORT_SYMBOL vmlinux 0xe3e4c401 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xe3e51585 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xe3eaa105 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40bdeb3 dev_add_pack +EXPORT_SYMBOL vmlinux 0xe410d9d5 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe4172f5d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe418970e __devm_release_region +EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe448079d tty_port_hangup +EXPORT_SYMBOL vmlinux 0xe456ed77 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe4648e60 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe482b326 search_binary_handler +EXPORT_SYMBOL vmlinux 0xe48709db vfs_get_link +EXPORT_SYMBOL vmlinux 0xe4bd93dd tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xe4c43c7f param_ops_bool +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4cb5670 kernel_listen +EXPORT_SYMBOL vmlinux 0xe4cc05c6 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe4f91d4d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xe500777a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xe515e8fc input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53f1a0a scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xe54e072b scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe56a3ca3 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57a278c bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588524d udp_seq_next +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a04b98 mdiobus_free +EXPORT_SYMBOL vmlinux 0xe5a54009 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe5a92b53 vfs_setpos +EXPORT_SYMBOL vmlinux 0xe5b01755 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xe5b85eed mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c339c4 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d1bfb6 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe5db80a4 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe5e9a325 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xe5fcd50d qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61d8afc rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe63ac5d6 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xe64cf674 kmap_atomic +EXPORT_SYMBOL vmlinux 0xe64f0dfc sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6b1e43a i2c_del_driver +EXPORT_SYMBOL vmlinux 0xe6bd2072 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe6c12171 complete +EXPORT_SYMBOL vmlinux 0xe6d3f07e write_inode_now +EXPORT_SYMBOL vmlinux 0xe6f2e4ff blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xe6f3ab15 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70e3a6c md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xe72ed981 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe74b9a7e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe77ecefa deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe781af81 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe793491d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe796f31b seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xe7ac789c dst_discard_out +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e2761c pci_pme_active +EXPORT_SYMBOL vmlinux 0xe7e53ea3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe81f0245 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xe82504d3 pci_request_region +EXPORT_SYMBOL vmlinux 0xe827fe78 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xe82b551e devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xe84a12df scsi_block_requests +EXPORT_SYMBOL vmlinux 0xe84d6993 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe855a8e7 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xe85e393b sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xe87224eb init_net +EXPORT_SYMBOL vmlinux 0xe874eb3c bdput +EXPORT_SYMBOL vmlinux 0xe8887a0c param_get_byte +EXPORT_SYMBOL vmlinux 0xe88e1c2a seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xe89b037c netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe8adecbe tcp_close +EXPORT_SYMBOL vmlinux 0xe8c934e5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift +EXPORT_SYMBOL vmlinux 0xe8fe5024 bio_advance +EXPORT_SYMBOL vmlinux 0xe9099da9 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe90aeef4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xe90f9187 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xe910dd09 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe911325b ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91876cb dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe9305458 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95ed600 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe9610b17 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xe9639e59 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xe9713f8c simple_write_begin +EXPORT_SYMBOL vmlinux 0xe99aa77c page_pool_destroy +EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0xe9b86cd3 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9ea1743 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe9f3734c blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xe9f61c65 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea0a214d fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xea1969da blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea449902 rproc_boot +EXPORT_SYMBOL vmlinux 0xea4a4db1 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0xea551b57 filemap_flush +EXPORT_SYMBOL vmlinux 0xea63db05 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xea669f9a scsi_register_interface +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xeaa2ab84 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xeab2e0ad jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xeae57502 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xeae9a6e3 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeaf03c5e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xeaf1f54d inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xeafb9aa4 _dev_info +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb09646e mmc_put_card +EXPORT_SYMBOL vmlinux 0xeb0b9bf9 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb1c3b93 __register_nls +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb424ed9 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xeb42b507 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xeb4e1b9b t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xeb546e5c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xeb549475 bmap +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb5ac56c blkdev_get +EXPORT_SYMBOL vmlinux 0xeb6f6833 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xeb7738d1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xeb95bd40 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebb5bd64 page_mapping +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebfa896c mdio_bus_type +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0af935 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xec1a3501 bio_free_pages +EXPORT_SYMBOL vmlinux 0xec25297a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xec44ac66 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec63250c jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xec7d555f mount_nodev +EXPORT_SYMBOL vmlinux 0xec92650c complete_request_key +EXPORT_SYMBOL vmlinux 0xec98300f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xec9e2759 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xeca8650c dev_uc_sync +EXPORT_SYMBOL vmlinux 0xecb8f50e jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed19924e inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xed1b9951 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xed2ba999 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xed3635d4 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xed3812ba xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xed389623 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xed6054e6 bioset_init +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed640096 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed78fbc4 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9a0836 free_buffer_head +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcb9638 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedea2424 iput +EXPORT_SYMBOL vmlinux 0xedeb59d9 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xedfecdac pci_release_resource +EXPORT_SYMBOL vmlinux 0xee09bb36 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xee13ef49 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xee232034 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee39a93a i2c_verify_client +EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee766843 dquot_transfer +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xee95d372 skb_tx_error +EXPORT_SYMBOL vmlinux 0xee979846 vm_map_pages +EXPORT_SYMBOL vmlinux 0xee998929 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xee9e5ce7 param_set_int +EXPORT_SYMBOL vmlinux 0xeece73f7 tcp_prot +EXPORT_SYMBOL vmlinux 0xeee1c8ed clear_wb_congested +EXPORT_SYMBOL vmlinux 0xef2477b6 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xef29f7e0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xef3d0862 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xef50491b debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xef671c0b dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0xef7eeaf7 build_skb_around +EXPORT_SYMBOL vmlinux 0xef803661 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xef85b032 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefb7bccf _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xefd00728 nd_device_register +EXPORT_SYMBOL vmlinux 0xefdfbbda generic_make_request +EXPORT_SYMBOL vmlinux 0xefe6186e __i2c_transfer +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn +EXPORT_SYMBOL vmlinux 0xf0220468 lease_modify +EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work +EXPORT_SYMBOL vmlinux 0xf0488e73 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xf04df3c6 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0968e11 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0b2428d can_nice +EXPORT_SYMBOL vmlinux 0xf0b338e7 tcp_filter +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef52e8 down +EXPORT_SYMBOL vmlinux 0xf0fc3641 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf102732a crc16 +EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf11b9586 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xf13eff51 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf14a7daf set_bh_page +EXPORT_SYMBOL vmlinux 0xf162a1f6 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xf1710f58 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xf18ddd31 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf194c20c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e526d seq_printf +EXPORT_SYMBOL vmlinux 0xf1cbce5b kern_path_create +EXPORT_SYMBOL vmlinux 0xf1ce8a5d truncate_setsize +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dda6c1 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f236c4 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf1fdbb30 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf22f5a40 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2787bca tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf27e3720 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf289a638 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xf2ac0097 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0xf2b779c7 dump_align +EXPORT_SYMBOL vmlinux 0xf2bd5b15 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xf2c2361d of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c99241 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f5be07 page_get_link +EXPORT_SYMBOL vmlinux 0xf2fd17ae mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xf30a689d fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32ba07d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf3366eff flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xf3452fea iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xf345ce31 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf35082d2 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf357affe dqget +EXPORT_SYMBOL vmlinux 0xf35cd65e bio_reset +EXPORT_SYMBOL vmlinux 0xf36cc18c fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xf376a155 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf381c90f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf394aa12 page_readlink +EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3d6001b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f14c65 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xf3f22de7 sk_free +EXPORT_SYMBOL vmlinux 0xf3ffae20 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf40e9b4f kern_path +EXPORT_SYMBOL vmlinux 0xf41a8d16 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xf41ca60a padata_do_serial +EXPORT_SYMBOL vmlinux 0xf4313a3a contig_page_data +EXPORT_SYMBOL vmlinux 0xf43d8d78 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xf43fae55 input_release_device +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44c626f register_framebuffer +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf44e82c8 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf455fb44 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf46f1fd1 skb_dequeue +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48a47c6 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf4953bf5 __scm_destroy +EXPORT_SYMBOL vmlinux 0xf49ac7ab inet_add_offload +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4a462a7 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf4ab6c5b pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c57040 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xf4d2b8d4 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50b19e2 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xf517c69f phy_print_status +EXPORT_SYMBOL vmlinux 0xf52f0769 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf543f6c9 snd_info_register +EXPORT_SYMBOL vmlinux 0xf55286fe __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf572d5e8 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf576bcd5 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0xf5797508 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf5940526 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf59c5ee9 revalidate_disk +EXPORT_SYMBOL vmlinux 0xf5b0826b blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5c34103 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xf5c5d9f6 arp_create +EXPORT_SYMBOL vmlinux 0xf5d64db8 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xf5e4ec44 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f12b05 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xf5f9158d __invalidate_device +EXPORT_SYMBOL vmlinux 0xf60405ff register_qdisc +EXPORT_SYMBOL vmlinux 0xf61cd986 input_event +EXPORT_SYMBOL vmlinux 0xf627f4d1 pid_task +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64d0854 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6c51abf mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f311c0 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0xf709b98d single_open +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf71e1536 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xf720a811 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf721fdea bdevname +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf776fe80 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf77af7ad xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78745bc param_set_ushort +EXPORT_SYMBOL vmlinux 0xf79e783a configfs_register_group +EXPORT_SYMBOL vmlinux 0xf7a117e0 rproc_free +EXPORT_SYMBOL vmlinux 0xf7af2970 find_get_entry +EXPORT_SYMBOL vmlinux 0xf7af44e2 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xf7bd518d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xf7c83cba padata_stop +EXPORT_SYMBOL vmlinux 0xf7db738d dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xf805076d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xf80fbf6f scsi_target_resume +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf814fb17 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xf8189c84 d_splice_alias +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf831266d __sb_end_write +EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf83b2802 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xf848f0cf kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf84949f3 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf853d75e rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf8796eee security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf87e2c06 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88af845 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xf8a0456f i2c_use_client +EXPORT_SYMBOL vmlinux 0xf8b8bd1a eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8d2deda __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf8dfff1f register_gifconf +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8f8caec elm_config +EXPORT_SYMBOL vmlinux 0xf90aca2c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf91d9fa9 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xf9350c35 _dev_warn +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf96db3c6 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf96ffa06 snd_timer_close +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9809c51 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf986079c of_phy_find_device +EXPORT_SYMBOL vmlinux 0xf99bba6b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xf9a36b47 down_interruptible +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ac0619 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xf9ada3d6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf9b05508 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xf9b4bc87 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xf9bc65f1 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9ce6538 register_netdev +EXPORT_SYMBOL vmlinux 0xf9d194d1 bio_endio +EXPORT_SYMBOL vmlinux 0xf9da0b07 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xfa2f67a5 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order +EXPORT_SYMBOL vmlinux 0xfa829633 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa9dfc8d xfrm_lookup +EXPORT_SYMBOL vmlinux 0xfa9f2c84 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xfab4a91d frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaf06aa1 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xfb02c360 serio_close +EXPORT_SYMBOL vmlinux 0xfb0cd540 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xfb0ebbbc inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xfb14ae2b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xfb14e25a mmc_command_done +EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy +EXPORT_SYMBOL vmlinux 0xfb3760a2 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3cf428 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb49d46a bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xfb4a8a1f ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xfb5e0368 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb78dc42 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfba3ceb8 read_cache_page +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 0xfbdfd3f1 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfbed514b generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xfbee70ca netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xfbf166da vfs_mkobj +EXPORT_SYMBOL vmlinux 0xfbf4da52 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xfc0c003d lookup_one_len +EXPORT_SYMBOL vmlinux 0xfc0f0376 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xfc13ea57 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xfc1c645f phy_attach_direct +EXPORT_SYMBOL vmlinux 0xfc22978f napi_disable +EXPORT_SYMBOL vmlinux 0xfc2f9d4e _copy_from_iter +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfc41941f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfc4adad5 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc53a6bf inet_listen +EXPORT_SYMBOL vmlinux 0xfc5d938a blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xfc5f0aa1 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc67843d seq_open_private +EXPORT_SYMBOL vmlinux 0xfc858afc pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdfc3f7 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfee07b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xfd2bb73e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33386c mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xfd5fc6f0 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xfd88e6b1 devm_release_resource +EXPORT_SYMBOL vmlinux 0xfd9cd3fb locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb7d799 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xfdcaa6e8 md_error +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfddb219c locks_copy_lock +EXPORT_SYMBOL vmlinux 0xfde3ee15 cdev_add +EXPORT_SYMBOL vmlinux 0xfdedbc82 pci_request_irq +EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfdff6344 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0965f4 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page +EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4b45c0 nf_log_unset +EXPORT_SYMBOL vmlinux 0xfe56012d xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe604214 kobject_set_name +EXPORT_SYMBOL vmlinux 0xfe67894e insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xfe6bf874 __break_lease +EXPORT_SYMBOL vmlinux 0xfe79ff2e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xfe900eb9 path_put +EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfed2137a phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff25eb4e __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xff4aa98f get_super +EXPORT_SYMBOL vmlinux 0xff4ca042 d_alloc_name +EXPORT_SYMBOL vmlinux 0xff4db6c5 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xff51d4c5 dcache_readdir +EXPORT_SYMBOL vmlinux 0xff572313 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff686b2e snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff78f147 snd_pcm_new +EXPORT_SYMBOL vmlinux 0xff8172b4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0xff9624c6 give_up_console +EXPORT_SYMBOL vmlinux 0xff967ef3 ps2_init +EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xffb366f6 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffb9f41d wake_up_process +EXPORT_SYMBOL vmlinux 0xffbb5e3d arm_dma_ops +EXPORT_SYMBOL vmlinux 0xffbcb24e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xffdc6f7b dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffef94b configfs_remove_default_groups +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x5bf67b18 sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xe3b2d6dd sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x09e9800f af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x1a81474b af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x1b0df5cb af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x2faccef5 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x32684e63 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x34a2e416 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x4eb4358b af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x50bc5479 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2b27a1a af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa80a3ab7 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xca3d3ecf af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd051dec5 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xd3faef76 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7d0583c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdd5b07b2 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe17c1094 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe8b78d9c af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xf9975824 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xc32e1c2c asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xc4b1647a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1bbaaea7 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5ebdb758 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x21073716 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc7a20014 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x410b679e async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x555fdc89 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa6206d3f __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb0eedcfe async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x54393d19 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x57f3ce7e async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x06ee931c blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0e110722 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 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xca9c3358 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x128650df crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x725211b3 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xdc59833c crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xf4c0603e crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x18f1385e cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x2a6c618a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3a495066 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3dcc6e7a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x532e36f0 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x90456173 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x994a890a cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa2d32243 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb896895b cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd2cbe61d cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xeb41fe2a cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xfd64ae15 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe2703a8 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0536c299 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x35875552 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x494a9302 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4e45b26a crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5546c00e crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5dec4010 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6120858f crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7296851b crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7646e4a5 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7b212ab1 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8ab6e67a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb081a493 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde70a2fa crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe9d297b7 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5ac896e6 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x93658995 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9a226407 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd4dadaba simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2aadc406 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb50b4221 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc2ff7d3a crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbfe4d257 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x00860f2e crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xebf1a35e crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xeebced64 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x354c0f68 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb98e7cd8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x911c6d5e sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xd4bbf5fe __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x69643267 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x891cb40d __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x71d36e4b __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x954b93dc __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x039fdfcb __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0aab9a0e __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5f79fb99 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6da10b4d __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0a7d9bd5 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc9367168 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x347c0143 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46ea17ec bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72ef0b89 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x744a3b86 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a6b6d9c bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7be3fd6f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8420f561 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x861516be __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e0987fc bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9821f27e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ee6ddb9 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5a65689 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa915baa9 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6e8d488 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc1c7afb6 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6b27df3 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc701fb07 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca1fe98b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc61404d bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd18a7250 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6ea862e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde8618d3 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdec358ce bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc7f530d bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x148447bc btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2db66232 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x87889a84 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa29b4cd8 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb0565dc7 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd038cb0c btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x005e16e6 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2186a55f btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21f75e63 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37263361 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b3dfbe9 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x54fb036a btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5fd93d52 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fa892d1 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa4895b3a btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac4cbb8a btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac8a694e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaf18410e btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb2bfdeae btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc14fe7a9 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd80f8a30 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe7aaa06f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfea6025a btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0190be90 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0a68cc1d btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c390147 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2635c3f2 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x350df8ce btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54e45167 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7dc89c55 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x98679dff btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d2378f2 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca28cd8c btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec1cf641 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x37ebdc73 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4fe63f7c qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9290d556 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc9eff235 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xff0aff5d qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2b3223bd btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x81a2611f btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xed4af39c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf390b175 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfe09675c btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x238b72c8 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3242abc7 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7c14f5d5 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8c8d02f0 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x13cbfa96 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4c90f867 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5ae10c06 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xadc554c2 moxtet_bus_type +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xdd822cbe moxtet_device_write +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c8aa0d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa8c11bfe meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x9b54bd6e meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d9e064 clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e13d6f qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04bf3163 clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0650a0db clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x065574e3 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ac38699 clk_trion_fixed_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0cabeb2a clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x12ac7e1e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ed919be clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x205a2ef5 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x26b11606 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b1bbcc2 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d89517e clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2df91853 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33e55c5b clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x40e5accd clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x428b605a clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46e37d43 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ad24f3b clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4ceda917 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4f5f7919 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x512af5e1 krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51fb21a3 clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x524628c8 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5d5f07eb clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64447760 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66489e5b clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6ca8a88d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73f8eedb clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7404b809 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x749eda9f clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7708b673 clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81ec30bf clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8218c7e1 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x83811bbd qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8ce1f21b devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x911def65 clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x99f60998 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9cb32992 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1839eaf clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa6064ef6 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa821f919 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb73a2cd3 krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbbe74972 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc78100cd clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xccc2b431 clk_trion_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcce7e449 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8fc3e8e qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda15b634 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda35a32d clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xda967930 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdb687f64 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf674942 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe3b34b5b clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5bc1f18 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef6a0edc clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf196beb5 clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf8cb18c2 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0953562f counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0c2aed03 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3a5966ac counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4c20ed85 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x52b68bfd counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x578f1fe5 counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6031c0bc counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x652207e3 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x75373b77 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa21cca44 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa32d7e0a devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc2974207 counter_count_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdceee4d6 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf724210b counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xfca2a661 counter_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x71564cdb bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xc5ba4da3 bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd9009a51 omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x01cf486a dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7044d413 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xeaf1b523 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x64f63678 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6d392352 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9e887acd idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad2345eb dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc25a2551 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe45ff768 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf7476d40 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x17cb8d21 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x19c9f52a fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1a68ae89 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2fc688e1 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3af16388 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4a74d3b9 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5e786dc7 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x69e5402d fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x83e64838 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8480d212 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8607ef2c fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92192d3e fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x95888ffb fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xadb812b5 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb5d514c0 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc17054a1 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe4fc6516 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xeb76c9cd hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x4ff565e0 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x35c00f54 alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x7139312b alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x09500ad8 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x180f2a82 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2b2609ed __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x59a3f5d7 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x70a9ff34 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x76ffb1b2 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x788b91cb dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ce702e8 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x97d9dcc7 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7314ec8 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa797e620 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad79f812 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae47fe27 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbdaeb935 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc8042f1f dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc94573eb dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4773a68 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd733f3b7 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf9ef8a22 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1ce42363 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x22794057 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x22fff902 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2cec7a95 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x334f988e of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4af1ad2b of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x58f0f5ce fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x64ab6391 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x653b07b9 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x74223756 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9297b4e3 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcff37789 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x105882b6 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x198804c5 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x28c4fb3f fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d4ac5ec fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x463cf3ba fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x701b2796 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x844f5ff1 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xab06bc67 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe99ed73c fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xee8d7bae fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf2814b13 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf5dfef88 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf94586d6 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1db3fe9c fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x42054084 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb22a3540 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd4e23bb3 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdab40678 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xec56711a fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xef6ef767 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11253042 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11f1672f 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 0x6c80bb01 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7b28415b fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8a1c2590 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x920f19d4 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9bb43c6f fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb7d2b523 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xedff9cb4 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfe47153f fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x60693e0e fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x3ba51445 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xb4ff6f48 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x452b2a0f gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5825dde1 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa1a6dc74 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xde3a98eb gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe983c985 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4faaf82b gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x509c53ef gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x67180b19 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x93068d79 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x96407e35 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x4e3091bf aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xe942beab aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8ea40ae8 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd277d8fe __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1e98e223 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1ec6f6d4 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x35ac8eaf analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5ac0bcfc analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x705ea370 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa7ea84dc analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd0a85442 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xdc9c1abd 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 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2f526a0e dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd0221790 dw_hdmi_bind +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 0x4bce6210 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xb114e454 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0079561b drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x00f328d0 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0380a842 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x06c041f1 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d49aca5 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0de38c4d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2026c255 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37a2e269 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3d29bbda drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43d5c1f8 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4664b7fa drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b3ef599 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53018c9c drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54966ab5 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x660256e0 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69386ecc drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77ef3417 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8153cfff drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x937ea058 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x98eb91c6 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b82ab63 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4d6b191 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbcf4b166 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc09db679 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc85590e5 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc89a68ad drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb6f8b18 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcca71adf of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe526789b drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x04e4f9b5 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3f606d69 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6eac6498 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x72b8d506 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xba7bcc9e drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf5ae38a drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd83a3862 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x87534697 ipu_planes_assign_pre +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8f2ef9c5 imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd7b6fd7b imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xeb545c9e imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xf004c0a5 ipu_plane_disable_deferred +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x81c05e9e mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x10d5f55d meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2b36798a meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7da21708 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x8033cc0f meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa43510f2 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xc3368637 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x0253ac6c rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8735ed2b rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xacfa9fdc rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb9faa94e rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd55782e3 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x279ab1ce ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3944f1e3 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x3b08bc66 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x006374ec ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1389712c ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1673dd74 ipu_cpmem_set_block_mode +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 0x19e29781 ipu_idmac_get +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 0x20095862 ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20e09f6f ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x23ceaa07 ipu_idmac_wait_busy +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 0x24492f13 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2addb843 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ccb8611 ipu_set_ic_src_mux +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 0x2f44ee40 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f607b4c ipu_cpmem_set_image +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 0x2fa4eab2 ipu_image_convert_sync +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 0x326802ae ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x342fb3fc ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3963a1ed ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d347b4e ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3ee9afd8 ipu_cpmem_set_rotation +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 0x448ad83a ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +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 0x4c053daa ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +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 0x53b3b077 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55d3d7c9 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x569c422d ipu_image_convert +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 0x5d0cd6f5 ipu_cpmem_interlaced_scan +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 0x63593ec7 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x64f0116d ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6619d2e0 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66e729d2 ipu_mbus_code_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x67bb535a ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78c73e05 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78e2b056 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f67b82e ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f99a881 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x828c00e9 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86966424 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86f69a06 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ece82bd ipu_pixelformat_is_planar +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91e94bea ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92aba6d7 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97b437d1 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9ed0f97a ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa2462b7a ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6daa1cb ipu_image_convert_queue +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7534e6a ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7df3b04 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xabbab492 ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaf7cdb1d ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xafd8964b ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb10c7dcc ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbdebb1a2 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbea14bb0 ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc0ca95d5 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6cda1f9 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc82a70c2 ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd67d98b ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcdba171b ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce10db35 ipu_stride_to_bytes +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd24c9a0a ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd78bab32 ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd821fbce ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdf4f99fb ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdff0aae7 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe2b14896 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe300a959 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3345a54 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe4e5c37e ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe5f82cd6 ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6febd05 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xebd708ba ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xed6799b1 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf2801b9c ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf288df67 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfa612cec ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfc9e851a ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfea04846 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff5977f1 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c587584 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18f8d17e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19ace3c0 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d91b123 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29f7da7f __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a609e2a gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32580843 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38b89571 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3fc19fbe gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x41a737af gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49d98a1b greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d87585d gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e561e68 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e629192 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x502b668f gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50517685 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5af556bd gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6491304c gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b195235 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f8b992f gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75c9730a __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x841083ce gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x869a833a gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87e94286 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b0c6307 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c4c7e14 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8f515e63 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90fc9178 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x971ecd88 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5f180a0 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4c7258e gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7e77a78 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcfa48674 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd09e4b84 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd35f0140 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd844f644 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8d3308c gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6cfe656 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8f3366c gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3ba86bd gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfaee8289 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb882e55 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcd391a8 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01bfa8b3 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x063e86f5 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x079209ce hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x085fa4b6 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0eb21fc7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x308ce040 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x318e6ded hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3425e6e8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x352fdea7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bf431a4 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42c28a85 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42f17ca3 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46c02ff4 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46e94831 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5161beb6 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53dc46e4 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62bee73c hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x660f53f7 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66ccc8fb hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c276a7f hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cdf0b63 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aadb77f hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c1114f4 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e8a10c8 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fcaa88b hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83fd1218 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8689d411 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x890ac3eb hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95328176 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d290aa5 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb019ef6c hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0c585a2 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdbca373 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdff86d6 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf0503e7 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7977474 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb28fac1 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd975565 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe49414cd hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4d0ddd4 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebfde4b0 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedd1f41a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6b544e8 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff6ffa9d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4775c420 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x045e7871 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2b54187a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xae42ca13 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb6b5d1d0 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc96202e1 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcb45c7db roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0985c31c sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3601efaa sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x45f39876 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x462f3f63 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x591bc672 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x730a9d49 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xba8c1187 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2f8103b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc6064400 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x22fc34d5 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x98ea7203 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x550785d7 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x81f4d0d8 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0164fd41 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0ef31fb1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1778d00e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1827b4fa hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29b20383 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33db191d hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3656b915 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3e840f2e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53646bc8 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65796933 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x691895f1 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79c577a7 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85e43633 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8d983ed7 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba81ef2f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd693b7c6 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6fd1a61 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee5d6350 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x10ffc373 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc33d9115 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd046a5d4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3b306cb8 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x50746231 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e9b01a1 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x618e5836 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6edd5ce4 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79e9f790 pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7d459d63 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x80347d6b pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8cda0bc3 pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x91b2bb9a pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x93913ba5 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x96544b44 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb0abae89 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc9db738f pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcb1bc35e pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd82a5156 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdc77ce27 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe62c5ae4 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf5cade88 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1794e9a2 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2b731ab5 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x35be1e7b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x586ce286 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x85f3efa3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb6818e18 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc29dc71b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xddd64d79 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xee118098 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8a1b7207 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x95404122 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf99637d9 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x49c76a4f stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x58ea516b stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5b519585 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5dfa9238 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbc8af393 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbe684ccb stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcc3c4ffe stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf352ca80 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf7b2e870 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x59c72846 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xac2d80c2 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc91b127d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfa035ebf i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe7836886 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x081f545a i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x19d6be83 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b3c727e i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x236f1684 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27800e4b i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b407f2a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2c7b4ae6 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x428cf86e i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x492e4059 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b974b0a dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54e213fd i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59a5d8b8 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5e5a036e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x67738990 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76dd5f72 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x779f0ac3 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x78be88ce i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7924ce08 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9783462d i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa3f486cb i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3873aaf i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6a50317 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8a1d4cf i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd357570 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe24f5a2c i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd1affcae adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd9955150 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4f26ed6e bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa0d7d00f bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa95caee2 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf98cebce bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x04d6730d mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x9efdfe2a mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf68be26a mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x02b5cd21 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x6bf28914 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x15f0178c ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28b6085b ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x71b2a8f5 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7c666797 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x819554d2 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x995042c3 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xda8cb33d ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe5447709 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xec6120fc ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf00f1921 ad_sd_read_reg +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 0x5e2e94a9 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 0x7f0687db iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9c361685 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x08ca6942 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcca68737 devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xf3a7ea9c devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x4b862ccb devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xc20307d1 devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x8dc73815 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3f65543e cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4367a6c2 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 0xb060cbb9 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbd6ff04d cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc67de95b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcfac801d cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5af26f1 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe8db63af cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfb422271 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x240387db ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xf689c882 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x5986f4c1 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x87ba7dd0 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x19b2cd90 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5ae75f70 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xda751b5b bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3af4acef fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x69a5ced5 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa0e4e79f fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x011d48a0 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x13e8eb59 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3bb41f95 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3fa91634 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x57c199f9 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x64c714d3 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7038d788 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8050d7d3 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb97846d6 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcf903697 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xde67b8c3 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf1189706 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xda7f45a2 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xada23d20 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xd4d335ee inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe0ee3ce7 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0aa3efa9 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ee93535 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ffaf4cf iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d0348dc iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1fcd3206 devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x212e8e20 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d98cac0 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32e853cd iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35866cc1 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x433b6e8a iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46e08107 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x477e1656 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d968f4c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x606025f7 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6264f619 devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6358120d iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65db4094 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68fa342e devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78337867 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x794f724e iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80a4a51d iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8458e511 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84678d2e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8639320b iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cc0485f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94dc8132 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x984e894d iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x985d8f85 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99e9257a iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99ea2d52 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f7a934e iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa33db68c iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5988d4d iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaaddae8a __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab9ace9c iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5058c4e iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7522fb0 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba2eda3a iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4a03658 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8b46507 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd626bc3 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfcd5fa5 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcff82aa5 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb8fc6ac iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9cc52ea __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2b3e3e1 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf339cd86 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6ca13bd devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf973ff22 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc1fb44f devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x711cb9d0 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xbd431fe8 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2a31a8e9 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x43d1363b zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xaefbc2d5 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xafcfa601 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd68b1875 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdf49a694 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xdb069ca2 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x96d8b602 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x244086bd adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x00bf6042 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x096f5457 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0b69006d rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0c34706b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0e21e6b5 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0e370ce0 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3951cf45 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6bc62009 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x818fdbb2 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc89c2781 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd21d6468 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd596bc1b rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xeb02985d rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x15077cba cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa9e3a346 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd363ae57 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x47b62f3e cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xbea425b0 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x458cc876 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x58c3aed2 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x947b9e3f tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xada36610 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xba4d5702 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfb3ace7d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x03fa33bb wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0400cd7d wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4364c0ac wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45002048 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4e2fe8fe wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a99427e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa4cc1c37 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad1c8a49 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc270c392 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc8aacde3 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd514d0b9 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe2c88dd2 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x019437b1 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x19a74ae4 icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x21735eaa icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2f18592b icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6aca3d88 icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6c7cd171 icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x7888ffed icc_link_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x943b0f7d icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x967c0250 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xbfcc8221 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +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 0x176eb04f ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x23ae9ab5 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x90fa53b7 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa3b3803a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa75eaee5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xea241e03 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xedd525ff ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf4aeb2b0 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf80bce1b ipack_driver_register +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2c9b1ef5 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4af15618 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x56aaef52 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x764e0bc3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xef095c13 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfd6d07bb led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24051cdd lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4223dab4 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5cea26a7 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x87ce93e0 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa0c04470 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbadf0437 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc7902bb7 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd368cdc6 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd78d3db0 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2965a60 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe7848e26 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1b34e8a8 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1ca8d201 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x26ebb4be mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2ecd4b89 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4695248e mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6cba526f mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6f9e6545 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6fed0357 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7f0c62fd mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8ee8612c mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x94c1c38a mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9a162159 mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7ff51b1 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xee30d127 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00af95a1 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d94b0a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157aa73e __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a50641 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19acd14e __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e382318 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24935482 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28991160 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29ef0066 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cd1be34 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ae1afd1 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0216b8 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56bd5947 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cb0a24a __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65835607 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68b2f180 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7baca7fe __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95286aa1 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cedcd57 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa60fcee9 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafae4e81 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4b03b2e __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7500cb5 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1fd1dbc __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4cd3c1a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe278bd6d __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe68d70a9 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee926d8f __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf30b9aa6 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf438022f __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbd03183 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x29069ebd dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x337983c2 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b4aee39 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x55fbf991 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63a89bcb dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6853cd34 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x714e6844 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x790d6f1f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c1916eb dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa585b27e 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 0xadfc203b dm_cell_lock_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 0xc7ad4076 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc8131fe2 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca41aba1 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe1715e3b dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf3854730 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf618b429 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x10a85626 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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-cache 0x03bb93e0 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8e094572 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xffda7d9b dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x17aeb1f2 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd2d66bb7 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 0x379bedf9 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 0x660b78b2 dm_rh_inc_pending +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 0xb6ff04e3 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 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe4cf0f15 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe4db08f9 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xecf71ffa dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +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 0x2adee13f dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c2c166c dm_block_manager_create +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 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +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 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x55f98e63 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7083b63 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8dbd4e1 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6367ed7 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0a0a3adc saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e8e73d8 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x31a50b6c saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3651d6d5 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5e4d97d7 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x87c4c5a9 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbdbb109c saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc843c6aa saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcfefcf01 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeb6e3d54 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0ff837f2 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3d924605 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x696828ba saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77353309 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x88bb57e9 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xab85678d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc093fa10 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f667d6d sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x177bb916 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x228ae8ce smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42daa497 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d1781ff smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4eb4e118 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53b6386d smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5cc020a8 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c530361 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x708d0261 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83c52fb0 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x86f51789 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad586650 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcca883be sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd870da4 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec5bd242 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf385d76e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0aa6af5e __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0ebd8e93 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1635481b vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16f67eef __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f977cdd vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1fd62815 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2cb70d61 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ad09e0a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46c5af64 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c3eb121 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e6d5349 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7431ad8b vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7eeeee2e __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8476462d vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x84ae7bb1 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x874ecc4e vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3edbad8 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa8979cf2 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaa758415 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb3ce77c2 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba92bcd6 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc37e9464 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc766cd46 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc584b19 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6f74af9 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8192224 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb94fd8c vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf807e776 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xffa99141 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0b81e893 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x394d4903 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5a3c6b98 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xcf7d56e3 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xd5e45575 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00c9aa49 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19de07f3 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1c7150ad vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fde8a6b vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3102625f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a38d8c2 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3df5ab88 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a7a121a vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d9f7ca8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x517f6ea0 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x530bfacd vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b28ff02 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x61e90e7a vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x63520ed0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d928c27 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x760c5eb7 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8295d4f5 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa735f7d4 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa8ca2614 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab7806aa vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac6c0578 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad9d2cea vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6a9223b vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb74787d2 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4f30915 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb22db87 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdd172ad vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xce8267c7 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd2534c7a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8eb23e5 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb5f88d2 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x4011b4a9 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0b17a786 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7540b103 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeb1955f7 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa5866905 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6a161463 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7f712059 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x11aadd99 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xeef663a0 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x8c85ac72 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8f4d920b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xcac5e1f8 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/smiapp-pll 0x17c170f6 smiapp_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0aed2b68 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fbba708 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23804011 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26efc25a media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x270a18a6 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c046c36 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x306a43ed media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38d92dcf media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b82314f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ba5ad19 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c077db4 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43999f4d media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d03fae9 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4db921a1 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5744eaa3 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58a0bd45 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60377b7c media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f172c44 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6fbd1b74 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7445dcd0 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84ce86f9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x854fd18b media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8634b13e __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a3c66f8 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90655351 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91d4c112 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98fc0a4e media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e5243fa media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4ef7267 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa65e34d6 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaadeed88 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabc61a71 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabd1b8ff media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad69cf1f __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6a1994d media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9548c6e media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9008b4d media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1e6ef37 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2823cfb __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd463351f media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5a3bf5d media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdfacc1a4 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe78c1db5 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9c64141 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee1e63d8 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf339312b media_request_put +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x27c65228 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x00a5e3a7 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b549676 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0bee3496 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e8116e4 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11d13266 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x174caad4 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2941b39e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x66ea0d2e mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a6fb601 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x70eb6285 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x79ba29ac mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8cecba83 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa0758d03 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8a55d31 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4e4525e mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbf25a981 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc0eecc59 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd69eb6fd mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcf5e5df mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x010cb641 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d849f37 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f4a8993 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10fc011c saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a74a539 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b6ba1b2 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x361e965f saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3a7ee3d8 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40ee4576 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x42d0b80a saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f2c5548 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62394120 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6e5052d4 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77981b63 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83810982 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bd654e7 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa9738c84 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb488faed saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec23779b saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x125378a3 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x38c0c502 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5914a792 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb9c28a5b ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd0cb5a40 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xeab270b9 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa9a82fb ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x195d5d45 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x20bad0d5 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2e15f7b1 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8038da65 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xabdcc319 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x02a54bc8 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5bf504a6 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7986c887 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7f7ec610 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa139a927 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc2af1447 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe3276cc4 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf5ad3dc2 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x07833ac4 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x019fa3e1 vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x39368fc7 vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x8964818f vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x9e18c9c6 vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xb246cc63 vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf24132fb vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x12d0c07d vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x247b5617 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x24a0a3e5 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2a4d1913 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x99e5b28c vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd917df34 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe4da62cc vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32dfa6e6 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3731f233 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6daf04a4 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6e62a55c 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 0xc5eb3813 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdcf11009 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe8f529b8 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 0xe73fb681 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x19ca61c3 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4524549c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2cea985c si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x59f6f4d6 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x69286bb2 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x79cc9047 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe9d87e5e si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x167a11a7 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1aaa6953 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b6b6359 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21f69647 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b32c0b2 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43936908 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x559457a3 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5811ed15 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x62541547 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6abccbb0 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x78757703 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b4e5e69 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b69ee77 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c62b0b6 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb75c2fb4 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba09216c rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdecee8d4 ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0b2962a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0f56cca devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1ad6b03 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf648b827 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x714065f2 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd7c30544 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf11645b2 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9fdbd0c6 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd029627a tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xb5c9e298 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2436c59f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xfa0e7f67 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x1f165f51 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x18a3271e tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc6bdc823 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x116273d8 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3c4cac5b tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xac9f7829 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0196863d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1034a626 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16076f0f cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x161eec81 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x170c55eb cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c60ed1f cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2203aa83 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29f7c4bb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a52bbbd cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x429a374f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42ba374b cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62a676b0 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d00f6f4 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73a4ecde cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x945c405d cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3369565 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbbc863a4 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1cb028c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc35c86d9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0b338d2 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf93243ce mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x18aba532 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fddcbc8 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x31d91b59 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3baf6915 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x464acfa0 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4752322c em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x487384bd em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4feca98a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55d036e5 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x63d761a9 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ac96001 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91a2e518 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x98e4d20d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba6b557a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe000cea em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc23585f8 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc2ecfc96 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5d74d35 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf468afef em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0a9a0d6b tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1f63a4d3 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa10f424b tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe959ad07 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x46a7c983 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xedd52ce7 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xfa00e578 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0d120d0c v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x32a664aa v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7aaedacd v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8dec5b14 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x933b9b6a v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa1eeb6e5 v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaee17312 v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcf13b523 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xec3be69f v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf16dda3e v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0332e056 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0530c41a v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1124c5d7 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x171a859f v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2082299b v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e759f6a v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fd7cee2 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35234e39 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f9ced22 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e24923e v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5478cf2a v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x553c7315 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fb425dd v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x712094a3 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x785dc8b2 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b619537 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81a0b4eb v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8686aad2 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8af4bfe2 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f86db97 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x964ffb84 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa220b009 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6d7d33e v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb86b1b3e v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6afbcc5 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc874d1ed v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd79bb5e2 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbc94356 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd957abf v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe213db7d v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe378be4e v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedea1d35 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0d2747a v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5cd4dda v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa7be87c v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0690f2c7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17741ee5 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37c2e167 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x543e419c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ef50370 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6557b78d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b2b7dbd __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b5e540b videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7e092644 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x833f990e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e28c36f videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x920c8ea6 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94312ade videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d8110bf videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf140671 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf74182f videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb423b994 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba66a77a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc2193839 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbd43b2a videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb499ebd videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5baf7dd videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed17cee3 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf5e137f3 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x19c17ace videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x38f39e68 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x58c6e911 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x683b7317 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2414f08b videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa0ff45b6 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdefff383 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x040214ad v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x081e353a v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0acd1ac7 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12aa00b1 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13503c4e v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178a4812 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1dacdbf8 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a0b77f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28b624ec v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x367c24a6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36d6c5c7 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ac3ad0b v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d94e6b2 v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53457a2d v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x585b6636 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c3929aa v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c694518 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5edc5bdd __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61817752 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63a7c466 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x666fbcdb v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x699de5c6 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69f5fefc v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d546eb9 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73885889 v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x773aeca8 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8597d42a v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f8709a5 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98b871ae v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a5c420c v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ae2c450 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9af5067e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e8db516 v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2aae470 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa78e6fc5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafa9d9da v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb11f591a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb27297f2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb778d266 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba70fe4e v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2da5c07 v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc677e28 v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd8989da v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdebd169 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5cb8996 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7ad79fe v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8fdd5ea v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6b23ff9 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8770199 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf00ab256 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2208756 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf369ad35 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf631bf9a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7250546 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf95742eb v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf98db683 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc3a65bf v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x27ed2092 pl353_smc_set_ecc_mode +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x2eec2ab2 pl353_smc_ecc_is_busy +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x31112d75 pl353_smc_get_nand_int_status_raw +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x80ef3725 pl353_smc_set_ecc_pg_size +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0x84eeb67e pl353_smc_set_buswidth +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc00d163f pl353_smc_set_cycles +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xc37aa3c1 pl353_smc_clr_nand_int +EXPORT_SYMBOL_GPL drivers/memory/pl353-smc 0xe2603369 pl353_smc_get_ecc_val +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcfa2e44a pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf82e9eb3 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xfc2cb721 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0de83dea da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x40e31eb6 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4f205080 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9f39815a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcfbced52 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd1f657ae da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe3e53055 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3cb34f1a kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x85851dce kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x934b5c88 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbd7d1f89 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd470facb kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xddc36829 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde051471 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9cf39df kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2e5a354e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8a708ea2 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xeb3f79a8 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x091aaa22 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x332b7c89 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa746b4df lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc7599122 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xddb9951c lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea9bf50e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf0d40203 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x03de7f20 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x38b3de26 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x48f6ce48 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fc0d10c cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fcd0d4c cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1715a6bc cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17187afc cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2094bd41 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x20996101 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2e4ccbe3 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32715f75 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3db24a74 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3dbf9634 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4802d026 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4cf5cc00 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4cf81040 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5420bbb0 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x542d67f0 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63a1a04d cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63ac7c0d cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e875778 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e8a8b38 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9075b535 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa4d501c madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb29a2c74 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb444fdb4 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb44921f4 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd855baef cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdb0dc220 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf771e0b8 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf77c3cf8 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0f91c5da mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x227bfb39 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x30740e51 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x62c1b019 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc4dbf2fd mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf0412aa0 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0de818ad pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1059bd85 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1889121c pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20759228 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x27a38551 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52a90926 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5805a5e6 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5e63c7e8 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c2eb713 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb203c683 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf73fc787 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8fe645e7 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb55cc33b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x041995b4 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5236f040 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x91e007d2 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xabc73a03 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc795e4eb pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7022fbae devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x029ca870 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x123a2329 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x196f4bd0 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a6b19d1 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c625f47 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31541a86 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x478d819a si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bf27768 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53f761b8 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57c59815 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e02007d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x613b211d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x738eef32 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7899b215 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x822d06a5 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b460111 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d5604dd si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91d9a077 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92eeabb8 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x971555a8 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99f90b2e si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a0e1495 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bd22ed0 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f268a40 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3b7ba28 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae24ae75 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7d00cd7 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbab60bfa si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb83e69c si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcaac8275 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7aad7af si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec20afa7 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee812493 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf04e0725 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x58e5faf2 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xc2610aa0 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9ade924e stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd18a77ff stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x63ae8d89 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6e73f239 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa6445425 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xde534e37 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x312b4c31 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7061f013 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xeae9027e tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x21b85535 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5bd1a2ec alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6558a060 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x87ea8cbb alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8f1e2afb alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x97aa959c alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbe7722e5 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf68cfe2a alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x076c28ad rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1190631c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c676be3 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x25dd23ff rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2800814b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d430223 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34864682 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x348a2ef6 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c9c0b4f rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f55e519 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f6e0ff8 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ff34021 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7baa8e7e rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8df517ad rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x986199b5 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9c027210 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa13bb2b2 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb8dfcd10 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbcf289a6 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe027f8bd rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4b55985 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf56233fc rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf7559e81 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf883d6fa rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0293ed7a rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d007cb3 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2784d235 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5f8ab512 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x936dcac5 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9d511c13 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xba073450 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc15d37b5 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4e32f28 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xde5f2a5d rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe5a94a42 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xed08846c rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf00d92b1 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x13a0bb91 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6d7b6557 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7c3f38b7 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc38839a8 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 0x5e7c05d2 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6f26e6b2 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8aeade3d enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9603e81c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c83e44d enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7f41803 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd20d97a3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3ba9049 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x117bbe86 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17033109 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1a7780b7 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x84dadf56 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9694ca12 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9bef7940 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc38cbefb lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe6e16d20 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x271a86a1 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdff8b32 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x23bd180e dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9509e5fe dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa401c1c5 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x2dab6361 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xedfda2e7 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x160a37e4 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1f0086c0 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x323f0689 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x537de776 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5520633f tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x65ebb127 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x74f11e0c tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7c1dd17f tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfa6a5520 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0c1df541 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3334d0a9 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xce2af53f cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2ca0425d cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x52f2098d cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdf598ddb cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xbd6724da cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x62808d5a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xaff02b74 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbf9cb4b1 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x95c6e98f hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb45f773b hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xb7898cf5 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xbd6f891f onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x576ea945 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xdadeef1d brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xe74d08eb brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xb7e6bbca denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xd647d0b1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x25c3c8dc spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xff562543 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x23b33835 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x36b28005 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4980acf7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x506d4067 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x522e3ca0 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65fc713b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71be1e8c ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaac94949 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb800f9a3 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba9d226d ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe6d46a67 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8b631f5 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xefa61596 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfea43051 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x150c12e5 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x25bf22d4 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x30264568 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4850cf36 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x50ba1cae mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5c612831 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x676bff22 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa1f09df7 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa531203c mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd0cdfc87 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeb3e1c1e devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf452621a mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfbf6f70f mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x01c6ad9f arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x987dc0cd devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x08726de1 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4a1c5532 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5bf618b5 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x751fb79d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89581f43 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb373f230 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4287635c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x50be32f8 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5572d01e free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x778b27fa register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05fa61ac can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09760250 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a9eb3b1 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d38e3e2 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a0199ef can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x468b4941 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5103e9cc of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51a7b1b4 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51ebb4eb can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57e56303 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e52902b can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70db041a alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71b5ffdd close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74aa7ce0 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x817ebbb1 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a157bc1 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0e96179 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6db5159 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9ab25da alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc16b5c26 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd35c3a9a register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde977c39 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe50d8064 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe56da080 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xecb044c3 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf673f833 can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8d38c32 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x225e9bb4 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2401b5da m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x37590897 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x42fa67b6 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x83df270c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa3cc18c4 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb839a99e m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfce9de1c m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x96bad0a5 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc95171f9 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd09a0257 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf3bb90f7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x8f83e60c lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0af88869 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x146ee3ba ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x173d821b ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x301bce2a ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3fb820df ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x44948b31 ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5460a574 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x553c3261 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x63852215 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x78f72e38 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8d523a24 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9d05f98f ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9e66377c ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb718afcd ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb79d9e8c ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc6563e8 ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcb062d01 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x13c7b762 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x22f8cc02 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x31cca689 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45a56eb9 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4a3e73ef rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x63e60029 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x64e699ba rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x71b7120f rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7527b002 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8983088f rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa9ea2d61 rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xca33fa66 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xda5d15ac rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7b26d0e rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf8bbe8b0 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfaf416c1 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0648bbdb arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x46c279a7 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0010fdd8 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02efca27 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f4f8c3 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0decb18d mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10dc4674 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x121b7d34 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122b1911 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1262a017 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1417b4ca mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ef59ff5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa9369e mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x201ff5ee mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20ce501a mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27c42579 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad63513 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3454980f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36474e96 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x373a816b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x376d7d0d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x388cfd35 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a96bc8 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d47cf0 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bd69e20 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e913aea mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ec71d2d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f90486 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x436ded3a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x442b81d2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x447846ca mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bcae838 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ca4c2bb mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fceebc5 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50157754 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x504be540 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5282b75d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52945e25 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52d9fd11 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f32cf1 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5542c549 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55f6dda6 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56004977 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577894bb mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5837096a mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x583c84e3 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59f68329 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fc65477 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x657bde3e mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c7b5ed mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x694cf6c5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df345e2 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f48de07 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7104299a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x762a6f85 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767df7bd mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x772fd189 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7984dc6a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x798a0736 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd20b60 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d2f0791 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ddf73f6 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fc6d17b mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82569b3c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c3e3c9 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84834d39 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8776b532 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a85986d __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8baaccab mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bc013d0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bdf06dc mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c980c95 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97d4802a mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b409510 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b89b11b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4a91db mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa297c7e2 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa38a058d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa458b7c3 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e5e8eb mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa30a614 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba8551d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad48cd17 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad902e88 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1309928 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb322d6aa mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb395376d mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb571d1a6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb698359a mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb757358f mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7b3a6d0 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8cc45b1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb959769a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6a8c76 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb97bc3c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc612f92 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd4ab663 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdd80f22 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc301725c mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a7a03b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc964bb01 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb85cfd3 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0bb879 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd76ab4e6 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7843a97 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8164bfe mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd84c9894 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8947b96 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd5dd4cd mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddf474c6 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddff6178 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde6066ae mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ace06e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe99d42e7 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9a34892 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea2cbaa9 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe1d1ce mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee1b0e92 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3900a69 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b1d1c0 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf59aebdb mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5dc0ebb mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65e9f85 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf67c227c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b7cd27 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7e39555 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfadfb616 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed426ec mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x003ca75d mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015c0a54 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039612ff mlx5_core_res_put +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 0x08cfce5a mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09b12103 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd453d0 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c085631 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c1b68f1 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d91e2f1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dbe5978 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f432e63 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x165dfa85 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x179b40c0 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19e68c5e mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ad951c8 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c8f93d5 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cfeb7c5 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20bff022 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ea5dc9 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21ad1603 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c0493e3 mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ce46448 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3509c418 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36eff282 mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x484cf605 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x484f0294 mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c62f37 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e254063 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edbc21d mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58edd71b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d56b0d0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e031f79 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e5f9028 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6108fd44 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x626df747 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66292395 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663b903b mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6963e8d5 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b666657 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x712efc57 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71ded5b3 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bcd2c5e mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c534194 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x869dec9d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e6eae7 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b665870 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cf1821c mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c9d8d4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9461b4d6 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b049ab mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97fb18a5 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f7dc00 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa16fe0b9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6f61cf6 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacbcc914 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaccaaa92 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae27b063 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae8acb96 mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf3e641d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb366986c mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c4bae7 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9af7d6a mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd82b126 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc05968df mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e70527 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb86b738 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b045b9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5981d65 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74d8d64 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7542d15 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a9a045 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf02366c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17314cd mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3162c86 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4d29e41 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe70bab24 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe75f2ef9 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed62e2b6 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8d4828 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf009ef0f mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0f37930 mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5763b79 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7fb2ead mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8412205 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbb0f9e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe89133c mlx5_modify_nic_vport_mac_address +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 0xd668dd21 devm_regmap_init_encx24j600 +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 0x15c21e37 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x41de7f76 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4cfcd1d4 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 0xafe4eaf5 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x31633de6 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x75e8df8f stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x90202de6 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd6fc1406 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdbd9afb0 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2089f30c w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8c610351 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc7f3c735 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf73780a8 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6bfa6831 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2d2c0fed ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3e0249b3 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaddbffcd ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb44fef92 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd404f815 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7c1f7383 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb54be3a3 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xccfda47c macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd74cf59f macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x972745e5 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xda571e50 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x043f81d9 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2055b921 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x304a877d bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35ef4c3e bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63964df6 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x690747a6 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74ae580c bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8246cb23 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x827f8255 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87bea07a bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x882d8944 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x891ad418 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b854ed3 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaab0b253 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee11d76c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0815d2f bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf68670c6 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf733dd22 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xcdac2a8b mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x3782b169 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x09c768f8 phylink_create +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9e928a5f phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcc0992db phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +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 0xfb4f892f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/tap 0x066052e1 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x47f66acc tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x55ceed25 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x580ab4b2 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x59b0502b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x88a94cbb tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9b61a2b0 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xbec92550 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xfd65a6cb tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2a451959 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd3b0beaf usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd5e34616 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xed6c98bc usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfacd2af1 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0f89b387 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3accb38d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4af1f009 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4d4cc3d7 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd10e1d4d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd6914606 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xeff2143f cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfe004834 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xff98b15f cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2e658697 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x46fb35a2 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x685ca171 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9fe936c2 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb7d4154a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe2ef2571 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12477b84 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d359866 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f5cd910 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4abcad91 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5382e93f usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x577d257e usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f5b93ae usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60cd45e2 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67438432 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x677eff14 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x721e5390 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75a2bca8 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x76a15942 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x783d81e5 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d8432f1 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fbe51dd usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84a0f529 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b322514 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f34e7d9 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98b97319 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0f15e22 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb661ad44 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb97b24a0 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9933351 usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba82cb30 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbaaab83 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc28de896 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc66fed9c usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc70c1d4c usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb99fdd3 usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce645097 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1ac1200 usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeca0ba2e usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0db965e2 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7a2bc99c vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x7b542f5e vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xaeafdedd vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x08dc69f8 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0f9ec801 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x203d31ab i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5f06a7af i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x70dc0587 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x73e09ce2 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x76378d69 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7bb129a2 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x85f2d9d3 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8cc3e63c i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8d5bbeef i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb0d589a3 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb95c530a i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc87c3183 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd517e16d i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd5c94e73 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc540e3dd libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06982aa8 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35919a73 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x917c2cf7 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcab4d2a7 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffbd02ff _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x017430c0 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0189c36f iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05c498b0 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06dcab64 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12a5f3a3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f845a5a iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20065b70 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x297aa511 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29a92ed9 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x339a4a7a iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37fc78e3 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a317031 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a5873fa iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e2d9cbc iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x423795c8 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x437afa34 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43f07748 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4667a73d iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50b2bb85 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x530ad889 iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5416e263 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54c1b5e0 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55139d14 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x573b0b14 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66e5cfa2 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x681aafc4 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ba7d634 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x719e8a13 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76256284 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c907be0 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85d3fb83 _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87a2e447 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x919cedd2 iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x973383de iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bf89e9d iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e27fc54 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e8a8a5d iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa14727de iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa57658ee iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa724b1bc iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa95b364e iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac7d005d iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xad39de98 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae88c01e iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3c7b7c1 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb601f8cb iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeeb633c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc68556fb iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xccd77a88 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce933a9b iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe78571fe iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeca183e1 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee3ce491 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef26e148 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfb421f45 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1aab60f1 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x31f04bc6 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x47bb760f p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x489ebe75 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4fe40fe4 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x905acd39 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xad8dba5a p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf502a054 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfc4ff999 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x15ac9073 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1a9a57ff __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1ad6e56c lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1fdefbce lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x219c5445 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3a8c6d7f lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8cc77590 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9771575f lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9a3a03a9 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa52fdfda lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa8a15aed lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb146b476 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc824fdb5 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf3cc9b1b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf733ef73 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfe4d4bea lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x09aa3204 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x26b38e61 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x28323019 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6fe6b540 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 0xe797c782 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe8160f37 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeb308f9c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf9baec69 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d15d342 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13c93d72 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x16138e56 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f3e4a13 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x21c9907a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2a1e897d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2a2e9459 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2b6c0ca6 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3854ba94 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58668c15 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c93a358 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x675bf58b mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6880e0c7 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x69ea5aa3 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7346a2b6 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7adc1b4d mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x932c5dad mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x99fe22ab mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3ae16e1 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc17d8498 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 0xd880d1a2 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe3bdd713 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0728f5c mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8829f0e mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02775230 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09f6e248 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a3fabdb mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0af76aba mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c8cc305 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0dd0de31 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x159e2ed5 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b5581de mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ddc6168 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2128c172 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2153e85c mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25fd3325 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d887c40 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x323efe44 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39ff875c mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b3e224b __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e6edd2f mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41f985cc mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41ff5a80 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46b55336 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47391a24 mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47795a8d mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51c1a6d6 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52ec2baa mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54cc3ef0 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x564b7a95 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x587b2315 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65f0d09e mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7127cdbb mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x725b9bbf mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b622f44 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b8bc20b mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80cb3724 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x861ec681 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8695206b mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x975e2103 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97731bea mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b971238 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ba82a12 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ebfa5f4 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fe0da8f mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2be9583 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9c129e1 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae782579 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf568c7d mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb42841c mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc04a3790 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbc8b586 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd754a608 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd84719b mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0557c43 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeaedfe7a mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef4210bb mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x127b03a7 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x14833c8f mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3b90d33d mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6c9f42f4 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7a100c2a mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcc3b9e97 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcd763344 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc0f60dd mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1ac0f3e9 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1ac729b2 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x46ec31c3 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x69307ed2 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xad1d3cf0 mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd00c3290 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe01fcfe5 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0220ccd1 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c50211d mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0daa3329 mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f07df26 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x162d187c mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x164cb17f mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x179ed154 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17dbbe04 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1854ad73 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e141ae3 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f8bed41 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20146ad6 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e4f8662 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35fdacb1 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x366a66dc mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x395fcd2a mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ca1ed19 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41551b5d mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4289db48 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x483ac4e1 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ae61a57 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b90c8b6 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51b0759e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52798ebc mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5385b654 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5655a621 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56f41f3e mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dd53d07 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66f9af9e mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a83f5d2 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e625646 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x720d9990 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74bef3d1 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79e0caba mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82673108 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x882f2abd mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88949a66 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89748994 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 0x94d3967d mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99bfeec6 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cada533 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa174a6ee mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa914332 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac3a7800 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xada0452c mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaff10ef5 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6f21e5c mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8986de8 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1b9082f mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5632fd8 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc91670c5 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce2835c5 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcee0d088 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd22749fe mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbaccd31 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2aaae61 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5193aea mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb6fb550 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebb8b32d mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1cd3a0e mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5aa4e24 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5ae2edf mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfeab56fd mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x26fbf008 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x310bf9f5 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x495dff50 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7acccc5c mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa05c7722 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb8ae2b7b mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc5cf06d5 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x067a3961 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e1f45ec mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3301e41b mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x48ff4d19 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5421f868 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x546b34f6 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x64601765 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x712ff72e mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa338f4bc mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb9fa3b44 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc34da06a mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd5897dd3 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdc3ce910 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf3b3cb9 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe174985e mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe65d8b23 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xea5f7f08 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf91dff6a mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa0e85f7 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0ca560a6 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0e8454c3 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7ca973cf qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9b259c16 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xaef92b9d qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc2db2654 qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc4bafa4a qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd459d876 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfc8d0ad6 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09658ca8 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x144ba71f rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17b317fb rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x192435f2 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x218c824d rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23b7001a rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2aed1261 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x307a97cb rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3335895a rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x365de7d9 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38cfb608 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b2b3989 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49de91de rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5150d814 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x560b8d87 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c8509ae rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6290ea34 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6780efa1 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67cf4637 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b885910 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6dfaf1b2 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x718d1e85 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7197ffc0 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75c0f9cb rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80274571 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87b178c4 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x975706dd rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97732268 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9979fdbb rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1bd5b30 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1e84508 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8651be5 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb030e7ac rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8bb6e8d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccf18c12 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf1487f2 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1d21796 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe3c8661a rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7b12a59 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0e3ccd0 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0e9eeaa rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf18d6ac6 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf520a1c1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf52ae261 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c5cccc5 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x23a0e912 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2a7cf81f rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x35447632 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3aaaa54b rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4de93030 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5113b545 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x55e67d01 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6d47c3af rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6f5e3d53 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc875598e rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe3543793 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe3c893d8 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe5685b84 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe8a21e92 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xef782aa5 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01902b9e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02006147 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x049a4589 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05fdf248 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aebb684 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f41cc68 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x118d7996 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x204cb31d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20935b81 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29ee822a rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d1ffba8 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3705fc12 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3941d11f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40024925 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47cd737a rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4da5e054 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e5faac7 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x535bf698 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5978393d rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a3b0ea3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f96e27f rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c189e90 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78e31aae rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81a7356c rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88aed773 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b81d861 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91c4fa6b rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa19b2eea rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa33cd7cc rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb29ab520 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5ed2265 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd521bf9 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2f451d6 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc31e82cc rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc78bf2a8 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb3d487d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd01f306 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd521588e rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddbc37cf rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe15fd2c3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe50d864a rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7da0ebd rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7e95e0a rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec1d2082 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeeff2ef9 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf485c03d rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x929a8719 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa5f4de79 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb256c740 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd9cec47b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdf94ccbe rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0d2f4434 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5e4cdd32 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xab36b69b rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc8fe22a9 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0a645cec rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x10228e08 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x14236417 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x23da76d8 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x284b97e8 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e515123 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c66304a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x72784b79 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7b9996ba rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7e2589c0 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f98cfc9 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaa0ec63e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xad399486 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbd6db104 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb773d0c rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfae93f76 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cbb1593 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x843bfe25 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8de8d60 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4c8e6b6 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ec7e76c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f5f18f6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14a2c0b6 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17eceedc rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18a5909f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x209bf7f7 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29749806 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38402456 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a4910d7 rtl8723be_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 0x50676ca0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57a22a61 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58bec70e rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58c5a246 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d3b9d7d rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x78743577 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fa4fc0f rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3609ae5 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa80b3aca rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa91f0e88 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaba9c7b5 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8524e1a rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe37ed6b7 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe448a5c6 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeed348cc rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb3328ca rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x089e5e1e rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cdd7d78 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3447522d rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b4fb09d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3df00437 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bbe2748 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5dc24b57 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5de47074 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e75f896 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68efd750 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69778594 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f5b0b56 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x715a95a6 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x733903bc rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bcd589c rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80811668 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80b6c727 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8111a818 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b79b7db 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 0x9ebaf9e3 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa20ede89 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb70ec2d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3a45095 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xccf1d19c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf872867d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1a5367f6 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2c791777 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x64d077cd rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9356aebe rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xda07c85a rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x21353c1d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x310159e3 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x36623caf cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x42f7f7a2 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4176cbd8 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x45e01053 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf858b389 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03659e18 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08917a2e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c91bb64 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cd01eca wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dd60a58 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16f5f8ef wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ab496ac wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x287bfa1e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29317e53 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c5e337d wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f9248c8 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30ebe9ad wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3732b0c6 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c360a7a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f508cac wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47c9dc24 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5229b415 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dcaa964 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x638f064a wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63cd7251 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x644a6f3b wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65481ab9 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65acefd4 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x674b05be wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67bb7532 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c2b10be wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6fea2623 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x778e7197 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e6ebff1 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ab08d7a wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8db8372e wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8edaeaa2 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d32acd5 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2a34791 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4b8eb7a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7122ca1 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb20715a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbcfa7d8 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfdf43aa wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc38ae149 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdebd724f wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe25e9d5f wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2831ece wlcore_remove +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8701d729 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9d6837a3 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xabcb02c2 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd06934ec nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x210bc35f pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4caaf5d2 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc1345e5e pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd41c99a0 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0659e409 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0a0b50d0 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x367508e7 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x532df38e st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7aef70a2 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa5b7bdfe st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc381e19e st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc46ef37 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0060d062 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1c809b03 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xbed5bc64 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x13216be2 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x74b0b7e1 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa0f91ff1 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0cbe2184 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe7e4be14 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04584cc3 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05ea4277 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dff3929 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x180f6946 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19876274 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22848a4e nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x255704ad nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x291f7047 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b23020c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c26da09 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d4bc3e8 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c6b1ea9 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64fae109 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ed3e5ff __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81f50f32 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83e04bb7 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f41e3d6 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x906af139 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94a0205d nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2092632 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9108ac2 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8ccb761 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf3a57f5 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0b39af9 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6ee96b8 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc84c64c6 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcec5080d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf4287af nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd16a301c nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd65abea6 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe516d331 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedd2685f nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef83e529 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf022052a nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf32fa48a nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf87e29eb nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf921596e nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfcf68ecf nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe728a11 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2a80da7b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x34ce3e11 nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x39e53635 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3a1f80bc nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x40c351b6 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4e045ae7 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62a5ae8f __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x999b6ecf nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa0990dfb nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd3fbf730 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf0db2b55 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf0e644e0 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf82a19db nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 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 0xd71e0588 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2586cf6c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3008e6a8 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c0988ae nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x423b639f nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x55ff49a7 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x622ad4b1 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x81e200fc nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9b932dd2 nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbee7d1d2 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc8ac2ab0 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe4cebb62 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +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 0xf860403c nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xd049d099 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x26db7d79 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x28b42719 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0x2ccf6d23 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xae7419de ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xca2242e2 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xd95b2ae6 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xd9d56ba0 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xddd62c13 ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/qualcomm/phy-qcom-ufs 0xfee60eef ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x6796ae7e omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xb2f158ca omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xd3af449a omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x2efd5125 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x47825eff reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xbe3b6bdb reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xede5794b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x16920d41 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x938fa371 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbb454dcf bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2a8f6991 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x94518802 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xcfa57c6f pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x14964f06 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x59cc0a80 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x80bd146e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbad646cd mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe5a7944e mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0d07dbf0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x479a4bf5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53c970e6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6a09b172 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbeb2f29d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc0235bbd wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x91a6beca wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1ca3406a qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1f4ea253 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x26e6c9ac qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x31bfd40e qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x772c0eea qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x86a84622 qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa630c403 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xad19ab3d qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xcba2c0ee qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x477902c1 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x86fc2ecb qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd62b8377 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe27f89f9 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xeadcc3e7 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x0eb4c0b8 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xc7c30f00 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x6dda267a qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d291442 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e5fc2a6 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x164d5a3a cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1769cd53 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1947b0dc cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b154b68 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2253fd1d cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23d0c9d8 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a02b408 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d35a07e cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42f80b81 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48f6904e cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ccdfa68 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57a20221 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bd86a49 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6052e47b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65353e10 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65e95203 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x677699f9 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67b4e60d cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f69ce84 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72b8eecb cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74ae94a5 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77efc15d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7aab2fd8 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87f3c298 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8acc9ef9 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d6e9272 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ea3e9ce cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95efb196 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99ceb102 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dc01f5c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1e5a0a6 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3d24333 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7e9cb1b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba0ee577 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6ded0ce cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcba4391a cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1917646 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdba0f51e cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5f4dbec cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeab0d100 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec5a781b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffaa2840 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06245820 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0887b448 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18d4830e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d5a2ca6 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e0cf11c fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3269847f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a7ff83f fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3fbaa63c fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x540c829c fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa267ed9d fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaf9aacf2 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb57e1f0e fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc38951a4 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0f3fda3 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd187d2b4 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe4c138d fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x913dd4ec fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xed785b48 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d6030cb iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9d48f3f4 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb74164bb iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbc2c80a3 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcc453416 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe9ffcf68 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfb8612bf iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x3b641d18 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c8673bf iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b593633 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f9bf7b3 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2359b906 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x236614b0 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24c4150c iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2589fa7f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25e66955 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e81e28e iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a48142d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4adcfdb2 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58a4b5cc iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a05a001 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e39e78c iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x604689c6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x666c6cb6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b1b5637 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c353a31 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f4ee172 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77acadab iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c93378f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a5baff7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c9e29f6 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93ae97a7 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9415b586 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97ff7d87 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98883ebf iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0703dc0 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa20fed10 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa307149d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5324aae __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7736aab iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8d7d744 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaec9df09 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb04be684 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb458de14 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4d55f07 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4cd7616 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1909f54 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5487002 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe65d158 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffe577c5 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10ea37a2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2df80141 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x371c895b iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cf81aa8 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x685c5868 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b9d2454 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76ead6b1 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78db9cae iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ae22cb8 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x800dba26 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8319f72a iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84114f37 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb0c33b04 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb265c8a1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf5d83b2 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc2084dc4 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd05adbe2 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0117d050 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d4a649d sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x125b72f0 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x171eb367 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d061cfc sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2af11c67 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b1eef35 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fe77ffc sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x304c73c8 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b9e4f7f sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f599fd7 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68daf4cc sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b617474 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c2416a0 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7606848a sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8645dcbd sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x944438e3 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x998f07e7 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f89601a sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6c37005 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe90af83 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc48e0726 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4366f3d sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee854cc8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7c9dc06 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x066610d1 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ae909e0 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d578b82 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1207a556 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x152fd35f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1820a479 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x191ccaad __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cda5a9f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21c0ee24 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x268d4533 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26ab8fe7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f1294db iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3feb4f51 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x411f9ee3 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49ab1b93 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57c5ab38 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a4c4c2e iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d9d2b2c __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x604238ac iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6520fec2 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66a51838 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b9802ea iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e3ce2ce iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71c81b5d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x795a0ce7 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd7d6be __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dd79247 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ea3861b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85a2bcc2 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a3b32b8 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d7765d2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9058c41b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96cb79c1 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b94b591 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ba77b7c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4914e15 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6b37ea9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad557c0f iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0bf0307 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbeded77f iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddd8c76d iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe54428e8 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf17f2de0 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc0603f1 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd02be29 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd7efe7f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x73221950 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x99a7b688 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9c380676 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xda9a1e28 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x39c7ec43 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 0x1468b55a srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2050f8c4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x27494e63 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2eee9a5f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9939d29e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xce19f7bd srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0daa9c9f ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x371f5fa9 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x51c3efca ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6dea5cb4 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8ff611f6 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaeabb452 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe7304fcc ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xed28a776 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf6dcfd1d ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x040efc97 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x27a822a9 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2ece157a ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x62969cd5 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa03b2063 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc67eda0c ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd803a09f ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0c7fc699 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x14e2a22b siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x456dd699 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4d9ab1ad siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xac9ee670 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbd6704b0 siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x04349fe8 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08244304 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x151f3ae0 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x215cdac9 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2160671c slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24353fd6 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x268fa7b7 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5180d04a slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x69466100 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c0540e6 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b308a73 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f434945 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8efd0b80 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ad1770a slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa030d0fe __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xac09e2f9 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb8a365d8 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc42b5adf slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb22839b slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc945ed3 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd6171b2a slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd7b8d582 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xddb441b1 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb23adf0 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec449f4a slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee1abfc7 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x70f73fc7 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3a9a0447 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6c3360ec aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9d9b2272 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe65902dc apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x06285798 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x09afc16e llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x1024b876 qcom_llcc_probe +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x12219805 qcom_llcc_remove +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x14f99b76 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x2027e82d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0x62ff6e92 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-slice 0xdffee709 llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x71e90472 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x739b42cd qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe7b09916 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf24c91a3 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x689e97cb sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x8285422f __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa6227ddb sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x11497da7 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x27703469 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7d6e5d35 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaf2391b1 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeecf420c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff438f96 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2feef33f dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9ab8b865 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc67f5ecf dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdb4dc057 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe58fc69b dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x327c8d15 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x602a9b1a spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xca3b4580 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d879863 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0ea229f1 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f8d2e2f __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1a44300e spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20f4831a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x296a1b4f spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2beed839 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x50144799 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5ad51856 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d1b3096 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5e07f434 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69555b14 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76bfdafe spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f97d4d5 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa76622e7 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcbadb89b spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd89ab963 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf81c53cb spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x51e1037c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1559592c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x180f4066 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b1c71a4 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1bc4354c comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2341b4ea comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24a66fa3 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d3f5917 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x306fb77b comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30ed6632 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36ed110c comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3af032e9 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x43caa015 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52645017 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x59ab5f47 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d247c90 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67b880e7 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6df27429 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f436db4 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6fb08136 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x744f7c47 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8dbccfd8 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e92955f comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa0e34dcc comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa1bf4cc5 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6a9bbb7 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbcd29d40 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbd179dc7 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbe748ffb comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc581663b comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc7154269 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcde139fb __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xce1d24ef comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda275c2f comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb802266 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe819c3d0 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfdda60ef comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3387de78 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7d35fc42 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9028b2d7 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9583cce6 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xae6c9d04 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb4b118d4 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcce1734d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdd85c8b2 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2583fcb4 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4554aee0 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6a7b5693 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8ee72ef6 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xda74f319 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe9464dbb comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x30b72318 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x13ff59b7 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x8cc45bab amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xd055360e amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x05f4c906 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d717710 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ff56797 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x13e5c2cb comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x17aeef22 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x199229e1 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x28f4c1b5 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6f45e9d5 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7161aac8 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x7af796d7 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8c2347d4 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9369199b comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc194fd7a comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4862199f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd9d45eb3 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe894c2db subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xf6f60e0e das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0dd4bfa0 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1df74693 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x36397f4b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4ebe1cf9 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6b9cfda1 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x74d7cd61 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7df9de8c mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7eb46173 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f169d78 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c4f9093 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaef01aca mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbe22e3ca mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc3cd4295 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc84a5a33 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xea09e95c mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xea6d4384 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xb0d34a69 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xff55e695 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0c629f95 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x230c13b2 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x281c41f4 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2bb0077b ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x342ee407 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x394df87b ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5771cd94 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6b42542a ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7fedc96b ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x89ffe2b5 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9ec5e3f7 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa17d2562 ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xaabd89bb ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb57e61bb ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb9f5bcdb ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe3382fe3 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x35fc9942 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb5dea8b0 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xbda858e7 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc10836ae ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe3c1b71c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf2f3c444 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0ae89bc3 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x32485bf8 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x557de28c comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x69fb4acc comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x79a07413 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa02a6470 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfef39331 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x426fe029 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x72c936ca anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x787205d6 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x89f3cb2a anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8c1cbfed anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9cb80a99 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f4b1037 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xaabf1771 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbbd52faa anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbc7f69b7 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd9f79af5 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdfe257fd anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe0df0e0d 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 0x20a91284 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x4c4daa2d fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8c1e11e6 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf1c0a88d fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x128dbb20 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1b8fdbcf gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2483e2b9 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2d818256 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3fd032a3 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x43e7f9f3 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x482918d0 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5efc56ca gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5b79861 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xda559378 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe874aec3 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeabba117 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb1be6a0 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x17b8a040 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1a5584c5 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ba8175a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x354ea257 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5d9d8ed6 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8af7050f gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa2d72e37 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa62ee860 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa6de13f2 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa943f875 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb217f3c8 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf03c5703 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfba88141 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x34096190 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xcdba63a8 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x15902719 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5db24095 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x34546e6c gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6b1d0552 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x86715134 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x10947399 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x12a7f898 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2850b158 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2b0a250e gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2d579991 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x4ca62907 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x69968250 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x734421c8 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x7ad7c8b6 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x856fcee5 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8c155f44 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa207fa34 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa5adff5b gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xad457d1c gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xd0010819 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf49b9eb6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xf6b2f307 gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0699afb8 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c52ebfe amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1190c8c2 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x28afca1a amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x33b21343 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x450cc311 amvdec_add_ts_reorder +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x473ad376 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x55b04989 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x61adcbbb amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x66d638d2 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xab47fc44 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbe28d20c amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc87cbc24 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd070b308 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xeba827dc amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfb6ceed9 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x0141903d most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x14807ff9 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x2d42ff56 most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3648b882 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3ea807bb most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x3f875dda most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x537c1864 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x558eef7a channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x62f8a42d most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x6b75aaad most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x92b952fd most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x9cbff9df most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xb50d990e most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xf0db469e most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x026da414 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x340ba747 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3d9ede50 spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x405c43a4 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x50e0223c spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5e087112 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x69250764 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x70da64f9 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71befcac spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8181ceec speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x85a56b69 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc0406d06 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd548fca6 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd6080b43 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xddb133f1 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe8bce04c spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf4919154 synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfc06e0fa synth_remove +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x75d3df09 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x7b10fda9 i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xfbc932ac i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x15dd99c8 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x5d49738e umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x6b1dc940 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x70315808 umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x95c13cd9 umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x9824fd84 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xa82210bc umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xd56726da umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x04fb548c uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x09e57fbc uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x129079d4 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x19b2add3 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2018c601 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2302db68 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x24e709d4 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2d67eab5 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2e4f5922 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x371002d2 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3798978a uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x3f599026 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4929320c __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4c41daa2 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x585190e1 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x58b68fc7 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5fc226ec uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5fcb8fc8 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x69610cb5 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7b174ada uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7b67789e uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x7cd1507d uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x880b8b57 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x89bd7e42 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9b57e692 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9c547dcc uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa57242e4 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb10cdfef uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb9b5b6dc uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xbf19fe4b uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc5e7924d uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xcc2542ab uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd15d58de uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd6777ee4 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd7af8957 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xdc316f6f uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xebcbb38d uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xef97e840 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf3f90d61 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf4d64f4c uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x22939699 whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4656ba3d chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4acd4c3d host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x52d832cf wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x60901fec wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x8d91b8a0 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xa98e6507 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xb6c93f6c chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x4ea44e4d wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x4ee8439f wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x67c94503 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc36ef956 __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xe64f61d5 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5f0b56b wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf99154b1 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x0e14aeb9 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x12d60585 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x156bc3c4 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x28cbb9f3 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x689d5902 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6ad62dd3 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7cea0088 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x893c75ae wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x9b789c63 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa69ac72a wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xb8ed0077 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xd6f10580 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe17ca231 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe9cb4152 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x03fe8a9c tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x07199cd0 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a1215e5 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x17edc4d8 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b8537d5 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x282e5300 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x313714c9 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x32c89175 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4a51e3d2 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4a9415bc tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4fbf485d tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x599865e3 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5c4c9bfd tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x70b7457d tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8651c1a5 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8dea1945 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8ff6da1a tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x923a3ee3 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9296c945 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x993517c4 tee_shm_priv_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xae540cb0 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb270aea9 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb29e2768 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc851e5b teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdcc56593 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe1eaf3e4 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe80657de tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf4330203 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x038d7c20 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd0d3f561 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe9e27fdb __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x088153fe usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1ef0b835 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x05409f5b hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x16f5976f ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x19957841 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x28965ff0 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2a760303 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x53f6c2b7 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9e190efb imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9e332fa4 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x023854c3 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x09da1518 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x171fc2f5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1c5eaedb ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4710a206 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb7fdd9d1 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0348dd68 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x437dab25 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5bd4e6b7 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x688699e5 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x69a8f90b u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x87283e2a u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0362f540 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x048afbb8 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0d814131 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x154843a1 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43f240a4 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46e7fa5b gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59197e82 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6d20b40b gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f3449eb gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f91de5a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xacf71c68 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd23b6fc9 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe369b9db gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf9ce2687 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb11e8c1 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3d327a93 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 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 0xbe9964ce gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf1001615 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3df5db03 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb0d984e4 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbc70ec47 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x14b217b2 fsg_store_cdrom +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 0x26efb946 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28a2aba5 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ca759a9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e0aedd5 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3ac1c72f fsg_common_set_cdev +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 0x438708b3 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x48e275c2 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4a9b6ea3 fsg_lun_close +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 0x724d91b1 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x957a235d fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x98b350e9 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9ba2e158 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 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 0xd44210e6 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd7b5bf16 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_mass_storage 0xfb23e2fb fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc5228db fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x066d5a24 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x206af949 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x215192c8 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3641018f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5e8d66f3 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x707ca929 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x72c884bd rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8a6ead04 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d796076 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb59b4cb9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb94d9d21 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc907fc41 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xca57b22c rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd1b7b388 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf87d142b rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x039d6d40 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06430a1c usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17b887d9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1efddf00 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2235be36 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38efa321 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49d44174 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b2575b6 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64fde47f usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68f6e1f8 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e639040 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ea4beb2 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x703a3873 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71c8002e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x935b7fad usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x95ac2dab usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96710ea8 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9937a44e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa69b5926 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8493084 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1a96e63 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb93cde7d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf0c9807 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb21bb34 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb8a8902 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec71ab30 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecd73df8 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf058967a usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf463463a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf759de08 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7aae639 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff4df935 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0018d6f4 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x53dee6c9 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 0x68d093ea udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x883634be udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbaafda9f udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbeed4427 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc49f5e8b udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcf36e02c udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf517410f free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa48453ff ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc70c9ca6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0e97e572 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a89e6a3 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c74fba1 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x566b3ca6 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x594c4b49 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x895f9438 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc4dfac82 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe94d676f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfc06cbd3 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x429593e0 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1ecb816d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xc28d96ca usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x138eeb9f usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b1c554c usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x280ce626 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x302a99d6 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3131d98b usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a4bc75b usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5af1b444 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67e19d4d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6887272c usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77b32fd2 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b0e8622 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8088ff0c usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa010b8a usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabbb10c0 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0e54941 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc29c80aa usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7a1fa39 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd91a95a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4c1af0a usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7e4cda2 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf49f6d18 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x65a88b3e dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7277ae69 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x2c430d6a tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_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 0x859985ba 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/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0482a733 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bb57009 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19d68d70 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ac2af3f typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2adb1f11 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2cb043c4 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dd7ecc8 typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3314bf6e __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35382fdf typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d8d2b58 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4200d797 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a32962e typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b102c90 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4bce04f9 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51050a34 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53445c80 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7077eb3c typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d1af694 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x83ac536c typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x903c232d typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91ea5b76 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1e23264 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac38bb04 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0a34e69 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc19484d4 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc4bd10fa typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcac03432 typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb442584 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcbcf6d8 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdffd0300 typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1005961 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe13a7a3f typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x086e6b76 ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x09873477 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0de6f086 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2a02dff7 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xae232cd2 ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x020d9198 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d122add usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f61b46c usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x440d581f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x44d72e5e usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6937a66d usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8c701177 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x94a35cf8 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa30fb169 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa41453ee usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaab24474 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf68307e0 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf9750e0c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x81d656e0 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x00416e32 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x27907f8e vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7cee7304 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfb401998 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x088cd18b vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0ad686a6 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1883a261 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b75e479 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c968a67 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x32327bef vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3a0b74a7 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xac8d5cea vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xef5b809b vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x6cba7c38 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe75b98f2 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11357f9f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1df1d4df vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21deaec5 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x223b8f96 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x245ab473 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fc96f38 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3396dede vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bcbac5f vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e1d5c61 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48b60a16 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e07aaf5 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6257107e vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x767465ea vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84263dec vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87a58ce8 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88375562 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fb0bc03 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fef5aab vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9037492c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9313ef25 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96477663 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x984cff0f vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e40aada vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6a178ac vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa96aa65b vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabb8a425 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac75b52d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacedc676 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6107b35 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc76dd3b0 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9c99442 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca6ff2e8 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd61fced vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd99dc19b vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdec524ed vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4081cd6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf985e06a vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfea1eeb7 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x047f0c9a ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0b11a158 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0e1fc239 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x10dc873b ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1a5a414c ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4f688b93 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7835e652 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x7105034b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x24b6a14b fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x74206c1f fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x06e15925 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2b561c02 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x313bbe31 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x59bb4d72 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x14e1eb13 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xef8a4dde sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0a968b37 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x17056e92 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1742abad w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x22e0f967 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2539c95a w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x77103555 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7abde457 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7db42d6e w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x82a53e46 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x865d429d w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea73d161 w1_reset_bus +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x96e81d3c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9e2c2670 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 0xf713b2aa dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0696f006 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x55cfd414 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x75c4418e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb248e751 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb489c7ee nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7ddda98 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbec40959 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0155fbff nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d224d8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02720034 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05211405 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e9d045 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ead5c5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076d2969 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc05b0f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c70366e nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d665455 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e4aa2e4 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11be44ba nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15403d2b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18c58c5c nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb87895 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cd6703f nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d73f0e4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ebddd3e nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eda497d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f87d714 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1faac4d9 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x204b4c17 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d04bc7 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c82cb0 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24499b92 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ca0cd0 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26faaeda nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x288e96da nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30997b9e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32a89f07 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36a2be37 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37954aff nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aa9ba19 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b5ad75f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b8b70a4 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bea8295 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cfa2316 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da9021e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f430a0f nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4149a335 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41795ca3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50cb957b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e6b605 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50f4a0d4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x535c333c nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x546b55c1 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5509439c nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57355685 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5989aec3 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c16d4f3 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c926491 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cdbea1f nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e756101 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fc79041 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60202d6a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e14e3c __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x658b025f nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66856d3d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66da6143 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68aa77d4 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6909bfca nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69be2ded nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a2f3cfc nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a5e5364 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a957c0c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f5d98cd nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x738a4f96 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73f76e2b nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73fa5dab nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x740cc1d4 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x742a9dbf nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x748502a4 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7641a510 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a8e304f nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eba3921 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebf4ace __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f83ec0 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d90d53 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a8210b nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cff78f1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef53917 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f94b321 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9038c8e2 nfs_sb_deactive +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 0x966b4db3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9789f341 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99bf30a0 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c4fd741 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1057ecc nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ce48a2 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa416d124 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa43721bd nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4988405 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a0dafe nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb53dfc60 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6c37d2d nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7a9e0a0 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb41ee17 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd557290 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe375ca6 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc27c55c8 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c07aff nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ec3b03 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc891a89e nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcce94e73 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf35fced nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd002fce6 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd011399f nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd708b465 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf1ff971 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe15b742d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe18b565c nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d202bb nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2476dc5 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe297f137 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4c5d828 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5cffd9f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe743140e nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe791d572 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xece0fa89 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0632644 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5957ca0 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5af89fd nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f7f3bd nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92af7df put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98e95e4 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ea7c00 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9eb78fb nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa61a047 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfafbf8bf nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9d1a98 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc66ab6b nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe10a87b nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe63d18d nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xed1d38a8 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x017fe4c9 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e083718 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e622e40 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13e02181 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b0dedee nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20664079 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x231dcd50 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26da4ad7 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b1e577a pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c3c0523 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36751a61 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3678f8ed nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a00cb8d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7d89f3 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e73f10c __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4086b718 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4989d634 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fd8f3fa pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5205f7ed __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x546f4437 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x558ce4f8 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bc0afe2 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67115728 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x699d12bd pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d0b46c nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e16b52a __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b39e16 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76c1a9da nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x780c108f pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b718e01 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dedbe5b pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e25d946 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80d2916b nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f099cee nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90bdff3d nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9285910d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa3cffd pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c5662a1 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dd7891e nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e38eb78 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa69197a8 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa744fe01 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa96eb9ed nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f45dbe pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1716df6 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4713a3a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4895436 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7d3e86c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85de48c __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb88d8146 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe56835d pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151e45f __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcac9675a __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce211e85 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfd15842 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2c78c8a nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4abf36d pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6eb2006 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd951ce5e pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1eca9bd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe53ed6f8 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a7264c __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6391b8d nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee14e917 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf24c1fcd nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf45af3c9 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf69e0383 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf700de49 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 0xfef4c146 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x01fd3372 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b42ca63 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd7977b22 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x65ac15e4 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd9f43fe3 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3e967dcf 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 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x71499d98 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7253ab06 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7657b3f7 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9354ab8d o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdb791906 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf7125f2d o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0597c706 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x68fb712b 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 0x96a7bd97 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaf839260 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd71aa9e6 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 0xf686996d 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 0x40cd4694 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x514f30e3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x87f86d48 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb03a1fa9 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x7169f7da _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL kernel/torture 0xfb91d8fa _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xffc267d7 torture_shuffle_task_register +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x942bc333 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xaac60b82 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x3653d4a9 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x538ddf42 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x097d07a6 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x408316aa garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x84293205 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x8d5a2076 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd30c5dcf garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf95a10a6 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3386d49c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x45f7b1ad mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5ef4136a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x67dcb40a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6a0a3fa2 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe744b960 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x532f2deb stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xdd27fa49 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x44dd81c5 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7d803be0 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xdaa11824 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1aed41af bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x46dad715 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x531aef47 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x794b9344 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x888b46b4 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x937c716e l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaa3b0110 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbefc88e6 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x05cb97a4 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x04d32af6 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a7e3f9f br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1083c265 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2155a81c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3325a31b br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x474f87c9 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50798644 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55f5bb45 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e0987ef br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6018275f br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x73da704a br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7648fa16 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x87bba61c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9f6aa86a br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xab86a29e br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8eac762 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd68c8bc br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf5bf4db2 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x1f73cb39 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x51c92b0e failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x59a2f1c2 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x027718b7 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06457728 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0cb2503c dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1456abb3 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1dc5979f dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21d39547 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a41fb04 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d33f950 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x380175d1 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x392fdba1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f2e216b dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44998c09 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46f13607 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5053b100 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x557a46cd dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68619346 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x726a71df dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78d4b63f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x791a3cdb dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x794d54f4 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79ff8913 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e7196bc dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ecda821 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87f7cd1d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d3eb1b8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa43e19f0 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb530200d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccb00fc8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4cd5423 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe836613f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef3c68a0 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0784aa7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffc34f58 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x08b2cce0 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3368a13e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x52abd400 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x848f8df1 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x98a57f0d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdf66107e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x083161b1 dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x093be180 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1fe7e26e dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b8761e9 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30fc2b9d dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3798c4ce dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c41b99a dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d859c58 dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53f955a5 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76ee4ba7 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x91c7e8df dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93cc21ac call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95c45752 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa26a964a dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa40b3f22 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0d75fb2 dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5422152 dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe151be2 dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc868b67f dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe472bb95 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4f61d0f dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x212f4a20 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x4d8eb964 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x7b6312f3 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9bb1d6ac dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7718e4bc ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb8e48717 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc76ed73a ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd890fd0c ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7baa1d00 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xea6b0551 ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x56168a5e esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x66696402 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xce8d768e esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3d57524c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbc7c0405 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0d147cc7 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x810183bf inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9b4b8f07 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb014738d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb1738301 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc3daafaf inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc94c12ed inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf003a319 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf35b3394 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd625af31 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00bf6efe ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08741003 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10a624d5 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x262f4ed6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4740171c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62d19ce0 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63749155 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b42e4c1 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8181035b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x86d96391 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8ba4ae57 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x941b516b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb85ab94b ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd123a739 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1c5e756 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfadba272 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc24d9268 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe1ce92c9 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x0f47be1c nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xbd323c50 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x15214561 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x344a372b nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4eed77ad nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6ede50b2 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe47be1f2 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x4d12c728 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1d3d7a0f nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2271caed nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xed13089f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x65880e9e nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa353d78d nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x06f0f572 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x07e15c53 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x29ee75e2 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x53b09752 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9da01706 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x66a7035d udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6b62a07d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x74a143ee udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97deba9e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9dc7bf81 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9eeb54fd udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa2b94019 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb42fc9cd udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x1e805fd6 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5f0526ba esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xde25c9f7 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x725b35b7 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbc959f63 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcd26c1a6 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x384798f7 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe6b259fd udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xff0e2a78 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9c99ed54 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf4ddf465 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xeaa35f2e nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46c1de9a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x99eafe0b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc1f6e50f nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe4ac9dee nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xee1403af nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xca756641 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1e28be2f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd2212dff nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfd08f72c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x20080bee nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x78da9470 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1f8758fa l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c209736 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d4bb131 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x420115d3 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4325aa01 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x66d96f90 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x681e3c1b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c5a0722 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76446394 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84ec2909 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88732ec9 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9837ce1d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d58ba53 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7828ed2 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb1bd5ea l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf63602b9 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc69d413 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9124e3b5 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06b0749e ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13275382 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x174cc847 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f5df893 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41194849 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42c30f82 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x47ebb571 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67edd08a ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71a0222e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71afaf9b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7204711c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x744a0812 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d000dcf ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5c8c0dd ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed384927 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe01e972 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x13ed9969 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2aa6459e nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbdb0221c mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe5166f1f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfd41eb23 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19c95b92 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28c7894c ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38de284f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4700601e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50bd020a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6753a23a ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86bf327f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98b3af3f ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa0e5ac05 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac2c795e ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6685db8 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb76f47df ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6eaa6bc ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6f96283 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcba350fc ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9606a7b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf44b651a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfc6afb80 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2208b67f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x24659047 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3332176b unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d5cb1c0 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x917f0c08 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa1f153cd nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa57e5daa nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb5f60f4a nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd256d0a6 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x060e28eb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06322562 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c37a2dd nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1185e4db nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12141a4e nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d0660f1 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x303b0c0f nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30424593 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x343ebaae nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34cb25f7 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x384200c2 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e64e9e1 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40019168 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4192c4b7 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4602754a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48a944dc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4963580b __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cd14e3d nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb5be53 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50e2df6d nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x522a3acc nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5247c0ba nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54c56347 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x596c3a52 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59906714 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b4e47d3 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fe42692 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63c0b892 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69ad8ced __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b36ab7b nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ed3dd68 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x726e577f nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a705b2 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72cdb7d3 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x757d0c5b nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76c14966 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79a31efc nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c498b32 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f878072 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81cccce3 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8307ecbe nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e2b485 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e86c470 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91e4d0ce nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91edfaad nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92635dcd nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x964d4cbe nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97dc1b87 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e0c7d31 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9eb6b79f nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3d5cd1a nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa66ea955 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8163efc nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa887dd82 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac7336c1 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae5070f9 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9359718 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb613d8d nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdc2ef47 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1475608 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc37d7771 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3fe66d8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4eed485 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc61ab79b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc70644d1 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdb440e4 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2fdfaa6 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6a9ad1c nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdec0dbc3 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7f2c93e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebb82788 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebf6fef6 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedc70652 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef7fa2f1 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf221ce00 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf52f3e7f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67b3e7d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6d1788b nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa25b367 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe2acd7c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfebe2ce3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x703380f0 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x84ef74eb nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x62c89328 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0366b02d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2b381596 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x429b1d68 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7e86362e nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c34d606 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x95ddfd8d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9b7d0950 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe2f13b51 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe8eade01 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf74d24c5 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc29ad4e6 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2b82883f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x62dc949a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa54d9198 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb9dcd753 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0327477c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1d84e129 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x23d1a1fe ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3586d429 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65ab4938 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa79f341e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd7c64920 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x4275dc66 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbdd78960 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x166f61e4 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xdc0c48d0 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfb62b470 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0db58c7c flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x17ae39e3 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x32b7d74b nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3771b886 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4e42cf3f nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87832a62 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x982cd590 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa53ed4dd flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad05800d flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xca439666 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd416c88a nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf97b93a7 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2200058c nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x531d0556 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xadc9872e nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf0889368 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xf63860a6 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfb01a1f0 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2efa78f6 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x466713f7 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b66aa67 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87400c60 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89244bb2 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8d40ee05 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9028a48e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ef4df02 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9f91cc2 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbdfab8e nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc9c7f054 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xccf4a409 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf8c28ce nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd98a2dc1 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 0xe99d0b38 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd2a2171 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x00b67212 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x137bc1aa nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3af2f5a9 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x63d1758d synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x65d9a9c0 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8361ff83 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f1fe6b7 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaeb43ca7 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb88e9754 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc3d06521 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd01dd699 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02735f0c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x048a2ee2 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x050184b7 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c1a1531 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21b6028b nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24387d0a nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2696b826 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27cf97a7 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c2ee0f8 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32ccfd1d __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37c77d83 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3adae85c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46573e90 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x574f396e nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d562bd1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f6e2568 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72feb08e nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7355e57f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73de9dc6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77c15342 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c350331 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e3ab11c nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x932d6dea nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e72a898 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa45d7932 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa945bf9d nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0478fb7 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc258ec1f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8c19cfa nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf13b0f0 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0858ad2 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2c29e8a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd35ce886 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd671c374 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7d8a653 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd92e45d0 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf705173c nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc283fb0 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1332267b nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1dc58f31 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x703a3a07 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x70ea8de4 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a6f65a9 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xabe05f42 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x212b1a1d nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x28129281 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa9269935 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x45483a58 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9331f7ea nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x40ab87d2 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd4ddb831 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xde08dd6f nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf20c4de7 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x402a04f2 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xca9b5e45 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe1a02ae1 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00951928 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x06c27e8d xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1eae10eb xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ffe278d xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2222c02e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x288036fd xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5b4b6f58 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x68c08b60 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a4a2fa3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96c6207a xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaafd89e2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9b93267 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb5f06af xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc44c71c0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9a4cba9 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x894293d9 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc84779e2 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa65646b2 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd3687796 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf561abfe nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x09fd16b2 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb1b35ada nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xedf205f6 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0e3eda57 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x46438b49 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x00f7db14 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x29de0d7e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4d39bec3 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x776cd33a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x871bed9e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa26630f3 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x39ed1972 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x5e2ab0fc psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x606f5e57 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x8819a9d0 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x03443c2a qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x35bd858c qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x848431a5 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0d935215 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x18165f4c rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2975fa3f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31b69d05 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3843f917 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3a3117a2 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x3d365331 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3f7d1759 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4172e40f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x465343c0 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x4c8ae24b rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x582f9c2d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5960b56c rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x5aaf688d rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x6e0b3d76 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x722c9325 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x766a4866 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xb299b0fe rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc00ed285 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc1114024 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc6b786b2 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc84a7930 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xcca230a9 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd1d3328f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd6ed88d0 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xd8e91462 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xfa33765a rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfba7f085 rds_send_path_reset +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x62c024f0 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x9ee50e24 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x019c9c62 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x56ba8638 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9de490a6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbfbeb796 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x22bce8a2 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x22bcffa2 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2fdd8f4b smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x34a66407 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x37d0509d smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x490802ba smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x6310b658 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7b7d453b smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xb7bda74b smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xba3029e1 smcd_free_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x07f959f5 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 0x475a526e gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5403dab8 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x697f5e85 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002c0a80 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0265295a cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028331bb rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e5454d sunrpc_cache_pipe_upcall +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 0x0758c6ee svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08482a75 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x094f0ce6 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b11fa6c xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b822282 svc_print_addr +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 0x0d763e0d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eab12fa rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1062959e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ab2484 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12b46d32 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17272d7e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ad67da svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c8712f rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6e6714 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cf05580 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e3818bd rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e99a8d6 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x203bd57f xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219a841d svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233bd2c6 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x250c3746 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e24725 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2616bc7a rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26a79eaa rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26c085a5 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28cf4cbe sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29805c1e xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b91e48d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb718ee xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c4fa89d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c62af1b rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f24741b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x308d1949 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x310ed000 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312896d7 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3266dcf1 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x331b0599 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x331f6d8e cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f92302 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c4d5c2 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3616faa6 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36503db8 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x379a6984 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e998c7 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389782c6 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389c3c50 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40448eef rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41be5e34 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42328166 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4239bb0b write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c60a60 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c5ee18 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x460762d5 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46730ebb rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47049603 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x490abba3 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4d7165 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c780c1c cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca76dba xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4db70c24 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff8e6e2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x514a3e40 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5197febc xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ef2f4f svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x523b66b6 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x524ceb8a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52bfdc85 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f1eea6 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53cdbda1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5504da51 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c0994d svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x561257f9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56142c78 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562dba8b xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577617f0 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58df71e2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba4a9bc cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb49bd4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c5686de svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d745d5c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8dee49 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df2d122 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e087de1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x600458c3 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c47af0 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6141b24b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62121d0d xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b27314 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a36d93 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6505092a rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687154a3 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6876c1d9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a1ba074 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a8477de svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae6df27 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ad0403 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7218845a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73131519 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734ebbf5 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73d12d06 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73fe56b2 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7438fd7e svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76c241eb xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x781db8f4 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79267be8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7ec54a svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab4c605 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cb49960 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da7e864 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fe53853 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8098495e rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81327eec rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x821cd2b4 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x831d4e67 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x834d69ac rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8665aee4 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86de3833 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f54c5f xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbada40 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6ae86c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f76bd7d rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a24c39 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91430e94 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9179ed42 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a82d5c xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c562cf svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970eb494 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9816ad4a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x981f556f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987dc526 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992e6415 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x994d1200 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be0bcde rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0f1281 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d0c532e rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d351d50 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e173366 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1c1266 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb1d331 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd1684e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0571001 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b48304 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3564489 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51b4c34 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f8ee79 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6273096 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa937e988 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a9d98a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaadd4954 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac53bc34 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac56822d xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0840d9 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0efb02b rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4139deb xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52aa8d0 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7efc58c rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc1a9500 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc767aa7 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0571b94 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05bfe1a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc10178b1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc25fecef svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc32ab285 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6892e90 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f279e5 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc880042f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc900e34c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc92380be rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb11f84a svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4793c7 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc169e65 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2367ea rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccff7567 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcebc0816 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb92981 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c2e424 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1350069 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd291b4b5 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41f9889 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd52e2569 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65ff129 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd75de929 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8009867 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd815b251 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8501339 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad315c4 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb9a4750 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc3d9aba rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd65c02f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08f69ca xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0fa9573 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a78d44 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c1fd11 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe60ffe38 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6590aec xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7174451 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7313ea2 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe814b26a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaefc662 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed153c27 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee251b6a rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed55c61 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0be999c rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf103221a svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf12252a9 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf14d64a2 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b58ec8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b7d2c8 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4de1dd2 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8093a66 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88e0519 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98175a9 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0f7a3d rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc934c35 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfccf1a6e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6d0707 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffaca489 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffdbfa77 svc_proc_unregister +EXPORT_SYMBOL_GPL net/tls/tls 0x952d22af tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xfeb2c9f6 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 0x0e898e92 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x103253a1 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14d5e63c virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x214c9092 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21c4fb34 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2405163b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a9ebf10 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f67e59f virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30836069 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4916380c virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59435bd3 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x622b6ae6 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63f2bfba virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67b8596c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b0bb2eb virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ae8f564 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80c5616b virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9bb87374 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ff7ba32 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1d4bc43 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb09e94ed virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6cb8a4c 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 0xbcb900b6 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd2d2b77 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5f65de9 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8404d10 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccd0fed4 virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd59d916a virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb464bbf virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe01e5002 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3d2602e virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed5284fb virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefe9b99f virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0b3fc65 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf13f3fdf virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd57ccb0 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0bdc8cc3 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1033e4a6 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a24be74 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32a60ff2 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39bac228 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x430c5558 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4a6cc684 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52a181bb vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x543b8dd6 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5457c311 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x667e929f vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74e91915 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8281fb7a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x839d16e8 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d812920 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaad36e28 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2069c7e vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcba6b57d vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe66d886e vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x22cf4fa4 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6071257d wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x63dd3468 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x74633045 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x785dad9a wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82d7ca1b wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb46aa9be wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb6f1ac98 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbdf4e4da wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbe3ce446 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd4b49ec4 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xea723ec6 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xee27fa11 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2446fa84 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24878cfb cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x258097d2 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f70468d cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30baff9d cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32948bf5 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x355019af cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6eaac04c cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x808e150d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x911f1135 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad52158f cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbbefd1c cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4f8d391 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe743f53e cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe86e7375 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfccd55d4 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 0x18306bd4 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2d7f4219 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c3622a2 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xce32f42f ipcomp_init_state +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4060ffca snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x9e533e38 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x206fe54d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4d762c7d amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6ec8f5d3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8bb87ffc amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd5b7e431 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf208886 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xed31d581 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14b5aa8a snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1540435b snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16da0b76 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16e2b3f1 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19fbdeca snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bf91238 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cae44d2 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x243c8e7e snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2447b616 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a043490 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ea0abc6 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31fa1a24 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x328f4379 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37ba4063 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b98d88b snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ba24bcd snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f75ecbb snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x408cd7f3 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x409d82fd snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4176af88 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x426b6bba snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4716075f snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a3312e6 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b7a94e3 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e1c9fc2 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e97d038 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f7d1a1c snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5145e404 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5173608c snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5299704f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531b09b6 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x538ffc14 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61c6c47c snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64865ea8 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x663ad071 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a0c107d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b4b3e35 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c7278eb snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f8b3ff5 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70e02fd6 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x738de464 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ad2cd63 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d3e3862 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x813affec snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85be13ea snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85fee0ed snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8913df1a snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b4d4d31 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90cda4b2 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99b27d1b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cea782e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fdcc45b snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa00ee3ed snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3e9ecce snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad7f2b29 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad943a51 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaec59831 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba2c3280 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0f633f6 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc10c9d90 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc12f2f6f snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3ce6da3 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc59fb916 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7c6dbb9 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7f22108 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc94ab2cc snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9810504 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc643d0e snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd37fc608 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd68758d1 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd920df6c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfb50c53 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1aee865 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5978239 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefef1d57 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf10f994e snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf26a741d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4226532 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf51696db snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6345982 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff134a3e snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffbb2fdb snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2aad3d05 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x03e9d92f snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2818758e snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3378b7c4 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4bf3a596 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5c2f0bd4 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf1f5a718 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x001b39a7 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01aa62bb snd_hda_codec_prepare +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 0x07e69232 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a27d72b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b26078a azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d449d79 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dbff1af is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dd22605 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e7f8721 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee2a617 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x123c91f6 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12527460 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x129fdd40 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12eb8644 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1445d658 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16b2f1cc snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x172e34ea snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x184cea55 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1988f6fa snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19f58053 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d59f127 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23769f66 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24a788e8 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2718bcf3 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x281f2e8c snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2866f447 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29cc536b snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c2c0dcf snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e3cb4d6 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3287d815 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35382998 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37e976b8 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a9240c6 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41d7666e __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x437ddaa8 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43cec974 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x460975fb snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47abd559 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4abc315f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ad3aa66 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d172518 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e117a60 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50664f51 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55209c56 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x571dfb27 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57484ef8 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c3fab5b azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d21bb23 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x602d5b18 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60a828d0 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60d4ac99 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60eda4f7 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61116385 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63924ce8 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63ceac96 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63d2fdc4 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f432f36 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7054b017 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7366f1d7 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73f3eadf snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74d666de azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77658717 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c975dbf azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dd7b2c4 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e19b746 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e5abf54 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ed72115 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80762d8d snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83225261 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83821a61 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83edf0f4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x842e0a7e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84f066f5 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d66f89e snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dabaef8 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9260263d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b7187d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x942aa15c snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c97c3a6 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d57a39f snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa45ceb25 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5d1c48a snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa8f3774 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabf6d705 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf6d63d9 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf7fad41 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9fa284 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb42232eb snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4cc0194 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb70beaa2 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbad12d3b azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc125301 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcb0c8c9 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc570f9 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc180a219 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc33930a3 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc749235a snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc81fefe1 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd099e43 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcda56de9 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce738bce snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced7a97c snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfb97811 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd022a19d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd90ae614 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda57e8bd snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcaaf8dd snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf08f77e snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe10187da snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe148cec3 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7edff6e snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea2a5dd4 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb8ff20e 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 0xf0577695 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2dfb786 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6655309 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7e6455d snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfae5ab54 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc997f56 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcabeb1c snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe00dd10 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x036a0b40 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15f24d7c snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18ffc933 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22e56636 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2fbda8da snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37ea5b4f snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x43fd4481 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4727a29b snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x489a33e7 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ea2ceed snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c490937 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d9476af snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f881637 snd_hda_gen_add_micmute_led +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 0x9bcac6e8 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f562f72 snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc4b94f43 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7e91dd0 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe28058b2 snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xea7d8bb3 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec14e3d5 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6732270 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf90da75f snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x62cbc962 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xe69170d5 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x171d8356 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1a3be5fb adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1ba7cce2 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x62497145 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x654544cb adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x783f2d7f adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x81f6a033 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9d78b9e adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbdfe1813 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf8650571 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x047a77ff arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07a8e027 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x11e30f66 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1226bb48 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x24d18891 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x30aa4873 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3327ba5d arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x34229814 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35926d62 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x365424da arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x377652f3 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x42c7a0bf arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x464dce9c arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x529a3954 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x56425858 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5cd0219a arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x642468cc arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f47308d arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x73f1da88 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x77ff7382 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bb9cfe3 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e1b11b3 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x83814841 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8667e467 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x87976c89 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bf088ad arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9113b9da arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93e566d6 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x99acaeee arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fac5b6e arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa5f4e289 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa8e87446 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab840f8d arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac819445 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb57a8518 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb6bdb038 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc23a58a6 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3225d51 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc507cf8d arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd57fd7a1 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdebf1b74 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf3b73b7 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe1880fc7 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe7b085a7 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xebf0cfd5 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf4d6729b arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xff4f9927 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x37c85c32 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4fb1f266 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x11058f5f cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x154bd450 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1ae3f0dd cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7f29e234 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcc3097e2 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x583d8326 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x96f4d505 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfda5c90f cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x64566a62 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa1ce4d49 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc5cc657f da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x08cab82c es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa2340499 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0xee7d07c8 hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x48523935 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x2c31e1f0 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x56c75418 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x86eb9b59 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc337907c mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe6046859 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x2d562fa6 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x17c67ce1 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5fa965e5 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x87d59281 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1076d0c9 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5dbe8954 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x76d65ee3 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x81ae7617 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1ecd80e4 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x884a0a97 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc5793008 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdf628f42 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x085947f1 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x10cc98f0 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x46049b2c pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf00ed397 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x678180fd rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x6fbd03ce rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x472caa8a rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x03eb0441 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5712f6a2 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x821df159 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb5143386 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfe8394e6 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf07c028d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xbe23aa8a devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x95959726 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa0755b29 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6478836d aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0fc454aa ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0fe58e2f wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x180a5866 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1d7c3ab2 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27d61f62 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b0829bc wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c461b66 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 0x60273a58 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x69006589 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6bbadab3 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6db4ace4 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6fcc1769 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8987d690 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d2a3fb4 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xabf7ae5b wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac5a0b42 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb3513753 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb3294c4 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1d21dce wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1ecbe0e wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd68a8188 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdb3f380d wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe237e557 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf4e3423d wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0061c7ea wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2bacab92 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x39bda401 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 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7ccaf83a wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9bdadd52 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9e202853 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9f202c38 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe5ff4a31 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x711e473f wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc218ab80 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd01d7b9e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xffd41754 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xc1e5e207 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa956ebb3 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x30281083 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xeb4c5b0e wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x16461eb1 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbd0f0af0 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 0x184446c3 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20962363 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a3aed9b asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x513c3c83 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a98895a asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a2acbb4 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75f1aee9 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x80a9e718 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x86a561dd asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa6211e61 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb58b67a6 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb79f2183 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbaa576a1 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbc2a67e4 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbf10f4ef asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdfe5d513 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe61ea27e asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc64a7f8 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1e40e56d mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ad70f4a mtk_afe_dai_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3414bb70 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3558b702 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3adfded0 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3aef53fd mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4e6693f5 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6540c952 mtk_afe_dai_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6b676cc6 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6d037aea mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8932e54e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8a533d99 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9bbeb589 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbc56f4f8 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc8ba5cd0 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef2f4d90 mtk_afe_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef6dd8f2 mtk_afe_pcm_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7738c147 g12a_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9b5acd01 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3c8f190 axg_fifo_pcm_ops +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd37b052d axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2db27767 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x613ca689 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x679cd72f axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9734c838 axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb711a93e axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xc208bb2c axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xeaf1cae4 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x621eb85b axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3e171a5c q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x6363fc20 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xd37487cc q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3997e13a q6afe_is_rx_port +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd1ea609f q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x151ae9d4 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40299233 q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4352d067 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5382edf1 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6eb89e95 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7353d9dd q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x857330c9 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb4f98cb3 q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd599e50f q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xdbedfcd9 q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xe060c0a1 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf37f832c q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x00c3de20 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x336184bc asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x68e1de0f asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf3a9245f asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x077b9c2d asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x5b65e32a rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x14e9ba13 idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xcc037a55 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3af90e88 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc7c9facd snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xee19d5f0 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf6d1a8b7 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xe9db8380 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x1a1ac9ff edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x1dd6c026 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x080cf966 uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x19db38fc uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1e172523 uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x335214cc uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4a86de4c uniphier_aio_dai_resume +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x7f926165 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x9ca09c52 uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xbf9532e6 uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xd0f7f43e uniphier_aio_dai_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0f9a6724 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d055334 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4f366bea line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d236d18 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a1d732b line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d2cd438 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa525b7d7 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb1c8fdb0 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe28f74f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc8b27938 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce3be216 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd191ae5f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe10e4e84 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed7d9ad2 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2e9c349 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL vmlinux 0x0000c580 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x0007b47a pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x001ea3d4 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00279ec2 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x0049e83e snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005c467e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00694d9d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x006b7170 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x007a3cc9 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x00828ce3 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x0084f43f iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x00be4e85 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x00c296db add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x00d03dde dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x00d4a1e7 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x00d4dc7f clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x00db5b87 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x00e06f1b kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x00e4a03d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x00e6db6b ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x00ea5d94 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x00f49470 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0111ab98 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x012f4697 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0145dae9 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0x01469b78 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x016a64e6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x0179851a fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x0183b67f tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01983578 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x019bbb8c extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x01a4478f xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x01b69c41 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x01bc6b4e snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x01c42629 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01ca86aa dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x01d747f5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ec6c18 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x01efb930 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x02022d36 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0204d784 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x021f2f95 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x02243586 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x022aab6c usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x022ef16c pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x0241f1c9 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x024a2c05 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x02535e6b bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x025d2fad gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x026b6fa3 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x026d73a5 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0283d1e4 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0297ef3c fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x02b24cd3 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x02c26b32 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x02cac02e sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x02e469a9 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02fc16eb do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x02fdc283 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0308d4c4 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031d6d45 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x031d7205 clk_half_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0329b9c2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03329351 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03365ea4 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x0337aadc cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033b280a xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x033d8287 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034d8293 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x034f20e5 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x035118d2 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x0375814f device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x038019b7 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x0390fa28 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03b47a4d clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x03b664af spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x03b830d4 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x03c235c3 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x03d3812a sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x041e1ce2 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0434f2de ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x044d05d0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x04541adf fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x0456a359 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x045a28dc ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x04600434 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x04659f1d crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04671f98 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04832bea ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048ec198 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04e28aa6 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04ed3152 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x04f2a5b9 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x04f5b679 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x04fd95cf mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x050162a5 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x050a1abb irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x050c4843 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x05111c17 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x05237561 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052f69ca skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x052fdbdf clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f98cb edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x055735a2 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0569eeac of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0578c8e6 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x05815577 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0583ec26 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059d76e3 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x05c750ae rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x05d00e80 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x05dc7cf4 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x05f0391a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x05f5b0fe bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x05fdc60c gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063576b7 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0636a835 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x064a5ff5 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06504d16 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x0664531b ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x06761bdd nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x0677e972 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x068b7031 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x0691ebfe clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x06954fd8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x06a0a35a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06cc6484 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x06d55487 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x06e4d088 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x06e5070f usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06ebe794 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x06f40a65 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x070c55a3 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x07172757 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0722eff1 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x07241994 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072be562 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x073796e4 cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0x073e0072 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x07443fc5 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x0768d2bb stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x077b69fd pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x078d7fb3 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x07a9f3cd zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b7f323 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07c0f7e2 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x07c5056d regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07e75624 clk_hw_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x07eb3503 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x07f3cfa0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x07fa055e scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07faba18 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x07fd01d4 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x0808ae86 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x080d5d64 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0816c905 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x0819a756 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x08268187 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0830e9ae sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x083a0203 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x083bc9a8 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x0840d603 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x08545061 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x087dc3c0 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08ae5912 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x08aeed7f sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x08afc823 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x08b9ac53 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x08c73234 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08c7d771 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x08c9918f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x08ce1f28 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08d44db6 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x08e5874e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x08e94300 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x08f38828 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x09103f74 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x091609d8 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x0919d629 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0923634f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x0926caf0 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x092953b2 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x0929b46a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x094cfea2 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x0956b414 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0967dcfb snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x096c2629 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x096e5b12 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x097e478c sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x098215ef regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0995c761 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x099c131d usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x09a095ad driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c829c6 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x09d22426 cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0x09e6be19 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09e966e7 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x09e9b5ba usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x09f35cd0 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x0a06d575 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a07754e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0a0e54e6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a140ec4 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x0a163ec8 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0a16ebd6 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x0a198a21 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x0a22631c clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0a2ca33c devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0a2ee543 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x0a3c3cf8 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a504ede nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a6be0db dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7d7949 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0a851eae fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x0a8e27d9 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x0aa443b4 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x0aab599b wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x0ab0c48f hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0abc2619 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0abc3d93 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0ac48a7d led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0ac61054 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0ac6f94f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x0acb5212 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0ad101fe devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x0ad284c0 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x0adb5000 update_time +EXPORT_SYMBOL_GPL vmlinux 0x0ae4fbb2 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x0ae6c65b ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b178523 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0b19a04a dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1d3b36 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0b1e1d6b thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b32d7eb devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b64ab7b rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x0b723a5b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x0b7b7b09 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x0b9d7fa5 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x0baa3a79 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bba2671 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0bde3a9f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x0beeb20a ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0bf9cb6a gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c122de9 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c125a3f find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0c1a9296 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c34f481 spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0x0c3bb00d rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x0c47c5af pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0c4b39d5 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c5714c3 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0c5d1673 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x0c66ce39 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0c6763a6 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x0c7f95fd component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x0c975cad virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cc3f8ec crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0ccc264c sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x0cd6569d spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0ce6750c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0cea27bc fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x0cfc143e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x0d12a481 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x0d1744df device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x0d1cdcc1 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d20b71f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d236797 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d308f0e phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x0d36d607 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x0d3f1145 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5a4299 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0d66d902 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d76c84b ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0d8e72fe iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x0d9f088b rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0da631e9 nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x0da72f78 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x0da990f4 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x0dbbd857 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x0dbefffa sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dc8870c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de4885a nand_release +EXPORT_SYMBOL_GPL vmlinux 0x0e00f049 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e13a187 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e18faf5 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0e2eb8b9 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x0e351729 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x0e3a1811 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e676e6b inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x0e747b0a kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0e794d47 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0ea2ba88 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x0ebbee65 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebc6919 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x0ed31de4 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0ed4e326 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0eecab94 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x0f07746d ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f0907a1 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f11b1ad iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x0f1a7500 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x0f25ed96 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f34dfa6 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x0f621d9c devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0x0f6a2a79 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0f7363df dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f7ff37a serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x0f8780ab split_page +EXPORT_SYMBOL_GPL vmlinux 0x0f9929ab rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0f9ec88b reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0f9ecc87 __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0fb26e92 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0ffaa944 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x100ab093 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10199015 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x102b9ab5 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x103bff10 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x10662dba ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1072f4f1 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1074f33a pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x10a8e0fa blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x10cdb884 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x10d22fe7 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x10d539a5 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x10dc6a5f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x11117d65 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x11229136 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x1122e5a4 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x1126a9aa regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x112fea7f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1163e2a1 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x1164c517 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x118596d0 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x1188076c devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x119999c2 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x119e1f89 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11adbb1b of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11d44700 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x11eccb17 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x12164c83 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1238c608 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x12452352 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x125b47aa iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126e35b9 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x127240d8 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1283c67f l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x128a7a1e efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x1291a495 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12a67966 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x12ab0ec6 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x12c8a563 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x12cd68b0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x12dd5b7e of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x12e54c26 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x12f501da crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x12fdce66 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x130a2485 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x130a8b79 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x130e2ca4 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13200164 nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0x132783e4 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x132ad161 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x133237fe devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x135b2fb1 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13668b92 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x1375a84b thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x137e2312 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1380c3b1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a1d2da tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x13bcd2df nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13eea4bb devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x13f862b6 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x13f90458 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x1400f767 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1401418c paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142844d4 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x14501051 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x146d5ecc rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x147c8d93 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x14856961 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x14879c27 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x14949855 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14aa8ef8 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14bcef79 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14cc7d55 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d4a1bd fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x14e17231 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14e50174 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x14e6e537 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x15187b49 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x15199e3c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x151ffba8 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x15219e78 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1526c4a0 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153b6ad0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x154314db iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x15437cf9 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x154499c0 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1561fe02 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x15666005 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x15813071 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x158e6fee software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x158f3b29 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x15b1c929 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x15be89e6 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x15c48f8d iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x15cb58fb usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x15dc72be iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x15f56932 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x160efbe5 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x16124d0d dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x16183859 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x161f861b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x16312413 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x1652904f __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x165e9d4e nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x166d3fe7 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x16761052 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x167aedf3 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x1694e705 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x16a505f1 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x16b930c0 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x16b9f063 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x16d39636 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16db2984 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x16dd9b1b blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e161e5 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x16f158c4 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1723c7a7 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x172b599c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x1749968a snd_soc_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x175b16cb ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x176e61f7 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x177a0633 arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179651d6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x17a14ed3 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x17a6230e fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x17ad98f4 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x17bbf661 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x17bd82a8 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x17ccb4c1 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x17d3f405 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x17d82fcd ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x17d985de bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x17e10bcb usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x17e821ee snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x17f3cca9 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x17f97668 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x18070753 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x180acefd sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x18107e08 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x18174709 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x18192ed8 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1821008f usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x18320ab8 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x1840d283 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x184395d8 clk_hw_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x18540ac3 sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x185b6aa6 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x18605494 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186b309d nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x18837635 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x1893574d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x189b0333 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x18bb9169 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x18da1520 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x18ddfa86 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x18e224c1 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c606 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x18e942fb serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x18f1309b usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19045262 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x192dd3cf linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x1943b255 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1950eda0 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x195b635f class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x196090c3 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x1976b30f mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1990a77e netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x19944f29 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a94fb1 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x19acf36f snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x19afba97 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x19b5769c mtk_smi_larb_put +EXPORT_SYMBOL_GPL vmlinux 0x19bb56cb tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x19bcc250 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f194e3 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1b7fbb mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x1a2e4751 devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0x1a37c650 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x1a3d290e loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x1a3d8cc3 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a5e5786 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf8e1 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x1a73a81e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a792500 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1a7a92d0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x1a85c200 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x1a8c879f tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1aa98b7c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x1ab0e448 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x1ab2f10a ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x1ab6909b max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1abd35c7 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1abd4eb4 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1ac4ec21 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x1ae90489 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af53455 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1af6c9aa clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1afefd92 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x1b110196 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1b14f5b5 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1b2b9a33 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1b2e3a75 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x1b372755 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6807f9 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x1b6941cb sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1b76365b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1b76fa9a irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x1b848988 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1b856d27 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b89f7a7 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9cfbd5 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x1ba5db69 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1bacd13e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bb59fef driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcd14fb nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x1bcf8912 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x1be2656b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfd266a ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x1c0b4678 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1c197970 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x1c1993fd snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x1c1deb1f __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1c32e4b0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x1c53b7eb dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c56d6b4 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6775fd regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1c6a0c04 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1c798d9f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x1c7de71b regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c929a8a pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x1c9ab78d regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x1c9b0745 xhci_mtk_add_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0x1ca149bd regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x1cb2b4b7 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd80a3d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x1ce3c3e9 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1cf0c307 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1cfdfb24 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0x1cfe98c1 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x1d07f103 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1d0db44d pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1d193e19 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x1d1f5d7f dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d24de69 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1d27d18e irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x1d318001 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d467e68 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1d5f6b43 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d8f0d56 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1d9226ee rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x1d9a27d3 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x1da76adb meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x1daaed97 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x1dafc3e0 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1db27c6f pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x1dbfc8a7 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1dd96621 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x1ddc5775 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1df03d1a dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1df0f4d7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1df6c369 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x1dfed948 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x1dff2038 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0e4c08 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1e1a2568 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e1f3061 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1e241f0b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1e301438 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1e46e33e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e65d634 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e7825c5 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e80596a dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9b4eca crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1ea94a33 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x1eb470a1 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecb60c5 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1edaf033 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f0d7665 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0x1f1ac10f of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x1f36c19e dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4817a6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x1f4887d8 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1f4b1058 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5efa3b blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x1f625cff pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x1f7112e9 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1f76a31e usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f89233b devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fc585bb device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fd97762 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2007affc usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2013b427 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x201a442e to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x2020d73a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2035caed dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x203c535b usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x2043b15f skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x204564dd mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x20785470 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20912663 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x2094034d snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x20a5db9f dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x20aed6b6 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x20b29b6c gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x20c5bc7e __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x20ca6790 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x20cda5b9 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e158cc cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x20ea24d4 nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL vmlinux 0x2107a3cb pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x210e1b85 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2114d4db ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x21191b31 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x21342865 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x21400189 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x214a2777 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x215139e9 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x2154e7d2 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x21580830 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x215cd80b kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x215f9286 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x2160a077 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2176d453 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x21842ec5 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x2184735c fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x218f7b92 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x21a027c0 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b1f020 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x21b7fdbb rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x21c24f96 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x21c6e5e6 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d52e92 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x21d928d0 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x21e7bfba vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x21eac665 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x21ebe2b0 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22171939 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x22182abe dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x222befee pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x22443bc8 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x2256663f nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x2257da11 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x22648c02 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x226addec pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2278db2c led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x2289389c vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x22901c92 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x22989f5a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x22a52ab9 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22ae46e0 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x22b93e5a devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x22bc3a67 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x22c278fa usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x22ceca45 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x22d2e85f debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x23174759 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x232abb53 dw_pcie_msi_init +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234bf087 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23530d3e regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x2364f845 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238f1ab9 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b20edc debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x23bf24a5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x23c04daa relay_close +EXPORT_SYMBOL_GPL vmlinux 0x23c4d866 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x23d315dc regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x23d6113e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23e23381 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x23fd7975 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x24102342 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x24127f68 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x243be36c crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x246adb5d scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aad7b7 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x24b35dd9 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x24bbc494 musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x24c064e3 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eec0f6 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24f0eef0 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24f89131 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x250300e0 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL vmlinux 0x250b69e8 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x251b462e device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x25218ac3 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x25364e64 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25384dab do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x253884e5 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x255b4e9f pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x25730402 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x2576272f snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x257a61ad snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x257b683f regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2587b6f6 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2588a1d9 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x2590bb6e fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259b632e pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x25a7e523 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x25ac44fc rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x25b499be sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x25b5f61d __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x25be03f6 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x25c572f8 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x260962f4 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x263548e8 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x263ba25d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x26451aa8 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x264fb2d0 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266c3281 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267fba30 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x2682f235 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x268d2e54 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26ba9be8 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x26c53511 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d47fde devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x26d6e49d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x26d8d860 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271a1a05 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x2723f924 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x27298cda pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27379596 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x273ceb13 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x274aafab sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x275345be tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x2757a301 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x277162ee pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2789d1d7 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x279de433 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x27b2f02e __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x27be0330 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x27d15bdf pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x27d86451 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x27e01195 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x27e12d6b blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x27e1e7e9 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x27e42756 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f77edf regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x27f7a378 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd24b4 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x280023ef regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x280a041f __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x2829bad9 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282d71e8 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x283456b9 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x283cd893 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x284c34fa usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x28638249 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28654043 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x286ae834 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2870bb94 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x28745a18 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28aa9fef soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28b8d513 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x28b9891f pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x28cb7cef usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0x28d8be9a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x28e05677 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x28e5a86d tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x28e7172f nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x28f157ce crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x28f5357b devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28fe36ee max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x290d1605 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x290fa083 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x29204b29 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x29348700 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x293a3932 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x293de8d1 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x298722e8 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x298753e3 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x29943712 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x29ad8bc0 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x29c7a132 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x29c9d85f extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d83ded virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x29d8ad2f mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a047fc9 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x2a272a01 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x2a4bf989 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2a5b942f aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2a8240fd da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a8ee6a4 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2aa1c7f6 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x2aa74460 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2aacfe33 dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abab071 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x2ac15a72 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x2ad844fd pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x2add121c bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2afacc15 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2b0a2f0e snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x2b1bcb3e mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x2b20130f device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2b2a7f1e virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4993bc tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x2b4f8e9d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2b67ba67 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b6dccc7 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2b8faf65 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b961af3 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2ba0b1e4 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x2bb5dc51 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2bc4ddd8 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x2be61f65 __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x2bf9edab tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x2c117712 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x2c1d607d cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3373cc nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x2c63c639 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6af85c subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2c6e40ad ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2c728818 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c898921 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c904615 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x2c949c9b blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca0a04d xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x2cb7097a dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x2cb7395e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x2cceca7f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cd13197 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2ce47131 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf24242 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2cfc8f55 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d1a8ee7 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d32c9e5 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2d3dbc68 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d426bda __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2d55ace9 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x2d57cd8b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x2d865b73 cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2d920e95 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0x2d94352f pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x2d975048 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x2d9e8425 regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dc1cd91 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x2dcac47f crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x2dd6a706 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2ddb9fb8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2e0ba001 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e23b09d get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x2e276b45 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e30509c percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e567399 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x2e75e627 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x2ea2cbc0 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2eaecaef gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec11199 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x2ec7e415 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x2ed9f1a5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2edb21d4 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0eab27 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f45b399 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2f4e1080 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2f532a32 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x2f5c1223 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f83cc21 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x2f895416 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2f89f67a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x2f8b5b8b css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x2faae291 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2fc31d67 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x2fc7504b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fcd6d0f pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x2fdeec8c irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ff04a9c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x2ffe35a5 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x300397c1 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3009ea20 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x30180c21 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x303dfacc pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x3043edbe usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3046b825 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x30475938 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x30593054 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x306082aa usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3061dd04 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3069809a __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x306eed5e pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x30831767 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x3099a43e cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30b193e2 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x30ba0953 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x30c0b4c6 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x30cdc47b bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x30d812f0 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x30dea7ef virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x310181c5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x310226f2 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a94c1 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x31361578 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x313c59ee fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x3153c01f snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x31626ca1 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x31706aa0 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3177709b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31909551 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a376a9 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x31c46b9b dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x31c63063 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cc8cfa of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x31daa5dd serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x3215baff fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x321a5e48 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3256c315 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x3263c1af mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x32644651 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3264bc9c crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x3269fe99 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x326d26a3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3271fbb5 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b1bbe9 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32be1448 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32caaf3e io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x32dea2a0 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x32e05a47 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x32ebdb75 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x32ffb2bb rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x33104e09 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x33186090 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x331bf6f4 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x331d6d90 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3323242f fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x335010a3 bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x335b31fc cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x337d3c4a gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x33830a38 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x338628a5 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3386ee51 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x339b03c8 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x33e5f2f5 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fc4e25 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x341f89a2 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x342e450b devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3431a457 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3449a83d perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x344b6ec9 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x34800412 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x34908579 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x349b7ae0 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x34a1466e sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x34a42a8e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34a7f524 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34a84df3 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b7a663 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x34d83821 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x34da9046 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x34e43618 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x35007c59 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x350c5660 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x351188e7 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x354c4455 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3550ee4b crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3577749c snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x35780b0a devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x357e0dcd check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x357ee410 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x35805e81 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x358ed754 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b6482a da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x35c84a82 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x35da2166 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x35e3c3c2 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x35e713eb __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x35f179be devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x35f7633a rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36096fda tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x360ada94 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x360ec97b devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3613fdbe wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362274cd nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3622841f udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362baced pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x362de961 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36379eaf debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x36404e1b lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x36489703 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x36541f84 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3656df7e devres_get +EXPORT_SYMBOL_GPL vmlinux 0x36658a99 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x3686799d relay_open +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a0c793 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x36ac1a0a ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36cc41cd power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x36cc4f42 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x36d30327 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x36dca598 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0x36ec09e3 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3717405f pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x37332f9d param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x373fcca9 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x375386ba usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x37572fc4 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x376d4836 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x376d638c tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377c9a44 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x378b8fc9 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x37a3bb55 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x37adb50f mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x37ae6480 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x37c84922 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x37cb1687 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x37f0b743 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37f0dc63 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x37f129a9 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x37fb4854 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37fd487a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x380ce1f3 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3812fce1 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x381b17c5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x38251672 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3830efe6 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x388e165c crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x38975111 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x38aba4b1 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x38b02312 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x38b71e0e debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38c4c5a1 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x38d64028 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f06698 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x38ffc0f1 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x39174654 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x393d3d06 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x393e96e7 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x39526522 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x395ab353 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x396b2a5a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3970eade handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x3991c121 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x39d8b5e5 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x39dc23bb phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ebb954 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x39ed21fb irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x39f8126b fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x39fa7a37 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x39fd9fc5 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a0b8651 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3a14f79f arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a1d199c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3a2904ec omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6c7d3f tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a70f652 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3a725157 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x3a7c0700 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x3a82495c blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3a83ee1f devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3a8f6e9d palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3abca7e2 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x3acb5969 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b0e8ec5 snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x3b16e2e7 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3b1c2b0f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x3b1d32f6 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x3b335d93 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3b41a5b3 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b566cee power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3b5b331a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x3b60e2eb virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x3b708110 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3b843565 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x3ba26281 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3ba27c0a pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x3ba4797d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bebae43 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x3bec15d8 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x3bf02f1b ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf4d951 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3bf50189 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3bf9f06e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x3c14fd5a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c26e237 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x3c271c0a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c302541 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3c3914e8 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3c393d5c tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3c3e1355 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3c3eb9c4 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x3c5d5aaf irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3c64b675 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x3c651f33 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x3c6591d8 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x3c6a5de6 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x3c6f509d lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3ca1310c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x3ca3352c sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x3cb209f6 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x3cc17173 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3cc4a853 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce26b96 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x3cf2d34b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3cfafbaa uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x3cfe2b78 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x3d0732d8 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x3d0a9f13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d0aefb9 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3d158226 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x3d240711 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d360a0a of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d49fc73 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5eaf6d serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x3d5f7bfd mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x3d638eb0 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d6442f6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d659b83 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x3d6bd751 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x3d6df17b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3d7751a4 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3d8ea058 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x3d92b851 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3d9e762f to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x3da1f598 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x3dabd0e2 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x3dbc4dba of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc6e534 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3dcc009b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de3ff3b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e162dc6 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e22b0cb debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x3e2f0a63 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e5d93c0 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x3e5ea38b metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e5f5622 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x3e5f7f54 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3e6efaf2 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e80647e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x3e9f0fe3 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x3eaf14b6 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3eb43f21 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x3ecf2330 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x3ee64b7f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef4672e pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x3ef70ecc of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3efd8e80 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f183c30 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3f253008 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3f3fd448 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3f444a31 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3f4b8903 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x3f4e746f usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x3f662b91 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3f74e433 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f8dcbb2 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x3fbbc38c handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fbd8e26 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x3fcc2554 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe490d0 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fe85288 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fed8461 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3ff0515b transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3ffa0dfa adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x402701ff dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x403205e4 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x4035687a devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x403f5577 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x405182b2 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a2382 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4070d2fc dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4078edf7 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x407daf29 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x407f9ef0 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x40915a09 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a4fb4b list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x40b55836 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x40ca4d2e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x40d13088 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x40d16d43 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x40e31870 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x40e902fd of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f79de7 usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4132f8e5 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x4133a2c6 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x413d238e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x4141a3f0 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x41467689 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415281fc perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x4155d326 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x41628a87 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x416a9089 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x416c2f50 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x417729f0 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41860b6e bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41aa390e max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x41b882e6 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x41bd1a12 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41c59688 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x41c716a0 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x41d1f8f3 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x41e89cbf ata_sff_dma_pause +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 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4212adfe xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x4224a877 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x423b2a7d housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x423c011d bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x425a6428 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4273dbd0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x427704bf vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42887525 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x42891245 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x429bfdcb devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x429ed399 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x42a1cb03 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x42aadcce clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x42ae3d52 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x42b8d810 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x42bdd0ab snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x42bfdaef ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x42c0982f devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x42d25156 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x42d3ef4d debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x42d6e555 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x42ece1f4 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42faa7a4 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x42fefe64 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x431e8d7e housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x432fc24f user_update +EXPORT_SYMBOL_GPL vmlinux 0x43339d3f of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x4339fc90 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43471db5 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x434c4e04 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4354d60e of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x4365d67d scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x436dbdd1 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438678e4 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43abadf7 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43ad1cb4 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x43afd839 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x43bc19d4 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x43d9375f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x43eb5fa2 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x43f0b01f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44021100 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x4405294a ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4411aed2 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x4418c58c alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x441f57ff free_bch +EXPORT_SYMBOL_GPL vmlinux 0x441ffca9 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x4429ef17 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x44339406 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x44491811 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44531e80 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x44798265 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x448137bb sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44816e39 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44b44ec9 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x44b49c52 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x44b7553a usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x44ba1042 percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c57d3f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x44d38b5e hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x44f3057e snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x44ff8f42 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451059a7 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x4523da55 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x45250b3a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x452d1079 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x45429825 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x454a88e6 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x45507beb crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4558fca8 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x45613db5 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4593b2fc tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x45a12b43 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x45b02438 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0x45b6e9e8 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x45ba2b7c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x45c9ca1f snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x45d9b430 usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x45dfd2e4 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x45f1bc79 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x45f582d3 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x45fb696a sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460261bf virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x4619b076 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4637db20 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x463b116e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x46630b42 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467053bc wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46985e90 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x46a21eb5 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x46b2af4d flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x46b51f73 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46d3eb48 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x46e37193 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x46f14d58 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f86fed fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x470f4a6a pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4717ec93 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x47188509 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x471f73aa of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4727a0cc of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x4729c57c alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x474677ab led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4749d555 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x4754fe22 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x475d3c30 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4779a66e gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4782707b crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479a978a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x479ac444 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b3b6b6 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x47bb41fd rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x47cdd924 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x47d77bd8 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e496e2 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x47e5d7f7 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x47f0a5e9 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x47f30daa regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x47f7f171 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4803b6aa kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x48075cb7 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x48094e29 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x480cccf1 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x481300a7 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x482781e9 nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x48449013 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x484548f4 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x484a46ff of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x484d3fce lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x4855807b blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48735c33 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x487ea5cd xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x48920a4f fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x489f0758 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48c0e0f0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x48c1ff84 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x48d0e539 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x48d740f5 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x4918f9f5 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x491ee294 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4933f677 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x493acb59 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x495b2312 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x495f051f __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x497bc6c8 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x497d6b3e cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x498021cd devres_add +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ad45d9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x49aff2ee gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x49b51260 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x49b829a1 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x49bada6a clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x49bea64c get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x49d2a809 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x49e90684 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x49e90d0f pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f70653 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x49f9cd4c nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4a09e004 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4a22be34 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4a2315f5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4a2f0727 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4a343d4b of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4a421ecc crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4a687fef devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x4a7591d2 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a872d4b sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4a9c9854 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x4aa45fe2 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4aa4d452 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac47e8d xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x4ad9406f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x4afe27b2 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b259170 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4b45dd32 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4b469231 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x4b4e5c42 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5700b6 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x4b6b0936 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x4b6e337f crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x4b797d62 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x4b828697 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x4b87899f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4b89dc76 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x4b942139 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x4bb0023e register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4bb631c9 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x4be2d931 cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x4be61a0d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4be73da5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x4bf6b960 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x4bfeadc6 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x4c180c3a ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c30e9cf i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x4c47e21f kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c601463 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x4c8303a1 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4ca88544 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0x4cb1cf44 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x4cbfab01 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4ced1094 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x4cf17d9a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cff4723 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d024b96 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4d162d6a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x4d1c8d6a debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4d1ccd20 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x4d1e6a1b platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x4d1f3821 blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x4d1fdebb blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x4d235860 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4d25c4c4 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x4d303744 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x4d32358d tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x4d3687d9 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d4972af of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d4e28f5 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x4d5a1a5d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4d6b3286 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4d77ca37 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4d9ccb70 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4da7718e xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x4daa871f pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db506e2 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x4dccfc58 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x4dcd6ce2 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4dd938ed pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df391d4 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1d2ce0 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4e29d02e dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e5317e4 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4e762c10 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4e773f9d fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4e7a3589 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x4e815dca gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4e9f9247 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x4ea32145 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x4ea81c6d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eab8637 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ebac0d9 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x4ecb6b95 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x4ed02e65 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x4ed0d30e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4ef1c921 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef85cc9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4f19a16e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4f543ff9 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x4f62305e ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f69cc4d serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6b6c9b snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f79eba0 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x4f81b817 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x4f88072d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x4f8aa442 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4f8cac9d sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x4f956ab8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa3049b cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x4fbaec08 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x4fcba438 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe017bc unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe3f7aa mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x4feb4a79 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x4fed64f5 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5014dc57 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x5020c82e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5038cd2d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50476dd4 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x506bd546 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5078e6e0 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50ccbf37 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x50d4ed85 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x50d73187 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x50e18f2f dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ed26f8 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x50f467bf ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x50f81fcc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51011a0d crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x51021247 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x51197ebd hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x512476b6 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x512b8029 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x512cc645 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x51501fef pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x516eead3 snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x51732ff1 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x517ae4b4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x517bb55e snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x5199f29c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x51a0c679 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x51a804b2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x51af0f26 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x51c07f85 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x51d4e752 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x51e698cb register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x51fca1a1 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x521fa9f8 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5224428b blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5230199c sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x52366c4f snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x52374037 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52389e0d spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x524b3fab verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x524cfaae mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x525babe6 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x526aa92d fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x5276c10d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x527ca41a snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x528272e5 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x5282bef0 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x52952f73 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x5299bbee device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5299ed53 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x529b5b60 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x52a628d3 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x52c32b8c regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x52cb28be gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x52d4a568 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x5301d728 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5316868c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x53251b16 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x532cafe5 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x53364aaa gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x53416839 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x535a45ce da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x535ec419 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53701eb6 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x537622c2 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x53847a5b sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x538cb8a5 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538eef58 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x53b4c271 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x53b816f2 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x53cf12f4 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x53dfd4ea sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x53f8f1b9 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x540d01d0 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541f2509 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x542db897 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x543022df dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x544757d7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x545d5afa devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x54631f51 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x547353d2 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5478fc9a regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5489b467 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x54931963 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54b9b306 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x54c2a2ec phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x54c6b82d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x54d6e162 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x54de4570 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54e3ae05 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x54e9052c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x54ea1df3 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x54fc509a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x5511dfe6 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x5525de60 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x552887ca crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x55302a15 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553429a8 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554fd8ca rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x55523d77 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55801ea3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5588f5ed platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5591473d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x559982d5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55c43cbc software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d4a153 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x55daa6d5 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x55e1ecd6 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0x55eaf1d1 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f0ce5d devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x560089d0 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560dc5f0 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562be32e init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5640408c transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5653892e free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x566c89c9 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x5686e7f5 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5690611b sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x5696c0a9 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x56a2d904 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x56a61122 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56a9a544 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x56b0d109 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b7f24d mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x56bb40da scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x56bb5549 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x56bef410 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x56c48bd3 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x56c57ca0 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e25200 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x56e59b0a edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x56e6e5f7 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x570a2966 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x571b90d7 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572c799a fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x572dfe2f crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x5747a63c rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x575c12f8 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5760f69d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x57627a68 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x57801fca usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x578a888b ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x578b60b5 devm_phy_put +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 0x57a4a9c5 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57b5f2c9 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d2774e bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x57dd8b7d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x57e3ffa5 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x57faa1de edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x580f8931 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x5821da6c clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5823aafa dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x5830a815 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5834b8f6 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x5834c00c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5855371d mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x586d84fb register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5895030c tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x5899af12 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x589cd8e2 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x58b33116 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x58b63333 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x58ca6e46 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0x58cf1597 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x58ddb574 snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e1f92b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x58fce543 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x59254274 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59363b38 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x593ad8e7 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5951139d fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x59549336 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x596d6869 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5990496c spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5990c579 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x5993f4aa nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x59958c3d md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59a7fae2 crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x59af15d0 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b75ce9 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x59c44d27 mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x59c8a81d platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x59df6273 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f787e6 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x5a06c5d6 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x5a14fdd2 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5a1eaafb hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x5a32a2bb blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x5a44104e devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5c6ac9 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x5a6855af ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a76e56b sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x5a7ba04d dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7e0e54 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x5a8e9737 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5aaf508e snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab983a0 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x5ac24451 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5acacb48 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ae57a08 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x5aeafb62 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x5af202d0 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5af7bf75 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b0eae0b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5b17f5ca kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x5b212a62 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b288d17 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x5b2ec861 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x5b2f0901 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x5b3acd63 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5b4d5841 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5b4ea3f2 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5b5de810 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6e2d89 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5b6f07cb regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x5b862863 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x5bb25d5c mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5bbd084d led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc16ae5 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5bc35032 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x5bc50bab devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be359dc blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x5be8fe0f crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x5bfc0378 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x5c0c3e73 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x5c1bed21 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2f9f8c mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x5c360f67 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x5c373ec0 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c62de19 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7e81b2 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x5c852acc ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5c8ba8a9 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x5ca2460a of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x5ca98ec6 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x5cab98ec find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb47fe9 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x5cb6da36 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x5cfa99ed regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d0dd450 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x5d26c2fc wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x5d2a3452 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x5d36a05e iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5d3b9109 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5d3d58a0 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d485b3e l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d490ed8 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x5d66a871 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5d6a2f3f snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x5d6cac14 rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5d708f99 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x5d7745c2 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x5d89c684 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d8a6055 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x5d8acf75 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5da0c9e5 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dc6e7b0 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5dcfa68d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5dd1d67d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5dd5a407 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5df778c5 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5df811ed snd_compress_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e064fa6 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e0b544c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5e12ecc1 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5e139a0d fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x5e2ba553 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5e2d1779 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x5e3c90e9 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e66d326 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e6c101a spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e80d437 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e861a59 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5e8ac88f serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x5e979b44 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5e99ed17 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5ec2d3a0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ece9afb setfl +EXPORT_SYMBOL_GPL vmlinux 0x5edb9a24 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x5edd49d1 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x5f0763f0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x5f0bef24 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f167418 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x5f23ddb5 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f24a849 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5f25adc7 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f35ee38 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x5f3692cb serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x5f436785 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5f50c9df nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x5f5b861d tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x5f64eade __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5f6a43ac ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f70a75f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5f96a7bb irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5f9e1a1a __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5fa3d3f6 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5fa54b9c pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbb141d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5fc035bc qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x5fc23886 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x5fc2c660 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fca46e3 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x5fd1073c regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5fd7dd62 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5fde9398 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x5fe8486a ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60319a28 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x6041edf0 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x6045a96e kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606d10c8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x606d2ab4 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60949043 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1b7d1 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x60b256b1 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x60ba2b40 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x60bd037b tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x60be49a0 device_del +EXPORT_SYMBOL_GPL vmlinux 0x60c083b7 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x60cd576e gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x60e835cc switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x60f3ef3b device_register +EXPORT_SYMBOL_GPL vmlinux 0x60f525fe put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x60fa133f trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0x61071b58 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x61090b49 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x611e99e9 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x61252033 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b584f nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612c7370 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x6130c768 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x613f2e18 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x614150ff __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x614d27b3 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x616df0e2 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x617a48a4 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6184884a devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6184de71 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x618962d1 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x618e835a fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x61923ba1 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x61c9e769 net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x61cdda66 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x61df34c8 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x61e158f2 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fd4269 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6205fcd6 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x6220e8aa usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622ebfbf sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6240f047 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x6246cfb6 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x62507096 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626f02c3 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x62831d0d gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x62897666 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62b192a1 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62f2c329 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x630cfe39 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631b6feb usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x6328e185 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x634b1f89 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x63540cde ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x635939a6 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x635b46b3 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x63600cce __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x637c3c83 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x639acf3b pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x63a65f53 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x63b61fb1 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x63b66258 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c998b5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x63d68374 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x63dfeb99 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x63e057eb crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x63e14d80 usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x64159920 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x6415b6ac skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x641d4f2c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6421fe76 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642fc86d udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x645a9d02 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x645ad562 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648a4dcb usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x648ec387 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x649e02eb fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0x649e6586 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x64a4c6fa pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x64a6b981 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64c2b0ec tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64ea705f of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x64ed7704 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x64f4cceb xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x651d1312 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6524e57a regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x65397297 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x653c4bb4 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x653ec455 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x654202f3 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x654a1a46 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6586a98b snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x658cbc94 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x65ae1833 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x65aefedf xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x65bcdb63 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x65bd1cec posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65c14adf dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x65f4307f extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x65fdf82b devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6611813c ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662f04d9 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6632f2bb clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x665d7f48 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6665e813 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x66772039 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x66774a1c kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669d1c7c serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x66abf09a pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66b3f21b __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x66b84efd snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c9d0a6 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x66cc1a1f crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f5fe89 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x67053f34 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x670c56be usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x67139e4b crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x6733013c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x675decee __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x675f77a0 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x67613414 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6761fd20 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x6768fb1c pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x676b9193 firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0x676ba607 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6774eb36 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x6777fa01 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x677cbe95 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x677df085 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6788d411 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67966a69 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x67a7c9b6 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x67b06673 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x67b9ce2b regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x67c485e3 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x67c4c6f9 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67de2515 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x68423ccd __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x6845b492 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x68478f51 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x685d7024 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x685db9cb mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x6862d1b9 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x6864a0ce ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687a199e phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x687fafa9 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6890072d edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68940f21 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x6894835c __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689e6778 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x689ebad3 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x68a01603 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x68b4b214 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x68b8cc93 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x68c7c927 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x68d68cbf md_stop +EXPORT_SYMBOL_GPL vmlinux 0x68d9ef44 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x68da8562 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x68dcc179 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x68de7c5e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x68ded64d sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x68e21da5 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x68f1f525 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x68f37e9f __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x68f38941 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x68f87845 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6904c9fd serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x6908426b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x691801ef get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x691c85b6 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x693629f2 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x69489ae8 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x694e4b48 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x69632a68 clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x696be50f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69889b66 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x69ad3bb0 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x69ae025c iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x69be023f fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x69c9eb3d irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x69ddc78f ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a12c1ef pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a182751 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x6a31940a cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a565468 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a613cec devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x6a6bca64 sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x6a717a2d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6a720ea0 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6a771b64 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6a7c0cae cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6a8074af iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a8b6bec fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x6a966234 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6a967525 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ab001a5 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6ab099b4 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6ab9a024 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6acea10f ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6ae641b6 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x6b019124 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6b17cb1b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6b27d895 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b359624 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x6b3befb1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x6b3e7ee3 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b42e52c tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6b4f58f3 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6b727a51 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x6b72e663 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x6b7eab76 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x6b7fbce2 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b9ef0f5 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6bb2dca0 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x6bb3fff4 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x6bb9bbe8 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd80451 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6bed998b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6bf74f12 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x6bf75522 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x6bfad17f usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x6bfb503e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6c01f7f5 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c030281 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x6c15d37c snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL vmlinux 0x6c39f8d8 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6c3b884a clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c467ff7 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd31a36 cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6ce393fe fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x6cf2d6ad bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x6cf305b4 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x6d00c2b5 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x6d043b22 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d0a0297 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0b8c5e percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x6d0f2f1b of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x6d253dca dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x6d2b128e sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d2cde03 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3c6ff5 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x6d45bbae usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x6d4a7b23 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d7eb3e1 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6d92a203 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dae576e iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x6daecf2a clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6db0d8c0 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x6db83743 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc390c5 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x6ddc5519 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x6de6f084 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x6ded29e8 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x6df8636d of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x6dfabed1 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x6e0fa8fd devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6e1dcb3a tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x6e2d4556 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e694010 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x6e6dabe1 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e8676c7 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x6e868b1b wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8b9d06 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x6ea24588 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x6ea6693a phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6eb5b73b debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec2290d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6ec6ff64 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x6ec8073e debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6ed067ae dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x6ed06bdd devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ed0e2a9 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x6edf7058 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x6ee65fce pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f0e2c66 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f14a253 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x6f2a7220 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f7d8b01 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x6f7f9542 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa134ab ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6fb4783c ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fbdc605 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x6fd6678c devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fd6e1f0 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6fd6ea92 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x6fdab9cb ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x6fded41c devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70338462 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x703f0a56 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x70464d9f devres_release +EXPORT_SYMBOL_GPL vmlinux 0x704e6a45 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x70517a3c wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7054d239 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x705b9678 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7063bc4c tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x706c2f7b regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7076bbbc handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x70835803 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x7090e4d5 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x70aa82e0 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x70b575e6 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x70b7b0f8 fscrypt_ioctl_remove_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 0x70f53e13 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x70faab42 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x710064d5 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7121c44a snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7133e945 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x714991cc usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x7159dcd8 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716542d5 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x71709d3c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x717218c7 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71826d0f subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x71919368 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b04a7d crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x71b29887 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x71d994c6 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x71dca659 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x71e125db devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x71e64e28 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x71f5d84f efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7205997f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7205f1fe genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x72093857 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7230c0ea anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x725662fc irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x72654502 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7289b666 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x729d07eb i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x72aee1ad sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b67e95 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x72ba1f20 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x72baff63 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x72bd0f32 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x72da70f4 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x72e9081d snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x72fec4c8 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x73069a47 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x73078cbe ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x732f5f00 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x7346309f subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x734bd1e3 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x734f2aa2 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x736fa50b irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x73880963 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x73903498 flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x739163fa sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x739b0664 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73acadf6 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e11d09 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73e67109 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x73f94f2b i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x74042228 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x740766c8 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x74148437 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x74186998 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x74199c8d tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x742df9ec edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74449919 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x744b57b2 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x744b9e66 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7452dfb9 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74d752dc tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x74fbb803 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x74fc2b8a of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x7504839f ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7506a703 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7506ad7a i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x750e799a akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7526bd3b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x75483609 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x754d74d9 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x756c1b43 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x758c553c nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759e98ec unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x75a12a8e of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x75a4edac blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75cc8a91 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75eba219 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x75ed125f mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x75f77027 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761f7bac blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x7628652d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x762eee33 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x764f742d dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x7655a3c1 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x76599695 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x765e1b7c iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x766b7e4e power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x76740ffd dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x76774e1a use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7692334b ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x76a369ab msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x76a9278a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x76abd3e5 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x76b597a6 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x76cbfa47 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f67014 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x76fdfa8d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x771838b8 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x771932cf blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772d1822 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x77408c74 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x77446fe1 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x775078f3 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7752780c nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775855de netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x775eeb1c sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a95bc2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77ae83bb mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x77b3c923 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x77c0e66d kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x77c94dcd crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77d13d1e sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x77d523b5 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x77db5d4d pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x781012e9 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7813c341 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x78220f68 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7823f5dc sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x782437f0 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7828e34b gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7834e04f nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x78355a95 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786d1c2c list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x786f8868 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x78710393 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x7881d0e0 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x789ef0b3 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x789f13bd snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x78a9ab68 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x78b434ea snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x78cab8a8 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x78d0932d mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x78d2edee skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x78d96614 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x78eafd28 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ecaa5d usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x79031a8f powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x79163448 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x79204c47 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x79290fa3 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x79340b1d meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo +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 0x794c01d6 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7960b375 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7979846c ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x798026aa fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x79939cc2 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x799652a7 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x79a91d86 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x79c19aa0 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x79cfab54 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e7d7c9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x79e81ae4 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x79f89745 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x79fcb83d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x79fd37e4 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a096252 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x7a16ea0a sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a2d2124 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7a63693d clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a6425b5 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x7a6f728d regulator_get_voltage_rdev +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 0x7a88c3b1 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7a9c8591 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7adb2081 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7add58f1 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x7af0b87d devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7afebab2 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b0fe984 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b214d92 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x7b4f2f2e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6efd0a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x7b8a5f9c snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x7b8b698d mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7b8e76ae usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b944c5f srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7b94f6eb l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bab6124 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bbad364 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7bbdd216 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7bc701bd wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7bcdf9bf ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7bdfdc73 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x7bef7428 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x7bf351d9 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7c0fc943 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7c133141 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c2671ef trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7c2a65c0 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x7c3647cf kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7c3740de fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7c403969 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x7c607966 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c875166 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x7c87ce45 gpiochip_lock_as_irq +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 0x7c9dc545 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x7ca0263d led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7cab0773 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7cc4b07f debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x7ccc66c3 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x7cce457a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7cd5aabb of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7cd5c8e1 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd79d46 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf5f3aa crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7cfd5ff4 virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d178e17 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7d220229 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7d2b2d48 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x7d3001c5 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d907ce5 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7da595a0 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7da7ccd4 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x7dc2a263 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7dc55b75 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x7dda0366 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ded5541 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x7dfbc53c fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7e08d3c8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7e114b5b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7e260dc5 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e40fd05 kvm_clear_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0x7e43aed2 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7e53f43b inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e639f4e snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e79b13a sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7e852ec6 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x7e86962e of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7e8ad17e pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7e9f4688 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7ea48b50 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x7ec24fe0 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x7ec7ca01 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x7ed6476a probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7edebcb4 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef029cd usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7ef6e6de crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7f21127f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7f38d6d7 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x7f4ae1a7 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7f53fdd4 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x7f752d00 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f7a1a61 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f897bfa is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f96dafd musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fa720a6 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x7faaa0cf dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7fb732ea md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fc945e6 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fcf9486 cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x7fd06427 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7fee9dab alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x80114660 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x80187a52 clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8036c528 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x804dc3d2 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x804f9061 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805cf1ec pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8063d67a mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x8066f235 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x80678512 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8073fe97 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8074efed ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8076a0d6 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x808027aa iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x80819a7b nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x80873e3a power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x808c59e6 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809be37c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80a1195e uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c7ee4c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x80c92c36 clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f7d128 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x8108a457 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812701e0 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8134c9f7 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x81473648 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8155ef63 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81773e0d ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x817ca90c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x818251b2 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x81842582 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x818a8a8c cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x8194235b fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8196896e regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x81ae7466 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b25dab sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x81b440b3 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x81b4ee54 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x81c4090d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x81e608a3 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x81f2b867 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x8205bba4 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x820bdffe ref_module +EXPORT_SYMBOL_GPL vmlinux 0x82132b06 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x82173ac1 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x822549cc vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x82452777 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x825c8b2c tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8271c7ac mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x828547f6 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8293a229 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x82978a91 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x829a39f2 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x82be9711 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x82bf853c pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x82c5682a metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82fc917a dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x8300b430 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8325b003 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x832a9ff4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x832e3629 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a7c41 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x83453a67 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x835ebc6a stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x836aacf3 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x836b2c3a clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x836f2a51 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x8380d03f set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839a4014 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x839d398a __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x83a2ee4b pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x83a5b78b irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x83beb20b mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x83c7fc59 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x83f723e4 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x83f8ba34 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x8401a253 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8413f850 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8419a104 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x841e384f bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x842434cb kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8431139b relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x84357a4a extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x844f34fb sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x848098fd register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x849ace0d __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x849e378a snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x84a87cdd of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84abdfe4 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x84cdd57f kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x84cffb3a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x84d29e33 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x84d7e015 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x84ddf929 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x84eac56e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x84f00f6b snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x84f3b95d balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x84fc1dd3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x84ff5af2 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8502bdca do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8502c4e2 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850cf34f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x850d11d1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8513a724 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x85206822 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x85290bd4 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x85327554 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x85343190 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x85538914 device_move +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855bb5a3 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x855f5c72 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8570f468 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x857fe4c2 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x85906a44 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8591e9dd ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x8593aa43 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x8594d7fa ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x859a1530 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x859da982 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85a9b750 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x85aca8ec user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x85acb812 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x85b0aa1e ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x85b27863 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x85b3f3cf inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x85c365bf rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c6faf5 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x85e74022 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x85eb3415 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x860581dc gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x861dc1fc crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x863088c8 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865fecb9 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x86626129 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x8665230b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x86745a8a disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86806218 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868bea18 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x86945580 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x86a4e84d of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x86aa13c7 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x86b0a3a1 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x86b3d4e5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x86c82bf1 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86cc8e57 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x86d19d1b netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x86d2221f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x86d358c7 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x86da295d rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f7ce51 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f96bf9 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x86f9f015 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8714976e crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x87151cb1 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8724022e nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x873704df regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x873b60dd clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x874286ea sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x87551e70 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x8767bc46 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x87685207 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x87735722 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8776c188 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x877d3ac3 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8781a4b9 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x878b16b3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x878b9ce4 __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x87a09d57 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x87a7247b devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x87a749db md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x87b2b34e __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x87c67d7b pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x87d614f8 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x87ed7e4d find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x87f76662 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8808df8a fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x8810055e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x88114315 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x881c2f59 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x883305b8 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x883b7980 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x883ca9d7 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x884a6b5d fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x88549369 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x887544fa bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x88806ccc debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8880f3d4 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88afa3a6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x88e4c560 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x88ed2479 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x89008c09 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x89059b43 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x89188862 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x8919d31f trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894e6f11 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x89505dc6 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x89736b24 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x8974033b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x897c2885 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x898697ac pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x899a24ea pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x89a6fc13 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89b19d2b snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x89b7c165 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bbc965 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x89cec703 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x89dc7a4e mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x89dfea68 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x89f0997e fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x89f68c9b pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x89faeb07 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x8a1c176a __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x8a2d1e35 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x8a3a22fc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a3c8c8d devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x8a4ffc27 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a57b15f od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a5f9e20 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6e97ce pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0x8a7b4d87 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x8a8a4853 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8a8df829 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a8eca32 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8a9192f8 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x8aa02161 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8aac700e i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab1a30a kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abbb731 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x8ac1fad7 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8ae078f8 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x8afd5f0f regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b04a28f devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b0c75fb ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2b41c6 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x8b3a8d97 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x8b3dfd2a sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8b43eb1d dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8b5fb4bb regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8b613a5b usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8b67f8ca clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b75eb48 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b776a3c skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x8b83231a nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8baaf5bd crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x8bc0d189 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x8bc26f08 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x8bc35ec7 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8bd1af61 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8bddc686 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x8be1ea8e usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x8be469c8 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8bfd1d2f xhci_mtk_sch_exit +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c19f545 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8c1b2cf9 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8c2921e2 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8c2ac69b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x8c2e7804 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8c434c0d attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8c4cdf4c regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c4ddb65 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x8c682d89 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8c6f3ac4 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7bd877 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8c7f957f pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8caeeeaa rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8caf0646 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8cb80530 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x8cbc650d vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8cd3c50c dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x8ce19808 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8cf42a0b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8d139cbb dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d22d78d device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8d2ed158 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d420df1 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8d5b5894 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x8d7170be i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x8d784344 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x8d7d4692 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8d7d4b68 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa4c8 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x8dcaacfb hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x8dced21d register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8dd17412 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8dd1f1ff dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x8dd71aed __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x8dd795ec ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8e005808 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x8e301b17 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0x8e30a559 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x8e370d70 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8e38ab6b snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x8e3d4701 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8e5d34fe scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x8e60c5ea mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x8e626e48 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x8e6efdc4 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x8e7da973 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e89a946 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x8e9cac10 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x8ea2cc66 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x8ea8a821 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8eaa2698 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x8eabac6c __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8ebe2de8 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8edb909e i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x8edbdcb0 cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8ee31290 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef2298e crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0d8360 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f1b7538 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8f3434d5 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x8f352b37 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8f4a56da nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x8f610777 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8f66aacd fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6d1471 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f77152a clk_hw_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7918ee vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x8f83d043 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x8f8b92ed snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fa61293 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x8fc3e465 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8fc98e4f iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x8fdebb52 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x8fe9b310 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x8ff796d9 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x90016070 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x900fb713 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x9010d7fd gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x90111829 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x901c6c99 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x902dc166 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904678ab clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x905faf02 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x90637ca9 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9069ccbb bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x906bd088 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x906bd319 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9075ab44 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x90781980 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x90894e63 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x908dd721 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x908f4641 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x9098de19 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9098e8ae badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x90994722 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x909e7350 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x90b51b47 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x90bdad5b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x90c5ae22 snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x90c83002 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x90ce0831 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x90ced9c2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x90d31f4a sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x90d7727b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90ec0b50 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x90ed1819 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x91144cd0 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x912c4ed0 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9150e2b2 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x915173d7 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x915b8703 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x9169b3db snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x917a4ea9 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x917b659d edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x917ca7d9 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x917e15aa __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x919a865f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x919eb226 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91b215a9 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c77201 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x91d4c701 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x91d7ac95 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x91f25146 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x91f6ecf4 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x92008eb1 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x920325d6 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x920448c7 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x92413685 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e1728 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x92570a7e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x92669ebb devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x926b2f26 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x927a5f2c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x927adaff ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x927cdd4c nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9282f433 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x92851447 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x9285ceb2 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x928a5b5c balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9294374b __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x92ac863f page_endio +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c2c396 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x92d26786 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d72357 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x92da0c91 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e2301c pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92fe489c virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x9304de15 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x930992ed __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x9323edb8 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x93364d12 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9360a995 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x937b1fe7 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93bcccab mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x93cdf914 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x93d19474 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93d91278 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0x93de6f19 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x93e0dd11 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x93e7c35a PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f70126 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x93f9b521 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x93fb510b list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x94108085 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9423d86a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x94505978 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x94586e0f iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x945d8656 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9462b7ac of_map_rid +EXPORT_SYMBOL_GPL vmlinux 0x9463a19a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946423a5 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9465b67b sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x94696569 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94798c65 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x94816c92 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x9486eb54 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x94872259 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x949d7651 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b1629d da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x94b28d73 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x94bd5cf4 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x94c78e78 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x94cc3440 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x94cc933c snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x94d2358d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x94d756a7 xhci_mtk_sch_init +EXPORT_SYMBOL_GPL vmlinux 0x94f5e09e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951b9f12 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9520cc31 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9554d0cf fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x9556b9f5 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9560461c sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x956bfb63 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x956f5930 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x9583ed37 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x958c5a44 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9598539e pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x959f79ab pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x95af98c6 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bef2ac amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x95bfcd84 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x95d1b0fa thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x95d70ce9 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x95d783cb ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x95d9c680 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x95ec7f31 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x95eef8fc fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f19012 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x95f4d794 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x96037a9b md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x9605c22d efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x9612497b pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x96222967 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x9624e784 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x963fe2ee mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96598aef rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x9662585a usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x967aabdd bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x96876dce devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96949a00 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x9697b8ed sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x96a222ac fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96bc646d clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x96bda8b7 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x96c46604 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96d10030 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x96dbe753 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x96de34a7 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x96dfc7f1 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x96f5e7c9 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96ff3ce7 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971d61f0 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9733f415 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x973656ff genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x97410acc ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x975393ce snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x9754f47b snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9770f3bc blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x97770670 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x97790b3e udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x977eabb6 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x97907f1f arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x97a5670e __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x97b71dc9 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x97bc2c6f skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x97cdbbca trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x97d5121c efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e1380f __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x98147af3 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x98238e68 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983740fc of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x984e7598 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9858e144 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x985ebee7 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x98673df9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x987434dd device_create +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988aaeac __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x988c1933 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x98a043e1 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x98b1fb34 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x98c9ad7e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x98f0b397 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9914126e cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x992bfef0 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x9932c8c1 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x9933cab5 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x99439919 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x9971c966 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x9988bfa9 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x99a855df strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x99ae1d11 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x99b26620 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x99b5f9c2 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x99ea9cab of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99fdbe3d bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x9a0188e3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x9a048866 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x9a0db95f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a26cb05 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x9a3303bc rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9a337b29 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9a354fa3 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x9a4ab8a3 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9a4fe5e1 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9a5f88f2 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a674727 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x9a6921e8 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x9a74407d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x9a941ffb ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x9aa454bc gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9aba6275 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac1c6a4 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x9ac4788e cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x9ad56d2d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x9ade5ea9 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b1eecd1 iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x9b3249d5 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9b499d92 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b51daee blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9b537d00 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5d4626 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9b64e2f2 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x9b6842ff devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9b6ad0c0 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9b6cd1a6 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x9b6ece4d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9b7dd552 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9b814070 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x9b86f667 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8f7bb9 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b946dd3 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9b9c9a7b fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9bc30a65 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x9bcb2fbc sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x9bdfdca5 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf38880 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x9c287b50 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9c3c2a1d devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x9c5535be blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c86c382 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9c8d0d70 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9cb2898b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x9cb44ea4 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd4758a of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x9cfd9975 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x9d0465ac usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9d0732d2 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d180ba8 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x9d24b9cb ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9d28b220 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d3ac6ac tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x9d40d62d clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9d456afd param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9d56f4c7 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d583029 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d6d9bc7 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9d728c0b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9d80f38c flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x9d81cc50 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d949aee ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x9d9cb5d8 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x9dab5b27 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x9db27def tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9dba64d7 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x9dbeb041 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9dcc736e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9df78c26 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x9df9fe4c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x9dfaa3af debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e131465 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x9e1f7003 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x9e31f878 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4a24f7 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x9e4ecc31 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x9e5d10b1 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x9e717ab1 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x9e794dd3 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x9e7d0640 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x9e7f5ccb fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x9e9eda86 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x9ea9302a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9eb6f890 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9ec45e97 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ec9d466 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9ecc65bf ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed704f5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ee17f1f pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9ee98a0c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9eef2f67 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x9efe3c04 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x9f1b2060 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x9f20fd7f snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x9f22e15c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x9f37ec96 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x9f3c9e98 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9f3f5bef snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9f6697d4 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x9f69b8cf event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x9f801803 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9f8b9dd4 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9f925e61 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9f96bb17 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9fa391b1 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x9fa42e7d inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x9fb1cb2d power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x9fbcd955 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd3668c dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9fd82c64 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x9fd8a83d lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff82942 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x9ff84507 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa031d49a input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa04a5394 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa069aa68 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xa0717fc6 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xa0898768 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xa090f86f fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xa0aba3a0 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xa0c38bd2 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0c5d0dc sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa0e62d4b usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xa0e87f1b fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xa0feb66f crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa0ffe5d3 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0xa10580bb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1088815 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa1098d3f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xa12cfb15 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xa136aeb7 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa13df378 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xa13fbe95 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa14ea31e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa16f2c79 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xa171252b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa17a3e49 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xa18f5fed skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xa1909866 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xa19f62be crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1e9f29c dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0xa2037b8e rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa220e79f pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xa22ed07c crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa231c821 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa23f684b __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa2513dec ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa252ab66 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa265826d vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa271a700 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa272fa20 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xa286471e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa28b5114 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa294aecc device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa2a2c93d i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa2bd1412 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xa2bd25da tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xa2beff3c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2c6b86c spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xa2ce4d88 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xa2cfae88 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2d096c4 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xa2d24846 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa2d98e12 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e1f8dc of_css +EXPORT_SYMBOL_GPL vmlinux 0xa2f5ee1e open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa2fbf818 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xa2ffded4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xa33effbe serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xa36ea15e usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa370ff4c pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa37f0682 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa3800c94 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38ce2f6 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a3fcb7 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f566 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa3b79b06 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c373b9 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d87b99 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa3e022ce stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa3e200c8 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xa3e3c6fa pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f87467 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa404bb3c wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa429f24e nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44eb2ff regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa44fbefa __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa45f1b49 cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0xa47ac968 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xa481061c serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48a5ea8 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0xa4a1e409 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa4aa6e70 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xa4b487be clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa4baddac software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0xa4bb107a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa4efbe0c dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa504e0c0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa52238a3 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xa523853f iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0xa5257fb3 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa52cc31c clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0xa55cbee0 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xa5801eed devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa58241e1 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xa58264a7 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xa5b4b48a rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f269c3 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xa6081179 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa60d1aa4 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xa615d39f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa61845ac snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0xa61e6955 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62f2b64 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xa634b327 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa64f9adf genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xa6629742 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xa6719932 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xa67dc8bf usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa67e7ffd spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xa6823306 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa68c0236 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xa697fe58 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6a9dadc crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c0d636 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xa6e121ac of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7f462 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xa6f303b8 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70dda18 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa72d32e7 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xa74a9193 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa7632a59 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa77529b7 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa79f8eaa crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa7ae9096 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa7b9dbb1 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xa7c8984d pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xa7ca02a1 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xa7d1cbd7 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0xa7db78d3 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa7e5d203 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa7e7e20b trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa847b9f6 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xa84ed7c8 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851b18e ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xa8573628 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xa85f3f8b scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa86c396d cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa88386c1 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa887af35 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xa8953448 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa89b63e5 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa8a64f4d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xa8acfe87 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xa8b7ce66 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8c3b2e7 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xa8fa05f6 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa8fc1412 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0xa913353f ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa91ba400 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa938ac70 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa93fc128 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0xa954f113 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xa96ff056 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xa9877a6d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa991e47f __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xa9931393 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9956534 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xa9981f1e arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9acaca9 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xa9baad60 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa9c3e2bf __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa9da55af pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e5428e snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0xaa14570c cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xaa1f6b38 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa40a14d pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xaa42d32b driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa5d76fb sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaa708d2c pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xaa8f5733 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa9066f0 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0xaa908fc4 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xaa969d4f cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabe6c3f blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xaac8a79c tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xaaebf003 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xaaec9624 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab2c0604 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xab3c7529 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xab459516 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xab4c9dac __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xab4f12b4 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab557f45 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xab6a538f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab79fbdf devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab930651 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaba46357 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0xabb03512 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcd2433 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabcfa03b __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xabeb41de pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xac01049f pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xac08bb40 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xac273413 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xac368280 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac48f8d2 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xac504c97 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xac648fdf __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xac6d9b2b sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xac6ff031 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacd09cda call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xacdca6de bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xace9bc42 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xacf5faaa of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xacf90577 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xacf906b2 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xad0a5c59 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xad1186aa devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xad1585bb pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xad1f87fa __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xad3187fd percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xad55c249 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5e18f2 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xad6278b6 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6a7000 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xad6f2e94 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xad736bee bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbc1751 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xadc8fe90 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xadce9432 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xade741ed ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xadf62de1 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xadfc01f3 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0f51bf clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae105cd7 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xae16b427 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae30accb snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae476207 component_del +EXPORT_SYMBOL_GPL vmlinux 0xae4ccd5b xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xae570f38 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae71970c pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae890c00 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xaea32e6e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xaeac346c dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xaead772b kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xaeb1b0ab dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xaec2b0ec blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaec84d1b ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xaedad1cb pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf46af75 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xaf4752f1 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xaf54d774 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xaf5677fe pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xaf63a362 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xaf768bba platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf7f3af9 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xaf7f4597 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xaf80500c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xaf87a5cb pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf90980d usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf949553 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafa87b05 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xafb49561 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0xafb84d21 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0xafc8bae8 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xafcc36a8 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xafcfeaf9 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xafcffcd6 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe12e1e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xaff5dae7 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb001ae22 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb00bd4f1 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb0292a21 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb03ef9f0 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb0425fa1 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb051d5b0 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb065d70f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09c0374 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b88162 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb0bbed78 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xb0bfe8ee fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb0cb93f1 gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0xb0d2e9d5 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0d928bb security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb0e3daa0 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xb0ef1837 blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0xb0f49f28 pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0xb0feaca9 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xb10c3072 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb118712b mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12e1086 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb13329e3 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb142b34a tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb14cd2f7 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xb14ec203 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb156e769 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xb15f377e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xb161af26 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb170d22c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb172e569 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb1740457 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb17c0f32 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb17cc8f3 nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL vmlinux 0xb18110e0 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1888fdb snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xb18e7d69 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0xb19d291e blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb19fd2a3 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c04b31 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xb1caab25 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e1714e snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0xb1f1e7ca mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xb1f70b86 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb1f80926 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xb1ff9c81 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xb20e77dc xhci_mtk_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb2127a7d usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xb2150787 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2318064 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24b2fcb cpts_release +EXPORT_SYMBOL_GPL vmlinux 0xb24d7f38 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2714941 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xb27c1b18 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb28014db wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb299d8e7 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb2a40c00 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb2b0e3ab xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xb2b2ce17 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb2bcecdd ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xb2d17561 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2e618e3 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xb2e6d0c2 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f01d6d ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb32e308a dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb32e8663 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb3338863 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xb342d72e vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb352379a fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xb36959e4 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb376cbdd dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb377e3d0 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb3961b76 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xb39f22d1 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xb3a61906 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xb3ad04f2 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb3af8313 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb3b0f5cb regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xb3b2a41c xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3b50b22 direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xb3b96d49 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xb3c86619 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xb3ca43d3 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb3e1da18 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb3f4c956 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb3f4eec2 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb40b8cf5 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb4183cf9 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xb41e517c devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xb42973b6 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4353163 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xb43b11b9 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb461ff18 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb47e005c cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb47e57c6 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xb49de221 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb4a1791d bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb4b83b82 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e470a9 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ef4cec ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb4fbb95b pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb4fffba2 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xb500848f __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50ab25b of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xb50ff729 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xb512b6d9 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb517950a musb_writel +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5292d11 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xb53fc235 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb545d04d regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb55c82a8 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xb55d5c8c bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb564c422 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb56bf33f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xb57f90f7 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xb5a06558 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xb5bf21ae rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb5bf915b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0xb5cab16d proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb5ce2b1f dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e115ed tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xb5ed5804 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb5edd9b2 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb61bc9ac sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb626acb4 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb633cd24 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL vmlinux 0xb64ee2e7 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb64fa053 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xb65159db xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xb6585d99 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xb65a49f4 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xb65c3a65 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb66c9345 snd_soc_find_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xb6702296 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb6721370 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb688f2fa kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xb6957167 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb69c3d88 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6a08830 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xb6be536d genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xb6e3c136 nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ed5372 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xb70ea06e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xb71617c2 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb731b39a irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb7327a7d skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7393ac8 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xb74bd023 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb75a122d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb75d2970 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb774cb98 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb77f2ef2 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7854a87 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb786880d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb786b53d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xb7ad989a ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb7b81fa2 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d5b3ce ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb80e6fd5 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb80f1ff5 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb81625c4 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb8222f4f gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb82c8334 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xb835d651 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb842064d phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb84a9ab8 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0xb84d5fa0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb84e883d blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb85023ac uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb8752e4d __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb877cd04 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb87aedbd serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xb87e90b2 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb87ee676 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb87f6f34 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb883dd80 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0xb889c144 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a12ab1 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xb8a4032e iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xb8aae5cd devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xb8b0a29d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8b225d0 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xb8ca732c devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8de1ad9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb8df0382 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb8eb1340 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0xb8f22e05 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb8f5d1f0 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xb91736f4 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb918c7a3 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xb91baefb skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xb91c1bc5 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb93494bf platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xb9387557 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xb939435a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb93b423e fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb93f9dd9 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xb9418d1d devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xb957b094 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb95b8d86 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xb962a835 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xb96a6616 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb9821c1e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb992c01e devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9dd4e99 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9e0b72f sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xb9e5e8a1 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f63350 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xba16a5b1 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba34a33a ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xba5c1b25 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba5dc6b2 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xba67bced __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xba8efe70 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xbaa430a9 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xbaa81cf1 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xbaabaa46 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xbab1b54f dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac8ebd8 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb03e6c9 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0bb4be snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0xbb0cebfe tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xbb179d2d of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xbb24b4e6 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbb2b6a44 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb31dc27 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbb40fcac rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xbb43344f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb58c6e5 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbb5900ed crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb757ddc iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xbb902505 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xbb9e9456 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xbba7645d usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbbce7d3a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xbbd36f7d wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xbbdc6981 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xbbddc24d __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbbf0ea1c snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xbc007424 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xbc14b851 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2014a0 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0xbc397371 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc823185 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xbc871aaa skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xbc9ddcb2 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xbc9ef5b9 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xbc9f1fd6 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb0bca6 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc644b2 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd03811 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfe6f73 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xbd194ae3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xbd1e5f6f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xbd3d9b96 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd40d50f fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xbd423c9f __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd7507b6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xbda8eca7 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0xbdaad36f dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbdaba884 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xbdbd1258 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xbdc8bd41 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0xbdd6d48d ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xbde38bba usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xbde96630 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe278b7e ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe28b5ff gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xbe322121 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbe3c2e17 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbe3d8352 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe4613ca fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xbe4743ec trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xbe491a80 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe512793 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbe5d6ceb __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbe64ad6a tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe69b926 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xbe7cd515 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9af246 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe9bb5c7 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0xbe9f1f03 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb31a5a __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbeda7cf1 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xbee1feb9 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xbefb53aa register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xbeff2c64 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf137bce mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0xbf39a0f8 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xbf4b22f0 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xbf5166bb nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xbf624259 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xbf728f2d regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbf837f27 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xbf8b62ee pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf9d6327 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xbfa199da clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbfb2d396 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd1dc7d unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbfd927e5 i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0xbfdd31d3 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfe1c473 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xbfe36d9d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff3a4e6 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbffce09b rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc0270d3d ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc02af058 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc033f2fc dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc039ee67 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc0420b23 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xc0442379 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xc0444406 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc048e23d devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xc04981cf spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc04ba8c8 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc05b9268 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc071eb7a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xc07640fc perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xc07fa7e4 generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc086ba6d musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc0888e88 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc09bd2d0 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0af49d5 cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc0c812b1 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1058ea1 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc10b03b3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xc10cd0e4 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xc10efd8c efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xc10f2445 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc10ffe78 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc110306c regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xc1159ede pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc12a39a9 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc12fe96e snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xc13db195 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0xc1499246 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc15315aa dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc159308e sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc16a087b class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc175bed6 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc1791cd7 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xc19f99e5 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc1a0e853 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1b0fc27 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc1b81fc2 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xc1c82d63 pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0xc1da0ece snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xc1f94c12 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xc1fbcac1 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1fccc5e srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc20a332c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc21ca9e8 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc236dd67 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc2561efc pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc25b0e1d nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xc25e24d1 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc263b4bb relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xc26631dc ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xc26ebd9d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc2790b8b bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28d4bcd sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xc294f1e9 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xc2953cb8 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc29cca90 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2cd679e rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc2db6995 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find +EXPORT_SYMBOL_GPL vmlinux 0xc2ea4576 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2f2d0f5 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xc3073cc2 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc30ceb32 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc3118a27 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc3385bee sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34f7b83 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc38655ab rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc389ccb4 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xc3938cef fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xc39813b9 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xc3b29d1e debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc3b766c9 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3ceb8df mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xc3d4ef23 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f8abef devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3fb6bc5 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xc41263c7 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xc413cc29 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xc41d9cc6 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43381e6 sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xc4378d0c screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xc43c44c9 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc4443a6e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc44bf499 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc465aee3 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc46af8a4 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xc4715e7a devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48fee15 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0xc4b714a0 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc4bc41b7 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc4e2c47f dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc50f7138 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc5140997 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xc51d7701 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xc52bf8bc switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5643fa3 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5a354a5 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ac94cc wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5b5241d serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xc5bb4239 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc5c6451d nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xc5c82f8a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xc5ca030e ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d9bec4 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xc5dde576 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xc5fbd735 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc5ffb8a2 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61a6865 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc61e4f96 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc62ec282 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc63b0771 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc6419f99 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xc6473fc1 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xc64a702c phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc6683205 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c8ff7 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc671dae2 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0xc69993cd rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c3ed50 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xc6c4a944 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xc6c78022 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc6ce61f6 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc709209b nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xc71acb68 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc71ae180 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc71f3591 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xc72dd3ae virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xc73293cb kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc73a0026 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc76b65ee efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xc771f25d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aa6c2e sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc7bf6c75 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xc7e1b7a5 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e5caae gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80361af inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc805513e kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc807b25e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc81bbf6d of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xc8267406 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc827c65e led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82fc78a ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xc848f1db register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc862c4e7 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xc8679616 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xc86eae1e nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc870fde7 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xc874edbb devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xc87dce1b xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc8812fef blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xc88a9f9d call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc88c5c85 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xc891136a __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc897902f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c0a395 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8de17cd dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc8e1398a virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc8ea074a usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xc8f5e545 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc8f6335a ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xc90060ee devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xc905f60e spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xc90bdbaa fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc90ce8ba regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc912c7e1 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc91c2ad3 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc934e575 devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xc939c098 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc966b07f devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc985d6c6 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xc988d54b kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc997ed3d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc99b810f snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0xc99f98a5 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc9a782eb gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc9ad2c40 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xc9bddab1 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc9c1f42f unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9d393da sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9efd2a3 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fcbf02 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca071b01 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xca13d365 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xca1656ab ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xca3ab270 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xca439d15 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xca45e618 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4a5546 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xca4bc5fd is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xca59f6c2 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xca5a969b dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xca6ba70a inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xca6e0071 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcab63d9f xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac7eefe pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xcad2cc76 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xcad52430 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcadbd428 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xcade6d41 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcae5e9e5 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb0ea8fd rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb5345f2 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb771512 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb7c4e2a power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcb810ebf sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xcb9c706a alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xcbb62cb7 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xcbc0ccb4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xcbc254cf snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xcbd5ede3 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf2542e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xcc20ac52 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc4ffdef phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcc6720a8 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc6c7bdc __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xcc709a98 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcc75e3ac irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xcc84f29e power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc98a690 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcc9b34c3 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcca1e26b amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xccb17d88 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xccb45714 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xccb7329e init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccd8cc53 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xcce1cd57 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xcce7118e ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xccebee84 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xccecc61e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfdde48 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xccffdfc7 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcd01ac01 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xcd12f0fc crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xcd131885 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xcd242768 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3fdb98 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd4e1016 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcd52bd0b devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xcd5c137a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7b3cd7 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd93d909 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb395e1 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddcd388 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xcde15885 md_run +EXPORT_SYMBOL_GPL vmlinux 0xcde438b2 mtk_smi_larb_get +EXPORT_SYMBOL_GPL vmlinux 0xcdf13edb device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcdff016f unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xce15b476 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xce175713 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce26a96f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0xce4b747d skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xce4eab4e sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xce4f0b27 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce562fd1 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xce6b4f95 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6de458 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xce7af01c mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xce87df3c i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xce9059c1 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xce91fa9f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xce920945 mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xce954978 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xce95abcf sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcea08fbe nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xceb818f0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xceb9e9de devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xcec02957 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xcec05535 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcecb38eb fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcee0f60c freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee230af tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcf04bbe8 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xcf0871fd musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0xcf234aeb crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2bbd63 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf550566 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcf588f62 cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0xcf6831b3 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xcf6b2425 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xcf6dcbb7 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xcf71efb2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcf76ca1f dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xcf796848 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xcf8537ed of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xcfa1ad3d bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfcaa571 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xcfd29801 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcfd44b50 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcfdf54f6 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcffe61c6 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd003a412 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xd00d5aec pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xd0271b90 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xd03a52c7 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xd03be72e device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0509b32 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xd0559b58 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0835455 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xd08c5c75 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0a136b8 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd0b571c2 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd0b9fb8a snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c1e5fb nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0xd0c71372 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0xd0d95ca9 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e530ff ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xd0edf576 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd0efe848 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd0f8726b mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd119e751 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd13f835e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd14683fd ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd15e13cb spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd1678938 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd17b586a ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xd19aa30b devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd19f0fea debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd1a4eac8 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0xd1bb8f82 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1ccdb93 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xd1d706b6 component_add +EXPORT_SYMBOL_GPL vmlinux 0xd1e1f76c iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd1e2bfef debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd1ea327b dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21cb4fc alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xd227dd32 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xd228f4c0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd24cd574 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xd24e8256 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xd2581d9f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd269321d kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xd26f72af genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27c0530 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xd27e091d usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xd285dc59 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xd288da89 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd29bf574 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd2a46193 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2d09872 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xd2ebccc0 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd2f54711 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xd30472c3 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xd309dbd1 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0xd30ae733 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd3159f91 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd32f9417 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xd33a8aa8 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3447157 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xd37df917 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xd37f1426 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0xd383558b cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0xd392580c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3b8a56d inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xd3cf3b7f snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xd3de6025 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd3ed3b91 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd419c018 find_module +EXPORT_SYMBOL_GPL vmlinux 0xd41e6f19 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd42ac1c1 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd42c4c27 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xd4368990 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xd43e2a69 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd48be309 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd49eba96 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xd4b1e14d crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xd4b4ed0e blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4bbad74 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c66550 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd4d5c85c of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd4dd672b dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xd4e656e3 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd4e881a9 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xd5027af1 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0xd50fb995 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xd5279f17 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54f4f42 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd54f5a4a phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57d5dcc rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xd57f764e gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xd57f9fab irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xd58b708e devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd590d572 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd594cc87 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd5b17f23 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd5b7a647 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d16561 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xd5d2efd0 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xd5dc7162 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd5e19de7 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xd5e2423f percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xd5e391a5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xd5e5ebf4 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd5eee90f flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0xd5f83ea3 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd60e2c90 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xd61f569a nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0xd63ce82a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xd6421d0f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd64422b1 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd6447834 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xd64a5799 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65a3c50 xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd668582f __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd695164d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd69587bc usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xd6a5711c serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xd6bce1fb tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6f55b51 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xd70073a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd707ea8c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xd7081e20 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7159f0f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd71e2d7c mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7260403 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd7310b9c tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xd73118e2 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xd732ce95 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7337dcc devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73a13c7 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xd73fee26 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0xd751f4d2 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd7571b0d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd75bdb05 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xd765d0c4 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd766eaea shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76e7937 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77c28b7 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xd7889c5f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd7b94664 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd7bc55b3 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd7c4807b gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xd7c61358 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd81bbe58 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8257201 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xd829e0e4 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xd84342cd snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84de1d9 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd856d45b blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd8663963 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xd8723f94 clk_hw_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd885829d vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xd893d81a ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd8989bb8 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xd898c01f iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xd8ae5ddb md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xd8b33fcc rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd8c20ec6 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd8d24416 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xd8d36f1a perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xd8d5ee00 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd8e7d755 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd8eaf2d1 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xd8fb0e5b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd9105f34 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd9185db8 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xd922f727 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd95547d2 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xd95b2d54 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd95f1b41 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xd9698384 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd974f593 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd97a1e42 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xd97c9c11 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xd9806fb4 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd980ca83 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd9821e9b gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xd989d4ac get_device +EXPORT_SYMBOL_GPL vmlinux 0xd9b4782b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd9c85cfb tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd9ca980d usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xd9cbd94d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd9ceb1b1 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd9d03604 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9d6e697 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f2122c component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd9f3e65f __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9f92fbb regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd9fb2299 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xd9ffe95c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xda1129c8 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xda1281a4 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xda29208d pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xda2e8306 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xda410add freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xda44d469 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xda4d9272 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xda5b4cf3 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xda938d6f __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xda97b39b i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xda9e4795 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xdaa016f1 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xdaada082 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xdaae4b79 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xdab1f94c ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xdab26547 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac7a6b2 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb036672 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xdb0d7ffa i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb2633ed mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xdb2fb140 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xdb401da5 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xdb673096 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb799e87 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xdb7f8fa7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xdb82b182 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbc9148e follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xdbce9beb gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xdbe0f72d path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xdbe759ff sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xdbe8ad07 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xdbe8cc55 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf81b6b bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xdc0061c6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xdc04846a tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xdc0743f2 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xdc19fed9 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xdc41675e lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xdc511bab devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc584ea9 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdc64f20c of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc661464 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc89cb78 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xdc975c1c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdc9ff128 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xdca53fb0 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xdcafad6f snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0xdcafd388 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdce36c67 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xdce72170 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdce8df16 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xdce98325 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xdcf4d58b cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xdcf6b078 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xdcfbb6e0 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1fcac2 snd_compress_register +EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3ec646 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd71c523 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xdd778a95 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd963409 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xdd9b881a raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xddae35cf usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc1e2dd of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xddc9fd1a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xddce1486 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0xddce6358 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xde0a105b rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xde147351 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xde1b9f57 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xde25f88c __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xde3951d7 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8bfc77 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xde910470 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdeb3ee1f of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xdeb8d7d5 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xded0be89 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xded2bf28 pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0xdef5f994 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdef62650 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0xdefb4b67 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xdf035604 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf141b89 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf28cb21 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0xdf30cd47 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf59e826 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xdf5d4099 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdf74d073 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdf7fa33b __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xdf86d03a genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfb3e74b snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xdfb79b17 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xdfcab9bd vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdff10866 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xdffe49db dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe0001a50 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe024f45d crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xe02b9408 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xe02df6bb phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe02ec902 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe03ee3c2 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xe03ff17d xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe052fe8d nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0xe05553ed switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xe05de23f usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06fed5e blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe0902cf9 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0a98f02 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0cbcc35 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe1107089 device_add +EXPORT_SYMBOL_GPL vmlinux 0xe114d673 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xe1188a64 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xe126553f __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe133e4c8 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xe1350c57 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0xe1465da7 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe1502545 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17ae3b7 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe185e54e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xe18efd25 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xe18fe9f9 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xe1a5e778 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1b764c7 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c4090d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe1cfa261 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xe1d53293 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xe1dfa789 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe1f1853c crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe1f35661 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe1fa9fcd screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe2131d18 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe21e79ba blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xe22d14ed key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe26916b4 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xe27572e8 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe276ec3b snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xe279ff94 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xe2997fbd tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b8f12b shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xe2ba2f27 blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xe2d83cdc __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xe2d8a002 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe2deebfa debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe2f2411a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe2f565d5 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xe3005a40 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3130fcf pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe314400c dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe31b9ac1 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xe32324fa pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xe32c1f20 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe355eaaf ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe35ea5ed netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe373fa39 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe380ef9a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a2ee06 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3a6edcf alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xe3ab999b blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xe3c33612 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xe3d694f2 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xe3e6c166 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xe3fe4863 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe42bf534 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4425491 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xe4549af9 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe455c255 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe46e657d fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xe4711d99 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xe47f724a usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe491b9aa usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe4954950 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a5b487 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4adf351 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b24b43 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xe4d1a89e spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe4d53bae rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe4da19fe user_read +EXPORT_SYMBOL_GPL vmlinux 0xe4dc8b26 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ecf3a8 xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0xe4efa286 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xe4fee076 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xe503ee4e sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xe511153a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe53868f7 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe5458f70 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe5552d38 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xe557b490 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xe574f704 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe580987a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe59da2ab scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe59ee23f synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe5af266c edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xe5b2f745 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe5b7eb92 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5cec68d devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xe5d64ab1 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe5d7409c alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xe5e43f69 xhci_mtk_drop_ep_quirk +EXPORT_SYMBOL_GPL vmlinux 0xe5ee461e perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xe5f8c909 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6046736 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe641e718 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xe650bb79 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xe65fb100 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xe67432cc arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xe689bec7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe6b09f2b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xe6c9783b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe6d57cb7 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe6d81d31 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xe6d92057 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e50c67 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe6e76b63 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xe6e934c8 snd_soc_component_read32 +EXPORT_SYMBOL_GPL vmlinux 0xe6f0f5b5 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6f3a9a3 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e41e regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe7009c15 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe70d1380 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe71a6a77 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe71e9c81 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe73320e1 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xe7400386 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe748d6ce dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe75e29da ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe75e5aad of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76980d3 nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0xe76f3cab free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xe775b60a sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe795aff9 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe7a37e87 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe7a63bb9 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe7a6c1f7 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xe7b3f08c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xe7c12066 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d7cdeb tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xe7e4321c spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe812b211 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xe817280f edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe82318f2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe83245b2 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe8371be4 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe83f742e mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xe8400886 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe842241d sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe8451999 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85d8659 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe865737d put_device +EXPORT_SYMBOL_GPL vmlinux 0xe86c87f5 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xe87ef994 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe880e61d usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe8896cc7 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe88cd069 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe8900c19 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe8971f91 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xe8aa666c vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe8b347c1 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8ea1674 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe9132c79 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe9233332 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe92c2142 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94248ba usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9547016 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95ee136 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0xe9617c69 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xe9709f90 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe97e194f devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe992a8dc cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xe99cb47f of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe9a3e1ef invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9a9891c alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9b5c36b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe9cee664 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d26bc5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe9db9b12 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xe9ef5d1c balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea13fcc7 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xea141c72 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea208e94 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xea3223df sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xea322e83 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea59eae9 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xea65644d pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xea685f09 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xea6ae0b8 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xea6f92f9 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xeab89641 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xeabe1b94 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xeabf74e3 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xeac0bbd8 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeacba9e9 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xead0bf42 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf75df3 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xeafe07b8 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb054d9d serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb4affe5 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xeb558f16 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb876b3d gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xeb8e4ef4 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9e3558 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xeba52982 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xeba53bb6 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xebb1e8d0 devm_of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xebb5d86c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc80713 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdaf79b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xebe5c69d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec08dff8 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xec0aae75 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xec1d8451 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xec1ddce3 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xec227548 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xec2f3929 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xec358ffb probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0xec3ae2ad snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xec3e95c8 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xec4d8596 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xec681a44 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xec68ba70 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec69e476 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xec6d1d6e genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec89aa06 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xec8fc854 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xec9eede2 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xeca38515 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xecbe8f22 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xecccb82a net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xecdb74cb spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xecefe516 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xecf326b2 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0xed133aa7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xed137350 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xed2ab36d usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0xed38c848 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xed4003d5 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xed5d88cb regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xed5d8eaf cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0xed6a0bbb blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed8bbe99 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xed9562ab clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xedb2108f setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xedcb34cd fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xeddd0a8b devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xeddf3cc8 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xedf2ae3b usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0xee19ffb8 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xee1d9427 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xee2a5c4c regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xee3356f0 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3f03a5 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xee50e29b kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c1eec bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xee730922 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xee859f7d ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xee8777a9 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xee8a31d5 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xee90fcca sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xee982571 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeeaae977 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xeeb643a1 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xeebc5743 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xeebec6b0 null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0xeed8375d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee239af iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xeef11773 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xeefd029d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xef0d47a6 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xef126753 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xef1717d7 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xef195a33 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xef1db2cb crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xef20deee netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xef213b33 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xef253886 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4ec6e4 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xef57ea61 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef7ee39c device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef8e1395 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xef919827 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xef9199b1 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xef9abd89 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa624f5 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xefb9f484 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xefc25bbd pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf00170ad fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf001d226 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf004d3fa nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0xf00edb00 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf0394ef9 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0xf0429f0e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf0448706 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf0455bb5 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xf049673b devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xf0551537 nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0xf05b3090 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf05ebc64 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xf0743ef6 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf080e0b4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xf0979a46 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xf0affeeb regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf0b05bff serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xf0b5e255 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf0ba3ec1 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xf0c07ddc do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xf0d59946 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0e783e0 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf0f1014d __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xf0f90d86 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf0fc0ac3 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf0fdf445 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf10816a5 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0xf1088603 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf133c0ce serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xf1352359 dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf14c1279 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf150def8 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf1593a2e debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf16a468d tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1738f21 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL vmlinux 0xf17f133b meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18ddf37 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xf1932eda dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf1b04062 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1e5d651 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xf1ed71b6 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0xf20df1ef crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf20e29d6 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xf212f780 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf220e22b of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xf238e836 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf23fa04a nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0xf2420b24 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf24b85be debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf250b9af tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xf265e003 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf2782dcb of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xf291327b device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf294b72b sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xf2a11018 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf2a646a8 md_start +EXPORT_SYMBOL_GPL vmlinux 0xf2d61369 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf2d6b0ff sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xf2dd4e85 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf2e6e248 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31357cc led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31ffcf7 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xf3229749 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3235873 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335c43c device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf33c9a95 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xf34a9752 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf34f6ef4 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf3701aac led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xf3777bb4 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xf37902bf usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf37d41a1 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3891d33 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xf38e1a02 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xf3a3636e devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xf3a84396 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b77157 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xf3c004bf power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf3c2528a clk_hw_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xf3d130d6 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf3dceb3c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf3ee076b ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xf40009b3 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf401e089 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xf4138ad9 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0xf413ed11 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xf4152213 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf41a19f4 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xf421e1a1 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf432d9ee metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xf4342311 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xf441ca49 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf45ad034 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf45cce8c reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xf45db6a9 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4653ddd regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf4706ba6 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf4712abf bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xf48b1a5f iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c063e2 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf4d1f41e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xf4d2bd94 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf4df27bf iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf4e0814b wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4e892e6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf507c9eb wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf50edfab gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf51a9f6e devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf51d051e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf5292b10 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xf53905cc pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56b986c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf573608a irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xf5741b67 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0xf5821f0d regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf58d2f1b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xf59bfe98 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5d64567 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5e3993e devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5f040cf da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f5154d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf5f598e4 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf5fd3617 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xf60ce315 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf60d5405 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xf612e9a1 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf6179410 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf62c2215 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xf630c22c percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xf635bc34 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xf6363c1f amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf65578cd regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xf657897c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf669ce76 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf6754e3f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf67ef5cc gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf683990d unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf693b0ac extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xf697b926 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xf69878ed gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6a134a5 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf6ae4e68 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dbd8 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d9afcb pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf6dec61f pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6df62fd gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xf6dfbe94 debugfs_create_devm_seqfile +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 0xf6fe0ad0 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xf706b0ae blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xf70c651b platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xf719a54d regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xf72de2be devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf737afdf dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xf73db534 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74ad272 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf74b0f08 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf7500b2b led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xf760ba02 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf77dd6ca pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xf782a58e spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xf7886e76 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf79b3ed7 cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0xf7b300cc inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf7b3a803 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf7bb4ec6 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c96d2c trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf7cd1295 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf7cd6852 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xf7fe38ea blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf80e51af snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf8117e76 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xf813535c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xf814190a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8168a8a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf818e46f kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf81afa8d snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8322c24 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf844a242 xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0xf84c1a07 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf8521e69 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xf8669c7c rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf866f6b1 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8828162 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8853a8c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf8cbc5db __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xf8d8e452 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xf8d9b581 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf8dea965 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf905f0b3 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf90b9406 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf924bfd2 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9394b91 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf942dc43 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf9463c2b do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9536bbf __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xf96a2d60 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xf98b8250 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf9964266 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3686e ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xf9ab7c36 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xf9acfa7b devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf9b3f260 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xf9e1ff59 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf9eb8c1f __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2d041a input_class +EXPORT_SYMBOL_GPL vmlinux 0xfa33917c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa33bdc0 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfa4b25e5 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfa50d2d6 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xfa55d669 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6e6753 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0xfa723efe attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xfa7c821f bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xfaae28b7 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab8879d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xfad0ca80 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfb008c57 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xfb089aba serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xfb10b437 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb1e7c9d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfb24aaf9 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb28ea00 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xfb2c9997 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3546f4 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xfb3e2160 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfb4550f8 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfb596a63 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last +EXPORT_SYMBOL_GPL vmlinux 0xfb7dbfdf fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xfb7ffa5b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xfb83f3af mtd_read +EXPORT_SYMBOL_GPL vmlinux 0xfb8ffa31 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfb992577 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xfbba52ca __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc94202 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xfbe196ef platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xfbf4ffc7 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfbfb512c wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0c75f1 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xfc0e2670 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc17a304 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfc17c3f4 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1f34d8 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xfc25295d of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xfc35ebb4 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xfc3973d8 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfc3a03cf devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfc3a99b9 mmput +EXPORT_SYMBOL_GPL vmlinux 0xfc4a7e73 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xfc5245e7 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xfc54e722 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xfc619400 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfc6dd88f napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc997bca devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xfca779fa devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfcafaa46 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfcb2dc42 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xfcb68746 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xfcdc1522 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xfcf56119 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xfd032dd0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xfd040770 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfd1fe9c3 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xfd222b66 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0xfd576378 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xfd6fb12e dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xfd7e817f crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xfd8e05ec iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xfdb404af tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc5d4fd switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xfdc8f933 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfdd50cfb __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfdf56482 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe144e05 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xfe1a510c rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xfe1b6448 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xfe1f2e03 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe29b8e1 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xfe40096f kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe48eecb __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xfe5ed37a __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfe61d553 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xfe682bb8 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xfe7ebda4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xfe8e1d2a pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xfe8e8307 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0xfe8eaa4f xhci_mtk_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9db937 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfea10369 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xfea58a82 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xfeae04b3 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfebd18e7 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xfebfe280 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfec45e37 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xfec554b4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeeca451 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xfef67ace btree_init +EXPORT_SYMBOL_GPL vmlinux 0xfef7cfab ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2a28b9 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xff2ffcf5 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xff3c6d93 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff47a6d6 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xff4c95e8 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xff52fb00 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff73240b amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xff794fef crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xff9731b5 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc79bc2 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xffd296ac regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xffdce9c3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xfff19ca1 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfffc0a74 dev_pm_qos_add_notifier +USB_STORAGE EXPORT_SYMBOL_GPL 0x015456d5 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x021a57d8 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0f8a9977 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1837cd0d 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 0x271ddccb usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2ebf8dc4 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x307f0c2d usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x325e5ce6 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x354b6e7b usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4dbb3ea6 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5244c952 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x57c189a2 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x654a48aa usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68c824ad usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x73343f25 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9c10f324 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9db70f2b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb0cf6aae fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb7147334 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc232b549 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd154be08 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd877973b usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xda6bcaf5 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb5c2268 usb_stor_CB_reset drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.modules @@ -0,0 +1,5818 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a53-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abp060mg +acard-ahci +acecad +acenic +acp_audio_dma +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs450 +aegis128 +aes-arm +aes-arm-bs +aes-arm-ce +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_dm816 +ahci_mtk +ahci_mvebu +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +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 +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc_pci +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anubis +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +apr +aptina-pll +aqc111 +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_mhu +arm_scpi +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 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-smc +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_gfx +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +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 +atlas-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +ax88796b +axg-audio +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_fuel_gauge +b1 +b1dma +b1pci +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 +bam_dma +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm47xxsflash +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bd70528-charger +bd70528-regulator +bd70528_wdt +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bochs-drm +bonding +bpa10x +bpck +bpck6 +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +bsd_comp +bt-bmc +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence-quadspi +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sdm845 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capi +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 +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-pltfrm +cdns3 +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8318 +chnl_net +chtls +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-hi3519 +clk-hi655x +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-pwm +clk-qcom +clk-rk808 +clk-rpm +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-twl6040 +clk-versaclock5 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cnic +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppi41 +cqhci +cramfs +crc-itu-t +crc32-arm-ce +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-arm-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-cec +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_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_vbc +cros_usbpd-charger +cros_usbpd_logger +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da9030_battery +da9034-ts +da903x +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 +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 +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sdm845 +dl2k +dlci +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-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9000 +dm9601 +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dpot-dac +dps310 +drbd +drm +drm_kms_helper +drm_mipi_dbi +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 +dumb-vga-dac +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_mipi_dsi-stm +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc3 +dwc3-exynos +dwc3-haps +dwc3-meson-g12a +dwc3-of-simple +dwc3-omap +dwc3-qcom +dwmac-dwc-qos-eth +dwmac-generic +dwmac-ipq806x +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ecc +ecdh_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-npcm7xx +ehci-omap +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +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 +exynos-gsc +exynos-lpass +exynos-rng +exynos-trng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +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_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-ast-cf +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dcu-drm +fsl-edma +fsl-edma-common +fsl-mph-dr-of +fsl-qdma +fsl_linflexuart +fsl_lpuart +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftm-quaddec +ftmac100 +ftsteutates +ftwdt010_wdt +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gb-audio-apbridgea +gb-audio-gb +gb-audio-manager +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-ipq806x +gcc-ipq8074 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sdm660 +gcc-sdm845 +gcc-sm8150 +gdmtty +gdmulte +gdth +gemini +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gf2k +gfs2 +ghash-arm-ce +gigaset +gl518sm +gl520sm +gl620a +glink_ssr +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd-fch +gpio-arizona +gpio-aspeed +gpio-bd70528 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-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-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ucb1400 +gpio-uniphier +gpio-vibra +gpio-viperboard +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpu-sched +gpucc-sdm845 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd44780 +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisi-rng +hisi-sfc +hisi504_nand +hisi_femac +hisi_powerkey +hisi_thermal +hix5hd2_gmac +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx711 +hx8357 +hx8357d +hyperbus-core +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-aspeed +i2c-axxia +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3c +i3c-master-cdns +i40e +i40iw +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-core +icc-smd-rpm +ice +ice40-spi +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +impa7 +ims-pcu +imx-ipu-v3 +imx-ldb +imx-tve +imx214 +imx258 +imx274 +imx319 +imx355 +imx6ul_tsc +imxdrm +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +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_npcm7xx +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kheaders +kl5kusb105 +kmx61 +kobil_sct +komeda +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +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-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-regulator +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +lego_ev3_battery +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +lima +lineage-pem +linear +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +lkkbd +llc +llc2 +llcc-sdm845 +llcc-slice +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 +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 +lpasscc-sdm845 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-encoder +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_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-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mcde_drm +mceusb +mchp23k256 +mcp16502 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdev +mdio +mdio-aspeed +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdt_loader +me4000 +me_daq +mediatek-cpufreq +mediatek-drm +mediatek-drm-hdmi +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-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microtek +mii +milbeaut_usio +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_sound +most_usb +most_video +motorola-cpcap +moxa +moxtet +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi001 +msi2500 +msm +msm-vibrator +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-crypto +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-quadspi +mtk-rng +mtk-sd +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_am335x +musb_dsps +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv643xx_eth +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_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 +npcm750-pwm-fan +npcm_adc +nps_enet +ns558 +ns83820 +nsh +nsp32 +ntb +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-uniphier-efuse +nvmem_meson_mx_efuse +nvmem_qfprom +nvmem_rockchip_efuse +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocelot_board +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +omap +omap-aes-driver +omap-crypto +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap2430 +omap2fb +omap4-keypad +omap_hdq +omap_hwspinlock +omap_wdt +omapdss +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +owl-dma +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-arm-versatile +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9881c +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-kingdisplay-kd097d04 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-nec-nl8048hl11 +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-rocktech-jh057n00900 +panel-ronbo-rb070d30 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e8aa0 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panfrost +parade-ps8622 +parallel-display +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 +pbias-regulator +pc300too +pc87360 +pc87427 +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-pf-stub +pci-stub +pci200syn +pcie-rockchip-host +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +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-dp +phy-cadence-sierra +phy-cpcap-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-mapphone-mdm6600 +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson-gxl-usb3 +phy-meson8b-usb2 +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-ocelot-serdes +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-emmc +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-tahvo +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +phy-uniphier-pcie +phy-uniphier-usb2 +phy-uniphier-usb3hs +phy-uniphier-usb3ss +phylink +physmap +pi3usb30532 +pi433 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sm8150 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +pl353-smc +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-ir-tx +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q6adm +q6afe +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-coincell +qcom-cpufreq-hw +qcom-emac +qcom-geni-se +qcom-pm8xxx +qcom-pm8xxx-xoadc +qcom-pon +qcom-rng +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink_native +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcrypto +qcserial +qed +qede +qedf +qedi +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-qcs404 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-gyroadc +rcar-vin +rcar_can +rcar_canfd +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rcuperf +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-ceu +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-scmi +reset-ti-syscon +reset-uniphier +reset-uniphier-glue +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmobile-reset +rmtfs_mem +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-io-domain +rockchip-rga +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rocket +rohm-bd70528 +rohm-bd718x7 +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson +rtc-meson-vrtc +rtc-msm6242 +rtc-mt6397 +rtc-mt7622 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +rza_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s5p-cec +s5p-g2d +s5p-jpeg +s5p-mfc +s5p-sss +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +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 +sbs-battery +sbs-charger +sbs-manager +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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 +sclk-div +scmi-cpufreq +scmi-hwmon +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci-cadence +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-omap +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sh_veu +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +sharpslpart +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +slram +sm3_generic +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +smc91x +smc_diag +smd-rpm +smem +smiapp +smiapp-pll +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-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-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-arizona +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-idma +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +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-g12a-tohdmitx +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mtk-common +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-odroid +snd-soc-omap-mcbsp +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5645 +snd-soc-rt5663 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sdm845 +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-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-ti-edma +snd-soc-ti-sdma +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-tm2-wm5110 +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-uniphier-aio-cpu +snd-soc-uniphier-aio-ld11 +snd-soc-uniphier-aio-pxs2 +snd-soc-uniphier-evea +snd-soc-wcd9335 +snd-soc-wm-adsp +snd-soc-wm-hubs +snd-soc-wm5110 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-of +snd-sof-pci +snd-sonicvibes +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +sni_ave +snic +snps_udc_core +snps_udc_plat +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundwire-bus +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-armada-3700 +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-geni-qcom +spi-gpio +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mxic +spi-nor +spi-npcm-fiu +spi-npcm-pspi +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-ti-qspi +spi-tle62x0 +spi-uniphier +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-pmic-arb +sps30 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm-drm +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +switchtec +sx8 +sx8654 +sx9500 +sy8106a-regulator +sy8824x +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +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 +tc358764 +tc358767 +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_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 +tea +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tef6862 +tehuti +teranetics +test-kprobes +test_blackhole_dev +test_bpf +test_power +tg3 +tgr192 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-cal +ti-csc +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-sc +ti-sn65dsi86 +ti-soc-thermal +ti-tfp410 +ti-tlc4541 +ti-vpdma +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_edac +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tusb6010 +tvaudio +tve200_drm +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uniphier-mdmac +uniphier-regulator +uniphier-sd +uniphier_thermal +uniphier_wdt +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +vcnl4035 +vctrl-regulator +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_mdev +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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-sdm845 +videodev +vim2m +vimc +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgmac +xhci-histb +xhci-mtk +xhci-plat-hcd +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_emac +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xlnx_vcu +xor +xor-neon +xpad +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 +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zx-tdm only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic-lpae.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic.modules @@ -0,0 +1,5947 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_omap +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a53-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +abp060mg +acard-ahci +acecad +acenic +acp_audio_dma +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs450 +aegis128 +aes-arm +aes-arm-bs +aes-arm-ce +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_dm816 +ahci_mtk +ahci_mvebu +ahci_qoriq +ahci_tegra +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +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 +am35x +am53c974 +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc_pci +amd8111e +amdgpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anubis +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +apr +aptina-pll +aqc111 +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_big_little +arm_mhu +arm_scpi +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 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-smc +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_gfx +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +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 +atlas-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +ax88796b +axg-audio +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_fuel_gauge +b1 +b1dma +b1pci +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 +bam_dma +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm47xxsflash +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcma +bcmsysport +bd6107 +bd70528-charger +bd70528-regulator +bd70528_wdt +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bochs-drm +bonding +bpa10x +bpck +bpck6 +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +bsd_comp +bt-bmc +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence-quadspi +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sdm845 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capi +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 +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-pltfrm +cdns3 +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8318 +chnl_net +chtls +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-hi3519 +clk-hi655x +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-pwm +clk-qcom +clk-rk808 +clk-rpm +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-twl6040 +clk-versaclock5 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +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_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppi41 +cramfs +crc-itu-t +crc32-arm-ce +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-arm-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-cec +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_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_vbc +cros_usbpd-charger +cros_usbpd_logger +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da8xx-fb +da9030_battery +da9034-ts +da903x +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 +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 +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sdm845 +dl2k +dlci +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-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9000 +dm9601 +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dpot-dac +dps310 +drbd +drm +drm_kms_helper +drm_mipi_dbi +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 +dumb-vga-dac +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_mipi_dsi-stm +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc3 +dwc3-exynos +dwc3-haps +dwc3-meson-g12a +dwc3-of-simple +dwc3-omap +dwc3-qcom +dwmac-dwc-qos-eth +dwmac-generic +dwmac-ipq806x +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ecc +ecdh_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-mxc +ehci-npcm7xx +ehci-omap +ehci-tegra +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +error +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +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 +exynos-gsc +exynos-lpass +exynos-rng +exynos-trng +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +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_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-ast-cf +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dcu-drm +fsl-edma +fsl-edma-common +fsl-mph-dr-of +fsl-qdma +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_usb2_udc +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftm-quaddec +ftmac100 +ftsteutates +ftwdt010_wdt +fujitsu_ts +fusb300_udc +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gb-audio-apbridgea +gb-audio-gb +gb-audio-manager +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-ipq806x +gcc-ipq8074 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sdm660 +gcc-sdm845 +gcc-sm8150 +gdmtty +gdmulte +gdth +gemini +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +gf2k +gfs2 +ghash-arm-ce +gianfar_driver +gigaset +gl518sm +gl520sm +gl620a +glink_ssr +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd-fch +gpio-arizona +gpio-aspeed +gpio-bd70528 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-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-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ts4800 +gpio-ts4900 +gpio-ucb1400 +gpio-uniphier +gpio-vibra +gpio-viperboard +gpio-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-sdm845 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd44780 +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hifn_795x +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisi-rng +hisi-sfc +hisi504_nand +hisi_femac +hisi_powerkey +hisi_thermal +hix5hd2_gmac +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 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwa-hc +hwa-rc +hwmon-vid +hx711 +hx8357 +hx8357d +hyperbus-core +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-aspeed +i2c-cbus-gpio +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hix5hd2 +i2c-i801 +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-xiic +i3c +i3c-master-cdns +i40e +i40iw +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-core +icc-smd-rpm +ice +ice40-spi +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +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-cpufreq-dt +imx-dma +imx-ipu-v3 +imx-ldb +imx-mailbox +imx-media-common +imx-pxp +imx-rngc +imx-sdma +imx-tve +imx-vdoa +imx21-hcd +imx214 +imx258 +imx274 +imx2_wdt +imx319 +imx355 +imx6-media +imx6-media-csi +imx6-mipi-csi2 +imx6q-cpufreq +imx6ul_tsc +imx7-media-csi +imx7-mipi-csis +imx7d_adc +imx7ulp_wdt +imx_keypad +imx_rproc +imx_sc_wdt +imx_thermal +imxdrm +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +iova +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +irq-ts4800 +irqbypass +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +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_npcm7xx +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khazad +kheaders +kl5kusb105 +kmx61 +kobil_sct +komeda +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +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-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-regulator +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +lego_ev3_battery +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +lima +lineage-pem +linear +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +lkkbd +llc +llc2 +llcc-sdm845 +llcc-slice +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 +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 +lpasscc-sdm845 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-encoder +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_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-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mcde_drm +mceusb +mchp23k256 +mcp16502 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +mdc800 +mdev +mdio +mdio-aspeed +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdt_loader +me4000 +me_daq +mediatek-cpufreq +mediatek-drm +mediatek-drm-hdmi +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-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microtek +mii +milbeaut_usio +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8996 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_sound +most_usb +most_video +motorola-cpcap +moxa +moxtet +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi001 +msi2500 +msm +msm-vibrator +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-crypto +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-quadspi +mtk-rng +mtk-sd +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_am335x +musb_dsps +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv643xx_eth +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nbpfaxi +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_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 +npcm750-pwm-fan +npcm_adc +nps_enet +ns558 +ns83820 +nsh +nsp32 +ntb +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-uniphier-efuse +nvmem_meson_mx_efuse +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocelot_board +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of-fpga-region +of_mmc_spi +of_xilinx_wdt +ofb +ohci-platform +omap +omap-aes-driver +omap-crypto +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap-vout +omap2 +omap2430 +omap2fb +omap3-isp +omap3-rom-rng +omap4-iss +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_ssi +omap_wdt +omapdss +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +oprofile +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +owl-dma +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-arm-versatile +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9881c +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-kingdisplay-kd097d04 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-nec-nl8048hl11 +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-rocktech-jh057n00900 +panel-ronbo-rb070d30 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e8aa0 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panfrost +parade-ps8622 +parallel-display +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_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 +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-pf-stub +pci-stub +pci200syn +pcie-rockchip-host +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +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-dp +phy-cadence-sierra +phy-cpcap-usb +phy-dm816x-usb +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-mapphone-mdm6600 +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson-gxl-usb3 +phy-meson8b-usb2 +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-ocelot-serdes +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq806x-sata +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-ufs +phy-qcom-ufs-qmp-14nm +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-emmc +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-tahvo +phy-tegra-usb +phy-tegra-xusb +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +phy-uniphier-pcie +phy-uniphier-usb2 +phy-uniphier-usb3hs +phy-uniphier-usb3ss +phylink +physmap +pi3usb30532 +pi433 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-ipq4019 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mdm9615 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8960 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sm8150 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +pl353-smc +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8941-wled +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptp-qoriq +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-ir-tx +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q6adm +q6afe +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-coincell +qcom-cpufreq-hw +qcom-emac +qcom-geni-se +qcom-pm8xxx +qcom-pm8xxx-xoadc +qcom-pon +qcom-rng +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink_native +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcrypto +qcserial +qed +qede +qedf +qedi +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-qcs404 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-gyroadc +rcar-vin +rcar_can +rcar_canfd +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rcuperf +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +regmap-ac97 +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-ceu +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-scmi +reset-ti-syscon +reset-uniphier +reset-uniphier-glue +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmobile-reset +rmtfs_mem +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-io-domain +rockchip-rga +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rocket +rohm-bd70528 +rohm-bd718x7 +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-hid-sensor-time +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson +rtc-meson-vrtc +rtc-msm6242 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +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-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +rza_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s5p-cec +s5p-g2d +s5p-jpeg +s5p-mfc +s5p-sss +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sahara +salsa20_generic +samsung +samsung-keypad +samsung-sxgbe +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 +sbs-battery +sbs-charger +sbs-manager +sc16is7xx +sc92031 +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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 +sclk-div +scmi-cpufreq +scmi-hwmon +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci-cadence +sdhci-dove +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-omap +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sh_veu +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +sharpslpart +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +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 +sm3_generic +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +smc91x +smc_diag +smd-rpm +smem +smiapp +smiapp-pll +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-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-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-arizona +snd-soc-armada-370-db +snd-soc-arndale-rt5631 +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-eukrea-tlv320 +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-utils +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-idma +snd-soc-imx-audmix +snd-soc-imx-es8328 +snd-soc-imx-mc13783 +snd-soc-imx-spdif +snd-soc-imx-ssi +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-mc13783 +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-g12a-tohdmitx +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mtk-common +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-odroid +snd-soc-omap-abe-twl6040 +snd-soc-omap-dmic +snd-soc-omap-mcbsp +snd-soc-omap-mcpdm +snd-soc-omap-twl4030 +snd-soc-omap3pandora +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5663 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sdm845 +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-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tegra-alc5632 +snd-soc-tegra-max98090 +snd-soc-tegra-pcm +snd-soc-tegra-rt5640 +snd-soc-tegra-rt5677 +snd-soc-tegra-sgtl5000 +snd-soc-tegra-trimslice +snd-soc-tegra-utils +snd-soc-tegra-wm8753 +snd-soc-tegra-wm8903 +snd-soc-tegra-wm9712 +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-ti-edma +snd-soc-ti-sdma +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-tm2-wm5110 +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda1334 +snd-soc-uniphier-aio-cpu +snd-soc-uniphier-aio-ld11 +snd-soc-uniphier-aio-pxs2 +snd-soc-uniphier-evea +snd-soc-wcd9335 +snd-soc-wm-adsp +snd-soc-wm-hubs +snd-soc-wm5110 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-of +snd-sof-pci +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +sni_ave +snic +snps_udc_core +snps_udc_plat +snvs_pwrkey +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundwire-bus +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-armada-3700 +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mxic +spi-nor +spi-npcm-fiu +spi-npcm-pspi +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-ti-qspi +spi-tle62x0 +spi-uniphier +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-pmic-arb +sps30 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssbi +ssd1307fb +ssfdc +ssi_protocol +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm-drm +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +switchtec +sx8 +sx8654 +sx9500 +sy8106a-regulator +sy8824x +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +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 +tc358764 +tc358767 +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_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 +tea +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-tcu +tegra-vde +tegra186-cpufreq +tegra20-devfreq +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test-kprobes +test_blackhole_dev +test_bpf +test_power +tg3 +tgr192 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-cal +ti-csc +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-emif-sram +ti-lmu +ti-sc +ti-sn65dsi86 +ti-soc-thermal +ti-tfp410 +ti-tlc4541 +ti-vpdma +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_davinci_emac +ti_edac +ti_hecc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts4800-ts +ts4800_wdt +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tusb6010 +tvaudio +tve200_drm +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uniphier-mdmac +uniphier-regulator +uniphier-sd +uniphier_thermal +uniphier_wdt +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +vcnl4035 +vctrl-regulator +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_mdev +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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-sdm845 +videodev +vim2m +vimc +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgmac +xhci-histb +xhci-mtk +xhci-plat-hcd +xhci-tegra +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_emac +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xlnx_vcu +xor +xor-neon +xpad +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 +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zx-tdm only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/armhf/generic.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/armhf/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/fwinfo +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/fwinfo @@ -0,0 +1,1600 @@ +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/banks_k_2_smc.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/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/hainan_ce.bin +firmware: amdgpu/hainan_k_smc.bin +firmware: amdgpu/hainan_mc.bin +firmware: amdgpu/hainan_me.bin +firmware: amdgpu/hainan_pfp.bin +firmware: amdgpu/hainan_rlc.bin +firmware: amdgpu/hainan_smc.bin +firmware: amdgpu/hawaii_ce.bin +firmware: amdgpu/hawaii_k_smc.bin +firmware: amdgpu/hawaii_mc.bin +firmware: amdgpu/hawaii_me.bin +firmware: amdgpu/hawaii_mec.bin +firmware: amdgpu/hawaii_pfp.bin +firmware: amdgpu/hawaii_rlc.bin +firmware: amdgpu/hawaii_sdma.bin +firmware: amdgpu/hawaii_sdma1.bin +firmware: amdgpu/hawaii_smc.bin +firmware: amdgpu/hawaii_uvd.bin +firmware: amdgpu/hawaii_vce.bin +firmware: amdgpu/kabini_ce.bin +firmware: amdgpu/kabini_me.bin +firmware: amdgpu/kabini_mec.bin +firmware: amdgpu/kabini_pfp.bin +firmware: amdgpu/kabini_rlc.bin +firmware: amdgpu/kabini_sdma.bin +firmware: amdgpu/kabini_sdma1.bin +firmware: amdgpu/kabini_uvd.bin +firmware: amdgpu/kabini_vce.bin +firmware: amdgpu/kaveri_ce.bin +firmware: amdgpu/kaveri_me.bin +firmware: amdgpu/kaveri_mec.bin +firmware: amdgpu/kaveri_mec2.bin +firmware: amdgpu/kaveri_pfp.bin +firmware: amdgpu/kaveri_rlc.bin +firmware: amdgpu/kaveri_sdma.bin +firmware: amdgpu/kaveri_sdma1.bin +firmware: amdgpu/kaveri_uvd.bin +firmware: amdgpu/kaveri_vce.bin +firmware: amdgpu/mullins_ce.bin +firmware: amdgpu/mullins_me.bin +firmware: amdgpu/mullins_mec.bin +firmware: amdgpu/mullins_pfp.bin +firmware: amdgpu/mullins_rlc.bin +firmware: amdgpu/mullins_sdma.bin +firmware: amdgpu/mullins_sdma1.bin +firmware: amdgpu/mullins_uvd.bin +firmware: amdgpu/mullins_vce.bin +firmware: amdgpu/navi10_asd.bin +firmware: amdgpu/navi10_ce.bin +firmware: amdgpu/navi10_gpu_info.bin +firmware: amdgpu/navi10_me.bin +firmware: amdgpu/navi10_mec.bin +firmware: amdgpu/navi10_mec2.bin +firmware: amdgpu/navi10_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_vcn.bin +firmware: amdgpu/navi14_asd.bin +firmware: amdgpu/navi14_ce.bin +firmware: amdgpu/navi14_ce_wks.bin +firmware: amdgpu/navi14_gpu_info.bin +firmware: amdgpu/navi14_me.bin +firmware: amdgpu/navi14_me_wks.bin +firmware: amdgpu/navi14_mec.bin +firmware: amdgpu/navi14_mec2.bin +firmware: amdgpu/navi14_mec2_wks.bin +firmware: amdgpu/navi14_mec_wks.bin +firmware: amdgpu/navi14_pfp.bin +firmware: amdgpu/navi14_pfp_wks.bin +firmware: amdgpu/navi14_rlc.bin +firmware: amdgpu/navi14_sdma.bin +firmware: amdgpu/navi14_sdma1.bin +firmware: amdgpu/navi14_smc.bin +firmware: amdgpu/navi14_sos.bin +firmware: amdgpu/navi14_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/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_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/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_ce.bin +firmware: amdgpu/polaris12_ce_2.bin +firmware: amdgpu/polaris12_k_mc.bin +firmware: amdgpu/polaris12_k_smc.bin +firmware: amdgpu/polaris12_mc.bin +firmware: amdgpu/polaris12_me.bin +firmware: amdgpu/polaris12_me_2.bin +firmware: amdgpu/polaris12_mec.bin +firmware: amdgpu/polaris12_mec2.bin +firmware: amdgpu/polaris12_mec2_2.bin +firmware: amdgpu/polaris12_mec_2.bin +firmware: amdgpu/polaris12_pfp.bin +firmware: amdgpu/polaris12_pfp_2.bin +firmware: amdgpu/polaris12_rlc.bin +firmware: amdgpu/polaris12_sdma.bin +firmware: amdgpu/polaris12_sdma1.bin +firmware: amdgpu/polaris12_smc.bin +firmware: amdgpu/polaris12_uvd.bin +firmware: amdgpu/polaris12_vce.bin +firmware: amdgpu/raven2_asd.bin +firmware: amdgpu/raven2_ce.bin +firmware: amdgpu/raven2_gpu_info.bin +firmware: amdgpu/raven2_me.bin +firmware: amdgpu/raven2_mec.bin +firmware: amdgpu/raven2_mec2.bin +firmware: amdgpu/raven2_pfp.bin +firmware: amdgpu/raven2_rlc.bin +firmware: amdgpu/raven2_sdma.bin +firmware: amdgpu/raven2_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_vcn.bin +firmware: amdgpu/renoir_asd.bin +firmware: amdgpu/renoir_ce.bin +firmware: amdgpu/renoir_gpu_info.bin +firmware: amdgpu/renoir_me.bin +firmware: amdgpu/renoir_mec.bin +firmware: amdgpu/renoir_mec2.bin +firmware: amdgpu/renoir_pfp.bin +firmware: amdgpu/renoir_rlc.bin +firmware: amdgpu/renoir_sdma.bin +firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/si58_mc.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/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/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_ce.bin +firmware: amdgpu/vega10_gpu_info.bin +firmware: amdgpu/vega10_me.bin +firmware: amdgpu/vega10_mec.bin +firmware: amdgpu/vega10_mec2.bin +firmware: amdgpu/vega10_pfp.bin +firmware: amdgpu/vega10_rlc.bin +firmware: amdgpu/vega10_sdma.bin +firmware: amdgpu/vega10_sdma1.bin +firmware: amdgpu/vega10_smc.bin +firmware: amdgpu/vega10_sos.bin +firmware: amdgpu/vega10_uvd.bin +firmware: amdgpu/vega10_vce.bin +firmware: amdgpu/vega12_asd.bin +firmware: amdgpu/vega12_ce.bin +firmware: amdgpu/vega12_gpu_info.bin +firmware: amdgpu/vega12_me.bin +firmware: amdgpu/vega12_mec.bin +firmware: amdgpu/vega12_mec2.bin +firmware: amdgpu/vega12_pfp.bin +firmware: amdgpu/vega12_rlc.bin +firmware: amdgpu/vega12_sdma.bin +firmware: amdgpu/vega12_sdma1.bin +firmware: amdgpu/vega12_smc.bin +firmware: amdgpu/vega12_sos.bin +firmware: amdgpu/vega12_uvd.bin +firmware: amdgpu/vega12_vce.bin +firmware: amdgpu/vega20_asd.bin +firmware: amdgpu/vega20_ce.bin +firmware: amdgpu/vega20_me.bin +firmware: amdgpu/vega20_mec.bin +firmware: amdgpu/vega20_mec2.bin +firmware: amdgpu/vega20_pfp.bin +firmware: amdgpu/vega20_rlc.bin +firmware: amdgpu/vega20_sdma.bin +firmware: amdgpu/vega20_sdma1.bin +firmware: amdgpu/vega20_smc.bin +firmware: amdgpu/vega20_sos.bin +firmware: amdgpu/vega20_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: 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: 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_at76c502-wpa.bin +firmware: atmel_at76c502.bin +firmware: atmel_at76c502_3com-wpa.bin +firmware: atmel_at76c502_3com.bin +firmware: atmel_at76c502d-wpa.bin +firmware: atmel_at76c502d.bin +firmware: atmel_at76c502e-wpa.bin +firmware: atmel_at76c502e.bin +firmware: atmel_at76c503-i3861.bin +firmware: atmel_at76c503-i3863.bin +firmware: atmel_at76c503-rfmd-acc.bin +firmware: atmel_at76c503-rfmd.bin +firmware: atmel_at76c504-wpa.bin +firmware: atmel_at76c504.bin +firmware: atmel_at76c504_2958-wpa.bin +firmware: atmel_at76c504_2958.bin +firmware: atmel_at76c504a_2958-wpa.bin +firmware: atmel_at76c504a_2958.bin +firmware: atmel_at76c505-rfmd.bin +firmware: atmel_at76c505-rfmd2958.bin +firmware: atmel_at76c505a-rfmd2958.bin +firmware: atmel_at76c505amx-rfmd.bin +firmware: atmel_at76c506-wpa.bin +firmware: atmel_at76c506.bin +firmware: atmsar11.fw +firmware: atsc_denver.inp +firmware: av7110/bootcode.bin +firmware: b43/ucode11.fw +firmware: b43/ucode13.fw +firmware: b43/ucode14.fw +firmware: b43/ucode15.fw +firmware: b43/ucode16_lp.fw +firmware: b43/ucode16_mimo.fw +firmware: b43/ucode24_lcn.fw +firmware: b43/ucode25_lcn.fw +firmware: b43/ucode25_mimo.fw +firmware: b43/ucode26_mimo.fw +firmware: b43/ucode29_mimo.fw +firmware: b43/ucode30_mimo.fw +firmware: b43/ucode33_lcn40.fw +firmware: b43/ucode40.fw +firmware: b43/ucode42.fw +firmware: b43/ucode5.fw +firmware: b43/ucode9.fw +firmware: b43legacy/ucode2.fw +firmware: b43legacy/ucode4.fw +firmware: bfubase.frm +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.13.11.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.11.0.fw +firmware: bnx2x/bnx2x-e2-7.13.11.0.fw +firmware: brcm/bcm43xx-0.fw +firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac43012-sdio.bin +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/brcmfmac43430a0-sdio.bin +firmware: brcm/brcmfmac43455-sdio.bin +firmware: brcm/brcmfmac43456-sdio.bin +firmware: brcm/brcmfmac4350-pcie.bin +firmware: brcm/brcmfmac4350c2-pcie.bin +firmware: brcm/brcmfmac4354-sdio.bin +firmware: brcm/brcmfmac4356-pcie.bin +firmware: brcm/brcmfmac4356-sdio.bin +firmware: brcm/brcmfmac43569.bin +firmware: brcm/brcmfmac43570-pcie.bin +firmware: brcm/brcmfmac4358-pcie.bin +firmware: brcm/brcmfmac4359-pcie.bin +firmware: brcm/brcmfmac43602-pcie.bin +firmware: brcm/brcmfmac4365b-pcie.bin +firmware: brcm/brcmfmac4365c-pcie.bin +firmware: brcm/brcmfmac4366b-pcie.bin +firmware: brcm/brcmfmac4366c-pcie.bin +firmware: brcm/brcmfmac4371-pcie.bin +firmware: brcm/brcmfmac4373-sdio.bin +firmware: brcm/brcmfmac4373.bin +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: carl9170-1.fw +firmware: cavium/cnn55xx_se.fw +firmware: cbfw-3.2.5.1.bin +firmware: cis/3CCFEM556.cis +firmware: cis/3CXEM556.cis +firmware: cis/COMpad2.cis +firmware: cis/COMpad4.cis +firmware: cis/DP83903.cis +firmware: cis/LA-PCM.cis +firmware: cis/MT5634ZLX.cis +firmware: cis/NE2K.cis +firmware: cis/PCMLM28.cis +firmware: cis/PE-200.cis +firmware: cis/PE520.cis +firmware: cis/RS-COM-2P.cis +firmware: cis/SW_555_SER.cis +firmware: cis/SW_7xx_SER.cis +firmware: cis/SW_8xx_SER.cis +firmware: cis/tamarack.cis +firmware: cmmb_ming_app.inp +firmware: cmmb_vega_12mhz.inp +firmware: cmmb_venice_12mhz.inp +firmware: comedi/jr3pci.idm +firmware: cp204unx.cod +firmware: cpia2/stv0672_vp4.bin +firmware: cs46xx/cwc4630 +firmware: cs46xx/cwcasync +firmware: cs46xx/cwcbinhack +firmware: cs46xx/cwcdma +firmware: cs46xx/cwcsnoop +firmware: ct2fw-3.2.5.1.bin +firmware: ctefx-desktop.bin +firmware: ctefx-r3di.bin +firmware: ctefx.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: cyzfirm.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-m88rs6000.fw +firmware: dvb-demod-mn88472-02.fw +firmware: dvb-demod-mn88473-01.fw +firmware: dvb-demod-si2165.fw +firmware: dvb-demod-si2168-a20-01.fw +firmware: dvb-demod-si2168-a30-01.fw +firmware: dvb-demod-si2168-b40-01.fw +firmware: dvb-demod-si2168-d60-01.fw +firmware: dvb-fe-af9013.fw +firmware: dvb-fe-cx24117.fw +firmware: dvb-fe-drxj-mc-1.0.8.fw +firmware: dvb-fe-ds3000.fw +firmware: dvb-fe-tda10071.fw +firmware: dvb-fe-xc4000-1.4.1.fw +firmware: dvb-fe-xc4000-1.4.fw +firmware: dvb-fe-xc5000-1.6.114.fw +firmware: dvb-fe-xc5000c-4.1.30.7.fw +firmware: dvb-tuner-si2141-a10-01.fw +firmware: dvb-tuner-si2157-a30-01.fw +firmware: dvb-tuner-si2158-a20-01.fw +firmware: dvb-usb-af9015.fw +firmware: dvb-usb-af9035-02.fw +firmware: dvb-usb-dib0700-1.20.fw +firmware: dvb-usb-dw2101.fw +firmware: dvb-usb-dw2102.fw +firmware: dvb-usb-dw2104.fw +firmware: dvb-usb-dw3101.fw +firmware: dvb-usb-ec168.fw +firmware: dvb-usb-it9135-01.fw +firmware: dvb-usb-it9135-02.fw +firmware: dvb-usb-it9303-01.fw +firmware: dvb-usb-lme2510-lg.fw +firmware: dvb-usb-lme2510-s0194.fw +firmware: dvb-usb-lme2510c-lg.fw +firmware: dvb-usb-lme2510c-rs2000.fw +firmware: dvb-usb-lme2510c-s0194.fw +firmware: dvb-usb-lme2510c-s7395.fw +firmware: dvb-usb-p1100.fw +firmware: dvb-usb-p7500.fw +firmware: dvb-usb-s630.fw +firmware: dvb-usb-s660.fw +firmware: dvb-usb-terratec-h7-az6007.fw +firmware: dvb_nova_12mhz.inp +firmware: dvb_nova_12mhz_b0.inp +firmware: dvb_rio.inp +firmware: dvbh_rio.inp +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: ea/3g_asic.fw +firmware: ea/darla20_dsp.fw +firmware: ea/darla24_dsp.fw +firmware: ea/echo3g_dsp.fw +firmware: ea/gina20_dsp.fw +firmware: ea/gina24_301_asic.fw +firmware: ea/gina24_301_dsp.fw +firmware: ea/gina24_361_asic.fw +firmware: ea/gina24_361_dsp.fw +firmware: ea/indigo_dj_dsp.fw +firmware: ea/indigo_djx_dsp.fw +firmware: ea/indigo_dsp.fw +firmware: ea/indigo_io_dsp.fw +firmware: ea/indigo_iox_dsp.fw +firmware: ea/layla20_asic.fw +firmware: ea/layla20_dsp.fw +firmware: ea/layla24_1_asic.fw +firmware: ea/layla24_2A_asic.fw +firmware: ea/layla24_2S_asic.fw +firmware: ea/layla24_dsp.fw +firmware: ea/loader_dsp.fw +firmware: ea/mia_dsp.fw +firmware: ea/mona_2_asic.fw +firmware: ea/mona_301_1_asic_48.fw +firmware: ea/mona_301_1_asic_96.fw +firmware: ea/mona_301_dsp.fw +firmware: ea/mona_361_1_asic_48.fw +firmware: ea/mona_361_1_asic_96.fw +firmware: ea/mona_361_dsp.fw +firmware: edgeport/boot.fw +firmware: edgeport/boot2.fw +firmware: edgeport/down.fw +firmware: edgeport/down2.fw +firmware: edgeport/down3.bin +firmware: emi26/bitstream.fw +firmware: emi26/firmware.fw +firmware: emi26/loader.fw +firmware: emi62/bitstream.fw +firmware: emi62/loader.fw +firmware: emi62/spdif.fw +firmware: emu/audio_dock.fw +firmware: emu/emu0404.fw +firmware: emu/emu1010_notebook.fw +firmware: emu/emu1010b.fw +firmware: emu/hana.fw +firmware: emu/micro_dock.fw +firmware: ene-ub6250/ms_init.bin +firmware: ene-ub6250/ms_rdwr.bin +firmware: ene-ub6250/msp_rdwr.bin +firmware: ene-ub6250/sd_init1.bin +firmware: ene-ub6250/sd_init2.bin +firmware: ene-ub6250/sd_rdwr.bin +firmware: ess/maestro3_assp_kernel.fw +firmware: ess/maestro3_assp_minisrc.fw +firmware: f2255usb.bin +firmware: fm_radio.inp +firmware: fm_radio_rio.inp +firmware: fw.ram.bin +firmware: go7007/go7007fw.bin +firmware: go7007/go7007tv.bin +firmware: go7007/lr192.fw +firmware: go7007/px-m402u.fw +firmware: go7007/px-tv402u.fw +firmware: go7007/s2250-1.fw +firmware: go7007/s2250-2.fw +firmware: go7007/wis-startrek.fw +firmware: hfi1_dc8051.fw +firmware: hfi1_fabric.fw +firmware: hfi1_pcie.fw +firmware: hfi1_sbus.fw +firmware: i1480-phy-0.0.bin +firmware: i1480-pre-phy-0.0.bin +firmware: i1480-usb-0.0.bin +firmware: i2400m-fw-usb-1.5.sbcf +firmware: i6050-fw-usb-1.5.sbcf +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_33.0.0.bin +firmware: i915/bxt_huc_ver01_8_2893.bin +firmware: i915/cnl_dmc_ver1_07.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_33.0.0.bin +firmware: i915/glk_huc_ver03_01_2893.bin +firmware: i915/icl_dmc_ver1_07.bin +firmware: i915/icl_guc_33.0.0.bin +firmware: i915/icl_huc_ver8_4_3238.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_33.0.0.bin +firmware: i915/kbl_huc_ver02_00_1810.bin +firmware: i915/skl_dmc_ver1_27.bin +firmware: i915/skl_guc_33.0.0.bin +firmware: i915/skl_huc_ver01_07_1398.bin +firmware: i915/tgl_dmc_ver2_04.bin +firmware: icom_asc.bin +firmware: icom_call_setup.bin +firmware: icom_res_dce.bin +firmware: imx/sdma/sdma-imx6q.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: intel/ibt-11-5.ddc +firmware: intel/ibt-11-5.sfi +firmware: intel/ibt-12-16.ddc +firmware: intel/ibt-12-16.sfi +firmware: intel/ice/ddp/ice.pkg +firmware: ipw2100-1.3-i.fw +firmware: ipw2100-1.3-p.fw +firmware: ipw2100-1.3.fw +firmware: ipw2200-bss.fw +firmware: ipw2200-ibss.fw +firmware: ipw2200-sniffer.fw +firmware: isci/isci_firmware.bin +firmware: isdbt_nova_12mhz.inp +firmware: isdbt_nova_12mhz_b0.inp +firmware: isdbt_pele.inp +firmware: isdbt_rio.inp +firmware: isdn/ISAR.BIN +firmware: isi4608.bin +firmware: isi4616.bin +firmware: isi608.bin +firmware: isi608em.bin +firmware: isi616em.bin +firmware: isight.fw +firmware: isl3886pci +firmware: isl3886usb +firmware: isl3887usb +firmware: iwlwifi-100-5.ucode +firmware: iwlwifi-1000-5.ucode +firmware: iwlwifi-105-6.ucode +firmware: iwlwifi-135-6.ucode +firmware: iwlwifi-2000-6.ucode +firmware: iwlwifi-2030-6.ucode +firmware: iwlwifi-3160-17.ucode +firmware: iwlwifi-3168-29.ucode +firmware: iwlwifi-3945-2.ucode +firmware: iwlwifi-4965-2.ucode +firmware: iwlwifi-5000-5.ucode +firmware: iwlwifi-5150-2.ucode +firmware: iwlwifi-6000-6.ucode +firmware: iwlwifi-6000g2a-6.ucode +firmware: iwlwifi-6000g2b-6.ucode +firmware: iwlwifi-6050-5.ucode +firmware: iwlwifi-7260-17.ucode +firmware: iwlwifi-7265-17.ucode +firmware: iwlwifi-7265D-29.ucode +firmware: iwlwifi-8000C-36.ucode +firmware: iwlwifi-8265-36.ucode +firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode +firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode +firmware: iwlwifi-Qu-a0-hr-a0-50.ucode +firmware: iwlwifi-Qu-a0-jf-b0-50.ucode +firmware: iwlwifi-Qu-b0-jf-b0-50.ucode +firmware: iwlwifi-Qu-c0-hr-b0-50.ucode +firmware: iwlwifi-QuQnj-a0-hr-a0-50.ucode +firmware: iwlwifi-QuQnj-b0-hr-b0-50.ucode +firmware: iwlwifi-QuQnj-b0-jf-b0-50.ucode +firmware: iwlwifi-QuQnj-f0-hr-a0-50.ucode +firmware: iwlwifi-QuZ-a0-hr-b0-50.ucode +firmware: iwlwifi-QuZ-a0-jf-b0-50.ucode +firmware: iwlwifi-cc-a0-50.ucode +firmware: iwlwifi-so-a0-gf-a0-50.ucode +firmware: iwlwifi-so-a0-hr-b0-50.ucode +firmware: iwlwifi-so-a0-jf-b0-50.ucode +firmware: iwlwifi-ty-a0-gf-a0-50.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/mt7610e.bin +firmware: mediatek/mt7610u.bin +firmware: mediatek/mt7615_cr4.bin +firmware: mediatek/mt7615_n9.bin +firmware: mediatek/mt7615_rom_patch.bin +firmware: mediatek/mt7622pr2h.bin +firmware: mediatek/mt7650e.bin +firmware: mediatek/mt7663pr2h.bin +firmware: mediatek/mt7668pr2h.bin +firmware: mellanox/mlxsw_spectrum-13.2000.1886.mfa2 +firmware: mixart/miXart8.elf +firmware: mixart/miXart8.xlx +firmware: mixart/miXart8AES.xlx +firmware: moxa/moxa-1110.fw +firmware: moxa/moxa-1130.fw +firmware: moxa/moxa-1131.fw +firmware: moxa/moxa-1150.fw +firmware: moxa/moxa-1151.fw +firmware: mrvl/sd8688.bin +firmware: mrvl/sd8688_helper.bin +firmware: mrvl/sd8786_uapsta.bin +firmware: mrvl/sd8787_uapsta.bin +firmware: mrvl/sd8797_uapsta.bin +firmware: mrvl/sd8887_uapsta.bin +firmware: mrvl/sd8897_uapsta.bin +firmware: mrvl/sd8987_uapsta.bin +firmware: mrvl/sdsd8977_combo_v2.bin +firmware: mrvl/sdsd8997_combo_v4.bin +firmware: mrvl/usb8766_uapsta.bin +firmware: mrvl/usb8797_uapsta.bin +firmware: mrvl/usb8801_uapsta.bin +firmware: mrvl/usbusb8997_combo_v4.bin +firmware: mt7601u.bin +firmware: mt7603_e1.bin +firmware: mt7603_e2.bin +firmware: mt7628_e1.bin +firmware: mt7628_e2.bin +firmware: mt7662.bin +firmware: mt7662_rom_patch.bin +firmware: mts_cdma.fw +firmware: mts_edge.fw +firmware: mts_gsm.fw +firmware: mts_mt9234mu.fw +firmware: mts_mt9234zba.fw +firmware: multiface_firmware.bin +firmware: multiface_firmware_rev11.bin +firmware: mwl8k/fmimage_8363.fw +firmware: mwl8k/fmimage_8366.fw +firmware: mwl8k/fmimage_8366_ap-3.fw +firmware: mwl8k/fmimage_8687.fw +firmware: mwl8k/helper_8363.fw +firmware: mwl8k/helper_8366.fw +firmware: mwl8k/helper_8687.fw +firmware: myri10ge_eth_z8e.dat +firmware: myri10ge_ethp_z8e.dat +firmware: myri10ge_rss_eth_z8e.dat +firmware: myri10ge_rss_ethp_z8e.dat +firmware: netronome/nic_AMDA0058-0011_2x40.nffw +firmware: netronome/nic_AMDA0058-0012_2x40.nffw +firmware: netronome/nic_AMDA0081-0001_1x40.nffw +firmware: netronome/nic_AMDA0081-0001_4x10.nffw +firmware: netronome/nic_AMDA0096-0001_2x10.nffw +firmware: netronome/nic_AMDA0097-0001_2x40.nffw +firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw +firmware: netronome/nic_AMDA0097-0001_8x10.nffw +firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw +firmware: netronome/nic_AMDA0099-0001_2x10.nffw +firmware: netronome/nic_AMDA0099-0001_2x25.nffw +firmware: ni6534a.bin +firmware: niscrb01.bin +firmware: niscrb02.bin +firmware: nvidia/gk20a/fecs_data.bin +firmware: nvidia/gk20a/fecs_inst.bin +firmware: nvidia/gk20a/gpccs_data.bin +firmware: nvidia/gk20a/gpccs_inst.bin +firmware: nvidia/gk20a/sw_bundle_init.bin +firmware: nvidia/gk20a/sw_ctx.bin +firmware: nvidia/gk20a/sw_method_init.bin +firmware: nvidia/gk20a/sw_nonctx.bin +firmware: nvidia/gm200/acr/bl.bin +firmware: nvidia/gm200/acr/ucode_load.bin +firmware: nvidia/gm200/acr/ucode_unload.bin +firmware: nvidia/gm200/gr/fecs_bl.bin +firmware: nvidia/gm200/gr/fecs_data.bin +firmware: nvidia/gm200/gr/fecs_inst.bin +firmware: nvidia/gm200/gr/fecs_sig.bin +firmware: nvidia/gm200/gr/gpccs_bl.bin +firmware: nvidia/gm200/gr/gpccs_data.bin +firmware: nvidia/gm200/gr/gpccs_inst.bin +firmware: nvidia/gm200/gr/gpccs_sig.bin +firmware: nvidia/gm200/gr/sw_bundle_init.bin +firmware: nvidia/gm200/gr/sw_ctx.bin +firmware: nvidia/gm200/gr/sw_method_init.bin +firmware: nvidia/gm200/gr/sw_nonctx.bin +firmware: nvidia/gm204/acr/bl.bin +firmware: nvidia/gm204/acr/ucode_load.bin +firmware: nvidia/gm204/acr/ucode_unload.bin +firmware: nvidia/gm204/gr/fecs_bl.bin +firmware: nvidia/gm204/gr/fecs_data.bin +firmware: nvidia/gm204/gr/fecs_inst.bin +firmware: nvidia/gm204/gr/fecs_sig.bin +firmware: nvidia/gm204/gr/gpccs_bl.bin +firmware: nvidia/gm204/gr/gpccs_data.bin +firmware: nvidia/gm204/gr/gpccs_inst.bin +firmware: nvidia/gm204/gr/gpccs_sig.bin +firmware: nvidia/gm204/gr/sw_bundle_init.bin +firmware: nvidia/gm204/gr/sw_ctx.bin +firmware: nvidia/gm204/gr/sw_method_init.bin +firmware: nvidia/gm204/gr/sw_nonctx.bin +firmware: nvidia/gm206/acr/bl.bin +firmware: nvidia/gm206/acr/ucode_load.bin +firmware: nvidia/gm206/acr/ucode_unload.bin +firmware: nvidia/gm206/gr/fecs_bl.bin +firmware: nvidia/gm206/gr/fecs_data.bin +firmware: nvidia/gm206/gr/fecs_inst.bin +firmware: nvidia/gm206/gr/fecs_sig.bin +firmware: nvidia/gm206/gr/gpccs_bl.bin +firmware: nvidia/gm206/gr/gpccs_data.bin +firmware: nvidia/gm206/gr/gpccs_inst.bin +firmware: nvidia/gm206/gr/gpccs_sig.bin +firmware: nvidia/gm206/gr/sw_bundle_init.bin +firmware: nvidia/gm206/gr/sw_ctx.bin +firmware: nvidia/gm206/gr/sw_method_init.bin +firmware: nvidia/gm206/gr/sw_nonctx.bin +firmware: nvidia/gp100/acr/bl.bin +firmware: nvidia/gp100/acr/ucode_load.bin +firmware: nvidia/gp100/acr/ucode_unload.bin +firmware: nvidia/gp100/gr/fecs_bl.bin +firmware: nvidia/gp100/gr/fecs_data.bin +firmware: nvidia/gp100/gr/fecs_inst.bin +firmware: nvidia/gp100/gr/fecs_sig.bin +firmware: nvidia/gp100/gr/gpccs_bl.bin +firmware: nvidia/gp100/gr/gpccs_data.bin +firmware: nvidia/gp100/gr/gpccs_inst.bin +firmware: nvidia/gp100/gr/gpccs_sig.bin +firmware: nvidia/gp100/gr/sw_bundle_init.bin +firmware: nvidia/gp100/gr/sw_ctx.bin +firmware: nvidia/gp100/gr/sw_method_init.bin +firmware: nvidia/gp100/gr/sw_nonctx.bin +firmware: nvidia/gp102/acr/bl.bin +firmware: nvidia/gp102/acr/ucode_load.bin +firmware: nvidia/gp102/acr/ucode_unload.bin +firmware: nvidia/gp102/acr/unload_bl.bin +firmware: nvidia/gp102/gr/fecs_bl.bin +firmware: nvidia/gp102/gr/fecs_data.bin +firmware: nvidia/gp102/gr/fecs_inst.bin +firmware: nvidia/gp102/gr/fecs_sig.bin +firmware: nvidia/gp102/gr/gpccs_bl.bin +firmware: nvidia/gp102/gr/gpccs_data.bin +firmware: nvidia/gp102/gr/gpccs_inst.bin +firmware: nvidia/gp102/gr/gpccs_sig.bin +firmware: nvidia/gp102/gr/sw_bundle_init.bin +firmware: nvidia/gp102/gr/sw_ctx.bin +firmware: nvidia/gp102/gr/sw_method_init.bin +firmware: nvidia/gp102/gr/sw_nonctx.bin +firmware: nvidia/gp102/nvdec/scrubber.bin +firmware: nvidia/gp102/sec2/desc-1.bin +firmware: nvidia/gp102/sec2/desc.bin +firmware: nvidia/gp102/sec2/image-1.bin +firmware: nvidia/gp102/sec2/image.bin +firmware: nvidia/gp102/sec2/sig-1.bin +firmware: nvidia/gp102/sec2/sig.bin +firmware: nvidia/gp104/acr/bl.bin +firmware: nvidia/gp104/acr/ucode_load.bin +firmware: nvidia/gp104/acr/ucode_unload.bin +firmware: nvidia/gp104/acr/unload_bl.bin +firmware: nvidia/gp104/gr/fecs_bl.bin +firmware: nvidia/gp104/gr/fecs_data.bin +firmware: nvidia/gp104/gr/fecs_inst.bin +firmware: nvidia/gp104/gr/fecs_sig.bin +firmware: nvidia/gp104/gr/gpccs_bl.bin +firmware: nvidia/gp104/gr/gpccs_data.bin +firmware: nvidia/gp104/gr/gpccs_inst.bin +firmware: nvidia/gp104/gr/gpccs_sig.bin +firmware: nvidia/gp104/gr/sw_bundle_init.bin +firmware: nvidia/gp104/gr/sw_ctx.bin +firmware: nvidia/gp104/gr/sw_method_init.bin +firmware: nvidia/gp104/gr/sw_nonctx.bin +firmware: nvidia/gp104/nvdec/scrubber.bin +firmware: nvidia/gp104/sec2/desc-1.bin +firmware: nvidia/gp104/sec2/desc.bin +firmware: nvidia/gp104/sec2/image-1.bin +firmware: nvidia/gp104/sec2/image.bin +firmware: nvidia/gp104/sec2/sig-1.bin +firmware: nvidia/gp104/sec2/sig.bin +firmware: nvidia/gp106/acr/bl.bin +firmware: nvidia/gp106/acr/ucode_load.bin +firmware: nvidia/gp106/acr/ucode_unload.bin +firmware: nvidia/gp106/acr/unload_bl.bin +firmware: nvidia/gp106/gr/fecs_bl.bin +firmware: nvidia/gp106/gr/fecs_data.bin +firmware: nvidia/gp106/gr/fecs_inst.bin +firmware: nvidia/gp106/gr/fecs_sig.bin +firmware: nvidia/gp106/gr/gpccs_bl.bin +firmware: nvidia/gp106/gr/gpccs_data.bin +firmware: nvidia/gp106/gr/gpccs_inst.bin +firmware: nvidia/gp106/gr/gpccs_sig.bin +firmware: nvidia/gp106/gr/sw_bundle_init.bin +firmware: nvidia/gp106/gr/sw_ctx.bin +firmware: nvidia/gp106/gr/sw_method_init.bin +firmware: nvidia/gp106/gr/sw_nonctx.bin +firmware: nvidia/gp106/nvdec/scrubber.bin +firmware: nvidia/gp106/sec2/desc-1.bin +firmware: nvidia/gp106/sec2/desc.bin +firmware: nvidia/gp106/sec2/image-1.bin +firmware: nvidia/gp106/sec2/image.bin +firmware: nvidia/gp106/sec2/sig-1.bin +firmware: nvidia/gp106/sec2/sig.bin +firmware: nvidia/gp107/acr/bl.bin +firmware: nvidia/gp107/acr/ucode_load.bin +firmware: nvidia/gp107/acr/ucode_unload.bin +firmware: nvidia/gp107/acr/unload_bl.bin +firmware: nvidia/gp107/gr/fecs_bl.bin +firmware: nvidia/gp107/gr/fecs_data.bin +firmware: nvidia/gp107/gr/fecs_inst.bin +firmware: nvidia/gp107/gr/fecs_sig.bin +firmware: nvidia/gp107/gr/gpccs_bl.bin +firmware: nvidia/gp107/gr/gpccs_data.bin +firmware: nvidia/gp107/gr/gpccs_inst.bin +firmware: nvidia/gp107/gr/gpccs_sig.bin +firmware: nvidia/gp107/gr/sw_bundle_init.bin +firmware: nvidia/gp107/gr/sw_ctx.bin +firmware: nvidia/gp107/gr/sw_method_init.bin +firmware: nvidia/gp107/gr/sw_nonctx.bin +firmware: nvidia/gp107/nvdec/scrubber.bin +firmware: nvidia/gp107/sec2/desc-1.bin +firmware: nvidia/gp107/sec2/desc.bin +firmware: nvidia/gp107/sec2/image-1.bin +firmware: nvidia/gp107/sec2/image.bin +firmware: nvidia/gp107/sec2/sig-1.bin +firmware: nvidia/gp107/sec2/sig.bin +firmware: nvidia/gp108/acr/bl.bin +firmware: nvidia/gp108/acr/ucode_load.bin +firmware: nvidia/gp108/acr/ucode_unload.bin +firmware: nvidia/gp108/acr/unload_bl.bin +firmware: nvidia/gp108/gr/fecs_bl.bin +firmware: nvidia/gp108/gr/fecs_data.bin +firmware: nvidia/gp108/gr/fecs_inst.bin +firmware: nvidia/gp108/gr/fecs_sig.bin +firmware: nvidia/gp108/gr/gpccs_bl.bin +firmware: nvidia/gp108/gr/gpccs_data.bin +firmware: nvidia/gp108/gr/gpccs_inst.bin +firmware: nvidia/gp108/gr/gpccs_sig.bin +firmware: nvidia/gp108/gr/sw_bundle_init.bin +firmware: nvidia/gp108/gr/sw_ctx.bin +firmware: nvidia/gp108/gr/sw_method_init.bin +firmware: nvidia/gp108/gr/sw_nonctx.bin +firmware: nvidia/gp108/nvdec/scrubber.bin +firmware: nvidia/gp108/sec2/desc.bin +firmware: nvidia/gp108/sec2/image.bin +firmware: nvidia/gp108/sec2/sig.bin +firmware: nvidia/gv100/acr/bl.bin +firmware: nvidia/gv100/acr/ucode_load.bin +firmware: nvidia/gv100/acr/ucode_unload.bin +firmware: nvidia/gv100/acr/unload_bl.bin +firmware: nvidia/gv100/gr/fecs_bl.bin +firmware: nvidia/gv100/gr/fecs_data.bin +firmware: nvidia/gv100/gr/fecs_inst.bin +firmware: nvidia/gv100/gr/fecs_sig.bin +firmware: nvidia/gv100/gr/gpccs_bl.bin +firmware: nvidia/gv100/gr/gpccs_data.bin +firmware: nvidia/gv100/gr/gpccs_inst.bin +firmware: nvidia/gv100/gr/gpccs_sig.bin +firmware: nvidia/gv100/gr/sw_bundle_init.bin +firmware: nvidia/gv100/gr/sw_ctx.bin +firmware: nvidia/gv100/gr/sw_method_init.bin +firmware: nvidia/gv100/gr/sw_nonctx.bin +firmware: nvidia/gv100/nvdec/scrubber.bin +firmware: nvidia/gv100/sec2/desc.bin +firmware: nvidia/gv100/sec2/image.bin +firmware: nvidia/gv100/sec2/sig.bin +firmware: nvidia/tegra124/vic03_ucode.bin +firmware: nvidia/tegra124/xusb.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra210/xusb.bin +firmware: orinoco_ezusb_fw +firmware: ositech/Xilinx7OD.bin +firmware: pca200e.bin +firmware: pca200e_ecd.bin2 +firmware: pcxhr/dspb1222e.b56 +firmware: pcxhr/dspb1222hr.b56 +firmware: pcxhr/dspb882e.b56 +firmware: pcxhr/dspb882hr.b56 +firmware: pcxhr/dspb924.b56 +firmware: pcxhr/dspd1222.d56 +firmware: pcxhr/dspd222.d56 +firmware: pcxhr/dspd882.d56 +firmware: pcxhr/dspe882.e56 +firmware: pcxhr/dspe924.e56 +firmware: pcxhr/xlxc1222e.dat +firmware: pcxhr/xlxc1222hr.dat +firmware: pcxhr/xlxc222.dat +firmware: pcxhr/xlxc882e.dat +firmware: pcxhr/xlxc882hr.dat +firmware: pcxhr/xlxc924.dat +firmware: pcxhr/xlxint.dat +firmware: phanfw.bin +firmware: prism2_ru.fw +firmware: prism_ap_fw.bin +firmware: prism_sta_fw.bin +firmware: qat_895xcc.bin +firmware: qat_895xcc_mmp.bin +firmware: qat_c3xxx.bin +firmware: qat_c3xxx_mmp.bin +firmware: qat_c62x.bin +firmware: qat_c62x_mmp.bin +firmware: qcom/a300_pfp.fw +firmware: qcom/a300_pm4.fw +firmware: qcom/a330_pfp.fw +firmware: qcom/a330_pm4.fw +firmware: qcom/a420_pfp.fw +firmware: qcom/a420_pm4.fw +firmware: qcom/a530_pfp.fw +firmware: qcom/a530_pm4.fw +firmware: qcom/a530_zap.b00 +firmware: qcom/a530_zap.b01 +firmware: qcom/a530_zap.b02 +firmware: qcom/a530_zap.mdt +firmware: qcom/a530v3_gpmu.fw2 +firmware: qcom/a630_gmu.bin +firmware: qcom/a630_sqe.fw +firmware: qcom/a630_zap.mbn +firmware: qed/qed_init_values_zipped-8.37.7.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: riptide.hex +firmware: rp2.fw +firmware: rpm_firmware.bin +firmware: rs9113_wlan_qspi.rps +firmware: rt2561.bin +firmware: rt2561s.bin +firmware: rt2661.bin +firmware: rt2860.bin +firmware: rt2870.bin +firmware: rt73.bin +firmware: rtl_bt/rtl8723a_fw.bin +firmware: rtl_bt/rtl8723b_config.bin +firmware: rtl_bt/rtl8723b_fw.bin +firmware: rtl_bt/rtl8723bs_config.bin +firmware: rtl_bt/rtl8723bs_fw.bin +firmware: rtl_bt/rtl8723ds_config.bin +firmware: rtl_bt/rtl8723ds_fw.bin +firmware: rtl_bt/rtl8761a_config.bin +firmware: rtl_bt/rtl8761a_fw.bin +firmware: rtl_bt/rtl8821a_config.bin +firmware: rtl_bt/rtl8821a_fw.bin +firmware: rtl_bt/rtl8822b_config.bin +firmware: rtl_bt/rtl8822b_fw.bin +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8125a-3.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168fp-3.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: rtlwifi/rtl8188efw.bin +firmware: rtlwifi/rtl8188eufw.bin +firmware: rtlwifi/rtl8192cfw.bin +firmware: rtlwifi/rtl8192cfwU.bin +firmware: rtlwifi/rtl8192cfwU_B.bin +firmware: rtlwifi/rtl8192cufw.bin +firmware: rtlwifi/rtl8192cufw_A.bin +firmware: rtlwifi/rtl8192cufw_B.bin +firmware: rtlwifi/rtl8192cufw_TMSC.bin +firmware: rtlwifi/rtl8192defw.bin +firmware: rtlwifi/rtl8192eefw.bin +firmware: rtlwifi/rtl8192eu_nic.bin +firmware: rtlwifi/rtl8192sefw.bin +firmware: rtlwifi/rtl8712u.bin +firmware: rtlwifi/rtl8723aufw_A.bin +firmware: rtlwifi/rtl8723aufw_B.bin +firmware: rtlwifi/rtl8723aufw_B_NoBT.bin +firmware: rtlwifi/rtl8723befw.bin +firmware: rtlwifi/rtl8723befw_36.bin +firmware: rtlwifi/rtl8723bu_bt.bin +firmware: rtlwifi/rtl8723bu_nic.bin +firmware: rtlwifi/rtl8723efw.bin +firmware: rtlwifi/rtl8821aefw.bin +firmware: rtlwifi/rtl8821aefw_29.bin +firmware: rtw88/rtw8723d_fw.bin +firmware: rtw88/rtw8822b_fw.bin +firmware: rtw88/rtw8822c_fw.bin +firmware: rtw88/rtw8822c_wow_fw.bin +firmware: s5k4ecgx.bin +firmware: sd8385.bin +firmware: sd8385_helper.bin +firmware: sd8686.bin +firmware: sd8686_helper.bin +firmware: sd8688.bin +firmware: sd8688_helper.bin +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: sms1xxx-hcw-55xxx-dvbt-02.fw +firmware: sms1xxx-hcw-55xxx-isdbt-02.fw +firmware: sms1xxx-nova-a-dvbt-01.fw +firmware: sms1xxx-nova-b-dvbt-01.fw +firmware: sms1xxx-stellar-dvbt-01.fw +firmware: softing-4.6/bcard.bin +firmware: softing-4.6/bcard2.bin +firmware: softing-4.6/cancard.bin +firmware: softing-4.6/cancrd2.bin +firmware: softing-4.6/cansja.bin +firmware: softing-4.6/ldcard.bin +firmware: softing-4.6/ldcard2.bin +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: sun/cassini.bin +firmware: symbol_sp24t_prim_fw +firmware: symbol_sp24t_sec_fw +firmware: tdmb_denver.inp +firmware: tdmb_nova_12mhz.inp +firmware: tdmb_nova_12mhz_b0.inp +firmware: tehuti/bdx.bin +firmware: ti-connectivity/wl1251-fw.bin +firmware: ti-connectivity/wl1251-nvs.bin +firmware: ti-connectivity/wl127x-fw-5-mr.bin +firmware: ti-connectivity/wl127x-fw-5-plt.bin +firmware: ti-connectivity/wl127x-fw-5-sr.bin +firmware: ti-connectivity/wl128x-fw-5-mr.bin +firmware: ti-connectivity/wl128x-fw-5-plt.bin +firmware: ti-connectivity/wl128x-fw-5-sr.bin +firmware: ti-connectivity/wl18xx-fw-4.bin +firmware: ti_3410.fw +firmware: ti_5052.fw +firmware: tigon/tg3.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: ttusb-budget/dspbootcode.bin +firmware: ueagle-atm/930-fpga.bin +firmware: ueagle-atm/CMV4i.bin +firmware: ueagle-atm/CMV4i.bin.v2 +firmware: ueagle-atm/CMV4p.bin +firmware: ueagle-atm/CMV4p.bin.v2 +firmware: ueagle-atm/CMV9i.bin +firmware: ueagle-atm/CMV9i.bin.v2 +firmware: ueagle-atm/CMV9p.bin +firmware: ueagle-atm/CMV9p.bin.v2 +firmware: ueagle-atm/CMVei.bin +firmware: ueagle-atm/CMVei.bin.v2 +firmware: ueagle-atm/CMVep.bin +firmware: ueagle-atm/CMVep.bin.v2 +firmware: ueagle-atm/DSP4i.bin +firmware: ueagle-atm/DSP4p.bin +firmware: ueagle-atm/DSP9i.bin +firmware: ueagle-atm/DSP9p.bin +firmware: ueagle-atm/DSPei.bin +firmware: ueagle-atm/DSPep.bin +firmware: ueagle-atm/adi930.fw +firmware: ueagle-atm/eagle.fw +firmware: ueagle-atm/eagleI.fw +firmware: ueagle-atm/eagleII.fw +firmware: ueagle-atm/eagleIII.fw +firmware: ueagle-atm/eagleIV.fw +firmware: usb8388.bin +firmware: usbdux_firmware.bin +firmware: usbduxfast_firmware.bin +firmware: usbduxsigma_firmware.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23418-apu.fw +firmware: v4l-cx23418-cpu.fw +firmware: v4l-cx23418-dig.fw +firmware: v4l-cx2341x-dec.fw +firmware: v4l-cx2341x-enc.fw +firmware: v4l-cx2341x-init.mpg +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx23885-enc.fw +firmware: v4l-cx25840.fw +firmware: v4l-pvrusb2-24xxx-01.fw +firmware: v4l-pvrusb2-29xxx-01.fw +firmware: v4l-pvrusb2-73xxx-01.fw +firmware: vicam/firmware.fw +firmware: vntwusb.fw +firmware: vpdma-1b8.bin +firmware: vx/bd56002.boot +firmware: vx/bd563s3.boot +firmware: vx/bd563v2.boot +firmware: vx/bx_1_vp4.b56 +firmware: vx/bx_1_vxp.b56 +firmware: vx/l_1_v22.d56 +firmware: vx/l_1_vp4.d56 +firmware: vx/l_1_vx2.d56 +firmware: vx/l_1_vxp.d56 +firmware: vx/x1_1_vp4.xlx +firmware: vx/x1_1_vx2.xlx +firmware: vx/x1_1_vxp.xlx +firmware: vx/x1_2_v22.xlx +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin +firmware: whiteheat.fw +firmware: whiteheat_loader.fw +firmware: wil6210.brd +firmware: wil6210.fw +firmware: wil6210_sparrow_plus.fw +firmware: wil6436.brd +firmware: wil6436.fw +firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin +firmware: xc3028-v27.fw +firmware: xc3028L-v36.fw +firmware: yam/1200.bin +firmware: yam/9600.bin +firmware: yamaha/ds1_ctrl.fw +firmware: yamaha/ds1_dsp.fw +firmware: yamaha/ds1e_ctrl.fw +firmware: zd1201-ap.fw +firmware: zd1201.fw +firmware: zd1211/zd1211_ub +firmware: zd1211/zd1211_uphr +firmware: zd1211/zd1211_ur +firmware: zd1211/zd1211b_ub +firmware: zd1211/zd1211b_uphr +firmware: zd1211/zd1211b_ur only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/ppc64el/generic +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/ppc64el/generic @@ -0,0 +1,22452 @@ +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/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x30e4d62d crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x67c91346 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x86eb9ed7 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x9931c313 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc117af2a crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xe6f2f96d crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x2c68183c crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x547a4fd3 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xf3dd6b2f crypto_sha3_final +EXPORT_SYMBOL crypto/sm3_generic 0x27f66a7e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xfcb64053 crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x45500a78 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xdb190159 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xfce19940 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 0x07436dd7 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x111c6d6e pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x1216b987 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x271229d2 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x484aa5f6 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x71eadb94 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x78dbbe62 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x883b0209 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x96525060 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x99e7190b pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xad1fb1a3 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc239d565 pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd91040d9 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xf92f6720 rsi_bt_ops +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 0x0b562f1e ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x97049435 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 0xcb5fe24a ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcc10b72d ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x08a24e8c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x331f3a2f st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4a7d29f5 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcb419d0a st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbca1bc00 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbf03a327 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdd283c7f xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0222b017 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0f471d27 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x87172728 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12586b0a fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x127a9658 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2695628b fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x26a98053 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2bef3e8b fw_iso_resource_manage +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 0x4587ff87 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49201d65 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f04d8cd fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x51cc4f0a fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x56f0105c fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x57137d60 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x60da8ab4 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x672d8d29 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d242536 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ea5f9a9 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x796b95c1 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8cb736c3 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x941c6d77 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb80062ca fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb57ec5f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd7e9e90b fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe2c6ed06 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe796768e fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefc4e771 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf985418d fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe25dae8 fw_run_transaction +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00832a21 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01310974 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0247f5d6 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x034ff175 drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x035d1145 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03be7b86 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d314a1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e6f7d4 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d48f0b drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c619d7 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d361e5 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08090eb0 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08265b53 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09881aa1 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f471a0 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aeef264 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b59bcd4 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7e8e68 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c2062d0 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d357392 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d95757f drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db5a4d7 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4871a2 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e77bc04 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb8d250 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef8d2bb drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1f6273 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7893ad drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa46897 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd47ca6 drm_plane_create_color_properties +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 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1104ced9 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1158f2da drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cb8461 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x120e8e7e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x122caa6f drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12386653 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1503a654 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a888e0 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1914748e drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f7cc8a drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a20934d drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1accdcb4 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b17b9c6 devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bcfa218 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c36d5d8 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5b8857 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc0c184 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce5addb drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf4b47f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e62886a drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ecbf72f drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f813968 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20783c74 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x218e6af3 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b6526c drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x236c8269 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x241d3c6b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a922b5 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c0360e drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25bebbfe drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2976a92d drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a392cc5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a852ba7 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6f61d0 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c700c47 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb15bf9 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1e1495 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3012e98c drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31600231 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32133d29 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cf21a8 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x357cab18 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a63af3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372f2abe drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x379250e7 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e0ceac drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e83d99 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39daf191 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c32b208 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d33b572 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e97a7bc drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9da245 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee57997 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f685e29 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ff4bb74 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4073304e drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4081171f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41234c18 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4237336e drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427f1a2f drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4324c958 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x433bb7b2 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370d5f2 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c73f1e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x451fd432 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x458173e9 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467a3c53 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46bea6c4 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x482a55b9 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a1d27f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f344d0 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab1ab94 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b600a14 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bee1904 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c918665 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccb38d9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2309d3 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e9733 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d942743 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1a3eee drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff81618 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x509ed291 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e69781 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512bf452 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x528baff0 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53aa6d47 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5493843a drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5514bf60 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5670b06e drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5895f5bd drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a327d6 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fbcb4f drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cc5891 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f9fe41 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a276bbb drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a55703a drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5e16c8 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7cec81 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deafff2 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e596acf drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e816267 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x628444d0 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62dbac06 drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63855832 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63bfa305 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x643542e4 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x650bf3d7 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6543e5f1 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x656aa6c4 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65764671 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f95173 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x697e83d9 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6984ade9 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69afc174 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d23e88 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f991e1 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a32e2a0 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8c4262 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aba2e94 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cf1b032 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d195242 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d51386c drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d95495e drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e003709 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e77c6c5 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e8ba0ea drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e90a881 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed74d31 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f1376c3 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d16872 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719220e0 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71fa74b6 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72449e94 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72569429 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d2fcf drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73463360 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757d2b30 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f5fbe1 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x788befcd drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f4d14b drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac43575 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aea6502 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6de4df drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be4c4ea drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c26128e drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5c4924 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0d98b5 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7daa743d drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7daba7ce drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5e7ac3 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ece45d6 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f155d10 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f317323 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8037a53c drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811dcf90 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x813cddc2 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82672d55 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x855786ff drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d213d2 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e3f6b8 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8879a579 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888ff056 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c62d67 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88edac62 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8944b38b drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8952ff9a drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d3bbf9 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd9d153 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c412970 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c7e97ab drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf2915d drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d49a91e drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddf943a drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb2b3f9 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc7066d drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x900dd237 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911b29b2 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c5be80 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91cad313 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x924b5838 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92909aa1 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee87b8 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932fc514 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x937787c1 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94572fb4 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c9df55 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9524c5dc drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ac12fb drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b9063e drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978a01e6 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986ef934 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a3f1c4 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f616b6 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4b99f6 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc8c42a drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c695848 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c7ab9fc drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9a9a84 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d38eb08 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dfe2fda drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e91677e drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb6f5b1 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eedf885 drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f153ac3 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bf4a1f drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa246a84e drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36a3e9f drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47299fe drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4cdafe3 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55b6e49 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b33ea3 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa623d93d drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa770a6c0 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b8473f drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dd78f3 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7de7b46 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa83bf32c drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa907669a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bf6a80 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab0b35a6 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4667c9 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad09953f of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad6c2675 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae317617 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae9fe288 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedf4745 drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf34776e drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff600bf drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04259f7 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ad96a4 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1291816 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb13dfc86 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb194cb35 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3833803 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387c752 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387f53b drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3e1e00c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb42b1d29 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb459406a drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4b6fa49 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4dcce1c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb520c10d drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65173cb drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb686663e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a2964d drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb71a759a drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7af0dd8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85c67c4 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb929a47c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba047d29 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0530bf drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc69e933 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6fea20 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe859240 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd26898 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbffd24fa drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05039ae drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15cb0cf drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26b0d0a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc338f6c0 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc37d0651 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc38b04f9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50756fe drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b00156 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a56219 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dfa02f drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc858c5bd drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc868478e drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9e38280 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3cdb88 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7df287 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca967d4c drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0d7ed3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb10f7b9 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb254036 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd246fd2 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3eb0ca drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee8d4d0 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7e1788 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfa0a949 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfab8b22 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd79c2e drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f1c78a __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11c4722 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2327c30 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3915da2 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47eabd7 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd55bd45b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd584d1a3 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64e6d95 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a3fcdb __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7238722 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd74f9b96 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8207079 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8599c11 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae1554e drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb3e3c7e drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb540ec9 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbec3287 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc231307 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc5339f drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0a2c9c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde13214 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde0f8edf drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef98682 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe135a5b5 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1405158 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19cf8a4 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1fe6332 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4676d2f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4730d0d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ed2eb3 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe547fd67 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe668b604 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe730fb6b drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81ce313 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe898618c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e2c5ba drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecea50c2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee68a6ce drm_cma_gem_create_object_default_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6956b9 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee951151 drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee97fe47 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeae2334 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3b3487 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3b41e6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefeb0521 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ae864a drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ba8e56 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e34a93 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24147a7 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ae1e2f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c6f84a drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406d6f3 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49bcde7 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e84a0d drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf970a740 drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa256204 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb97a5f9 drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8421d0 drm_agp_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfccc369b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd331633 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdeacba9 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec9a408 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x051f5ff8 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05741b3c drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x069cd0bd drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f2d8f5 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x096b0ca3 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f43692 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bbf3557 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cbae8af drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1aa8f1 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d7ddd8e drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e76de41 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f5f6430 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96e271 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d08d3a drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11f052bd drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134ac0c4 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1375f659 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13da1d98 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15db6ef9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16cc7339 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x171552cf drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17c86cda drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x189f148c drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e19354e drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea9c1aa drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20c1fcb9 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23bd5ae6 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24b114f5 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x260b215c drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28405550 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d1a51e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b3a4f21 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bf42ff5 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c1e1880 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c6d3745 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ce62a77 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d059768 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e13af16 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2efe3305 drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3212dbde __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34f0163f drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35438361 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3544fb70 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3907fb45 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a5ea950 drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7a2281 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3db4f284 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e61d72b drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e908c97 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e961c9c drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d7d742 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42607194 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c0d759 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43b5ffbe drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43ecc61d drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46177544 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c0d270 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48729888 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4932090c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c89c67 drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ae6885d drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b03da47 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ccd65e5 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd0ae14 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e635292 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e990be3 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec0ace1 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508241ba drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e4cc17 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5169f599 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x526e8ff5 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52772cf4 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53e55c3a drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x548d1247 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5492e1f2 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56c8fc78 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e762e4 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a45e051 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a768cfc drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5ba605 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ca0bab4 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e39f8dc drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb60f1b drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601d6217 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61598810 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x625718c5 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a40b4f drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6464e26e drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69b67634 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0d79cf drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afeda3d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d3bcf3a drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d84f673 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f1438b2 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71f3dd1e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73daa2d9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74892477 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74a3028b drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750b9298 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75435adb drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75e2fa96 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x788861dd drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x798ab845 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b02129f drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e613dc0 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5b9d8b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8090fdcb drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81488792 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814d649e drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x826b8aab drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8315bd5b drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8393831c __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x844480a5 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84b574df drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8560033a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86490812 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8689245d drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87259a46 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87ed04fe drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac381c5 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aed2152 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b0a4e6b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b81021e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d59d884 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff18fb5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90095fbe drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91229b88 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91cd41b5 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91f6febf drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93a113cf drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x981895f9 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9997f8ce drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99cdf744 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99eec7f9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cfc8feb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa043caa0 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2cf3239 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3133ac5 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa492174c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c60a60 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa768b022 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81dbebd drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab68f1a8 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea0800d drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb13178c6 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb226b15b drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb395ce4c drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52eb443 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67885d8 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb883ca68 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8bea038 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba51e37a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb64161d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbb0dbb2 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf1ecbb drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd27fc09 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2309bb7 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e0be70 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc802f0d2 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc817291b drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb8e4979 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc3e5f65 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd44d804 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd50901d drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd4c7f4 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd145ab67 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2694385 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2d51782 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2fb08ce drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd37de108 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb37844b drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde26171b drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33f5ec5 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4190ca9 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe42a2dbc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a75268 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a9fd8a drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7fbd15c __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8f0e3f8 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9c3896d drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea7300b5 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec44144e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed148ea8 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed5bf9fd drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd856c2 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9514af drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd1e088 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0162b73 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c962b2 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a28db6 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaba294b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe65b272 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe87074c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffe0baf5 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff6b817 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f917a92 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25bcf958 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2c0f36db mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2e722b55 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47c63e9e mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a225aae mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80874757 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9ceff916 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaa431d27 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb568e372 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc29783dc mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc7441608 mipi_dbi_release +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd0fd9d20 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd2c0ed5d mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd47f31ec mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd48eeb81 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe22b2664 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe77a663f mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0274b0cf drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x18fdefa2 drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x196c66e1 drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1b93ce5f drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x331b5ce6 drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x34bf50b3 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54989c75 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x57996021 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66c3df67 drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x85ca77db drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x96aea9d3 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9838c44f drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9e7dc645 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8e946b7 drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa910a383 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb6ced8c0 drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba97afd6 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd1e51211 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd8413717 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7d15376 drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08be3957 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x255295de drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x26b5b2c9 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x367c6607 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4b69baa4 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7126cec7 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79b506d9 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d2b79b4 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9087a745 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9eba6283 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa42c5af1 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa873019a drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad57a16e drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd3f106d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc6491d17 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca255d22 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7476b30 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef89c2a9 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf78a48c9 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x057e5a25 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x078e8112 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c2f0e6e ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f2e4867 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17c32860 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19bd208c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ea71e89 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21888faa ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2965fc48 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c0c216c ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f802d0a ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3168c5a6 ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3250b61c ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34d51b51 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37d6cc4f ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39debb91 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d0817a4 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x412b01be ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44d47373 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44fb8930 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4582c3fd ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46eb9e79 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51de4eff ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x535b5d13 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e47fbb4 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5eda3727 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69d86090 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a3065eb ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c291673 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70a69c89 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7234269e ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7240712c ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73e2b39b ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74b107bc ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8337eb99 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87c401cb ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88f2b8de ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96ab338b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f95e1e1 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0cfd263 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa85a56f8 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xadff65bf ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0629aca ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1447b83 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb184c08d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6e8a849 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7a2a78f ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2fd6af2 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc541891a ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8e848e3 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc933f719 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0f8c6ef ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1834636 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd60c5123 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd88d32cd ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0596a75 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe10ee4d4 ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe12181ba ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1e04233 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe30a10e4 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe83386c1 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf05808b6 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0fc22c2 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf367e2e6 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3726414 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf83e770e ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/hid/hid 0x796b4f75 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x188304c4 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5ee18f69 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfd5b7213 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x9a163f26 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc142abbc i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x0d35b15c amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x040de9a2 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9ccf64d7 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe7037e7d kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x02b5cf2f mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x16be6626 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x233835f4 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3d2d6b0e mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x45f26935 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5c5f6c56 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x64d9a75e mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6d57def3 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8430c9ee mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x885018fe mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa52dfa48 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb81971d9 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc109f9a5 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc580b684 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe601a2fe mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf497c252 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5ac1b547 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x866bc9c9 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8b934c71 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xcae36995 qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xf253ae31 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x46f4d23d iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc4bb5d9b iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x61a63f2a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb4e9751f iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb632f27a devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbe56b483 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x5a5a20bd bme680_regmap_config +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x16bfd19b hid_sensor_get_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x1d5898a6 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7f7621ec hid_sensor_format_scale +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x800574b1 hid_sensor_batch_mode_supported +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa6d96800 hid_sensor_set_report_latency +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa8ec634b hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb5e9e9f9 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb60c251b hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xdd90f770 hid_sensor_convert_timestamp +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xe5d36390 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xf8a15f82 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x4b7c64ad hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5e9a5e13 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa6263ad8 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe52fa30b hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1390e387 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1f342961 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5b12c920 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5bcfc922 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5d4a7371 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa8188419 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb1c63bee ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbde4c06d ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xeb761416 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa00fe840 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xac982704 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc70d711f ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd2c319a0 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf44b12d0 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2224a5ae ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4405d06f ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x954e8d89 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0713d308 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d4a0021 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f4653c1 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f40cd96 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3cbb0439 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b37dbf4 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x672b5c87 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x79b7371a st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7c57ad01 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8ff41e5d st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x92d2aaa8 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x96c4d75c st_sensors_of_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x981cacb9 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x98634fc9 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9b2a6adb st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9f84e37d st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa74af9a5 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbbede26e st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc0351b09 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xe3af5605 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x32a7894e mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x88a750ca mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xb926c290 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6a1845dd st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x6aa1f546 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7dce9f7e st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x0c4b8666 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa31d113d hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x32f2e500 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xb03c559d adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x5c1fd75f bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x275d8246 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x34f7540c st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x2151f8ac iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x22525258 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x23b9f5ef iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x26561ab4 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2c6ab493 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x49cfc3d1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x4abd6c0a __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x592df302 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x60fdc956 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x6a2de502 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x72046bc7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x7408b5ae iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7b8900f7 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x81d5d9ab iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x87716de0 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x90fe751d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x99473ea5 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xa9218b6d iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xabbf59cc iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xb784c20c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xc619d080 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xdb655e4b iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xdf709178 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x2083905a iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x87cd8760 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbc0ce75e iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf1d7e438 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf323c870 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x78a65a12 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x96d715da iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe4c1a1bb iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xefafb080 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x418907fc iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc8e9a13d iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x82eab4b5 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xdd1e95f7 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x293ad59f bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x439f35c0 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x851e76be bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb0087628 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x600a52f1 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7603bae1 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x9872bc57 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x99c2d130 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x098611b3 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xec3a54df st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf299425b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x085cb2bc bmp280_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0b774661 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x105dc663 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x79098a5a bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x938f5738 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x3e2bd9e8 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x84923174 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4565f9c2 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x800fe387 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf55ca7a2 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x00a1a338 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1001e8a4 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10aba9c4 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x276ecb0f ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3975280e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e676b96 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x50d483d9 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5d0ad9ac ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f7f8575 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73bc84f8 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7d2ce17e ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a9301c8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9eb165a0 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb17127a1 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9aaf628 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe7ecd95 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0911c34 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcde23b3f ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0071b551 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00987bea rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0214280c ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02a61890 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05988f12 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0621cd3b rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07224334 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x076eb7f7 ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b86b562 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c9bf436 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dab70f8 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e532813 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e298fc ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11a463de ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a32b58 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184b3eda ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a6f6250 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d59609c ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edd83b3 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x203c9db3 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2205d279 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224d7869 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2252e374 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24427dbc rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x256782b0 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x264edef8 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2754946d rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x293b1410 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa77700 ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dcd9d1f rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x301c6c0c rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31d01dfa rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33bc1b0f ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34123d9f rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x374068c5 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38122b24 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38696790 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3397f6 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b37354d ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c52da91 rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f1551c2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fe33c97 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4006da5a ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41a83a1b ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4294bd8e rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d1b066 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45ee9a4d _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46d8311f ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47c4da85 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47dfe151 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49185ed6 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4965fbd9 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e86a0e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a7eb64b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5dcf35 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bfddfef ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c07de5f rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ec4b2ff rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50ab260a ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ccbf26 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b015f0 rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x530cf4dd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f1675c ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aa36e40 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d05e833 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5df7e19c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dfdd531 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee025a3 rdma_restrack_get +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 0x622b51cb rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63f2db93 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x681dabb8 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1858d3 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a756f4e rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae698fc ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d98779f ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7130292d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7254338b rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76640d56 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7667cd2a ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799fe013 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c8c2b90 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc932b1 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd81812 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eeb1499 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc4b49a ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x811370b4 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8136052b ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x823caca7 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ad9e86 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842faf38 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x844e65aa ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86371ca3 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8689a702 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af41313 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cef711a ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7dc2f7 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x914a7b49 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x941a89af rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945b8a52 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x964980aa ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96e83c2a rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x971476e2 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c275b97 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce69a1d __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dcdee00 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa3a1b5 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa012388c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa03c2ef5 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa03c50ed rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa13d2440 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ddd4bb rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f95660 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2cfccad rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4aba7ff ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5c9b246 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa861e2a0 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9ffed1c ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa487a2b ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaccd32da ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb035b379 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1bfae17 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb23600ef ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b33f3c ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4037152 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb55e97f1 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb65b6c9f rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ef2cf3 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75c54d6 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82ae0e4 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9291a0f ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba4f351f rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc8bfb83 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd9a463e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda97ee4 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc092636c rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1754554 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2d261cf rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d21f82 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e304e3 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5f02a8a ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87ae2fb ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87bc941 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8e90740 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9f926ab ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1faa21 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca6bc870 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb56b521 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3946ac ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceb7a9f5 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf2dc463 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfc73c0c ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0773250 ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd230c38c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd47ff898 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd495661c rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd52896db rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57ebbe6 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd77ebbe9 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdec935a5 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xded1a6ae ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf79d64d ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19965ad ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2cc9418 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe87f2e03 ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeac87c67 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebe56100 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed8062ff rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedb65448 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee140a72 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf05c0f85 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14f2380 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c1308f ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2dd15ab rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4342320 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5503501 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf59f9ea8 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf63cb8da ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf773f068 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8832cdc ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8bafe75 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ccccc5 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8a76b7 __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb499735 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfef36a55 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff43b6a7 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8cbc42 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05c3c286 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x091e37ed flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0967c882 _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09b7402c ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ecbfd6b _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x120f793c ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ebef080 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56f086d2 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x668fb69d uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e691502 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ec1b591 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x71b16325 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76774068 uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7704f87b ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x855f2ab1 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8811632c uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a10853a uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ac5b3dc ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x933315fd ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa80485b2 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa927c233 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 0xc1d4df51 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5ba3641 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7bda721 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xceb8eaa3 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1e3b926 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9a28ede ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee5c342f ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf30882d6 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf94fabc1 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ad81fce iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41644533 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b540f2c iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94ec4be2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa5cab229 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xadabf362 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcf08c041 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdda5ccd7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d26986f rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0dafe23d rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x158eb332 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x289a8ddf rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a3b7356 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44047ae4 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4afd0058 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x533ad944 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x539b28a5 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x565a5e7a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x570093a8 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59057cdd rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6eb37a87 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88709da9 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88b76c3b rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93460cc4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cb576ba __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa33f92f9 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa542ed82 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5ca953b rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad0f119c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb19dbe53 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb28e05b8 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7772bd4 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc88bbc4d rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe599320f rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe637c707 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8d6d690 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea0dbc90 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7187890 rdma_destroy_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2816fc94 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x29479e21 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x369cc403 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x538c1d5e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x833a0fb5 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9aa724b1 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa0c35aa9 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdfbc8284 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xed825092 gameport_close +EXPORT_SYMBOL drivers/input/input-polldev 0x0e7c457f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x14f2c99b input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5f663f6d input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6b521020 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x93be6542 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x3a545f78 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xbc7e2491 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf6b3b473 iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x230d85a6 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5e847ae1 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xaa9c07c5 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdf51eb3b ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x54e430b1 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 0x82b8b4af rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x377db780 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x42cfa4cb sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5080af81 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x50d2115e sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8e9cd56f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd2b1e464 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf758c652 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1865a6cc capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2780210e capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29eb8a57 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32aa05f2 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3630300d capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x497d2ecb detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4bbf47d3 capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x523f350a capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5bdbb58d attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be7a92b capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc65d87 capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7292ab34 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x72a25a72 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x904907ba capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x96544262 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5e22460 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xada907a4 capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb0ad34ee capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd178539 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd8c5633 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcde1026b capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5eee0a4 capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +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 0x0ddadb60 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x12090e1a mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdd34916c mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf2601263 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x08fa8b93 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0cf6d394 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00604a42 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2182fab8 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28fc1b43 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b42b0ce mISDN_freebchannel +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 0x3eb969d3 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x472143fd mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x486cda6b mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48fdf810 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c14717 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51d77cf5 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5927dbc2 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x596ccd57 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x598738d7 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6afd1fd3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70666cd3 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7732b5c4 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87714e37 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95c110a6 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99a322cb mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa02dddb0 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa3b2421f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd7582b5 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd1750e1 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 0xa10876af ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xe786ce95 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/md/bcache/bcache 0x05cf0f13 bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x1d417ce9 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3c5d035b bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x440b4830 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5a7ad8fc bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6081c558 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6e16e906 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x7fca83ba __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9b7c44b6 bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb5c2723a bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc2797b61 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc401d489 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd3b45a8d bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xdad35e82 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf076bc57 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/dm-log 0x6a69fd73 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8cacbb8e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xa6e59abe dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xfb22f47f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x81009732 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbc839ce3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcd5ff16b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdc4b7fff dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf630031e dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf898f4b5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x23cfcfae raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x4ecba79d r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b275171 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4930f74f flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5be8a944 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7144192e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x82a3863a flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb5e1f284 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc0a5fa87 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc0cb46ee flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcdf68161 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd47fbf56 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea8a9e0d flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf17fdb17 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfaf78779 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x17e1ac35 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2ac9a0ff cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x332db307 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d3a49fd cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb34d0b83 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb9c8f3f1 cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc889377e cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdaff62f9 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xeb854f47 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4d81106 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xe2e15c81 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xfdf53783 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x660517fc vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x9a105a03 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1a14a6bb vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x610c3a60 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x86f86f5f vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc2db83b0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xcbb0fe74 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xff3ed5be vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x52e96379 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xdc4d0092 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x500c8ad6 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03a4f412 dvb_frontend_resume +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 0x0fb4e747 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x171bcbd9 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a591608 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b15103f dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31a414b5 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3983b7da dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f2201f7 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47d36a6e dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51685947 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66626cf0 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 0x67385107 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68258eb5 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76b3abe2 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f7bf3bb dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bc1a6d6 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x932346df dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99dc8d31 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b0abe46 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ebf09cb dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb313211f dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc489acdf dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc8531cd2 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8eee89d dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfd925a7 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0668b7b dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe954982e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec25f0b6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6343993 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfde9cb82 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xd54f2fff ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x47c1318e atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03f6cf85 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0e714e91 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e72e8cc au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f53b60d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x484f4dbb au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5f0122f7 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8addf1a8 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa079be0e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc9d33ce0 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x666f4c23 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x9750dd13 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x8de030c6 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x0d196396 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x5abdbffe cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcad68d36 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf65757a3 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe21f6fd7 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xdec2450b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x74cd7adf cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xae861711 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb7f10f93 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0c7275d3 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x24ff8550 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xf868b956 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x26f50c89 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6248954d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x63358c15 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x649e0cc9 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9d11d3e7 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d93218c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d745986 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x224dd23d dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a40226e dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4592f4d8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x640fb407 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70702de4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8ad697f4 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x994a070c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa93c2d2 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab1e0cbd dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcac319ae dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8c1cc61 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xed38f87e dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeef13076 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x99a0b0dd dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1ba8f1af dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x371e75e8 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x63469cd2 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x78a2c793 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaa30a970 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb04cccc0 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x12058c23 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x48ff5741 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5017ac38 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x514f7ea6 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x46dd2b71 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x185f60d3 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1b3a39c2 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2201f41f dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x22d01b42 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4a94d1fd dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4d611288 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x694ee029 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6c3f1534 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x88cae139 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b4b7f04 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc843d340 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc9606718 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xce0b3b05 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd671d097 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x105bff41 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e6fc069 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xae0fb8f9 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc1d6abf2 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe7d7f9c3 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x0b8b0c2a drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xa00809c9 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa2c394f4 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xf2223149 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xabf441ff dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6f2388a4 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc4edaccc dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd93e9941 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x6551bbf2 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2283db18 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7b14a1ca helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6f4c7e62 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xc9d2fec7 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x230ce412 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa49b4f65 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xfabc6892 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x16dc73f8 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7eb3820e l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xce9fe929 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6e0f5b1c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x332b5101 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1607522f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x255763bd lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xe4176126 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x62ebf495 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x2f2ca9e4 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6bf852bd lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa7fdf050 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xcb61b30a lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4276eddb m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x43fcb687 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x0f11b2c9 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x47b0eaab mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5cb17373 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x34f1a1a5 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd76bf712 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x1c35c1b9 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x31076ba7 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x086a6cdf or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x792d4fc4 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xcc4fe60a s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x87f62bf2 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x87a8fb81 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x942f9f03 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xd76a7f5d s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x37253a16 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xbcd5b9ac si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xa5f20dee sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x088c8d64 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x886c2735 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5465b6f7 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8f7096d9 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb8de5ee7 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x38d170eb stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x21124e59 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4fb92c2d stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x90482f75 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xee5914d4 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x271afa0f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb51cb821 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8d112d04 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe0f84b24 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x35a4b1e5 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb338a78e tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x916cbf0e tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x828c663a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xaad7322b tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdd8eb794 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcce7c298 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x0f74f0d5 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf348e5c8 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xc896feef tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x2604ff26 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x3e8041a3 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x7ee76dbe ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xbce25ec8 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x50d6cbed zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe4cc61d9 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xa3ae199d zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4d7778f2 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xee8d100f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0da642b8 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2ccfd564 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x56b40a42 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5a8bde3b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x65f57d3a flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x706bb3c9 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xde1347ac flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x136f6640 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x18884f9e bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x390b82e7 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9c1e139e bt878_stop +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 0xbbba6c53 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd4afdc83 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xebc233b1 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x07bf36e7 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d191112 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x88956ea8 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9cfb1a7e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9ede6716 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xacdc2349 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc735cb95 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd66ce297 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xeeefefcb read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x38d414cb dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x04acc1b0 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7648795e cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb49b6ef0 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xba3c30e6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe7856338 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xd0fdb6b0 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 0x427a6666 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4e29b6e6 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5f353840 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb0e376e4 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb343125d cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb466e807 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc73148db cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1c530477 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6cecaaa6 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x304f30e4 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3d8fe4b4 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa906c21d cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc2c3e385 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x00773e8b cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4062c5c3 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7740ce6f cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd6cb354b cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdb57e18b cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdc110e2c cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfd3df6c4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05a4411b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cb6d136 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x23a4bd4b cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x287bc751 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e30ae68 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3b7b2475 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4239732b cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47b2ec4c cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x657cb484 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a5265eb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7b7dadff cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8929e326 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 0x94a83792 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x98a9183a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x997ea868 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d11e91e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcbe331e8 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb6f0a5e cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe910a14b cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xece652d1 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07f52930 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15445c15 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1aa89c8b ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c871688 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3327dc89 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45417477 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x498d47d0 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b7c6f50 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x536b5bd9 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6f40a222 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d7702e4 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9baf8911 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa12ef62c ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabd98d50 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe93edd76 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa975afd ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff680142 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f822789 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10cdb66a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31526caf saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x539ca58a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5a30daf3 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5cfa23a4 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75021290 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c48504b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x83080555 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8b631de8 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9d3fbb19 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae61e58a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x6f1c7fb5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6cf7bbe4 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7f831f6d snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9c13c656 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd3a1d8ca snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdea8726d snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf681c88c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfa5e97e2 snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x0bc53558 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x30b802bd ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x3131b773 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4725eda1 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x0cbd3e76 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xfe58ab07 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2b1f3421 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2c5b94fc fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xae929fbd fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x162891f5 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xea18d6ca mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x70c32671 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x276ea91c mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xef29ab4d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xe119db60 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x9c5b1a07 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x8e51e65f tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x87f70608 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x8ff90246 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd8fc64a4 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x5f329a36 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf6812c59 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2e53c325 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5a19e5da dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6f1fc7b9 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x755f4f0b dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7d93303e dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9bedd465 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb3456350 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcf37687c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfdff543e dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4fa59446 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5a688c16 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5aaeb1b1 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x62d93fa6 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82aee35d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa857a5a1 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfcf4e6ed dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3b47610a af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x782cbc90 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3d1d1437 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86911126 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x940d7a38 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c0665a1 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa42ea43f dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf6c5401 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xafca6ffc dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xde76b0a6 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdfbba290 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xefa205ba dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x123a8f66 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb3ab56f5 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2da8520c em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb3bb4ded em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1564f465 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x19aec7a7 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3eeece20 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x595120c2 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5c461507 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x81e9e0a2 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8272c1b1 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe17b23f9 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe5f1ae11 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x176e306c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3c7c6646 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5459cab5 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6a7e2273 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x836687ab gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9887c661 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5473498 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdecb0169 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x419dd7b2 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x69bafa9a tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9cf886c7 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9e43b76d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb584b6a7 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x32087966 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 0x71ebac87 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9cace040 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x037bfff6 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03ab4d6b video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a4cb5c5 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x109c0f4a __v4l2_ctrl_s_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 0x164633f3 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16ff8e3d v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17c54a1d v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1919743c v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x258b54d9 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2645664e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cc4bafa v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dd3fff9 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30be69e8 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38d57b35 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a8e5b06 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b23ce0e v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bba0d88 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c04de99 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f37535b v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x439fff66 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5192bf2f video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5552f7f0 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57bfe341 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58ce9af6 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a58dbdd v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b22099d v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f9da91d v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x664cd3d5 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bf2737d v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fb60cc6 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80bf6317 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x879f026d v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a34f820 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ba4f943 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90f24439 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x937f29af v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9534b331 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96d47107 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99b16605 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99b16cfe v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d913fc6 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6b1528c video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa29e57f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae467394 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb14460a8 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb65f58fb __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9794dfe v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba65e1b7 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb1e4ed4 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb418937 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcbdeb5a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdab4acd v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc07d1d91 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc261dd49 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd1ea456 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xced7df30 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd25adc93 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6db4b64 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd86c76c8 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddce6de6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddda7761 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdef92eb6 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0a84327 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb0d994a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf857fe8d v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9155935 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0207032a memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x028a1228 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d891cbd memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x491d1d66 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6e99d3c6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f233118 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x905a92c2 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x96a6d959 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb298d376 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbe440fdd memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdbc3b7f3 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe121c679 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04dd9426 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a7e3c56 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1287760e mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x269963b9 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32361fa2 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37159400 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37d84336 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x38b09fbb mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a6a0a9e mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f3b5a7c mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x442a12c5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4877869c mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55419a79 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d9f8088 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6591f2fc mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86de62bc mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9eae11c1 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0a75460 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4259f11 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae245dbd mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb14f6134 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb082ed7 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4c29a4e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd27300ec mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe1c7c7d6 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea959a1c mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xee6751de mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4e50974 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8f6b454 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0076b239 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1bb7df1e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x211f0ed6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27daa376 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33ec89f9 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d3d1c58 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e3912a6 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x455d9462 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bc0c188 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4cddaa33 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d1dfc41 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6efa3c65 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77a8bfbc mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86b15474 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9bd21569 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6728184 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabb44529 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2774007 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb56b6a5b mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb590a184 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba705807 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf97ae91 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2a8c37b mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda07fe6f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf48e5e75 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8b46216 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfac050ad mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/axp20x 0x0a6bd909 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x72346601 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xeca6abbf axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x2a4062fd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbbfa433a dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xdf85dbba dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7e975de6 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x83090eef pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x08dac32f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x166755f7 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1810f441 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x32dccd82 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x41f2ecee mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x59f3fb74 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7f9557c3 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xadf26a28 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9623419 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb9ae2b50 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf5e6f79f 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 0x0edae84e wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x48f348d8 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7ac9f341 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x85eaf970 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xbfeda2a0 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xe5abf16c wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x435aee38 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x66fd907b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x3faa9be5 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xa21c5aa9 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xe0a4a19c c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x003c3e8e tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x10c922aa tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x17d3a27a tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x23f22d56 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2c1c834d tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2e6f49af tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4228ce72 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x47410cf5 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4c32cce2 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe0c234e2 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xfc700b1d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd4da94c tifm_eject +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0ea10372 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x30845fa9 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x34b8c4c3 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x41a4f0ef cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xad83cbbe cqhci_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x156f337c mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x573468bb mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x08163bc5 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x282c3dc2 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2c353602 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x690272a3 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9e5a217b cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa031164a cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xddc3c02d cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x53ec6995 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6c3e8bfb do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x858ece4b unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xfdd4a6ac register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x11b21a0e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x25d25a0a lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x73edb9dd simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x4683b483 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xac359d0a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x5c598364 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc62e6f76 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa533d67c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe2ef95d0 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x16bde522 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2ced5248 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3ad2414a nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4fedcaa9 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6ad02941 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x786cb223 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcffdb869 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeaa25e14 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfb467ee2 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xffd06213 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xa43d1c72 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xb636dd73 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xedb71db4 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/raw/nand_ecc 0xf1680170 nand_correct_data +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07e7e8b1 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0faa73da arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b6c785e arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x40c94fc9 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x42060456 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7a1a8897 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8bd50b8c alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa75a7c9c arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc46096e6 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf862d4e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x10bb52ca com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x29d0fcc6 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcf7e8913 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x048aea7b b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x15a1447a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1622af78 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1682c64a b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18a45d70 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2cdd7382 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ee64d62 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f8cd3ee b53_br_egress_floods +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3186665e b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34bbaf30 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37abb0bb b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40105f66 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59eb1592 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d1b0789 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68b3dc85 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x710f944d b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74c6aa7b b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7af22001 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87d85c0d b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed79555 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99e6bcd3 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e80351b b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ebf911d b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac3a230a b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaecb22c8 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafc25ce5 b53_vlan_prepare +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb17d2816 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc2d1b6a b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc075a898 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3e14ef5 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc522de09 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb167c4c b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4e94bea b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6bfe64e b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe286e38d b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec879699 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xefab9bb8 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf157de0c b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x20db7c2b b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x429de491 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4ce7e893 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x72551a38 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc03b5a8e b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc5ecc136 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x76beb69b lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdbbde927 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x3582b74a ksz8795_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x9481e7e1 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb5c9ddbf ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdb90a472 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf1f87461 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5f04aace vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa2b7b05b vsc73xx_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f92b5aa __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6160ea4d ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x65fa1e61 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x97fff267 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9ee41fa8 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc3e3fa6d ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdb0d2b7d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe5ba2cfc ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf065a46d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfa99f778 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9afc647e cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0245ab4d cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9b5320a2 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 0x1a3f8f79 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20dc82d3 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b33fbee cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ed628f2 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e71ae95 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x42466fb1 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d6ef7a0 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5dff69d0 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e4cf0a6 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x697cd977 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1c52cfc cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcacf8e66 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce1d5a0e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd2ffe258 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee3643df cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xefa62f3f cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01dcdd32 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03221892 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04d28cad cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0947fcf3 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f4f5d52 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23b35663 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2aa8cbec cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c69708b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f78e376 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31bd1032 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c4534b6 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fa0f0d1 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51219250 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53436e03 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57f6552c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x676a11a9 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a76d4ac cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e369292 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78a7d9ea cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79af6ab0 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b50936a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80640145 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91cc0cbc cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93b8af6a cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95459977 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99ad3150 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c8385fe cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4e153f5 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad9a67c5 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xada0b04d cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb861516e cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd24c513 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf2ccfc8 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc067bead cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc84758cd cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd140d13a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd18ae9d1 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd90bbb2d cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd2822f8 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf631157 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7440e86 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe762f3d0 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8126c32 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8b6f012 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa8b0e70 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0370a117 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x062140ba cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x12a97d02 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x86fb9959 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc5f61cf0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcaf72954 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdbc0a2e5 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x496909bd enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x885c8cc4 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc26e8b4d vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd57957ef vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf24b1ad8 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfdf12c1a vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1160337a 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 0x6fad1292 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x2bf19281 i40e_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/i40e/i40e 0x5e1bfd49 i40e_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2087ac88 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x737b8dd4 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02967332 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eef8b43 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1963cd6b mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d36d464 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d6c4bec mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22c38ac3 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33350f64 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3393bd97 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x412ea7ea mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42a0648c mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44eccb93 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47fe4176 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x490089f0 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a7a4579 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d05647d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f9e4e68 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62d9c9fe mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f463b63 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x715c219a get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7522af49 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79296c31 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c728ff2 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x863749dd mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c31a46 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0d88a5 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b9d9b9 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7be3c5e mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad353901 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb774fee0 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4f2b91d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e2e0ed mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd968c86 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e15890 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe07484be mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe102c080 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe34f7b64 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeafc6c87 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5cd555a mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7504391 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf95f847d mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb6a6090 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc8c0318 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc98c65 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff3d212c set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00e9cbed mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04718f38 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06866164 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075955e2 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0850e83f mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x097e5b32 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f41f3e __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc21832 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd263ed __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ee5b43a mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c235c9 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x131e18fa mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13660b17 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d14ee51 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2bb9b4 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x203b78a8 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x216d35a6 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2291385c __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235b47ae mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bc65ae mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bcc01f mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26ef0921 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28efb611 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ab26cf1 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c00fc7b mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d50a135 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f8cedb4 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a80905 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30cdecfb mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32480cfa mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3251eda7 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3278a177 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x337d9b11 mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x375b6906 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37eadcf6 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3990808a mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c920d8e mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cecf8d5 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f2b6f3 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e279c4 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45e08a40 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x467e6c3a mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47c0befe mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49f3ace7 mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4af34d6a mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b5a43c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55bcca2f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a6285c1 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b075b7f mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bc09d85 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ce5dec7 mlx5_eswitch_register_vport_reps +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 0x61d67d39 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62112cc2 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x631c0a63 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656353fe mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681b5eac __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a3bb019 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dda0a7c mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e3e6803 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e81a777 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f774332 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b3695c mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x745dd477 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7adbd7c9 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e4b3c2d mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x804ea58e mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86972803 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b5c7d14 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d054be6 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc0a2ca mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939be81e mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a623bd mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f792fec mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e0a8fd __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53987f3 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5f5ece3 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ef8dc4 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8f1f3f mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabaa3bd9 mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace94843 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad9ebef5 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2317f8 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf70b20a mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb696525f mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72a1a93 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7eddcc9 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb800685b __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8dc7ae7 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9d8c130 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6a8098 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf9e56e3 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc039f2aa mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc09c9b00 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc10fe96f __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e8ef7a mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc50e16c1 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc61e3011 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c44169 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d4e57f mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc81e91ef mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc84bdeef mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaa5af39 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce7a37d2 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee1de56 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd36b2e03 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd663e92c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd915718f mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc2f1753 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde10315 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe217260b mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe40613f6 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a7050d mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e3ab36 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf25c072a mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf480fc9e mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b1c942 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54cf94f mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf85d6db8 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf87a013d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa10e32b mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd17a7df mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xa7ad8576 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x034af785 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x048674df mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x17cee66e mlxsw_core_ptp_transmitted +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 0x1f93326b mlxsw_core_event_listener_unregister +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 0x240c6470 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b0213a8 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +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 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x530853b9 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f5b8f58 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x744adc5d mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e8f50b5 mlxsw_core_trap_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 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87435ab1 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x91385169 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9400314c mlxsw_core_driver_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 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc374a97f mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb01df5f mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd13ae8b6 mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdf94535c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x9f68b615 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb97991fb mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x79b9225d mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9089959d mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x00e1ccee ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x0b150222 ocelot_netdevice_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x21b54c25 ocelot_regfields_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x2eb3c161 __ocelot_read_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x6642901b ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x7805a5d1 ocelot_get_hwtimestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x84ab3340 ocelot_probe_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x86189ab2 __ocelot_write_ix +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0x90060f9b ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xb2d3fa8a ocelot_chip_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xbcc25ded ocelot_port_writel +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xd0348add ocelot_switchdev_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xddf91af3 ocelot_io_platform_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xe54a91e8 ocelot_switchdev_blocking_nb +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xf8c90ddb ocelot_port_readl +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_common 0xfca9780a __ocelot_rmw_ix +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x38081640 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4c61a1e7 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 0x85907f3a 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 0xa152e27a qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3588ea3f qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x6fb8bf97 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0e0f7efc hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3a41945d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x571ef5c4 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9a7a77a0 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9bb7ab0d 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 0x7db84a25 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/mii 0x0e6b6cae mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x1b938bf3 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x1eea5945 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x265ad0d1 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x31b1b0dc mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x4914cb93 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x4bcb4ff2 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x64edae14 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xabc2fe52 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xf888b6bd mii_check_link +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd95e4ea3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4f7e68ac free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb8a8d3e3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1a306707 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xab35c2f6 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/ppp/pppox 0x01aa18c3 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x57dfa851 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x866652f1 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfbbf4b11 pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0xec42297a sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x003d1911 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x19dcf9ad team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4b814629 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x65beb8fc team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xa701ab03 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xfa8097c5 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfe9b1eda team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xff6bb1c8 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7a7af4ad usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9935af7d usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd482a589 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0cb57b2a hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0fef882f detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x29e6d20e attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2e3fc393 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3574e321 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3a6e7eab alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5851bfdb hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60618640 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xad20e56e hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe2cc8de5 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xde69fa88 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22b5e1f2 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x449a29e0 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f95808c ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73633dec ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x748269cf ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7697bead ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xace90130 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc036b73f ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc6427d9 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0c55741 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdac32662 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeabc2669 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf08b651e ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf253f235 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02ae7972 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x057178ab ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05ad4c30 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x098d0509 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b3cf909 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0cb0636a ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d6f7fae ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1506e1e3 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16240d1b ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19b897d3 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b25bdc0 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bd633ab ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d3697c0 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x204534ee ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x20b11fed ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2201ee8e ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2269d862 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26336d81 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30c1c0bc ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41b19b6e ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ad9629f ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c51dae4 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f7882bc ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73034843 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ed32599 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82608254 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96c6f3c2 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9aab05a6 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa42b32f0 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2375504 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe119fbb __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc28f87b8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8290875 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca852431 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcadb50c6 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd01c486f ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5ac130e ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb89fa3b ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe122a800 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4dedb05 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea308e5d ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb36f4ed ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecb6b70a ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed903934 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee0bba8b __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf43eaf56 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf45e90eb ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7066d7f ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x04c46686 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27b7c3c1 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3b596956 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x475e8ec3 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x53ce5c72 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5616649d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88e4f6c0 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa583753d ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6a93d4d ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb74c8685 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe6842911 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00466f53 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01f0ec28 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a3a5830 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a9fdc08 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22c6b74e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d495e73 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3a3c9de8 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b6d0a8b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43d67035 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d9739a1 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67735143 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c84bd40 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73ead425 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7558f87b ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7647243a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e0d20cd ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c9c1322 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac7375ad ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb514c400 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9080148 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1a05dfe ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1adf10b ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1c974c2 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x023347af ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0395363a ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04ae2df1 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aa81bb5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0afafe44 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e321e9f 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 0x11478202 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x170e6802 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x177b7598 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17d56611 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1986bfbb ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c3f0a50 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d7b9a71 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa7d663 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206127a0 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22977982 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25ebbaf1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x272419c8 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27b03931 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27ff17e1 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bb6a36f ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x300efef1 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30295d2a ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3664a2c7 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3907ae8b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a1d394d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d3a8874 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3df98d7a ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b186b9 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4327c7b1 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4376abcb ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a12b479 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b4dd0fb ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ddf607f ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e38c8c2 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aafd052 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b5452e1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de6cf33 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x607433fb ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x610dc3cb ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68fa8348 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x692e2a64 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aea59ad ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6de8513e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e98ee3d ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77900aeb ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cebd753 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d9e2e95 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f02e3e9 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fcd1a76 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x806f0bb6 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82eedb78 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x887d2e27 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89d2cc5c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a4592df ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ab8a400 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e867ef1 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x901da13f ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90509e72 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x915f8867 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f4193e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93d5ff2d ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9975e770 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b80e79c ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa15d4db3 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2d295b3 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa33ef7be ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa614f2d9 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa70aecd5 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad1d4df7 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2ff6449 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3e0149c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb517ab04 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9b14b43 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba4992a7 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbca8793f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf1700a6 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0f94997 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc81ef7d4 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc955068d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca16e782 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd96ba4c ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf4e2281 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfff50b3 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0956fab ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd16a5789 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1e305d3 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd49f2252 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8e618e4 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8f5ae33 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbc6249e ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde1f7a38 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0032aec ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe020983b ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ebb6bb ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3aadee8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7073b8e ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeefaec5e ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef12e5df ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf128a305 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf684407d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6bba690 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf824434c ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8d59fe2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf96701ed ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaea47a8 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdb998a6 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x6513d8af atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7bcdfe1a init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf63b5309 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0e156c9c brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0ea92485 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 0x408bfbd7 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4f549abf brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e00b1ff brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7b1d88b9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc9298afa brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc99e5336 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb88e2be brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcf1ab970 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 0xdcb5587b brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdce145a8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8a3bb2c brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x24999f3d reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x838f9aea stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xfc157bf2 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1390d812 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2380c987 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c9abaa3 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3ba15fd0 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x58d98b73 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x63543b34 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6495f228 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d8cf60c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x762c1430 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8e99271b alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93bd9eae libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x96cc33c9 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb6f83980 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc21538f7 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeac20e9b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeec3a39a libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf2a6835d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf395d1a2 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7ad6ef9 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfcea735c libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0267178a il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f0a747 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0366070d il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05c24706 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06d6f50c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bfd7ca7 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c41b5e8 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c85ad40 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f9efa83 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1089bb4b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16d28a5e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x189f3e74 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ba2d1c9 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ce6499a il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cf3de4f il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f69a159 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23734762 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24dc8e7e il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29937adf il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a953a0f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c9a4f77 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30b3724d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x324f50fb il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3751afdf il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44f29dc8 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45fb7d74 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45fbfcec il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47c72af4 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ec3738 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dcfb101 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ddcc7f1 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51373c64 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53fc0068 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57184ec7 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5846c937 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c0f8f40 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce54ab6 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f84b0cd il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60738f7d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61c89371 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6552e77a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68feb311 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6afca79c il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x704c341d il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x722e9def il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75616a69 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76039446 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77b9f726 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78b59409 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a706f90 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dc073b8 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e8f3019 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7eb4532a il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x815ad8b2 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x823ec8b0 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82cf3bc5 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82d1239d il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8533fe47 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8746932c il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x944f75cb il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96db01c2 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97eb9a57 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99af0818 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0d5c19f il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa44cbbc8 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab1b3aa3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad529d7f il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadbc9ebe il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae01aeb6 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae3a18aa il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb064529d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0cad6d1 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb140e350 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1a7ed44 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb216d49e il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb488a87d il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65dc11d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8c80e13 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc33ce17 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd233310 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf1cf064 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc50b2e54 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc66451ef il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc722cfa8 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7a0f804 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc80608a8 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb891def il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3effb10 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6f3fa39 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8c8d1c5 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea6d184b il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecd346e8 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed196a4a il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8051f22 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfadf80cc il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfba4cd1f il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfeab77ae il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffb421e6 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73d6904e __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe45aec74 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe76e8c18 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2431a5b6 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x24437e11 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x253ad95c hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2d1a785f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3e83c2b3 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x471e4085 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x47db9770 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49bf6e9f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d7efb20 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e652065 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8299c5df hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8309a309 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8549f386 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x896cd474 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90b96c73 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d947a09 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9fb5b4d6 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbabab83 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc1ea0245 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc98f02df hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6ba0f04 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdabb6e48 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdc44b0b1 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe28fea35 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2b15f56 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x084a15e0 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0e26e183 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1086f9e7 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x372b3e3f orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x377c5a0b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43b6af23 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x506ea43e orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5a0392fe __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6484b90e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x72786eeb orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x808ecd5f orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa0b82387 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xad7edf6c orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbe93faae orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xca7c9a6a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe8dc0aff hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xae7c2278 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x5af0ba62 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e5701ad rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x219dc613 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2575f8d1 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x306e0924 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34ce9fcf rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bc95309 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4324bd32 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x466a3b36 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b1311ac rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c4e8544 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d10a35b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d449cee rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f8ee9d9 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a145d84 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5eca123b rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6337af6a rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x655b54be rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x675ef511 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69436a2c rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c1d5d5a rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70102c2b rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bf479cb rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92cd9dbb rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9aeb040c rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b3cb02e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c9a2815 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5d6d989 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9ef58fa _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab795462 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb38d083 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaaa10fc rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc3ba68e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd58a2c7f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd67d722a _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe91a96d2 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec06b8e4 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf10ab3a7 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1c1ebf8 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf505fc27 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb70264c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfde47a7b _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0c104ab0 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9791a4ca rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb440773f rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xedfaeeee rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a30764b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8d411c88 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa72b73ec rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xda165081 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00cb2322 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x028d2762 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19bec824 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a46487c efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d1a8464 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fed938b rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2133e797 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32bdf21f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3441cc0d rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a1782ba rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3db55fef rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4666674c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e590fdb rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x719b5c6e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bc97142 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d30ad22 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86a8cc61 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x872b761d rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f3e528f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93bce15e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96e06cc3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7ccb566 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8928fdd efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab4701ac rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb910a485 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc9d7346 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfe73973 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc102cea3 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc279e4d4 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce3d3fe7 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda09cba7 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe73d2b3d rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x18518488 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x1c739504 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x2f883ea2 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x3931838a rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x43887ab2 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x45437d0e rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x46a31b9c rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x7332a46b rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x738143b6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x950ec0da rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x97ebdfd5 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0x9d570453 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xaa15911b rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xc4f36c61 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe11840dc rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xe9fd5f86 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf34249ad rtw_fw_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88 0xf793efb6 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xbe6c82c6 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x68552af2 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7163cb8f wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa675c1f5 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb2f1c356 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x121d9bfe fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x51d92228 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbd404501 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1570cfb3 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x298e69ae microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1efded22 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbca2cbb7 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf298ace5 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x5f27ffd0 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x649e6249 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa88a423f pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x91b6d51a s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdadd6774 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe9f1449c s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x26fef6ee ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x307cc1af st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x30b87c33 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e9381e9 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x81cc22d0 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89b0cc92 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89f7f557 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6936a42 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc1f284df ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe1f60d1e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00ec4dc9 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14355f8a st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1467caca st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2499139a st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a845f44 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2dfa7f38 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ddb9e2a st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c718b0b st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x71db810d st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72e82d87 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9499ccb6 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9817c2f2 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1e008c7 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc96abcec st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd115ea4d st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd57e5154 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1951d03 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4c523eb st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x05624a4a ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x16563fcc ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x1a062c9c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2362ecd9 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x563f8c09 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5c6270c1 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x60e4cda8 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x66d0f4a8 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x743720a0 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7683051f ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7a3132b6 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7b4920a9 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xa2161521 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xaf217c68 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd1bb699b ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xdd23b92d ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe02803ed ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xee37e414 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf55dbd8d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xffecb455 ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0f066daa nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7eaa6094 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0c9afd3d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1188bcee parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x25566a1a parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x27c3aad6 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x286c1cdb parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2f26ce1a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3a2eca20 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x3c8bfdf7 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x40accf0a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x43985dac parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x567deb55 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x7a58a44a parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8db50f87 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x9bf3426b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x9db0c2ad parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa2611517 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xa7ff6c51 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xac863d5f parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb806aba0 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc913122b parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xd2260e81 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd3aba9fa parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xd8869310 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd8f70146 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xdf69ce7c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xe014dd6a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe203178e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xe336f1fb parport_write +EXPORT_SYMBOL drivers/parport/parport 0xe39a1348 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe79d761b parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf73fe6f3 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xf9799dfa parport_find_number +EXPORT_SYMBOL drivers/parport/parport_pc 0x28461bec parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x8ddd1272 parport_pc_unregister_port +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x21987086 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d86f388 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x41e556a4 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6abc14ac rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b892e58 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8e1c915a rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x936bd371 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95fb18ef rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa2f02883 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa6f7b938 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb25480f8 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce5965b9 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd70d79ba rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8ca0c6c rpmsg_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x14ad88e0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0faab266 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2db8a67c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2f3d9ff6 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7713654a scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0efa321a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x122989c7 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2c119c12 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4e78a909 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x514b639e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8b99c375 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9bf0b249 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb2a486ea fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb4a9f090 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd1ffab2 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7adbc45 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0682c594 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07fef531 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10466622 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16da795b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26c653e4 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x296efa44 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e503e8e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a382731 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b51bbc3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fd67266 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e967207 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54db4621 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x558b8495 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55a6bff6 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57382e9b fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c28425a fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6280dc5f fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x629e355d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x633c9fa3 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b810d29 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7548431e fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76551f2e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x798e72d3 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e50916b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80d037ff fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8500f0bf fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86300eea fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8943afd4 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8afa7685 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c581adc fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d39629e fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2ee75 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x980a8277 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x991c0888 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b0dfde4 fc_linkup +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 0xa5813cee fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6241e3c fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6d5f9d0 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa80b6736 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabbc3905 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf93a147 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb750c573 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb91e0a89 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc01904d4 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a25360 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbb5b774 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccda502e fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd119bd0c fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdabe574c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc38a916 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd0e691d fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe02caec5 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b341c4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe54da066 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf85f33f9 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9590034 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbe80f85 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeeb245b fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb144a137 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb217413f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcb9ece26 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd33353fd mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18c37f4e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ae7e75a qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34a0188a qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ea37668 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5409465b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x88aa5ad6 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f752c90 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8fd2b9a1 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa8ef3691 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbc96430a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc9e541e2 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf96c73ed qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x23261787 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xba4fe275 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xfaa2219a raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x064bf125 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x302b78d0 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x346771f7 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39a8b823 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c802ca2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x642474b4 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72f0a876 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8273559f fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8bf749c2 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94677e01 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f7d0b44 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb82517d1 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1e79dd3 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc216ee70 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6c66e42 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5e315ef fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04059be2 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05430f5a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0559c8e6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07cd7346 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24b4571b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26f59b94 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x308cf133 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3901901f sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39e5d5c6 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4244dcca scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cd950ba sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x631e3678 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64466be7 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67122b24 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b312116 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75f962f2 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78ecc451 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c8605e0 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x815bb150 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82bf41e7 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86b5332e sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d0f59fb sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x955ade12 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c082af9 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac70f721 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe56fecd4 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb8a168d sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefd98361 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa0c1c8a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x427983b8 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9435bb7d spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9aebc0e2 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd92235bc spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdda65534 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xede460bb tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xfd7e0c7c tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x01c2ae92 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x29dcf089 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2ce404f5 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x37312555 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5913d08f ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5d526589 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7af994ad ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9ab5dcb3 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc583e075 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x626b2b2d ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8f29920c ufshcd_dwc_dme_set_attrs +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 0x201f2cee sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x22d93179 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3298e978 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x451f69fe sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4aa0c82d sdw_write +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 0x69ebe035 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8a72418d sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba1ab2e1 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc32e214d sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xccb734f8 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe104592b sdw_delete_bus_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xefdd433e sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfefdf2ca sdw_add_bus_master +EXPORT_SYMBOL drivers/ssb/ssb 0x04a0625c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x0c9606db ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x201d075b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x3e4b4328 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x41d2c0af ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x42baadfd ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x49a1f63c ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x528261a6 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x62074060 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x64ef638b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x80e27bd5 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xb090da40 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb6f1db38 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xb70b3bf4 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xba222277 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc3b0833c ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc5c55fbe ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf742f61a ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf7895016 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xf7c039f6 __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e630106 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x184140c5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x297e5672 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c6172f4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48cf03f3 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x55a7eb5d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x690f2ec2 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e63dfef fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88656580 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x896db995 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9861de17 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf1b71bc fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7345cb4 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb745b699 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb74d2aa4 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc020ef50 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4c50010 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7bc8b4d fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb1f60b7 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe94873c7 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea2b4d6b fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf1eda01a fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf21643cc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9dbc392 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfda1f411 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9e925286 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x31ec4d5f ade7854_probe +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x132119a7 b1_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x132bd736 avmcard_dma_alloc +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x2e5d0716 b1_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x321729ea avmcard_dma_free +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x4f734c6f b1_alloc_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x56beb354 b1_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x75e1c93b b1_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0x97f3145f b1_free_card +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa493a3f0 b1_parse_version +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xa86a9e5d b1_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xb96f4a7a b1_getrevision +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xc854301f b1_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xcfb45744 b1_loaded +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xd2dd6ede b1_load_config +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xf954a14e b1_load_t4file +EXPORT_SYMBOL drivers/staging/isdn/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x2aa16ef4 b1dma_proc_show +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x50f16403 b1dma_send_message +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x5c01237e b1dma_load_firmware +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x7416667b b1dma_reset +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x77629e74 b1dma_reset_ctr +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x88d13187 t1pci_detect +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0x8e570d2e b1dma_register_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xad3fe9ab b1dma_release_appl +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/staging/isdn/avm/b1dma 0xd90472ae b1pciv4_detect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06006f86 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dffd9e9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x120cadd4 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12392773 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1469ad5c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1521986f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38309bf6 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ae29f1e rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d81dcf7 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x411519c5 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42742950 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5924f8e1 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e4b47a3 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5eee6367 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x618db115 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6668e2f0 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66bef6f4 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ffac304 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72b101a1 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x801a881b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8127a9a7 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85db98e6 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c9fad16 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cb5984a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f763552 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fd173f3 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9113f8da rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x951623c3 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9532f6d6 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95b8a698 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x970fba3f HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e35ffea rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1114742 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad767301 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb04803d3 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd8b0d75 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3e4dc47 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc41d5359 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9cbe452 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca77218a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce2f51c3 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce5cacac rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd13865d3 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd75d655b rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3679aa1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4d31b02 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe67b8c49 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf88939d4 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa2ba7d1 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08a59946 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a8e37a4 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d539b5e dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ed0c080 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17074175 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x174818d4 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26ff6486 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x295a0ee7 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2be8e5b9 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ec630f0 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32c86acb ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x416abfd9 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x416b1d8b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41c15987 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bd9b150 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c97a106 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e68b80b ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5023755d ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55e7dcc6 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56616c23 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68f146d4 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x736b5186 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x779243b1 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a6ec397 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7edea200 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81c0acdd ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x823a8b05 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87311fe5 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x880f50cb ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88947584 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98c6d2b7 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b89de4f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0bbd182 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6fc9f5a is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadde5a3b ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb23f908a ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd358bfd ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc246c05a ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc910196e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcde29bd3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce583365 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc6860f6 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe42e3d99 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe43b5a89 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe54035cb ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef01aedb ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefdc1611 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf09a18e7 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1a2f9b8 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf71e2208 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf72d1b3a HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9d482cf ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff343368 dot11d_update_country_ie +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x018efaab iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04de8714 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x099b7249 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a9b39da iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c25b2b6 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0cf50088 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ea36755 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f061a2c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10dd75fe iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d393e3e iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e2cf70b iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29b8751d iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30e19708 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34583ea6 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3497c061 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37f2792c iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3af91b30 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3cfc0e1c iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d30bbe0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40d8caed iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x459ff073 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c0144db iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x645c7ea8 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cccf3a1 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8099adfb iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x812e035c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8294a6ca iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x855c2be2 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c2aa288 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90972f97 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6d60fb9 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc24186d iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbddc6a86 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe387aa1 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe4a6903 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc13de427 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2e24ce2 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd79c4ec3 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd91c7ed0 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdff2c30c iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6c7b277 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfaa24271 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd2af6bd iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffea2a93 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/target_core_mod 0x07dabb74 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x13243f73 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x133d2f23 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x14ec3226 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1604a452 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b8f4825 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x1df719ea target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fd3f351 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x22b40f60 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x22bb7131 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ac3db70 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c730c2c target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x31abade6 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x31e806d1 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3431aa0f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x39301482 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a3cb3e9 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a987c1c transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c0ff070 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c278c3b transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x413a01ed core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x469b3ecf target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bb4d34b target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fbc2775 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x543adc74 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x57d72642 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7a8bf1 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e3303ca target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x61f305c7 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66293e97 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6705a7cd spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x69ab0cd3 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7014f8a7 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x71aa8eff target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bf6d35d target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e05cb32 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e4439ba target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8431590a passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dda50eb transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f1f0c55 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x9191f530 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x97ec7d0a target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x97f008c4 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cb3f9a9 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e5dc5bd core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xa139874e target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa62e4e71 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xac518aa9 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xae310a06 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb098e190 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1a87011 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5a12000 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbca9af70 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd00438b core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3bc151 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbef23b97 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0f378ed sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4fc7028 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaf3da4f target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd52ac89 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0bb8065 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0f57d99 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3765b49 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0f22298 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1209c2b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1729b63 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1d2e176 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf404bcfc sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xf57310d6 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9b62924 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdde2c8e target_undepend_item +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x18a5f189 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb5aa72a2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x35fc51c9 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18f6a4ca usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f4eb96b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3876e864 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3c5a427c usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4fcf8ea6 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65f4122f usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c7e687b usb_wwan_get_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9686e6d8 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9b7f9523 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaa9443ee usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad1b6a79 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb11581f8 usb_wwan_set_serial_info +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdaa216f7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x28b9bce8 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x583f0ddd usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x056c2902 mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x15e30906 mdev_uuid +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x166e641e mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x37855645 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x47e1fdba mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb2a35052 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbd391677 mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc64f38c6 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcdb0f177 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd33509cf mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd340d8fd mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe96a2135 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vhost/vhost 0x36c1898e vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xd0e6384a vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x029cea78 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0765a1e4 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1537fdb8 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1851abb6 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x1ad4f052 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2e0989c7 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4d7e3b8b vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x6036936b vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x831227bb vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbc66815e vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc520b616 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc9b4a67b vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd099974a vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xdc2d9f94 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe42f476d vringh_notify_disable_kern +EXPORT_SYMBOL drivers/video/backlight/lcd 0x32b47d09 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7136ebb9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcbe33ba3 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd574224c devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x02f8659c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x27a1ea01 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x57578fd2 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5f7c57ad svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb8ab2695 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbcf22d26 svga_get_tilemax +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 0xe276302b svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xdaf5c1dd sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x1aa26b89 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe4af5cf9 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 0xb12cca7e cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x299330db g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x594777ca matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x98c5cd94 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6fe78247 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa7963810 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xae14962b DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcfbf39d7 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc2a03a2e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbba35cf4 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x10e09b33 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5d7314cf matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6bf6f485 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x95e3b2af matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x56d08643 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfcc8f53d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x537ddd08 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5ae14d7c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8165424c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8a7e3577 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb2326f95 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x312b15be mb862xxfb_init_accel +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/w1/slaves/w1_ds2780 0x1bb2abb8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9c03e7ed w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1af8ec19 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb27aa126 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x01c24aeb w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x3925cbd4 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x3b85a77f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf5cbcb52 w1_register_family +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x225c2fb3 bd70528_wdt_set +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0x999efc14 bd70528_wdt_lock +EXPORT_SYMBOL drivers/watchdog/bd70528_wdt 0xb2201ec1 bd70528_wdt_unlock +EXPORT_SYMBOL fs/fscache/fscache 0x00a61112 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x01641a6c __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x03b29331 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x0447ae2b fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x07066ebe fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x08a500d9 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0edfee88 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x1215956b __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x16df79e7 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x18e119b5 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x1b248081 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x2bed62b6 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3cefc884 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4331ac89 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x4f08d32b fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x539e861c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x54e0c819 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x565172c9 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x60b50f44 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6cc1e5be __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7475b5ba __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x769f0fe3 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x79f18d57 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x7b3d0e8d fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x8db23417 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x928f02b6 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x9433d845 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xa1d99a7d __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xa28f206a fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xa3202501 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xb2028e6c fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb5d85946 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbaced72a __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbe9ca713 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc22ddd1a fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xcbdcf622 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xea7e5a93 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf0a210d2 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf10da5be fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xf55bf88d fscache_obtained_object +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x10a3fb77 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3a12daf4 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8dfd6b3a qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8e3662fc qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xa9123630 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xc6975869 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 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xe2aae5cc crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x530c91de lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xec79010f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x39d8b3e3 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x63b04d91 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x704b12b9 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb6e6d52f lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf11475b9 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfb39edec lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x0b000fe3 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xa028d450 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x4eb93e93 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xb1eb7e9f unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x082bca33 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x0d4ec335 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x15ad711e p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x196602a9 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x1ba3339c p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1d06de72 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x1e78ddfe p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x2191b9bd p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x21b53731 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x241b31ed p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x2b1987ec p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x341586a1 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x384bb570 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3faee1e2 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x55efbd82 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x59afa7d7 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5fa81542 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x63901c9e p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x7231d507 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x77f65214 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x7ae25f22 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x80d63275 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x95edd5c8 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa0f2b004 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa4f04f52 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa9919ae9 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb2bce7e4 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xba83b504 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xba87b66c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xbabfa14c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc3d56bdd p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5955e0e p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xcd81d802 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xcf7c617e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd45b91e1 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd676f982 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xda7177a7 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe7c12a92 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xeb9548f5 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xefac9e77 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf829ed21 p9_client_symlink +EXPORT_SYMBOL net/appletalk/appletalk 0x101d96e3 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x826b5cf6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd31fc1da atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf900b4b4 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x0dbb07e7 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x23c4a8bc vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x24c47047 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3827b509 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6217cfe1 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x7c138ab2 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x950a6e04 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xac33dd7a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xcfcbe3a4 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xde1c1729 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe0526be7 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf55df715 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf6823e13 atm_charge +EXPORT_SYMBOL net/ax25/ax25 0x03170ed0 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x45aa2fa7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x67ce5dbe ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x80217460 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x98c69450 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xbb74ceb3 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcdeefc71 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf7e68b03 ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09dac9e3 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d36a173 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15643465 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a6ed6b7 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20e5e316 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21f71691 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22f0ed0b hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bcd4f35 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2dfd481a hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f1a2139 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33905342 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ae14814 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cdbca24 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fdf2436 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x522b65a8 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x531a53e3 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f65db98 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60531779 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61888290 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61cc0f75 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x651e1ddf __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78116510 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a2db68f 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 0x7f01922b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f22ce2f hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x866a8f13 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87034110 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x982fbd4a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bb90f64 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xabceffde l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8854a72 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc04f05eb bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc470804f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7479903 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcca1e4ee l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce4361c8 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6a9afec hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7a091a2 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea2de72a hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb774d6c bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf04dac4b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0c6b87e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2bc3788 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6db98bf bt_sock_wait_ready +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3c83285f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8736d157 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd61e8120 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd6935801 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x10121c5a cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9596fb6d 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 0xbd8a5ace caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xc33befea caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xe95b8be2 caif_connect_client +EXPORT_SYMBOL net/can/can 0x270b16df can_rx_unregister +EXPORT_SYMBOL net/can/can 0x356ff147 can_proto_register +EXPORT_SYMBOL net/can/can 0x938d2ead can_proto_unregister +EXPORT_SYMBOL net/can/can 0xafdb70ed can_sock_destruct +EXPORT_SYMBOL net/can/can 0xd43adf99 can_send +EXPORT_SYMBOL net/can/can 0xdf5aaf2c can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x013cb19b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x044483b8 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x088be834 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x10fc4509 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x112459aa ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x12502c19 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x16555913 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x171fa775 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x17cffd08 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x1b37e7e5 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x27033697 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x28866fe2 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2bea193b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2dab1cb8 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2e05864c osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x300d2568 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x30229b0a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x31a95c51 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x38ff9352 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3ba628ae ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3e3fd0bc ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3f486062 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x419d8204 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x43308d11 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x4341f878 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47606c10 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x479bbcc0 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x48416ae7 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x4a9f8fea osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4b965906 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x4ce6642f ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x4e52f86b ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x512e0553 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x52622a37 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x53f18dd0 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x54ab733d ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x54bd2545 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x54fe72a9 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5931db9a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5d9d7ddc ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x5f1f272e osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x60c7f11e osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x69daf747 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6e6c7501 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6ed5ffaf ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6f5b736a ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x6f805c80 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x75c32213 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x83cf8b37 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x86a62931 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x894f318d ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8eaa27b2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8ff8d9ec ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x92a7afe7 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x98f3c2df ceph_con_send +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 0x9eb25e26 osd_req_op_alloc_hint_init +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 0xa0c9e99d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xa1d1e800 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xa3d6f049 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa471b6db ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xa4d99599 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa8bdaf25 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xa8c4e8ad ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xa9240894 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xabd0a0fe ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xac502444 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xacaee186 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xacc57b47 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae795e28 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xafadb9dd ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1b2c023 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5d3161c osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xb5f26510 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8fafa4d osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbacd8c61 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc26ca907 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc3a9f43a ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xc3c3008f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xc524868d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xc723cebb ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc730fa7f ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xccfcf573 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd05345a4 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3a1c35d ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xdc7cf689 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xdcd96327 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xdecc93f5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xdee832b5 ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0xdf625607 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe059a2d4 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xe2b09dad osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xe360f8c2 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xe42cce8f ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xe4eff895 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe9ec2ed3 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xea537b09 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xeca9353d 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 0xf0f4d55e ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf501ca47 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xf81f9485 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xf94a772e ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfbe2ea53 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xfcbce3d1 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xfd45df80 ceph_msg_new +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd4c6b9bb dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xee49c470 dccp_req_err +EXPORT_SYMBOL net/dsa/dsa_core 0x73f59885 dsa_port_vid_add +EXPORT_SYMBOL net/dsa/dsa_core 0xd4be61d9 dsa_port_vid_del +EXPORT_SYMBOL net/ieee802154/ieee802154 0x344a97b2 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ada6284 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x74e4ab98 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x89c3531d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x92027865 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x994798f0 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x2bd5d196 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x71c05057 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x56c48538 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x44480422 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x863a04d6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xab4b0bf9 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcc14fb27 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x03ca3881 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7bd726a7 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e6947ee arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfca70589 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x30dd2df7 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc0d1faa4 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf93dafb1 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x878dbe0f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x9ea41663 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x22786da7 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d1995b2 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e502734 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5d38e3ba ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6169b740 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x783e2086 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x95ea0c51 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb987f96a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcb510543 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xce1d1a62 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9641050a ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb282b0df ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdfe29156 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x8ecfef15 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xb6be1f85 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1d9ebf45 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xec14b608 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/l2tp/l2tp_core 0x3a0112ed l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_core 0xc4146952 l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x1b2f163e l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0668f87b lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x0d1c05bb lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x21edbb94 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x261c97a5 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x335cfca8 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x337574d1 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x413d4be2 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7fd673b0 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x1048da90 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x2c0cf718 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x2fc39bf4 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x48f5cbe3 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7031d707 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x8022b9af llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xd70e9586 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x001af1dd ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x00493545 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x0214c884 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0b3a6206 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0e4c39f9 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0ee548f5 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1093d731 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x157de1af ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x168f5e78 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x18de6b70 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x19cef50e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a182ce9 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x1a75a8d4 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x1c0f80c1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1dee911e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2278c2c9 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x239653fc ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x249a57ed ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x2abff6fb ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2baf00d1 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x309fcdf1 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x31cf4592 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x34d5fe59 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x385b25bc ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x389cab1e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3abc1a1d ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x3af78f95 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3b23b0ad ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd5d199 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x40ec21f3 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x41e99458 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x44d9a190 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x45af090c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x492b9a42 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x4b668bbe ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4da72237 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x51b80286 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x53247e6f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5685fb1c ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x58ed9bf9 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x5e997736 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5fa16d03 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x62c1e96b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63bff904 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6d0d73fd ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6dcabae9 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x70b92475 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x74ba291d __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7563fb93 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x757cd266 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x782821c3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x78842a24 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x78e4c31e ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x82fe3fd1 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x88c9f5e2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8ab6663c ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8d0c5583 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x922ea531 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x93fe0e05 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x95843a44 ieee80211_csa_set_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9973b50c ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9bb1aea1 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x9bed1a1f ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x9fbed24a ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa13a47bc ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa17acef4 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa609a50f ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xa805e1bd rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xa8898f2c ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xad34af81 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb13e7e7c ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb377625b ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xbedc63f7 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b97781 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc13c0602 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xcad66d58 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd2eb5ee4 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd3653f32 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd43d0db9 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d5bc23 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd7a1f163 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xdd84c0af ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe1cb1046 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe2141fd5 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe345725f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe5fb9efc ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xe657298c ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xe6a8e35d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xeb6c1712 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xec7bc8a8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf1f36b2e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xf4ab25ce ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xf5d7a2d1 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf7bdb96d ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xfde56c61 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac802154/mac802154 0x1ecd6194 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x536e3585 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x568aadc5 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x656b3ac5 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xaf6a7816 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xdf31921b ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe53d4671 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xff05cdc4 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x013bff5a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08fa5a54 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e5a6499 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f61b1d2 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ca8a37d ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ece9721 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8895ac87 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97c48ed3 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x983b83b5 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d7f0302 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa013095e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7097d4a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb117f362 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8555a95 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeba89084 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x19c352c6 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x43c753a2 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x35f74d65 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x3826b335 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x3bbec4ad __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x86779d74 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbeb529d3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3029a92f xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4dc6c535 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x61dafb7f xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6ff7848a xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x8c764ac6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x94acc00a xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb76167a3 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbc378c8e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc1727831 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +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 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0de5c77f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2a002f18 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x30eb1a0a nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x317bd99d nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x3e3e3377 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3f2d38f2 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x490b0857 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x58944a32 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5cb55915 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x5e988ab8 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x63b7bbb3 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x76fc50d4 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x77f526ca nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x81e02c5a nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x82d73f39 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x875858de nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x99092083 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa5cc1e0a nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbcc6a99f nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xce16e96a nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe7c10596 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x04c12358 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x0ad54f10 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0c5aab03 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1314d1e3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x161bede6 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x178fb574 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1ad75dc0 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x20a97919 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x272a422c nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x38958d2f nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4252e241 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x42c7897a nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x42c80384 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4f95056b nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x66389af7 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x66f4cd6c nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x6aaca8a3 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x6f535998 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7767af5c nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x786bd7a1 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xa208fadd nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa465183b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb3d0b121 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xb8468e40 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcbaab36e nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xd65a38e6 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdd089631 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xf5d0489c nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf7700ad9 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nfc 0x01b751f2 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x05ab0e5e nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x0be3caf0 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x0e92c682 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x411075a1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5127e3df nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5654bb50 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5d13717b nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5fb3bb03 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x6557f59a nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x770e2a38 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x89915c2a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x907fcedc nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x9229fdb1 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x9346c716 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x9921718c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa616eab5 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xb2c01275 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xc73c7f09 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xcc2f4d14 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd5d37aba nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xdac37a02 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xe5a71632 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xecc01128 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xf3d74be0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc_digital 0x1c8c7652 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4efae3d9 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x79c215e6 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb4c96180 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x04cb4658 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x247da45a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x2984d5dd pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x3d1863e4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x61286572 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x98f9babd phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xcaca0e06 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xe7614cb7 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x022c0b29 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14801116 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x182987d3 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20803f48 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2efe5631 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39046112 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x51d4b737 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c702ef0 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7646243a rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x85c286c1 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x895b5e51 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x94f0c3b7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xba4c68af rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3cf17ba rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcad22281 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd8f31025 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdcae71a6 rxrpc_kernel_end_call +EXPORT_SYMBOL net/sctp/sctp 0x5aee04ec sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x10618448 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x32a2ff4a gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7e95016f gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x081c57c5 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2d072849 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbbc60303 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x51f893b1 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x7fb96869 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xd77a66f0 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xe782a0fe tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x11b99744 tls_register_device +EXPORT_SYMBOL net/tls/tls 0xa422a6f9 tls_unregister_device +EXPORT_SYMBOL net/tls/tls 0xca9a857d tls_get_record +EXPORT_SYMBOL net/wimax/wimax 0x7a9bb4c0 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xda55fd56 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x00159d2a freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x059a02fc regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x08dcf58b cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0d1ab1ff cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0d349171 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18bbe0cb cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x1ad9123f cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1c8b61c2 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1eead4dd wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x25c65eb7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275867e8 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x275e1e15 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x28496ea5 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x37d294ed cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3ad226ca cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd8aaa1 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x3be52ad5 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3d67c391 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x428279e4 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4376d9bf regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x43f5efcf cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x46312808 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x4918517b cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x4ad0cbc3 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4b2b117b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x4c0358f3 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4d2c8003 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x528a099b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5669d39e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5892d3c9 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5a8c6b01 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5f93beaf cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x6027652e cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x61bb527d cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x634cbc6c wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x6439af62 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a137ea6 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6bae93bb cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6eb89e28 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2d90ee cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7297c031 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x741207b4 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x77509f6c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7bf39f4b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7eac6177 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef9f5e0 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8173b9bc cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x8519f343 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x85f83d64 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x8912a99a cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8a8626bd cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8ad66f6a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8ce7a2cb __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x91a57624 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9241cd2a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x93878691 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x968bfbca cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9791d2e6 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x97fa1a05 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x9c69c7d2 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eae6235 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x9fca9ae4 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa174fa4d cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa6beeef0 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xa6c90668 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xac97a207 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xb4a9fefc cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb50600cd cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb5c3681d cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbe85eed8 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbef11f56 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xc4956c6d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc7482333 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc7a21550 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc8573e70 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xcaac5422 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf2b461f ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xd00a9761 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd168f949 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd1edb350 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xd2053387 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xd5032b0f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd96b1461 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd9e191e3 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xda706a85 ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xdad266a4 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc148fb5 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xdd0625fa ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xdd139656 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xde381d6f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdf1dc6ee cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe07ab84a cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c3417b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xec1db501 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xece30552 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xed66e05f ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf0b64de5 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf2667ddc cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6837d1b cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xf7b6a708 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xf8d03c24 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xf8fed79e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xf970a4ee cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xfb23fa8d cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xfbfa218e cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xfc6d3717 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/lib80211 0x42718279 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x6e9edce8 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x73cd5ed6 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x750d8496 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xca5305d6 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xed832420 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x774f1bcb ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x90677de3 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 0x2c53b383 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x380b40d1 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3b5d52eb snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0xf4eed787 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 0xf0a1fdb3 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 0x1b534c8c snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x040a6d2f snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x08c78d86 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1f62ef1d snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ae4a671 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x2b0ed12f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x2cabfd76 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3164fb07 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x38a34606 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3bef4efb snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x448ef121 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x47775919 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x494d2602 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b4a3669 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x4d1fe666 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x5edaa3ca snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x663c90fd snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x6d719cb6 snd_ctl_boolean_mono_info +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 0x7dd513c4 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x82bf1202 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x83070f3c snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8691e5b4 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x8b5b9ab7 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8fde608c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x975e3022 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa3f2234d snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xa42d2935 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb0bc83d0 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb52cc8a2 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xb595b799 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xb814f403 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xbae211d4 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xbb155ac6 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xbd569eb1 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xc2e99867 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xc34d9bf7 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc7c4c5d4 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xd35ef975 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xd390f91a _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xd43cf6f0 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xd5200f22 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xddf18497 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xe119b15e snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xec1bfc23 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xfaf8802a snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xfb068266 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xfb1743f5 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xff967cc4 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x4a17dde4 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0200dfb7 snd_pcm_hw_rule_add +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 0x0c6f2509 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x11077c70 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1549e524 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2dfdff69 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x4e931ca6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x57f2d522 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x594bcaf5 snd_pcm_new +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 0x67829bcd snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6abf4a28 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6d944b55 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x71068eaf snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x76734049 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7ef7bd82 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x7f8b8889 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x858959e3 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x92bc39e4 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x92f52569 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x93f1f35e __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x944690d9 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b105fc0 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa3b6a7d2 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa7970c90 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa9976a21 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb0be816e snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb713eb0c snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb958acde snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc2f3324f snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc46a12ca snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xc732e1e8 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xca7066c1 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xd820ff7d snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdceb5ed5 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xdf9f4b39 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdfa8d002 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xe165552a snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xe466c8e1 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeb1ede1f snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xedd0609f snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xf291ba13 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf6918698 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xfd703e55 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffb1ac87 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-rawmidi 0x03a7b594 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1aeb125c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20bfd019 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x224ebfcb snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2cc9e79f snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3163611b __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x41e6016f snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4331b9b5 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47653600 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4bf1530c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4dcbb488 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5589f572 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68ae8c95 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7263c4d2 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7cc857d1 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9f9e7d76 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc0e7e3e8 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc46e40e0 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xda84c683 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef0c45cf snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xe2a20887 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x31e83f10 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x391598e9 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x50af23de snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x633c9745 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6b4248a6 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x790aebed snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x889b7a5b snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x8b4c795e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x99c52e32 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9aa80085 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xa8d201f2 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc7640bba snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe371699c snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x9bd59776 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 0x2c001485 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x72cc718b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7ae6881f snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ef0edaa snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9f1c6ee7 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb28fef34 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb126259 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc0f8b279 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe7c4dd03 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0d0a8f9d 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 0x309f41f3 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4860c8ff snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x61146838 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6ed6ab74 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8bcd81e6 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa31c7053 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xda67099e snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf8d829ad snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x010997c2 amdtp_stream_pcm_ack +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0403e9af amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08f07dda cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12ff374e amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1fe60bac cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x25021901 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x25a77064 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d5974cf fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x337504aa fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33b82e13 snd_fw_schedule_registration +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46e6a838 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d7fa2f6 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x680c9936 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x694ab346 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d90dbd0 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f098466 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7f286934 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x83d25b54 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94c918e3 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d551d50 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fa41fcd snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac9e861c amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4881536 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbc92ae0 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc285504 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xccdf5997 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd20ed95e cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3a36f06 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6fee2a6 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfee25445 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffe24feb avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfff4fb7b iso_packets_buffer_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x411d3acc snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc6325f31 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x17e28524 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d87e94d snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x56430877 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x669adc75 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x91681358 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbeba7d5c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd5115647 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfe323e81 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x83be9324 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x86ea6103 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdf6f5da1 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xead10032 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3fd1f5be snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x86c43276 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x00ead836 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x068614f6 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2111134a snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x42ae52e4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa94deda9 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe84e09ba snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x14e3d49e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5c39909c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d7c6ab9 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8c5976d0 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaa865752 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd340a7ad snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd726ec3f snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xed70ea44 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfb8d8343 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfd6a128f snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0162f61f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a16c9d8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2daef4a7 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3fd8a439 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4cf41d2b snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73daa2db snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7af67cb8 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c648858 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x821c3880 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83f9ae07 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93d227d9 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9a38543b snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9832b1a snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1978622 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc88d13cd snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe047f2c1 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5154ff7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x42f119d6 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x985b14ee snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb8b43b7a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f27c24b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1cf5777e oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x281f3d63 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a6231de oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2dc032da oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f383554 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b7dab3f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68d55416 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x74fa7a3f oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7a0ba405 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fb0f5b6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c89fed9 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d34d11c oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e0b8e35 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e7eb2a8 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3f9f170 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf811bd1 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5022980 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xedd940f0 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee20425f oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xffda69d1 oxygen_write_ac97 +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x39b983a8 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5b3d3ac2 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x457af199 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbc0b33af tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0xef6d59c7 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x016f2bef snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x04a2e513 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06f6be1f snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08e173e4 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bdeb750 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13410259 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x14736df4 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d6fb2d4 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x206364cd sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34af4ce5 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35597033 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3fa718e6 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x485495c0 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x488bcfb4 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a71b4e8 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d3fd443 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53c06a93 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5410563b snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e906ffc snd_sof_init_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5eaf7ac1 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ef2b3b1 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72534946 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73128ce8 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7983a37f snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d381bbb snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x822e5491 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x837c3f53 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85016169 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x877428be snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92341b74 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x946e5871 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9dcfd454 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2846c6d snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9e7f88c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac820012 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb082b268 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbaddd8c5 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1ed4e47 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd336b2a1 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd797b285 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe002504d snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4525599 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4cc2df2 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xebe2e511 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf25a2d68 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf716076c snd_sof_fw_unload +EXPORT_SYMBOL sound/soundcore 0x23e23dfa register_sound_special +EXPORT_SYMBOL sound/soundcore 0x44427f0c register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x53f60fd5 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc46bc883 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf99051df sound_class +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 0xb643e063 __snd_usbmidi_create +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 0x000ec0a8 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x00119c51 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x001c8b9e unregister_console +EXPORT_SYMBOL vmlinux 0x001d84ab page_frag_alloc +EXPORT_SYMBOL vmlinux 0x002eba02 ip_options_compile +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x00401cb7 mutex_unlock +EXPORT_SYMBOL vmlinux 0x0046afc6 file_open_root +EXPORT_SYMBOL vmlinux 0x00689eb0 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x006d6c3b __block_write_begin +EXPORT_SYMBOL vmlinux 0x008fa457 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x009f8c23 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x00b7b77f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x00d25b9b dcb_getapp +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e1e4be twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x00f2943c mmc_detect_change +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0121864c generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x012683fc fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x01276f43 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x012f66c2 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x013d0949 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x016d460d km_query +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x0175de53 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x01872f6d in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark +EXPORT_SYMBOL vmlinux 0x01af5d8e dev_printk_emit +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d3d849 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x01d86c0a __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x01ebcdd0 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x01fdf20c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x022e985b netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x023116b1 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x025fd058 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027e7676 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x028a3043 try_module_get +EXPORT_SYMBOL vmlinux 0x0292d67a unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029a18c1 skb_copy +EXPORT_SYMBOL vmlinux 0x02a0a692 phy_print_status +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a3cf4f bdi_register_va +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c51fc4 submit_bh +EXPORT_SYMBOL vmlinux 0x02c91dea mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x02d776d4 dump_truncate +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e8283d tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ff7d45 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x03066416 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x03219a49 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x033105c4 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033bb92a skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x034ed613 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x035008c8 sync_inode +EXPORT_SYMBOL vmlinux 0x035d543d configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037acf44 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03988f1b dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x03a220e2 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x03b5a07f pci_iomap_range +EXPORT_SYMBOL vmlinux 0x03bb1ebb bd_start_claiming +EXPORT_SYMBOL vmlinux 0x03bec439 request_firmware +EXPORT_SYMBOL vmlinux 0x03cdaa68 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x03fafb7e nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0404aa38 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x040c02a7 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x041eb99e con_copy_unimap +EXPORT_SYMBOL vmlinux 0x0429fdd7 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045702c3 inet_protos +EXPORT_SYMBOL vmlinux 0x045e6e6a fput +EXPORT_SYMBOL vmlinux 0x046a10ad ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x046b72c5 pci_release_resource +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0489e065 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x04988634 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x04ae64e6 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x04b16957 udp_seq_next +EXPORT_SYMBOL vmlinux 0x04c4d916 xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x04e005e9 arp_create +EXPORT_SYMBOL vmlinux 0x04e364d4 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x04e4ad34 update_region +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ede797 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054bb9a7 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x054c90f5 dev_addr_init +EXPORT_SYMBOL vmlinux 0x05519d30 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x055e94a1 radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x057f000c __netif_schedule +EXPORT_SYMBOL vmlinux 0x05adae3b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05c0134a flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x05cfa3b3 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x05d39621 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x05ff60df input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x060846e9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b0965 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x06288383 d_instantiate +EXPORT_SYMBOL vmlinux 0x062d901b netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0641213f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x06460799 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x06580f54 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x0665322b vfs_ioctl +EXPORT_SYMBOL vmlinux 0x0669cf64 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x066a00d0 bmap +EXPORT_SYMBOL vmlinux 0x06a6f3cf __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06ccd967 generic_read_dir +EXPORT_SYMBOL vmlinux 0x06d319cf of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x06dfd0b4 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x06fe7255 redraw_screen +EXPORT_SYMBOL vmlinux 0x07149623 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x071dca3f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0754e4e6 unregister_netdev +EXPORT_SYMBOL vmlinux 0x075c642d skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x076479e7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x078743d0 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x078c95c0 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x07945b60 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bd15ac __debugger_sstep +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d56a48 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x07d5b6f8 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x07d5efa1 free_netdev +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fd0feb address_space_init_once +EXPORT_SYMBOL vmlinux 0x07fdaa8f __brelse +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e954f secpath_set +EXPORT_SYMBOL vmlinux 0x0834a33d inet_csk_accept +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085c22f3 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x085e1845 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x086a97d2 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08b691a9 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x08d0b30a input_open_device +EXPORT_SYMBOL vmlinux 0x08d39930 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x08d538ae kobject_init +EXPORT_SYMBOL vmlinux 0x08e2f0b2 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x08ea2833 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x09058496 mpage_writepage +EXPORT_SYMBOL vmlinux 0x090ea3b2 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x093c904f inet_frags_init +EXPORT_SYMBOL vmlinux 0x093f8b90 phy_driver_register +EXPORT_SYMBOL vmlinux 0x0945a004 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x095f09d5 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x096114ce ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x09616c21 __krealloc +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099e4804 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x09a336c5 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x09a77cfc blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x09b77c2a __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09dcce32 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x09fb04d5 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x0a278c22 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a471030 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8a8bea blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0a8d1d4a PDE_DATA +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aad0289 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x0ab9dd66 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae09f19 fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x0ae4910e uart_suspend_port +EXPORT_SYMBOL vmlinux 0x0b001392 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b20fc9a generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b3e3f97 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x0b55d0f4 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x0b58005e _copy_from_iter +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b750d21 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0b79eccc rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x0b88e4b4 vfs_link +EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0b9fe1a1 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x0ba87731 phy_attached_print +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd32f7e netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0bd7aa0d security_path_mknod +EXPORT_SYMBOL vmlinux 0x0be9dd33 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2e55b6 user_revoke +EXPORT_SYMBOL vmlinux 0x0c3dc5d1 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x0c41fa52 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c959352 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x0cb0601a node_states +EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +EXPORT_SYMBOL vmlinux 0x0cb216ad sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x0cb75b89 sock_rfree +EXPORT_SYMBOL vmlinux 0x0cbd0bf6 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5f33e dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce5bf08 kobject_del +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d08fe91 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x0d3849cd cdev_device_del +EXPORT_SYMBOL vmlinux 0x0d49b93f __debugger_ipi +EXPORT_SYMBOL vmlinux 0x0d4a8ecc input_register_handle +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5aeb34 netdev_info +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d64bc40 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x0d685b69 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x0d748fce nf_reinject +EXPORT_SYMBOL vmlinux 0x0d769a63 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x0d99f68f compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x0d9d1924 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0d9f561f input_unregister_device +EXPORT_SYMBOL vmlinux 0x0daedb4e mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e2c43eb mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x0e34730d genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e45db07 key_task_permission +EXPORT_SYMBOL vmlinux 0x0e5c3b12 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0e5e6715 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0e6da327 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0e73b6ef seq_dentry +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7d88e5 udp_seq_start +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0eb201ec ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f39b050 key_unlink +EXPORT_SYMBOL vmlinux 0x0f41bee1 __devm_request_region +EXPORT_SYMBOL vmlinux 0x0f5ad093 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x0f626c12 d_set_d_op +EXPORT_SYMBOL vmlinux 0x0f629969 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x0f6c95cc scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x0f782c9f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x0f808248 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x0f8dbbf2 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0f98826e eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb588fd __alloc_skb +EXPORT_SYMBOL vmlinux 0x0fb72c72 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe9dd69 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x0feac0ae sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100de998 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x1022d104 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x10288e50 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x102d6920 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x102e2656 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x10349b50 agp_copy_info +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1074afbc devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x107ad464 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108b84b1 kset_unregister +EXPORT_SYMBOL vmlinux 0x10afac40 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10ccfcad tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x10d5ea0b unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x10d97fe2 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10f0d053 may_umount +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1110d8a0 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x112464cc dst_init +EXPORT_SYMBOL vmlinux 0x11260219 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x112708b3 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x1130510a seq_putc +EXPORT_SYMBOL vmlinux 0x11366ddb rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x113d7ad4 current_time +EXPORT_SYMBOL vmlinux 0x1155cb5e fd_install +EXPORT_SYMBOL vmlinux 0x1158a112 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x116299ff security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1184e5ee vga_client_register +EXPORT_SYMBOL vmlinux 0x119d5ada set_security_override +EXPORT_SYMBOL vmlinux 0x11a76671 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x11b51574 bio_free_pages +EXPORT_SYMBOL vmlinux 0x11c3c712 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x11c4e072 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x11db4786 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x121c8f98 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x12358c2c kernel_read +EXPORT_SYMBOL vmlinux 0x12371e29 __do_once_done +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a3f776 end_buffer_read_sync +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 0x12fc40d8 dev_printk +EXPORT_SYMBOL vmlinux 0x1300ac5d eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x1302880c param_get_ushort +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1314a101 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x131bd218 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x131d2d03 genlmsg_put +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133e39e3 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x1343d20b agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13701a6e ppc_md +EXPORT_SYMBOL vmlinux 0x13864c1a dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x13885afa netdev_notice +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13b169cd __register_chrdev +EXPORT_SYMBOL vmlinux 0x13b64074 udp_ioctl +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13edd007 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x14013cbf inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x140cdfe8 set_page_dirty +EXPORT_SYMBOL vmlinux 0x140dc616 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x14239ea8 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x1434c013 of_iomap +EXPORT_SYMBOL vmlinux 0x143be4d1 netlink_unicast +EXPORT_SYMBOL vmlinux 0x1441d91c security_tun_dev_attach +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 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x148fa045 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x14962055 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x149cd278 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14a0f983 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x14b9b654 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14f341af __kernel_write +EXPORT_SYMBOL vmlinux 0x14f5d9c7 skb_dump +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x150de5c6 pci_request_region +EXPORT_SYMBOL vmlinux 0x151acabd sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1541b0b0 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155141eb blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x156ba0f1 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x15a0b6a4 pci_get_class +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15bf14e0 locks_delete_block +EXPORT_SYMBOL vmlinux 0x15c8107c giveup_all +EXPORT_SYMBOL vmlinux 0x15dffab5 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x15e2773f vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x15e639cf proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x15e7247f user_path_create +EXPORT_SYMBOL vmlinux 0x16042c88 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x16439d7e current_in_userns +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168a311c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16bb54f3 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x16c140fe tcp_have_smc +EXPORT_SYMBOL vmlinux 0x16c6a47e sk_stop_timer +EXPORT_SYMBOL vmlinux 0x16cd4faf vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f98230 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x172bd99c simple_setattr +EXPORT_SYMBOL vmlinux 0x172c1da3 dev_set_alias +EXPORT_SYMBOL vmlinux 0x1731f461 end_page_writeback +EXPORT_SYMBOL vmlinux 0x1756bdcc dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x17583582 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x176108a8 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1766180d pcim_iounmap +EXPORT_SYMBOL vmlinux 0x1774d0ba unix_detach_fds +EXPORT_SYMBOL vmlinux 0x17774b2f nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1777ce8f pci_write_vpd +EXPORT_SYMBOL vmlinux 0x1778897b kset_register +EXPORT_SYMBOL vmlinux 0x177a4cdb pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x17814a26 napi_disable +EXPORT_SYMBOL vmlinux 0x178e53bf sock_kfree_s +EXPORT_SYMBOL vmlinux 0x17986621 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x179d2320 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x179d4578 ppp_input +EXPORT_SYMBOL vmlinux 0x17abdcc4 generic_listxattr +EXPORT_SYMBOL vmlinux 0x17c63a0a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x17ca4a75 complete_and_exit +EXPORT_SYMBOL vmlinux 0x17dfb5ff xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x17e3547a eeh_dev_release +EXPORT_SYMBOL vmlinux 0x17ec38aa blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x181252e5 freeze_super +EXPORT_SYMBOL vmlinux 0x18168111 vme_bus_num +EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem +EXPORT_SYMBOL vmlinux 0x1837a061 bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x184502ef qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x185999b4 finalize_exec +EXPORT_SYMBOL vmlinux 0x185a116c __xa_insert +EXPORT_SYMBOL vmlinux 0x18693fb7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x1875b769 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188f1907 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x189d9981 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x18a4301d jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x18a5f087 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x18c0cd67 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x18c5815d setattr_copy +EXPORT_SYMBOL vmlinux 0x18cdb832 dst_destroy +EXPORT_SYMBOL vmlinux 0x18d1d8ec netdev_alert +EXPORT_SYMBOL vmlinux 0x18d5a8c2 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x18df28be xfrm_state_add +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ea500b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x18f12a46 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x18f86c34 release_firmware +EXPORT_SYMBOL vmlinux 0x1945c1fb xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1960d223 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x196cfcb6 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x196fa1e1 fget +EXPORT_SYMBOL vmlinux 0x197147f7 path_is_under +EXPORT_SYMBOL vmlinux 0x1973bf62 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x19896e4c ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a40257 vfs_create +EXPORT_SYMBOL vmlinux 0x19b16b34 up_read +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark +EXPORT_SYMBOL vmlinux 0x19e0f8c4 hmm_range_unregister +EXPORT_SYMBOL vmlinux 0x19e9150f get_acl +EXPORT_SYMBOL vmlinux 0x1a0e06e4 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1a16e704 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a264b88 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x1a292620 serio_bus +EXPORT_SYMBOL vmlinux 0x1a41f09b dma_pool_create +EXPORT_SYMBOL vmlinux 0x1a4ddb60 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1a5bca0d from_kgid +EXPORT_SYMBOL vmlinux 0x1a788956 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a949779 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable +EXPORT_SYMBOL vmlinux 0x1aa48372 lease_modify +EXPORT_SYMBOL vmlinux 0x1ab14b29 dquot_initialize +EXPORT_SYMBOL vmlinux 0x1ab2539c migrate_page_copy +EXPORT_SYMBOL vmlinux 0x1ab5e82b md_register_thread +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1acb1e94 genphy_update_link +EXPORT_SYMBOL vmlinux 0x1adc9ac8 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b117f44 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b173b56 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x1b1fc84f icmp6_send +EXPORT_SYMBOL vmlinux 0x1b2b91a9 put_disk +EXPORT_SYMBOL vmlinux 0x1b3954fd dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1b3ad831 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x1b41c904 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x1b455b31 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b71e215 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x1b7233c6 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd5c214 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c0a1d46 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x1c167dbc get_super_thawed +EXPORT_SYMBOL vmlinux 0x1c2205f9 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x1c227e23 of_match_node +EXPORT_SYMBOL vmlinux 0x1c2cea09 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1c3970d3 pci_match_id +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c6a4f2f kmem_cache_free +EXPORT_SYMBOL vmlinux 0x1c72ea3e dma_resv_fini +EXPORT_SYMBOL vmlinux 0x1c74dac4 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1c7698cb register_sysctl +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c8d4373 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x1c9b6e86 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete +EXPORT_SYMBOL vmlinux 0x1cb17651 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1cb216ff __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cbce4e0 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1cc349ff inet_shutdown +EXPORT_SYMBOL vmlinux 0x1cc4fa08 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1cc573ea xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x1ccdbd0b of_node_name_eq +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d251b23 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x1d2a2c9e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d31f21b framebuffer_release +EXPORT_SYMBOL vmlinux 0x1d3bb06b __ps2_command +EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1d7dcdbd of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x1d8616b5 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x1d9a8283 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x1dbdcb8a ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1dc1b26f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1dc76ecc mod_node_page_state +EXPORT_SYMBOL vmlinux 0x1dd37c05 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x1dd3cb4d security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de486ca fget_raw +EXPORT_SYMBOL vmlinux 0x1dfdca8b genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x1e037223 security_sb_remount +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e320674 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x1e325307 kthread_stop +EXPORT_SYMBOL vmlinux 0x1e33ec04 nf_log_set +EXPORT_SYMBOL vmlinux 0x1e37fb16 phy_device_free +EXPORT_SYMBOL vmlinux 0x1e59397b elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x1e62643b skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1e68ac99 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e79b4f4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x1e82484d scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue +EXPORT_SYMBOL vmlinux 0x1e8bd8d1 dev_add_pack +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eae2e74 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x1ebf5bfe serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x1ec0e318 pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eddd583 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1eeb826d rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x1eee59d4 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x1efe5852 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1f1cc957 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x1f218ce9 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x1f21b4bc vme_init_bridge +EXPORT_SYMBOL vmlinux 0x1f356ee4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1f69ed6a migrate_page +EXPORT_SYMBOL vmlinux 0x1f6a220e alloc_pages_current +EXPORT_SYMBOL vmlinux 0x1f758da8 _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x1f9577cf inode_init_once +EXPORT_SYMBOL vmlinux 0x1f96de0b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x1f9740f6 genl_notify +EXPORT_SYMBOL vmlinux 0x1fa5580b phy_aneg_done +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbe3270 fqdir_init +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd71d2f __scsi_execute +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1feee096 mutex_lock +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20224140 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x2044c382 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x204aa54b rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2061af5b of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207f5fc9 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x209d2f68 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b0b190 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x20c1db96 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20dd6c66 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21161344 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x211fbdc3 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2128c869 param_ops_bint +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21435b2d unix_attach_fds +EXPORT_SYMBOL vmlinux 0x21514170 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x21537694 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x215a0dda fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x21714bca read_dev_sector +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x2198b4ec sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x21a00951 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x21ad225a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x21b101ab mmc_alloc_host +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 0x21cbe262 vfs_get_super +EXPORT_SYMBOL vmlinux 0x21ccf3ba task_work_add +EXPORT_SYMBOL vmlinux 0x21d3b201 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e7665f blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x21f7656d netdev_update_features +EXPORT_SYMBOL vmlinux 0x21fef9a3 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x22046f98 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x22089658 soft_cursor +EXPORT_SYMBOL vmlinux 0x2225b478 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x2225cd1d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224271ef tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x22521026 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x2264b60f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x228b259a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d55e8c ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x230aa905 is_nd_btt +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23433342 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x238101c5 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x23841e00 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x2385a96a inode_needs_sync +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23a71bd5 kernel_accept +EXPORT_SYMBOL vmlinux 0x23ac0918 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x23ae0ec0 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dfd088 revalidate_disk +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f62d36 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2416e9a6 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x2418fbde tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24397c7f dev_set_group +EXPORT_SYMBOL vmlinux 0x243e020b agp_bind_memory +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24503e86 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245c0311 nobh_writepage +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x248347dc iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x2483b5cb scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248ef169 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x249e396d eth_change_mtu +EXPORT_SYMBOL vmlinux 0x24a51891 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x24ae2516 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x24c72c7a pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x250e11bf vm_insert_page +EXPORT_SYMBOL vmlinux 0x25112263 eth_header_parse +EXPORT_SYMBOL vmlinux 0x251ef1dd configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x2523dc43 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL vmlinux 0x2532a53f mdio_device_register +EXPORT_SYMBOL vmlinux 0x2534b072 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x253ef8a9 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x254c9287 ioremap +EXPORT_SYMBOL vmlinux 0x255bf856 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2574f2e4 phy_disconnect +EXPORT_SYMBOL vmlinux 0x2579265d tty_check_change +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x2590a1b8 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x2599213a __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x25a3711a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x25bdd313 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x25c0ad5e devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x25d0b2a0 file_modified +EXPORT_SYMBOL vmlinux 0x25d0fd39 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x25d9e792 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x25dd5ecd d_lookup +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ea44ff scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x25fa38c2 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x2600ad4c param_get_ullong +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x261a47d5 __put_user_ns +EXPORT_SYMBOL vmlinux 0x263af274 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x264b4750 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x264d5034 tty_set_operations +EXPORT_SYMBOL vmlinux 0x264fdd50 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x26626299 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x2670450b vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2689fc0b rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x26b28236 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x26c5e860 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x26e0e411 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x27124045 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x272739cf ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273f93ed sget_fc +EXPORT_SYMBOL vmlinux 0x27477218 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27696e7d mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x27730a2b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2778e113 get_tree_single +EXPORT_SYMBOL vmlinux 0x277ecee1 down_write +EXPORT_SYMBOL vmlinux 0x27813382 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x279bdeb2 pci_clear_master +EXPORT_SYMBOL vmlinux 0x27aff0c7 build_skb_around +EXPORT_SYMBOL vmlinux 0x27b4576d is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c85135 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e8b574 kthread_bind +EXPORT_SYMBOL vmlinux 0x2805f23e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281bb948 security_sk_clone +EXPORT_SYMBOL vmlinux 0x28275ea8 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x28292c15 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x28392aee audit_log_start +EXPORT_SYMBOL vmlinux 0x283d16f1 flush_old_exec +EXPORT_SYMBOL vmlinux 0x283ef07f __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2858112c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x2860cea1 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287876b7 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x28855d28 lookup_bdev +EXPORT_SYMBOL vmlinux 0x289d6ad2 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x28a4589c scsi_ioctl +EXPORT_SYMBOL vmlinux 0x28a67048 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x28ab8282 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x28b6b233 iput +EXPORT_SYMBOL vmlinux 0x28b99eb2 touch_buffer +EXPORT_SYMBOL vmlinux 0x28dbf7ae generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x28ea7c53 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2900d582 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x29369964 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x2942ec70 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x29746ca2 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x297cc86a configfs_register_group +EXPORT_SYMBOL vmlinux 0x297e52bb bdev_read_only +EXPORT_SYMBOL vmlinux 0x297e93b3 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x298eae3e do_splice_direct +EXPORT_SYMBOL vmlinux 0x299d53d4 load_nls_default +EXPORT_SYMBOL vmlinux 0x29a4f787 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x29c8a368 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a1f8e06 blk_register_region +EXPORT_SYMBOL vmlinux 0x2a2f4b53 get_vm_area +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a398a13 registered_fb +EXPORT_SYMBOL vmlinux 0x2a432351 fb_blank +EXPORT_SYMBOL vmlinux 0x2a446281 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x2a45c0be xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x2a76794e tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x2a8c03b0 ata_link_printk +EXPORT_SYMBOL vmlinux 0x2a8d3a4b dquot_free_inode +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9b769e iunique +EXPORT_SYMBOL vmlinux 0x2aa7295d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2aabe50f dma_find_channel +EXPORT_SYMBOL vmlinux 0x2add2d03 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2ae24693 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x2aeb7277 path_has_submounts +EXPORT_SYMBOL vmlinux 0x2af58da7 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x2af88148 of_root +EXPORT_SYMBOL vmlinux 0x2b03f8a1 unlock_rename +EXPORT_SYMBOL vmlinux 0x2b434179 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x2b44729c bdi_register +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b8247fc __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba059db rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x2ba54bcf blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2bad0a16 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x2bafb521 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2bbc8720 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x2be93e13 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2bf20ecb register_console +EXPORT_SYMBOL vmlinux 0x2c01f24b nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2c10c94f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4592b2 misc_register +EXPORT_SYMBOL vmlinux 0x2c466f98 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL vmlinux 0x2c6d1b40 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2c753ae2 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c9fca81 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x2ca3af16 bdget_disk +EXPORT_SYMBOL vmlinux 0x2ca9aa56 param_get_string +EXPORT_SYMBOL vmlinux 0x2cc875fd xmon +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2ccfc2d0 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x2cd28db8 generic_fillattr +EXPORT_SYMBOL vmlinux 0x2cd4dfc8 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x2cd9c0c2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2cec45e5 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2ceccc5d stop_tty +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf7d6bb agp_bridge +EXPORT_SYMBOL vmlinux 0x2d0c9553 vme_slot_num +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1d3e57 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3f8181 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d724827 phy_attach +EXPORT_SYMBOL vmlinux 0x2d844772 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2d890f35 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da69728 blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x2db15732 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2db3bc61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id +EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x2dd127d2 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x2df5d7f2 block_write_full_page +EXPORT_SYMBOL vmlinux 0x2e081dab nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2e0d682d inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x2e0f1d04 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e26ce76 padata_stop +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e43f57b inode_get_bytes +EXPORT_SYMBOL vmlinux 0x2e44181a of_dev_get +EXPORT_SYMBOL vmlinux 0x2e4a86be __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x2e5d71ef powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x2e606cf4 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x2e622d8b flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x2e7f4ed0 tcf_classify +EXPORT_SYMBOL vmlinux 0x2e7fc68d tso_start +EXPORT_SYMBOL vmlinux 0x2e94c5a9 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x2e982a37 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2e99d4fb input_inject_event +EXPORT_SYMBOL vmlinux 0x2ea441b9 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x2eb774de i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x2ebcb8b1 param_set_uint +EXPORT_SYMBOL vmlinux 0x2ec3466e to_ndd +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecbf1bd _dev_warn +EXPORT_SYMBOL vmlinux 0x2ed5974a ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2edbeaf7 hex2bin +EXPORT_SYMBOL vmlinux 0x2eddcc8b cad_pid +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ef83016 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f08aa8f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x2f09efcd xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2f0a1365 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x2f0c009d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x2f129ca3 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x2f22bd8f rtnl_unicast +EXPORT_SYMBOL vmlinux 0x2f2de41c md_finish_reshape +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f30280b bdget +EXPORT_SYMBOL vmlinux 0x2f3be5ac kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x2f3eb6c4 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f5f4eb2 vc_cons +EXPORT_SYMBOL vmlinux 0x2f6147a5 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x2f696289 __page_symlink +EXPORT_SYMBOL vmlinux 0x2f6979e7 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x2f737759 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f91205d file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb342fb nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x2fc43d4f fb_class +EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase +EXPORT_SYMBOL vmlinux 0x2fc7c3b9 giveup_altivec +EXPORT_SYMBOL vmlinux 0x2fd30cd8 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x3002bdc3 block_commit_write +EXPORT_SYMBOL vmlinux 0x3015bae6 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x3016da85 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x301ba21a iov_iter_npages +EXPORT_SYMBOL vmlinux 0x30363109 bioset_exit +EXPORT_SYMBOL vmlinux 0x303b5b94 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x305632a9 sk_dst_check +EXPORT_SYMBOL vmlinux 0x307bb2fa msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c62ee9 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x30c82e5b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x30cfe375 nd_btt_version +EXPORT_SYMBOL vmlinux 0x30f1fb8b simple_empty +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3107ae2f inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3109e330 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3126c9d8 phy_init_eee +EXPORT_SYMBOL vmlinux 0x31344f5b kmem_cache_size +EXPORT_SYMBOL vmlinux 0x31410054 dump_page +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3151c765 param_get_int +EXPORT_SYMBOL vmlinux 0x3182fa48 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x3188a813 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x3188e864 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x319141ef device_add_disk +EXPORT_SYMBOL vmlinux 0x31a4bb76 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x31c228e0 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31c8ddc7 dma_supported +EXPORT_SYMBOL vmlinux 0x31daf932 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x31dd9a30 dcache_readdir +EXPORT_SYMBOL vmlinux 0x31f06703 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 +EXPORT_SYMBOL vmlinux 0x323b9388 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3246f929 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x3250c107 should_remove_suid +EXPORT_SYMBOL vmlinux 0x32571349 dev_mc_add +EXPORT_SYMBOL vmlinux 0x3259d53b ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x325bfee4 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x3265b1c8 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328d1a79 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x32a06ce4 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x32b104ab set_device_ro +EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32dbdd16 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x32ddfc86 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x32e344c0 sg_miter_start +EXPORT_SYMBOL vmlinux 0x32e5d77e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x32e9661c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x33028ad5 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3304be5b dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x33153b97 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x331c041a tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x331ebcb4 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x3326da9e vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x33599a40 param_ops_byte +EXPORT_SYMBOL vmlinux 0x3368d55b tcp_seq_next +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3383e3c3 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x33890e16 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x338c9674 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x339634f8 block_write_begin +EXPORT_SYMBOL vmlinux 0x339f3a2f rtc_add_groups +EXPORT_SYMBOL vmlinux 0x33a047cd shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x33a47ed7 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x33b0abd2 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d7904b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x33e1b0e2 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x33eeb0e9 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f3e0e4 __phy_resume +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340c3c06 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x3421ebcf mdio_device_reset +EXPORT_SYMBOL vmlinux 0x3448f892 nf_log_register +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x345ec247 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x3467c900 paca_ptrs +EXPORT_SYMBOL vmlinux 0x34754065 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x347f3630 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x348a3198 misc_deregister +EXPORT_SYMBOL vmlinux 0x34946699 machine_id +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34cc425a mmc_start_request +EXPORT_SYMBOL vmlinux 0x34ccf021 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x34ed1618 tty_port_init +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fa0f26 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35212397 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x35244ec2 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0x352bb201 xa_store +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e0a4b finish_swait +EXPORT_SYMBOL vmlinux 0x353e87d9 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x35424e1c cdev_add +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3567109c disk_stack_limits +EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x3585098b inet_recvmsg +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b40439 pci_find_capability +EXPORT_SYMBOL vmlinux 0x35b4391c flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x35bab0cd devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35dfaa17 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x35f5c607 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x36055143 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x360a08b1 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x36212649 udplite_prot +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x36333c62 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3636395e dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365afb77 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36615dc1 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x367481b1 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x36819352 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x36839bd2 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x36ab9143 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x36c61492 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x36ca47f7 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x36e3c555 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x370ac755 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x370e641e simple_transaction_get +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3737194c phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3743a198 netif_napi_del +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37655ae8 d_add +EXPORT_SYMBOL vmlinux 0x3768fa1a __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x3772e9b4 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x37742da1 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x37836570 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x379705b7 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x379c6344 locks_init_lock +EXPORT_SYMBOL vmlinux 0x37aed495 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c68a81 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x37c6a9ee fb_pan_display +EXPORT_SYMBOL vmlinux 0x37c854d0 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x37d80f23 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x37e0a68e devm_request_resource +EXPORT_SYMBOL vmlinux 0x37ebc6a6 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382bd38a seq_puts +EXPORT_SYMBOL vmlinux 0x383785ab __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x3855a9d4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x386d94d6 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x38730176 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x387813f9 __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3888c09b fscrypt_free_bounce_page +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 0x38a9e936 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c96633 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x38db5a80 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x38eb7ca2 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x38f0e991 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x38f63467 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x390937b8 tty_throttle +EXPORT_SYMBOL vmlinux 0x3923f0ea mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3925af66 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x3925d2a8 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x392d48ad __mdiobus_write +EXPORT_SYMBOL vmlinux 0x39351ece gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394141db configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3948557a netif_napi_add +EXPORT_SYMBOL vmlinux 0x394d2e5d bd_set_size +EXPORT_SYMBOL vmlinux 0x394e1066 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3960b1b9 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x3964b1f0 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x399444ba serio_unregister_port +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39af8ed9 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x39b1aedc pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x39b2a93d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39d3860d console_start +EXPORT_SYMBOL vmlinux 0x39e52d88 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x39f1c378 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x3a0a8acd netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a21993a agp_put_bridge +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a313c98 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x3a328c2a md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3accb8dd tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x3ad849fc ps2_command +EXPORT_SYMBOL vmlinux 0x3af83aea inet_frag_find +EXPORT_SYMBOL vmlinux 0x3b13d266 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x3b1905ed rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x3b1ca290 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b36dc1e __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b562db8 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b8c5e06 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x3b9ed115 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x3ba393c8 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x3bb6210d phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x3bcfaa3d mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x3bd6db0d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3bdd1bd6 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x3bdd5b9e wake_up_process +EXPORT_SYMBOL vmlinux 0x3be2ac59 __free_pages +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf2045a netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1f6698 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3c21c181 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x3c2e854f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c457453 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0x3c563831 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3c5db9f5 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x3c6b06b5 radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3cb0996e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3cb37157 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0x3cc4cb8a wait_for_completion +EXPORT_SYMBOL vmlinux 0x3cd068e3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x3cd8199a i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf551b1 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x3cf637d9 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x3d006d24 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x3d0151ff sock_no_bind +EXPORT_SYMBOL vmlinux 0x3d151d62 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x3d294f4b of_find_property +EXPORT_SYMBOL vmlinux 0x3d2bbb40 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3d2dc9aa gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d86659e get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x3d8af968 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x3d8f43e7 dget_parent +EXPORT_SYMBOL vmlinux 0x3d8fd570 sync_blockdev +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd7958e vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x3deb44bf security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2839a5 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e33e3a3 set_disk_ro +EXPORT_SYMBOL vmlinux 0x3e355492 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x3e37a0ce dquot_resume +EXPORT_SYMBOL vmlinux 0x3e40e81d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x3e61f5b8 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3e820b95 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e917834 sk_free +EXPORT_SYMBOL vmlinux 0x3e94cff1 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3ec0690f d_obtain_root +EXPORT_SYMBOL vmlinux 0x3ef5605e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f24a869 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x3f28b506 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x3f368c9e fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x3f385704 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f586b96 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x3f640344 ping_prot +EXPORT_SYMBOL vmlinux 0x3f660267 audit_log +EXPORT_SYMBOL vmlinux 0x3f6be8f0 __frontswap_test +EXPORT_SYMBOL vmlinux 0x3f71d99f genl_register_family +EXPORT_SYMBOL vmlinux 0x3f736d71 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x3f797a84 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3f7d378c down_write_killable +EXPORT_SYMBOL vmlinux 0x3f7e617f __next_node_in +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f963296 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x3fa2093a zap_page_range +EXPORT_SYMBOL vmlinux 0x3fa5cab5 __frontswap_store +EXPORT_SYMBOL vmlinux 0x3fa5f940 phy_loopback +EXPORT_SYMBOL vmlinux 0x3fb4b022 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc6fa79 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x3fc9341c vfs_statfs +EXPORT_SYMBOL vmlinux 0x3fce2fc7 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3fcebaec filp_open +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe03a17 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x4021df2e _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0x402dab10 of_device_is_available +EXPORT_SYMBOL vmlinux 0x40353a8f i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x4037d837 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x404c0e05 dquot_file_open +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x4079aa2d vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x408514e1 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x40857673 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x408bd2f2 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d2cc93 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40d88321 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x40e95111 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x40ec03ba dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x40ed1519 fb_find_mode +EXPORT_SYMBOL vmlinux 0x410e3ca3 __neigh_create +EXPORT_SYMBOL vmlinux 0x411b53f8 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x411caa2c nf_setsockopt +EXPORT_SYMBOL vmlinux 0x412b6361 vfs_symlink +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41627a75 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x416f8f52 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x4186b665 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418e240b tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x41a00122 config_item_put +EXPORT_SYMBOL vmlinux 0x41a549ae __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x41c88418 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x41dccb50 mmc_get_card +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41f49130 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x41f4ef14 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x42026cf1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x42095abd security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x420e7d6e blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x42113610 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x4211e1c9 kernel_write +EXPORT_SYMBOL vmlinux 0x42151db1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x422e1e7e ps2_end_command +EXPORT_SYMBOL vmlinux 0x42303be3 tso_count_descs +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42431394 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4252b3b5 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4268490d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x42754865 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x4293b85c bdi_put +EXPORT_SYMBOL vmlinux 0x4296f05a poll_initwait +EXPORT_SYMBOL vmlinux 0x42972b5f dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x42988f10 edac_mc_find +EXPORT_SYMBOL vmlinux 0x42ac1d6f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x42cc42da get_cached_acl +EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x433bb99e super_setup_bdi +EXPORT_SYMBOL vmlinux 0x4348ed6c ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43665734 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4387d6f4 ata_print_version +EXPORT_SYMBOL vmlinux 0x439c7ed8 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x43a1a14f __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43c6ba80 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x43c76c24 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x43d19873 skb_append +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x4404755d simple_release_fs +EXPORT_SYMBOL vmlinux 0x4421a7f0 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x442baa92 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4444136e rproc_del +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4483086d gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x44861ac9 posix_test_lock +EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x44a97762 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x44b87961 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x44c118f8 kill_litter_super +EXPORT_SYMBOL vmlinux 0x44c21150 eth_header +EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x44e711b8 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb87c2 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0x44f3e6a5 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x450f35fb dst_dev_put +EXPORT_SYMBOL vmlinux 0x4512e5f7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4543531b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x454a6fc1 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a8886d blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x45bbb288 __scm_send +EXPORT_SYMBOL vmlinux 0x45bc8257 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x45bd60ca set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x45cfbc8d inode_set_bytes +EXPORT_SYMBOL vmlinux 0x45d01c93 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x461179df ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461b6148 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x463540a6 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x464ff58e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c41f7 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4693479d ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d51e8d timestamp_truncate +EXPORT_SYMBOL vmlinux 0x46e90e7c pskb_extract +EXPORT_SYMBOL vmlinux 0x46f93fa0 finish_open +EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after +EXPORT_SYMBOL vmlinux 0x46fdf15f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x470d8281 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x4713d8f7 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x471ee682 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x47248463 param_get_ulong +EXPORT_SYMBOL vmlinux 0x472cd19b __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x473c94cd sk_wait_data +EXPORT_SYMBOL vmlinux 0x474f4156 devm_ioremap +EXPORT_SYMBOL vmlinux 0x47664de6 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477bdaae blk_queue_split +EXPORT_SYMBOL vmlinux 0x478da1d3 vga_con +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a99842 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x47c48af3 store_fp_state +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c96bfb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x47e31fc6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x480adf6d kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x480baaa9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4812993a neigh_update +EXPORT_SYMBOL vmlinux 0x481dc57a netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x48315dea tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x48495b9d inet_offloads +EXPORT_SYMBOL vmlinux 0x484dfb52 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4852d6f3 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x4856aade locks_remove_posix +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48602da6 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase +EXPORT_SYMBOL vmlinux 0x488844ee max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x489d25e7 proc_create +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b2c456 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48cba7af drop_super +EXPORT_SYMBOL vmlinux 0x48de3275 d_genocide +EXPORT_SYMBOL vmlinux 0x48e5bf26 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x48e8b451 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x48f0d0ba of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x48fac0c0 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4904c229 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4906ebb1 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x49241ad5 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x49637c59 inode_set_flags +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a51560 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x49c127df generic_file_open +EXPORT_SYMBOL vmlinux 0x4a1f4bc6 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x4a20894e dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x4a248d05 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x4a2f4578 param_ops_short +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a66faaa sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x4a741435 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x4a8eaf1c phy_resume +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a96c580 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x4aa76594 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4aacb500 dev_change_flags +EXPORT_SYMBOL vmlinux 0x4aad025e bioset_init +EXPORT_SYMBOL vmlinux 0x4ab569ac proc_remove +EXPORT_SYMBOL vmlinux 0x4abbc4e6 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4abf5023 set_bh_page +EXPORT_SYMBOL vmlinux 0x4ac932c9 pci_restore_state +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ae35399 serio_rescan +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aedd7de input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x4afcefe2 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b14725a wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x4b1e3f04 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x4b2aaa54 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x4b2c9343 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x4b3f2352 padata_do_serial +EXPORT_SYMBOL vmlinux 0x4b438596 padata_free +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b66a69a input_release_device +EXPORT_SYMBOL vmlinux 0x4b7202c8 file_update_time +EXPORT_SYMBOL vmlinux 0x4b7247c7 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4b737576 mdio_device_free +EXPORT_SYMBOL vmlinux 0x4b7d007b vme_irq_handler +EXPORT_SYMBOL vmlinux 0x4b859eab install_exec_creds +EXPORT_SYMBOL vmlinux 0x4bad2145 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bc6579f dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4bc793cf __dquot_free_space +EXPORT_SYMBOL vmlinux 0x4bcb2292 devm_free_irq +EXPORT_SYMBOL vmlinux 0x4be7c444 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c449eea mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x4c4d8d3f inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x4c53cb29 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x4c5c0113 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x4c7cd5c6 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x4c8f3985 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x4c92bca3 mpage_writepages +EXPORT_SYMBOL vmlinux 0x4c9ae676 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x4c9ca944 cpumask_next +EXPORT_SYMBOL vmlinux 0x4ca382e4 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x4cad8e4d neigh_table_init +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbe75bb generic_permission +EXPORT_SYMBOL vmlinux 0x4cc3bbbb wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map +EXPORT_SYMBOL vmlinux 0x4cf39fc1 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4d22827e genphy_resume +EXPORT_SYMBOL vmlinux 0x4d24ebbb vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x4d364d65 d_alloc +EXPORT_SYMBOL vmlinux 0x4d4816c5 sock_register +EXPORT_SYMBOL vmlinux 0x4d51e2aa input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6a78f7 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x4d6b9b67 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9af7d0 unload_nls +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9bb787 scsi_print_command +EXPORT_SYMBOL vmlinux 0x4d9debca md_integrity_register +EXPORT_SYMBOL vmlinux 0x4dcbf59e fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x4de507f9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e101523 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x4e2558f8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3e6722 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4e44a19f pci_find_resource +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e73f9fa config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x4e7f8120 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4e8c076a of_phy_attach +EXPORT_SYMBOL vmlinux 0x4e960f51 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4e970363 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x4eb3ffd3 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x4eb4a610 km_new_mapping +EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed294ce register_qdisc +EXPORT_SYMBOL vmlinux 0x4ef21cfe param_set_byte +EXPORT_SYMBOL vmlinux 0x4ef43f96 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x4ef75d45 pci_release_region +EXPORT_SYMBOL vmlinux 0x4f13f2dd xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1d2d32 neigh_lookup +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2aae4c try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x4f3d4da6 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4f3f888f md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4f538344 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4f580fe3 mmc_add_host +EXPORT_SYMBOL vmlinux 0x4f63f4b5 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x4f69b139 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x4f7c1203 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x4f845c84 inet_sendpage +EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5020051e pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x502342d5 tty_unlock +EXPORT_SYMBOL vmlinux 0x5047e738 dqput +EXPORT_SYMBOL vmlinux 0x5067cd26 __close_fd +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x507f3fad tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50cc65af cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x50d9f03e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5106f654 account_page_redirty +EXPORT_SYMBOL vmlinux 0x51498871 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x51530f05 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x51533187 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5153c00e input_allocate_device +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51642dfa kmem_cache_create +EXPORT_SYMBOL vmlinux 0x51aa38cb phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x51ac5df5 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x51ad47f9 padata_start +EXPORT_SYMBOL vmlinux 0x51ae0955 vme_dma_request +EXPORT_SYMBOL vmlinux 0x51bc9ab0 km_state_expired +EXPORT_SYMBOL vmlinux 0x51f53103 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5219e8ac inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5244f249 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0x525ac644 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x526a09b8 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x526dd2f9 irq_set_chip +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52786435 fqdir_exit +EXPORT_SYMBOL vmlinux 0x528278b3 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x52895d25 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x528a723e sock_no_connect +EXPORT_SYMBOL vmlinux 0x5291c702 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52ca18cf flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x52d27c39 netif_device_attach +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x5304ef8d phy_connect +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53241a68 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x53353948 drop_nlink +EXPORT_SYMBOL vmlinux 0x533db15f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x535a40a8 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x535cccd2 search_binary_handler +EXPORT_SYMBOL vmlinux 0x53744032 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x537597c9 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x53c9199c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x53ce42a6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x53e8e17a nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x540a6eab put_disk_and_module +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54140913 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5416c79b hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54437a5b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x546b0458 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5473cb82 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x547a087a vm_mmap +EXPORT_SYMBOL vmlinux 0x549e9ae5 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x54a0ed34 init_on_alloc +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c5b463 is_subdir +EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550ad585 radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x55190d01 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5525f9a3 register_cdrom +EXPORT_SYMBOL vmlinux 0x553f06af pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x554415a5 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5549ef93 __frontswap_load +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55708c3f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x557b0c2d scsi_host_busy +EXPORT_SYMBOL vmlinux 0x5586376d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55d05676 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x55d62483 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x55d9aa03 find_lock_entry +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x560066eb invalidate_partition +EXPORT_SYMBOL vmlinux 0x560695e7 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x560fa9f7 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x562fdb5e inet_addr_type +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5638d3d0 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x563e6dff sort_r +EXPORT_SYMBOL vmlinux 0x5641f4bd netif_rx_ni +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x5671cc38 do_SAK +EXPORT_SYMBOL vmlinux 0x5679dbbf tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x567cefbe vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x567e742e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5692fd12 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56ade489 napi_complete_done +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56c9d396 set_cached_acl +EXPORT_SYMBOL vmlinux 0x56e0cd01 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x57280938 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x573929a7 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5754a545 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575c1433 default_llseek +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576d4edf __page_pool_put_page +EXPORT_SYMBOL vmlinux 0x576d56d3 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x577a77c9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x5780c23a single_open_size +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578f7d4b tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57b2e50e kill_fasync +EXPORT_SYMBOL vmlinux 0x57d6dce7 init_special_inode +EXPORT_SYMBOL vmlinux 0x57e1f48c compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x57e53ee6 con_is_bound +EXPORT_SYMBOL vmlinux 0x57f880c4 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x5800ff35 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x580884a2 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x58090b50 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582f8be3 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x58303a7c kill_bdev +EXPORT_SYMBOL vmlinux 0x5832e7bd ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58618006 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x5861b367 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x586c1a76 keyring_alloc +EXPORT_SYMBOL vmlinux 0x58762389 set_groups +EXPORT_SYMBOL vmlinux 0x5876fd75 agp_free_memory +EXPORT_SYMBOL vmlinux 0x587a4b4d dev_uc_flush +EXPORT_SYMBOL vmlinux 0x5881f32f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x589f2559 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd7faa bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x58d55248 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e6a689 bdevname +EXPORT_SYMBOL vmlinux 0x58ee853e __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x58f3da33 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x58f63147 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5918fb15 component_match_add_release +EXPORT_SYMBOL vmlinux 0x591fab1d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x592b13e7 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x59418c70 seq_file_path +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59500893 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x5955f074 input_flush_device +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59620859 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5962714b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x599339ee of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x5997de06 block_write_end +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b3f0ce mutex_trylock +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59bd1d80 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x59f9e4f1 input_grab_device +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a088923 up_write +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0c0f3f scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x5a388c1d dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4a3e6a generic_file_llseek +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5bdc46 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x5a736d56 single_open +EXPORT_SYMBOL vmlinux 0x5a7f5afe pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x5a887ed5 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac3c067 param_set_long +EXPORT_SYMBOL vmlinux 0x5ac86f69 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x5acafb62 dns_query +EXPORT_SYMBOL vmlinux 0x5ad6c934 __break_lease +EXPORT_SYMBOL vmlinux 0x5ae1be0d dst_release_immediate +EXPORT_SYMBOL vmlinux 0x5af6b60c md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x5b0f6aec __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5b1dba1e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5b2a0353 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b6e013d uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bdbb5aa follow_down_one +EXPORT_SYMBOL vmlinux 0x5bde9f87 write_cache_pages +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c4745df kfree_skb +EXPORT_SYMBOL vmlinux 0x5c4d5cc0 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5c52ac14 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x5c54d21f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x5c77a1f3 cdev_init +EXPORT_SYMBOL vmlinux 0x5c95717d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x5c97e21b pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x5caa0e63 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x5caedbed tcp_filter +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d12b34f pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x5d14005e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x5d276534 dev_open +EXPORT_SYMBOL vmlinux 0x5d355d5f inc_node_page_state +EXPORT_SYMBOL vmlinux 0x5d41b12c crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4ae65d devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x5d4ec6b6 mmc_put_card +EXPORT_SYMBOL vmlinux 0x5d538ad8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x5d66dad3 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x5d6e0224 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x5d7fc113 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x5d817b40 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5d853c53 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x5d98b579 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x5d99ce1e jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5d9d0f19 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5da54710 unregister_nls +EXPORT_SYMBOL vmlinux 0x5db4ca8b vm_map_ram +EXPORT_SYMBOL vmlinux 0x5dd1c569 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5ddd40ba unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e031c38 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x5e03ac2b pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x5e200f6c setup_arg_pages +EXPORT_SYMBOL vmlinux 0x5e2ac071 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5e3324c2 init_pseudo +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e547715 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e8f87fa xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x5e943710 inet_add_offload +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e96ddbc flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x5e9b2c0d deactivate_super +EXPORT_SYMBOL vmlinux 0x5ea10cdd tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5eab9795 device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec8592a xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed2969e string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eda8e99 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee0a4e5 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5ee1f703 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1979f4 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x5f24dd1a wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5f2a844d vfs_getattr +EXPORT_SYMBOL vmlinux 0x5f303860 blk_get_request +EXPORT_SYMBOL vmlinux 0x5f33ddf3 d_move +EXPORT_SYMBOL vmlinux 0x5f3b9631 devm_memunmap +EXPORT_SYMBOL vmlinux 0x5f48d5a6 page_readlink +EXPORT_SYMBOL vmlinux 0x5f5cd9a8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f731177 __quota_error +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8bc71a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find +EXPORT_SYMBOL vmlinux 0x5fc4e44e inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fc7d8ca netdev_state_change +EXPORT_SYMBOL vmlinux 0x5feb3d1c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x5fed5a52 dev_uc_del +EXPORT_SYMBOL vmlinux 0x5fefc2c1 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x5ff95df5 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x6005456f simple_write_begin +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600ab356 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x601b544e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602b31f6 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x602e7095 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6058adc1 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x607532c4 register_md_personality +EXPORT_SYMBOL vmlinux 0x608d3a27 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609b2853 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a0e115 mdio_device_create +EXPORT_SYMBOL vmlinux 0x60c79fc5 pipe_lock +EXPORT_SYMBOL vmlinux 0x60d24b9b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x60d73828 get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x6106b0cb gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b290a skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL vmlinux 0x614c23ba skb_pull +EXPORT_SYMBOL vmlinux 0x61550f24 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615cd99f page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x6166f866 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6172abc9 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x6173eee6 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x617dd2e9 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619c52b5 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61ca6e66 vfs_unlink +EXPORT_SYMBOL vmlinux 0x61ccab0d pci_scan_slot +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61edb1f6 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x61f3e5e0 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x61f6b3fb dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x61fe3b26 vio_find_node +EXPORT_SYMBOL vmlinux 0x620619ad unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623d35e2 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x624cb267 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62968e1f dev_add_offload +EXPORT_SYMBOL vmlinux 0x62ad9834 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62e6b29d skb_queue_tail +EXPORT_SYMBOL vmlinux 0x62eb9433 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x63166968 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x631ee369 netif_rx +EXPORT_SYMBOL vmlinux 0x6336590b inet_getname +EXPORT_SYMBOL vmlinux 0x633e09ae devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x63419f9b qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6344005d __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6346ab47 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x635f1350 vme_irq_free +EXPORT_SYMBOL vmlinux 0x637561f8 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x63930759 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b4a860 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x63b57d77 sock_from_file +EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6415391f input_setup_polling +EXPORT_SYMBOL vmlinux 0x641d52de consume_skb +EXPORT_SYMBOL vmlinux 0x64226c03 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x643b3e61 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x6443bc09 param_get_long +EXPORT_SYMBOL vmlinux 0x6466a5bb security_binder_transaction +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649d3175 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bf7a8d mmc_release_host +EXPORT_SYMBOL vmlinux 0x64c99de0 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x64cbe658 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x64cc9db3 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x64d23467 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x64e3dc39 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x64e76c02 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x64ec05a6 may_umount_tree +EXPORT_SYMBOL vmlinux 0x64f78986 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6526f981 passthru_features_check +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652fc84b pci_find_bus +EXPORT_SYMBOL vmlinux 0x653a850d put_cmsg +EXPORT_SYMBOL vmlinux 0x653dab4e map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655611bf get_vaddr_frames +EXPORT_SYMBOL vmlinux 0x6559b887 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x655c1a3f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x655d9e64 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x656eba4a inet_ioctl +EXPORT_SYMBOL vmlinux 0x65719d7f bh_submit_read +EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x65819700 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x6596a232 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a8d9fc param_get_byte +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65da7a1c vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f1bab1 pci_bus_type +EXPORT_SYMBOL vmlinux 0x65fd4581 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x65ff9230 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x660050b6 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x66038607 rproc_boot +EXPORT_SYMBOL vmlinux 0x6630cbc0 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x6638bc2f kill_pid +EXPORT_SYMBOL vmlinux 0x66442a02 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x6669b642 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66966385 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x66b20b73 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66df5483 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x67057207 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6716ee2c __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x671ede6b __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x67279199 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674d881c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x6766212f configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x6770c6fc pci_disable_msi +EXPORT_SYMBOL vmlinux 0x6776ac42 _dev_info +EXPORT_SYMBOL vmlinux 0x677ca70c pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x677ed9b1 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x6782bc0c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c00ed nf_log_packet +EXPORT_SYMBOL vmlinux 0x678d01e4 request_key_tag +EXPORT_SYMBOL vmlinux 0x679eb45b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x67aac281 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67dbfaa8 pci_get_device +EXPORT_SYMBOL vmlinux 0x67dc1b66 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x67dfd87d kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x67f468e7 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x67fe24c8 module_put +EXPORT_SYMBOL vmlinux 0x682893e7 vfs_rename +EXPORT_SYMBOL vmlinux 0x682bb42d key_invalidate +EXPORT_SYMBOL vmlinux 0x682f80e6 pci_disable_device +EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x687a596d uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689b0a87 dst_discard_out +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x689fcb1d vc_resize +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68bac37c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x68c9cd1f devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x690de91b fb_get_mode +EXPORT_SYMBOL vmlinux 0x6928350b netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x69382999 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x693dd5e2 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x693fe38c path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x6947ccd2 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x6956f467 elv_rb_find +EXPORT_SYMBOL vmlinux 0x69578703 ether_setup +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696a1e51 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973f849 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6976c3c2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x69a478b5 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x69a65fad km_state_notify +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b677ed init_task +EXPORT_SYMBOL vmlinux 0x69d8a649 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69eb42d8 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x69f27773 single_release +EXPORT_SYMBOL vmlinux 0x69f5d792 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x69fef0e9 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2848a0 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x6a43cd5d __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x6a56ef72 tty_name +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a64f7cd i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x6a708c3c xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x6a74ea12 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x6a9c1313 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa2ba54 generic_make_request +EXPORT_SYMBOL vmlinux 0x6abce4da phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6acca317 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b0344fb md_reload_sb +EXPORT_SYMBOL vmlinux 0x6b0d97b7 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5022d7 __icmp_send +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b55f927 make_kprojid +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b7d88b8 tso_build_data +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8b3154 softnet_data +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8c93b1 discard_new_inode +EXPORT_SYMBOL vmlinux 0x6bb5f638 vme_slave_request +EXPORT_SYMBOL vmlinux 0x6bbf716e empty_aops +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc72110 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x6bc903df sock_release +EXPORT_SYMBOL vmlinux 0x6be4d1fc blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x6be85e91 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x6c003595 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x6c0ca693 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x6c10426e sg_miter_skip +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c46a443 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c8ad3d4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c8f5ead nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x6c9879da vga_tryget +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6ca272f2 uart_match_port +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cca97eb twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x6cdb4933 seq_pad +EXPORT_SYMBOL vmlinux 0x6ce6c322 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x6cf78fc9 locks_free_lock +EXPORT_SYMBOL vmlinux 0x6cfc6415 release_pages +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d02d135 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x6d17bae7 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d65b824 km_policy_notify +EXPORT_SYMBOL vmlinux 0x6d8a94f6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6d973394 skb_seq_read +EXPORT_SYMBOL vmlinux 0x6db0d8cd netpoll_setup +EXPORT_SYMBOL vmlinux 0x6dc79506 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6dc8ceb4 param_set_ulong +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd21b53 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x6dd84334 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfacb6b dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6dfc79d9 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x6e1154b7 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x6e1652e6 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x6e25a31e pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6e286604 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x6e34cd1a sock_setsockopt +EXPORT_SYMBOL vmlinux 0x6e3e0867 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x6e479f3d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6b0770 dev_activate +EXPORT_SYMBOL vmlinux 0x6e70bb52 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e86384f input_match_device_id +EXPORT_SYMBOL vmlinux 0x6e9263f4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb3ad5e uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6ebb2955 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6eee29a4 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x6eee33a5 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x6ef9e028 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit +EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each +EXPORT_SYMBOL vmlinux 0x6f183c8e tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x6f3524ca phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x6f547022 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x6f570842 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x6f5cb55e scsi_register_driver +EXPORT_SYMBOL vmlinux 0x6f6b1634 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x6f6e13c0 seq_open_private +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f83ff5a udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x6f8b949a ppp_input_error +EXPORT_SYMBOL vmlinux 0x6f91e3d8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x6f974a42 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb7ba3d set_create_files_as +EXPORT_SYMBOL vmlinux 0x6fbcc6c8 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fe74808 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x701bda6e seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x70284b19 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x703118da param_set_ullong +EXPORT_SYMBOL vmlinux 0x7036c582 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x707f5fce secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x7093f857 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x70a82275 __destroy_inode +EXPORT_SYMBOL vmlinux 0x70bd54af blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x70c5bcc0 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x70d8a0d1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x70de18f2 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x70f9b45b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7104d61b tty_port_destroy +EXPORT_SYMBOL vmlinux 0x710747a8 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x71160678 fs_parse +EXPORT_SYMBOL vmlinux 0x71232140 pci_dev_put +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712e70ce __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7153aa69 lock_rename +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7176bebd thaw_super +EXPORT_SYMBOL vmlinux 0x717e49af flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x719fe597 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x71a1b501 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a6db36 mount_bdev +EXPORT_SYMBOL vmlinux 0x71b80caf ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x71be30a7 netdev_crit +EXPORT_SYMBOL vmlinux 0x71c3a365 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x71ec5921 bio_split +EXPORT_SYMBOL vmlinux 0x71f06e7a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x71fb3e5c __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x720af2b5 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x720da727 param_ops_string +EXPORT_SYMBOL vmlinux 0x721f8f58 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x722296a4 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x7243776c ppp_unit_number +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7252cc18 register_shrinker +EXPORT_SYMBOL vmlinux 0x72587cc7 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x725bcafc __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x72602046 _dev_err +EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush +EXPORT_SYMBOL vmlinux 0x726fe730 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x727cea4d get_user_pages +EXPORT_SYMBOL vmlinux 0x728104cc dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x72924270 netdev_emerg +EXPORT_SYMBOL vmlinux 0x72a04177 hmm_range_register +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bd4f4e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d8d24a start_tty +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7302957c skb_trim +EXPORT_SYMBOL vmlinux 0x7304201e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731933d0 skb_queue_head +EXPORT_SYMBOL vmlinux 0x731a0ede grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7347010e tty_hangup +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x73724a8f padata_free_shell +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73824019 sock_create +EXPORT_SYMBOL vmlinux 0x73f56392 validate_sp +EXPORT_SYMBOL vmlinux 0x73fe9869 is_nd_dax +EXPORT_SYMBOL vmlinux 0x740f10fc kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7416976f tty_devnum +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x743012a3 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x746fc967 netlink_ack +EXPORT_SYMBOL vmlinux 0x748058e8 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x74849317 hmm_range_dma_unmap +EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x7493327f nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x74997e37 sk_capable +EXPORT_SYMBOL vmlinux 0x749dd891 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x749f9b36 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x74abb2a9 d_alloc_name +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x74f401c7 cdrom_open +EXPORT_SYMBOL vmlinux 0x7505c775 __ioremap_at +EXPORT_SYMBOL vmlinux 0x75172ce2 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x7519f3f5 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x75275bd5 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7565df90 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x756f6a4f notify_change +EXPORT_SYMBOL vmlinux 0x75789e4d blk_put_queue +EXPORT_SYMBOL vmlinux 0x757e9c10 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x75951b5e of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x7596419c write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x759c6bbb dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x759e2b1d fb_set_cmap +EXPORT_SYMBOL vmlinux 0x75a5aa92 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x75a904a4 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c5055b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x75ce34c6 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d791a3 sock_create_kern +EXPORT_SYMBOL vmlinux 0x75de3971 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760cb755 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x76136b32 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76286dcf dma_dummy_ops +EXPORT_SYMBOL vmlinux 0x763ba3ad ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x764365a0 input_set_capability +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764eacbd ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766fd60a mmc_request_done +EXPORT_SYMBOL vmlinux 0x7692e2fc fb_validate_mode +EXPORT_SYMBOL vmlinux 0x76993f3c __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x769ca6d7 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76c2c893 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x76c70e85 dquot_transfer +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e8303f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x76ee1817 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7709deb1 dev_driver_string +EXPORT_SYMBOL vmlinux 0x771a9256 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x773069dc param_ops_ushort +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77527726 pci_release_regions +EXPORT_SYMBOL vmlinux 0x77789a27 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b30a40 dev_trans_start +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f44ed3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x77f53e25 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x77fe26a4 of_node_to_nid +EXPORT_SYMBOL vmlinux 0x7802a267 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7811ec8c path_put +EXPORT_SYMBOL vmlinux 0x7813a85a mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7816fb0d vfs_mkdir +EXPORT_SYMBOL vmlinux 0x7818dec9 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x781bf84d iov_iter_revert +EXPORT_SYMBOL vmlinux 0x781d808b input_register_device +EXPORT_SYMBOL vmlinux 0x781ebb07 inet6_protos +EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7844eabd neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7847048d vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x784a9db6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7857e60d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x785dd167 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x786af19d inode_insert5 +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78851d2f _outsb +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a634b7 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b96ff3 config_group_find_item +EXPORT_SYMBOL vmlinux 0x78d33df3 __bread_gfp +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e26a92 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x78ee381b __neigh_event_send +EXPORT_SYMBOL vmlinux 0x78f111dc blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7901d234 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x79373a7f seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x7942f82a phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x7945cbea bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x794b43fc dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7959f6f1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x795cca87 param_get_charp +EXPORT_SYMBOL vmlinux 0x795d450f dquot_alloc +EXPORT_SYMBOL vmlinux 0x7963c8d3 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x7969ca21 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x796a8873 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x797114b2 sk_net_capable +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7987d8cd mount_nodev +EXPORT_SYMBOL vmlinux 0x7997b592 dup_iter +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79ae7342 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x79c77b2e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x79cad7eb md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x79dc0f3b kernel_bind +EXPORT_SYMBOL vmlinux 0x79e22fda proc_mkdir +EXPORT_SYMBOL vmlinux 0x7a083acc tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a31edab register_gifconf +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node +EXPORT_SYMBOL vmlinux 0x7a9213e4 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a9d84b7 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa1f9dd input_register_handler +EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7abb2373 kernel_connect +EXPORT_SYMBOL vmlinux 0x7ac4e512 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade4a95 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x7ae9cfe8 md_write_end +EXPORT_SYMBOL vmlinux 0x7afb0ff4 __put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b1b1268 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7b245993 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7b25ee70 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x7b2c7226 uaccess_flush_key +EXPORT_SYMBOL vmlinux 0x7b2f5184 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7b3def45 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x7b48fedd netlink_net_capable +EXPORT_SYMBOL vmlinux 0x7b4d3a5f fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7b57aa73 follow_pfn +EXPORT_SYMBOL vmlinux 0x7b75cc09 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x7b8a8d03 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x7b8c238b dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7b8edc0f dquot_release +EXPORT_SYMBOL vmlinux 0x7bb6d753 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x7bdb61d1 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7bdc6218 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x7be954b0 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x7bed0abb netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x7bffd527 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c070d10 vmap +EXPORT_SYMBOL vmlinux 0x7c127251 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x7c14d981 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c624c71 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x7c867b1c vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9fb3af genphy_suspend +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cbac21c skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x7cbb40e8 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7cbd397b tcp_mmap +EXPORT_SYMBOL vmlinux 0x7cc166c7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x7cd46330 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7cd92674 register_filesystem +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce6c911 _dev_alert +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf4d21f xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0e321b pps_event +EXPORT_SYMBOL vmlinux 0x7d21282a pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7d2ebe95 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5a53a8 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x7d5caea8 register_quota_format +EXPORT_SYMBOL vmlinux 0x7d5e0c96 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d759a86 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x7d7b8e97 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7d8128b8 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x7d8a17ae vfs_fsync +EXPORT_SYMBOL vmlinux 0x7da9aa5d path_get +EXPORT_SYMBOL vmlinux 0x7dac93d8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7daee748 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7db3f8c8 generic_setlease +EXPORT_SYMBOL vmlinux 0x7db686f2 kill_pgrp +EXPORT_SYMBOL vmlinux 0x7dbc56b6 __kfree_skb +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dd2a20d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x7ddcb794 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x7de07019 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x7decc58e netpoll_print_options +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base +EXPORT_SYMBOL vmlinux 0x7dff3d46 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x7e1470e0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x7e184232 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3a4096 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x7e5fada4 tty_lock +EXPORT_SYMBOL vmlinux 0x7e65e32c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7e7b8e0a xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x7e7cc6f5 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7ebdc004 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x7ee123ba tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7ee7e49c pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7ef30027 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7ef47e09 pci_set_master +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f15690f simple_get_link +EXPORT_SYMBOL vmlinux 0x7f1af48e blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5802b2 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f66c81e mach_pseries +EXPORT_SYMBOL vmlinux 0x7f6c853a pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8d33c7 keyring_clear +EXPORT_SYMBOL vmlinux 0x7f974b45 key_type_keyring +EXPORT_SYMBOL vmlinux 0x7fb3767f tcp_connect +EXPORT_SYMBOL vmlinux 0x7fb44c4e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7fb746f5 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x7fca9118 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fff253a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x802b88df bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x802f468f fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x80328206 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x804093d1 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x805cd4f2 read_cache_page +EXPORT_SYMBOL vmlinux 0x8063d7df netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x806ec9b5 scsi_host_get +EXPORT_SYMBOL vmlinux 0x806f43c7 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0x8073900e vfs_mkobj +EXPORT_SYMBOL vmlinux 0x80748197 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x80820d67 __register_binfmt +EXPORT_SYMBOL vmlinux 0x80863802 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80b206a5 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x80b6646d ps2_init +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e53642 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x80e825a4 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x80ef304f config_item_set_name +EXPORT_SYMBOL vmlinux 0x80f320b3 dst_release +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812dc092 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x81690034 phy_init_hw +EXPORT_SYMBOL vmlinux 0x817a0860 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a184fd security_inode_init_security +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e65306 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x81f59a2a vfs_get_tree +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x821e64ce i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x823434c3 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x8236ac36 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x8243f3fa __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8263e61a key_revoke +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8280972a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x829ee72c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x82a8c96d rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x82b25f7f ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x82c706d6 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82dbed93 set_nlink +EXPORT_SYMBOL vmlinux 0x82e844df bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x82ee8dbc filp_close +EXPORT_SYMBOL vmlinux 0x83133894 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x83154d2f qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8320615c skb_copy_header +EXPORT_SYMBOL vmlinux 0x833f7033 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x83408153 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836e2337 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a115a9 iget_locked +EXPORT_SYMBOL vmlinux 0x83adb257 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x83ae24bb of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x83c599d5 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x83d045fc skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x83d59873 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x83f9521c cpumask_any_but +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8428a18c iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x842b3c5a put_user_pages +EXPORT_SYMBOL vmlinux 0x842c3cfa of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x842cae38 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x84477efa fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x844f2f86 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x846a5f8b ata_dev_printk +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x849786c6 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84b66b1c tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c0f52b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x84c10532 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x84c246b7 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range +EXPORT_SYMBOL vmlinux 0x852b04d9 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x853bca84 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x85583687 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x855a4664 tty_vhangup +EXPORT_SYMBOL vmlinux 0x855b3b67 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a12590 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x85a45b0f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x85a570e8 migrate_page_states +EXPORT_SYMBOL vmlinux 0x85aea161 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x85b3cb5a netif_carrier_off +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d0a46c netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f23a5e of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x85fcf6fe dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x85fed707 tty_port_put +EXPORT_SYMBOL vmlinux 0x86062cd6 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x8623ce68 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x86264cd2 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864bab02 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x864c06df vfs_setpos +EXPORT_SYMBOL vmlinux 0x864e01ac inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8651f1e5 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x86759743 ata_port_printk +EXPORT_SYMBOL vmlinux 0x86854c87 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868cb7c5 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x86938f2f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec +EXPORT_SYMBOL vmlinux 0x86b18094 complete +EXPORT_SYMBOL vmlinux 0x86b25850 down_read_killable +EXPORT_SYMBOL vmlinux 0x86bd00b2 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86f470e5 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x86f932c6 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fe0aef __lookup_constant +EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x875050d8 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x8755681f module_refcount +EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x8776b29a bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8784bf75 inet6_bind +EXPORT_SYMBOL vmlinux 0x879a65db param_ops_bool +EXPORT_SYMBOL vmlinux 0x87a031e1 param_set_charp +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c1a449 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x87cef12a kobject_put +EXPORT_SYMBOL vmlinux 0x87d69d63 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x87dfa009 dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x87f5ae5e seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x8827021c kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x8829c5c5 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x8881bab4 mount_single +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888a0e4f pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x889acc51 __invalidate_device +EXPORT_SYMBOL vmlinux 0x889e8f37 kill_block_super +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b64a6d fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x88bf96b9 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x89034951 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x891c0a3e create_empty_buffers +EXPORT_SYMBOL vmlinux 0x891def26 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x89387440 unregister_key_type +EXPORT_SYMBOL vmlinux 0x8949d60e sock_create_lite +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8975112b netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89830636 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x8989d947 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x89a01069 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x89a98b45 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x89a9ff22 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89d6cbe0 __put_cred +EXPORT_SYMBOL vmlinux 0x89eb29ab blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x89feaf92 __irq_regs +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a28d8c7 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a50cec2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x8a521b56 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index +EXPORT_SYMBOL vmlinux 0x8a5b20f3 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x8a668b28 dquot_acquire +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a975019 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8abc5baa iget_failed +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8adc7eed neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x8aecc001 sock_wake_async +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0822d2 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8b154133 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8b23ca53 seq_printf +EXPORT_SYMBOL vmlinux 0x8b2530d5 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x8b54e46b filemap_flush +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7e70f1 input_get_keycode +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x8b9c3096 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bb0e387 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x8bc6551b fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x8bd77fb4 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x8bded847 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x8c01a22b skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x8c180245 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x8c23fb89 set_blocksize +EXPORT_SYMBOL vmlinux 0x8c5b823c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x8c6e045a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8c881df5 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x8c8e5243 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x8ca13552 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x8ca63928 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x8cba4439 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x8cbd3d93 srp_rport_get +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc8098d __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x8ce0dcc9 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x8cfa903e get_gendisk +EXPORT_SYMBOL vmlinux 0x8cfe5db9 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x8d00c38d pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x8d0aef6d __mutex_init +EXPORT_SYMBOL vmlinux 0x8d15b018 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x8d20a164 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x8d284f91 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x8d366670 srp_timed_out +EXPORT_SYMBOL vmlinux 0x8d3efd93 inet_select_addr +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d72be02 __register_nls +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d733ec4 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8d795883 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x8d85234d proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x8d854c39 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x8d8a95e0 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x8d911220 d_splice_alias +EXPORT_SYMBOL vmlinux 0x8d9164dc bio_init +EXPORT_SYMBOL vmlinux 0x8dbd1683 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8dd460ca rproc_report_crash +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de0846d phy_device_register +EXPORT_SYMBOL vmlinux 0x8de3fce2 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x8df1bf74 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e18ad10 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x8e1ced29 simple_link +EXPORT_SYMBOL vmlinux 0x8e25732f rtc_add_group +EXPORT_SYMBOL vmlinux 0x8e4f7ca1 d_find_alias +EXPORT_SYMBOL vmlinux 0x8e525244 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x8e6ddd89 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x8e74100c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8e8034c4 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x8e97cbda irq_stat +EXPORT_SYMBOL vmlinux 0x8eac473b __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x8eaf494f simple_write_end +EXPORT_SYMBOL vmlinux 0x8eb823d9 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ec90cd2 blkdev_put +EXPORT_SYMBOL vmlinux 0x8ecb6bf6 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x8ed6f04d devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x8edd1fbc dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8ee3f3e5 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x8eec5ace nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x8ef1d8eb bdput +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0e1292 param_get_uint +EXPORT_SYMBOL vmlinux 0x8f20b75d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x8f43d024 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8f47a481 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8f4cc4f0 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x8f50044b scsi_remove_host +EXPORT_SYMBOL vmlinux 0x8f56c084 vga_put +EXPORT_SYMBOL vmlinux 0x8f5b8678 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f783499 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa6430b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x8fafd598 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fd5757f mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x8ff64266 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x9006f2a1 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x900e2a7b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x90201673 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x9022f22d md_write_start +EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x90300cb4 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x90355fd5 genphy_read_status +EXPORT_SYMBOL vmlinux 0x903968be keyring_search +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9065a0b5 mmc_erase +EXPORT_SYMBOL vmlinux 0x906f9713 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x90705fb5 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x9077f066 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x909266b7 arp_xmit +EXPORT_SYMBOL vmlinux 0x90af11eb pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x90b2c1c7 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x90c1bca3 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x90c6310f of_device_register +EXPORT_SYMBOL vmlinux 0x90caf57b netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x90d170f0 of_node_put +EXPORT_SYMBOL vmlinux 0x90d4a972 logfc +EXPORT_SYMBOL vmlinux 0x90d8c09f tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x90e6fe47 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x90ef069e inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9105105e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91281dd9 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91626ec4 __skb_checksum +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a0a539 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x91a1f128 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b370f2 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x91e62a97 generic_update_time +EXPORT_SYMBOL vmlinux 0x9208d88b config_group_init +EXPORT_SYMBOL vmlinux 0x921083fc kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x921b2163 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x9225a1df page_pool_create +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923474d8 __sock_create +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92465b4c bio_put +EXPORT_SYMBOL vmlinux 0x924903e0 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92935083 bio_chain +EXPORT_SYMBOL vmlinux 0x92a85f03 touch_atime +EXPORT_SYMBOL vmlinux 0x92af2d97 try_to_release_page +EXPORT_SYMBOL vmlinux 0x92b60f5a scsi_device_put +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c9c7d8 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x92ce3c01 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x92dfe0b4 inet_gro_receive +EXPORT_SYMBOL vmlinux 0x92e59b85 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fa99a8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93095812 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x930f1646 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x9339d649 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x934a997d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x934e72e9 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9350d006 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x9355f840 vfs_readlink +EXPORT_SYMBOL vmlinux 0x93730fc5 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x937333d6 get_agp_version +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9385bb4c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x93a57dba kernel_sendpage +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b40bf5 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x93bc551a kernel_listen +EXPORT_SYMBOL vmlinux 0x93c660c9 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x93caabae xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0x93cd000d dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x93d06837 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x93e1fdb9 new_inode +EXPORT_SYMBOL vmlinux 0x93e3db22 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x93f61651 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x93faee97 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x93fb45da generic_writepages +EXPORT_SYMBOL vmlinux 0x93fdc9ed skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x940bd3a0 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x9415fddd alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9452a14b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x945c6487 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x94605e27 sock_i_uid +EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9470658b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9472800a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x94841b50 arp_send +EXPORT_SYMBOL vmlinux 0x948f006c con_is_visible +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949dbd40 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94af863e __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c25c49 inet6_release +EXPORT_SYMBOL vmlinux 0x94d87727 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x94ed018f compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x94f231b0 datagram_poll +EXPORT_SYMBOL vmlinux 0x94feb22e pci_read_config_word +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x952d13b1 noop_llseek +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9545d4b8 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x95470c1b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x954a10c9 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9587f763 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x95987aad _dev_notice +EXPORT_SYMBOL vmlinux 0x95af8c10 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x95b3bf59 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x95df3016 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x95fed3ac mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x96007d06 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x960975e8 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x9610b65d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x9636870d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x963bc6b8 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x966009eb pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x966071fe vme_register_bridge +EXPORT_SYMBOL vmlinux 0x966ee8cb dma_resv_init +EXPORT_SYMBOL vmlinux 0x966f1acb giveup_fpu +EXPORT_SYMBOL vmlinux 0x96835445 dquot_commit +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x968ddcb1 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x9691929f netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x969c0443 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x96a9e480 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b3d578 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x96bcdd38 config_item_get +EXPORT_SYMBOL vmlinux 0x96be1cd4 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c7446b sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x96c8269c pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x96ccc510 done_path_create +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e7390d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9709560b mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x970f8d78 bio_reset +EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars +EXPORT_SYMBOL vmlinux 0x972047f4 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x9738b5f6 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x97391e0a dev_uc_add +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x973cf1d7 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974d2d31 sk_common_release +EXPORT_SYMBOL vmlinux 0x977e7487 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x9782f54a rproc_free +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a098be __inet_hash +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a8fdd2 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b317f0 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x97b44b64 dma_virt_ops +EXPORT_SYMBOL vmlinux 0x97b733a7 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97ce5eba __pci_register_driver +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x98150fd5 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x981bae92 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x982606ed tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98432578 ps2_drain +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set +EXPORT_SYMBOL vmlinux 0x9863b656 radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0x987074c5 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x988b9b6c pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x988bdf66 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x98b6869b inode_init_always +EXPORT_SYMBOL vmlinux 0x98c83477 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e2f976 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f48f41 request_key_rcu +EXPORT_SYMBOL vmlinux 0x98f7be07 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x9908dd8b unregister_md_personality +EXPORT_SYMBOL vmlinux 0x991fd1ab key_move +EXPORT_SYMBOL vmlinux 0x99275f2b dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9947d196 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x9950818b rtnl_notify +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995dd1ed of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x998ed96d unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x9994315f get_fs_type +EXPORT_SYMBOL vmlinux 0x9995495b nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a916a3 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b54d17 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x99c1e225 tcp_close +EXPORT_SYMBOL vmlinux 0x99cdeb9d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a0313e4 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a253813 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x9a352876 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a783733 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x9a7d9fac inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9a97ca39 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x9aa85f13 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab7a6ae devm_ioport_map +EXPORT_SYMBOL vmlinux 0x9abc634e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x9ac9a4b6 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9ace95a6 devm_iounmap +EXPORT_SYMBOL vmlinux 0x9ade72ff devm_release_resource +EXPORT_SYMBOL vmlinux 0x9ade9216 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9ae57f22 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x9aeda143 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x9b13ac34 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x9b18173e read_cache_pages +EXPORT_SYMBOL vmlinux 0x9b1f85e9 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b58c7b6 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9b65ffed config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9b67f84e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x9b6885c7 of_get_address +EXPORT_SYMBOL vmlinux 0x9b7cd7fa qdisc_put +EXPORT_SYMBOL vmlinux 0x9b851861 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x9b94009b of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x9b9c1d49 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9bb19b7f mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x9bc8a832 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x9bd4c811 __module_get +EXPORT_SYMBOL vmlinux 0x9bf2bfca generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x9c1c7c42 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x9c623ff3 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9c65558f seq_lseek +EXPORT_SYMBOL vmlinux 0x9c782fc2 dquot_get_state +EXPORT_SYMBOL vmlinux 0x9c7ec377 param_set_bool +EXPORT_SYMBOL vmlinux 0x9c80b2fb finish_no_open +EXPORT_SYMBOL vmlinux 0x9c84a01c load_nls +EXPORT_SYMBOL vmlinux 0x9c8d2d26 prepare_creds +EXPORT_SYMBOL vmlinux 0x9c942adc vprintk_emit +EXPORT_SYMBOL vmlinux 0x9c9fa819 dev_get_stats +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd88bbe vme_master_request +EXPORT_SYMBOL vmlinux 0x9cdf2433 dput +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf68034 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x9cfb2f7a blk_put_request +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1e125e max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x9d335280 param_ops_int +EXPORT_SYMBOL vmlinux 0x9d439c10 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x9d4f69fd read_code +EXPORT_SYMBOL vmlinux 0x9d566165 sock_no_listen +EXPORT_SYMBOL vmlinux 0x9d5a28ed mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d90a6e7 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0x9d99b817 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9da2d6bd pci_scan_bus +EXPORT_SYMBOL vmlinux 0x9dad99a1 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9de374be __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9df8c46f seq_escape +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0d85c6 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x9e0f7178 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e19c1e8 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x9e39d397 timer_interrupt +EXPORT_SYMBOL vmlinux 0x9e4661ec ns_capable_setid +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e97ed55 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea53d7f vsnprintf +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9f0c5fae nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9f252029 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9f3cb2bf inet_bind +EXPORT_SYMBOL vmlinux 0x9f419948 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f9c3e __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f65e9ff lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x9f67c8b7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x9f7e167d netif_device_detach +EXPORT_SYMBOL vmlinux 0x9f92baae fsync_bdev +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa4a68a i8042_install_filter +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fc4f9fa kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x9fd38b59 inet_release +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00bed8b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa0194b94 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04ec78d alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa06ee35a kobject_set_name +EXPORT_SYMBOL vmlinux 0xa073245b param_get_bool +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa083a4ef of_platform_device_create +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0905e1f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xa0929301 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dfc209 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa0e9c0a1 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa0ea087a dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa101f676 md_write_inc +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa129176f t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xa1409778 has_capability +EXPORT_SYMBOL vmlinux 0xa14b221d _copy_to_iter +EXPORT_SYMBOL vmlinux 0xa14d1ba2 fc_mount +EXPORT_SYMBOL vmlinux 0xa1506ee7 zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0xa156f2fa phy_write_paged +EXPORT_SYMBOL vmlinux 0xa1625271 inet_del_offload +EXPORT_SYMBOL vmlinux 0xa17efe33 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xa1808693 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xa18c8ced flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xa1b66b94 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xa1bb266f nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xa1be1aeb of_translate_address +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dac1eb lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init +EXPORT_SYMBOL vmlinux 0xa1f6df5e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xa2014a60 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa23ada4a tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa248f169 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa261a4c1 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa26deaee page_mapped +EXPORT_SYMBOL vmlinux 0xa2813c1c node_data +EXPORT_SYMBOL vmlinux 0xa2843df4 seq_write +EXPORT_SYMBOL vmlinux 0xa2892ea4 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28fb0da truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa2914601 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa2a7bccb sk_ns_capable +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2bca9c6 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xa2bef735 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa2c3832e devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xa2e443df generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xa2ee8a8a seq_read +EXPORT_SYMBOL vmlinux 0xa317ea21 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa34ad489 i2c_transfer +EXPORT_SYMBOL vmlinux 0xa34b975f d_drop +EXPORT_SYMBOL vmlinux 0xa34c34b8 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa35058b4 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xa35dfc4a compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order +EXPORT_SYMBOL vmlinux 0xa36c26e4 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xa379da3c __devm_release_region +EXPORT_SYMBOL vmlinux 0xa37b3075 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xa381a6b5 hmm_mirror_unregister +EXPORT_SYMBOL vmlinux 0xa3843e9e napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa38e6590 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a5c608 vif_device_init +EXPORT_SYMBOL vmlinux 0xa3c93b43 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d02275 fb_set_var +EXPORT_SYMBOL vmlinux 0xa3e8ad75 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa3fe324b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xa41b036b ip6_xmit +EXPORT_SYMBOL vmlinux 0xa427f469 radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xa4340244 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xa4459f3c phy_find_first +EXPORT_SYMBOL vmlinux 0xa44d8163 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xa45abb59 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa4784e0e __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xa483763b sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa497367c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa4a9d7bf open_exec +EXPORT_SYMBOL vmlinux 0xa4b8bb38 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dfb8ce ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xa4ef3c24 inode_permission +EXPORT_SYMBOL vmlinux 0xa4faa287 of_find_backlight +EXPORT_SYMBOL vmlinux 0xa500fa1b da903x_query_status +EXPORT_SYMBOL vmlinux 0xa5028967 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa515a377 del_gendisk +EXPORT_SYMBOL vmlinux 0xa5202e8b seq_open +EXPORT_SYMBOL vmlinux 0xa521ab7a vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa531dace dump_skip +EXPORT_SYMBOL vmlinux 0xa5510204 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5614507 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0xa57fd868 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xa58c3aae tso_build_hdr +EXPORT_SYMBOL vmlinux 0xa5956abe ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0xa59c01ea mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xa5a51a78 inc_nlink +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5e693e2 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xa5f3b683 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xa5f5c38b rio_query_mport +EXPORT_SYMBOL vmlinux 0xa603182f memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0xa60775fd scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xa6155295 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6261fed add_to_pipe +EXPORT_SYMBOL vmlinux 0xa63c5512 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa659d86e inode_init_owner +EXPORT_SYMBOL vmlinux 0xa66aec7f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa69e3d41 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa6b6baaf jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa6b9d270 clear_nlink +EXPORT_SYMBOL vmlinux 0xa6e91764 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa6f0f8a5 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa7008ff5 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa702b9d6 clear_user_page +EXPORT_SYMBOL vmlinux 0xa7091d53 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xa71af8fa kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xa7295ef2 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xa72bb7f3 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa75b3706 pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xa76271a3 I_BDEV +EXPORT_SYMBOL vmlinux 0xa76e79cb proto_unregister +EXPORT_SYMBOL vmlinux 0xa7714e7b skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa7793577 rproc_put +EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78ab724 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift +EXPORT_SYMBOL vmlinux 0xa7caaddb mpage_readpages +EXPORT_SYMBOL vmlinux 0xa7d4bb42 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7e576eb eth_mac_addr +EXPORT_SYMBOL vmlinux 0xa7e66b6a ilookup +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f94806 of_match_device +EXPORT_SYMBOL vmlinux 0xa7fd968e dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xa8099bb3 seq_vprintf +EXPORT_SYMBOL vmlinux 0xa80fbe2c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xa82b6a33 bio_endio +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa864c525 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86d3a46 skb_clone +EXPORT_SYMBOL vmlinux 0xa8751e17 dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0xa87a9380 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa88a22cd sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa88dd6dc textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa8944d9f gro_cells_init +EXPORT_SYMBOL vmlinux 0xa89ca6a5 import_iovec +EXPORT_SYMBOL vmlinux 0xa8db3e40 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xa8ec81cb netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa8f5ec3d simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90e85ed scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa925771f put_fs_context +EXPORT_SYMBOL vmlinux 0xa9318c10 nf_log_trace +EXPORT_SYMBOL vmlinux 0xa93922fb ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa93aad37 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa94640bb mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xa94ae806 d_path +EXPORT_SYMBOL vmlinux 0xa9552b14 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xa95f1b5c inet_put_port +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9699339 fs_bio_set +EXPORT_SYMBOL vmlinux 0xa97a008e sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a01156 input_set_keycode +EXPORT_SYMBOL vmlinux 0xa9a83ca1 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xa9ad7486 __d_drop +EXPORT_SYMBOL vmlinux 0xa9d6922e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xa9dce2be free_buffer_head +EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9e75313 console_stop +EXPORT_SYMBOL vmlinux 0xaa12d6de blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xaa173779 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xaa2a31ab unregister_qdisc +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa56540e serio_interrupt +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7696e5 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xaaae129d pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xaacda781 tcf_generic_walker +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 0xaaed04fd memcpy_page_flushcache +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab14e3f9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xab1a36d4 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xab2fb7c5 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xab345371 sg_miter_next +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab5a1742 seq_path +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 0xabbcf26e genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac2d2b44 to_nd_dax +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac544173 phy_stop +EXPORT_SYMBOL vmlinux 0xac5c6b36 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac79416c tty_register_device +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac930a61 key_put +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xaca68051 dump_emit +EXPORT_SYMBOL vmlinux 0xaca8122d dev_addr_del +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacacd19d dev_mc_flush +EXPORT_SYMBOL vmlinux 0xacb5a228 commit_creds +EXPORT_SYMBOL vmlinux 0xacbb50f4 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace401c8 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad017bc6 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad06f652 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xad1c7c9b unregister_quota_format +EXPORT_SYMBOL vmlinux 0xad201b5b pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xad2c3b62 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xad4f1f69 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xad4f5457 send_sig +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad5597ad dev_addr_add +EXPORT_SYMBOL vmlinux 0xad617fad vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad80858c call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xad80cf2e elevator_alloc +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada734d8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xada9ba3a simple_lookup +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadafbe64 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xadb03c1c nobh_write_end +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc6abfd dev_disable_lro +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadcef378 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xadd53bf9 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xadd661d7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xadd6f7e1 iptun_encaps +EXPORT_SYMBOL vmlinux 0xadf84e79 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xadf8d235 dentry_open +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae078dda netlink_set_err +EXPORT_SYMBOL vmlinux 0xae13b6b5 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xae1d1589 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xae1def0d agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xae25c141 vm_event_states +EXPORT_SYMBOL vmlinux 0xae2a6451 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae51b9a9 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xae53ec12 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae5fd402 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xae70e413 textsearch_register +EXPORT_SYMBOL vmlinux 0xae806f2d pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0xae870ad9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xae9624fb iget5_locked +EXPORT_SYMBOL vmlinux 0xaec3cbef dm_register_target +EXPORT_SYMBOL vmlinux 0xaec83b3e dentry_path_raw +EXPORT_SYMBOL vmlinux 0xaed6fdb9 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xaede0bf4 eth_type_trans +EXPORT_SYMBOL vmlinux 0xaefc2e83 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xaefcf10e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xaf0386ae linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf13c1f7 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xaf15a734 dst_alloc +EXPORT_SYMBOL vmlinux 0xaf31303f cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xaf32774f devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf425e8c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xaf511046 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xaf53d6bb udp_sendmsg +EXPORT_SYMBOL vmlinux 0xaf5aa59c netdev_features_change +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf6cd513 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xafa80c7d pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0xafaa4068 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xafb4ef32 mr_table_dump +EXPORT_SYMBOL vmlinux 0xafcfa468 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xafd452f0 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xafdee885 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xaff5e1bb jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xaff7f6c1 __debugger_bpt +EXPORT_SYMBOL vmlinux 0xb0170e35 uart_register_driver +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02f034f blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xb0350595 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xb04d6002 udp_prot +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb081245a __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xb09648f7 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a136bc kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xb0a8066c path_nosuid +EXPORT_SYMBOL vmlinux 0xb0ab9ff1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb0b98685 param_array_ops +EXPORT_SYMBOL vmlinux 0xb0ba6d2f netif_skb_features +EXPORT_SYMBOL vmlinux 0xb0c02832 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xb0c090fc gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb0d36513 sock_init_data +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eaff51 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f777f1 tcf_block_put +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb12316a6 of_get_parent +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14e97c8 blkdev_get +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb179ef76 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0xb1a3e3d7 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xb1a553d0 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xb1a5bdba netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb1a7b2c3 agp_create_memory +EXPORT_SYMBOL vmlinux 0xb1b3b2f8 uart_resume_port +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d26607 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xb1d86fe5 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e12d81 krealloc +EXPORT_SYMBOL vmlinux 0xb1e3283f skb_find_text +EXPORT_SYMBOL vmlinux 0xb1f15c34 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb24dae47 genphy_loopback +EXPORT_SYMBOL vmlinux 0xb2621688 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb2a10c95 profile_pc +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xb2ae1671 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2b398c5 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xb2dc434c shared_processor +EXPORT_SYMBOL vmlinux 0xb2e098ee xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f6098a dquot_drop +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30bfbbd vfs_rmdir +EXPORT_SYMBOL vmlinux 0xb30d5107 ip_frag_init +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3815904 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb3bbbb2f cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xb3c04833 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb3c0897f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f06169 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fc8a5a dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xb40bb685 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb40fa97f pci_write_config_word +EXPORT_SYMBOL vmlinux 0xb417f082 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb422d858 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42a81f1 make_kuid +EXPORT_SYMBOL vmlinux 0xb43789e2 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xb44ad4b3 _copy_to_user +EXPORT_SYMBOL vmlinux 0xb459c067 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb460722f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb47da03d generic_write_end +EXPORT_SYMBOL vmlinux 0xb487b316 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb48c9194 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4cf800d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb4d92883 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xb4d97537 cdev_alloc +EXPORT_SYMBOL vmlinux 0xb4df2c81 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xb4e42707 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f4706e mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xb50298b5 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0xb502c83d agp_generic_enable +EXPORT_SYMBOL vmlinux 0xb50db3ee security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xb5127cc6 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xb515bb90 tty_do_resize +EXPORT_SYMBOL vmlinux 0xb51a84d9 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xb5499bd7 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xb54bfbf0 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb553c8b9 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xb55d6b40 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb565c12e bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5794d19 nmi_panic +EXPORT_SYMBOL vmlinux 0xb583b60c __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58b5220 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a4aa5d __napi_schedule +EXPORT_SYMBOL vmlinux 0xb5a62a11 scsi_add_device +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae9c02 skb_dequeue +EXPORT_SYMBOL vmlinux 0xb5b83b62 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xb5bb0043 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xb5d8b60e tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb5e6dc45 skb_push +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5fab355 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb5fb05b4 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xb60e6766 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xb61ecfd8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xb620d390 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6383e9d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb6446437 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb65408c9 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb65fcf2d io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xb66d0a0f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6bd00c5 phy_device_remove +EXPORT_SYMBOL vmlinux 0xb6be27a5 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xb6c6f194 proc_set_size +EXPORT_SYMBOL vmlinux 0xb6c9a10e __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xb6cc39d4 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xb6e18921 mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e42caa blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xb6e8dbd0 netdev_warn +EXPORT_SYMBOL vmlinux 0xb6f755d2 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xb6f8a9a3 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section +EXPORT_SYMBOL vmlinux 0xb7344a4b mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xb7568330 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb7897608 of_device_unregister +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7a04841 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xb7b036e3 get_phy_device +EXPORT_SYMBOL vmlinux 0xb7b4884e get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xb7ba4a1a skb_put +EXPORT_SYMBOL vmlinux 0xb7bb471d dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xb7bea090 arch_free_page +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb7fa6c4c pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb7fdb39a compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb801ccd4 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xb80b34db of_read_drc_info_cell +EXPORT_SYMBOL vmlinux 0xb8179f98 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb824d63c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb8342e28 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xb84793d5 vfs_get_link +EXPORT_SYMBOL vmlinux 0xb84d58b3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xb86b64dd phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xb86dede0 set_wb_congested +EXPORT_SYMBOL vmlinux 0xb872b098 serio_close +EXPORT_SYMBOL vmlinux 0xb872c141 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b1ad9d tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8cedda2 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xb8d5e1ca migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xb8fb3fc5 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb8ffb744 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb918ad7a scm_detach_fds +EXPORT_SYMBOL vmlinux 0xb91dc5d5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb931f147 no_llseek +EXPORT_SYMBOL vmlinux 0xb93fb919 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94670b6 tcf_register_action +EXPORT_SYMBOL vmlinux 0xb98d87fc scsi_print_result +EXPORT_SYMBOL vmlinux 0xb9a4e9cd scm_fp_dup +EXPORT_SYMBOL vmlinux 0xb9be5c83 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xb9c47a3a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xb9cddedd mntget +EXPORT_SYMBOL vmlinux 0xb9dab2c0 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xb9e09d04 bio_add_page +EXPORT_SYMBOL vmlinux 0xb9e4670c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ee149b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xb9f1d29a generic_perform_write +EXPORT_SYMBOL vmlinux 0xb9ffb203 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba444ec1 mr_dump +EXPORT_SYMBOL vmlinux 0xba44f9cf file_path +EXPORT_SYMBOL vmlinux 0xba483f33 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5b2afc __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xba691c85 _insb +EXPORT_SYMBOL vmlinux 0xba6df832 sync_file_create +EXPORT_SYMBOL vmlinux 0xba6f0566 clear_inode +EXPORT_SYMBOL vmlinux 0xba8b74be kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xba966987 simple_readpage +EXPORT_SYMBOL vmlinux 0xba96b3f2 set_user_nice +EXPORT_SYMBOL vmlinux 0xbaa29f40 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbab82c47 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xbac07265 phy_device_create +EXPORT_SYMBOL vmlinux 0xbac4717f mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xbad0556b ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xbad16375 md_handle_request +EXPORT_SYMBOL vmlinux 0xbae145bc blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xbae2dc06 vm_map_pages +EXPORT_SYMBOL vmlinux 0xbafc0261 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xbb04f989 backlight_force_update +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0f3949 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbb1abb00 blk_get_queue +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2dff25 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3bf2c2 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5662b0 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xbb58ea66 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xbb782d91 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xbb8e456f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xbb91b171 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xbbaf9816 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xbbb4151a phy_validate_pause +EXPORT_SYMBOL vmlinux 0xbbb8270a kdb_current_task +EXPORT_SYMBOL vmlinux 0xbbc6d62a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xbbcd1406 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xbbcfe03b eth_gro_receive +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbec80b7 inet6_getname +EXPORT_SYMBOL vmlinux 0xbbf48f8e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xbc1a4e86 hmm_mirror_register +EXPORT_SYMBOL vmlinux 0xbc246db1 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc499850 igrab +EXPORT_SYMBOL vmlinux 0xbc53057d dev_mc_sync +EXPORT_SYMBOL vmlinux 0xbc749ef1 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xbc7df953 arp_tbl +EXPORT_SYMBOL vmlinux 0xbc87a377 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcad8bf2 flush_signals +EXPORT_SYMBOL vmlinux 0xbcae299a register_netdevice +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf5496c mmc_retune_release +EXPORT_SYMBOL vmlinux 0xbcfcea96 unlock_page +EXPORT_SYMBOL vmlinux 0xbd007964 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xbd239332 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xbd27fc9d __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xbd293f7b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xbd35568a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd821cc8 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xbd8b1953 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xbd8bbf22 dquot_enable +EXPORT_SYMBOL vmlinux 0xbd900cc0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xbd91b089 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xbda3fd40 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xbdb4692a flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xbdc731a3 file_ns_capable +EXPORT_SYMBOL vmlinux 0xbde378d0 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xbdfe3091 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbe317175 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xbe466772 param_get_short +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe56d2b1 qdisc_reset +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe6a2c62 d_rehash +EXPORT_SYMBOL vmlinux 0xbe6e59aa __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xbe91fd4a jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xbeb0e727 input_free_device +EXPORT_SYMBOL vmlinux 0xbeb450eb rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbeb49e39 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xbeb7c5b7 dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0xbedede13 serio_open +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf12de65 inc_node_state +EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns +EXPORT_SYMBOL vmlinux 0xbf8a240b mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xbf9a50f5 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb13808 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xbfb22041 input_reset_device +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe853e5 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xbfec34ca key_link +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xbffdf91e inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xc019de00 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xc01a5ca7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc01ce329 _dev_crit +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc042de03 dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc05de296 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xc067b8fc put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xc069511a vfio_register_notifier +EXPORT_SYMBOL vmlinux 0xc06f6a71 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07833eb scsi_host_put +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0808211 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xc0812195 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init +EXPORT_SYMBOL vmlinux 0xc0b9008a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c6a625 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xc0cd6ff9 page_symlink +EXPORT_SYMBOL vmlinux 0xc0d48b37 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xc0d644e4 dev_deactivate +EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue +EXPORT_SYMBOL vmlinux 0xc0df6c10 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xc0ef5200 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc115513f rtas +EXPORT_SYMBOL vmlinux 0xc1179daa kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xc118498b neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc11ddd0e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xc1230206 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xc1328cee start_thread +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc154948e kernel_getpeername +EXPORT_SYMBOL vmlinux 0xc15982bf skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc173f074 skb_split +EXPORT_SYMBOL vmlinux 0xc17641f5 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xc1839c5d f_setown +EXPORT_SYMBOL vmlinux 0xc186e509 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc199b947 __lock_page +EXPORT_SYMBOL vmlinux 0xc1acf2c8 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc1c7795b vme_bus_type +EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc1d85104 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e463e0 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xc1ef19f5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc2012e57 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc202b7df sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc20bd7ea blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xc22964b7 devm_memremap +EXPORT_SYMBOL vmlinux 0xc231d87f pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xc2320ba1 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc2331da3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xc2416b77 stream_open +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc249debf dm_get_device +EXPORT_SYMBOL vmlinux 0xc24e0ab5 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc26f91e2 give_up_console +EXPORT_SYMBOL vmlinux 0xc2887197 __check_sticky +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2e32b31 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2eaaf25 inet_gso_segment +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc34629b4 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc34827de input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc385a49b textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc391f78e register_netdev +EXPORT_SYMBOL vmlinux 0xc39a3988 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc39b70a4 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xc3b7f2ab __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc3c576f9 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xc3dbe4cf seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xc3e04e43 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xc3e97af0 pci_choose_state +EXPORT_SYMBOL vmlinux 0xc3e99834 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xc3f10442 __f_setown +EXPORT_SYMBOL vmlinux 0xc3f27639 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc3fe4bd5 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xc4183573 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc430abb1 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xc4423ce9 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc444c6e8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xc446ce91 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc4591d5d ptp_clock_event +EXPORT_SYMBOL vmlinux 0xc46159d1 phy_start +EXPORT_SYMBOL vmlinux 0xc46e29cb simple_open +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc492ee7a find_vma +EXPORT_SYMBOL vmlinux 0xc4a1006b skb_ext_add +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b23906 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc4d1adf6 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc4d55693 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc4d8c6ba xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc4daa735 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xc4f8c553 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xc5075d95 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xc50da28b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc514a472 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xc53f9dc9 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xc543d9f2 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc54f0a47 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc563068e refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xc5771a2d drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xc5799a61 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5b687d8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5d8979f xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e4594e neigh_table_clear +EXPORT_SYMBOL vmlinux 0xc5e58a5f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ed20f6 revert_creds +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fa0bcb block_read_full_page +EXPORT_SYMBOL vmlinux 0xc60072fd kern_path +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc611adcd cfb_copyarea +EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc62a3064 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xc637f560 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc63806f7 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0xc64c9103 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc67e2343 get_disk_and_module +EXPORT_SYMBOL vmlinux 0xc699fd45 dma_cache_sync +EXPORT_SYMBOL vmlinux 0xc69abafd ll_rw_block +EXPORT_SYMBOL vmlinux 0xc6b4bfb9 ilookup5 +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xc6f2fb76 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc718074d kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7390f4e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc73974d1 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xc7537b5c nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xc7723f87 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7bf0982 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e6486a pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc7eb16b3 check_disk_change +EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy +EXPORT_SYMBOL vmlinux 0xc81251b5 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xc81b1ce3 proc_create_data +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc834f1be xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc83e4a90 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc859063f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xc8660e7f d_add_ci +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88dee84 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc8903193 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc894b573 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xc8a3208f md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b09b4d cred_fscmp +EXPORT_SYMBOL vmlinux 0xc8b9bfc4 elv_rb_add +EXPORT_SYMBOL vmlinux 0xc8bb02ac cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xc8c34e3b PageMovable +EXPORT_SYMBOL vmlinux 0xc8dc90a4 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xc8fe9f07 rproc_add +EXPORT_SYMBOL vmlinux 0xc90c7a2e pci_request_irq +EXPORT_SYMBOL vmlinux 0xc9150e47 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc91a7e73 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc91e999a input_close_device +EXPORT_SYMBOL vmlinux 0xc94fca71 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9719748 bio_uninit +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc985acdb blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc9919a4e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xc99d9d07 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9bf06ca nd_dax_probe +EXPORT_SYMBOL vmlinux 0xc9c5e59f devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xc9c65081 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xc9cf070d set_binfmt +EXPORT_SYMBOL vmlinux 0xc9d761f7 cdev_device_add +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1d42af twl6040_power +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca347c50 tcf_block_get +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5171f8 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xca5610e3 of_device_alloc +EXPORT_SYMBOL vmlinux 0xca561b6d security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xca5b74f4 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca7616a4 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xca86fbdf blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca93719f nd_device_register +EXPORT_SYMBOL vmlinux 0xca9527bf pid_task +EXPORT_SYMBOL vmlinux 0xcaa8702e posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcaaaa132 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xcaec21b9 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xcaece3ba jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xcaefc129 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf93729 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xcb02780e block_truncate_page +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb3e5ef0 __scm_destroy +EXPORT_SYMBOL vmlinux 0xcb605291 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xcb76c2a6 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xcb7bc2db netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xcb7fef79 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xcb907522 of_node_get +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcbaee821 sock_alloc +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbbf2ed2 dquot_disable +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc04cd68 __pagevec_release +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc3dc97d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xcc3ea5f6 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc502037 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5e35ef udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xcc6ba92a md_error +EXPORT_SYMBOL vmlinux 0xcc6d15f3 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xcc7f4f13 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xcc928cc8 netdev_err +EXPORT_SYMBOL vmlinux 0xcc94bb68 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xcc9c1e48 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xcca26c7f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xccb3b479 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xccb5980d blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc3c311 vga_get +EXPORT_SYMBOL vmlinux 0xccc64117 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b6d3 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd122453 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xcd274303 is_bad_inode +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2d0f03 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xcd2f1b41 md_update_sb +EXPORT_SYMBOL vmlinux 0xcd4af5d4 param_ops_charp +EXPORT_SYMBOL vmlinux 0xcd5fd680 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0xcd653bd3 sock_no_accept +EXPORT_SYMBOL vmlinux 0xcd792964 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcda2a892 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xcdadb607 of_dev_put +EXPORT_SYMBOL vmlinux 0xcdb58295 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcddb4b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xcdd16315 dev_uc_init +EXPORT_SYMBOL vmlinux 0xcdd2771f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf127ae udp_poll +EXPORT_SYMBOL vmlinux 0xcdfdef5d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xce0a0d78 srp_rport_put +EXPORT_SYMBOL vmlinux 0xce13c86a devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c4094 ipv4_specific +EXPORT_SYMBOL vmlinux 0xce2e60b2 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xce35f0ec jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xce3629ff skb_unlink +EXPORT_SYMBOL vmlinux 0xce3f1bec file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xce406fd4 pps_register_source +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce54c938 complete_all +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61f984 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xce65135c t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xce73da9d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce7fee1c pagecache_write_end +EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next +EXPORT_SYMBOL vmlinux 0xce820a60 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xce82c950 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb51496 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xceb838d8 proc_set_user +EXPORT_SYMBOL vmlinux 0xcebf664d fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 +EXPORT_SYMBOL vmlinux 0xcec7f30d ptp_clock_register +EXPORT_SYMBOL vmlinux 0xced6238d devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef66bab rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefffc35 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf22ef76 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xcf42f6db mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xcf697093 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xcf6b98eb textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcf79bb43 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xcf8f4344 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfafd4bd param_get_invbool +EXPORT_SYMBOL vmlinux 0xcfb89564 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xcfcde8a3 d_make_root +EXPORT_SYMBOL vmlinux 0xcfd45fc4 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcffee203 dev_mc_init +EXPORT_SYMBOL vmlinux 0xd003c64f can_nice +EXPORT_SYMBOL vmlinux 0xd02e2203 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xd03c4eab blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd03da907 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0684125 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd0869d9e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a6cbe6 filemap_fault +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0bd487b hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd0ce1c74 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xd0cf742a get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xd0dc773f get_tz_trend +EXPORT_SYMBOL vmlinux 0xd0f5fc7d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xd0f75c59 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11142e2 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xd111e6e5 set_anon_super +EXPORT_SYMBOL vmlinux 0xd11387ad abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd11e20c4 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd1211407 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd12867bd pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xd12a9f6b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd13ce22b pci_select_bars +EXPORT_SYMBOL vmlinux 0xd140251f simple_getattr +EXPORT_SYMBOL vmlinux 0xd1436e1e phy_detach +EXPORT_SYMBOL vmlinux 0xd14de635 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xd1536914 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xd167f262 cdrom_release +EXPORT_SYMBOL vmlinux 0xd1683a59 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xd168a0cd vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xd174e61e devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xd179f319 mount_subtree +EXPORT_SYMBOL vmlinux 0xd17d197e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18fe5f6 completion_done +EXPORT_SYMBOL vmlinux 0xd199c51b module_layout +EXPORT_SYMBOL vmlinux 0xd199fb20 dma_set_mask +EXPORT_SYMBOL vmlinux 0xd1a44a77 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd1b10e0c __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1fc69b9 tty_port_close +EXPORT_SYMBOL vmlinux 0xd1fdb97a dm_put_device +EXPORT_SYMBOL vmlinux 0xd1fe6d77 rproc_alloc +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd23652b2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xd239d743 fb_show_logo +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2608530 dquot_operations +EXPORT_SYMBOL vmlinux 0xd262dfcb vscnprintf +EXPORT_SYMBOL vmlinux 0xd271ad31 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27e802f tty_kref_put +EXPORT_SYMBOL vmlinux 0xd286d4d9 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd2954047 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd2c12197 make_bad_inode +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2efa08e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xd317559a inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32b3f4f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd33c32bd mutex_is_locked +EXPORT_SYMBOL vmlinux 0xd34c7c32 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd354b80d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35eb3aa dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd38f59fa genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xd3bbe51c __xa_alloc +EXPORT_SYMBOL vmlinux 0xd3d158a3 vmemmap +EXPORT_SYMBOL vmlinux 0xd3db2458 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd3de33ed rps_needed +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3efb8f2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xd3fb99dd pci_dev_get +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41fce3e from_kuid +EXPORT_SYMBOL vmlinux 0xd43c4807 follow_down +EXPORT_SYMBOL vmlinux 0xd43cf732 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xd445d23c fb_set_suspend +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd46cefdb dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4aa7e36 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c39014 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xd4cbf647 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xd4cd5517 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find +EXPORT_SYMBOL vmlinux 0xd4e7c516 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xd51a91de write_one_page +EXPORT_SYMBOL vmlinux 0xd51b38aa kern_unmount +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5349f04 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xd54ac747 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xd574e710 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xd57b06b1 simple_rename +EXPORT_SYMBOL vmlinux 0xd5aa8754 inet_proto_csum_replace_by_diff +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 0xd5d64e79 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xd5d6a0fc km_report +EXPORT_SYMBOL vmlinux 0xd5e3856a __find_get_block +EXPORT_SYMBOL vmlinux 0xd5e9c106 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xd5ea20ee tty_write_room +EXPORT_SYMBOL vmlinux 0xd5ee4ec1 __sb_end_write +EXPORT_SYMBOL vmlinux 0xd5f05fcc key_validate +EXPORT_SYMBOL vmlinux 0xd5f60508 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xd5f6c604 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xd5fcac3f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd620f3b6 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd6362855 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd6629c39 setattr_prepare +EXPORT_SYMBOL vmlinux 0xd662bf7a i2c_release_client +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd676a659 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd680dbf4 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd69362d2 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd6985f4a __put_page +EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd709e164 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xd70ba6d5 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd72edaa2 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xd737842a register_framebuffer +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd760ad66 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0xd76319a8 __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0xd76cfb67 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xd7721ea8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7c670a3 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xd7cd4fc4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd7d0309c set_posix_acl +EXPORT_SYMBOL vmlinux 0xd7d25221 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7fdace1 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xd801373b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd81a4342 dcb_setapp +EXPORT_SYMBOL vmlinux 0xd8406d7c fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xd85c66c5 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd87c54ea mntput +EXPORT_SYMBOL vmlinux 0xd883ef0e buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd888e8d8 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xd88ea312 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xd8938414 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8abc1f8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xd8b426fd remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd8d04151 simple_unlink +EXPORT_SYMBOL vmlinux 0xd8df6328 sock_efree +EXPORT_SYMBOL vmlinux 0xd8eb2d5a dev_uc_sync +EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xd926834e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd92c624c kern_path_create +EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xd956b551 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xd9824d18 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xd983b86c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a0d561 from_kprojid +EXPORT_SYMBOL vmlinux 0xd9a446f2 decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xd9a59151 find_get_entry +EXPORT_SYMBOL vmlinux 0xd9b84412 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9cca143 serio_reconnect +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9ea5a35 mdiobus_read +EXPORT_SYMBOL vmlinux 0xda13b052 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4a5bf5 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xda588cf1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda777988 pci_free_irq +EXPORT_SYMBOL vmlinux 0xda8217a7 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xda89ae9c skb_checksum_help +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8da729 __sb_start_write +EXPORT_SYMBOL vmlinux 0xda9206df ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xda95627d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xda9c6846 param_ops_long +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa0a712 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xdaa1a282 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xdab406b5 release_sock +EXPORT_SYMBOL vmlinux 0xdabb374a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaef3a9d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xdaf9d401 _dev_emerg +EXPORT_SYMBOL vmlinux 0xdb1d7773 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xdb29bc74 page_get_link +EXPORT_SYMBOL vmlinux 0xdb2d8c90 prepare_binprm +EXPORT_SYMBOL vmlinux 0xdb541fca skb_checksum +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a4a2c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdb6cd235 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb789f9f bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xdb89d5da __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xdbd33637 dev_get_flags +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe9440f t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc0038eb fasync_helper +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc34a848 seq_release_private +EXPORT_SYMBOL vmlinux 0xdc3822f2 pci_iomap +EXPORT_SYMBOL vmlinux 0xdc3e32b5 mmc_free_host +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43ccf8 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xdc4503de xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5cd96c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xdc7a000b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdc8bd94b scmd_printk +EXPORT_SYMBOL vmlinux 0xdc8f788c truncate_setsize +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbd6ab8 freeze_bdev +EXPORT_SYMBOL vmlinux 0xdcbf772c dev_close +EXPORT_SYMBOL vmlinux 0xdcc459d5 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xdccc411a security_path_mkdir +EXPORT_SYMBOL vmlinux 0xdcd0e80e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xdcff4ce0 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xdd00415f scsi_init_io +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3646ad default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd3bcda4 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xdd4e4a43 neigh_destroy +EXPORT_SYMBOL vmlinux 0xdd5d7220 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xdd6076d3 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6bfe81 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8546fa nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xdd88dea6 __bforget +EXPORT_SYMBOL vmlinux 0xdd8b6482 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddca6a14 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xde017d56 md_check_recovery +EXPORT_SYMBOL vmlinux 0xde21f9c1 security_path_rename +EXPORT_SYMBOL vmlinux 0xde25a646 of_get_next_child +EXPORT_SYMBOL vmlinux 0xde44f2da file_remove_privs +EXPORT_SYMBOL vmlinux 0xde450536 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4e4970 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xde4e649e fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xde58f049 neigh_for_each +EXPORT_SYMBOL vmlinux 0xde74fc28 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xde85372f simple_transaction_release +EXPORT_SYMBOL vmlinux 0xde85d699 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde938957 inet_listen +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea4c8fc mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xdecd0b29 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdedd584b sk_stream_error +EXPORT_SYMBOL vmlinux 0xdee78dd0 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef9c1ae vfs_iter_write +EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf1ac053 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdf241ff6 phy_suspend +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf35ccd0 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xdf414020 vme_irq_request +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf62f3c6 cdev_del +EXPORT_SYMBOL vmlinux 0xdf79e47f blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xdf8c9151 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd1b0b6 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xdfd6755f register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xdfdb4078 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe7c649 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xdff30d67 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xe0402080 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xe04e5844 get_task_cred +EXPORT_SYMBOL vmlinux 0xe04e7263 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xe0588866 __vio_register_driver +EXPORT_SYMBOL vmlinux 0xe07df69f ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe09f32c4 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe09f87e1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3bd35 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xe0c91e6f km_policy_expired +EXPORT_SYMBOL vmlinux 0xe0c9a264 udp_set_csum +EXPORT_SYMBOL vmlinux 0xe0dd0be7 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe0e5dc8a md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe0fa4a2a pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xe10cd552 param_set_short +EXPORT_SYMBOL vmlinux 0xe1191c90 agp_enable +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe120bb10 brioctl_set +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1331996 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xe134348e __serio_register_port +EXPORT_SYMBOL vmlinux 0xe13541de writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe13d5d07 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xe145a003 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xe147d479 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xe14d8ecf ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe187eb21 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xe18a98c6 put_tty_driver +EXPORT_SYMBOL vmlinux 0xe1b59ae9 __debugger +EXPORT_SYMBOL vmlinux 0xe1bb1742 of_phy_connect +EXPORT_SYMBOL vmlinux 0xe1c9bd94 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe1d65f73 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1fe4bb3 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xe2053c5d abort_creds +EXPORT_SYMBOL vmlinux 0xe205abc5 netdev_change_features +EXPORT_SYMBOL vmlinux 0xe2164e90 pci_request_regions +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23b4a8b dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe25b46ec vfs_mknod +EXPORT_SYMBOL vmlinux 0xe276d6b8 import_single_range +EXPORT_SYMBOL vmlinux 0xe27eaaab ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xe28df227 irq_to_desc +EXPORT_SYMBOL vmlinux 0xe292f3b2 tcp_prot +EXPORT_SYMBOL vmlinux 0xe29adcf8 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xe2c19578 hmm_range_dma_map +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e93df4 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe30e5517 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xe32139ee skb_tx_error +EXPORT_SYMBOL vmlinux 0xe3247966 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe33db461 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xe35649bb bio_devname +EXPORT_SYMBOL vmlinux 0xe3739f0a nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe37c31e8 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3c463b4 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xe3dbe43c generic_fadvise +EXPORT_SYMBOL vmlinux 0xe3e02706 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xe3f82da3 tcp_poll +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe401085e fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xe40e9236 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41c05cd netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xe4273740 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe45a09fd jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xe47189f0 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0xe479bd6e kobject_add +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4870fe0 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xe4a1711f pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe4b0b90a mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe4fb9939 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4fed3b8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe51ac995 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe521b7d6 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5256d91 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xe543f4a1 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xe54c82c2 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xe550c14f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe574d2e4 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a73bb4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c9b80a to_nd_btt +EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xe5e51f86 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xe5e5715d rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61d8611 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xe61ec26e abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xe632ff1a flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xe63abf02 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xe63c4c93 unix_get_socket +EXPORT_SYMBOL vmlinux 0xe6424cf0 phy_attached_info +EXPORT_SYMBOL vmlinux 0xe64389fd blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xe6589565 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xe6826a8d fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe6861ca9 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe6901f5c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe69bb61a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xe69c5574 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe6b39e76 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe706ffb7 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xe723cb69 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe73d4abd mpage_readpage +EXPORT_SYMBOL vmlinux 0xe74ae015 init_net +EXPORT_SYMBOL vmlinux 0xe74c3f7c radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xe75ac6c1 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xe75bd104 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xe7854ca3 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe78e3c60 simple_rmdir +EXPORT_SYMBOL vmlinux 0xe7a7d4e0 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e93316 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xe7eaab55 security_path_unlink +EXPORT_SYMBOL vmlinux 0xe7f30668 mach_powernv +EXPORT_SYMBOL vmlinux 0xe81c61e5 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe821c500 udp_disconnect +EXPORT_SYMBOL vmlinux 0xe827ea71 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xe839ebb2 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe83befe0 send_sig_info +EXPORT_SYMBOL vmlinux 0xe84655cc blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xe84aafe9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe863cf3c tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe8688f70 sock_no_getname +EXPORT_SYMBOL vmlinux 0xe86d8fca posix_lock_file +EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xe881c291 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xe8a5f85f kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xe8ac14ac iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0xe8af7241 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xe8b445f5 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xe8c3fd41 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xe8ccacf7 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xe8ce3fb4 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xe8d0c92b proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xe8deaf4b scsi_print_sense +EXPORT_SYMBOL vmlinux 0xe8e217da of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xe902a471 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe9114532 mmput_async +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9375634 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe93764bd pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe954cf81 xfrm_input +EXPORT_SYMBOL vmlinux 0xe961a4fb dev_remove_pack +EXPORT_SYMBOL vmlinux 0xe9645032 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xe985d09a fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xe992e465 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xe9a8ff65 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe9bbbb68 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe9bdd470 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe9d00ffe ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xe9d93dbf xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xe9e334c9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea21d142 key_alloc +EXPORT_SYMBOL vmlinux 0xea318228 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xea38c70e phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xea3b7270 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize +EXPORT_SYMBOL vmlinux 0xea42bd92 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xea5be2d8 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea743aeb seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea8be837 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xea9f0e1a simple_fill_super +EXPORT_SYMBOL vmlinux 0xeaa3314e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xeabcd05a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xeac487c4 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xeade5ca7 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xeaed5eba vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeb03ac37 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xeb10b9c4 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xeb1f0311 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb30807d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xeb366aa7 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xeb3686ab mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb51e306 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xeb66832c dcache_dir_open +EXPORT_SYMBOL vmlinux 0xeb7ae5e3 input_event +EXPORT_SYMBOL vmlinux 0xeb7ffb1c bio_copy_data +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift +EXPORT_SYMBOL vmlinux 0xeb99a8ff napi_get_frags +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeba260c1 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebb59cff vme_lm_request +EXPORT_SYMBOL vmlinux 0xebba73f0 build_skb +EXPORT_SYMBOL vmlinux 0xebd29ae0 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xebd9c7df security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xec40501a radix__flush_tlb_pwc +EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xec52814e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xec567a72 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xec8c6d37 setup_new_exec +EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start +EXPORT_SYMBOL vmlinux 0xec9e98d3 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xeca66ccc mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xeca87ff9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xeca9d000 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xecb75bdf poll_freewait +EXPORT_SYMBOL vmlinux 0xecb80466 i2c_use_client +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc39d90 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xeccfad61 kobject_get +EXPORT_SYMBOL vmlinux 0xecd364c0 iov_iter_init +EXPORT_SYMBOL vmlinux 0xecd4e109 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf069c9 generic_write_checks +EXPORT_SYMBOL vmlinux 0xecf9a451 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xecfc06c7 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xed002e67 proc_symlink +EXPORT_SYMBOL vmlinux 0xed17d79e blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xed18fede of_get_pci_address +EXPORT_SYMBOL vmlinux 0xed5f61d2 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xed608483 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed76738b ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xed82959f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xed8f87ef skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xed94b3e8 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xed969da1 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xed9c0304 param_set_invbool +EXPORT_SYMBOL vmlinux 0xeda1f04e vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xedaa4637 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc9704a devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xedcefc3c security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xede1dc15 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xedf4ff08 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xee02f958 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xee101f5b vlan_for_each +EXPORT_SYMBOL vmlinux 0xee1b6149 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3ff05d sock_wfree +EXPORT_SYMBOL vmlinux 0xee44753d d_invalidate +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5f4933 iterate_fd +EXPORT_SYMBOL vmlinux 0xee5f5e2a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xee7037f4 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xee705fd0 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea88814 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xeec6ecaf iterate_dir +EXPORT_SYMBOL vmlinux 0xeed280ea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeed7be27 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xeee7c599 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xeefc205c mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xeeffa34b xps_needed +EXPORT_SYMBOL vmlinux 0xef06e594 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xef0abe46 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xef10a3a8 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xef132304 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xef29ced1 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xef32672c blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xef3e5e9a pci_enable_device +EXPORT_SYMBOL vmlinux 0xef650f67 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xef67e6af insert_inode_locked +EXPORT_SYMBOL vmlinux 0xef829bce alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xef89d185 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb83434 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xefcb2eae noop_fsync +EXPORT_SYMBOL vmlinux 0xefebbd40 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xeff064ec generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xeff33a30 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xeff608e0 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf005ff79 tcp_check_req +EXPORT_SYMBOL vmlinux 0xf01520fd complete_request_key +EXPORT_SYMBOL vmlinux 0xf0233fb1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock +EXPORT_SYMBOL vmlinux 0xf0332ec6 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xf04adfd3 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xf04e6df7 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xf04ff9fb zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xf061020f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf073110e __skb_pad +EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a2e54e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf0aeafdd block_invalidatepage +EXPORT_SYMBOL vmlinux 0xf0ced5b8 page_mapping +EXPORT_SYMBOL vmlinux 0xf0da1414 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf11e0ef9 __vmalloc +EXPORT_SYMBOL vmlinux 0xf11ed7ac ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xf11fa87b rt6_lookup +EXPORT_SYMBOL vmlinux 0xf12fa0a0 lookup_one_len +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b7f681 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf1c6399d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e63929 devmap_managed_key +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20c6cb5 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf20e4acf __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf2137036 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xf21713f0 proto_register +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf227e7da __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf22b9cfb ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf231464b scsi_device_get +EXPORT_SYMBOL vmlinux 0xf235b327 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xf23c860a register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf26ff9c0 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xf2798d7f pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf29f3b3e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a9d0e4 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c8c8a2 sk_alloc +EXPORT_SYMBOL vmlinux 0xf2e3d0f6 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f41438 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32d5a80 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3476673 peernet2id +EXPORT_SYMBOL vmlinux 0xf3488c0a neigh_xmit +EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35c03c6 get_super +EXPORT_SYMBOL vmlinux 0xf373d62c tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39f8aa9 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e883fb param_ops_uint +EXPORT_SYMBOL vmlinux 0xf4247031 md_flush_request +EXPORT_SYMBOL vmlinux 0xf425c0c3 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring +EXPORT_SYMBOL vmlinux 0xf4346799 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf45ad5ab ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf461ff27 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xf467e778 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf478c4f3 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xf47e6d61 md_done_sync +EXPORT_SYMBOL vmlinux 0xf47ff6e4 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf48816a7 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xf491817c blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xf4a56ddc skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c8cbc6 pci_save_state +EXPORT_SYMBOL vmlinux 0xf4cbd42d vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc902c rt_dst_clone +EXPORT_SYMBOL vmlinux 0xf4dfecdf pcim_iomap +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fa2649 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf512f670 netdev_printk +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +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 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5baf6c8 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf5c13085 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xf5c4b444 memcpy_flushcache +EXPORT_SYMBOL vmlinux 0xf5cc5d77 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xf5d3b359 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e5290a pci_map_rom +EXPORT_SYMBOL vmlinux 0xf5e5a87b hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xf6212227 inet6_offloads +EXPORT_SYMBOL vmlinux 0xf6270673 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xf629cc52 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xf62e6e6b pci_irq_vector +EXPORT_SYMBOL vmlinux 0xf6331299 pipe_unlock +EXPORT_SYMBOL vmlinux 0xf63ef029 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64a824a abx500_register_ops +EXPORT_SYMBOL vmlinux 0xf651c5b4 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf660467a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf681acfc hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf683398a update_devfreq +EXPORT_SYMBOL vmlinux 0xf687823e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xf69a2e7e ihold +EXPORT_SYMBOL vmlinux 0xf6ac9fd2 simple_statfs +EXPORT_SYMBOL vmlinux 0xf6ae3df4 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf6bb4d1d nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xf6cf812a param_set_bint +EXPORT_SYMBOL vmlinux 0xf6d066b9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xf6dea4ac dquot_destroy +EXPORT_SYMBOL vmlinux 0xf6ea273c agp_backend_release +EXPORT_SYMBOL vmlinux 0xf6eaac5e pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed8e5e d_tmpfile +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fcb5b4 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xf6fec836 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xf7031995 eth_header_cache +EXPORT_SYMBOL vmlinux 0xf71e2a88 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf71efa9b remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xf7202f60 dm_io +EXPORT_SYMBOL vmlinux 0xf724ef26 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf7277540 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf72f49f2 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xf737cb9e pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73f1289 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xf746cf92 free_task +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75b77c0 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf7650400 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7a86f17 __breadahead +EXPORT_SYMBOL vmlinux 0xf7c1f767 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf7c8ba6c __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf7e4a3ea pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf7e7e33d of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xf7f6e66e ip_frag_next +EXPORT_SYMBOL vmlinux 0xf7f8cf89 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xf805bc2e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xf8098f40 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf80a8c59 bio_advance +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812217b dm_kobject_release +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8284150 xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83cc822 vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0xf85c89fa xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf864a131 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xf8663263 make_kgid +EXPORT_SYMBOL vmlinux 0xf8831299 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88ece5a follow_up +EXPORT_SYMBOL vmlinux 0xf89e07ec security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8dcb19c register_key_type +EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns +EXPORT_SYMBOL vmlinux 0xf8ee8120 dev_load +EXPORT_SYMBOL vmlinux 0xf8f53d16 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf9253630 sync_filesystem +EXPORT_SYMBOL vmlinux 0xf92f0431 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf96ec242 rfs_needed +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97231c6 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xf984f10e __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf986bf54 would_dump +EXPORT_SYMBOL vmlinux 0xf99ad24e bprm_change_interp +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aea36a pci_iounmap +EXPORT_SYMBOL vmlinux 0xf9af10dc blk_rq_init +EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf9bcd8a3 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9d71851 of_get_property +EXPORT_SYMBOL vmlinux 0xf9df6e5d dqget +EXPORT_SYMBOL vmlinux 0xf9e5df3c clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xf9ef29c4 unlock_buffer +EXPORT_SYMBOL vmlinux 0xf9f5df02 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa434edc sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xfa596a22 seq_release +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6feedf input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xfa835711 dev_mc_del +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa8ca44a mdiobus_write +EXPORT_SYMBOL vmlinux 0xfab22cd8 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xfab67519 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xfabd5675 inet_accept +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfada843b gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xfaf23095 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xfaf471c8 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xfb290694 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3faa95 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4bf4f4 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xfb65a270 elv_rb_del +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb768899 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xfb7e1db1 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xfb8d873a init_on_free +EXPORT_SYMBOL vmlinux 0xfba588d9 dec_node_page_state +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 0xfbd15eaf __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xfbe5bc01 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xfbe61884 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xfc2d1f7c ppp_register_channel +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc3f45b0 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xfc4b8c96 d_delete +EXPORT_SYMBOL vmlinux 0xfc710423 mac_find_mode +EXPORT_SYMBOL vmlinux 0xfc80b4d5 nd_device_notify +EXPORT_SYMBOL vmlinux 0xfc8c3fcd mmc_command_done +EXPORT_SYMBOL vmlinux 0xfc96b94a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfca9ac83 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xfcadfd4c sget +EXPORT_SYMBOL vmlinux 0xfcb17335 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xfcb7e771 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbaf070 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd9a2eb seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce4813d netif_receive_skb +EXPORT_SYMBOL vmlinux 0xfcebb2a5 tty_port_open +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd0573b3 dump_align +EXPORT_SYMBOL vmlinux 0xfd07e117 submit_bio +EXPORT_SYMBOL vmlinux 0xfd122866 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xfd1d9b01 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xfd39a633 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xfd41e80f dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xfd72da80 wireless_send_event +EXPORT_SYMBOL vmlinux 0xfd74dc5e inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfd7efe17 ns_capable +EXPORT_SYMBOL vmlinux 0xfd899b5a param_set_int +EXPORT_SYMBOL vmlinux 0xfd8df17e pci_get_slot +EXPORT_SYMBOL vmlinux 0xfda23ef5 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcdd183 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfdd0f3d5 ip_defrag +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd54af4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xfdd6a3f1 bdgrab +EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up +EXPORT_SYMBOL vmlinux 0xfde1f435 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfde22780 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xfde27049 d_exact_alias +EXPORT_SYMBOL vmlinux 0xfde45e10 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfdfcf183 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xfdff71c1 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2a4380 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4bbc8d write_inode_now +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe663215 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xfe6f2723 param_set_copystring +EXPORT_SYMBOL vmlinux 0xfe86dde7 pci_pme_active +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfea47781 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebafb3b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xfebf0863 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee15d32 param_set_ushort +EXPORT_SYMBOL vmlinux 0xfee8df94 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xfee9ada9 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xfefa677b kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfefe4f04 netlink_capable +EXPORT_SYMBOL vmlinux 0xff047523 sock_edemux +EXPORT_SYMBOL vmlinux 0xff06eeef tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xff0cf3ff mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff19508e pci_read_vpd +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff21f9ac seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xff244216 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xff5af670 override_creds +EXPORT_SYMBOL vmlinux 0xff5cda55 backlight_device_register +EXPORT_SYMBOL vmlinux 0xff6621ee prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6bdcc3 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xff781cae touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xff82e797 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xff8bd3b0 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9b184b skb_store_bits +EXPORT_SYMBOL vmlinux 0xff9df835 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xffa6df05 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xffa87d37 security_sock_graft +EXPORT_SYMBOL vmlinux 0xffac1cf1 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xffc0915e inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xffd5da3f tcp_child_process +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff07ed7 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xffffd2d9 inet_twsk_deschedule_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0196a3e0 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x032b45b7 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0357c572 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04df8d43 kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bd35493 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0def96f9 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f67d9f0 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x10d6d3bc kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d3d3da9 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1db1748f kvm_map_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1f49239a kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21c89f5d kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x234b5341 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2570990b kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2ad3e2aa kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b79f7ee vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cc6a1e9 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cff03d0 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2e736560 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2f1b1e13 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2feefe73 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3118c1a0 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x316e27fc __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3460bff4 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x35ecac2c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x37e78851 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3904c3ae kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ce3369c __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e6a5dc4 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41873ca7 kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4471bc51 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4993a00b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4b74fdc8 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4cc23bbf kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5053911f kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5063fdb8 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50db6905 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5155c770 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x58787006 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5cadd9bd kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62b94a12 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6341f57e kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x643fe043 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6676eab0 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7043fae4 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x74c97dc7 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x785c6638 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x798a17a0 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79c8fe69 gfn_to_pfn_prot +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 0x7e81d2b6 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f179938 kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f7ef95c kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x81385a89 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8b412417 kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8bcf3cdf kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d95e9cd kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8db61acc gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90381a69 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9924b5cc kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9c336b68 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9def941a kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa10f49e1 kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa39ae0bd kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3e2d6bd kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaae6f018 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xad65830d __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xadcae1ae kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb187c719 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb396d38b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb5af9b4e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb5df3aa8 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbaa46c9e kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbbe61ea3 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbcd5038c kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbea44f7f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc10f228d kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc5bdc87b kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc6fc0d5b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7868890 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd575a4bc kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd66adf62 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd69d2220 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda76deb6 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd44d2c9 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe07feab2 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe1d3f5df kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe3029526 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe75375ef kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe985fe7b kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeac62c5e kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf30e7269 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf520d158 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf96aa405 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf9bad5c3 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf9f93fd9 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfd19aefa kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe71d9d4 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0x2d88f1f3 kvmhv_copy_from_guest_radix +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0x9b4be060 kvmhv_copy_to_guest_radix +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-hv 0xf8aeb0ea __kvmhv_copy_tofrom_guest_radix +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x4942dbf5 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x14ea899e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x26f2f3c5 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b955d29 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x2c4b0eee af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ec27cb2 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x496af5e2 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bb8ab2e af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x8142bc19 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x9546e22c af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xaa40ae41 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc00d63f2 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc19349b3 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd88bb7e9 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdac362cf af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf235bb0 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe3d16b71 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xeed7f708 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4f8ac9f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xfdc00a0c asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcedd2046 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x38da20c6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xaa4a15ae async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5b39471e async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5b5909b5 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x13f93de3 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1ea03f49 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x51ca3eb0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd24fee73 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2197b112 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa22170d4 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x977be610 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x36f216ce cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x991dcc67 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x2245e872 crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x9bb4c4af crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xccbdc19a crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xfe581aaa crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x0481ff74 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x06bc8d83 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x115ea101 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3c1b1428 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4f595a64 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b70b3c9 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x608a497a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x960ae228 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb331aa61 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xbe59a712 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd2b6b1f9 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd8838f6a cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xff21ccd6 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1506782a crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1f525cfa crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ef148dc crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f0175aa crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50498fcf crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x52df6770 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8a466253 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90fbb69b crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x94bcb9f0 crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9d25d035 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc4b7bbb2 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd4f7e81b crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdbe8580c crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0ad3478 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6cc67a1c crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6f6f5cf0 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x802ceeaa crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x0a2f3a68 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x6df5a542 crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x75b18eb7 crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0xff5e6a3d crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/twofish_common 0x288c0118 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x024fd6d0 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06dd8749 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0fbf2f7e ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ae2b756 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2ac31995 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x31d31dfa ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x326c4cc0 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3ce58f3e ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3eb04d8e ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49bea461 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x523dce0d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x575ad100 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59414d92 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x636a2884 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68d164d4 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ea16b66 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92d3d8d2 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x94a769a0 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb47970ca ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbad54090 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd0cd9060 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe25d8430 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7b946be ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfeb59503 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0350ec8c ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x07a74eeb ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x12c57107 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x67557649 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7ad43aba ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8156bafc ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8688b532 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x882a0464 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8be71061 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f03796c ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa8c9cec6 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf1c3e50 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1cd01b6 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf7320f7f ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb96f072 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfe77172f ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd778cc51 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x41b66ccb sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x727ea304 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x9192a401 charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xa2a58bbe charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xac53a91b charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd0cc2e18 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x567e2746 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x08c6dadf __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x4f4c4815 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xa622fa7f __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xb317a61b __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x576cc419 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7d13ea2a __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8245f619 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe843f313 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x3213f167 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7f671796 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x058d1545 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x222d6cf2 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b212229 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x318624b2 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f9e9d62 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70fc253e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72a3996f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x79b56abd bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80e88142 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82ff2ce2 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8aa52fd6 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x918a31bc bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e8426d2 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8734cff bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac6ed2a3 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb41e8af5 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8319019 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3985348 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3fced3f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5ec9bf2 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7174fd8 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7cf95c1 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9e4780e bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe03ac5b bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0baf6936 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x25a9d3fe btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e7ef80b btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6288896a btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7ad40c68 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ee4c5c1 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0396b818 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ca5b8ae btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x148dcec6 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x502e0725 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a96a5ab btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6dd9bcf1 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85b9479a btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9cee838f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d9dfafd btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa15fb4e2 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa27cbb2c btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa2ae300a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb26d0d66 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd060d9c9 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdf77ea2f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe3d60ec1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea5f37d7 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1e8a429f btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x412648d8 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x48a6220f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4ac80be2 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x585c2806 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8336422f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb27d345c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3b2ba46 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcc1bf74d btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdd74efe9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf6e4bd89 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0d0b9d32 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x42e84faf qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x611afc9d qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8a0165a1 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbbbc0804 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x124a3c75 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3cacbb5a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x842ef0eb btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf58faec btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd1b325dd btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7bc5ce18 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa44adeda h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcec00c3a hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd1ff69f1 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x21899c0f __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x594ac705 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6cb4e8f2 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x8ad3979e moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa4065daa moxtet_bus_type +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0160da89 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0b4f0aea counter_count_write_value_get +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1318b866 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x17c6414d devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x27420a29 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x396461ba counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3feccbbf counter_signal_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0x48b46be4 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5facadbb counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x762c7599 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc5c7c6e5 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc68e2cd0 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe9a67acd devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf7722cc7 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf79abbb2 counter_count_read_value_set +EXPORT_SYMBOL_GPL drivers/counter/counter 0xfa5fd25a counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x17c571ed nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x56302466 nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x8eaa6f52 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xc0609b25 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x50577f8e dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xe8d74f5c __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x530a4707 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc6737564 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x373f5e59 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x90156e52 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa26b8030 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb80c5792 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb9eade08 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xba5d67de do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf9f29893 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0326cdd3 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x079c098e fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0966161c fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2056fd12 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x33c52ba4 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3d6a6972 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4185099c fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x79624164 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x862629f5 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x88e2f7da fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x891eed75 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92a8108b fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb294445e fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb9f68ee5 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc03b1bae fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf4c6eda7 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x27371bed hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x57970bc8 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x32d659b8 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x48fdae41 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x8410fb23 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xac7f0587 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xceb77c85 vchan_init +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x16da8e11 alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x51fb0bc2 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0f0d171c dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x19783acc dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25897bd9 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a82cd25 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x376c6bd8 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43eb26e6 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x45f68a7a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52967b42 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7b13e967 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa95d2e32 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb15b9c33 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb4deb10b dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4fdfda4 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd2f55c6a dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd3fd50e1 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe97787a9 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf337fc7d dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf4384d11 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5441870 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1cb8904f fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x228dc6b6 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x290dd01a of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x502856ce fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6f1580b0 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x777736d4 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8733953c devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x930145d8 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xad0e6ba1 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xca04b6d7 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe57acd28 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfde1c4b7 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07f57954 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0813cec9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2efc9079 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x447b2ef2 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4686d181 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4c0966df fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x680c18f6 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x73cc3889 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x958a7589 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc62f3214 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd8fea58b fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe32a53f9 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec834e9b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0d065b66 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1efb3796 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x237fda57 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2d29e79c fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x959b714c fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd2b844f3 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd9523e14 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x51eb1aa2 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5c5288e2 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8a8548be fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa876fa4e fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xab487686 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc5db8fdf fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcb014cbe fsi_master_rescan +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 0xe151e246 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe76b384f fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf3fdd426 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x46cd7937 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x56263b67 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x68ab7b6e sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x288fd90d gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5e27512e gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x767f48e9 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xdc9699eb gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xea63ffa9 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x28c4cc1a gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2df5c65d gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x65bae367 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x69fa23a0 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8a10e97c gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xab732fc2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe747322c __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x822671f9 dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xa37d2b25 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd1e7e977 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x099230a8 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2231eb85 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2906e8b8 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33a032ea drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3457b435 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x34eb7cb1 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x393dc21b drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39e72ed5 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d44d611 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x585514d2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d07c4c2 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80f6b7de drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x849f3742 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97cad817 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9ca7894d drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9efa116e drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa2020c5b drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa64119f8 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xac9ee27d drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae9514d1 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3e2d898 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb79207da drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba7fc668 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc0d11c2c drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc5bef1d3 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc62a50db drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe4250f88 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb0e20e4 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec55cbce drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1a82912 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfeb7969f drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1c60c4d7 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2322fc0a drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x41ab456a drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x93c036c6 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa624bfb4 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb8ab918 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdfd7d45a drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x38d281c5 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8385192c ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x890f5e6a ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06000c59 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f13fb07 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fa23c55 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0faa4f7d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15354e20 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c53bf01 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d06d48c gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d0db78e gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x204def7b gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x212fbaa2 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26ecc150 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x279ef184 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2adf11be gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ffc74dc gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4466ea39 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52ba065d gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x596810be gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a4def72 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66bae299 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fbdeada gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77dab40c gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bf4ca10 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84a88675 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8531da1d __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88ab3e5a gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ad50f96 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d06f522 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90c66ff6 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x979bc622 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x995ba1df gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f8319b7 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3e15d42 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5ef6c76 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaff68cdc greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb110c795 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb341d7a2 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2a0cac5 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4a850aa gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd86dc0a gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcfc6f277 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd11ed8b3 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6cc4b21 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea778e31 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/hid/hid 0x022757ef hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c95302b hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11f076e0 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x120e3393 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x160203e4 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1be3166f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x202e747b hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x206b4e6f hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x233d1849 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26a54b9f hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2893b762 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a1a936b hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3396029c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e0c56a0 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x451d164b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47cfe325 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a564b53 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x518ac171 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x57f6e9e8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b3b73c8 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d7096e8 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a980a37 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7afe8ce9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86129ee7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86188c16 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c82aede hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95626e66 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96427077 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x991b1d00 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c94731f hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4313cc6 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa460fe31 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabc1b871 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac1a9bdf hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb786ef76 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7f4b63e hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce9135d1 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd13afb15 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde5216e9 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6f2a005 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe892e41c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7b25c63 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb8ce3ff hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc8d57a8 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xfe3af47c roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x58d7c57e roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x82068ccc roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x97b37ba4 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x98ee7045 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb83c5b71 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd9ac12b3 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x02655ad8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x25920558 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x46605aad sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x63c5d8d6 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x834c9b63 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x98ece629 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xaabca1b3 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb6e2adc sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcca9337e sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x5b59c4eb i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x869b41d1 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x382369fe usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xbec6aa64 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1939e946 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d75b80c hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1ea3ad1e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c3b9cb1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x51331b03 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x57070e01 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5e3302c1 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f7e35a7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84d4bb46 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ccf192b hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a99e2c1 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb501155f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xccf9088f hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe181d512 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe376f740 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe5de57c1 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xefdaebcf hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfea151fb hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc8675b9a adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe48b3ccc adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf3c43908 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0e1264e7 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1094568c pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1b654809 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1c5dd2df pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x28361269 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x62fdc363 pmbus_get_fan_rate_cached +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6966b37b pmbus_get_fan_rate_device +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6e07a169 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x79793965 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8b6509c7 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa45f65c3 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc0909d3f pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc398a5c9 pmbus_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd813c1e4 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe35b8e35 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe585a155 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe62a8a25 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe6607cee pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe8f45435 pmbus_update_fan +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x099e265e intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2288b402 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x26269d4b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x66243c62 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x802e39cb intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8b84268e intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8fd0031e intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc21321e2 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf1c4fff8 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5ac9546f intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x92df3bc0 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xae92ec50 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0525d739 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1d75448a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4cdc8652 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5aba200b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6b5bf3d4 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x764a4915 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7b9157eb stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd8a3b3eb stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfdb78c7a stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x542ce51d i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x548ce045 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8e2d960d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa25eaa1f i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x34750a39 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a02ef78 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0ff68460 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bfc563d i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3ce3d943 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4413be58 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b43487f i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b65c379 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6efdfce3 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70038253 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70b2427b i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x71552849 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x819a29c5 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d947ec0 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8e4577f1 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x957f2a9a i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaaf81ecd i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae6358b8 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3c3f5c5 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb416e32b i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb69ed67c i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe20f7c9 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc828643d i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda272e58 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe9511c74 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xebfa4530 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xeb061fa3 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xfba41185 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1dc8368d bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4810f537 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xac743845 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb952786d bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x07cdfffd mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa3522cbf mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xd94644bb mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x8c6f74d6 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xadde7189 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x137f9255 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x49ca2ebc ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x698b5167 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7ab4a1fe ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8e7ac913 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc2e10bda ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc5d14cd7 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xda4e2333 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xec6d6650 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf81ebafe ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x15667431 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x22b85fee 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 0x2f93e7c7 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-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x80da991a devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd99ba6e2 devm_iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xf7bb9835 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x1eaebdfb devm_iio_triggered_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xce84cced devm_iio_triggered_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x0407ca56 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x26dfd488 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8c7e4d78 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x05b38e43 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x20cb6209 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x18d6991e bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3d6e18f8 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdcf75090 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x058bd4ef fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0dfb8820 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x4ed0d904 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x084bda31 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x21a32c67 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x75112feb adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7d6daee3 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9c84e0d0 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb87e8839 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb8869764 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xba957747 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbc69b5e7 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdd1c01b3 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf5e91e96 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xffe7d8f9 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x5d3a1c62 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x05b97088 inv_mpu6050_set_power_itg +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x842fd76c inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xf00fe086 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x057e4b6f iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0951ab12 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fd3dc33 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14d754b6 devm_iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17facfc2 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a37d34b iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23a5770a iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23e12cce iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cfd8402 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e4cd51c iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b6c8bca iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41670cbf iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42f7e7ad devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ad4d18c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50319f11 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5099ef28 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x542a1522 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e3db2e8 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60c72cd7 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x611baea6 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bd169e1 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74bb6b40 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83748c34 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8460996c devm_iio_trigger_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8581a1f1 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e521b9b iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e830e87 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0b77a50 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1021ba3 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa43aa240 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaae42a55 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab137076 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xab6f0fa5 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb77d8d40 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9acf020 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe77be3f iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0dee119 iio_buffer_set_attrs +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1014042 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc215a100 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4495ac6 devm_iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc65ce8b1 devm_iio_device_match +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8b52dad iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9a4a345 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf4e8bca iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda25ead6 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf4e70bf iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe64f99f9 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefeb5d1f devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf894feef iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf92a9521 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x2868af24 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x1a2b02fc mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x07ebe6f2 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2de25db1 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4635edaa zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4a56b1e6 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5fc8a677 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7a60ab19 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x3ca28ae8 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xca3296cc matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x393c6dc3 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2fbbce0f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5aec436e __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b82be39 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x62feb95c rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fe04bda rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8091581f rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x80cd9b53 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8aec9aa8 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9417d713 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa1f235dc rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb32e19b2 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbced4162 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc68992ee rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0fa95936 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3fa21fbb cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xaf706044 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9bd238f5 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe8777b03 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8298d2e4 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9c5444bc cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5a4e3469 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8434df30 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x926704bd tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc9f78b5c tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x240b1cad wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a7aa804 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3da4d93d wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x724b5950 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x78162c1c wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x79522393 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7ea740e4 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9a424039 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd40aaffc wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xecb0c4f9 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf10ed9a3 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xff344d5d wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0303b4a6 icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x0dbc2ba7 icc_set_tag +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x13edaa6e icc_link_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x1652106e icc_node_create +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x219f321b icc_put +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x2b1ad8e6 icc_set_bw +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x39664612 icc_node_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x55054f8c icc_provider_del +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x681c6954 of_icc_get +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x6f8fb1bb of_icc_xlate_onecell +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0x9205ea10 icc_provider_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xa607548b icc_node_add +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL drivers/interconnect/icc-core 0xc92d8b62 icc_link_destroy +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3da17f30 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x60ff76aa ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x74bbd38d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76bc4d19 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa4b907da ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcb44b20b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd54eae4c ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe2e4c5c3 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf4292fd3 ipack_get_device +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x23359aff unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xce1414b2 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x218c5e51 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x562b6b69 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5db0bcdc led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x64050b10 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb5157d21 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc4e582fc led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3077c3d9 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x46535080 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x56c6fa05 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x627259c4 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6e292b0a lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7b96e9d4 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb90c8ad8 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc0cc3f70 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc48d125d lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd4c80a78 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf6169749 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x20383090 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4e3871cc wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x608e2ee4 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x97a47856 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa2ff28b0 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa5703fff wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb0fa2300 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xde55a2ed wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x078a1127 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2525168f mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3b21ae03 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x44cebd6e mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x56199e3d mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x602f7247 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x77bb7a20 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8350f890 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9c2257cc mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xad28f16d mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcff4eea2 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe7e01541 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeb2c8905 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf398ec61 mcb_get_resource +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9482168 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10439a81 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19a02ba6 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24ee2a7c __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2515e866 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2869bc82 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40430b3f __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f0eec50 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52cb1bd3 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a47b147 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61f8a4a2 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x666af686 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x77db9ce2 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78c4e77b __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83195c57 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d0e2577 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90d77239 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8b623 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97890220 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a530fe1 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa49f3127 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb19c0de4 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7599baf __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8cb3ae4 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc3af40d5 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xca6ae723 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xceafa6da __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf2b1b68 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd89fb73f __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed607240 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefba8a85 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf307604e __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x12747f20 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x15ac9fde dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2963e6a5 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x443e0ae2 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46cee769 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6027980f dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7596e6ff dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x76c5ce17 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8d62d8b0 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x906d4f1f dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x939b8009 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97101055 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x996dafa7 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f9c1912 dm_cell_error +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 0xc6184f2f 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 0xf47658ae dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc11e556 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xbd1dfab1 dm_bufio_client_create +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-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 0x9b4dd415 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfdc4b913 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x091d4a80 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x720d8cb1 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 0x2e4dd9ef 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 0xa4c1c090 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbfd078b1 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc93e1f82 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd12f3d47 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xeebcc343 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 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24621ca3 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48187be3 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +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 0x5cf0d0bb dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7551b46e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaab0ef04 dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd51c29f1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x15288160 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x152923ac saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x37b7edca saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x543f9a56 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x929c6030 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa4001329 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc08eca17 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd5aa59a2 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe10d1b11 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa560c05 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0b7f21fc saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0f332958 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0f67e596 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2d42c5c8 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5088ba3e saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9f9e36d6 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf122e90d saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x22ae67f6 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 0x388b1da0 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x532c07e6 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63832efc smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x73c4f65e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b08790f smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7db9dd29 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f8f5a63 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83128868 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83a23106 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x868a5376 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f74b589 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xae1dbaf2 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7e1955a smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca233ed7 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf7c8688e smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffe5775e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x579c6308 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x004a9541 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x02309166 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2c8aa36c vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x33002b1e vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x36985b97 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d206e16 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3dd263c0 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4db1f6b6 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x53818db9 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x590efb16 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5bf2172c vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6884f58b vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e140e6e vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x72ddb883 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x741c5c63 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x76117af0 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94dcc546 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac939323 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xacfb130c vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb92c4d79 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba98720e vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc883d04d vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd0506181 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6249b3e __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5a08ef1 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xee9c3077 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0c756e7 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfcad4984 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfcdcf2a8 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5069f894 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x93a530b9 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc163a7c0 vb2_dma_contig_clear_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xcc488663 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xa5f9d0b3 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02e2a13f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fb75445 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1643ca2b vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x193bbc50 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1a6ca891 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d85f0cf vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x317b2168 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36a853ef vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x54231997 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x54c2331a vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58acd242 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f61152a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7075611f vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7edc7834 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fd4a51f vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ab7e069 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8e265f08 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x918dd6a9 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x919c635e vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x923a0651 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7e7808d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xacf3579e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb62f47f7 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb66fbe3b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbdaddea7 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc422d9f7 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8f0bd98 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe3e81913 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb728ba1 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xed3fca4f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf24f47f5 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xadaa0259 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x014e6c3b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x87ed54fe dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbbcf7020 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd1d8c38d as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x99a0b1ef cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x082489e0 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x1be05b91 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x64961fa4 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x3fe2b4f8 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb19e7327 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xb71dacd9 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0267867d media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05e12f0f media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06886cf8 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x076c2317 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07cd5d5b media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0da7b61e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f7dfc6a media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1869e8fa media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1abb94cf media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23cca923 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ded6bb3 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35e54f90 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36ac2dc4 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4022c9ed media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x467744e6 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46cce7f6 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x560a2a2a media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5616ca83 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x614335be media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6884ee0d __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6be6da0d media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x723ee230 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b618516 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x863b742c __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87530369 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x896e3e3f __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb064f19c media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5e3b05e media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb711e459 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8652390 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba096f32 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc12fc6ff media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3080b03 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5dba049 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc581289 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc75c2df __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd4bf52d media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xddb0bbda media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3c4b5d5 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3c861fa media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ecaac9 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe792f7c7 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf10269c5 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1f5ddf7 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf557b56f media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc93fd13 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe39a13e media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x123d9f65 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05b39407 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1119bb62 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c206da0 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32032c03 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73c0b309 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7c7828d0 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d3f2d4d mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fb086e6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x829a5252 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x847ce6c7 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c722c23 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x906b07f9 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3edde51 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4aa1301 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd136eae9 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe113bf91 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe91d7575 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfaa55cf1 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xffab6f35 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11b2be0e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x15ca9a29 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x174e536a saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35fff0f6 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37105dc6 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4edb92ba saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x56914575 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5dcf44e5 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a3b5b86 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x997261e6 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa413dbb6 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb080ed9a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc54344f8 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8e5c400 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9e032b8 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc9ad043 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xebf42a27 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf81685a8 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfceeba97 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1ab91c82 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6f6862cf ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76f41146 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x956968cd ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd7fea56d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe19a7bba ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xee6052e6 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x1f919ddf vimc_pix_map_by_pixelformat +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0x8d7304a3 vimc_ent_sd_register +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xaf58b080 vimc_pipeline_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcb7daa50 vimc_streamer_s_stream +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xcfe2c150 vimc_pix_map_by_index +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xdcbac1cc vimc_pads_init +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xe41cdc39 vimc_link_validate +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf3132df1 vimc_ent_sd_unregister +EXPORT_SYMBOL_GPL drivers/media/platform/vimc/vimc 0xf541e79b vimc_pix_map_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4243a409 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6026c616 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x70add5a3 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7f223fe0 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa930d5cb xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd4a46ecd xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff3cb8a4 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xc8379f89 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x6460bc13 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xaa275deb radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1d0094c8 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x53980950 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x66f9c1b7 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x96f267a2 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa961e44e si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x102a053c rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x13346dc5 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f005bff rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x34607b11 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4efbd8be rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fd2d221 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5279615b ir_lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f3e9e83 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a5fd9c1 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x800eae91 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95ac8d9c ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99cb9897 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c19e749 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c7bd874 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc0307440 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc72b5082 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc93f02fe rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcbe75a50 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda3483b9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5f0f28a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1d09eae ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x7731992f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xadfdece9 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x991b100e mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xfe34217e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4e32bef1 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xf199608e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7b2ebde3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe0737822 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x94cb7c5e tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xcd860cfa tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf89e80f1 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6bcec779 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x87e02bbb tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x102305d5 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x08eac284 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x173e90d7 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x258165d0 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x426cd096 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x589f6c18 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d5b3c02 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73e2c7b0 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78aa1f68 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8caac8f1 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaaf24716 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadf9b4f7 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb446e1f3 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb461f57 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcf9fc576 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd14632ec cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd291bc6d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd456b307 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xea467a44 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xed86fdbd cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfcd5916f cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc3a861b4 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xaa216418 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a7061fe em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1edb1f55 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22989781 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x363ba710 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x43d808c5 em28xx_find_led +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 0x8864a620 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8982d143 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94ef4430 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa46ae17c em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae689749 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xafd98036 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbd469945 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc1d793d9 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xced028a7 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcfc19226 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec5afa5f em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xecb3b6a0 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef84301d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5f9923f5 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x780cec25 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89d1d536 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd2c0918a tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3bc38287 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x5ec54926 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf124c7a4 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x27f854c3 v4l2_async_register_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x34a27601 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x40be1ac2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x452b330e v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x485e6caf v4l2_async_register_subdev_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7e1c4472 v4l2_async_notifier_parse_fwnode_sensor_common +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x883c0629 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x97f12e74 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9e36fc84 v4l2_async_notifier_parse_fwnode_endpoints_by_port +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe9c8c54 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x053e2814 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13fbd268 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17a54f6c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x217cec31 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28da0c60 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f5f705c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fbf4dab v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36a8c0e4 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36eec921 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b3b2ecd v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cb86358 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44ff8985 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49179a92 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f1b458c v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x523abc28 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59b372c7 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d4d9bc1 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dcba645 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e4a2be0 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75c1ce21 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x816da2bb v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x829d3680 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87bbd47c v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9873935c v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98cf5a81 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c46480e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4f046d2 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc313e675 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcac76329 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd36bf440 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd59d489c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda355a87 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1ba5b64 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd24725d v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe0df56b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x004fa288 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1859dc2e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29ee7d5b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36ee1634 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x381b20c7 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a87b951 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x463f99da videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5aee64cd __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71069705 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73436f89 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7546d39b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fdaa6c3 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89ef3c51 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91843ddc videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8e27e8b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba6055ac videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc91f3f4 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1dd8a33 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4397403 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7e8ede9 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0476038 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2d25d0d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf784cefb videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe859959 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7855a945 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbf62fca1 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xee6f3ef8 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf17b9430 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x12579c4b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3cbe4995 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5a76bf01 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01fbafc7 v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x061f6898 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08163fa7 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08875bcb v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b5632a8 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11041094 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1166eaa6 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12094aef v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12939793 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15fade22 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cade89b v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d780dee __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f0ddcfd v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21351649 v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24b389df v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x264917fe __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26518735 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ac3a7ac v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ace8830 v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x403a26f1 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42a40287 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x436cf08c v4l2_pipeline_pm_use +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45ba3e3d v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48c8c590 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a29c019 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e0a99f1 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5053344e v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d65b11 v4l2_subdev_free_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55a877f3 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x568b42cb v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58d94db9 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67dc387a v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6aa22cf3 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75480cb2 v4l2_async_notifier_add_devname_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8813fd88 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89ba66ab v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a085966 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a473b73 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x900c1644 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x999ba22c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0bee582 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa242b827 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3dcaa67 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaabc76cb v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb23f1cc8 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7c5f65f v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbabd517f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8c1c27d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcafe8a8b v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb66f220 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcba75fbf v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1367753 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9df133b v4l2_subdev_alloc_pad_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0aa75f7 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefbb7d0f v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf070aafb v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6d7428e v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfab789a5 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb25938a v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x21c60c89 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x27708c2f pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x70b677d2 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19b87259 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4c8b1603 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x52f60630 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x91800cef da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9ae297c9 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf17b3bf6 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf3f0d84a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05481ca5 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06885384 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x08acbcbc kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x15840641 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1c504907 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x24e7f427 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52f1b362 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8f1678f6 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x32431e7e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4986ad3f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8fe92653 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0e9a4385 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13461ace lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa2002983 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd45ca768 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe439b4c5 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe4d51f97 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa1010b1 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0229a108 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4f126774 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf7462129 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01374328 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x013a9f68 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x166d23d0 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1895b883 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c11b41d cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c1c685d cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b90afe0 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2b9d73a0 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d40d444 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3345d850 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33480410 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42025e24 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x420f8264 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5c61468d cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f24a911 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f297551 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68a5b2ec cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68a86eac cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7070c55c cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x707d191c cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7deb8907 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x84a0dbfc madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x88c1f4e8 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x88cc28a8 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8da81f3e madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a1750fe cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcbf4e9e4 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcbf935a4 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4d06ee1c mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x851c2da5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8ee527b6 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9713d8cd mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xac4f8c0e mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc5a66685 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x572dd221 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x59dd5e42 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6b7725a8 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7899cb59 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a582b55 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8f02da6d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc262e2db pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc9d973b5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcafc2db3 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf5a0504 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf17a1a1c pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2af68080 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe114b207 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3e69ba4c pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5441fe62 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x825697ac pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x98088bd3 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb833cc61 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x4f4f2c80 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 0x146f8f29 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15106b5e si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1843330d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f1dc82d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26e5f5c0 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ae65eae si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2fa16442 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3344c86a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x530c2bf4 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c8b6cbb si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e430880 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x726e397e si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75f86d94 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x811781f9 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x835682a1 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96158b97 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e3209d2 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa225f7d7 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3d853a1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7b788a3 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa1c356a si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb68d2c8f si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd36393a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc92fb817 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfdb6675 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd99ea935 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9a82c89 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe60806e5 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8a8b088 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec0f2fa8 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed845d8b si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef0e597d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf08d9d9a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfead2039 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x00bb6b5e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x27bc9616 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4e799fbf sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc4a492e5 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd8052b6d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x17b60fb2 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x342a484e stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4f99a5e2 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7178faa7 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb23b94b6 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbe1fa94d am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x08b74adb tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3cc2f0cd tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x57d95a64 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x025df39d ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x184f55bc alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4628bdbe alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7794d94a alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbbbbc5be alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd097150e alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd98d8bdd alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfe01fd7e alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x02c41822 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11f0858e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ee51f3e rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37cea8f3 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3fe2d681 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4743a30d rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4adf4b41 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65587086 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7ea78926 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x806a6811 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8f52d651 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x910a2561 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa377d14e rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa50ecc01 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa5d68fcc rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb0195d92 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb167fc0d rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbbc3d773 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd02b22c6 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1fd24ae rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd24c3343 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd4d32706 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe2939c21 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf159ad49 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x377db915 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x44af87d0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x61a15636 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x648fb693 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6986fe39 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6ed46709 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7b6d8533 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9040cc61 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x999f6465 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a4e7593 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4e265fd rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd9cd251f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf70fc639 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4bf8182c cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6fe383cb cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x89321907 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaedb397c cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0a357289 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x23c882ef cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x29d87575 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x334a6b51 cxllib_handle_fault +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x37a57fcb cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3f9e1364 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x44589d2b cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x47b71cb3 cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4b80d39d cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4ce0008a cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4d14db47 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x51f0b10b cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x57a2c510 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x58abba4c cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5d2aa982 cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5f3130ab cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6c74426a cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7718ef99 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x79d5ff44 cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7d881bfc cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x89dc63c5 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9f7b99ed cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa265f783 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xaea9f95d cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb36974a3 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb4165a19 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbdc0123d cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc327c3a8 cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xca4e2c3e cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd672bbef cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe5e6ddb8 cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe6637c2a cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xed87e37e cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xef92eb4c cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfb7f2b4b cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfc5c5b5e cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +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 0x3f0a2839 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6f54329d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x954230dc enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa6d98ad9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaa2da80c enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3b0d3eb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc3cd778a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xefb49fe1 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b62993e lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x21424626 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3b5fb6f2 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x45f9945e lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x754f0ea2 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x908a7a5a lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9952e1e3 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xff16ca1e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x00cde5c6 ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x0537394c ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x0a5d5b63 ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1dc98e0b ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x25152819 ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x253bb6e5 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x298bbf7c ocxl_config_set_afu_state +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x354c8ec6 ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3e042e80 ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x424474f3 ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4a3501c3 ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x54ea3514 ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5738bce2 ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x598b45a3 ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6cf63b61 ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6e37a3ed ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x827448e2 ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8351fa31 ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x84d86d96 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x854fb44a ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x89eba9e7 ocxl_config_set_afu_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x92627f0b ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x97863e86 ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x98d2b1f0 ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9b6cb940 ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa931aba5 ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb23443b0 ocxl_global_mmio_read64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbaf502b4 ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbe49ddee ocxl_function_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc370f759 ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd40c3475 ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd463cfd7 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd4fb4d00 ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57c13d0 ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xdc7d4145 ocxl_global_mmio_write32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xebdc395f ocxl_link_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xec9e42bc ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf830d1f2 ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfabe7be7 ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8481635a st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9724c6bf st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b2f56cc sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b9b223d sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c4bcbea sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x27dbb6cc sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x295d1a84 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2eb618fe sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3af48fda sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4093ecb8 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41e21023 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4e1b5eca sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57f247aa sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x599d025e sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5cf15bfb sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6468d04f sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69127e2f sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d005fe7 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e20c86d sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x729c747a sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77bade20 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d61557c sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82b084b3 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87290bf6 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0ef1b1b sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3b966fe sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb60bc714 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6e7ca73 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8666387 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc4c67d8 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf92091f sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfbb3083 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5d75ad4 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7ff91e1 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcbbdcb06 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde299190 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8913871 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9c0fe18 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed60d860 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfce56316 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff8f0bd1 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x224aa452 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5ee57df1 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71864f78 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8a7a57e3 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa17d62fe sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1875185 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf102ff2e sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfb3a34e9 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xffd5c823 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6b7c0513 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x96622085 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa94b056d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7a0f7df7 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x89f6b271 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf7a4f9a1 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1831d4f6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0d5bc0ca cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9559071a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe4904005 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x14e275c9 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb053f868 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x043dd567 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0465a450 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x087beb4b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1db93075 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22d69805 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x292c8885 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2afa6ce8 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x326eba97 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x367247ce mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x376c6c7b mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40b1195e mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44ebf57d mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x512e4b33 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51c14f49 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52542b33 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x547fa46e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56ed986c mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5bcbeb08 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5db0d516 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x616f040a mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a2cada5 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6df12ab5 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e522d62 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78dd7f9f get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78e33d30 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82b5d226 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82f3d65c mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x903e0ef8 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x906d7579 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9252657e mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x986f634f mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a94b66b mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b83db8e mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d81d8bb mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ea94492 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa086ce17 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa41819fb __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa67e5c10 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9d79a8e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xace24d35 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3a4e563 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca006b39 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca13d5ee put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf41dfd9 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0a3f563 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1ea49c1 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe29b34ad mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe47e00d8 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe678f5bf mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6b82a6c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9e2025a mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf011df4f mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf41d9f72 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd782b57 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3df8aa20 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x495356e5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4d09bd91 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x65c14257 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc5f5ce16 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x15ca8952 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1e803b6f nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45d9d3d8 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8332f6ad nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa9917121 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab9635e0 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae1ec2b6 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3115862 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc45f696b nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdd0095e8 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe5908359 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf798a1f9 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfab11216 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0efda267 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1ac028fe onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x3dbb20b5 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x02425d52 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x044a3e7a nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a9e8918 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14327b8f nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cfe4e63 nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21a3e0bd nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2b47a08c nand_ooblayout_sp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39dddefe nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x42a62723 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x474b5e89 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x495b9a89 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4a701547 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4f669a76 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5288d380 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x718c4248 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b2a7576 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x899e2525 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8a792df9 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa6eb74dc nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa79f359f nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaa0f642a nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xae55e393 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1e7d328 nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbad14cab nand_ooblayout_lp_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd6cbe78 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd18eb1c5 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe139b5f6 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe3edec1c nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf39d5bee nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd52fe1b nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x10cc9aa4 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x00ec964e spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbc444c30 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x13114bca ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x16638a20 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x24462c45 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3126fddc ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3535a07b ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x36416083 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x43c53939 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x91f142ff ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdcc479b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe549f48b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe75486f4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed90938d ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf54119bf ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf96d2b29 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x018ede64 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1cca5e32 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2b71ecc3 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3d5e8397 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3e86c6c2 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4430a64e mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c94a2c8 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x94609736 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb93f7288 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd730cf6b mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdbb30fbb devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdcf41b70 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdef8405f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x07fb7e28 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1b55c5e0 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4052f777 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7241cf05 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8b34b82e c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x90061712 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae486850 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xef42e479 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x01e53874 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x051825e8 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8085a624 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcec82c1c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x01816392 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x032cbd09 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x035447d5 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07ab7c06 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x095fb390 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d321338 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x142ff919 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16081ffb can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33b1d205 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x34e4f0df can_rx_offload_reset +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3548b5af can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4196552a of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x432b753a can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x48aa63ef can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bfae455 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c668bcb free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e9f1f69 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x716eb3d4 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x865be3b6 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8762619a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8920564c can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9edd2878 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f462b42 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f4915f3 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8e146c6 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7f71d19 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6161fb6 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf624a8c6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf72289a0 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x39140a2c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5361468c m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x62dfd344 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x700a182b m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x71f45833 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8fc056a2 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcbfb768b m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd6f9833c m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x472f39fe unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e236e33 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf0d1c301 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xff539734 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x8a5220c3 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1592feb2 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1692de86 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x181d24d3 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1957b9bb ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1d5dba13 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1e8613f2 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x276269ef ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2884b63c ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28b1b881 ksz_disable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3224a8a0 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x49767eee ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7db3d0aa ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x90ee6a26 ksz_port_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x94987fa0 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x95f7c917 ksz_adjust_link +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9ae2cd68 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb70461a1 ksz_port_mdb_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x04008b36 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0699cc4e rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0ee7089c rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f518f9a rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1b994e3d rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3ab8ae59 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3e626ee7 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4a2e1f6e rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4ba1939d rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5de59101 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x643a75e9 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8c4f5969 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd3a80dd8 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb5f86f2 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeeb1ff0e rtl8366_vlan_prepare +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf623d801 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ad7e00 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a28361 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08553ab1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e81f7c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0921691c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a36fb50 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b08c9ab mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b1681e5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ccfc922 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10044624 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x118a1e69 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11b9d6c9 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x149b442f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x181ba3c1 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x182af293 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f82c45b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa2a6f9 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c9f7dc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2207d907 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x225bb988 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24f8e5e8 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x282a631b mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b18141d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d3586f8 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d84fb7a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31335727 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x315954c1 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ac8975 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3528e722 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35f1a00b mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37d33582 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x382ad091 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39b3757d mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a8f62e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f483c1 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41a2f3af mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d6446c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e21e61 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43e2557d mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4449b1a7 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x458a01f7 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47cd8011 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ab7dad7 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e42ae07 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e5a4fa0 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e621b33 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x502fc1e7 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x512f9dbf mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51a017eb mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5285bd65 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52ff0104 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58226682 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5942d232 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5af49618 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x600fcd8a mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6117c5e4 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6127177d mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63bcf62f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6468837e mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6607e98b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x668b5d51 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bc1bf4 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b8cc8d1 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c2d9b8a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed512e5 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x701ea891 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x704d993c mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x715f72f0 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71f8b734 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7824eb9c mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bb962a5 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd65298 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d70162 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d77052 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x829d4eb2 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83da296f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x852df2ee mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c2caf8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8661da1f mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a1c6401 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a7157f9 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d622e81 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ec79834 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x972f6651 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9800f530 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e0d20b7 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fc3e159 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa06a2a4d mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32e771a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c499c3 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3ed8d85 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa581ee87 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5870776 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6190aee mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7caab4b mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8862adf mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5193cf4 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba8aa617 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbed4841 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1d4361 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc406ba3e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4f8d1a6 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1581a0 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1965c6 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd15f8e06 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1719fdc mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1dfc7e0 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd22ec619 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6260baa mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda4f6dfb mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc9c44b6 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcda9c17 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1f139f3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63be461 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee882263 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef4ed744 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c86506 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2004200 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf35e3c15 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f78f40 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5b4e470 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ac50d1 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa216065 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca103c2 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdbc48f3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe91a07b mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x003f68f7 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02da1182 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x047e27ce mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04c1bce8 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a22340 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f59c7a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13bed0a0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e7b8af mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1454bb1c mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac9bd2e mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b67b439 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff2b596 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x212a6bbd mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2196b0ff mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f98aba mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2585199b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x297efbdc mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31100ab4 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3135c2f3 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ea4995 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e87cfb mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3792039f mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c63724e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c97e3b2 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4045667b mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41cc5031 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b19ed1e mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e44ae35 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c626653 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4416c1 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63684bed mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65d84627 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6826c376 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69733ead mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c0df78 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x717b5ad0 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c2f258 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7733035e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782d689f mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cd18ebb mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f9718b mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9074fb91 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909752b1 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e193fe mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f4580d mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96780aab mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b08fcad mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9babdbf4 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee90a19 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17df8db mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa40c71c1 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6789699 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa916528f mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc0ed08 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe63766 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb38b277a mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6629c95 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba19127f mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb19d1b7 mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd26bb7b mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc42a1205 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc55d8911 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9fd33e5 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb1040d0 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce785a49 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd36f44e1 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6be0e84 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6bfd189 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd99fdd00 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb3e091c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7007f8 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb938b10 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdce43c1c mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe06533cb mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe20961b0 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3060f24 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe404f43a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7991637 mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8996d10 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8f8dc96 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd2f6ae mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf03f88ae mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2955b6e mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa5f5e16 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb38e1e9 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea22f04 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9f22972f 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/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 0x08332d23 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 0xbdcb832d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd04390c8 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xea9d0078 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1713b2a7 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2642fc9c stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6cde74b9 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa76ee52d stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xae930509 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5633924e w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7e42b795 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa07fdeb9 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf2b4a689 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe1149ec9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x33799c49 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x426a1361 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x52eb1836 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x75e0f614 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc8098bef ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2bb7012d macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6005f4cc macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x75807220 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xce818089 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x1bdfcb2c net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6bc58364 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a93b799 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0fcca574 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40f1887e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42484b54 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6316a7d1 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x643b519d bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x686bdbbb bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b08a4f1 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x938f15bd bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa65db91b bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa91977fb bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb24fed0f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb2774be8 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe380264b bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4d386f1 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6c1d820 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0aff39f bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1aab025 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-i2c 0xe9b89272 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x338efe58 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +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 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fa0e928 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4ebc4356 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x56be148a phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x75179e96 phylink_fixed_state_cb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb18f9eec phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdccfdecd phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdd17e0d7 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 0xfa30e732 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/tap 0x064cabbb tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x14875492 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x4a30a5eb tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5e5d130d tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x67bb6357 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9d123b35 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb12b4b0f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xc4949634 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc7deb0d9 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x632a3e6f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8beed9f9 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb7f8b69b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xedfbd0e3 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfe1cb58e usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38984d90 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a0f2fe4 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a92ac0f cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5dc6a3de cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8aeb5c65 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x926726e0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9610915c cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa2dfbfcd cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3747005 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0ac256bc rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3584d5b2 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f47982e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x65c56795 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x76057f75 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa132c6f8 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01a9dc46 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c3b1278 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cfd4976 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13a5a82f usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18e5a0ee usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b5d4b46 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c92aaff usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a85234a usbnet_get_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d7323e1 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d8ae332 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e5d34b6 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56c0bb92 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d127658 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a407006 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d0908f8 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94a1e24c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa58a4b5d usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1ef6b69 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4486a34 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4d4b3ab usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0557499 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc25efa78 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc34a35fe usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce1885ce usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd99d8581 usbnet_set_link_ksettings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda272af6 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5c7c29a usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe765f189 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8f91afa usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xecf95eaf usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed366aea usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf03acb2f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7948def usbnet_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0397fe29 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5f616d1d vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcddd7bbd vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd4bd6ec3 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0bcf5156 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x100cb211 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x148d9f65 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3484ddf5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x481a83c5 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4cf0f7d8 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x683a17f0 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92228d9a i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa39cb1f0 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb1b17ad5 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb2833218 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc80584af i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe3a92e29 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed9f1a2e i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xedbfa91d i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4355746 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x2de84e34 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x338479a7 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f8b1fb3 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e08a924 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb43e526a il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf5fe255 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x047416c4 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05c145c1 _iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20a8ee0e iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x210728c9 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x21b7781a __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229d8b26 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x264f42be iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26b17bd3 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2998dc01 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a390313 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c68cf5f iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x317ba90f iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31ba5c23 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35307150 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x353d1755 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38970775 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b510f5f iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e79e9ba iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ea7ff02 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x465bb847 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a96247f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50a4c3e1 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55b17bad iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56275bac iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x586ae306 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x685ab6c8 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d7c1da3 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e41c6f4 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4a86d9 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724e8822 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7307e077 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x768a7a42 iwl_fw_error_print_fseq_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8189951d iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x850d77d8 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85fb0f8a iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x972eb444 iwl_fw_dbg_ini_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9838231d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f533aa3 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0789535 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f1dee3 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa15d41c iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf27d5ad iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb543b93b iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd75ea7c iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5028d47 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6739fae iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xccad256a iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd894c3e2 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd8c115e9 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdaba3e16 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xded2429f iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf98ea0b __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5c92494 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb0d65cb iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf13a607a iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf34afd6d iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3fea307 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5ee4ecb iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf601743a iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdee696b iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe07c1b8 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x02977b30 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a2ad859 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x26a5fdcb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38b1003f p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7bfb0f37 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x80891f4f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x878c93f6 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcaaa70c7 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf0622f83 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1b307ed5 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x21fd6e0b lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x22121451 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c371e51 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x37ed71c1 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4fc3ef62 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c736fb1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c84586f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x845b03fb lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x921bbde1 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9f292e9f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1103c79 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc3e17ce7 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc5cf1080 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd881103d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf04e723a 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 0x3271f73c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x378c1e17 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x41947f29 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x440b85f8 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x797be967 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9c467989 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa810aae5 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaab545c5 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x190e6602 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x259c3c1b mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3b21f13f _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x435bb51d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4fa0bcfb mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x580df856 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d1fcb5e mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65e7494f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x66e82539 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6cf8ce77 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6e8bb74a mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x723297c8 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78e12e13 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79d0d650 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80b3ee62 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88b16692 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x90a16ab2 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x921badc5 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5632731 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa78a79eb mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf1ccaf3 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca604c89 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd1a316b1 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde35cfab mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00eb6167 mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x017baa29 mt76_register_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0428add2 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b952e44 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c5ad2d8 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x219f39e9 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2630f9b8 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ace473a mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f6b2fa4 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30580136 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x334eb2f6 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e475909 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x444e1bd9 mt76_txq_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5038a66f mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58e8f99a mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6401f9ad mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666ab8d0 mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e415252 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e65ad0d mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71035faf mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74a5ab0b mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79ca00c2 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a60bb29 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x855910b8 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x869c522b __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e8c7700 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ebbf729 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98a858c4 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4560f57 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7d59cc3 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8543175 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad2b10b8 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad85140a mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb18b2db3 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8c56f5a mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbef31448 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc39d5725 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc48615d7 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8c941ba __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdc004ca mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcddf77d3 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1074d79 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd54f63fc mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbc822ff mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe56e89d9 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe594ec23 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe688acb9 mt76_txq_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6b025ce mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8de90cb mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefce49a4 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1099a55 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2a160bb mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf36a718b mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9878f68 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x25857910 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x30840099 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x31d83af4 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x48d24dfa mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ecb21f9 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8efe7179 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa840c2af mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xae885d7c mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6ccc69f5 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x841adb8f mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9471687c mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9b8c5808 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xacc4917f mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbb9d6da1 mt76x0_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdcf66fa9 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01f074a6 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04871bb5 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x068d3596 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x081cadde mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b4c10e1 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x122cd538 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13a19ae3 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13ba01f3 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x151e3007 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e9c2b5e mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2086b0d0 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20a218e8 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x287d164f mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c77a528 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c795953 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ea13dba mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33deed41 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3521e679 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35c02956 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42be3bac mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x432cd540 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43f6615e mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46cd0ec3 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d2cc871 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e531136 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50df37fc mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52e37887 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x570e7fcf mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b985584 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6383bba6 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63d7cae0 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67d1b675 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6826bdba mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e007e0a mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d22a820 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dd28dd7 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85402f1e mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85c60728 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91aed569 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9859bb81 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b975c19 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d30d8a9 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e91ef0e mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f023e80 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa071b53e mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa61161b7 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa30f092 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe40e84b mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc28fd5cc mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc394acee mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8a6d0f7 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfce3d80 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4429bf7 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdabaa10f mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb547200 mt76x02_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde1cde99 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdedf5fa6 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1f78408 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe83aa88c mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed44d941 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0bff726 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6c7a202 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf92b0dd7 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x36312922 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x369a7d85 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x51e57996 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8cb0318b mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa9e211b4 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbdfdf849 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc62ddc4c mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x00b2567a mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x174e16be mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18d9d66f mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4929161d mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e2acfb3 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5fbab8c9 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c16534a mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x73ae5794 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7f8cf62e mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x918f851e mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x98976c4e mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa1a3a52b mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb8d1250d mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc58fed67 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd41bed6a mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd79c8b4b mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb7fa218 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf3c54c6d mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbfba6e8 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38160400 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x79b6f10f qtnf_update_tx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x96d03129 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9843e3c6 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbdce2853 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbfc6d9d0 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcf7c9545 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe334cdf6 qtnf_update_rx_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xed05eadf qtnf_packet_send_hi_pri +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02139056 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02d1d7c7 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0442197c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08f37227 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09b1e544 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16c1aec0 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x197fed0b rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x198a96df rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22b4075d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51e70880 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54b9f563 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63898231 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73eb0fb3 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7be1a5f6 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8030ce52 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85f5a284 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x864a7bd8 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x865ff8ba rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a809e7a rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c7ba10a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d3ac9f9 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d4b45ed rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98fdef3a rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa184b6bd rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1ba3628 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2bc9137 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa972980f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbb60d9d1 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc580a49e rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca68b1f9 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb8aabfe rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb9de4e8 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce824213 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd134c8f6 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd567b6b0 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd61998db rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe526eb8e rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe75665a9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec6a5414 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeede697b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf498afeb rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5e8935c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc5a428b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff140a92 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x11f073ce rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x33fb98aa rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x45dec646 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x586d1d6f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5885c5f9 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x90bb74f2 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb127b49e rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb2626aff rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5e431f1 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc2bb671c rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc3980781 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd15b89a2 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdace0dd8 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe611ce93 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4822be2 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfe821fdb rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b2e5780 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13acf854 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x140774ac rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x155c7c2b rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e2e28a5 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2347b313 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d5cdbe7 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ee13f1e rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x414a7075 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48f9306a rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f807454 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x526e63f2 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x531fccba rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5721d484 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6173be0b rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x638de904 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67ab3637 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x754ab8b7 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7942d66f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79d56560 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ad04505 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d9c8b48 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f6bd974 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x831fdac2 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83ac108d rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88a8f775 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ae46f84 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b7cc478 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9380a995 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d5a5f78 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3edac9a rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3f8ccfa rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7528bff rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7b00d20 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1a09030 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc96bcda2 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb7a4a7d rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe200d2ee rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec77a67b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee598a4f rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0e7c968 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4f10bc2 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6a1e07d rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfac8f6b1 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb4b2977 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfec5a283 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x02ebd710 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x29e1aa42 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2bab82ba rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa8e9c5ca rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf974eebe rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0eb38b4e rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x86b511ba rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc7b814e8 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd6343b98 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x004fb79a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04e8f385 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x085a876d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x174b25dd rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x206c2814 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b6ce5a9 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54a6863d rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64ea3e87 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x773e5765 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x838c6190 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xba7204e4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xba8fc402 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd219ccf6 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf13b5690 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf790723f rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf811fdb8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cd41c74 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x505c5a75 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ea0266f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e118740 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0391540e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25751270 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c29c451 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2dd04783 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x344e2ddd rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36742d26 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a4209b3 rtl8723_phy_rf_serial_read +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 0x52c0c454 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x554d8776 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x615e5d5b rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x642b8103 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x731b7f5d rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77674178 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x849c9dc0 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85fd261b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89026309 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ba6e138 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8daad152 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98c14471 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaaae1f1d rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb9728b3 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0a53374 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee14917a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf274123d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7cf7fb6 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x224e32af rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x245768fc rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24b88c49 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2826af38 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 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 0x2ed97972 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30cf7bb0 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4076fd9a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x412e7912 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45469b3c rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5726ef6a rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x618f108a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65f42e15 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x758c9d47 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c57aca1 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fa17a9a rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a2466df read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb51374d5 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1cb1ac3 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1cd2827 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd62be908 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8582f57 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeafb2263 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecf6c31c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf94beb49 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbd7a08d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x02f0701b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0ea01f8c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9110268d 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 0xe836121d rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe9eefadb rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x10a84503 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x414bf255 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x949a7bbc cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdd711048 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x68798839 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7d0974c4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x97a023c2 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0859b5ba wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ad4c901 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1bcead6e wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c4c75bb 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 0x2e9d7473 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x308e7540 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3833e7bd wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b15e88e wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f766552 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x439317ee wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4db5aa67 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58930237 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f129bbd wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f9f970f wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65632dc3 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c604e64 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e238039 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7751cac0 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7814319d wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7aa692a1 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x814c6170 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81846bfb wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86460bed wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x909b7d76 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91d00fa8 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94ecd394 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b0d1ca8 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9df52126 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9eb0875d wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1af4a4e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb91d2733 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9216403 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8a8c046 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd96d3be9 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf828ea9 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2aacee1 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe69f7e8f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe889c9cc wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8c9a60c wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb9186c7 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc1c4e32 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe4928ac wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff4d8afc wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1c21581d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb1b8fd9a nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbe640b08 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdd2ad4b9 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c8800f9 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8ef78113 pn533_unregister_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x96060886 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc68b8a91 pn533_register_device +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x09db6d81 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0acb3642 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0c446467 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x55ba836f st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7aa731a3 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xceb2d657 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd1d84b19 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfc115f57 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3850e480 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x543df503 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7e29a96d 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 0x322c18c7 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa8b17f70 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 0xc5cb5019 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x65109045 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xc5eaa54a async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11890c1d nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c35f784 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x250dd893 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28669dab nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e473232 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x364ce9f9 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a9a1496 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43954190 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4abca8b8 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4bf36b3b __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4eabab9c nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f346b93 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50d8673f nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x534d7ed3 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67fe1547 nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71d6078c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x767ae7d9 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x773fe26f nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78fb96d9 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8078c20f nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa720e0a8 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa76aaee3 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa76dbe0f nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8881892 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb91befc2 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb1761ae nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbf583a7 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc62dc07b nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcaa5d2ce nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd08ed2e8 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2555f55 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8984fdc nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbbb5bd0 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdef6ca54 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf9b0f4a nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe839b0cd nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf45614d1 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf90b1119 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff34a2d8 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1ac0629c nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b049ce0 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x22db20c3 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3a1247a4 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3e19c388 __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7258b53f nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x77697a2d nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x79df4564 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7af89c8e nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8edcd00c nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xce905f79 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdef1ae0d nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf2cec6a4 nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xf6cdb249 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x020c3e77 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0ad9782e nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c249251 nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x54a889ce nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7172a942 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x824fbe18 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x965c6d11 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa2c5906c nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xacb3f673 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc6b8d506 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xef983fc4 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x47f84560 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x213f31a2 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x8058028c pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x1acd90dd rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x794fd33b rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xc7440a02 rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x53614e75 switchtec_class +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0aa2e352 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe1d69c29 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe450e5e1 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf5f128c5 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x57537e52 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5d364a94 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x99d07341 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6fcffab0 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8826f2f4 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xce24f813 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x10e6f416 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3ce35403 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4baeb85e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7e8c1645 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb74294ef mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2b02f338 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e84f0b7 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x616c7490 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x93b6678a wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3748ffe wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd6e689c5 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x69bd9c8b wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x0f4dca1a qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_native 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00fb94b4 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c48b32b cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x260840f0 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x281bda4e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3067373c cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31f11b59 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32d01e86 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33ce276c cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x396d9260 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cdb0c9a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x404e182f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x408f96a5 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48fe69bd cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b6d0ade cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55e8e78d cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b3030b5 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ead333c cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ebb13d0 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78aa087f cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79b1d7f6 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a43bbae cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8be83971 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x987c0e33 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b5d55f5 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bcf1c95 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3d61529 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8c7a1ee cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad0e32bf cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0822a42 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb897a9cb cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb925e47f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd110534 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd9ec6c0 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc15642d2 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5ea19a4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8b54ab9 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb796e4f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd7ee67b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcda728e2 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce2b2cd6 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd138243d cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6538fde cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6a4fc53 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc4de5a9 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x21530a95 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d79cf7c fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a89df05 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c09661e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x607b72de fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7526de1f fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x914989ed fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9320ac7e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaa7c2ab8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0c38fa6 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb204a641 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 0xcbf34633 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd53b1f8a fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe87b7696 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1c69c3c fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf755f757 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x830c0e13 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8d2d5c50 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x03a57f3c iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0adf4105 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cd1cc77 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x655b91c4 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbe9f5104 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc59bcfc6 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xed1038a5 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xc34ea0a4 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03a8a828 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06c50920 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1243bd14 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12ff0385 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14cfd0d9 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1682a508 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x261a98f6 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27758f1f iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f343f50 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32e8af66 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39ebd8ca iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x418893c1 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x521e3ea8 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5771fe55 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x691cb478 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76781224 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78d1668b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f70694c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8121113c iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x817e5bdc iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87dd9897 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x895c777b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8aca481e iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c0ee2c2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93c15c06 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x940cdef5 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1eb0b5f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa71721bf iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaaf266b1 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbbeca15 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdf56fb9 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb7687b6 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0710e56 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2d29eec iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd71ee3ea iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd71f5c64 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9164203 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbe1656d iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde6048f6 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfceb3e2 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeccf0e72 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc589982 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e24d387 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c8806c0 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x363048e7 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c8f4f98 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49a8eaa8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b4d9ec3 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5eaad0cf iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62d595b2 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x73bc79cd iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b042f88 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b529123 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x95f6db31 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9be543a6 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4a97164 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb208a25c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3d01b79 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc291669 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03ac08d5 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ffd7fdd sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1eeb8d96 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ab07475 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3319551e sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36ec0c46 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c4ffddb sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x435a52e3 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44e8dd1e sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x533e4767 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c5aa8f3 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6405b501 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x841a493c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a2af9bd sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9eab7e98 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5c150a7 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc53d856f sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd250567e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2abd4b2 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf2751db sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb792f84 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0f3a50d sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf286b727 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf385305e sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd423641 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x101349b9 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21435464 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29f4199b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2febb4c8 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x331fea30 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x334e3f15 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x391cca72 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a627340 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fe67c8e iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45300e3c iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4730abf9 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e194094 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61e1042d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65012494 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6857d95b 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 0x6f3b335b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72e710e4 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75d1f712 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7aef2119 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bb23dc6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fa06210 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fb854f2 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84cd03c0 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ef0aab1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91e6ee1f iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9576c00f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c198e03 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4e0b419 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7c1f107 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c1eb7e iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9130b0f iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba0338aa iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd44047d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfdb5295 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbffe8dc0 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc747525a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca6fcac8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda4c9328 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcb561b5 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0ad623b iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xece7d3b4 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf026e4b3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7046231 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf88895fc iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9b8881f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdd9ab1f __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x58c3f708 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd60507f0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd81f743e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf917d3d0 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3bfae627 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2cf61fd1 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3570105e ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7ddef4b3 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x863f68b6 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x92eb1f2a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa212555c ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb59ed9be ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc591d405 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd12eacef ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5ab16012 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5cedfcf9 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x89881e62 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8e59c86f ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb987af03 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xedb6b1f3 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfda8f507 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1ef978d3 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3af95c03 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3b4f6ce6 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaf7af43f siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaf956bbf __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe03553a9 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x02bc3873 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a16d21c slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1479398f slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x197daa99 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x21b3335f slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b4f88bd slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3045c019 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x430e9899 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x57256f67 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5bc5162c slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61a0e96e slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x650d2e69 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x657726ca slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6a959d56 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6fcc3599 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8bff6fcb __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9882f13a slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9d714f25 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab539ca7 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xadcc4392 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb0b49518 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb11f2887 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb1698eb7 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9883a1a of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4cf6c57 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe5035450 slimbus_bus +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x088d3134 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x24c9f2de sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4063fff8 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x006b17df spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a0334d6 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x99f0e415 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9ab9c4a4 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb4ab0801 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xde7f1b28 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2bf50437 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x42ffc9e2 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x69b7ce95 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x97638502 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc35e3bcb dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb838bdd2 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc0c01e35 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd7759d7c spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30f34278 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3385598c __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x370cc649 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b7e3c0d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x522a1b10 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5642ce97 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x57e24c15 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x583b18b4 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67e08ae6 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78edd89e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x85aff148 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fc4440e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb28e7023 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcadb9a00 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf2860b9f spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9b20807 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd166c9d spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfdb574e5 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x557a802e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x07f11ac0 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0acef561 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0af7d311 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x11b37604 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1c40eab0 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2652235c comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29db891f comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d920581 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f042a2d comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x33a2c2bc comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3797addb comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x397a998c comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x458be83e __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fbf860c comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55e89618 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f57d090 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x629e9fac comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67015341 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a0fcef2 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c86ee52 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f04d26b comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7faa8361 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x836e3be1 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x895ab9ff comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e2a84a1 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x91c8d9b8 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x91df925f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6d6f39c comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa77582e2 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb27d15b5 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb2a69d55 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc93f9b12 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc94ed492 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcfdb44d6 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda6b8cbb comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe160ea2f comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x381b93ee comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7115a366 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x88f14191 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa118df75 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca1def69 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xce2093ee comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xd61f7e17 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfaba7797 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3560f27c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x69d9369e comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8b71f170 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x91932314 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa23cf30a comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xe46a0815 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x1decdb88 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x213b7de4 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x273282b8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xdc15f61a amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x109a65d0 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x11d55d5a comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1b8c4329 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x222fa036 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x34317a4c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x63fa54d9 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x718cd42d comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa6cb2964 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xab341232 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb05bb4ca comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb2f16757 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcd44a01d comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe06ba941 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x4a80eddf subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x747d3fd0 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x861f50fe subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x1ab99e66 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xdf893b5a comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xeb96af0d comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x6aa088e4 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1e7fa076 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1f5399fd mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x286fe49b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3bcb7e30 mite_request_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5d2e5878 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7945b0d9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7a5e0aca mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x89cd64e8 mite_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa69b3c87 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcb11ebfe mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcece2d92 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd3b3af01 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xdf74685c mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1fae897 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf86f029a mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc34e523 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2739c378 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xfcb806bf labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x185e1793 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1bee6fde labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x59e32013 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb5d33d6e labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xb5d6abcc labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_routing 0xf6399e4e ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x13f314bd ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x444d02ff ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x542d07a3 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5b300059 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x68d43469 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x70a4ad55 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7137f890 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7c34563e ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x90eaa639 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb2ed92fc ni_tio_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd5f159e5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xddea7136 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe105c2fc ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf579753e ni_tio_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf79f330b ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfc18ab32 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x20acf5dc ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2c5ec70c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x35479e8f ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x90ea1736 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe7d26a8d ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xee4a4aa3 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1b1cae22 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5a055785 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5a26f780 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbf8f8633 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xcd04058e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd383b156 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf952acd9 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3d1fe6ad anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4a62389e anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5f83e911 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60113621 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60176131 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x74a9117e anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x764decf8 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x890ff1d1 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9c6e75f3 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa5c0dac6 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xadc7326d anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc6df1910 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf811500f 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 0x1a9153c4 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x4c63e901 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x600284fb fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xbd2de8bb fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x067fe17f gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2537c59d gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ead49ca gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3db7eae8 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x469f6858 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5462aa41 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7d8d099f gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x890ef35d gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xac63eff7 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcd95a6a4 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd36802b gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf11914cc gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfe7ea4c9 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1807e569 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3204e2c8 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37f8ea92 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3fa8cd0e gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5757c37f gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x871a0631 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8f37cb61 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9c0084bd gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5613616 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xccadd952 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd21bc913 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdfb7e6d5 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe85db9df gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x311d450a 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 0x55bd409d gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x03c0a2d1 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x3f03827f gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4fb33a06 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xfa43644a gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x46f1d6fc adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0670d760 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x06747b86 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x0c110863 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x232ccb12 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x26467207 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x2d96b453 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x3abf63ff gigaset_start +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x5b2b06f3 gigaset_stop +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x6ecda4ca gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0x885d2525 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xa53a7900 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xb7de7d48 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xbb14e1d1 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xbdc22c82 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xce167fc4 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe044886e gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/staging/isdn/gigaset/gigaset 0xe2403883 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x20351a9e most_register_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x36e36932 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x619cfb8d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x67d6c679 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7349ff83 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7aab0400 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0x7acbbbc4 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xab496cc5 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc7d29e42 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xc9bf3c9b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xcfd6faaf most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xdb897433 most_deregister_component +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xec9d667e most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/most_core 0xffd574d9 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x08771a98 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x22ca50a1 spk_serial_io_ops +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2b9df101 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3f633ef3 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x426b9cbe spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x59325ff4 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5dda8e9a spk_serial_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6361033e spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6b0773df synth_current +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6d622b60 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x70095132 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8be3ce20 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e50055a spk_stop_serial_interrupt +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x91640226 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa7687749 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xae7d6424 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb72e27ca spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xba0088e0 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf8a4020 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd2dd0fb8 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe28b7f2c spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x6f0ee067 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0x9f77699e i1480_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/i1480/dfu/i1480-dfu-usb 0xb4b7510f i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x212c95c6 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x3d9585ef umc_device_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0x84f521ba umc_controller_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xcf02aca0 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xd196e29f umc_device_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xdf8618e0 umc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xe29d6c28 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/staging/uwb/umc 0xf71d1195 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x03d98242 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x0f3ed3a7 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1da9279b uwb_rc_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x1dcc0264 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x20735c2a uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2566894d uwb_pal_init +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x270d5ca5 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2e560cdb uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x2eae9652 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x469737d6 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x48be4a1a uwb_rc_put +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4938c6f0 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x49d17c14 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4abe25c5 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4e3b11aa uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x4e488027 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x5a5bcae2 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x60af912c uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x6c68ca8f uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x70ea70d3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x72959328 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x79c208bd uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x86561c77 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x993ad8b9 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0x9d6bec19 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa024b07b uwb_pal_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa1f28cb0 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xa5a4e4d2 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xacd75988 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xb1080cbd uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xc684deb0 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd42de7cc uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xd6eb05f2 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xe9ae5478 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xec81283e uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xeedacef4 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5b6747a uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf5fc2f2d uwb_ie_next +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xf9e82859 uwb_est_register +EXPORT_SYMBOL_GPL drivers/staging/uwb/uwb 0xfa4572a4 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/staging/uwb/whci 0x90d64b47 whci_wait_for +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x1e80bce7 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x20df2801 chip_wakeup +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x251e286d chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x25fc07b4 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4802966f host_sleep_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0x4cf118ae host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/staging/wilc1000/wilc1000 0xa700c47a wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5a46f44f wa_dti_start +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x5bc6d010 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x69fadfe3 wa_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x6fb9af23 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x7490c654 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x8b595764 __wa_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x8b6840c0 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0x99efe030 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xad517188 wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusb-wa 0xf5548a34 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x047fa71e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2c1c5d46 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x2d35d485 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x38348a4e wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3b7d185e wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x3fc73cf6 wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x45a7a29b wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x6b9ef188 wusb_et_name +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7c0bdc93 wusbhc_create +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x7fb548bf wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x845ab80e wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0x9374618d wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xa867abf0 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xbc3b99f0 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xcd98eb75 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe19409e0 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xe448ccfa wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xea5438dd wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/staging/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x8a422e5e n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1c3a5b67 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x487a0640 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x710df241 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5baf39b9 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6ed6eaa3 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x39259704 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x64b64f93 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x90939745 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x18fdcecd imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x24ecf90c imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x837cef42 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xafebfcb5 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbed444ec imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x01bc4e0d __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7bc66f50 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa72d8791 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb514b901 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbd2fde2e ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xebe229ed ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x11c25b90 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x209ae766 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x528021c3 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6bb0eefb g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb3695a71 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeb80d11d u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x105f6010 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x188788fb gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1910e910 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a5aaa45 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bca4ad3 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6bd84ecb gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73556d0f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73f46b1e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83e880b0 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa09df9c2 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb089c37d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3b385e1 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd23058ed gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0614257 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf603d56c 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 0x40135c6a gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x57133707 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xaf4acc3d gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbe9964ce gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7c7462ad ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x928c1bfb ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa496e576 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05bc392f fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ee7d719 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x156aa84a fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x19282324 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x260e8e91 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f576955 fsg_show_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 0x3df8b046 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50f7c293 fsg_lun_close +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 0x82f5511e fsg_common_remove_lun +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 0x87f22034 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9269d5f8 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x93e3c7af 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 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 0xa6f35114 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb0c3d090 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb28dc553 fsg_store_cdrom +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 0xb464d4ee fsg_show_file +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 0xc3b30771 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a510533 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x12ea2027 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x136b30df rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1b5a61e7 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x226a0835 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x283a2943 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30d38ec1 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x34367d3f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35176123 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b1aa067 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5e7d97df rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x65729129 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a393b68 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc2c134d rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4824472 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x063b961c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08c4173c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x13a16a34 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3232e5dc usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x492586b6 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x497d5409 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e049ffd usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50c01f96 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e5ce353 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x608eb512 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b01a6bd usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d2cbea5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc11b4d alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f436eaf usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74ba0c2c usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ec7271d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86ffffe0 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87c1c80f usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x946c4dc2 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a415d4b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa44c0501 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab9f0ed9 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb57f8868 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5ab2709 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc65d363d usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcdf7935d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd513eab1 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5fdbdc1 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8e2bf95 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5f75d88 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed6ea5cc usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb11444c usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffdd8248 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x033b28d6 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5596e614 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x707786f7 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa14e3da0 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xacd50290 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xba890378 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcc6d224b udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe440ed48 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf6aa07d0 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ffaa944 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x13115982 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1959219b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2241591b usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x250716ef usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28cb7cef usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a20aa99 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ef742d1 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3079994e usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40f79de7 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x47caa7c9 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a2315f5 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5591473d usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x55d4bd6c usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59d96a51 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63e14d80 usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bfad17f usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x712c27f9 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73551c77 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7623e532 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x870a88b3 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8ae10d61 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93a17dc2 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94816c92 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x972854c2 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0e62d4b usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa36ea15e usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa61497a3 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xace88766 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb09e1d01 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc41263c7 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc6bbd8c1 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ea074a usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc940d8c9 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2802cea usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec447355 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf0979a46 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe9fa391 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1cd3b083 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xccd5c4b8 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x249e61a5 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x506f66fe usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5459e6bf usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5c6490c2 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a332221 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbe934637 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcd71bc7c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcf4238fe usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd068b5c0 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1f53e6d0 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x37f6df4e musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b11b059 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7bd47bfe musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xaa2544c3 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb517950a musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc3ae8b2b musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xccbfd39d musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xce423b28 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xffc415ab musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x12071c52 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4c8a61e7 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6db24b2f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa1fc2a12 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xda0d2b9b usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xd8e33cc4 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x05ab082b usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x8785520b fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xce94d153 usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xdf91f242 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x048c572e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x112cf080 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11b14029 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x192f4fa8 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b0df43b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c0f9659 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f2d6e5e usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3dd88a5a usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5edc4549 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63856795 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6bd5c03f usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7404989a usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7cf91f3f usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e65ddaf usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f352aba usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97b87599 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa79a44ad usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca8d9b75 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe0e12707 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe98a6dee usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf31af375 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc1af053f dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd82f1df4 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x1080f12c tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x612be7ff tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0119dd83 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02b4e209 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03608f2a typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05efeee1 typec_altmode_register_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cbde8b5 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b90ac2b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20063e66 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33fd62de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36852716 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38c4cfb6 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x426285ea typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47ab328a typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x493159cc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49e9c7d6 typec_altmode_unregister_notifier +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c93810 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5869adb2 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5ac3a632 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e7b4955 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f2c6469 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x644bb868 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x646e5a02 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b19b838 typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x762c549f typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7751d771 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a3e836b typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e17e4b3 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e2998e7 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x962b64f3 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a00a11c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c245fd2 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cad8da6 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8346872 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad90c3c7 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaec7d7fe typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbeca0645 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7bbb962 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc91ae8b typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd36a399a typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0a9c4c typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2c53b87 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe747c6c4 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7d7db48 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecc1fd55 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed509c2e typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee19f4b1 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1d81211 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf37c14d6 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3edcae3 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3d08a04e ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7573194c ucsi_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x895aaf37 ucsi_unregister_ppm +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeaa242c5 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf6887651 ucsi_register_ppm +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x152fa6d1 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1935b19c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4652eea9 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a804687 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x81ad95b3 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8a6eb463 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2022d70 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb3543890 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8f74c33 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 0xd0fdb271 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd660829f usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf5a856e usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xec23f461 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x0e45d191 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dbf7942 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f829588 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19e4f228 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20ce8aa7 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21371843 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x256a3750 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38f591c3 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3bfc3e37 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d29f537 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65b9b384 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68b21b18 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cd19944 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70493412 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7303e5e8 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x731e350b vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x861bc6fb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x881de410 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97e32ec5 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9acbed29 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9aea02b9 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fed77bc vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2aed164 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7f72c2a vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaefb9064 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0853330 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb607f8de vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb64ee6e2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb83ecfe4 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8cccc01 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc64587fa vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcab96a69 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfd65868 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde871ef7 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe24d5864 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7ac6aae vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeba9129d vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec3da3f7 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf08f8691 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x465b7eff ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x64065d6e ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x68307166 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb9338b55 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe02676bf ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xef7a8afc ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfc44b27f ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x317302a9 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x427e1361 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x890ba2b0 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4f05c7a7 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa89f59b7 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x05cea1e3 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x165a8841 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3698c96d w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x501659d7 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x563fbc8c w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5804b09e w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x97b0d0fb w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa2be0ad6 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3d1ade5 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9d8a307 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb0f562d5 w1_read_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x83541f24 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9dde43cb dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaca534bf dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x164ed4fe nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x335716eb nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x39a7db74 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43e79bd6 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x600784e5 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb49a089c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf1de0387 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0715d906 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0744d020 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08e51298 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b22ac58 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8ad323 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc0c8ef nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc63a71 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e9fca96 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ffd27b2 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107d51ed nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x144ea01d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1509c53a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1add4352 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ae2253f nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c699234 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x219af573 nfs_mark_client_ready +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 0x2806db6c nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28ff7ae2 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x293fe71f nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29cc584b nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a085ab3 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b1e43e9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c8c6fed nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f279a84 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f9fe66b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3052f45a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x310c7380 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3113bc33 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x325a62cf nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f57125 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35af9ec2 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3757913e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37f3b238 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ead6c12 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6c3d9e nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4026e097 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42debce3 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45d2eb2f nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46fc023d nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47eb3dbf nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e6041fa unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55de925e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58367142 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ab15c64 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b60d378 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c81245c nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5debc645 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61353e4e nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x643b4def nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65562417 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c33713 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a7dc968 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d7e53d2 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e3a1580 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb077f0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x739843d9 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7742b72d nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77b6807e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x789f3546 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78bd3205 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a819940 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7beb293b nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d92829f nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ee00349 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x847ed1d8 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x856d617a nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86a59fb0 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8925de20 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d74ec90 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8efb693d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90448a4a nfs_statfs +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 0x94b2ab07 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b5783b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9628b2f7 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97ab67e3 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98c076ca nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993b92d9 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99d0e85b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfb9b42 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d4ca2af nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f2c6f80 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99f0f93 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba9c886 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb00237be nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c13b50 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ef37be nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ce34d3 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d6b88d nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb700544e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb83c444e nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb0f9a96 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3427d4 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfcbe9d9 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0d41221 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1250b0f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1e58eec nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d5a989 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5a49ab2 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e9c0c3 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6804d0d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc860e077 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc879f661 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8b02292 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8bb50ca nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9a4359b alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca41168e nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccad5bc3 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf1e1de4 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf906d22 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0704c09 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd17459de nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3242edf nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd37f3af9 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd57bb069 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd604dacc nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd775d9ea nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd874792e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdabbfe7f nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb45b95b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc709f5c nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdea017cd nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3b5595f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f45303 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7a5de2b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8577524 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9161d18 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaffcf6e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb49e148 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbd2e10 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b22c6c nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a43153 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ccff11 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd9a6efc nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1865f5c3 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03cc12d8 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x041bb07b pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x121133e9 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132d54ec nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14231cff nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14777249 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1714ae48 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x229fac45 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2335b741 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x234460e0 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24cebc3e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25135214 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26bd687c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2faf0e98 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31f10e41 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d3b224 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36448960 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ab5778c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4734421d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dae27bc pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4df87645 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54e9e20d nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5af9b364 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edf08c5 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x643535fa nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x689454d4 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b0cb1ad nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7097bdbc pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72c4300e nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73928666 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a051a2 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a510a7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f1b7c5a __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e7db51 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x843074ca __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86f38f4a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88a6bbd0 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9016f35f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92097239 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9636bf79 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b2a0187 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa190f05f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8d32d98 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabbb9c78 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac98620d nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8a94aeb nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9154762 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb95d70d6 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba1688d8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc434e2d9 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ededee pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc61672b5 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb384aea nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfddf663 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b72ee1 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9480437 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9fdb7d2 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb1df689 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc53db81 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde2503cd __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdea30756 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0710803 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe41f7ddf pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6aa4576 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6f852e0 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe98b13d9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed64a481 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0543ede pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7546a55 pnfs_generic_clear_request_commit +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 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x29257a17 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc823def9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xddb4e961 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2189e99c nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4dd71353 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x133f57c8 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3256cf03 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x40d9da5b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x466b3ad1 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 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc34a7f0b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe9fbb54f o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf77ea358 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2561e9de dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4a5099ee dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c134a78 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa6b7fc71 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa8f73ae0 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 0xd9f6fe23 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x359751bc ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x75bb5208 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb46b59ba ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf9010190 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL kernel/torture 0x01ce8f8e torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x5a9c2310 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xde856fa8 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x441f57ff free_bch +EXPORT_SYMBOL_GPL lib/bch 0x995d31f0 encode_bch +EXPORT_SYMBOL_GPL lib/bch 0xa94ce654 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0xf17a44fd init_bch +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x2b414154 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x43a46118 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x38861500 init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x51410142 decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x65f24eea decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6c23f4ef free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x74f14b6c encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xe9fe18b0 init_rs_non_canonical +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcb1a9fcd lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd02c44e8 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1f37abf2 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x287b4149 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x3d55cb0b garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x71916782 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc819beea garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd99b6283 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1097fee7 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3f61e13b mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x57a8d775 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x5a295762 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7bc65d9d mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xfc9ef988 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x2e3682f7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xfcbd6398 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x87e7a873 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf6302f8f 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 0x6a37dbb5 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 0x2845a31a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x63a12345 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fa8941f l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f6e6e5f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcf78de74 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe78ddf25 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf6c0dd65 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfba700bc l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x78d7df31 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x020f5e5e br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0ada51f9 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c8b74b1 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x53558e5b nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ae1ca38 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b5a2297 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fe0efa2 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75741b24 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78da3637 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x828f2760 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x888daddf br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x90b65505 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae891b37 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1ce02cc br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd29ac3f5 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcc14061 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe783d77c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfee4d483 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/core/failover 0x5ef01166 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x7bb87df9 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x93e976ea failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16d36adb dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d6cae1f dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2491bdd7 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x288f4e90 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28e1739d dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c6df94d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34075d19 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x358c6cf3 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46ab6836 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e5f0612 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x50c2bbd5 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d12270 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d6c8b31 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61ada7f8 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x672f5185 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67bfa04e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72752b0d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d497085 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83ac5acf dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87859349 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x960339f4 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4f63557 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa952bdb9 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac71e394 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2dea5ab dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5f3bcea compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbcff25f dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1043bba dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc56798ac dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9f97ede dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc877065 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6fe5558 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2dca4c2 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9014143 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaf4ccc8 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6625ba84 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xae565df2 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb0b96903 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc068aeec dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe55ae2e5 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeee629e0 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0b2fa3df dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d8f0155 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x174af3bc dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f35d03c dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26cb2ccc dsa_port_phylink_validate +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30078f7c dsa_switch_alloc +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3858ec5a call_dsa_notifiers +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c03579a dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c6e8e82 dsa_port_phylink_mac_config +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3dd984ae dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44ab38be dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a1b488b dsa_port_phylink_mac_link_up +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c5bb8ee unregister_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d9ed0bf dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62137e2f dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x725b33de dsa_port_phylink_mac_an_restart +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e83b424 dsa_port_phylink_mac_link_state +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87d09d07 dsa_defer_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x888aef11 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8631cdb dsa_port_phylink_mac_link_down +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe1eccb01 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe95840d6 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf86039e0 register_dsa_notifier +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x2a5ae79e dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x6fd11446 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x99718825 dsa_port_setup_8021q_tagging +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/tag_8021q 0xd89267c8 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0eb08e81 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9014fcd8 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcb8f73b9 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcd891b33 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 0x6efbc259 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xf05cf13e ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x859816e5 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb116dec0 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc8145c93 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe945b648 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf5cc7a37 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07b4c642 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x29a17ac0 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2b483ac0 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4d4ea689 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ddd1f0d inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x90985678 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x90fda1e3 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x933864cb inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb264424 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x23aa505f gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1981ae69 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19b31dba ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x227baa14 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4135135c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73f6f66c ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87fe1307 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94db3a59 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5dcb115 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa792d482 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa808cb39 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xba128761 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6b571c5 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7f2ccd8 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5bd4571 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf725d0b2 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7bd3f91 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x71cefd8f arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x48932e32 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8f93a988 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x400fc4eb nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0da660ef nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2f3290f4 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67949a42 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3319103 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe57c6dc3 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x04282940 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x67597d44 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9538d087 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb4a10957 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6064a7e6 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x683dec28 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0450fa2f tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0873dfad tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcad4f719 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd6747d92 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe0554f8e tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4b459768 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x638fd192 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6eb2e220 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x905f5856 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc53e8257 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc91f2edf udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd0dfa146 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe1165934 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x55724111 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb1d6e128 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcbe5e2d0 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7aa54467 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9ce05833 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xda7481d9 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xaaed4700 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf3476682 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf7c756a6 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6a49277e nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa4b30b32 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x63b1c70a nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x26469768 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9547c58c nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb79687f6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc7aa8ec9 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd74d7561 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x834f8829 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0ed91794 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcd196d18 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe10ba4e5 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x129c00af nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9bae4b77 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12c06947 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2340b9d4 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32ed9d75 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37039b5f l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x39986bb0 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cc0cc82 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fe7aacd l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6005ba15 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7599b94d l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x955e0ccb l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa342c157 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf5d017b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba3b4a4c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd54f5224 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdf3e1421 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe718c968 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf397896c __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5052fe36 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0b973d4e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12c4804e ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d81afc9 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39147912 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5316cb29 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78034d39 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7855afc7 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79c09a26 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ef775a3 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x801d41d1 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83251f67 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x890f62e0 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2845950 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb6a525b3 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc352fb12 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5d97b64 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9a45cef ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5c0c626 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7e22c11 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0260ef98 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb5412fbc mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd6643702 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf2b92957 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfc217f46 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02a88785 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1aec5a45 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ddba823 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f8f5a0d ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c25cd1d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5934b8bb ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5b874d72 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64c2a9cf ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6915b81d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c97b6e7 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6cbc4954 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 0x7adce496 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83696b46 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x948d1daf ip_set_get_byname +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 0xa60bdee0 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2bee081 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbea9d4d3 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3cc5ed1 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f214561 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x38d8707c register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x42726fb5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xee328fd8 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x25cf1733 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x45a2d134 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x776d4c52 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xefc618e4 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfd73db05 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x032b1032 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x053c6b65 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x096bd0a8 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b835fdc nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14dfaf2f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16d47f5b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17ea1c1f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a10e03a nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22dcb1c0 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x232b0fe9 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x251be2c0 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x261388c1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27ccfa14 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28600500 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d1c24d6 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ec0ffee nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31f49e85 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x345ea803 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3552a3ab __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3582f9be nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39e82afb nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b30ea7a nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d8b7492 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ea22c07 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41598eb8 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4200e050 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42ccb79e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4381cecd nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4572fc02 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4694df9d nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47fd5d18 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bfba823 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c8be4ec nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5694ba41 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5798d530 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ebd1e45 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6496a42e __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x652fecc5 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66744a7f nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70a1e35e nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71307d9d nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74890dc3 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7840c6c6 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ff38b41 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8149a97b nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8549e3a4 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e1fde74 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x906effb4 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93bfe4c5 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a639ece nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b82403a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa200ad1e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa587245f nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa76946c2 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa81df93a nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaae4c6f nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab7bb99a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae3ad0b7 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafb51c29 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb395d0b4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb673112a nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb1e7767 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc039dbaa nf_ct_delete +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 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc76a0c71 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdfd42fd nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2c6564f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4f1ccc2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd682100c nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8445026 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda60c925 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4195cf nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3548fa3 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe39ba505 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4fc0b76 nf_ct_tcp_seqadj_set +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 0xf1347273 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf19f2e3d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf29cb36f nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5f0a5e5 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfaa3f16b nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc711828 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd79fd1e nf_ct_untimeout +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 0x76646179 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x992196a1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5622b66d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x262a5516 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x50da5fc1 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x81e20861 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8522a9f5 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e7c82bc nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb9d6a528 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd67d5cde set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed33eb0c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed54c2b0 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xedb4948d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xae1b0ed9 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4aed31a7 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9bc56aaa nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe7fb036a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe9722aec nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5d385b84 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x63f3e197 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa20acf64 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf0b3d57 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc77fc71a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf8c3e644 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb83d62e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x3009022c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbe5655be nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x05bc1b20 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x18194660 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1c6ee228 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x04bf315a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40f97638 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x43b83b77 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4c1110e9 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d6c73c6 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x507ec753 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x52274b91 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x73f6c236 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7b257b76 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8219cce1 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8a89179d nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa647c05e flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x718e1c24 nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7d26faaf nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x843703d3 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9a2ec7d0 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa83ac47e nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb9e7843d nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0f1ccee5 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13daa7f9 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x149b7afb nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f40698a nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28297536 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e1ed96c nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f71e3b9 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x57fa88bf nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7bfa029d nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8999849a nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9afed15f nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb56df7c8 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc809cbeb nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce8e549a 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 0xdf5b9bc3 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1679469 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x03ec6368 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0462e25c nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0cab8c1a 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 0x29f5c95a nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x851af59a synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8fb3247d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bc30da7 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb65426a1 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc05e299d 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 0xfa5c9925 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfd60ebcb synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e50e07b nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11b9dceb nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x136ca9d8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a8282c9 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1fa15e25 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2042fa3f nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x307f8dde nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x319cbef5 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x403c2e66 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41ffe9df nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e628070 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fd26677 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51a284a3 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524c6260 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57bcdc24 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d1e6c98 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x604c533f nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63cb9d3b nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6402b389 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x847399cc nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x879eb07f nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9848d9f4 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f5b4e11 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2e6339f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3329630 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4eb4df3 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6a613dd nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9814372 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb525737 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcde1b37f nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd02ffb25 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd03ddd70 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7e6b7ef nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd958fbb6 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd7cd1f3 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0221277 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe49914b8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe661fdd6 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8eb5f0d __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x35b77240 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x36fad196 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x808bbc94 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbfcfee79 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe90361ed nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xee40baa9 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x56f2d27b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9bc847b3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa791678b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1b68647f nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x836fad69 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0ba40faa nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2a8b35b5 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb208bee0 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc96d7b7c nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x80e773c2 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x89a1bc3d nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9a24366b nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01f59139 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x069e5625 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08dfb2ef xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0a1b5fa0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11db76e4 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x153c2a8e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a4aa03c xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a4c1f1a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2cb0754f xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3585f0cf xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3954ac8f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d8af91f xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x466d32fa xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a585073 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76ae7762 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b6dfd32 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fe72592 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d470232 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeaaf0bbb xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef02b9f1 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf477b289 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfee717c7 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x5b760b22 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0ef0486 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x04993e0c nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd1057ec8 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfee02d62 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x04826a12 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0a11df0c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfc1378e3 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0af263f8 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x12c5b50c nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x248e6141 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2eeabce0 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4f6efdca ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbf93a903 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf9c76e52 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfd7187ce ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x607586e7 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x8f759505 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xb041382a psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xd531b2ff psample_group_put +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01bfbed5 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x08e83415 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0e826fa5 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0fe5ada9 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x1957d826 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x19825054 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x1e864572 rds_conn_drop +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 0x3a8284b0 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x45bb9694 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x4d83bd91 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4e3d24ba rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x4ff7d730 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5cc2e3c3 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x61490d80 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6589fe46 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x6cdd3c50 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x78edb3a3 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x82e74ea9 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x85bf6801 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x887ad27c rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8f7876fa rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaf659695 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb8e4d306 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc9807e52 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd624d5a5 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe5ad163a rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xec5ba107 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xf9bcd850 rds_recv_incoming +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x21ee5d21 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xfd0a71cd taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2030bbec sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3376cc84 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x38c4a265 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x75f3d309 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0b897656 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x21788855 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x2b9c034a smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2df45e54 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x37c22563 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x44c2ec93 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x4f70eb06 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x5db6d973 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6be3fe45 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x9fcd80c6 smcd_register_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2706eefd 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 0x64d9ac8b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd8d28a1c svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xea87488b gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0126bc7f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b0c838 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03d8a8a4 xdr_stream_pos +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 0x06828e67 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0733fcd6 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ebe232 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c5a1a50 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e942621 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffde8b6 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x104eb16c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108340ed rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1092ed67 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1791ad2b svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cdba5f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1803b915 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x186c609a xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19dd5f92 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bef3c2f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c92bd88 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fab6493 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff64c11 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23df385b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24948a2f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c58fb9 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2509d852 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2574d466 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x259ae6f5 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b318b2d xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dbe0e64 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dd9efc3 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e0f2c68 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7302de svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa68c5a rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300929ea rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x305d2441 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x322e867e rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3475444a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358980f1 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a3185f0 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd12d17 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf2529d rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cfda88b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b000bf rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4418098b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48482c57 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3aee85 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc26f81 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7845b2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7c43f5 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc21e4f csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d6ffd3 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522e9178 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x535f6963 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x554e1ec8 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5555443c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55d6c329 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x560245a5 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564e1309 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577ec552 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c83d91 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d13001 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4c9584 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6cf929 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2410de svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6200a99d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6215a308 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636bfad5 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656a5e95 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d92204 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e84222 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a01d8b7 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac83419 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba836ad cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb6c09d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce0e557 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d68471c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f067e9f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ecd2e9 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743b7fb8 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747eafb8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x752e628c svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7577e05b cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e2f6c3 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77163aea rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x779b67a1 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784f1d08 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bcc4f9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7938afcc svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ef48f3 rpc_malloc +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 0x7b1ccd9b svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bbef19b xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c843583 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc47670 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd3dceb cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813be273 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81becab1 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82755d3b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829ff30f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86607079 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88422f7e rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8897f007 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e2a4f10 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8faf634b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff6001a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906522a4 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ecddd5 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936405b1 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x943fa33c svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95cf4c1b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c03eae xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cea024 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f8d3b9 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a99b3d9 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bbd8a75 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce88398 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7c68cc gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d89b99c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9edba9ea rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9efcaba7 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb3c917 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fc14a16 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fdebe17 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0cd7a68 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa16fd443 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29ee0b4 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2cc2dce put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51f264b rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b54841 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa697c3f6 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6d17bd6 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90ca693 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa45cb70 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae6fa32 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac053cab svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad701386 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada46173 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed78ab6 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1bc5b8b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb24bef96 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6080f4a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb648e1cf xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb66d8079 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6bfc5b3 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72e219d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80c44fc xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9785bba svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b71af4 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbab96d46 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbbc188e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc03016 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd231cf7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6e4489 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe939542 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc03e06d7 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08faa45 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc149272a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc19af47f rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ee7cc5 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc231a28c rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc281e35a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b13f66 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b994f1 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ef0221 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc356f73c xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48ec38c rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc811caf1 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a90c0c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce83e0c1 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee9b1cc xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd208cca6 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29a5a62 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd30f84fb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9aae8f0 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9da1503 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6e3724 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda9ccf2c xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba38c89 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6edd9e rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde5c6967 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdefbb79b cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf33f5c2 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf595978 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf671ed2 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe201321c sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe27ce398 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d2363a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe38e6dea svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe671da9f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe79a6216 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e59b0b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ea5020 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe864999b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d6cb7a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9874596 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f4db48 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaaa3514 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead1d7a4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6e984d svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec0d23a0 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed538c59 xdr_stream_decode_string +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 0xeeee0eb2 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0949b2 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd6f8aa xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13dac6a sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf167370f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17fe60b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2200aa6 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf28f25b2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3643cbd rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3978aa2 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4267c61 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5578308 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf700a5a3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79ed423 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa2d80cd svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa20567 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb46128 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcfb43fc write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd06c725 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd66f7b4 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf17dc0 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff71fcb0 xprt_put +EXPORT_SYMBOL_GPL net/tls/tls 0x424ea3d5 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xc098f50c tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01765736 virtio_transport_notify_recv_post_dequeue +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 0x0711885c virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bb5f288 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c8ab70c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22de4dea virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x249ac84e virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2868197b virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fd79a65 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x324673fa virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37760230 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38d2e7ed virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e428e99 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fc8f047 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ca8975f virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x575e18a9 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f56bd1d virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6066a7fe virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6090cf5f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61cd4718 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x655766cd virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73e670b6 virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77fd6699 virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83fd460c virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9eede8de virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4801ef9 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa88cf43c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacb2de38 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb60d52c7 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6cbb8b1 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc09268ab virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd79e4d1e virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd1b05ca virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0296696 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe12ae760 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3247879 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4c15f5c virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x046226cd vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0cc1eaad vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38627ea5 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3fcf7db7 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x441677c4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49422aea vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53ddcb34 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e7d6102 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a63284b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7ee82921 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x948211c4 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad5a0ce3 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb8b32710 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc9fe6c9e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3d91f11 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd6e9c6f5 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe896a727 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed6180fe vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x06768a98 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x28caeaa9 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2b4a935c wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x31f3ebf1 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x36491ebd wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x585a4be5 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5ba4dc90 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x61f1718f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x636203c7 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x71b03622 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x74de8f5b wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa58f437c wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf79caab0 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08122e3e cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1be0a26e cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x22e6ed48 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2855472b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x348dffb9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x480101a5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fad3b46 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72a12e84 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x826d62a0 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x83873b93 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8b8704c7 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc0df371a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf1b2f3d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec2343c9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfac42f99 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc52b730 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x15d2a528 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x23ecc5eb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x269a11e6 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x546f0e36 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x33a1abeb 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 0x082abaa6 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x22c605f0 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x3c6b7d03 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x63ffdff6 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x6cb8387f snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x8cb4279a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xa1c5bf6d snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xa8574157 snd_ctl_apply_vmaster_slaves +EXPORT_SYMBOL_GPL sound/core/snd 0xb015df43 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xb98c4080 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xde14d771 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xf34cf111 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x02ca08b9 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0555647a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x41bef34f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4e1a3f5e snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4f8f76ee snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7dcafb79 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 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 0xb383c6f4 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbfdca7c1 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc9fc65cb snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe33dd87a snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x199879b5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1e056414 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x71c0575d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x725bbe5f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x84d8f9c8 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9a62418f snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa9dbeff3 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb51cd728 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd5a69bc9 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd6cb8bb6 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xde9ea185 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x02bfcc73 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3b2efdd7 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0605edf6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0f7a2302 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1a0554a8 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3e510a50 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x645d52aa amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78468f38 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9f149630 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf174d93 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5d7eaa9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc33c7e69 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd4fe2069 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x004f38f0 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0102be98 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01ae3ed0 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x021776de snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03fe8e41 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04b4cb2b snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06423545 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08973543 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x194613d0 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e598fa5 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ff9d33d snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20c987b3 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d3c94f snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bd3a025 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c97e080 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d86345b snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x317ea889 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3947b473 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f161f1c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x406d29ad snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x420a7ea2 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42ffb544 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x440bd8a3 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x446ea50a snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4546e549 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x460635bc snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bced062 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e323614 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5149ab18 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51fafa29 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52bb4f68 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5333300b snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x551b8773 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b0e9415 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e0f2b9a snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60ddce24 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69ef6e94 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a1fc936 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a432795 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74aab1cb hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78386b3b snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b982647 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8159cf05 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83042a4b _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83b75e51 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x867a0670 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8761e6bb snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x907a99f5 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92d91834 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9371720e snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93f8c218 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8bb4f0a snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac52b375 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad690dc2 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada60c44 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaedd804d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb007f64c snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1ccf60f snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba47cb5c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbf20014 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc1a68a9 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf3b84c7 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfc332cc snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfa61f00 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0e2962b snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd15c35aa snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2849b93 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf068d6c snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf0fcc62 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf54e120 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfcad743 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0ae9c66 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3ce283a snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe42f22a5 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe79650fb snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7aaaaea snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedc2033b snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2be24fe snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf30c4b06 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5994f60 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe22eddc snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff2d483c snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcd651278 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x36feb6ac snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4e335e00 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8dea19d2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9c608e01 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa85f5b38 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc6bdde9e snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01452be5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01ce5f33 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x050e471c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x056c5ea7 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 0x07181806 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x089c15c1 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08dfbf75 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c60f1b4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cc1f059 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe7ea12 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x102b352f snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1095a73a snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18b730c7 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19104d97 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b58abbe snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dd33d01 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20e0c11b azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22b38e9c snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2485c16c snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26d2e92a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26f24b2b snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28588b9e snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b3d7e9a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b6c5b78 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b9f6e1b snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c76265c snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e76ccd0 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31c39328 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33af023d is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39b91d28 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3baad7f7 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f60376f snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4021e605 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x417f887d snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41995bfa snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463f1138 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a01551d snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4be1fa00 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d1a5fc9 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eea1d44 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x511a284d snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5178ff4b snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54300fb2 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5549d263 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x573b81fd snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575c5abf snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5875ea47 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b6fdd64 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8efa3c snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e8dbf6a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5edaf1ef snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eec760d snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fc36bb8 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62a4560a snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x634df913 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x656fdee1 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68214262 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ab7855e snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bce0614 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e180b97 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eb92e85 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ed56d26 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ee41030 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x701e6c83 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x708dd48f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71aa42e4 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71e2953e snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730fb431 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x750cd950 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77d23258 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c17de26 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8073756d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x814acde1 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x826f7bee snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x859fc5c8 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b042e7a snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x949a128f snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x966ae7fb snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b8708a2 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c0d482f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e4d4bae __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3c8a650 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4cd844c snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa60f1b30 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa610c416 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0a56a78 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3490fa3 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba4567f8 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdfd3de2 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc167c009 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc35a6f41 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdba25f0 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdc19a9b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcebf2292 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf436d00 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2ea0f93 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5aca1a0 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81449c0 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81f4072 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda907662 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb0e75d7 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe09e222f snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe13eb6de snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1fadc0c snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2bdbf59 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4ca03fd snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe90c66af snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebfcfe8e snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeced7193 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4c4fc1 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf07cb4ff snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf16b1a5c snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1d156c1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf29cc5bc snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5481bca azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5fbfe6a azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6ef6789 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdabf31e snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfde1d388 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfea4ac05 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffacfe75 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06d7262a snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x083e7211 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d96983d snd_hda_gen_fixup_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23782203 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2ce7712f snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2de56c77 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3344eece snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a1c29b5 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7431c3b5 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8af706b0 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cc1dd5a snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x927eaeb9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x968f5e29 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9adef2ba snd_hda_gen_add_micmute_led +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c12da1b snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb22a6067 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3285a2a snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc7fe6ef8 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xccb455fd snd_hda_gen_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xced2d5c1 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe1c4e607 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb37f673 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x27552b24 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4d0e2c39 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x09bd5f85 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x16bfd5b0 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1b96e2ad adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3b029ed2 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x616c9d79 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x725f6b19 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x93f78adc adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9dfdbe49 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaab5da2a adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc2d5b32d adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xab3cc98a cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xff104a73 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x30562c3a cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6372f822 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9146dba7 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe4e9c26e cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf41c58af cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x08f26199 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5a499243 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7e163e6d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x084be6d7 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x26be272a da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x83e4ff94 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2138898d es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x83b795c8 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdmi-codec 0x0520e28c hdmi_codec_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x23e8f92b mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd0ed0863 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfbfaf365 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfc27f1bb mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbda026f4 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x62228497 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa20ed287 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb02a27ad pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5e981dce pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xb79a8b85 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0a0b5d6d pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3c538725 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7243d20a pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x75220d01 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7bc8b4f1 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd0641abb pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7b3e016b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7babf8ed pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc0278786 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xed5f5f99 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7f68b24d rl6231_pll_calc +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-rt5645 0x2cc4c581 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf0d98a5f rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x236f34f1 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2571aeca sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x570be110 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9478da66 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb93ee511 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x91138093 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x0a091166 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3279cc6a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x42bb2f24 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x838a2722 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x35479424 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3ac8fc8b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5b60567a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9468d091 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3b2e038e wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0af50f37 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x96236c1a fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9fb0e879 fsl_asrc_get_dma_channel +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 0x15407b12 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20cd41b0 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x227e27e7 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x261fc547 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2e79fc1a asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37ba49fb asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b3ba676 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d40c6f3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d841500 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5e04bec0 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x602e0f01 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92fcc4f7 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabbbb805 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc76e0d0e asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc558ffd asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdfb4111b asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4f8ecee asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4636707 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0101b7e7 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x021217a7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x058b7fc4 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066eaa69 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06bcd763 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b97148b snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f2cf404 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10c44149 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11ee8bfe snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1798dace snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c9ade1b snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cd2b407 snd_soc_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d81643b snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b81dea snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23847495 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a76c90 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2498eb8a snd_soc_find_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x271061ca snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29800ee5 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a57e28c snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab74958 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb00a42 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c20cb69 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e0f6f6f snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4a8a59 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fceb457 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3530306e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37f58385 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x383741dc snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a3d3144 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a6f3576 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ce96298 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4138433a snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42c40e0e snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x458441c8 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47b48299 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b1736d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x554aa05b snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55c2c142 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55d478d6 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55dc2310 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5606681b snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5790a9c0 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c51a4d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57f4d28b snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58fa18b4 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5911b680 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59619846 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dcd1bbe snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fce9123 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606b98b0 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61d6a46c snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6342f904 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x638782e3 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x649684ac snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65080e6f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x669d55a9 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a09872 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ca05e6 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69cebfae snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bd729a7 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e807065 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f02f887 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70eadb34 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71f39d5c snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x749f3972 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75fa5ff3 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b16ed0 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77f12cdf snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78df7985 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x794f64c9 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c4eff1d snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cba11fd snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e327deb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e970216 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eee9a27 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f109c41 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x836541de snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84c99303 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851c82ce snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x855810d5 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e0ac5c snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c0c5f7 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87e77cde snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x882fa2a7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88c32a6b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b25f6e7 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c44a90b snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ec9ebda snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9204f109 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x921afdba snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93d543f7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9586185d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x979d9f35 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bf82c07 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ca502d4 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9df39876 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f29961a snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f54812b snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2acb294 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa937a406 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa62379b snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae56342d snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaed1b286 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf404f16 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0659b47 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0de4b56 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb12b5327 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1c7cd71 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4cdec9b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5f99c49 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7559144 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9305519 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9fa4b49 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba83cebc devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbba0c915 snd_soc_disconnect_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc24a4fc snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc5a78a6 snd_soc_component_read32 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdbd43ee snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0a01e20 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34bda89 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc575d48b snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ec0c21 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9f4dcd2 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb2512b0 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0af10e snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc538695 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce56ac79 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcea10f57 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcebb09bc snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2726ff7 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3711172 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4f6c36b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd560ce51 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6e97373 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd85145c1 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd964435b snd_soc_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda389961 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd775642 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f8133a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe27e18f1 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3f3ff01 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe453c7ae snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe49343c6 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe58748cd snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b9771f snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe629d445 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7c3b946 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe933c128 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb62cd16 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf4c4fb snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf056be78 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf167eb64 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1ae4822 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2d536eb dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3b61a17 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4684cf1 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf647bee5 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf835beda snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf88226c8 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9cd3cbe snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbc53629 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd28b6b5 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd59029c snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe22fdf4 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef049d6 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x875f464c snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x95aee43f snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa6b86753 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbb5b9a02 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05d77c1c line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x36073d26 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45d3b719 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d465a0a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b4c7b14 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b4f0524 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f81ad19 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x849020ba line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d6ec159 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8eb1da41 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92d831c4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaa3fbaaa line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb717bc5a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe1e4c42 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea739759 line6_resume +EXPORT_SYMBOL_GPL vmlinux 0x0011af73 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0017f180 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x006b42b4 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0076c306 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008bfbd4 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x00aab6d5 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00af3a87 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00b566c1 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00ed4a0d usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x01190305 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x0125b9ab crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0127db2c regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0127ea87 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x012a841f ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x012eb400 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x0149461f __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x014e89f8 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x015f1593 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x01683ee1 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0183f196 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x018501e2 cec_allocate_adapter +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x019aa000 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x01c4c31a sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x01cecaad phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x01dad451 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x01e09b42 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e86610 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x01e9b617 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x01eb35ec watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x01ee8ca2 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x01f4d4aa nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0202df8c netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x02141fb2 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x022057a4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x0221ef4f crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024df018 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x0252b3fc ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x02916c86 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x02958f88 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02998bd1 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x02b77043 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x02c1a9ec mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x02ca0589 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x02f11080 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03165183 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x03165257 mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03242a08 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0336e423 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x03372453 force_irqthreads +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03399f4b tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03523e33 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x035933fb gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x035a20c9 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x0376a7a1 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0378ee64 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c7bdb6 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x03e001fe __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x03fec81f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0402560c crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040c71d5 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x040da26f __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0419e175 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x041e8b10 xas_find +EXPORT_SYMBOL_GPL vmlinux 0x041ec506 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x0425e2f1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x043462cf open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x043a69f2 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x043ea300 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x04458fb6 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0451b2e6 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0461440a thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04706263 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x047491fd use_mm +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04bbc7f7 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c571a4 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x04c882ff ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x04cf0a94 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x04d3becc inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x04dcaea9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e2c0af pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x04e3a6e6 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x04eb60cd register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04eef5be sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x04f7955a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x0512d354 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x052c6e0e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055c7f48 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05947d62 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x05965cc9 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x059ae070 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x05c0a9b0 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x05e5b6c4 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x05ef24d5 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x05fb26d4 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x05fe669c alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x0611fa87 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x061ae973 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06622e52 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x06650e30 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x067e5cb1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x069ab6af of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x06a999fd devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x06bb8985 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x06bc9c95 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x06eaf2d6 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x06f8333c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x071e5ab7 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072b5436 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0731362b balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x07383b79 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0757b64e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x075fd785 get_device +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x076de290 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x07714b6b list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x07758f06 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b5727d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07d9fadd devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x07eeb4e1 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x07fb0cee gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x080bda4e gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0811e384 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081de216 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x08207f61 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x082aa7d3 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08385fed led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x08625fa0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x08684bc3 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x087bd533 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08903e1d inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x08971896 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x089ee321 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x08a2b57e kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08b01122 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c575c5 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x08d33d82 edac_device_handle_ce +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08df7dad vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x08f90558 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x08fdeadc tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0901cdba to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x09143ab4 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09214d5a mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x0927565c crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x092d5dcb skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0934316f bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x093a30ff pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x09530abe serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x095c92a2 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x097ad72c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09d55f89 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0a0f89f7 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x0a14e845 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a1ba91f cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a57cdfa __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a69ef51 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a80c3b4 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x0a936085 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0a9f7045 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x0aa2d052 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0ac3246f md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x0ac6db94 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0aeb2e43 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x0aee9478 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0af32498 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0af8613a __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b09e040 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0b0b88e4 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b4e2add cec_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b75314d seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x0b7820f8 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b85af94 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b86afb6 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x0ba625a2 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x0bc41f64 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0bc9136c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x0be0f4b7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x0be8af54 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0dbd64 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x0c12d25a usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x0c1a0947 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x0c1f0a1b __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset +EXPORT_SYMBOL_GPL vmlinux 0x0c56a631 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x0c57ae75 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x0c667c59 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0c6dc613 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0c92fb0f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0c9ef939 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0ca10857 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0ce791a3 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0cea8b45 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d3657d3 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x0d3cf815 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x0d4052a3 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d520d78 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0d5fb718 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x0d80d465 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x0d9103b4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0dbfcbf1 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0dc373ab wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x0dceda7c blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0dd3e9b3 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x0dd845d6 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddda741 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de37902 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0dea1b7e pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x0e03598a ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e040c86 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x0e0ab80d regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e0e48d4 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x0e2c57b9 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x0e4783a7 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0e73836e da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x0e7d56ce wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x0e9a201d usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x0ecda29d uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr +EXPORT_SYMBOL_GPL vmlinux 0x0ef77cd5 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0f3f48d5 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f405744 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0f53027b regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x0f5ce5a7 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x0f7581a9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f9be575 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc467 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0fb02e53 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x0fc7ac73 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0fd1e66f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0fd2c464 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0fd88378 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x0fde8a2b usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10186d44 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1023a65d fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1025e688 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x10395fe0 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x103d803e debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x10680be5 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x10691e4c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x107c9e7f debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x1088208d pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108dde43 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x10937fc8 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x1097f96a class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x109a96f3 pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0x10a8b403 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x10b7dfd0 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x10c83d8f ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x10cb9be1 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x10dd7959 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x10e77a5a __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x10e8167b virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ecd101 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x110f42ac devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x112091de __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x113181df bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x114fa2db rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x116632ea pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x1167ae0a dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x116cb8e5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x11815ae0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x118d7379 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a71c8e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11d1c22d tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x11d650f6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x11d7dd67 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x11eedcdc __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1214b594 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122fc2f9 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x124197c0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x124f5a3c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x126228ec rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12768498 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x127da654 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x12877635 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x128a9185 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129de85f perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x12a1a9ec dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x12c4bd60 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x12d51c24 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12f4118c sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x130a92f3 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x13188fdf pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131fd52b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x132e0aca fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134f6e9c device_attach +EXPORT_SYMBOL_GPL vmlinux 0x13539266 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13651840 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x136e3405 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x137088c8 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x1377028f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a08fdd tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x13a465ba eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x13b65f27 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0x13ca899a perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x13ec9562 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fcd699 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140bea4f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1413a6ba ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x141ebf16 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142d01d7 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x144428ea i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x14457fb9 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x1451ca72 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x14615e7a sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x1472e480 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x149c19fd devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x14a8770f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x14a9c860 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x14c559f3 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x14d7c41e gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x14e0669d sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x14edbabd fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x151473cd __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x151a8a2c devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1552c709 hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1556923d devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x157de8bf regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x15a58229 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x15ad9ee1 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x15bbb6b4 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x15c056c4 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15cc9fe8 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x15d90d72 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x15dde128 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x15e37504 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ea58f0 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x15eb5fb1 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x15f0e0ab pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x15f3e5a0 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x15f7180f __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x16142e6a preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue +EXPORT_SYMBOL_GPL vmlinux 0x16397210 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x16437b26 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1664abd4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1666ae4a iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x16676189 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x1669297a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x166fdbc9 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x16ada7d1 pci_restore_pri_state +EXPORT_SYMBOL_GPL vmlinux 0x16c1c24d anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x16c3546e cec_transmit_msg +EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16da3b15 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1703d3e8 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171bb71f get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x171c9331 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1721e7e8 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x173b1a71 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x174c37b0 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x175dfeab fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1763c9fb sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x177b63d1 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178da809 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x1796ca8a __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x179f0e82 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x17a0a725 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x17b9c7e1 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x17be1521 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x17c009b1 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x17c034df ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id +EXPORT_SYMBOL_GPL vmlinux 0x17c34096 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x17d006c2 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x17d3b9a2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x17f950a3 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x17fc900d dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x181bda82 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x18211649 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x182f228c of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1831db9f pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x183294c0 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x1861af24 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x18728552 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x1878c3ee serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b45146 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x18d3a06a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x18d73b97 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x18df6bb7 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fc45ef syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0x19025f8d driver_find +EXPORT_SYMBOL_GPL vmlinux 0x19175d7f bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x191d4893 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x192da6f5 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x1934cd89 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x1937cc45 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x193a4722 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x194076d1 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x194936f6 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x1957f050 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x19675461 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x196907fe pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x196c85eb __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x1985005e vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0x1987ff99 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19bbc0f9 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c63a5b usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x19ccc2ff gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x19d2b23c to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x19dde0f5 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x19e2dba4 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x19e3527d dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a085bd0 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a139d57 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a26fb3c skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x1a276c5c fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1a36fbda rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1a3bf75c cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a437ab2 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a5540e4 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1a5b5a1b hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a771212 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a8d918b devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1ab0c271 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1ab4b1f2 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x1abff155 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1ad5ccfe debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1add6a1d freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1aed98a8 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b128133 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1b1c9043 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x1b2704b8 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1b2b068b dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1b2c6890 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0x1b37bcf9 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b4db261 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b522e28 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x1b64aa68 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x1b66e675 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x1b680de9 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1b71f7f7 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8be809 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1ba078b1 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1bbc6a88 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1be0f32d tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x1be55ea4 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf04aa6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x1bf99d2f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bfa52ed devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1c00dd20 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x1c04e8e2 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c07ece8 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1c22581e virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1c35391b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x1c3d42ce fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c452991 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x1c672578 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1c698026 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x1c719be9 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x1c74d956 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c820c43 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88f9ba rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store +EXPORT_SYMBOL_GPL vmlinux 0x1c8e1842 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c904bb4 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x1c992f16 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x1c9ccd87 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x1c9ffac3 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x1ca366a2 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x1cb9b88a gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cdd56ac __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x1ceee165 __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x1cff4d42 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x1d02340d software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1d05add2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d9174ca pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1da43d88 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x1dabf41b switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x1dc4f830 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x1dd91f34 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x1de394c0 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x1df4cea7 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1dff0179 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1e002759 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x1e06418c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1e17dc1c iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x1e1f3331 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x1e237112 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x1e2af789 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x1e41fa87 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x1e446d59 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x1e4644f5 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e5c9979 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e639c78 devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x1e6ace39 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x1e765f42 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e80677e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e902c2e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x1e9561b4 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec46451 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x1ecd23c7 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1ed589f8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1edeef54 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1ef36824 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x1efc9904 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f3257b9 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5f8d1d task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x1f79b6f8 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x1f81dae4 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8bc9b7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8f9036 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x1f908a8a dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1f910d92 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1f9aec9f power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa99892 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1fc34ea5 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1fe2de1e __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe913b6 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x1ffb5db6 edac_device_handle_ue +EXPORT_SYMBOL_GPL vmlinux 0x200e793a regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203901ca crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x20399c0e __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x20425c90 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x204c699e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x205a8977 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x206081ef setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x206add95 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x206b706c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x207c18c1 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2083b0bc edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x208aaee7 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x20a25195 radix_kvm_prefetch_workaround +EXPORT_SYMBOL_GPL vmlinux 0x20b1c04a pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x20b44e14 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x20bd641f ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x20e78a12 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x20edd803 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x20fc9d7a regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x21200deb cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x21303b42 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x21330f08 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2150d85d kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217b3bf5 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x21807d7f get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x219a36b3 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x21a91472 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b1d16f do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x21b254b2 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x21bc520b xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cee1c2 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x21d394c3 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x21d78b12 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x21e93321 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x220bffb8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2217d110 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x221dadc5 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222f4f39 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x22313bab __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x223a06f6 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x223c2521 update_time +EXPORT_SYMBOL_GPL vmlinux 0x2241f2c0 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x2247b6f3 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x226e941d uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x227231c5 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x2278c618 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x228de447 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x229b0eb9 devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x22a48d73 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x22b7fd76 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x22b82901 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x22c1b10e usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x22ce1081 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x22db3f60 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x22e25f9f pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x230238e2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x231470f0 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x23166e05 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2344ed55 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x234809ba unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x2349fd4c vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x2372709f blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x23761965 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2385ee87 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238cf09a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2398895e phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x23b036fc crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x23b9d4da __tracepoint_vfio_pci_npu2_mmap +EXPORT_SYMBOL_GPL vmlinux 0x23bb75a0 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x23d95205 edac_set_report_status +EXPORT_SYMBOL_GPL vmlinux 0x23d9953a fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x23e27d0e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x240a22d2 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2436ab9e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x244b6e23 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x245536fa blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x246b3cbf __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24830ab4 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2483f1c2 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x2493b419 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x249b175d spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x24a6b33e stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x24b615b0 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x24c0c2af __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x24c4d74e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x24e818be arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x25014f62 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x2505c2a9 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x250a2d9f phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x2535117f gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x2551bd2c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2553bd53 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr +EXPORT_SYMBOL_GPL vmlinux 0x255c991b devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x257d9d89 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x258b9937 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x2594250e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x2598ccf2 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x259acd3a bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x25b25998 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x25c60011 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x25c65886 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x25cac17a of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x25e32095 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x25f43695 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x25f81233 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x260872b1 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x2610fc95 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x261bdefa devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2620408e device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x2620d5d2 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x2621f24e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x262816d5 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x262f2d30 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265cf2e4 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2662f852 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x267bdfd8 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268c1ee1 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x269d2ab5 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x26a2e869 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26a84c58 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c0824f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ccf186 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x26e73d92 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x26e9c711 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f83e44 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x27122bf2 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x272f3de5 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x274152e6 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27657645 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x27690683 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x27750da1 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x279003ee freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x279f103d bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x27acb4d4 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x27aeef36 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x27b24803 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27bb0122 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x27e1754d regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x27e79039 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x27e8f83c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x27ec2b5f pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f518aa to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x27f7b664 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28107fb3 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282fb8fe mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0x283c0b02 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2849554c ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x289d27c9 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x28a786e4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +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 0x28bdebbf tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x28c58992 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x28e657a1 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x28e8b688 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x28e91ef1 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x29065e86 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2914367e access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x292b8f30 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x2940c1a0 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x295fe9fd irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x2960d844 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x296473f0 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x29698088 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2978ca77 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x297fcfcb gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2986e853 iommu_tce_kill +EXPORT_SYMBOL_GPL vmlinux 0x2991a822 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page +EXPORT_SYMBOL_GPL vmlinux 0x29afe972 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x29bde50a dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x29d69ff6 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x29e9cbde thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a0303aa usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2a10a56b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2a1b0a57 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x2a2ea96c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0x2a4cf402 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x2a4f29fd regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a692e4c sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a7ff0bc bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x2a9072f5 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x2ab80a8d sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2ab96575 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2abef1d0 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x2ad8d14f of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x2ae3cc79 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x2b0ba223 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2b12d018 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b24963c tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b3eb370 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b47598e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2b56fe7c devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b76537e gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2b77cd88 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x2b7b7fa4 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2b8cd7ca __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x2b943147 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x2b9ae1a2 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2b9e9945 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2b9ee49b blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2bb30e90 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid +EXPORT_SYMBOL_GPL vmlinux 0x2bb9c4fa rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2bcab8b7 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x2bf3aef2 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x2bff081b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x2c0c16ea fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x2c1a8dc9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c299e7b sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x2c2aeb11 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x2c2b5dbe sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x2c2e4c73 pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c43aeab dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x2c4760fc xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x2c4db9bc dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x2c51853f blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6b3507 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c83034a fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x2c88adcb __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9832b8 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2cb725e4 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x2cc41ef7 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x2cd38026 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce18ce1 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf1f040 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x2cf638a3 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d113dad mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d16e331 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x2d19eeaa regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d235af0 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d45cbc6 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2d575bac class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2d717af6 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2d7e85ce fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x2d9df220 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2daf3678 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x2daf7e84 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x2dc42cc7 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2e070a6e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e20d85b get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3cfb4f usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2e67bd76 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2e68650a regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x2e77818b rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e78702e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x2e8376ea inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x2e859411 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x2e85c0ac do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0x2ea470e5 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2eb3820c nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2eb92d9b pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebc159b mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ed0092a devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2ed4040b alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x2ee52b66 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x2ee780ec blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x2ee9def9 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2ef375bb rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x2ef653c9 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x2f0a6cae driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1431b2 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f35ed78 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4931b0 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x2f4b1834 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x2f50e8cb __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2f56cbe3 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2f5daac8 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f706f34 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2f815f99 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x2fb6fa79 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2fc895ed relay_close +EXPORT_SYMBOL_GPL vmlinux 0x2fcbdf36 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x2fd6e192 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x2fec7b48 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x2fefc422 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2ff7b4ab da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3003e42b tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x30046d7d serial8250_em485_init +EXPORT_SYMBOL_GPL vmlinux 0x300882bb badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301c1535 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3026e4e4 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x302be5b1 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x306435a2 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3073c4e8 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x3079668d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x307a29dc fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x307fb378 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x3095e856 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x309c2395 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x30b37ab7 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x30bcbc44 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x30d25a33 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x30db492d sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x30f0d676 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x30fa0d67 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x30fa53b6 cec_transmit_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x310785bf dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x31217bc5 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312df456 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x313cabc2 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x3160194c devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x31605723 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3178e0d5 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3186c2ad blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319569d7 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x319ddc67 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x31a08e8e nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x31b230bc usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x31c12d6b scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c87b1d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x31d4045a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x31dd4394 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x31eb1f29 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x31f30df8 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x32114a58 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32359ac3 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x32387033 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x324c990e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3267005b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x326b58fa __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327b0c88 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x3285864b __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x328a93cd mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0x328c4e54 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x329aff3f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32afd075 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c1d4e0 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c90a86 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x32cee4b8 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x32ddb44c sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x3304b7c4 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3332374f skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x3354adbb __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33744569 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3374a8ae of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3396fbf8 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x339e2577 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x33b0b398 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x33bd0d6b set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0x33c95417 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x33cc9569 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x33d9a817 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fa9617 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x34047a4e mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x340e3eb6 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x3413a6b0 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344b6729 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x34676d4e dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x34684fc4 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x34750a09 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x347a4561 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x347b5d54 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x348d8fcb ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x349a62b7 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x34a4b71b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34bab869 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x34c1469c of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x34c65f62 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x34d5ae32 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0x34e94428 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34ec560d cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0x34f2eef2 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x34f3ddc9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x350020bc regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x35185628 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x351f267f led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x351fb639 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3535c81a crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x353ae7fb wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356f7eba blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x356f842a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35777ead gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3578cf78 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x3589f4fd devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3596d42b wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x359aebea is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x35aa213e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x35b6b862 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x35ba0cda pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x35be2c1b perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x35c44ec4 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x35c56005 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x35da93f9 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x35f2e0d2 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x35f31c54 arch_set_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x35f4beac irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3622e75c fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3671a72d __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x36758e8d md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x368ae011 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x36916b83 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x3693dd22 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b83ef3 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x36c4d26d cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x36f11169 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36fbd0d0 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x3700a17b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x37025dee pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x370287cf debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3724beb5 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x3732047a irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x374c2088 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x375e66e2 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3769569c devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x376feb2f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3775c745 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377dbb18 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x37877e8d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x37b297c6 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x37b77739 save_stack_trace_regs +EXPORT_SYMBOL_GPL vmlinux 0x37bb5d4f pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x37c60994 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x37c70110 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x37d11bec skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x37d3f236 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x37d5eaf0 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x37dc61e5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x37e00ebf regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37e2bced fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37ee35cc perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x37f3782f dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x382ec4dc sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3847c4f8 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x3858318f ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x3868dd5a fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x387f3d40 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x38af3d81 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x38b0118b blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x38c2bd87 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x38dcfd7b dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x3906f316 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x3908e5bd class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3917388d __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x39201000 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x392a9d84 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x39743d05 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x397a5062 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x397cf4df synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x398a3e74 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x399a9169 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x399ff1e4 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x39b4dc93 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x39cc1618 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x39d4cb78 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x39dfb273 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39e99eb0 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x3a1a0bbd mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3a37ea17 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x3a3d01b1 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3a451d65 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3a4be3a4 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5b7d94 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a6a8941 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3a7f503b devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x3a84c76d device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3a866f9f devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a982563 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab4e08e crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3ac47348 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x3ac8a3f9 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x3acde362 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af86fc4 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3afaa6f8 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3afd4e9a crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b502aa3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x3b5516c9 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3b55a819 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3b5beb52 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x3b6af540 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x3b7073a5 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x3b94a65a sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9bb0ef edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bc275d1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x3bceaa90 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x3bcfde9d mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf443cb sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x3c025495 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c27f4aa debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3821af encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x3c3c2c3c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3c3c43c3 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3c425987 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c4753c2 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x3c5a9aea dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3c661bcc gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3c6aa36d led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6d9aef gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x3c76fd9b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3c7b67a3 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3c7f942b adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3c867dea blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3c88080c regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x3c8c27e9 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3c9633f2 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x3ca3882f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3cad0183 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x3cbd832e tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x3cc2e83d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x3cc9baa4 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd511ec of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x3ce6e056 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x3d021953 blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0x3d114c25 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x3d14cd1e crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3d299dfb static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3d2b2267 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3d32be76 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d47beab crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3d4fb000 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9dcabb ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x3da2606c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x3da67d02 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df6ae5a cec_notifier_get_conn +EXPORT_SYMBOL_GPL vmlinux 0x3e088251 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x3e0dbd82 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x3e0deda0 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x3e1e693b devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e221ba2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3e4e9191 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x3e648244 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e76af7e posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ea036dd fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x3ec44a9d copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ed03e95 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef997c4 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x3ef9d096 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3eff4e42 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3f0032d8 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x3f1aa653 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3f1ad377 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x3f1d5d18 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x3f36d937 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f8c2f59 cec_register_cec_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3fa38374 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3fa6731c kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x3fad1f36 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0x3fc21959 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x3fc872a8 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3fc8f24f da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3fc9d7cd sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x3fffa940 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x4013b8ed led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x40222920 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4049c28d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x404e7815 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x404edfd4 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4054fb8c devm_spi_register_controller +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 0x408bd65a fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40b68954 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x40c7d0eb device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x40d97788 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f3cd1a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x410cae95 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL vmlinux 0x41254e48 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x4149da8e fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state +EXPORT_SYMBOL_GPL vmlinux 0x41508a4d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x4152ce14 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4154a3b7 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x415cadb1 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x41604c89 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x41656904 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x416dc766 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x417a2b93 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41a4c55b iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0x41a63308 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x41ae7358 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41de2de0 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fb3117 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x42063e36 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421631fc locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x422022a3 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x422bb234 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x425b57b7 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x425f057f xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427baf93 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42830ae6 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4286c1ae register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x428a17df bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x428f4b85 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x429307e7 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4296d546 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x429be6cc aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x42a6bbfb ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x42a8677d ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x42e1c677 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430bbff2 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x43127b48 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x4334d7e3 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x433798c1 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x43389d03 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x433ae21c user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x4345175e ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x434dab99 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x435433e5 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x436245ca xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x4362b26d regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x437ca643 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4392b112 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x43a320b1 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43aad3db isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x43b3e6c0 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x43ce0010 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x43eb902d ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x440224e5 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x442161a4 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x4425d860 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x44362bea wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x444008ea inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4442d31b security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x4471b757 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x44799494 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x447c928c devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x44837df4 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4499a29a __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba +EXPORT_SYMBOL_GPL vmlinux 0x44b68bd9 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bea688 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x44d2e208 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44df9292 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x44e14b72 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x44e29bbf thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x44e8a3ec regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4524800d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531cd0f wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x453fab1b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x45475cb1 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x455837af pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x4561e896 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x457150a5 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4575415a crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45853653 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x4599ae65 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x45c4682e kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x45c688fb sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x45c9f37f pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x45d3ea40 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x45d65954 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x45d81f8a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x45df6302 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x45e391aa gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x45ed7151 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x45f3bfb6 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46170863 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x46181cf8 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x461e5aa1 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x4626518d nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x463eef2c tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x464c9e1e usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x464cbccd __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x465233dd devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468eb179 kvmppc_update_dirty_map +EXPORT_SYMBOL_GPL vmlinux 0x46a0fa56 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x46c08642 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x46c0935a __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f67fc7 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x4712272e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4719218b rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4721a25b of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x4761b405 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4769b29c thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x476f609e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x477db0d2 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4783a39c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4793fb21 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x4798a52c dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47af1e83 mmput +EXPORT_SYMBOL_GPL vmlinux 0x47b00d93 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x47b03862 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x47b066a1 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x47c69bb7 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x47e3f23a hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x47ea3433 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47fd8c38 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x4804ba80 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x48185813 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x48210c35 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x482805c9 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x4855fb9d scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x48755f37 static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4894bd22 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a5cc36 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x48a850f1 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x48d82587 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x48e0acb9 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4903a52b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x49177708 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x4922a718 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4925d29e ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x492a33c6 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x49383052 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x4970ffd0 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x497ba8a8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x498ad9cd component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ad4946 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x49bc8509 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49c54ab2 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x49cfddbf regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ecbec1 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4a016487 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a029dc9 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x4a0c968f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x4a11aa18 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4a29664c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a3f85b4 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x4a463c52 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4a4956a8 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4a693067 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a7cac14 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x4a7cde1e ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4a7dee1b cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x4a803a18 kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0x4a85f62f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a915513 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable +EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab7a570 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4abf505d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4aec82a6 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4b142707 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b2d1747 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x4b316468 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4b3222d9 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x4b42cef9 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4b460cad scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b55f176 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4b56fb6f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4b859440 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4bbe580d devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4bbed89e crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4be0e7fd i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4be1db7d of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4be52e5e wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4bec9f5d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add +EXPORT_SYMBOL_GPL vmlinux 0x4bfba5f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x4c059743 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x4c23eac2 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4c2dd38e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4c2e2c3a evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x4c3ee7ec vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x4c3f2898 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4c492093 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4c4c3d11 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4c6367bc __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4c64efff regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4c79c905 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4c7f2384 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x4c92de42 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4c99e9e1 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x4ca5a49e stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x4caa4ebe usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4cb6037c blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x4cbb2229 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x4ccce30e __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x4cd00345 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4cdd5792 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x4cde85f3 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4cf8f432 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d032d7c hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4d058c81 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x4d0dc808 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x4d2361f5 md_run +EXPORT_SYMBOL_GPL vmlinux 0x4d27e867 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4d286afd sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x4d37ed1e __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4d43e82c usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x4d4d0ffa of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d80201d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x4d86f2c8 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d931197 blk_lld_busy +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 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de3a440 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x4e0523b8 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e09aef5 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4e0dc4bd blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1c1e85 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4e36f697 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x4e396d0c devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x4e3ac4a3 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x4e517528 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4e5e6680 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x4e73108d devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x4e7e3c11 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x4e91a072 edac_get_report_status +EXPORT_SYMBOL_GPL vmlinux 0x4e99334b virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb4237a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x4ecad6e6 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f076734 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x4f08137a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x4f0b0246 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x4f1d6bb9 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x4f23dac6 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4f395ffc devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x4f425f60 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f52ef45 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f744a41 devm_of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x4fab3fd4 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4fb7e87e perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fc9f83f thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x4fd9ed20 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe12556 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff44f80 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ffd4f7f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5008a7b6 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x500cacf7 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5058ad3c spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x507a89bd ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x507db405 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x507dfea5 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50929b93 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x50a58b6e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50bf860c shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x50c33f4a of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x50cf4ef6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x50dc38f1 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x50e1bcf9 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5103fc3d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x51220e21 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5123a9fd fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5125fa66 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x512d806b cs47l24_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x512db1be ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x512efb74 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x51371b31 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x513973cc usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x51399d47 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x5148a9f2 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x515de87d device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5182c2e0 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x51a56604 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x51aae510 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51bb1ccf virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x51cb6de3 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x51cbefae crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x51d326e0 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x51e2895c iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x51e5d966 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x51e6efc8 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x52186baa rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x52276ad0 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x522a7fa9 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x522ce19f dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x524036f6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x524e2cc3 devm_nsio_disable +EXPORT_SYMBOL_GPL vmlinux 0x5252d875 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x52610bc8 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x5281f1cf ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x528c4a2f posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x529227b0 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x5294525e regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x529f3bb2 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x52c7578e __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x52d20f9c dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e0bfbe ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x52f2365f __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x52f60931 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x530299cd rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5305f98d is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0x53291f6d iommu_tce_table_put +EXPORT_SYMBOL_GPL vmlinux 0x533549b0 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x533dd32d ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x536393cd fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x5368b65d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x536999e5 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x5374cf82 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5376527c tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x537bd950 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x537d3f88 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x53884839 kvmhv_load_host_pmu +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53cac1df __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x53d57545 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable +EXPORT_SYMBOL_GPL vmlinux 0x53e15cac xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x53f9b822 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x540069c6 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x5403ea2a blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x543e8552 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x545216fb iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x54537047 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x545e18e8 pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5484680a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5484d274 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x548b469f regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5494a780 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549e0862 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x54c623dd fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x54e9e0ce ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x550638c1 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x55096270 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x550c5013 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x55122c90 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x55153f08 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x552c0977 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553460fe bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55481f1b fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x55531a02 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x55546789 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x556c4860 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5570c3be add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5586a80b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x558f9a2a pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5592c8fe dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55a9c17f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x55aa7c14 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x55ba78ab gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d91f4a ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x55e56d5f led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5608f4c3 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5610e271 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x56162669 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x5618d938 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5620596f __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56388d3a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x56397e5b get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x563b9b65 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0x56499f5a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x56616d6e usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x566714bc sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5670507e cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x5672b0be gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x567d0060 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x56809050 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x56b452b6 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x56bc2a32 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x56ccba83 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d73fe8 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x56dbce60 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x56e69f1c debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5701f1e9 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5705e893 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x57087b09 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x570c1b2e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x570f3aaa __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x575ee1dd pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0x5775c714 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a790da fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x57a980dc irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x57a9dac4 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi +EXPORT_SYMBOL_GPL vmlinux 0x57c34476 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d000cc pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x57e6c61f devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x57edcbf3 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x581bb853 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x581f37a2 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5840a7d9 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x584f938f wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x584f9e67 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x585a3de8 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x586d378a wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x586f3e4c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5886c75a extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x58b120b4 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x58b5244d hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x58d13ea7 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x58d2943f crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58eb2240 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x58f9b127 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x5905dc61 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0x5914efea pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x59165fad phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5921b1ad bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5925e6cf kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x59394604 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x5942d30d pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x594b3cee stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x594fd35e wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x59509954 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x59639fc4 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b354db set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x59be22bc kvmhv_save_guest_pmu +EXPORT_SYMBOL_GPL vmlinux 0x59c9c182 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x59d41d8e rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x59e267e2 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x59f04e2e arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x5a1aed52 kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x5a273ac5 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a3236bd device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4b2fe0 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5a4cfd77 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x5a5c8d51 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x5a6526c6 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x5a65cd08 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x5a6c5f28 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7895d7 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8878fc pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5a8d1e0f pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x5a8d7a88 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a8dd3f5 flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5aa43c2a dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ad2f654 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x5ad9df57 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5ae0a25b get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x5aed9f42 user_update +EXPORT_SYMBOL_GPL vmlinux 0x5af912d1 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5b11166c tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x5b19614a pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b35b139 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b695d61 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7253b7 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b838761 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x5b83bdf5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b8ef60c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5bb2d87b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc843e4 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x5bc85310 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd36b8e ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be66d71 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x5be6f4d2 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x5c0e7f2b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c38c3a6 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x5c3a3b45 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5c512b01 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6c22ac fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5c794e14 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x5c7b6472 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x5c7ca388 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5c7f897f vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c98e312 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb3a802 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x5cc678d6 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x5cd3c5e6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5cd9c993 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5cf25124 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x5cf29fa6 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x5cf4bc9f tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d02c84c hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d040a49 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x5d23f40a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5d2dbadc ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x5d4debeb wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5d5c611c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5d6accf3 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x5d6dbea7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d92f1e0 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5d9481f6 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db124cf trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x5db32563 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x5db4389f cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5db659b2 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x5dc3c8ef gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x5dced9db ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x5dd0f9dd sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x5de690e7 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e10bd93 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5e2e1ef5 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e2f0466 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5e305385 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x5e396c97 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5e3be831 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e53f786 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x5e6880df usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e693510 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5e6d260a powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x5e7246f5 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5e82b2f4 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5ea6ce62 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5eb57c4c lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x5ebb521c usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x5ec13ceb device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed0cff6 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ed54fe4 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x5f013db5 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5f019d7a skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5f14f0aa tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5f1bc1eb usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5f21b0dc dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5f230ab3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f26a711 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5f4ea6cb dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x5f657dbb __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f704c11 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x5f7d2f99 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5f890358 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x5f9a6624 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x5fd1cb54 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5fd39453 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x5ff46d4e eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0x5ff4f402 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token +EXPORT_SYMBOL_GPL vmlinux 0x6006f0e9 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0x600fb1d6 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x60141592 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x6015d20b inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x602eb911 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x603eed14 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x60450102 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605bf972 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x60644c9a sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x606f1922 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6075ece1 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x607b1a9d nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x607c0a26 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x608bab1f sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x60907ba5 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a11300 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60c13fbe skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x60c5a5f5 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x60c7faf3 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x60ca358c regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x60fbf04a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x61009321 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x6109bfb4 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x613d194f virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x614d8528 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6169ec54 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x61709863 md_start +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618982de usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6195a3c3 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6199f915 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x619c526d bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x61a66ff5 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x61cb5ea6 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x61cdcd70 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x61df3314 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x61ee6b72 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fada33 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x61fb669b iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x620897c0 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x6208c258 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x621f7651 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x622aa3c4 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623b7520 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6258ce04 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x626051bf tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x6274a1b0 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x627685a5 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0x62835c72 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0x62913387 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c379ea __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x62ee24a1 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x63021c25 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x630562af devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x63064817 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x63108efb __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x63239c5e bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x633475c7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x63350c10 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x634063c9 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6340b606 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x635aa49a max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x635ef28d usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x6362cf17 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6366d5c2 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6376f666 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x638f7674 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x63929a08 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x639dc756 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x63afebfb bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x63b19484 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x63c40cdc crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x63f389b8 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x63fb0fc3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x640a3191 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x640c6019 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x641ff06a regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x642a0d37 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x64316a7d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x64340b52 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x644d164f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x64507969 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x64527817 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x64705c58 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x648e5ba1 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x6496088f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x649fda73 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x64b7e98e kill_device +EXPORT_SYMBOL_GPL vmlinux 0x64b844f1 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x64c60ffa kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x64d7846b freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x64e13b79 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x64e43fc8 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x64ed9e51 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x652b0673 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x652d89f9 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x653b8dd2 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65515206 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x655d8a1a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x656e9f66 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x65821bd2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6590cd9c pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x65a2144c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x65c9e5ef iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d4d1bd device_add +EXPORT_SYMBOL_GPL vmlinux 0x65d81beb virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x65eae2ea vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x65f131b6 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x65f79b7a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x65f7bda4 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661a288b gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0x6623309a blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663e846e __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6642b2e3 usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6666358b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x66690e8e ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x666ed2ce bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x6673cf95 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x667e16e8 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6693bc90 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6699a75c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dc89ee transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x66e5e611 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x66f6f3b7 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x66f8432f badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x6703372e badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x67068828 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x67134c02 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x672373c3 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x6728760e ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673832ef led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x674a570f blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x67560a42 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x675b18cf wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x675ff942 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6760cf4c ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x6774e3f9 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x67822085 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67c0ab74 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67ebb58c xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x67fa411e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x680056c1 devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6808b15d wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x680e3e95 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6826cc71 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68277916 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x682c6eb7 kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x683830ce debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x6838ba26 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x684290b7 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x684bb45d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x684ea220 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x685e061a blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6884fd53 xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689eaa07 udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x689ffc42 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x68a14eff sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x68e9707d blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6911e784 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp +EXPORT_SYMBOL_GPL vmlinux 0x693465fd ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69476a41 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x694ea236 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x695a5892 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x695a76a3 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x695e34b5 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6973dbb5 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6978c045 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x697a199b inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x697cf413 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x697cfea6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x698aea09 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x698be62f usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x6991c999 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x699d79d8 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x699fcf33 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x69aa30af pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x69b462f7 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x69e3eead dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a27a52f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x6a32e11f rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6a3530cb md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x6a3f6710 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4ad61a ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5303fa ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a692d19 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a82ba95 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aaa02eb probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6aaedff3 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x6aafdb70 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x6aca981a fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6add7339 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6ade3de5 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6af8d7e5 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6afbf61f serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b04241d tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x6b1c46dd regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6b383732 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b42ea94 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x6b45f9f1 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x6b600bc5 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b89029b ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x6b8a15c5 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6b965275 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x6ba0cd21 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba9f3b4 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x6bab8600 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x6bb0446e irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6bb2876a debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x6bb780cb raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdebd92 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x6bfa59c8 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c002ff8 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6c128d4e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c2621bd pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6c28a09d devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c607a33 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x6c817b2d sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6c81c72b fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb80b2a wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x6ccd3397 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x6cea7987 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0f1c45 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x6d1458fc power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6d2378dc __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3480bf irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6d362919 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6d39a674 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6d50c709 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x6d6af51a pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7db2b6 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d88bc02 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6db75513 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc5f48b edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x6dce877a dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6debd98f pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x6decd623 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x6dfd5006 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e12aa5e ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x6e1b2259 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6e1de48a kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4f6fff put_device +EXPORT_SYMBOL_GPL vmlinux 0x6e51506f mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x6e571275 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e5a280b pnv_npu2_unmap_lpar_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e6e8cef sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8c8929 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6e9156c9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec795fc gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x6ec95694 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x6ed0e357 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6ed679d8 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x6ee8a6d6 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef9a8a3 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source +EXPORT_SYMBOL_GPL vmlinux 0x6f026edd devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6f0cc038 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f23125d crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6f358dc1 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f36c2e3 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x6f62b2d3 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6f794995 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x6f871291 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fdacd32 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x6fe35698 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6fe496c6 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff91729 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x70039e6b dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7011ae73 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x70178bbf serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7019552d __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x701ecec4 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x70226dcb xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x70318c0f vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x7034366c get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x7047f438 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x705035fd modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x70549431 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x705ccd33 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x706970e1 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7076dd58 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7078fba8 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x70801464 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x709254dd __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x70ad8b67 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x70b20d51 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x70c3b31e rio_request_mport_dma +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 0x70d034d3 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x70d2fc7d spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x70eaac67 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x70f6f555 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x70f72c3b page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710eb275 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x714c1c17 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x71581e28 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716db851 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x71896e09 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x71b38741 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x71b60cdf bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x71d585cb l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x71d5ff5d component_del +EXPORT_SYMBOL_GPL vmlinux 0x71dca012 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71e22936 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x71e63990 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x71f550e4 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7217a481 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x723891dd i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7240f3e7 sfp_register_upstream +EXPORT_SYMBOL_GPL vmlinux 0x724678ce rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x72498dc1 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x7256ad8f cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL vmlinux 0x72720e5a devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7285486f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7289757a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x728d3200 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x729d111c pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x72b466ad blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x72b8a115 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x72c05a34 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x72c2f32d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x72c74f6f class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72dfc82b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x72eb9e46 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x72f23bc8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x73057218 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x73206d74 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x73327dec devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x7332e816 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x7334d1e6 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x733a21e2 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x73483096 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x734bd53c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x734f86be devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x736a1233 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x736d9f0d hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7378ca41 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x7383cc83 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x738dbda8 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x738eb491 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x738ed903 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x73900e40 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x739f0d1c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a562ab irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x73a9b391 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x73b6dfba pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x73bbb49e phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73d40388 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dfafc0 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x73e3cb52 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x74015d40 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x740348bc pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x740711d7 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x74134d01 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0x741f307f hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x7420ba0e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x74258cb2 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x74350c9b crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x7439ef4b irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7452e85a bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7453f68a pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0x7467ab7d iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7476860d rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x74769810 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x749a5f62 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x74a31a16 __udp_gso_segment +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 0x74f1d848 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7505f1f5 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751a967f nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x75225512 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752c1a05 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x753006f1 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x7545fb48 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x7547e639 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x756592f3 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7568e11d tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x7578dddb md_stop +EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7595972a devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x75a0c208 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x75b5d8c4 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x75c27e6f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x75c9cadb sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x75cda544 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x75cfe3b0 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x75d04717 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x75d10370 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e4ad3c crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x75fed817 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x760d7b5d subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x7614f8e3 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x76203755 __xive_vm_h_eoi +EXPORT_SYMBOL_GPL vmlinux 0x7626b05a virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x764e513f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x76581890 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x766de61f devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7689bf68 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x769e126c rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76a0817a ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x76adfe20 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x76b086c7 xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x76bbfcd2 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x76e5ed9d lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76fa225f devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x770432bf paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x7706cd5f cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x77228641 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772be066 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x772f0c65 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x773c8f88 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0x7745db6f devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x77500fa2 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x776f558f devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x776fb0e7 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x77957236 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b96add devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77cdcb3e key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x77dbc5c2 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x77dd75ee pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77ff8434 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7801fe86 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78171361 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x7817786f proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x781ee9fc devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7833dd85 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x784fc964 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785c05bd of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7863b542 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788f7a68 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x78a8037a elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78c5d549 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x78c5fabe usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation +EXPORT_SYMBOL_GPL vmlinux 0x78ecbae3 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x78fcf0b4 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x790b2cb3 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x79145a6d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792ed26a do_splice_to +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 0x795bbf81 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x796686dd devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x7976c178 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x79894fa8 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x798fbbfe devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x79ad11e1 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x79b41b7d bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x79b44b3f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x79b67650 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x79beacd6 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x79d359af serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f88a75 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x7a05716d device_create +EXPORT_SYMBOL_GPL vmlinux 0x7a0bbc4b dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7a0df37a ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7a1b732c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7a5610f0 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x7a594f12 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7a5c2ee4 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7a68f10b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7505c8 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7ab486df rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7abe0498 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad900bc usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7b094ab3 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x7b0bcb5c crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1945e5 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x7b2c0c41 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b3c15cb security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7b3fb796 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x7b41529a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available +EXPORT_SYMBOL_GPL vmlinux 0x7b8b259b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x7b8d4ada mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x7b92c25e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b987059 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7ba1b7eb __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x7bb36d9b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7bceb2ef iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7bcf862e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x7bd37592 bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7bd62c46 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7bec7f53 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7bf6a610 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7bfbace8 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x7c0970a9 vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x7c0ad77b irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7c1038e6 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c3020f0 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7c31f5c4 kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c37c11d mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x7c534f77 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7c5877a1 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7c658075 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7c6c0cdf inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7cac99d1 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7caf306c property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7cbc8acb uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x7ccb5343 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd0a384 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd9f111 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7cddbfe7 cs47l24_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfb4543 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0a392b usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d11dbbc fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d396ec3 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7d3b97cc virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7d3e6a6e __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d674648 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d6f9d85 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7d714ba0 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x7d7713f7 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d7fdab5 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7d87f719 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x7d8b4faf pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7d929b18 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7d9ef08c skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7daad03f trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x7db2b694 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x7db3d284 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7dc23ac9 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x7dff2a0c kvmhv_load_guest_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7e015903 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e33e1c4 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x7e4637e4 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7e54faae devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e68eb6e cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7e86bc65 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7e8908de crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7ea6be1e vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7ebb8399 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x7ec3607e nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7ec5143c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ecc6ff2 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7ed0720c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x7ed64920 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x7ed80ff7 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eebb048 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x7ef07114 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7f0e2e6b cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x7f159e2b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x7f2fd35b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7f3acf01 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7f4abe86 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f792bf4 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f869b18 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7f9d1c58 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fa4362e relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fae0b68 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fb976bf rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fcb4b7e unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7fcbadb3 sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fdd8005 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x80160f45 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x803b4952 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x80469e47 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8073f8a6 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x808e754b of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80c02c87 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cf508a ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d6b883 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x80d84b13 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x80ea910a skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x81025ca6 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813df6f6 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x815a1770 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x815d062c usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816f85bd ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x81907a60 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8194f895 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8195f623 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x81ae3a12 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x81bfab07 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x81d6102f serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81f17133 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x81fd9871 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x8213e58e wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x821dea7b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x82330005 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x82382951 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x82520c35 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8281935a sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x82864b66 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x829720bf pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82a66fd9 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x82a9b130 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x82acc123 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x82b2e64f pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x82c61683 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ea7ce4 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x82eef3e0 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x82f1be33 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x831beb3e virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x83289b0a da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x83371aa3 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b16be pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x834227ae vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x834faeeb __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x835f3362 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8366e9c1 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x836ef3e7 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x8370ae62 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x838458f4 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b588e0 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x83c35e0c thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x83cf27a7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x83d44b76 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x83d655ef extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x83eecedf dm_remap_zone_report +EXPORT_SYMBOL_GPL vmlinux 0x83fdf32d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x83ff67d5 mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x844939c7 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84520483 pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x84531ce7 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x8458e7a5 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8464a884 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x8468e3df perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8482bdb8 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8486be3b pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x84882e4a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x848c6be8 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x848d7290 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x849daa8e regulator_lock +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84d0438b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x84d1d868 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x84dc3da0 vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x84f86e78 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x84f99298 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x84fbced3 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x8508a5fe of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850e885e i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x853b9110 __kvmhv_vcpu_entry_p9 +EXPORT_SYMBOL_GPL vmlinux 0x8544f058 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x85481fdb scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x856869e8 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x856afdd8 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8578ac86 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x857cea05 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x858cab3f sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x8590b49d nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x85a3eeb7 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85b3b14c fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x85b4f55e xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x85c7e637 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x85d19f66 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x85ef262a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x85ff2e3d subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x860e335f led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862c2349 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x86350395 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x8642d8fd bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8651a1dc input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866ff59f blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8689e783 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x868c7291 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x8690830f __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x86a692fb i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x86b16db5 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0x86b900db regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86cfb18c pci_restore_pasid_state +EXPORT_SYMBOL_GPL vmlinux 0x86f01792 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870d2915 pnv_ocxl_alloc_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0x87104dbb __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x872cc674 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8748f237 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x874e1370 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x874f801e trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x874fa147 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x87549a91 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8775f140 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x87782fc2 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x878f14a2 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x87b0584b inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x87b99d9d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x87bc36c3 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x87c407c5 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x87e25d48 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x87ef3cd0 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x87f2dfc3 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x87f4614d usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x88047d47 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x8805793d nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88088665 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x88089c04 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x880d3e30 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x88254e03 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x885cb773 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888f03ce ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x889e6723 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b10a40 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x88ca0829 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x88cb25c7 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x88d08846 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x88f6ad2f __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x8912c3b4 memcpy_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0x8916617c lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x8916b0bc md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8918d4d6 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x891e0590 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895ad661 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x897355da __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x89a97ce8 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89de1b67 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x89e6fa6e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x89fc820c housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x89ff283a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x8a0f693e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8a16a7af i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x8a27edc0 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8a2aa4e0 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0x8a2b1b59 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x8a2def80 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8a35e1c7 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8a471b0a tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8a502a2e spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a65d987 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8a9c8efe hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa11d36 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x8aa8c986 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad577b1 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8ade7ca8 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x8adee82b __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8aff0406 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8b00441b rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8b120f62 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x8b1379b8 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x8b42c450 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x8b45eece devres_add +EXPORT_SYMBOL_GPL vmlinux 0x8b475e7b scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b4782df gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8b4c5cf7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8b63e52a serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b7d4b2f platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b980754 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x8b991d7f ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x8b993a02 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x8bae65ee powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x8bc3c32a crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x8bd95f9c elv_register +EXPORT_SYMBOL_GPL vmlinux 0x8bda7fc4 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x8bdc0910 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x8be75b61 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x8bf76368 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x8bf9a1ec cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0x8bffb69c i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c021c2f get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0c3692 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8c171486 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8c2879c3 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x8c38f641 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c77229f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8c7de69f xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c7e303f i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c9227e3 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8cd1cc32 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x8cf46ac8 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x8d04340c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8d13575d pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8d1921e1 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d273c95 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8d3aff6b find_module +EXPORT_SYMBOL_GPL vmlinux 0x8d4badaf platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d976d1d ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d99f268 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8da543b8 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x8db2c04f software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dc23134 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x8dc57e38 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x8dda9784 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dde29dd freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8df01d1d nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8e11bb8d sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x8e2e2f74 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x8e3c1cb6 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8e3ecca8 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x8e48991a __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e4d0fee fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e7064fa blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x8e85f6cb nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8e8aca38 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e952b63 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8e97b6c0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8eae8dfd usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x8eb9de2c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8ec7980a get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8ed8724d usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x8ee3063a pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ee68366 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef2421f usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8ef8e54a net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x8f040694 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f157565 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f30f918 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8f342ae0 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8f48354d of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f732e0b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f786e67 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f7d81a4 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x8f90a723 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x8fa6b2b2 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release +EXPORT_SYMBOL_GPL vmlinux 0x8fb54a2f ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x8fc7b434 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8ff1d7fe spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x901ba07e dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x90250425 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904725e1 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x9059bd54 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x90677a7d cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906c6c8e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x90704964 devm_nsio_enable +EXPORT_SYMBOL_GPL vmlinux 0x9073bd8c tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9091d88e crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x90a9d126 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x90aa3e88 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x90bbdf44 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x90c8c20c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x90c9a3dd crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90d00fac gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x90d531ce agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x90e8a143 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x90f5de5a security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x910a639c usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x9124b013 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x912a0bf8 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9130787b sfp_unregister_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9134738f of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x913fa289 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x914ccbc0 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9158e04d machine_check_print_event_info +EXPORT_SYMBOL_GPL vmlinux 0x91594445 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x91622b32 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x91816b05 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x91a4c315 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91b7445b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x91bce057 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d25502 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x91d44fab of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x91e5d278 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x91ec0c84 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x91f1a7cc iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0x920c3c2f crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9220133b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x92238bcb xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x9223a97c sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x92245520 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x922d0a15 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92520e4a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x926a68c3 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x92813c7f ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x929f140e usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x92a288aa phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92ade3cf device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x92c925fb xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e539cd irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x9301e9f8 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x93150004 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x93221adf devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x93228ecb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x9329463f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x932ea401 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9334c284 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest +EXPORT_SYMBOL_GPL vmlinux 0x936a1386 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x936cbb3a crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x93731aba __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x937a192d hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x937ad719 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x9385f0aa xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x9395d23d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x939b9f1f devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x93a43967 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x93b0ec28 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93e6dc8c tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x940a590c devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x94127b5b pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942037f9 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9427980d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x944d5cd0 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x94551956 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x945a8496 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9476117a iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0x947dfd9a bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x9492830f shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x949a16a4 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x949e054e page_endio +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a0a0de usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x94a2a144 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x94d5cfd7 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x94de6ebe cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f379e9 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9500beca power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95093fd6 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x950d8f55 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x951240fa devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x95128d85 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951eff23 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9528e9a3 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x952bbecb iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x95338b3a acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9542a15e badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x954d0f6d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x95561cc0 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955fd5b8 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x956f696b regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x957f9aca platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x95822f38 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95958356 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x959f90f2 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x95a22909 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x95a6411d pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x95a647c2 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x95ac00f0 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be05c9 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95c56aff pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x95c8ea60 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x95d8cc6a spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x95db8407 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x95e44df0 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x95ec4ec4 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x95f8479f __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x960c7044 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x9613856b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x96495320 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x964aca5f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x964ffc96 devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x968013e5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x9682fab8 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x968af096 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96a057ba cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift +EXPORT_SYMBOL_GPL vmlinux 0x96e248c6 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x96e58d03 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x96e5f0ac transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x971154de debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x97145f29 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971d7108 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x97283a73 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x97410696 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977d36bd pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x978e01f8 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x978fcfd0 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x979c12a5 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x979fdc43 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x979fff0d rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x97a20098 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x97a7dae1 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x97bcfcaf tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x97d04a0c dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x97d89df7 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97f164a4 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x97fa5f45 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x97fe7817 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x97fe7e06 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x98170559 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x9818ecd4 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9827ac1a devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983f8e2e btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x984592e3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x984a9586 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x984c3ac7 udp4_lib_lookup +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 0x986a939d __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x987520e2 usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x987648dd linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x9877bc03 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989ae02a thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x98a4dde2 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x98bcf3eb dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x98c7247d ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x991a4da3 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x992a7f7f tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9949d0e6 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x995ce9fb alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99707cc0 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99b0cda2 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x99c4913d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a000807 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x9a0abdc4 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9a0ad9b4 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1ed3cb cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x9a28e691 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x9a2f2fe4 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x9a2ff92c is_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a54f91b call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x9a6431b2 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x9a6560fb platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9a6b2217 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x9a6b291e powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9a7f5197 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x9aad7c0b dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9accd235 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9ae05b77 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9ae885e5 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x9ae97c8b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afcb0fc pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9b080859 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x9b290b06 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b3f4dc5 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x9b4da2b1 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5128bd strp_init +EXPORT_SYMBOL_GPL vmlinux 0x9b53e421 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5f9d67 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x9b7b8a19 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x9b81a287 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8d8ad3 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b93dc0a device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x9b9ae61a tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba6163f fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x9ba6b656 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9bbcddba sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9bc82ae8 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x9bcd0cd4 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9bd0d7ca sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x9bd2a365 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x9bdb3cee blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c24d31d unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9c267729 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x9c2ac273 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x9c34a52c pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x9c4f13e3 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x9c5b630d __xive_vm_h_ipoll +EXPORT_SYMBOL_GPL vmlinux 0x9c615b88 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x9c740b58 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8f90c8 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9ca7f26a bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9cb5a54e devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9cb8f446 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9cbcd5b7 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d10be27 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9d264e22 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x9d324e49 cec_register_adapter +EXPORT_SYMBOL_GPL vmlinux 0x9d33b47b is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x9d6d0e22 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x9d8e7d50 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get +EXPORT_SYMBOL_GPL vmlinux 0x9db1518f dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x9db64edd blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x9dc530a3 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9dc7c048 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x9dd6fcba vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9dd96534 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9de115f6 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9de62a16 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9dfdd621 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9e17acc5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x9e213baa anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x9e227fd6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x9e2732aa of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x9e2bda50 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x9e38081a devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4fb179 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x9e605d4d stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9ea0ae69 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9ea80d2e strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x9eb328ec inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee854e9 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9eed3ddb cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ef9d485 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9f04b9d5 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9f0d91df gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x9f302564 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9f387e8e bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x9f3d9a00 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f3e2f36 kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0x9f4c3100 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f6e079c disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9f74c22f dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x9f857883 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x9facc962 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x9faf972b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff492b5 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa0013e20 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xa02161a0 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xa0261d2a tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa028db1e srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0xa02a301a account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xa03d9d59 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05d4290 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xa06f135f cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa07a31a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa07ffe10 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xa0aa01c9 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa0ba50cc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa0bc5676 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa0bd396c fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xa0c7a46f regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d8be6f netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0f641a9 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xa0f7c447 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa1286d09 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa1288848 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa1456292 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa15fc380 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa16f9003 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa177e48e subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa17b09b1 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa188e4ec nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa18e067a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa1923c3a l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa1a17ae2 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa1a25c96 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa1b8e804 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xa1c7bfc6 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xa1cb226c i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1dd6d28 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa2027af4 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21baa8c ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa235d5c3 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa23c6f97 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xa23dd206 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xa23e90cf bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xa23fa5ea phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2839c96 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa291fbcf vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info +EXPORT_SYMBOL_GPL vmlinux 0xa2a31bb6 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL vmlinux 0xa2fd2fb4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3171557 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xa3224af3 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa32728cd scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xa3576169 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3704b30 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3af5f55 cec_notifier_conn_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b29a4d cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3b9b440 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa3edfdd7 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fbc25c component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa41c8763 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa41d2e91 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa428e7fd __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xa42f79a4 __tracepoint_vfio_pci_nvgpu_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa44790c1 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44ce93b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa47545a6 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa47b3b02 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49ae918 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa4a114fd of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4a7794b housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xa4c21bec usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xa4d22181 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xa4e111d5 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4f2cb72 __xive_vm_h_xirr +EXPORT_SYMBOL_GPL vmlinux 0xa511fcd5 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xa512130a crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa5155b25 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xa527b876 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xa52efbf1 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa54575bc of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa58c70e6 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xa58e639f sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xa5a2a962 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5d3923e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5ea2cf6 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fdee29 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xa6049857 trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0xa60839bf __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xa6100821 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xa64b7cef component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa65ff8da __xive_vm_h_ipi +EXPORT_SYMBOL_GPL vmlinux 0xa667eb38 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa671bcf0 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa675158c pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa67d744c flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xa68f18e6 iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xa6a81b45 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xa6abace5 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6ae1b7f usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa6ae7bf8 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bff93e of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xa6c3e371 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6ce7cba pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0xa6cf5680 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield +EXPORT_SYMBOL_GPL vmlinux 0xa6d525e3 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e48d41 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6f7ddd0 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa6fdef18 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa709e4f0 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xa719b325 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa7562a79 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xa760fbbc pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa76193ba rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xa76f1e67 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa774e519 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xa79322ec ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7b626fc watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa7b65409 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa7db4f5e extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7ffd4d9 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xa8034596 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xa81b9a74 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa82b0a21 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa835fffc led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa836b0c7 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa850732b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85f37e6 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xa899f363 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa89e5733 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xa8bc1596 led_colors +EXPORT_SYMBOL_GPL vmlinux 0xa8e95e0a ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xa8edd1e2 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa8eff52c vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8f4eb2b addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xa90c10d4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa90f2984 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa91708f4 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa918d4c9 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xa91a2d07 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93b0e63 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa94b281e addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xa951d492 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa955b489 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa956de83 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa96e3255 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa970c08a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa9776605 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa98396d2 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0xa9a37bad irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa9bdd5c1 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d88a81 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa9de73a3 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e77f26 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xaa089206 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2862b9 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xaa31c6fa usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xaa46bc5b phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xaa471c2a fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xaa525e72 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xaa62088c xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7bed39 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaa80069f xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa850507 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xaa8e4ff0 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xaa9111f4 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xaaa488b4 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xaaa562f4 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab0609c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaab84656 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xaac0bf46 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xaaf3709e soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaaf99b59 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xab0a0803 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xab1e7410 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xab27cb22 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xab64f773 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7c4dc6 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab82fa8e debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xab830de0 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xab98930b usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xab9ac444 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaba8bf3f alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcd824f crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xabdc2852 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabdeddec devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xabe20712 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac06f098 device_move +EXPORT_SYMBOL_GPL vmlinux 0xac134928 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xac19a12a da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xac2409d6 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xac32d9d4 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xac40da9e eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0xac52b11f list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xac76ae6f regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xac84f0a2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xacac6c55 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xacc9efad component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xacca22e1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xace4eabd tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xacea54b6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad10e0fd __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xad306653 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad7677e0 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xad8abab6 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xada20bb7 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadc55f1f clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xade304ba vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0xadee9513 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xadf2da04 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xadf928fa ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae011d8c rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0e5eb9 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xae29e48e each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae332a06 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3b3211 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae3e7e1f housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae4578d7 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xae47fff7 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xae4953e5 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xae5fcfae genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae766499 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c8971 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xae852529 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xae8b882c reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae8f9ca0 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xaea15760 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xaea7c3b4 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xaebf9615 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaed15162 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xaee13f2f init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0xaf2bce74 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf3f21e7 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4171ec devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xaf45c455 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xaf49eac7 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xaf5cb98e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xaf5f7de0 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0xaf76c979 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7a6514 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf86ba02 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xaf86bd31 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xaf975bc8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafad4e8d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafcedd4f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe84acf pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xaff87ef4 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb0036e12 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb0076d6b netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xb008557b device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb046a9c4 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb05090f5 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb063af49 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xb06ca426 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bd14de sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xb0c1481e ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0df6049 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb0ee7183 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xb0f5a30b iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11c2274 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1233cf1 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb140d49b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14614cb pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb152817d led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xb154450b gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16721ac sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb171fc27 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb191304a spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xb192cc81 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb19662eb skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb1a59254 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb1bc8976 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c73763 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xb1d974e8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xb1d9f10b sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ebd2db do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xb1f41b49 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xb1fdf67f of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xb210790d register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xb21f8c79 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24687c5 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb255cde6 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27279c0 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb2754759 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xb290837c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb2928a06 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29957e5 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2a1c8bf static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2ba3de1 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb2bfc425 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xb2d09ddb wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xb2dc6563 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xb2df1713 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb2e3fd9b blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ed7cd4 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb2f06c69 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb2fbec13 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3090eb9 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb31e4edd ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb322e08d pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xb335ac12 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xb3415d67 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb357a4e7 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xb3682350 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xb36dd5e8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xb379a044 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xb37a9f1d dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb3820e9f pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xb3919e42 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb39ccd37 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb39e2cb0 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xb3b8a376 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb3cf1576 eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0xb40382bc device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb41a2557 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb41b427b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xb4207960 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb442814e vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb44ee4aa pnv_ocxl_free_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0xb45bd6e7 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb490f6c9 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4a4a5c8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xb4a9cc54 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bf9cf3 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xb4d54691 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xb4e33dc6 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f380d1 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xb4fab1c0 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xb4ff413f tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50d5658 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb51a6cdd crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5216113 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xb5224601 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xb52e9852 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xb5318df8 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb53510ee device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb5421b83 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xb55cd4e5 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xb57024d9 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb58653b7 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb597b7b1 of_css +EXPORT_SYMBOL_GPL vmlinux 0xb59e1a5a phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b85ad0 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5d66f00 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5dab402 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb5e9437a ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xb5fb3a7c cs47l24_patch +EXPORT_SYMBOL_GPL vmlinux 0xb6002ffc dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xb609c2f6 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb619f917 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xb621a16e blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6393fc5 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release +EXPORT_SYMBOL_GPL vmlinux 0xb64f9964 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb67143cd cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68cd10a __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb69c3914 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6b18c85 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb6d0ab81 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb6d5f669 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6da710b wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xb6e281f9 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb6ec5002 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb6f5f14e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xb6fe2a26 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xb71198cd serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb71616a5 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xb718554b fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb739ae94 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xb739e818 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb7400560 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xb7410550 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7481715 pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xb74f3073 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb75ad8b7 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb763c0d8 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xb7772d98 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb779a754 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL vmlinux 0xb77f7d84 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb7a692cb crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb7ab4349 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7ca9768 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7dff895 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb7eab3b9 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb7eba50c __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb814757d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb8154660 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0xb81f89df __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb8263712 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xb82c3816 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8319fc2 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb8459316 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xb851f982 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb85e31e0 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb8705115 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb870bb1c __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb88cd1b7 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88f854d bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xb894b36d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b6c91b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xb8c7ad04 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb8c88ea3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb8ccfa25 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d2ce85 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xb8ddd7e2 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb8ea4c1c bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb8f47e08 fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0xb9016b13 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xb9024c51 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb909bb78 cec_s_log_addrs +EXPORT_SYMBOL_GPL vmlinux 0xb90c5246 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xb910db70 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb912de39 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xb91437e3 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xb923fa45 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb924c6f4 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb924eb49 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb930435d sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xb968151a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xb96c4451 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xb982d002 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xb9879287 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support +EXPORT_SYMBOL_GPL vmlinux 0xb9a1b2f9 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xb9abd43b __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb9acc559 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bba8c4 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xb9c1291d ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d95935 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb9d9bcbf regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb9dcb9ce gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9df36f2 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb9e0daf6 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xb9e5d522 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb9f9fbed nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xba0cf2d8 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1a8c23 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xba1f7eed __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4d72eb __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xba9f378e xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xbaaf2255 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbab3750b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaccac4c kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xbad0307c napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xbadcd0bb handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xbae63e63 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafbdc0a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb060579 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0c33fd sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbb168191 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xbb2da180 component_add +EXPORT_SYMBOL_GPL vmlinux 0xbb3977e1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbb4a164a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xbb4fc142 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xbb5f44a2 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xbb601bd3 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xbb60b5d6 fuse_sync_release +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 0xbbda1010 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbeb22d0 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xbc4da671 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xbc52e2ea led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xbc60c605 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc89fcb8 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbc8ef7b7 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbc954220 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xbcaa4219 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc26300 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0xbcc57299 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdf1638 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf58ff0 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbd0ca58c rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xbd10877f udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xbd3bfbe5 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd3df362 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5b62bd __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd83e638 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xbd995388 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xbda6425d xive_native_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0xbdb032ab of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xbdb8a604 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbdb90f71 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xbdbf467a serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xbdc40337 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbdca32e8 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xbdd1418d ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xbdfb7d16 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xbe023055 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe4a2962 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xbe59eaa9 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe689eb1 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xbe83041a serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xbe929684 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbe93adf1 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea00214 pci_prg_resp_pasid_required +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xbeb0f29a lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xbeb98476 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbeca6cce sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xbed33d92 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xbed879de gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbeebc455 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbf03430b store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf173235 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf25cb65 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbf281559 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xbf39a9b9 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xbf44001c of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xbf911ea8 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xbf99159f devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xbf9a79bd pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbca9fa __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xbfc9d9d0 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xbfd4f9a4 iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xbfdeb1b9 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc0072678 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc01b7d82 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc0307f74 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc0439c42 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xc049914f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xc04f893a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xc04f8d5e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xc058195c watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xc059cff3 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc08199c3 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc08479c9 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08b74f4 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xc08e4423 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc09267cf crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xc09b2d2a rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc0a5709e ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ba7335 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc0c3cd83 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc0d20962 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xc0d284d8 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xc0d55776 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc0d66a5e regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc0d9a85e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0df5258 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f6039c generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc0fd7be4 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xc107cc41 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc108aec7 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xc10c8cd5 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc12e90a5 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc132ce23 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xc14ad3a1 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc1542304 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xc155e204 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xc15c0918 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xc1704284 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc172030a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1782597 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xc1900c3e nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc1a18017 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc1a53eeb __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc1a882b3 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xc1c78613 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc1c8d1db perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xc1d0d722 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc204cd22 blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xc20744fe relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xc20dd5a5 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc2281d6b spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xc22983ea blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2318add da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc2374c37 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xc23c2180 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xc23d14c6 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xc23da04f root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc23fdd32 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc2484acc devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2a50adf i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2aa338c perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xc2cc212b phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xc2ceef9e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xc2cff8ec phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xc2ff64c8 spi_set_cs_timing +EXPORT_SYMBOL_GPL vmlinux 0xc3188689 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc32aa22d regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc343e77d tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xc3452e0d iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xc353aecf ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc35ef675 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc3644470 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xc376cf78 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38f8f43 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc3af2824 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xc3b49b3b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc3ba431e gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c838eb x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xc3d9e151 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc3d9fb50 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3dadfe2 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc3e8f2d0 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3eba369 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0xc3f4ccef pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc4228931 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4454864 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc448be81 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xc44a3c1a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xc44eae24 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4820156 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xc48774fc flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a610d6 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4bdb57f device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc4bdb923 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4d2ecfc xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0xc4d5e547 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc4db48cd ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc4e0d77c phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xc4e7641b disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xc4e8c2bd desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f69a77 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc5163ccc debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc518b31a hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xc524e9fa rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xc52850cc pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xc54a579e security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc54c3d89 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xc54c601c of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc54d52f2 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5860492 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc59c3332 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc59cb545 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ac226e of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc5b29ddd regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc5c1ff2b metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xc5cc5b71 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc5e3ada0 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xc5e3d65f cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60b8e3f mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63580ff gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xc645400a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc65f9515 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc671f914 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc67a3f91 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc684f8c5 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc68d880b bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc69a0da6 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6dad134 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc70f6699 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc70f9b5a sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc71187c9 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc723462a mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xc723d393 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc7298eff shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc72d3e16 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xc7325290 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xc7343af9 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xc7406fe4 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc74fa009 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xc764fabc inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc765d137 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xc7779c4d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc78a20a0 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc78d71c8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a355dc clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7a7549e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc7af53cc disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc7af6cff edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xc7bb734f skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7efa498 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fbc726 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc81b48ce dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xc82545e9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc8281da6 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xc82b85a9 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc836d8dc crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xc84e928f __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85ca034 ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xc86ae487 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8707463 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b85f45 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xc8b8723b arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8b88d9b __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc8c56263 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xc8dbc2df elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8eacfaa thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc8f73450 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc8fbcd88 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc90ee8ad security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc919dae0 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc9301abc of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc9380cce tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94308c4 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc94505de bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc957b688 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc981b718 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98aaf54 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc9928d2a static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0xc99f417d mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc9a3f71a ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9a8093d rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9a953c7 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state +EXPORT_SYMBOL_GPL vmlinux 0xc9cfa334 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ec5ab0 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xca1b3dd6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xca241e3c dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xca40b9bd spi_async +EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xca570b50 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xca5f6949 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xca62cd12 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xca66605e dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xca6ab36d devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xca7d0aa6 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0xca7d7196 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7e4636 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xca8079c7 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xca8a2e35 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xca9e1a38 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xcaa304cd input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xcabafb8a ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac28a32 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xcae0a7ba device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xcae4b272 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xcaeaac33 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xcaf157d4 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xcb0e9327 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb194a17 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb418b85 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb64752f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xcb89bbfa pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xcb96fa25 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xcb994484 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcb9f47da fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xcb9f7aa4 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xcbb01352 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xcbc84d26 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xcbd87f49 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xcbde36fc inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc1096d0 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xcc18a3cd usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc1bb346 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xcc22ca8a pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xcc2d5d29 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc3b7485 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xcc48f520 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcc564e7b user_describe +EXPORT_SYMBOL_GPL vmlinux 0xcc5fcd2d devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xcc668d29 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xcc6a6b80 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcc74c13f __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc96f2e2 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xccb3106f xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xccbb555c device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xccbd64cd genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccf12672 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0xccf150a4 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd105e27 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd5a67c3 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xcd5dadd1 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xcd60cb29 pnv_npu2_map_lpar_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd683a8f fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd72174c class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd7dd1cb mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd80c6b7 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xcd8699bb dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xcd8c96fb firmware_config_table +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 0xcdb56a65 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcde03cdc bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xcdefee3b of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xce109274 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xce1463fa serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xce195d00 _copy_to_iter_mcsafe +EXPORT_SYMBOL_GPL vmlinux 0xce250286 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xce2dfb86 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xce3ba696 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xce400f64 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce4d879c usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xce66af08 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce78216c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xce898c06 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xce9982d2 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xceb6ab68 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xceb765ca dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xcebe8899 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xcec1af42 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceec563f usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcefd4893 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcf04ab47 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xcf0792b3 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf0bd81a pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xcf194756 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcf1e6a25 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2d4c8e switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xcf394bc4 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5ee11b __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xcf6feb0c pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xcf8937c5 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xcf95b719 cec_s_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xcf9af5a0 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xcfab366f bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbfe84c scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfcc715d cec_delete_adapter +EXPORT_SYMBOL_GPL vmlinux 0xcfcfcfee devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcfd0786f power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcfe4b366 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xcfe9e11e fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xcfef1cf2 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd00c2de5 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xd00d9fc4 of_map_rid +EXPORT_SYMBOL_GPL vmlinux 0xd0101fe9 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xd011046d pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xd031585d serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd0316a5d ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd049f994 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd04e4fc8 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd04e7d5f extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd05527f3 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd077cf30 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xd0881bba sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd0893c60 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd091e8b8 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd098b314 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd09a0d24 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xd0bea361 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d5b392 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dd1e20 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd0f5aa80 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd0fae503 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xd0fd87af iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd109995f dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd13e5740 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd15e7376 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd16929a9 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xd1696942 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xd172516a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xd17b4847 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd18f0f23 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd1910240 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xd1a645ee wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd1af0092 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd1c4f5c7 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e25b08 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd1eed728 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd1f23694 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2008737 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20d4097 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21b7bf6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd2213616 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xd236b10e cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL vmlinux 0xd26ea1dd hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28057e3 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xd2ad073f bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2d567d9 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xd2e912b2 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd2ee07cc ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xd314f5d0 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3240d4a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xd34503cf inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xd3493022 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd36302e0 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36f2337 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd3767e1d regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd380d70a ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xd3860808 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd38c4358 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xd38f85b4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a5e9f8 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0xd3ace0cf vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3b22dbd vas_init_rx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0xd3be854f crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xd3c2c976 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xd3c42ac7 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd3c880d6 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4009b4e direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40c1e3e devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xd41158cb device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd42ef75b pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4682ee2 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0xd4816832 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xd4842fbb fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xd49503f9 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xd49bc9b1 thermal_zone_set_trips +EXPORT_SYMBOL_GPL vmlinux 0xd4b16d9d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xd4b2d40b nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xd4b670ea xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c8ed8e sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd4d03b39 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd4e08ce3 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd4e45368 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd4e7e096 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd4e8868a call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xd4ed1ef2 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd4f29f83 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd4fc90b4 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xd4fdbcad posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd553ca91 __phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5601154 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xd56b7dbc cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xd57c7aea bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xd59230aa transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd595cc14 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xd5aff128 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c148a3 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xd5e2198a crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd5e2a63f of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xd60002b8 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd600b55a vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd607360a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xd609144e iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xd60bca52 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xd60ea619 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd634cb5f scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xd63b66e4 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xd6471786 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd66cbd55 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6893ad2 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xd691ea7b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd698dd2f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xd69ae666 i2c_dw_probe +EXPORT_SYMBOL_GPL vmlinux 0xd6a0ac9b dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6a5889d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd6c15e1e sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6e6f469 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xd6e71a8c ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xd6f79e26 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xd6f8d25f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xd6f97476 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd713038e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd7494e58 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7a7fbe7 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd7b0f393 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd7c30752 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xd7ca05d9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d01280 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xd7f2471d list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xd7f3aeaf mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd7fce875 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd80c93dc pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xd810c788 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd81e9850 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xd831b81a irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xd84706cd kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd869287d regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd869b3b9 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8812039 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd889c9dc devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xd88e6e0c cec_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd8a5b9fb exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xd8aad4b1 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xd8b1fe02 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd8bbb580 __xive_vm_h_cppr +EXPORT_SYMBOL_GPL vmlinux 0xd8d0ad32 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xd8e36ffb devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8e3e07c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd8e51e78 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd9066be6 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd91648a1 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xd91a9677 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd91f582a dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xd9308872 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xd9387614 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd94245c9 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd951bcdb usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd9580a91 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd9644cf8 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd972573a usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd97a7f42 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd97dc8c2 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd9940708 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xd994d152 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd9a12e99 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd9a2d51f usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd9b6ab2e phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd9ba83c2 devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ef5256 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd9f9709b tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda082bf9 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xda1f8ca4 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xda2263da crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xda261180 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xda3d2ab7 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xda447f96 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xda49ab8e pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda8141b3 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xda92c638 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xda9358d5 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xdaa81597 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xdaa85b39 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xdaaa66cb spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac5d32d sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xdad0afd6 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xdad1130a device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xdad8df10 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xdadf20d6 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xdae5bbef usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xdaeb21b0 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdaf5f9e3 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdaf9d63a skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb2ba886 split_page +EXPORT_SYMBOL_GPL vmlinux 0xdb2f33f5 flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0xdb329ebd devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xdb3622eb cec_unregister_adapter +EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load +EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xdb712c91 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xdb7aff2d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb98f325 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xdba900ad ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdbd34007 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xdbf2086e find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xdc22948a iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0xdc34a927 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xdc447fd2 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4ca14e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xdc50cd41 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xdc57c08d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xdc61aadc irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc85a46d devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9a2cba nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca19b24 eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0xdca22049 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xdcc7007b nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xdcdc27e0 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xdcf03b76 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdcf60828 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd13a0bc crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdd217419 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdd218db5 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3f0c23 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd4b0d81 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd96fc70 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xdda5879c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xddb6feb0 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc26a83 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xddcbd2f4 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd80b70 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde36ffd5 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xde46f1ac eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0xde495b27 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xde641811 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde75ed73 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0xde7ff9a7 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xde9fce60 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xdea41a7f blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xdeb28987 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdef1b73a dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xdef62ed1 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xdf0043a3 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xdf00a4bc xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0dd0e8 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xdf0e6ff8 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf0fac67 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf304e8f tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xdf488d46 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xdf61aa65 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xdf71f3c1 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdf75d201 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xdf890e24 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfb7c9b8 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdfc3631e mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd24400 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00b3348 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe01b0da0 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe01dcd62 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0365b34 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xe04f63c3 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe05b0138 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05e419f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe061283c memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe068c1f3 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe0773afc akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe082d69f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe095f1e7 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xe0a22305 cec_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0bb7c90 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe0c02f14 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0d9bff5 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0da4b28 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0ea8841 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xe0f25b58 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe0f7bcb4 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xe0fa904a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe0fdf926 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xe1067891 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xe130c850 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe132b174 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe1433612 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe157ed8f idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe15c4367 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xe174e9a4 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a8f319 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xe1b40d63 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c08ec9 vas_init_tx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0xe1c14123 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe1d5e32c devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xe1e0a74b uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1e5c909 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe1e961eb bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xe1e9d01e irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe1f83ac2 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe20c633b fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe24155b6 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xe241ead6 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xe249a615 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe24e5861 cec_s_conn_info +EXPORT_SYMBOL_GPL vmlinux 0xe24f7f26 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe25e4957 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xe265342c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xe283daf3 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0xe29cfa8a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xe29f57e5 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b5c223 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2bf8aef rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xe2c2e124 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2c79dc1 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d40df0 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe2eb642a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xe2fa4c54 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xe301ebc5 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32ebb28 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xe36617ae regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe36a4d99 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe37edb1e device_register +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe39ee4bf gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe3a104da pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xe3c147fa tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe3c51b88 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xe3c76144 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe3e6e734 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3ecee5b devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xe3fe48f2 __rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe42032cb devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43c8006 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xe4438772 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xe46740ce ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe46ccca5 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xe474ebaf genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe47ab640 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xe47ef78c usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe48364db __tracepoint_cpu_idle +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 0xe4b9af2b iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xe4bcd635 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe4bcf64c virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cc7624 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xe4ce26b5 pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eb98b3 xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe5022d11 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0xe503f8f5 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xe503fb67 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe5067696 setfl +EXPORT_SYMBOL_GPL vmlinux 0xe5076d42 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xe50b6462 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe510eec7 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe52194f7 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xe5231028 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe52607d2 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xe5262c17 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xe5622023 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe586351c regulator_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe591bf51 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5b5f306 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xe5c04dce __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe5e14756 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe6179346 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe627eb6b pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe635e664 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe63c644e blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe63d71bb cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xe65c7624 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xe66aca80 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xe67acae8 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xe67b6442 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xe6924bd7 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe692d31c spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6a8f6c8 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xe6b07d65 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xe6bf139c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe6cda3cf fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xe6de2762 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe6def390 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe6e086af pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xe6e2a3ec vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f96087 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xe6fced16 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe7111b8b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xe7217983 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xe724462f wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe72c6fa2 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xe7349082 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe737a3cf __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe745e226 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75b48f9 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xe75e9581 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe778e4d5 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xe77c0f4e wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0xe78102c4 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78800ad pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xe788bcb2 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a3249c devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0xe7a556df generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe7a96d06 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe7b3bc8a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe7b780d1 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xe7c23b79 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe7c53492 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d9f47c irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f14c56 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8050b12 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe80a1278 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe824eec2 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xe826334f __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xe842fafb usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe84dbc28 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85f2f97 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe860bd74 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe864603e __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xe86b0945 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe86ec69f blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xe87b8ab7 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0xe88f3bca is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xe8ad6884 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xe8b17f89 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xe8b34898 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xe8b40756 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe8c40ca9 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe8e16787 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe8fd63e5 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xe9053958 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xe90de808 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe91ba90a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe91c0055 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9279287 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xe93ac9e9 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe93aff20 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe957bf9f alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xe9758271 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe992a06f rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xe9a23b73 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe9bef912 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe9ce229f input_class +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d97e26 ata_host_get +EXPORT_SYMBOL_GPL vmlinux 0xe9db42c2 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe9ef15ef edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe9f31052 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe9f821fc relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xea017114 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea24d2e9 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xea29e3c9 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xea3a05f0 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xea3bcb44 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xea3d3ff7 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xea4e39ea iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xea883227 d_walk +EXPORT_SYMBOL_GPL vmlinux 0xea9524b5 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xea99fc8f pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xea9c5b9c invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xeaa54d9e fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xeab88a95 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xeac29596 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead8ecfe rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xeadb0f8f tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xeade4702 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xeadf029e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae7236e sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xeaf9e3ee __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xeb091eb6 eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0xeb14d5d8 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code +EXPORT_SYMBOL_GPL vmlinux 0xeb30b67e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0xeb38ebe6 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb3c8d73 wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb3fd180 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb437568 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xeb4dc030 iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xeb5d960b mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0xeb6fe604 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xebad98af dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xebb6693f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xebbc7a18 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcbf8fc gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd6af04 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xebe48ba7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xebed6812 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xebf1fe53 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xec03c2f4 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xec0a734c __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set +EXPORT_SYMBOL_GPL vmlinux 0xec3af4b8 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xec63d699 __tracepoint_vfio_pci_nvgpu_mmap_fault +EXPORT_SYMBOL_GPL vmlinux 0xec7109ba reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7a4332 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0xeca5d40d software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeca92d62 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xecaef193 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xeccc7df4 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xecff438b driver_register +EXPORT_SYMBOL_GPL vmlinux 0xed08df5a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xed15d47b copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xed2d101f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xed2eae2c usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xed302902 cec_received_msg_ts +EXPORT_SYMBOL_GPL vmlinux 0xed3265f6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xed3403dc sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xed4fd27a serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xed617bed regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed95c4a8 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xed9ea0e7 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xedcd03fd devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xee02589b ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xee0fb9e0 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xee1074b2 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xee1d9d28 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xee21eaf1 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xee244889 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xee3369f9 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3ef067 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xee5400b8 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xee5a4654 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee8f3d03 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xeea61d10 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xeec07dd7 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xeec4350f fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xeedbba1b ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeeddf2b9 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeeffd5ef serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xef05e5a2 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xef0e49ad pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xef1beed2 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xef2e0d10 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xef35e914 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xef431f8f tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4942da regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xef55bd6c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0xef927621 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xef929b8c dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefcf8cfe copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0xefd3c307 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xefd8630f of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee6835 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf0208e77 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xf0281b05 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf028d5c7 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf0323afd sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf036b4f3 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xf040a0e3 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf04b57d9 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xf05a4ead hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf074b187 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf082df18 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf0854e9b raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xf086dacc static_key_count +EXPORT_SYMBOL_GPL vmlinux 0xf09fbf8f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf0a9fe1f edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xf0b15982 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf0bcb6bd blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf0ccd4b5 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xf0d0bca7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf1077b6a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf1103f51 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf1159520 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf11acf40 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf13b5286 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xf145b02c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xf14a5b6a mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xf150bfb0 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0xf16e84be of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf16f2590 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf17f927d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf18177d6 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19b1b0d sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xf19d1e0a sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1d81cf7 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf1ebaee9 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xf1f40e15 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xf1f54f94 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf221de66 crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf226c102 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xf22a32fc rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xf22de445 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xf246e85b set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf24b5611 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf2572db8 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xf2573e8b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf26675ab noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xf278885a rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf287ff36 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xf2932584 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf2936b05 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf29cdf27 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xf2abb314 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xf2afabdc kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xf2b7ffd4 __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf2bf24a6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf2c57bb3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xf2d1111d regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30b62d5 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf30f0d07 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32806c1 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xf3304c01 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf34d915c regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf359e739 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3867b60 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf38c2617 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xf3ac08bd sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6e8dd scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf3ba1469 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xf3c6fc65 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf3c92b20 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf3cfe616 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xf3e34e70 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xf3ec9255 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xf3fa87c4 mmc_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf3ffb20e spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf436bf24 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xf461f13e usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xf49b2a4f devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf4a2c7cc crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf4a9ac78 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf4ac980c extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c25c92 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf4cd6a93 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xf4d2e80a of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf4d56cf3 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf4f42957 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf4f78498 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4ff3d1a yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf4ff5fd2 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xf512b6fe tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xf51d8097 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf52cd9d0 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf536a71d serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xf53c1a81 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf53d6531 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf54450e6 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55439f4 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf555548d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf5563045 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf563e3bc scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf56b282d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xf56da9a7 __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf57a0ceb sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf58473a2 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf58641ba ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf58ff548 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xf59bf81c mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5a12196 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xf5a41a64 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b1dfee fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache +EXPORT_SYMBOL_GPL vmlinux 0xf5d427c0 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xf5d58d82 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5d81235 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xf5ddf0cc ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf5de1e7d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf5e3405f srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fcadb4 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf5fe8e51 pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xf60f8b73 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xf61a1a4f tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xf61ffddb of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xf62048c4 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xf621dfb0 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xf62eabce device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf633bc5c do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf635d978 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf637dc9a iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf660195c crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf67939af rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6b30c82 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf6bc5dd5 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xf6c7f7e8 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d690db wm8998_i2c_regmap +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 0xf704998f sdio_retune_hold_now +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 0xf7649307 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf766b9cf dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xf7789654 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf79327ce ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf795fd84 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xf7a2687e user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xf7a4d8b1 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7b8dd71 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c619a2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf7cd1661 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cdfee5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xf7e0347e devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf7f6b0e3 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83a41d7 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8571518 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf85b739e spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xf86880a3 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xf86aa04d sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8828828 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xf893e885 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf8c77324 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf8d4cf25 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xf8d588cf ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf8ebb63e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f3d42b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xf9278298 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93e5296 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL vmlinux 0xf952cbe0 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf979a8df dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf9815866 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a35abd crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xf9c7f91e of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf9e9685a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf9eee3f0 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf9f991d6 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfa0412b8 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xfa110a7c of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xfa171edb genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1edb4d i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa4e91b6 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab5d6dd fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xfabb51a1 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0xfac4412a udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xfac85f6a udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xfad090c5 sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xfad20221 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xfad68dc6 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaed8ae5 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xfaf0c059 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xfaf776d3 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xfafdc784 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfb0f2935 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xfb1dd23b dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb64df53 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xfb666462 irq_of_parse_and_map +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 0xfb8020c3 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xfb878f83 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbdc95f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfbc26a1e pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xfbc775d4 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xfbcd8660 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xfbdee488 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfbeb06bd sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0c059b power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0xfc299723 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xfc31657e tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc413f10 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xfc559b60 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc73f4d1 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xfc8b7839 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xfc8c9e96 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xfc937031 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfc97823c skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xfca3a937 nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfca8b051 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xfcb44a25 dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc94b4b hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xfccf71c8 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfce331b9 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xfcfa6b26 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xfd098ad6 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfd239486 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd324b18 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfd38f501 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfd570ea8 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfd607afe gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfd64a7c3 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfd81fde6 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xfd839582 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0xfd95b46d fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xfd9fef1b nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfdab046c sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc3f183 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xfdc98218 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xfde43519 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfdfec419 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xfe0da379 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xfe1aa7cc dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xfe1e93eb blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xfe2d36d1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfe334fa2 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe708324 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xfe719ce1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe72af07 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0xfe83fbf1 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfe877fd5 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xfe8aeb75 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xfe8cd95f thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xfeb4c783 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff23157c pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff7607c8 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xff844ef7 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffd2f034 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xffd6f450 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xffdfcff5 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xffe084df tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xffeaea96 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xfffd0c2a eeh_add_device_tree_early +USB_STORAGE EXPORT_SYMBOL_GPL 0x07048c3c usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x070abd35 usb_stor_transparent_scsi_command 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 0x21dc7018 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2c074427 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x304d2f2c usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3498fbde usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x510ece6f usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6fe7dd4b usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x913da4de usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x99d9df00 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa9c4b3f2 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb63bacc8 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcae9548b usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd37e3e2b usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd866c66c usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdb53be18 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xddbcbc2b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xec622aa3 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf2933c92 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf799e840 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf9380f5b usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfa34626d usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfa3946de usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfc9dbb11 usb_stor_clear_halt drivers/usb/storage/usb-storage only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/ppc64el/generic.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/ppc64el/generic.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/ppc64el/generic.modules @@ -0,0 +1,5191 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +ab3100 +ab3100-otp +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_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +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 +ad5791 +ad5820 +ad5933 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs450 +aegis128 +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airspy +ak7375 +ak881x +ak8974 +ak8975 +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 +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +anatop-regulator +ansi_cprng +anubis +anybuss_core +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +appledisplay +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquantia +ar1021_i2c +ar5523 +ar7part +arc-rawmode +arc-rimi +arc4 +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +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 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +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 +atlas-ph-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 +aufs +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_fuel_gauge +b1 +b1dma +b1pci +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm7xxx +bcm87xx +bcma +bcma-hcd +bcmsysport +bd6107 +bd70528-charger +bd70528-regulator +bd70528_wdt +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bdc +be2iscsi +be2net +befs +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma180 +bma220_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 +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs-drm +bonding +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq25890_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bsr +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +btwilink +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c4 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +cachefiles +cadence_wdt +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capi +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 +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccree +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-pltfrm +cdns3 +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +ch9200 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8318 +chipreg +chnl_net +chtls +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +ci_hdrc_zevio +cicada +cifs +cirrus +cirrusfb +clip +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +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_isadma +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +cortina +counter +cp210x +cpc925_edac +cpcap-adc +cpcap-battery +cpcap-pwrbutton +cpcap-regulator +cpia2 +cqhci +cramfs +crc-itu-t +crc-vpmsum_test +crc32_generic +crc32c-vpmsum +crc4 +crc64 +crc7 +crc8 +crct10dif-vpmsum +cryptd +crypto_engine +crypto_safexcel +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +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 +cxlflash +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cyclades +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da9030_battery +da9034-ts +da903x +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 +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +de2104x +de4x5 +decnet +defxx +denali +denali_pci +des_generic +device_dax +dfl +dfl-afu +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dl2k +dlci +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-integrity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard06 +dmard09 +dmard10 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83tc811 +dpot-dac +dps310 +drbd +drm +drm_kms_helper +drm_mipi_dbi +drm_panel_orientation_quirks +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 +dumb-vga-dac +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw9714 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwmac-dwc-qos-eth +dwmac-generic +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 +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-platform +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +ethoc +evbug +exc3000 +exfat +extcon-adc-jack +extcon-arizona +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 +ezusb +f2fs +f75375s +f81232 +f81534 +f81601 +failover +fakelb +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_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +floppy +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-edma +fsl-edma-common +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +ftdi-elan +ftdi_sio +ftl +ftm-quaddec +ftsteutates +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_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-gb +gb-audio-manager +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 +gdth +gemini +gen_probe +generic +generic-adc-battery +generic_bl +genet +geneve +genwqe_card +gf2k +gfs2 +gigaset +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goodix +gp2ap002a00f +gp2ap020a00f +gp8psk-fe +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-altera +gpio-amd-fch +gpio-arizona +gpio-bd70528 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-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-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpu-sched +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc_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 +gtco +gtp +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd44780 +hdc100x +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi311x +hi6210-i2s +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-gaff +hid-gembird +hid-generic +hid-gfrm +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-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +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-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp100 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwa-hc +hwa-rc +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hyperbus-core +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-fsi +i2c-gpio +i2c-hid +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +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-xiic +i3c +i3c-master-cdns +i40e +i40iw +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 +icc-core +ice +ice40-spi +icom +icp +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx214 +imx258 +imx274 +imx319 +imx355 +imx6ul_tsc +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +input-polldev +inspur-ipsps +int51x1 +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_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 +iqs5xx +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 +ir38064 +irps5401 +irq-madera +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it913x +itd1000 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb3 +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 +khazad +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +kpc2000 +kpc2000_i2c +kpc2000_spi +kpc_dma +ks0108 +ks0127 +ks7010 +ks8842 +ks8851 +ks8851_mll +ksz8795 +ksz8795_spi +ksz884x +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcd +ldusb +lec +led-class-flash +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +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-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +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-usbport +lego_ev3_battery +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libceph +libcomposite +libcrc32c +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libsas +lightning +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +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 +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2497 +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2978 +ltc2990 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-encoder +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_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 +machxo2-spi +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max1586 +max16064 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31785 +max31790 +max31856 +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max8649 +max8660 +max8688 +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 +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 +mcb +mcb-lpc +mcb-pci +mcba_usb +mceusb +mchp23k256 +mcp16502 +mcp251x +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +md-cluster +md4 +md5-ppc +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-octeon +mdio-thunder +me4000 +me_daq +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 +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microtek +mii +minix +mip6 +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx90614 +mlx90632 +mlxfw +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +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_sound +most_usb +most_video +motorola-cpcap +moxa +moxtet +mpc624 +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_common +msdos +msi001 +msi2500 +msm-vibrator +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6323-regulator +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-usb +mt7601u +mt7603e +mt7615e +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-quadspi +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxser +mxuport +myrb +myri10ge +myrs +n5pf +n_gsm +n_hdlc +n_tracerouter +n_tracesink +nand +nand_ecc +nandcore +nandsim +national +natsemi +nau7802 +navman +nb8800 +nbd +nci +nci_spi +nci_uart +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +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_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_isadma +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_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_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nx-compress +nx-compress-powernv +nx-compress-pseries +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +objagg +ocelot_board +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +ocxl +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +ohci-platform +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +oprofile +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov9640 +ov9650 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-arm-versatile +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9881c +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-kingdisplay-kd097d04 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-nec-nl8048hl11 +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-rocktech-jh057n00900 +panel-ronbo-rb070d30 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e8aa0 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +papr_scm +parade-ps8622 +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 +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-pf-stub +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-cadence-dp +phy-cadence-sierra +phy-cpcap-usb +phy-exynos-usb2 +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-mapphone-mdm6600 +phy-ocelot-serdes +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pinctrl-axp209 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-rk805 +pinctrl-stmfx +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm80xx +pm8941-wled +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +pnv-php +poly1305_generic +port100 +powermate +powernv-op-panel +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +pretimeout_panic +prism2_usb +ps2-gpio +ps2mult +psample +pseries-rng +pseries_energy +psmouse +psnap +psxpad-spi +pt +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvrusb2 +pwc +pwm-beeper +pwm-fan +pwm-fsl-ftm +pwm-ir-tx +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa27x_udc +pxe1610 +pxrc +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-emac +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom_glink_native +qcom_glink_rpm +qcom_spmi-regulator +qcserial +qed +qede +qedf +qedi +qedr +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_wwan +qnx4 +qnx6 +qoriq_thermal +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qxl +r592 +r6040 +r8152 +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 +raw_diag +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-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +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-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +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-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-tango +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-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-dvd +rc-zx-irdec +rc5t583-regulator +rcar_dw_hdmi +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-slimbus +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk805-pwrkey +rk808 +rk808-regulator +rm3100-core +rm3100-i2c +rm3100-spi +rmd128 +rmd160 +rmd256 +rmd320 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rn5t618 +rn5t618-regulator +rn5t618_wdt +rndis_host +rndis_wlan +rockchip +rocker +rocket +rohm-bd70528 +rohm-bd718x7 +rohm_bu21023 +roles +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt5033 +rt5033-regulator +rt5033_battery +rt61pci +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-ab3100 +rtc-abx80x +rtc-am1805 +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-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-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-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-snvs +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88 +rtwpci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +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 +sbs-battery +sbs-charger +sbs-manager +sc16is7xx +sc92031 +sca3000 +scanlog +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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-of-aspeed +sdhci-of-at91 +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-omap +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +seed +sensorhub +ser_gigaset +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sh_veu +sha1-powerpc +sha3_generic +shark2 +shiftfs +sht15 +sht21 +sht3x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +siox-bus-gpio +siox-core +sir_ir +sirf-audio-codec +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skd +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm3_generic +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smipcie +smm665 +smsc +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +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-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cpcap +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7219 +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-lochnagar-sc +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5645 +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-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +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-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic3x +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd9335 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zx-aud96p22 +snd-sof +snd-sof-of +snd-sof-pci +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 +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedfax +speedtch +spi-altera +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-midpci +spi-dw-mmio +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sps30 +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svgalib +switchtec +sx8 +sx8654 +sx9500 +sy8106a-regulator +sy8824x +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink +synclink_gt +synclinkmp +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +t5403 +tag_8021q +tag_brcm +tag_dsa +tag_edsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_qca +tag_sja1105 +tag_trailer +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 +tc358764 +tc358767 +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_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 +tea +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 +tgr192 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-sn65dsi86 +ti-tfp410 +ti-tlc4541 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +torture +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_spi +tpm_vtpm_proxy +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsl2550 +tsl2563 +tsl2583 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uartlite +uas +ubi +ubifs +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +umc +umem +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_gigaset +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 +usbvision +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vcan +vcnl4000 +vcnl4035 +vctrl-regulator +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vfio_mdev +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_net +vhost_scsi +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 +vimc-capture +vimc-debayer +vimc-scaler +vimc-sensor +viperboard +viperboard_adc +virt-dma +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtiofs +virtual +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmx-crypto +vp27smpx +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsockmon +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_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 +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +whc-rc +whci +whci-hcd +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wimax +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 +wusb-cbaf +wusb-wa +wusbcore +x25 +x25_asy +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xhci-plat-hcd +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_gmii2rgmii +xilinx_ps2 +xilinx_sdfec +xilinx_uartps +xillybus_core +xillybus_of +xillybus_pcie +xlnx_vcu +xor +xpad +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 +yealink +yellowfin +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr364xx +zram +zstd +zstd_compress +zunicode only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/ppc64el/generic.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/ppc64el/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/s390x/generic +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/s390x/generic @@ -0,0 +1,12691 @@ +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +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 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x1386c620 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x16920520 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x200fee34 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x33ec2600 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x6f7990b3 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x9133a92e crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x5db4c290 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x730ff810 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xdba8a5a1 crypto_sha3_update +EXPORT_SYMBOL crypto/sm3_generic 0x8d7eef41 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xe9e95284 crypto_sm3_update +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 0x0063c0cf drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00990928 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0105c2e5 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03591cde drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fa11c6 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04986405 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04bd1a77 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ed4caa drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f81bad drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e3482e drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x090b7f98 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x094cb84f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a382ffb drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cbe6e07 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2d628d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0faa1fa9 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1061dd16 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c62b61 __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c5712e drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13fe17f0 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14340712 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14932958 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1540f7bf drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c520bb drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d8aa41 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ee56e8 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ac2597 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c66718 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17489695 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1779e720 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f87de6 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x183efc4f drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1896e15c drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18fa22c0 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b092aea drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c21cade drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c21cdb6 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce788af drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d12fd6e drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d89b66a drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f781d68 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ff118fb drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d1ee3a drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e95796 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23480541 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2527164a drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x257ba558 drm_legacy_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2693e34f drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269e3bfa drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271985e0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27649aa3 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a075c2 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b85eba3 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba312c8 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c287154 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d97f5ce drm_client_modeset_commit_force +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5dd2b3 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb920ed drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f819e73 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3032209f drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31ca8279 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33db4988 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346af805 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a4640a drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34ef84c5 drm_atomic_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35afae24 __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366cc235 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e53535 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ffe904 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372ec208 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37fce058 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388c6d21 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f1424 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39620260 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39687b22 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397f3ea7 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a051f63 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b219122 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b920d4b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c09767e drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c122d6c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4f47ce drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7cf0fa drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d268b26 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd18a08 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec08f4d drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f4f9dee __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f7bfe61 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd986b3 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x418d8ec2 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c9018c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42662fab drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d73d3a drm_gem_object_put_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43edbeb5 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43fa0310 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c80683 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4572876f drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45928ad8 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45954a9b drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d8b32c drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e505fb drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48838d69 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a896d9 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9162b2 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1411fe drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c4154e6 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d03718c drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d22b807 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2a7a32 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4909c7 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8201bc drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8d3193 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4db67a08 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df61fab drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0280b6 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e095f11 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edfe9b9 drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f159d59 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fee1d95 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50451958 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fc3803 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5206427a drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521c94e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52334d92 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52658f21 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526c0452 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527e3205 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e7578e drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b4e93b drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5710ae5c drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e816bd drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5935162e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a137b40 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4cd2c3 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb0dc9a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d107e1b drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5062b9 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5fbe3a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df6edf0 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f750ba3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3a33f __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60373db5 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a36021 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61caa1a6 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64075359 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642c4e76 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6483aab9 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65078f59 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65127595 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655bc9ce drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661bd33 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67117bc5 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6835dde9 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68fb6923 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a5415a drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a32d771 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9d8de3 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c166aa9 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d135b3a drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0bbabe drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e979c67 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6edfc62e drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f653be4 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa421dd drm_legacy_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd66821 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7118b338 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7317fa93 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b661cd drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75623761 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758d85d6 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76182e4b drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x761f902d drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7621e59c drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x762a52e9 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7736a8b7 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77530e9b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fd6cfc drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x787925b3 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x789893ef drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79aefd45 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b98662 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ecdff5 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a91b7a6 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af56a99 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b982195 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc658f5 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebf8b23 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8003054a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80112baa drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80935c79 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a9eeeb drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x813d4a3b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815cadec drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a23c70 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828b2217 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83061945 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8333eb87 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84a4be81 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853eada1 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8601974f devm_drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866d91c1 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d85a24 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ffd42 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8733cdcb drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8942bdc2 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9f18c4 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1944fa drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2a17d8 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3864f0 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6d6a89 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cad4570 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ccd391b drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e65b5ad drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee07835 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f02696e drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f42073a drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9029495b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90429884 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905af65f drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e90c6e drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947ae5e4 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9a186 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95feb39f drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e54bf7 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x974146b7 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x974b783f drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979df9c5 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98cf5aa4 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9901b94a drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e46ad3 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0ab703 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acb6c78 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b34a559 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b36ec1d drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6d47ca drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c73ab14 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8d1457 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5291fd drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d6f6835 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd26089 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e56931a drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7c8a66 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea8fa60 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed3738b drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0067a27 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa017203f drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0496ffc drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa09b276a drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b9262a drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0fd06c4 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0fe3e64 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cce7cd drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e4bf0c drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33ab01d drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3604fad drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a570e7 drm_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e33916 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4194728 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42b1b2e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa487f393 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5c6151e drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6fff66c drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c08831 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8dd1393 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8fb44bd drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d9cfd9 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa96eeaf drm_dev_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab3a1f8 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab89084 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac39ff3 __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab623716 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf6dcd6 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae2f8495 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee71bba drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee8564f drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6cea1d drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf92a67b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf95ed9f drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe51fea drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05f6231 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06e2136 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb08a7fe6 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a08828 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e84875 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23bccbc drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26bf25d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30d18c8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36291ca drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3d3f687 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb418c255 drm_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5cee4eb drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ff143c drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb60f8917 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb643a35c drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67f5598 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6cbc207 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f5303d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb788b51d drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de7124 drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb877985d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b3ab85 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdb3f5 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f2a0a5 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb92a0007 drm_gem_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba2f8c9b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4dfc21 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa684ec drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbadbe7a2 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb311323 drm_mode_create_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb50cf05 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb548ad9 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3810a8 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd413dff drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde3df38 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe12d006 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8d321e drm_connector_init_panel_orientation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf61e207 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfabd9d9 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdb5544 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff49e87 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc098d0ed drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19369c0 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc25f3e50 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a1f8a2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc307a10c drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a67e94 drm_atomic_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b515dd drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3edc7e1 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5992401 __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6211e8f drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7336e5f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77f2d32 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc782bd23 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca81f09b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa156f3 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbf729ec drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc395e8d drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca94dbc drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccca1ec5 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd02cbba drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd8b879a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf452baf drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfab20d9 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18dec6d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e4e4a1 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d9825f drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd630da73 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6714be7 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96b425a __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda6c8e08 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda882c3d drm_bridge_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac9bd76 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc96eb10 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0f278d drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9e0d57 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2b261c drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfca8a40 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfdaeaa1 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00bea84 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1823cf1 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e4c71a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2543eba drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe272edde drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe280808a drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d85b62 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41b990d drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe467892c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61ddd9d drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe660765c drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66cc693 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe714a5ff drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81d8443 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83159a2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9aee9ab drm_atomic_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeadb96e5 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcbd82b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1a7e1a drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeca143c5 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3b6bc3 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8de0de drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede2149c drm_color_lut_extract +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0b3e12 drm_atomic_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffecee5 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf03f4e19 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf18e1cc0 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b1ef38 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e08048 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf440cfed drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5dd797d drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8252665 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95e7574 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa274fdd drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2d291c drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7f556f drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb22a684 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0ccfe9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc651fe7 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0de52d drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda66f84 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5d901b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff726d6f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x014507f0 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025f6bff drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x036d6937 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06807780 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ef032a drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a0f329c drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa02462 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c49a46c drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb934a6 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e85450d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb85a73 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x103beb92 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11301ab8 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11899fea drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c2e2b4 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145317b2 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161c5d62 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161edf17 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x178256fd drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b3da4e8 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b6ef28f drm_fb_helper_defio_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c3da2fd drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ca9bd6d drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd08b1e drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f98903d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20041daf drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20c21317 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2699911c drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a2bc93 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x291982c7 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a09d42 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ae0225e drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba019fb drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd46502 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c3304b6 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ccdc0c6 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de15d70 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3ca9e7 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ead2b27 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335358cc drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x338f30dd drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34131df9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3499c262 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3503e680 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3888224c drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392872de drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a388a51 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bffbd51 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d86cc72 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e8738e5 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed6e0a8 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4120f220 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43ff85c5 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x441d8246 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x474a890c drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b62a57 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bcfedeb drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d1e3083 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d7c868d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1b5a39 drm_fb_helper_fbdev_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4edd6b67 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50b748e5 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54e5ba2e drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5503b6a9 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b6c970 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57a55edf drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x593b20cc drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a74e526 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e239e2f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e49bcfc drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5efb41b5 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f4c9434 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6022ecd8 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6154269c drm_fb_swab16 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61574c4f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b4ca31 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626632aa drm_dp_get_edid_quirks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62e90068 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63106ada drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6482f047 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c46001 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6717d93e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b220aea drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b7da74a drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c44ecb5 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e110be4 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e271749 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec029cd drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7021f7e2 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71870c76 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ec2d06 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72ae3817 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x732fcf27 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75f09723 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76852b4d drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a58db0d drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c5417ce drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c92cb0f drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb0a437 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eea39e6 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc1dcca drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a23ce2 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81d30886 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x820e16da drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82400026 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d2d4c5 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83e147cb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85619391 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8633abb9 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bcb44c5 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e670d29 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f1df36f drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x902f02f5 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90babc8b drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920a925b drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920af104 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x928444c1 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92db99f5 drm_gem_fb_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x936e41bd drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94837e62 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94be683a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x956953fe drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a292d9 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9617aa4c drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c30b01 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x975c38d5 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a78e86 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9be54acf drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ccb9c9f drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e94f695 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ededd1f drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa03787fb drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13428a5 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1a82655 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27aca69 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3be7d6c drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47125b7 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6f9158e drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6fededd __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6ff9496 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab2086e8 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaced22c0 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad74751e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeeb030e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafbc30e3 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb032c65b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0ffcded drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2358ef4 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb308472e drm_fb_helper_generic_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4569cb6 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d38ec0 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51a629d drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb88d650b __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb89e1b96 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb93e2b91 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd61a73 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcf6f091 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe6b0cd7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c1cafe drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc537dce7 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc91ad2ad drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d143a1 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9fb69ff drm_fb_helper_fbdev_teardown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb53efaf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd00bd4bd drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd32a2cb5 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3984ab4 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b83dbc drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b93b68 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b7d503 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda83346d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02abfbb drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c6e651 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1180bfa drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4495cc2 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe57a6206 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5888b96 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe78e6000 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7ec0202 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81153fc drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe83a35e7 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c6a745 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb139a54 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec373337 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecb51915 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf005f773 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf048ac3e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1022623 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf14edce3 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf222794c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2329e89 drm_dp_downstream_max_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab6c51 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c1a6e1 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6069161 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83ed819 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8595449 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8668190 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbed6e4e drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7000af drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd27466c drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd5d578 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffe5a07f drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x01eeb234 drm_vram_helper_release_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0950737b drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2205856f drm_gem_vram_kunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2e8e38ce drm_gem_vram_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33c42138 drm_vram_mm_file_operations_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x428fbf67 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x525bbe42 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63130cd6 drm_vram_mm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7448447e drm_gem_vram_kmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7e1f84f2 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x896499ac drm_vram_mm_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d3cf0e2 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9d470763 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb2c4b966 drm_gem_vram_driver_dumb_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbaa1336e drm_gem_vram_bo_driver_verify_access +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbeaba459 drm_vram_helper_alloc_mm +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe4841436 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9aab4d6 drm_vram_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xef56bc29 drm_gem_vram_bo_driver_evict_flags +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf5767bd7 drm_gem_vram_mm_funcs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09665088 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f1f8bf6 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x159fda80 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15df3116 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17530ac0 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bb6545a ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ebb6174 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25b0735b ttm_get_kernel_zone_memory_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27af383d ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39e32ec4 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cc8a060 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fcbdf6a ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40fa59bb ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4157c4cf ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x415a1e42 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49d97cce ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4be10c66 ttm_unmap_and_unpopulate_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c393d96 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d892592 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d92374f ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e059e55 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50e51cdb ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56c22d9d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b58eeb3 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62092892 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6324b5e0 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67151a45 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a89746f ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75a8f954 ttm_bo_pipeline_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7824fe80 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a9c7976 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82dee490 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87c401cb ttm_kunmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c123552 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c7ef260 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96ab338b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c4d8c39 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa00507c5 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa33ddd2b ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3f71dbe ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab3a2531 ttm_populate_and_map_pages +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac0e50d1 ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac60cdea ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacb30149 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xada7b83a ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb060a378 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3f24036 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb550e50e ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb833a96a ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb7a72a0 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc006b566 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc04d8ce1 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0ca1bf1 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc70dcfff ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc77f319d ttm_bo_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd16d6f3b ttm_kmap_atomic_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd17d858b ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddddb1e7 ttm_check_under_lowerlimit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7aed48a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7e2b214 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebaae211 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf865a6cb ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8a214b5 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6ca7ba ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe60359a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x442c972b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x97c44e72 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc9588a41 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0daafcf5 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2fd382d3 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x56b8c355 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x59728a98 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7420ff6f i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x80cd5059 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x84eabad8 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x86210152 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8d1bf0e1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x92458339 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x928fa2a6 i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9f283be1 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa139c1b4 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa2217433 i2c_release_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xafc3bb1b __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb0dbbce9 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb6ce1528 i2c_use_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc57ea316 __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc863e241 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd2376bbb i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd6b5a163 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xda1a59bc i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe9d7a84d i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xeee9cbc3 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf144a6e2 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf3b2dfe8 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf86c2cc0 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1527c1fa ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ad97bdd ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37b185ea ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x467b5c41 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b6d7545 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60666b1b ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c06bcc2 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8eb19803 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa5331440 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafa20492 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4e0e308 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xccd36e8a cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf39a7a0 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdddf74be ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6fdb886 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe76d6fbb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf489591f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd3ca0f3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0113aecd __ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0199e9d1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e2746d ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0273337a ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02e7873c ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x038ea8c8 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04527123 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x058912e5 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079d9140 ib_create_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x087857e9 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b988f10 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f04a7f4 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f1bd990 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f86acfa ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x120c3f9f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x166b8a83 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1769414b ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1805bd8e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19946041 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a8250a6 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cf23a98 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e30777b ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x205e6a46 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215d9f48 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21feffb0 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23b1f5b0 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2556b17e ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x268bd3a9 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x277dfd89 rdma_restrack_uadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91bb33 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0fac86 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f20a92e ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fdfd8e3 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30dfd702 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3208f2d6 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32ae0a47 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33d72b37 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d8057b ib_port_register_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d0c15f6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d52c010 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e285849 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40652b4e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42826bee rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43ab76aa ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c418ec ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44006cd9 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x454c2f85 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45ea98dd rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x481965a8 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4affef69 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bec61bb ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c1bf9e9 rdma_create_user_ah +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 0x4f5bff19 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff2d178 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ca8824 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x549fd4bc ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d3f3d7 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ecc67f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a035a4d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b6cd077 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bd4b062 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cd46ac2 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e27ccf3 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 0x661a0ad3 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67ff962c ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7a6862 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df0c9cc rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e66b84f ib_alloc_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea20f3a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ec9ed9d ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ee98933 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7218585d rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d3f095 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x732250aa ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74deb246 rdma_restrack_kadd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74fdb4d1 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763c364c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ccf945 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x773c1531 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77a52b8e rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e1fd31 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a506632 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b56b034 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d2028ea rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d7d7aa1 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e851128 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc7047f ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc78ba4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x802b8f5e rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x819b8acc ib_destroy_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85cfb10c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8994c649 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ab6bde5 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b39ea63 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bf66797 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c89b7c4 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d04c0af ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1ebd95 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc3e08e ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92d7ab47 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94c2f136 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94f07744 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950e7dd3 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x952b1fd9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96820165 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x974bb470 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99410ab9 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b23286 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9adbbcb3 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b6f2b37 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d5c1d49 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e859147 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09a45dd ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4296ba5 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4b29658 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa557e5fb ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5c0aac4 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8967c02 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa783dcd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa84cf69 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab5237b3 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1f28b1 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad80d3fb ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae79179f rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaea8bc42 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9bff5d rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb000d631 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb257d2c3 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4189ac1 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb423ea0f ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5324ca9 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb59d3b82 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8652a3e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb87d5f23 ib_free_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94faf20 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb1c1593 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe7595a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbfa66d9 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcadb1ff ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf05721e ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0611dfd __ib_alloc_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ab6198 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ed4cc5 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3dc39ab ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3f01c79 ib_destroy_rwq_ind_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca5ad5af ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca96c43b ib_modify_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca9cb6b8 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaabd45a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0fae871 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd106cf83 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1717253 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1889dd8 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2e6b1d3 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3c400fa ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6122f26 ib_process_cq_direct +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 0xdb7b6c13 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb7ef4f9 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbfba0b2 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc5d08a7 ib_port_unregister_module_stat +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddd02573 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde16fdef rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6cbacc ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde78db5a ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeb40cb9 ib_sa_sendonly_fullmem_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf962914 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1926ea1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23b201b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4222cde rdma_restrack_set_task +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe627576b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89fc58d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ceb556 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec367733 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecd69d48 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb7a788 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf07262ce ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0c95c2a rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1cb3868 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf25eca96 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38c929f ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5ee7cb9 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf63738f1 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7402730 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf920e4b3 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94241da rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaff2541 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2f964c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbaa7343 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd7c62e5 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff9f402b rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11ec9d6f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21bc3c7e ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x24053e1b uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c389eab _uverbs_get_const +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d8956d1 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e0ba2e0 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x50df0ffe flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x539765c6 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x632a6425 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x66b2b0c4 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6bb6c1e7 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84418919 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c5b07ef ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8fa9dedc ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x97921b4f ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bb5a41a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e0cc768 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4b01c7c uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1eeb660 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb78e7d10 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc082ee64 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc4eb17ff uverbs_close_fd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd46af84c ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9116bb4 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe8279cae uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe893dbc2 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeeadbd1e ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0d32290 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf42e51aa uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfdd6075c uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x022b5734 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x042f3961 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a5cffff iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79c443a2 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c538856 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8333c2dc iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb09167a6 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe1fbbb46 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x001faf72 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ce560e6 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x115247be rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1724b496 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e7b2a2b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20870e43 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x225db018 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x272fc5b4 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3736d16d rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37c9e041 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4545990d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51b0cc34 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5607ce7b rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56165b96 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68a1cf6d rdma_is_consumer_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x694639b3 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70423f86 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70e78716 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73218ea5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e5160f2 __rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ef7a74b rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa29cf313 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf18c784 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb054b385 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca7bd219 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc80101e rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0f7f3e1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6e96e2f __rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9128540 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa9b15b6 rdma_notify +EXPORT_SYMBOL drivers/md/bcache/bcache 0x298f22f9 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x30cc56bf bch_bset_init_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3252bf55 __closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x32691456 bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x34f8e022 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x407edad2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x47eb1d6e bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x55b72831 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5d27d8fa bch_bset_build_written_tree +EXPORT_SYMBOL drivers/md/bcache/bcache 0x605f12f5 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0x742923d8 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x771ebf74 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x79711460 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0x9c79f12f __bch_bset_search +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb61edea2 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb9cef37c bch_btree_iter_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xced5fd02 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xe3c17af1 __closure_wake_up +EXPORT_SYMBOL drivers/md/bcache/bcache 0xf5bdf528 bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xfb8b580e bch_bset_insert +EXPORT_SYMBOL drivers/md/dm-log 0x1a768f66 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x33733d88 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x3e6e785f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x518baa4a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x04a81dc4 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3e78f491 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5be52dae dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9ae62cc2 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaa12fd7e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb0c6b350 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x03a9c41d r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xeccff295 raid5_set_cache_size +EXPORT_SYMBOL drivers/mfd/mfd-core 0x06abb585 mfd_cell_enable +EXPORT_SYMBOL drivers/mfd/mfd-core 0x9380dbdc mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x9917aa0f mfd_cell_disable +EXPORT_SYMBOL drivers/mfd/mfd-core 0xd06a11ed mfd_remove_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0xd9a5ec08 devm_mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0xfdf33486 mfd_clone_cell +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0691c5c4 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a8eff63 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138a87d4 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13b3af73 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17e6693d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x181197ac mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a515cab mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a7157e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288cdc8b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2def6cc6 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x367fa40c mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41b97e53 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45812e51 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a953ab5 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x506a178d mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x615f552f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682fb781 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6857c1be mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5150eb mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71781d5e mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79125166 mlx4_get_eqs_per_port +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 0x809c0ff1 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x884f96fb set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89e495a9 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b9e37c1 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1b88213 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37ccae2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb07fbb0c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2f2f0eb mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb64dc22e mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b4fe48 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc30be4d mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee61c2b mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1fbf658 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44a6cb2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9aaaaf5 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca5d375b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd000f79 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6dd5ff9 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd887a0de mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe24c4454 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe280f34d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec18cc99 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec4fa90f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09707167 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd9cc8c mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eef3c9c mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f3512de mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d9d022 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1175f5a9 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137ce825 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168c639a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x184ed0bd mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c07580 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7855ab mlx5_core_create_mkey_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c36c23f mlx5_core_create_tir_out +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf79173 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1df377d7 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e071fa4 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ae4f99 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x221968c5 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27fa4d63 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x281ffed8 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a1b232f mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af35fd2 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf9635f mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32705594 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351dd7d0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x367fe2c6 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3757f1e3 mlx5_core_create_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37651b47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37baac3d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3800118e mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d6e6e1f mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dd3a94a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e81564b mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8a8bc7 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e960390 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eeefa24 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40428c89 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x409aac5a mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42bfbd80 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43aef7dd mlx5_eswitch_get_total_vports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b98f4f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45de0af4 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46150cf1 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x467f6acd mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48a32f65 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a95de34 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d134190 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f4c0233 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x507f174b mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50aef8aa mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5634497c mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5676777f mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e6fb58 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57acc3bb mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59ada7db mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cedc31c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d842ff7 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f7ef238 mlx5_cmd_init_async_ctx +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 0x624df193 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673914b0 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa9d03f mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d9600f mlx5_core_create_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x776d990b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7890bdc4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a8d9a82 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d00f540 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x820ae9de mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827d2627 mlx5_cmd_set_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852847a0 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a25e22 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x889c21b8 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b05f0cf mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bedf1ab mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeefaa0 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912aff97 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x917bfdd7 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9190927f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x949add56 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95bafd9c mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96407af4 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 0x99fb1a51 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99fc0637 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d024715 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d56c59a mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa32d69dc mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa363a700 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d039ed mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xade454d8 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae91af06 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae9ea383 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafde5022 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0732bb3 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1289cb5 mlx5_core_destroy_sq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3418aca mlx5_core_destroy_rq_tracked +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb38e8c07 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5f2e917 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6144d5b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb80b9f8f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92f2b49 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbf3f948 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39a54b3 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc41b8570 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce128d75 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1d6fce2 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3fcfe5d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4dbe505 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd54c24d2 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd3a56d4 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfff3381 mlx5_query_port_ib_proto_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2fd90b5 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe51314cc mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe65275c9 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe794d960 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea36bf57 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaac5e55 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee89ecd4 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef01bb32 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00075ea mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0bd7499 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf30cc39f mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9570e92 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb79019 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x4507777f mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02998acf mlxsw_afa_block_append_counter +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 0x0bfc1956 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0dd8caa3 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e2b5842 mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f93326b mlxsw_core_event_listener_unregister +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 0x267885de mlxsw_core_bus_device_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 0x2decde87 mlxsw_core_fw_flash_start +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f123442 mlxsw_core_kvd_sizes_get +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 0x47659df6 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47fd6eee mlxsw_core_fw_flash_end +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e2424ee mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ee13e17 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a5156d mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5fcf9bb5 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x632314f1 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6687c99c mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ceb6205 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x756767ac mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76a65e3b mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x78d0df38 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f728039 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 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92a6b08d mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97b5a3d6 mlxsw_core_skb_receive +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 0xa3d0d2b6 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa9d1aad mlxsw_core_trap_action_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0717797 mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5176438 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbeac05cd mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc03fd6bb mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf97a21b mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +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 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeff4950 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe23aa988 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xedfd246d mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf76df3e2 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x459b43d2 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe78146a0 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd2575f17 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x01049385 phy_remove_link_mode +EXPORT_SYMBOL drivers/net/phy/libphy 0x02d27743 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a0d1756 phy_write_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x0bd8e59c mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x1081c17e phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x12e8f6d0 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0x13c2d93e phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x1437d278 phy_modify_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x1492d5a0 genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x15fb7a5c phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x186206a4 phy_support_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x1e2ad28b phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x1e494f43 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0x25ef6d99 mdio_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x28e70d2b mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x30d30490 phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x319502d7 phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0x3237fb3a phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x32c60402 phy_read_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x32d0f954 phy_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/libphy 0x33e2c1df phy_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x348fd433 mdio_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0x3789e3cd phy_set_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x39b327c9 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x3e7a24cc __phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x443505a0 phy_ethtool_ksettings_set +EXPORT_SYMBOL drivers/net/phy/libphy 0x49e068a4 phy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x4a9eca7a genphy_read_abilities +EXPORT_SYMBOL drivers/net/phy/libphy 0x503219a3 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x5195a7e8 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0x539cfbc2 genphy_read_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0x558c5aa8 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x56aa033b mdio_device_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x575d6228 genphy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0x589b0208 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0x5a142911 phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0x669f9460 phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x6cbae180 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0x6ee5b33f phy_request_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x6ef6524f mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x736112ab phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x7685db8a mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0x789ac619 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x7e922d92 phy_set_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x823b66b3 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x82db615f phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x849b635a mdiobus_register_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x85f1ba47 __phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x874dc9e9 genphy_write_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0x8a142b78 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x8a663cd9 genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x8fb0092a mdio_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x90a47828 genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x90a9cf60 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x96246e42 genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0xa1dfb8be phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0xa2f2afe9 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0xa35f42d5 __mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0xa7dfd6dc mdio_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xab7ed035 phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xb0f97cc3 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0xb3f22677 mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0xb45d922a phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0xb4dd7928 phy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0xb8305442 phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xb9eeb69f genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xbb39bbca mdiobus_is_registered_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xc04eaeba __genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xc24cd880 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xc58db74c phy_reset_after_clk_enable +EXPORT_SYMBOL drivers/net/phy/libphy 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xc6b36db9 mdio_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0xc8e8e113 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xc99d230c phy_ethtool_nway_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0xce2363f7 __phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0xce36f335 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0xcf38b174 phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xcf391699 phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0xcf55db72 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0xd070d084 phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xd076ffba mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0xd09c01e9 genphy_config_eee_advert +EXPORT_SYMBOL drivers/net/phy/libphy 0xd14fa0bb phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0xd251f8ba mdiobus_unregister_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xd28daade phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xd70ed7e6 phy_free_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0xd940feda phy_queue_state_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0xdb786e4e __mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0xddf086ad mdio_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xe08de73e phy_ethtool_ksettings_get +EXPORT_SYMBOL drivers/net/phy/libphy 0xe2e303a1 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xe672aa50 phy_attached_info +EXPORT_SYMBOL drivers/net/phy/libphy 0xe6fa392a phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xe7f09b8a phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0xebc4267c phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0xee301c88 phy_advertise_supported +EXPORT_SYMBOL drivers/net/phy/libphy 0xf0ab0f91 phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xf16d7a41 phy_modify_paged_changed +EXPORT_SYMBOL drivers/net/phy/libphy 0xf1ea5eb3 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0xf3873705 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0xf41ffadb phy_validate_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xf68c78e3 genphy_read_lpa +EXPORT_SYMBOL drivers/net/phy/libphy 0xffb27712 phy_support_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xffba3437 phy_find_first +EXPORT_SYMBOL drivers/net/team/team 0x0fb784d9 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x1dfa9962 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1ed78666 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7f47d3c1 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x8a1faaf6 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x9c6b9a8a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xf2e084b5 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xfa215007 team_options_register +EXPORT_SYMBOL drivers/pps/pps_core 0x1fe5a50c pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x309b70b1 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x69b45756 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd22182b4 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x05fd2990 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x1639ba18 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x240957d2 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x61407a47 scaled_ppm_to_ppb +EXPORT_SYMBOL drivers/ptp/ptp 0x90c60049 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xbff5cbd3 ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0xfc92fc2d ptp_clock_event +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0bdcc010 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0fec995b dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x137a0b88 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1482a731 dasd_set_target_state +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x23803d3a dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3833bb9f dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3b7e1932 dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x43bf9ebc dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x44424a7c dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4876b1eb dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4ec1a0c2 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5820fcd3 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6353e2ea dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x63c318ee dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7115a014 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7c6da494 dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8a2022cb dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x90c24249 dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x93ada764 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x965a685c dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x99ef20cb dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9b5bdb6a dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xaec2af47 dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb6536918 dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xba0406af dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc55dbc07 dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc709df0b dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xca2b91b0 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd16a7fdc dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd4471042 dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe1813df3 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf0eb7242 dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf64365c1 dasd_schedule_device_bh +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 0x000ef0fb tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x01688b4e tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x034b1956 tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x04187cdb tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x0b230bc1 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x10f355cd tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x13aec2e8 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x1bb12c1d tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0x1c450d3d tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x1e16a111 tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x257795d4 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x2a9df5da tape_generic_pm_suspend +EXPORT_SYMBOL drivers/s390/char/tape 0x2eaa3627 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0x324dd4ac tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x3d837f29 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x46629250 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0x4674ab20 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x5fa5e022 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0x63e5453e tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x6430231d tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x665fda14 tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x6957c4ab tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0x6e353ba3 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x747d4ceb tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x7ffd8cdc tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x8ea109c4 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x8f364ca8 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x99627c48 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x9a94f11d tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x9ec90372 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xa0da3397 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0xa2f90ead tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0xa4344fd5 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xa99907d1 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0xae434ec3 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0xc5ef0819 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xca9a3925 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0xcff6a822 tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0xd1403bb2 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0xd3153f3d tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0xd62e0962 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xda074bc4 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0xe9846655 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xecd0ac41 tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x0018e86c tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0xcdc51e3e tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x39c406f4 register_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0x5f123d90 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x42d9a807 ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x45ea3067 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x49659d00 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x721ee474 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x78cf56c9 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x9e12b14d ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe86e1ce7 dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xeca5d14d ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/qdio 0x3197a9c0 qdio_get_next_buffers +EXPORT_SYMBOL drivers/s390/cio/qdio 0x66cc9c05 qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xd5708930 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/crypto/pkey 0xa2396123 pkey_keyblob2pkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0a6c9aa6 zcrypt_queue_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0ff067e0 cca_check_secaescipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x170d6b33 cca_sec2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1b7996ba zcrypt_queue_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x20a6cee7 cca_get_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2be1f6aa ep11_key2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x326ce0d1 zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x35b003e7 zcrypt_card_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x3d0032e6 zcrypt_queue_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x42282502 zcrypt_queue_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4bb8a363 __tracepoint_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52a39222 __tracepoint_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5ac1b821 ep11_check_aeskeyblob +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 0x7dd52fc2 ep11_clr2keyblob +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x99db25d4 cca_check_secaeskeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa3489692 zcrypt_queue_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa84c5d04 zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xad6e9564 zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc23843b6 ep11_genaeskey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xd170a9b1 zcrypt_card_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe1bd0134 zcrypt_card_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xeb90106a zcrypt_card_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee883aa0 zcrypt_msgtype +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb +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 0x28d3cbe9 fsm_settimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x30ab97c9 fsm_modtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x39209ed5 kfree_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x4947f4b3 fsm_deltimer +EXPORT_SYMBOL drivers/s390/net/fsm 0x5bbdc3d4 init_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x75223679 fsm_getstate_str +EXPORT_SYMBOL drivers/s390/net/fsm 0xe8ae8e7a fsm_addtimer +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x5402f868 qeth_osn_register +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x970e7794 qeth_osn_deregister +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0xd297b167 qeth_osn_assist +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d6342cc fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3ac94e9b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3f185412 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5749926a fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7dd90551 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f0ad515 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb39ac943 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba496cae fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd3f24d74 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xea14bde7 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5c6b833 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x018d8d57 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x040e6bca fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0682c594 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06eec28f fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09a86d8e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a3cd677 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b4465f6 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x103c54a6 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15a2c48d fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18d24df6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d48215c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2473531f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34ae4cbc fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35908af1 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37679f14 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3afade94 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3edfb01e fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fd67266 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46625123 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49f86554 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4af1011d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d1b15da fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56e9bb3d fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58e91a6f fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58ec25ee fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64e1220a fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e047d3a fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7569cfaa fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77adb11b fc_linkup +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 0x81d90491 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ef2ee75 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91998796 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9720d9ca fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a3bda0b fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa06623d9 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1fee926 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ff7c70 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8bb6cb4 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc38d390 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc05646e0 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1dec69a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a25360 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc72626f9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc85a1c05 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcefb1bda fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3ab5390 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd534e8a7 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd82ea762 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdab88a54 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb315f85 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcf4beb4 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf30b1fd fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b341c4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb415ccd fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeec1d1e5 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0f7ba65 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1808218 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc9b9eb2 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeeb245b fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04cae1f3 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1afdeeda sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd5708943 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/raid_class 0x14a1021f raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x219712e7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x69540cb9 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x01d4f8e0 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05ef3722 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x09061c87 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c8dcc0b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x290af401 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43cec87f fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a17c37d fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6dcc37ea fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70c7c7ce fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x759afc47 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93dde858 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96ffe7e6 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd08bbe1 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf8e2ec6 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc626400d fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe4f56dcf fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0694b5f0 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07e013bf sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x115421d5 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1466a229 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18ace5b0 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cd57bca sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x203bbe2d sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a4d7fe8 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31e08d02 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x374653d6 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x374d049f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a27b3a1 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b92b1a8 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cc81eb8 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x503d9ca5 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52fee305 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b4c1c5e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f267cdb sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74d04f11 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c5c00a7 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa02fe6e3 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa80f4e8a sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaced669b scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1b59c98 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddce5b8e sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5d7cc6a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9e94e99 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef6d6dd3 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0f99afa scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0fac2808 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x14041578 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2a8f76be spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb209b9be spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe81791e2 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3e160071 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4d994c13 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd4fa2bf9 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd7372a6f srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe1f13f92 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03b4751f iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x095a3632 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0abc628e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15c59a7a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x203c836e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2bf40b96 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c161cfb iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x300d3c0d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x324d23ab iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37162396 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4604f345 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a691952 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c77c188 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cb6e562 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x615c06c4 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61898622 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61a552fb iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x649d26f2 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6612b6e7 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a2a3ac0 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c84afca iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x720d5cda iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90e31f05 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97d6adb9 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ad636de iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa218be25 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa47a2b08 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa56fd3d8 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa744ca7e iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaba5a012 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb92bdae1 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb96894f8 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbacbe579 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd97f4f3 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc277fddf iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0bf6669 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2e77390 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc832c0c iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0754a14 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe71b057b __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecad8ae0 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0916c88 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf26b5f39 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf585a294 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/target_core_mod 0x02212c29 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x03682d0b target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04ac11b8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cf3ce36 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f5a5715 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x11648105 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x11c2bc00 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1599cb41 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x173c34b5 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x17e05d41 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x1af143ee transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b62f16f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d20694a target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x25ca8f4b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27e87764 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3120b9ab __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x33fbbb49 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x3461f99b target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x398fdd99 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3be11e82 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fc1cad4 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x40413267 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x44b1b84e sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x47d712f2 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf61183 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5086e408 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x551becca target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5832bfa7 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cc077d1 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x61533631 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x63361a1f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a70ba80 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d9af0f7 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x71a58f6b target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x745f6ce6 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x83183b88 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x91c2f585 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x92942d2c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x92b3d6af transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x9373bb4a transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x95042c25 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1fbb58c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xaceb1552 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf7ee0c0 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6d445e2 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xca7e6319 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd26c41b2 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd43131a7 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xd530903e core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c76f0b target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd63d887d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xd93b582c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xdceb56e5 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd5978cb target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd81bbec core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xddd183e2 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe06300ba target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0633134 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1b00187 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8322476 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xec05d616 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf065d0bc core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf319c47b target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3b77940 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf44598ce passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5d942b3 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7beac6d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf994ac4c transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc1550b9 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfebc98ec sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfef3cb72 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x03b34bd6 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0d8ea287 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x1d076c9a uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3c278924 uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x50679c6d uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x80c48fba uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x91de00b0 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xb9d5a375 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc331a052 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xddf5f2d3 uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xf10d9b25 uart_get_baud_rate +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0cf149ad mdev_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x13c93811 mdev_from_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x145d5a3b mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7846e3a0 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8547bf66 mdev_get_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x878b2829 mdev_set_iommu_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x91ab7d8f mdev_get_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9ebf4d30 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcb179298 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcdf88f2c mdev_set_drvdata +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe19e5980 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf80330cb mdev_uuid +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 0xb520f104 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xc4d1d5f4 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xccb7a6fc vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xf0ba2b82 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability +EXPORT_SYMBOL drivers/vhost/vhost 0x3810873b vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x92064afa vhost_chr_write_iter +EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x281ded92 cfb_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xdc2fcefd cfb_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xc1e34559 cfb_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x58e267fc sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xacd04493 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x0048c291 sys_imageblit +EXPORT_SYMBOL fs/fscache/fscache 0x00e86f16 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0954ddb2 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x2be4b033 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x2df10a53 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x37bc3242 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x42b1b99f fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x4b087424 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4cfbbca3 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x510f6c11 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5b68d919 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x61adb58e fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x6446afe2 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x6aed80e9 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x70667f79 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x77154e09 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7a770642 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x866bf05f __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x95f5893b fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9b726f39 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x9fcca4a8 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xa8485754 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xade76c1a __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xb1c300ce __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xb217e500 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb61eefd1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbf778bcb __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xc792832f __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xc8376b6d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc9a12c07 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xcf9eab26 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xd022f439 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd5348360 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xdcd5b211 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xe1bd54cb fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xe433acac fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xea5b3d16 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xeb03f56d fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xed549ce6 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xf03990cd __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf53e219d fscache_op_complete +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x2217a65e qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x29ded403 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x6e1b9b6c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x8b47bbb2 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9a279450 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf9f9e3f7 qtree_read_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xc440541c crc7_be +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xfa0da958 crc8 +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set +EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get +EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create +EXPORT_SYMBOL lib/lru_cache 0x93021291 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put +EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd1a7210d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find +EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x0f3dcf29 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7f7bbb7e LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xe06ae6d6 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x38e157a7 objagg_create +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL lib/zstd/zstd_compress 0x00441ef6 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x040c92d1 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x065b14f3 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0b9a9379 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x17823f99 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1ffb27f1 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2411b496 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x273a39e7 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35adbdc6 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x48bfae8e ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x50d289a3 ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x515ab572 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x57b1012f ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66a8b7ab ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x785d10c3 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x84e61bae ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x8f2f596d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x97b3b7ca ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa88b0af5 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc2d4374c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc83660bd ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd1ad98e7 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd967de6d ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdc157266 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdfb596f8 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe02d4179 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe14f9e35 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0xebe6a8a6 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf2068346 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff471430 ZSTD_compressBegin_advanced +EXPORT_SYMBOL net/802/p8022 0x2ce0cb42 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x81b41613 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x75a98a8f register_snap_client +EXPORT_SYMBOL net/802/psnap 0xc83e14b3 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x10ebe5a6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x112dbb78 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x14070ed5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x152f177b p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x159063ea v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2aeb580d p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2af5d005 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x2ea91272 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x32370d66 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x35b63e66 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x38ec5521 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x44902812 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x50ccb2f9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x5e2b8727 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x607a9e64 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x6294bb23 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x62e15b59 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6ab0be02 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x8324c626 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x839d0094 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x8babf198 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x901fc130 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x91bc0de7 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9d3e3b3c p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa0bdd105 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa17bd678 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa492b8e6 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xb5f1e093 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xbab58c4d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xbf3e7e3f p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc83ce9fd p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xca976078 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd02c9ee3 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd93e833f p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xdc9bcc60 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xde6f665f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xe31559e1 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xe54834bc p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeed94c74 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf1c28408 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4b3cbeb p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xfac4f5f8 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xfe524e97 p9_client_setattr +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x12850eae ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x21335d9d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0a4f458 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1c2024e ebt_unregister_table +EXPORT_SYMBOL net/ceph/libceph 0x0194489b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x050dcc7e ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x05a885b6 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x0df6a93d ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x0fbb1a2b ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x10805bc7 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x11e3247f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x1292b478 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x146f4082 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x15cd6dc5 ceph_monc_blacklist_add +EXPORT_SYMBOL net/ceph/libceph 0x1c19ee8c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1cd60970 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x1fad84cf ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x229ec4cb ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x22c0858f ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x2467b4d7 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x26675e00 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x27d1ad42 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x28c934ee ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2c220d9a ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x2d1c07fc ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x30438a45 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x31735a64 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3420c27f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x35dbb8b7 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy +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 0x3dc595a5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x40678e24 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x41d6f8f2 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x44b1457f ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48c55ef1 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4a2c2740 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x4d480ef6 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x4d5f6bc0 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x4dac94d2 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x4e7b6801 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x52eb7099 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x542f784a ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x569ab1d8 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5f5f68fb ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x61574e94 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66649275 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x68260aa8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x692dc2e4 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d279271 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x73eda5e6 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x755d8cbb osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x76bbd09a ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x76fccd26 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x7a60d3d1 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7cb656a0 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7e73aa84 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7e8e4fad ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x847d792a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x88db3898 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x894a53c3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x8a0a839a ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x91fcdabf ceph_file_layout_from_legacy +EXPORT_SYMBOL net/ceph/libceph 0x9218fcd5 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x98c6b16a ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x9b28a0e5 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9ba6b84a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x9c0df776 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x9c4fa4da osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x9ca6bd6f osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fb8bfe3 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa087cb6f ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xa2528061 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xa3e70736 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xa50ca0a7 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa918caed ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xaa04f8ee osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xab044c11 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xadda0120 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xaf5f13cb ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb516ef05 ceph_osdc_put_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 0xbc98cee2 ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbcbf5b32 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbeb0664a osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xc067732c ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xc0adaafc ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xc22d8437 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc8033fc3 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xca1a5957 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb75e33d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xccc4f63f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xd1e5f001 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2840c0b osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd63eecad ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xd7c06029 ceph_file_layout_to_legacy +EXPORT_SYMBOL net/ceph/libceph 0xdae15548 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe18c4d02 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe1ae4ddd osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe3376bab ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xe36925ad osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xe4b42b7f ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe56c469e ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe5dc9245 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xe721d0c2 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe8de5e2c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xea69e1ac osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeed2f6b0 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf2ccd5d9 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xf5ba113f ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xf643932e ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xf69bb37d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf7a88792 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf7f93da9 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xfab27e9e ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xfb27354c ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xff052664 ceph_osdc_call +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x26f612cc dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc3dfc445 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x4d3f9955 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdabd67f0 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7c5efd54 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x652c433c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x80bc94b1 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbf15e769 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xec20d30b ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd1af93cd arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd2209bf5 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd5790c08 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf97b836f arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1a8bbba5 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3ea2c78f ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x911ffc72 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x333778c9 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x8401a724 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x9140bc59 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x01058172 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x66684c92 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90ef35b7 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x999f37e3 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa538d75a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc78aea84 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd02898be ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdc25e994 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe6e2db73 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x49a58b8c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6349488f ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb9e9fe00 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xbbddf8a9 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe8a7cb6f xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x05c7b901 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf567e21d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/l2tp/l2tp_core 0x50badb0b l2tp_tunnel_free +EXPORT_SYMBOL net/l2tp/l2tp_core 0xb3dcf6a3 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x5c0c3a18 l2tp_ioctl +EXPORT_SYMBOL net/llc/llc 0x1b7da416 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x1c442c53 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x26e09026 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 0x5d4c1f3c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x652699ba llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xbd0784e1 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xdc876b3d llc_add_pack +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1654403c ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37ef37ed register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b8fe572 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a965b1e ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81518906 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89a5d317 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d22e135 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x995d5cfc ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d443f76 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba0fb168 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbaa9f9b2 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7403ab8 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc2581bf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe29c6fef unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdc0c86a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x49ca1fd6 nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x582904a4 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x3963fc70 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x76cbda4f nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xca8e670e __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd38d9829 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xfb6d140c nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nft_fib 0x6d5bf833 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0552b967 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x25ac222b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x364bb9c1 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3781cb59 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x625a9d0a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7ec238d2 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x881df2ef xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x955296c1 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9a093649 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc75d5ab2 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd168987a xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe96fe431 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/rxrpc/rxrpc 0x04795d57 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0924b189 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20bc1f9a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x41843778 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x447a26e0 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x449c89d6 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x46748bb0 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x58f7258b key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fb44c8c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x699a4432 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f5e017b rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbcf81df2 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc04ed848 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3fcba49 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc42fb877 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe59c9e65 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xec00c8da rxrpc_get_null_key +EXPORT_SYMBOL net/sctp/sctp 0x69d958b6 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x453d5b16 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb3198eaf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd96ae744 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x34f189c0 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdf0421f7 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe4d9f6f9 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x15a1f434 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x40652dbd tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe34d9ae0 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xf446970f tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x36ef8451 tls_get_record +EXPORT_SYMBOL net/tls/tls 0x3a9b4f28 tls_register_device +EXPORT_SYMBOL net/tls/tls 0xf17c1409 tls_unregister_device +EXPORT_SYMBOL vmlinux 0x000ced57 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x00116248 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x00191fba unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x00193e6a clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x005b910d alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x00684dad jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x0069d801 fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x0079133a key_type_keyring +EXPORT_SYMBOL vmlinux 0x00895518 __brelse +EXPORT_SYMBOL vmlinux 0x00aa6653 netdev_notice +EXPORT_SYMBOL vmlinux 0x00b4ad9e compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x00d119ca security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x00dc9758 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x00eb1c3a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0103c519 d_add +EXPORT_SYMBOL vmlinux 0x011fae5f bdi_register_owner +EXPORT_SYMBOL vmlinux 0x01239796 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x012e258e ip_frag_init +EXPORT_SYMBOL vmlinux 0x01342269 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x0136fee8 nla_append +EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01525fd3 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x01553371 vm_brk_flags +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x0161237f skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x018c0896 blkdev_get +EXPORT_SYMBOL vmlinux 0x019401de sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x01a2da84 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d178f4 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x01e1ec00 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01e6a33c seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x01fd236a tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x02030f7e send_sig_info +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02155357 bio_list_copy_data +EXPORT_SYMBOL vmlinux 0x021a59ef pci_match_id +EXPORT_SYMBOL vmlinux 0x0228b02f raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0x023ea9d9 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x024fa7ec blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x025483b1 set_current_groups +EXPORT_SYMBOL vmlinux 0x0257a9ae down_read_trylock +EXPORT_SYMBOL vmlinux 0x025be529 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x0268c5e3 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x026db34a scsi_device_put +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02852422 kobject_add +EXPORT_SYMBOL vmlinux 0x0286c20a bit_waitqueue +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02989c91 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x029cec3b seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x029ddf57 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a38283 dquot_commit +EXPORT_SYMBOL vmlinux 0x02aece30 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x02b26767 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x02b435f7 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x02bba3a8 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x02bc1fac bd_finish_claiming +EXPORT_SYMBOL vmlinux 0x02bf83e8 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02d34a51 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run +EXPORT_SYMBOL vmlinux 0x02f1199b pci_request_regions +EXPORT_SYMBOL vmlinux 0x02f9e601 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x03082df9 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03378a9e blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x033b8fec release_sock +EXPORT_SYMBOL vmlinux 0x034446e2 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03666c69 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x036d3c34 param_set_ulong +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039824a4 account_page_redirty +EXPORT_SYMBOL vmlinux 0x03a5a7ce tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x03f705d1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fe4120 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x040c7772 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x04237d5c udp6_set_csum +EXPORT_SYMBOL vmlinux 0x043bd2b8 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04539c3a xfrm_register_type +EXPORT_SYMBOL vmlinux 0x0455761b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x0455f488 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x0456ae21 __tracepoint_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x045a5e29 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x045e4138 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x045fde98 __cgroup_bpf_run_filter_sysctl +EXPORT_SYMBOL vmlinux 0x048f6023 gro_cells_init +EXPORT_SYMBOL vmlinux 0x04d0a36b tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f21f7c set_nlink +EXPORT_SYMBOL vmlinux 0x04f6cee4 devm_request_resource +EXPORT_SYMBOL vmlinux 0x0508ed44 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052ccd2c get_vm_area +EXPORT_SYMBOL vmlinux 0x05337714 xa_get_order +EXPORT_SYMBOL vmlinux 0x053f0cc6 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x053f1619 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054b35ee tty_devnum +EXPORT_SYMBOL vmlinux 0x056420c0 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x056f5cef radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x05735d36 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x05974588 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x05b27a8d cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x05cab151 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0604ba07 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062e1419 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0630d4c1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x0632b517 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063cb4ea pci_select_bars +EXPORT_SYMBOL vmlinux 0x065843b0 find_lock_entry +EXPORT_SYMBOL vmlinux 0x0675cf47 bdi_register +EXPORT_SYMBOL vmlinux 0x067d73b4 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x0683aacc release_pages +EXPORT_SYMBOL vmlinux 0x0686e9ce neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x0691d8a6 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x06cd2bd5 netif_device_attach +EXPORT_SYMBOL vmlinux 0x06f3092d scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x06fdd7cc __xa_store +EXPORT_SYMBOL vmlinux 0x070dc5d1 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x071d6403 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x07376991 mutex_lock +EXPORT_SYMBOL vmlinux 0x075dd007 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x076404fe param_ops_uint +EXPORT_SYMBOL vmlinux 0x077b84b5 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x0781f4f0 blk_get_queue +EXPORT_SYMBOL vmlinux 0x07845ada udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x07867712 __napi_schedule +EXPORT_SYMBOL vmlinux 0x0794ff67 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x07a51455 generic_update_time +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b886e0 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x07c941d6 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07df2ad3 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x07e8f449 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x07ee34bf bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x08021f7f flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0810be09 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08340cbb find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x08456553 match_string +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x08b553a6 vm_mmap +EXPORT_SYMBOL vmlinux 0x08b8f95d input_register_device +EXPORT_SYMBOL vmlinux 0x08c47f0d ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x08ce67b7 dcb_getapp +EXPORT_SYMBOL vmlinux 0x08d8b751 netif_rx +EXPORT_SYMBOL vmlinux 0x08dba017 configfs_register_group +EXPORT_SYMBOL vmlinux 0x08ee2b92 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x08f452e8 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x08fb7419 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x0933df6c load_nls +EXPORT_SYMBOL vmlinux 0x0937d6b1 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0x0951b3fb scsi_register_driver +EXPORT_SYMBOL vmlinux 0x0957f4c1 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x095dfba6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x09728451 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09ac6ae1 d_delete +EXPORT_SYMBOL vmlinux 0x09b3483e inode_add_bytes +EXPORT_SYMBOL vmlinux 0x09bf6fbe ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d228b0 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09f2044c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x0a0e5431 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a29cd71 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x0a3b7036 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0a48729e param_ops_ullong +EXPORT_SYMBOL vmlinux 0x0a4c0a72 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x0a4e3b84 follow_up +EXPORT_SYMBOL vmlinux 0x0a54117d pci_set_master +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8b4f8a freezing_slow_path +EXPORT_SYMBOL vmlinux 0x0a96a587 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0af5c91e md_update_sb +EXPORT_SYMBOL vmlinux 0x0b0e5a2e md_register_thread +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1c43f4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x0b2b30fd pci_map_rom +EXPORT_SYMBOL vmlinux 0x0b2fc0b7 config_item_get +EXPORT_SYMBOL vmlinux 0x0b3b88c8 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x0b47161e inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x0b5aa6e5 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x0b5c7e93 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x0b5c9452 submit_bh +EXPORT_SYMBOL vmlinux 0x0b5f0c42 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x0b6d6d4c page_pool_unmap_page +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7ed325 ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x0b8ab379 poll_initwait +EXPORT_SYMBOL vmlinux 0x0b8d11cf swake_up_one +EXPORT_SYMBOL vmlinux 0x0ba73d27 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcc4608 sock_create +EXPORT_SYMBOL vmlinux 0x0c170f84 posix_lock_file +EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c46da66 vm_event_states +EXPORT_SYMBOL vmlinux 0x0c5b5e53 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0c605bfb __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp +EXPORT_SYMBOL vmlinux 0x0c725fb8 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c806fe9 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x0c83f2ac __destroy_inode +EXPORT_SYMBOL vmlinux 0x0c875db4 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x0ca6e7de tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x0cbb4170 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x0cbd2301 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x0ccb8ffe devm_ioremap +EXPORT_SYMBOL vmlinux 0x0cd26d02 ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0cf828eb bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x0d05e9ae xa_extract +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d3e0e16 __xa_insert +EXPORT_SYMBOL vmlinux 0x0d46883b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0d48f154 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5d010f __check_sticky +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0da5a6b8 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x0dbdef74 secpath_set +EXPORT_SYMBOL vmlinux 0x0dc1dbdd genl_family_attrbuf +EXPORT_SYMBOL vmlinux 0x0dd3408f __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0dd8c082 audit_log +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1ecfb7 unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x0e3b6617 put_tty_driver +EXPORT_SYMBOL vmlinux 0x0e507e7b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0e69058f module_refcount +EXPORT_SYMBOL vmlinux 0x0e7d47dc skb_pull +EXPORT_SYMBOL vmlinux 0x0e82a3a6 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x0e8c4a70 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x0e96c5a1 md_write_end +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0ead1d65 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x0ee391e7 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x0eed3351 md_flush_request +EXPORT_SYMBOL vmlinux 0x0ef8b993 input_unregister_device +EXPORT_SYMBOL vmlinux 0x0ef8fabb ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x0efbff00 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x0eff9c4d neigh_update +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f293bc4 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0f355c3a migrate_page_states +EXPORT_SYMBOL vmlinux 0x0f3fb9fb pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x0f43167d simple_rmdir +EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x0f7227fc ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x0f7545b0 dev_trans_start +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8ee51e ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0faf8778 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbd63a4 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100fbe69 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x101f9b56 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x1025c86a dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103afd57 setattr_prepare +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x104e47d4 idr_replace +EXPORT_SYMBOL vmlinux 0x10678052 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106de1d2 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x10791879 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10a12542 elv_rb_add +EXPORT_SYMBOL vmlinux 0x10b089b0 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x10b13eca clocksource_unregister +EXPORT_SYMBOL vmlinux 0x10c0885d kmalloc_caches +EXPORT_SYMBOL vmlinux 0x10c23604 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d00567 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e5e793 reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110a7018 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x11134e15 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x11182a33 cred_fscmp +EXPORT_SYMBOL vmlinux 0x112d09ef n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x11376dcd tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x113a0a27 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x114aa51e input_set_keycode +EXPORT_SYMBOL vmlinux 0x114be2be __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117230c1 neigh_xmit +EXPORT_SYMBOL vmlinux 0x11746dd4 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1194bd99 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x119aae1c ns_capable_setid +EXPORT_SYMBOL vmlinux 0x11b6505b blk_register_region +EXPORT_SYMBOL vmlinux 0x11ca3165 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x11d06ad0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x11d27453 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x11d5adfa write_inode_now +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail +EXPORT_SYMBOL vmlinux 0x11f81707 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x11fb83cb on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x1200e8d8 dev_add_offload +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120c139f gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x1212fc80 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x12302622 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x12377876 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x125b36e0 down_write_killable +EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a4b7f3 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cc5e5d xa_find +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fa14a8 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x12fade27 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x13426193 kernel_read +EXPORT_SYMBOL vmlinux 0x134783bd mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13586499 iov_iter_init +EXPORT_SYMBOL vmlinux 0x1364fb60 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x136608b2 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0x136744e5 pagevec_lookup_range_nr_tag +EXPORT_SYMBOL vmlinux 0x1388d9a7 keyring_search +EXPORT_SYMBOL vmlinux 0x138921d4 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x13c90260 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x13ca6f49 block_write_begin +EXPORT_SYMBOL vmlinux 0x13d0832c mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e13321 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x13e97429 input_flush_device +EXPORT_SYMBOL vmlinux 0x13f5787e inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x140468ae unregister_service_level +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14684eb2 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0x146f55a4 fput +EXPORT_SYMBOL vmlinux 0x1471f539 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x1473cad5 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x148f46e3 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x149d078e kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x14aec4ea import_iovec +EXPORT_SYMBOL vmlinux 0x14bf34cc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14e381ce get_fs_type +EXPORT_SYMBOL vmlinux 0x14f79db7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x14fb2365 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x15049889 fb_center_logo +EXPORT_SYMBOL vmlinux 0x1504c35b tcf_idr_create +EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0x15130b47 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152606d5 register_service_level +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152bc5a4 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x15374007 param_get_charp +EXPORT_SYMBOL vmlinux 0x1539b56c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15542bce skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1557f9fb reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x15697e3d seq_printf +EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x15744cc9 dma_direct_unmap_page +EXPORT_SYMBOL vmlinux 0x158ff27e security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x15ae6c2f flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bb4557 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85578 bio_split +EXPORT_SYMBOL vmlinux 0x15f4803e block_invalidatepage +EXPORT_SYMBOL vmlinux 0x160c0163 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x161acf1d from_kgid +EXPORT_SYMBOL vmlinux 0x1621b23a build_skb +EXPORT_SYMBOL vmlinux 0x16279450 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1632bb3d write_cache_pages +EXPORT_SYMBOL vmlinux 0x16337790 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x163a3cd2 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x16415b7f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x166c95c2 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x16785410 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x1694b420 generic_setlease +EXPORT_SYMBOL vmlinux 0x16984f8b generic_fillattr +EXPORT_SYMBOL vmlinux 0x16aa2eaa dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x16b0e502 kbd_alloc +EXPORT_SYMBOL vmlinux 0x16dee792 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1729ea94 param_set_uint +EXPORT_SYMBOL vmlinux 0x1760b18b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x1777f2e2 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1779b30e install_exec_creds +EXPORT_SYMBOL vmlinux 0x17839f95 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x17969ff9 tcp_close +EXPORT_SYMBOL vmlinux 0x17aa6c9c debug_unregister_view +EXPORT_SYMBOL vmlinux 0x18083877 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x182a49a2 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x18492324 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x1873240a iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x18805162 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x188d7d02 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1897e8be mempool_create +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18b6027d inode_init_owner +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18deef8f vfs_iter_write +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x190ad815 __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0x19132920 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x191a408b wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x1921f457 dev_driver_string +EXPORT_SYMBOL vmlinux 0x1929df7f locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1980e50a iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19aa08e1 fqdir_init +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19dbf5e1 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x19ff62d7 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x1a005fa0 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x1a0c2f79 security_sb_remount +EXPORT_SYMBOL vmlinux 0x1a129efc get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x1a1f6633 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x1a28add2 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x1a395137 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x1a6847c5 xsk_umem_peek_addr +EXPORT_SYMBOL vmlinux 0x1a6ff092 put_user_pages +EXPORT_SYMBOL vmlinux 0x1a79d8d6 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x1a7ab77e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x1a809853 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab5d6b8 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x1ac3ee05 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x1ac4bc3a blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x1acda980 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1acf4204 vmemmap +EXPORT_SYMBOL vmlinux 0x1af0e9ea complete_request_key +EXPORT_SYMBOL vmlinux 0x1af6ea5c inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1f04b7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1b20875f netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x1b56b03d follow_down +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b78dc82 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1b86a2db dec_node_page_state +EXPORT_SYMBOL vmlinux 0x1b8d18cb __skb_get_hash +EXPORT_SYMBOL vmlinux 0x1b90e8a3 set_binfmt +EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1ba13495 __cpu_to_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bea8828 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x1bf29903 padata_start +EXPORT_SYMBOL vmlinux 0x1bf301c3 __wake_up +EXPORT_SYMBOL vmlinux 0x1bfc7ad3 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x1c05e1a9 nf_reinject +EXPORT_SYMBOL vmlinux 0x1c106eaf fb_pan_display +EXPORT_SYMBOL vmlinux 0x1c29e152 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x1c338147 vm_numa_stat +EXPORT_SYMBOL vmlinux 0x1c34941c seq_vprintf +EXPORT_SYMBOL vmlinux 0x1c4110c3 search_binary_handler +EXPORT_SYMBOL vmlinux 0x1c62db4f dma_direct_map_sg +EXPORT_SYMBOL vmlinux 0x1c6ffc1f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cb2c6d8 kvasprintf +EXPORT_SYMBOL vmlinux 0x1cbe6e7b bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x1cd10254 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x1cda8439 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x1ce99416 inet_bind +EXPORT_SYMBOL vmlinux 0x1cfa0560 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x1cfb62b4 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1d00a775 scsi_host_get +EXPORT_SYMBOL vmlinux 0x1d19625f compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d364a23 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d5bca88 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x1d6c1119 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x1d6d5d03 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc +EXPORT_SYMBOL vmlinux 0x1dbbd8db wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x1dd036c7 netdev_warn +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e023839 simple_fill_super +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e26bfda inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1e2b505c iget5_locked +EXPORT_SYMBOL vmlinux 0x1e328dc4 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1e497d9a blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e705e20 downgrade_write +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e8b5817 filemap_fault +EXPORT_SYMBOL vmlinux 0x1e8caf31 fb_class +EXPORT_SYMBOL vmlinux 0x1e906554 blkdev_put +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea93835 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1eacd549 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x1eacd76c flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x1ead6fea flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1eb04cef generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1ec52c3a dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edd830c __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x1ede54f2 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x1ee14bd1 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1ee325ce configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x1eeb926c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x1f0700d9 iptun_encaps +EXPORT_SYMBOL vmlinux 0x1f1548a6 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x1f1dc347 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x1f30a859 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x1f360bf3 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1f48d29f __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x1f560f67 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x1f57822e krealloc +EXPORT_SYMBOL vmlinux 0x1f668f6f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x1f707c9a kbd_free +EXPORT_SYMBOL vmlinux 0x1f727ba8 PageMovable +EXPORT_SYMBOL vmlinux 0x1f8a1a32 lockref_put_return +EXPORT_SYMBOL vmlinux 0x1fa1d448 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbebef0 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x1fc2cc8e netdev_features_change +EXPORT_SYMBOL vmlinux 0x1fc7a59b __nla_validate +EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2008bf83 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x2014d3fb read_cache_page +EXPORT_SYMBOL vmlinux 0x2020d427 security_sock_graft +EXPORT_SYMBOL vmlinux 0x203e04e5 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x2049aea5 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20687cd7 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207efb89 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x2090fcdf devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x209b5730 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x209fd4fe dev_get_by_index +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x20f5e1a6 follow_pfn +EXPORT_SYMBOL vmlinux 0x20fb6dea keyring_alloc +EXPORT_SYMBOL vmlinux 0x20fc97ba sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x21019a4b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x2112a495 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x2121b32a jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x212b9597 skb_find_text +EXPORT_SYMBOL vmlinux 0x21488f35 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x21640e9f request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x217e5616 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219e0e9e ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x21a58831 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x21bb5554 on_each_cpu_cond_mask +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 0x21e396b9 kobject_set_name +EXPORT_SYMBOL vmlinux 0x21eb026d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x22052725 tso_count_descs +EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22402533 load_nls_default +EXPORT_SYMBOL vmlinux 0x224e7641 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x225ba87c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x225d1c82 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x226b2113 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x22735f60 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x228b58bf security_d_instantiate +EXPORT_SYMBOL vmlinux 0x22b090a3 param_get_uint +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bd24a8 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x22d63c5b inet_protos +EXPORT_SYMBOL vmlinux 0x22d6f6a5 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x22dc836a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init +EXPORT_SYMBOL vmlinux 0x22e88a78 drop_nlink +EXPORT_SYMBOL vmlinux 0x22f7250c inode_set_flags +EXPORT_SYMBOL vmlinux 0x23191c88 md_write_start +EXPORT_SYMBOL vmlinux 0x231e5f4f scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x23236583 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x232eef7d dquot_quota_off +EXPORT_SYMBOL vmlinux 0x2341340a tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x235f9e2e tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x2363bc16 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x2370cabc sk_alloc +EXPORT_SYMBOL vmlinux 0x238b8ab3 debug_event_common +EXPORT_SYMBOL vmlinux 0x238d090d kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x23968f3a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x23a0096c __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x23a9f967 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bbe891 free_netdev +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f4ac02 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2407c8b6 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x241437ab jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x241d01f9 kill_fasync +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242453fc skb_checksum +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x24384127 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x24462298 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245f594d dev_addr_add +EXPORT_SYMBOL vmlinux 0x2473f47e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2476cb4b param_get_short +EXPORT_SYMBOL vmlinux 0x24773491 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x247a500a xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x24808ea7 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2480d0be raw3270_start_locked +EXPORT_SYMBOL vmlinux 0x2481c7a5 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x24b0c044 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x24ca4b3e pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x24ce44bd bdgrab +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24ef4ad1 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x25256e9f dquot_free_inode +EXPORT_SYMBOL vmlinux 0x252c6982 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x252d4f3d vfs_create +EXPORT_SYMBOL vmlinux 0x254424d3 tcf_block_put +EXPORT_SYMBOL vmlinux 0x2548b044 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x25495545 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25724eb2 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x25746555 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x257c908a raw3270_add_view +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2585a6c3 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x258e100d finish_open +EXPORT_SYMBOL vmlinux 0x2599de1f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x259ec111 ap_queue_message +EXPORT_SYMBOL vmlinux 0x25b852b7 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x25e3d9c2 kthread_stop +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x26032e0f pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26122eca register_cdrom +EXPORT_SYMBOL vmlinux 0x2630669c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x264961d2 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x2666e401 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x267ce9a3 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure +EXPORT_SYMBOL vmlinux 0x26c710f1 fb_blank +EXPORT_SYMBOL vmlinux 0x26c86b9c scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x26ca57a5 skb_append +EXPORT_SYMBOL vmlinux 0x26cfd6f1 init_task +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e9c0d0 iget_locked +EXPORT_SYMBOL vmlinux 0x26f889bf scsi_block_requests +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x27327427 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27418353 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27501c52 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27639220 blk_verify_command +EXPORT_SYMBOL vmlinux 0x27653853 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x27669a71 read_dev_sector +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x2786ad4f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x278d733a sk_dst_check +EXPORT_SYMBOL vmlinux 0x279da8ab iucv_bus +EXPORT_SYMBOL vmlinux 0x27b4cdf3 param_get_string +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e0ac2b dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x27eb8e8b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x27f4c40d eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x27fa501d __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2801961f fs_parse +EXPORT_SYMBOL vmlinux 0x2816b638 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282550f7 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x282637e1 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x2853787c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x2859829b pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0x285dc3c9 pci_find_resource +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287b5a2e address_space_init_once +EXPORT_SYMBOL vmlinux 0x28802c34 ip_defrag +EXPORT_SYMBOL vmlinux 0x288382ef _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2883f668 user_path_create +EXPORT_SYMBOL vmlinux 0x288a801b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x2893ab11 param_get_bool +EXPORT_SYMBOL vmlinux 0x28eabda3 misc_deregister +EXPORT_SYMBOL vmlinux 0x28f1d2e7 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x2910f4cb on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x292683cd sg_miter_stop +EXPORT_SYMBOL vmlinux 0x2933ddb3 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x294b9ea1 on_each_cpu +EXPORT_SYMBOL vmlinux 0x29511580 dst_alloc +EXPORT_SYMBOL vmlinux 0x29565d51 seq_path +EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x29590338 blk_get_request +EXPORT_SYMBOL vmlinux 0x29660839 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x2990d447 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x2994ac82 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x2996b38d devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x29b9ba35 page_mapped +EXPORT_SYMBOL vmlinux 0x29ca547b param_set_bool +EXPORT_SYMBOL vmlinux 0x29d2b40c insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x2a289108 _dev_alert +EXPORT_SYMBOL vmlinux 0x2a2fa260 nla_policy_len +EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init +EXPORT_SYMBOL vmlinux 0x2a512295 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x2a55dc2c dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end +EXPORT_SYMBOL vmlinux 0x2a8f60e6 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x2aaab381 dma_pool_create +EXPORT_SYMBOL vmlinux 0x2af3f454 ssch +EXPORT_SYMBOL vmlinux 0x2b13c1db __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x2b4e9988 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x2b4f8735 write_one_page +EXPORT_SYMBOL vmlinux 0x2b61f512 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bd7cdb0 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2bf26e23 genl_register_family +EXPORT_SYMBOL vmlinux 0x2c06fbd8 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x2c0d5ceb gen_new_estimator +EXPORT_SYMBOL vmlinux 0x2c0ebbc9 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x2c0f1582 lockref_get +EXPORT_SYMBOL vmlinux 0x2c0f2fb3 mempool_alloc +EXPORT_SYMBOL vmlinux 0x2c1cf773 __init_rwsem +EXPORT_SYMBOL vmlinux 0x2c1ed24e flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x2c252b48 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c26c823 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user +EXPORT_SYMBOL vmlinux 0x2c5885c1 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2cb86440 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x2cb8988e blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2cbdef7d radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x2cc0ab4b netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x2cc3a2f4 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x2cc96e62 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2ccbc258 iterate_dir +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd26a0a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2ce2623b scsi_init_io +EXPORT_SYMBOL vmlinux 0x2ceef57a neigh_parms_release +EXPORT_SYMBOL vmlinux 0x2cf7b13d dm_get_device +EXPORT_SYMBOL vmlinux 0x2cf8c246 __free_pages +EXPORT_SYMBOL vmlinux 0x2cfdfcf1 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x2d0148e1 init_net +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1ce4a9 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x2d1e0ea3 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d66bd5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2d68fffd scsi_ioctl +EXPORT_SYMBOL vmlinux 0x2d7ea7af __icmp_send +EXPORT_SYMBOL vmlinux 0x2d92beac mpage_writepages +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db77fa1 filemap_flush +EXPORT_SYMBOL vmlinux 0x2dc57621 seq_open_private +EXPORT_SYMBOL vmlinux 0x2dd18abb lock_sock_fast +EXPORT_SYMBOL vmlinux 0x2e10ef43 param_ops_long +EXPORT_SYMBOL vmlinux 0x2e19e1fa flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x2e1adc4d tcp_child_process +EXPORT_SYMBOL vmlinux 0x2e41cf9a raw_copy_in_user +EXPORT_SYMBOL vmlinux 0x2e4a1f34 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x2ea88208 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x2eac6bef seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ec79d58 input_event +EXPORT_SYMBOL vmlinux 0x2ed06b35 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x2ef46fca seq_escape +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef7d508 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1c5daf simple_rename +EXPORT_SYMBOL vmlinux 0x2f282432 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x2f2e7fc2 audit_log_start +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f3751a1 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x2f47be89 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x2f548802 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x2f6f4d0c inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2f71f1b9 param_get_invbool +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f913795 dquot_alloc +EXPORT_SYMBOL vmlinux 0x2fa09950 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fcf5f30 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x303bc501 padata_free +EXPORT_SYMBOL vmlinux 0x305a9463 dcache_readdir +EXPORT_SYMBOL vmlinux 0x306c87dc delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x30729abb tcf_action_exec +EXPORT_SYMBOL vmlinux 0x30807d14 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x308c1f2f pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3090c927 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x3096b6ed generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a09d2b pci_get_subsys +EXPORT_SYMBOL vmlinux 0x30a3a17e napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30e50f8a should_remove_suid +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1217c dfltcc_deflate +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3107364f inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x310bfd6c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x311b4631 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x314bbf94 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x31601682 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x316509b1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x3178dcca ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0x31c5a388 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update +EXPORT_SYMBOL vmlinux 0x31eb2c96 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x3218a6f1 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x32269add sk_mc_loop +EXPORT_SYMBOL vmlinux 0x324babc5 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x32771f8a inet_gro_receive +EXPORT_SYMBOL vmlinux 0x327de3d3 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x328127d2 empty_aops +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32a80c63 netdev_info +EXPORT_SYMBOL vmlinux 0x32ae0796 do_wait_intr +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32fba71c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x331cb3a8 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x331f2741 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x332741fb security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x3334517f blk_mq_init_sq_queue +EXPORT_SYMBOL vmlinux 0x3334a174 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x3337d918 dump_align +EXPORT_SYMBOL vmlinux 0x3345c72b __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x33522992 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x335b5319 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x335ecfae proc_remove +EXPORT_SYMBOL vmlinux 0x336621f0 ccw_device_clear +EXPORT_SYMBOL vmlinux 0x338488c8 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x338aa707 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay +EXPORT_SYMBOL vmlinux 0x3391062f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x33a0a824 pci_enable_device +EXPORT_SYMBOL vmlinux 0x33a11450 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x33bce1ed __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x33d2e334 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x33ddf86f netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x33e639ce idr_for_each +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x33faef71 vfs_statfs +EXPORT_SYMBOL vmlinux 0x33fdf9b4 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x340210f2 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x340704ca pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x34289844 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x343523a4 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x344c010b lookup_bdev +EXPORT_SYMBOL vmlinux 0x346603f3 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x348e0e62 param_set_charp +EXPORT_SYMBOL vmlinux 0x349ac524 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a5ab3c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x34af6551 tso_start +EXPORT_SYMBOL vmlinux 0x34c31d88 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x34db9e9c pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f497a7 ida_free +EXPORT_SYMBOL vmlinux 0x34f7d930 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x3516f1ee dev_load +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3532fb01 check_disk_change +EXPORT_SYMBOL vmlinux 0x353ee904 md_error +EXPORT_SYMBOL vmlinux 0x353fbdca md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3543940d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x357d8b45 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3586e26a pgste_perform_essa +EXPORT_SYMBOL vmlinux 0x3597e70b bio_free_pages +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35afbdab xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x35bf7547 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x35c4800f fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x35d2da42 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x35df8fba misc_register +EXPORT_SYMBOL vmlinux 0x35eb3d90 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x35f56a9b _dev_info_hash +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x36083ad1 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x36124124 generic_permission +EXPORT_SYMBOL vmlinux 0x36499bf9 dput +EXPORT_SYMBOL vmlinux 0x36510c75 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x3654d96c iov_iter_for_each_range +EXPORT_SYMBOL vmlinux 0x3658a6cd blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36657eec __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x36732688 from_kprojid +EXPORT_SYMBOL vmlinux 0x3688a5c5 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x3689bb74 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x36aa122a inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x36db9710 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x36e10500 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x37101715 security_path_rename +EXPORT_SYMBOL vmlinux 0x37116c1e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3719fba1 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x373e0bc7 __do_once_done +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37593735 bio_advance +EXPORT_SYMBOL vmlinux 0x375af7dd simple_release_fs +EXPORT_SYMBOL vmlinux 0x3776db94 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x37968978 noop_llseek +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37ba2811 tcf_classify +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37dc6aca proc_set_user +EXPORT_SYMBOL vmlinux 0x37de05c1 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x37ec5a7b sg_miter_next +EXPORT_SYMBOL vmlinux 0x38049b6a xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x38088ddf neigh_ifdown +EXPORT_SYMBOL vmlinux 0x380fa4a5 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382fcda8 _copy_to_user_key +EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x383493b9 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x3844388d sg_miter_skip +EXPORT_SYMBOL vmlinux 0x38520eba simple_dir_operations +EXPORT_SYMBOL vmlinux 0x38658198 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388e6b91 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x3890216f find_inode_nowait +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ac4356 mntput +EXPORT_SYMBOL vmlinux 0x38b33f84 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x38dc9d69 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x38e85cd2 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x38fb57a5 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x391922c9 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3936fbdb generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3948ac43 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x39586b2b vc_resize +EXPORT_SYMBOL vmlinux 0x395aa91c flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3978b602 kobject_init +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x39ccc24e bio_copy_data +EXPORT_SYMBOL vmlinux 0x39d96993 ip_frag_next +EXPORT_SYMBOL vmlinux 0x39da841a pci_irq_get_node +EXPORT_SYMBOL vmlinux 0x3a01e718 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a28e40e km_state_notify +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a476f22 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a9bb194 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x3ab13d70 param_ops_short +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac1bea3 netlink_capable +EXPORT_SYMBOL vmlinux 0x3ac7a6b5 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x3ac8938b enable_sacf_uaccess +EXPORT_SYMBOL vmlinux 0x3aec3fad jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3b33979a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3b3acb14 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x3b3ec56c make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x3b3f3766 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3b4280ff t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le +EXPORT_SYMBOL vmlinux 0x3b7693e3 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x3ba563c3 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3bb25a7b pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3bb442a6 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x3be46a53 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3521c5 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c5dc430 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3c602f8a set_disk_ro +EXPORT_SYMBOL vmlinux 0x3c79abf3 noop_qdisc +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3cc195d3 simple_getattr +EXPORT_SYMBOL vmlinux 0x3cdde0f2 dns_query +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf1f51d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3cf75078 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x3cf8ad64 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x3cfd101b qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x3d0ef0df d_path +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d132481 param_get_long +EXPORT_SYMBOL vmlinux 0x3d1a36a5 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x3d201e01 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x3d2238c3 vfs_ioc_setflags_prepare +EXPORT_SYMBOL vmlinux 0x3d2510e2 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x3d3d2fd7 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name +EXPORT_SYMBOL vmlinux 0x3d8948f0 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x3d8bda8e param_set_byte +EXPORT_SYMBOL vmlinux 0x3d8e54d2 key_revoke +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3db4c8b5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3dbf31ba dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddf7cf0 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e1c9640 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x3e26b057 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3e280bad scsi_host_put +EXPORT_SYMBOL vmlinux 0x3e2b0ba6 groups_alloc +EXPORT_SYMBOL vmlinux 0x3e2de195 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x3e30986b ccw_device_start +EXPORT_SYMBOL vmlinux 0x3e3c3d73 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3e4573f1 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x3e465896 _dev_emerg +EXPORT_SYMBOL vmlinux 0x3e4ecc21 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3e4fa9a6 nf_log_unset +EXPORT_SYMBOL vmlinux 0x3e784c43 tty_port_put +EXPORT_SYMBOL vmlinux 0x3e7a40e9 dqput +EXPORT_SYMBOL vmlinux 0x3e7cb0cc vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x3ec5c810 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x3ec98cf6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x3ee5eba9 poll_freewait +EXPORT_SYMBOL vmlinux 0x3ee835d6 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x3f0ca520 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x3f0ceeb3 __devm_release_region +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f7ed200 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f99b19b mpage_readpage +EXPORT_SYMBOL vmlinux 0x3f9edd35 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fadb213 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay +EXPORT_SYMBOL vmlinux 0x3fc1dfbf _copy_from_user_key +EXPORT_SYMBOL vmlinux 0x3fcd49a3 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3fd10ebe skb_unlink +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3ff858ef pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x40060a15 read_cache_pages +EXPORT_SYMBOL vmlinux 0x400bd3af __sock_create +EXPORT_SYMBOL vmlinux 0x401a58e2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x401ca929 get_super_thawed +EXPORT_SYMBOL vmlinux 0x402148b6 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4024c1c3 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 +EXPORT_SYMBOL vmlinux 0x403a9bf3 nla_reserve +EXPORT_SYMBOL vmlinux 0x4041815e file_remove_privs +EXPORT_SYMBOL vmlinux 0x406172e2 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x406d9663 bdi_register_va +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ba1671 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x40c170b1 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x410ca23f input_reset_device +EXPORT_SYMBOL vmlinux 0x411dd734 dev_addr_del +EXPORT_SYMBOL vmlinux 0x4127363b xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x412c8afe set_anon_super +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest +EXPORT_SYMBOL vmlinux 0x414e996e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x41503f09 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x4152d20a nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x415f040a filemap_map_pages +EXPORT_SYMBOL vmlinux 0x4161f3cf start_tty +EXPORT_SYMBOL vmlinux 0x4163963a __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419057ff fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x41a1274c ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x41ce07e6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x41e3f8ff compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x420198e2 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4221517f simple_readpage +EXPORT_SYMBOL vmlinux 0x422d1e05 __nla_put +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423d2df4 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x4242345c dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x4247450d mntget +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424b0515 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x426b74a3 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4294e819 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x42d9e8a5 dev_warn_hash +EXPORT_SYMBOL vmlinux 0x42de0fe6 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43175c06 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4332b5f5 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x434f9607 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436d5fa4 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43951a92 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cd7c75 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43e8b80c inet_ioctl +EXPORT_SYMBOL vmlinux 0x43f62bb6 lookup_user_key +EXPORT_SYMBOL vmlinux 0x44045dde skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x4438659a security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x4441887b dev_alloc_name +EXPORT_SYMBOL vmlinux 0x4443f0d5 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4473c522 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x44795230 thaw_bdev +EXPORT_SYMBOL vmlinux 0x4493a56d skb_copy +EXPORT_SYMBOL vmlinux 0x44a4e219 bio_endio +EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44bc322f input_free_device +EXPORT_SYMBOL vmlinux 0x44c92dab cdev_del +EXPORT_SYMBOL vmlinux 0x44ced361 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x44d26bbd __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4503d268 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x450e7411 set_wb_congested +EXPORT_SYMBOL vmlinux 0x45142791 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45459c45 kernel_write +EXPORT_SYMBOL vmlinux 0x454fb519 ioremap +EXPORT_SYMBOL vmlinux 0x456d75fc may_umount_tree +EXPORT_SYMBOL vmlinux 0x45736436 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457be1de eth_header_parse +EXPORT_SYMBOL vmlinux 0x45866459 param_set_invbool +EXPORT_SYMBOL vmlinux 0x458a5c2c blk_queue_split +EXPORT_SYMBOL vmlinux 0x459539f9 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x45962eb7 skb_dump +EXPORT_SYMBOL vmlinux 0x45a54d12 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END +EXPORT_SYMBOL vmlinux 0x45cf0d3b dcache_dir_open +EXPORT_SYMBOL vmlinux 0x45d2cb59 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x45d2f0af dst_release_immediate +EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x45e30329 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x45fbf76c devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x46045dd7 kstrtou8 +EXPORT_SYMBOL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL vmlinux 0x4614018f peernet2id +EXPORT_SYMBOL vmlinux 0x461489d0 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x464029ec kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4646a1b1 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x46607c18 bio_add_page +EXPORT_SYMBOL vmlinux 0x46652563 inode_permission +EXPORT_SYMBOL vmlinux 0x466bb023 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4682845a tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x468a1916 register_shrinker +EXPORT_SYMBOL vmlinux 0x468edaf4 debug_register_mode +EXPORT_SYMBOL vmlinux 0x469122da d_obtain_root +EXPORT_SYMBOL vmlinux 0x46ba565d flush_signals +EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send +EXPORT_SYMBOL vmlinux 0x46d3462c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data +EXPORT_SYMBOL vmlinux 0x47115878 ap_get_qdev +EXPORT_SYMBOL vmlinux 0x47152769 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x475b3eec __register_nls +EXPORT_SYMBOL vmlinux 0x4764856c vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477e323f hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b5a554 dquot_resume +EXPORT_SYMBOL vmlinux 0x47bda31b neigh_destroy +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x48020ff5 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x480d673f input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4830c279 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x483d1133 fd_install +EXPORT_SYMBOL vmlinux 0x484bba91 page_mapping +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x486c3922 cdev_init +EXPORT_SYMBOL vmlinux 0x48886a26 dev_addr_init +EXPORT_SYMBOL vmlinux 0x489a6449 __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48ada7be set_fs +EXPORT_SYMBOL vmlinux 0x48b05e7b arp_xmit +EXPORT_SYMBOL vmlinux 0x48b4c0a8 md_integrity_register +EXPORT_SYMBOL vmlinux 0x48b7f099 block_write_end +EXPORT_SYMBOL vmlinux 0x48fd0b8b kbd_ascebc +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490fa7b8 __nla_reserve +EXPORT_SYMBOL vmlinux 0x493af25f ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x493e8eef scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x49478266 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x497863d0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x499811d5 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x499c2a4d scsi_scan_host +EXPORT_SYMBOL vmlinux 0x49a8cd90 config_item_set_name +EXPORT_SYMBOL vmlinux 0x49c6e868 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x49cab6b4 PDE_DATA +EXPORT_SYMBOL vmlinux 0x49e96e8b tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x49f8da8b default_llseek +EXPORT_SYMBOL vmlinux 0x49f90a87 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4a0757c8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x4a09aa89 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4a1ca448 sock_no_connect +EXPORT_SYMBOL vmlinux 0x4a213644 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4a2d2a53 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x4a38f7c2 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4a486731 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x4a5542c9 tcp_check_req +EXPORT_SYMBOL vmlinux 0x4a5c1333 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x4a65eeff _dev_info +EXPORT_SYMBOL vmlinux 0x4a713cf2 revert_creds +EXPORT_SYMBOL vmlinux 0x4a8723c9 nf_log_set +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4acb7c27 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x4ad59f32 ap_flush_queue +EXPORT_SYMBOL vmlinux 0x4ae731cc blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4afc89ed __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b02b3bb user_revoke +EXPORT_SYMBOL vmlinux 0x4b09f32c configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness +EXPORT_SYMBOL vmlinux 0x4b262f98 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x4b2e8967 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4b301801 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x4b4ad68c security_locked_down +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b7d642d pci_scan_slot +EXPORT_SYMBOL vmlinux 0x4b846c09 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x4b8606f3 padata_stop +EXPORT_SYMBOL vmlinux 0x4ba4f68e locks_copy_lock +EXPORT_SYMBOL vmlinux 0x4baf7e59 sha256_final +EXPORT_SYMBOL vmlinux 0x4bca6132 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x4bd32e99 redraw_screen +EXPORT_SYMBOL vmlinux 0x4bf6ee39 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x4c1348a6 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c71a27b fsync_bdev +EXPORT_SYMBOL vmlinux 0x4c722b00 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x4c7e726e skb_copy_header +EXPORT_SYMBOL vmlinux 0x4c8f60cc tty_do_resize +EXPORT_SYMBOL vmlinux 0x4c98dcdd dev_set_group +EXPORT_SYMBOL vmlinux 0x4cc3d8cc devm_memunmap +EXPORT_SYMBOL vmlinux 0x4cd8afcf key_alloc +EXPORT_SYMBOL vmlinux 0x4cebef52 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x4d004c45 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x4d3b1fc0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d66b0ed pci_get_class +EXPORT_SYMBOL vmlinux 0x4d6e7a06 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x4d71820a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4d72d3aa chacha_block +EXPORT_SYMBOL vmlinux 0x4d760048 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x4d83cb21 init_special_inode +EXPORT_SYMBOL vmlinux 0x4d962362 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db34188 mount_bdev +EXPORT_SYMBOL vmlinux 0x4dc50625 vfs_rename +EXPORT_SYMBOL vmlinux 0x4dcdbb36 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df83171 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x4df95233 neigh_lookup +EXPORT_SYMBOL vmlinux 0x4e019217 init_pseudo +EXPORT_SYMBOL vmlinux 0x4e0e47ac scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer +EXPORT_SYMBOL vmlinux 0x4e49e70f md_handle_request +EXPORT_SYMBOL vmlinux 0x4e67c9ad blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e849b39 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x4e9b851a gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x4e9ea4b5 __breadahead +EXPORT_SYMBOL vmlinux 0x4eaab347 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x4ec061c7 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecf97db tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x4ed12db1 pci_pme_active +EXPORT_SYMBOL vmlinux 0x4ed7b3b5 hex2bin +EXPORT_SYMBOL vmlinux 0x4ede2cdc dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4ee6b680 __tracepoint_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x4eec9dab arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0x4ef86a69 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f4f1a45 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4f55876f alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x4f5d3951 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x4f8323d7 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4f840f16 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x4f885177 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4f9080ba skb_seq_read +EXPORT_SYMBOL vmlinux 0x4f923fd4 soft_cursor +EXPORT_SYMBOL vmlinux 0x4f949787 unlock_page +EXPORT_SYMBOL vmlinux 0x4fa2676c pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x4faec757 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x4fb0b814 __tcf_idr_release +EXPORT_SYMBOL vmlinux 0x4fbe0b2a inet6_bind +EXPORT_SYMBOL vmlinux 0x4fc303b5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x4fccd78b xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x4fe29905 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x4ff140cb __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501169c6 sock_no_accept +EXPORT_SYMBOL vmlinux 0x501fb4ab __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x5035cbcf xa_get_mark +EXPORT_SYMBOL vmlinux 0x503fb063 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5061ecaf airq_iv_free +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup +EXPORT_SYMBOL vmlinux 0x507d6239 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x50842748 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x50a02b8f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b81542 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cbf9c9 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x50ce32c6 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x50d75955 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x50e0a893 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x50ea810f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x50f6671c module_layout +EXPORT_SYMBOL vmlinux 0x50f6e7bb iov_iter_revert +EXPORT_SYMBOL vmlinux 0x5102dbca dev_remove_pack +EXPORT_SYMBOL vmlinux 0x5124211f md_cluster_ops +EXPORT_SYMBOL vmlinux 0x5140d858 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x5143ce65 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x5147042c __scm_send +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x5163b708 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51691912 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x517576fd sget_fc +EXPORT_SYMBOL vmlinux 0x517bd2f3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5187229e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x5187792f netif_napi_add +EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 +EXPORT_SYMBOL vmlinux 0x5191e0e9 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5199d94d sock_no_bind +EXPORT_SYMBOL vmlinux 0x519a516d pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x51c027cb pci_choose_state +EXPORT_SYMBOL vmlinux 0x51de887a d_splice_alias +EXPORT_SYMBOL vmlinux 0x5206c367 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x521f3c56 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x522fba1d raw3270_reset +EXPORT_SYMBOL vmlinux 0x523f207f inet6_release +EXPORT_SYMBOL vmlinux 0x524b41b0 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x524db6d4 make_bad_inode +EXPORT_SYMBOL vmlinux 0x526b495d watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x527109f9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x52807a9b fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert +EXPORT_SYMBOL vmlinux 0x52997caf jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x52aa176a unix_attach_fds +EXPORT_SYMBOL vmlinux 0x52c4474d ap_cancel_message +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d73265 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x52dac32a path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x52fe415c unregister_shrinker +EXPORT_SYMBOL vmlinux 0x530080d4 set_groups +EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x535ea853 nf_log_trace +EXPORT_SYMBOL vmlinux 0x5373f900 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x53ad302d ping_prot +EXPORT_SYMBOL vmlinux 0x53c16dd1 scsi_print_command +EXPORT_SYMBOL vmlinux 0x53c7a943 pci_get_slot +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x5423e952 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x542f2eb4 sg_miter_start +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5443aa6b dev_uc_init +EXPORT_SYMBOL vmlinux 0x5445feab __irq_regs +EXPORT_SYMBOL vmlinux 0x54535975 scsi_add_device +EXPORT_SYMBOL vmlinux 0x5462a416 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x546e826e iunique +EXPORT_SYMBOL vmlinux 0x5484059c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x54905c3f sock_from_file +EXPORT_SYMBOL vmlinux 0x549a172a jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b3fd16 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x54c9ff35 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x550060ac netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x55047c45 km_report +EXPORT_SYMBOL vmlinux 0x5504b6b7 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55353f12 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x55489bb9 security_path_unlink +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55554a39 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x55562101 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x555878e6 inet_del_offload +EXPORT_SYMBOL vmlinux 0x555c4b8c console_stop +EXPORT_SYMBOL vmlinux 0x55631e5b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x557bcac8 __sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x5583f393 pci_release_regions +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558c97e8 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55a441e0 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x55b3d924 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x55bd73e4 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x55d5448f framebuffer_release +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x5604f5cb dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5611a386 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x561890c5 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x56297357 migrate_page_copy +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 0x565b6db9 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568275cd bio_uninit +EXPORT_SYMBOL vmlinux 0x568dcca2 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5699bd89 fb_deferred_io_mmap +EXPORT_SYMBOL vmlinux 0x56b4f918 uv_info +EXPORT_SYMBOL vmlinux 0x56c1429e deactivate_super +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ca422a raw3270_start +EXPORT_SYMBOL vmlinux 0x56d2889a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x56d78870 chsc +EXPORT_SYMBOL vmlinux 0x56f8c371 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x56f942a3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x57089893 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x57120f81 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x578a1876 tun_xdp_to_ptr +EXPORT_SYMBOL vmlinux 0x5790121a netdev_alert +EXPORT_SYMBOL vmlinux 0x57b7076a set_bh_page +EXPORT_SYMBOL vmlinux 0x57f7297f vlan_for_each +EXPORT_SYMBOL vmlinux 0x580776a2 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x581baad6 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58272841 napi_get_frags +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x584632c2 proc_create_data +EXPORT_SYMBOL vmlinux 0x5852ef8e scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x586383dc inode_dio_wait +EXPORT_SYMBOL vmlinux 0x58812f2a netdev_change_features +EXPORT_SYMBOL vmlinux 0x588ea78a hchacha_block +EXPORT_SYMBOL vmlinux 0x589c150a dev_err_hash +EXPORT_SYMBOL vmlinux 0x58a9696f scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58ae25a7 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fa08b1 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x5903a641 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x591ae38c jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5953cc00 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x59545a27 ihold +EXPORT_SYMBOL vmlinux 0x59588850 vsscanf +EXPORT_SYMBOL vmlinux 0x598af6e3 iput +EXPORT_SYMBOL vmlinux 0x5997adc5 invalidate_partition +EXPORT_SYMBOL vmlinux 0x59a8e5c1 tcf_register_action +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c1de5f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x59cb5401 fget +EXPORT_SYMBOL vmlinux 0x5a0e71fe simple_write_end +EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer +EXPORT_SYMBOL vmlinux 0x5a2995d7 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x5a3915c8 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x5a3ea972 d_drop +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5aa1e0 clear_inode +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a671c2b component_match_add_release +EXPORT_SYMBOL vmlinux 0x5a720efb vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5a8dda36 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x5abd913c security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x5abda22c __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5ac39d0d proc_set_size +EXPORT_SYMBOL vmlinux 0x5aec57b8 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x5b11f792 __inet_hash +EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3b294e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x5b496792 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x5b5ffec6 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b892950 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x5b8bd986 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5b9dca9f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x5bcaa3a8 memory_read_from_io_buffer +EXPORT_SYMBOL vmlinux 0x5bd98140 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be9779f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x5c057bd5 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x5c09bb36 con_is_bound +EXPORT_SYMBOL vmlinux 0x5c18ce13 current_in_userns +EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x5c316b22 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5c34bb3d __SetPageMovable +EXPORT_SYMBOL vmlinux 0x5c397c8b sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5c4265f6 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x5c4e5a8f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x5c60f671 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x5c65cca6 generic_write_end +EXPORT_SYMBOL vmlinux 0x5c75d467 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x5c923848 s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x5c9e2dda nonseekable_open +EXPORT_SYMBOL vmlinux 0x5ca9f13e sync_inode +EXPORT_SYMBOL vmlinux 0x5cab648e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x5cb13eeb sock_no_getname +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc6cf5c device_get_mac_address +EXPORT_SYMBOL vmlinux 0x5ce59a1a udp_gro_receive +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf5fb67 sk_capable +EXPORT_SYMBOL vmlinux 0x5d01f82d unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5d21cebd blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5d3d047d dfltcc_can_deflate +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad +EXPORT_SYMBOL vmlinux 0x5d9bd250 __d_drop +EXPORT_SYMBOL vmlinux 0x5da50e7c tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5dac2d6e dma_direct_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5dcbf0ac jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x5dcd331b xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x5dd3cedf gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x5de0033d __frontswap_store +EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5df7b983 kset_register +EXPORT_SYMBOL vmlinux 0x5dff1bdd neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x5e02b985 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5e02be7f blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x5e0aef55 udplite_prot +EXPORT_SYMBOL vmlinux 0x5e1ca1b4 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x5e20d0e0 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e5b76f8 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x5e66518f __lookup_constant +EXPORT_SYMBOL vmlinux 0x5e67c626 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x5e71d44b timespec64_trunc +EXPORT_SYMBOL vmlinux 0x5e78d1ad fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea0483a dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebc392a reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x5ebd7a79 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x5ecd1530 idr_destroy +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed33cb3 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee55192 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x5f060877 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x5f080f1b sock_no_mmap +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0a28d7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x5f168c1f __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x5f27177d fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x5f48d374 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x5f529bef fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5f5fcd95 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x5f7e6975 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5f8be85f starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5f92fa83 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5fb1c8d7 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x5fb498fa dump_page +EXPORT_SYMBOL vmlinux 0x5fc9d9ea udp_seq_next +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0x5fe52e57 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5ff64249 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5ff795ef __skb_ext_del +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60394651 iucv_root +EXPORT_SYMBOL vmlinux 0x604a5db8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60707fd4 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x60803316 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x60857e6d devm_of_iomap +EXPORT_SYMBOL vmlinux 0x608d249b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6092752d netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6096929f _dev_err +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609c5415 vfs_llseek +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq +EXPORT_SYMBOL vmlinux 0x60d45544 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x60e77832 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x60f7e9c5 inet_gso_segment +EXPORT_SYMBOL vmlinux 0x6101ed65 nmi_panic +EXPORT_SYMBOL vmlinux 0x61044fcb simple_nosetlease +EXPORT_SYMBOL vmlinux 0x611d8311 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613ca369 padata_do_serial +EXPORT_SYMBOL vmlinux 0x613ffd92 config_group_find_item +EXPORT_SYMBOL vmlinux 0x6152aabe kobject_get +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61919ffb ilookup +EXPORT_SYMBOL vmlinux 0x619277a7 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x61a10395 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x61a733f2 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cf0715 __close_fd_get_file +EXPORT_SYMBOL vmlinux 0x61dd77e6 generic_make_request +EXPORT_SYMBOL vmlinux 0x61e1d059 request_firmware +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6208a4ff remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622bfddb clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x624407a2 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x62682c2a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627da35b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6297d3da __neigh_event_send +EXPORT_SYMBOL vmlinux 0x62ab4071 may_umount +EXPORT_SYMBOL vmlinux 0x62ae3300 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62e3858a pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x62fa79da devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x63046092 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x634189e0 inet_offloads +EXPORT_SYMBOL vmlinux 0x634b5b7f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x634bf7e4 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x6361ec64 set_pgste_bits +EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb +EXPORT_SYMBOL vmlinux 0x63808cea xsk_umem_consume_tx_done +EXPORT_SYMBOL vmlinux 0x6380a5c2 seq_dentry +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ab0a55 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x63ab0d8b tty_port_close +EXPORT_SYMBOL vmlinux 0x63bda0a2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d6dbd9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f5f9ea netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x64084b3e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x640bd1b9 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64130adc pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x6414cd03 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x641584d3 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x64230048 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x6424aaa6 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x6425a593 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x643d9ba1 groups_free +EXPORT_SYMBOL vmlinux 0x64512165 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x64614246 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x6475e567 d_exact_alias +EXPORT_SYMBOL vmlinux 0x6479ff46 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648eb618 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a0bd40 dquot_acquire +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b639a3 __tracepoint_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0x64d9e3d5 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x6506d19d mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543531a abort_creds +EXPORT_SYMBOL vmlinux 0x654e6aca mpage_writepage +EXPORT_SYMBOL vmlinux 0x6555c798 sock_edemux +EXPORT_SYMBOL vmlinux 0x65617668 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6574c895 ilookup5 +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65924223 logfc +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65abeb2d nobh_writepage +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x6615b1e3 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x66282575 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x662cdabd dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x663efb68 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6642d348 complete +EXPORT_SYMBOL vmlinux 0x66616a6f register_sysctl +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666a4717 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6684a219 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x6691923f iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x6698efdc filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x669c862e bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x669edcff tcf_exts_change +EXPORT_SYMBOL vmlinux 0x66b98575 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x66c3f7f5 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x66cf01d8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x66decfd5 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x66e0fb2e __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66f07ab1 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x670abcc6 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x6716add2 dev_get_stats +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6721e5a4 down_killable +EXPORT_SYMBOL vmlinux 0x6746f431 kernel_connect +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674be0f5 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x6764da8a raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x676d2a9c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x67ac08de reuseport_alloc +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bd15c1 set_cached_acl +EXPORT_SYMBOL vmlinux 0x67df2390 pci_set_vpd_size +EXPORT_SYMBOL vmlinux 0x680b1322 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x6813a3a1 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x6819f049 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x684fe4f5 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x685e31ca groups_sort +EXPORT_SYMBOL vmlinux 0x686aad7c ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x6893b4d6 ida_alloc_range +EXPORT_SYMBOL vmlinux 0x68a90b51 get_default_font +EXPORT_SYMBOL vmlinux 0x68af43cb dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x68d0b21e compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x68d76620 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x68d8ac7b skb_dequeue +EXPORT_SYMBOL vmlinux 0x68ee0c97 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x69097457 crc32_be +EXPORT_SYMBOL vmlinux 0x69227401 dfltcc_reset +EXPORT_SYMBOL vmlinux 0x69387647 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x693b8ea3 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x6940c285 unregister_netdev +EXPORT_SYMBOL vmlinux 0x69493b1a kstrtos16 +EXPORT_SYMBOL vmlinux 0x69616e80 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x6963f372 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696f3a3b dev_add_pack +EXPORT_SYMBOL vmlinux 0x6970b50b netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6976daec down_write +EXPORT_SYMBOL vmlinux 0x6984063d update_region +EXPORT_SYMBOL vmlinux 0x6989f29d skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x69aa59e9 dma_dummy_ops +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b50075 dquot_operations +EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x69d16bdd unregister_nls +EXPORT_SYMBOL vmlinux 0x69d85c34 gen_pool_create +EXPORT_SYMBOL vmlinux 0x69ff8437 get_acl +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2c1415 free_buffer_head +EXPORT_SYMBOL vmlinux 0x6a57d8ac thaw_super +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6f8481 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0x6a873798 unregister_console +EXPORT_SYMBOL vmlinux 0x6a8c98e5 register_netdev +EXPORT_SYMBOL vmlinux 0x6a9a78a0 datagram_poll +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa8039c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6aad8093 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x6ab4b955 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x6af1759f pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6b0d34af dget_parent +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2f2bc5 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6b3cda59 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6b49bc2f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a83a0 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x6b727fba sock_register +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d262d dev_deactivate +EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le +EXPORT_SYMBOL vmlinux 0x6baca297 __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x6bb2d2f1 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bccd3f3 skb_split +EXPORT_SYMBOL vmlinux 0x6beea908 dma_set_mask +EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x6c186dae task_work_add +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c3de98c put_disk +EXPORT_SYMBOL vmlinux 0x6c4edd9c truncate_setsize +EXPORT_SYMBOL vmlinux 0x6c57f71f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x6c5b2037 device_add_disk_no_queue_reg +EXPORT_SYMBOL vmlinux 0x6c60994e remove_wait_queue +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6ab144 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x6c8ce9f2 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x6c9bf935 sock_wfree +EXPORT_SYMBOL vmlinux 0x6c9e885c nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbaa604 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x6cc1b550 build_skb_around +EXPORT_SYMBOL vmlinux 0x6cc710ff gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x6cd482c5 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x6cf62166 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6cff3b90 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x6d04849d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x6d0ee357 vmap +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2fce8e ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d386707 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x6d3be6f1 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x6d52720f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6d5c6baf km_new_mapping +EXPORT_SYMBOL vmlinux 0x6d6dcb12 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x6d702867 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x6d78836e mmput_async +EXPORT_SYMBOL vmlinux 0x6dab0254 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x6dbb632b param_ops_ulong +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd64d86 param_set_int +EXPORT_SYMBOL vmlinux 0x6de7d6b3 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e019034 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x6e26ea4f kill_anon_super +EXPORT_SYMBOL vmlinux 0x6e4744d5 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6e5b390b iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x6e66e3d4 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x6e711265 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eab31ef tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x6ebbfd24 send_sig +EXPORT_SYMBOL vmlinux 0x6ed8a5fc hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node +EXPORT_SYMBOL vmlinux 0x6f07dc4c netif_napi_del +EXPORT_SYMBOL vmlinux 0x6f2ac137 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x6f2e2f7c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x6f33f321 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0x6f3a63e3 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x6f3b97e9 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x6f492773 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f689943 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x6f68d6e4 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x6f791233 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x6f816985 map_kernel_range_noflush +EXPORT_SYMBOL vmlinux 0x6f83f430 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x6f8b6712 netdev_update_lockdep_key +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fc2745c radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x6fd276dd __block_write_begin +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdc8fea flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6fdd213b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7004a69a cont_write_begin +EXPORT_SYMBOL vmlinux 0x702f4acf udp_table +EXPORT_SYMBOL vmlinux 0x7052a63e lock_rename +EXPORT_SYMBOL vmlinux 0x70550b8c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7071a4f2 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x707a1f41 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x70829714 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7088880f commit_creds +EXPORT_SYMBOL vmlinux 0x70a3e8ab __cgroup_bpf_run_filter_setsockopt +EXPORT_SYMBOL vmlinux 0x70bfed2c d_alloc_anon +EXPORT_SYMBOL vmlinux 0x70d5ed93 ida_destroy +EXPORT_SYMBOL vmlinux 0x70e79b4e pcim_pin_device +EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size +EXPORT_SYMBOL vmlinux 0x711473f9 tty_throttle +EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x712135d6 proc_dostring +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71309463 pci_release_resource +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x714c5157 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7161ff37 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7179b34e netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x717da3b9 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x718098e9 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7186cc9c blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x718a130c cdev_device_add +EXPORT_SYMBOL vmlinux 0x71979618 input_release_device +EXPORT_SYMBOL vmlinux 0x71a2d20b xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ab043f pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x71b94b3b truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x71bcf9d9 kset_unregister +EXPORT_SYMBOL vmlinux 0x71cef3df get_tree_bdev +EXPORT_SYMBOL vmlinux 0x71d644cf cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x71df609c mempool_destroy +EXPORT_SYMBOL vmlinux 0x71f32bd0 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x72102ec0 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7249a881 ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726e9188 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x727242a9 sha256_update +EXPORT_SYMBOL vmlinux 0x727fc9d8 inet6_getname +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d7ce15 finalize_exec +EXPORT_SYMBOL vmlinux 0x72e449ea __xa_set_mark +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eaca51 is_subdir +EXPORT_SYMBOL vmlinux 0x72f02478 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0x7316e2de param_ops_bool +EXPORT_SYMBOL vmlinux 0x7319f3a2 dev_activate +EXPORT_SYMBOL vmlinux 0x731eac73 dma_resv_init +EXPORT_SYMBOL vmlinux 0x73552eb3 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x73567b03 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x736a0fcf xfrm_input +EXPORT_SYMBOL vmlinux 0x736beef5 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x737bbc65 page_readlink +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73869f30 __tracepoint_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x7389706a __memset16 +EXPORT_SYMBOL vmlinux 0x73b15b34 dump_emit +EXPORT_SYMBOL vmlinux 0x73b1d246 debug_exception_common +EXPORT_SYMBOL vmlinux 0x73b64e95 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73d900e0 stop_tty +EXPORT_SYMBOL vmlinux 0x73e58b9d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x73f0ed03 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7402ce67 pci_dev_put +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x741f9724 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x74240114 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74329881 pskb_extract +EXPORT_SYMBOL vmlinux 0x745d3627 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init +EXPORT_SYMBOL vmlinux 0x748c7950 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x74af1ea6 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c39ed5 ap_driver_register +EXPORT_SYMBOL vmlinux 0x74de8727 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f208a6 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x74f5ac78 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x750ed83a kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7516c719 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x75254f75 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x752551ad blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x753b1fdf ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x754584cf __kernel_write +EXPORT_SYMBOL vmlinux 0x757cc6f3 simple_lookup +EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 +EXPORT_SYMBOL vmlinux 0x759a9f2d refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch +EXPORT_SYMBOL vmlinux 0x75bb3157 eth_commit_mac_addr_change +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 0x75dd0c68 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x75f81f24 mr_table_dump +EXPORT_SYMBOL vmlinux 0x75fcdd6f panic_notifier_list +EXPORT_SYMBOL vmlinux 0x76028ff0 revalidate_disk +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760a3eca ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7625f90a in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7640b3cf take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765aedee blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x765c7cb3 sclp +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7671e001 xa_store_range +EXPORT_SYMBOL vmlinux 0x767bfce9 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x76888cdd netif_receive_skb +EXPORT_SYMBOL vmlinux 0x768a21f4 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76b98577 inet_gro_complete +EXPORT_SYMBOL vmlinux 0x76c63260 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76ec2611 sync_filesystem +EXPORT_SYMBOL vmlinux 0x76f6b1c0 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0x77099439 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x772d2ef9 qdisc_reset +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x774c7114 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x774e7a75 ip_options_compile +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779f9df3 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77be17d4 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x77d019fb __mutex_init +EXPORT_SYMBOL vmlinux 0x77e64afa gro_cells_receive +EXPORT_SYMBOL vmlinux 0x77e68f34 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77eb70df fasync_helper +EXPORT_SYMBOL vmlinux 0x77fc9d40 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780a87fb flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x781227fe proc_symlink +EXPORT_SYMBOL vmlinux 0x7817c595 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x781a309b udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x78315848 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x783d24b0 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x78691230 generic_write_checks +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a0e487 udplite_table +EXPORT_SYMBOL vmlinux 0x78a10cee vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a49592 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x78c0027b __ip_options_compile +EXPORT_SYMBOL vmlinux 0x78c5e2fe blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x78d54584 tcp_filter +EXPORT_SYMBOL vmlinux 0x78d7f8c2 skb_push +EXPORT_SYMBOL vmlinux 0x78da997e ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x78daf761 tty_lock +EXPORT_SYMBOL vmlinux 0x78dd584f drop_super +EXPORT_SYMBOL vmlinux 0x78deaa88 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ed7423 mempool_create_node +EXPORT_SYMBOL vmlinux 0x78f5db1a component_match_add_typed +EXPORT_SYMBOL vmlinux 0x790ddf0f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x792333bd vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x792d4eaa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x792d7f0f down +EXPORT_SYMBOL vmlinux 0x793a8204 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x7942f537 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x794ee09d end_page_writeback +EXPORT_SYMBOL vmlinux 0x79556598 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x7956944e lock_page_memcg +EXPORT_SYMBOL vmlinux 0x79626634 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7963f198 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x796b8d9e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x798e3f27 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x799b7f96 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x79d57c48 __devm_request_region +EXPORT_SYMBOL vmlinux 0x79ea15fc eth_type_trans +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2b29ef input_set_capability +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a45048d md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x7a4cf46b tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x7a51234c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x7a5d9a71 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7a5eb5a6 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x7a7c6f0f vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register +EXPORT_SYMBOL vmlinux 0x7a7d79e8 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7a801131 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a96729f fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7a967bac fscrypt_enqueue_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7a9b37e8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa32ce8 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7aad5638 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac4b8a5 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adc2b27 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x7ae84b8f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7ae8a800 kill_pid +EXPORT_SYMBOL vmlinux 0x7b00f308 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7b0192da kstrtou16 +EXPORT_SYMBOL vmlinux 0x7b139af3 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x7b1913a4 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5ace4c gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x7b5c5d9a arp_send +EXPORT_SYMBOL vmlinux 0x7b713fad tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x7b7a5d74 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x7b7f1f9b ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7b93020b inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7b98190b string_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0x7bb40ca0 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x7bb87fa9 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain +EXPORT_SYMBOL vmlinux 0x7bebb946 napi_disable +EXPORT_SYMBOL vmlinux 0x7c12c2c1 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c331c90 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7c3a6eb5 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x7c40a34c md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c6defdb pci_disable_device +EXPORT_SYMBOL vmlinux 0x7c6ed587 bioset_init +EXPORT_SYMBOL vmlinux 0x7c8764d8 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca6b16d param_ops_string +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb70ce6 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d52adb4 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x7d76f342 inet6_protos +EXPORT_SYMBOL vmlinux 0x7d8e8a5b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x7da89118 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbc26aa nf_log_packet +EXPORT_SYMBOL vmlinux 0x7dc81c60 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7dd3b5f5 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df975f0 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7e0a40b4 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7e1669bb blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e33f012 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x7e3f70dd dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x7e5daef1 dm_io +EXPORT_SYMBOL vmlinux 0x7e6a3a64 __put_page +EXPORT_SYMBOL vmlinux 0x7e6a5039 irq_to_desc +EXPORT_SYMBOL vmlinux 0x7e78acb4 con_is_visible +EXPORT_SYMBOL vmlinux 0x7e812dc2 netif_skb_features +EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x7ef784f2 rename_lock +EXPORT_SYMBOL vmlinux 0x7ef80105 inet_frag_find +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f06a229 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7f1b8180 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2e1ab7 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x7f3648b1 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f543a10 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5e6729 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7f757d3d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9c47e6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fc5be97 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7fd3a269 request_key_tag +EXPORT_SYMBOL vmlinux 0x7fd9b40d dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7fde0483 get_tree_single +EXPORT_SYMBOL vmlinux 0x7fe0cf05 udp_poll +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe56f13 sock_wake_async +EXPORT_SYMBOL vmlinux 0x7fe85a61 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x7fe9cd49 d_alloc_name +EXPORT_SYMBOL vmlinux 0x8005cf66 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x800d5508 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8011d34e inet_release +EXPORT_SYMBOL vmlinux 0x8021bd8a fqdir_exit +EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x8069dac1 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x80789dd8 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x808e1977 dm_register_target +EXPORT_SYMBOL vmlinux 0x808fdd67 inet_sendpage +EXPORT_SYMBOL vmlinux 0x809bb372 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x80a8eae2 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x80b9cb5c iov_iter_npages +EXPORT_SYMBOL vmlinux 0x80bccb74 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d3cc3e generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x80e659e6 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update +EXPORT_SYMBOL vmlinux 0x8137cfe6 current_time +EXPORT_SYMBOL vmlinux 0x814d5d16 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816985ee skb_clone +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user +EXPORT_SYMBOL vmlinux 0x818b41b7 dev_mc_del +EXPORT_SYMBOL vmlinux 0x818d7efa inet_addr_type +EXPORT_SYMBOL vmlinux 0x8193c60b xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e8603a set_device_ro +EXPORT_SYMBOL vmlinux 0x81f02135 dma_direct_unmap_sg +EXPORT_SYMBOL vmlinux 0x8202d848 unlock_buffer +EXPORT_SYMBOL vmlinux 0x82046b9b tcp_mmap +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8217143c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x82447132 page_pool_create +EXPORT_SYMBOL vmlinux 0x82513b7c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x825f65c0 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x8263958a devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8265860b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x826f0ea2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x8278dafd tcf_block_get +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8296aa89 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x82a73295 prepare_creds +EXPORT_SYMBOL vmlinux 0x82ae88aa __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x82b1b610 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82c9d56b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x82da09b8 d_invalidate +EXPORT_SYMBOL vmlinux 0x82e8fd61 pci_save_state +EXPORT_SYMBOL vmlinux 0x830f95e3 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x8310c3e8 inet_put_port +EXPORT_SYMBOL vmlinux 0x834132b3 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x839db298 pci_iomap_wc_range +EXPORT_SYMBOL vmlinux 0x83b92825 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x83c8fcb5 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x83d62a19 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x83d66662 sock_rfree +EXPORT_SYMBOL vmlinux 0x83db91d5 __register_chrdev +EXPORT_SYMBOL vmlinux 0x83e1438d raw3270_request_reset +EXPORT_SYMBOL vmlinux 0x83fd8a07 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84283f27 unload_nls +EXPORT_SYMBOL vmlinux 0x843e776b nf_log_unregister +EXPORT_SYMBOL vmlinux 0x843efed0 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x844981bd setattr_copy +EXPORT_SYMBOL vmlinux 0x8465e825 proc_create +EXPORT_SYMBOL vmlinux 0x847bf357 ap_perms_mutex +EXPORT_SYMBOL vmlinux 0x848d22b6 finish_wait +EXPORT_SYMBOL vmlinux 0x849e1194 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x84b0877d simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x84bb63c6 put_fs_context +EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x84c66a4d __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0x84d43ce7 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 +EXPORT_SYMBOL vmlinux 0x85228267 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x852e608a cdev_set_parent +EXPORT_SYMBOL vmlinux 0x85532eb1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856e6cb6 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x85a3026f __wake_up_bit +EXPORT_SYMBOL vmlinux 0x85aab1cb inet6_ioctl +EXPORT_SYMBOL vmlinux 0x85ab4d41 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x85ddcbc4 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f51fda flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x86226495 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x86237388 arch_read_lock_wait +EXPORT_SYMBOL vmlinux 0x862704d5 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x863147cc timestamp_truncate +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes +EXPORT_SYMBOL vmlinux 0x86838a09 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b25ff7 raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x86cf6223 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x86d21774 path_put +EXPORT_SYMBOL vmlinux 0x86d2fdb3 file_modified +EXPORT_SYMBOL vmlinux 0x86d5551a inet_select_addr +EXPORT_SYMBOL vmlinux 0x86efa45f qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fbce61 mutex_trylock +EXPORT_SYMBOL vmlinux 0x8703f9e3 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor +EXPORT_SYMBOL vmlinux 0x872124ca debug_register +EXPORT_SYMBOL vmlinux 0x8740c261 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x875ff19b locks_delete_block +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87fc6b91 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8800ec5f fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x8809b7c3 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x883489c9 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x883f3bc1 bd_set_size +EXPORT_SYMBOL vmlinux 0x884af4c3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8861ad59 md_write_inc +EXPORT_SYMBOL vmlinux 0x886b1e51 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x8881f57a __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88989eee _dev_crit +EXPORT_SYMBOL vmlinux 0x88b3a316 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x88bd463d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x88bfabd6 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x88d6b1e6 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e72fca seq_pad +EXPORT_SYMBOL vmlinux 0x88eec275 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x88ffbe48 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x891699a8 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x89385b81 finish_no_open +EXPORT_SYMBOL vmlinux 0x8961c949 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x897ee338 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x89801969 pci_dev_get +EXPORT_SYMBOL vmlinux 0x8994e0d7 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x89b3ade2 sha224_final +EXPORT_SYMBOL vmlinux 0x89c02fc6 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x89c566fb jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x89ead4e5 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x89f5dd1b give_up_console +EXPORT_SYMBOL vmlinux 0x8a047161 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8a07d5a0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a23b5b9 param_get_int +EXPORT_SYMBOL vmlinux 0x8a2c833d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8a4b11a3 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8a6bddc3 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aafc24e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac86bfe flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0e490e md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x8b3b268d put_ipc_ns +EXPORT_SYMBOL vmlinux 0x8b4fcc1b dm_table_get_md +EXPORT_SYMBOL vmlinux 0x8b51a43d nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8b5b25c8 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8b5c5a4b single_release +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b63a648 I_BDEV +EXPORT_SYMBOL vmlinux 0x8b684bae scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x8b7a9519 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b855f8e iget_failed +EXPORT_SYMBOL vmlinux 0x8b8778e0 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9baf1b compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bdb7a0e wait_for_completion +EXPORT_SYMBOL vmlinux 0x8bf02475 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x8bf2029b key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8c05d903 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x8c125e6f pci_set_power_state +EXPORT_SYMBOL vmlinux 0x8c162955 dev_uc_del +EXPORT_SYMBOL vmlinux 0x8c200282 pipe_unlock +EXPORT_SYMBOL vmlinux 0x8c23f509 param_set_short +EXPORT_SYMBOL vmlinux 0x8c34e329 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x8c4e35fa __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8c530a09 file_path +EXPORT_SYMBOL vmlinux 0x8c5fb6e2 mempool_init_node +EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8c66f214 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8c761c8b generic_writepages +EXPORT_SYMBOL vmlinux 0x8c7dda42 xdp_get_umem_from_qid +EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init +EXPORT_SYMBOL vmlinux 0x8c97c4c6 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply +EXPORT_SYMBOL vmlinux 0x8cb544df __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x8cb59f90 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8cc0e3ee mount_subtree +EXPORT_SYMBOL vmlinux 0x8cd5c8cd register_filesystem +EXPORT_SYMBOL vmlinux 0x8cfdfc2c raw_copy_to_user +EXPORT_SYMBOL vmlinux 0x8d058271 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x8d0620b2 setup_new_exec +EXPORT_SYMBOL vmlinux 0x8d1ce3d8 ap_driver_unregister +EXPORT_SYMBOL vmlinux 0x8d3cf6c8 tty_hangup +EXPORT_SYMBOL vmlinux 0x8d47d136 generic_file_open +EXPORT_SYMBOL vmlinux 0x8d4b71f6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d575c3d ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x8d5aba95 request_key_rcu +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8db096a7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x8dd30eaa try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de92565 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfd780f d_rehash +EXPORT_SYMBOL vmlinux 0x8e0e1951 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8e1115da qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8e73445d add_to_pipe +EXPORT_SYMBOL vmlinux 0x8e9eab61 check_zeroed_user +EXPORT_SYMBOL vmlinux 0x8ebc04d4 kthread_bind +EXPORT_SYMBOL vmlinux 0x8ec7f250 dma_fence_free +EXPORT_SYMBOL vmlinux 0x8ed15215 seq_file_path +EXPORT_SYMBOL vmlinux 0x8efdad3a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x8f1c0ae2 vfs_get_link +EXPORT_SYMBOL vmlinux 0x8f26c798 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x8f2cdb54 vm_insert_page +EXPORT_SYMBOL vmlinux 0x8f409ab9 brioctl_set +EXPORT_SYMBOL vmlinux 0x8f4f4c99 blk_rq_init +EXPORT_SYMBOL vmlinux 0x8f54b7cf padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f746257 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8f7bd7ff pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8f844ed6 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x8f89145e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x8f96fdf4 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8faad0dd discard_new_inode +EXPORT_SYMBOL vmlinux 0x8fb6632c register_key_type +EXPORT_SYMBOL vmlinux 0x8fb7ae5d kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8fb7c9cd input_setup_polling +EXPORT_SYMBOL vmlinux 0x8fb8f016 fscrypt_get_ctx +EXPORT_SYMBOL vmlinux 0x8fe757a5 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x8fea7b4b __module_get +EXPORT_SYMBOL vmlinux 0x8feae937 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x8ff51a97 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8ff75f0d dquot_disable +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x900fd252 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x902b68cd no_llseek +EXPORT_SYMBOL vmlinux 0x90909058 dma_direct_map_page +EXPORT_SYMBOL vmlinux 0x90ba6fa0 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x90e745a3 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x90fac806 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x9112e704 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x911a98f3 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x9126c8e3 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x91297257 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x91450ac2 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x915a440b kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x918fb083 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x919c43c7 mutex_unlock +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b05f5d jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x91b50222 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x91c00dea raw3270_del_view +EXPORT_SYMBOL vmlinux 0x920e4ab4 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x9215acaa md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9272b899 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x92741f98 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x92a45289 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x92b0471f cdev_device_del +EXPORT_SYMBOL vmlinux 0x92b92e7e __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x92dd13c8 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x92ea3bc8 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92ee5f92 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x92f14df6 iterate_fd +EXPORT_SYMBOL vmlinux 0x9305bf68 find_next_and_bit +EXPORT_SYMBOL vmlinux 0x93283902 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x932c2539 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x93311f3b fb_show_logo +EXPORT_SYMBOL vmlinux 0x933d0597 bdev_read_only +EXPORT_SYMBOL vmlinux 0x9376763a register_framebuffer +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937a0f7b devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x9397295f bioset_exit +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bfb7bd down_write_trylock +EXPORT_SYMBOL vmlinux 0x93dd1610 block_commit_write +EXPORT_SYMBOL vmlinux 0x93dfee56 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x93ef396a __bread_gfp +EXPORT_SYMBOL vmlinux 0x93f19ce8 simple_open +EXPORT_SYMBOL vmlinux 0x940261e1 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject +EXPORT_SYMBOL vmlinux 0x943229be seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x9432c541 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x9447362f dquot_transfer +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x9470d357 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b30d27 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e61fad __sb_start_write +EXPORT_SYMBOL vmlinux 0x94f31333 dump_fpu +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept +EXPORT_SYMBOL vmlinux 0x9530da8e node_data +EXPORT_SYMBOL vmlinux 0x953adc3b dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x9542faf7 sclp_unregister +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955b02f5 pci_clear_master +EXPORT_SYMBOL vmlinux 0x95630497 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x95a06eb1 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x95a96b3d ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x95b94797 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x964f2241 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x964ffed6 pci_bus_type +EXPORT_SYMBOL vmlinux 0x966811aa scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock +EXPORT_SYMBOL vmlinux 0x96749f20 down_read_killable +EXPORT_SYMBOL vmlinux 0x9686d691 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x96a396f3 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x96a4fbd2 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x96b742fb debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cfb8e4 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x96d20e25 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x96e0d0f7 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x96e7b1c6 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x96f1a829 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fb5ad9 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x9705883d dev_set_alias +EXPORT_SYMBOL vmlinux 0x9707552f dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x97159a1d key_invalidate +EXPORT_SYMBOL vmlinux 0x97159ed8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x9716b886 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9717f9ed get_disk_and_module +EXPORT_SYMBOL vmlinux 0x97277867 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x972e907a wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin +EXPORT_SYMBOL vmlinux 0x9780a229 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x97875335 d_instantiate +EXPORT_SYMBOL vmlinux 0x978b415d skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x980bcb43 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x9820eae4 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x9829adfc nlmsg_notify +EXPORT_SYMBOL vmlinux 0x9834f010 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x9837f437 seq_puts +EXPORT_SYMBOL vmlinux 0x984ce9bd __nla_parse +EXPORT_SYMBOL vmlinux 0x9865e1d8 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x988fcafb udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x98900d10 tso_build_data +EXPORT_SYMBOL vmlinux 0x98ae8a05 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x98bccd82 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x98bd3fd3 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x98c04bb1 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x98c88497 simple_unlink +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98e305a8 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ef199b path_nosuid +EXPORT_SYMBOL vmlinux 0x99030787 cdev_alloc +EXPORT_SYMBOL vmlinux 0x9904c2f1 unlock_rename +EXPORT_SYMBOL vmlinux 0x9907a3e8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x992288d3 __neigh_create +EXPORT_SYMBOL vmlinux 0x9924d458 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x993193c2 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x994bf8ac __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995fbba5 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x996d2dbb __lock_page +EXPORT_SYMBOL vmlinux 0x99786a78 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1e301 bdi_alloc_node +EXPORT_SYMBOL vmlinux 0x99e3489b d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x9a0a0c04 __krealloc +EXPORT_SYMBOL vmlinux 0x9a1855a1 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1ef82a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3d8ec3 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x9a4d89bb neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9a4e0bf3 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x9a525867 seq_release_private +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a74e96b xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x9a8810c2 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x9a88dae5 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x9a8fd380 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9aa67d8f pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x9aaea71a blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab6c6bb skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9abdb255 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9ac193d7 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x9ac63d5e f_setown +EXPORT_SYMBOL vmlinux 0x9ac8e0b2 dma_cache_sync +EXPORT_SYMBOL vmlinux 0x9b08860e __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x9b0f80a0 elv_rb_del +EXPORT_SYMBOL vmlinux 0x9b1e43c5 try_to_release_page +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b64b5d7 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9ba6f481 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x9bb38f54 get_super_exclusive_thawed +EXPORT_SYMBOL vmlinux 0x9bc4c569 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9bc62df2 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x9bc7ea43 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x9bcbf24c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x9beb049b fscrypt_inherit_context +EXPORT_SYMBOL vmlinux 0x9bf1873a __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x9c0821ea vsnprintf +EXPORT_SYMBOL vmlinux 0x9c0d4cea tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9c1905d5 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9c1c26e1 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9c280cea blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x9c2a78bc lookup_one_len +EXPORT_SYMBOL vmlinux 0x9c31dd0e mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x9c37df07 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9c4246bd devm_memremap +EXPORT_SYMBOL vmlinux 0x9c5102bc sk_stream_error +EXPORT_SYMBOL vmlinux 0x9c61510a generic_listxattr +EXPORT_SYMBOL vmlinux 0x9c8fabad raw3270_request_free +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9ca9a437 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce2087a jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x9cf00f7b simple_setattr +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev +EXPORT_SYMBOL vmlinux 0x9d557b96 skb_put +EXPORT_SYMBOL vmlinux 0x9d5cae7f fc_mount +EXPORT_SYMBOL vmlinux 0x9d5ed099 path_has_submounts +EXPORT_SYMBOL vmlinux 0x9d8203b0 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x9d970318 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x9da868c3 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9daef75b lease_modify +EXPORT_SYMBOL vmlinux 0x9db07b72 __scm_destroy +EXPORT_SYMBOL vmlinux 0x9dbbfd7e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x9dc5e8c2 __cgroup_bpf_check_dev_permission +EXPORT_SYMBOL vmlinux 0x9dcebb40 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x9df49b9c fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x9df81db4 ___ratelimit +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e21cce3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x9e339688 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x9e3566a6 ns_capable +EXPORT_SYMBOL vmlinux 0x9e391d39 skb_ext_add +EXPORT_SYMBOL vmlinux 0x9e3f7be1 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x9e3ff2d5 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x9e4de165 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e695b70 xsk_umem_discard_addr +EXPORT_SYMBOL vmlinux 0x9e914d39 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x9e92d3a7 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ee74075 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9eeb3f69 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9efb5dcd block_truncate_page +EXPORT_SYMBOL vmlinux 0x9f0d1f31 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x9f24646e __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax +EXPORT_SYMBOL vmlinux 0x9f61760a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9f6d131c wake_up_process +EXPORT_SYMBOL vmlinux 0x9f8e6f8f inet6_del_offload +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb1d0ed uuid_is_valid +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdf0d85 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x9febb4fd debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0053ac0 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa052033b scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa05240ff try_module_get +EXPORT_SYMBOL vmlinux 0xa053f70a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084cb61 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d2643a is_bad_inode +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d762c6 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0de4978 make_kgid +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f24a11 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa0f37b05 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1014413 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order +EXPORT_SYMBOL vmlinux 0xa12046d0 rt6_lookup +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa126c93f __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xa13c9739 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0xa1426f88 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xa146b02b fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xa149140f csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xa172a8d7 pci_release_region +EXPORT_SYMBOL vmlinux 0xa173d64e inode_insert5 +EXPORT_SYMBOL vmlinux 0xa177e81e config_group_init +EXPORT_SYMBOL vmlinux 0xa182aa5c inc_nlink +EXPORT_SYMBOL vmlinux 0xa19e7700 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d30fd7 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1e63aad get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1f2cff7 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa1f4e674 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa22792e1 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xa23bbedd kobject_del +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa2524b3b dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa2570df3 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa271eade tty_vhangup +EXPORT_SYMBOL vmlinux 0xa283af36 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa289421e skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29069a9 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xa2921b73 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xa296f79a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa2abecec dcb_setapp +EXPORT_SYMBOL vmlinux 0xa2c5dd32 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa2d75910 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xa2f00bab pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa3145a42 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xa317e8db security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xa31ca5f6 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa31e4647 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa32f45fa vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xa3320a3a dma_direct_map_resource +EXPORT_SYMBOL vmlinux 0xa3356ef5 fscrypt_get_encryption_info +EXPORT_SYMBOL vmlinux 0xa33e738e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa36701d5 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa37ab003 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xa388c3d9 dup_iter +EXPORT_SYMBOL vmlinux 0xa39576f3 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3d7220b copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa3e979cf pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa3ef100a dev_close +EXPORT_SYMBOL vmlinux 0xa3f56c30 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xa4114b93 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xa416c8e9 arch_write_lock_wait +EXPORT_SYMBOL vmlinux 0xa4272ad0 put_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xa42af456 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0xa42c7632 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xa43256c0 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa43a3bf9 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa456c805 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xa4640e12 register_console +EXPORT_SYMBOL vmlinux 0xa47bc417 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xa499f7c3 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4ad330b dma_direct_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xa4c2f170 __seq_open_private +EXPORT_SYMBOL vmlinux 0xa4c4c04a netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4ed994b dcache_dir_close +EXPORT_SYMBOL vmlinux 0xa4faeb20 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa50483fe __ksize +EXPORT_SYMBOL vmlinux 0xa519c8e6 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xa51accd2 genl_notify +EXPORT_SYMBOL vmlinux 0xa51bbd09 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xa521fbb8 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa529134b fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xa52ae5a8 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xa52db988 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xa530b7f6 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa535692e d_add_ci +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa568f1ca touch_atime +EXPORT_SYMBOL vmlinux 0xa56e549d input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xa575e97f __skb_pad +EXPORT_SYMBOL vmlinux 0xa57d54b9 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa586d622 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xa59158b0 xa_load +EXPORT_SYMBOL vmlinux 0xa5ca4c88 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa5d3695f sync_blockdev +EXPORT_SYMBOL vmlinux 0xa5e47e7b input_unregister_handle +EXPORT_SYMBOL vmlinux 0xa5ef5eb1 tty_name +EXPORT_SYMBOL vmlinux 0xa5fd68e5 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xa603174c sock_init_data +EXPORT_SYMBOL vmlinux 0xa60d404c get_super +EXPORT_SYMBOL vmlinux 0xa6172e23 release_firmware +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa64caf36 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xa6507b33 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0xa66e337a kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xa67a0fa8 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6841fb6 tun_ptr_to_xdp +EXPORT_SYMBOL vmlinux 0xa6b1d920 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xa6b65689 page_get_link +EXPORT_SYMBOL vmlinux 0xa6bc66c4 freeze_super +EXPORT_SYMBOL vmlinux 0xa6c1e036 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa6c35fa5 kern_unmount +EXPORT_SYMBOL vmlinux 0xa6d582a2 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xa6e5df99 single_open_size +EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0xa6eaa45e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xa6ef9be7 d_genocide +EXPORT_SYMBOL vmlinux 0xa70910f5 utf8len +EXPORT_SYMBOL vmlinux 0xa70ea6d7 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa73d324e file_update_time +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74cd5e2 __page_pool_put_page +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa789dcf3 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa78bea59 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xa7904be1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa7916b32 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xa7cdbdf2 down_read +EXPORT_SYMBOL vmlinux 0xa7e159bc generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xa7e38f12 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7eb2158 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f7fb9f file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xa81485cd tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xa81ebe89 file_ns_capable +EXPORT_SYMBOL vmlinux 0xa839804e ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0xa839c8f5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa83f1d91 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8442540 unix_get_socket +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa85f6050 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa88d973b dump_truncate +EXPORT_SYMBOL vmlinux 0xa8ec906a md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f87110 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xa8f8f96f __register_binfmt +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa9207543 netdev_crit +EXPORT_SYMBOL vmlinux 0xa934df35 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xa948dad3 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9b1dc6c down_timeout +EXPORT_SYMBOL vmlinux 0xa9c5a815 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa9d88f38 key_validate +EXPORT_SYMBOL vmlinux 0xaa044e9b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xaa0d9807 seq_putc +EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update +EXPORT_SYMBOL vmlinux 0xaa221ef5 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xaa62d197 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xaaaeb44c new_inode +EXPORT_SYMBOL vmlinux 0xaabf74f5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab067939 set_security_override +EXPORT_SYMBOL vmlinux 0xab0a7514 zap_page_range +EXPORT_SYMBOL vmlinux 0xab1941cb dst_destroy +EXPORT_SYMBOL vmlinux 0xab21b263 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3bb343 dq_data_lock +EXPORT_SYMBOL vmlinux 0xab4ac2d2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xab4dd35f arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xab53a5fa xa_find_after +EXPORT_SYMBOL vmlinux 0xab5dab12 simple_link +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab693476 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xab695b3b napi_complete_done +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab93c86f down_read_interruptible +EXPORT_SYMBOL vmlinux 0xab9794cb nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xab98371d xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xaba81805 xps_rxqs_needed +EXPORT_SYMBOL vmlinux 0xabab315f netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xabbda7ba netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xabc8ab23 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xabce6431 touch_buffer +EXPORT_SYMBOL vmlinux 0xabcec8be fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xabdf8c99 devm_iounmap +EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xabe1e7b2 __lock_buffer +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf89c4f blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xabfa975b pci_find_capability +EXPORT_SYMBOL vmlinux 0xac0a2b4d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac393d28 override_creds +EXPORT_SYMBOL vmlinux 0xac56b6d3 __tracepoint_s390_cio_msch +EXPORT_SYMBOL vmlinux 0xac5ee9bf ap_queue_init_state +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6b8814 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xac73a1f8 get_user_pages +EXPORT_SYMBOL vmlinux 0xac75f589 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xac77806d netdev_state_change +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac94e86b vsprintf +EXPORT_SYMBOL vmlinux 0xac96fe26 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xac9ec56a get_task_exe_file +EXPORT_SYMBOL vmlinux 0xac9f8baf qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb020ce node_states +EXPORT_SYMBOL vmlinux 0xacc42352 devm_free_irq +EXPORT_SYMBOL vmlinux 0xacc702d3 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xacc8657c fscrypt_release_ctx +EXPORT_SYMBOL vmlinux 0xaccbab23 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xaccf2b95 mr_dump +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace431e4 tty_write_room +EXPORT_SYMBOL vmlinux 0xacea001e ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad4058d0 dump_skip +EXPORT_SYMBOL vmlinux 0xad469c09 xsk_umem_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad5b72bd __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xad6e51a2 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xad71a7fe inet_register_protosw +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb2724b tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xadc7f7ba inet_accept +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd64282 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xadf0f096 tcp_poll +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae1486c0 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xae198a50 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae319efc radix_tree_insert +EXPORT_SYMBOL vmlinux 0xae39b1c2 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xae78a20e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xae7c11aa ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xae9e7c51 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xaeae2b58 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xaefce581 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xaf155b28 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xaf315bb1 mount_single +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf452d79 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xaf4a1945 console_start +EXPORT_SYMBOL vmlinux 0xaf6bc3d0 posix_acl_init +EXPORT_SYMBOL vmlinux 0xaf6c412e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xaf6e4e6b pci_iounmap +EXPORT_SYMBOL vmlinux 0xaf72cd3b ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xaf74e5c6 kernel_listen +EXPORT_SYMBOL vmlinux 0xaf85baf1 debug_register_view +EXPORT_SYMBOL vmlinux 0xaf87703c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xaf8897eb end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xaf90c15f config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xaf95d0bd padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xaf97e8ce ip6_xmit +EXPORT_SYMBOL vmlinux 0xafd3ca2d airq_iv_create +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafec09c0 disable_sacf_uaccess +EXPORT_SYMBOL vmlinux 0xb016493d arch_spin_relax +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb026d751 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xb05aab72 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xb05f39e2 dev_emerg_hash +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06ff02e d_find_any_alias +EXPORT_SYMBOL vmlinux 0xb0710da8 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xb073c4e6 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb095c774 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xb0a5e059 proc_dointvec +EXPORT_SYMBOL vmlinux 0xb0b77177 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e56ecc configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb0ee4b3c from_kuid +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb112974d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xb1203bb8 ap_perms +EXPORT_SYMBOL vmlinux 0xb12220fd neigh_for_each +EXPORT_SYMBOL vmlinux 0xb128ea21 cpumask_any_but +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb144fd8b pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xb14909d2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb16900ad cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0xb1943d74 generic_perform_write +EXPORT_SYMBOL vmlinux 0xb1b8f0bc gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e3d02e tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xb1f8f07e locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xb2011e20 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xb20ecbfa __getblk_gfp +EXPORT_SYMBOL vmlinux 0xb21fe2d0 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb24b556d key_move +EXPORT_SYMBOL vmlinux 0xb272a731 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xb28ffc46 fb_set_var +EXPORT_SYMBOL vmlinux 0xb293c18f gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb29b4067 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb2af650c blk_lookup_devt +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2cdd966 swake_up_locked +EXPORT_SYMBOL vmlinux 0xb2dc9880 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb2fafd17 mempool_resize +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb30420d0 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32f3495 blk_put_request +EXPORT_SYMBOL vmlinux 0xb334e6bf ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb38366f1 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xb3a307de md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xb3ba7af5 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb3c6b892 skb_queue_head +EXPORT_SYMBOL vmlinux 0xb3c6beee scmd_printk +EXPORT_SYMBOL vmlinux 0xb3d2c695 d_set_d_op +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e83376 clear_nlink +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fcb25d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xb3fcc1d8 arp_tbl +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb3ff88a5 cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0xb4050107 simple_empty +EXPORT_SYMBOL vmlinux 0xb408061b complete_and_exit +EXPORT_SYMBOL vmlinux 0xb41fcc29 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42b9037 bdget_disk +EXPORT_SYMBOL vmlinux 0xb42e6fce cdrom_open +EXPORT_SYMBOL vmlinux 0xb43eb1bc import_single_range +EXPORT_SYMBOL vmlinux 0xb46017d6 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xb4640105 keyring_clear +EXPORT_SYMBOL vmlinux 0xb47d9620 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4955504 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xb499987e neigh_seq_start +EXPORT_SYMBOL vmlinux 0xb49fa9bc flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xb4a96c0b inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb4b4eb51 udp_prot +EXPORT_SYMBOL vmlinux 0xb4dddd7d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb4e278f7 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xb513acb6 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xb52cd28c ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb54cfb2b ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58b8ef0 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xb598c2ec dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa4c5f pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c4197c ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0xb5dc3e0d dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb5e2eded ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb614075c input_grab_device +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb668be74 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xb6736f5f tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c145ee tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xb6c91231 tty_port_open +EXPORT_SYMBOL vmlinux 0xb6d767f1 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 +EXPORT_SYMBOL vmlinux 0xb7076116 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xb7178135 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xb72a534d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xb745214e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xb74929a2 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb74acc09 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xb7870913 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7b507ea utf8nlen +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d07995 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb7d5afe7 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xb7e06124 md_done_sync +EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb7f2bde8 sock_i_ino +EXPORT_SYMBOL vmlinux 0xb7f545f6 fb_find_mode +EXPORT_SYMBOL vmlinux 0xb7f806cf md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb801cf99 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb8190d3c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xb8589b67 qdisc_put +EXPORT_SYMBOL vmlinux 0xb8642737 seq_read +EXPORT_SYMBOL vmlinux 0xb866e11c dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb870cba2 input_register_handle +EXPORT_SYMBOL vmlinux 0xb877c2aa remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb8830925 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8ad6c87 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8ba6e93 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xb8bdcaeb __udp_disconnect +EXPORT_SYMBOL vmlinux 0xb8ebdf07 register_netdevice +EXPORT_SYMBOL vmlinux 0xb8eff0df skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb90e85cf sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb92ebb99 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xb9401007 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9603362 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xb973dfb7 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb97cf3f1 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb99e8d2e jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xb9a8e965 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xb9ab3145 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xb9df5c0d ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f49c65 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xba07d3b4 inet_shutdown +EXPORT_SYMBOL vmlinux 0xba2275b5 udp_seq_start +EXPORT_SYMBOL vmlinux 0xba39810c inet_del_protocol +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4c68ce pci_enable_msi +EXPORT_SYMBOL vmlinux 0xba7d23e2 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xba843422 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xba9a8ea1 follow_down_one +EXPORT_SYMBOL vmlinux 0xbaa5b812 __var_waitqueue +EXPORT_SYMBOL vmlinux 0xbabcd750 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xbadb9352 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xbae7eb76 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xbaf47d73 kill_bdev +EXPORT_SYMBOL vmlinux 0xbaf507c1 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb07ee1c dma_free_attrs +EXPORT_SYMBOL vmlinux 0xbb1f2ba5 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2b40a8 tty_register_device +EXPORT_SYMBOL vmlinux 0xbb2eaad3 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb496477 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xbb5567d0 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xbb597be6 igrab +EXPORT_SYMBOL vmlinux 0xbb750389 input_register_handler +EXPORT_SYMBOL vmlinux 0xbb7dd075 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbba082b5 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xbba3f649 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xbbb10efb cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xbbe0390c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xbbe6e86c seq_escape_mem_ascii +EXPORT_SYMBOL vmlinux 0xbc0c1a2a __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xbc1717b5 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xbc2abec3 genlmsg_put +EXPORT_SYMBOL vmlinux 0xbc44441f vfs_fadvise +EXPORT_SYMBOL vmlinux 0xbc4d189c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xbc65c96e param_set_ushort +EXPORT_SYMBOL vmlinux 0xbc7bede7 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xbc7e8f66 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xbc99541d sync_file_create +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcae5c4a fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xbcbba3d5 blk_put_queue +EXPORT_SYMBOL vmlinux 0xbcbdf60f kstrtos8 +EXPORT_SYMBOL vmlinux 0xbcbff052 csum_and_copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xbcd2636c __cgroup_bpf_run_filter_getsockopt +EXPORT_SYMBOL vmlinux 0xbcdc5be1 param_set_copystring +EXPORT_SYMBOL vmlinux 0xbcf95f97 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xbd0e2370 sock_alloc +EXPORT_SYMBOL vmlinux 0xbd1604e5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbd30c456 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xbd557891 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xbd5c60f9 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xbd7f9d2d inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xbd935f38 mempool_init +EXPORT_SYMBOL vmlinux 0xbd9a6acc proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xbdb9a7b3 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xbdbce4bb debug_set_level +EXPORT_SYMBOL vmlinux 0xbdd48ddc param_ops_charp +EXPORT_SYMBOL vmlinux 0xbe1d872b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xbe261b4c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5481fd flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5d367e vfs_statx_fd +EXPORT_SYMBOL vmlinux 0xbe9069aa xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xbed61855 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xbee1c03e flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xbee380ba posix_acl_alloc +EXPORT_SYMBOL vmlinux 0xbee4af3d unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xbef3bd9a down_trylock +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf +EXPORT_SYMBOL vmlinux 0xbf022892 filp_close +EXPORT_SYMBOL vmlinux 0xbf07f835 set_posix_acl +EXPORT_SYMBOL vmlinux 0xbf1338ec padata_free_shell +EXPORT_SYMBOL vmlinux 0xbf39cd6d fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xbf3a250a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xbf509803 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xbf5319d9 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xbf70a0e4 netpoll_setup +EXPORT_SYMBOL vmlinux 0xbf7c0a15 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xbf896319 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xbf9539ac dev_change_carrier +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9cfd69 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbfb54d00 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xbfb6d892 udp_set_csum +EXPORT_SYMBOL vmlinux 0xbfc43409 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xbfcf1afa pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffe7219 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc025016c flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc027fe8d param_array_ops +EXPORT_SYMBOL vmlinux 0xc034b555 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0xc03ac9d2 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc042f685 get_pgste +EXPORT_SYMBOL vmlinux 0xc0541013 __kfree_skb +EXPORT_SYMBOL vmlinux 0xc067010d get_task_cred +EXPORT_SYMBOL vmlinux 0xc067d44f skb_tx_error +EXPORT_SYMBOL vmlinux 0xc06f0724 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0881063 read_code +EXPORT_SYMBOL vmlinux 0xc092de3e vfs_mknod +EXPORT_SYMBOL vmlinux 0xc096e23d hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a8b159 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bfef66 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc0ce4f54 eth_header_cache +EXPORT_SYMBOL vmlinux 0xc0d94ede param_get_ulong +EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xc0f2deb9 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc +EXPORT_SYMBOL vmlinux 0xc12e567a netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0xc1411d2e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16b920d kill_block_super +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc171e31f register_qdisc +EXPORT_SYMBOL vmlinux 0xc18a0029 dev_get_valid_name +EXPORT_SYMBOL vmlinux 0xc1a08355 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xc1a64320 __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0xc1b6c3ea bdput +EXPORT_SYMBOL vmlinux 0xc1c0d8e6 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xc1cb145e vfs_symlink +EXPORT_SYMBOL vmlinux 0xc1cce7fa freeze_bdev +EXPORT_SYMBOL vmlinux 0xc1d7d8ff flush_old_exec +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1f47fc7 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc2195df0 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xc2336209 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xc24e7ecb tty_register_driver +EXPORT_SYMBOL vmlinux 0xc252b084 sget +EXPORT_SYMBOL vmlinux 0xc257417a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc25f8da5 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc263ec29 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xc2686390 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc26e6232 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc279cf66 elv_rb_find +EXPORT_SYMBOL vmlinux 0xc28f6597 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xc292d0df ccw_device_resume +EXPORT_SYMBOL vmlinux 0xc295e046 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xc2c771e0 param_set_ullong +EXPORT_SYMBOL vmlinux 0xc2d63189 path_is_under +EXPORT_SYMBOL vmlinux 0xc2d90f13 bdget +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc306c3a8 page_frag_alloc +EXPORT_SYMBOL vmlinux 0xc30b03eb __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xc30dbcc3 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xc3114bd7 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xc328130a __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc336a985 dqstats +EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xc379489f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc3838322 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3afc0fe vfs_rmdir +EXPORT_SYMBOL vmlinux 0xc3e46311 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xc3e8c382 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xc400b81d pci_find_bus +EXPORT_SYMBOL vmlinux 0xc40f2742 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc414285a vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4234eb4 fget_raw +EXPORT_SYMBOL vmlinux 0xc4535fef arp_create +EXPORT_SYMBOL vmlinux 0xc45750ae icmp6_send +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc46e0e18 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc470c1c6 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48c0ae3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc4f0ab67 dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xc5010696 param_ops_int +EXPORT_SYMBOL vmlinux 0xc51ad99c sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc53dd5c6 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xc5470bad blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc5521d50 sclp_register +EXPORT_SYMBOL vmlinux 0xc558c013 tcp_req_err +EXPORT_SYMBOL vmlinux 0xc566965d key_task_permission +EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 +EXPORT_SYMBOL vmlinux 0xc5850110 printk +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc599ad77 dma_fence_init +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5af149b blk_sync_queue +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5b893cd neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc5bdae48 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc5d5ee51 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5f9d9e6 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xc5fe7211 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xc6055c9e kvasprintf_const +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6373ba7 kernel_accept +EXPORT_SYMBOL vmlinux 0xc6449a7d qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6646e8e param_set_bint +EXPORT_SYMBOL vmlinux 0xc66d919f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc685cac3 kfree_skb +EXPORT_SYMBOL vmlinux 0xc68aea65 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xc6909951 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6ae4bc6 mempool_exit +EXPORT_SYMBOL vmlinux 0xc6b443e8 up +EXPORT_SYMBOL vmlinux 0xc6b7562b dev_mc_init +EXPORT_SYMBOL vmlinux 0xc6bc5982 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xc6c68701 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc6c78b8a dev_notice_hash +EXPORT_SYMBOL vmlinux 0xc6c7ac19 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xc6c86e25 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc3157 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xc6efb066 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7152b4b dquot_file_open +EXPORT_SYMBOL vmlinux 0xc7194689 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xc72f0ab3 kill_litter_super +EXPORT_SYMBOL vmlinux 0xc7352adc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xc7542a5b tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xc7551540 dma_supported +EXPORT_SYMBOL vmlinux 0xc75ccf67 d_tmpfile +EXPORT_SYMBOL vmlinux 0xc76901b5 __frontswap_load +EXPORT_SYMBOL vmlinux 0xc76e7248 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78fb65c eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc79b1eb1 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b0eecb kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c29ad5 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc7cdc66a xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d51d45 param_ops_byte +EXPORT_SYMBOL vmlinux 0xc7e9c86e __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc7f77905 device_add_disk +EXPORT_SYMBOL vmlinux 0xc81d8774 tcp_prot +EXPORT_SYMBOL vmlinux 0xc81e91a8 napi_busy_loop +EXPORT_SYMBOL vmlinux 0xc83301f0 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84c7174 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xc8525779 generic_read_dir +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88a8918 down_interruptible +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c7e5a7 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xc8c971c5 netdev_printk +EXPORT_SYMBOL vmlinux 0xc8d21511 do_splice_direct +EXPORT_SYMBOL vmlinux 0xc8dc50fb sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xc8dec60d ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0xc8e589f1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xc8e739d1 seq_write +EXPORT_SYMBOL vmlinux 0xc92e858a open_exec +EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr +EXPORT_SYMBOL vmlinux 0xc95a0955 seq_open +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc984fd1c nobh_write_end +EXPORT_SYMBOL vmlinux 0xc99e685a ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0xc99f4b40 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc9b7d24b flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9df5127 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xc9f836f5 sort_r +EXPORT_SYMBOL vmlinux 0xca12f208 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2e0a2f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xca2fdb7a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xca4274c4 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xca42ef81 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca45ec24 dst_dev_put +EXPORT_SYMBOL vmlinux 0xca529c82 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xca58bdb0 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xca6984b1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xca732856 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xca8290ee __find_get_block +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcac1e774 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcad85008 __bforget +EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xcae6a9ef cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcaeaddeb dev_base_lock +EXPORT_SYMBOL vmlinux 0xcaeeb13d scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb110265 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xcb2777bc mount_nodev +EXPORT_SYMBOL vmlinux 0xcb3179be bmap +EXPORT_SYMBOL vmlinux 0xcb339fa8 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb44e3d2 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xcb4c5753 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xcb56d1b6 xa_store +EXPORT_SYMBOL vmlinux 0xcb703e5a skb_clone_sk +EXPORT_SYMBOL vmlinux 0xcb8f8b4c seq_lseek +EXPORT_SYMBOL vmlinux 0xcba4abe3 list_sort +EXPORT_SYMBOL vmlinux 0xcba60e2b class3270 +EXPORT_SYMBOL vmlinux 0xcbaed6c7 pci_restore_state +EXPORT_SYMBOL vmlinux 0xcbb4749a posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd5de96 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xcbf3ede4 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4ca31c stream_open +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc520939 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xcc5b8a15 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc7a4a11 dqget +EXPORT_SYMBOL vmlinux 0xcc7e3147 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xccb4c9c5 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc4001d gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xccc75530 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcced28f8 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfb9fdc kill_pgrp +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3fb729 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xcd42e80e inet_add_offload +EXPORT_SYMBOL vmlinux 0xcd660a95 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xcda80613 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xcdb9674f skb_store_bits +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcded8c91 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xce11cde1 __close_fd +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5e7fa2 irq_set_chip +EXPORT_SYMBOL vmlinux 0xce61872d tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xce63bafc pcim_iomap +EXPORT_SYMBOL vmlinux 0xce7ac185 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xce7bfe70 vm_brk +EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section +EXPORT_SYMBOL vmlinux 0xce94e57d _dev_notice +EXPORT_SYMBOL vmlinux 0xce9c549b setup_arg_pages +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb3c93a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcec1e47a dev_alert_hash +EXPORT_SYMBOL vmlinux 0xcec70496 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xcec98f1d debug_raw_view +EXPORT_SYMBOL vmlinux 0xcecaab61 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xcecd1c07 dquot_release +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefc8afe vfs_ioc_fssetxattr_check +EXPORT_SYMBOL vmlinux 0xcf000c7e hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0xcf0303b7 dma_virt_ops +EXPORT_SYMBOL vmlinux 0xcf1c6ca3 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xcf28899b neigh_connected_output +EXPORT_SYMBOL vmlinux 0xcf7044f5 _dev_warn +EXPORT_SYMBOL vmlinux 0xcf708af1 pudp_xchg_direct +EXPORT_SYMBOL vmlinux 0xcf8bf0ce dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xcf9f4de7 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xcfb20994 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcfc0ce03 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xcfc7e046 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xd003eefd netdev_update_features +EXPORT_SYMBOL vmlinux 0xd0399017 netdev_err +EXPORT_SYMBOL vmlinux 0xd042475c qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04f1a54 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd0604efe __f_setown +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0661fb3 vscnprintf +EXPORT_SYMBOL vmlinux 0xd06e4839 arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0xd070ad81 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd077ed5e unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd084c960 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd0871011 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0dc9099 simple_statfs +EXPORT_SYMBOL vmlinux 0xd0f06692 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd0f82e5e __skb_ext_put +EXPORT_SYMBOL vmlinux 0xd11d3a3a udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd12aa747 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xd13679e8 security_path_mknod +EXPORT_SYMBOL vmlinux 0xd13e6b4d blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd1470ff7 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xd15861b8 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xd1720973 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd17d97d4 __scsi_execute +EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18ecfed inet_listen +EXPORT_SYMBOL vmlinux 0xd18efc1f _copy_to_iter +EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0xd1d4c47c netlink_set_err +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e0d31a __frontswap_test +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd20dfb2a path_get +EXPORT_SYMBOL vmlinux 0xd221d7b5 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd246c3e1 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xd24a538c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28e3af9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd29e1445 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xd2a2db52 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xd2a69e81 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd2c69d71 sock_efree +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2f62fe1 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3561352 swake_up_all +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35dd7f3 vprintk_emit +EXPORT_SYMBOL vmlinux 0xd361f494 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd3759a76 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd3772ce2 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xd38161b4 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3b7fea5 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xd3c8c889 d_lookup +EXPORT_SYMBOL vmlinux 0xd3da44e9 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd3de7d08 input_match_device_id +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3eb85a8 dev_printk +EXPORT_SYMBOL vmlinux 0xd3f2d966 d_alloc +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd40f6f36 __jhash_string +EXPORT_SYMBOL vmlinux 0xd412a488 dev_uc_add +EXPORT_SYMBOL vmlinux 0xd413b6d4 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd41f5402 cpumask_next +EXPORT_SYMBOL vmlinux 0xd42927c2 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xd446ea29 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd44e7533 param_get_byte +EXPORT_SYMBOL vmlinux 0xd4721de1 md_check_recovery +EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd4a2bf33 __posix_acl_create +EXPORT_SYMBOL vmlinux 0xd4a54395 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xd4b61edb sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c8c54e dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0xd4e9d05d register_sysctl_table +EXPORT_SYMBOL vmlinux 0xd4ed707d inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5097984 simple_get_link +EXPORT_SYMBOL vmlinux 0xd51e8202 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd545810c get_gendisk +EXPORT_SYMBOL vmlinux 0xd5504f7a dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xd5735a55 softnet_data +EXPORT_SYMBOL vmlinux 0xd5a0298b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xd5a44f6c param_ops_bint +EXPORT_SYMBOL vmlinux 0xd5ac3531 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd5b1f0df page_symlink +EXPORT_SYMBOL vmlinux 0xd5b308d4 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5cd88c6 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xd5e8436a nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index +EXPORT_SYMBOL vmlinux 0xd5f82a79 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd62392a3 vfs_link +EXPORT_SYMBOL vmlinux 0xd63d4d95 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd64ae541 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xd65f1955 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd66bed10 block_write_full_page +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68a01b8 xa_erase +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68c5f58 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xd6929222 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd694b4d0 prepare_binprm +EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xd6cd39f1 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6d0ea88 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6e05925 submit_bio +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd72b5128 dma_direct_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xd72bf986 km_policy_notify +EXPORT_SYMBOL vmlinux 0xd7b6835d pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7f05d5c nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd7f35131 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xd805bc2b cdev_add +EXPORT_SYMBOL vmlinux 0xd80b30c1 tcf_em_register +EXPORT_SYMBOL vmlinux 0xd81621cf raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0xd82621cc blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xd827fff3 memremap +EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xd841bbd6 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd8602b6a tun_is_xdp_frame +EXPORT_SYMBOL vmlinux 0xd8842e04 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aac5cf tty_kref_put +EXPORT_SYMBOL vmlinux 0xd8be2774 inet6_offloads +EXPORT_SYMBOL vmlinux 0xd8cd0be9 d_find_alias +EXPORT_SYMBOL vmlinux 0xd8ea7128 free_task +EXPORT_SYMBOL vmlinux 0xd8f30e6d dev_mc_sync +EXPORT_SYMBOL vmlinux 0xd8f88d65 textsearch_register +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd9023ecb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xd9046254 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd9083b7d _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd926e599 __xa_erase +EXPORT_SYMBOL vmlinux 0xd92f51c1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd9314ff0 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd933e9fa posix_acl_valid +EXPORT_SYMBOL vmlinux 0xd93505f6 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd94b65ec sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd971cb91 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98fcc6a dev_mc_add +EXPORT_SYMBOL vmlinux 0xd9ae583b complete_all +EXPORT_SYMBOL vmlinux 0xd9b029df elevator_alloc +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9cd2dd5 dquot_get_state +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9d9a30f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xd9d9d189 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xd9f8b528 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xda0ca204 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xda0f8f56 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xda27c038 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xda37e53d ip6_frag_next +EXPORT_SYMBOL vmlinux 0xda3cce79 ccw_device_halt +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3d56dc dquot_initialize +EXPORT_SYMBOL vmlinux 0xda41d6cb make_kprojid +EXPORT_SYMBOL vmlinux 0xda4495d7 xsk_umem_consume_tx +EXPORT_SYMBOL vmlinux 0xda5a2985 dst_release +EXPORT_SYMBOL vmlinux 0xda6296c9 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7a2bfe writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda9921e2 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xdaa269dd rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdab5b615 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac97957 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xdad66d5c zpci_report_error +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdb05e495 vfs_get_super +EXPORT_SYMBOL vmlinux 0xdb1943fa inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xdb243583 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xdb3f3c76 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xdb42c068 ptep_xchg_lazy +EXPORT_SYMBOL vmlinux 0xdb520649 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xdb6797c1 tcp_connect +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb83a2d5 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xdb9d85eb tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xdbb04a1f sk_common_release +EXPORT_SYMBOL vmlinux 0xdbc6227c neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xdbdb5a50 xsk_umem_has_addrs +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf294e7 sk_net_capable +EXPORT_SYMBOL vmlinux 0xdbf83be5 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1a5146 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdc3b3737 kbd_keycode +EXPORT_SYMBOL vmlinux 0xdc3bf315 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc430efe tty_port_init +EXPORT_SYMBOL vmlinux 0xdc4661f9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xdc494e0b gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc61fae7 vm_map_pages +EXPORT_SYMBOL vmlinux 0xdc76cc36 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xdc89e38d dst_init +EXPORT_SYMBOL vmlinux 0xdcc78d2e unregister_cdrom +EXPORT_SYMBOL vmlinux 0xdcd3b100 dentry_open +EXPORT_SYMBOL vmlinux 0xdd10be49 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xdd1c4041 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xdd1cdbcb add_wait_queue +EXPORT_SYMBOL vmlinux 0xdd22fae5 d_move +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd372dbb flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdd48263f vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xdd4bffbf gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xdd5b869c kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xdd5e7ed9 iucv_if +EXPORT_SYMBOL vmlinux 0xdd722442 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xdd742d72 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdda47889 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xddc3b0da filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xddd3b6fe __put_cred +EXPORT_SYMBOL vmlinux 0xddfbf066 key_unlink +EXPORT_SYMBOL vmlinux 0xde02f690 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde10f536 proc_douintvec +EXPORT_SYMBOL vmlinux 0xde1e3904 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xde1e6c19 proc_mkdir +EXPORT_SYMBOL vmlinux 0xde3d5ed8 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xde4bf11d pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc +EXPORT_SYMBOL vmlinux 0xde9a5fac elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xdea5d281 vif_device_init +EXPORT_SYMBOL vmlinux 0xdeb46866 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdebb5b8c vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefff5d0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xdf009637 __page_symlink +EXPORT_SYMBOL vmlinux 0xdf156c88 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xdf1dc5f6 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3567cd udp_ioctl +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5f4d44 param_get_ushort +EXPORT_SYMBOL vmlinux 0xdf89ea0d __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf96e1ff sock_no_listen +EXPORT_SYMBOL vmlinux 0xdf98871d airq_iv_release +EXPORT_SYMBOL vmlinux 0xdf9ec50b fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xdfa561c7 pci_get_device +EXPORT_SYMBOL vmlinux 0xdfa72f9e __put_user_ns +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfc14fda dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xdfcab7f3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfde64ab mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe00fdb64 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0xe01058a1 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xe0241c04 raw3270_activate_view +EXPORT_SYMBOL vmlinux 0xe038b6dd kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe05c8d64 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xe063ed7d inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe0723ae6 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe076a684 can_nice +EXPORT_SYMBOL vmlinux 0xe0873e3c vm_map_ram +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0927ee4 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe09592dc migrate_page +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0e6fe85 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe0ed3068 register_md_personality +EXPORT_SYMBOL vmlinux 0xe104731e ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1247517 dm_put_device +EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe13ef8f4 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe1564ed2 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe166ae96 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xe16cba61 filp_open +EXPORT_SYMBOL vmlinux 0xe1861a5d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xe189d6c1 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe18bd066 sk_wait_data +EXPORT_SYMBOL vmlinux 0xe1908478 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xe1919ce9 completion_done +EXPORT_SYMBOL vmlinux 0xe1a3f4b0 __break_lease +EXPORT_SYMBOL vmlinux 0xe1daa520 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1de6396 km_query +EXPORT_SYMBOL vmlinux 0xe1e5a954 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xe1e7e40c rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xe1f1e5fa scsi_print_sense +EXPORT_SYMBOL vmlinux 0xe22a979d skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xe23f2f9b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xe248d573 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0xe27bd579 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw +EXPORT_SYMBOL vmlinux 0xe292bb90 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0xe29dc4bc fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xe2c43b1d netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe2cecc56 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e7f6fb eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xe2ec3089 __quota_error +EXPORT_SYMBOL vmlinux 0xe2ff7834 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xe2ffc534 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xe2ffeef3 scsi_req_init +EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe30cdede registered_fb +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe349bb2a pci_iomap +EXPORT_SYMBOL vmlinux 0xe355a848 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup +EXPORT_SYMBOL vmlinux 0xe369662f dev_get_flags +EXPORT_SYMBOL vmlinux 0xe36cd082 dst_discard_out +EXPORT_SYMBOL vmlinux 0xe37156cf set_user_nice +EXPORT_SYMBOL vmlinux 0xe37ab6d2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe38b7a13 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xe39f7c76 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe3c0de38 pci_request_irq +EXPORT_SYMBOL vmlinux 0xe3cec617 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xe3d70645 raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0xe3e04937 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xe3e4ea1b tty_unlock +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f22438 finish_swait +EXPORT_SYMBOL vmlinux 0xe3fbc680 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4367d0d io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name +EXPORT_SYMBOL vmlinux 0xe441e95a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0xe448b05b kern_path_create +EXPORT_SYMBOL vmlinux 0xe468f819 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe4696a68 scsi_device_get +EXPORT_SYMBOL vmlinux 0xe46f3810 kern_path +EXPORT_SYMBOL vmlinux 0xe49ea19d put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe49f6611 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xe4a250b6 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xe4a2abe5 inode_init_always +EXPORT_SYMBOL vmlinux 0xe4b96625 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xe4bea29e qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xe4d3dab0 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xe4d4f9fe kblockd_schedule_work_on +EXPORT_SYMBOL vmlinux 0xe4d61f8b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe4e6c560 input_inject_event +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe50ae128 xa_set_mark +EXPORT_SYMBOL vmlinux 0xe5212bf9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp +EXPORT_SYMBOL vmlinux 0xe5254511 consume_skb +EXPORT_SYMBOL vmlinux 0xe53ac405 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xe55f5128 cdrom_release +EXPORT_SYMBOL vmlinux 0xe5606cb5 tty_set_operations +EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a +EXPORT_SYMBOL vmlinux 0xe569f4be __bdevname +EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe583c517 airq_iv_scan +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59e181d notify_change +EXPORT_SYMBOL vmlinux 0xe5b8101a get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xe5c4cf93 vm_node_stat +EXPORT_SYMBOL vmlinux 0xe5c66a1c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xe60548f0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xe60e6631 would_dump +EXPORT_SYMBOL vmlinux 0xe60e67ce jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61b7f5f register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0xe6438c68 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xe65f5645 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xe6735aee bdi_put +EXPORT_SYMBOL vmlinux 0xe6793c63 ether_setup +EXPORT_SYMBOL vmlinux 0xe69b7010 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe69e45ef bio_chain +EXPORT_SYMBOL vmlinux 0xe6a62164 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe6add29c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe6d5aa51 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe6db1efd inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe6e7fe8f ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6f53b7e xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xe70b5cbc bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe7277675 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe74f6abc dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xe76b8129 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure +EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe798236d jiffies +EXPORT_SYMBOL vmlinux 0xe7cd4491 ll_rw_block +EXPORT_SYMBOL vmlinux 0xe7d3c4c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe8057564 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xe80ed1cd blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe80fdb17 key_put +EXPORT_SYMBOL vmlinux 0xe815f80d register_quota_format +EXPORT_SYMBOL vmlinux 0xe826aeaf module_put +EXPORT_SYMBOL vmlinux 0xe85e16de cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xe86ba07c done_path_create +EXPORT_SYMBOL vmlinux 0xe88f0378 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe8a9b0da shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xe8b39d7d config_item_put +EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul +EXPORT_SYMBOL vmlinux 0xe8de8a80 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xe8e98c62 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xe8f52b5c security_task_getsecid +EXPORT_SYMBOL vmlinux 0xe8fc50bd pci_request_region +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93a05f7 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xe9408b0d kernel_param_lock +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe969fecd unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xe96bc872 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xe978e213 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe989ad1c wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xe98b2736 mpage_readpages +EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize +EXPORT_SYMBOL vmlinux 0xe9e16306 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xe9e4e046 input_open_device +EXPORT_SYMBOL vmlinux 0xe9e545d2 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xe9ebb967 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xe9fef3af eth_header +EXPORT_SYMBOL vmlinux 0xea22de31 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4fecde set_blocksize +EXPORT_SYMBOL vmlinux 0xea5988a5 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xea655f19 put_disk_and_module +EXPORT_SYMBOL vmlinux 0xea704642 pid_task +EXPORT_SYMBOL vmlinux 0xea7c6e82 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xea80dfe1 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xea9c890f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xeaa7861e set_page_dirty +EXPORT_SYMBOL vmlinux 0xeac49962 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeaee256f security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xeaee908e kbd_ioctl +EXPORT_SYMBOL vmlinux 0xeaf60490 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xeafce4e7 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xeb2716a4 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xeb2b5c08 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44c163 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xeb56f9dd tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xeb6467a7 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xeb6beead fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xebb46874 put_cmsg +EXPORT_SYMBOL vmlinux 0xebb782f3 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebcb2554 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0xebd2e974 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xebdf12a3 find_get_entry +EXPORT_SYMBOL vmlinux 0xebe0a0eb __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xebf71b6d alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xebfb7207 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0xec08a5c9 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xec122c83 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xec1be1df free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xec237e4f xps_needed +EXPORT_SYMBOL vmlinux 0xec255972 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec37de9a dquot_drop +EXPORT_SYMBOL vmlinux 0xec505918 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xec515007 sock_create_lite +EXPORT_SYMBOL vmlinux 0xec5b1fe2 km_state_expired +EXPORT_SYMBOL vmlinux 0xec6113f1 up_read +EXPORT_SYMBOL vmlinux 0xec61c614 xa_destroy +EXPORT_SYMBOL vmlinux 0xec804f98 km_policy_expired +EXPORT_SYMBOL vmlinux 0xecb22f5b pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xecd07da7 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xece0ccb8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed01a487 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xed19dc50 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xed3023ab __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xed320445 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xed4aa56d get_mem_cgroup_from_page +EXPORT_SYMBOL vmlinux 0xed61f6b3 security_release_secctx +EXPORT_SYMBOL vmlinux 0xed64eed5 bio_devname +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed7a3532 input_get_keycode +EXPORT_SYMBOL vmlinux 0xed7ec767 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xed9d147b blkdev_fsync +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbf1281 key_link +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcc4439 pci_free_irq +EXPORT_SYMBOL vmlinux 0xede94561 unregister_key_type +EXPORT_SYMBOL vmlinux 0xedf5e314 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee0c8836 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5b97d6 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xee7aebaa generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea48649 sk_free +EXPORT_SYMBOL vmlinux 0xeeb1fea5 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xeedf7b2e sock_i_uid +EXPORT_SYMBOL vmlinux 0xeef9b6bb rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xef08cab0 _copy_from_iter_full_nocache +EXPORT_SYMBOL vmlinux 0xef12358b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xef1e4fca kernel_bind +EXPORT_SYMBOL vmlinux 0xef241d43 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xef280852 vc_cons +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef4e0f44 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xef57309c shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xef5d8d8c lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb34003 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xefb59bfc tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xefb97be4 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xefb9802f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xefbd768f fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefcd490e tty_check_change +EXPORT_SYMBOL vmlinux 0xefce02db ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xefcfe517 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xefda8851 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xefea083d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xeff83890 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf02732b5 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf02d23b9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf03427f8 up_write +EXPORT_SYMBOL vmlinux 0xf03cfdcf dev_open +EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0844bcc input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a257de blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xf0aeb2db param_set_long +EXPORT_SYMBOL vmlinux 0xf0bc1ca8 __skb_checksum +EXPORT_SYMBOL vmlinux 0xf0bc8a9f vfs_readlink +EXPORT_SYMBOL vmlinux 0xf0bdf32e jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf0cbd275 security_sk_clone +EXPORT_SYMBOL vmlinux 0xf0dcb7e8 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf0ecbd9c simple_write_begin +EXPORT_SYMBOL vmlinux 0xf0f3b45c textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0xf100f356 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf109812b flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xf110a0da dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf11e0ef9 __vmalloc +EXPORT_SYMBOL vmlinux 0xf1266559 cad_pid +EXPORT_SYMBOL vmlinux 0xf127221d proto_unregister +EXPORT_SYMBOL vmlinux 0xf12cdb72 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xf156962a pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0xf15e5330 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xf15f3b41 idr_get_next +EXPORT_SYMBOL vmlinux 0xf161a605 bdevname +EXPORT_SYMBOL vmlinux 0xf1777f3a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e7338 unregister_external_irq +EXPORT_SYMBOL vmlinux 0xf1daea38 has_capability +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20af3d9 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xf21cb54f eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf2215f74 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf231a98a sk_ns_capable +EXPORT_SYMBOL vmlinux 0xf23dd2db dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf247a67e ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf26d2416 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xf26e5bcc netif_device_detach +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf29281a7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xf2b449a5 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xf2b506c1 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xf2e4dfa1 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2eba636 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xf2ed9fb0 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xf2ff8e09 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3332be0 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf341e00a md_reload_sb +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34fbafd pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36b6d5d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a036bb jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send +EXPORT_SYMBOL vmlinux 0xf3beb058 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xf3d79352 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e4f32a page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf4285d0b mutex_trylock_recursive +EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53da security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4755d9d ipv4_specific +EXPORT_SYMBOL vmlinux 0xf4781812 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf49f8b16 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xf4ae276d proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf4b2b86e cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xf4b758cd pci_irq_vector +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4de321b device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xf4edb0e0 generic_fadvise +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf4f5b2eb find_vma +EXPORT_SYMBOL vmlinux 0xf4faa097 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xf50f554e dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf529608c vfs_whiteout +EXPORT_SYMBOL vmlinux 0xf5328053 file_open_root +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53e66de fb_get_mode +EXPORT_SYMBOL vmlinux 0xf542f290 raw_copy_from_user +EXPORT_SYMBOL vmlinux 0xf5442cc4 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate +EXPORT_SYMBOL vmlinux 0xf565be0f scsi_remove_target +EXPORT_SYMBOL vmlinux 0xf5990e9a scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf5a54b0b raw3270_find_view +EXPORT_SYMBOL vmlinux 0xf5dd38f9 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f2c541 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf601c673 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf6090bc9 bd_start_claiming +EXPORT_SYMBOL vmlinux 0xf60b826a get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf63e91a2 pipe_lock +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf683e9be tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf6885cbc sock_release +EXPORT_SYMBOL vmlinux 0xf68d781f find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xf6b07d45 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xf6b72ed1 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xf6d4326d dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xf6da81f4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf6eb34c8 fs_bio_set +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf71cdb28 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf71ced67 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xf71f051e netlink_unicast +EXPORT_SYMBOL vmlinux 0xf72a8b2c block_read_full_page +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73bf27a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77bf9a7 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xf77d0cc1 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xf78f66cc del_gendisk +EXPORT_SYMBOL vmlinux 0xf79dd482 debug_unregister +EXPORT_SYMBOL vmlinux 0xf7a596de ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0xf7b92217 utf8_casefold +EXPORT_SYMBOL vmlinux 0xf7cd4cf6 get_cached_acl +EXPORT_SYMBOL vmlinux 0xf7cfc286 dma_direct_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7f07cac __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xf7f799ca _copy_from_iter_full +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf81373a8 seq_release +EXPORT_SYMBOL vmlinux 0xf8167960 dquot_enable +EXPORT_SYMBOL vmlinux 0xf81959d6 do_SAK +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8604804 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf8626def scsi_print_result +EXPORT_SYMBOL vmlinux 0xf866ca04 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xf86e6516 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xf873e358 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xf875606c __next_node_in +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START +EXPORT_SYMBOL vmlinux 0xf8a7d3b6 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf8ba1845 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8e15586 noop_fsync +EXPORT_SYMBOL vmlinux 0xf8ef98f9 __sb_end_write +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fa4739 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xf90cf971 dev_crit_hash +EXPORT_SYMBOL vmlinux 0xf90d3630 bio_reset +EXPORT_SYMBOL vmlinux 0xf915179e refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xf923890e __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xf9388c75 inode_init_once +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94b26ef ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf9539221 input_close_device +EXPORT_SYMBOL vmlinux 0xf9669939 bio_init +EXPORT_SYMBOL vmlinux 0xf994f3cb tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf99fdc72 ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0xf9a3bb74 locks_init_lock +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b6fe3e udp_pre_connect +EXPORT_SYMBOL vmlinux 0xf9b8a240 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xf9c1f9ab security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0xf9f50b92 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xfa08f4b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfa16a4b5 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xfa39b4be sha224_update +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa696728 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfabb5302 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfadb1fd0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xfafe9d34 skb_trim +EXPORT_SYMBOL vmlinux 0xfb0c939c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb4694b4 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0xfb481954 vprintk +EXPORT_SYMBOL vmlinux 0xfb4b0296 __pagevec_release +EXPORT_SYMBOL vmlinux 0xfb59b254 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xfb63274a md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6ece45 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xfb97b582 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbbe4df3 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xfbc1846d dev_printk_hash +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfc183e26 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xfc272757 make_kuid +EXPORT_SYMBOL vmlinux 0xfc330edb proto_register +EXPORT_SYMBOL vmlinux 0xfc389a9d register_gifconf +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc3bba0f unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xfc49cc87 dquot_destroy +EXPORT_SYMBOL vmlinux 0xfc88bf21 __alloc_skb +EXPORT_SYMBOL vmlinux 0xfc9b2aa2 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xfc9cdfda nla_put +EXPORT_SYMBOL vmlinux 0xfcca13d4 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd7d4e1 netlink_ack +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf0665f security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xfcf16439 locks_free_lock +EXPORT_SYMBOL vmlinux 0xfcf74d30 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xfd016b52 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xfd102aba generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfd121033 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfd2e2496 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xfd325de6 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xfd3a1e31 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xfd3e8134 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xfd51a6f7 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xfd566c8d skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfd58dbf8 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xfd9565a9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb18336 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0xfdb4de2d mempool_free +EXPORT_SYMBOL vmlinux 0xfdc1b027 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfddb3d68 devm_release_resource +EXPORT_SYMBOL vmlinux 0xfdf45996 lowcore_ptr +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe193e65 __xa_alloc +EXPORT_SYMBOL vmlinux 0xfe2ba3fd dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xfe4443ec flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4a99c6 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xfe4b3fcc pcim_enable_device +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7e8396 d_make_root +EXPORT_SYMBOL vmlinux 0xfe992ac8 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xfe9dd097 rtnl_notify +EXPORT_SYMBOL vmlinux 0xfeaaf8a6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee02cf9 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfef8add4 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xfef8cf74 vfs_statx +EXPORT_SYMBOL vmlinux 0xff01e6eb xsk_umem_complete_tx +EXPORT_SYMBOL vmlinux 0xff02a3bd bio_put +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff256184 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xff3a06f7 nf_log_register +EXPORT_SYMBOL vmlinux 0xff4cb477 single_open +EXPORT_SYMBOL vmlinux 0xff5a37f5 airq_iv_alloc +EXPORT_SYMBOL vmlinux 0xff5a8331 zero_fill_bio_iter +EXPORT_SYMBOL vmlinux 0xff660930 kobject_put +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff85fbe0 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xff91b26d posix_test_lock +EXPORT_SYMBOL vmlinux 0xffa9bfdb wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xffb2c6b5 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xffb73a4c inet_getname +EXPORT_SYMBOL vmlinux 0xffcf074e pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff5a7de __bio_clone_fast +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x67ba4f07 s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xd095a09a s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0xc8ed7949 pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x061d2b0e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x149c53c0 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x172356a7 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x1f31c039 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b23025c af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x3c16cd88 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x56b89ef8 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x5e3893a1 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7842b678 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x86e0e645 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xa373d5b7 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xa4ccc576 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa8400615 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc641417e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd022d894 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xd30a9ef3 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdbfe70c9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xe821168f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xd5150366 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6d93ed83 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4814b020 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6f48ca3a async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x58780247 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd29da491 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5980701a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb1998bdf async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xba328d98 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5121eec3 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x619c724d async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x5dbfcd39 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xdf55eff6 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x30b56bcd __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xa0fbc5cd cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +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/chacha_generic 0x2d43f68a crypto_chacha12_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0x3564234e crypto_xchacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xbd468fb4 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xd0f7ea0b crypto_chacha_crypt +EXPORT_SYMBOL_GPL crypto/chacha_generic 0xe7436d31 crypto_chacha_init +EXPORT_SYMBOL_GPL crypto/cryptd 0x1a1cb1ff cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2879e884 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3eb2fd16 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x491418ec cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5829f1e5 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6893599d cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6eb692e8 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x945b41cc cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6cddde5 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd5c4ef5 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf773d822 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfbfb711f cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe0e1a9b cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x089ec507 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1460f87c crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x479c5f4a crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4953fb5f crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x53ec4124 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66c13e57 crypto_finalize_ablkcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x76ba9107 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9200dcd0 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb9bb0ab6 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbc4588cf crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcd0a2097 crypto_transfer_ablkcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0acfe20 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfa19900a crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfb3bfdf2 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x515ba532 crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7a395d76 crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xd5a29505 crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x1dfec3d3 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x299fbb2e poly1305_core_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x30dbed6e poly1305_core_blocks +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x53ebe95d crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5ef1870c poly1305_core_emit +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x65267047 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xdb167ab0 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x0d609da9 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x09a89410 crypto_sm4_expand_key +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x2282ae62 crypto_sm4_encrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x56e5b970 crypto_sm4_decrypt +EXPORT_SYMBOL_GPL crypto/sm4_generic 0x6e3ca5be crypto_sm4_set_key +EXPORT_SYMBOL_GPL crypto/twofish_common 0x397de249 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xb1e70801 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x4cfd260d dev_dax_probe +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x211885d5 alt_pr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x702f001a alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1dbbf8f9 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x44f281ce fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4c62216f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4f7f327d fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x52861c07 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x673c3638 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x73e7cfad of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77434b72 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ed8f685 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f0b4364 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa23741cd fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed9f4d87 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf0cc84bd fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x27dc2b75 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65348195 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x98740beb drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xac4a1e21 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2f37d9a drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2db02ce drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe4907abb drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x21fc2575 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7a2ee999 drm_gem_fb_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9265b5d4 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9a515207 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb848fc94 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x239b7bdd ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa1a92f8e ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xa62d3303 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3417c446 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x54177957 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x694d3b23 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d58f389 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x87024b5d intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9a58981d intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8dd26a6 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb0af7581 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8e048ed intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x04e5f423 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0ebc3b6e intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x86bf5b77 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5c2c058b stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66a71d6b to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6cac22a1 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x76c824a3 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88a64788 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa1c2a417 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xca1fd8df stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf640693 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf545c86d stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x19baac35 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1cfb2667 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2938cb70 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x34a86610 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3c2d10ab i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3fae8ef1 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x45340ad9 i2c_new_dummy +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4d11ca14 i2c_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x608eb7e1 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x653e400e i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9838793e i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa059a252 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa4459fc2 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb3b352db i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbade04a2 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc10bd3d1 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc71ffbb5 i2c_new_probed_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcfb9db47 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd53dbc79 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe0e7c60a i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe2d42cc0 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe6948f0c i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6ec9f87b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7e7cdf52 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xad3521dc i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbd8c171d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15b97715 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19b88bec __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2307b422 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b46c4b6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b793afb __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fbf8560 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33554606 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414c7765 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f6a4a3e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65fb81f0 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b1045c7 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7260fb66 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748968f6 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7574c715 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8a33fe __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bf5dba __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa353964f __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4682eff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4c5652 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22f8879 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf53dc9d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc00185bc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc13b483f __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc36e201d __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8feefc9 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8da0f0e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f20dee __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9c4d700 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee603d81 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5d8bf62 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8502c64 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d53fb38 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25541990 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x275b1897 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a05fad0 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2cb66de9 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x34662a73 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3765c2a4 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x381f7607 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e2d2dde dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x61cb9d10 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 0x6e84f9b3 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c1c2c98 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x88fe0cad dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b8f93f4 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab18d793 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb373a269 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdf01541f dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xf4df77e4 dm_bufio_client_create +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 0x796a703b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9a7e660e dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa4472485 dm_cache_policy_unregister +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 0x5298c59f dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb4b70bba 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 0x20f2c422 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3c8e2536 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xa8766ac8 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xba7a45a7 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 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf4791339 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf5c1f49f 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 0x00f5a3c8 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x09cc81fa dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0a7e77f3 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0ae4d696 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b25f6bc dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0b36102c dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0be67537 dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0e198232 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x10e6ccea dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x16af9071 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x23ebd5fb dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2417c5c4 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2adee13f dm_btree_cursor_next +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 0x34d45c77 dm_btree_cursor_get_value +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 0x36a34e58 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x36b84cda dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3a797d19 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x432b8178 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4557b425 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48d1c7dc dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x49081644 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4a4cb558 dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b0c22d dm_bitset_flush +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 0x6af8a872 dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bb4bf8f dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6e1e3821 dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6f2fe3c4 dm_btree_remove_leaves +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 0x7485935a dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x764567c8 dm_btree_find_highest_key +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 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 0x885b0024 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89783bda dm_array_cursor_end +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 0x97263968 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98db2687 dm_bitset_cursor_end +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 0x9e98460e dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2ea5542 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa3cc1157 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa51fbedc dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa8d9df84 dm_tm_create_with_sm +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 0xaab0ef04 dm_bitset_cursor_skip +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 0xb500e95b dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6949944 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbb461fb7 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbbb5df05 dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc248bde2 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc7f91370 dm_block_manager_create +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 0xcedfc878 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd6711a58 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd7016b22 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf398644f dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3b16444 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8481635a st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9724c6bf st_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00d571f5 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089f2069 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5455fa mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aab6cc5 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c847b83 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e45f12c mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x125b8349 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13896b03 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15a0fb70 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d4625b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b70d361 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bd063f3 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c1425e6 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c0d861 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x220336f9 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22f4c39e mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24661a6d mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25135189 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27247eb0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aad9dc4 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c262949 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dd16299 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f80d9d0 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe242c5 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x356fd0cd mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x386ce01c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3907574d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39662bba mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3baa9a29 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eef5cd3 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x402324f6 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416af34f mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448dbb14 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4525ce0b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45307328 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46e9940d mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48ee4df9 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4a6daa mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cdda7c5 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce14a35 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e62203d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f0312e1 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ffd1371 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58236909 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ba9cb60 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cbc205e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5ebbac mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62360993 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62e6b78c mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x648239f2 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x688a17f9 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x688f7ba2 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c78b1f mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d919d63 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x710cfc3c mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7365c5d1 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76706920 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b19f45e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d2bfb37 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da5bb69 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82cf5911 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b8fe92 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84270d1d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e040ce mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85454d42 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x865054e5 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b2df15 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2fa620 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0b0b20 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d9707fe mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92882ca2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9570dc34 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cc73bf7 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f22b1b8 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0372875 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3e21090 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5744b55 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66e0e52 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6878df3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6ebaa12 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa81b9383 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8cf94e8 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9eb60b0 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac813811 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac8175c7 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac9ba437 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae3360f0 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae89baa7 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafe8123b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0800ca1 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb16d0941 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb34c5530 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb392b0ca mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c1af74 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7668e88 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe1fa148 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe8e7ff2 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1fd5ddd mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34ccfd4 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43699c5 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c8fa99 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc977f710 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9f0617d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd18e2320 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2cc0c9c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd57ce31e mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f406af mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdacc3cb1 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc00191e mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd11abd8 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe035c87e mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bdb9a0 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe59a66a2 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe83f4c03 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe844f844 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe99ca8db mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea02b650 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef53474a mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef712392 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf085adf9 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf17d987a mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3ae3dc1 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5b678d8 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf93662e4 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa815ad6 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5ceda4 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x000bcf81 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01bfaf82 mlx5_core_create_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0545025b mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0651d6df mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06dc4871 mlx5_query_hca_vport_pkey +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 0x10face36 mlx5_core_res_put +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c9c2541 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eb25fae mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f561977 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x206f7ea1 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c77820 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21dcfc9e mlx5_core_dealloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26cf0367 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302968e0 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32df5fd6 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x350ea1ce mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35461413 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37656924 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3918ac1c mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c97a253 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40437b20 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41d99f78 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x437054de mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4490f207 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47458a01 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bdfc2f mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f1d2e0 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a704e79 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bed7a77 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54313977 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5827a797 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58df2d55 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4d44cc mlx5_nic_vport_disable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61903b83 mlx5_core_set_delay_drop +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6380c51c mlx5_core_alloc_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6499eeda mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e8c7dd mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6866be9c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a348f7f mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6baa6fec mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd1f926 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ddf95d2 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x707d3066 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7096085c mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722cc47b mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e8f981 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7afb94ec mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b076fe3 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba556d0 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f7b080d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d71f52 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8afe2836 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4c1312 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90739e45 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x916a0f57 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91bf95b6 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x943389fc mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9919ee1e mlx5_core_res_hold +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa51571 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f451c4e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8316e41 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa94c4fce mlx5_core_query_q_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab5182d9 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf211315 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb628168d mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb641c3cb mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb89726eb mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd07663 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a44663 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f7ae26 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc12ec47 mlx5_core_dct_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf4d6085 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfeb5a52 mlx5_core_destroy_dct +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd267d5c2 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd908203f mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb424423 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf1832b4 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ef2b64 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6c21c64 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe898403f mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecb0711b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0faf011 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d46dd0 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf219db65 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf735ae2f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff1c9db2 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/geneve 0x520061c6 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3c45c1e2 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x41a7063d ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x500e9fa3 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5b747b95 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x64797e1b ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5fcdc85a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x678b4c50 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa69c0359 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfea02d2c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x02c8bb0c net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x952784a4 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x065f8f69 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10512282 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1497e599 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15668043 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20e7adf6 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dafd67a bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31efe7e2 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48975680 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5fa02a7a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x919686eb bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9328e767 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9c7369ca bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb862ae1c bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0d2096f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc57e89e5 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfd6013c bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5c79d71 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb87c941 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x01764d6e fixed_phy_unregister +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x07c13d18 fixed_phy_register +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xa8b84df5 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xd97e3d96 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xee3968e9 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x02caaaf0 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x042db083 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x05b0ab6a phy_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x09400391 phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x0b5180d6 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x145632ba genphy_c45_read_link +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x14c3e807 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1dce9020 phy_driver_is_genphy +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2114801b __phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x227a407e genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x22a51118 devm_mdiobus_free +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2ebe2b9d phy_basic_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3018710d genphy_c45_read_lpa +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x421655d5 phy_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4437de01 phy_basic_t1_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4648b2aa phy_gbit_fibre_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x552873af phy_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x57583a21 genphy_c45_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5c95e948 __phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5f7b352b genphy_c45_read_pma +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x713cb4ba phy_gbit_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x78d39986 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7a8db398 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8597186c phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x906f92a1 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9232581c phy_select_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa2f812f9 phy_10gbit_fec_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa39f6999 phy_10gbit_full_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa9cc90f8 __phy_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xab45dab7 phy_start_machine +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb467d7a1 phy_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb6aee0b8 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb84eea4a phy_10gbit_fec_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc3255142 phy_10gbit_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xccd7a73b genphy_c45_aneg_done +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd762f1ca genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdca61af6 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdf54c6cd phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe2937bf9 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xec4fbe61 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf1d4ee79 phy_save_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf224d76b genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf5ddd36f gen10g_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfa6772ec phy_restore_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL drivers/net/tap 0x114913df tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x34496464 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5593269f tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x71cc6c48 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7865b0b2 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9d591d30 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb089fad9 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xe11d0d28 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xe3b08354 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1b871969 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x42e8a63b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x725a8bc4 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfb242d9b vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x098e936c nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e7f574a nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fffc728 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f70272d nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23a5f20b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b0ef7c1 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2da87bf5 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33c6fd8b nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36dd6f84 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3712fd82 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4498dd71 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x466385d4 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54085d0d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e597947 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6afdad03 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x779f9688 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x793d3525 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7961225b nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c292c07 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84429b72 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x880ccdd0 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8970ddc2 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b8bbcb3 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9333460f nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6f73cbc nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad51ab11 nvme_init_identify +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5172c4c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb925e1e3 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba5dff68 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8d37286 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9356cbe nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd342dfb2 nvme_complete_rq +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 0xdfd4f9c0 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe01070c2 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7b5a29e nvme_reset_ctrl_sync +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1c87fa4 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8435473 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc2d7f78 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff0c359b nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2afc9e2f nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3c394054 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4a037025 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x537cbb22 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d136303 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88be7709 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad4ba9af nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc2f2583 nvmf_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc8156e5 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc9ca3ed5 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd1d50bb __nvmf_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xebf77fde nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf401e6df nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3d68e591 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6225a027 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7d0e52cf nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x83116ab8 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa4ff374f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb702899d nvmet_req_free_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xba55396f nvmet_req_alloc_sgl +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc16d1efd nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc5f5c698 nvmet_req_execute +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdda65ddb nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe31eaf22 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfa95c075 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x3c47e125 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x51e67f3b nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x376d2f8c switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0f013e95 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x12b807d4 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x22bc4c73 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x249e35a9 dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2667d1df dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x33436317 dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x33bf4c4f dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x37c4bb94 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x51e08c00 dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x56183ab2 dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x59510bb4 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7c6d49d7 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7efe4e62 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8372e4b3 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x86023a44 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8cf04336 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x98d4c355 dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa6eeaee2 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xacceb752 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb315b08d dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeaf1a92e dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeb0f00b3 dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xec9bcc61 dasd_generic_restore_device +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeec36b19 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xef139e0a dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfcaa7722 dasd_generic_pm_freeze +EXPORT_SYMBOL_GPL drivers/s390/cio/ccwgroup 0xfa6b7ef1 get_ccwgroupdev_by_busid +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1a5b5f85 qdio_inspect_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1fda2229 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x40809794 qdio_release_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4be4d8e3 qdio_pnso_brinfo +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x6524c63b qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x86493db0 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x86bfc120 qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x881629dd qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa82bb4d7 qdio_alloc_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xadba96bc qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xd39c518a qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xdecba7d4 do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xf570bf5b qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x01a12f8f qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x035243f0 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x094a2071 qeth_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0a032fa9 qeth_do_send_packet +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x12c853b3 qeth_clear_working_pool_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1318861b qeth_notify_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x16025567 qeth_count_elements +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2288b10d qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x25b17008 qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2b5bf437 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x31ac98e3 qeth_stop_channel +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3250cb99 qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x386635cf qeth_put_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x39c6a2a9 qeth_set_access_ctrl_online +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3c09d395 qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x441a6dab qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4f79a34f qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x50229301 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x503b7629 qeth_clear_ipacmd_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x56bd0f0c qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x58aeb307 qeth_core_hardsetup_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5c342b02 qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x615082b5 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x64516f05 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7c4a8426 qeth_schedule_recovery +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8a9ff31a qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9e58ad95 qeth_drain_output_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa1fef11b qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xabd02455 qeth_device_blkt_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb35d076f qeth_device_attr_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb3ee2493 qeth_clear_thread_running_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb9aaa5e0 qeth_qdio_clear_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbef6267a qeth_realloc_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc0c0b6ad qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc240d01c qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc971cdb4 qeth_do_run_thread +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcb968e1f qeth_core_get_next_skb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcc41f344 qeth_init_qdio_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xccd5cb1f qeth_trace_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcd72ecf1 qeth_clear_thread_start_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd8f13ad0 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe23cd887 qeth_print_status_message +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe5f981d1 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe650f874 qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe6c368d9 qeth_get_card_by_busid +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe77ff5d3 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xed9869ae qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf52dc8ff qeth_generic_devtype +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf5ad380e qeth_hw_trap +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf60120f6 qeth_prepare_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf65fa56a qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf73945dc qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf7df6686 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xff152e55 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xd41f97d6 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xad95c3d0 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1fca8d38 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28b17fcd fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x302c0299 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x584f766e fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x664841ef fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90857a14 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa5b1a757 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6d4281b fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6fd550e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae766844 fcoe_ctlr_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 0xcc7d1312 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5211d71 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9cbaaf4 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0a54148 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf243545e fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd653ebc fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3a77a8bc iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x509a2f55 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x696810ab iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa23bb75e iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa8370eff iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd09e9a8c iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe9d24bdc iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xc34ea0a4 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x029cb147 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x137a00e3 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d763379 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33f2c642 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345c0bc0 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x465d2e26 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a780c58 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63d923fd iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69efb3ed iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cb50ff9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x758d1fdb iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78d3aeab iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79baeaee iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ba5dfe2 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82d39999 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83c12eab iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a0784a1 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7c1b9fc iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb49cc171 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6e37d42 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9b93619 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf0bcc3b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc245402c iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc67ce91e iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbc31703 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc8774da iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce951ea1 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd10876aa iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5edbdc1 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd82b4074 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xded29486 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3b16a8b iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef22bbdd iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1f0b24a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2acf4b3 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf31e20cd iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa1cc6e4 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb7992ef iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc842dce iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeeeb19f iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff18d184 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff983e6d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0261ab36 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f018619 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22163945 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x536ec99c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cd43a13 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d591a38 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80b06d8d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x811507ea iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84232fed iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x865befa2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b72621a iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9525223d iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa33b6521 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabbd3f92 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc2d6595f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea51b7ae iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf85b0f41 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x051479b5 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0515571b dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x073be178 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07cf3b18 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f325064 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e622c49 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24f6ef9a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3abaa6b6 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b17ef0c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x490e90cc sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5743b84e sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e0fdc3e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x725b3d58 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f7a0cc6 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fa683fd sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ed0de74 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab1ba3f5 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf561f09 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafef48bd sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb41a5266 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb619656a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2be5f5a sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef08c8af sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf096ef80 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0addf905 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dafc218 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f7e9f1e iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20205671 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2329b01e iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d546fc0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e9052af iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3133dc5c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37e16be5 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c1d4af6 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fb35312 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43158fe7 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46effa5c iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47867762 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48b9aba6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x501c4bb8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61f51fc0 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69136c7c 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 0x6a82800b iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x710af165 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7baf9d9b iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f637e29 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8469d660 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x878ac594 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fbd6ffe iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa009bd72 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa038a73f iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa349190e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3d4346e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa45850d5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9f1aa4e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac3519d __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad149959 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaea92c90 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6de5e20 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7729048 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbec2b293 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8c148f1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd27d8d1a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4697d5b __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe47089ed iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe55d073d iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe97b5c13 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed13e913 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee2f6e0e iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf090b9a0 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xad22607f sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc4440cd8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc5401da8 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd5c96e7d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd43f4a7d spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x096603f0 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x24943b55 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5e080423 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x60e297de srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7e9567a6 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf442a6e1 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4b5f2ab2 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5552d24a __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x74407df5 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8bfc6dcc siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8e5b0f71 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb868ce8f siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01547383 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0d4de7e4 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1238d17c slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1321e0a9 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x19a29d12 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d1498e6 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2119630b slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3490b11a slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x413563f9 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4a096ae5 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b626fb7 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d67b07b slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x705cafac slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x76f7f5df slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7cd9b3a4 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x864276ad slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e22444f slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa11937fc slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5d5c909 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc10420fc __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc956c127 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xce9a3de4 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd079e7ae slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd1c14dc4 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee3d1e3d slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd5b0e7a slim_stream_free +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x462e22b4 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x8145f0e6 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xaf080d39 uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xe475643e uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/uio/uio 0x10bb5398 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x37739c4b uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xaf842ad2 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe9109cca mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x002fbab0 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x068d8472 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1bca397c vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3958dbfd vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7cbc4bba vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7de91085 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcecd8128 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe406f5ca vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf687fcc2 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7ad49ef8 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xbd08e7e2 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00a9b5f7 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07c6533b vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d0f0b4f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d7d240b vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1fab9fdd vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2021491c vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f73e6c7 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x411cdceb vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48ba0bf1 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b54fc7f vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55fd0962 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d09c4b0 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63020650 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68304e3c vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73fb3c6b vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76fcd0f8 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79da7af8 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80f7f20d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8352d6aa vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e8b1695 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5c9c4ca vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6bb731e vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaaa83a36 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb12f46c3 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb23adfcc vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb92b6a2a vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9445db8 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfbd5561 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc74a4ccd vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5a74e55 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaa338b6 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdaaaf8cc vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe06c947f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe48b606d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee890646 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6d75fe2 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8eb86ee vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf97f94b2 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc1356ef vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc80ecda6 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf7633181 fb_sys_read +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4da9064e dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4f6b07f0 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xce2ee8cb dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22b8e005 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x33e1cb06 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c8ed86e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x63715a09 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8986e83a nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x89c5a8dc nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8f9cc0f9 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e54111 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x013d84e1 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x029ffea7 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07c86104 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e7718a nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7b743d nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x108c3749 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1143acc2 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1287ef3b nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12b01994 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c273b6 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1833b7ee nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x196fec5f nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b62b461 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ca675b2 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dbb6b36 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23609b79 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23ccbbfc nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf07b86 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fc2b12f nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x306769fe nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x309b511a nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31c6429b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34c57ecb nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368e3d40 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x382271f1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3868f434 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a34b91e nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3adff804 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b689f85 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d3d32fc nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fa7b66c nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40c17266 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f07e2b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x436a50db nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4650bccd nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f03489 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a08847b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4acfe149 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d6ef91e nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4de16a80 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e586686 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fbcfd69 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5183863e nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x519f6c76 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51a4d1c7 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53aa0e5f nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55f5ff85 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5722e5df nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587a5205 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58b685ea nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a885c90 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ae12b9d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bce60e5 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67928186 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d7c5f8 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ec36fab nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fe64cd8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707ae48d nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b9cf27 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74f7e2ec nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d7e7f0 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76236bf9 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ad2afb3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b7c4784 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cd5f255 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e26221a nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f003d39 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x808f9aad nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8331a194 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e8e13c nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x881e0beb nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8955ad2f nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8989b773 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db1ee51 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9158bbd0 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96dbac56 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9911de0e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e550aae nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09cf3b4 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1859d6b nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3411b39 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d1e9e7 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8abcded __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa923b43c nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab88c7b6 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac8723e8 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaed75779 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaedb6e83 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb034f4d0 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb12acf7d nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f5c91f __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb651168d nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7056021 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb750a1b8 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8be53fd nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb58dd01 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6b2c88 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd57ce26 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb7d279 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe204dfb nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe771f02 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfc960a5 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc442f1fe nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc546b6d7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6df8dfb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6ff61b5 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc912e441 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9e54e67 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0685479 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd071c44d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f56ddd nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6c29d16 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7244064 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8786750 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8e5d4a3 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9c58b78 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde3efa71 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe02a4144 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0c5b329 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe30bd2a8 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ae682d nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb34b8a2 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec1a9f52 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec3e800d nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef39fbfa nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1a69593 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf370a78d nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf50cb06e nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf772bb55 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9022a9e nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa092776 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaf8d4d5 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbd09254 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adc4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x568f1a68 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x163831c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b357c5d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cdde079 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208f5c30 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b09a1ba pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ba4bf81 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36685b06 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x366ac8a8 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3aa781d3 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7d84cc __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8a2b00 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cfc1a15 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x402c4da9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4282c025 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4355ff5b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44493fb5 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4787a26d pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x488c0d32 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x516f2efa pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bd2f1 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56715759 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f63592f pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60e6aeca pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63a1f3c1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65a08d64 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x680988f0 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6afeab81 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78ecf37b __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab6898d nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c777444 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f766e54 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x849bfa76 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85ff7eb6 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b7bca69 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d84d522 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91c32765 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92ead4f4 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94589211 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99786d21 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cdccdde pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa092e1ad pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa14d1be7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa319bfee __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad049cc2 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf608c0b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5828bd2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb92da4e1 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba434df5 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbccea5c5 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfbacf1b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc12c5a70 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc15ebf77 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc604c50 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccaba851 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd23a2a32 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ed7dda __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8c10ae5 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc29230a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf05942f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe45379f2 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe796991c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe91aa6b4 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedca891b pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee960d9f __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6d5ca4c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf73ece1a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf965514d nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa3f6588 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfabfdebf pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x04973ea8 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1b188b82 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2a2c54a0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3631f9f2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa584c55c nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x026f3282 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a5d9cad o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x692cefde o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x696fa2fa o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb57fd634 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xce7e0b4d o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd5ac03d8 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf370dc36 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa83d357 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0e6867b3 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x68741672 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78223dbb dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcb7b27f4 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe6a23332 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf9ac53a2 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6847ae1d ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6e3b0dea ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x75d4b216 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8760b049 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 kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x3aa25a6b _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x7596a2ed _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe2c6cb14 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x1b0f70f3 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x10305a46 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7495c7d0 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov +EXPORT_SYMBOL_GPL net/802/garp 0x151fbc5c garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2e17e775 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x2f808d2f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc9243c1e garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xd7a60c2f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe986f59a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x38bc3dfe mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x48260b6d mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x693a8b8e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7e5de0e8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x9977eca4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xbe20c347 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x1ffaa954 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x2de34815 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x836b8a5c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe794e89f p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0292c8bc br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a32cb54 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a533826 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f25ff10 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49ec406a br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x53148ed1 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57d209e3 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b0724d6 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x93793af0 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x968d7114 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9d4e4b5e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xac7f14cc br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf292262 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8154a83 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf838a95 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda5ffc1f br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcbef442 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe011b27b br_handle_frame_finish +EXPORT_SYMBOL_GPL net/core/failover 0x6e7a0757 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x815e7151 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xa3ef4742 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x000ec178 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e1efdf7 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x106df1e4 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14659f63 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19dcd585 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19fb6ba1 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fbef0d0 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x245f45bf dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28a23107 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29ca07a0 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cf9301d dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e4f81ce dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x322aaf85 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dda8a3e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ff2f72f dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44f795fd dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x462ba747 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x535c843c dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fffad67 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6cf729da dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74203431 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x796eb0d7 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80c2a77b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88c144a1 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b21204b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafc7e597 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7137161 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb78ee43e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc54f2ce0 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5670f3f dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5aaf2e6 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdab1b60b compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb5b7818 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc30d21f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfa2ad89 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaf12689 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x048b756a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5ccb4064 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8657cc55 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9c5a3023 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeca1dd23 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfab5dbe1 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ife/ife 0x2fc6cebf 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 0x7e4bcc64 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0095f73c esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc30390fc esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd0cb33c3 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x8e9b1050 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd6ce7404 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0eb7ed9e inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3490d152 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5d0e98fb inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5e8a613e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x679fbffc inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x946e9252 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd5c0cb26 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe1591e91 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe88c5d2e inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6cb79bd9 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f0f77e5 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14631ce7 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f5d491a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34af5a7f ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4882b455 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x65210f5f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8dda284f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9ffc1358 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaea567ce ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb47d3b70 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb937cfeb ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0d2238c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca5bb2ba ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcaa023c1 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf21d053f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf50aa2b6 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb59ccc60 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4ad6fae6 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x34a38361 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0f0733f5 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2c9325af nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8b7875f8 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa8a84ca5 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb48cebd0 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcf3133e0 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x554c1ab8 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x408f2885 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x42df948b nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xad43910f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x10ce7b92 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb6ed75f1 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x232d4cf0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4bdb8733 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c470d0c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78a38c9b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xebec32e5 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a228405 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x322ec9af udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x36f22c6a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4dd67fe4 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x69efd200 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7baa5166 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaca5946e udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf175a42c udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9ab7a888 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc226717f esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd06ecd27 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x82be37f4 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc4fa2c78 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd2f922dd ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x5412b2e8 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe38653f8 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x89d5000c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x97ffbf94 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xee27605f nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5a811f35 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x312b2961 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3f5b8943 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5a65240c nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbfc2057c nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc1c03f87 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xd22bbbd1 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1741d18e nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x95fe96de nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xecaea5e1 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x17d9ecf7 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x477448cb nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0648bfe3 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fc0564a l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2287246b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3acf0e34 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x432621f7 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47bdaec1 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fb7e1f4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x554f9bb2 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5905f0cf l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63262471 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x732ca2ba l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x753a6d56 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bd309cd l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3f7e96c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd50e535 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc8f840a l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5934439 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x902bc9c5 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1a31e6df mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc049f756 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcd424ae9 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd009d501 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd62b195d nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe413b0a4 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0fa26ac8 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x130787fd ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15e53702 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17b768f4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x204cf728 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25a516ea ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2807e532 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x37b56012 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c53b775 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62a5b4ae ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74444530 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7da36950 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x862418c5 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa02621dc ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6b4283c ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9739d32 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc6cedd8 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5b9b101 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x215903af ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x885e4b76 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8cdce0a6 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xddedaac3 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x163b845e nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x332e9611 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3f85489c nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4af54be0 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8eff4718 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x97a80460 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe3977c44 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00aea142 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x020b6da9 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0370ffd0 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03dbb733 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0517ab22 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06ef5490 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0855a545 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a3194d5 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b368438 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d5ca3e3 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111058e2 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x173b81e6 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17c016c5 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18071b1f nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1987c0f1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ad4a982 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e380d99 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20ab8c5e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21fd8d4f nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a469d6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x246852d0 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24cb60d0 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26dba702 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29425ff8 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fccaacb nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x319f9b3c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32ca7ba3 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ea7eed nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39631ba8 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d2ca58c nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d9a3108 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3de4ef98 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e6b5d4b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43cea7c3 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x445002c6 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x487ba176 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fb02cb7 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x535798bb nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x617e86d1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65195999 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65bedf34 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a5fb4f5 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7163de7a nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x764b47da __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a96d568 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cb32eaf nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e3428b8 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8db1b61f nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fb05c95 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fd75dc3 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x902cd54e nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9042e362 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91732615 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9782180b nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99ec2a26 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa074450c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1b9925f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4adcdbd nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5bf6d02 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac79a545 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadea550b nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf8c5d78 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb689a7d0 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd53534b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd58f4c4 nf_conntrack_alter_reply +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 0xc6b23eef nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9cf5b98 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaea1891 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccdafb8d nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf75e455 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd19ea078 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd481bca9 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8a75f84 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda1b5813 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4d0631 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe014862c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe70d0d2e nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8cc0e1e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee0b7a31 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf183a4b6 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf220a08e nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3e600fc nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7a930bd __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf96e696c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfadd3990 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe1d9e1c nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x247c14e1 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8f11251e nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb4f111af nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x198c88f4 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3ad8fc6d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7b985bb3 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x81a40c9c get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9089f791 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x91efb3dd nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa3f9f384 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa4fc2468 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb3c4607b nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf14daae0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8778e5b4 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x30ab8236 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3b0d48cc nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xbb9fb656 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd4f7f120 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4af97943 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5f4342db nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6f41851e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x80f0a142 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa6883a7d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xacd4f96b ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xee474ee7 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x20feaff2 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1093f667 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3d41ef8e nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5f72e420 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa1f001d1 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07a05c55 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0caeff63 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x421e0649 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6ff8f78c nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7012e8b7 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87743b13 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa6501811 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa993de81 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaa36131e flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcaeccf04 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd715c3ac flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeca12c32 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0b82cd01 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1a15495e nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x36279cb0 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x53c62e41 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8df011d1 nf_log_l2packet +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe242880a nf_log_dump_vlan +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c08c889 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0e79e915 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4058de32 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f15c42f nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x673d2af3 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x836b0f47 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9042aac4 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x93c761c6 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9e38d761 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa088d381 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1b0317f nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa3adf64e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0944a64 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc359e88a nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9d77ae6 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe9547203 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3b090be9 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74cff059 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9e22a569 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa73b9ebf ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaaaee2cc nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb0362960 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd89c13a nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd3a8c528 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd7110a96 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdbbc3193 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf85a52f2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0037247d __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09441990 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a0bf17a nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x154d612a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1da427d8 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28759582 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30dce1e3 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3503964d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36608b66 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c9da9a3 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4017df9b nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5170e7f3 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5394d430 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5524d103 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5965d2e5 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b4c73e3 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e42bcb5 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x601b33af nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b2a8c45 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c60655c nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d0b4cdc nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a62968 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fcb51a9 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85430a76 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f29d822 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f64be30 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97084f93 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97c8e30e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a59f5fc nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c68a40a nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3be4be1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa64ae197 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf36d50b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe88ab39 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc7d13e3b nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd551f87f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe26feebb nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe8e2866e nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef25b93c nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf89288a6 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfaa7b6cc nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x45873c0a nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4670ae07 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x677db224 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xae8bdd06 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcb5a6c9c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfe93564a nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x19dacd14 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3f3f5772 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x50d882fd 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 0x712feafc nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x83fc12e2 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x12224ef6 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3246d0d6 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x84b6cc70 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcedc19ed nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4321c674 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x89d279e8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa5f71562 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe33d88a8 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0135bd8d xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0dc41212 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15527c24 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16bc10eb xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1951040f xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1bac1ee9 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22aedff9 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2929a3e2 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c48151e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x532a379b xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ecf58cc xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x709232f2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80341a8e xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f9b7265 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5cb1a2d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa60a167d xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3eb267f xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6306b38 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc32ed73 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe3616260 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4ade1ee xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3b7658b2 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x79da54f6 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1e1056e8 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xea66c4e8 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0bde36e1 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a75f074 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d7c8fdf ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5cfc870b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9238eb6 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef3da02e ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x539e3143 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x62e3b307 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x63acb79d psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xc1d17db9 psample_group_get +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01208fa9 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x0abb76c2 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x1abbfe37 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3635d9b4 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x36cc01b2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b26aa5f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3e86ddd8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4d1e4515 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x523a74c5 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x57c4dae3 rds_conn_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 0x5acc54c7 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6a0220b5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x73714843 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7c12b926 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x856af140 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x960f8a30 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9a33e5df rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9d3193f1 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x9fa04017 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa0fd4ef9 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xba7dde3a rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc26ef6de rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4036ae5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcb5f7b8f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcbe3965c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd9ebe95f rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xdc0e376d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xe18736fc rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xef8b3c2a rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x32301c2c taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x592b2140 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb7259b81 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbfa1b02a sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xda7d5ae8 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfc1c24d7 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0ff60494 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1d3e4f10 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4f5c73b6 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7a28080f smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7d88aa06 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x89d77df8 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x9d56921c smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xa9c83966 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xe1092c49 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xffe8ddce smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2c5be6f8 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 0x47c1fd76 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcdd1c4f8 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe4f70abf gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x003f6870 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x025be54e rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04525a55 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x046da441 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e4290f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x067a8f05 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0734f186 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x088f62cc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a20228 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab01236 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e19ea85 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0eec5d99 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f069aa6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x106c2b1a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10be0bf3 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b00f8a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14223991 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x145ad059 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d174d1 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1595f8e4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b21b87 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a081dab rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a2de35c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f36e3f8 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2072741b svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2112a1a5 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2251378c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22862b67 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b6d238 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24143d93 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b3ea85 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2651c9bd xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29087aec cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29917c53 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0593e8 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2fbf82 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aab0148 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b157936 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c614f63 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca734f7 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e071492 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e35e553 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb909da rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f9988e5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa938a8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300402e7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328fa5aa __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345ed2d2 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x355b3cfc sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x362d7108 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ad5e4e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2f275d xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40aa5c6a xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d7471f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f6a647 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fdf902 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4310eef5 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443875de rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b71c7e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a0c61a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f36c11 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a2aa85f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1b19ad xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7de75f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bd46c3f unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7b00f8 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f291033 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb16937 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4feba068 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x503f7ed1 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50833e52 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5090672f xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50c4dae0 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f61f6e rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5177d9bb svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f27169 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5208ae3c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5284c907 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530d9ca9 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53384a6d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53882c9d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55dda9fa rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ad27e5 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a1f8155 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5c0656 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5812c9 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd21d96 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3ae0c3 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f45b6dc rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618cc844 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6431b283 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649bcdea rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x651bdf62 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6934862a svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c629766 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d97c8cc rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7091bebf svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f2e588 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a19313 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75403739 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x763eeac7 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7669cbe4 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f85e19 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7777e109 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f7e6f2 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790b2fbd rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7942c3b4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7947bca2 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7970e041 rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b35eee0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d20ebeb xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7e294e xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fd41b39 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x826b62df rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82e77ddb xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85004917 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856b9ca5 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x878200d8 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89fbd494 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a0c4075 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c03e743 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c26dbc1 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e76867a xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6fb4a2 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9107e5b8 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91436aea svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917c13a9 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c94623 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9219c00d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93bfcc18 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9410b3b8 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94950b4c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983655ff svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986b5a6e xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99346d9d xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0b33ed svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1517d1 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5077b3 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a950f5d rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2bb08e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b3d892e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c15b7ff xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dda7fca svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e230b9a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee3c446 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f67b21a rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe9c0b4 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0100092 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa33b24a4 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5171c5c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa523dcf2 xdr_buf_read_mic +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5cdb0ee rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa666b761 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa236f49 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5f86b0 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaab9c8be rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba28a37 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1ecaf7 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7be7a7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacfcde4d sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad74b496 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfd3f84 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae4b8cb6 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaefa8bfd auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf21a8cb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb068f086 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb069aeba svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1043e7b xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63aea87 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c8a541 svc_return_autherr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73f127f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9c3fb66 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd749d82 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe318352 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0b219cb svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2cbf57f rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2cfdfe9 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3afbbbb svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e64f39 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41e1458 svc_encode_read_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc51deea4 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b264f3 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc78073b9 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc78f5f40 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc82535a8 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8ae4322 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e9e6fc xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0a34e7 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca43ede7 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdada740 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdf2b4ab rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd008303c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd028ebf5 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2057c74 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4591d37 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45c99bf rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a9910f rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ccb2ab rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74cdf36 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8220aed auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd85a64b9 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8646197 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a316d6 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8cb5f03 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92c56e9 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b43dd3 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1410d8 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf92be9 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc25870f cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc31e924 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdede56a4 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2914303 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe35cc335 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e4fb3b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe833037d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea6bb97b rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb91dd22 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee0205d6 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee83d48d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef167004 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf034e5b8 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0fb5c70 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15eea6c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf82cbd2f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9573445 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa4fb8da rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfae6d2cc xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8f6ca5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa11c79 xdr_reserve_space +EXPORT_SYMBOL_GPL net/tls/tls 0x63db6284 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xe245f70e 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 0x062309ba virtio_transport_set_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08efd9c0 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a519f67 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b1d2e4a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d7e3d19 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0eaf2e4e virtio_transport_get_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24b88c99 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x326c6b07 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37a139e2 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38ba9c85 virtio_transport_set_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b4536de virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54db0682 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5caff823 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x66ab4917 virtio_transport_get_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6bc562ba virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79f28afd virtio_transport_get_min_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d4a7ad8 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f072007 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82ca0b55 virtio_transport_set_max_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89eee2bd virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96a8bfa9 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x985428dc virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e1e8523 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa421346e virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae62fbcb virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0de28e6 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb70f0bfb virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc6eed010 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8b293ed virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb63b086 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce9903f2 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd790e810 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe56f113c virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe84abf79 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe93889ae virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe601739 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ba21298 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d0d9195 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x196e0e24 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39e18e12 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e5dd2bb vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59b15956 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73879664 vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f6da27e vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x852b3954 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b2858b5 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x900cfe8c vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0c178e5 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa65e44af vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb64d00f4 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbfccd175 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1d346d2 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcaf09518 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd876f1e5 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd45c742 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5956936 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff115a1f vsock_enqueue_accept +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 0x44ecb139 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd4fcf6f2 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdad392cd ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf25b8ef7 ipcomp_destroy +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 0x000af91f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x000c772c rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x001e789b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x0038861c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x003ff214 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0055a9d3 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0087a9b0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00a7e503 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x00bd6474 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x00bde851 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x00be44b1 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x00e00c16 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x00e687a1 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x0122c6fc devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x0135a690 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x013b959b gmap_get +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x014880ac device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x01534795 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x015362d1 ccw_device_force_console +EXPORT_SYMBOL_GPL vmlinux 0x015fd5f0 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0170d081 s390_reset_acc +EXPORT_SYMBOL_GPL vmlinux 0x0187c9db clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x01ada37b xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x01e514ef cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0x01efc787 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x01f457bf crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x01f88377 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x02191fde __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x021d64fb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x02282799 gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0x02683d3c blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x026af299 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x027a79d9 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x028f6c69 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x02aa9f50 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x02b0db09 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x02b93e7f unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x02b98997 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x02cd2608 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x02ee121e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x02f28f84 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x03228467 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x03280090 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x033999a2 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0378f612 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x0385b497 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x038d7cba gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039f85c9 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x03a6855c crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x03ab0b20 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x03ab8e8a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x03ac09d0 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03cca3e0 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03dae7b4 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x03f800c7 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0419e725 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0442b2ab strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x0460178d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x04645f45 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x047e7ccf do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04dfd898 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04fc4164 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x04fe3573 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0509b61d crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x0514bc90 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x0525c740 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x0528d937 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05455ad9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05673b87 chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058be263 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x05a5856b __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x05a80470 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x05af277a tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x05bfe6b8 iomap_readpages +EXPORT_SYMBOL_GPL vmlinux 0x05d7895b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x061604ea class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x061c36af iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x063e7982 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0652d0dc check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x06821121 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x068d97a7 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x0695f236 of_css +EXPORT_SYMBOL_GPL vmlinux 0x069cfc3d debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x06c763dc __dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x06e14c38 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x06f60075 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073c3a0f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x075402da sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x075f8817 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x0761e32b tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x0779be09 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x077e779c udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x0781eff2 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07bf29cd get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x07cabb0e tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081f3d3a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x082accf0 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0843eccd iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x084ab51e iomap_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0850daff tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x085b29fd input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x086fbe5f __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bd81b2 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x08c1ac1f pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x08c489ce is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x08d3bf02 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x08d73e72 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x08d9b81c pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x08dc4e0a ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x08f1a958 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093fe43e debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0940679b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0945dcde class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x09498649 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x096b2418 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x097f5f77 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x09982f4b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x09af774a noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c254a4 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x09ec5c4c perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x09f81d84 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0a43ad68 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0a5e7736 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a714184 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0a721a7a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0a7eb1c5 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x0a9d9224 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0ac71a20 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0afcc43c gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b636e44 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x0b68d791 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0b74df06 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0b7974da xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x0bb0949b dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0bb5479c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bcc4038 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x0be61870 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0bf4ee03 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x0bfb45f7 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c17dfbf component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x0c28728b virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x0c296a36 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c98a6f1 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x0c9c2ae2 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0cad4570 security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x0cb185fd tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x0cbfc76b devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x0cdaa9fb platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0cf676d7 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0d1a34e7 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x0d22d728 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4af8f2 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0d65e737 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0d66eb63 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0d67c35d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x0d6c3f8b fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x0dc689f1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de051bc device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x0df3661d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x0e06b8ee shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e1a0551 __bdev_dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x0e24a752 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e5d2765 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0e66c544 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e721322 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x0e795732 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0e93524b iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x0ea7bb5f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x0ed372b3 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x0edb8cff debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f1496cb xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0f163b1d tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x0f1e69ad klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x0f1f21ce fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0f2bedd3 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x0f46e394 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f54828f pci_ats_page_aligned +EXPORT_SYMBOL_GPL vmlinux 0x0f57b5b7 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x0f71a4f7 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0f7ad7bf blk_mq_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x0f812799 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x0f8d55da perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0f9d0231 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x0fb82f7a update_time +EXPORT_SYMBOL_GPL vmlinux 0x0fda52a0 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x0fe4691e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0fe7617c __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ff98dca debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x10075f38 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10118c1a bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f6bac bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x1033652c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x104151fc xsk_reuseq_free +EXPORT_SYMBOL_GPL vmlinux 0x108c8047 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1095f246 devlink_region_shapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x10c80c73 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x10c85b34 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1103572b blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x11160ea6 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x11227d58 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x1130e78c device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1133b371 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x1167e58d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x117bb2bc vfs_readf +EXPORT_SYMBOL_GPL vmlinux 0x1180570b skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x118909af aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1194b0e6 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11c23240 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x11cd0702 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x11ce927e iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x120eb8bb devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12783e54 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x12b02c13 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x12c4c078 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x12d6b63d get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x12da6639 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x12dbc8f6 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x12e57c99 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x12f3f52a dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x135d4fc6 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x136c4aba generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1388fba9 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139d1bbd subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x13a9a38f fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14066b61 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x1418238a __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1437f5ba class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1449fff6 sbitmap_any_bit_clear +EXPORT_SYMBOL_GPL vmlinux 0x144ff1b1 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x147f86d9 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x1482c5a4 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x14867324 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x14ae3d1c device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x14d8b541 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x1503c99f devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1520d9a1 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1525bf5f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156cdac8 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x1582cdb1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x158b3e49 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x158bebfc user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x15d3a764 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x15fa1d50 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x1643f5d7 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x166427c2 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x166d6443 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x167644b3 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1695dded unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1695e985 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x16a96aa1 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x16d22aaf __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dc7b01 noop_set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f20e7f page_endio +EXPORT_SYMBOL_GPL vmlinux 0x16f46a50 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x1701f0dc acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17067be1 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x177bbae0 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x177d611b kvm_arch_crypto_clear_masks +EXPORT_SYMBOL_GPL vmlinux 0x178756db pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x178d04ac fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x17901dfb tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a3993f __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x17cbdeac xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x17d0b037 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1800931f pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1800e0d7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x180352a6 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x18065811 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x1822db2b bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x182927a3 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1832f984 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x183f9f51 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1845df75 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x184666ab crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1861d89c subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1892052e driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1892dee8 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fbcbf3 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x19091ba4 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x1955b4ac do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x1972b601 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1975283f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x19941441 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19946fde idr_find +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a1976c2 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a38b34f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1a551022 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a9e0008 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x1ac203fc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afae45a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x1b0946d8 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b3b258b fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1b3d0eb4 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x1b5e7fd1 gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bc4ac55 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf19aca transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1c0e7b90 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1c213387 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0x1c3d87cf kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca41e72 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x1cba4a66 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccfd830 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x1cd267da iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1cd8c46c strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x1cdf2572 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x1ce59816 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1ceb9436 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d370243 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x1d504cfd devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x1d5ba6ac gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x1d777629 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7defbc sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1d7ef980 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1dc43e5e perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x1dfa111c gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1e10c552 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1e1447cf cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x1e30665a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x1e404016 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1e492e08 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x1e51dabb __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1e530f86 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e5b16ce ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1e5ef5d5 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1e6bb7e6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e805b9e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1e854c77 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1e886c34 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x1e8a9475 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x1ea6265d crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee2eefa pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f0cfbec uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f1e862f sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x1f27d539 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5eeb37 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1f7a5acb tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f976b09 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x1f9e6b7b __devcgroup_check_permission +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faa25af xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1fb4bead cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1fd36018 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1fe14dcb __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x201aa9b1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x2035f323 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x205d912a __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x20660b4f fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208d6dc4 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x20b923c7 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x20ba4597 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x20c1b4c2 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x20c53694 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x20f07c95 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x214f4c1d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x215a7b01 crypto_stats_ablkcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x216651d4 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2173e5bf scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x21a9d793 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e6e2ac dma_resv_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x220f6228 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221ff62b devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x22283992 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x22298aef skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x2246b4dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x22693c3a iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x227a9aad sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x2281be48 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x23261979 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2326717e gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2327323c trace_array_create +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235e5caa oiap +EXPORT_SYMBOL_GPL vmlinux 0x23684af9 gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x237959b8 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b7465f ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x23eecf11 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x2436db58 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x243f0b4b crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x245d6ddd device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x246f3d9d shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x248f0ea1 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x249dc530 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x24a21987 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x24a39211 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x24a751b2 skcipher_walk_atomise +EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0x24e20af4 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24f65508 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x24f676ff badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x250ec1ad _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x2512a0b3 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x25249d8d ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2535c66c debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x253c71fa pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x25440707 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x254fdcdc blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x25728ba5 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25abfd22 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x25ecae66 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x25f0a460 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x260354a4 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x264d17c5 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265d69c4 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x26648c0c dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2682a0ab fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x268497f4 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x268c1286 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x26955710 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26963397 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26bd97df fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x26c622ee percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e8cdb7 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f8cff3 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27396fe0 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27545244 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x276fb814 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x27730be0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x27740700 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x27b64afd rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2805eb42 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x284fe794 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28822898 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x2899421c fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x28a8c058 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28af2a91 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x28b0fc28 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x28b5f630 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28e2fda6 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x28ff3334 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x29252e74 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2941c0c9 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x2972010f gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x29786bc7 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x29830771 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x29a65c28 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x29e63b79 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fbe78e debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2a1289a7 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a2b47c8 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x2a753896 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x2a7e1ded gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2b0e499f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x2b0f8b1e kvm_arch_crypto_set_masks +EXPORT_SYMBOL_GPL vmlinux 0x2b1cb437 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x2b1dd203 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x2b260a74 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b51bdb1 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x2b57afb4 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x2b66c728 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2b73bfeb enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x2b744c6b devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x2b933f8e gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2b9d895a sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x2b9f5871 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2ba18de5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2bd946cc tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2bde5014 device_register +EXPORT_SYMBOL_GPL vmlinux 0x2bef20a8 iommu_sva_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bf2041f __tcp_bpf_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2c0b2c76 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c0c83d5 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2c0cc92f badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x2c251946 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2c2995ad cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x2c2c4532 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c354e1e gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x2c60aa37 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c997a85 udp4_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x2c9d529f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2cda658c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cee746a pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2cf43295 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x2d07f1fe ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2d18229f sysfs_remove_files +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 0x2d475b95 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2d4d8dc6 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2d4f56cd net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x2d5cb2ef ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2d9a4d95 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2dfebddf cio_halt +EXPORT_SYMBOL_GPL vmlinux 0x2e01c682 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x2e04297e add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x2e15b5a2 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e32e4a2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x2e432988 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x2e7643e9 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x2e911cd6 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x2eacd05a register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x2eb5d077 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ed76485 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x2f02122e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2f04b6a6 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x2f1726cf devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2f1cbd15 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2f2c3996 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2dbbf0 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x2f383cea blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f444913 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4f0ffa fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x2f4f67c3 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x2f51a846 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x2f58667c xas_load +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f77fa3e scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x2f7effc2 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x2f976772 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x2fb1fd29 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x2fc8ad9e xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x2fceab88 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x300c2bc7 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3020886a loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0x3042bed7 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x30464e6a alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x304d3b17 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x305d9aeb crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x306792bb locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x308227a6 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x30b5ad14 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x30c053a4 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x30d80a67 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x30e0c1b1 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x30ec8b4a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x30ecdd41 gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x30ee341a hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x30f2a175 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x30fdaef9 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x311eea66 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31308c6c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x3131bcec invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x314487c4 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x314f2401 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x31785f08 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x31996f88 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x323c57e0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x32421402 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x3249d558 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x325ee476 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x328b872a dm_remap_zone_report +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 0x32c6c604 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x32e41ab7 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x32eb5698 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33052701 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3318e3a4 cio_start +EXPORT_SYMBOL_GPL vmlinux 0x332bad69 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x333e3175 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x334272d2 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3384dd0e serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33870353 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x338b6f65 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x339201c4 devprop_gpiochip_set_names +EXPORT_SYMBOL_GPL vmlinux 0x33ce5deb alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x33d197de mmput +EXPORT_SYMBOL_GPL vmlinux 0x33d1a251 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33d50c8b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x33da499e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x33e68217 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x341ba8be tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x3421ca7c __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x34254947 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x343e2e00 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x347d5fcc dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x348eaa10 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x349876eb blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x3498b45b tty_ldisc_release +EXPORT_SYMBOL_GPL vmlinux 0x34a5e980 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x34af11cd devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35098050 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35158e9c pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35415714 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x354e18c4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x356f62e7 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x357758cf kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x35909db8 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x35c0b4b7 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x35cb74c6 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3634ab5b rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x3634ef71 gmap_pmdp_idte_local +EXPORT_SYMBOL_GPL vmlinux 0x364e9088 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3655fae0 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x36689497 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x36807cb1 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x36984ff6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36cc9b8a __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x36d6e998 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x36db53d3 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x36e22bb3 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x36e46f12 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x37099c47 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x3735d001 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x37816443 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x37b62c95 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x37c62d07 device_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x37ca98f6 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x37ce8ea7 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x37ea659f add_memory +EXPORT_SYMBOL_GPL vmlinux 0x37ee9faf watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x380fe3bf add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x381dd444 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x38324d98 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383b35eb pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3862873d set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x386d6b00 blkdev_reset_zones +EXPORT_SYMBOL_GPL vmlinux 0x3873e4b8 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x388a5e2c blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a71b14 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x38dc7ee4 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x38f26985 flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3909b978 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x392483a0 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x392fba0e bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x3935dc88 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x394189d0 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x395d073c rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x398e08cd debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x399d0c5c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x39a1244d kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x39a8b588 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x39a904e7 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x39cc2d6b pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ed36b9 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a125f12 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3a19e011 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3a27e702 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x3a414af1 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a57d09d crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x3a5d0f48 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3a7ae3e9 device_connection_find +EXPORT_SYMBOL_GPL vmlinux 0x3a8cdc5c __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa80365 find_module +EXPORT_SYMBOL_GPL vmlinux 0x3b2772cf kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x3b29e084 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x3b4b0f21 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x3b4bfe0d sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3b539e44 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x3b53f6fe fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x3b6b4838 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3b813ca0 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bb36d09 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be11712 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2d0f2e sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x3c3a0ae2 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c5b928a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x3c9a947b device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3ccfe2c1 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d105f03 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x3d1e1300 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x3d255a74 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d74dbbf alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x3d7e2ea7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x3dc52574 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x3dc7b8fc sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de7641e security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dedcf6a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3defafb4 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x3e01a01e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3e0a9ab2 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x3e10c162 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e3efaf2 ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x3e442b9b kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3e4e9e82 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7f7f67 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x3e7fcef9 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x3e805f6e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x3ead5c39 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3eb3d400 gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x3eb96c20 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ec0ca99 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ed260aa rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x3ee09bfc key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3ee0edc4 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f10ca02 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x3f39c6ae virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3f4687ce is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x3f6400ed crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3f83b99c __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4006307c gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x400e51b2 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x400fda78 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x40116da2 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x40260def pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4029dada posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x403a2f83 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40540392 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x405963a6 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4083db54 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x408d2a04 play_idle +EXPORT_SYMBOL_GPL vmlinux 0x40928d1a fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a243f0 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x40ae17c1 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x40f22931 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x40f447e5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x40f582dd sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fda088 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x4103dd90 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x410dbc57 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x4132b38b gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x415de952 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x41633058 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41984d83 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x41ac5609 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x41b200f9 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x41d25d3b bsg_scsi_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42046998 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x42094130 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x420cc0f3 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x421c6a96 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x42214614 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42885fd7 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x42c52ec4 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x42eba3da switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x433f7188 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x43499cf8 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad2dfa skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43d6f51d scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x43f5ca1f fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x444d6177 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4461940d cmf_read +EXPORT_SYMBOL_GPL vmlinux 0x4467fc0c debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x448209e8 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44f2b926 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451b0914 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x452742cf disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x453bad05 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4556ed90 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x4559d687 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457856a3 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x45885cd4 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x45acf71f devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x45b7d1d7 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x45be36f2 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x45c3c137 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x45fd8572 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x461e7896 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x46444d8d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x46562ca4 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x46770439 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x46824072 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46b9cb92 __pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x46ce0dee noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x46ef35ec fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x46f311dc kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f44783 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472487ed iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x4748520f __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x476167c8 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x47616e7f netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476496ac gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x476fc352 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x4770126a gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47a89953 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x47dafc2f balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x47f5c623 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47f6f950 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x480e69d3 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0x4826df34 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48656529 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x4867486e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x48bbbc51 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x48bbf525 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x48bef1d1 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x48d19de7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x48e366ae unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4910999f sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x496c60c2 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x497030a6 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x4972dd95 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a4974b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x49bc7928 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49d3ddca addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x49db5c64 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x49e1e1ed device_del +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f4b1a9 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x4a05c75c vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x4a10ca66 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4a2e1dae gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4a3cd188 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x4a65d001 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4a8403b4 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a843dbe class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4aa805dd sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab747a9 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4ac6301b dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x4ac86feb driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4af17d0c bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4af2b5f6 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x4af40695 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x4af5a6b6 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b0c7ad7 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4b17e177 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x4b325157 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4b74c292 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4b905906 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib +EXPORT_SYMBOL_GPL vmlinux 0x4bbcdfba devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4bd5a082 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x4c01ff59 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x4c0ddf6a devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x4c49fa4e vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c5c57cb kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4c63ee2f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4c6b95f6 virtio_config_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c6f8e36 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c9cd19e devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4ca7e714 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x4cadccba driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4cb39604 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce214b8 zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x4ce32b51 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4ce57e51 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x4cfeeae5 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d343246 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d527c89 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d9c9f0c dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x4d9ee90d is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4dc422e7 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dca8349 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x4dd207fb crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4dde2541 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4df8ae5a ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x4dfd4470 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4dfea05a dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4e0f6617 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1a2eff tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x4e240197 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4c4c7b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4e821d70 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e96f908 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x4ea389a7 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running +EXPORT_SYMBOL_GPL vmlinux 0x4ec659c8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4eda64e8 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eee746d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x4ef1f082 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef95597 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x4eff7799 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4f2ab632 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4f4778bb kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6c3153 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4f71a6c2 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x4f7465c7 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f9a7283 cio_cancel_halt_clear +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe966b1 pci_epf_linkup +EXPORT_SYMBOL_GPL vmlinux 0x507c8dba firmware_config_table +EXPORT_SYMBOL_GPL vmlinux 0x507e1246 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x507ebc7d fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x508ccc59 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5981 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x50a23eff nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x50a63f93 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x50d8a5b6 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x50e5c574 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x512024f6 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x512cd541 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x515d14ec __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x515e1412 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5169024b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x51a960d2 __flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x51b31f6c fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x51b60ce3 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x51da1378 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x51e0c2b8 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x51e58009 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x52121118 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x5218d9f2 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x522a1c61 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x522a520a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x523589cb get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x52604572 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x52674aee sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x526b31eb __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x52b1e8f3 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x52c6f970 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dabc43 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x52ff143e devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x531f0d36 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x534a2736 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x535bd2a1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x5376c1c3 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x53a69e55 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x53af683d wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x53ed2785 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x53f879aa __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5420bee3 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x54279d92 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x5429c1ed inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x547bd44d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54baf2db invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x54d120d5 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x54ec58f7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x5500f98b iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55738307 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x559b27f8 xdp_do_flush_map +EXPORT_SYMBOL_GPL vmlinux 0x55b3a84b devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x55c6152e napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560ac7a2 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x5620bb3d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56386880 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56610d3c vfs_writef +EXPORT_SYMBOL_GPL vmlinux 0x566962b2 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x56aa7eb9 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56ec32f5 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x56fb1810 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x571ff10f input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57274efd dma_resv_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x572f6349 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x573786b6 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x5738fdf3 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x57432454 xdp_do_generic_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5748ecc4 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x574d2190 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b57fcf netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x57dc1a05 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x57e4feb9 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x57f5de55 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x57fbd67e blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583d35f7 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x58a730c0 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x58c31350 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x58dafc1d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x58e87a58 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x590ecde6 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x59128b9c __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x592d434d ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x592ffd36 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x594a90a2 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x595bba35 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x5964360e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x5966341f inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x596fe31a public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x597c6d3d gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x59871449 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x59a83c3b perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x59ac1d45 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x59b4ccd7 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x59be46c6 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59e8724f pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f70d93 flow_indr_block_cb_register +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbdd l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5a4ff2f3 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a77658e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a83e5ac ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x5aa95ede pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5abfed65 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x5ac3d378 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5aecf4e8 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x5b13ba9f css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2b25cd pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5b4033d3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x5b451e94 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5b4804c6 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b8590ec dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5b924397 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5bb0a870 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be9da69 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x5bfab7be peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c1e32c7 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c5cdb39 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5c6b8592 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5c9c9817 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5ca4dc08 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5cc96e47 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5d0090d7 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x5d29755f proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x5d2b5ac9 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5d3f8f04 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x5d548625 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x5d6b3b4a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x5d77b372 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x5d794102 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5d88bc7b gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x5d97052c virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dcd691c blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5ddbdd89 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3f66 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1b9f1f debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5e2aed7f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e66d1cd __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5e6761eb register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5e7c9da4 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x5e83d5ff fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5e88b300 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x5e9c6377 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5eda697c bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5efe7079 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x5eff17a7 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x5f0fe429 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f23addc property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f31016e preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f4ec781 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5f50d040 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f707bc0 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x5f8276ce fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x5fa6b9ec xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5ff12839 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x600a2250 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x600c7e7d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x600d5d47 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x601ba0cc exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x601ba3eb __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x601f5d79 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x60271fd0 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604d9fa1 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x604e03a3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60e63f02 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x60ebded8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x60ec330a do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x60f00258 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x612181db dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x613c0646 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x613fa3ba balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x61449dc2 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x617e4460 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6194cdca l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x61da1e88 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x61dbab8d unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x61dd4ff5 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x620f36fb __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62323d09 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x624da8eb fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x62561327 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x62608794 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62cfd921 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x62fd0204 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x63373a0b bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x6338bb58 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x635c5752 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x637ff329 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x63925db0 cgroup_rstat_updated +EXPORT_SYMBOL_GPL vmlinux 0x63c4b5bc sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x63d2d48f gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x63e8d825 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x63f6c62f crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x640ab48f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x641d5354 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x643d2207 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x643eea81 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x644204a7 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x6461e065 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x64642046 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64b384ab blk_mq_sched_request_inserted +EXPORT_SYMBOL_GPL vmlinux 0x64ddcd8a sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x64f2d19c gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x64faf25c vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x64ffbba9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x652fc4fc lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x65493d4f bus_register +EXPORT_SYMBOL_GPL vmlinux 0x657c4290 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x659e63f8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x65a0a9ac dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x65ada773 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x65c19215 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e95a92 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6620c1b5 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6642a7f6 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x66573d76 fuse_kill_sb_anon +EXPORT_SYMBOL_GPL vmlinux 0x666b755a __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66a5511b unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x66a6c061 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x66b9f020 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x66c5772b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x66d756f4 fork_usermode_blob +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66ecddee cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x66ef5452 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6738171a iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x67500efb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x67609cc2 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x67650980 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x6769d94f pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6774b08d fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6780d7a7 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67820709 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x6791f57b xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6792e25a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67bc39cc iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f59db2 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6833dd4b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x683d832e udp6_lib_lookup_skb +EXPORT_SYMBOL_GPL vmlinux 0x68421d30 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x685c87f7 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x687b6791 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x68847277 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x688adc1e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68b5fc96 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x68ca99ca kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x68df74a9 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x68fbbeee __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x690d93bd blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6915d173 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693e1dc7 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6958ae23 dax_get_by_host +EXPORT_SYMBOL_GPL vmlinux 0x6968ed69 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x696c1344 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6980fc92 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x698331d5 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x698e7e26 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x69966649 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x69a4a16e metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x69b25d32 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x69bd0db6 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x69d88d99 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e8bf84 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x69ecde41 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x6a008077 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x6a05125a strp_done +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a23f721 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6a284439 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6a44bc0d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a52327a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a884477 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6aaa5c5f crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x6abbc521 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x6abd9ed0 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x6abf7903 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6aca7237 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6acd72a6 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6ad54d86 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6ad56fcb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x6aeee4f1 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b03dfd7 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x6b201cfc wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2c0063 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6b2e9675 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b335e23 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6b4e3e52 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6b51c53d ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6b6d12e3 device_connection_add +EXPORT_SYMBOL_GPL vmlinux 0x6b7f9e96 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x6b8806a6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6bb1ecd7 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6bbe1b8c blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x6bca2475 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bef86b5 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x6bfe8331 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6c189514 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x6c28c728 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x6c39d885 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x6c3c0c55 flow_indr_del_block_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c799989 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x6c9aba58 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cbcb0e7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6ccb8704 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x6d16b49c security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6d1e9896 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d39c700 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x6d4f11e3 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d79ae1e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8fccb1 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d926522 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x6d998347 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee2a0 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x6db19d81 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6e16af5f crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6e39ac06 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7e38f6 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x6e986c5b debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6eb9cd24 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efbafb0 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f22a8c5 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6f243916 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x6f313477 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6f319a77 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x6f369853 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6f3e93b6 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x6f421d01 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6f542e40 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x6f55fb9d kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6f56b65b gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x6f7b50d4 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fc8ef43 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0x6feb8590 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6fee3945 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x6ff0b66c sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffab783 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7028c591 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x70790a59 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x707cc121 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x70a02872 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x70b27447 sock_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70bf251c crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70dd3afa kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x70e42aef list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x70f1dea5 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711628da locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x713e51d2 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x7155f748 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x715feb0b pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x717f6c72 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x719e0e44 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x71a9bddc tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x71ee4b2d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x72003861 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x720c9b84 net_dm_hw_report +EXPORT_SYMBOL_GPL vmlinux 0x72332746 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7236122c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x72532b14 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x726539a0 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x7273843f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727efd19 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x728738c9 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x729b4f8b l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x72a25fc5 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x72b13948 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x72c1aeeb __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x72c46ed3 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x72cdf3bf get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x72f98e63 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x72ffe70c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7323ea26 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x735b5e7c sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x73669b18 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x737c5286 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x738bca8d devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7399aa23 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x73a9476c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x73cab1d1 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x73d0d6bc iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x73d62343 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ecb2f6 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x73f6adbf gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x740ede1c crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x741e1929 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x742fe2f3 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x74314ebc sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x743283d8 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x7438a5c4 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x74476da1 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x74483b99 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x745929da pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x7472e0be page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x74770c82 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x747ea0e1 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x748b7dc4 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x7496f5c8 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74ce1a51 crypto_stats_ablkcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x74cea103 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x74e65c35 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ecc5e0 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x74fae883 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x74fc9df4 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x751a5378 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x751d1d72 probe_user_write +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x755f553d cio_resume +EXPORT_SYMBOL_GPL vmlinux 0x7574cdc3 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x757ffe0e blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x75d25e7e __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x75d35e25 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x75e8c504 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x75eabe85 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x75efab41 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x75f75c6a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x75fc0e7f tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x7618ee60 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x762395ad netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x763bfc38 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x764fb8dd tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x76593792 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x769c2e5c blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x76b68057 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x76d95631 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x76ec6a86 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x772896dc blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77347b13 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x777a99f0 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x77ca08a5 xsk_reuseq_prepare +EXPORT_SYMBOL_GPL vmlinux 0x77d8a091 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x77e246d7 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fa6823 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x780aa097 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x783effae shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x78463d5a __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x784bfe44 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x785625b6 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786dc9b1 ptep_test_and_clear_uc +EXPORT_SYMBOL_GPL vmlinux 0x78a9ab30 cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0x78ba10b3 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x78f69d4d sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7902168c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x790bb072 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x790e0c5e sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7915e729 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x791a5fc0 virtqueue_get_buf_ctx +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 0x795bf3d9 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x7981376a dma_resv_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x79a2c85e sock_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x79b0b971 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x79bca3d1 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e357aa __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x7a0f3a31 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7a13ed8c cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x7a2c466f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x7a7dcd9f xas_find +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a91d8a4 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7ab92826 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ac86d24 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7ad26d45 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7aff0c84 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7b03c394 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7b0b75cb xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7b17780f pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x7b18f72e crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x7b23664c lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b31c029 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7b4b65ec rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b603d39 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9ef9ec skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7bc86115 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7becf5fc bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7bf29af7 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7bfdcd81 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7c315dfb setfl +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c523c50 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c72c9b4 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x7c75b3c4 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c7f5094 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7ca57491 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x7cc624e1 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd3cabc component_add +EXPORT_SYMBOL_GPL vmlinux 0x7cda0c99 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf8608b sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7d228d3a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7d406638 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7d6153cb __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7d648652 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7d81f3ed fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb2718 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7dddb631 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7de612b6 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7df7c9ec gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0x7e0a1aaf generic_xdp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7e48036b devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7e4f3f31 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7e6e1539 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x7ea19cc2 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7eb9bb25 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7ebb8cb5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7ed831ee gpiochip_set_nested_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7eea7db1 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x7ef8ac1d crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7ef9a06d sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f93a301 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7fa3e59d sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fb9c2a5 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fdead2b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x7ff10724 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805954fb devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8086c26b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809d4e33 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x80b109d4 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x80b53a3e irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c7364c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x80d0428c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x81319a38 pci_epf_match_device +EXPORT_SYMBOL_GPL vmlinux 0x81555ed5 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x815bd6c7 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81bde44f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x81cf4001 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x81d7c5b7 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x81e8f8ca register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x81f7926a debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x8207df9b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8215fe39 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x821d2ad5 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x82200eae sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x822118c4 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x82228d70 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x8237af1c freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8267b105 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x826bd7b8 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x826d2dfb get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x829654bb __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x82b9d4bf pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x82c0f325 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d7ae7f blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x831140f0 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8317eb21 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8348e4f0 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x83616cff nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839f55d6 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x83ac558f crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x83d079f5 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x83d60a75 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841a8e08 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x8423139d tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x846499e7 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x847bf942 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x847e7c77 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x84cc0e4a kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x84d32e0f __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x84dc3f3d inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x84ea7fc3 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850ddfa8 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8516c647 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8523749d platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x8527f161 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8531d0b3 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x8541ae77 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x855786cc unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x857b02ac pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x85831eda skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x859a5dbf gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0x85a49dc7 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x85ac54ed d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x85b38978 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x85bcf9a7 __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x85e48f59 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86246a96 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x862a803f mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x863bbe7b blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x86471944 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x8665a836 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x8674a009 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86897177 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8698a503 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier +EXPORT_SYMBOL_GPL vmlinux 0x86ba71ce iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86ed9f63 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8703a18a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x870d756f gmap_pmdp_idte_global +EXPORT_SYMBOL_GPL vmlinux 0x8723ac1d fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x872d6b97 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x87430894 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x875992e4 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x876fd466 pcie_has_flr +EXPORT_SYMBOL_GPL vmlinux 0x8782e8ef kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x87c3f88c fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x88587540 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x885e0b9b crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x885fce1e device_add +EXPORT_SYMBOL_GPL vmlinux 0x887f177c list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x888eb4f0 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x88dabbd9 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x88db03e1 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x88ec4aad sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89473fed crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895770df bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x89697f18 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x896b5025 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x89ae5c59 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x89eebb78 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x89ffc25c __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x8a16d44a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a1a27cb crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8a1eb583 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8a59b3a1 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8a93c561 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8accaeef find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8ad9969e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x8ae57396 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ae9d5ae fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8aeaa907 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8b1641fd xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x8b31d581 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x8b43f39e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x8b4d28da appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b5119a3 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x8b572ca8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8b9988e7 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8baa6df5 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x8bb7db26 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x8bc8379a subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8bd87155 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x8bdcf3bd gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c211c77 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x8c45a5c7 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c5a112c register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8c5f51da devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x8c71a8b3 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x8c782a53 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x8ca2693d sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x8cadc05d debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8cd78da7 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x8cdf6767 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x8cf6e761 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8d211c90 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d7910cb do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d9a9265 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8da09511 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x8db293db class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8db93ad7 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x8dbeae6d rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8dd7afe5 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8dd7f01d badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x8de7c769 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x8e0e1767 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x8e353c02 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8e4a6658 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x8e5676a1 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x8e5d0eae irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8e66479e raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8e73d043 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8e833a60 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8e8f24d9 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x8e910ccd gmap_create +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8ea87a48 md_start +EXPORT_SYMBOL_GPL vmlinux 0x8eaa7bd3 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x8eb7a6bc pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef4e7e0 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4353 crypto_has_skcipher2 +EXPORT_SYMBOL_GPL vmlinux 0x8f3fb50d to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f890e85 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x8fe09fd0 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x8fe7c4e5 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8ff05ac9 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x8ffb6fa6 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x900fc347 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904899fc bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x904b25ca __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x90547105 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906a282d tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x9081d27c __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9085d7ec ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x9095f42f net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9096c914 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x90a1c2bc proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x90a9d16e tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x90abf1eb kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x90b62b02 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x912b240e kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x91320455 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x913e1a39 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0x91469f9b inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x915be868 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x915f9ff3 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x91779f26 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x918d304d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x91a55068 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x91c509d2 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x91eb518d klist_init +EXPORT_SYMBOL_GPL vmlinux 0x92255793 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9233c3e6 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x92352981 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9270e8f7 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x9275732a __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92a36428 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x92b50d58 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92fb7332 __percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x930c9d6f devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93170790 blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x931e34dd serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x93550a3d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x93725986 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x937b8e0f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x93805df1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x938feef4 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x93922111 get_compat_bpf_fprog +EXPORT_SYMBOL_GPL vmlinux 0x93abce3b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x93b29857 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x93bfa193 gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x93d61b49 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x93e82d5a mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f2f96f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9441d1b6 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x947fb32b kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x948d691a gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x949328cb kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x94943717 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x94b0d8a0 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x94c05045 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x94c3fc71 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9507f958 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9508f4d0 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x950c092e pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953db174 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954aaa82 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956d0d23 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x95729277 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95bddaae report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x95bfd828 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x95c3aeea trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x95ca0221 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x95d2ed83 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x95d85e1b sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x95ebf841 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x95edcd34 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x95f9cd9b sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9622b828 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9678a373 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x967c714e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9686b2ff bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x968ffd61 tty_kopen +EXPORT_SYMBOL_GPL vmlinux 0x9690982a __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x96be5d94 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x96e6cbc6 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x96e8b38c tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x96f6ab65 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x96fad282 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x97124f9f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9762cf01 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x978b6b5f inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x97910902 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9792d19e skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x97a6e82d xdp_attachment_flags_ok +EXPORT_SYMBOL_GPL vmlinux 0x97ac8bb3 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x97b7f36b sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x97bf564c devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e7f902 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x97f46f45 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9849aa87 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x984b4b3a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985545d7 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x987519c4 __generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x98780a59 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9885d12c devres_add +EXPORT_SYMBOL_GPL vmlinux 0x9897a110 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x98e5ede0 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x98f3033c virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x98f64a90 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x98f8dc6d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x991371d2 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x99295f51 iomap_file_dirty +EXPORT_SYMBOL_GPL vmlinux 0x99347728 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99672cc2 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998ceadf __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x999f2db3 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x99baf69d fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x99bf0465 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x99d414fa devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1904d7 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x9a62ceb8 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x9a7bd214 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x9a8fa03b __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ab50115 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x9aca169a iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9ae2da16 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af8cbd8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x9b00fb14 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x9b054078 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x9b21836d fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b491874 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9b4f6661 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5ba931 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9b658045 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9bc77923 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9be7f190 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c0079f3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9c3f4e7a security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c66a8ac __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x9c7bddf4 device_connection_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c851bd6 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9c87d368 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cdb2712 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9cfd12a6 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x9d06e990 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d5fd9b5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x9d849ff7 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x9d8fcf6f strp_init +EXPORT_SYMBOL_GPL vmlinux 0x9da649cd irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9ddb0331 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x9e08d700 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e1cb518 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x9e1d83fc replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x9e45dffa blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e529068 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9e650260 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x9e6cf5c5 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x9e759164 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eee0316 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9f05762b gpiochip_irqchip_add_key +EXPORT_SYMBOL_GPL vmlinux 0x9f264826 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x9f36457e __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x9f4e91e5 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x9f6d78fc kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x9f91a4ec pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9f9d2118 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x9fb1fbac follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x9fc269b3 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd284f5 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x9fd3ca27 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x9fe1ae6f ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fee4c4c handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fff7c2d device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa02133eb inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa045e453 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa04d25f7 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05502a9 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa0643b8a kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa0697703 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa06c4508 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e6b4fb kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa0f9bac6 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xa10752e7 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa11136c9 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xa1253498 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa1357e0a bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xa1651e93 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xa17162a4 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa18714f0 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa191b309 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xa199d756 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa1c15b1a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xa1c2d6fc device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1dfd64b skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xa1f5af6b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2143802 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xa215db6f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xa2177d67 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xa2243f8f ping_err +EXPORT_SYMBOL_GPL vmlinux 0xa23368a6 xsk_reuseq_swap +EXPORT_SYMBOL_GPL vmlinux 0xa23bc15b flow_indr_block_call +EXPORT_SYMBOL_GPL vmlinux 0xa2448ad5 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa2559ff6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa25a3453 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa2644276 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27e41bf scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa2ca6149 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xa2d31bef fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa2da7e46 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa31534d4 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xa321ef31 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xa3363f01 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3433965 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa3659b5f __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa376d145 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0xa38172ca gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa387fde4 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa3916a2a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3cd7ba5 flow_indr_add_block_cb +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fb1c06 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xa40401b9 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa40a225c event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41935ec pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa423c0bf dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa42a2d7a bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xa42bd5ee device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462b42f call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa4ba64eb crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa4d18a06 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa4e9635b md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa4f44546 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xa50c3645 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xa5144044 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa54b7403 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable +EXPORT_SYMBOL_GPL vmlinux 0xa57d3420 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5c8645b css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0xa5e5bd41 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6230d99 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa6242763 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xa64738fb fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xa65d26c3 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xa6824f3f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa687184d security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa6cef08f gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6d02814 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eebacf inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa6f5592d __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6f963ee ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa701528c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70a866f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa7202d04 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa72948af kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa7712876 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa7829df9 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa7e4a812 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xa824ec10 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8391ab1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa83eb0f0 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0xa83f641e ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa84a48e5 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8651ffb pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa8a07ded gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa8a3ff0f gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0xa8b92a4e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa8bd0cef module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa8f07c27 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa8fabfd3 probe_user_read +EXPORT_SYMBOL_GPL vmlinux 0xa915b518 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xa916827e transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa95072e3 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xa95ca257 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa97404da dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xa97d12c2 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xa98b9a0d crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9bcccb0 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa9c63a2a device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa9c6b1ca bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa9cab735 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ede6dc validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xa9fe652e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa144d9a fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa386ad7 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xaa4bceeb get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xaa54ce59 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaa5fed5b lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac22aa5 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xaac59fba virtio_config_disable +EXPORT_SYMBOL_GPL vmlinux 0xaadc755b iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xaafb1b40 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xab04b61a sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xab094587 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xab148d83 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xab4b5be2 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab85f0f1 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xab90e09f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck +EXPORT_SYMBOL_GPL vmlinux 0xab98f582 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabac10b7 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xabb0a81f __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe0ad84 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xabe4195b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xabe520c4 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xac1223a7 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xac168248 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xac3fd2eb simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xac42d4e6 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xac6c39b8 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac70ac50 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xac78a8fd switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xac92bbf0 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xacb293c2 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xacb40969 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad230e75 blk_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xad2c28a5 iommu_dev_has_feature +EXPORT_SYMBOL_GPL vmlinux 0xad3674d9 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad3ff94d debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xad488eef dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xad4ee02c strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad771b2a device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xad89953c device_create +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadf9699b pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xae0592ef ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xae0fd55c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae16f1a4 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xae2d4d20 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3a3c6d proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xae66ca48 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae9cbc43 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xaeb6e0dc lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xaebc534f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xaec07e9a pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xaec1565f device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xaed120d3 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf0ac8ff gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xaf19ee9b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf2f62fc devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf5ac151 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf750783 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf772d14 __fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaf886f31 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0xaf905c8c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xaf9b83ed pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xafce8f05 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xafde81fc debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb00e5b4c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb03e941f component_del +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb090563e perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xb0b64b0f crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bada13 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xb0e63cb5 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1391f46 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14517f4 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xb147e8a4 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xb14ebdd3 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17f5c3f ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xb19f152e klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb1d09b8c devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xb1d3df38 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb1dabc1e unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb20832e1 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb20a5965 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xb20ca5dd pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xb2241202 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb2375a2b iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27e2df8 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb28d2d88 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xb28fe71a iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xb29de0bf iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb2aaebc4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xb2c223ea devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xb2cc2776 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xb2f818fb inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xb2ff3ad0 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30a3283 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xb31560f9 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb35997d3 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb37014f2 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb3769fce device_attach +EXPORT_SYMBOL_GPL vmlinux 0xb37fa039 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0xb3ac8533 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb3b47213 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb3cd7164 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb3d24740 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb3da7624 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb3dc5fb4 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xb3dd1ee1 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb407c1df percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44969b4 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xb44ab713 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4544e8d mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xb464f1b8 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb498d60c devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bb1c35 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb51ee0c3 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb5365e30 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb5418704 cio_clear +EXPORT_SYMBOL_GPL vmlinux 0xb565b844 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5711140 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xb587cd34 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb59b3db3 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xb59e91f3 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xb5a95b4b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5d484d2 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xb602ddba crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb606f799 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb638f70c chsc_pnso_brinfo +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb680770b vtime_account_irq_enter +EXPORT_SYMBOL_GPL vmlinux 0xb681f5a1 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xb6841118 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xb6b7050f serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xb6c9aa5f net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb6cfdc0e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6d5fcd1 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xb7060586 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xb70f6185 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb78efe2e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d60c97 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xb7f3c222 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb80477f7 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xb80506b4 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb80bc8ab fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xb8212341 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xb83b70f2 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb8738d22 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8ad9b9f platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xb8c03573 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb90395d4 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xb909c382 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9153905 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb9398972 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block +EXPORT_SYMBOL_GPL vmlinux 0xb964e050 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xb982f858 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xb98a055f sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xb98ed629 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9a6e621 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xb9b385b5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xb9b644ec debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cbf4e9 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e95cec blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xba91a769 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbab0205e nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xbab69bb7 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafd258a gmap_put +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1768c6 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb563d39 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xbb7e1544 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xbb8fc167 get_device +EXPORT_SYMBOL_GPL vmlinux 0xbbadecae __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xbbae0f3b put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbeb8bb1 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xbbfda03e platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc3072c4 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc332aab gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xbc3ce034 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xbc46b3d1 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xbc629283 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7fd285 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0xbc912236 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xbca911f1 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdcd0ef open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd0ed301 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xbd2f211b blk_mq_request_completed +EXPORT_SYMBOL_GPL vmlinux 0xbd322cff dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd44dc52 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbd52f8bd fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd7c2517 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xbd89446f skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xbd8ca232 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xbda3bbf2 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xbdbf7c5c pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xbdee944f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xbdf3b1a0 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe0b6596 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xbe275192 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6b5392 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xbe825c73 user_read +EXPORT_SYMBOL_GPL vmlinux 0xbea13128 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb63389 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xbec11fab blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xbee45c54 input_class +EXPORT_SYMBOL_GPL vmlinux 0xbee84a15 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbee98239 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf413737 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbf46781b ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xbf4e88f4 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xbf4fba07 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf6fccf7 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf713c46 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xbf7848c0 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xbf86e2e5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xbf880837 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbfbd0924 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xbfbe91b8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffd1341 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00346ee dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc0124c0c gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xc014db2f fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xc016612b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc0262b67 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0979435 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c74cac blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc10650d9 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc109f95e pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc12c87c1 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc181cf6f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc18b8905 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc18d9f09 pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0xc1bb77e2 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc1bcb475 chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0xc1de0982 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc1ffc0fb __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xc209688d use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc219f6a1 gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2308c13 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2831b32 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc285ccd6 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc289d150 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc29b5f71 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2acd3da __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc2b240cb crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2cd6bfd dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xc2d11618 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc3134639 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc324aad4 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc344302a dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xc373c9f2 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc376b972 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3882649 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xc39de5b0 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3faac52 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc40f4e07 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc414ec68 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc43ff696 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc46186b5 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0xc48398dd init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4cf720c fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f9b564 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xc4fe1f2b user_update +EXPORT_SYMBOL_GPL vmlinux 0xc52a789f skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xc55fa615 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc592a154 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xc599e5ef __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc5aeef96 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc5b466df tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc5d4e805 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xc5e23d29 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xc5ff31d9 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6275c21 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc64c78d1 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xc6544a61 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc654d3f4 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc667fb8b __set_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a27775 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xc6aac687 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc6d5b45a srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc6d8acf9 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc6fc7308 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xc71e3e78 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc73247bd bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xc757c65c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xc75c37c2 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc7700da9 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7d17062 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc7d6545e __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fbbe60 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc81033b4 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc84c4023 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xc852d152 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xc87e19f4 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc8a6e09b inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xc8ac8da5 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc91deb14 gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0xc92aa640 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc92e7ba5 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc93461f9 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc9514772 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc96d0d2d bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xc97cc9df devm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9ac35ea anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc9cb2463 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca007aa5 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xca18a5d6 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xca3c942c sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8485ca vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xcaaed304 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xcacc4654 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xcacd88a0 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcace0237 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcaceafc3 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcad59eca sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xcae138a8 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xcae39177 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcaf28e99 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xcb35a86d sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xcb52b1fc sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xcb5a258e rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0xcb618930 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcb6b4301 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb9d82a7 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xcba437fe debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xcbbf3028 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xcbcf7838 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xcbe22041 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc15180b iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xcc1b07b2 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcc1f2956 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc51be04 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc52fdfe fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xcc61af5a crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9947fe crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xccaab6a6 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xccb802d0 xas_split +EXPORT_SYMBOL_GPL vmlinux 0xccbc5550 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xccc8a426 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xccc9a4ab nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xcccd1eb8 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xccdb7107 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xcd073fa4 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd165d7d skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcd19fa8e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd26223e gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd8dff9e transport_class_register +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 0xcd9e0255 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddad129 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xcde5410d dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xcde8a4c3 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcdff92db get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xce523017 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8c95d3 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xcea21aad gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xceca9aed alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xcedd7924 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xceeac0e2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xcf0e0ba0 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf124aac fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xcf136532 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2cb9b3 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7c9771 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xcfb41af9 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfe29be8 __flow_indr_block_cb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfecac09 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xcff4cb8d zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd0396fb3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd05548a1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xd05ec347 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd082f2e2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd083be63 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xd0aff12f key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d47acb mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0de9756 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd0ec7adc ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd0f4d3b2 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xd0fd73bf cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd10b042e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd12c2fe4 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd13ce367 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd16ed59e blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xd1901df7 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd1b8461d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd1caa991 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e78819 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xd1ea6fec put_device +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fc0f1a badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xd205faf1 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2196888 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd22d47df __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xd2397537 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a8f2b irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xd2c6df95 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd2c8ae77 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2cba0f3 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd2e751fe fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2ebb3e7 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd2f087aa kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xd2f60ef1 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xd32182b5 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd325bce3 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ab51fd rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd3ae7756 fw_fallback_config +EXPORT_SYMBOL_GPL vmlinux 0xd3af6f77 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xd3cdfeb8 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd3cf769c kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xd3d1e282 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd3efb072 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xd3f72195 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0xd3f8f3f4 page_poisoning_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40924fb serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xd40a772e sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4212522 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd4356f26 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xd4811244 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xd4840ff2 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4e89c1d tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd521194c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xd540c5ae yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd5569b6c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd573010b kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xd57fe43a dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xd5836417 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5992d3c fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd5ad357f __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd5ad7dca scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd5bb6af6 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d3d523 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xd60f1973 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd6142950 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xd6216c0c bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xd62f21b4 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd633923d devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xd64b49d4 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd7007dcd devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xd706db10 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd72a532b crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xd7402a36 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd784b414 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xd7ba8838 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd7d6d931 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xd7dcfb64 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd7e131e9 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xd7f420d5 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd7f6b10e fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xd8152cdc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd82017c6 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xd82c40ad trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8594147 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd87c7b39 direct_make_request +EXPORT_SYMBOL_GPL vmlinux 0xd892654e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd89b8ec5 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xd8a57434 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xd8c1f157 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xd8d04910 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d37e6f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd8fb99b6 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9071733 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xd91d1d48 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd99cfd68 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xd9a7b82a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd9eafca1 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fcd483 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda4e2b42 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda82795f ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xda990548 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xdaa41966 devm_fwnode_get_index_gpiod_from_child +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdaef602c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xdaf16ba9 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafcdc3a ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xdb242cb6 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xdb42c441 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xdb4e3514 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb6bab57 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xdb8134f9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba5a74a gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0xdbb793c5 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xdbdb78d5 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xdbdcf9e3 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf29726 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfcdff4 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xdc178957 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xdc203a02 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xdc258938 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdc43d2a7 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xdc607a2d gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0xdc6e371c elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcd5a4a3 md_run +EXPORT_SYMBOL_GPL vmlinux 0xdce2dfe9 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xdce968b0 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0a184e irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdd13d972 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdd1c4f34 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xdd1d5f33 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xdd2d267d iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4f2eb8 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xdd5e152f gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd7f0765 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xdd85690b bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xdd8585d7 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xdd8823e5 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xdda4bd8c exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xddb79fa8 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddce4438 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde4f869 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xde17cb19 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xde55f513 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xde6e7e10 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8c69b0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xde9b2ec1 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdeb32765 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xdebae4d6 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf14037f srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xdf1e31fe xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xdf223247 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf234ab0 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf35edff dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xdf360ea1 sock_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xdf9208c0 alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xdfa462c9 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xdfa6bdda sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xdfbdf134 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdfe47d26 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdfe5532a kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdfeb1211 kvm_s390_gisc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdff67e51 split_page +EXPORT_SYMBOL_GPL vmlinux 0xdff6ede2 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe08a7b2c vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe0a6565d devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe0ba55ba balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe0c3c56c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0d36c44 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe0d89148 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0xe0dc33bc gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe0fde3b3 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xe10d5d7a __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe12fbb1e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe13c3d7d platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe154906f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe16b49dc nl_table +EXPORT_SYMBOL_GPL vmlinux 0xe16fd58b vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe1765aad sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e3236 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xe1a9bfb8 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe1fad568 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xe232c537 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23bf007 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe25e40be pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe2829f07 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0xe28822a9 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe298d257 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c01331 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe2c833f6 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2d001d7 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2d2675f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xe2d90225 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe2e56446 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xe2f46f02 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe31e6dbc devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xe33b06a9 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe34502fb devlink_flash_update_end_notify +EXPORT_SYMBOL_GPL vmlinux 0xe34b3eda dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xe35ff444 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3af9b59 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xe3bd6fde perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe3e8b18d seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4233013 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe42755b7 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe433bdc8 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe44a0b80 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe465a264 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe46991d7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xe46ad0bf perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xe46c3e6b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xe4736f1e __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe47571bc unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xe4874aef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49d5ee8 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xe4a5b3f4 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe4af19c3 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4e7d412 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe4f0cbfb gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe5131707 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe53abc1a blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xe56b0e7c dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58e1237 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe58e3c80 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe59b9aff device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe5b596a8 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xe5dac837 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xe5e52bf8 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xe5e763e9 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6075745 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe622c397 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xe63c19a1 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe654e7f3 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xe670400b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xe68a60ff ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe68b6632 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe6a1cc4c klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe6a2b843 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe6b76cee tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe718ca7f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xe71d1d7d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xe732eacb iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77639e7 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xe77bff12 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe783f29b blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xe78f33df pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a68d24 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe7a96217 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xe7ad1efa crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe7aff6eb scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe7b6dc71 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7d389d8 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7f10b2c iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xe7f45ca9 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8140111 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xe8146e2c pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xe81a5991 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0xe81ddad6 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0xe82746a7 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe82e5d55 vtime_account_system +EXPORT_SYMBOL_GPL vmlinux 0xe8522a1f fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xe86a1fa3 css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe86f92b7 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xe8715325 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe872c408 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xe885f5ad iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xe886d08d blk_mq_sched_free_hctx_data +EXPORT_SYMBOL_GPL vmlinux 0xe891601f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe8b40f33 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe8c4568f crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xe8d79b25 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe9030882 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe96a86b2 xdp_attachment_query +EXPORT_SYMBOL_GPL vmlinux 0xe978cdf5 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xe9a2e3b6 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe9c18b27 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe9cd027e inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xe9cef150 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe9e6880a mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe9f3609c crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xea04fd39 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1ab40d crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xea1bb8ea cio_commit_config +EXPORT_SYMBOL_GPL vmlinux 0xea360aed pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xea79d1a4 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xead77419 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeb445849 tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0xeb7418d7 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb89d356 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xeb8e61d0 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xeb907eeb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xebb97636 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xebc35f33 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xebc4eb49 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xebce1b04 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xebd5da7b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xebd75e66 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xec0a8c2d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec2e2fc4 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec5efc85 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xec660cd3 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec6b5e8e md_stop +EXPORT_SYMBOL_GPL vmlinux 0xec7e7ee0 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xecbf38b8 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xecc7c54c kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xecd40461 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xece597f5 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xececead3 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xecf6fad6 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xed06804d blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xed2243af ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xed2e7790 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed2e9e66 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0xed79227d hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xed814ec1 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedac1477 skcipher_walk_aead +EXPORT_SYMBOL_GPL vmlinux 0xedc78488 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xedcdb4d9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xee1a8cea sock_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xee2c30a8 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xee312250 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee5488c9 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xee6b6bce gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee77c6ec iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xee7d0f10 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xee96bbde subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xee999c53 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xeeb951c3 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xeed8e921 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeeef6eb3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeef2e890 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef369b17 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xef443398 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef51fa61 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xef53902b rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef640f4b iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef7810a2 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xef843872 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xef8cc6ce tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa3c8c8 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xefaf4024 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xefb6c06e devlink_flash_update_begin_notify +EXPORT_SYMBOL_GPL vmlinux 0xefc8ab71 bio_disassociate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xefe43f78 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xf000abf6 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf007d7e6 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf00d8213 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xf034b282 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf0548d76 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf06351ce fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xf079389c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xf0a40e75 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xf0af0e23 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xf0ffeb3b platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf1028535 mddev_create_wb_pool +EXPORT_SYMBOL_GPL vmlinux 0xf106602a l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf1078fc3 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xf117de52 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf11dc0a6 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xf1361941 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0xf146ba96 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf15f7cf7 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xf1601f00 cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0xf1725638 arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18740a4 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0xf18a0a57 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf18ba31a kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c7b03b devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf1c93e66 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xf1cc40e2 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xf1dc5d97 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf1e7f687 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf235f350 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xf2875d68 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xf2980b20 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2d369a5 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xf2dfc46a cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0xf2f16fcb fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xf3119bf6 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf33ecf76 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3986a5a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf3ac8bf5 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf3de962f device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xf3ef7ce0 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf3ffef36 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xf41d8653 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf43c4790 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xf441c895 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf46f0a4d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf4776668 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf4858db9 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf495e301 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c043dd xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf4c178d2 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xf4dec89c fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf521c0cc cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0xf5399e6d skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xf5464ea7 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf55606d6 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf558c1ce pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf568bc71 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf59f05ab ftrace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ba3177 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xf5c3c6ed fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xf5ce6001 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf5d7eb5a register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0xf5e77136 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fdaac9 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf6449ec8 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xf65461f8 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dcb564 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf6e9b168 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6fb6b3f serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf71b2ef1 netdev_walk_all_lower_dev +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 0xf76e735d param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xf7792aa1 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7cba240 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xf7e5bf87 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf7e8b288 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf7ea3ff0 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf806d2ad md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xf80a3284 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf81940b0 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xf81a5663 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xf81fa6a7 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf835d586 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0xf84b05a0 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xf8511c8e dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store +EXPORT_SYMBOL_GPL vmlinux 0xf880cf6b sk_psock_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf898e1f2 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf89bdf8b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xf8b2d748 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf8be840b hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xf8c8f477 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8c9e029 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf8db0608 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf8fcafbd dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf91ab2ed __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94e700c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xf9527942 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96d7448 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xf97255e1 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xf992a93f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf9992a34 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xf9a0021f __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a626ef __devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xf9b5d98d crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf9d9038c devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xfa088ce2 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa3c6e17 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xfa56f7a9 gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0xfa600a92 housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa719d80 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xfa8a1679 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfa8baa04 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfad8e662 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaed59ff call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xfb0b6c5a iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xfb2ec57e tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb53794e gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xfb573fac wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xfb60aea9 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xfb6a4d31 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd0e45f iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xfbe97a14 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xfbfed43e __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc11748f devlink_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc32661e crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xfc4ab262 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfc5d22d9 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xfc70c5d8 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0xfc8d0dfa crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xfc8db919 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcdaa885 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xfcebb235 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xfceeba4e freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xfd3806fb __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd7e09e6 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfdaaa217 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xfdba0851 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xfdbad1f0 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfdbd1de6 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfde7d0b3 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfdf42395 sock_zerocopy_put +EXPORT_SYMBOL_GPL vmlinux 0xfdf637af dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfe024040 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe094b2e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xfe0f0804 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xfe144a8e crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xfe18bc69 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xfe31c6a4 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe391806 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe3b11eb tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe500f64 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfe55093b bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xfe5cd9e6 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xfe6682ee device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xfe69325f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xfe7e7a93 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfe950c9f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe95eaac device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea97b18 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xfeb044c8 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfeb610fe mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xfec2a859 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff0213bd crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff13d8c6 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff60754b pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xff6f7f3d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xff89ad5d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xff96ccf5 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffaf2117 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xffcdc4a9 tod_clock_base only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/s390x/generic.compiler +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/s390x/generic.modules +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/s390x/generic.modules @@ -0,0 +1,963 @@ +8021q +842 +842_compress +842_decompress +9p +9pnet +9pnet_rdma +9pnet_virtio +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_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 +ansi_cprng +anubis +appldata_mem +appldata_net_sum +appldata_os +aquantia +arc4 +arp_tables +arpt_mangle +arptable_filter +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at803x +aufs +auth_rpcgss +authenc +authencesn +bcache +bcm-phy-lib +bcm7xxx +bcm87xx +bfq +binfmt_misc +blocklayoutdriver +blowfish_common +blowfish_generic +bochs-drm +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 +chsc_sch +cicada +cifs +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cmac +coda +cordic +cortina +crc-itu-t +crc32-vx_s390 +crc32_generic +crc4 +crc64 +crc7 +crc8 +cryptd +crypto_engine +crypto_user +ctcm +cuse +dasd_diag_mod +dasd_eckd_mod +dasd_fba_mod +dasd_mod +davicom +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcssblk +deflate +des_generic +des_s390 +device_dax +diag +diag288_wdt +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-era +dm-flakey +dm-integrity +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 +dp83tc811 +drbd +drm +drm_kms_helper +drm_panel_orientation_quirks +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 +echainiv +ecrdsa_generic +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +eql +erofs +esp4 +esp4_offload +esp6 +esp6_offload +essiv +et1011c +failover +faulty +fb_sys_fops +fcoe +fcrypt +fixed_phy +fou +fou6 +fpga-mgr +fs3270 +fscache +fsm +garp +geneve +genwqe_card +gfs2 +ghash_s390 +gpio-bt8xx +gpio-generic +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-rdc321x +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 +khazad +kheaders +kmem +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +lcs +libarc4 +libceph +libcrc32c +libdes +libfc +libfcoe +libiscsi +libiscsi_tcp +libphy +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 +memory-notifier-error-inject +mena21_wdt +mfd-core +michael_mic +micrel +microchip +microchip_t1 +mip6 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlxfw +mlxsw_core +mlxsw_pci +mlxsw_spectrum +mlxsw_switchib +mlxsw_switchx2 +monreader +monwriter +mpls_gso +mpls_iptunnel +mpls_router +mpt3sas +mrp +mscc +msdos +national +nb8800 +nbd +net_failover +netconsole +netdevsim +netiucv +netlink_diag +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_arp +nf_log_bridge +nf_log_common +nf_log_ipv4 +nf_log_ipv6 +nf_log_netdev +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_tables_set +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_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 +null_blk +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ofb +openvswitch +oprofile +orangefs +overlay +p8022 +paes_s390 +parman +pcbc +pci-pf-stub +pci-stub +pcrypt +pkcs7_test_key +pkcs8_key_parser +pkey +pktgen +pnet +poly1305_generic +pps_core +pretimeout_panic +prng +psample +psnap +ptp +qdio +qeth +qeth_l2 +qeth_l3 +qsemi +quota_tree +quota_v1 +quota_v2 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +raw_diag +rbd +rcuperf +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +rmd128 +rmd160 +rmd256 +rmd320 +rockchip +rpcrdma +rpcsec_gss_krb5 +rxrpc +s390-trng +salsa20_generic +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_fq +sch_fq_codel +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 +seed +serial_core +serpent_generic +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 +sm3_generic +sm4_generic +smc +smc_diag +smsc +smsgiucv_app +softdog +spl +st +st_drv +ste10Xp +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stp +streebog_generic +sunrpc +switchtec +syscopyarea +sysfillrect +sysimgblt +tap +tape +tape_34xx +tape_3590 +tape_class +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tcm_fc +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tea +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +teranetics +test_blackhole_dev +test_bpf +tgr192 +tipc +tls +torture +tpm_key_parser +tpm_vtpm_proxy +trace-printk +ts_bm +ts_fsm +ts_kmp +ttm +ttynull +tunnel4 +tunnel6 +twofish_common +twofish_generic +uPD60620 +uartlite +udf +udp_diag +udp_tunnel +uio +unix_diag +veth +vfio +vfio-pci +vfio_ap +vfio_ccw +vfio_iommu_type1 +vfio_mdev +vfio_virqfd +vhost +vhost_net +vhost_scsi +vhost_vsock +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +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 +vsockmon +vx855 +vxlan +wireguard +wp512 +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xilinx_gmii2rgmii +xlnx_vcu +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 +zlib_deflate +zlua +znvpair +zram +zstd +zstd_compress +zunicode only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian.master/abi/5.4.0-138.155/s390x/generic.retpoline +++ linux-azure-5.4.0/debian.master/abi/5.4.0-138.155/s390x/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/canonical-revoked-certs.pem +++ linux-azure-5.4.0/debian/canonical-revoked-certs.pem @@ -0,0 +1,688 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Apr 12 11:39:08 2012 GMT + Not After : Apr 11 11:39:08 2042 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c9:5f:9b:62:8f:0b:b0:64:82:ac:be:c9:e2:62: + e3:4b:d2:9f:1e:8a:d5:61:1a:2b:5d:38:f4:b7:ce: + b9:9a:b8:43:b8:43:97:77:ab:4f:7f:0c:70:46:0b: + fc:7f:6d:c6:6d:ea:80:5e:01:d2:b7:66:1e:87:de: + 0d:6d:d0:41:97:a8:a5:af:0c:63:4f:f7:7c:c2:52: + cc:a0:31:a9:bb:89:5d:99:1e:46:6f:55:73:b9:76: + 69:ec:d7:c1:fc:21:d6:c6:07:e7:4f:bd:22:de:e4: + a8:5b:2d:db:95:34:19:97:d6:28:4b:21:4c:ca:bb: + 1d:79:a6:17:7f:5a:f9:67:e6:5c:78:45:3d:10:6d: + b0:17:59:26:11:c5:57:e3:7f:4e:82:ba:f6:2c:4e: + c8:37:4d:ff:85:15:84:47:e0:ed:3b:7c:7f:bc:af: + e9:01:05:a7:0c:6f:c3:e9:8d:a3:ce:be:a6:e3:cd: + 3c:b5:58:2c:9e:c2:03:1c:60:22:37:39:ff:41:02: + c1:29:a4:65:51:ff:33:34:aa:42:15:f9:95:78:fc: + 2d:f5:da:8a:85:7c:82:9d:fb:37:2c:6b:a5:a8:df: + 7c:55:0b:80:2e:3c:b0:63:e1:cd:38:48:89:e8:14: + 06:0b:82:bc:fd:d4:07:68:1b:0f:3e:d9:15:dd:94: + 11:1b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 61:48:2A:A2:83:0D:0A:B2:AD:5A:F1:0B:72:50:DA:90:33:DD:CE:F0 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 8f:8a:a1:06:1f:29:b7:0a:4a:d5:c5:fd:81:ab:25:ea:c0:7d: + e2:fc:6a:96:a0:79:93:67:ee:05:0e:25:12:25:e4:5a:f6:aa: + 1a:f1:12:f3:05:8d:87:5e:f1:5a:5c:cb:8d:23:73:65:1d:15: + b9:de:22:6b:d6:49:67:c9:a3:c6:d7:62:4e:5c:b5:f9:03:83: + 40:81:dc:87:9c:3c:3f:1c:0d:51:9f:94:65:0a:84:48:67:e4: + a2:f8:a6:4a:f0:e7:cd:cd:bd:94:e3:09:d2:5d:2d:16:1b:05: + 15:0b:cb:44:b4:3e:61:42:22:c4:2a:5c:4e:c5:1d:a3:e2:e0: + 52:b2:eb:f4:8b:2b:dc:38:39:5d:fb:88:a1:56:65:5f:2b:4f: + 26:ff:06:78:10:12:eb:8c:5d:32:e3:c6:45:af:25:9b:a0:ff: + 8e:ef:47:09:a3:e9:8b:37:92:92:69:76:7e:34:3b:92:05:67: + 4e:b0:25:ed:bc:5e:5f:8f:b4:d6:ca:40:ff:e4:e2:31:23:0c: + 85:25:ae:0c:55:01:ec:e5:47:5e:df:5b:bc:14:33:e3:c6:f5: + 18:b6:d9:f7:dd:b3:b4:a1:31:d3:5a:5c:5d:7d:3e:bf:0a:e4: + e4:e8:b4:59:7d:3b:b4:8c:a3:1b:b5:20:a3:b9:3e:84:6f:8c: + 21:00:c3:39 +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIBATANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xMjA0MTIxMTM5MDhaFw00MjA0MTEx +MTM5MDhaMH8xCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEXMBUG +A1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MSswKQYD +VQQDDCJDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyV+bYo8LsGSCrL7J4mLjS9KfHorVYRor +XTj0t865mrhDuEOXd6tPfwxwRgv8f23GbeqAXgHSt2Yeh94NbdBBl6ilrwxjT/d8 +wlLMoDGpu4ldmR5Gb1VzuXZp7NfB/CHWxgfnT70i3uSoWy3blTQZl9YoSyFMyrsd +eaYXf1r5Z+ZceEU9EG2wF1kmEcVX439Ogrr2LE7IN03/hRWER+DtO3x/vK/pAQWn +DG/D6Y2jzr6m4808tVgsnsIDHGAiNzn/QQLBKaRlUf8zNKpCFfmVePwt9dqKhXyC +nfs3LGulqN98VQuALjywY+HNOEiJ6BQGC4K8/dQHaBsPPtkV3ZQRGwIDAQABo4Gg +MIGdMAwGA1UdEwEB/wQCMAAwHwYDVR0lBBgwFgYIKwYBBQUHAwMGCisGAQQBgjcK +AwYwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRl +MB0GA1UdDgQWBBRhSCqigw0Ksq1a8QtyUNqQM93O8DAfBgNVHSMEGDAWgBStkZkL +wiqx9RcEjCO2ZVomjjRaYzANBgkqhkiG9w0BAQsFAAOCAQEAj4qhBh8ptwpK1cX9 +gasl6sB94vxqlqB5k2fuBQ4lEiXkWvaqGvES8wWNh17xWlzLjSNzZR0Vud4ia9ZJ +Z8mjxtdiTly1+QODQIHch5w8PxwNUZ+UZQqESGfkovimSvDnzc29lOMJ0l0tFhsF +FQvLRLQ+YUIixCpcTsUdo+LgUrLr9Isr3Dg5XfuIoVZlXytPJv8GeBAS64xdMuPG +Ra8lm6D/ju9HCaPpizeSkml2fjQ7kgVnTrAl7bxeX4+01spA/+TiMSMMhSWuDFUB +7OVHXt9bvBQz48b1GLbZ992ztKEx01pcXX0+vwrk5Oi0WX07tIyjG7Ugo7k+hG+M +IQDDOQ== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 2 (0x2) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 26 21:52:11 2017 GMT + Not After : Sep 25 21:52:11 2047 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2017) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ef:9f:fa:9f:19:3a:9d:38:23:91:cc:c4:f9:42: + e0:f8:54:12:82:dc:97:2c:d6:5b:c1:35:eb:ff:4a: + 74:06:b5:9d:32:aa:7b:f3:fc:31:5a:34:3e:a1:a4: + 44:db:7b:6d:16:af:35:76:e0:9b:99:ad:21:11:c6: + 12:4b:ae:24:8f:bb:d3:b2:00:fe:c5:1d:9b:3a:1a: + 4a:6c:ca:fa:16:37:85:22:f9:ff:22:fc:40:e0:58: + 35:c1:39:27:b4:c6:42:1a:96:d8:a5:c5:95:2e:f7: + c5:1e:21:6e:36:84:f7:a9:a1:e1:f1:03:08:96:65: + 71:f8:eb:83:cf:82:f7:9a:44:58:72:00:14:39:29: + 4b:e9:78:2f:65:20:b3:80:76:3b:ba:0d:2d:46:f6: + 37:05:e7:05:fe:bd:6c:c7:a2:65:b5:06:6e:07:24: + 99:a1:c1:cf:e1:0e:5e:49:41:71:17:a8:50:e7:38: + 99:e5:6e:b6:db:9f:63:db:56:f4:9c:7d:89:f6:d2: + 03:6c:99:83:e0:99:23:39:36:bd:cb:b5:26:7c:7d: + b0:c6:fe:82:7c:52:ed:f9:2c:8f:79:71:3d:a9:2f: + b5:aa:7e:77:a0:fd:69:f9:97:10:a8:b2:c6:7d:88: + 9e:a2:19:bd:31:b8:02:2d:34:4d:9d:98:60:82:ad: + 04:ff + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 24:2A:DE:75:AC:4A:15:E5:0D:50:C8:4B:0D:45:FF:3E:AE:70:7A:03 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 00:b2:b7:57:b5:2b:5d:16:d3:04:88:6a:d7:77:d5:0d:89:f1: + d2:6e:11:d1:8e:f5:62:05:c4:6a:57:df:eb:d2:86:68:f2:fd: + a7:37:11:3c:f4:ce:5d:fe:32:5f:31:a2:6b:3a:da:28:c2:88: + fa:7f:70:b5:25:99:ea:27:9a:56:6a:9d:b2:0f:14:99:e2:b7: + c6:39:1e:8e:a7:76:31:d9:ed:c5:05:8d:48:ae:1b:68:18:14: + 51:a1:7d:f6:c7:df:cb:9d:eb:a4:3b:0b:ff:c2:07:c5:42:bc: + 0d:b2:11:fa:37:17:2b:1c:b5:84:48:2d:f9:31:4a:57:49:8e: + 61:a6:82:11:06:4c:34:ea:9c:2a:47:4d:eb:e0:26:af:da:d2: + c2:08:a0:37:35:7b:73:71:de:0b:c4:ba:c8:34:de:20:04:03: + 6f:46:26:0d:b9:91:02:5b:71:76:cc:45:e4:08:d0:a6:dd:a4: + 50:d3:d9:04:91:2b:d9:5c:34:88:fc:c2:37:fd:c6:d4:3e:57: + f7:6b:ba:7b:d7:02:7a:84:0c:c8:c1:19:cc:bc:fa:52:d5:7f: + b3:35:c4:53:5d:70:0a:f6:44:60:8d:a9:11:7a:1b:7d:ae:7b: + 20:5a:4c:8d:44:f6:c1:a9:61:cb:dc:cb:90:37:d5:28:24:73: + 87:d0:e0:d8 +-----BEGIN CERTIFICATE----- +MIIEKDCCAxCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xNzA5MjYyMTUyMTFaFw00NzA5MjUy +MTUyMTFaMIGGMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDEyMDAG +A1UEAwwpQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoMjAxNykw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvn/qfGTqdOCORzMT5QuD4 +VBKC3Jcs1lvBNev/SnQGtZ0yqnvz/DFaND6hpETbe20WrzV24JuZrSERxhJLriSP +u9OyAP7FHZs6GkpsyvoWN4Ui+f8i/EDgWDXBOSe0xkIaltilxZUu98UeIW42hPep +oeHxAwiWZXH464PPgveaRFhyABQ5KUvpeC9lILOAdju6DS1G9jcF5wX+vWzHomW1 +Bm4HJJmhwc/hDl5JQXEXqFDnOJnlbrbbn2PbVvScfYn20gNsmYPgmSM5Nr3LtSZ8 +fbDG/oJ8Uu35LI95cT2pL7Wqfneg/Wn5lxCossZ9iJ6iGb0xuAItNE2dmGCCrQT/ +AgMBAAGjgaAwgZ0wDAYDVR0TAQH/BAIwADAfBgNVHSUEGDAWBggrBgEFBQcDAwYK +KwYBBAGCNwoDBjAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2Vy +dGlmaWNhdGUwHQYDVR0OBBYEFCQq3nWsShXlDVDISw1F/z6ucHoDMB8GA1UdIwQY +MBaAFK2RmQvCKrH1FwSMI7ZlWiaONFpjMA0GCSqGSIb3DQEBCwUAA4IBAQAAsrdX +tStdFtMEiGrXd9UNifHSbhHRjvViBcRqV9/r0oZo8v2nNxE89M5d/jJfMaJrOtoo +woj6f3C1JZnqJ5pWap2yDxSZ4rfGOR6Op3Yx2e3FBY1IrhtoGBRRoX32x9/Lneuk +Owv/wgfFQrwNshH6NxcrHLWESC35MUpXSY5hpoIRBkw06pwqR03r4Cav2tLCCKA3 +NXtzcd4LxLrINN4gBANvRiYNuZECW3F2zEXkCNCm3aRQ09kEkSvZXDSI/MI3/cbU +Plf3a7p71wJ6hAzIwRnMvPpS1X+zNcRTXXAK9kRgjakReht9rnsgWkyNRPbBqWHL +3MuQN9UoJHOH0ODY +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 3 (0x3) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Oct 26 18:31:14 2018 GMT + Not After : Oct 24 18:31:14 2048 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (ESM 2018) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bf:6a:e5:6d:55:7a:ec:7a:11:37:45:9c:4c:8f: + 6b:2d:56:d3:74:2b:32:ac:84:2d:ba:cb:cc:ec:8d: + 92:22:69:48:a5:d4:f6:75:11:66:2f:cb:b2:fd:9e: + 56:ab:e6:f1:52:8e:75:3e:50:bd:25:b3:50:fc:ef: + 3d:76:f3:3f:7f:03:f6:e2:a1:25:69:5c:14:98:54: + bd:11:bf:e9:a5:ac:46:91:4b:1d:de:b7:18:2b:c8: + 22:83:15:a7:4a:00:8d:9d:e4:c0:da:f7:41:02:fd: + 9f:5f:79:93:56:cc:86:e1:b5:e0:39:0e:3c:a2:5b: + fe:c0:56:f0:92:50:5a:2b:67:67:93:56:d7:7a:75: + 99:6a:25:b4:63:a8:5f:69:7e:3a:49:58:2a:a7:80: + f6:5a:b4:be:b2:be:a8:8c:45:41:c9:f2:fc:76:a8: + 65:ef:99:29:0d:c9:9c:54:6b:0a:f0:4a:0e:61:0d: + ed:99:32:af:12:e2:12:7b:9f:7b:ec:05:c4:e0:b6: + d5:c3:71:28:ae:dd:0b:ba:97:ad:68:0b:76:e9:bf: + e7:01:7e:64:54:39:23:85:36:c8:9d:dd:27:a1:ff: + df:46:36:14:7e:cb:cc:a1:cd:49:0b:6d:c2:0c:45: + 99:56:58:7c:87:0d:59:9a:dc:4a:39:3b:1d:d9:15: + 2e:b5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 36:51:88:C1:D3:74:D6:B0:7C:3C:8F:24:0F:8E:F7:22:43:3D:6A:8B + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 4c:0f:cd:77:60:b4:6f:53:87:f3:3c:4f:e6:81:5f:a7:1c:cc: + 60:29:b6:34:6c:4d:08:9b:e2:d2:bd:f6:17:1a:62:79:b8:17: + bc:a2:60:59:fd:03:51:c3:b7:6b:de:73:b3:48:95:f5:0b:aa: + b6:3c:b4:34:dc:1d:0b:c4:97:62:87:e7:48:d5:8f:c9:ea:e8: + 91:8f:2a:40:cd:b7:b3:ee:b2:98:9e:fb:37:31:29:e6:8e:2f: + 0a:39:99:1e:c6:aa:b8:05:62:85:d3:a8:3e:60:38:98:0f:f0: + fe:c7:ab:01:a5:6a:a5:7f:70:a6:26:94:76:23:2f:08:89:74: + 97:c2:2a:ca:22:3e:7a:ea:22:22:08:07:f4:bb:f6:bc:69:9c: + 4e:44:33:e2:8e:70:17:b0:9b:cb:33:94:66:6d:ff:9a:7d:e9: + 50:b2:e8:90:14:e4:2b:91:cb:a0:c5:2e:0e:cf:19:ef:44:ef: + 84:f0:bd:57:9e:26:c2:63:3d:df:fc:a1:84:de:5c:d7:5f:3b: + fb:94:61:f0:93:89:1f:cf:c3:b2:d1:90:97:35:7d:b9:8a:ad: + e6:05:f0:e8:3b:a1:7c:af:2b:c4:af:18:33:2e:5e:87:db:9d: + 80:b5:04:fd:00:d0:60:ab:ff:85:77:0f:cb:47:22:c9:b2:85: + a8:48:16:e2 +-----BEGIN CERTIFICATE----- +MIIELDCCAxSgAwIBAgIBAzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xODEwMjYxODMxMTRaFw00ODEwMjQx +ODMxMTRaMIGKMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDE2MDQG +A1UEAwwtQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoRVNNIDIw +MTgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2rlbVV67HoRN0Wc +TI9rLVbTdCsyrIQtusvM7I2SImlIpdT2dRFmL8uy/Z5Wq+bxUo51PlC9JbNQ/O89 +dvM/fwP24qElaVwUmFS9Eb/ppaxGkUsd3rcYK8gigxWnSgCNneTA2vdBAv2fX3mT +VsyG4bXgOQ48olv+wFbwklBaK2dnk1bXenWZaiW0Y6hfaX46SVgqp4D2WrS+sr6o +jEVByfL8dqhl75kpDcmcVGsK8EoOYQ3tmTKvEuISe5977AXE4LbVw3Eort0Lupet +aAt26b/nAX5kVDkjhTbInd0nof/fRjYUfsvMoc1JC23CDEWZVlh8hw1ZmtxKOTsd +2RUutQIDAQABo4GgMIGdMAwGA1UdEwEB/wQCMAAwHwYDVR0lBBgwFgYIKwYBBQUH +AwMGCisGAQQBgjcKAwYwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVk +IENlcnRpZmljYXRlMB0GA1UdDgQWBBQ2UYjB03TWsHw8jyQPjvciQz1qizAfBgNV +HSMEGDAWgBStkZkLwiqx9RcEjCO2ZVomjjRaYzANBgkqhkiG9w0BAQsFAAOCAQEA +TA/Nd2C0b1OH8zxP5oFfpxzMYCm2NGxNCJvi0r32FxpiebgXvKJgWf0DUcO3a95z +s0iV9Quqtjy0NNwdC8SXYofnSNWPyerokY8qQM23s+6ymJ77NzEp5o4vCjmZHsaq +uAVihdOoPmA4mA/w/serAaVqpX9wpiaUdiMvCIl0l8IqyiI+euoiIggH9Lv2vGmc +TkQz4o5wF7CbyzOUZm3/mn3pULLokBTkK5HLoMUuDs8Z70TvhPC9V54mwmM93/yh +hN5c1187+5Rh8JOJH8/DstGQlzV9uYqt5gXw6DuhfK8rxK8YMy5eh9udgLUE/QDQ +YKv/hXcPy0ciybKFqEgW4g== +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4 (0x4) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 18 16:10:17 2019 GMT + Not After : Sep 16 16:10:17 2049 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2019) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e6:47:d8:75:e5:87:59:26:87:83:7d:5b:7a:b8: + 58:3d:7c:ef:36:f8:a0:7a:b7:14:56:58:7d:01:f1: + 1c:3b:8c:e6:5b:03:77:7d:a0:ed:47:0a:45:e6:75: + 5c:de:95:38:0d:38:fa:41:79:89:56:31:87:e7:a3: + 9a:36:70:b6:cf:24:2f:99:26:89:08:39:0e:14:c3: + 35:be:02:8b:52:e1:8e:7b:0c:a6:9d:78:ff:01:60: + d7:f5:c3:d5:f0:5e:dc:e4:23:09:59:72:93:d3:b5: + 22:af:7c:cd:e0:84:0f:af:11:2d:bc:c6:72:42:af: + ea:67:63:c4:10:41:78:02:80:62:0d:43:74:b4:1c: + ed:50:d7:94:f1:b0:bb:f9:57:80:e4:69:0f:83:4b: + a2:e6:2c:4a:9a:e1:7d:7c:62:19:29:27:97:1f:4c: + f1:85:f0:39:f5:31:9f:3a:39:0e:d4:4d:07:3a:40: + 55:4b:a6:6c:9d:04:89:51:2d:7c:b0:ef:40:b5:42: + 29:16:cc:65:73:38:62:21:f6:e3:2c:17:50:9d:74: + 34:4e:df:7c:4a:33:a4:bb:40:cf:d5:e5:ed:05:07: + cd:4c:f9:af:7f:a6:5c:b9:f7:c5:16:45:4e:44:40: + d7:85:32:de:ac:e5:75:ad:9b:d7:c0:26:33:1f:77: + a5:37 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + C0:74:6F:D6:C5:DA:3A:E8:27:86:46:51:AD:66:AE:47:FE:24:B3:E8 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + aa:12:6c:d1:9d:6a:da:f0:ec:7c:17:46:3b:57:b8:d6:76:5f: + 24:e6:06:a2:0a:55:1f:2f:d3:5e:8f:de:cf:02:f2:ff:e0:dd: + d3:c7:bd:75:59:aa:cd:34:f3:28:80:73:cc:28:69:e7:a2:70: + 88:a2:c7:dc:66:f0:92:0e:ff:64:bf:30:04:54:01:1b:96:ad: + 15:c5:61:fd:32:61:d7:5e:b5:ba:91:fd:31:fc:6b:15:df:ee: + 22:d9:e4:1f:f3:cc:8b:0c:9f:f5:e8:f7:e2:62:3f:40:52:c9: + f0:f1:1c:63:fc:6c:90:e1:5b:74:03:b9:df:d1:3e:a8:ec:db: + 2b:6e:83:6f:9f:7f:ba:b4:79:fc:3d:e7:12:2f:4a:e7:17:8c: + 2b:77:a5:90:74:3c:bd:cf:75:83:0d:1a:95:d5:56:ef:07:9b: + a6:b3:31:e3:8c:97:ce:68:11:b5:7b:25:03:72:1c:ea:67:e9: + 7c:3e:73:c7:7c:3e:fc:f5:ae:8a:b2:07:0d:15:6a:66:09:d7: + 23:b9:5d:80:7a:26:d6:b6:22:30:aa:84:af:c0:42:e9:75:c3: + 59:ab:a3:84:87:6b:0c:b7:ab:4e:92:69:ae:2c:82:6f:ab:01: + 24:ab:ff:78:6d:59:85:c2:3b:23:c0:bd:0d:d8:6e:3a:29:82: + e1:c4:5f:db +-----BEGIN CERTIFICATE----- +MIIEKDCCAxCgAwIBAgIBBDANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xOTA5MTgxNjEwMTdaFw00OTA5MTYx +NjEwMTdaMIGGMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDEyMDAG +A1UEAwwpQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoMjAxOSkw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDmR9h15YdZJoeDfVt6uFg9 +fO82+KB6txRWWH0B8Rw7jOZbA3d9oO1HCkXmdVzelTgNOPpBeYlWMYfno5o2cLbP +JC+ZJokIOQ4UwzW+AotS4Y57DKadeP8BYNf1w9XwXtzkIwlZcpPTtSKvfM3ghA+v +ES28xnJCr+pnY8QQQXgCgGINQ3S0HO1Q15TxsLv5V4DkaQ+DS6LmLEqa4X18Yhkp +J5cfTPGF8Dn1MZ86OQ7UTQc6QFVLpmydBIlRLXyw70C1QikWzGVzOGIh9uMsF1Cd +dDRO33xKM6S7QM/V5e0FB81M+a9/ply598UWRU5EQNeFMt6s5XWtm9fAJjMfd6U3 +AgMBAAGjgaAwgZ0wDAYDVR0TAQH/BAIwADAfBgNVHSUEGDAWBggrBgEFBQcDAwYK +KwYBBAGCNwoDBjAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2Vy +dGlmaWNhdGUwHQYDVR0OBBYEFMB0b9bF2jroJ4ZGUa1mrkf+JLPoMB8GA1UdIwQY +MBaAFK2RmQvCKrH1FwSMI7ZlWiaONFpjMA0GCSqGSIb3DQEBCwUAA4IBAQCqEmzR +nWra8Ox8F0Y7V7jWdl8k5gaiClUfL9Nej97PAvL/4N3Tx711WarNNPMogHPMKGnn +onCIosfcZvCSDv9kvzAEVAEblq0VxWH9MmHXXrW6kf0x/GsV3+4i2eQf88yLDJ/1 +6PfiYj9AUsnw8Rxj/GyQ4Vt0A7nf0T6o7NsrboNvn3+6tHn8PecSL0rnF4wrd6WQ +dDy9z3WDDRqV1VbvB5umszHjjJfOaBG1eyUDchzqZ+l8PnPHfD789a6KsgcNFWpm +CdcjuV2AeibWtiIwqoSvwELpdcNZq6OEh2sMt6tOkmmuLIJvqwEkq/94bVmFwjsj +wL0N2G46KYLhxF/b +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6 (0x6) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:29:32 2021 GMT + Not After : Sep 22 19:29:32 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v1) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:aa:b8:34:5b:b6:ae:44:bf:41:e1:78:11:b9:7a: + c8:88:b3:b0:26:50:10:9c:98:d1:f3:98:9f:23:50: + 64:f6:39:dd:50:3a:23:44:53:65:fc:f3:9f:f5:a5: + 8b:ae:8b:df:47:9f:e9:d5:a0:92:19:f1:21:ea:cc: + 59:3a:74:df:45:71:bc:de:64:15:a5:f6:db:ca:71: + fa:19:d4:44:0d:12:ec:47:3a:43:e2:f2:dd:8b:fe: + 0d:7b:dc:4d:db:53:06:22:61:e5:8b:35:49:b6:33: + c4:0a:69:5f:5b:81:09:84:6b:42:33:18:09:9d:a0: + 35:f7:9c:1e:de:6e:de:90:69:1a:e8:32:e4:49:ad: + c3:31:e9:f8:4a:a2:28:1d:db:0d:29:b6:48:0a:44: + 93:86:41:62:8f:73:97:60:10:8a:74:46:66:55:fe: + a0:95:35:9e:ef:9f:af:11:fa:5b:a3:7c:c2:35:64: + 11:67:28:1e:14:0a:7d:68:61:9c:cd:c7:46:39:30: + 31:79:94:56:b3:45:16:9a:b5:77:66:fe:41:43:0f: + 00:48:6e:99:dd:0c:d4:47:2c:86:8c:50:04:61:20: + dd:aa:8e:73:4f:21:b4:ee:09:4d:d3:40:01:d0:f2: + a7:5b:7d:05:3d:c1:e7:65:26:aa:8c:9a:58:5a:7c: + 6d:6f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + A8:D5:4B:BB:38:25:CF:B9:4F:A1:3C:9F:8A:59:4A:19:5C:10:7B:8D + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 24:25:25:7e:01:a5:c8:3d:54:8c:1b:05:73:d1:06:d8:db:d4: + 3a:71:d5:19:9d:97:1c:85:3c:ca:38:5a:0c:25:25:39:1a:67: + bc:6c:9d:98:6c:f3:7d:5f:b7:40:f9:73:a0:f5:7b:40:a8:66: + a5:f1:53:b1:78:80:24:3f:19:50:2f:02:09:ec:a1:8a:e6:0d: + df:c4:ae:24:9e:69:0d:5c:dc:44:4c:38:3a:53:4e:4b:a1:4b: + 92:9f:43:a4:9d:1e:76:33:18:1b:bf:62:e5:f5:bc:93:3c:4e: + 21:d5:5b:20:69:11:28:c1:c5:93:b5:8e:96:1d:1b:ca:72:79: + 24:de:67:2a:50:9d:ce:8b:41:dd:3e:82:dd:a5:04:75:54:fb: + 35:70:98:87:b4:f3:ea:41:23:23:80:0e:99:d7:03:16:ee:7e: + 11:e2:c8:29:ab:73:c5:6d:5c:a8:2f:32:03:9f:8e:66:d6:cb: + 54:84:55:75:ab:9a:dd:95:fd:05:1e:11:85:37:1e:63:d2:f4: + 7f:34:64:32:a1:63:91:91:50:39:14:1a:ea:54:78:e6:0d:04: + 23:c7:83:51:c5:25:27:07:6c:f8:65:b7:da:95:89:76:83:cc: + f3:7e:06:74:d3:6c:ef:e9:17:de:29:1e:ab:5c:d7:ec:df:f1: + 98:b8:e9:66 +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBBjANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTI5MzJaGA8yMDUxMDky +MjE5MjkzMlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYxKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKq4NFu2rkS/QeF4 +Ebl6yIizsCZQEJyY0fOYnyNQZPY53VA6I0RTZfzzn/Wli66L30ef6dWgkhnxIerM +WTp030VxvN5kFaX228px+hnURA0S7Ec6Q+Ly3Yv+DXvcTdtTBiJh5Ys1SbYzxApp +X1uBCYRrQjMYCZ2gNfecHt5u3pBpGugy5EmtwzHp+EqiKB3bDSm2SApEk4ZBYo9z +l2AQinRGZlX+oJU1nu+frxH6W6N8wjVkEWcoHhQKfWhhnM3HRjkwMXmUVrNFFpq1 +d2b+QUMPAEhumd0M1EcshoxQBGEg3aqOc08htO4JTdNAAdDyp1t9BT3B52Umqoya +WFp8bW8CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUqNVLuzglz7lPoTyfillKGVwQe40wHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +ACQlJX4Bpcg9VIwbBXPRBtjb1Dpx1RmdlxyFPMo4WgwlJTkaZ7xsnZhs831ft0D5 +c6D1e0CoZqXxU7F4gCQ/GVAvAgnsoYrmDd/EriSeaQ1c3ERMODpTTkuhS5KfQ6Sd +HnYzGBu/YuX1vJM8TiHVWyBpESjBxZO1jpYdG8pyeSTeZypQnc6LQd0+gt2lBHVU ++zVwmIe08+pBIyOADpnXAxbufhHiyCmrc8VtXKgvMgOfjmbWy1SEVXWrmt2V/QUe +EYU3HmPS9H80ZDKhY5GRUDkUGupUeOYNBCPHg1HFJScHbPhlt9qViXaDzPN+BnTT +bO/pF94pHqtc1+zf8Zi46WY= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 7 (0x7) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:29:42 2021 GMT + Not After : Sep 22 19:29:42 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v2) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ba:06:8b:ee:58:b7:8b:49:7b:53:7a:d1:df:02: + e3:f2:d8:b0:8c:03:5c:f4:2d:0b:d8:18:3b:23:fa: + 68:b0:e8:e9:9d:dc:a2:eb:5e:d3:06:a9:28:d4:9f: + 14:b6:1e:1c:1d:ef:69:0e:7f:44:f2:cc:4a:f1:b1: + d0:71:30:6a:50:1e:b0:d3:f8:a4:19:d0:4a:f1:e3: + eb:7a:e5:57:4c:a1:fb:d1:87:b9:48:e0:55:37:52: + f9:de:99:2e:95:85:36:ce:d3:1d:67:2f:14:cb:7f: + 05:82:75:21:b6:aa:a5:14:ac:da:4a:f4:fe:fa:5c: + 33:49:3d:6f:de:fd:9d:75:ba:e2:c4:02:38:b5:69: + f5:ff:a8:67:4b:3a:e0:34:f6:3b:07:03:a5:7e:59: + 6f:3a:d2:28:a4:2f:25:ac:d8:a9:1f:59:52:5d:24: + 36:58:51:b5:f0:12:a8:d3:78:56:57:b1:e0:a9:df: + 14:05:65:7c:b5:a5:00:f0:88:39:14:44:18:85:2d: + 0c:28:69:7b:b9:b4:1c:47:6f:43:66:4c:22:ad:f7: + f6:19:75:e1:14:2c:0d:33:3f:c1:3f:fc:73:56:b2: + 68:05:b5:92:03:9b:65:6b:81:80:92:35:03:9b:66: + 68:58:c5:66:11:b6:8c:7f:05:09:9a:45:a6:0e:5e: + 5f:bf + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 4C:F0:46:89:2D:6F:D3:C9:A5:B0:3F:98:D8:45:F9:08:51:DC:6A:8C + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 93:9d:49:7d:9f:3e:3e:27:79:97:d9:c2:fc:0b:f7:30:b7:f4: + 78:b2:c9:e4:5e:42:d3:27:26:70:cf:88:96:d1:f2:ea:a0:75: + 7e:3c:f6:b7:d2:e7:95:30:e3:a6:67:a7:ee:b9:53:8f:fd:b2: + cb:db:e1:98:32:be:98:79:09:46:c6:63:6a:57:87:4d:b2:26: + 46:f6:34:5e:18:75:ca:82:80:8e:33:c2:1d:c7:76:d7:14:57: + ef:2e:0e:9e:58:5c:81:8e:ed:53:2c:07:46:0a:8a:fc:2f:f5: + b2:c8:58:f5:fa:fa:bb:f9:7d:47:13:39:f0:f2:1c:15:9c:75: + 90:40:bd:08:04:b3:6a:de:c2:cd:34:21:7e:ba:31:48:bc:a1: + 23:bc:ee:93:b2:62:96:27:30:86:c2:d4:f7:b4:e6:3c:71:47: + 37:84:ff:3d:0c:1e:ec:f3:0e:da:6b:dc:64:7a:b8:c0:7e:45: + 13:09:bf:02:b3:b7:5b:6d:09:2d:6a:4e:0b:93:94:29:4c:a6: + c3:c7:05:fa:69:08:04:53:3c:4c:64:c0:7e:89:00:91:1b:a6: + c2:d7:ea:c4:db:86:38:fe:66:03:85:7b:fc:39:24:99:4c:2a: + 3e:10:8b:91:c3:6e:20:9d:0c:ee:51:70:b5:98:58:f3:5c:ac: + 16:98:7b:ce +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTI5NDJaGA8yMDUxMDky +MjE5Mjk0MlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYyKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALoGi+5Yt4tJe1N6 +0d8C4/LYsIwDXPQtC9gYOyP6aLDo6Z3coute0wapKNSfFLYeHB3vaQ5/RPLMSvGx +0HEwalAesNP4pBnQSvHj63rlV0yh+9GHuUjgVTdS+d6ZLpWFNs7THWcvFMt/BYJ1 +IbaqpRSs2kr0/vpcM0k9b979nXW64sQCOLVp9f+oZ0s64DT2OwcDpX5ZbzrSKKQv +JazYqR9ZUl0kNlhRtfASqNN4Vlex4KnfFAVlfLWlAPCIORREGIUtDChpe7m0HEdv +Q2ZMIq339hl14RQsDTM/wT/8c1ayaAW1kgObZWuBgJI1A5tmaFjFZhG2jH8FCZpF +pg5eX78CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUTPBGiS1v08mlsD+Y2EX5CFHcaowwHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +AJOdSX2fPj4neZfZwvwL9zC39HiyyeReQtMnJnDPiJbR8uqgdX489rfS55Uw46Zn +p+65U4/9ssvb4Zgyvph5CUbGY2pXh02yJkb2NF4YdcqCgI4zwh3HdtcUV+8uDp5Y +XIGO7VMsB0YKivwv9bLIWPX6+rv5fUcTOfDyHBWcdZBAvQgEs2rews00IX66MUi8 +oSO87pOyYpYnMIbC1Pe05jxxRzeE/z0MHuzzDtpr3GR6uMB+RRMJvwKzt1ttCS1q +TguTlClMpsPHBfppCARTPExkwH6JAJEbpsLX6sTbhjj+ZgOFe/w5JJlMKj4Qi5HD +biCdDO5RcLWYWPNcrBaYe84= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 8 (0x8) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:30:02 2021 GMT + Not After : Sep 22 19:30:02 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v3) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d6:29:96:87:ae:07:42:45:bb:65:09:b2:9b:de: + 5d:8e:78:61:10:d5:6d:ae:ae:26:08:6a:06:ec:4a: + dd:2b:e7:1a:a9:ad:78:e3:fc:cf:8f:d1:47:bd:1e: + 33:d8:7a:e3:66:9b:e9:73:c1:5f:42:e2:fe:bc:c3: + 41:f7:cd:d7:85:d7:42:c9:ea:31:e5:47:b1:93:5b: + 43:2b:07:51:b8:75:08:ad:0f:e7:0d:81:38:5a:21: + df:b1:43:5b:db:37:c5:ac:aa:14:3a:33:19:6a:26: + e0:05:fe:cd:41:31:af:5d:a8:ab:31:77:44:fc:da: + 00:e2:7a:44:33:c3:a7:ed:13:54:9f:19:5d:c9:98: + a2:3b:af:4d:0d:87:29:9c:90:9e:42:9e:9a:06:6a: + 70:27:c5:aa:f7:a2:f2:88:e0:b9:66:9a:72:a0:f6: + 61:7e:30:8f:14:9f:44:0d:dd:54:ae:47:c8:82:ba: + d2:b2:db:6f:24:c1:f4:0a:81:07:90:47:49:5f:57: + d6:3f:bf:2a:73:98:f2:f6:24:1a:74:03:d7:35:f0: + 42:d8:14:c5:94:27:5d:3c:49:0c:b0:f0:7a:61:1b: + d7:5a:e3:a3:40:57:e9:a4:07:ee:02:a3:32:27:94: + bb:f3:36:c5:5f:ef:d3:07:04:3a:80:4c:9c:0a:b7: + 88:9f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 10:04:37:BB:6D:E6:E4:69:B5:81:E6:1C:D6:6B:CE:3E:F4:ED:53:AF + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 3b:37:d6:a8:8d:cd:d2:df:13:35:ac:8c:92:d6:b0:ac:d1:38: + a8:00:97:47:59:b8:4a:84:8c:80:a5:1d:c7:29:bf:00:66:e5: + 10:40:26:2e:31:f5:e1:13:c0:1b:29:f3:0b:7e:2d:71:d8:db: + e1:32:8f:79:8e:e3:97:0c:40:a9:a0:12:c1:fc:c2:50:88:72: + 44:c5:bc:8b:45:6e:28:fd:d2:37:d6:db:17:cf:4e:61:33:08: + 5a:5d:08:94:73:44:e2:76:00:44:1b:b8:00:a1:86:00:64:8a: + f1:42:32:3c:28:11:67:7c:8b:aa:06:34:74:58:e8:b3:3a:36: + 8d:f6:04:5d:37:f5:66:52:c9:48:b0:a7:6f:34:09:dd:60:2a: + 86:b9:14:f1:09:f6:06:16:56:e0:51:b1:e8:75:7f:fa:37:dc: + e0:98:a7:69:ae:7b:1a:73:89:0d:06:67:cc:01:ef:80:31:45: + 9e:bb:03:2a:eb:89:70:d6:19:b2:c7:ce:bc:81:df:da:c8:6f: + a9:4b:2d:d7:a7:e1:af:c6:e8:fb:f0:61:c9:cd:d2:91:cd:8b: + c2:6c:ef:e0:b6:7f:f1:c4:81:f9:bb:76:9c:26:e3:fa:a1:a0: + cd:5e:05:de:ee:f9:1b:5b:50:0a:8b:0f:47:e3:90:32:ac:2a: + e7:65:02:80 +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBCDANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTMwMDJaGA8yMDUxMDky +MjE5MzAwMlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYzKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANYploeuB0JFu2UJ +spveXY54YRDVba6uJghqBuxK3SvnGqmteOP8z4/RR70eM9h642ab6XPBX0Li/rzD +QffN14XXQsnqMeVHsZNbQysHUbh1CK0P5w2BOFoh37FDW9s3xayqFDozGWom4AX+ +zUExr12oqzF3RPzaAOJ6RDPDp+0TVJ8ZXcmYojuvTQ2HKZyQnkKemgZqcCfFqvei +8ojguWaacqD2YX4wjxSfRA3dVK5HyIK60rLbbyTB9AqBB5BHSV9X1j+/KnOY8vYk +GnQD1zXwQtgUxZQnXTxJDLDwemEb11rjo0BX6aQH7gKjMieUu/M2xV/v0wcEOoBM +nAq3iJ8CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUEAQ3u23m5Gm1geYc1mvOPvTtU68wHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +ADs31qiNzdLfEzWsjJLWsKzROKgAl0dZuEqEjIClHccpvwBm5RBAJi4x9eETwBsp +8wt+LXHY2+Eyj3mO45cMQKmgEsH8wlCIckTFvItFbij90jfW2xfPTmEzCFpdCJRz +ROJ2AEQbuAChhgBkivFCMjwoEWd8i6oGNHRY6LM6No32BF039WZSyUiwp280Cd1g +Koa5FPEJ9gYWVuBRseh1f/o33OCYp2muexpziQ0GZ8wB74AxRZ67AyrriXDWGbLH +zryB39rIb6lLLden4a/G6PvwYcnN0pHNi8Js7+C2f/HEgfm7dpwm4/qhoM1eBd7u ++RtbUAqLD0fjkDKsKudlAoA= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 3 (0x3) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Mar 4 10:27:14 2020 GMT + Not After : Mar 3 10:27:14 2050 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b9:10:47:2e:75:5d:f3:10:23:bb:a0:75:d2:fa: + 02:2d:ff:22:df:c1:e6:cd:38:7c:36:0f:ae:74:15: + 6e:a5:34:52:2b:c3:a4:3a:60:d7:06:ee:1d:99:93: + ff:66:91:a3:18:52:2c:8c:58:e6:b4:2f:4b:c5:fb: + 83:e6:f3:19:bd:1b:ca:23:ec:97:1f:d8:f1:9a:f1: + 04:da:da:10:04:53:4b:ec:1d:b6:26:47:7c:bb:8f: + a7:0a:6e:2e:e8:91:e6:c4:bb:64:34:78:3c:fa:09: + 15:1c:8f:9e:eb:04:99:36:22:c6:8d:07:15:0f:b9: + 69:08:fa:ff:4b:45:bd:ba:2b:cd:01:0e:e7:01:23: + c9:e5:7a:39:3b:91:b0:45:3c:d5:77:ba:ca:f9:29: + 3d:11:3f:1c:6b:5b:8e:6c:4b:3f:c9:29:05:cb:59: + d6:b1:c1:c0:2d:56:88:70:27:fa:73:05:5c:c2:11: + d4:27:11:f7:0b:c2:d5:68:d3:1a:cd:ed:d0:e4:10: + ff:34:cb:b7:45:70:34:2c:23:53:b6:9c:30:70:b4: + 5c:d1:e2:64:18:82:8f:62:b1:5e:aa:0b:d4:89:f2: + 1c:53:c4:32:7d:ef:53:ee:9b:6e:02:ab:78:bd:25: + 67:8b:39:36:d8:84:3b:06:99:02:d6:75:73:4e:f2: + f6:b9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + C1:D5:7B:8F:6B:74:3F:23:EE:41:F4:F7:EE:29:2F:06:EE:CA:DF:B9 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 2d:b5:11:a8:d2:a0:af:81:a0:18:22:18:2c:08:d0:f4:63:e8: + 8f:9a:f4:f5:20:dd:eb:22:77:19:9a:1a:09:3d:7f:aa:7d:c9: + 81:bc:26:98:65:94:46:30:4b:c2:51:7c:f7:21:41:63:87:31: + fc:a4:c9:41:28:c7:2e:2a:2e:d8:a8:75:7a:72:77:3b:1b:9f: + 72:15:0d:0c:96:8d:8b:51:f3:ce:37:b6:ca:9f:ca:59:40:4a: + fc:73:7a:94:12:99:aa:c2:8d:52:ce:91:19:2e:b4:da:ff:e5: + 2c:67:74:d9:58:47:38:2f:61:88:c5:cf:a7:48:e1:08:ba:bc: + ec:d5:3a:47:d9:8c:dc:c3:bc:cb:98:2b:79:7a:02:46:ef:85: + 19:2f:03:4b:05:84:eb:56:98:5f:6d:cf:a5:8b:a2:b6:e5:50: + 51:7c:33:44:bd:7a:94:2e:0d:90:39:39:3e:62:60:ae:3a:e2: + f5:17:fa:f1:94:06:1d:ae:a3:f8:19:20:7f:4b:4c:07:c4:e6: + 2d:0d:e5:94:84:51:6d:6f:0f:c4:c6:79:1d:f0:e8:0e:23:9e: + fd:f9:46:2c:b9:ec:97:38:56:7e:b8:13:f6:d2:e1:8e:a5:93: + 02:7b:6e:dd:33:9a:bf:10:a8:1b:3d:fa:c4:f2:15:f0:27:73: + 26:a6:94:d1 +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBAzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMDAzMDQxMDI3MTRaGA8yMDUwMDMw +MzEwMjcxNFowgZIxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MT4w +PAYDVQQDDDVDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nIChVYnVu +dHUgQ29yZSAyMDE5KTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkQ +Ry51XfMQI7ugddL6Ai3/It/B5s04fDYPrnQVbqU0UivDpDpg1wbuHZmT/2aRoxhS +LIxY5rQvS8X7g+bzGb0byiPslx/Y8ZrxBNraEARTS+wdtiZHfLuPpwpuLuiR5sS7 +ZDR4PPoJFRyPnusEmTYixo0HFQ+5aQj6/0tFvborzQEO5wEjyeV6OTuRsEU81Xe6 +yvkpPRE/HGtbjmxLP8kpBctZ1rHBwC1WiHAn+nMFXMIR1CcR9wvC1WjTGs3t0OQQ +/zTLt0VwNCwjU7acMHC0XNHiZBiCj2KxXqoL1InyHFPEMn3vU+6bbgKreL0lZ4s5 +NtiEOwaZAtZ1c07y9rkCAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQY +MBYGCCsGAQUFBwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NM +IEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUwdV7j2t0PyPuQfT37ikv +Bu7K37kwHwYDVR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcN +AQELBQADggEBAC21EajSoK+BoBgiGCwI0PRj6I+a9PUg3esidxmaGgk9f6p9yYG8 +JphllEYwS8JRfPchQWOHMfykyUEoxy4qLtiodXpydzsbn3IVDQyWjYtR8843tsqf +yllASvxzepQSmarCjVLOkRkutNr/5SxndNlYRzgvYYjFz6dI4Qi6vOzVOkfZjNzD +vMuYK3l6AkbvhRkvA0sFhOtWmF9tz6WLorblUFF8M0S9epQuDZA5OT5iYK464vUX ++vGUBh2uo/gZIH9LTAfE5i0N5ZSEUW1vD8TGeR3w6A4jnv35Riy57Jc4Vn64E/bS +4Y6lkwJ7bt0zmr8QqBs9+sTyFfAncyamlNE= +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2012-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2012-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Apr 12 11:39:08 2012 GMT + Not After : Apr 11 11:39:08 2042 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:c9:5f:9b:62:8f:0b:b0:64:82:ac:be:c9:e2:62: + e3:4b:d2:9f:1e:8a:d5:61:1a:2b:5d:38:f4:b7:ce: + b9:9a:b8:43:b8:43:97:77:ab:4f:7f:0c:70:46:0b: + fc:7f:6d:c6:6d:ea:80:5e:01:d2:b7:66:1e:87:de: + 0d:6d:d0:41:97:a8:a5:af:0c:63:4f:f7:7c:c2:52: + cc:a0:31:a9:bb:89:5d:99:1e:46:6f:55:73:b9:76: + 69:ec:d7:c1:fc:21:d6:c6:07:e7:4f:bd:22:de:e4: + a8:5b:2d:db:95:34:19:97:d6:28:4b:21:4c:ca:bb: + 1d:79:a6:17:7f:5a:f9:67:e6:5c:78:45:3d:10:6d: + b0:17:59:26:11:c5:57:e3:7f:4e:82:ba:f6:2c:4e: + c8:37:4d:ff:85:15:84:47:e0:ed:3b:7c:7f:bc:af: + e9:01:05:a7:0c:6f:c3:e9:8d:a3:ce:be:a6:e3:cd: + 3c:b5:58:2c:9e:c2:03:1c:60:22:37:39:ff:41:02: + c1:29:a4:65:51:ff:33:34:aa:42:15:f9:95:78:fc: + 2d:f5:da:8a:85:7c:82:9d:fb:37:2c:6b:a5:a8:df: + 7c:55:0b:80:2e:3c:b0:63:e1:cd:38:48:89:e8:14: + 06:0b:82:bc:fd:d4:07:68:1b:0f:3e:d9:15:dd:94: + 11:1b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 61:48:2A:A2:83:0D:0A:B2:AD:5A:F1:0B:72:50:DA:90:33:DD:CE:F0 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 8f:8a:a1:06:1f:29:b7:0a:4a:d5:c5:fd:81:ab:25:ea:c0:7d: + e2:fc:6a:96:a0:79:93:67:ee:05:0e:25:12:25:e4:5a:f6:aa: + 1a:f1:12:f3:05:8d:87:5e:f1:5a:5c:cb:8d:23:73:65:1d:15: + b9:de:22:6b:d6:49:67:c9:a3:c6:d7:62:4e:5c:b5:f9:03:83: + 40:81:dc:87:9c:3c:3f:1c:0d:51:9f:94:65:0a:84:48:67:e4: + a2:f8:a6:4a:f0:e7:cd:cd:bd:94:e3:09:d2:5d:2d:16:1b:05: + 15:0b:cb:44:b4:3e:61:42:22:c4:2a:5c:4e:c5:1d:a3:e2:e0: + 52:b2:eb:f4:8b:2b:dc:38:39:5d:fb:88:a1:56:65:5f:2b:4f: + 26:ff:06:78:10:12:eb:8c:5d:32:e3:c6:45:af:25:9b:a0:ff: + 8e:ef:47:09:a3:e9:8b:37:92:92:69:76:7e:34:3b:92:05:67: + 4e:b0:25:ed:bc:5e:5f:8f:b4:d6:ca:40:ff:e4:e2:31:23:0c: + 85:25:ae:0c:55:01:ec:e5:47:5e:df:5b:bc:14:33:e3:c6:f5: + 18:b6:d9:f7:dd:b3:b4:a1:31:d3:5a:5c:5d:7d:3e:bf:0a:e4: + e4:e8:b4:59:7d:3b:b4:8c:a3:1b:b5:20:a3:b9:3e:84:6f:8c: + 21:00:c3:39 +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIBATANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xMjA0MTIxMTM5MDhaFw00MjA0MTEx +MTM5MDhaMH8xCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEXMBUG +A1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MSswKQYD +VQQDDCJDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyV+bYo8LsGSCrL7J4mLjS9KfHorVYRor +XTj0t865mrhDuEOXd6tPfwxwRgv8f23GbeqAXgHSt2Yeh94NbdBBl6ilrwxjT/d8 +wlLMoDGpu4ldmR5Gb1VzuXZp7NfB/CHWxgfnT70i3uSoWy3blTQZl9YoSyFMyrsd +eaYXf1r5Z+ZceEU9EG2wF1kmEcVX439Ogrr2LE7IN03/hRWER+DtO3x/vK/pAQWn +DG/D6Y2jzr6m4808tVgsnsIDHGAiNzn/QQLBKaRlUf8zNKpCFfmVePwt9dqKhXyC +nfs3LGulqN98VQuALjywY+HNOEiJ6BQGC4K8/dQHaBsPPtkV3ZQRGwIDAQABo4Gg +MIGdMAwGA1UdEwEB/wQCMAAwHwYDVR0lBBgwFgYIKwYBBQUHAwMGCisGAQQBgjcK +AwYwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRl +MB0GA1UdDgQWBBRhSCqigw0Ksq1a8QtyUNqQM93O8DAfBgNVHSMEGDAWgBStkZkL +wiqx9RcEjCO2ZVomjjRaYzANBgkqhkiG9w0BAQsFAAOCAQEAj4qhBh8ptwpK1cX9 +gasl6sB94vxqlqB5k2fuBQ4lEiXkWvaqGvES8wWNh17xWlzLjSNzZR0Vud4ia9ZJ +Z8mjxtdiTly1+QODQIHch5w8PxwNUZ+UZQqESGfkovimSvDnzc29lOMJ0l0tFhsF +FQvLRLQ+YUIixCpcTsUdo+LgUrLr9Isr3Dg5XfuIoVZlXytPJv8GeBAS64xdMuPG +Ra8lm6D/ju9HCaPpizeSkml2fjQ7kgVnTrAl7bxeX4+01spA/+TiMSMMhSWuDFUB +7OVHXt9bvBQz48b1GLbZ992ztKEx01pcXX0+vwrk5Oi0WX07tIyjG7Ugo7k+hG+M +IQDDOQ== +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2017-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2017-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 2 (0x2) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 26 21:52:11 2017 GMT + Not After : Sep 25 21:52:11 2047 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2017) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ef:9f:fa:9f:19:3a:9d:38:23:91:cc:c4:f9:42: + e0:f8:54:12:82:dc:97:2c:d6:5b:c1:35:eb:ff:4a: + 74:06:b5:9d:32:aa:7b:f3:fc:31:5a:34:3e:a1:a4: + 44:db:7b:6d:16:af:35:76:e0:9b:99:ad:21:11:c6: + 12:4b:ae:24:8f:bb:d3:b2:00:fe:c5:1d:9b:3a:1a: + 4a:6c:ca:fa:16:37:85:22:f9:ff:22:fc:40:e0:58: + 35:c1:39:27:b4:c6:42:1a:96:d8:a5:c5:95:2e:f7: + c5:1e:21:6e:36:84:f7:a9:a1:e1:f1:03:08:96:65: + 71:f8:eb:83:cf:82:f7:9a:44:58:72:00:14:39:29: + 4b:e9:78:2f:65:20:b3:80:76:3b:ba:0d:2d:46:f6: + 37:05:e7:05:fe:bd:6c:c7:a2:65:b5:06:6e:07:24: + 99:a1:c1:cf:e1:0e:5e:49:41:71:17:a8:50:e7:38: + 99:e5:6e:b6:db:9f:63:db:56:f4:9c:7d:89:f6:d2: + 03:6c:99:83:e0:99:23:39:36:bd:cb:b5:26:7c:7d: + b0:c6:fe:82:7c:52:ed:f9:2c:8f:79:71:3d:a9:2f: + b5:aa:7e:77:a0:fd:69:f9:97:10:a8:b2:c6:7d:88: + 9e:a2:19:bd:31:b8:02:2d:34:4d:9d:98:60:82:ad: + 04:ff + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 24:2A:DE:75:AC:4A:15:E5:0D:50:C8:4B:0D:45:FF:3E:AE:70:7A:03 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 00:b2:b7:57:b5:2b:5d:16:d3:04:88:6a:d7:77:d5:0d:89:f1: + d2:6e:11:d1:8e:f5:62:05:c4:6a:57:df:eb:d2:86:68:f2:fd: + a7:37:11:3c:f4:ce:5d:fe:32:5f:31:a2:6b:3a:da:28:c2:88: + fa:7f:70:b5:25:99:ea:27:9a:56:6a:9d:b2:0f:14:99:e2:b7: + c6:39:1e:8e:a7:76:31:d9:ed:c5:05:8d:48:ae:1b:68:18:14: + 51:a1:7d:f6:c7:df:cb:9d:eb:a4:3b:0b:ff:c2:07:c5:42:bc: + 0d:b2:11:fa:37:17:2b:1c:b5:84:48:2d:f9:31:4a:57:49:8e: + 61:a6:82:11:06:4c:34:ea:9c:2a:47:4d:eb:e0:26:af:da:d2: + c2:08:a0:37:35:7b:73:71:de:0b:c4:ba:c8:34:de:20:04:03: + 6f:46:26:0d:b9:91:02:5b:71:76:cc:45:e4:08:d0:a6:dd:a4: + 50:d3:d9:04:91:2b:d9:5c:34:88:fc:c2:37:fd:c6:d4:3e:57: + f7:6b:ba:7b:d7:02:7a:84:0c:c8:c1:19:cc:bc:fa:52:d5:7f: + b3:35:c4:53:5d:70:0a:f6:44:60:8d:a9:11:7a:1b:7d:ae:7b: + 20:5a:4c:8d:44:f6:c1:a9:61:cb:dc:cb:90:37:d5:28:24:73: + 87:d0:e0:d8 +-----BEGIN CERTIFICATE----- +MIIEKDCCAxCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xNzA5MjYyMTUyMTFaFw00NzA5MjUy +MTUyMTFaMIGGMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDEyMDAG +A1UEAwwpQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoMjAxNykw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvn/qfGTqdOCORzMT5QuD4 +VBKC3Jcs1lvBNev/SnQGtZ0yqnvz/DFaND6hpETbe20WrzV24JuZrSERxhJLriSP +u9OyAP7FHZs6GkpsyvoWN4Ui+f8i/EDgWDXBOSe0xkIaltilxZUu98UeIW42hPep +oeHxAwiWZXH464PPgveaRFhyABQ5KUvpeC9lILOAdju6DS1G9jcF5wX+vWzHomW1 +Bm4HJJmhwc/hDl5JQXEXqFDnOJnlbrbbn2PbVvScfYn20gNsmYPgmSM5Nr3LtSZ8 +fbDG/oJ8Uu35LI95cT2pL7Wqfneg/Wn5lxCossZ9iJ6iGb0xuAItNE2dmGCCrQT/ +AgMBAAGjgaAwgZ0wDAYDVR0TAQH/BAIwADAfBgNVHSUEGDAWBggrBgEFBQcDAwYK +KwYBBAGCNwoDBjAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2Vy +dGlmaWNhdGUwHQYDVR0OBBYEFCQq3nWsShXlDVDISw1F/z6ucHoDMB8GA1UdIwQY +MBaAFK2RmQvCKrH1FwSMI7ZlWiaONFpjMA0GCSqGSIb3DQEBCwUAA4IBAQAAsrdX +tStdFtMEiGrXd9UNifHSbhHRjvViBcRqV9/r0oZo8v2nNxE89M5d/jJfMaJrOtoo +woj6f3C1JZnqJ5pWap2yDxSZ4rfGOR6Op3Yx2e3FBY1IrhtoGBRRoX32x9/Lneuk +Owv/wgfFQrwNshH6NxcrHLWESC35MUpXSY5hpoIRBkw06pwqR03r4Cav2tLCCKA3 +NXtzcd4LxLrINN4gBANvRiYNuZECW3F2zEXkCNCm3aRQ09kEkSvZXDSI/MI3/cbU +Plf3a7p71wJ6hAzIwRnMvPpS1X+zNcRTXXAK9kRgjakReht9rnsgWkyNRPbBqWHL +3MuQN9UoJHOH0ODY +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2018-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2018-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 3 (0x3) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Oct 26 18:31:14 2018 GMT + Not After : Oct 24 18:31:14 2048 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (ESM 2018) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:bf:6a:e5:6d:55:7a:ec:7a:11:37:45:9c:4c:8f: + 6b:2d:56:d3:74:2b:32:ac:84:2d:ba:cb:cc:ec:8d: + 92:22:69:48:a5:d4:f6:75:11:66:2f:cb:b2:fd:9e: + 56:ab:e6:f1:52:8e:75:3e:50:bd:25:b3:50:fc:ef: + 3d:76:f3:3f:7f:03:f6:e2:a1:25:69:5c:14:98:54: + bd:11:bf:e9:a5:ac:46:91:4b:1d:de:b7:18:2b:c8: + 22:83:15:a7:4a:00:8d:9d:e4:c0:da:f7:41:02:fd: + 9f:5f:79:93:56:cc:86:e1:b5:e0:39:0e:3c:a2:5b: + fe:c0:56:f0:92:50:5a:2b:67:67:93:56:d7:7a:75: + 99:6a:25:b4:63:a8:5f:69:7e:3a:49:58:2a:a7:80: + f6:5a:b4:be:b2:be:a8:8c:45:41:c9:f2:fc:76:a8: + 65:ef:99:29:0d:c9:9c:54:6b:0a:f0:4a:0e:61:0d: + ed:99:32:af:12:e2:12:7b:9f:7b:ec:05:c4:e0:b6: + d5:c3:71:28:ae:dd:0b:ba:97:ad:68:0b:76:e9:bf: + e7:01:7e:64:54:39:23:85:36:c8:9d:dd:27:a1:ff: + df:46:36:14:7e:cb:cc:a1:cd:49:0b:6d:c2:0c:45: + 99:56:58:7c:87:0d:59:9a:dc:4a:39:3b:1d:d9:15: + 2e:b5 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 36:51:88:C1:D3:74:D6:B0:7C:3C:8F:24:0F:8E:F7:22:43:3D:6A:8B + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 4c:0f:cd:77:60:b4:6f:53:87:f3:3c:4f:e6:81:5f:a7:1c:cc: + 60:29:b6:34:6c:4d:08:9b:e2:d2:bd:f6:17:1a:62:79:b8:17: + bc:a2:60:59:fd:03:51:c3:b7:6b:de:73:b3:48:95:f5:0b:aa: + b6:3c:b4:34:dc:1d:0b:c4:97:62:87:e7:48:d5:8f:c9:ea:e8: + 91:8f:2a:40:cd:b7:b3:ee:b2:98:9e:fb:37:31:29:e6:8e:2f: + 0a:39:99:1e:c6:aa:b8:05:62:85:d3:a8:3e:60:38:98:0f:f0: + fe:c7:ab:01:a5:6a:a5:7f:70:a6:26:94:76:23:2f:08:89:74: + 97:c2:2a:ca:22:3e:7a:ea:22:22:08:07:f4:bb:f6:bc:69:9c: + 4e:44:33:e2:8e:70:17:b0:9b:cb:33:94:66:6d:ff:9a:7d:e9: + 50:b2:e8:90:14:e4:2b:91:cb:a0:c5:2e:0e:cf:19:ef:44:ef: + 84:f0:bd:57:9e:26:c2:63:3d:df:fc:a1:84:de:5c:d7:5f:3b: + fb:94:61:f0:93:89:1f:cf:c3:b2:d1:90:97:35:7d:b9:8a:ad: + e6:05:f0:e8:3b:a1:7c:af:2b:c4:af:18:33:2e:5e:87:db:9d: + 80:b5:04:fd:00:d0:60:ab:ff:85:77:0f:cb:47:22:c9:b2:85: + a8:48:16:e2 +-----BEGIN CERTIFICATE----- +MIIELDCCAxSgAwIBAgIBAzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xODEwMjYxODMxMTRaFw00ODEwMjQx +ODMxMTRaMIGKMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDE2MDQG +A1UEAwwtQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoRVNNIDIw +MTgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2rlbVV67HoRN0Wc +TI9rLVbTdCsyrIQtusvM7I2SImlIpdT2dRFmL8uy/Z5Wq+bxUo51PlC9JbNQ/O89 +dvM/fwP24qElaVwUmFS9Eb/ppaxGkUsd3rcYK8gigxWnSgCNneTA2vdBAv2fX3mT +VsyG4bXgOQ48olv+wFbwklBaK2dnk1bXenWZaiW0Y6hfaX46SVgqp4D2WrS+sr6o +jEVByfL8dqhl75kpDcmcVGsK8EoOYQ3tmTKvEuISe5977AXE4LbVw3Eort0Lupet +aAt26b/nAX5kVDkjhTbInd0nof/fRjYUfsvMoc1JC23CDEWZVlh8hw1ZmtxKOTsd +2RUutQIDAQABo4GgMIGdMAwGA1UdEwEB/wQCMAAwHwYDVR0lBBgwFgYIKwYBBQUH +AwMGCisGAQQBgjcKAwYwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVk +IENlcnRpZmljYXRlMB0GA1UdDgQWBBQ2UYjB03TWsHw8jyQPjvciQz1qizAfBgNV +HSMEGDAWgBStkZkLwiqx9RcEjCO2ZVomjjRaYzANBgkqhkiG9w0BAQsFAAOCAQEA +TA/Nd2C0b1OH8zxP5oFfpxzMYCm2NGxNCJvi0r32FxpiebgXvKJgWf0DUcO3a95z +s0iV9Quqtjy0NNwdC8SXYofnSNWPyerokY8qQM23s+6ymJ77NzEp5o4vCjmZHsaq +uAVihdOoPmA4mA/w/serAaVqpX9wpiaUdiMvCIl0l8IqyiI+euoiIggH9Lv2vGmc +TkQz4o5wF7CbyzOUZm3/mn3pULLokBTkK5HLoMUuDs8Z70TvhPC9V54mwmM93/yh +hN5c1187+5Rh8JOJH8/DstGQlzV9uYqt5gXw6DuhfK8rxK8YMy5eh9udgLUE/QDQ +YKv/hXcPy0ciybKFqEgW4g== +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2019-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2019-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 4 (0x4) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 18 16:10:17 2019 GMT + Not After : Sep 16 16:10:17 2049 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2019) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:e6:47:d8:75:e5:87:59:26:87:83:7d:5b:7a:b8: + 58:3d:7c:ef:36:f8:a0:7a:b7:14:56:58:7d:01:f1: + 1c:3b:8c:e6:5b:03:77:7d:a0:ed:47:0a:45:e6:75: + 5c:de:95:38:0d:38:fa:41:79:89:56:31:87:e7:a3: + 9a:36:70:b6:cf:24:2f:99:26:89:08:39:0e:14:c3: + 35:be:02:8b:52:e1:8e:7b:0c:a6:9d:78:ff:01:60: + d7:f5:c3:d5:f0:5e:dc:e4:23:09:59:72:93:d3:b5: + 22:af:7c:cd:e0:84:0f:af:11:2d:bc:c6:72:42:af: + ea:67:63:c4:10:41:78:02:80:62:0d:43:74:b4:1c: + ed:50:d7:94:f1:b0:bb:f9:57:80:e4:69:0f:83:4b: + a2:e6:2c:4a:9a:e1:7d:7c:62:19:29:27:97:1f:4c: + f1:85:f0:39:f5:31:9f:3a:39:0e:d4:4d:07:3a:40: + 55:4b:a6:6c:9d:04:89:51:2d:7c:b0:ef:40:b5:42: + 29:16:cc:65:73:38:62:21:f6:e3:2c:17:50:9d:74: + 34:4e:df:7c:4a:33:a4:bb:40:cf:d5:e5:ed:05:07: + cd:4c:f9:af:7f:a6:5c:b9:f7:c5:16:45:4e:44:40: + d7:85:32:de:ac:e5:75:ad:9b:d7:c0:26:33:1f:77: + a5:37 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + C0:74:6F:D6:C5:DA:3A:E8:27:86:46:51:AD:66:AE:47:FE:24:B3:E8 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + aa:12:6c:d1:9d:6a:da:f0:ec:7c:17:46:3b:57:b8:d6:76:5f: + 24:e6:06:a2:0a:55:1f:2f:d3:5e:8f:de:cf:02:f2:ff:e0:dd: + d3:c7:bd:75:59:aa:cd:34:f3:28:80:73:cc:28:69:e7:a2:70: + 88:a2:c7:dc:66:f0:92:0e:ff:64:bf:30:04:54:01:1b:96:ad: + 15:c5:61:fd:32:61:d7:5e:b5:ba:91:fd:31:fc:6b:15:df:ee: + 22:d9:e4:1f:f3:cc:8b:0c:9f:f5:e8:f7:e2:62:3f:40:52:c9: + f0:f1:1c:63:fc:6c:90:e1:5b:74:03:b9:df:d1:3e:a8:ec:db: + 2b:6e:83:6f:9f:7f:ba:b4:79:fc:3d:e7:12:2f:4a:e7:17:8c: + 2b:77:a5:90:74:3c:bd:cf:75:83:0d:1a:95:d5:56:ef:07:9b: + a6:b3:31:e3:8c:97:ce:68:11:b5:7b:25:03:72:1c:ea:67:e9: + 7c:3e:73:c7:7c:3e:fc:f5:ae:8a:b2:07:0d:15:6a:66:09:d7: + 23:b9:5d:80:7a:26:d6:b6:22:30:aa:84:af:c0:42:e9:75:c3: + 59:ab:a3:84:87:6b:0c:b7:ab:4e:92:69:ae:2c:82:6f:ab:01: + 24:ab:ff:78:6d:59:85:c2:3b:23:c0:bd:0d:d8:6e:3a:29:82: + e1:c4:5f:db +-----BEGIN CERTIFICATE----- +MIIEKDCCAxCgAwIBAgIBBDANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xOTA5MTgxNjEwMTdaFw00OTA5MTYx +NjEwMTdaMIGGMQswCQYDVQQGEwJHQjEUMBIGA1UECAwLSXNsZSBvZiBNYW4xFzAV +BgNVBAoMDkNhbm9uaWNhbCBMdGQuMRQwEgYDVQQLDAtTZWN1cmUgQm9vdDEyMDAG +A1UEAwwpQ2Fub25pY2FsIEx0ZC4gU2VjdXJlIEJvb3QgU2lnbmluZyAoMjAxOSkw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDmR9h15YdZJoeDfVt6uFg9 +fO82+KB6txRWWH0B8Rw7jOZbA3d9oO1HCkXmdVzelTgNOPpBeYlWMYfno5o2cLbP +JC+ZJokIOQ4UwzW+AotS4Y57DKadeP8BYNf1w9XwXtzkIwlZcpPTtSKvfM3ghA+v +ES28xnJCr+pnY8QQQXgCgGINQ3S0HO1Q15TxsLv5V4DkaQ+DS6LmLEqa4X18Yhkp +J5cfTPGF8Dn1MZ86OQ7UTQc6QFVLpmydBIlRLXyw70C1QikWzGVzOGIh9uMsF1Cd +dDRO33xKM6S7QM/V5e0FB81M+a9/ply598UWRU5EQNeFMt6s5XWtm9fAJjMfd6U3 +AgMBAAGjgaAwgZ0wDAYDVR0TAQH/BAIwADAfBgNVHSUEGDAWBggrBgEFBQcDAwYK +KwYBBAGCNwoDBjAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2Vy +dGlmaWNhdGUwHQYDVR0OBBYEFMB0b9bF2jroJ4ZGUa1mrkf+JLPoMB8GA1UdIwQY +MBaAFK2RmQvCKrH1FwSMI7ZlWiaONFpjMA0GCSqGSIb3DQEBCwUAA4IBAQCqEmzR +nWra8Ox8F0Y7V7jWdl8k5gaiClUfL9Nej97PAvL/4N3Tx711WarNNPMogHPMKGnn +onCIosfcZvCSDv9kvzAEVAEblq0VxWH9MmHXXrW6kf0x/GsV3+4i2eQf88yLDJ/1 +6PfiYj9AUsnw8Rxj/GyQ4Vt0A7nf0T6o7NsrboNvn3+6tHn8PecSL0rnF4wrd6WQ +dDy9z3WDDRqV1VbvB5umszHjjJfOaBG1eyUDchzqZ+l8PnPHfD789a6KsgcNFWpm +CdcjuV2AeibWtiIwqoSvwELpdcNZq6OEh2sMt6tOkmmuLIJvqwEkq/94bVmFwjsj +wL0N2G46KYLhxF/b +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2021v1-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2021v1-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 6 (0x6) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:29:32 2021 GMT + Not After : Sep 22 19:29:32 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v1) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:aa:b8:34:5b:b6:ae:44:bf:41:e1:78:11:b9:7a: + c8:88:b3:b0:26:50:10:9c:98:d1:f3:98:9f:23:50: + 64:f6:39:dd:50:3a:23:44:53:65:fc:f3:9f:f5:a5: + 8b:ae:8b:df:47:9f:e9:d5:a0:92:19:f1:21:ea:cc: + 59:3a:74:df:45:71:bc:de:64:15:a5:f6:db:ca:71: + fa:19:d4:44:0d:12:ec:47:3a:43:e2:f2:dd:8b:fe: + 0d:7b:dc:4d:db:53:06:22:61:e5:8b:35:49:b6:33: + c4:0a:69:5f:5b:81:09:84:6b:42:33:18:09:9d:a0: + 35:f7:9c:1e:de:6e:de:90:69:1a:e8:32:e4:49:ad: + c3:31:e9:f8:4a:a2:28:1d:db:0d:29:b6:48:0a:44: + 93:86:41:62:8f:73:97:60:10:8a:74:46:66:55:fe: + a0:95:35:9e:ef:9f:af:11:fa:5b:a3:7c:c2:35:64: + 11:67:28:1e:14:0a:7d:68:61:9c:cd:c7:46:39:30: + 31:79:94:56:b3:45:16:9a:b5:77:66:fe:41:43:0f: + 00:48:6e:99:dd:0c:d4:47:2c:86:8c:50:04:61:20: + dd:aa:8e:73:4f:21:b4:ee:09:4d:d3:40:01:d0:f2: + a7:5b:7d:05:3d:c1:e7:65:26:aa:8c:9a:58:5a:7c: + 6d:6f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + A8:D5:4B:BB:38:25:CF:B9:4F:A1:3C:9F:8A:59:4A:19:5C:10:7B:8D + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 24:25:25:7e:01:a5:c8:3d:54:8c:1b:05:73:d1:06:d8:db:d4: + 3a:71:d5:19:9d:97:1c:85:3c:ca:38:5a:0c:25:25:39:1a:67: + bc:6c:9d:98:6c:f3:7d:5f:b7:40:f9:73:a0:f5:7b:40:a8:66: + a5:f1:53:b1:78:80:24:3f:19:50:2f:02:09:ec:a1:8a:e6:0d: + df:c4:ae:24:9e:69:0d:5c:dc:44:4c:38:3a:53:4e:4b:a1:4b: + 92:9f:43:a4:9d:1e:76:33:18:1b:bf:62:e5:f5:bc:93:3c:4e: + 21:d5:5b:20:69:11:28:c1:c5:93:b5:8e:96:1d:1b:ca:72:79: + 24:de:67:2a:50:9d:ce:8b:41:dd:3e:82:dd:a5:04:75:54:fb: + 35:70:98:87:b4:f3:ea:41:23:23:80:0e:99:d7:03:16:ee:7e: + 11:e2:c8:29:ab:73:c5:6d:5c:a8:2f:32:03:9f:8e:66:d6:cb: + 54:84:55:75:ab:9a:dd:95:fd:05:1e:11:85:37:1e:63:d2:f4: + 7f:34:64:32:a1:63:91:91:50:39:14:1a:ea:54:78:e6:0d:04: + 23:c7:83:51:c5:25:27:07:6c:f8:65:b7:da:95:89:76:83:cc: + f3:7e:06:74:d3:6c:ef:e9:17:de:29:1e:ab:5c:d7:ec:df:f1: + 98:b8:e9:66 +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBBjANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTI5MzJaGA8yMDUxMDky +MjE5MjkzMlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYxKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKq4NFu2rkS/QeF4 +Ebl6yIizsCZQEJyY0fOYnyNQZPY53VA6I0RTZfzzn/Wli66L30ef6dWgkhnxIerM +WTp030VxvN5kFaX228px+hnURA0S7Ec6Q+Ly3Yv+DXvcTdtTBiJh5Ys1SbYzxApp +X1uBCYRrQjMYCZ2gNfecHt5u3pBpGugy5EmtwzHp+EqiKB3bDSm2SApEk4ZBYo9z +l2AQinRGZlX+oJU1nu+frxH6W6N8wjVkEWcoHhQKfWhhnM3HRjkwMXmUVrNFFpq1 +d2b+QUMPAEhumd0M1EcshoxQBGEg3aqOc08htO4JTdNAAdDyp1t9BT3B52Umqoya +WFp8bW8CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUqNVLuzglz7lPoTyfillKGVwQe40wHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +ACQlJX4Bpcg9VIwbBXPRBtjb1Dpx1RmdlxyFPMo4WgwlJTkaZ7xsnZhs831ft0D5 +c6D1e0CoZqXxU7F4gCQ/GVAvAgnsoYrmDd/EriSeaQ1c3ERMODpTTkuhS5KfQ6Sd +HnYzGBu/YuX1vJM8TiHVWyBpESjBxZO1jpYdG8pyeSTeZypQnc6LQd0+gt2lBHVU ++zVwmIe08+pBIyOADpnXAxbufhHiyCmrc8VtXKgvMgOfjmbWy1SEVXWrmt2V/QUe +EYU3HmPS9H80ZDKhY5GRUDkUGupUeOYNBCPHg1HFJScHbPhlt9qViXaDzPN+BnTT +bO/pF94pHqtc1+zf8Zi46WY= +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2021v2-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2021v2-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 7 (0x7) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:29:42 2021 GMT + Not After : Sep 22 19:29:42 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v2) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:ba:06:8b:ee:58:b7:8b:49:7b:53:7a:d1:df:02: + e3:f2:d8:b0:8c:03:5c:f4:2d:0b:d8:18:3b:23:fa: + 68:b0:e8:e9:9d:dc:a2:eb:5e:d3:06:a9:28:d4:9f: + 14:b6:1e:1c:1d:ef:69:0e:7f:44:f2:cc:4a:f1:b1: + d0:71:30:6a:50:1e:b0:d3:f8:a4:19:d0:4a:f1:e3: + eb:7a:e5:57:4c:a1:fb:d1:87:b9:48:e0:55:37:52: + f9:de:99:2e:95:85:36:ce:d3:1d:67:2f:14:cb:7f: + 05:82:75:21:b6:aa:a5:14:ac:da:4a:f4:fe:fa:5c: + 33:49:3d:6f:de:fd:9d:75:ba:e2:c4:02:38:b5:69: + f5:ff:a8:67:4b:3a:e0:34:f6:3b:07:03:a5:7e:59: + 6f:3a:d2:28:a4:2f:25:ac:d8:a9:1f:59:52:5d:24: + 36:58:51:b5:f0:12:a8:d3:78:56:57:b1:e0:a9:df: + 14:05:65:7c:b5:a5:00:f0:88:39:14:44:18:85:2d: + 0c:28:69:7b:b9:b4:1c:47:6f:43:66:4c:22:ad:f7: + f6:19:75:e1:14:2c:0d:33:3f:c1:3f:fc:73:56:b2: + 68:05:b5:92:03:9b:65:6b:81:80:92:35:03:9b:66: + 68:58:c5:66:11:b6:8c:7f:05:09:9a:45:a6:0e:5e: + 5f:bf + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 4C:F0:46:89:2D:6F:D3:C9:A5:B0:3F:98:D8:45:F9:08:51:DC:6A:8C + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 93:9d:49:7d:9f:3e:3e:27:79:97:d9:c2:fc:0b:f7:30:b7:f4: + 78:b2:c9:e4:5e:42:d3:27:26:70:cf:88:96:d1:f2:ea:a0:75: + 7e:3c:f6:b7:d2:e7:95:30:e3:a6:67:a7:ee:b9:53:8f:fd:b2: + cb:db:e1:98:32:be:98:79:09:46:c6:63:6a:57:87:4d:b2:26: + 46:f6:34:5e:18:75:ca:82:80:8e:33:c2:1d:c7:76:d7:14:57: + ef:2e:0e:9e:58:5c:81:8e:ed:53:2c:07:46:0a:8a:fc:2f:f5: + b2:c8:58:f5:fa:fa:bb:f9:7d:47:13:39:f0:f2:1c:15:9c:75: + 90:40:bd:08:04:b3:6a:de:c2:cd:34:21:7e:ba:31:48:bc:a1: + 23:bc:ee:93:b2:62:96:27:30:86:c2:d4:f7:b4:e6:3c:71:47: + 37:84:ff:3d:0c:1e:ec:f3:0e:da:6b:dc:64:7a:b8:c0:7e:45: + 13:09:bf:02:b3:b7:5b:6d:09:2d:6a:4e:0b:93:94:29:4c:a6: + c3:c7:05:fa:69:08:04:53:3c:4c:64:c0:7e:89:00:91:1b:a6: + c2:d7:ea:c4:db:86:38:fe:66:03:85:7b:fc:39:24:99:4c:2a: + 3e:10:8b:91:c3:6e:20:9d:0c:ee:51:70:b5:98:58:f3:5c:ac: + 16:98:7b:ce +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTI5NDJaGA8yMDUxMDky +MjE5Mjk0MlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYyKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALoGi+5Yt4tJe1N6 +0d8C4/LYsIwDXPQtC9gYOyP6aLDo6Z3coute0wapKNSfFLYeHB3vaQ5/RPLMSvGx +0HEwalAesNP4pBnQSvHj63rlV0yh+9GHuUjgVTdS+d6ZLpWFNs7THWcvFMt/BYJ1 +IbaqpRSs2kr0/vpcM0k9b979nXW64sQCOLVp9f+oZ0s64DT2OwcDpX5ZbzrSKKQv +JazYqR9ZUl0kNlhRtfASqNN4Vlex4KnfFAVlfLWlAPCIORREGIUtDChpe7m0HEdv +Q2ZMIq339hl14RQsDTM/wT/8c1ayaAW1kgObZWuBgJI1A5tmaFjFZhG2jH8FCZpF +pg5eX78CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUTPBGiS1v08mlsD+Y2EX5CFHcaowwHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +AJOdSX2fPj4neZfZwvwL9zC39HiyyeReQtMnJnDPiJbR8uqgdX489rfS55Uw46Zn +p+65U4/9ssvb4Zgyvph5CUbGY2pXh02yJkb2NF4YdcqCgI4zwh3HdtcUV+8uDp5Y +XIGO7VMsB0YKivwv9bLIWPX6+rv5fUcTOfDyHBWcdZBAvQgEs2rews00IX66MUi8 +oSO87pOyYpYnMIbC1Pe05jxxRzeE/z0MHuzzDtpr3GR6uMB+RRMJvwKzt1ttCS1q +TguTlClMpsPHBfppCARTPExkwH6JAJEbpsLX6sTbhjj+ZgOFe/w5JJlMKj4Qi5HD +biCdDO5RcLWYWPNcrBaYe84= +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-2021v3-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-2021v3-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 8 (0x8) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Sep 23 19:30:02 2021 GMT + Not After : Sep 22 19:30:02 2051 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (2021 v3) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:d6:29:96:87:ae:07:42:45:bb:65:09:b2:9b:de: + 5d:8e:78:61:10:d5:6d:ae:ae:26:08:6a:06:ec:4a: + dd:2b:e7:1a:a9:ad:78:e3:fc:cf:8f:d1:47:bd:1e: + 33:d8:7a:e3:66:9b:e9:73:c1:5f:42:e2:fe:bc:c3: + 41:f7:cd:d7:85:d7:42:c9:ea:31:e5:47:b1:93:5b: + 43:2b:07:51:b8:75:08:ad:0f:e7:0d:81:38:5a:21: + df:b1:43:5b:db:37:c5:ac:aa:14:3a:33:19:6a:26: + e0:05:fe:cd:41:31:af:5d:a8:ab:31:77:44:fc:da: + 00:e2:7a:44:33:c3:a7:ed:13:54:9f:19:5d:c9:98: + a2:3b:af:4d:0d:87:29:9c:90:9e:42:9e:9a:06:6a: + 70:27:c5:aa:f7:a2:f2:88:e0:b9:66:9a:72:a0:f6: + 61:7e:30:8f:14:9f:44:0d:dd:54:ae:47:c8:82:ba: + d2:b2:db:6f:24:c1:f4:0a:81:07:90:47:49:5f:57: + d6:3f:bf:2a:73:98:f2:f6:24:1a:74:03:d7:35:f0: + 42:d8:14:c5:94:27:5d:3c:49:0c:b0:f0:7a:61:1b: + d7:5a:e3:a3:40:57:e9:a4:07:ee:02:a3:32:27:94: + bb:f3:36:c5:5f:ef:d3:07:04:3a:80:4c:9c:0a:b7: + 88:9f + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 10:04:37:BB:6D:E6:E4:69:B5:81:E6:1C:D6:6B:CE:3E:F4:ED:53:AF + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 3b:37:d6:a8:8d:cd:d2:df:13:35:ac:8c:92:d6:b0:ac:d1:38: + a8:00:97:47:59:b8:4a:84:8c:80:a5:1d:c7:29:bf:00:66:e5: + 10:40:26:2e:31:f5:e1:13:c0:1b:29:f3:0b:7e:2d:71:d8:db: + e1:32:8f:79:8e:e3:97:0c:40:a9:a0:12:c1:fc:c2:50:88:72: + 44:c5:bc:8b:45:6e:28:fd:d2:37:d6:db:17:cf:4e:61:33:08: + 5a:5d:08:94:73:44:e2:76:00:44:1b:b8:00:a1:86:00:64:8a: + f1:42:32:3c:28:11:67:7c:8b:aa:06:34:74:58:e8:b3:3a:36: + 8d:f6:04:5d:37:f5:66:52:c9:48:b0:a7:6f:34:09:dd:60:2a: + 86:b9:14:f1:09:f6:06:16:56:e0:51:b1:e8:75:7f:fa:37:dc: + e0:98:a7:69:ae:7b:1a:73:89:0d:06:67:cc:01:ef:80:31:45: + 9e:bb:03:2a:eb:89:70:d6:19:b2:c7:ce:bc:81:df:da:c8:6f: + a9:4b:2d:d7:a7:e1:af:c6:e8:fb:f0:61:c9:cd:d2:91:cd:8b: + c2:6c:ef:e0:b6:7f:f1:c4:81:f9:bb:76:9c:26:e3:fa:a1:a0: + cd:5e:05:de:ee:f9:1b:5b:50:0a:8b:0f:47:e3:90:32:ac:2a: + e7:65:02:80 +-----BEGIN CERTIFICATE----- +MIIELTCCAxWgAwIBAgIBCDANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMTA5MjMxOTMwMDJaGA8yMDUxMDky +MjE5MzAwMlowgYkxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MTUw +MwYDVQQDDCxDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nICgyMDIx +IHYzKTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANYploeuB0JFu2UJ +spveXY54YRDVba6uJghqBuxK3SvnGqmteOP8z4/RR70eM9h642ab6XPBX0Li/rzD +QffN14XXQsnqMeVHsZNbQysHUbh1CK0P5w2BOFoh37FDW9s3xayqFDozGWom4AX+ +zUExr12oqzF3RPzaAOJ6RDPDp+0TVJ8ZXcmYojuvTQ2HKZyQnkKemgZqcCfFqvei +8ojguWaacqD2YX4wjxSfRA3dVK5HyIK60rLbbyTB9AqBB5BHSV9X1j+/KnOY8vYk +GnQD1zXwQtgUxZQnXTxJDLDwemEb11rjo0BX6aQH7gKjMieUu/M2xV/v0wcEOoBM +nAq3iJ8CAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQYMBYGCCsGAQUF +BwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRl +ZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUEAQ3u23m5Gm1geYc1mvOPvTtU68wHwYD +VR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcNAQELBQADggEB +ADs31qiNzdLfEzWsjJLWsKzROKgAl0dZuEqEjIClHccpvwBm5RBAJi4x9eETwBsp +8wt+LXHY2+Eyj3mO45cMQKmgEsH8wlCIckTFvItFbij90jfW2xfPTmEzCFpdCJRz +ROJ2AEQbuAChhgBkivFCMjwoEWd8i6oGNHRY6LM6No32BF039WZSyUiwp280Cd1g +Koa5FPEJ9gYWVuBRseh1f/o33OCYp2muexpziQ0GZ8wB74AxRZ67AyrriXDWGbLH +zryB39rIb6lLLden4a/G6PvwYcnN0pHNi8Js7+C2f/HEgfm7dpwm4/qhoM1eBd7u ++RtbUAqLD0fjkDKsKudlAoA= +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/revoked-certs/canonical-uefi-uc2019-all.pem +++ linux-azure-5.4.0/debian/revoked-certs/canonical-uefi-uc2019-all.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 3 (0x3) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Mar 4 10:27:14 2020 GMT + Not After : Mar 3 10:27:14 2050 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019) + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + Public-Key: (2048 bit) + Modulus: + 00:b9:10:47:2e:75:5d:f3:10:23:bb:a0:75:d2:fa: + 02:2d:ff:22:df:c1:e6:cd:38:7c:36:0f:ae:74:15: + 6e:a5:34:52:2b:c3:a4:3a:60:d7:06:ee:1d:99:93: + ff:66:91:a3:18:52:2c:8c:58:e6:b4:2f:4b:c5:fb: + 83:e6:f3:19:bd:1b:ca:23:ec:97:1f:d8:f1:9a:f1: + 04:da:da:10:04:53:4b:ec:1d:b6:26:47:7c:bb:8f: + a7:0a:6e:2e:e8:91:e6:c4:bb:64:34:78:3c:fa:09: + 15:1c:8f:9e:eb:04:99:36:22:c6:8d:07:15:0f:b9: + 69:08:fa:ff:4b:45:bd:ba:2b:cd:01:0e:e7:01:23: + c9:e5:7a:39:3b:91:b0:45:3c:d5:77:ba:ca:f9:29: + 3d:11:3f:1c:6b:5b:8e:6c:4b:3f:c9:29:05:cb:59: + d6:b1:c1:c0:2d:56:88:70:27:fa:73:05:5c:c2:11: + d4:27:11:f7:0b:c2:d5:68:d3:1a:cd:ed:d0:e4:10: + ff:34:cb:b7:45:70:34:2c:23:53:b6:9c:30:70:b4: + 5c:d1:e2:64:18:82:8f:62:b1:5e:aa:0b:d4:89:f2: + 1c:53:c4:32:7d:ef:53:ee:9b:6e:02:ab:78:bd:25: + 67:8b:39:36:d8:84:3b:06:99:02:d6:75:73:4e:f2: + f6:b9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + C1:D5:7B:8F:6B:74:3F:23:EE:41:F4:F7:EE:29:2F:06:EE:CA:DF:B9 + X509v3 Authority Key Identifier: + AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + Signature Algorithm: sha256WithRSAEncryption + Signature Value: + 2d:b5:11:a8:d2:a0:af:81:a0:18:22:18:2c:08:d0:f4:63:e8: + 8f:9a:f4:f5:20:dd:eb:22:77:19:9a:1a:09:3d:7f:aa:7d:c9: + 81:bc:26:98:65:94:46:30:4b:c2:51:7c:f7:21:41:63:87:31: + fc:a4:c9:41:28:c7:2e:2a:2e:d8:a8:75:7a:72:77:3b:1b:9f: + 72:15:0d:0c:96:8d:8b:51:f3:ce:37:b6:ca:9f:ca:59:40:4a: + fc:73:7a:94:12:99:aa:c2:8d:52:ce:91:19:2e:b4:da:ff:e5: + 2c:67:74:d9:58:47:38:2f:61:88:c5:cf:a7:48:e1:08:ba:bc: + ec:d5:3a:47:d9:8c:dc:c3:bc:cb:98:2b:79:7a:02:46:ef:85: + 19:2f:03:4b:05:84:eb:56:98:5f:6d:cf:a5:8b:a2:b6:e5:50: + 51:7c:33:44:bd:7a:94:2e:0d:90:39:39:3e:62:60:ae:3a:e2: + f5:17:fa:f1:94:06:1d:ae:a3:f8:19:20:7f:4b:4c:07:c4:e6: + 2d:0d:e5:94:84:51:6d:6f:0f:c4:c6:79:1d:f0:e8:0e:23:9e: + fd:f9:46:2c:b9:ec:97:38:56:7e:b8:13:f6:d2:e1:8e:a5:93: + 02:7b:6e:dd:33:9a:bf:10:a8:1b:3d:fa:c4:f2:15:f0:27:73: + 26:a6:94:d1 +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBAzANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAgFw0yMDAzMDQxMDI3MTRaGA8yMDUwMDMw +MzEwMjcxNFowgZIxCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MT4w +PAYDVQQDDDVDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nIChVYnVu +dHUgQ29yZSAyMDE5KTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALkQ +Ry51XfMQI7ugddL6Ai3/It/B5s04fDYPrnQVbqU0UivDpDpg1wbuHZmT/2aRoxhS +LIxY5rQvS8X7g+bzGb0byiPslx/Y8ZrxBNraEARTS+wdtiZHfLuPpwpuLuiR5sS7 +ZDR4PPoJFRyPnusEmTYixo0HFQ+5aQj6/0tFvborzQEO5wEjyeV6OTuRsEU81Xe6 +yvkpPRE/HGtbjmxLP8kpBctZ1rHBwC1WiHAn+nMFXMIR1CcR9wvC1WjTGs3t0OQQ +/zTLt0VwNCwjU7acMHC0XNHiZBiCj2KxXqoL1InyHFPEMn3vU+6bbgKreL0lZ4s5 +NtiEOwaZAtZ1c07y9rkCAwEAAaOBoDCBnTAMBgNVHRMBAf8EAjAAMB8GA1UdJQQY +MBYGCCsGAQUFBwMDBgorBgEEAYI3CgMGMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NM +IEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUwdV7j2t0PyPuQfT37ikv +Bu7K37kwHwYDVR0jBBgwFoAUrZGZC8IqsfUXBIwjtmVaJo40WmMwDQYJKoZIhvcN +AQELBQADggEBAC21EajSoK+BoBgiGCwI0PRj6I+a9PUg3esidxmaGgk9f6p9yYG8 +JphllEYwS8JRfPchQWOHMfykyUEoxy4qLtiodXpydzsbn3IVDQyWjYtR8843tsqf +yllASvxzepQSmarCjVLOkRkutNr/5SxndNlYRzgvYYjFz6dI4Qi6vOzVOkfZjNzD +vMuYK3l6AkbvhRkvA0sFhOtWmF9tz6WLorblUFF8M0S9epQuDZA5OT5iYK464vUX ++vGUBh2uo/gZIH9LTAfE5i0N5ZSEUW1vD8TGeR3w6A4jnv35Riy57Jc4Vn64E/bS +4Y6lkwJ7bt0zmr8QqBs9+sTyFfAncyamlNE= +-----END CERTIFICATE----- only in patch2: unchanged: --- linux-azure-5.4.0.orig/debian/scripts/misc/fips-checks +++ linux-azure-5.4.0/debian/scripts/misc/fips-checks @@ -0,0 +1,138 @@ +#!/bin/bash -eu +export LC_ALL=C.UTF-8 + +usage() { + cat << EOF +Usage: ${P:-$(basename "$0")} [-h|--help] + +Check if there are any FIPS relevant changes since the last +release. Any change that is identified should have a justification in +the justifications file or the check will fail. + +Optional arguments: + -h, --help Show this help message and exit. + -p, --previous Version to use as the previous base version. + -c, --current Version to use as the current base version. + +EOF +} + +prev_base_version= +curr_base_version= +crypto_files=( crypto arch/x86/crypto drivers/char/random.c lib/sha\* ) + +c_red='\033[0;31m' +c_green='\033[0;32m' +c_off='\033[0m' + +# Parse arguments +while [ "$#" -gt 0 ]; do + case "$1" in + -h|--help) + usage + exit 0 + ;; + -p|--previous) + shift + prev_base_version="$1" + ;; + -c|--current) + shift + curr_base_version="$1" + ;; + *) + usage + exit 1 + ;; + esac + shift +done + +DEBIAN= +# shellcheck disable=SC1091 +. debian/debian.env + +# Check if the "$DEBIAN" directory exists. +if [ ! -d "$DEBIAN" ]; then + echo "You must run this script from the top directory of this repository." + exit 1 +fi + +CONF="$DEBIAN/etc/update.conf" +if [ ! -f "$CONF" ]; then + echo "Missing file: $CONF" + exit 1 +fi +# shellcheck disable=SC1090 +. "$CONF" + +if [ "$DEBIAN_MASTER" = "" ]; then + echo "DEBIAN_MASTER should be defined either in $DEBIAN/etc/update.conf or the environment" + exit 1 +fi + +# Find the base kernel version use by the previous version +if [ -z "$prev_base_version" ]; then + offset=1 + # Loop through each entry of the current changelog, searching for an + # entry that refers to the master version used as base (ie a line + # containing "[ Ubuntu: 4.15.0-39.42 ]"): + while true; do + changes=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SChanges -c1 -o"$offset") + if ! [ "$changes" ]; then + echo "Failed to retrieve base master version from changelog file: $DEBIAN/changelog" + exit 1 + fi + prev_base_version=$(echo "$changes" | sed -n -r -e '/^\s.*\[ Ubuntu: ([~0-9.-]*) \]$/{s//\1/p;q}') + [ "$prev_base_version" ] && break + offset=$(( offset + 1 )) + done + if [ -z "${prev_base_version}" ]; then + echo "Failed to retrieve base version from previous version from changelog: $DEBIAN/changelog" + exit 1 + fi +fi + +# Find the current base kernel version +if [ -z "$curr_base_version" ]; then + curr_base_version=$(dpkg-parsechangelog -l"${DEBIAN_MASTER}/changelog" -SVersion) + if ! [ "$curr_base_version" ]; then + echo "Failed to retrieve current master version from changelog: $DEBIAN_MASTER/changelog" + exit 1 + fi +fi + +# Check base kernel tags +tag_prefix="Ubuntu-${DEBIAN_MASTER#debian.}-" +prev_tag="${tag_prefix}${prev_base_version}" +curr_tag="${tag_prefix}${curr_base_version}" +for tag in "$prev_tag" "$curr_tag"; do + if ! git rev-parse --verify "$tag" &> /dev/null; then + echo "Missing tag \"$tag\". Please fetch tags from base kernel." + exit 1 + fi +done + +# Check all the changes +fails=0 +justifications_file="$DEBIAN/fips.justifications" +justifications=$(grep -P '^[^#\s]' "$justifications_file" 2> /dev/null || true) +while read -r id; do + short_msg=$(git log --format=%s --max-count=1 "$id") + if echo "$justifications" | grep -q -x -F "$short_msg"; then + echo -e "${c_green}OK${c_off} | ${id::12} ${short_msg}" + continue + fi + echo -e "${c_red}FAIL${c_off} | ${id::12} ${short_msg}" + fails=$(( fails + 1 )) +done < <(git rev-list "${prev_tag}..${curr_tag}" -- "${crypto_files[@]}") + +echo +if [ "$fails" -gt 0 ]; then + echo "FIPS relevant changes were found without justification: ${fails} change(s)." + echo "Please, check the commits above and update the file \"${justifications_file}\"." + exit 1 +fi + +echo "Check completed without errors." +exit 0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpi_amba.c +++ linux-azure-5.4.0/drivers/acpi/acpi_amba.c @@ -76,6 +76,7 @@ case IORESOURCE_MEM: if (!address_found) { dev->res = *rentry->res; + dev->res.name = dev_name(&dev->dev); address_found = true; } break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpi_pad.c +++ linux-azure-5.4.0/drivers/acpi/acpi_pad.c @@ -262,7 +262,7 @@ return ps_tsk_num; } -static ssize_t acpi_pad_rrtime_store(struct device *dev, +static ssize_t rrtime_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { unsigned long num; @@ -276,16 +276,14 @@ return count; } -static ssize_t acpi_pad_rrtime_show(struct device *dev, +static ssize_t rrtime_show(struct device *dev, struct device_attribute *attr, char *buf) { return scnprintf(buf, PAGE_SIZE, "%d\n", round_robin_time); } -static DEVICE_ATTR(rrtime, S_IRUGO|S_IWUSR, - acpi_pad_rrtime_show, - acpi_pad_rrtime_store); +static DEVICE_ATTR_RW(rrtime); -static ssize_t acpi_pad_idlepct_store(struct device *dev, +static ssize_t idlepct_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { unsigned long num; @@ -299,16 +297,14 @@ return count; } -static ssize_t acpi_pad_idlepct_show(struct device *dev, +static ssize_t idlepct_show(struct device *dev, struct device_attribute *attr, char *buf) { return scnprintf(buf, PAGE_SIZE, "%d\n", idle_pct); } -static DEVICE_ATTR(idlepct, S_IRUGO|S_IWUSR, - acpi_pad_idlepct_show, - acpi_pad_idlepct_store); +static DEVICE_ATTR_RW(idlepct); -static ssize_t acpi_pad_idlecpus_store(struct device *dev, +static ssize_t idlecpus_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { unsigned long num; @@ -320,16 +316,14 @@ return count; } -static ssize_t acpi_pad_idlecpus_show(struct device *dev, +static ssize_t idlecpus_show(struct device *dev, struct device_attribute *attr, char *buf) { return cpumap_print_to_pagebuf(false, buf, to_cpumask(pad_busy_cpus_bits)); } -static DEVICE_ATTR(idlecpus, S_IRUGO|S_IWUSR, - acpi_pad_idlecpus_show, - acpi_pad_idlecpus_store); +static DEVICE_ATTR_RW(idlecpus); static int acpi_pad_add_sysfs(struct acpi_device *device) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpi_tad.c +++ linux-azure-5.4.0/drivers/acpi/acpi_tad.c @@ -237,7 +237,7 @@ rt.tz, rt.daylight); } -static DEVICE_ATTR(time, S_IRUSR | S_IWUSR, time_show, time_store); +static DEVICE_ATTR_RW(time); static struct attribute *acpi_tad_time_attrs[] = { &dev_attr_time.attr, @@ -446,7 +446,7 @@ return acpi_tad_alarm_read(dev, buf, ACPI_TAD_AC_TIMER); } -static DEVICE_ATTR(ac_alarm, S_IRUSR | S_IWUSR, ac_alarm_show, ac_alarm_store); +static DEVICE_ATTR_RW(ac_alarm); static ssize_t ac_policy_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) @@ -462,7 +462,7 @@ return acpi_tad_policy_read(dev, buf, ACPI_TAD_AC_TIMER); } -static DEVICE_ATTR(ac_policy, S_IRUSR | S_IWUSR, ac_policy_show, ac_policy_store); +static DEVICE_ATTR_RW(ac_policy); static ssize_t ac_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) @@ -478,7 +478,7 @@ return acpi_tad_status_read(dev, buf, ACPI_TAD_AC_TIMER); } -static DEVICE_ATTR(ac_status, S_IRUSR | S_IWUSR, ac_status_show, ac_status_store); +static DEVICE_ATTR_RW(ac_status); static struct attribute *acpi_tad_attrs[] = { &dev_attr_caps.attr, @@ -505,7 +505,7 @@ return acpi_tad_alarm_read(dev, buf, ACPI_TAD_DC_TIMER); } -static DEVICE_ATTR(dc_alarm, S_IRUSR | S_IWUSR, dc_alarm_show, dc_alarm_store); +static DEVICE_ATTR_RW(dc_alarm); static ssize_t dc_policy_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) @@ -521,7 +521,7 @@ return acpi_tad_policy_read(dev, buf, ACPI_TAD_DC_TIMER); } -static DEVICE_ATTR(dc_policy, S_IRUSR | S_IWUSR, dc_policy_show, dc_policy_store); +static DEVICE_ATTR_RW(dc_policy); static ssize_t dc_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) @@ -537,7 +537,7 @@ return acpi_tad_status_read(dev, buf, ACPI_TAD_DC_TIMER); } -static DEVICE_ATTR(dc_status, S_IRUSR | S_IWUSR, dc_status_show, dc_status_store); +static DEVICE_ATTR_RW(dc_status); static struct attribute *acpi_tad_dc_attrs[] = { &dev_attr_dc_alarm.attr, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpi_video.c +++ linux-azure-5.4.0/drivers/acpi/acpi_video.c @@ -498,6 +498,22 @@ DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"), }, }, + { + .callback = video_disable_backlight_sysfs_if, + .ident = "Toshiba Satellite Z830", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE Z830"), + }, + }, + { + .callback = video_disable_backlight_sysfs_if, + .ident = "Toshiba Portege Z830", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE Z830"), + }, + }, /* * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set * but the IDs actually follow the Device ID Scheme. @@ -543,6 +559,15 @@ DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"), }, }, + { + .callback = video_set_report_key_events, + .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS), + .ident = "Dell Vostro 3350", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"), + }, + }, /* * Some machines change the brightness themselves when a brightness * hotkey gets pressed, despite us telling them not to. In this case only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/acglobal.h +++ linux-azure-5.4.0/drivers/acpi/acpica/acglobal.h @@ -220,6 +220,8 @@ acpi_gbl_bit_register_info[ACPI_NUM_BITREG]; ACPI_GLOBAL(u8, acpi_gbl_sleep_type_a); ACPI_GLOBAL(u8, acpi_gbl_sleep_type_b); +ACPI_GLOBAL(u8, acpi_gbl_sleep_type_a_s0); +ACPI_GLOBAL(u8, acpi_gbl_sleep_type_b_s0); /***************************************************************************** * only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/exfield.c +++ linux-azure-5.4.0/drivers/acpi/acpica/exfield.c @@ -320,12 +320,7 @@ obj_desc->field.base_byte_offset, source_desc->buffer.pointer, data_length); - if ((obj_desc->field.region_obj->region.address == - PCC_MASTER_SUBSPACE - && MASTER_SUBSPACE_COMMAND(obj_desc->field. - base_byte_offset)) - || GENERIC_SUBSPACE_COMMAND(obj_desc->field. - base_byte_offset)) { + if (MASTER_SUBSPACE_COMMAND(obj_desc->field.base_byte_offset)) { /* Perform the write */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/exoparg1.c +++ linux-azure-5.4.0/drivers/acpi/acpica/exoparg1.c @@ -1007,7 +1007,8 @@ (walk_state, return_desc, &temp_desc); if (ACPI_FAILURE(status)) { - goto cleanup; + return_ACPI_STATUS + (status); } return_desc = temp_desc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/hwesleep.c +++ linux-azure-5.4.0/drivers/acpi/acpica/hwesleep.c @@ -104,7 +104,9 @@ /* Flush caches, as per ACPI specification */ - ACPI_FLUSH_CPU_CACHE(); + if (sleep_state < ACPI_STATE_S4) { + ACPI_FLUSH_CPU_CACHE(); + } status = acpi_os_enter_sleep(sleep_state, sleep_control, 0); if (status == AE_CTRL_TERMINATE) { @@ -147,17 +149,13 @@ acpi_status acpi_hw_extended_wake_prep(u8 sleep_state) { - acpi_status status; u8 sleep_type_value; ACPI_FUNCTION_TRACE(hw_extended_wake_prep); - status = acpi_get_sleep_type_data(ACPI_STATE_S0, - &acpi_gbl_sleep_type_a, - &acpi_gbl_sleep_type_b); - if (ACPI_SUCCESS(status)) { + if (acpi_gbl_sleep_type_a_s0 != ACPI_SLEEP_TYPE_INVALID) { sleep_type_value = - ((acpi_gbl_sleep_type_a << ACPI_X_SLEEP_TYPE_POSITION) & + ((acpi_gbl_sleep_type_a_s0 << ACPI_X_SLEEP_TYPE_POSITION) & ACPI_X_SLEEP_TYPE_MASK); (void)acpi_write((u64)(sleep_type_value | ACPI_X_SLEEP_ENABLE), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/hwsleep.c +++ linux-azure-5.4.0/drivers/acpi/acpica/hwsleep.c @@ -110,7 +110,9 @@ /* Flush caches, as per ACPI specification */ - ACPI_FLUSH_CPU_CACHE(); + if (sleep_state < ACPI_STATE_S4) { + ACPI_FLUSH_CPU_CACHE(); + } status = acpi_os_enter_sleep(sleep_state, pm1a_control, pm1b_control); if (status == AE_CTRL_TERMINATE) { @@ -179,7 +181,7 @@ acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state) { - acpi_status status; + acpi_status status = AE_OK; struct acpi_bit_register_info *sleep_type_reg_info; struct acpi_bit_register_info *sleep_enable_reg_info; u32 pm1a_control; @@ -192,10 +194,7 @@ * This is unclear from the ACPI Spec, but it is required * by some machines. */ - status = acpi_get_sleep_type_data(ACPI_STATE_S0, - &acpi_gbl_sleep_type_a, - &acpi_gbl_sleep_type_b); - if (ACPI_SUCCESS(status)) { + if (acpi_gbl_sleep_type_a_s0 != ACPI_SLEEP_TYPE_INVALID) { sleep_type_reg_info = acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE); sleep_enable_reg_info = @@ -216,9 +215,9 @@ /* Insert the SLP_TYP bits */ - pm1a_control |= (acpi_gbl_sleep_type_a << + pm1a_control |= (acpi_gbl_sleep_type_a_s0 << sleep_type_reg_info->bit_position); - pm1b_control |= (acpi_gbl_sleep_type_b << + pm1b_control |= (acpi_gbl_sleep_type_b_s0 << sleep_type_reg_info->bit_position); /* Write the control registers and ignore any errors */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/hwxfsleep.c +++ linux-azure-5.4.0/drivers/acpi/acpica/hwxfsleep.c @@ -162,8 +162,6 @@ return_ACPI_STATUS(status); } - ACPI_FLUSH_CPU_CACHE(); - status = acpi_hw_write_port(acpi_gbl_FADT.smi_command, (u32)acpi_gbl_FADT.s4_bios_request, 8); @@ -214,6 +212,13 @@ return_ACPI_STATUS(status); } + status = acpi_get_sleep_type_data(ACPI_STATE_S0, + &acpi_gbl_sleep_type_a_s0, + &acpi_gbl_sleep_type_b_s0); + if (ACPI_FAILURE(status)) { + acpi_gbl_sleep_type_a_s0 = ACPI_SLEEP_TYPE_INVALID; + } + /* Execute the _PTS method (Prepare To Sleep) */ arg_list.count = 1; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/nsaccess.c +++ linux-azure-5.4.0/drivers/acpi/acpica/nsaccess.c @@ -99,13 +99,12 @@ * just create and link the new node(s) here. */ new_node = - ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_namespace_node)); + acpi_ns_create_node(*ACPI_CAST_PTR(u32, init_val->name)); if (!new_node) { status = AE_NO_MEMORY; goto unlock_and_exit; } - ACPI_COPY_NAMESEG(new_node->name.ascii, init_val->name); new_node->descriptor_type = ACPI_DESC_TYPE_NAMED; new_node->type = init_val->type; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/acpica/nswalk.c +++ linux-azure-5.4.0/drivers/acpi/acpica/nswalk.c @@ -169,6 +169,9 @@ if (start_node == ACPI_ROOT_OBJECT) { start_node = acpi_gbl_root_node; + if (!start_node) { + return_ACPI_STATUS(AE_NO_NAMESPACE); + } } /* Null child means "get first node" */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/apei/bert.c +++ linux-azure-5.4.0/drivers/acpi/apei/bert.c @@ -30,14 +30,25 @@ #undef pr_fmt #define pr_fmt(fmt) "BERT: " fmt +#define ACPI_BERT_PRINT_MAX_RECORDS 5 +#define ACPI_BERT_PRINT_MAX_LEN 1024 + static int bert_disable; +/* + * Print "all" the error records in the BERT table, but avoid huge spam to + * the console if the BIOS included oversize records, or too many records. + * Skipping some records here does not lose anything because the full + * data is available to user tools in: + * /sys/firmware/acpi/tables/data/BERT + */ static void __init bert_print_all(struct acpi_bert_region *region, unsigned int region_len) { struct acpi_hest_generic_status *estatus = (struct acpi_hest_generic_status *)region; int remain = region_len; + int printed = 0, skipped = 0; u32 estatus_len; while (remain >= sizeof(struct acpi_bert_region)) { @@ -45,21 +56,26 @@ if (remain < estatus_len) { pr_err(FW_BUG "Truncated status block (length: %u).\n", estatus_len); - return; + break; } /* No more error records. */ if (!estatus->block_status) - return; + break; if (cper_estatus_check(estatus)) { pr_err(FW_BUG "Invalid error record.\n"); - return; + break; } - pr_info_once("Error records from previous boot:\n"); - - cper_estatus_print(KERN_INFO HW_ERR, estatus); + if (estatus_len < ACPI_BERT_PRINT_MAX_LEN && + printed < ACPI_BERT_PRINT_MAX_RECORDS) { + pr_info_once("Error records from previous boot:\n"); + cper_estatus_print(KERN_INFO HW_ERR, estatus); + printed++; + } else { + skipped++; + } /* * Because the boot error source is "one-time polled" type, @@ -71,13 +87,16 @@ estatus = (void *)estatus + estatus_len; remain -= estatus_len; } + + if (skipped) + pr_info(HW_ERR "Skipped %d error records\n", skipped); } static int __init setup_bert_disable(char *str) { bert_disable = 1; - return 0; + return 1; } __setup("bert_disable", setup_bert_disable); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/apei/erst.c +++ linux-azure-5.4.0/drivers/acpi/apei/erst.c @@ -891,7 +891,7 @@ static int __init setup_erst_disable(char *str) { erst_disable = 1; - return 0; + return 1; } __setup("erst_disable", setup_erst_disable); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/apei/hest.c +++ linux-azure-5.4.0/drivers/acpi/apei/hest.c @@ -219,7 +219,7 @@ static int __init setup_hest_disable(char *str) { hest_disable = HEST_DISABLED; - return 0; + return 1; } __setup("hest_disable", setup_hest_disable); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/bgrt.c +++ linux-azure-5.4.0/drivers/acpi/bgrt.c @@ -15,40 +15,19 @@ static void *bgrt_image; static struct kobject *bgrt_kobj; -static ssize_t show_version(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.version); -} -static DEVICE_ATTR(version, S_IRUGO, show_version, NULL); - -static ssize_t show_status(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.status); -} -static DEVICE_ATTR(status, S_IRUGO, show_status, NULL); - -static ssize_t show_type(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_type); -} -static DEVICE_ATTR(type, S_IRUGO, show_type, NULL); - -static ssize_t show_xoffset(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_x); -} -static DEVICE_ATTR(xoffset, S_IRUGO, show_xoffset, NULL); - -static ssize_t show_yoffset(struct device *dev, - struct device_attribute *attr, char *buf) -{ - return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_y); -} -static DEVICE_ATTR(yoffset, S_IRUGO, show_yoffset, NULL); +#define BGRT_SHOW(_name, _member) \ + static ssize_t _name##_show(struct kobject *kobj, \ + struct kobj_attribute *attr, char *buf) \ + { \ + return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab._member); \ + } \ + struct kobj_attribute bgrt_attr_##_name = __ATTR_RO(_name) + +BGRT_SHOW(version, version); +BGRT_SHOW(status, status); +BGRT_SHOW(type, image_type); +BGRT_SHOW(xoffset, image_offset_x); +BGRT_SHOW(yoffset, image_offset_y); static ssize_t image_read(struct file *file, struct kobject *kobj, struct bin_attribute *attr, char *buf, loff_t off, size_t count) @@ -60,11 +39,11 @@ static BIN_ATTR_RO(image, 0); /* size gets filled in later */ static struct attribute *bgrt_attributes[] = { - &dev_attr_version.attr, - &dev_attr_status.attr, - &dev_attr_type.attr, - &dev_attr_xoffset.attr, - &dev_attr_yoffset.attr, + &bgrt_attr_version.attr, + &bgrt_attr_status.attr, + &bgrt_attr_type.attr, + &bgrt_attr_xoffset.attr, + &bgrt_attr_yoffset.attr, NULL, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/dock.c +++ linux-azure-5.4.0/drivers/acpi/dock.c @@ -485,7 +485,7 @@ /* * show_docked - read method for "docked" file in sysfs */ -static ssize_t show_docked(struct device *dev, +static ssize_t docked_show(struct device *dev, struct device_attribute *attr, char *buf) { struct dock_station *dock_station = dev->platform_data; @@ -494,25 +494,25 @@ acpi_bus_get_device(dock_station->handle, &adev); return snprintf(buf, PAGE_SIZE, "%u\n", acpi_device_enumerated(adev)); } -static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL); +static DEVICE_ATTR_RO(docked); /* * show_flags - read method for flags file in sysfs */ -static ssize_t show_flags(struct device *dev, +static ssize_t flags_show(struct device *dev, struct device_attribute *attr, char *buf) { struct dock_station *dock_station = dev->platform_data; return snprintf(buf, PAGE_SIZE, "%d\n", dock_station->flags); } -static DEVICE_ATTR(flags, S_IRUGO, show_flags, NULL); +static DEVICE_ATTR_RO(flags); /* * write_undock - write method for "undock" file in sysfs */ -static ssize_t write_undock(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) +static ssize_t undock_store(struct device *dev, struct device_attribute *attr, + const char *buf, size_t count) { int ret; struct dock_station *dock_station = dev->platform_data; @@ -526,13 +526,13 @@ acpi_scan_lock_release(); return ret ? ret: count; } -static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock); +static DEVICE_ATTR_WO(undock); /* * show_dock_uid - read method for "uid" file in sysfs */ -static ssize_t show_dock_uid(struct device *dev, - struct device_attribute *attr, char *buf) +static ssize_t uid_show(struct device *dev, + struct device_attribute *attr, char *buf) { unsigned long long lbuf; struct dock_station *dock_station = dev->platform_data; @@ -543,10 +543,10 @@ return snprintf(buf, PAGE_SIZE, "%llx\n", lbuf); } -static DEVICE_ATTR(uid, S_IRUGO, show_dock_uid, NULL); +static DEVICE_ATTR_RO(uid); -static ssize_t show_dock_type(struct device *dev, - struct device_attribute *attr, char *buf) +static ssize_t type_show(struct device *dev, + struct device_attribute *attr, char *buf) { struct dock_station *dock_station = dev->platform_data; char *type; @@ -562,7 +562,7 @@ return snprintf(buf, PAGE_SIZE, "%s\n", type); } -static DEVICE_ATTR(type, S_IRUGO, show_dock_type, NULL); +static DEVICE_ATTR_RO(type); static struct attribute *dock_attributes[] = { &dev_attr_docked.attr, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/pci_mcfg.c +++ linux-azure-5.4.0/drivers/acpi/pci_mcfg.c @@ -41,6 +41,8 @@ static struct mcfg_fixup mcfg_quirks[] = { /* { OEM_ID, OEM_TABLE_ID, REV, SEGMENT, BUS_RANGE, ops, cfgres }, */ +#ifdef CONFIG_ARM64 + #define AL_ECAM(table_id, rev, seg, ops) \ { "AMAZON", table_id, rev, seg, MCFG_BUS_ANY, ops } @@ -142,6 +144,27 @@ XGENE_V2_ECAM_MCFG(4, 0), XGENE_V2_ECAM_MCFG(4, 1), XGENE_V2_ECAM_MCFG(4, 2), + +#define ALTRA_ECAM_QUIRK(rev, seg) \ + { "Ampere", "Altra ", rev, seg, MCFG_BUS_ANY, &pci_32b_read_ops } + + ALTRA_ECAM_QUIRK(1, 0), + ALTRA_ECAM_QUIRK(1, 1), + ALTRA_ECAM_QUIRK(1, 2), + ALTRA_ECAM_QUIRK(1, 3), + ALTRA_ECAM_QUIRK(1, 4), + ALTRA_ECAM_QUIRK(1, 5), + ALTRA_ECAM_QUIRK(1, 6), + ALTRA_ECAM_QUIRK(1, 7), + ALTRA_ECAM_QUIRK(1, 8), + ALTRA_ECAM_QUIRK(1, 9), + ALTRA_ECAM_QUIRK(1, 10), + ALTRA_ECAM_QUIRK(1, 11), + ALTRA_ECAM_QUIRK(1, 12), + ALTRA_ECAM_QUIRK(1, 13), + ALTRA_ECAM_QUIRK(1, 14), + ALTRA_ECAM_QUIRK(1, 15), +#endif /* ARM64 */ }; static char mcfg_oem_id[ACPI_OEM_ID_SIZE]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/pmic/intel_pmic.c +++ linux-azure-5.4.0/drivers/acpi/pmic/intel_pmic.c @@ -211,31 +211,36 @@ void *handler_context, void *region_context) { struct intel_pmic_opregion *opregion = region_context; - int result = 0; + int result = -EINVAL; - switch (address) { - case 0: - return AE_OK; - case 1: - opregion->ctx.addr |= (*value64 & 0xff) << 8; - return AE_OK; - case 2: - opregion->ctx.addr |= *value64 & 0xff; - return AE_OK; - case 3: - opregion->ctx.val = *value64 & 0xff; - return AE_OK; - case 4: - if (*value64) { - result = regmap_write(opregion->regmap, opregion->ctx.addr, - opregion->ctx.val); - } else { - result = regmap_read(opregion->regmap, opregion->ctx.addr, - &opregion->ctx.val); - if (result == 0) - *value64 = opregion->ctx.val; + if (function == ACPI_WRITE) { + switch (address) { + case 0: + return AE_OK; + case 1: + opregion->ctx.addr |= (*value64 & 0xff) << 8; + return AE_OK; + case 2: + opregion->ctx.addr |= *value64 & 0xff; + return AE_OK; + case 3: + opregion->ctx.val = *value64 & 0xff; + return AE_OK; + case 4: + if (*value64) { + result = regmap_write(opregion->regmap, opregion->ctx.addr, + opregion->ctx.val); + } else { + result = regmap_read(opregion->regmap, opregion->ctx.addr, + &opregion->ctx.val); + } + opregion->ctx.addr = 0; } - memset(&opregion->ctx, 0x00, sizeof(opregion->ctx)); + } + + if (function == ACPI_READ && address == 3) { + *value64 = opregion->ctx.val; + return AE_OK; } if (result < 0) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/power.c +++ linux-azure-5.4.0/drivers/acpi/power.c @@ -888,15 +888,16 @@ kfree(resource); } -static ssize_t acpi_power_in_use_show(struct device *dev, - struct device_attribute *attr, - char *buf) { +static ssize_t resource_in_use_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ struct acpi_power_resource *resource; resource = to_power_resource(to_acpi_device(dev)); return sprintf(buf, "%u\n", !!resource->ref_count); } -static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL); +static DEVICE_ATTR_RO(resource_in_use); static void acpi_power_sysfs_remove(struct acpi_device *device) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/processor_idle.c +++ linux-azure-5.4.0/drivers/acpi/processor_idle.c @@ -16,6 +16,7 @@ #include #include #include /* need_resched() */ +#include #include #include #include @@ -540,10 +541,37 @@ return; } +static int acpi_cst_latency_cmp(const void *a, const void *b) +{ + const struct acpi_processor_cx *x = a, *y = b; + + if (!(x->valid && y->valid)) + return 0; + if (x->latency > y->latency) + return 1; + if (x->latency < y->latency) + return -1; + return 0; +} +static void acpi_cst_latency_swap(void *a, void *b, int n) +{ + struct acpi_processor_cx *x = a, *y = b; + u32 tmp; + + if (!(x->valid && y->valid)) + return; + tmp = x->latency; + x->latency = y->latency; + y->latency = tmp; +} + static int acpi_processor_power_verify(struct acpi_processor *pr) { unsigned int i; unsigned int working = 0; + unsigned int last_latency = 0; + unsigned int last_type = 0; + bool buggy_latency = false; pr->power.timer_broadcast_on_state = INT_MAX; @@ -567,12 +595,24 @@ } if (!cx->valid) continue; + if (cx->type >= last_type && cx->latency < last_latency) + buggy_latency = true; + last_latency = cx->latency; + last_type = cx->type; lapic_timer_check_state(i, pr, cx); tsc_check_state(cx->type); working++; } + if (buggy_latency) { + pr_notice("FW issue: working around C-state latencies out of order\n"); + sort(&pr->power.states[1], max_cstate, + sizeof(struct acpi_processor_cx), + acpi_cst_latency_cmp, + acpi_cst_latency_swap); + } + lapic_timer_propagate_broadcast(pr); return (working); @@ -642,6 +682,36 @@ return bm_status; } +static void wait_for_freeze(void) +{ +#ifdef CONFIG_X86 + /* No delay is needed if we are in guest */ + if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) + return; + /* + * Modern (>=Nehalem) Intel systems use ACPI via intel_idle, + * not this code. Assume that any Intel systems using this + * are ancient and may need the dummy wait. This also assumes + * that the motivating chipset issue was Intel-only. + */ + if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) + return; +#endif + /* + * Dummy wait op - must do something useless after P_LVL2 read + * because chipsets cannot guarantee that STPCLK# signal gets + * asserted in time to freeze execution properly + * + * This workaround has been in place since the original ACPI + * implementation was merged, circa 2002. + * + * If a profile is pointing to this instruction, please first + * consider moving your system to a more modern idle + * mechanism. + */ + inl(acpi_gbl_FADT.xpm_timer_block.address); +} + /** * acpi_idle_do_entry - enter idle state using the appropriate method * @cx: cstate data @@ -658,10 +728,7 @@ } else { /* IO port based C-state */ inb(cx->address); - /* Dummy wait op - must do something useless after P_LVL2 read - because chipsets cannot guarantee that STPCLK# signal - gets asserted in time to freeze execution properly. */ - inl(acpi_gbl_FADT.xpm_timer_block.address); + wait_for_freeze(); } } @@ -682,8 +749,7 @@ safe_halt(); else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) { inb(cx->address); - /* See comment in acpi_idle_do_entry() */ - inl(acpi_gbl_FADT.xpm_timer_block.address); + wait_for_freeze(); } else return -ENODEV; } @@ -1161,6 +1227,11 @@ return 0; } +int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu) +{ + return -EOPNOTSUPP; +} + static int acpi_processor_get_lpi_info(struct acpi_processor *pr) { int ret, i; @@ -1169,6 +1240,11 @@ struct acpi_device *d = NULL; struct acpi_lpi_states_array info[2], *tmp, *prev, *curr; + /* make sure our architecture has support */ + ret = acpi_processor_ffh_lpi_probe(pr->id); + if (ret == -EOPNOTSUPP) + return ret; + if (!osc_pc_lpi_support_confirmed) return -EOPNOTSUPP; @@ -1220,11 +1296,6 @@ return 0; } -int __weak acpi_processor_ffh_lpi_probe(unsigned int cpu) -{ - return -ENODEV; -} - int __weak acpi_processor_ffh_lpi_enter(struct acpi_lpi_state *lpi) { return -ENODEV; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/acpi/processor_thermal.c +++ linux-azure-5.4.0/drivers/acpi/processor_thermal.c @@ -150,7 +150,7 @@ unsigned int cpu; for_each_cpu(cpu, policy->related_cpus) { - struct acpi_processor *pr = per_cpu(processors, policy->cpu); + struct acpi_processor *pr = per_cpu(processors, cpu); if (pr) freq_qos_remove_request(&pr->thermal_req); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/ahci_imx.c +++ linux-azure-5.4.0/drivers/ata/ahci_imx.c @@ -1239,4 +1239,4 @@ MODULE_DESCRIPTION("Freescale i.MX AHCI SATA platform driver"); MODULE_AUTHOR("Richard Zhu "); MODULE_LICENSE("GPL"); -MODULE_ALIAS("ahci:imx"); +MODULE_ALIAS("platform:" DRV_NAME); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/ahci_sunxi.c +++ linux-azure-5.4.0/drivers/ata/ahci_sunxi.c @@ -200,7 +200,7 @@ } static const struct ata_port_info ahci_sunxi_port_info = { - .flags = AHCI_FLAG_COMMON | ATA_FLAG_NCQ, + .flags = AHCI_FLAG_COMMON | ATA_FLAG_NCQ | ATA_FLAG_NO_DIPM, .pio_mask = ATA_PIO4, .udma_mask = ATA_UDMA6, .port_ops = &ahci_platform_ops, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/libata-eh.c +++ linux-azure-5.4.0/drivers/ata/libata-eh.c @@ -97,6 +97,12 @@ ULONG_MAX, }; +static const unsigned long ata_eh_revalidate_timeouts[] = { + 15000, /* Some drives are slow to read log pages when waking-up */ + 15000, /* combined time till here is enough even for media access */ + ULONG_MAX, +}; + static const unsigned long ata_eh_flush_timeouts[] = { 15000, /* be generous with flush */ 15000, /* ditto */ @@ -133,6 +139,8 @@ ata_eh_cmd_timeout_table[ATA_EH_CMD_TIMEOUT_TABLE_SIZE] = { { .commands = CMDS(ATA_CMD_ID_ATA, ATA_CMD_ID_ATAPI), .timeouts = ata_eh_identify_timeouts, }, + { .commands = CMDS(ATA_CMD_READ_LOG_EXT, ATA_CMD_READ_LOG_DMA_EXT), + .timeouts = ata_eh_revalidate_timeouts, }, { .commands = CMDS(ATA_CMD_READ_NATIVE_MAX, ATA_CMD_READ_NATIVE_MAX_EXT), .timeouts = ata_eh_other_timeouts, }, { .commands = CMDS(ATA_CMD_SET_MAX, ATA_CMD_SET_MAX_EXT), @@ -2321,6 +2329,7 @@ { ATA_CMD_WRITE_QUEUED_FUA_EXT, "WRITE DMA QUEUED FUA EXT" }, { ATA_CMD_FPDMA_READ, "READ FPDMA QUEUED" }, { ATA_CMD_FPDMA_WRITE, "WRITE FPDMA QUEUED" }, + { ATA_CMD_NCQ_NON_DATA, "NCQ NON-DATA" }, { ATA_CMD_FPDMA_SEND, "SEND FPDMA QUEUED" }, { ATA_CMD_FPDMA_RECV, "RECEIVE FPDMA QUEUED" }, { ATA_CMD_PIO_READ, "READ SECTOR(S)" }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/libata-transport.c +++ linux-azure-5.4.0/drivers/ata/libata-transport.c @@ -196,7 +196,7 @@ { XFER_PIO_0, "XFER_PIO_0" }, { XFER_PIO_SLOW, "XFER_PIO_SLOW" } }; -ata_bitfield_name_match(xfer,ata_xfer_names) +ata_bitfield_name_search(xfer, ata_xfer_names) /* * ATA Port attributes only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_ep93xx.c +++ linux-azure-5.4.0/drivers/ata/pata_ep93xx.c @@ -928,7 +928,7 @@ /* INT[3] (IRQ_EP93XX_EXT3) line connected as pull down */ irq = platform_get_irq(pdev, 0); if (irq < 0) { - err = -ENXIO; + err = irq; goto err_rel_gpio; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_hpt37x.c +++ linux-azure-5.4.0/drivers/ata/pata_hpt37x.c @@ -918,6 +918,20 @@ pci_write_config_byte(dev, 0x5a, irqmask); /* + * HPT371 chips physically have only one channel, the secondary one, + * but the primary channel registers do exist! Go figure... + * So, we manually disable the non-existing channel here + * (if the BIOS hasn't done this already). + */ + if (dev->device == PCI_DEVICE_ID_TTI_HPT371) { + u8 mcr1; + + pci_read_config_byte(dev, 0x50, &mcr1); + mcr1 &= ~0x04; + pci_write_config_byte(dev, 0x50, mcr1); + } + + /* * default to pci clock. make sure MA15/16 are set to output * to prevent drives having problems with 40-pin cables. Needed * for some drives such as IBM-DTLA which will not enter ready @@ -948,14 +962,14 @@ if ((freq >> 12) != 0xABCDE) { int i; - u8 sr; + u16 sr; u32 total = 0; pr_warn("BIOS has not set timing clocks\n"); /* This is the process the HPT371 BIOS is reported to use */ for (i = 0; i < 128; i++) { - pci_read_config_byte(dev, 0x78, &sr); + pci_read_config_word(dev, 0x78, &sr); total += sr & 0x1FF; udelay(15); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_legacy.c +++ linux-azure-5.4.0/drivers/ata/pata_legacy.c @@ -278,9 +278,10 @@ outb(inb(0x1F4) & 0x07, 0x1F4); rt = inb(0x1F3); - rt &= 0x07 << (3 * adev->devno); + rt &= ~(0x07 << (3 * !adev->devno)); if (pio) - rt |= (1 + 3 * pio) << (3 * adev->devno); + rt |= (1 + 3 * pio) << (3 * !adev->devno); + outb(rt, 0x1F3); udelay(100); outb(inb(0x1F2) | 0x01, 0x1F2); @@ -315,7 +316,8 @@ iowrite32_rep(ap->ioaddr.data_addr, buf, buflen >> 2); if (unlikely(slop)) { - __le32 pad; + __le32 pad = 0; + if (rw == READ) { pad = cpu_to_le32(ioread32(ap->ioaddr.data_addr)); memcpy(buf + buflen - slop, &pad, slop); @@ -705,7 +707,8 @@ ioread32_rep(ap->ioaddr.data_addr, buf, buflen >> 2); if (unlikely(slop)) { - __le32 pad; + __le32 pad = 0; + if (rw == WRITE) { memcpy(&pad, buf + buflen - slop, slop); iowrite32(le32_to_cpu(pad), ap->ioaddr.data_addr); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_marvell.c +++ linux-azure-5.4.0/drivers/ata/pata_marvell.c @@ -83,6 +83,8 @@ switch(ap->port_no) { case 0: + if (!ap->ioaddr.bmdma_addr) + return ATA_CBL_PATA_UNK; if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1) return ATA_CBL_PATA40; return ATA_CBL_PATA80; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_octeon_cf.c +++ linux-azure-5.4.0/drivers/ata/pata_octeon_cf.c @@ -888,20 +888,24 @@ int i; res_dma = platform_get_resource(dma_dev, IORESOURCE_MEM, 0); if (!res_dma) { + put_device(&dma_dev->dev); of_node_put(dma_node); return -EINVAL; } cf_port->dma_base = (u64)devm_ioremap_nocache(&pdev->dev, res_dma->start, resource_size(res_dma)); if (!cf_port->dma_base) { + put_device(&dma_dev->dev); of_node_put(dma_node); return -EINVAL; } - irq_handler = octeon_cf_interrupt; i = platform_get_irq(dma_dev, 0); - if (i > 0) + if (i > 0) { irq = i; + irq_handler = octeon_cf_interrupt; + } + put_device(&dma_dev->dev); } of_node_put(dma_node); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/pata_rb532_cf.c +++ linux-azure-5.4.0/drivers/ata/pata_rb532_cf.c @@ -115,10 +115,12 @@ } irq = platform_get_irq(pdev, 0); - if (irq <= 0) { + if (irq < 0) { dev_err(&pdev->dev, "no IRQ resource found\n"); - return -ENOENT; + return irq; } + if (!irq) + return -EINVAL; gpiod = devm_gpiod_get(&pdev->dev, NULL, GPIOD_IN); if (IS_ERR(gpiod)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/sata_dwc_460ex.c +++ linux-azure-5.4.0/drivers/ata/sata_dwc_460ex.c @@ -145,7 +145,11 @@ #endif }; -#define SATA_DWC_QCMD_MAX 32 +/* + * Allow one extra special slot for commands and DMA management + * to account for libata internal commands. + */ +#define SATA_DWC_QCMD_MAX (ATA_MAX_QUEUE + 1) struct sata_dwc_device_port { struct sata_dwc_device *hsdev; @@ -1249,24 +1253,20 @@ irq = irq_of_parse_and_map(np, 0); if (irq == NO_IRQ) { dev_err(&ofdev->dev, "no SATA DMA irq\n"); - err = -ENODEV; - goto error_out; + return -ENODEV; } #ifdef CONFIG_SATA_DWC_OLD_DMA if (!of_find_property(np, "dmas", NULL)) { err = sata_dwc_dma_init_old(ofdev, hsdev); if (err) - goto error_out; + return err; } #endif hsdev->phy = devm_phy_optional_get(hsdev->dev, "sata-phy"); - if (IS_ERR(hsdev->phy)) { - err = PTR_ERR(hsdev->phy); - hsdev->phy = NULL; - goto error_out; - } + if (IS_ERR(hsdev->phy)) + return PTR_ERR(hsdev->phy); err = phy_init(hsdev->phy); if (err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ata/sata_highbank.c +++ linux-azure-5.4.0/drivers/ata/sata_highbank.c @@ -469,10 +469,12 @@ } irq = platform_get_irq(pdev, 0); - if (irq <= 0) { + if (irq < 0) { dev_err(dev, "no irq\n"); - return -EINVAL; + return irq; } + if (!irq) + return -EINVAL; hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL); if (!hpriv) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/atm/iphase.c +++ linux-azure-5.4.0/drivers/atm/iphase.c @@ -3295,7 +3295,7 @@ { pci_unregister_driver(&ia_driver); - del_timer(&ia_timer); + del_timer_sync(&ia_timer); } module_init(ia_module_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/auxdisplay/img-ascii-lcd.c +++ linux-azure-5.4.0/drivers/auxdisplay/img-ascii-lcd.c @@ -280,6 +280,16 @@ if (msg[count - 1] == '\n') count--; + if (!count) { + /* clear the LCD */ + devm_kfree(&ctx->pdev->dev, ctx->message); + ctx->message = NULL; + ctx->message_len = 0; + memset(ctx->curr, ' ', ctx->cfg->num_chars); + ctx->cfg->update(ctx); + return 0; + } + new_msg = devm_kmalloc(&ctx->pdev->dev, count + 1, GFP_KERNEL); if (!new_msg) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/bus.c +++ linux-azure-5.4.0/drivers/base/bus.c @@ -620,7 +620,7 @@ if (drv->bus->p->drivers_autoprobe) { error = driver_attach(drv); if (error) - goto out_unregister; + goto out_del_list; } module_add_driver(drv->owner, drv); @@ -647,6 +647,8 @@ return 0; +out_del_list: + klist_del(&priv->knode_bus); out_unregister: kobject_put(&priv->kobj); /* drv->p is freed in driver_release() */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/cacheinfo.c +++ linux-azure-5.4.0/drivers/base/cacheinfo.c @@ -377,7 +377,7 @@ { struct cacheinfo *this_leaf = dev_get_drvdata(dev); - return sprintf(buf, "%uK\n", this_leaf->size >> 10); + return sysfs_emit(buf, "%uK\n", this_leaf->size >> 10); } static ssize_t shared_cpumap_show_func(struct device *dev, bool list, char *buf) @@ -407,11 +407,11 @@ switch (this_leaf->type) { case CACHE_TYPE_DATA: - return sprintf(buf, "Data\n"); + return sysfs_emit(buf, "Data\n"); case CACHE_TYPE_INST: - return sprintf(buf, "Instruction\n"); + return sysfs_emit(buf, "Instruction\n"); case CACHE_TYPE_UNIFIED: - return sprintf(buf, "Unified\n"); + return sysfs_emit(buf, "Unified\n"); default: return -EINVAL; } @@ -425,11 +425,11 @@ int n = 0; if ((ci_attr & CACHE_READ_ALLOCATE) && (ci_attr & CACHE_WRITE_ALLOCATE)) - n = sprintf(buf, "ReadWriteAllocate\n"); + n = sysfs_emit(buf, "ReadWriteAllocate\n"); else if (ci_attr & CACHE_READ_ALLOCATE) - n = sprintf(buf, "ReadAllocate\n"); + n = sysfs_emit(buf, "ReadAllocate\n"); else if (ci_attr & CACHE_WRITE_ALLOCATE) - n = sprintf(buf, "WriteAllocate\n"); + n = sysfs_emit(buf, "WriteAllocate\n"); return n; } @@ -441,9 +441,9 @@ int n = 0; if (ci_attr & CACHE_WRITE_THROUGH) - n = sprintf(buf, "WriteThrough\n"); + n = sysfs_emit(buf, "WriteThrough\n"); else if (ci_attr & CACHE_WRITE_BACK) - n = sprintf(buf, "WriteBack\n"); + n = sysfs_emit(buf, "WriteBack\n"); return n; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/devtmpfs.c +++ linux-azure-5.4.0/drivers/base/devtmpfs.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include "base.h" @@ -62,8 +63,15 @@ const char *dev_name, void *data) { struct super_block *s = mnt->mnt_sb; + int err; + atomic_inc(&s->s_active); down_write(&s->s_umount); + err = reconfigure_single(s, flags, data); + if (err < 0) { + deactivate_locked_super(s); + return ERR_PTR(err); + } return dget(s->s_root); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/power/trace.c +++ linux-azure-5.4.0/drivers/base/power/trace.c @@ -13,6 +13,7 @@ #include #include #include +#include #include @@ -165,6 +166,9 @@ const char *file = *(const char **)(tracedata + 2); unsigned int user_hash_value, file_hash_value; + if (!x86_platform.legacy.rtc) + return; + user_hash_value = user % USERHASH; file_hash_value = hash_string(lineno, file, FILEHASH); set_magic_time(user_hash_value, file_hash_value, dev_hash_value); @@ -267,6 +271,9 @@ static int early_resume_init(void) { + if (!x86_platform.legacy.rtc) + return 0; + hash_value_early_read = read_magic_time(); register_pm_notifier(&pm_trace_nb); return 0; @@ -277,6 +284,9 @@ unsigned int val = hash_value_early_read; unsigned int user, file, dev; + if (!x86_platform.legacy.rtc) + return 0; + user = val % USERHASH; val = val / USERHASH; file = val % FILEHASH; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/power/wakeup_stats.c +++ linux-azure-5.4.0/drivers/base/power/wakeup_stats.c @@ -42,7 +42,7 @@ ktime_t active_time = ws->active ? ktime_sub(ktime_get(), ws->last_time) : 0; - return sprintf(buf, "%lld\n", ktime_to_ms(active_time)); + return sysfs_emit(buf, "%lld\n", ktime_to_ms(active_time)); } static DEVICE_ATTR_RO(active_time_ms); @@ -57,7 +57,7 @@ active_time = ktime_sub(ktime_get(), ws->last_time); total_time = ktime_add(total_time, active_time); } - return sprintf(buf, "%lld\n", ktime_to_ms(total_time)); + return sysfs_emit(buf, "%lld\n", ktime_to_ms(total_time)); } static DEVICE_ATTR_RO(total_time_ms); @@ -73,7 +73,7 @@ if (active_time > max_time) max_time = active_time; } - return sprintf(buf, "%lld\n", ktime_to_ms(max_time)); + return sysfs_emit(buf, "%lld\n", ktime_to_ms(max_time)); } static DEVICE_ATTR_RO(max_time_ms); @@ -82,7 +82,7 @@ { struct wakeup_source *ws = dev_get_drvdata(dev); - return sprintf(buf, "%lld\n", ktime_to_ms(ws->last_time)); + return sysfs_emit(buf, "%lld\n", ktime_to_ms(ws->last_time)); } static DEVICE_ATTR_RO(last_change_ms); @@ -91,7 +91,7 @@ { struct wakeup_source *ws = dev_get_drvdata(dev); - return sprintf(buf, "%s\n", ws->name); + return sysfs_emit(buf, "%s\n", ws->name); } static DEVICE_ATTR_RO(name); @@ -106,7 +106,7 @@ prevent_sleep_time = ktime_add(prevent_sleep_time, ktime_sub(ktime_get(), ws->start_prevent_time)); } - return sprintf(buf, "%lld\n", ktime_to_ms(prevent_sleep_time)); + return sysfs_emit(buf, "%lld\n", ktime_to_ms(prevent_sleep_time)); } static DEVICE_ATTR_RO(prevent_suspend_time_ms); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/regmap/regcache-rbtree.c +++ linux-azure-5.4.0/drivers/base/regmap/regcache-rbtree.c @@ -281,14 +281,14 @@ if (!blk) return -ENOMEM; + rbnode->block = blk; + if (BITS_TO_LONGS(blklen) > BITS_TO_LONGS(rbnode->blklen)) { present = krealloc(rbnode->cache_present, BITS_TO_LONGS(blklen) * sizeof(*present), GFP_KERNEL); - if (!present) { - kfree(blk); + if (!present) return -ENOMEM; - } memset(present + BITS_TO_LONGS(rbnode->blklen), 0, (BITS_TO_LONGS(blklen) - BITS_TO_LONGS(rbnode->blklen)) @@ -305,7 +305,6 @@ } /* update the rbnode block, its size and the base register */ - rbnode->block = blk; rbnode->blklen = blklen; rbnode->base_reg = base_reg; rbnode->cache_present = present; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/regmap/regmap-irq.c +++ linux-azure-5.4.0/drivers/base/regmap/regmap-irq.c @@ -214,6 +214,7 @@ struct regmap_irq_chip_data *d = irq_data_get_irq_chip_data(data); struct regmap *map = d->map; const struct regmap_irq *irq_data = irq_to_regmap_irq(d, data->hwirq); + unsigned int reg = irq_data->reg_offset / map->reg_stride; unsigned int mask, type; type = irq_data->type.type_falling_val | irq_data->type.type_rising_val; @@ -230,14 +231,14 @@ * at the corresponding offset in regmap_irq_set_type(). */ if (d->chip->type_in_mask && type) - mask = d->type_buf[irq_data->reg_offset / map->reg_stride]; + mask = d->type_buf[reg] & irq_data->mask; else mask = irq_data->mask; if (d->chip->clear_on_unmask) d->clear_status = true; - d->mask_buf[irq_data->reg_offset / map->reg_stride] &= ~mask; + d->mask_buf[reg] &= ~mask; } static void regmap_irq_disable(struct irq_data *data) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/base/soc.c +++ linux-azure-5.4.0/drivers/base/soc.c @@ -76,15 +76,15 @@ struct soc_device *soc_dev = container_of(dev, struct soc_device, dev); if (attr == &dev_attr_machine) - return sprintf(buf, "%s\n", soc_dev->attr->machine); + return sysfs_emit(buf, "%s\n", soc_dev->attr->machine); if (attr == &dev_attr_family) - return sprintf(buf, "%s\n", soc_dev->attr->family); + return sysfs_emit(buf, "%s\n", soc_dev->attr->family); if (attr == &dev_attr_revision) - return sprintf(buf, "%s\n", soc_dev->attr->revision); + return sysfs_emit(buf, "%s\n", soc_dev->attr->revision); if (attr == &dev_attr_serial_number) - return sprintf(buf, "%s\n", soc_dev->attr->serial_number); + return sysfs_emit(buf, "%s\n", soc_dev->attr->serial_number); if (attr == &dev_attr_soc_id) - return sprintf(buf, "%s\n", soc_dev->attr->soc_id); + return sysfs_emit(buf, "%s\n", soc_dev->attr->soc_id); return -EINVAL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/bcma/main.c +++ linux-azure-5.4.0/drivers/bcma/main.c @@ -236,6 +236,7 @@ void bcma_prepare_core(struct bcma_bus *bus, struct bcma_device *core) { + device_initialize(&core->dev); core->dev.release = bcma_release_core_dev; core->dev.bus = &bcma_bus_type; dev_set_name(&core->dev, "bcma%d:%d", bus->num, core->core_index); @@ -277,11 +278,10 @@ { int err; - err = device_register(&core->dev); + err = device_add(&core->dev); if (err) { bcma_err(bus, "Could not register dev for core 0x%03X\n", core->id.id); - put_device(&core->dev); return; } core->dev_registered = true; @@ -372,7 +372,7 @@ /* Now noone uses internally-handled cores, we can free them */ list_for_each_entry_safe(core, tmp, &bus->cores, list) { list_del(&core->list); - kfree(core); + put_device(&core->dev); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/ataflop.c +++ linux-azure-5.4.0/drivers/block/ataflop.c @@ -653,9 +653,6 @@ *p2++ = *p1++; } - - - /* General Interrupt Handling */ static void (*FloppyIRQHandler)( int status ) = NULL; @@ -1225,6 +1222,7 @@ } else { /* all sectors finished */ + finish_fdc(); fd_end_request_cur(BLK_STS_OK); } return; @@ -1472,15 +1470,6 @@ ReqTrack, ReqSector, (unsigned long)ReqData )); } -static void ataflop_commit_rqs(struct blk_mq_hw_ctx *hctx) -{ - spin_lock_irq(&ataflop_lock); - atari_disable_irq(IRQ_MFP_FDC); - finish_fdc(); - atari_enable_irq(IRQ_MFP_FDC); - spin_unlock_irq(&ataflop_lock); -} - static blk_status_t ataflop_queue_rq(struct blk_mq_hw_ctx *hctx, const struct blk_mq_queue_data *bd) { @@ -1488,6 +1477,8 @@ int drive = floppy - unit; int type = floppy->type; + DPRINT(("Queue request: drive %d type %d last %d\n", drive, type, bd->last)); + spin_lock_irq(&ataflop_lock); if (fd_request) { spin_unlock_irq(&ataflop_lock); @@ -1547,8 +1538,6 @@ setup_req_params( drive ); do_fd_action( drive ); - if (bd->last) - finish_fdc(); atari_enable_irq( IRQ_MFP_FDC ); out: @@ -1958,7 +1947,6 @@ static const struct blk_mq_ops ataflop_mq_ops = { .queue_rq = ataflop_queue_rq, - .commit_rqs = ataflop_commit_rqs, }; static struct kobject *floppy_find(dev_t dev, int *part, void *data) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/cryptoloop.c +++ linux-azure-5.4.0/drivers/block/cryptoloop.c @@ -189,6 +189,8 @@ if (rc) printk(KERN_ERR "cryptoloop: loop_register_transfer failed\n"); + else + pr_warn("the cryptoloop driver has been deprecated and will be removed in in Linux 5.16\n"); return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_int.h +++ linux-azure-5.4.0/drivers/block/drbd/drbd_int.h @@ -1673,22 +1673,22 @@ }; void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib); -extern void notify_resource_state(struct sk_buff *, +extern int notify_resource_state(struct sk_buff *, unsigned int, struct drbd_resource *, struct resource_info *, enum drbd_notification_type); -extern void notify_device_state(struct sk_buff *, +extern int notify_device_state(struct sk_buff *, unsigned int, struct drbd_device *, struct device_info *, enum drbd_notification_type); -extern void notify_connection_state(struct sk_buff *, +extern int notify_connection_state(struct sk_buff *, unsigned int, struct drbd_connection *, struct connection_info *, enum drbd_notification_type); -extern void notify_peer_device_state(struct sk_buff *, +extern int notify_peer_device_state(struct sk_buff *, unsigned int, struct drbd_peer_device *, struct peer_device_info *, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_main.c +++ linux-azure-5.4.0/drivers/block/drbd/drbd_main.c @@ -183,7 +183,7 @@ unsigned int set_size) { struct drbd_request *r; - struct drbd_request *req = NULL; + struct drbd_request *req = NULL, *tmp = NULL; int expect_epoch = 0; int expect_size = 0; @@ -237,8 +237,11 @@ * to catch requests being barrier-acked "unexpectedly". * It usually should find the same req again, or some READ preceding it. */ list_for_each_entry(req, &connection->transfer_log, tl_requests) - if (req->epoch == expect_epoch) + if (req->epoch == expect_epoch) { + tmp = req; break; + } + req = list_prepare_entry(tmp, &connection->transfer_log, tl_requests); list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) { if (req->epoch != expect_epoch) break; @@ -3706,9 +3709,8 @@ * when we want to support more than * one PRO_VERSION */ static const char *cmdnames[] = { + [P_DATA] = "Data", - [P_WSAME] = "WriteSame", - [P_TRIM] = "Trim", [P_DATA_REPLY] = "DataReply", [P_RS_DATA_REPLY] = "RSDataReply", [P_BARRIER] = "Barrier", @@ -3719,7 +3721,6 @@ [P_DATA_REQUEST] = "DataRequest", [P_RS_DATA_REQUEST] = "RSDataRequest", [P_SYNC_PARAM] = "SyncParam", - [P_SYNC_PARAM89] = "SyncParam89", [P_PROTOCOL] = "ReportProtocol", [P_UUIDS] = "ReportUUIDs", [P_SIZES] = "ReportSizes", @@ -3727,6 +3728,7 @@ [P_SYNC_UUID] = "ReportSyncUUID", [P_AUTH_CHALLENGE] = "AuthChallenge", [P_AUTH_RESPONSE] = "AuthResponse", + [P_STATE_CHG_REQ] = "StateChgRequest", [P_PING] = "Ping", [P_PING_ACK] = "PingAck", [P_RECV_ACK] = "RecvAck", @@ -3737,24 +3739,26 @@ [P_NEG_DREPLY] = "NegDReply", [P_NEG_RS_DREPLY] = "NegRSDReply", [P_BARRIER_ACK] = "BarrierAck", - [P_STATE_CHG_REQ] = "StateChgRequest", [P_STATE_CHG_REPLY] = "StateChgReply", [P_OV_REQUEST] = "OVRequest", [P_OV_REPLY] = "OVReply", [P_OV_RESULT] = "OVResult", [P_CSUM_RS_REQUEST] = "CsumRSRequest", [P_RS_IS_IN_SYNC] = "CsumRSIsInSync", + [P_SYNC_PARAM89] = "SyncParam89", [P_COMPRESSED_BITMAP] = "CBitmap", [P_DELAY_PROBE] = "DelayProbe", [P_OUT_OF_SYNC] = "OutOfSync", - [P_RETRY_WRITE] = "RetryWrite", [P_RS_CANCEL] = "RSCancel", [P_CONN_ST_CHG_REQ] = "conn_st_chg_req", [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply", [P_RETRY_WRITE] = "retry_write", [P_PROTOCOL_UPDATE] = "protocol_update", + [P_TRIM] = "Trim", [P_RS_THIN_REQ] = "rs_thin_req", [P_RS_DEALLOCATED] = "rs_deallocated", + [P_WSAME] = "WriteSame", + [P_ZEROES] = "Zeroes", /* enum drbd_packet, but not commands - obsoleted flags: * P_MAY_IGNORE only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_nl.c +++ linux-azure-5.4.0/drivers/block/drbd/drbd_nl.c @@ -791,9 +791,11 @@ mutex_lock(&adm_ctx.resource->adm_mutex); if (info->genlhdr->cmd == DRBD_ADM_PRIMARY) - retcode = drbd_set_role(adm_ctx.device, R_PRIMARY, parms.assume_uptodate); + retcode = (enum drbd_ret_code)drbd_set_role(adm_ctx.device, + R_PRIMARY, parms.assume_uptodate); else - retcode = drbd_set_role(adm_ctx.device, R_SECONDARY, 0); + retcode = (enum drbd_ret_code)drbd_set_role(adm_ctx.device, + R_SECONDARY, 0); mutex_unlock(&adm_ctx.resource->adm_mutex); genl_lock(); @@ -1971,7 +1973,7 @@ drbd_flush_workqueue(&connection->sender_work); rv = _drbd_request_state(device, NS(disk, D_ATTACHING), CS_VERBOSE); - retcode = rv; /* FIXME: Type mismatch. */ + retcode = (enum drbd_ret_code)rv; drbd_resume_io(device); if (rv < SS_SUCCESS) goto fail; @@ -2696,7 +2698,8 @@ } rcu_read_unlock(); - retcode = conn_request_state(connection, NS(conn, C_UNCONNECTED), CS_VERBOSE); + retcode = (enum drbd_ret_code)conn_request_state(connection, + NS(conn, C_UNCONNECTED), CS_VERBOSE); conn_reconfig_done(connection); mutex_unlock(&adm_ctx.resource->adm_mutex); @@ -2809,7 +2812,7 @@ mutex_lock(&adm_ctx.resource->adm_mutex); rv = conn_try_disconnect(connection, parms.force_disconnect); if (rv < SS_SUCCESS) - retcode = rv; /* FIXME: Type mismatch. */ + retcode = (enum drbd_ret_code)rv; else retcode = NO_ERROR; mutex_unlock(&adm_ctx.resource->adm_mutex); @@ -4630,7 +4633,7 @@ return drbd_notification_header_to_skb(msg, &nh, true); } -void notify_resource_state(struct sk_buff *skb, +int notify_resource_state(struct sk_buff *skb, unsigned int seq, struct drbd_resource *resource, struct resource_info *resource_info, @@ -4672,16 +4675,17 @@ if (err && err != -ESRCH) goto failed; } - return; + return 0; nla_put_failure: nlmsg_free(skb); failed: drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n", err, seq); + return err; } -void notify_device_state(struct sk_buff *skb, +int notify_device_state(struct sk_buff *skb, unsigned int seq, struct drbd_device *device, struct device_info *device_info, @@ -4721,16 +4725,17 @@ if (err && err != -ESRCH) goto failed; } - return; + return 0; nla_put_failure: nlmsg_free(skb); failed: drbd_err(device, "Error %d while broadcasting event. Event seq:%u\n", err, seq); + return err; } -void notify_connection_state(struct sk_buff *skb, +int notify_connection_state(struct sk_buff *skb, unsigned int seq, struct drbd_connection *connection, struct connection_info *connection_info, @@ -4770,16 +4775,17 @@ if (err && err != -ESRCH) goto failed; } - return; + return 0; nla_put_failure: nlmsg_free(skb); failed: drbd_err(connection, "Error %d while broadcasting event. Event seq:%u\n", err, seq); + return err; } -void notify_peer_device_state(struct sk_buff *skb, +int notify_peer_device_state(struct sk_buff *skb, unsigned int seq, struct drbd_peer_device *peer_device, struct peer_device_info *peer_device_info, @@ -4820,13 +4826,14 @@ if (err && err != -ESRCH) goto failed; } - return; + return 0; nla_put_failure: nlmsg_free(skb); failed: drbd_err(peer_device, "Error %d while broadcasting event. Event seq:%u\n", err, seq); + return err; } void notify_helper(enum drbd_notification_type type, @@ -4877,7 +4884,7 @@ err, seq); } -static void notify_initial_state_done(struct sk_buff *skb, unsigned int seq) +static int notify_initial_state_done(struct sk_buff *skb, unsigned int seq) { struct drbd_genlmsghdr *dh; int err; @@ -4891,11 +4898,12 @@ if (nla_put_notification_header(skb, NOTIFY_EXISTS)) goto nla_put_failure; genlmsg_end(skb, dh); - return; + return 0; nla_put_failure: nlmsg_free(skb); pr_err("Error %d sending event. Event seq:%u\n", err, seq); + return err; } static void free_state_changes(struct list_head *list) @@ -4922,6 +4930,7 @@ unsigned int seq = cb->args[2]; unsigned int n; enum drbd_notification_type flags = 0; + int err = 0; /* There is no need for taking notification_mutex here: it doesn't matter if the initial state events mix with later state chage @@ -4930,32 +4939,32 @@ cb->args[5]--; if (cb->args[5] == 1) { - notify_initial_state_done(skb, seq); + err = notify_initial_state_done(skb, seq); goto out; } n = cb->args[4]++; if (cb->args[4] < cb->args[3]) flags |= NOTIFY_CONTINUES; if (n < 1) { - notify_resource_state_change(skb, seq, state_change->resource, + err = notify_resource_state_change(skb, seq, state_change->resource, NOTIFY_EXISTS | flags); goto next; } n--; if (n < state_change->n_connections) { - notify_connection_state_change(skb, seq, &state_change->connections[n], + err = notify_connection_state_change(skb, seq, &state_change->connections[n], NOTIFY_EXISTS | flags); goto next; } n -= state_change->n_connections; if (n < state_change->n_devices) { - notify_device_state_change(skb, seq, &state_change->devices[n], + err = notify_device_state_change(skb, seq, &state_change->devices[n], NOTIFY_EXISTS | flags); goto next; } n -= state_change->n_devices; if (n < state_change->n_devices * state_change->n_connections) { - notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n], + err = notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n], NOTIFY_EXISTS | flags); goto next; } @@ -4970,7 +4979,10 @@ cb->args[4] = 0; } out: - return skb->len; + if (err) + return err; + else + return skb->len; } int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_req.c +++ linux-azure-5.4.0/drivers/block/drbd/drbd_req.c @@ -195,7 +195,8 @@ void complete_master_bio(struct drbd_device *device, struct bio_and_error *m) { - m->bio->bi_status = errno_to_blk_status(m->error); + if (unlikely(m->error)) + m->bio->bi_status = errno_to_blk_status(m->error); bio_endio(m->bio); dec_ap_bio(device); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_state.c +++ linux-azure-5.4.0/drivers/block/drbd/drbd_state.c @@ -1537,7 +1537,7 @@ return rv; } -void notify_resource_state_change(struct sk_buff *skb, +int notify_resource_state_change(struct sk_buff *skb, unsigned int seq, struct drbd_resource_state_change *resource_state_change, enum drbd_notification_type type) @@ -1550,10 +1550,10 @@ .res_susp_fen = resource_state_change->susp_fen[NEW], }; - notify_resource_state(skb, seq, resource, &resource_info, type); + return notify_resource_state(skb, seq, resource, &resource_info, type); } -void notify_connection_state_change(struct sk_buff *skb, +int notify_connection_state_change(struct sk_buff *skb, unsigned int seq, struct drbd_connection_state_change *connection_state_change, enum drbd_notification_type type) @@ -1564,10 +1564,10 @@ .conn_role = connection_state_change->peer_role[NEW], }; - notify_connection_state(skb, seq, connection, &connection_info, type); + return notify_connection_state(skb, seq, connection, &connection_info, type); } -void notify_device_state_change(struct sk_buff *skb, +int notify_device_state_change(struct sk_buff *skb, unsigned int seq, struct drbd_device_state_change *device_state_change, enum drbd_notification_type type) @@ -1577,10 +1577,10 @@ .dev_disk_state = device_state_change->disk_state[NEW], }; - notify_device_state(skb, seq, device, &device_info, type); + return notify_device_state(skb, seq, device, &device_info, type); } -void notify_peer_device_state_change(struct sk_buff *skb, +int notify_peer_device_state_change(struct sk_buff *skb, unsigned int seq, struct drbd_peer_device_state_change *p, enum drbd_notification_type type) @@ -1594,7 +1594,7 @@ .peer_resync_susp_dependency = p->resync_susp_dependency[NEW], }; - notify_peer_device_state(skb, seq, peer_device, &peer_device_info, type); + return notify_peer_device_state(skb, seq, peer_device, &peer_device_info, type); } static void broadcast_state_change(struct drbd_state_change *state_change) @@ -1602,7 +1602,7 @@ struct drbd_resource_state_change *resource_state_change = &state_change->resource[0]; bool resource_state_has_changed; unsigned int n_device, n_connection, n_peer_device, n_peer_devices; - void (*last_func)(struct sk_buff *, unsigned int, void *, + int (*last_func)(struct sk_buff *, unsigned int, void *, enum drbd_notification_type) = NULL; void *uninitialized_var(last_arg); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/drbd/drbd_state_change.h +++ linux-azure-5.4.0/drivers/block/drbd/drbd_state_change.h @@ -44,19 +44,19 @@ extern void copy_old_to_new_state_change(struct drbd_state_change *); extern void forget_state_change(struct drbd_state_change *); -extern void notify_resource_state_change(struct sk_buff *, +extern int notify_resource_state_change(struct sk_buff *, unsigned int, struct drbd_resource_state_change *, enum drbd_notification_type type); -extern void notify_connection_state_change(struct sk_buff *, +extern int notify_connection_state_change(struct sk_buff *, unsigned int, struct drbd_connection_state_change *, enum drbd_notification_type type); -extern void notify_device_state_change(struct sk_buff *, +extern int notify_device_state_change(struct sk_buff *, unsigned int, struct drbd_device_state_change *, enum drbd_notification_type type); -extern void notify_peer_device_state_change(struct sk_buff *, +extern int notify_peer_device_state_change(struct sk_buff *, unsigned int, struct drbd_peer_device_state_change *, enum drbd_notification_type type); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/mtip32xx/mtip32xx.c +++ linux-azure-5.4.0/drivers/block/mtip32xx/mtip32xx.c @@ -492,7 +492,8 @@ struct request *req = blk_mq_rq_from_pdu(cmd); cmd->status = status; - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); } /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/block/skd_main.c +++ linux-azure-5.4.0/drivers/block/skd_main.c @@ -1417,7 +1417,8 @@ case SKD_CHECK_STATUS_REPORT_GOOD: case SKD_CHECK_STATUS_REPORT_SMART_ALERT: skreq->status = BLK_STS_OK; - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); break; case SKD_CHECK_STATUS_BUSY_IMMINENT: @@ -1440,7 +1441,8 @@ case SKD_CHECK_STATUS_REPORT_ERROR: default: skreq->status = BLK_STS_IOERR; - blk_mq_complete_request(req); + if (likely(!blk_should_fake_timeout(req->q))) + blk_mq_complete_request(req); break; } } @@ -1560,7 +1562,8 @@ */ if (likely(cmp_status == SAM_STAT_GOOD)) { skreq->status = BLK_STS_OK; - blk_mq_complete_request(rq); + if (likely(!blk_should_fake_timeout(rq->q))) + blk_mq_complete_request(rq); } else { skd_resolve_req_exception(skdev, skreq, rq); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/bluetooth/bfusb.c +++ linux-azure-5.4.0/drivers/bluetooth/bfusb.c @@ -629,6 +629,9 @@ data->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress; data->bulk_pkt_size = le16_to_cpu(bulk_out_ep->desc.wMaxPacketSize); + if (!data->bulk_pkt_size) + goto done; + rwlock_init(&data->lock); data->reassembly = NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/bluetooth/hci_intel.c +++ linux-azure-5.4.0/drivers/bluetooth/hci_intel.c @@ -1230,7 +1230,11 @@ int __init intel_init(void) { - platform_driver_register(&intel_driver); + int err; + + err = platform_driver_register(&intel_driver); + if (err) + return err; return hci_uart_register_proto(&intel_proto); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/Kconfig +++ linux-azure-5.4.0/drivers/char/Kconfig @@ -535,28 +535,41 @@ and SSM (Silicon Secured Memory). Intended consumers of this driver include crash and makedumpfile. -endmenu - config RANDOM_TRUST_CPU - bool "Trust the CPU manufacturer to initialize Linux's CRNG" - depends on X86 || S390 || PPC - default n + bool "Initialize RNG using CPU RNG instructions" + default y + depends on ARCH_RANDOM help - Assume that CPU manufacturer (e.g., Intel or AMD for RDSEED or - RDRAND, IBM for the S390 and Power PC architectures) is trustworthy - for the purposes of initializing Linux's CRNG. Since this is not - something that can be independently audited, this amounts to trusting - that CPU manufacturer (perhaps with the insistence or mandate - of a Nation State's intelligence or law enforcement agencies) - has not installed a hidden back door to compromise the CPU's - random number generation facilities. This can also be configured - at boot with "random.trust_cpu=on/off". + Initialize the RNG using random numbers supplied by the CPU's + RNG instructions (e.g. RDRAND), if supported and available. These + random numbers are never used directly, but are rather hashed into + the main input pool, and this happens regardless of whether or not + this option is enabled. Instead, this option controls whether the + they are credited and hence can initialize the RNG. Additionally, + other sources of randomness are always used, regardless of this + setting. Enabling this implies trusting that the CPU can supply high + quality and non-backdoored random numbers. + + Say Y here unless you have reason to mistrust your CPU or believe + its RNG facilities may be faulty. This may also be configured at + boot time with "random.trust_cpu=on/off". config RANDOM_TRUST_BOOTLOADER - bool "Trust the bootloader to initialize Linux's CRNG" + bool "Initialize RNG using bootloader-supplied seed" + default y help - Some bootloaders can provide entropy to increase the kernel's initial - device randomness. Say Y here to assume the entropy provided by the - booloader is trustworthy so it will be added to the kernel's entropy - pool. Otherwise, say N here so it will be regarded as device input that - only mixes the entropy pool. \ No newline at end of file + Initialize the RNG using a seed supplied by the bootloader or boot + environment (e.g. EFI or a bootloader-generated device tree). This + seed is not used directly, but is rather hashed into the main input + pool, and this happens regardless of whether or not this option is + enabled. Instead, this option controls whether the seed is credited + and hence can initialize the RNG. Additionally, other sources of + randomness are always used, regardless of this setting. Enabling + this implies trusting that the bootloader can supply high quality and + non-backdoored seeds. + + Say Y here unless you have reason to mistrust your bootloader or + believe its RNG facilities may be faulty. This may also be configured + at boot time with "random.trust_bootloader=on/off". + +endmenu only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/agp/parisc-agp.c +++ linux-azure-5.4.0/drivers/char/agp/parisc-agp.c @@ -281,7 +281,7 @@ return 0; } -static int +static int __init lba_find_capability(int cap) { struct _parisc_agp_info *info = &parisc_agp_info; @@ -366,7 +366,7 @@ return error; } -static int +static int __init find_quicksilver(struct device *dev, void *data) { struct parisc_device **lba = data; @@ -378,7 +378,7 @@ return 0; } -static int +static int __init parisc_agp_init(void) { extern struct sba_device *sba_list; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/hw_random/atmel-rng.c +++ linux-azure-5.4.0/drivers/char/hw_random/atmel-rng.c @@ -96,6 +96,7 @@ err_register: clk_disable_unprepare(trng->clk); + atmel_trng_disable(trng); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/hw_random/core.c +++ linux-azure-5.4.0/drivers/char/hw_random/core.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/hw_random/exynos-trng.c +++ linux-azure-5.4.0/drivers/char/hw_random/exynos-trng.c @@ -134,7 +134,7 @@ return PTR_ERR(trng->mem); pm_runtime_enable(&pdev->dev); - ret = pm_runtime_get_sync(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret < 0) { dev_err(&pdev->dev, "Could not get runtime PM.\n"); goto err_pm_get; @@ -167,7 +167,7 @@ clk_disable_unprepare(trng->clk); err_clock: - pm_runtime_put_sync(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); err_pm_get: pm_runtime_disable(&pdev->dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/hw_random/mtk-rng.c +++ linux-azure-5.4.0/drivers/char/hw_random/mtk-rng.c @@ -173,8 +173,13 @@ return mtk_rng_init(&priv->rng); } -static UNIVERSAL_DEV_PM_OPS(mtk_rng_pm_ops, mtk_rng_runtime_suspend, - mtk_rng_runtime_resume, NULL); +static const struct dev_pm_ops mtk_rng_pm_ops = { + SET_RUNTIME_PM_OPS(mtk_rng_runtime_suspend, + mtk_rng_runtime_resume, NULL) + SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, + pm_runtime_force_resume) +}; + #define MTK_RNG_PM_OPS (&mtk_rng_pm_ops) #else /* CONFIG_PM */ #define MTK_RNG_PM_OPS NULL only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/ipmi/ipmi_watchdog.c +++ linux-azure-5.4.0/drivers/char/ipmi/ipmi_watchdog.c @@ -337,13 +337,17 @@ static DECLARE_COMPLETION(msg_wait); static void msg_free_smi(struct ipmi_smi_msg *msg) { - if (atomic_dec_and_test(&msg_tofree)) - complete(&msg_wait); + if (atomic_dec_and_test(&msg_tofree)) { + if (!oops_in_progress) + complete(&msg_wait); + } } static void msg_free_recv(struct ipmi_recv_msg *msg) { - if (atomic_dec_and_test(&msg_tofree)) - complete(&msg_wait); + if (atomic_dec_and_test(&msg_tofree)) { + if (!oops_in_progress) + complete(&msg_wait); + } } static struct ipmi_smi_msg smi_msg = { .done = msg_free_smi @@ -366,16 +370,18 @@ data[0] = 0; WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS); - if ((ipmi_version_major > 1) - || ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) { - /* This is an IPMI 1.5-only feature. */ - data[0] |= WDOG_DONT_STOP_ON_SET; - } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { - /* - * In ipmi 1.0, setting the timer stops the watchdog, we - * need to start it back up again. - */ - hbnow = 1; + if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { + if ((ipmi_version_major > 1) || + ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) { + /* This is an IPMI 1.5-only feature. */ + data[0] |= WDOG_DONT_STOP_ON_SET; + } else { + /* + * In ipmi 1.0, setting the timer stops the watchdog, we + * need to start it back up again. + */ + hbnow = 1; + } } data[1] = 0; @@ -427,8 +433,10 @@ rv = __ipmi_set_timeout(&smi_msg, &recv_msg, &send_heartbeat_now); - if (rv) + if (rv) { + atomic_set(&msg_tofree, 0); return rv; + } wait_for_completion(&msg_wait); @@ -573,6 +581,7 @@ &recv_msg, 1); if (rv) { + atomic_set(&msg_tofree, 0); pr_warn("heartbeat send failure: %d\n", rv); return rv; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/mwave/3780i.h +++ linux-azure-5.4.0/drivers/char/mwave/3780i.h @@ -68,7 +68,7 @@ unsigned char ClockControl:1; /* RW: Clock control: 0=normal, 1=stop 3780i clocks */ unsigned char SoftReset:1; /* RW: Soft reset 0=normal, 1=soft reset active */ unsigned char ConfigMode:1; /* RW: Configuration mode, 0=normal, 1=config mode */ - unsigned char Reserved:5; /* 0: Reserved */ + unsigned short Reserved:13; /* 0: Reserved */ } DSP_ISA_SLAVE_CONTROL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/char/pcmcia/cm4000_cs.c +++ linux-azure-5.4.0/drivers/char/pcmcia/cm4000_cs.c @@ -544,6 +544,10 @@ io_read_num_rec_bytes(iobase, &num_bytes_read); if (num_bytes_read >= 4) { DEBUGP(2, dev, "NumRecBytes = %i\n", num_bytes_read); + if (num_bytes_read > 4) { + rc = -EIO; + goto exit_setprotocol; + } break; } usleep_range(10000, 11000); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/actions/owl-s700.c +++ linux-azure-5.4.0/drivers/clk/actions/owl-s700.c @@ -162,6 +162,7 @@ static struct clk_div_table rmii_div_table[] = { {0, 4}, {1, 10}, + {0, 0} }; /* divider clocks */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/actions/owl-s900.c +++ linux-azure-5.4.0/drivers/clk/actions/owl-s900.c @@ -140,7 +140,7 @@ static struct clk_div_table usb3_mac_div_table[] = { { 1, 2 }, { 2, 3 }, { 3, 4 }, - { 0, 8 }, + { 0, 0 } }; static struct clk_div_table i2s_div_table[] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/at91/clk-generated.c +++ linux-azure-5.4.0/drivers/clk/at91/clk-generated.c @@ -18,8 +18,6 @@ #define GENERATED_MAX_DIV 255 -#define GCK_INDEX_DT_AUDIO_PLL 5 - struct clk_generated { struct clk_hw hw; struct regmap *regmap; @@ -29,7 +27,7 @@ u32 gckdiv; const struct clk_pcr_layout *layout; u8 parent_id; - bool audio_pll_allowed; + int chg_pid; }; #define to_clk_generated(hw) \ @@ -107,9 +105,13 @@ tmp_rate = parent_rate; else tmp_rate = parent_rate / div; + + if (tmp_rate < req->min_rate || tmp_rate > req->max_rate) + return; + tmp_diff = abs(req->rate - tmp_rate); - if (*best_diff < 0 || *best_diff > tmp_diff) { + if (*best_diff < 0 || *best_diff >= tmp_diff) { *best_rate = tmp_rate; *best_diff = tmp_diff; req->best_parent_rate = parent_rate; @@ -129,7 +131,16 @@ int i; u32 div; - for (i = 0; i < clk_hw_get_num_parents(hw) - 1; i++) { + /* do not look for a rate that is outside of our range */ + if (gck->range.max && req->rate > gck->range.max) + req->rate = gck->range.max; + if (gck->range.min && req->rate < gck->range.min) + req->rate = gck->range.min; + + for (i = 0; i < clk_hw_get_num_parents(hw); i++) { + if (gck->chg_pid == i) + continue; + parent = clk_hw_get_parent_by_index(hw, i); if (!parent) continue; @@ -161,10 +172,10 @@ * that the only clks able to modify gck rate are those of audio IPs. */ - if (!gck->audio_pll_allowed) + if (gck->chg_pid < 0) goto end; - parent = clk_hw_get_parent_by_index(hw, GCK_INDEX_DT_AUDIO_PLL); + parent = clk_hw_get_parent_by_index(hw, gck->chg_pid); if (!parent) goto end; @@ -271,8 +282,8 @@ at91_clk_register_generated(struct regmap *regmap, spinlock_t *lock, const struct clk_pcr_layout *layout, const char *name, const char **parent_names, - u8 num_parents, u8 id, bool pll_audio, - const struct clk_range *range) + u8 num_parents, u8 id, + const struct clk_range *range, int chg_pid) { struct clk_generated *gck; struct clk_init_data init; @@ -287,15 +298,16 @@ init.ops = &generated_ops; init.parent_names = parent_names; init.num_parents = num_parents; - init.flags = CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE | - CLK_SET_RATE_PARENT; + init.flags = CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE; + if (chg_pid >= 0) + init.flags |= CLK_SET_RATE_PARENT; gck->id = id; gck->hw.init = &init; gck->regmap = regmap; gck->lock = lock; gck->range = *range; - gck->audio_pll_allowed = pll_audio; + gck->chg_pid = chg_pid; gck->layout = layout; clk_generated_startup(gck); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/at91/dt-compat.c +++ linux-azure-5.4.0/drivers/clk/at91/dt-compat.c @@ -22,6 +22,8 @@ #define SYSTEM_MAX_ID 31 +#define GCK_INDEX_DT_AUDIO_PLL 5 + #ifdef CONFIG_HAVE_AT91_AUDIO_PLL static void __init of_sama5d2_clk_audio_pll_frac_setup(struct device_node *np) { @@ -135,7 +137,7 @@ return; for_each_child_of_node(np, gcknp) { - bool pll_audio = false; + int chg_pid = INT_MIN; if (of_property_read_u32(gcknp, "reg", &id)) continue; @@ -152,12 +154,12 @@ if (of_device_is_compatible(np, "atmel,sama5d2-clk-generated") && (id == GCK_ID_I2S0 || id == GCK_ID_I2S1 || id == GCK_ID_CLASSD)) - pll_audio = true; + chg_pid = GCK_INDEX_DT_AUDIO_PLL; hw = at91_clk_register_generated(regmap, &pmc_pcr_lock, &dt_pcr_layout, name, parent_names, num_parents, - id, pll_audio, &range); + id, &range, chg_pid); if (IS_ERR(hw)) continue; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/at91/pmc.h +++ linux-azure-5.4.0/drivers/clk/at91/pmc.h @@ -118,8 +118,8 @@ at91_clk_register_generated(struct regmap *regmap, spinlock_t *lock, const struct clk_pcr_layout *layout, const char *name, const char **parent_names, - u8 num_parents, u8 id, bool pll_audio, - const struct clk_range *range); + u8 num_parents, u8 id, + const struct clk_range *range, int chg_pid); struct clk_hw * __init at91_clk_register_h32mx(struct regmap *regmap, const char *name, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/bcm/clk-iproc-pll.c +++ linux-azure-5.4.0/drivers/clk/bcm/clk-iproc-pll.c @@ -736,6 +736,7 @@ const char *parent_name; struct iproc_clk *iclk_array; struct clk_hw_onecell_data *clk_data; + const char *clk_name; if (WARN_ON(!pll_ctrl) || WARN_ON(!clk_ctrl)) return; @@ -783,7 +784,12 @@ iclk = &iclk_array[0]; iclk->pll = pll; - init.name = node->name; + ret = of_property_read_string_index(node, "clock-output-names", + 0, &clk_name); + if (WARN_ON(ret)) + goto err_pll_register; + + init.name = clk_name; init.ops = &iproc_pll_ops; init.flags = 0; parent_name = of_clk_get_parent_name(node, 0); @@ -803,13 +809,11 @@ goto err_pll_register; clk_data->hws[0] = &iclk->hw; + parent_name = clk_name; /* now initialize and register all leaf clocks */ for (i = 1; i < num_clks; i++) { - const char *clk_name; - memset(&init, 0, sizeof(init)); - parent_name = node->name; ret = of_property_read_string_index(node, "clock-output-names", i, &clk_name); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/bcm/clk-raspberrypi.c +++ linux-azure-5.4.0/drivers/clk/bcm/clk-raspberrypi.c @@ -113,7 +113,7 @@ RPI_FIRMWARE_ARM_CLK_ID, &val); if (ret) - return ret; + return 0; return val * RPI_FIRMWARE_PLLB_ARM_DIV_RATE; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/berlin/bg2.c +++ linux-azure-5.4.0/drivers/clk/berlin/bg2.c @@ -500,12 +500,15 @@ int n, ret; clk_data = kzalloc(struct_size(clk_data, hws, MAX_CLKS), GFP_KERNEL); - if (!clk_data) + if (!clk_data) { + of_node_put(parent_np); return; + } clk_data->num = MAX_CLKS; hws = clk_data->hws; gbase = of_iomap(parent_np, 0); + of_node_put(parent_np); if (!gbase) return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/berlin/bg2q.c +++ linux-azure-5.4.0/drivers/clk/berlin/bg2q.c @@ -286,19 +286,23 @@ int n, ret; clk_data = kzalloc(struct_size(clk_data, hws, MAX_CLKS), GFP_KERNEL); - if (!clk_data) + if (!clk_data) { + of_node_put(parent_np); return; + } clk_data->num = MAX_CLKS; hws = clk_data->hws; gbase = of_iomap(parent_np, 0); if (!gbase) { + of_node_put(parent_np); pr_err("%pOF: Unable to map global base\n", np); return; } /* BG2Q CPU PLL is not part of global registers */ cpupll_base = of_iomap(parent_np, 1); + of_node_put(parent_np); if (!cpupll_base) { pr_err("%pOF: Unable to map cpupll base\n", np); iounmap(gbase); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/clk-clps711x.c +++ linux-azure-5.4.0/drivers/clk/clk-clps711x.c @@ -28,11 +28,13 @@ { .val = 1, .div = 8, }, { .val = 2, .div = 2, }, { .val = 3, .div = 1, }, + { /* sentinel */ } }; static const struct clk_div_table timer_div_table[] = { { .val = 0, .div = 256, }, { .val = 1, .div = 1, }, + { /* sentinel */ } }; struct clps711x_clk { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/clk-devres.c +++ linux-azure-5.4.0/drivers/clk/clk-devres.c @@ -92,13 +92,20 @@ } EXPORT_SYMBOL_GPL(devm_clk_bulk_get_optional); +static void devm_clk_bulk_release_all(struct device *dev, void *res) +{ + struct clk_bulk_devres *devres = res; + + clk_bulk_put_all(devres->num_clks, devres->clks); +} + int __must_check devm_clk_bulk_get_all(struct device *dev, struct clk_bulk_data **clks) { struct clk_bulk_devres *devres; int ret; - devres = devres_alloc(devm_clk_bulk_release, + devres = devres_alloc(devm_clk_bulk_release_all, sizeof(*devres), GFP_KERNEL); if (!devres) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/clk-oxnas.c +++ linux-azure-5.4.0/drivers/clk/clk-oxnas.c @@ -207,7 +207,7 @@ static int oxnas_stdclk_probe(struct platform_device *pdev) { - struct device_node *np = pdev->dev.of_node; + struct device_node *np = pdev->dev.of_node, *parent_np; const struct oxnas_stdclk_data *data; const struct of_device_id *id; struct regmap *regmap; @@ -219,7 +219,9 @@ return -ENODEV; data = id->data; - regmap = syscon_node_to_regmap(of_get_parent(np)); + parent_np = of_get_parent(np); + regmap = syscon_node_to_regmap(parent_np); + of_node_put(parent_np); if (IS_ERR(regmap)) { dev_err(&pdev->dev, "failed to have parent regmap\n"); return PTR_ERR(regmap); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/clk-si5341.c +++ linux-azure-5.4.0/drivers/clk/clk-si5341.c @@ -304,6 +304,8 @@ { 0x094A, 0x00 }, /* INx_TO_PFD_EN (disabled) */ { 0x0A02, 0x00 }, /* Not in datasheet */ { 0x0B44, 0x0F }, /* PDIV_ENB (datasheet does not mention what it is) */ + { 0x0B57, 0x10 }, /* VCO_RESET_CALCODE (not described in datasheet) */ + { 0x0B58, 0x05 }, /* VCO_RESET_CALCODE (not described in datasheet) */ }; /* Read and interpret a 44-bit followed by a 32-bit value in the regmap */ @@ -482,6 +484,9 @@ SI5341_SYNTH_N_NUM(synth->index), &n_num, &n_den); if (err < 0) return err; + /* Check for bogus/uninitialized settings */ + if (!n_num || !n_den) + return 0; /* * n_num and n_den are shifted left as much as possible, so to prevent @@ -633,6 +638,15 @@ u32 r_divider; u8 r[3]; + err = regmap_read(output->data->regmap, + SI5341_OUT_CONFIG(output), &val); + if (err < 0) + return err; + + /* If SI5341_OUT_CFG_RDIV_FORCE2 is set, r_divider is 2 */ + if (val & SI5341_OUT_CFG_RDIV_FORCE2) + return parent_rate / 2; + err = regmap_bulk_read(output->data->regmap, SI5341_OUT_R_REG(output), r, 3); if (err < 0) @@ -649,13 +663,6 @@ r_divider += 1; r_divider <<= 1; - err = regmap_read(output->data->regmap, - SI5341_OUT_CONFIG(output), &val); - if (err < 0) - return err; - - if (val & SI5341_OUT_CFG_RDIV_FORCE2) - r_divider = 2; return parent_rate / r_divider; } @@ -665,6 +672,9 @@ { unsigned long r; + if (!rate) + return 0; + r = *parent_rate >> 1; /* If rate is an even divisor, no changes to parent required */ @@ -693,11 +703,16 @@ unsigned long parent_rate) { struct clk_si5341_output *output = to_clk_si5341_output(hw); - /* Frequency divider is (r_div + 1) * 2 */ - u32 r_div = (parent_rate / rate) >> 1; + u32 r_div; int err; u8 r[3]; + if (!rate) + return -EINVAL; + + /* Frequency divider is (r_div + 1) * 2 */ + r_div = (parent_rate / rate) >> 1; + if (r_div <= 1) r_div = 0; else if (r_div >= BIT(24)) @@ -924,7 +939,7 @@ { 0x0B25, 0x00 }, { 0x0502, 0x01 }, { 0x0505, 0x03 }, - { 0x0957, 0x1F }, + { 0x0957, 0x17 }, { 0x0B4E, 0x1A }, }; @@ -1290,7 +1305,7 @@ clk_prepare(data->clk[i].hw.clk); } - err = of_clk_add_hw_provider(client->dev.of_node, of_clk_si5341_get, + err = devm_of_clk_add_hw_provider(&client->dev, of_clk_si5341_get, data); if (err) { dev_err(&client->dev, "unable to add clk provider\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/clk-stm32f4.c +++ linux-azure-5.4.0/drivers/clk/clk-stm32f4.c @@ -129,7 +129,6 @@ { STM32F4_RCC_APB2ENR, 20, "spi5", "apb2_div" }, { STM32F4_RCC_APB2ENR, 21, "spi6", "apb2_div" }, { STM32F4_RCC_APB2ENR, 22, "sai1", "apb2_div" }, - { STM32F4_RCC_APB2ENR, 26, "ltdc", "apb2_div" }, }; static const struct stm32f4_gate_data stm32f469_gates[] __initconst = { @@ -211,7 +210,6 @@ { STM32F4_RCC_APB2ENR, 20, "spi5", "apb2_div" }, { STM32F4_RCC_APB2ENR, 21, "spi6", "apb2_div" }, { STM32F4_RCC_APB2ENR, 22, "sai1", "apb2_div" }, - { STM32F4_RCC_APB2ENR, 26, "ltdc", "apb2_div" }, }; static const struct stm32f4_gate_data stm32f746_gates[] __initconst = { @@ -286,7 +284,6 @@ { STM32F4_RCC_APB2ENR, 21, "spi6", "apb2_div" }, { STM32F4_RCC_APB2ENR, 22, "sai1", "apb2_div" }, { STM32F4_RCC_APB2ENR, 23, "sai2", "apb2_div" }, - { STM32F4_RCC_APB2ENR, 26, "ltdc", "apb2_div" }, }; static const struct stm32f4_gate_data stm32f769_gates[] __initconst = { @@ -364,7 +361,6 @@ { STM32F4_RCC_APB2ENR, 21, "spi6", "apb2_div" }, { STM32F4_RCC_APB2ENR, 22, "sai1", "apb2_div" }, { STM32F4_RCC_APB2ENR, 23, "sai2", "apb2_div" }, - { STM32F4_RCC_APB2ENR, 26, "ltdc", "apb2_div" }, { STM32F4_RCC_APB2ENR, 30, "mdio", "apb2_div" }, }; @@ -526,7 +522,7 @@ struct stm32f4_pll_post_div_data { int idx; - u8 pll_num; + int pll_idx; const char *name; const char *parent; u8 flag; @@ -557,13 +553,13 @@ #define MAX_POST_DIV 3 static const struct stm32f4_pll_post_div_data post_div_data[MAX_POST_DIV] = { - { CLK_I2SQ_PDIV, PLL_I2S, "plli2s-q-div", "plli2s-q", + { CLK_I2SQ_PDIV, PLL_VCO_I2S, "plli2s-q-div", "plli2s-q", CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 0, 5, 0, NULL}, - { CLK_SAIQ_PDIV, PLL_SAI, "pllsai-q-div", "pllsai-q", + { CLK_SAIQ_PDIV, PLL_VCO_SAI, "pllsai-q-div", "pllsai-q", CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 8, 5, 0, NULL }, - { NO_IDX, PLL_SAI, "pllsai-r-div", "pllsai-r", CLK_SET_RATE_PARENT, + { NO_IDX, PLL_VCO_SAI, "pllsai-r-div", "pllsai-r", CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 16, 2, 0, post_divr_table }, }; @@ -1774,7 +1770,7 @@ post_div->width, post_div->flag_div, post_div->div_table, - clks[post_div->pll_num], + clks[post_div->pll_idx], &stm32f4_clk_lock); if (post_div->idx != NO_IDX) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/imx/clk-imx6sx.c +++ linux-azure-5.4.0/drivers/clk/imx/clk-imx6sx.c @@ -287,13 +287,13 @@ hws[IMX6SX_CLK_SSI3_SEL] = imx_clk_hw_mux("ssi3_sel", base + 0x1c, 14, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); hws[IMX6SX_CLK_SSI2_SEL] = imx_clk_hw_mux("ssi2_sel", base + 0x1c, 12, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); hws[IMX6SX_CLK_SSI1_SEL] = imx_clk_hw_mux("ssi1_sel", base + 0x1c, 10, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); - hws[IMX6SX_CLK_QSPI1_SEL] = imx_clk_hw_mux_flags("qspi1_sel", base + 0x1c, 7, 3, qspi1_sels, ARRAY_SIZE(qspi1_sels), CLK_SET_RATE_PARENT); + hws[IMX6SX_CLK_QSPI1_SEL] = imx_clk_hw_mux("qspi1_sel", base + 0x1c, 7, 3, qspi1_sels, ARRAY_SIZE(qspi1_sels)); hws[IMX6SX_CLK_PERCLK_SEL] = imx_clk_hw_mux("perclk_sel", base + 0x1c, 6, 1, perclk_sels, ARRAY_SIZE(perclk_sels)); hws[IMX6SX_CLK_VID_SEL] = imx_clk_hw_mux("vid_sel", base + 0x20, 21, 3, vid_sels, ARRAY_SIZE(vid_sels)); hws[IMX6SX_CLK_ESAI_SEL] = imx_clk_hw_mux("esai_sel", base + 0x20, 19, 2, audio_sels, ARRAY_SIZE(audio_sels)); hws[IMX6SX_CLK_CAN_SEL] = imx_clk_hw_mux("can_sel", base + 0x20, 8, 2, can_sels, ARRAY_SIZE(can_sels)); hws[IMX6SX_CLK_UART_SEL] = imx_clk_hw_mux("uart_sel", base + 0x24, 6, 1, uart_sels, ARRAY_SIZE(uart_sels)); - hws[IMX6SX_CLK_QSPI2_SEL] = imx_clk_hw_mux_flags("qspi2_sel", base + 0x2c, 15, 3, qspi2_sels, ARRAY_SIZE(qspi2_sels), CLK_SET_RATE_PARENT); + hws[IMX6SX_CLK_QSPI2_SEL] = imx_clk_hw_mux("qspi2_sel", base + 0x2c, 15, 3, qspi2_sels, ARRAY_SIZE(qspi2_sels)); hws[IMX6SX_CLK_SPDIF_SEL] = imx_clk_hw_mux("spdif_sel", base + 0x30, 20, 2, audio_sels, ARRAY_SIZE(audio_sels)); hws[IMX6SX_CLK_AUDIO_SEL] = imx_clk_hw_mux("audio_sel", base + 0x30, 7, 2, audio_sels, ARRAY_SIZE(audio_sels)); hws[IMX6SX_CLK_ENET_PRE_SEL] = imx_clk_hw_mux("enet_pre_sel", base + 0x34, 15, 3, enet_pre_sels, ARRAY_SIZE(enet_pre_sels)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/imx/clk-imx6ul.c +++ linux-azure-5.4.0/drivers/clk/imx/clk-imx6ul.c @@ -161,7 +161,6 @@ hws[IMX6UL_PLL5_BYPASS] = imx_clk_hw_mux_flags("pll5_bypass", base + 0xa0, 16, 1, pll5_bypass_sels, ARRAY_SIZE(pll5_bypass_sels), CLK_SET_RATE_PARENT); hws[IMX6UL_PLL6_BYPASS] = imx_clk_hw_mux_flags("pll6_bypass", base + 0xe0, 16, 1, pll6_bypass_sels, ARRAY_SIZE(pll6_bypass_sels), CLK_SET_RATE_PARENT); hws[IMX6UL_PLL7_BYPASS] = imx_clk_hw_mux_flags("pll7_bypass", base + 0x20, 16, 1, pll7_bypass_sels, ARRAY_SIZE(pll7_bypass_sels), CLK_SET_RATE_PARENT); - hws[IMX6UL_CLK_CSI_SEL] = imx_clk_hw_mux_flags("csi_sel", base + 0x3c, 9, 2, csi_sels, ARRAY_SIZE(csi_sels), CLK_SET_RATE_PARENT); /* Do not bypass PLLs initially */ clk_set_parent(hws[IMX6UL_PLL1_BYPASS]->clk, hws[IMX6UL_CLK_PLL1]->clk); @@ -270,6 +269,7 @@ hws[IMX6UL_CLK_ECSPI_SEL] = imx_clk_hw_mux("ecspi_sel", base + 0x38, 18, 1, ecspi_sels, ARRAY_SIZE(ecspi_sels)); hws[IMX6UL_CLK_LCDIF_PRE_SEL] = imx_clk_hw_mux_flags("lcdif_pre_sel", base + 0x38, 15, 3, lcdif_pre_sels, ARRAY_SIZE(lcdif_pre_sels), CLK_SET_RATE_PARENT); hws[IMX6UL_CLK_LCDIF_SEL] = imx_clk_hw_mux("lcdif_sel", base + 0x38, 9, 3, lcdif_sels, ARRAY_SIZE(lcdif_sels)); + hws[IMX6UL_CLK_CSI_SEL] = imx_clk_hw_mux("csi_sel", base + 0x3c, 9, 2, csi_sels, ARRAY_SIZE(csi_sels)); hws[IMX6UL_CLK_LDB_DI0_DIV_SEL] = imx_clk_hw_mux("ldb_di0", base + 0x20, 10, 1, ldb_di0_div_sels, ARRAY_SIZE(ldb_di0_div_sels)); hws[IMX6UL_CLK_LDB_DI1_DIV_SEL] = imx_clk_hw_mux("ldb_di1", base + 0x20, 11, 1, ldb_di1_div_sels, ARRAY_SIZE(ldb_di1_div_sels)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/imx/clk-imx7d.c +++ linux-azure-5.4.0/drivers/clk/imx/clk-imx7d.c @@ -859,7 +859,6 @@ hws[IMX7D_WDOG4_ROOT_CLK] = imx_clk_hw_gate4("wdog4_root_clk", "wdog_post_div", base + 0x49f0, 0); hws[IMX7D_KPP_ROOT_CLK] = imx_clk_hw_gate4("kpp_root_clk", "ipg_root_clk", base + 0x4aa0, 0); hws[IMX7D_CSI_MCLK_ROOT_CLK] = imx_clk_hw_gate4("csi_mclk_root_clk", "csi_mclk_post_div", base + 0x4490, 0); - hws[IMX7D_AUDIO_MCLK_ROOT_CLK] = imx_clk_hw_gate4("audio_mclk_root_clk", "audio_mclk_post_div", base + 0x4790, 0); hws[IMX7D_WRCLK_ROOT_CLK] = imx_clk_hw_gate4("wrclk_root_clk", "wrclk_post_div", base + 0x47a0, 0); hws[IMX7D_USB_CTRL_CLK] = imx_clk_hw_gate4("usb_ctrl_clk", "ahb_root_clk", base + 0x4680, 0); hws[IMX7D_USB_PHY1_CLK] = imx_clk_hw_gate4("usb_phy1_clk", "pll_usb1_main_clk", base + 0x46a0, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/imx/clk-imx8mn.c +++ linux-azure-5.4.0/drivers/clk/imx/clk-imx8mn.c @@ -358,9 +358,9 @@ static const char * const imx8mn_dram_core_sels[] = {"dram_pll_out", "dram_alt_root", }; -static const char * const imx8mn_clko1_sels[] = {"osc_24m", "sys_pll1_800m", "osc_27m", - "sys_pll1_200m", "audio_pll2_out", "vpu_pll", - "sys_pll1_80m", }; +static const char * const imx8mn_clko1_sels[] = {"osc_24m", "sys_pll1_800m", "dummy", + "sys_pll1_200m", "audio_pll2_out", "sys_pll2_500m", + "dummy", "sys_pll1_80m", }; static const char * const imx8mn_clko2_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll1_400m", "sys_pll2_166m", "sys_pll3_out", "audio_pll1_out", "video_pll1_out", "osc_32k", }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/ingenic/jz4725b-cgu.c +++ linux-azure-5.4.0/drivers/clk/ingenic/jz4725b-cgu.c @@ -135,11 +135,10 @@ }, [JZ4725B_CLK_I2S] = { - "i2s", CGU_CLK_MUX | CGU_CLK_DIV | CGU_CLK_GATE, + "i2s", CGU_CLK_MUX | CGU_CLK_DIV, .parents = { JZ4725B_CLK_EXT, JZ4725B_CLK_PLL_HALF, -1, -1 }, .mux = { CGU_REG_CPCCR, 31, 1 }, .div = { CGU_REG_I2SCDR, 0, 1, 9, -1, -1, -1 }, - .gate = { CGU_REG_CLKGR, 6 }, }, [JZ4725B_CLK_SPI] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/loongson1/clk-loongson1c.c +++ linux-azure-5.4.0/drivers/clk/loongson1/clk-loongson1c.c @@ -37,6 +37,7 @@ [1] = { .val = 1, .div = 4 }, [2] = { .val = 2, .div = 3 }, [3] = { .val = 3, .div = 3 }, + [4] = { /* sentinel */ } }; void __init ls1x_clk_init(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/mediatek/clk-mt8183-mfgcfg.c +++ linux-azure-5.4.0/drivers/clk/mediatek/clk-mt8183-mfgcfg.c @@ -18,9 +18,9 @@ .sta_ofs = 0x0, }; -#define GATE_MFG(_id, _name, _parent, _shift) \ - GATE_MTK(_id, _name, _parent, &mfg_cg_regs, _shift, \ - &mtk_clk_gate_ops_setclr) +#define GATE_MFG(_id, _name, _parent, _shift) \ + GATE_MTK_FLAGS(_id, _name, _parent, &mfg_cg_regs, _shift, \ + &mtk_clk_gate_ops_setclr, CLK_SET_RATE_PARENT) static const struct mtk_gate mfg_clks[] = { GATE_MFG(CLK_MFG_BG3D, "mfg_bg3d", "mfg_sel", 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/mediatek/reset.c +++ linux-azure-5.4.0/drivers/clk/mediatek/reset.c @@ -25,7 +25,7 @@ struct mtk_reset *data = container_of(rcdev, struct mtk_reset, rcdev); unsigned int reg = data->regofs + ((id / 32) << 4); - return regmap_write(data->regmap, reg, 1); + return regmap_write(data->regmap, reg, BIT(id % 32)); } static int mtk_reset_deassert_set_clr(struct reset_controller_dev *rcdev, @@ -34,7 +34,7 @@ struct mtk_reset *data = container_of(rcdev, struct mtk_reset, rcdev); unsigned int reg = data->regofs + ((id / 32) << 4) + 0x4; - return regmap_write(data->regmap, reg, 1); + return regmap_write(data->regmap, reg, BIT(id % 32)); } static int mtk_reset_assert(struct reset_controller_dev *rcdev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/meson/gxbb.c +++ linux-azure-5.4.0/drivers/clk/meson/gxbb.c @@ -719,6 +719,35 @@ .width = 14, }, .sdm_en = { + .reg_off = HHI_MPLL_CNTL, + .shift = 25, + .width = 1, + }, + .n2 = { + .reg_off = HHI_MPLL_CNTL7, + .shift = 16, + .width = 9, + }, + .lock = &meson_clk_lock, + }, + .hw.init = &(struct clk_init_data){ + .name = "mpll0_div", + .ops = &meson_clk_mpll_ops, + .parent_hws = (const struct clk_hw *[]) { + &gxbb_mpll_prediv.hw + }, + .num_parents = 1, + }, +}; + +static struct clk_regmap gxl_mpll0_div = { + .data = &(struct meson_clk_mpll_data){ + .sdm = { + .reg_off = HHI_MPLL_CNTL7, + .shift = 0, + .width = 14, + }, + .sdm_en = { .reg_off = HHI_MPLL_CNTL7, .shift = 15, .width = 1, @@ -748,7 +777,16 @@ .hw.init = &(struct clk_init_data){ .name = "mpll0", .ops = &clk_regmap_gate_ops, - .parent_hws = (const struct clk_hw *[]) { &gxbb_mpll0_div.hw }, + .parent_data = &(const struct clk_parent_data) { + /* + * Note: + * GXL and GXBB have different SDM_EN registers. We + * fallback to the global naming string mechanism so + * mpll0_div picks up the appropriate one. + */ + .name = "mpll0_div", + .index = -1, + }, .num_parents = 1, .flags = CLK_SET_RATE_PARENT, }, @@ -3036,7 +3074,7 @@ [CLKID_VAPB_1] = &gxbb_vapb_1.hw, [CLKID_VAPB_SEL] = &gxbb_vapb_sel.hw, [CLKID_VAPB] = &gxbb_vapb.hw, - [CLKID_MPLL0_DIV] = &gxbb_mpll0_div.hw, + [CLKID_MPLL0_DIV] = &gxl_mpll0_div.hw, [CLKID_MPLL1_DIV] = &gxbb_mpll1_div.hw, [CLKID_MPLL2_DIV] = &gxbb_mpll2_div.hw, [CLKID_MPLL_PREDIV] = &gxbb_mpll_prediv.hw, @@ -3430,7 +3468,7 @@ &gxbb_mpll0, &gxbb_mpll1, &gxbb_mpll2, - &gxbb_mpll0_div, + &gxl_mpll0_div, &gxbb_mpll1_div, &gxbb_mpll2_div, &gxbb_cts_amclk_div, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/meson/meson-aoclk.c +++ linux-azure-5.4.0/drivers/clk/meson/meson-aoclk.c @@ -36,6 +36,7 @@ struct meson_aoclk_reset_controller *rstc; struct meson_aoclk_data *data; struct device *dev = &pdev->dev; + struct device_node *np; struct regmap *regmap; int ret, clkid; @@ -47,7 +48,9 @@ if (!rstc) return -ENOMEM; - regmap = syscon_node_to_regmap(of_get_parent(dev->of_node)); + np = of_get_parent(dev->of_node); + regmap = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(regmap)) { dev_err(dev, "failed to get regmap\n"); return PTR_ERR(regmap); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/meson/meson-eeclk.c +++ linux-azure-5.4.0/drivers/clk/meson/meson-eeclk.c @@ -17,6 +17,7 @@ { const struct meson_eeclkc_data *data; struct device *dev = &pdev->dev; + struct device_node *np; struct regmap *map; int ret, i; @@ -25,7 +26,9 @@ return -EINVAL; /* Get the hhi system controller node */ - map = syscon_node_to_regmap(of_get_parent(dev->of_node)); + np = of_get_parent(dev->of_node); + map = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(map)) { dev_err(dev, "failed to get HHI regmap\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/mvebu/ap-cpu-clk.c +++ linux-azure-5.4.0/drivers/clk/mvebu/ap-cpu-clk.c @@ -256,12 +256,15 @@ int cpu, err; err = of_property_read_u32(dn, "reg", &cpu); - if (WARN_ON(err)) + if (WARN_ON(err)) { + of_node_put(dn); return err; + } /* If cpu2 or cpu3 is enabled */ if (cpu & APN806_CLUSTER_NUM_MASK) { nclusters = 2; + of_node_put(dn); break; } } @@ -288,8 +291,10 @@ int cpu, err; err = of_property_read_u32(dn, "reg", &cpu); - if (WARN_ON(err)) + if (WARN_ON(err)) { + of_node_put(dn); return err; + } cluster_index = cpu & APN806_CLUSTER_NUM_MASK; cluster_index >>= APN806_CLUSTER_NUM_OFFSET; @@ -301,6 +306,7 @@ parent = of_clk_get(np, cluster_index); if (IS_ERR(parent)) { dev_err(dev, "Could not get the clock parent\n"); + of_node_put(dn); return -EINVAL; } parent_name = __clk_get_name(parent); @@ -319,8 +325,10 @@ init.parent_names = &parent_name; ret = devm_clk_hw_register(dev, &ap_cpu_clk[cluster_index].hw); - if (ret) + if (ret) { + of_node_put(dn); return ret; + } ap_cpu_data->hws[cluster_index] = &ap_cpu_clk[cluster_index].hw; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/mvebu/kirkwood.c +++ linux-azure-5.4.0/drivers/clk/mvebu/kirkwood.c @@ -265,6 +265,7 @@ static const struct clk_muxing_soc_desc kirkwood_mux_desc[] __initconst = { { "powersave", powersave_parents, ARRAY_SIZE(powersave_parents), 11, 1, 0 }, + { } }; static struct clk *clk_muxing_get_src( only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/camcc-sdm845.c +++ linux-azure-5.4.0/drivers/clk/qcom/camcc-sdm845.c @@ -1521,6 +1521,8 @@ }, }; +static struct gdsc titan_top_gdsc; + static struct gdsc bps_gdsc = { .gdscr = 0x6004, .pd = { @@ -1554,6 +1556,7 @@ .name = "ife_0_gdsc", }, .flags = POLL_CFG_GDSCR, + .parent = &titan_top_gdsc.pd, .pwrsts = PWRSTS_OFF_ON, }; @@ -1563,6 +1566,7 @@ .name = "ife_1_gdsc", }, .flags = POLL_CFG_GDSCR, + .parent = &titan_top_gdsc.pd, .pwrsts = PWRSTS_OFF_ON, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/clk-krait.c +++ linux-azure-5.4.0/drivers/clk/qcom/clk-krait.c @@ -32,11 +32,16 @@ regval |= (sel & mux->mask) << (mux->shift + LPL_SHIFT); } krait_set_l2_indirect_reg(mux->offset, regval); - spin_unlock_irqrestore(&krait_clock_reg_lock, flags); /* Wait for switch to complete. */ mb(); udelay(1); + + /* + * Unlock now to make sure the mux register is not + * modified while switching to the new parent. + */ + spin_unlock_irqrestore(&krait_clock_reg_lock, flags); } static int krait_mux_set_parent(struct clk_hw *hw, u8 index) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/clk-regmap-mux.c +++ linux-azure-5.4.0/drivers/clk/qcom/clk-regmap-mux.c @@ -28,7 +28,7 @@ val &= mask; if (mux->parent_map) - return qcom_find_src_index(hw, mux->parent_map, val); + return qcom_find_cfg_index(hw, mux->parent_map, val); return val; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/common.h +++ linux-azure-5.4.0/drivers/clk/qcom/common.h @@ -49,6 +49,8 @@ qcom_pll_set_fsm_mode(struct regmap *m, u32 reg, u8 bias_count, u8 lock_count); extern int qcom_find_src_index(struct clk_hw *hw, const struct parent_map *map, u8 src); +extern int qcom_find_cfg_index(struct clk_hw *hw, const struct parent_map *map, + u8 cfg); extern int qcom_cc_register_board_clk(struct device *dev, const char *path, const char *name, unsigned long rate); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/gcc-ipq8074.c +++ linux-azure-5.4.0/drivers/clk/qcom/gcc-ipq8074.c @@ -667,6 +667,7 @@ }, .num_parents = 1, .ops = &clk_branch2_ops, + .flags = CLK_IS_CRITICAL, }, }, }; @@ -1074,7 +1075,7 @@ .name = "sdcc1_apps_clk_src", .parent_names = gcc_xo_gpll0_gpll2_gpll0_out_main_div2, .num_parents = 4, - .ops = &clk_rcg2_ops, + .ops = &clk_rcg2_floor_ops, }, }; @@ -1788,8 +1789,10 @@ static const struct freq_tbl ftbl_nss_port5_rx_clk_src[] = { F(19200000, P_XO, 1, 0, 0), F(25000000, P_UNIPHY1_RX, 12.5, 0, 0), + F(25000000, P_UNIPHY0_RX, 5, 0, 0), F(78125000, P_UNIPHY1_RX, 4, 0, 0), F(125000000, P_UNIPHY1_RX, 2.5, 0, 0), + F(125000000, P_UNIPHY0_RX, 1, 0, 0), F(156250000, P_UNIPHY1_RX, 2, 0, 0), F(312500000, P_UNIPHY1_RX, 1, 0, 0), { } @@ -1828,8 +1831,10 @@ static const struct freq_tbl ftbl_nss_port5_tx_clk_src[] = { F(19200000, P_XO, 1, 0, 0), F(25000000, P_UNIPHY1_TX, 12.5, 0, 0), + F(25000000, P_UNIPHY0_TX, 5, 0, 0), F(78125000, P_UNIPHY1_TX, 4, 0, 0), F(125000000, P_UNIPHY1_TX, 2.5, 0, 0), + F(125000000, P_UNIPHY0_TX, 1, 0, 0), F(156250000, P_UNIPHY1_TX, 2, 0, 0), F(312500000, P_UNIPHY1_TX, 1, 0, 0), { } @@ -1867,8 +1872,10 @@ static const struct freq_tbl ftbl_nss_port6_rx_clk_src[] = { F(19200000, P_XO, 1, 0, 0), + F(25000000, P_UNIPHY2_RX, 5, 0, 0), F(25000000, P_UNIPHY2_RX, 12.5, 0, 0), F(78125000, P_UNIPHY2_RX, 4, 0, 0), + F(125000000, P_UNIPHY2_RX, 1, 0, 0), F(125000000, P_UNIPHY2_RX, 2.5, 0, 0), F(156250000, P_UNIPHY2_RX, 2, 0, 0), F(312500000, P_UNIPHY2_RX, 1, 0, 0), @@ -1907,8 +1914,10 @@ static const struct freq_tbl ftbl_nss_port6_tx_clk_src[] = { F(19200000, P_XO, 1, 0, 0), + F(25000000, P_UNIPHY2_TX, 5, 0, 0), F(25000000, P_UNIPHY2_TX, 12.5, 0, 0), F(78125000, P_UNIPHY2_TX, 4, 0, 0), + F(125000000, P_UNIPHY2_TX, 1, 0, 0), F(125000000, P_UNIPHY2_TX, 2.5, 0, 0), F(156250000, P_UNIPHY2_TX, 2, 0, 0), F(312500000, P_UNIPHY2_TX, 1, 0, 0), @@ -3346,6 +3355,7 @@ static struct clk_branch gcc_ubi0_ahb_clk = { .halt_reg = 0x6820c, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x6820c, .enable_mask = BIT(0), @@ -3363,6 +3373,7 @@ static struct clk_branch gcc_ubi0_axi_clk = { .halt_reg = 0x68200, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68200, .enable_mask = BIT(0), @@ -3380,6 +3391,7 @@ static struct clk_branch gcc_ubi0_nc_axi_clk = { .halt_reg = 0x68204, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68204, .enable_mask = BIT(0), @@ -3397,6 +3409,7 @@ static struct clk_branch gcc_ubi0_core_clk = { .halt_reg = 0x68210, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68210, .enable_mask = BIT(0), @@ -3414,6 +3427,7 @@ static struct clk_branch gcc_ubi0_mpt_clk = { .halt_reg = 0x68208, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68208, .enable_mask = BIT(0), @@ -3431,6 +3445,7 @@ static struct clk_branch gcc_ubi1_ahb_clk = { .halt_reg = 0x6822c, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x6822c, .enable_mask = BIT(0), @@ -3448,6 +3463,7 @@ static struct clk_branch gcc_ubi1_axi_clk = { .halt_reg = 0x68220, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68220, .enable_mask = BIT(0), @@ -3465,6 +3481,7 @@ static struct clk_branch gcc_ubi1_nc_axi_clk = { .halt_reg = 0x68224, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68224, .enable_mask = BIT(0), @@ -3482,6 +3499,7 @@ static struct clk_branch gcc_ubi1_core_clk = { .halt_reg = 0x68230, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68230, .enable_mask = BIT(0), @@ -3499,6 +3517,7 @@ static struct clk_branch gcc_ubi1_mpt_clk = { .halt_reg = 0x68228, + .halt_check = BRANCH_HALT_DELAY, .clkr = { .enable_reg = 0x68228, .enable_mask = BIT(0), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/gcc-msm8994.c +++ linux-azure-5.4.0/drivers/clk/qcom/gcc-msm8994.c @@ -107,6 +107,7 @@ static struct clk_alpha_pll_postdiv gpll4 = { .offset = 0x1dc0, + .width = 4, .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_DEFAULT], .clkr.hw.init = &(struct clk_init_data) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/gcc-msm8996.c +++ linux-azure-5.4.0/drivers/clk/qcom/gcc-msm8996.c @@ -2937,20 +2937,6 @@ }, }; -static struct clk_branch gcc_aggre1_pnoc_ahb_clk = { - .halt_reg = 0x82014, - .clkr = { - .enable_reg = 0x82014, - .enable_mask = BIT(0), - .hw.init = &(struct clk_init_data){ - .name = "gcc_aggre1_pnoc_ahb_clk", - .parent_names = (const char *[]){ "periph_noc_clk_src" }, - .num_parents = 1, - .ops = &clk_branch2_ops, - }, - }, -}; - static struct clk_branch gcc_aggre2_ufs_axi_clk = { .halt_reg = 0x83014, .clkr = { @@ -3453,7 +3439,6 @@ [GCC_AGGRE0_CNOC_AHB_CLK] = &gcc_aggre0_cnoc_ahb_clk.clkr, [GCC_SMMU_AGGRE0_AXI_CLK] = &gcc_smmu_aggre0_axi_clk.clkr, [GCC_SMMU_AGGRE0_AHB_CLK] = &gcc_smmu_aggre0_ahb_clk.clkr, - [GCC_AGGRE1_PNOC_AHB_CLK] = &gcc_aggre1_pnoc_ahb_clk.clkr, [GCC_AGGRE2_UFS_AXI_CLK] = &gcc_aggre2_ufs_axi_clk.clkr, [GCC_AGGRE2_USB3_AXI_CLK] = &gcc_aggre2_usb3_axi_clk.clkr, [GCC_QSPI_AHB_CLK] = &gcc_qspi_ahb_clk.clkr, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/gdsc.c +++ linux-azure-5.4.0/drivers/clk/qcom/gdsc.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * Copyright (c) 2015, 2017-2018, The Linux Foundation. All rights reserved. + * Copyright (c) 2015, 2017-2018, 2022, The Linux Foundation. All rights reserved. */ #include @@ -31,9 +31,14 @@ #define CFG_GDSCR_OFFSET 0x4 /* Wait 2^n CXO cycles between all states. Here, n=2 (4 cycles). */ -#define EN_REST_WAIT_VAL (0x2 << 20) -#define EN_FEW_WAIT_VAL (0x8 << 16) -#define CLK_DIS_WAIT_VAL (0x2 << 12) +#define EN_REST_WAIT_VAL 0x2 +#define EN_FEW_WAIT_VAL 0x8 +#define CLK_DIS_WAIT_VAL 0x2 + +/* Transition delay shifts */ +#define EN_REST_WAIT_SHIFT 20 +#define EN_FEW_WAIT_SHIFT 16 +#define CLK_DIS_WAIT_SHIFT 12 #define RETAIN_MEM BIT(14) #define RETAIN_PERIPH BIT(13) @@ -308,7 +313,18 @@ */ mask = HW_CONTROL_MASK | SW_OVERRIDE_MASK | EN_REST_WAIT_MASK | EN_FEW_WAIT_MASK | CLK_DIS_WAIT_MASK; - val = EN_REST_WAIT_VAL | EN_FEW_WAIT_VAL | CLK_DIS_WAIT_VAL; + + if (!sc->en_rest_wait_val) + sc->en_rest_wait_val = EN_REST_WAIT_VAL; + if (!sc->en_few_wait_val) + sc->en_few_wait_val = EN_FEW_WAIT_VAL; + if (!sc->clk_dis_wait_val) + sc->clk_dis_wait_val = CLK_DIS_WAIT_VAL; + + val = sc->en_rest_wait_val << EN_REST_WAIT_SHIFT | + sc->en_few_wait_val << EN_FEW_WAIT_SHIFT | + sc->clk_dis_wait_val << CLK_DIS_WAIT_SHIFT; + ret = regmap_update_bits(sc->regmap, sc->gdscr, mask, val); if (ret) return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/qcom/gdsc.h +++ linux-azure-5.4.0/drivers/clk/qcom/gdsc.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ /* - * Copyright (c) 2015, 2017-2018, The Linux Foundation. All rights reserved. + * Copyright (c) 2015, 2017-2018, 2022, The Linux Foundation. All rights reserved. */ #ifndef __QCOM_GDSC_H__ @@ -21,6 +21,9 @@ * @cxcs: offsets of branch registers to toggle mem/periph bits in * @cxc_count: number of @cxcs * @pwrsts: Possible powerdomain power states + * @en_rest_wait_val: transition delay value for receiving enr ack signal + * @en_few_wait_val: transition delay value for receiving enf ack signal + * @clk_dis_wait_val: transition delay value for halting clock * @resets: ids of resets associated with this gdsc * @reset_count: number of @resets * @rcdev: reset controller @@ -34,6 +37,9 @@ unsigned int clamp_io_ctrl; unsigned int *cxcs; unsigned int cxc_count; + unsigned int en_rest_wait_val; + unsigned int en_few_wait_val; + unsigned int clk_dis_wait_val; const u8 pwrsts; /* Powerdomain allowable state bitfields */ #define PWRSTS_OFF BIT(0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/renesas/r8a77995-cpg-mssr.c +++ linux-azure-5.4.0/drivers/clk/renesas/r8a77995-cpg-mssr.c @@ -75,6 +75,7 @@ DEF_RATE(".oco", CLK_OCO, 8 * 1000 * 1000), /* Core Clock Outputs */ + DEF_FIXED("za2", R8A77995_CLK_ZA2, CLK_PLL0D3, 2, 1), DEF_FIXED("z2", R8A77995_CLK_Z2, CLK_PLL0D3, 1, 1), DEF_FIXED("ztr", R8A77995_CLK_ZTR, CLK_PLL1, 6, 1), DEF_FIXED("zt", R8A77995_CLK_ZT, CLK_PLL1, 4, 1), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/rockchip/clk-rk3188.c +++ linux-azure-5.4.0/drivers/clk/rockchip/clk-rk3188.c @@ -751,6 +751,7 @@ "pclk_peri", "hclk_cpubus", "hclk_vio_bus", + "sclk_mac_lbtest", }; static struct rockchip_clk_provider *__init rk3188_common_clk_init(struct device_node *np) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/sunxi/clk-sun9i-mmc.c +++ linux-azure-5.4.0/drivers/clk/sunxi/clk-sun9i-mmc.c @@ -109,6 +109,8 @@ spin_lock_init(&data->lock); r = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!r) + return -EINVAL; /* one clock/reset pair per word */ count = DIV_ROUND_UP((resource_size(r)), SUN9I_MMC_WIDTH); data->membase = devm_ioremap_resource(&pdev->dev, r); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/tegra/clk-emc.c +++ linux-azure-5.4.0/drivers/clk/tegra/clk-emc.c @@ -191,6 +191,7 @@ tegra->emc = platform_get_drvdata(pdev); if (!tegra->emc) { + put_device(&pdev->dev); pr_err("%s: cannot find EMC driver\n", __func__); return NULL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/tegra/clk-tegra114.c +++ linux-azure-5.4.0/drivers/clk/tegra/clk-tegra114.c @@ -1337,6 +1337,7 @@ } pmc_base = of_iomap(node, 0); + of_node_put(node); if (!pmc_base) { pr_err("Can't map pmc registers\n"); WARN_ON(1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/tegra/clk-tegra20.c +++ linux-azure-5.4.0/drivers/clk/tegra/clk-tegra20.c @@ -1151,6 +1151,7 @@ } pmc_base = of_iomap(node, 0); + of_node_put(node); if (!pmc_base) { pr_err("Can't map pmc registers\n"); BUG(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/tegra/clk-tegra210.c +++ linux-azure-5.4.0/drivers/clk/tegra/clk-tegra210.c @@ -3523,6 +3523,7 @@ } pmc_base = of_iomap(node, 0); + of_node_put(node); if (!pmc_base) { pr_err("Can't map pmc registers\n"); WARN_ON(1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/ti/clk-dra7-atl.c +++ linux-azure-5.4.0/drivers/clk/ti/clk-dra7-atl.c @@ -252,14 +252,16 @@ if (rc) { pr_err("%s: failed to lookup atl clock %d\n", __func__, i); - return -EINVAL; + ret = -EINVAL; + goto pm_put; } clk = of_clk_get_from_provider(&clkspec); if (IS_ERR(clk)) { pr_err("%s: failed to get atl clock %d from provider\n", __func__, i); - return PTR_ERR(clk); + ret = PTR_ERR(clk); + goto pm_put; } cdesc = to_atl_desc(__clk_get_hw(clk)); @@ -292,8 +294,9 @@ if (cdesc->enabled) atl_clk_enable(__clk_get_hw(clk)); } - pm_runtime_put_sync(cinfo->dev); +pm_put: + pm_runtime_put_sync(cinfo->dev); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clk/uniphier/clk-uniphier-fixed-rate.c +++ linux-azure-5.4.0/drivers/clk/uniphier/clk-uniphier-fixed-rate.c @@ -24,6 +24,7 @@ init.name = name; init.ops = &clk_fixed_rate_ops; + init.flags = 0; init.parent_names = NULL; init.num_parents = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clocksource/acpi_pm.c +++ linux-azure-5.4.0/drivers/clocksource/acpi_pm.c @@ -229,8 +229,10 @@ int ret; ret = kstrtouint(arg, 16, &base); - if (ret) - return ret; + if (ret) { + pr_warn("PMTMR: invalid 'pmtmr=' value: '%s'\n", arg); + return 1; + } pr_info("PMTMR IOPort override: 0x%04x -> 0x%04x\n", pmtmr_ioport, base); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clocksource/sh_cmt.c +++ linux-azure-5.4.0/drivers/clocksource/sh_cmt.c @@ -568,7 +568,8 @@ ch->flags |= flag; /* setup timeout if no clockevent */ - if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT))) + if (ch->cmt->num_channels == 1 && + flag == FLAG_CLOCKSOURCE && (!(ch->flags & FLAG_CLOCKEVENT))) __sh_cmt_set_next(ch, ch->max_match_value); out: raw_spin_unlock_irqrestore(&ch->lock, flags); @@ -604,20 +605,25 @@ static u64 sh_cmt_clocksource_read(struct clocksource *cs) { struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); - unsigned long flags; u32 has_wrapped; - u64 value; - u32 raw; - raw_spin_lock_irqsave(&ch->lock, flags); - value = ch->total_cycles; - raw = sh_cmt_get_counter(ch, &has_wrapped); + if (ch->cmt->num_channels == 1) { + unsigned long flags; + u64 value; + u32 raw; + + raw_spin_lock_irqsave(&ch->lock, flags); + value = ch->total_cycles; + raw = sh_cmt_get_counter(ch, &has_wrapped); + + if (unlikely(has_wrapped)) + raw += ch->match_value + 1; + raw_spin_unlock_irqrestore(&ch->lock, flags); - if (unlikely(has_wrapped)) - raw += ch->match_value + 1; - raw_spin_unlock_irqrestore(&ch->lock, flags); + return value + raw; + } - return value + raw; + return sh_cmt_get_counter(ch, &has_wrapped); } static int sh_cmt_clocksource_enable(struct clocksource *cs) @@ -680,7 +686,7 @@ cs->disable = sh_cmt_clocksource_disable; cs->suspend = sh_cmt_clocksource_suspend; cs->resume = sh_cmt_clocksource_resume; - cs->mask = CLOCKSOURCE_MASK(sizeof(u64) * 8); + cs->mask = CLOCKSOURCE_MASK(ch->cmt->info->width); cs->flags = CLOCK_SOURCE_IS_CONTINUOUS; dev_info(&ch->cmt->pdev->dev, "ch%u: used as clock source\n", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clocksource/timer-ixp4xx.c +++ linux-azure-5.4.0/drivers/clocksource/timer-ixp4xx.c @@ -258,7 +258,6 @@ } ixp4xx_timer_register(base, timer_irq, timer_freq); } -EXPORT_SYMBOL_GPL(ixp4xx_timer_setup); #ifdef CONFIG_OF static __init int ixp4xx_of_timer_init(struct device_node *np) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clocksource/timer-oxnas-rps.c +++ linux-azure-5.4.0/drivers/clocksource/timer-oxnas-rps.c @@ -236,7 +236,7 @@ } rps->irq = irq_of_parse_and_map(np, 0); - if (rps->irq < 0) { + if (!rps->irq) { ret = -EINVAL; goto err_iomap; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/clocksource/timer-sp804.c +++ linux-azure-5.4.0/drivers/clocksource/timer-sp804.c @@ -215,6 +215,11 @@ struct clk *clk1, *clk2; const char *name = of_get_property(np, "compatible", NULL); + if (initialized) { + pr_debug("%pOF: skipping further SP804 timer device\n", np); + return 0; + } + base = of_iomap(np, 0); if (!base) return -ENXIO; @@ -223,11 +228,6 @@ writel(0, base + TIMER_CTRL); writel(0, base + TIMER_2_BASE + TIMER_CTRL); - if (initialized || !of_device_is_available(np)) { - ret = -EINVAL; - goto err; - } - clk1 = of_clk_get(np, 0); if (IS_ERR(clk1)) clk1 = NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/cpufreq/amd_freq_sensitivity.c +++ linux-azure-5.4.0/drivers/cpufreq/amd_freq_sensitivity.c @@ -18,6 +18,7 @@ #include #include +#include #include "cpufreq_ondemand.h" only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/cpufreq/cpufreq_governor_attr_set.c +++ linux-azure-5.4.0/drivers/cpufreq/cpufreq_governor_attr_set.c @@ -74,8 +74,8 @@ if (count) return count; - kobject_put(&attr_set->kobj); mutex_destroy(&attr_set->update_lock); + kobject_put(&attr_set->kobj); return 0; } EXPORT_SYMBOL_GPL(gov_attr_set_put); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/cpufreq/pmac32-cpufreq.c +++ linux-azure-5.4.0/drivers/cpufreq/pmac32-cpufreq.c @@ -471,6 +471,10 @@ if (slew_done_gpio_np) slew_done_gpio = read_gpio(slew_done_gpio_np); + of_node_put(volt_gpio_np); + of_node_put(freq_gpio_np); + of_node_put(slew_done_gpio_np); + /* If we use the frequency GPIOs, calculate the min/max speeds based * on the bus frequencies */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/caam/caampkc.c +++ linux-azure-5.4.0/drivers/crypto/caam/caampkc.c @@ -1087,16 +1087,27 @@ int caam_pkc_init(struct device *ctrldev) { struct caam_drv_private *priv = dev_get_drvdata(ctrldev); - u32 pk_inst; + u32 pk_inst, pkha; int err; init_done = false; /* Determine public key hardware accelerator presence. */ - if (priv->era < 10) + if (priv->era < 10) { pk_inst = (rd_reg32(&priv->ctrl->perfmon.cha_num_ls) & CHA_ID_LS_PK_MASK) >> CHA_ID_LS_PK_SHIFT; - else - pk_inst = rd_reg32(&priv->ctrl->vreg.pkha) & CHA_VER_NUM_MASK; + } else { + pkha = rd_reg32(&priv->ctrl->vreg.pkha); + pk_inst = pkha & CHA_VER_NUM_MASK; + + /* + * Newer CAAMs support partially disabled functionality. If this is the + * case, the number is non-zero, but this bit is set to indicate that + * no encryption or decryption is supported. Only signing and verifying + * is supported. + */ + if (pkha & CHA_VER_MISC_PKHA_NO_CRYPT) + pk_inst = 0; + } /* Do not register algorithms if PKHA is not present. */ if (!pk_inst) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/caam/regs.h +++ linux-azure-5.4.0/drivers/crypto/caam/regs.h @@ -317,6 +317,9 @@ /* CHA Miscellaneous Information - AESA_MISC specific */ #define CHA_VER_MISC_AES_GCM BIT(1 + CHA_VER_MISC_SHIFT) +/* CHA Miscellaneous Information - PKHA_MISC specific */ +#define CHA_VER_MISC_PKHA_NO_CRYPT BIT(7 + CHA_VER_MISC_SHIFT) + /* * caam_perfmon - Performance Monitor/Secure Memory Status/ * CAAM Global Status/Component Version IDs only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/cavium/cpt/cptpf_main.c +++ linux-azure-5.4.0/drivers/crypto/cavium/cpt/cptpf_main.c @@ -254,6 +254,7 @@ const struct firmware *fw_entry; struct device *dev = &cpt->pdev->dev; struct ucode_header *ucode; + unsigned int code_length; struct microcode *mcode; int j, ret = 0; @@ -264,11 +265,12 @@ ucode = (struct ucode_header *)fw_entry->data; mcode = &cpt->mcode[cpt->next_mc_idx]; memcpy(mcode->version, (u8 *)fw_entry->data, CPT_UCODE_VERSION_SZ); - mcode->code_size = ntohl(ucode->code_length) * 2; - if (!mcode->code_size) { + code_length = ntohl(ucode->code_length); + if (code_length == 0 || code_length >= INT_MAX / 2) { ret = -EINVAL; goto fw_release; } + mcode->code_size = code_length * 2; mcode->is_ae = is_ae; mcode->core_mask = 0ULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/cavium/nitrox/nitrox_isr.c +++ linux-azure-5.4.0/drivers/crypto/cavium/nitrox/nitrox_isr.c @@ -306,6 +306,10 @@ * Entry 192: NPS_CORE_INT_ACTIVE */ nr_vecs = pci_msix_vec_count(pdev); + if (nr_vecs < 0) { + dev_err(DEV(ndev), "Error in getting vec count %d\n", nr_vecs); + return nr_vecs; + } /* Enable MSI-X */ ret = pci_alloc_irq_vectors(pdev, nr_vecs, nr_vecs, PCI_IRQ_MSIX); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/ccp/psp-dev.c +++ linux-azure-5.4.0/drivers/crypto/ccp/psp-dev.c @@ -40,6 +40,10 @@ module_param(psp_probe_timeout, int, 0644); MODULE_PARM_DESC(psp_probe_timeout, " default timeout value, in seconds, during PSP device probe"); +MODULE_FIRMWARE("amd/amd_sev_fam17h_model0xh.sbin"); /* 1st gen EPYC */ +MODULE_FIRMWARE("amd/amd_sev_fam17h_model3xh.sbin"); /* 2nd gen EPYC */ +MODULE_FIRMWARE("amd/amd_sev_fam19h_model0xh.sbin"); /* 3rd gen EPYC */ + static bool psp_dead; static int psp_timeout; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/ccp/sp-pci.c +++ linux-azure-5.4.0/drivers/crypto/ccp/sp-pci.c @@ -213,7 +213,7 @@ if (ret) { dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n", ret); - goto e_err; + goto free_irqs; } } @@ -221,10 +221,12 @@ ret = sp_init(sp); if (ret) - goto e_err; + goto free_irqs; return 0; +free_irqs: + sp_free_irqs(sp); e_err: dev_notice(dev, "initialization failed\n"); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/hisilicon/sec/sec_drv.h +++ linux-azure-5.4.0/drivers/crypto/hisilicon/sec/sec_drv.h @@ -347,7 +347,7 @@ DECLARE_BITMAP(unprocessed, SEC_QUEUE_LEN); DECLARE_KFIFO_PTR(softqueue, typeof(struct sec_request_el *)); bool havesoftqueue; - struct mutex queuelock; + spinlock_t queuelock; void *shadow[SEC_QUEUE_LEN]; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/marvell/cipher.c +++ linux-azure-5.4.0/drivers/crypto/marvell/cipher.c @@ -610,7 +610,6 @@ .decrypt = mv_cesa_ecb_des3_ede_decrypt, .min_keysize = DES3_EDE_KEY_SIZE, .max_keysize = DES3_EDE_KEY_SIZE, - .ivsize = DES3_EDE_BLOCK_SIZE, .base = { .cra_name = "ecb(des3_ede)", .cra_driver_name = "mv-ecb-des3-ede", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/nx/nx-842-pseries.c +++ linux-azure-5.4.0/drivers/crypto/nx/nx-842-pseries.c @@ -538,13 +538,15 @@ * The status field indicates if the device is enabled when the status * is 'okay'. Otherwise the device driver will be disabled. * - * @prop - struct property point containing the maxsyncop for the update + * @devdata: struct nx842_devdata to use for dev_info + * @prop: struct property point containing the maxsyncop for the update * * Returns: * 0 - Device is available * -ENODEV - Device is not available */ -static int nx842_OF_upd_status(struct property *prop) +static int nx842_OF_upd_status(struct nx842_devdata *devdata, + struct property *prop) { const char *status = (const char *)prop->value; @@ -758,7 +760,7 @@ goto out; /* Perform property updates */ - ret = nx842_OF_upd_status(status); + ret = nx842_OF_upd_status(new_devdata, status); if (ret) goto error_out; @@ -1071,6 +1073,7 @@ {"ibm,compression-v1", "ibm,compression"}, {"", ""}, }; +MODULE_DEVICE_TABLE(vio, nx842_vio_driver_ids); static struct vio_driver nx842_vio_driver = { .name = KBUILD_MODNAME, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.c @@ -123,10 +123,10 @@ hw_data->enable_error_correction = adf_vf_void_noop; hw_data->init_admin_comms = adf_vf_int_noop; hw_data->exit_admin_comms = adf_vf_void_noop; - hw_data->send_admin_init = adf_vf2pf_init; + hw_data->send_admin_init = adf_vf2pf_notify_init; hw_data->init_arb = adf_vf_int_noop; hw_data->exit_arb = adf_vf_void_noop; - hw_data->disable_iov = adf_vf2pf_shutdown; + hw_data->disable_iov = adf_vf2pf_notify_shutdown; hw_data->get_accel_mask = get_accel_mask; hw_data->get_ae_mask = get_ae_mask; hw_data->get_num_accels = get_num_accels; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.c @@ -123,10 +123,10 @@ hw_data->enable_error_correction = adf_vf_void_noop; hw_data->init_admin_comms = adf_vf_int_noop; hw_data->exit_admin_comms = adf_vf_void_noop; - hw_data->send_admin_init = adf_vf2pf_init; + hw_data->send_admin_init = adf_vf2pf_notify_init; hw_data->init_arb = adf_vf_int_noop; hw_data->exit_arb = adf_vf_void_noop; - hw_data->disable_iov = adf_vf2pf_shutdown; + hw_data->disable_iov = adf_vf2pf_notify_shutdown; hw_data->get_accel_mask = get_accel_mask; hw_data->get_ae_mask = get_ae_mask; hw_data->get_num_accels = get_num_accels; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_common/adf_common_drv.h +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_common_drv.h @@ -239,8 +239,8 @@ void adf_enable_pf2vf_interrupts(struct adf_accel_dev *accel_dev); void adf_disable_pf2vf_interrupts(struct adf_accel_dev *accel_dev); -int adf_vf2pf_init(struct adf_accel_dev *accel_dev); -void adf_vf2pf_shutdown(struct adf_accel_dev *accel_dev); +int adf_vf2pf_notify_init(struct adf_accel_dev *accel_dev); +void adf_vf2pf_notify_shutdown(struct adf_accel_dev *accel_dev); int adf_init_pf_wq(void); void adf_exit_pf_wq(void); int adf_init_vf_wq(void); @@ -263,12 +263,12 @@ { } -static inline int adf_vf2pf_init(struct adf_accel_dev *accel_dev) +static inline int adf_vf2pf_notify_init(struct adf_accel_dev *accel_dev) { return 0; } -static inline void adf_vf2pf_shutdown(struct adf_accel_dev *accel_dev) +static inline void adf_vf2pf_notify_shutdown(struct adf_accel_dev *accel_dev) { } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_common/adf_init.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_init.c @@ -105,6 +105,7 @@ struct service_hndl *service; struct list_head *list_itr; struct adf_hw_device_data *hw_data = accel_dev->hw_device; + int ret; if (!hw_data) { dev_err(&GET_DEV(accel_dev), @@ -171,9 +172,9 @@ } hw_data->enable_error_correction(accel_dev); - hw_data->enable_vf2pf_comms(accel_dev); + ret = hw_data->enable_vf2pf_comms(accel_dev); - return 0; + return ret; } EXPORT_SYMBOL_GPL(adf_dev_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_common/adf_pf2vf_msg.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_pf2vf_msg.c @@ -195,6 +195,13 @@ val = ADF_CSR_RD(pmisc_bar_addr, pf2vf_offset); } while ((val & int_bit) && (count++ < ADF_IOV_MSG_ACK_MAX_RETRY)); + if (val != msg) { + dev_dbg(&GET_DEV(accel_dev), + "Collision - PFVF CSR overwritten by remote function\n"); + ret = -EIO; + goto out; + } + if (val & int_bit) { dev_dbg(&GET_DEV(accel_dev), "ACK not received from remote\n"); val &= ~int_bit; @@ -231,7 +238,6 @@ return ret; } -EXPORT_SYMBOL_GPL(adf_iov_putmsg); void adf_vf2pf_req_hndl(struct adf_accel_vf_info *vf_info) { @@ -244,6 +250,11 @@ /* Read message from the VF */ msg = ADF_CSR_RD(pmisc_addr, hw_data->get_pf2vf_offset(vf_nr)); + if (!(msg & ADF_VF2PF_INT)) { + dev_info(&GET_DEV(accel_dev), + "Spurious VF2PF interrupt, msg %X. Ignored\n", msg); + goto out; + } /* To ACK, clear the VF2PFINT bit */ msg &= ~ADF_VF2PF_INT; @@ -327,6 +338,7 @@ if (resp && adf_iov_putmsg(accel_dev, resp, vf_nr)) dev_err(&GET_DEV(accel_dev), "Failed to send response to VF\n"); +out: /* re-enable interrupt on PF from this VF */ adf_enable_vf2pf_interrupts(accel_dev, (1 << vf_nr)); return; @@ -361,6 +373,8 @@ msg |= ADF_PFVF_COMPATIBILITY_VERSION << ADF_VF2PF_COMPAT_VER_REQ_SHIFT; BUILD_BUG_ON(ADF_PFVF_COMPATIBILITY_VERSION > 255); + reinit_completion(&accel_dev->vf.iov_msg_completion); + /* Send request from VF to PF */ ret = adf_iov_putmsg(accel_dev, msg, 0); if (ret) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_common/adf_vf2pf_msg.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/adf_vf2pf_msg.c @@ -49,14 +49,14 @@ #include "adf_pf2vf_msg.h" /** - * adf_vf2pf_init() - send init msg to PF + * adf_vf2pf_notify_init() - send init msg to PF * @accel_dev: Pointer to acceleration VF device. * * Function sends an init messge from the VF to a PF * * Return: 0 on success, error code otherwise. */ -int adf_vf2pf_init(struct adf_accel_dev *accel_dev) +int adf_vf2pf_notify_init(struct adf_accel_dev *accel_dev) { u32 msg = (ADF_VF2PF_MSGORIGIN_SYSTEM | (ADF_VF2PF_MSGTYPE_INIT << ADF_VF2PF_MSGTYPE_SHIFT)); @@ -69,17 +69,17 @@ set_bit(ADF_STATUS_PF_RUNNING, &accel_dev->status); return 0; } -EXPORT_SYMBOL_GPL(adf_vf2pf_init); +EXPORT_SYMBOL_GPL(adf_vf2pf_notify_init); /** - * adf_vf2pf_shutdown() - send shutdown msg to PF + * adf_vf2pf_notify_shutdown() - send shutdown msg to PF * @accel_dev: Pointer to acceleration VF device. * * Function sends a shutdown messge from the VF to a PF * * Return: void */ -void adf_vf2pf_shutdown(struct adf_accel_dev *accel_dev) +void adf_vf2pf_notify_shutdown(struct adf_accel_dev *accel_dev) { u32 msg = (ADF_VF2PF_MSGORIGIN_SYSTEM | (ADF_VF2PF_MSGTYPE_SHUTDOWN << ADF_VF2PF_MSGTYPE_SHIFT)); @@ -89,4 +89,4 @@ dev_err(&GET_DEV(accel_dev), "Failed to send Shutdown event to PF\n"); } -EXPORT_SYMBOL_GPL(adf_vf2pf_shutdown); +EXPORT_SYMBOL_GPL(adf_vf2pf_notify_shutdown); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_common/qat_crypto.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_common/qat_crypto.c @@ -170,6 +170,14 @@ goto err; if (adf_cfg_section_add(accel_dev, "Accelerator0")) goto err; + + /* Temporarily set the number of crypto instances to zero to avoid + * registering the crypto algorithms. + * This will be removed when the algorithms will support the + * CRYPTO_TFM_REQ_MAY_BACKLOG flag + */ + instances = 0; + for (i = 0; i < instances; i++) { val = i; snprintf(key, sizeof(key), ADF_CY "%d" ADF_RING_BANK_NUM, i); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.c +++ linux-azure-5.4.0/drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.c @@ -123,10 +123,10 @@ hw_data->enable_error_correction = adf_vf_void_noop; hw_data->init_admin_comms = adf_vf_int_noop; hw_data->exit_admin_comms = adf_vf_void_noop; - hw_data->send_admin_init = adf_vf2pf_init; + hw_data->send_admin_init = adf_vf2pf_notify_init; hw_data->init_arb = adf_vf_int_noop; hw_data->exit_arb = adf_vf_void_noop; - hw_data->disable_iov = adf_vf2pf_shutdown; + hw_data->disable_iov = adf_vf2pf_notify_shutdown; hw_data->get_accel_mask = get_accel_mask; hw_data->get_ae_mask = get_ae_mask; hw_data->get_num_accels = get_num_accels; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qce/sha.c +++ linux-azure-5.4.0/drivers/crypto/qce/sha.c @@ -512,8 +512,8 @@ ret = crypto_register_ahash(alg); if (ret) { - kfree(tmpl); dev_err(qce->dev, "%s registration failed\n", base->cra_name); + kfree(tmpl); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/qcom-rng.c +++ linux-azure-5.4.0/drivers/crypto/qcom-rng.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -42,16 +43,19 @@ { unsigned int currsize = 0; u32 val; + int ret; /* read random data from hardware */ do { - val = readl_relaxed(rng->base + PRNG_STATUS); - if (!(val & PRNG_STATUS_DATA_AVAIL)) - break; + ret = readl_poll_timeout(rng->base + PRNG_STATUS, val, + val & PRNG_STATUS_DATA_AVAIL, + 200, 10000); + if (ret) + return ret; val = readl_relaxed(rng->base + PRNG_DATA_OUT); if (!val) - break; + return -EINVAL; if ((max - currsize) >= WORD_SZ) { memcpy(data, &val, WORD_SZ); @@ -64,7 +68,7 @@ } } while (currsize < max); - return currsize; + return 0; } static int qcom_rng_generate(struct crypto_rng *tfm, @@ -86,7 +90,7 @@ mutex_unlock(&rng->lock); clk_disable_unprepare(rng->clk); - return 0; + return ret; } static int qcom_rng_seed(struct crypto_rng *tfm, const u8 *seed, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/s5p-sss.c +++ linux-azure-5.4.0/drivers/crypto/s5p-sss.c @@ -2208,6 +2208,8 @@ variant = find_s5p_sss_version(pdev); res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) + return -EINVAL; /* * Note: HASH and PRNG uses the same registers in secss, avoid only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/ux500/hash/hash_core.c +++ linux-azure-5.4.0/drivers/crypto/ux500/hash/hash_core.c @@ -1009,6 +1009,7 @@ goto out; } } else if (req->nbytes == 0 && ctx->keylen > 0) { + ret = -EPERM; dev_err(device_data->dev, "%s: Empty message with keylength > 0, NOT supported\n", __func__); goto out; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/crypto/vmx/Kconfig +++ linux-azure-5.4.0/drivers/crypto/vmx/Kconfig @@ -2,7 +2,11 @@ config CRYPTO_DEV_VMX_ENCRYPT tristate "Encryption acceleration support on P8 CPU" depends on CRYPTO_DEV_VMX + select CRYPTO_AES + select CRYPTO_CBC + select CRYPTO_CTR select CRYPTO_GHASH + select CRYPTO_XTS default m help Support for VMX cryptographic acceleration instructions on Power8 CPU. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma-buf/dma-fence-array.c +++ linux-azure-5.4.0/drivers/dma-buf/dma-fence-array.c @@ -104,7 +104,11 @@ { struct dma_fence_array *array = to_dma_fence_array(fence); - return atomic_read(&array->num_pending) <= 0; + if (atomic_read(&array->num_pending) > 0) + return false; + + dma_fence_array_clear_pending_error(array); + return true; } static void dma_fence_array_release(struct dma_fence *fence) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma-buf/udmabuf.c +++ linux-azure-5.4.0/drivers/dma-buf/udmabuf.c @@ -24,8 +24,11 @@ { struct vm_area_struct *vma = vmf->vma; struct udmabuf *ubuf = vma->vm_private_data; + pgoff_t pgoff = vmf->pgoff; - vmf->page = ubuf->pages[vmf->pgoff]; + if (pgoff >= ubuf->pagecount) + return VM_FAULT_SIGBUS; + vmf->page = ubuf->pages[pgoff]; get_page(vmf->page); return 0; } @@ -145,6 +148,10 @@ if (ubuf->pagecount > pglimit) goto err; } + + if (!ubuf->pagecount) + goto err; + ubuf->pages = kmalloc_array(ubuf->pagecount, sizeof(*ubuf->pages), GFP_KERNEL); if (!ubuf->pages) { @@ -280,7 +287,23 @@ static int __init udmabuf_dev_init(void) { - return misc_register(&udmabuf_misc); + int ret; + + ret = misc_register(&udmabuf_misc); + if (ret < 0) { + pr_err("Could not initialize udmabuf device\n"); + return ret; + } + + ret = dma_coerce_mask_and_coherent(udmabuf_misc.this_device, + DMA_BIT_MASK(64)); + if (ret < 0) { + pr_err("Could not setup DMA mask for udmabuf device\n"); + misc_deregister(&udmabuf_misc); + return ret; + } + + return 0; } static void __exit udmabuf_dev_exit(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/at_xdmac.c +++ linux-azure-5.4.0/drivers/dma/at_xdmac.c @@ -89,6 +89,7 @@ #define AT_XDMAC_CNDC_NDE (0x1 << 0) /* Channel x Next Descriptor Enable */ #define AT_XDMAC_CNDC_NDSUP (0x1 << 1) /* Channel x Next Descriptor Source Update */ #define AT_XDMAC_CNDC_NDDUP (0x1 << 2) /* Channel x Next Descriptor Destination Update */ +#define AT_XDMAC_CNDC_NDVIEW_MASK GENMASK(28, 27) #define AT_XDMAC_CNDC_NDVIEW_NDV0 (0x0 << 3) /* Channel x Next Descriptor View 0 */ #define AT_XDMAC_CNDC_NDVIEW_NDV1 (0x1 << 3) /* Channel x Next Descriptor View 1 */ #define AT_XDMAC_CNDC_NDVIEW_NDV2 (0x2 << 3) /* Channel x Next Descriptor View 2 */ @@ -145,7 +146,7 @@ #define AT_XDMAC_CC_WRIP (0x1 << 23) /* Write in Progress (read only) */ #define AT_XDMAC_CC_WRIP_DONE (0x0 << 23) #define AT_XDMAC_CC_WRIP_IN_PROGRESS (0x1 << 23) -#define AT_XDMAC_CC_PERID(i) (0x7f & (i) << 24) /* Channel Peripheral Identifier */ +#define AT_XDMAC_CC_PERID(i) ((0x7f & (i)) << 24) /* Channel Peripheral Identifier */ #define AT_XDMAC_CDS_MSP 0x2C /* Channel Data Stride Memory Set Pattern */ #define AT_XDMAC_CSUS 0x30 /* Channel Source Microblock Stride */ #define AT_XDMAC_CDUS 0x34 /* Channel Destination Microblock Stride */ @@ -220,15 +221,15 @@ /* Linked List Descriptor */ struct at_xdmac_lld { - dma_addr_t mbr_nda; /* Next Descriptor Member */ - u32 mbr_ubc; /* Microblock Control Member */ - dma_addr_t mbr_sa; /* Source Address Member */ - dma_addr_t mbr_da; /* Destination Address Member */ - u32 mbr_cfg; /* Configuration Register */ - u32 mbr_bc; /* Block Control Register */ - u32 mbr_ds; /* Data Stride Register */ - u32 mbr_sus; /* Source Microblock Stride Register */ - u32 mbr_dus; /* Destination Microblock Stride Register */ + u32 mbr_nda; /* Next Descriptor Member */ + u32 mbr_ubc; /* Microblock Control Member */ + u32 mbr_sa; /* Source Address Member */ + u32 mbr_da; /* Destination Address Member */ + u32 mbr_cfg; /* Configuration Register */ + u32 mbr_bc; /* Block Control Register */ + u32 mbr_ds; /* Data Stride Register */ + u32 mbr_sus; /* Source Microblock Stride Register */ + u32 mbr_dus; /* Destination Microblock Stride Register */ }; /* 64-bit alignment needed to update CNDA and CUBC registers in an atomic way. */ @@ -338,9 +339,6 @@ dev_vdbg(chan2dev(&atchan->chan), "%s: desc 0x%p\n", __func__, first); - if (at_xdmac_chan_is_enabled(atchan)) - return; - /* Set transfer as active to not try to start it again. */ first->active_xfer = true; @@ -356,7 +354,8 @@ */ if (at_xdmac_chan_is_cyclic(atchan)) reg = AT_XDMAC_CNDC_NDVIEW_NDV1; - else if (first->lld.mbr_ubc & AT_XDMAC_MBR_UBC_NDV3) + else if ((first->lld.mbr_ubc & + AT_XDMAC_CNDC_NDVIEW_MASK) == AT_XDMAC_MBR_UBC_NDV3) reg = AT_XDMAC_CNDC_NDVIEW_NDV3; else reg = AT_XDMAC_CNDC_NDVIEW_NDV2; @@ -427,13 +426,12 @@ spin_lock_irqsave(&atchan->lock, irqflags); cookie = dma_cookie_assign(tx); + list_add_tail(&desc->xfer_node, &atchan->xfers_list); + spin_unlock_irqrestore(&atchan->lock, irqflags); + dev_vdbg(chan2dev(tx->chan), "%s: atchan 0x%p, add desc 0x%p to xfers_list\n", __func__, atchan, desc); - list_add_tail(&desc->xfer_node, &atchan->xfers_list); - if (list_is_singular(&atchan->xfers_list)) - at_xdmac_start_xfer(atchan, desc); - spin_unlock_irqrestore(&atchan->lock, irqflags); return cookie; } @@ -1392,7 +1390,7 @@ { struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan); struct at_xdmac *atxdmac = to_at_xdmac(atchan->chan.device); - struct at_xdmac_desc *desc, *_desc; + struct at_xdmac_desc *desc, *_desc, *iter; struct list_head *descs_list; enum dma_status ret; int residue, retry; @@ -1507,11 +1505,13 @@ * microblock. */ descs_list = &desc->descs_list; - list_for_each_entry_safe(desc, _desc, descs_list, desc_node) { - dwidth = at_xdmac_get_dwidth(desc->lld.mbr_cfg); - residue -= (desc->lld.mbr_ubc & 0xffffff) << dwidth; - if ((desc->lld.mbr_nda & 0xfffffffc) == cur_nda) + list_for_each_entry_safe(iter, _desc, descs_list, desc_node) { + dwidth = at_xdmac_get_dwidth(iter->lld.mbr_cfg); + residue -= (iter->lld.mbr_ubc & 0xffffff) << dwidth; + if ((iter->lld.mbr_nda & 0xfffffffc) == cur_nda) { + desc = iter; break; + } } residue += cur_ubc << dwidth; @@ -1568,14 +1568,17 @@ struct at_xdmac_desc *desc; struct dma_async_tx_descriptor *txd; - if (!list_empty(&atchan->xfers_list)) { - desc = list_first_entry(&atchan->xfers_list, - struct at_xdmac_desc, xfer_node); - txd = &desc->tx_dma_desc; - - if (txd->flags & DMA_PREP_INTERRUPT) - dmaengine_desc_get_callback_invoke(txd, NULL); + spin_lock_irq(&atchan->lock); + if (list_empty(&atchan->xfers_list)) { + spin_unlock_irq(&atchan->lock); + return; } + desc = list_first_entry(&atchan->xfers_list, struct at_xdmac_desc, + xfer_node); + spin_unlock_irq(&atchan->lock); + txd = &desc->tx_dma_desc; + if (txd->flags & DMA_PREP_INTERRUPT) + dmaengine_desc_get_callback_invoke(txd, NULL); } static void at_xdmac_handle_error(struct at_xdmac_chan *atchan) @@ -1725,11 +1728,13 @@ static void at_xdmac_issue_pending(struct dma_chan *chan) { struct at_xdmac_chan *atchan = to_at_xdmac_chan(chan); + unsigned long flags; dev_dbg(chan2dev(&atchan->chan), "%s\n", __func__); - if (!at_xdmac_chan_is_cyclic(atchan)) - at_xdmac_advance_work(atchan); + spin_lock_irqsave(&atchan->lock, flags); + at_xdmac_advance_work(atchan); + spin_unlock_irqrestore(&atchan->lock, flags); return; } @@ -1843,6 +1848,11 @@ for (i = 0; i < init_nr_desc_per_channel; i++) { desc = at_xdmac_alloc_desc(chan, GFP_ATOMIC); if (!desc) { + if (i == 0) { + dev_warn(chan2dev(chan), + "can't allocate any descriptors\n"); + return -EIO; + } dev_warn(chan2dev(chan), "only %d descriptors have been allocated\n", i); break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/dmaengine.h +++ linux-azure-5.4.0/drivers/dma/dmaengine.h @@ -168,7 +168,7 @@ static inline bool dmaengine_desc_callback_valid(struct dmaengine_desc_callback *cb) { - return (cb->callback) ? true : false; + return cb->callback || cb->callback_result; } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/imx-dma.c +++ linux-azure-5.4.0/drivers/dma/imx-dma.c @@ -832,6 +832,8 @@ dma_length += sg_dma_len(sg); } + imxdma_config_write(chan, &imxdmac->config, direction); + switch (imxdmac->word_size) { case DMA_SLAVE_BUSWIDTH_4_BYTES: if (sg_dma_len(sgl) & 3 || sgl->dma_address & 3) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/mediatek/mtk-uart-apdma.c +++ linux-azure-5.4.0/drivers/dma/mediatek/mtk-uart-apdma.c @@ -131,10 +131,7 @@ static void mtk_uart_apdma_desc_free(struct virt_dma_desc *vd) { - struct dma_chan *chan = vd->tx.chan; - struct mtk_chan *c = to_mtk_uart_apdma_chan(chan); - - kfree(c->desc); + kfree(container_of(vd, struct mtk_uart_apdma_desc, vd)); } static void mtk_uart_apdma_start_tx(struct mtk_chan *c) @@ -207,14 +204,9 @@ static void mtk_uart_apdma_tx_handler(struct mtk_chan *c) { - struct mtk_uart_apdma_desc *d = c->desc; - mtk_uart_apdma_write(c, VFF_INT_FLAG, VFF_TX_INT_CLR_B); mtk_uart_apdma_write(c, VFF_INT_EN, VFF_INT_EN_CLR_B); mtk_uart_apdma_write(c, VFF_EN, VFF_EN_CLR_B); - - list_del(&d->vd.node); - vchan_cookie_complete(&d->vd); } static void mtk_uart_apdma_rx_handler(struct mtk_chan *c) @@ -245,9 +237,17 @@ c->rx_status = d->avail_len - cnt; mtk_uart_apdma_write(c, VFF_RPT, wg); +} - list_del(&d->vd.node); - vchan_cookie_complete(&d->vd); +static void mtk_uart_apdma_chan_complete_handler(struct mtk_chan *c) +{ + struct mtk_uart_apdma_desc *d = c->desc; + + if (d) { + list_del(&d->vd.node); + vchan_cookie_complete(&d->vd); + c->desc = NULL; + } } static irqreturn_t mtk_uart_apdma_irq_handler(int irq, void *dev_id) @@ -261,6 +261,7 @@ mtk_uart_apdma_rx_handler(c); else if (c->dir == DMA_MEM_TO_DEV) mtk_uart_apdma_tx_handler(c); + mtk_uart_apdma_chan_complete_handler(c); spin_unlock_irqrestore(&c->vc.lock, flags); return IRQ_HANDLED; @@ -273,7 +274,7 @@ unsigned int status; int ret; - ret = pm_runtime_get_sync(mtkd->ddev.dev); + ret = pm_runtime_resume_and_get(mtkd->ddev.dev); if (ret < 0) { pm_runtime_put_noidle(chan->device->dev); return ret; @@ -287,18 +288,21 @@ ret = readx_poll_timeout(readl, c->base + VFF_EN, status, !status, 10, 100); if (ret) - return ret; + goto err_pm; ret = request_irq(c->irq, mtk_uart_apdma_irq_handler, IRQF_TRIGGER_NONE, KBUILD_MODNAME, chan); if (ret < 0) { dev_err(chan->device->dev, "Can't request dma IRQ\n"); - return -EINVAL; + ret = -EINVAL; + goto err_pm; } if (mtkd->support_33bits) mtk_uart_apdma_write(c, VFF_4G_SUPPORT, VFF_4G_SUPPORT_CLR_B); +err_pm: + pm_runtime_put_noidle(mtkd->ddev.dev); return ret; } @@ -348,7 +352,7 @@ return NULL; /* Now allocate and setup the descriptor */ - d = kzalloc(sizeof(*d), GFP_ATOMIC); + d = kzalloc(sizeof(*d), GFP_NOWAIT); if (!d) return NULL; @@ -366,7 +370,7 @@ unsigned long flags; spin_lock_irqsave(&c->vc.lock, flags); - if (vchan_issue_pending(&c->vc)) { + if (vchan_issue_pending(&c->vc) && !c->desc) { vd = vchan_next_desc(&c->vc); c->desc = to_mtk_uart_apdma_desc(&vd->tx); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/mmp_pdma.c +++ linux-azure-5.4.0/drivers/dma/mmp_pdma.c @@ -728,12 +728,6 @@ chan->dir = direction; chan->dev_addr = addr; - /* FIXME: drivers should be ported over to use the filter - * function. Once that's done, the following two lines can - * be removed. - */ - if (cfg->slave_id) - chan->drcmr = cfg->slave_id; return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/pxa_dma.c +++ linux-azure-5.4.0/drivers/dma/pxa_dma.c @@ -911,13 +911,6 @@ *dcmd |= PXA_DCMD_BURST16; else if (maxburst == 32) *dcmd |= PXA_DCMD_BURST32; - - /* FIXME: drivers should be ported over to use the filter - * function. Once that's done, the following two lines can - * be removed. - */ - if (chan->cfg.slave_id) - chan->drcmr = chan->cfg.slave_id; } static struct dma_async_tx_descriptor * only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/qcom/Kconfig +++ linux-azure-5.4.0/drivers/dma/qcom/Kconfig @@ -10,6 +10,7 @@ config QCOM_HIDMA_MGMT tristate "Qualcomm Technologies HIDMA Management support" + depends on HAS_IOMEM select DMA_ENGINE help Enable support for the Qualcomm Technologies HIDMA Management. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/sh/rcar-dmac.c +++ linux-azure-5.4.0/drivers/dma/sh/rcar-dmac.c @@ -1825,7 +1825,9 @@ platform_set_drvdata(pdev, dmac); dmac->dev->dma_parms = &dmac->parms; dma_set_max_seg_size(dmac->dev, RCAR_DMATCR_MASK); - dma_set_mask_and_coherent(dmac->dev, DMA_BIT_MASK(40)); + ret = dma_set_mask_and_coherent(dmac->dev, DMA_BIT_MASK(40)); + if (ret) + return ret; ret = rcar_dmac_parse_of(&pdev->dev, dmac); if (ret < 0) @@ -1855,7 +1857,7 @@ /* Enable runtime PM and initialize the device. */ pm_runtime_enable(&pdev->dev); - ret = pm_runtime_get_sync(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret < 0) { dev_err(&pdev->dev, "runtime PM get sync failed (%d)\n", ret); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/sprd-dma.c +++ linux-azure-5.4.0/drivers/dma/sprd-dma.c @@ -1201,11 +1201,8 @@ { struct sprd_dma_dev *sdev = platform_get_drvdata(pdev); struct sprd_dma_chn *c, *cn; - int ret; - ret = pm_runtime_get_sync(&pdev->dev); - if (ret < 0) - return ret; + pm_runtime_get_sync(&pdev->dev); /* explicitly free the irq */ if (sdev->irq > 0) @@ -1230,6 +1227,7 @@ { .compatible = "sprd,sc9860-dma", }, {}, }; +MODULE_DEVICE_TABLE(of, sprd_dma_match); static int __maybe_unused sprd_dma_runtime_suspend(struct device *dev) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/st_fdma.c +++ linux-azure-5.4.0/drivers/dma/st_fdma.c @@ -873,4 +873,4 @@ MODULE_DESCRIPTION("STMicroelectronics FDMA engine driver"); MODULE_AUTHOR("Ludovic.barre "); MODULE_AUTHOR("Peter Griffin "); -MODULE_ALIAS("platform: " DRIVER_NAME); +MODULE_ALIAS("platform:" DRIVER_NAME); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/ste_dma40.c +++ linux-azure-5.4.0/drivers/dma/ste_dma40.c @@ -3678,6 +3678,9 @@ kfree(base->lcla_pool.base_unaligned); + if (base->lcpa_base) + iounmap(base->lcpa_base); + if (base->phy_lcpa) release_mem_region(base->phy_lcpa, base->lcpa_size); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/dma/ti/dma-crossbar.c +++ linux-azure-5.4.0/drivers/dma/ti/dma-crossbar.c @@ -247,6 +247,7 @@ if (dma_spec->args[0] >= xbar->xbar_requests) { dev_err(&pdev->dev, "Invalid XBAR request number: %d\n", dma_spec->args[0]); + put_device(&pdev->dev); return ERR_PTR(-EINVAL); } @@ -254,12 +255,14 @@ dma_spec->np = of_parse_phandle(ofdma->of_node, "dma-masters", 0); if (!dma_spec->np) { dev_err(&pdev->dev, "Can't get DMA master\n"); + put_device(&pdev->dev); return ERR_PTR(-EINVAL); } map = kzalloc(sizeof(*map), GFP_KERNEL); if (!map) { of_node_put(dma_spec->np); + put_device(&pdev->dev); return ERR_PTR(-ENOMEM); } @@ -270,6 +273,8 @@ mutex_unlock(&xbar->mutex); dev_err(&pdev->dev, "Run out of free DMA requests\n"); kfree(map); + of_node_put(dma_spec->np); + put_device(&pdev->dev); return ERR_PTR(-ENOMEM); } set_bit(map->xbar_out, xbar->dma_inuse); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/edac/armada_xp_edac.c +++ linux-azure-5.4.0/drivers/edac/armada_xp_edac.c @@ -178,7 +178,7 @@ "details unavailable (multiple errors)"); if (cnt_dbe) edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, - cnt_sbe, /* error count */ + cnt_dbe, /* error count */ 0, 0, 0, /* pfn, offset, syndrome */ -1, -1, -1, /* top, mid, low layer */ mci->ctl_name, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/edac/xgene_edac.c +++ linux-azure-5.4.0/drivers/edac/xgene_edac.c @@ -1922,7 +1922,7 @@ irq = platform_get_irq(pdev, i); if (irq < 0) { dev_err(&pdev->dev, "No IRQ resource\n"); - rc = -EINVAL; + rc = irq; goto out_err; } rc = devm_request_irq(&pdev->dev, irq, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/extcon/extcon-intel-mrfld.c +++ linux-azure-5.4.0/drivers/extcon/extcon-intel-mrfld.c @@ -197,6 +197,7 @@ struct intel_soc_pmic *pmic = dev_get_drvdata(dev->parent); struct regmap *regmap = pmic->regmap; struct mrfld_extcon_data *data; + unsigned int status; unsigned int id; int irq, ret; @@ -244,6 +245,14 @@ /* Get initial state */ mrfld_extcon_role_detect(data); + /* + * Cached status value is used for cable detection, see comments + * in mrfld_extcon_cable_detect(), we need to sync cached value + * with a real state of the hardware. + */ + regmap_read(regmap, BCOVE_SCHGRIRQ1, &status); + data->status = status; + mrfld_extcon_clear(data, BCOVE_MIRQLVL1, BCOVE_LVL1_CHGR); mrfld_extcon_clear(data, BCOVE_MCHGRIRQ1, BCOVE_CHGRIRQ_ALL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/extcon/extcon-max8997.c +++ linux-azure-5.4.0/drivers/extcon/extcon-max8997.c @@ -729,7 +729,7 @@ 2, info->status); if (ret) { dev_err(info->dev, "failed to read MUIC register\n"); - return ret; + goto err_irq; } cable_type = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_ADC, &attached); @@ -784,3 +784,4 @@ MODULE_DESCRIPTION("Maxim MAX8997 Extcon driver"); MODULE_AUTHOR("Donggeun Kim "); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:max8997-muic"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firewire/core-card.c +++ linux-azure-5.4.0/drivers/firewire/core-card.c @@ -668,6 +668,7 @@ void fw_core_remove_card(struct fw_card *card) { struct fw_card_driver dummy_driver = dummy_driver_template; + unsigned long flags; card->driver->update_phy_reg(card, 4, PHY_LINK_ACTIVE | PHY_CONTENDER, 0); @@ -682,7 +683,9 @@ dummy_driver.stop_iso = card->driver->stop_iso; card->driver = &dummy_driver; + spin_lock_irqsave(&card->lock, flags); fw_destroy_nodes(card); + spin_unlock_irqrestore(&card->lock, flags); /* Wait for all users, especially device workqueue jobs, to finish. */ fw_card_put(card); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firewire/core-cdev.c +++ linux-azure-5.4.0/drivers/firewire/core-cdev.c @@ -1482,6 +1482,7 @@ { struct outbound_phy_packet_event *e = container_of(packet, struct outbound_phy_packet_event, p); + struct client *e_client; switch (status) { /* expected: */ @@ -1498,9 +1499,10 @@ } e->phy_packet.data[0] = packet->timestamp; + e_client = e->client; queue_event(e->client, &e->event, &e->phy_packet, sizeof(e->phy_packet) + e->phy_packet.length, NULL, 0); - client_put(e->client); + client_put(e_client); } static int ioctl_send_phy_packet(struct client *client, union ioctl_arg *arg) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firewire/core-topology.c +++ linux-azure-5.4.0/drivers/firewire/core-topology.c @@ -374,16 +374,13 @@ card->bm_retries = 0; } +/* Must be called with card->lock held */ void fw_destroy_nodes(struct fw_card *card) { - unsigned long flags; - - spin_lock_irqsave(&card->lock, flags); card->color++; if (card->local_node != NULL) for_each_fw_node(card, card->local_node, report_lost_node); card->local_node = NULL; - spin_unlock_irqrestore(&card->lock, flags); } static void move_tree(struct fw_node *node0, struct fw_node *node1, int port) @@ -509,6 +506,8 @@ struct fw_node *local_node; unsigned long flags; + spin_lock_irqsave(&card->lock, flags); + /* * If the selfID buffer is not the immediate successor of the * previously processed one, we cannot reliably compare the @@ -520,8 +519,6 @@ card->bm_retries = 0; } - spin_lock_irqsave(&card->lock, flags); - card->broadcast_channel_allocated = card->broadcast_channel_auto_allocated; card->node_id = node_id; /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firewire/core-transaction.c +++ linux-azure-5.4.0/drivers/firewire/core-transaction.c @@ -73,24 +73,25 @@ static int close_transaction(struct fw_transaction *transaction, struct fw_card *card, int rcode) { - struct fw_transaction *t; + struct fw_transaction *t = NULL, *iter; unsigned long flags; spin_lock_irqsave(&card->lock, flags); - list_for_each_entry(t, &card->transaction_list, link) { - if (t == transaction) { - if (!try_cancel_split_timeout(t)) { + list_for_each_entry(iter, &card->transaction_list, link) { + if (iter == transaction) { + if (!try_cancel_split_timeout(iter)) { spin_unlock_irqrestore(&card->lock, flags); goto timed_out; } - list_del_init(&t->link); - card->tlabel_mask &= ~(1ULL << t->tlabel); + list_del_init(&iter->link); + card->tlabel_mask &= ~(1ULL << iter->tlabel); + t = iter; break; } } spin_unlock_irqrestore(&card->lock, flags); - if (&t->link != &card->transaction_list) { + if (t) { t->callback(card, rcode, NULL, 0, t->callback_data); return 0; } @@ -935,7 +936,7 @@ void fw_core_handle_response(struct fw_card *card, struct fw_packet *p) { - struct fw_transaction *t; + struct fw_transaction *t = NULL, *iter; unsigned long flags; u32 *data; size_t data_length; @@ -947,20 +948,21 @@ rcode = HEADER_GET_RCODE(p->header[1]); spin_lock_irqsave(&card->lock, flags); - list_for_each_entry(t, &card->transaction_list, link) { - if (t->node_id == source && t->tlabel == tlabel) { - if (!try_cancel_split_timeout(t)) { + list_for_each_entry(iter, &card->transaction_list, link) { + if (iter->node_id == source && iter->tlabel == tlabel) { + if (!try_cancel_split_timeout(iter)) { spin_unlock_irqrestore(&card->lock, flags); goto timed_out; } - list_del_init(&t->link); - card->tlabel_mask &= ~(1ULL << t->tlabel); + list_del_init(&iter->link); + card->tlabel_mask &= ~(1ULL << iter->tlabel); + t = iter; break; } } spin_unlock_irqrestore(&card->lock, flags); - if (&t->link == &card->transaction_list) { + if (!t) { timed_out: fw_notice(card, "unsolicited response (source %x, tlabel %x)\n", source, tlabel); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firewire/sbp2.c +++ linux-azure-5.4.0/drivers/firewire/sbp2.c @@ -408,7 +408,7 @@ void *payload, size_t length, void *callback_data) { struct sbp2_logical_unit *lu = callback_data; - struct sbp2_orb *orb; + struct sbp2_orb *orb = NULL, *iter; struct sbp2_status status; unsigned long flags; @@ -433,17 +433,18 @@ /* Lookup the orb corresponding to this status write. */ spin_lock_irqsave(&lu->tgt->lock, flags); - list_for_each_entry(orb, &lu->orb_list, link) { + list_for_each_entry(iter, &lu->orb_list, link) { if (STATUS_GET_ORB_HIGH(status) == 0 && - STATUS_GET_ORB_LOW(status) == orb->request_bus) { - orb->rcode = RCODE_COMPLETE; - list_del(&orb->link); + STATUS_GET_ORB_LOW(status) == iter->request_bus) { + iter->rcode = RCODE_COMPLETE; + list_del(&iter->link); + orb = iter; break; } } spin_unlock_irqrestore(&lu->tgt->lock, flags); - if (&orb->link != &lu->orb_list) { + if (orb) { orb->callback(orb, &status); kref_put(&orb->kref, free_orb); /* orb callback reference */ } else { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/dmi-sysfs.c +++ linux-azure-5.4.0/drivers/firmware/dmi-sysfs.c @@ -603,7 +603,7 @@ "%d-%d", dh->type, entry->instance); if (*ret) { - kfree(entry); + kobject_put(&entry->kobj); return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/apple-properties.c +++ linux-azure-5.4.0/drivers/firmware/efi/apple-properties.c @@ -23,7 +23,7 @@ static int __init dump_properties_enable(char *arg) { dump_properties = true; - return 0; + return 1; } __setup("dump_apple_properties", dump_properties_enable); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/capsule-loader.c +++ linux-azure-5.4.0/drivers/firmware/efi/capsule-loader.c @@ -242,29 +242,6 @@ } /** - * efi_capsule_flush - called by file close or file flush - * @file: file pointer - * @id: not used - * - * If a capsule is being partially uploaded then calling this function - * will be treated as upload termination and will free those completed - * buffer pages and -ECANCELED will be returned. - **/ -static int efi_capsule_flush(struct file *file, fl_owner_t id) -{ - int ret = 0; - struct capsule_info *cap_info = file->private_data; - - if (cap_info->index > 0) { - pr_err("capsule upload not complete\n"); - efi_free_all_buff_pages(cap_info); - ret = -ECANCELED; - } - - return ret; -} - -/** * efi_capsule_release - called by file close * @inode: not used * @file: file pointer @@ -276,6 +253,13 @@ { struct capsule_info *cap_info = file->private_data; + if (cap_info->index > 0 && + (cap_info->header.headersize == 0 || + cap_info->count < cap_info->total_size)) { + pr_err("capsule upload not complete\n"); + efi_free_all_buff_pages(cap_info); + } + kfree(cap_info->pages); kfree(cap_info->phys); kfree(file->private_data); @@ -323,7 +307,6 @@ .owner = THIS_MODULE, .open = efi_capsule_open, .write = efi_capsule_write, - .flush = efi_capsule_flush, .release = efi_capsule_release, .llseek = no_llseek, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/cper.c +++ linux-azure-5.4.0/drivers/firmware/efi/cper.c @@ -25,8 +25,6 @@ #include #include -static char rcd_decode_str[CPER_REC_LEN]; - /* * CPER record ID need to be unique even after reboot, because record * ID is used as index for ERST storage, while CPER records from @@ -263,8 +261,7 @@ if (!msg || !(mem->validation_bits & CPER_MEM_VALID_MODULE_HANDLE)) return 0; - n = 0; - len = CPER_REC_LEN - 1; + len = CPER_REC_LEN; dmi_memdev_name(mem->mem_dev_handle, &bank, &device); if (bank && device) n = snprintf(msg, len, "DIMM location: %s %s ", bank, device); @@ -273,7 +270,6 @@ "DIMM location: not present. DMI handle: 0x%.4x ", mem->mem_dev_handle); - msg[n] = '\0'; return n; } @@ -301,6 +297,7 @@ struct cper_mem_err_compact *cmem) { const char *ret = trace_seq_buffer_ptr(p); + char rcd_decode_str[CPER_REC_LEN]; if (cper_mem_err_location(cmem, rcd_decode_str)) trace_seq_printf(p, "%s", rcd_decode_str); @@ -315,6 +312,7 @@ int len) { struct cper_mem_err_compact cmem; + char rcd_decode_str[CPER_REC_LEN]; /* Don't trust UEFI 2.1/2.2 structure with bad validation bits */ if (len == sizeof(struct cper_sec_mem_err_old) && only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/libstub/secureboot.c +++ linux-azure-5.4.0/drivers/firmware/efi/libstub/secureboot.c @@ -19,7 +19,7 @@ /* SHIM variables */ static const efi_guid_t shim_guid = EFI_SHIM_LOCK_GUID; -static const efi_char16_t shim_MokSBState_name[] = L"MokSBState"; +static const efi_char16_t shim_MokSBState_name[] = L"MokSBStateRT"; #define get_efi_var(name, vendor, ...) \ efi_call_runtime(get_variable, \ @@ -58,8 +58,8 @@ /* * See if a user has put the shim into insecure mode. If so, and if the - * variable doesn't have the runtime attribute set, we might as well - * honor that. + * variable doesn't have the non-volatile attribute set, we might as + * well honor that. */ size = sizeof(moksbstate); status = get_efi_var(shim_MokSBState_name, &shim_guid, @@ -68,7 +68,7 @@ /* If it fails, we don't care why. Default to secure */ if (status != EFI_SUCCESS) goto secure_boot_enabled; - if (!(attr & EFI_VARIABLE_RUNTIME_ACCESS) && moksbstate == 1) + if (!(attr & EFI_VARIABLE_NON_VOLATILE) && moksbstate == 1) return efi_secureboot_mode_disabled; secure_boot_enabled: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/memattr.c +++ linux-azure-5.4.0/drivers/firmware/efi/memattr.c @@ -66,11 +66,6 @@ return false; } - if (!(in->attribute & (EFI_MEMORY_RO | EFI_MEMORY_XP))) { - pr_warn("Entry attributes invalid: RO and XP bits both cleared\n"); - return false; - } - if (PAGE_SIZE > EFI_PAGE_SIZE && (!PAGE_ALIGNED(in->phys_addr) || !PAGE_ALIGNED(in->num_pages << EFI_PAGE_SHIFT))) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/mokvar-table.c +++ linux-azure-5.4.0/drivers/firmware/efi/mokvar-table.c @@ -0,0 +1,362 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * mokvar-table.c + * + * Copyright (c) 2020 Red Hat + * Author: Lenny Szubowicz + * + * This module contains the kernel support for the Linux EFI Machine + * Owner Key (MOK) variable configuration table, which is identified by + * the LINUX_EFI_MOK_VARIABLE_TABLE_GUID. + * + * This EFI configuration table provides a more robust alternative to + * EFI volatile variables by which an EFI boot loader can pass the + * contents of the Machine Owner Key (MOK) certificate stores to the + * kernel during boot. If both the EFI MOK config table and corresponding + * EFI MOK variables are present, the table should be considered as + * more authoritative. + * + * This module includes code that validates and maps the EFI MOK table, + * if it's presence was detected very early in boot. + * + * Kernel interface routines are provided to walk through all the + * entries in the MOK config table or to search for a specific named + * entry. + * + * The contents of the individual named MOK config table entries are + * made available to user space via read-only sysfs binary files under: + * + * /sys/firmware/efi/mok-variables/ + * + */ +#define pr_fmt(fmt) "mokvar: " fmt + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +/* + * The LINUX_EFI_MOK_VARIABLE_TABLE_GUID config table is a packed + * sequence of struct efi_mokvar_table_entry, one for each named + * MOK variable. The sequence is terminated by an entry with a + * completely NULL name and 0 data size. + * + * efi_mokvar_table_size is set to the computed size of the + * MOK config table by efi_mokvar_table_init(). This will be + * non-zero if and only if the table if present and has been + * validated by efi_mokvar_table_init(). + */ +static size_t efi_mokvar_table_size; + +/* + * efi_mokvar_table_va is the kernel virtual address at which the + * EFI MOK config table has been mapped by efi_mokvar_sysfs_init(). + */ +static struct efi_mokvar_table_entry *efi_mokvar_table_va; + +/* + * Each /sys/firmware/efi/mok-variables/ sysfs file is represented by + * an instance of struct efi_mokvar_sysfs_attr on efi_mokvar_sysfs_list. + * bin_attr.private points to the associated EFI MOK config table entry. + * + * This list is created during boot and then remains unchanged. + * So no synchronization is currently required to walk the list. + */ +struct efi_mokvar_sysfs_attr { + struct bin_attribute bin_attr; + struct list_head node; +}; + +static LIST_HEAD(efi_mokvar_sysfs_list); +static struct kobject *mokvar_kobj; + +/* + * efi_mokvar_table_init() - Early boot validation of EFI MOK config table + * + * If present, validate and compute the size of the EFI MOK variable + * configuration table. This table may be provided by an EFI boot loader + * as an alternative to ordinary EFI variables, due to platform-dependent + * limitations. The memory occupied by this table is marked as reserved. + * + * This routine must be called before efi_free_boot_services() in order + * to guarantee that it can mark the table as reserved. + * + * Implicit inputs: + * efi.mokvar_table: Physical address of EFI MOK variable config table + * or special value that indicates no such table. + * + * Implicit outputs: + * efi_mokvar_table_size: Computed size of EFI MOK variable config table. + * The table is considered present and valid if this + * is non-zero. + */ +void __init efi_mokvar_table_init(void) +{ + efi_memory_desc_t md; + void *va = NULL; + unsigned long cur_offset = 0; + unsigned long offset_limit; + unsigned long map_size = 0; + unsigned long map_size_needed = 0; + unsigned long size; + struct efi_mokvar_table_entry *mokvar_entry; + int err; + + if (!efi_enabled(EFI_MEMMAP)) + return; + + if (efi.mokvar_table == EFI_INVALID_TABLE_ADDR) + return; + /* + * The EFI MOK config table must fit within a single EFI memory + * descriptor range. + */ + err = efi_mem_desc_lookup(efi.mokvar_table, &md); + if (err) { + pr_warn("EFI MOKvar config table is not within the EFI memory map\n"); + return; + } + + offset_limit = efi_mem_desc_end(&md) - efi.mokvar_table; + + /* + * Validate the MOK config table. Since there is no table header + * from which we could get the total size of the MOK config table, + * we compute the total size as we validate each variably sized + * entry, remapping as necessary. + */ + err = -EINVAL; + while (cur_offset + sizeof(*mokvar_entry) <= offset_limit) { + mokvar_entry = va + cur_offset; + map_size_needed = cur_offset + sizeof(*mokvar_entry); + if (map_size_needed > map_size) { + if (va) + early_memunmap(va, map_size); + /* + * Map a little more than the fixed size entry + * header, anticipating some data. It's safe to + * do so as long as we stay within current memory + * descriptor. + */ + map_size = min(map_size_needed + 2*EFI_PAGE_SIZE, + offset_limit); + va = early_memremap(efi.mokvar_table, map_size); + if (!va) { + pr_err("Failed to map EFI MOKvar config table pa=0x%lx, size=%lu.\n", + efi.mokvar_table, map_size); + return; + } + mokvar_entry = va + cur_offset; + } + + /* Check for last sentinel entry */ + if (mokvar_entry->name[0] == '\0') { + if (mokvar_entry->data_size != 0) + break; + err = 0; + break; + } + + /* Sanity check that the name is null terminated */ + size = strnlen(mokvar_entry->name, + sizeof(mokvar_entry->name)); + if (size >= sizeof(mokvar_entry->name)) + break; + + /* Advance to the next entry */ + cur_offset = map_size_needed + mokvar_entry->data_size; + } + + if (va) + early_memunmap(va, map_size); + if (err) { + pr_err("EFI MOKvar config table is not valid\n"); + return; + } + + if (md.type == EFI_BOOT_SERVICES_DATA) + efi_mem_reserve(efi.mokvar_table, map_size_needed); + + efi_mokvar_table_size = map_size_needed; +} + +/* + * efi_mokvar_entry_next() - Get next entry in the EFI MOK config table + * + * mokvar_entry: Pointer to current EFI MOK config table entry + * or null. Null indicates get first entry. + * Passed by reference. This is updated to the + * same value as the return value. + * + * Returns: Pointer to next EFI MOK config table entry + * or null, if there are no more entries. + * Same value is returned in the mokvar_entry + * parameter. + * + * This routine depends on the EFI MOK config table being entirely + * mapped with it's starting virtual address in efi_mokvar_table_va. + */ +struct efi_mokvar_table_entry *efi_mokvar_entry_next( + struct efi_mokvar_table_entry **mokvar_entry) +{ + struct efi_mokvar_table_entry *mokvar_cur; + struct efi_mokvar_table_entry *mokvar_next; + size_t size_cur; + + mokvar_cur = *mokvar_entry; + *mokvar_entry = NULL; + + if (efi_mokvar_table_va == NULL) + return NULL; + + if (mokvar_cur == NULL) { + mokvar_next = efi_mokvar_table_va; + } else { + if (mokvar_cur->name[0] == '\0') + return NULL; + size_cur = sizeof(*mokvar_cur) + mokvar_cur->data_size; + mokvar_next = (void *)mokvar_cur + size_cur; + } + + if (mokvar_next->name[0] == '\0') + return NULL; + + *mokvar_entry = mokvar_next; + return mokvar_next; +} + +/* + * efi_mokvar_entry_find() - Find EFI MOK config entry by name + * + * name: Name of the entry to look for. + * + * Returns: Pointer to EFI MOK config table entry if found; + * null otherwise. + * + * This routine depends on the EFI MOK config table being entirely + * mapped with it's starting virtual address in efi_mokvar_table_va. + */ +struct efi_mokvar_table_entry *efi_mokvar_entry_find(const char *name) +{ + struct efi_mokvar_table_entry *mokvar_entry = NULL; + + while (efi_mokvar_entry_next(&mokvar_entry)) { + if (!strncmp(name, mokvar_entry->name, + sizeof(mokvar_entry->name))) + return mokvar_entry; + } + return NULL; +} + +/* + * efi_mokvar_sysfs_read() - sysfs binary file read routine + * + * Returns: Count of bytes read. + * + * Copy EFI MOK config table entry data for this mokvar sysfs binary file + * to the supplied buffer, starting at the specified offset into mokvar table + * entry data, for the specified count bytes. The copy is limited by the + * amount of data in this mokvar config table entry. + */ +static ssize_t efi_mokvar_sysfs_read(struct file *file, struct kobject *kobj, + struct bin_attribute *bin_attr, char *buf, + loff_t off, size_t count) +{ + struct efi_mokvar_table_entry *mokvar_entry = bin_attr->private; + + if (!capable(CAP_SYS_ADMIN)) + return 0; + + if (off >= mokvar_entry->data_size) + return 0; + if (count > mokvar_entry->data_size - off) + count = mokvar_entry->data_size - off; + + memcpy(buf, mokvar_entry->data + off, count); + return count; +} + +/* + * efi_mokvar_sysfs_init() - Map EFI MOK config table and create sysfs + * + * Map the EFI MOK variable config table for run-time use by the kernel + * and create the sysfs entries in /sys/firmware/efi/mok-variables/ + * + * This routine just returns if a valid EFI MOK variable config table + * was not found earlier during boot. + * + * This routine must be called during a "middle" initcall phase, i.e. + * after efi_mokvar_table_init() but before UEFI certs are loaded + * during late init. + * + * Implicit inputs: + * efi.mokvar_table: Physical address of EFI MOK variable config table + * or special value that indicates no such table. + * + * efi_mokvar_table_size: Computed size of EFI MOK variable config table. + * The table is considered present and valid if this + * is non-zero. + * + * Implicit outputs: + * efi_mokvar_table_va: Start virtual address of the EFI MOK config table. + */ +static int __init efi_mokvar_sysfs_init(void) +{ + void *config_va; + struct efi_mokvar_table_entry *mokvar_entry = NULL; + struct efi_mokvar_sysfs_attr *mokvar_sysfs = NULL; + int err = 0; + + if (efi_mokvar_table_size == 0) + return -ENOENT; + + config_va = memremap(efi.mokvar_table, efi_mokvar_table_size, + MEMREMAP_WB); + if (!config_va) { + pr_err("Failed to map EFI MOKvar config table\n"); + return -ENOMEM; + } + efi_mokvar_table_va = config_va; + + mokvar_kobj = kobject_create_and_add("mok-variables", efi_kobj); + if (!mokvar_kobj) { + pr_err("Failed to create EFI mok-variables sysfs entry\n"); + return -ENOMEM; + } + + while (efi_mokvar_entry_next(&mokvar_entry)) { + mokvar_sysfs = kzalloc(sizeof(*mokvar_sysfs), GFP_KERNEL); + if (!mokvar_sysfs) { + err = -ENOMEM; + break; + } + + sysfs_bin_attr_init(&mokvar_sysfs->bin_attr); + mokvar_sysfs->bin_attr.private = mokvar_entry; + mokvar_sysfs->bin_attr.attr.name = mokvar_entry->name; + mokvar_sysfs->bin_attr.attr.mode = 0400; + mokvar_sysfs->bin_attr.size = mokvar_entry->data_size; + mokvar_sysfs->bin_attr.read = efi_mokvar_sysfs_read; + + err = sysfs_create_bin_file(mokvar_kobj, + &mokvar_sysfs->bin_attr); + if (err) + break; + + list_add_tail(&mokvar_sysfs->node, &efi_mokvar_sysfs_list); + } + + if (err) { + pr_err("Failed to create some EFI mok-variables sysfs entries\n"); + kfree(mokvar_sysfs); + } + return err; +} +device_initcall(efi_mokvar_sysfs_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/runtime-wrappers.c +++ linux-azure-5.4.0/drivers/firmware/efi/runtime-wrappers.c @@ -414,7 +414,7 @@ unsigned long data_size, efi_char16_t *data) { - if (down_interruptible(&efi_runtime_lock)) { + if (down_trylock(&efi_runtime_lock)) { pr_warn("failed to invoke the reset_system() runtime service:\n" "could not get exclusive access to the firmware\n"); return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/efi/vars.c +++ linux-azure-5.4.0/drivers/firmware/efi/vars.c @@ -750,6 +750,7 @@ { const struct efivar_operations *ops; efi_status_t status; + unsigned long varsize; if (!__efivars) return -EINVAL; @@ -772,15 +773,17 @@ return efivar_entry_set_nonblocking(name, vendor, attributes, size, data); + varsize = size + ucs2_strsize(name, 1024); if (!block) { if (down_trylock(&efivars_lock)) return -EBUSY; + status = check_var_size_nonblocking(attributes, varsize); } else { if (down_interruptible(&efivars_lock)) return -EINTR; + status = check_var_size(attributes, varsize); } - status = check_var_size(attributes, size + ucs2_strsize(name, 1024)); if (status != EFI_SUCCESS) { up(&efivars_lock); return -ENOSPC; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/google/Kconfig +++ linux-azure-5.4.0/drivers/firmware/google/Kconfig @@ -3,9 +3,9 @@ bool "Google Firmware Drivers" default n help - These firmware drivers are used by Google's servers. They are - only useful if you are working directly on one of their - proprietary servers. If in doubt, say "N". + These firmware drivers are used by Google servers, + Chromebooks and other devices using coreboot firmware. + If in doubt, say "N". if GOOGLE_FIRMWARE @@ -21,7 +21,7 @@ config GOOGLE_COREBOOT_TABLE tristate "Coreboot Table Access" - depends on ACPI || OF + depends on HAS_IOMEM && (ACPI || OF) help This option enables the coreboot_table module, which provides other firmware modules access to the coreboot table. The coreboot table only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/google/gsmi.c +++ linux-azure-5.4.0/drivers/firmware/google/gsmi.c @@ -679,6 +679,15 @@ static int gsmi_panic_callback(struct notifier_block *nb, unsigned long reason, void *arg) { + + /* + * Panic callbacks are executed with all other CPUs stopped, + * so we must not attempt to spin waiting for gsmi_dev.lock + * to be released. + */ + if (spin_is_locked(&gsmi_dev.lock)) + return NOTIFY_DONE; + gsmi_shutdown_reason(GSMI_SHUTDOWN_PANIC); return NOTIFY_DONE; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/psci/psci.c +++ linux-azure-5.4.0/drivers/firmware/psci/psci.c @@ -57,6 +57,21 @@ .smccc_version = SMCCC_VERSION_1_0, }; +enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void) +{ + if (psci_ops.smccc_version < SMCCC_VERSION_1_1) + return SMCCC_CONDUIT_NONE; + + switch (psci_ops.conduit) { + case PSCI_CONDUIT_SMC: + return SMCCC_CONDUIT_SMC; + case PSCI_CONDUIT_HVC: + return SMCCC_CONDUIT_HVC; + default: + return SMCCC_CONDUIT_NONE; + } +} + typedef unsigned long (psci_fn)(unsigned long, unsigned long, unsigned long, unsigned long); static psci_fn *invoke_psci_fn; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/scpi_pm_domain.c +++ linux-azure-5.4.0/drivers/firmware/scpi_pm_domain.c @@ -16,7 +16,6 @@ struct generic_pm_domain genpd; struct scpi_ops *ops; u32 domain; - char name[30]; }; /* @@ -110,8 +109,13 @@ scpi_pd->domain = i; scpi_pd->ops = scpi_ops; - sprintf(scpi_pd->name, "%pOFn.%d", np, i); - scpi_pd->genpd.name = scpi_pd->name; + scpi_pd->genpd.name = devm_kasprintf(dev, GFP_KERNEL, + "%pOFn.%d", np, i); + if (!scpi_pd->genpd.name) { + dev_err(dev, "Failed to allocate genpd name:%pOFn.%d\n", + np, i); + continue; + } scpi_pd->genpd.power_off = scpi_pd_power_off; scpi_pd->genpd.power_on = scpi_pd_power_on; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/stratix10-svc.c +++ linux-azure-5.4.0/drivers/firmware/stratix10-svc.c @@ -934,17 +934,17 @@ void stratix10_svc_free_memory(struct stratix10_svc_chan *chan, void *kaddr) { struct stratix10_svc_data_mem *pmem; - size_t size = 0; list_for_each_entry(pmem, &svc_data_mem, node) if (pmem->vaddr == kaddr) { - size = pmem->size; - break; + gen_pool_free(chan->ctrl->genpool, + (unsigned long)kaddr, pmem->size); + pmem->vaddr = NULL; + list_del(&pmem->node); + return; } - gen_pool_free(chan->ctrl->genpool, (unsigned long)kaddr, size); - pmem->vaddr = NULL; - list_del(&pmem->node); + list_del(&svc_data_mem); } EXPORT_SYMBOL_GPL(stratix10_svc_free_memory); @@ -1026,24 +1026,32 @@ /* add svc client device(s) */ svc = devm_kzalloc(dev, sizeof(*svc), GFP_KERNEL); - if (!svc) - return -ENOMEM; + if (!svc) { + ret = -ENOMEM; + goto err_free_kfifo; + } svc->stratix10_svc_rsu = platform_device_alloc(STRATIX10_RSU, 0); if (!svc->stratix10_svc_rsu) { dev_err(dev, "failed to allocate %s device\n", STRATIX10_RSU); - return -ENOMEM; + ret = -ENOMEM; + goto err_free_kfifo; } ret = platform_device_add(svc->stratix10_svc_rsu); - if (ret) { - platform_device_put(svc->stratix10_svc_rsu); - return ret; - } + if (ret) + goto err_put_device; + dev_set_drvdata(dev, svc); pr_info("Intel Service Layer Driver Initialized\n"); + return 0; + +err_put_device: + platform_device_put(svc->stratix10_svc_rsu); +err_free_kfifo: + kfifo_free(&controller->svc_fifo); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/tegra/Makefile +++ linux-azure-5.4.0/drivers/firmware/tegra/Makefile @@ -3,6 +3,7 @@ tegra-bpmp-$(CONFIG_ARCH_TEGRA_210_SOC) += bpmp-tegra210.o tegra-bpmp-$(CONFIG_ARCH_TEGRA_186_SOC) += bpmp-tegra186.o tegra-bpmp-$(CONFIG_ARCH_TEGRA_194_SOC) += bpmp-tegra186.o +tegra-bpmp-$(CONFIG_ARCH_TEGRA_234_SOC) += bpmp-tegra186.o tegra-bpmp-$(CONFIG_DEBUG_FS) += bpmp-debugfs.o obj-$(CONFIG_TEGRA_BPMP) += tegra-bpmp.o obj-$(CONFIG_TEGRA_IVC) += ivc.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/tegra/bpmp-private.h +++ linux-azure-5.4.0/drivers/firmware/tegra/bpmp-private.h @@ -24,7 +24,8 @@ }; #if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC) || \ - IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) + IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \ + IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) extern const struct tegra_bpmp_ops tegra186_bpmp_ops; #endif #if IS_ENABLED(CONFIG_ARCH_TEGRA_210_SOC) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/tegra/bpmp-tegra210.c +++ linux-azure-5.4.0/drivers/firmware/tegra/bpmp-tegra210.c @@ -210,7 +210,7 @@ priv->tx_irq_data = irq_get_irq_data(err); if (!priv->tx_irq_data) { dev_err(&pdev->dev, "failed to get IRQ data for TX IRQ\n"); - return err; + return -ENOENT; } err = platform_get_irq_byname(pdev, "rx"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/tegra/bpmp.c +++ linux-azure-5.4.0/drivers/firmware/tegra/bpmp.c @@ -808,7 +808,8 @@ }; #if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC) || \ - IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) + IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \ + IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) static const struct tegra_bpmp_soc tegra186_soc = { .channels = { .cpu_tx = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/firmware/turris-mox-rwtm.c +++ linux-azure-5.4.0/drivers/firmware/turris-mox-rwtm.c @@ -134,11 +134,14 @@ static int mox_get_status(enum mbox_cmd cmd, u32 retval) { - if (MBOX_STS_CMD(retval) != cmd || - MBOX_STS_ERROR(retval) != MBOX_STS_SUCCESS) + if (MBOX_STS_CMD(retval) != cmd) return -EIO; else if (MBOX_STS_ERROR(retval) == MBOX_STS_FAIL) return -(int)MBOX_STS_VALUE(retval); + else if (MBOX_STS_ERROR(retval) == MBOX_STS_BADCMD) + return -ENOSYS; + else if (MBOX_STS_ERROR(retval) != MBOX_STS_SUCCESS) + return -EIO; else return MBOX_STS_VALUE(retval); } @@ -188,11 +191,14 @@ return ret; ret = mox_get_status(MBOX_CMD_BOARD_INFO, reply->retval); - if (ret < 0 && ret != -ENODATA) { - return ret; - } else if (ret == -ENODATA) { + if (ret == -ENODATA) { dev_warn(rwtm->dev, "Board does not have manufacturing information burned!\n"); + } else if (ret == -ENOSYS) { + dev_notice(rwtm->dev, + "Firmware does not support the BOARD_INFO command\n"); + } else if (ret < 0) { + return ret; } else { rwtm->serial_number = reply->status[1]; rwtm->serial_number <<= 32; @@ -221,10 +227,13 @@ return ret; ret = mox_get_status(MBOX_CMD_ECDSA_PUB_KEY, reply->retval); - if (ret < 0 && ret != -ENODATA) { - return ret; - } else if (ret == -ENODATA) { + if (ret == -ENODATA) { dev_warn(rwtm->dev, "Board has no public key burned!\n"); + } else if (ret == -ENOSYS) { + dev_notice(rwtm->dev, + "Firmware does not support the ECDSA_PUB_KEY command\n"); + } else if (ret < 0) { + return ret; } else { u32 *s = reply->status; @@ -238,6 +247,27 @@ return 0; } +static int check_get_random_support(struct mox_rwtm *rwtm) +{ + struct armada_37xx_rwtm_tx_msg msg; + int ret; + + msg.command = MBOX_CMD_GET_RANDOM; + msg.args[0] = 1; + msg.args[1] = rwtm->buf_phys; + msg.args[2] = 4; + + ret = mbox_send_message(rwtm->mbox, &msg); + if (ret < 0) + return ret; + + ret = wait_for_completion_timeout(&rwtm->cmd_done, HZ / 2); + if (ret < 0) + return ret; + + return mox_get_status(MBOX_CMD_GET_RANDOM, rwtm->reply.retval); +} + static int mox_hwrng_read(struct hwrng *rng, void *data, size_t max, bool wait) { struct mox_rwtm *rwtm = (struct mox_rwtm *) rng->priv; @@ -329,6 +359,13 @@ if (ret < 0) dev_warn(dev, "Cannot read board information: %i\n", ret); + ret = check_get_random_support(rwtm); + if (ret < 0) { + dev_notice(dev, + "Firmware does not support the GET_RANDOM command\n"); + goto free_channel; + } + rwtm->hwrng.name = DRIVER_NAME "_hwrng"; rwtm->hwrng.read = mox_hwrng_read; rwtm->hwrng.priv = (unsigned long) rwtm; @@ -364,6 +401,7 @@ static const struct of_device_id turris_mox_rwtm_match[] = { { .compatible = "cznic,turris-mox-rwtm", }, + { .compatible = "marvell,armada-3700-rwtm-firmware", }, { }, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fpga/altera-pr-ip-core.c +++ linux-azure-5.4.0/drivers/fpga/altera-pr-ip-core.c @@ -108,7 +108,7 @@ u32 *buffer_32 = (u32 *)buf; size_t i = 0; - if (count <= 0) + if (!count) return -EINVAL; /* Write out the complete 32-bit chunks */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fpga/machxo2-spi.c +++ linux-azure-5.4.0/drivers/fpga/machxo2-spi.c @@ -223,8 +223,10 @@ goto fail; get_status(spi, &status); - if (test_bit(FAIL, &status)) + if (test_bit(FAIL, &status)) { + ret = -EINVAL; goto fail; + } dump_status_reg(&status); spi_message_init(&msg); @@ -310,6 +312,7 @@ dump_status_reg(&status); if (!test_bit(DONE, &status)) { machxo2_cleanup(mgr); + ret = -EINVAL; goto fail; } @@ -331,6 +334,7 @@ break; if (++refreshloop == MACHXO2_MAX_REFRESH_LOOP) { machxo2_cleanup(mgr); + ret = -EINVAL; goto fail; } } while (1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fpga/stratix10-soc.c +++ linux-azure-5.4.0/drivers/fpga/stratix10-soc.c @@ -476,6 +476,7 @@ struct s10_priv *priv = mgr->priv; fpga_mgr_unregister(mgr); + fpga_mgr_free(mgr); stratix10_svc_free_channel(priv->chan); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fsi/fsi-occ.c +++ linux-azure-5.4.0/drivers/fsi/fsi-occ.c @@ -445,6 +445,7 @@ goto done; if (resp->return_status == OCC_RESP_CMD_IN_PRG || + resp->return_status == OCC_RESP_CRIT_INIT || resp->seq_no != seq_no) { rc = -ETIMEDOUT; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fsi/fsi-sbefifo.c +++ linux-azure-5.4.0/drivers/fsi/fsi-sbefifo.c @@ -325,7 +325,8 @@ static int sbefifo_request_reset(struct sbefifo *sbefifo) { struct device *dev = &sbefifo->fsi_dev->dev; - u32 status, timeout; + unsigned long end_time; + u32 status; int rc; dev_dbg(dev, "Requesting FIFO reset\n"); @@ -341,7 +342,8 @@ } /* Wait for it to complete */ - for (timeout = 0; timeout < SBEFIFO_RESET_TIMEOUT; timeout++) { + end_time = jiffies + msecs_to_jiffies(SBEFIFO_RESET_TIMEOUT); + while (!time_after(jiffies, end_time)) { rc = sbefifo_regr(sbefifo, SBEFIFO_UP | SBEFIFO_STS, &status); if (rc) { dev_err(dev, "Failed to read UP fifo status during reset" @@ -355,7 +357,7 @@ return 0; } - msleep(1); + cond_resched(); } dev_err(dev, "FIFO reset timed out\n"); @@ -400,7 +402,7 @@ /* The FIFO already contains a reset request from the SBE ? */ if (down_status & SBEFIFO_STS_RESET_REQ) { dev_info(dev, "Cleanup: FIFO reset request set, resetting\n"); - rc = sbefifo_regw(sbefifo, SBEFIFO_UP, SBEFIFO_PERFORM_RESET); + rc = sbefifo_regw(sbefifo, SBEFIFO_DOWN, SBEFIFO_PERFORM_RESET); if (rc) { sbefifo->broken = true; dev_err(dev, "Cleanup: Reset reg write failed, rc=%d\n", rc); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/fsi/fsi-scom.c +++ linux-azure-5.4.0/drivers/fsi/fsi-scom.c @@ -38,9 +38,10 @@ #define SCOM_STATUS_PIB_RESP_MASK 0x00007000 #define SCOM_STATUS_PIB_RESP_SHIFT 12 -#define SCOM_STATUS_ANY_ERR (SCOM_STATUS_PROTECTION | \ - SCOM_STATUS_PARITY | \ - SCOM_STATUS_PIB_ABORT | \ +#define SCOM_STATUS_FSI2PIB_ERROR (SCOM_STATUS_PROTECTION | \ + SCOM_STATUS_PARITY | \ + SCOM_STATUS_PIB_ABORT) +#define SCOM_STATUS_ANY_ERR (SCOM_STATUS_FSI2PIB_ERROR | \ SCOM_STATUS_PIB_RESP_MASK) /* SCOM address encodings */ #define XSCOM_ADDR_IND_FLAG BIT_ULL(63) @@ -240,13 +241,14 @@ { uint32_t dummy = -1; - if (status & SCOM_STATUS_PROTECTION) - return -EPERM; - if (status & SCOM_STATUS_PARITY) { + if (status & SCOM_STATUS_FSI2PIB_ERROR) fsi_device_write(scom->fsi_dev, SCOM_FSI2PIB_RESET_REG, &dummy, sizeof(uint32_t)); + + if (status & SCOM_STATUS_PROTECTION) + return -EPERM; + if (status & SCOM_STATUS_PARITY) return -EIO; - } /* Return -EBUSY on PIB abort to force a retry */ if (status & SCOM_STATUS_PIB_ABORT) return -EBUSY; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-tegra186.c +++ linux-azure-5.4.0/drivers/gpio/gpio-tegra186.c @@ -234,9 +234,12 @@ return offset + pin; } +#define to_tegra_gpio(x) container_of((x), struct tegra_gpio, gpio) + static void tegra186_irq_ack(struct irq_data *data) { - struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data); + struct gpio_chip *gc = irq_data_get_irq_chip_data(data); + struct tegra_gpio *gpio = to_tegra_gpio(gc); void __iomem *base; base = tegra186_gpio_get_base(gpio, data->hwirq); @@ -248,7 +251,8 @@ static void tegra186_irq_mask(struct irq_data *data) { - struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data); + struct gpio_chip *gc = irq_data_get_irq_chip_data(data); + struct tegra_gpio *gpio = to_tegra_gpio(gc); void __iomem *base; u32 value; @@ -263,7 +267,8 @@ static void tegra186_irq_unmask(struct irq_data *data) { - struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data); + struct gpio_chip *gc = irq_data_get_irq_chip_data(data); + struct tegra_gpio *gpio = to_tegra_gpio(gc); void __iomem *base; u32 value; @@ -278,7 +283,8 @@ static int tegra186_irq_set_type(struct irq_data *data, unsigned int type) { - struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data); + struct gpio_chip *gc = irq_data_get_irq_chip_data(data); + struct tegra_gpio *gpio = to_tegra_gpio(gc); void __iomem *base; u32 value; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-tqmx86.c +++ linux-azure-5.4.0/drivers/gpio/gpio-tqmx86.c @@ -235,8 +235,8 @@ struct resource *res; int ret, irq; - irq = platform_get_irq(pdev, 0); - if (irq < 0) + irq = platform_get_irq_optional(pdev, 0); + if (irq < 0 && irq != -ENXIO) return irq; res = platform_get_resource(pdev, IORESOURCE_IO, 0); @@ -275,7 +275,7 @@ pm_runtime_enable(&pdev->dev); - if (irq) { + if (irq > 0) { struct irq_chip *irq_chip = &gpio->irq_chip; u8 irq_status; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-ts4900.c +++ linux-azure-5.4.0/drivers/gpio/gpio-ts4900.c @@ -1,7 +1,7 @@ /* * Digital I/O driver for Technologic Systems I2C FPGA Core * - * Copyright (C) 2015 Technologic Systems + * Copyright (C) 2015, 2018 Technologic Systems * Copyright (C) 2016 Savoir-Faire Linux * * This program is free software; you can redistribute it and/or @@ -52,19 +52,33 @@ { struct ts4900_gpio_priv *priv = gpiochip_get_data(chip); - /* - * This will clear the output enable bit, the other bits are - * dontcare when this is cleared + /* Only clear the OE bit here, requires a RMW. Prevents potential issue + * with OE and data getting to the physical pin at different times. */ - return regmap_write(priv->regmap, offset, 0); + return regmap_update_bits(priv->regmap, offset, TS4900_GPIO_OE, 0); } static int ts4900_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int value) { struct ts4900_gpio_priv *priv = gpiochip_get_data(chip); + unsigned int reg; int ret; + /* If changing from an input to an output, we need to first set the + * proper data bit to what is requested and then set OE bit. This + * prevents a glitch that can occur on the IO line + */ + regmap_read(priv->regmap, offset, ®); + if (!(reg & TS4900_GPIO_OE)) { + if (value) + reg = TS4900_GPIO_OUT; + else + reg &= ~TS4900_GPIO_OUT; + + regmap_write(priv->regmap, offset, reg); + } + if (value) ret = regmap_write(priv->regmap, offset, TS4900_GPIO_OE | TS4900_GPIO_OUT); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-uniphier.c +++ linux-azure-5.4.0/drivers/gpio/gpio-uniphier.c @@ -188,7 +188,7 @@ uniphier_gpio_reg_update(priv, UNIPHIER_GPIO_IRQ_EN, mask, 0); - return irq_chip_mask_parent(data); + irq_chip_mask_parent(data); } static void uniphier_gpio_irq_unmask(struct irq_data *data) @@ -198,7 +198,7 @@ uniphier_gpio_reg_update(priv, UNIPHIER_GPIO_IRQ_EN, mask, mask); - return irq_chip_unmask_parent(data); + irq_chip_unmask_parent(data); } static int uniphier_gpio_irq_set_type(struct irq_data *data, unsigned int type) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-vf610.c +++ linux-azure-5.4.0/drivers/gpio/gpio-vf610.c @@ -125,9 +125,13 @@ { struct vf610_gpio_port *port = gpiochip_get_data(chip); unsigned long mask = BIT(gpio); + u32 val; - if (port->sdata && port->sdata->have_paddr) - vf610_gpio_writel(mask, port->gpio_base + GPIO_PDDR); + if (port->sdata && port->sdata->have_paddr) { + val = vf610_gpio_readl(port->gpio_base + GPIO_PDDR); + val |= mask; + vf610_gpio_writel(val, port->gpio_base + GPIO_PDDR); + } vf610_gpio_set(chip, gpio, value); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-vr41xx.c +++ linux-azure-5.4.0/drivers/gpio/gpio-vr41xx.c @@ -217,8 +217,6 @@ printk(KERN_ERR "spurious GIU interrupt: %04x(%04x),%04x(%04x)\n", maskl, pendl, maskh, pendh); - atomic_inc(&irq_err_count); - return -EINVAL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpio/gpio-winbond.c +++ linux-azure-5.4.0/drivers/gpio/gpio-winbond.c @@ -385,12 +385,13 @@ unsigned long *base = gpiochip_get_data(gc); const struct winbond_gpio_info *info; bool val; + int ret; winbond_gpio_get_info(&offset, &info); - val = winbond_sio_enter(*base); - if (val) - return val; + ret = winbond_sio_enter(*base); + if (ret) + return ret; winbond_sio_select_logical(*base, info->dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/ObjectID.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/ObjectID.h @@ -119,6 +119,7 @@ #define CONNECTOR_OBJECT_ID_eDP 0x14 #define CONNECTOR_OBJECT_ID_MXM 0x15 #define CONNECTOR_OBJECT_ID_LVDS_eDP 0x16 +#define CONNECTOR_OBJECT_ID_USBC 0x17 /* deleted */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c @@ -163,17 +163,28 @@ return 0; } -static struct device *get_mfd_cell_dev(const char *device_name, int r) +static int acp_genpd_add_device(struct device *dev, void *data) { - char auto_dev_name[25]; - struct device *dev; + struct generic_pm_domain *gpd = data; + int ret; - snprintf(auto_dev_name, sizeof(auto_dev_name), - "%s.%d.auto", device_name, r); - dev = bus_find_device_by_name(&platform_bus_type, NULL, auto_dev_name); - dev_info(dev, "device %s added to pm domain\n", auto_dev_name); + ret = pm_genpd_add_device(gpd, dev); + if (ret) + dev_err(dev, "Failed to add dev to genpd %d\n", ret); - return dev; + return ret; +} + +static int acp_genpd_remove_device(struct device *dev, void *data) +{ + int ret; + + ret = pm_genpd_remove_device(dev); + if (ret) + dev_err(dev, "Failed to remove dev from genpd %d\n", ret); + + /* Continue to remove */ + return 0; } /** @@ -184,11 +195,10 @@ */ static int acp_hw_init(void *handle) { - int r, i; + int r; uint64_t acp_base; u32 val = 0; u32 count = 0; - struct device *dev; struct i2s_platform_data *i2s_pdata = NULL; struct amdgpu_device *adev = (struct amdgpu_device *)handle; @@ -344,15 +354,10 @@ if (r) goto failure; - for (i = 0; i < ACP_DEVS ; i++) { - dev = get_mfd_cell_dev(adev->acp.acp_cell[i].name, i); - r = pm_genpd_add_device(&adev->acp.acp_genpd->gpd, dev); - if (r) { - dev_err(dev, "Failed to add dev to genpd\n"); - goto failure; - } - } - + r = device_for_each_child(adev->acp.parent, &adev->acp.acp_genpd->gpd, + acp_genpd_add_device); + if (r) + goto failure; /* Assert Soft reset of ACP */ val = cgs_read_register(adev->acp.cgs_device, mmACP_SOFT_RESET); @@ -413,10 +418,8 @@ */ static int acp_hw_fini(void *handle) { - int i, ret; u32 val = 0; u32 count = 0; - struct device *dev; struct amdgpu_device *adev = (struct amdgpu_device *)handle; /* return early if no ACP */ @@ -461,13 +464,8 @@ udelay(100); } - for (i = 0; i < ACP_DEVS ; i++) { - dev = get_mfd_cell_dev(adev->acp.acp_cell[i].name, i); - ret = pm_genpd_remove_device(dev); - /* If removal fails, dont giveup and try rest */ - if (ret) - dev_err(dev, "remove dev from genpd failed\n"); - } + device_for_each_child(adev->acp.parent, NULL, + acp_genpd_remove_device); mfd_remove_devices(adev->acp.parent); kfree(adev->acp.acp_res); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c @@ -61,7 +61,7 @@ int amdgpu_bo_list_create(struct amdgpu_device *adev, struct drm_file *filp, struct drm_amdgpu_bo_list_entry *info, - unsigned num_entries, struct amdgpu_bo_list **result) + size_t num_entries, struct amdgpu_bo_list **result) { unsigned last_entry = 0, first_userptr = num_entries; struct amdgpu_bo_list_entry *array; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.h @@ -60,7 +60,7 @@ int amdgpu_bo_list_create(struct amdgpu_device *adev, struct drm_file *filp, struct drm_amdgpu_bo_list_entry *info, - unsigned num_entries, + size_t num_entries, struct amdgpu_bo_list **list); static inline struct amdgpu_bo_list_entry * only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -114,7 +114,7 @@ int ret; if (cs->in.num_chunks == 0) - return 0; + return -EINVAL; chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL); if (!chunk_array) @@ -1542,6 +1542,7 @@ return 0; default: + dma_fence_put(fence); return -EINVAL; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c @@ -351,7 +351,6 @@ { struct amdgpu_ctx *ctx; struct amdgpu_ctx_mgr *mgr; - unsigned long ras_counter; if (!fpriv) return -EINVAL; @@ -376,21 +375,6 @@ if (atomic_read(&ctx->guilty)) out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_GUILTY; - /*query ue count*/ - ras_counter = amdgpu_ras_query_error_count(adev, false); - /*ras counter is monotonic increasing*/ - if (ras_counter != ctx->ras_counter_ue) { - out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_RAS_UE; - ctx->ras_counter_ue = ras_counter; - } - - /*query ce count*/ - ras_counter = amdgpu_ras_query_error_count(adev, true); - if (ras_counter != ctx->ras_counter_ce) { - out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_RAS_CE; - ctx->ras_counter_ce = ras_counter; - } - mutex_unlock(&mgr->lock); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -263,7 +263,7 @@ * adev->gfx.mec.num_pipe_per_mec * adev->gfx.mec.num_queue_per_pipe; - while (queue_bit-- >= 0) { + while (--queue_bit >= 0) { if (test_bit(queue_bit, adev->gfx.mec.queue_bitmap)) continue; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c @@ -339,7 +339,7 @@ void amdgpu_i2c_router_select_ddc_port(const struct amdgpu_connector *amdgpu_connector) { - u8 val; + u8 val = 0; if (!amdgpu_connector->router.ddc_valid) return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c @@ -138,7 +138,7 @@ return ret; } - __decode_table_header_from_buff(hdr, &buff[2]); + __decode_table_header_from_buff(hdr, buff); if (hdr->header == EEPROM_TABLE_HDR_VAL) { control->num_recs = (hdr->tbl_size - EEPROM_TABLE_HEADER_SIZE) / only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -568,8 +568,7 @@ void amdgpu_ucode_free_bo(struct amdgpu_device *adev) { - if (adev->firmware.load_type != AMDGPU_FW_LOAD_DIRECT) - amdgpu_bo_free_kernel(&adev->firmware.fw_buf, + amdgpu_bo_free_kernel(&adev->firmware.fw_buf, &adev->firmware.fw_buf_mc, &adev->firmware.fw_buf_ptr); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c @@ -863,12 +863,12 @@ adev->gmc.mc_mask = 0xffffffffffULL; - r = dma_set_mask_and_coherent(adev->dev, DMA_BIT_MASK(44)); + r = dma_set_mask_and_coherent(adev->dev, DMA_BIT_MASK(40)); if (r) { dev_warn(adev->dev, "amdgpu: No suitable DMA available.\n"); return r; } - adev->need_swiotlb = drm_need_swiotlb(44); + adev->need_swiotlb = drm_need_swiotlb(40); r = gmc_v6_0_init_microcode(adev); if (r) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c @@ -524,10 +524,10 @@ static int gmc_v8_0_mc_init(struct amdgpu_device *adev) { int r; + u32 tmp; adev->gmc.vram_width = amdgpu_atombios_get_vram_width(adev); if (!adev->gmc.vram_width) { - u32 tmp; int chansize, numchan; /* Get VRAM informations */ @@ -571,8 +571,15 @@ adev->gmc.vram_width = numchan * chansize; } /* size in MB on si */ - adev->gmc.mc_vram_size = RREG32(mmCONFIG_MEMSIZE) * 1024ULL * 1024ULL; - adev->gmc.real_vram_size = RREG32(mmCONFIG_MEMSIZE) * 1024ULL * 1024ULL; + tmp = RREG32(mmCONFIG_MEMSIZE); + /* some boards may have garbage in the upper 16 bits */ + if (tmp & 0xffff0000) { + DRM_INFO("Probable bad vram size: 0x%08x\n", tmp); + if (tmp & 0xffff) + tmp &= 0xffff; + } + adev->gmc.mc_vram_size = tmp * 1024ULL * 1024ULL; + adev->gmc.real_vram_size = adev->gmc.mc_vram_size; if (!(adev->flags & AMD_IS_APU)) { r = amdgpu_device_resize_fb_bar(adev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/kv_dpm.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/kv_dpm.c @@ -1609,19 +1609,7 @@ static u8 kv_get_acp_boot_level(struct amdgpu_device *adev) { - u8 i; - struct amdgpu_clock_voltage_dependency_table *table = - &adev->pm.dpm.dyn_state.acp_clock_voltage_dependency_table; - - for (i = 0; i < table->count; i++) { - if (table->entries[i].clk >= 0) /* XXX */ - break; - } - - if (i >= table->count) - i = table->count - 1; - - return i; + return 0; } static void kv_update_acp_boot_level(struct amdgpu_device *adev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/si_dpm.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/si_dpm.c @@ -7250,17 +7250,15 @@ if (!adev->pm.dpm.ps) return -ENOMEM; power_state_offset = (u8 *)state_array->states; - for (i = 0; i < state_array->ucNumEntries; i++) { + for (adev->pm.dpm.num_ps = 0, i = 0; i < state_array->ucNumEntries; i++) { u8 *idx; power_state = (union pplib_power_state *)power_state_offset; non_clock_array_index = power_state->v2.nonClockInfoIndex; non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) &non_clock_info_array->nonClockInfo[non_clock_array_index]; ps = kzalloc(sizeof(struct si_ps), GFP_KERNEL); - if (ps == NULL) { - kfree(adev->pm.dpm.ps); + if (ps == NULL) return -ENOMEM; - } adev->pm.dpm.ps[i].ps_priv = ps; si_parse_pplib_non_clock_info(adev, &adev->pm.dpm.ps[i], non_clock_info, @@ -7282,8 +7280,8 @@ k++; } power_state_offset += 2 + power_state->v2.ucNumDPMLevels; + adev->pm.dpm.num_ps++; } - adev->pm.dpm.num_ps = state_array->ucNumEntries; /* fill in the vce power states */ for (i = 0; i < adev->pm.dpm.num_of_vce_states; i++) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c @@ -354,6 +354,7 @@ error: dma_fence_put(fence); + amdgpu_bo_unpin(bo); amdgpu_bo_unreserve(bo); amdgpu_bo_unref(&bo); return r; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_crat.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_crat.c @@ -758,7 +758,7 @@ /* Fetch the CRAT table from ACPI */ status = acpi_get_table(CRAT_SIGNATURE, 0, &crat_table); if (status == AE_NOT_FOUND) { - pr_warn("CRAT table not found\n"); + pr_info("CRAT table not found\n"); return -ENODATA; } else if (ACPI_FAILURE(status)) { const char *err = acpi_format_exception(status); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_events.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_events.c @@ -532,6 +532,8 @@ event_waiters = kmalloc_array(num_events, sizeof(struct kfd_event_waiter), GFP_KERNEL); + if (!event_waiters) + return NULL; for (i = 0; (event_waiters) && (i < num_events) ; i++) { init_wait(&event_waiters[i].wait); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_module.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_module.c @@ -82,7 +82,7 @@ kfd_chardev_exit(); } -int kgd2kfd_init() +int kgd2kfd_init(void) { return kfd_init(); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c @@ -98,36 +98,78 @@ uint32_t *se_mask) { struct kfd_cu_info cu_info; - uint32_t cu_per_se[KFD_MAX_NUM_SE] = {0}; - int i, se, sh, cu = 0; - + uint32_t cu_per_sh[KFD_MAX_NUM_SE][KFD_MAX_NUM_SH_PER_SE] = {0}; + int i, se, sh, cu; amdgpu_amdkfd_get_cu_info(mm->dev->kgd, &cu_info); if (cu_mask_count > cu_info.cu_active_number) cu_mask_count = cu_info.cu_active_number; + /* Exceeding these bounds corrupts the stack and indicates a coding error. + * Returning with no CU's enabled will hang the queue, which should be + * attention grabbing. + */ + if (cu_info.num_shader_engines > KFD_MAX_NUM_SE) { + pr_err("Exceeded KFD_MAX_NUM_SE, chip reports %d\n", cu_info.num_shader_engines); + return; + } + if (cu_info.num_shader_arrays_per_engine > KFD_MAX_NUM_SH_PER_SE) { + pr_err("Exceeded KFD_MAX_NUM_SH, chip reports %d\n", + cu_info.num_shader_arrays_per_engine * cu_info.num_shader_engines); + return; + } + /* Count active CUs per SH. + * + * Some CUs in an SH may be disabled. HW expects disabled CUs to be + * represented in the high bits of each SH's enable mask (the upper and lower + * 16 bits of se_mask) and will take care of the actual distribution of + * disabled CUs within each SH automatically. + * Each half of se_mask must be filled only on bits 0-cu_per_sh[se][sh]-1. + * + * See note on Arcturus cu_bitmap layout in gfx_v9_0_get_cu_info. + */ for (se = 0; se < cu_info.num_shader_engines; se++) for (sh = 0; sh < cu_info.num_shader_arrays_per_engine; sh++) - cu_per_se[se] += hweight32(cu_info.cu_bitmap[se % 4][sh + (se / 4)]); + cu_per_sh[se][sh] = hweight32(cu_info.cu_bitmap[se % 4][sh + (se / 4)]); - /* Symmetrically map cu_mask to all SEs: - * cu_mask[0] bit0 -> se_mask[0] bit0; - * cu_mask[0] bit1 -> se_mask[1] bit0; - * ... (if # SE is 4) - * cu_mask[0] bit4 -> se_mask[0] bit1; + /* Symmetrically map cu_mask to all SEs & SHs: + * se_mask programs up to 2 SH in the upper and lower 16 bits. + * + * Examples + * Assuming 1 SH/SE, 4 SEs: + * cu_mask[0] bit0 -> se_mask[0] bit0 + * cu_mask[0] bit1 -> se_mask[1] bit0 + * ... + * cu_mask[0] bit4 -> se_mask[0] bit1 + * ... + * + * Assuming 2 SH/SE, 4 SEs + * cu_mask[0] bit0 -> se_mask[0] bit0 (SE0,SH0,CU0) + * cu_mask[0] bit1 -> se_mask[1] bit0 (SE1,SH0,CU0) + * ... + * cu_mask[0] bit4 -> se_mask[0] bit16 (SE0,SH1,CU0) + * cu_mask[0] bit5 -> se_mask[1] bit16 (SE1,SH1,CU0) + * ... + * cu_mask[0] bit8 -> se_mask[0] bit1 (SE0,SH0,CU1) * ... + * + * First ensure all CUs are disabled, then enable user specified CUs. */ - se = 0; - for (i = 0; i < cu_mask_count; i++) { - if (cu_mask[i / 32] & (1 << (i % 32))) - se_mask[se] |= 1 << cu; + for (i = 0; i < cu_info.num_shader_engines; i++) + se_mask[i] = 0; - do { - se++; - if (se == cu_info.num_shader_engines) { - se = 0; - cu++; + i = 0; + for (cu = 0; cu < 16; cu++) { + for (sh = 0; sh < cu_info.num_shader_arrays_per_engine; sh++) { + for (se = 0; se < cu_info.num_shader_engines; se++) { + if (cu_per_sh[se][sh] > cu) { + if (cu_mask[i / 32] & (1 << (i % 32))) + se_mask[se] |= 1 << (cu + sh * 16); + i++; + if (i == cu_mask_count) + return; + } } - } while (cu >= cu_per_se[se] && cu < 32); + } } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h @@ -27,6 +27,7 @@ #include "kfd_priv.h" #define KFD_MAX_NUM_SE 8 +#define KFD_MAX_NUM_SH_PER_SE 2 /** * struct mqd_manager only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h @@ -387,6 +387,7 @@ #define MAX_COLOR_LEGACY_LUT_ENTRIES 256 void amdgpu_dm_init_color_mod(void); +int amdgpu_dm_verify_lut_sizes(const struct drm_crtc_state *crtc_state); int amdgpu_dm_update_crtc_color_mgmt(struct dm_crtc_state *crtc); int amdgpu_dm_update_plane_color_mgmt(struct dm_crtc_state *crtc, struct dc_plane_state *dc_plane_state); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c @@ -95,29 +95,29 @@ rd_buf_ptr = rd_buf; - str_len = strlen("Current: %d %d %d "); - snprintf(rd_buf_ptr, str_len, "Current: %d %d %d ", + str_len = strlen("Current: %d 0x%x %d "); + snprintf(rd_buf_ptr, str_len, "Current: %d 0x%x %d ", link->cur_link_settings.lane_count, link->cur_link_settings.link_rate, link->cur_link_settings.link_spread); rd_buf_ptr += str_len; - str_len = strlen("Verified: %d %d %d "); - snprintf(rd_buf_ptr, str_len, "Verified: %d %d %d ", + str_len = strlen("Verified: %d 0x%x %d "); + snprintf(rd_buf_ptr, str_len, "Verified: %d 0x%x %d ", link->verified_link_cap.lane_count, link->verified_link_cap.link_rate, link->verified_link_cap.link_spread); rd_buf_ptr += str_len; - str_len = strlen("Reported: %d %d %d "); - snprintf(rd_buf_ptr, str_len, "Reported: %d %d %d ", + str_len = strlen("Reported: %d 0x%x %d "); + snprintf(rd_buf_ptr, str_len, "Reported: %d 0x%x %d ", link->reported_link_cap.lane_count, link->reported_link_cap.link_rate, link->reported_link_cap.link_spread); rd_buf_ptr += str_len; - str_len = strlen("Preferred: %d %d %d "); - snprintf(rd_buf_ptr, str_len, "Preferred: %d %d %d\n", + str_len = strlen("Preferred: %d 0x%x %d "); + snprintf(rd_buf_ptr, str_len, "Preferred: %d 0x%x %d\n", link->preferred_link_setting.lane_count, link->preferred_link_setting.link_rate, link->preferred_link_setting.link_spread); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/calcs/bw_fixed.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/calcs/bw_fixed.c @@ -26,12 +26,12 @@ #include "bw_fixed.h" -#define MIN_I64 \ - (int64_t)(-(1LL << 63)) - #define MAX_I64 \ (int64_t)((1ULL << 63) - 1) +#define MIN_I64 \ + (-MAX_I64 - 1) + #define FRACTIONAL_PART_MASK \ ((1ULL << BW_FIXED_BITS_PER_FRACTIONAL_PART) - 1) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_resource.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c @@ -1546,6 +1546,10 @@ if (old_stream->ignore_msa_timing_param != stream->ignore_msa_timing_param) return false; + /*compare audio info*/ + if (memcmp(&old_stream->audio_info, &stream->audio_info, sizeof(stream->audio_info)) != 0) + return false; + return true; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c @@ -484,10 +484,13 @@ int vtaps_c = scl_data->taps.v_taps_c; int ceil_vratio = dc_fixpt_ceil(scl_data->ratios.vert); int ceil_vratio_c = dc_fixpt_ceil(scl_data->ratios.vert_c); - enum lb_memory_config mem_cfg = LB_MEMORY_CONFIG_0; - if (dpp->base.ctx->dc->debug.use_max_lb) - return mem_cfg; + if (dpp->base.ctx->dc->debug.use_max_lb) { + if (scl_data->format == PIXEL_FORMAT_420BPP8 + || scl_data->format == PIXEL_FORMAT_420BPP10) + return LB_MEMORY_CONFIG_3; + return LB_MEMORY_CONFIG_0; + } dpp->base.caps->dscl_calc_lb_num_partitions( scl_data, LB_MEMORY_CONFIG_1, &num_part_y, &num_part_c); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c @@ -2202,14 +2202,18 @@ &blnd_cfg.black_color); } - if (per_pixel_alpha) - blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA; - else - blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_GLOBAL_ALPHA; - blnd_cfg.overlap_only = false; blnd_cfg.global_gain = 0xff; + if (per_pixel_alpha && pipe_ctx->plane_state->global_alpha) { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA_COMBINED_GLOBAL_GAIN; + blnd_cfg.global_gain = pipe_ctx->plane_state->global_alpha_value; + } else if (per_pixel_alpha) { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_PER_PIXEL_ALPHA; + } else { + blnd_cfg.alpha_mode = MPCC_ALPHA_BLEND_MODE_GLOBAL_ALPHA; + } + if (pipe_ctx->plane_state->global_alpha) blnd_cfg.global_alpha = pipe_ctx->plane_state->global_alpha_value; else @@ -3264,13 +3268,12 @@ struct dc_clock_config clock_cfg = {0}; struct dc_clocks *current_clocks = &context->bw_ctx.bw.dcn.clk; - if (dc->clk_mgr && dc->clk_mgr->funcs->get_clock) - dc->clk_mgr->funcs->get_clock(dc->clk_mgr, - context, clock_type, &clock_cfg); - - if (!dc->clk_mgr->funcs->get_clock) + if (!dc->clk_mgr || !dc->clk_mgr->funcs->get_clock) return DC_FAIL_UNSUPPORTED_1; + dc->clk_mgr->funcs->get_clock(dc->clk_mgr, + context, clock_type, &clock_cfg); + if (clk_khz > clock_cfg.max_clock_khz) return DC_FAIL_CLK_EXCEED_MAX; @@ -3288,7 +3291,7 @@ else return DC_ERROR_UNEXPECTED; - if (dc->clk_mgr && dc->clk_mgr->funcs->update_clocks) + if (dc->clk_mgr->funcs->update_clocks) dc->clk_mgr->funcs->update_clocks(dc->clk_mgr, context, true); return DC_OK; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c @@ -118,6 +118,12 @@ while (tmp_mpcc != NULL) { if (tmp_mpcc->dpp_id == dpp_id) return tmp_mpcc; + + /* avoid circular linked list */ + ASSERT(tmp_mpcc != tmp_mpcc->mpcc_bot); + if (tmp_mpcc == tmp_mpcc->mpcc_bot) + break; + tmp_mpcc = tmp_mpcc->mpcc_bot; } return NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c @@ -425,6 +425,11 @@ OTG_CLOCK_ON, 1, 1, 1000); } else { + + //last chance to clear underflow, otherwise, it will always there due to clock is off. + if (optc->funcs->is_optc_underflow_occurred(optc) == true) + optc->funcs->clear_optc_underflow(optc); + REG_UPDATE_2(OTG_CLOCK_CONTROL, OTG_CLOCK_GATE_DIS, 0, OTG_CLOCK_EN, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_mpc.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_mpc.c @@ -488,6 +488,12 @@ while (tmp_mpcc != NULL) { if (tmp_mpcc->dpp_id == 0xf || tmp_mpcc->dpp_id == dpp_id) return tmp_mpcc; + + /* avoid circular linked list */ + ASSERT(tmp_mpcc != tmp_mpcc->mpcc_bot); + if (tmp_mpcc == tmp_mpcc->mpcc_bot) + break; + tmp_mpcc = tmp_mpcc->mpcc_bot; } return NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c @@ -53,8 +53,8 @@ */ struct gpio_service *dal_gpio_service_create( - enum dce_version dce_version_major, - enum dce_version dce_version_minor, + enum dce_version dce_version, + enum dce_environment dce_environment, struct dc_context *ctx) { struct gpio_service *service; @@ -67,14 +67,14 @@ return NULL; } - if (!dal_hw_translate_init(&service->translate, dce_version_major, - dce_version_minor)) { + if (!dal_hw_translate_init(&service->translate, dce_version, + dce_environment)) { BREAK_TO_DEBUGGER(); goto failure_1; } - if (!dal_hw_factory_init(&service->factory, dce_version_major, - dce_version_minor)) { + if (!dal_hw_factory_init(&service->factory, dce_version, + dce_environment)) { BREAK_TO_DEBUGGER(); goto failure_1; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/dc/irq_types.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/dc/irq_types.h @@ -163,7 +163,7 @@ }; #define DAL_VALID_IRQ_SRC_NUM(src) \ - ((src) <= DAL_IRQ_SOURCES_NUMBER && (src) > DC_IRQ_SOURCE_INVALID) + ((src) < DAL_IRQ_SOURCES_NUMBER && (src) > DC_IRQ_SOURCE_INVALID) /* Number of Page Flip IRQ Sources. */ #define DAL_PFLIP_IRQ_SRC_NUM \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/include/gpio_service_interface.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/include/gpio_service_interface.h @@ -42,8 +42,8 @@ struct gpio **ptr); struct gpio_service *dal_gpio_service_create( - enum dce_version dce_version_major, - enum dce_version dce_version_minor, + enum dce_version dce_version, + enum dce_environment dce_environment, struct dc_context *ctx); struct gpio *dal_gpio_service_create_irq( only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c +++ linux-azure-5.4.0/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c @@ -85,7 +85,8 @@ //PB7 = MD0 #define MASK_VTEM_MD0__VRR_EN 0x01 #define MASK_VTEM_MD0__M_CONST 0x02 -#define MASK_VTEM_MD0__RESERVED2 0x0C +#define MASK_VTEM_MD0__QMS_EN 0x04 +#define MASK_VTEM_MD0__RESERVED2 0x08 #define MASK_VTEM_MD0__FVA_FACTOR_M1 0xF0 //MD1 @@ -94,7 +95,7 @@ //MD2 #define MASK_VTEM_MD2__BASE_REFRESH_RATE_98 0x03 #define MASK_VTEM_MD2__RB 0x04 -#define MASK_VTEM_MD2__RESERVED3 0xF8 +#define MASK_VTEM_MD2__NEXT_TFR 0xF8 //MD3 #define MASK_VTEM_MD3__BASE_REFRESH_RATE_07 0xFF only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/amd/include/navi10_enum.h +++ linux-azure-5.4.0/drivers/gpu/drm/amd/include/navi10_enum.h @@ -430,7 +430,7 @@ */ typedef enum ENUM_NUM_SIMD_PER_CU { -NUM_SIMD_PER_CU = 0x00000004, +NUM_SIMD_PER_CU = 0x00000002, } ENUM_NUM_SIMD_PER_CU; /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/arm/display/komeda/komeda_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/arm/display/komeda/komeda_plane.c @@ -264,6 +264,10 @@ formats = komeda_get_layer_fourcc_list(&mdev->fmt_tbl, layer->layer_type, &n_formats); + if (!formats) { + kfree(kplane); + return -ENOMEM; + } err = drm_universal_plane_init(&kms->base, plane, get_possible_crtcs(kms, c->pipeline), @@ -274,8 +278,10 @@ komeda_put_fourcc_list(formats); - if (err) - goto cleanup; + if (err) { + kfree(kplane); + return err; + } drm_plane_helper_add(plane, &komeda_plane_helper_funcs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/arm/malidp_crtc.c +++ linux-azure-5.4.0/drivers/gpu/drm/arm/malidp_crtc.c @@ -483,7 +483,10 @@ if (crtc->state) malidp_crtc_destroy_state(crtc, crtc->state); - __drm_atomic_helper_crtc_reset(crtc, &state->base); + if (state) + __drm_atomic_helper_crtc_reset(crtc, &state->base); + else + __drm_atomic_helper_crtc_reset(crtc, NULL); } static int malidp_crtc_enable_vblank(struct drm_crtc *crtc) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/bridge/adv7511/adv7511.h +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/adv7511/adv7511.h @@ -384,10 +384,7 @@ #else static inline int adv7511_cec_init(struct device *dev, struct adv7511 *adv7511) { - unsigned int offset = adv7511->type == ADV7533 ? - ADV7533_REG_CEC_OFFSET : 0; - - regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL + offset, + regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL, ADV7511_CEC_CTRL_POWER_DOWN); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/bridge/adv7511/adv7511_cec.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/adv7511/adv7511_cec.c @@ -316,7 +316,7 @@ goto err_cec_alloc; } - regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL + offset, 0); + regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL, 0); /* cec soft reset */ regmap_write(adv7511->regmap_cec, ADV7511_REG_CEC_SOFT_RESET + offset, 0x01); @@ -343,7 +343,7 @@ dev_info(dev, "Initializing CEC failed with error %d, disabling CEC\n", ret); err_cec_parse_dt: - regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL + offset, + regmap_write(adv7511->regmap, ADV7511_REG_CEC_CTRL, ADV7511_CEC_CTRL_POWER_DOWN); return ret == -EPROBE_DEFER ? ret : 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c @@ -985,6 +985,10 @@ ADV7511_CEC_I2C_ADDR_DEFAULT); if (IS_ERR(adv->i2c_cec)) return PTR_ERR(adv->i2c_cec); + + regmap_write(adv->regmap, ADV7511_REG_CEC_I2C_ADDR, + adv->i2c_cec->addr << 1); + i2c_set_clientdata(adv->i2c_cec, adv); adv->regmap_cec = devm_regmap_init_i2c(adv->i2c_cec, @@ -1189,9 +1193,6 @@ if (ret) goto err_i2c_unregister_packet; - regmap_write(adv7511->regmap, ADV7511_REG_CEC_I2C_ADDR, - adv7511->i2c_cec->addr << 1); - INIT_WORK(&adv7511->hpd_work, adv7511_hpd_work); if (i2c->irq) { @@ -1225,6 +1226,7 @@ return 0; err_unregister_cec: + cec_unregister_adapter(adv7511->cec_adap); i2c_unregister_device(adv7511->i2c_cec); if (adv7511->cec_clk) clk_disable_unprepare(adv7511->cec_clk); @@ -1300,10 +1302,21 @@ static int __init adv7511_init(void) { - if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) - mipi_dsi_driver_register(&adv7533_dsi_driver); + int ret; - return i2c_add_driver(&adv7511_driver); + if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) { + ret = mipi_dsi_driver_register(&adv7533_dsi_driver); + if (ret) + return ret; + } + + ret = i2c_add_driver(&adv7511_driver); + if (ret) { + if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) + mipi_dsi_driver_unregister(&adv7533_dsi_driver); + } + + return ret; } module_init(adv7511_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/bridge/analogix/analogix_dp_reg.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/analogix/analogix_dp_reg.c @@ -1086,11 +1086,21 @@ if (!blocking) return 0; + /* + * db[1]!=0: entering PSR, wait for fully active remote frame buffer. + * db[1]==0: exiting PSR, wait for either + * (a) ACTIVE_RESYNC - the sink "must display the + * incoming active frames from the Source device with no visible + * glitches and/or artifacts", even though timings may still be + * re-synchronizing; or + * (b) INACTIVE - the transition is fully complete. + */ ret = readx_poll_timeout(analogix_dp_get_psr_status, dp, psr_status, psr_status >= 0 && ((vsc->db[1] && psr_status == DP_PSR_SINK_ACTIVE_RFB) || - (!vsc->db[1] && psr_status == DP_PSR_SINK_INACTIVE)), 1500, - DP_TIMEOUT_PSR_LOOP_MS * 1000); + (!vsc->db[1] && (psr_status == DP_PSR_SINK_ACTIVE_RESYNC || + psr_status == DP_PSR_SINK_INACTIVE))), + 1500, DP_TIMEOUT_PSR_LOOP_MS * 1000); if (ret) { dev_warn(dp->dev, "Failed to apply PSR %d\n", ret); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/bridge/cdns-dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/bridge/cdns-dsi.c @@ -1026,7 +1026,7 @@ struct mipi_dsi_packet packet; int ret, i, tx_len, rx_len; - ret = pm_runtime_get_sync(host->dev); + ret = pm_runtime_resume_and_get(host->dev); if (ret < 0) return ret; @@ -1284,6 +1284,7 @@ { .compatible = "cdns,dsi" }, { }, }; +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match); static struct platform_driver cdns_dsi_platform_driver = { .probe = cdns_dsi_drm_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_auth.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_auth.c @@ -268,9 +268,10 @@ void drm_master_release(struct drm_file *file_priv) { struct drm_device *dev = file_priv->minor->dev; - struct drm_master *master = file_priv->master; + struct drm_master *master; mutex_lock(&dev->master_mutex); + master = file_priv->master; if (file_priv->magic) idr_remove(&file_priv->master->magic_map, file_priv->magic); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_crtc_helper_internal.h +++ linux-azure-5.4.0/drivers/gpu/drm/drm_crtc_helper_internal.h @@ -32,16 +32,6 @@ #include #include -/* drm_fb_helper.c */ -#ifdef CONFIG_DRM_FBDEV_EMULATION -int drm_fb_helper_modinit(void); -#else -static inline int drm_fb_helper_modinit(void) -{ - return 0; -} -#endif - /* drm_dp_aux_dev.c */ #ifdef CONFIG_DRM_DP_AUX_CHARDEV int drm_dp_aux_dev_init(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_internal.h +++ linux-azure-5.4.0/drivers/gpu/drm/drm_internal.h @@ -59,8 +59,8 @@ void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv); void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv); -void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv, - struct dma_buf *dma_buf); +void drm_prime_remove_buf_handle(struct drm_prime_file_private *prime_fpriv, + uint32_t handle); /* drm_drv.c */ struct drm_minor *drm_minor_acquire(unsigned int minor_id); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_kms_helper_common.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_kms_helper_common.c @@ -64,19 +64,18 @@ static int __init drm_kms_helper_init(void) { - int ret; + /* + * The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT) + * but the module doesn't depend on any fb console symbols. At least + * attempt to load fbcon to avoid leaving the system without a usable + * console. + */ + if (IS_ENABLED(CONFIG_DRM_FBDEV_EMULATION) && + IS_MODULE(CONFIG_FRAMEBUFFER_CONSOLE) && + !IS_ENABLED(CONFIG_EXPERT)) + request_module_nowait("fbcon"); - /* Call init functions from specific kms helpers here */ - ret = drm_fb_helper_modinit(); - if (ret < 0) - goto out; - - ret = drm_dp_aux_dev_init(); - if (ret < 0) - goto out; - -out: - return ret; + return drm_dp_aux_dev_init(); } static void __exit drm_kms_helper_exit(void) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_plane.c @@ -186,6 +186,13 @@ if (WARN_ON(config->num_total_plane >= 32)) return -EINVAL; + /* + * First driver to need more than 64 formats needs to fix this. Each + * format is encoded as a bit and the current code only supports a u64. + */ + if (WARN_ON(format_count > 64)) + return -EINVAL; + WARN_ON(drm_drv_uses_atomic_modeset(dev) && (!funcs->atomic_destroy_state || !funcs->atomic_duplicate_state)); @@ -207,13 +214,6 @@ return -ENOMEM; } - /* - * First driver to need more than 64 formats needs to fix this. Each - * format is encoded as a bit and the current code only supports a u64. - */ - if (WARN_ON(format_count > 64)) - return -EINVAL; - if (format_modifiers) { const uint64_t *temp_modifiers = format_modifiers; while (*temp_modifiers++ != DRM_FORMAT_MOD_INVALID) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_plane_helper.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_plane_helper.c @@ -123,7 +123,6 @@ .crtc_w = drm_rect_width(dst), .crtc_h = drm_rect_height(dst), .rotation = rotation, - .visible = *visible, }; struct drm_crtc_state crtc_state = { .crtc = crtc, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/drm_prime.c +++ linux-azure-5.4.0/drivers/gpu/drm/drm_prime.c @@ -187,29 +187,33 @@ return -ENOENT; } -void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv, - struct dma_buf *dma_buf) +void drm_prime_remove_buf_handle(struct drm_prime_file_private *prime_fpriv, + uint32_t handle) { struct rb_node *rb; - rb = prime_fpriv->dmabufs.rb_node; + mutex_lock(&prime_fpriv->lock); + + rb = prime_fpriv->handles.rb_node; while (rb) { struct drm_prime_member *member; - member = rb_entry(rb, struct drm_prime_member, dmabuf_rb); - if (member->dma_buf == dma_buf) { + member = rb_entry(rb, struct drm_prime_member, handle_rb); + if (member->handle == handle) { rb_erase(&member->handle_rb, &prime_fpriv->handles); rb_erase(&member->dmabuf_rb, &prime_fpriv->dmabufs); - dma_buf_put(dma_buf); + dma_buf_put(member->dma_buf); kfree(member); - return; - } else if (member->dma_buf < dma_buf) { + break; + } else if (member->handle < handle) { rb = rb->rb_right; } else { rb = rb->rb_left; } } + + mutex_unlock(&prime_fpriv->lock); } void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_gem.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gem.c @@ -304,8 +304,7 @@ list_del(&mapping->obj_node); } - etnaviv_iommu_context_get(mmu_context); - mapping->context = mmu_context; + mapping->context = etnaviv_iommu_context_get(mmu_context); mapping->use = 1; ret = etnaviv_iommu_map_gem(mmu_context, etnaviv_obj, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_gpu.h +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_gpu.h @@ -101,6 +101,7 @@ struct workqueue_struct *wq; struct drm_gpu_scheduler sched; bool initialized; + bool fe_running; /* 'ring'-buffer: */ struct etnaviv_cmdbuf buffer; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_iommu.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_iommu.c @@ -92,6 +92,10 @@ struct etnaviv_iommuv1_context *v1_context = to_v1_context(context); u32 pgtable; + if (gpu->mmu_context) + etnaviv_iommu_context_put(gpu->mmu_context); + gpu->mmu_context = etnaviv_iommu_context_get(context); + /* set base addresses */ gpu_write(gpu, VIVS_MC_MEMORY_BASE_ADDR_RA, context->global->memory_base); gpu_write(gpu, VIVS_MC_MEMORY_BASE_ADDR_FE, context->global->memory_base); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c @@ -172,6 +172,10 @@ if (gpu_read(gpu, VIVS_MMUv2_CONTROL) & VIVS_MMUv2_CONTROL_ENABLE) return; + if (gpu->mmu_context) + etnaviv_iommu_context_put(gpu->mmu_context); + gpu->mmu_context = etnaviv_iommu_context_get(context); + prefetch = etnaviv_buffer_config_mmuv2(gpu, (u32)v2_context->mtlb_dma, (u32)context->global->bad_page_dma); @@ -192,6 +196,10 @@ if (gpu_read(gpu, VIVS_MMUv2_SEC_CONTROL) & VIVS_MMUv2_SEC_CONTROL_ENABLE) return; + if (gpu->mmu_context) + etnaviv_iommu_context_put(gpu->mmu_context); + gpu->mmu_context = etnaviv_iommu_context_get(context); + gpu_write(gpu, VIVS_MMUv2_PTA_ADDRESS_LOW, lower_32_bits(context->global->v2.pta_dma)); gpu_write(gpu, VIVS_MMUv2_PTA_ADDRESS_HIGH, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_mmu.c +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_mmu.c @@ -204,6 +204,7 @@ */ list_for_each_entry_safe(m, n, &list, scan_node) { etnaviv_iommu_remove_mapping(context, m); + etnaviv_iommu_context_put(m->context); m->context = NULL; list_del_init(&m->mmu_node); list_del_init(&m->scan_node); @@ -288,6 +289,12 @@ mutex_lock(&context->lock); + /* Bail if the mapping has been reaped by another thread */ + if (!mapping->context) { + mutex_unlock(&context->lock); + return; + } + /* If the vram node is on the mm, unmap and remove the node */ if (mapping->vram_node.mm == &context->mm) etnaviv_iommu_remove_mapping(context, mapping); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/etnaviv/etnaviv_mmu.h +++ linux-azure-5.4.0/drivers/gpu/drm/etnaviv/etnaviv_mmu.h @@ -105,9 +105,11 @@ struct etnaviv_iommu_context * etnaviv_iommu_context_init(struct etnaviv_iommu_global *global, struct etnaviv_cmdbuf_suballoc *suballoc); -static inline void etnaviv_iommu_context_get(struct etnaviv_iommu_context *ctx) +static inline struct etnaviv_iommu_context * +etnaviv_iommu_context_get(struct etnaviv_iommu_context *ctx) { kref_get(&ctx->refcount); + return ctx; } void etnaviv_iommu_context_put(struct etnaviv_iommu_context *ctx); void etnaviv_iommu_restore(struct etnaviv_gpu *gpu, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/gma500/psb_intel_display.c +++ linux-azure-5.4.0/drivers/gpu/drm/gma500/psb_intel_display.c @@ -532,14 +532,15 @@ struct drm_crtc *psb_intel_get_crtc_from_pipe(struct drm_device *dev, int pipe) { - struct drm_crtc *crtc = NULL; + struct drm_crtc *crtc; list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { struct gma_crtc *gma_crtc = to_gma_crtc(crtc); + if (gma_crtc->pipe == pipe) - break; + return crtc; } - return crtc; + return NULL; } int gma_connector_clones(struct drm_device *dev, int type_mask) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/display/intel_quirks.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_quirks.c @@ -146,6 +146,9 @@ /* ASRock ITX*/ { 0x3185, 0x1849, 0x2212, quirk_increase_ddi_disabled_time }, { 0x3184, 0x1849, 0x2212, quirk_increase_ddi_disabled_time }, + /* ECS Liva Q2 */ + { 0x3185, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time }, + { 0x3184, 0x1019, 0xa94d, quirk_increase_ddi_disabled_time }, }; void intel_init_quirks(struct drm_i915_private *i915) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/display/intel_sdvo.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/display/intel_sdvo.c @@ -2693,13 +2693,10 @@ if (!intel_sdvo_connector) return false; - if (device == 0) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS0; + if (device == 0) intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS0; - } else if (device == 1) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_TMDS1; + else if (device == 1) intel_sdvo_connector->output_flag = SDVO_OUTPUT_TMDS1; - } intel_connector = &intel_sdvo_connector->base; connector = &intel_connector->base; @@ -2753,7 +2750,6 @@ encoder->encoder_type = DRM_MODE_ENCODER_TVDAC; connector->connector_type = DRM_MODE_CONNECTOR_SVIDEO; - intel_sdvo->controlled_output |= type; intel_sdvo_connector->output_flag = type; if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) { @@ -2794,13 +2790,10 @@ encoder->encoder_type = DRM_MODE_ENCODER_DAC; connector->connector_type = DRM_MODE_CONNECTOR_VGA; - if (device == 0) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB0; + if (device == 0) intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB0; - } else if (device == 1) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_RGB1; + else if (device == 1) intel_sdvo_connector->output_flag = SDVO_OUTPUT_RGB1; - } if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) { kfree(intel_sdvo_connector); @@ -2830,13 +2823,10 @@ encoder->encoder_type = DRM_MODE_ENCODER_LVDS; connector->connector_type = DRM_MODE_CONNECTOR_LVDS; - if (device == 0) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS0; + if (device == 0) intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS0; - } else if (device == 1) { - intel_sdvo->controlled_output |= SDVO_OUTPUT_LVDS1; + else if (device == 1) intel_sdvo_connector->output_flag = SDVO_OUTPUT_LVDS1; - } if (intel_sdvo_connector_init(intel_sdvo_connector, intel_sdvo) < 0) { kfree(intel_sdvo_connector); @@ -2869,16 +2859,39 @@ return false; } +static u16 intel_sdvo_filter_output_flags(u16 flags) +{ + flags &= SDVO_OUTPUT_MASK; + + /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/ + if (!(flags & SDVO_OUTPUT_TMDS0)) + flags &= ~SDVO_OUTPUT_TMDS1; + + if (!(flags & SDVO_OUTPUT_RGB0)) + flags &= ~SDVO_OUTPUT_RGB1; + + if (!(flags & SDVO_OUTPUT_LVDS0)) + flags &= ~SDVO_OUTPUT_LVDS1; + + return flags; +} + static bool intel_sdvo_output_setup(struct intel_sdvo *intel_sdvo, u16 flags) { - /* SDVO requires XXX1 function may not exist unless it has XXX0 function.*/ + struct drm_i915_private *i915 = to_i915(intel_sdvo->base.base.dev); + + flags = intel_sdvo_filter_output_flags(flags); + + intel_sdvo->controlled_output = flags; + + intel_sdvo_select_ddc_bus(i915, intel_sdvo); if (flags & SDVO_OUTPUT_TMDS0) if (!intel_sdvo_dvi_init(intel_sdvo, 0)) return false; - if ((flags & SDVO_TMDS_MASK) == SDVO_TMDS_MASK) + if (flags & SDVO_OUTPUT_TMDS1) if (!intel_sdvo_dvi_init(intel_sdvo, 1)) return false; @@ -2899,7 +2912,7 @@ if (!intel_sdvo_analog_init(intel_sdvo, 0)) return false; - if ((flags & SDVO_RGB_MASK) == SDVO_RGB_MASK) + if (flags & SDVO_OUTPUT_RGB1) if (!intel_sdvo_analog_init(intel_sdvo, 1)) return false; @@ -2907,14 +2920,13 @@ if (!intel_sdvo_lvds_init(intel_sdvo, 0)) return false; - if ((flags & SDVO_LVDS_MASK) == SDVO_LVDS_MASK) + if (flags & SDVO_OUTPUT_LVDS1) if (!intel_sdvo_lvds_init(intel_sdvo, 1)) return false; - if ((flags & SDVO_OUTPUT_MASK) == 0) { + if (flags == 0) { unsigned char bytes[2]; - intel_sdvo->controlled_output = 0; memcpy(bytes, &intel_sdvo->caps.output_flags, 2); DRM_DEBUG_KMS("%s: Unknown SDVO output type (0x%02x%02x)\n", SDVO_NAME(intel_sdvo), @@ -3321,8 +3333,6 @@ */ intel_sdvo->base.cloneable = 0; - intel_sdvo_select_ddc_bus(dev_priv, intel_sdvo); - /* Set the input timing to the screen. Assume always input 0. */ if (!intel_sdvo_set_target_input(intel_sdvo)) goto err_output; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/gem/i915_gem_pages.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gem/i915_gem_pages.c @@ -8,6 +8,8 @@ #include "i915_gem_object.h" #include "i915_scatterlist.h" +#include "gt/intel_gt.h" + void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj, struct sg_table *pages, unsigned int sg_page_sizes) @@ -176,6 +178,14 @@ __i915_gem_object_reset_page_iter(obj); obj->mm.page_sizes.phys = obj->mm.page_sizes.sg = 0; + if (test_and_clear_bit(I915_BO_WAS_BOUND_BIT, &obj->flags)) { + struct drm_i915_private *i915 = to_i915(obj->base.dev); + intel_wakeref_t wakeref; + + with_intel_runtime_pm_if_in_use(&i915->runtime_pm, wakeref) + intel_gt_invalidate_tlbs(&i915->gt); + } + return pages; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/gt/intel_gt.c +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_gt.c @@ -15,6 +15,8 @@ spin_lock_init(>->irq_lock); + mutex_init(>->tlb_invalidate_lock); + INIT_LIST_HEAD(>->closed_vma); spin_lock_init(>->closed_lock); @@ -266,3 +268,113 @@ intel_uc_driver_late_release(>->uc); intel_gt_fini_reset(gt); } + +struct reg_and_bit { + i915_reg_t reg; + u32 bit; +}; + +static struct reg_and_bit +get_reg_and_bit(const struct intel_engine_cs *engine, const bool gen8, + const i915_reg_t *regs, const unsigned int num) +{ + const unsigned int class = engine->class; + struct reg_and_bit rb = { }; + + if (WARN_ON_ONCE(class >= num || !regs[class].reg)) + return rb; + + rb.reg = regs[class]; + if (gen8 && class == VIDEO_DECODE_CLASS) + rb.reg.reg += 4 * engine->instance; /* GEN8_M2TCR */ + else + rb.bit = engine->instance; + + rb.bit = BIT(rb.bit); + + return rb; +} + +void intel_gt_invalidate_tlbs(struct intel_gt *gt) +{ + static const i915_reg_t gen8_regs[] = { + [RENDER_CLASS] = GEN8_RTCR, + [VIDEO_DECODE_CLASS] = GEN8_M1TCR, /* , GEN8_M2TCR */ + [VIDEO_ENHANCEMENT_CLASS] = GEN8_VTCR, + [COPY_ENGINE_CLASS] = GEN8_BTCR, + }; + static const i915_reg_t gen12_regs[] = { + [RENDER_CLASS] = GEN12_GFX_TLB_INV_CR, + [VIDEO_DECODE_CLASS] = GEN12_VD_TLB_INV_CR, + [VIDEO_ENHANCEMENT_CLASS] = GEN12_VE_TLB_INV_CR, + [COPY_ENGINE_CLASS] = GEN12_BLT_TLB_INV_CR, + }; + struct drm_i915_private *i915 = gt->i915; + struct intel_uncore *uncore = gt->uncore; + struct intel_engine_cs *engine; + enum intel_engine_id id; + const i915_reg_t *regs; + unsigned int num = 0; + + if (I915_SELFTEST_ONLY(gt->awake == -ENODEV)) + return; + + if (INTEL_GEN(i915) == 12) { + regs = gen12_regs; + num = ARRAY_SIZE(gen12_regs); + } else if (INTEL_GEN(i915) >= 8 && INTEL_GEN(i915) <= 11) { + regs = gen8_regs; + num = ARRAY_SIZE(gen8_regs); + } else if (INTEL_GEN(i915) < 8) { + return; + } + + if (WARN_ONCE(!num, "Platform does not implement TLB invalidation!")) + return; + + GEM_TRACE("\n"); + + assert_rpm_wakelock_held(&i915->runtime_pm); + + mutex_lock(>->tlb_invalidate_lock); + intel_uncore_forcewake_get(uncore, FORCEWAKE_ALL); + + spin_lock_irq(&uncore->lock); /* serialise invalidate with GT reset */ + + for_each_engine(engine, gt, id) { + struct reg_and_bit rb; + + rb = get_reg_and_bit(engine, regs == gen8_regs, regs, num); + if (!i915_mmio_reg_offset(rb.reg)) + continue; + + intel_uncore_write_fw(uncore, rb.reg, rb.bit); + } + + spin_unlock_irq(&uncore->lock); + + for_each_engine(engine, gt, id) { + /* + * HW architecture suggest typical invalidation time at 40us, + * with pessimistic cases up to 100us and a recommendation to + * cap at 1ms. We go a bit higher just in case. + */ + const unsigned int timeout_us = 100; + const unsigned int timeout_ms = 4; + struct reg_and_bit rb; + + rb = get_reg_and_bit(engine, regs == gen8_regs, regs, num); + if (!i915_mmio_reg_offset(rb.reg)) + continue; + + if (__intel_wait_for_register_fw(uncore, + rb.reg, rb.bit, 0, + timeout_us, timeout_ms, + NULL)) + DRM_ERROR_RATELIMITED("%s TLB invalidation did not complete in %ums!\n", + engine->name, timeout_ms); + } + + intel_uncore_forcewake_put(uncore, FORCEWAKE_ALL); + mutex_unlock(>->tlb_invalidate_lock); +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/gt/intel_gt.h +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_gt.h @@ -57,4 +57,6 @@ void intel_gt_queue_hangcheck(struct intel_gt *gt); +void intel_gt_invalidate_tlbs(struct intel_gt *gt); + #endif /* __INTEL_GT_H__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/i915/gt/intel_gt_types.h +++ linux-azure-5.4.0/drivers/gpu/drm/i915/gt/intel_gt_types.h @@ -40,6 +40,8 @@ struct intel_uc uc; + struct mutex tlb_invalidate_lock; + struct intel_gt_timelines { spinlock_t lock; /* protects active_list */ struct list_head active_list; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/lima/lima_device.c +++ linux-azure-5.4.0/drivers/gpu/drm/lima/lima_device.c @@ -293,6 +293,7 @@ struct resource *res; dma_set_coherent_mask(ldev->dev, DMA_BIT_MASK(32)); + dma_set_max_seg_size(ldev->dev, UINT_MAX); err = lima_clk_init(ldev); if (err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/mediatek/mtk_cec.c +++ linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_cec.c @@ -84,7 +84,7 @@ u32 tmp = readl(cec->regs + offset) & ~mask; tmp |= val & mask; - writel(val, cec->regs + offset); + writel(tmp, cec->regs + offset); } void mtk_cec_set_hpd_event(struct device *dev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/mediatek/mtk_dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/mediatek/mtk_dsi.c @@ -645,6 +645,8 @@ mtk_dsi_reset_engine(dsi); mtk_dsi_lane0_ulp_mode_enter(dsi); mtk_dsi_clk_ulp_mode_enter(dsi); + /* set the lane number as 0 to pull down mipi */ + writel(0, dsi->regs + DSI_TXRX_CTRL); mtk_dsi_disable(dsi); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/meson/meson_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/meson/meson_plane.c @@ -128,7 +128,7 @@ /* Enable OSD and BLK0, set max global alpha */ priv->viu.osd1_ctrl_stat = OSD_ENABLE | - (0xFF << OSD_GLOBAL_ALPHA_SHIFT) | + (0x100 << OSD_GLOBAL_ALPHA_SHIFT) | OSD_BLK0_ENABLE; canvas_id_osd1 = priv->canvas_id_osd1; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/meson/meson_registers.h +++ linux-azure-5.4.0/drivers/gpu/drm/meson/meson_registers.h @@ -590,6 +590,11 @@ #define VPP_WRAP_OSD3_MATRIX_PRE_OFFSET2 0x3dbc #define VPP_WRAP_OSD3_MATRIX_EN_CTRL 0x3dbd +/* osd1 HDR */ +#define OSD1_HDR2_CTRL 0x38a0 +#define OSD1_HDR2_CTRL_VDIN0_HDR2_TOP_EN BIT(13) +#define OSD1_HDR2_CTRL_REG_ONLY_MAT BIT(16) + /* osd2 scaler */ #define OSD2_VSC_PHASE_STEP 0x3d00 #define OSD2_VSC_INI_PHASE 0x3d01 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/meson/meson_viu.c +++ linux-azure-5.4.0/drivers/gpu/drm/meson/meson_viu.c @@ -91,7 +91,7 @@ priv->io_base + _REG(VPP_WRAP_OSD1_MATRIX_COEF11_12)); writel(((m[9] & 0x1fff) << 16) | (m[10] & 0x1fff), priv->io_base + _REG(VPP_WRAP_OSD1_MATRIX_COEF20_21)); - writel((m[11] & 0x1fff) << 16, + writel((m[11] & 0x1fff), priv->io_base + _REG(VPP_WRAP_OSD1_MATRIX_COEF22)); writel(((m[18] & 0xfff) << 16) | (m[19] & 0xfff), @@ -356,9 +356,14 @@ if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) || meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) meson_viu_load_matrix(priv); - else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) + else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) { meson_viu_set_g12a_osd1_matrix(priv, RGB709_to_YUV709l_coeff, true); + /* fix green/pink color distortion from vendor u-boot */ + writel_bits_relaxed(OSD1_HDR2_CTRL_REG_ONLY_MAT | + OSD1_HDR2_CTRL_VDIN0_HDR2_TOP_EN, 0, + priv->io_base + _REG(OSD1_HDR2_CTRL)); + } /* Initialize OSD1 fifo control register */ reg = VIU_OSD_DDR_PRIORITY_URGENT | @@ -395,17 +400,17 @@ priv->io_base + _REG(VD2_IF0_LUMA_FIFO_SIZE)); if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) { - writel_relaxed(VIU_OSD_BLEND_REORDER(0, 1) | - VIU_OSD_BLEND_REORDER(1, 0) | - VIU_OSD_BLEND_REORDER(2, 0) | - VIU_OSD_BLEND_REORDER(3, 0) | - VIU_OSD_BLEND_DIN_EN(1) | - VIU_OSD_BLEND1_DIN3_BYPASS_TO_DOUT1 | - VIU_OSD_BLEND1_DOUT_BYPASS_TO_BLEND2 | - VIU_OSD_BLEND_DIN0_BYPASS_TO_DOUT0 | - VIU_OSD_BLEND_BLEN2_PREMULT_EN(1) | - VIU_OSD_BLEND_HOLD_LINES(4), - priv->io_base + _REG(VIU_OSD_BLEND_CTRL)); + u32 val = (u32)VIU_OSD_BLEND_REORDER(0, 1) | + (u32)VIU_OSD_BLEND_REORDER(1, 0) | + (u32)VIU_OSD_BLEND_REORDER(2, 0) | + (u32)VIU_OSD_BLEND_REORDER(3, 0) | + (u32)VIU_OSD_BLEND_DIN_EN(1) | + (u32)VIU_OSD_BLEND1_DIN3_BYPASS_TO_DOUT1 | + (u32)VIU_OSD_BLEND1_DOUT_BYPASS_TO_BLEND2 | + (u32)VIU_OSD_BLEND_DIN0_BYPASS_TO_DOUT0 | + (u32)VIU_OSD_BLEND_BLEN2_PREMULT_EN(1) | + (u32)VIU_OSD_BLEND_HOLD_LINES(4); + writel_relaxed(val, priv->io_base + _REG(VIU_OSD_BLEND_CTRL)); writel_relaxed(OSD_BLEND_PATH_SEL_ENABLE, priv->io_base + _REG(OSD1_BLEND_SRC_CTRL)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c @@ -281,10 +281,12 @@ int i; for (i = 0; i < ctx->mixer_count; i++) { - DPU_REG_WRITE(c, CTL_LAYER(LM_0 + i), 0); - DPU_REG_WRITE(c, CTL_LAYER_EXT(LM_0 + i), 0); - DPU_REG_WRITE(c, CTL_LAYER_EXT2(LM_0 + i), 0); - DPU_REG_WRITE(c, CTL_LAYER_EXT3(LM_0 + i), 0); + enum dpu_lm mixer_id = ctx->mixer_hw_caps[i].id; + + DPU_REG_WRITE(c, CTL_LAYER(mixer_id), 0); + DPU_REG_WRITE(c, CTL_LAYER_EXT(mixer_id), 0); + DPU_REG_WRITE(c, CTL_LAYER_EXT2(mixer_id), 0); + DPU_REG_WRITE(c, CTL_LAYER_EXT3(mixer_id), 0); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c @@ -137,11 +137,13 @@ u32 *idx) { int rc = 0; - const struct dpu_sspp_sub_blks *sblk = ctx->cap->sblk; + const struct dpu_sspp_sub_blks *sblk; - if (!ctx) + if (!ctx || !ctx->cap || !ctx->cap->sblk) return -EINVAL; + sblk = ctx->cap->sblk; + switch (s_id) { case DPU_SSPP_SRC: *idx = sblk->src_blk.base; @@ -404,7 +406,7 @@ (void)pe; if (_sspp_subblk_offset(ctx, DPU_SSPP_SCALER_QSEED3, &idx) || !sspp - || !scaler3_cfg || !ctx || !ctx->cap || !ctx->cap->sblk) + || !scaler3_cfg) return; dpu_hw_setup_scaler3(&ctx->hw, scaler3_cfg, idx, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c @@ -88,8 +88,8 @@ &status); } else { seq_puts(s, "\nSafe signal status:\n"); - if (kms->hw_mdp->ops.get_danger_status) - kms->hw_mdp->ops.get_danger_status(kms->hw_mdp, + if (kms->hw_mdp->ops.get_safe_status) + kms->hw_mdp->ops.get_safe_status(kms->hw_mdp, &status); } pm_runtime_put_sync(&kms->pdev->dev); @@ -596,11 +596,11 @@ _dpu_kms_mmu_destroy(dpu_kms); if (dpu_kms->catalog) { - for (i = 0; i < dpu_kms->catalog->vbif_count; i++) { - u32 vbif_idx = dpu_kms->catalog->vbif[i].id; - - if ((vbif_idx < VBIF_MAX) && dpu_kms->hw_vbif[vbif_idx]) - dpu_hw_vbif_destroy(dpu_kms->hw_vbif[vbif_idx]); + for (i = 0; i < ARRAY_SIZE(dpu_kms->hw_vbif); i++) { + if (dpu_kms->hw_vbif[i]) { + dpu_hw_vbif_destroy(dpu_kms->hw_vbif[i]); + dpu_kms->hw_vbif[i] = NULL; + } } } @@ -897,7 +897,7 @@ for (i = 0; i < dpu_kms->catalog->vbif_count; i++) { u32 vbif_idx = dpu_kms->catalog->vbif[i].id; - dpu_kms->hw_vbif[i] = dpu_hw_vbif_init(vbif_idx, + dpu_kms->hw_vbif[vbif_idx] = dpu_hw_vbif_init(vbif_idx, dpu_kms->vbif[vbif_idx], dpu_kms->catalog); if (IS_ERR_OR_NULL(dpu_kms->hw_vbif[vbif_idx])) { rc = PTR_ERR(dpu_kms->hw_vbif[vbif_idx]); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_vbif.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/dpu1/dpu_vbif.c @@ -11,6 +11,14 @@ #include "dpu_hw_vbif.h" #include "dpu_trace.h" +static struct dpu_hw_vbif *dpu_get_vbif(struct dpu_kms *dpu_kms, enum dpu_vbif vbif_idx) +{ + if (vbif_idx < ARRAY_SIZE(dpu_kms->hw_vbif)) + return dpu_kms->hw_vbif[vbif_idx]; + + return NULL; +} + /** * _dpu_vbif_wait_for_xin_halt - wait for the xin to halt * @vbif: Pointer to hardware vbif driver @@ -148,11 +156,11 @@ void dpu_vbif_set_ot_limit(struct dpu_kms *dpu_kms, struct dpu_vbif_set_ot_params *params) { - struct dpu_hw_vbif *vbif = NULL; + struct dpu_hw_vbif *vbif; struct dpu_hw_mdp *mdp; bool forced_on = false; u32 ot_lim; - int ret, i; + int ret; if (!dpu_kms) { DPU_ERROR("invalid arguments\n"); @@ -160,12 +168,7 @@ } mdp = dpu_kms->hw_mdp; - for (i = 0; i < ARRAY_SIZE(dpu_kms->hw_vbif); i++) { - if (dpu_kms->hw_vbif[i] && - dpu_kms->hw_vbif[i]->idx == params->vbif_idx) - vbif = dpu_kms->hw_vbif[i]; - } - + vbif = dpu_get_vbif(dpu_kms, params->vbif_idx); if (!vbif || !mdp) { DPU_DEBUG("invalid arguments vbif %d mdp %d\n", vbif != 0, mdp != 0); @@ -208,7 +211,7 @@ void dpu_vbif_set_qos_remap(struct dpu_kms *dpu_kms, struct dpu_vbif_set_qos_params *params) { - struct dpu_hw_vbif *vbif = NULL; + struct dpu_hw_vbif *vbif; struct dpu_hw_mdp *mdp; bool forced_on = false; const struct dpu_vbif_qos_tbl *qos_tbl; @@ -220,13 +223,7 @@ } mdp = dpu_kms->hw_mdp; - for (i = 0; i < ARRAY_SIZE(dpu_kms->hw_vbif); i++) { - if (dpu_kms->hw_vbif[i] && - dpu_kms->hw_vbif[i]->idx == params->vbif_idx) { - vbif = dpu_kms->hw_vbif[i]; - break; - } - } + vbif = dpu_get_vbif(dpu_kms, params->vbif_idx); if (!vbif || !vbif->cap) { DPU_ERROR("invalid vbif %d\n", params->vbif_idx); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c @@ -88,8 +88,6 @@ if (mdp4_kms->rev > 1) mdp4_write(mdp4_kms, REG_MDP4_RESET_STATUS, 1); - dev->mode_config.allow_fb_modifiers = true; - out: pm_runtime_put_sync(dev->dev); @@ -110,13 +108,6 @@ static void mdp4_prepare_commit(struct msm_kms *kms, struct drm_atomic_state *state) { - int i; - struct drm_crtc *crtc; - struct drm_crtc_state *crtc_state; - - /* see 119ecb7fd */ - for_each_new_crtc_in_state(state, crtc, crtc_state, i) - drm_crtc_vblank_get(crtc); } static void mdp4_flush_commit(struct msm_kms *kms, unsigned crtc_mask) @@ -135,12 +126,6 @@ static void mdp4_complete_commit(struct msm_kms *kms, unsigned crtc_mask) { - struct mdp4_kms *mdp4_kms = to_mdp4_kms(to_mdp_kms(kms)); - struct drm_crtc *crtc; - - /* see 119ecb7fd */ - for_each_crtc_mask(mdp4_kms->dev, crtc, crtc_mask) - drm_crtc_vblank_put(crtc); } static long mdp4_round_pixclk(struct msm_kms *kms, unsigned long rate, @@ -260,6 +245,7 @@ encoder = mdp4_lcdc_encoder_init(dev, panel_node); if (IS_ERR(encoder)) { DRM_DEV_ERROR(dev->dev, "failed to construct LCDC encoder\n"); + of_node_put(panel_node); return PTR_ERR(encoder); } @@ -269,6 +255,7 @@ connector = mdp4_lvds_connector_init(dev, panel_node, encoder); if (IS_ERR(connector)) { DRM_DEV_ERROR(dev->dev, "failed to initialize LVDS connector\n"); + of_node_put(panel_node); return PTR_ERR(connector); } @@ -420,6 +407,7 @@ { struct platform_device *pdev = to_platform_device(dev->dev); struct mdp4_platform_config *config = mdp4_get_config(pdev); + struct msm_drm_private *priv = dev->dev_private; struct mdp4_kms *mdp4_kms; struct msm_kms *kms = NULL; struct msm_gem_address_space *aspace; @@ -434,7 +422,8 @@ mdp_kms_init(&mdp4_kms->base, &kms_funcs); - kms = &mdp4_kms->base.base; + priv->kms = &mdp4_kms->base.base; + kms = priv->kms; mdp4_kms->dev = dev; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp4/mdp4_lvds_connector.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp4/mdp4_lvds_connector.c @@ -61,8 +61,9 @@ return ret; } -static int mdp4_lvds_connector_mode_valid(struct drm_connector *connector, - struct drm_display_mode *mode) +static enum drm_mode_status +mdp4_lvds_connector_mode_valid(struct drm_connector *connector, + struct drm_display_mode *mode) { struct mdp4_lvds_connector *mdp4_lvds_connector = to_mdp4_lvds_connector(connector); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp4/mdp4_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp4/mdp4_plane.c @@ -347,6 +347,12 @@ return mdp4_plane->pipe; } +static const uint64_t supported_format_modifiers[] = { + DRM_FORMAT_MOD_SAMSUNG_64_32_TILE, + DRM_FORMAT_MOD_LINEAR, + DRM_FORMAT_MOD_INVALID +}; + /* initialize plane */ struct drm_plane *mdp4_plane_init(struct drm_device *dev, enum mdp4_pipe pipe_id, bool private_plane) @@ -375,7 +381,7 @@ type = private_plane ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY; ret = drm_universal_plane_init(dev, plane, 0xff, &mdp4_plane_funcs, mdp4_plane->formats, mdp4_plane->nformats, - NULL, type, NULL); + supported_format_modifiers, type, NULL); if (ret) goto fail; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.c @@ -116,21 +116,28 @@ return 0; } -void mdp5_mixer_release(struct drm_atomic_state *s, struct mdp5_hw_mixer *mixer) +int mdp5_mixer_release(struct drm_atomic_state *s, struct mdp5_hw_mixer *mixer) { struct mdp5_global_state *global_state = mdp5_get_global_state(s); - struct mdp5_hw_mixer_state *new_state = &global_state->hwmixer; + struct mdp5_hw_mixer_state *new_state; if (!mixer) - return; + return 0; + + if (IS_ERR(global_state)) + return PTR_ERR(global_state); + + new_state = &global_state->hwmixer; if (WARN_ON(!new_state->hwmixer_to_crtc[mixer->idx])) - return; + return -EINVAL; DBG("%s: release from crtc %s", mixer->name, new_state->hwmixer_to_crtc[mixer->idx]->name); new_state->hwmixer_to_crtc[mixer->idx] = NULL; + + return 0; } void mdp5_mixer_destroy(struct mdp5_hw_mixer *mixer) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.h +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.h @@ -30,7 +30,7 @@ int mdp5_mixer_assign(struct drm_atomic_state *s, struct drm_crtc *crtc, uint32_t caps, struct mdp5_hw_mixer **mixer, struct mdp5_hw_mixer **r_mixer); -void mdp5_mixer_release(struct drm_atomic_state *s, - struct mdp5_hw_mixer *mixer); +int mdp5_mixer_release(struct drm_atomic_state *s, + struct mdp5_hw_mixer *mixer); #endif /* __MDP5_LM_H__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.c @@ -119,18 +119,24 @@ return 0; } -void mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe) +int mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe) { struct msm_drm_private *priv = s->dev->dev_private; struct mdp5_kms *mdp5_kms = to_mdp5_kms(to_mdp_kms(priv->kms)); - struct mdp5_global_state *state = mdp5_get_global_state(s); - struct mdp5_hw_pipe_state *new_state = &state->hwpipe; + struct mdp5_global_state *state; + struct mdp5_hw_pipe_state *new_state; if (!hwpipe) - return; + return 0; + + state = mdp5_get_global_state(s); + if (IS_ERR(state)) + return PTR_ERR(state); + + new_state = &state->hwpipe; if (WARN_ON(!new_state->hwpipe_to_plane[hwpipe->idx])) - return; + return -EINVAL; DBG("%s: release from plane %s", hwpipe->name, new_state->hwpipe_to_plane[hwpipe->idx]->name); @@ -141,6 +147,8 @@ } new_state->hwpipe_to_plane[hwpipe->idx] = NULL; + + return 0; } void mdp5_pipe_destroy(struct mdp5_hw_pipe *hwpipe) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.h +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.h @@ -37,7 +37,7 @@ uint32_t caps, uint32_t blkcfg, struct mdp5_hw_pipe **hwpipe, struct mdp5_hw_pipe **r_hwpipe); -void mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe); +int mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe); struct mdp5_hw_pipe *mdp5_pipe_init(enum mdp5_pipe pipe, uint32_t reg_offset, uint32_t caps); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c @@ -179,7 +179,10 @@ drm_framebuffer_put(plane->state->fb); kfree(to_mdp5_plane_state(plane->state)); + plane->state = NULL; mdp5_state = kzalloc(sizeof(*mdp5_state), GFP_KERNEL); + if (!mdp5_state) + return; /* assign default blend parameters */ mdp5_state->alpha = 255; @@ -390,12 +393,24 @@ mdp5_state->r_hwpipe = NULL; - mdp5_pipe_release(state->state, old_hwpipe); - mdp5_pipe_release(state->state, old_right_hwpipe); + ret = mdp5_pipe_release(state->state, old_hwpipe); + if (ret) + return ret; + + ret = mdp5_pipe_release(state->state, old_right_hwpipe); + if (ret) + return ret; + } } else { - mdp5_pipe_release(state->state, mdp5_state->hwpipe); - mdp5_pipe_release(state->state, mdp5_state->r_hwpipe); + ret = mdp5_pipe_release(state->state, mdp5_state->hwpipe); + if (ret) + return ret; + + ret = mdp5_pipe_release(state->state, mdp5_state->r_hwpipe); + if (ret) + return ret; + mdp5_state->hwpipe = mdp5_state->r_hwpipe = NULL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/dsi/dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi.c @@ -26,17 +26,22 @@ } phy_pdev = of_find_device_by_node(phy_node); - if (phy_pdev) + if (phy_pdev) { msm_dsi->phy = platform_get_drvdata(phy_pdev); + msm_dsi->phy_dev = &phy_pdev->dev; + } of_node_put(phy_node); - if (!phy_pdev || !msm_dsi->phy) { + if (!phy_pdev) { + DRM_DEV_ERROR(&pdev->dev, "%s: phy driver is not ready\n", __func__); + return -EPROBE_DEFER; + } + if (!msm_dsi->phy) { + put_device(&phy_pdev->dev); DRM_DEV_ERROR(&pdev->dev, "%s: phy driver is not ready\n", __func__); return -EPROBE_DEFER; } - - msm_dsi->phy_dev = get_device(&phy_pdev->dev); return 0; } @@ -198,6 +203,12 @@ return -EINVAL; priv = dev->dev_private; + + if (priv->num_bridges == ARRAY_SIZE(priv->bridges)) { + DRM_DEV_ERROR(dev->dev, "too many bridges\n"); + return -ENOSPC; + } + msm_dsi->dev = dev; ret = msm_dsi_host_modeset_init(msm_dsi->host, dev); @@ -206,8 +217,10 @@ goto fail; } - if (!msm_dsi_manager_validate_current_config(msm_dsi->id)) + if (!msm_dsi_manager_validate_current_config(msm_dsi->id)) { + ret = -EINVAL; goto fail; + } msm_dsi->encoder = encoder; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/dsi/dsi_cfg.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_cfg.c @@ -97,7 +97,7 @@ static const struct msm_dsi_config msm8996_dsi_cfg = { .io_offset = DSI_6G_REG_SHIFT, .reg_cfg = { - .num = 2, + .num = 3, .regs = { {"vdda", 18160, 1 }, /* 1.25 V */ {"vcca", 17000, 32 }, /* 0.925 V */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/dsi/dsi_host.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -460,7 +460,7 @@ return 0; err: - for (; i > 0; i--) + while (--i >= 0) clk_disable_unprepare(msm_host->bus_clks[i]); return ret; @@ -1348,10 +1348,10 @@ dsi_get_bpp(msm_host->format) / 8; len = dsi_cmd_dma_add(msm_host, msg); - if (!len) { + if (len < 0) { pr_err("%s: failed to add cmd type = 0x%x\n", __func__, msg->type); - return -EINVAL; + return len; } /* for video mode, do not send cmds more than @@ -1370,10 +1370,14 @@ } ret = dsi_cmd_dma_tx(msm_host, len); - if (ret < len) { - pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d\n", - __func__, msg->type, (*(u8 *)(msg->tx_buf)), len); - return -ECOMM; + if (ret < 0) { + pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, len=%d, ret=%d\n", + __func__, msg->type, (*(u8 *)(msg->tx_buf)), len, ret); + return ret; + } else if (ret < len) { + pr_err("%s: cmd dma tx failed, type=0x%x, data0=0x%x, ret=%d len=%d\n", + __func__, msg->type, (*(u8 *)(msg->tx_buf)), ret, len); + return -EIO; } return len; @@ -1669,6 +1673,8 @@ if (!prop) { DRM_DEV_DEBUG(dev, "failed to find data lane mapping, using default\n"); + /* Set the number of date lanes to 4 by default. */ + msm_host->num_data_lanes = 4; return 0; } @@ -2097,9 +2103,12 @@ } ret = dsi_cmds2buf_tx(msm_host, msg); - if (ret < msg->tx_len) { + if (ret < 0) { pr_err("%s: Read cmd Tx failed, %d\n", __func__, ret); return ret; + } else if (ret < msg->tx_len) { + pr_err("%s: Read cmd Tx failed, too short: %d\n", __func__, ret); + return -ECOMM; } /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/edp/edp_ctrl.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/edp/edp_ctrl.c @@ -1082,7 +1082,7 @@ int msm_edp_ctrl_init(struct msm_edp *edp) { struct edp_ctrl *ctrl = NULL; - struct device *dev = &edp->pdev->dev; + struct device *dev; int ret; if (!edp) { @@ -1090,6 +1090,7 @@ return -EINVAL; } + dev = &edp->pdev->dev; ctrl = devm_kzalloc(dev, sizeof(*ctrl), GFP_KERNEL); if (!ctrl) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/hdmi/hdmi.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/hdmi/hdmi.c @@ -97,10 +97,15 @@ of_node_put(phy_node); - if (!phy_pdev || !hdmi->phy) { + if (!phy_pdev) { DRM_DEV_ERROR(&pdev->dev, "phy driver is not ready\n"); return -EPROBE_DEFER; } + if (!hdmi->phy) { + DRM_DEV_ERROR(&pdev->dev, "phy driver is not ready\n"); + put_device(&phy_pdev->dev); + return -EPROBE_DEFER; + } hdmi->phy_dev = get_device(&phy_pdev->dev); @@ -137,6 +142,10 @@ /* HDCP needs physical address of hdmi register */ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, config->mmio_name); + if (!res) { + ret = -EINVAL; + goto fail; + } hdmi->mmio_phy_addr = res->start; hdmi->qfprom_mmio = msm_ioremap(pdev, @@ -284,6 +293,11 @@ struct platform_device *pdev = hdmi->pdev; int ret; + if (priv->num_bridges == ARRAY_SIZE(priv->bridges)) { + DRM_DEV_ERROR(dev->dev, "too many bridges\n"); + return -ENOSPC; + } + hdmi->dev = dev; hdmi->encoder = encoder; @@ -306,9 +320,9 @@ } hdmi->irq = irq_of_parse_and_map(pdev->dev.of_node, 0); - if (hdmi->irq < 0) { - ret = hdmi->irq; - DRM_DEV_ERROR(dev->dev, "failed to get irq: %d\n", ret); + if (!hdmi->irq) { + ret = -EINVAL; + DRM_DEV_ERROR(dev->dev, "failed to get irq\n"); goto fail; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/msm_gem_prime.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/msm_gem_prime.c @@ -17,7 +17,7 @@ int npages = obj->size >> PAGE_SHIFT; if (WARN_ON(!msm_obj->pages)) /* should have already pinned! */ - return NULL; + return ERR_PTR(-ENOMEM); return drm_prime_pages_to_sg(msm_obj->pages, npages); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/msm/msm_rd.c +++ linux-azure-5.4.0/drivers/gpu/drm/msm/msm_rd.c @@ -191,6 +191,9 @@ file->private_data = rd; rd->open = true; + /* Reset fifo to clear any previously unread data: */ + rd->fifo.head = rd->fifo.tail = 0; + /* the parsing tools need to know gpu-id to know which * register database to load. */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/mxsfb/Kconfig +++ linux-azure-5.4.0/drivers/gpu/drm/mxsfb/Kconfig @@ -10,7 +10,6 @@ depends on COMMON_CLK select DRM_MXS select DRM_KMS_HELPER - select DRM_KMS_FB_HELPER select DRM_KMS_CMA_HELPER select DRM_PANEL help only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/dispnv04/disp.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/dispnv04/disp.c @@ -179,7 +179,7 @@ nvif_notify_fini(&disp->flip); nouveau_display(dev)->priv = NULL; - kfree(disp); + vfree(disp); nvif_object_unmap(&drm->client.device.object); } @@ -197,7 +197,7 @@ struct nv04_display *disp; int i, ret; - disp = kzalloc(sizeof(*disp), GFP_KERNEL); + disp = vzalloc(sizeof(*disp)); if (!disp) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nouveau_backlight.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_backlight.c @@ -51,8 +51,9 @@ nouveau_get_backlight_name(char backlight_name[BL_NAME_SIZE], struct nouveau_backlight *bl) { - const int nb = ida_simple_get(&bl_ida, 0, 0, GFP_KERNEL); - if (nb < 0 || nb >= 100) + const int nb = ida_alloc_max(&bl_ida, 99, GFP_KERNEL); + + if (nb < 0) return false; if (nb > 0) snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight%d", nb); @@ -280,7 +281,7 @@ nv_encoder, ops, &props); if (IS_ERR(bl->dev)) { if (bl->id >= 0) - ida_simple_remove(&bl_ida, bl->id); + ida_free(&bl_ida, bl->id); ret = PTR_ERR(bl->dev); goto fail_alloc; } @@ -306,7 +307,7 @@ return; if (bl->id >= 0) - ida_simple_remove(&bl_ida, bl->id); + ida_free(&bl_ida, bl->id); backlight_device_unregister(bl->dev); nv_conn->backlight = NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nouveau_bo.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_bo.c @@ -276,8 +276,10 @@ break; } - if (WARN_ON(pi < 0)) + if (WARN_ON(pi < 0)) { + kfree(nvbo); return ERR_PTR(-EINVAL); + } /* Disable compression if suitable settings couldn't be found. */ if (nvbo->comp && !vmm->page[pi].comp) { @@ -542,7 +544,7 @@ struct ttm_dma_tt *ttm_dma = (struct ttm_dma_tt *)nvbo->bo.ttm; int i; - if (!ttm_dma) + if (!ttm_dma || !ttm_dma->dma_address) return; /* Don't waste time looping if the object is coherent */ @@ -562,7 +564,7 @@ struct ttm_dma_tt *ttm_dma = (struct ttm_dma_tt *)nvbo->bo.ttm; int i; - if (!ttm_dma) + if (!ttm_dma || !ttm_dma->dma_address) return; /* Don't waste time looping if the object is coherent */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nouveau_prime.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nouveau_prime.c @@ -90,7 +90,6 @@ ret = nouveau_bo_init(nvbo, size, align, flags, sg, robj); if (ret) { - nouveau_bo_ref(NULL, &nvbo); obj = ERR_PTR(ret); goto unlock; } @@ -112,7 +111,22 @@ if (ret) return -EINVAL; - return 0; + ret = ttm_bo_reserve(&nvbo->bo, false, false, NULL); + if (ret) + goto error; + + if (nvbo->bo.moving) + ret = dma_fence_wait(nvbo->bo.moving, true); + + ttm_bo_unreserve(&nvbo->bo); + if (ret) + goto error; + + return ret; + +error: + nouveau_bo_unpin(nvbo); + return ret; } void nouveau_gem_prime_unpin(struct drm_gem_object *obj) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.c @@ -57,7 +57,7 @@ args->v0.count = 0; args->v0.ustate_ac = NVIF_CONTROL_PSTATE_INFO_V0_USTATE_DISABLE; args->v0.ustate_dc = NVIF_CONTROL_PSTATE_INFO_V0_USTATE_DISABLE; - args->v0.pwrsrc = -ENOSYS; + args->v0.pwrsrc = -ENODEV; args->v0.pstate = NVIF_CONTROL_PSTATE_INFO_V0_PSTATE_UNKNOWN; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.c @@ -123,7 +123,7 @@ mutex_init(&tdev->iommu.mutex); - if (iommu_present(&platform_bus_type)) { + if (device_iommu_mapped(dev)) { tdev->iommu.domain = iommu_domain_alloc(&platform_bus_type); if (!tdev->iommu.domain) goto error; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c @@ -419,7 +419,7 @@ return ret; } -static void +void nvkm_dp_disable(struct nvkm_outp *outp, struct nvkm_ior *ior) { struct nvkm_dp *dp = nvkm_dp(outp); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.h +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.h @@ -32,6 +32,7 @@ int nvkm_dp_new(struct nvkm_disp *, int index, struct dcb_output *, struct nvkm_outp **); +void nvkm_dp_disable(struct nvkm_outp *, struct nvkm_ior *); /* DPCD Receiver Capabilities */ #define DPCD_RC00_DPCD_REV 0x00000 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.c @@ -62,7 +62,6 @@ nvkm_wr32(device, 0x6f0108 + hdmi, vendor_infoframe.header); nvkm_wr32(device, 0x6f010c + hdmi, vendor_infoframe.subpack0_low); nvkm_wr32(device, 0x6f0110 + hdmi, vendor_infoframe.subpack0_high); - nvkm_wr32(device, 0x6f0110 + hdmi, 0x00000000); nvkm_wr32(device, 0x6f0114 + hdmi, 0x00000000); nvkm_wr32(device, 0x6f0118 + hdmi, 0x00000000); nvkm_wr32(device, 0x6f011c + hdmi, 0x00000000); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.c @@ -22,6 +22,7 @@ * Authors: Ben Skeggs */ #include "outp.h" +#include "dp.h" #include "ior.h" #include @@ -216,6 +217,14 @@ if (!ior->arm.head || ior->arm.proto != proto) { OUTP_DBG(outp, "no heads (%x %d %d)", ior->arm.head, ior->arm.proto, proto); + + /* The EFI GOP driver on Ampere can leave unused DP links routed, + * which we don't expect. The DisableLT IED script *should* get + * us back to where we need to be. + */ + if (ior->func->route.get && !ior->arm.head && outp->info.type == DCB_OUTPUT_DP) + nvkm_dp_disable(outp, ior); + return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.c @@ -33,12 +33,12 @@ { u32 p = *addr; - if (*addr > bios->image0_size && bios->imaged_addr) { + if (*addr >= bios->image0_size && bios->imaged_addr) { *addr -= bios->image0_size; *addr += bios->imaged_addr; } - if (unlikely(*addr + size >= bios->size)) { + if (unlikely(*addr + size > bios->size)) { nvkm_error(&bios->subdev, "OOB %d %08x %08x\n", size, p, *addr); return false; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.c +++ linux-azure-5.4.0/drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.c @@ -135,10 +135,10 @@ list_for_each_entry_from_reverse(cstate, &pstate->list, head) { if (nvkm_cstate_valid(clk, cstate, max_volt, clk->temp)) - break; + return cstate; } - return cstate; + return NULL; } static struct nvkm_cstate * @@ -169,6 +169,8 @@ if (!list_empty(&pstate->list)) { cstate = nvkm_cstate_get(clk, pstate, cstatei); cstate = nvkm_cstate_find_best(clk, pstate, cstate); + if (!cstate) + return -EINVAL; } else { cstate = &pstate->base; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/panel/Kconfig +++ linux-azure-5.4.0/drivers/gpu/drm/panel/Kconfig @@ -141,6 +141,7 @@ depends on OF depends on I2C depends on BACKLIGHT_CLASS_DEVICE + select CRC32 help The panel is used with different sizes LCDs, from 480x272 to 1280x800, and 24 bit per pixel. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/panel/panel-innolux-p079zca.c +++ linux-azure-5.4.0/drivers/gpu/drm/panel/panel-innolux-p079zca.c @@ -509,6 +509,7 @@ static int innolux_panel_probe(struct mipi_dsi_device *dsi) { const struct panel_desc *desc; + struct innolux_panel *innolux; int err; desc = of_device_get_match_data(&dsi->dev); @@ -520,7 +521,14 @@ if (err < 0) return err; - return mipi_dsi_attach(dsi); + err = mipi_dsi_attach(dsi); + if (err < 0) { + innolux = mipi_dsi_get_drvdata(dsi); + innolux_panel_del(innolux); + return err; + } + + return 0; } static int innolux_panel_remove(struct mipi_dsi_device *dsi) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/panel/panel-kingdisplay-kd097d04.c +++ linux-azure-5.4.0/drivers/gpu/drm/panel/panel-kingdisplay-kd097d04.c @@ -424,7 +424,13 @@ if (err < 0) return err; - return mipi_dsi_attach(dsi); + err = mipi_dsi_attach(dsi); + if (err < 0) { + kingdisplay_panel_del(kingdisplay); + return err; + } + + return 0; } static int kingdisplay_panel_remove(struct mipi_dsi_device *dsi) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/panfrost/panfrost_device.c +++ linux-azure-5.4.0/drivers/gpu/drm/panfrost/panfrost_device.c @@ -59,7 +59,8 @@ if (IS_ERR(pfdev->bus_clock)) { dev_err(pfdev->dev, "get bus_clock failed %ld\n", PTR_ERR(pfdev->bus_clock)); - return PTR_ERR(pfdev->bus_clock); + err = PTR_ERR(pfdev->bus_clock); + goto disable_clock; } if (pfdev->bus_clock) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/qxl/qxl_dumb.c +++ linux-azure-5.4.0/drivers/gpu/drm/qxl/qxl_dumb.c @@ -58,6 +58,8 @@ surf.height = args->height; surf.stride = pitch; surf.format = format; + surf.data = 0; + r = qxl_gem_object_create_with_handle(qdev, file_priv, QXL_GEM_DOMAIN_SURFACE, args->size, &surf, &qobj, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/radeon/atombios_encoders.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/atombios_encoders.c @@ -197,7 +197,8 @@ * so don't register a backlight device */ if ((rdev->pdev->subsystem_vendor == PCI_VENDOR_ID_APPLE) && - (rdev->pdev->device == 0x6741)) + (rdev->pdev->device == 0x6741) && + !dmi_match(DMI_PRODUCT_NAME, "iMac12,1")) return; if (!radeon_encoder->enc_priv) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/radeon/radeon_device.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_device.c @@ -1623,6 +1623,9 @@ if (r) { /* delay GPU reset to resume */ radeon_fence_driver_force_completion(rdev, i); + } else { + /* finish executing delayed work */ + flush_delayed_work(&rdev->fence_drv[i].lockup_work); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/radeon/radeon_prime.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_prime.c @@ -94,9 +94,19 @@ /* pin buffer into GTT */ ret = radeon_bo_pin(bo, RADEON_GEM_DOMAIN_GTT, NULL); - if (likely(ret == 0)) - bo->prime_shared_count++; + if (unlikely(ret)) + goto error; + if (bo->tbo.moving) { + ret = dma_fence_wait(bo->tbo.moving, false); + if (unlikely(ret)) { + radeon_bo_unpin(bo); + goto error; + } + } + + bo->prime_shared_count++; +error: radeon_bo_unreserve(bo); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/radeon/radeon_uvd.c +++ linux-azure-5.4.0/drivers/gpu/drm/radeon/radeon_uvd.c @@ -286,7 +286,7 @@ if (rdev->uvd.vcpu_bo == NULL) return -EINVAL; - memcpy(rdev->uvd.cpu_addr, rdev->uvd_fw->data, rdev->uvd_fw->size); + memcpy_toio((void __iomem *)rdev->uvd.cpu_addr, rdev->uvd_fw->data, rdev->uvd_fw->size); size = radeon_bo_size(rdev->uvd.vcpu_bo); size -= rdev->uvd_fw->size; @@ -294,7 +294,7 @@ ptr = rdev->uvd.cpu_addr; ptr += rdev->uvd_fw->size; - memset(ptr, 0, size); + memset_io((void __iomem *)ptr, 0, size); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ linux-azure-5.4.0/drivers/gpu/drm/rockchip/cdn-dp-core.c @@ -72,6 +72,7 @@ ret = regmap_write(dp->grf, reg, val); if (ret) { DRM_DEV_ERROR(dp->dev, "Could not write to GRF: %d\n", ret); + clk_disable_unprepare(dp->grf_clk); return ret; } @@ -274,8 +275,9 @@ return ret; } -static int cdn_dp_connector_mode_valid(struct drm_connector *connector, - struct drm_display_mode *mode) +static enum drm_mode_status +cdn_dp_connector_mode_valid(struct drm_connector *connector, + struct drm_display_mode *mode) { struct cdn_dp_device *dp = connector_to_dp(connector); struct drm_display_info *display_info = &dp->connector.display_info; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c +++ linux-azure-5.4.0/drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c @@ -231,7 +231,8 @@ struct dw_mipi_dsi *dmd; const struct rockchip_dw_dsi_chip_data *cdata; struct dw_mipi_dsi_plat_data pdata; - int devcnt; + + bool dsi_bound; }; struct dphy_pll_parameter_map { @@ -564,13 +565,8 @@ .get_lane_mbps = dw_mipi_dsi_get_lane_mbps, }; -static void dw_mipi_dsi_rockchip_config(struct dw_mipi_dsi_rockchip *dsi, - int mux) +static void dw_mipi_dsi_rockchip_config(struct dw_mipi_dsi_rockchip *dsi) { - if (dsi->cdata->lcdsel_grf_reg) - regmap_write(dsi->grf_regmap, dsi->cdata->lcdsel_grf_reg, - mux ? dsi->cdata->lcdsel_lit : dsi->cdata->lcdsel_big); - if (dsi->cdata->lanecfg1_grf_reg) regmap_write(dsi->grf_regmap, dsi->cdata->lanecfg1_grf_reg, dsi->cdata->lanecfg1); @@ -584,6 +580,13 @@ dsi->cdata->enable); } +static void dw_mipi_dsi_rockchip_set_lcdsel(struct dw_mipi_dsi_rockchip *dsi, + int mux) +{ + regmap_write(dsi->grf_regmap, dsi->cdata->lcdsel_grf_reg, + mux ? dsi->cdata->lcdsel_lit : dsi->cdata->lcdsel_big); +} + static int dw_mipi_dsi_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, @@ -624,10 +627,6 @@ if (mux < 0) return; - pm_runtime_get_sync(dsi->dev); - if (dsi->slave) - pm_runtime_get_sync(dsi->slave->dev); - /* * For the RK3399, the clk of grf must be enabled before writing grf * register. And for RK3288 or other soc, this grf_clk must be NULL, @@ -639,27 +638,17 @@ return; } - dw_mipi_dsi_rockchip_config(dsi, mux); + dw_mipi_dsi_rockchip_set_lcdsel(dsi, mux); if (dsi->slave) - dw_mipi_dsi_rockchip_config(dsi->slave, mux); + dw_mipi_dsi_rockchip_set_lcdsel(dsi->slave, mux); clk_disable_unprepare(dsi->grf_clk); } -static void dw_mipi_dsi_encoder_disable(struct drm_encoder *encoder) -{ - struct dw_mipi_dsi_rockchip *dsi = to_dsi(encoder); - - if (dsi->slave) - pm_runtime_put(dsi->slave->dev); - pm_runtime_put(dsi->dev); -} - static const struct drm_encoder_helper_funcs dw_mipi_dsi_encoder_helper_funcs = { .atomic_check = dw_mipi_dsi_encoder_atomic_check, .enable = dw_mipi_dsi_encoder_enable, - .disable = dw_mipi_dsi_encoder_disable, }; static const struct drm_encoder_funcs dw_mipi_dsi_encoder_funcs = { @@ -794,25 +783,56 @@ put_device(second); } + pm_runtime_get_sync(dsi->dev); + if (dsi->slave) + pm_runtime_get_sync(dsi->slave->dev); + ret = clk_prepare_enable(dsi->pllref_clk); if (ret) { DRM_DEV_ERROR(dev, "Failed to enable pllref_clk: %d\n", ret); - return ret; + goto out_pm_runtime; + } + + /* + * With the GRF clock running, write lane and dual-mode configurations + * that won't change immediately. If we waited until enable() to do + * this, things like panel preparation would not be able to send + * commands over DSI. + */ + ret = clk_prepare_enable(dsi->grf_clk); + if (ret) { + DRM_DEV_ERROR(dsi->dev, "Failed to enable grf_clk: %d\n", ret); + goto out_pm_runtime; } + dw_mipi_dsi_rockchip_config(dsi); + if (dsi->slave) + dw_mipi_dsi_rockchip_config(dsi->slave); + + clk_disable_unprepare(dsi->grf_clk); + ret = rockchip_dsi_drm_create_encoder(dsi, drm_dev); if (ret) { DRM_DEV_ERROR(dev, "Failed to create drm encoder\n"); - return ret; + goto out_pm_runtime; } ret = dw_mipi_dsi_bind(dsi->dmd, &dsi->encoder); if (ret) { DRM_DEV_ERROR(dev, "Failed to bind: %d\n", ret); - return ret; + goto out_pm_runtime; } + dsi->dsi_bound = true; + return 0; + +out_pm_runtime: + pm_runtime_put(dsi->dev); + if (dsi->slave) + pm_runtime_put(dsi->slave->dev); + + return ret; } static void dw_mipi_dsi_rockchip_unbind(struct device *dev, @@ -824,9 +844,15 @@ if (dsi->is_slave) return; + dsi->dsi_bound = false; + dw_mipi_dsi_unbind(dsi->dmd); clk_disable_unprepare(dsi->pllref_clk); + + pm_runtime_put(dsi->dev); + if (dsi->slave) + pm_runtime_put(dsi->slave->dev); } static const struct component_ops dw_mipi_dsi_rockchip_ops = { @@ -884,6 +910,36 @@ .detach = dw_mipi_dsi_rockchip_host_detach, }; +static int __maybe_unused dw_mipi_dsi_rockchip_resume(struct device *dev) +{ + struct dw_mipi_dsi_rockchip *dsi = dev_get_drvdata(dev); + int ret; + + /* + * Re-configure DSI state, if we were previously initialized. We need + * to do this before rockchip_drm_drv tries to re-enable() any panels. + */ + if (dsi->dsi_bound) { + ret = clk_prepare_enable(dsi->grf_clk); + if (ret) { + DRM_DEV_ERROR(dsi->dev, "Failed to enable grf_clk: %d\n", ret); + return ret; + } + + dw_mipi_dsi_rockchip_config(dsi); + if (dsi->slave) + dw_mipi_dsi_rockchip_config(dsi->slave); + + clk_disable_unprepare(dsi->grf_clk); + } + + return 0; +} + +static const struct dev_pm_ops dw_mipi_dsi_rockchip_pm_ops = { + SET_LATE_SYSTEM_SLEEP_PM_OPS(NULL, dw_mipi_dsi_rockchip_resume) +}; + static int dw_mipi_dsi_rockchip_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; @@ -967,23 +1023,16 @@ if (ret != -EPROBE_DEFER) DRM_DEV_ERROR(dev, "Failed to probe dw_mipi_dsi: %d\n", ret); - goto err_clkdisable; + return ret; } return 0; - -err_clkdisable: - clk_disable_unprepare(dsi->pllref_clk); - return ret; } static int dw_mipi_dsi_rockchip_remove(struct platform_device *pdev) { struct dw_mipi_dsi_rockchip *dsi = platform_get_drvdata(pdev); - if (dsi->devcnt == 0) - component_del(dsi->dev, &dw_mipi_dsi_rockchip_ops); - dw_mipi_dsi_remove(dsi->dmd); return 0; @@ -1072,6 +1121,13 @@ .remove = dw_mipi_dsi_rockchip_remove, .driver = { .of_match_table = dw_mipi_dsi_rockchip_dt_ids, + .pm = &dw_mipi_dsi_rockchip_pm_ops, .name = "dw-mipi-dsi-rockchip", + /* + * For dual-DSI display, one DSI pokes at the other DSI's + * drvdata in dw_mipi_dsi_rockchip_find_second(). This is not + * safe for asynchronous probe. + */ + .probe_type = PROBE_FORCE_SYNCHRONOUS, }, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c +++ linux-azure-5.4.0/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c @@ -528,13 +528,6 @@ return ret; } - ret = clk_prepare_enable(hdmi->vpll_clk); - if (ret) { - DRM_DEV_ERROR(hdmi->dev, "Failed to enable HDMI vpll: %d\n", - ret); - return ret; - } - hdmi->phy = devm_phy_optional_get(dev, "hdmi"); if (IS_ERR(hdmi->phy)) { ret = PTR_ERR(hdmi->phy); @@ -543,6 +536,13 @@ return ret; } + ret = clk_prepare_enable(hdmi->vpll_clk); + if (ret) { + DRM_DEV_ERROR(hdmi->dev, "Failed to enable HDMI vpll: %d\n", + ret); + return ret; + } + drm_encoder_helper_add(encoder, &dw_hdmi_rockchip_encoder_helper_funcs); drm_encoder_init(drm, encoder, &dw_hdmi_rockchip_encoder_funcs, DRM_MODE_ENCODER_TMDS, NULL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/scheduler/sched_entity.c +++ linux-azure-5.4.0/drivers/gpu/drm/scheduler/sched_entity.c @@ -235,11 +235,16 @@ static void drm_sched_entity_kill_jobs(struct drm_sched_entity *entity) { struct drm_sched_job *job; + struct dma_fence *f; int r; while ((job = to_drm_sched_job(spsc_queue_pop(&entity->job_queue)))) { struct drm_sched_fence *s_fence = job->s_fence; + /* Wait for all dependencies to avoid data corruptions */ + while ((f = job->sched->ops->dependency(job, entity))) + dma_fence_wait(f, false); + drm_sched_fence_scheduled(s_fence); dma_fence_set_error(&s_fence->finished, -ESRCH); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/sun4i/Kconfig +++ linux-azure-5.4.0/drivers/gpu/drm/sun4i/Kconfig @@ -46,6 +46,7 @@ default MACH_SUN8I select CRC_CCITT select DRM_MIPI_DSI + select RESET_CONTROLLER select PHY_SUN6I_MIPI_DPHY help Choose this option if you want have an Allwinner SoC with only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/tegra/dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/tegra/dsi.c @@ -1455,8 +1455,10 @@ dsi->slave = platform_get_drvdata(gangster); of_node_put(np); - if (!dsi->slave) + if (!dsi->slave) { + put_device(&gangster->dev); return -EPROBE_DEFER; + } dsi->slave->master = dsi; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/tilcdc/tilcdc_external.c +++ linux-azure-5.4.0/drivers/gpu/drm/tilcdc/tilcdc_external.c @@ -58,11 +58,13 @@ int tilcdc_add_component_encoder(struct drm_device *ddev) { struct tilcdc_drm_private *priv = ddev->dev_private; - struct drm_encoder *encoder; + struct drm_encoder *encoder = NULL, *iter; - list_for_each_entry(encoder, &ddev->mode_config.encoder_list, head) - if (encoder->possible_crtcs & (1 << priv->crtc->index)) + list_for_each_entry(iter, &ddev->mode_config.encoder_list, head) + if (iter->possible_crtcs & (1 << priv->crtc->index)) { + encoder = iter; break; + } if (!encoder) { dev_err(ddev->dev, "%s: No suitable encoder found\n", __func__); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/udl/udl_connector.c +++ linux-azure-5.4.0/drivers/gpu/drm/udl/udl_connector.c @@ -29,7 +29,7 @@ ret = usb_control_msg(udl->udev, usb_rcvctrlpipe(udl->udev, 0), (0x02), (0x80 | (0x02 << 5)), bval, - 0xA1, read_buff, 2, HZ); + 0xA1, read_buff, 2, 1000); if (ret < 1) { DRM_ERROR("Read EDID byte %d failed err %x\n", i, ret); kfree(read_buff); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/v3d/v3d_gem.c +++ linux-azure-5.4.0/drivers/gpu/drm/v3d/v3d_gem.c @@ -195,8 +195,8 @@ V3D_CORE_WRITE(core, V3D_CTL_L2TCACTL, V3D_L2TCACTL_TMUWCF); if (wait_for(!(V3D_CORE_READ(core, V3D_CTL_L2TCACTL) & - V3D_L2TCACTL_L2TFLS), 100)) { - DRM_ERROR("Timeout waiting for L1T write combiner flush\n"); + V3D_L2TCACTL_TMUWCF), 100)) { + DRM_ERROR("Timeout waiting for TMU write combiner flush\n"); } mutex_lock(&v3d->cache_clean_lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vc4/vc4_bo.c +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_bo.c @@ -389,7 +389,7 @@ bo = kzalloc(sizeof(*bo), GFP_KERNEL); if (!bo) - return ERR_PTR(-ENOMEM); + return NULL; bo->madv = VC4_MADV_WILLNEED; refcount_set(&bo->usecnt, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vc4/vc4_drv.h +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_drv.h @@ -750,7 +750,7 @@ void vc4_crtc_handle_vblank(struct vc4_crtc *crtc); void vc4_crtc_txp_armed(struct drm_crtc_state *state); void vc4_crtc_get_margins(struct drm_crtc_state *state, - unsigned int *right, unsigned int *left, + unsigned int *left, unsigned int *right, unsigned int *top, unsigned int *bottom); /* vc4_debugfs.c */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vc4/vc4_dsi.c +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_dsi.c @@ -791,11 +791,9 @@ /* Find what divider gets us a faster clock than the requested * pixel clock. */ - for (divider = 1; divider < 8; divider++) { - if (parent_rate / divider < pll_clock) { - divider--; + for (divider = 1; divider < 255; divider++) { + if (parent_rate / (divider + 1) < pll_clock) break; - } } /* Now that we've picked a PLL divider, calculate back to its @@ -831,7 +829,7 @@ unsigned long phy_clock; int ret; - ret = pm_runtime_get_sync(dev); + ret = pm_runtime_resume_and_get(dev); if (ret) { DRM_ERROR("Failed to runtime PM enable on DSI%d\n", dsi->port); return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vc4/vc4_txp.c +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_txp.c @@ -285,12 +285,18 @@ if (WARN_ON(i == ARRAY_SIZE(drm_fmts))) return; - ctrl = TXP_GO | TXP_VSTART_AT_EOF | TXP_EI | + ctrl = TXP_GO | TXP_EI | VC4_SET_FIELD(0xf, TXP_BYTE_ENABLE) | VC4_SET_FIELD(txp_fmts[i], TXP_FORMAT); if (fb->format->has_alpha) ctrl |= TXP_ALPHA_ENABLE; + else + /* + * If TXP_ALPHA_ENABLE isn't set and TXP_ALPHA_INVERT is, the + * hardware will force the output padding to be 0xff. + */ + ctrl |= TXP_ALPHA_INVERT; gem = drm_fb_cma_get_gem_obj(fb, 0); TXP_WRITE(TXP_DST_PTR, gem->paddr + fb->offsets[0]); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vc4/vc4_vec.c +++ linux-azure-5.4.0/drivers/gpu/drm/vc4/vc4_vec.c @@ -256,7 +256,7 @@ static const struct drm_display_mode ntsc_mode = { DRM_MODE("720x480", DRM_MODE_TYPE_DRIVER, 13500, 720, 720 + 14, 720 + 14 + 64, 720 + 14 + 64 + 60, 0, - 480, 480 + 3, 480 + 3 + 3, 480 + 3 + 3 + 16, 0, + 480, 480 + 7, 480 + 7 + 6, 525, 0, DRM_MODE_FLAG_INTERLACE) }; @@ -278,7 +278,7 @@ static const struct drm_display_mode pal_mode = { DRM_MODE("720x576", DRM_MODE_TYPE_DRIVER, 13500, 720, 720 + 20, 720 + 20 + 64, 720 + 20 + 64 + 60, 0, - 576, 576 + 2, 576 + 2 + 3, 576 + 2 + 3 + 20, 0, + 576, 576 + 4, 576 + 4 + 6, 625, 0, DRM_MODE_FLAG_INTERLACE) }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/virtio/virtgpu_display.c +++ linux-azure-5.4.0/drivers/gpu/drm/virtio/virtgpu_display.c @@ -174,6 +174,8 @@ DRM_DEBUG("add mode: %dx%d\n", width, height); mode = drm_cvt_mode(connector->dev, width, height, 60, false, false, false); + if (!mode) + return count; mode->type |= DRM_MODE_TYPE_PREFERRED; drm_mode_probed_add(connector, mode); count++; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h +++ linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h @@ -1002,15 +1002,14 @@ struct vmw_private *dev_priv, struct vmw_fence_obj **p_fence, uint32_t *p_handle); -extern void vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv, +extern int vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv, struct vmw_fpriv *vmw_fp, int ret, struct drm_vmw_fence_rep __user *user_fence_rep, struct vmw_fence_obj *fence, uint32_t fence_handle, - int32_t out_fence_fd, - struct sync_file *sync_file); + int32_t out_fence_fd); bool vmw_cmd_describe(const void *buf, u32 *size, char const **cmd); /** only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -3413,17 +3413,17 @@ * Also if copying fails, user-space will be unable to signal the fence object * so we wait for it immediately, and then unreference the user-space reference. */ -void +int vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv, struct vmw_fpriv *vmw_fp, int ret, struct drm_vmw_fence_rep __user *user_fence_rep, struct vmw_fence_obj *fence, uint32_t fence_handle, - int32_t out_fence_fd, struct sync_file *sync_file) + int32_t out_fence_fd) { struct drm_vmw_fence_rep fence_rep; if (user_fence_rep == NULL) - return; + return 0; memset(&fence_rep, 0, sizeof(fence_rep)); @@ -3451,20 +3451,14 @@ * handle. */ if (unlikely(ret != 0) && (fence_rep.error == 0)) { - if (sync_file) - fput(sync_file->file); - - if (fence_rep.fd != -1) { - put_unused_fd(fence_rep.fd); - fence_rep.fd = -1; - } - ttm_ref_object_base_unref(vmw_fp->tfile, fence_handle, TTM_REF_USAGE); VMW_DEBUG_USER("Fence copy error. Syncing.\n"); (void) vmw_fence_obj_wait(fence, false, false, VMW_FENCE_WAIT_TIMEOUT); } + + return ret ? -EFAULT : 0; } /** @@ -3806,16 +3800,23 @@ (void) vmw_fence_obj_wait(fence, false, false, VMW_FENCE_WAIT_TIMEOUT); + } + } + + ret = vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv), ret, + user_fence_rep, fence, handle, out_fence_fd); + + if (sync_file) { + if (ret) { + /* usercopy of fence failed, put the file object */ + fput(sync_file->file); + put_unused_fd(out_fence_fd); } else { /* Link the fence with the FD created earlier */ fd_install(out_fence_fd, sync_file->file); } } - vmw_execbuf_copy_fence_user(dev_priv, vmw_fpriv(file_priv), ret, - user_fence_rep, fence, handle, out_fence_fd, - sync_file); - /* Don't unreference when handing fence out */ if (unlikely(out_fence != NULL)) { *out_fence = fence; @@ -3833,7 +3834,7 @@ */ vmw_validation_unref_lists(&val_ctx); - return 0; + return ret; out_unlock_binding: mutex_unlock(&dev_priv->binding_mutex); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c +++ linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c @@ -498,7 +498,7 @@ static int vmw_fb_kms_framebuffer(struct fb_info *info) { - struct drm_mode_fb_cmd2 mode_cmd; + struct drm_mode_fb_cmd2 mode_cmd = {0}; struct vmw_fb_par *par = info->par; struct fb_var_screeninfo *var = &info->var; struct drm_framebuffer *cur_fb; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c +++ linux-azure-5.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_fence.c @@ -1171,7 +1171,7 @@ } vmw_execbuf_copy_fence_user(dev_priv, vmw_fp, 0, user_fence_rep, fence, - handle, -1, NULL); + handle, -1); vmw_fence_obj_unreference(&fence); return 0; out_no_create: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/drm/zte/Kconfig +++ linux-azure-5.4.0/drivers/gpu/drm/zte/Kconfig @@ -3,7 +3,6 @@ tristate "DRM Support for ZTE SoCs" depends on DRM && ARCH_ZX select DRM_KMS_CMA_HELPER - select DRM_KMS_FB_HELPER select DRM_KMS_HELPER select SND_SOC_HDMI_CODEC if SND_SOC select VIDEOMODE_HELPERS only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/ipu-v3/ipu-cpmem.c +++ linux-azure-5.4.0/drivers/gpu/ipu-v3/ipu-cpmem.c @@ -585,21 +585,21 @@ .bits_per_pixel = 16, }; -#define Y_OFFSET(pix, x, y) ((x) + pix->width * (y)) -#define U_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * ((y) / 2) / 2) + (x) / 2) -#define V_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * pix->height / 4) + \ - (pix->width * ((y) / 2) / 2) + (x) / 2) -#define U2_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * (y) / 2) + (x) / 2) -#define V2_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * pix->height / 2) + \ - (pix->width * (y) / 2) + (x) / 2) -#define UV_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * ((y) / 2)) + (x)) -#define UV2_OFFSET(pix, x, y) ((pix->width * pix->height) + \ - (pix->width * y) + (x)) +#define Y_OFFSET(pix, x, y) ((x) + pix->bytesperline * (y)) +#define U_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * ((y) / 2) / 2) + (x) / 2) +#define V_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * pix->height / 4) + \ + (pix->bytesperline * ((y) / 2) / 2) + (x) / 2) +#define U2_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * (y) / 2) + (x) / 2) +#define V2_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * pix->height / 2) + \ + (pix->bytesperline * (y) / 2) + (x) / 2) +#define UV_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * ((y) / 2)) + (x)) +#define UV2_OFFSET(pix, x, y) ((pix->bytesperline * pix->height) + \ + (pix->bytesperline * y) + (x)) #define NUM_ALPHA_CHANNELS 7 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/gpu/ipu-v3/ipu-di.c +++ linux-azure-5.4.0/drivers/gpu/ipu-v3/ipu-di.c @@ -451,8 +451,9 @@ error = rate / (sig->mode.pixelclock / 1000); - dev_dbg(di->ipu->dev, " IPU clock can give %lu with divider %u, error %d.%u%%\n", - rate, div, (signed)(error - 1000) / 10, error % 10); + dev_dbg(di->ipu->dev, " IPU clock can give %lu with divider %u, error %c%d.%d%%\n", + rate, div, error < 1000 ? '-' : '+', + abs(error - 1000) / 10, abs(error - 1000) % 10); /* Allow a 1% error */ if (error < 1010 && error >= 990) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/greybus/svc.c +++ linux-azure-5.4.0/drivers/greybus/svc.c @@ -866,8 +866,14 @@ gb_svc_debugfs_init(svc); - return gb_svc_queue_deferred_request(op); + ret = gb_svc_queue_deferred_request(op); + if (ret) + goto err_remove_debugfs; + return 0; + +err_remove_debugfs: + gb_svc_debugfs_exit(svc); err_unregister_device: gb_svc_watchdog_destroy(svc); device_del(&svc->dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/Kconfig +++ linux-azure-5.4.0/drivers/hid/Kconfig @@ -149,6 +149,7 @@ config HID_ASUS tristate "Asus" + depends on USB_HID depends on LEDS_CLASS depends on ASUS_WMI || ASUS_WMI=n select POWER_SUPPLY @@ -206,14 +207,14 @@ config HID_CHICONY tristate "Chicony devices" - depends on HID + depends on USB_HID default !EXPERT ---help--- Support for Chicony Tactical pad and special keys on Chicony keyboards. config HID_CORSAIR tristate "Corsair devices" - depends on HID && USB && LEDS_CLASS + depends on USB_HID && LEDS_CLASS ---help--- Support for Corsair devices that are not fully compliant with the HID standard. @@ -244,7 +245,7 @@ config HID_PRODIKEYS tristate "Prodikeys PC-MIDI Keyboard support" - depends on HID && SND + depends on USB_HID && SND select SND_RAWMIDI ---help--- Support for Prodikeys PC-MIDI Keyboard device support. @@ -524,7 +525,7 @@ config HID_LOGITECH tristate "Logitech devices" - depends on HID + depends on USB_HID default !EXPERT ---help--- Support for Logitech devices that are not fully compliant with HID standard. @@ -871,7 +872,7 @@ config HID_SAMSUNG tristate "Samsung InfraRed remote control or keyboards" - depends on HID + depends on USB_HID ---help--- Support for Samsung InfraRed remote control or keyboards. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-betopff.c +++ linux-azure-5.4.0/drivers/hid/hid-betopff.c @@ -56,15 +56,22 @@ { struct betopff_device *betopff; struct hid_report *report; - struct hid_input *hidinput = - list_first_entry(&hid->inputs, struct hid_input, list); + struct hid_input *hidinput; struct list_head *report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list; - struct input_dev *dev = hidinput->input; + struct input_dev *dev; int field_count = 0; int error; int i, j; + if (list_empty(&hid->inputs)) { + hid_err(hid, "no inputs found\n"); + return -ENODEV; + } + + hidinput = list_first_entry(&hid->inputs, struct hid_input, list); + dev = hidinput->input; + if (list_empty(report_list)) { hid_err(hid, "no output reports found\n"); return -ENODEV; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-chicony.c +++ linux-azure-5.4.0/drivers/hid/hid-chicony.c @@ -58,8 +58,12 @@ static __u8 *ch_switch12_report_fixup(struct hid_device *hdev, __u8 *rdesc, unsigned int *rsize) { - struct usb_interface *intf = to_usb_interface(hdev->dev.parent); - + struct usb_interface *intf; + + if (!hid_is_usb(hdev)) + return rdesc; + + intf = to_usb_interface(hdev->dev.parent); if (intf->cur_altsetting->desc.bInterfaceNumber == 1) { /* Change usage maximum and logical maximum from 0x7fff to * 0x2fff, so they don't exceed HID_MAX_USAGES */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-corsair.c +++ linux-azure-5.4.0/drivers/hid/hid-corsair.c @@ -553,7 +553,12 @@ int ret; unsigned long quirks = id->driver_data; struct corsair_drvdata *drvdata; - struct usb_interface *usbif = to_usb_interface(dev->dev.parent); + struct usb_interface *usbif; + + if (!hid_is_usb(dev)) + return -EINVAL; + + usbif = to_usb_interface(dev->dev.parent); drvdata = devm_kzalloc(&dev->dev, sizeof(struct corsair_drvdata), GFP_KERNEL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-cp2112.c +++ linux-azure-5.4.0/drivers/hid/hid-cp2112.c @@ -787,6 +787,11 @@ data->word = le16_to_cpup((__le16 *)buf); break; case I2C_SMBUS_I2C_BLOCK_DATA: + if (read_length > I2C_SMBUS_BLOCK_MAX) { + ret = -EINVAL; + goto power_normal; + } + memcpy(data->block + 1, buf, read_length); break; case I2C_SMBUS_BLOCK_DATA: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-debug.c +++ linux-azure-5.4.0/drivers/hid/hid-debug.c @@ -823,7 +823,9 @@ [KEY_F22] = "F22", [KEY_F23] = "F23", [KEY_F24] = "F24", [KEY_PLAYCD] = "PlayCD", [KEY_PAUSECD] = "PauseCD", [KEY_PROG3] = "Prog3", - [KEY_PROG4] = "Prog4", [KEY_SUSPEND] = "Suspend", + [KEY_PROG4] = "Prog4", + [KEY_ALL_APPLICATIONS] = "AllApplications", + [KEY_SUSPEND] = "Suspend", [KEY_CLOSE] = "Close", [KEY_PLAY] = "Play", [KEY_FASTFORWARD] = "FastForward", [KEY_BASSBOOST] = "BassBoost", [KEY_PRINT] = "Print", [KEY_HP] = "HP", @@ -929,6 +931,8 @@ [KEY_APPSELECT] = "AppSelect", [KEY_SCREENSAVER] = "ScreenSaver", [KEY_VOICECOMMAND] = "VoiceCommand", + [KEY_EMOJI_PICKER] = "EmojiPicker", + [KEY_DICTATE] = "Dictate", [KEY_BRIGHTNESS_MIN] = "BrightnessMin", [KEY_BRIGHTNESS_MAX] = "BrightnessMax", [KEY_BRIGHTNESS_AUTO] = "BrightnessAuto", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-elo.c +++ linux-azure-5.4.0/drivers/hid/hid-elo.c @@ -229,6 +229,9 @@ struct elo_priv *priv; int ret; + if (!hid_is_usb(hdev)) + return -EINVAL; + priv = kzalloc(sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-gt683r.c +++ linux-azure-5.4.0/drivers/hid/hid-gt683r.c @@ -54,6 +54,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_MSI, USB_DEVICE_ID_MSI_GT683R_LED_PANEL) }, { } }; +MODULE_DEVICE_TABLE(hid, gt683r_led_id); static void gt683r_brightness_set(struct led_classdev *led_cdev, enum led_brightness brightness) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-holtek-kbd.c +++ linux-azure-5.4.0/drivers/hid/hid-holtek-kbd.c @@ -140,12 +140,17 @@ static int holtek_kbd_probe(struct hid_device *hdev, const struct hid_device_id *id) { - struct usb_interface *intf = to_usb_interface(hdev->dev.parent); - int ret = hid_parse(hdev); + struct usb_interface *intf; + int ret; + if (!hid_is_usb(hdev)) + return -EINVAL; + + ret = hid_parse(hdev); if (!ret) ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); + intf = to_usb_interface(hdev->dev.parent); if (!ret && intf->cur_altsetting->desc.bInterfaceNumber == 1) { struct hid_input *hidinput; list_for_each_entry(hidinput, &hdev->inputs, list) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-holtek-mouse.c +++ linux-azure-5.4.0/drivers/hid/hid-holtek-mouse.c @@ -62,6 +62,29 @@ return rdesc; } +static int holtek_mouse_probe(struct hid_device *hdev, + const struct hid_device_id *id) +{ + int ret; + + if (!hid_is_usb(hdev)) + return -EINVAL; + + ret = hid_parse(hdev); + if (ret) { + hid_err(hdev, "hid parse failed: %d\n", ret); + return ret; + } + + ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); + if (ret) { + hid_err(hdev, "hw start failed: %d\n", ret); + return ret; + } + + return 0; +} + static const struct hid_device_id holtek_mouse_devices[] = { { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK_ALT, USB_DEVICE_ID_HOLTEK_ALT_MOUSE_A067) }, @@ -83,6 +106,7 @@ .name = "holtek_mouse", .id_table = holtek_mouse_devices, .report_fixup = holtek_mouse_report_fixup, + .probe = holtek_mouse_probe, }; module_hid_driver(holtek_mouse_driver); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-led.c +++ linux-azure-5.4.0/drivers/hid/hid-led.c @@ -366,7 +366,7 @@ .type = DREAM_CHEEKY, .name = "Dream Cheeky Webmail Notifier", .short_name = "dream_cheeky", - .max_brightness = 31, + .max_brightness = 63, .num_leds = 1, .report_size = 9, .report_type = RAW_REQUEST, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-lg.c +++ linux-azure-5.4.0/drivers/hid/hid-lg.c @@ -769,12 +769,18 @@ static int lg_probe(struct hid_device *hdev, const struct hid_device_id *id) { - struct usb_interface *iface = to_usb_interface(hdev->dev.parent); - __u8 iface_num = iface->cur_altsetting->desc.bInterfaceNumber; + struct usb_interface *iface; + __u8 iface_num; unsigned int connect_mask = HID_CONNECT_DEFAULT; struct lg_drv_data *drv_data; int ret; + if (!hid_is_usb(hdev)) + return -EINVAL; + + iface = to_usb_interface(hdev->dev.parent); + iface_num = iface->cur_altsetting->desc.bInterfaceNumber; + /* G29 only work with the 1st interface */ if ((hdev->product == USB_DEVICE_ID_LOGITECH_G29_WHEEL) && (iface_num != 0)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-prodikeys.c +++ linux-azure-5.4.0/drivers/hid/hid-prodikeys.c @@ -798,12 +798,18 @@ static int pk_probe(struct hid_device *hdev, const struct hid_device_id *id) { int ret; - struct usb_interface *intf = to_usb_interface(hdev->dev.parent); - unsigned short ifnum = intf->cur_altsetting->desc.bInterfaceNumber; + struct usb_interface *intf; + unsigned short ifnum; unsigned long quirks = id->driver_data; struct pk_device *pk; struct pcmidi_snd *pm = NULL; + if (!hid_is_usb(hdev)) + return -EINVAL; + + intf = to_usb_interface(hdev->dev.parent); + ifnum = intf->cur_altsetting->desc.bInterfaceNumber; + pk = kzalloc(sizeof(*pk), GFP_KERNEL); if (pk == NULL) { hid_err(hdev, "can't alloc descriptor\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-arvo.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-arvo.c @@ -344,6 +344,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-isku.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-isku.c @@ -324,6 +324,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-koneplus.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-koneplus.c @@ -431,6 +431,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-konepure.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-konepure.c @@ -133,6 +133,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-kovaplus.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-kovaplus.c @@ -501,6 +501,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-lua.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-lua.c @@ -160,6 +160,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-pyra.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-pyra.c @@ -449,6 +449,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-ryos.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-ryos.c @@ -141,6 +141,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat-savu.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat-savu.c @@ -113,6 +113,9 @@ { int retval; + if (!hid_is_usb(hdev)) + return -EINVAL; + retval = hid_parse(hdev); if (retval) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-roccat.c +++ linux-azure-5.4.0/drivers/hid/hid-roccat.c @@ -257,6 +257,8 @@ if (!new_value) return -ENOMEM; + mutex_lock(&device->cbuf_lock); + report = &device->cbuf[device->cbuf_end]; /* passing NULL is safe */ @@ -276,6 +278,8 @@ reader->cbuf_start = (reader->cbuf_start + 1) % ROCCAT_CBUF_SIZE; } + mutex_unlock(&device->cbuf_lock); + wake_up_interruptible(&device->wait); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-saitek.c +++ linux-azure-5.4.0/drivers/hid/hid-saitek.c @@ -187,6 +187,8 @@ .driver_data = SAITEK_RELEASE_MODE_RAT7 }, { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7), .driver_data = SAITEK_RELEASE_MODE_MMO7 }, + { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_MMO7), + .driver_data = SAITEK_RELEASE_MODE_MMO7 }, { } }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-samsung.c +++ linux-azure-5.4.0/drivers/hid/hid-samsung.c @@ -152,6 +152,9 @@ int ret; unsigned int cmask = HID_CONNECT_DEFAULT; + if (!hid_is_usb(hdev)) + return -EINVAL; + ret = hid_parse(hdev); if (ret) { hid_err(hdev, "parse failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/hid-u2fzero.c +++ linux-azure-5.4.0/drivers/hid/hid-u2fzero.c @@ -132,7 +132,7 @@ ret = (wait_for_completion_timeout( &ctx.done, msecs_to_jiffies(USB_CTRL_SET_TIMEOUT))); - if (ret < 0) { + if (ret == 0) { usb_kill_urb(dev->urb); hid_err(hdev, "urb submission timed out"); } else { @@ -191,6 +191,8 @@ struct u2f_hid_msg resp; int ret; size_t actual_length; + /* valid packets must have a correct header */ + int min_length = offsetof(struct u2f_hid_msg, init.data); if (!dev->present) { hid_dbg(dev->hdev, "device not present"); @@ -198,12 +200,14 @@ } ret = u2fzero_recv(dev, &req, &resp); - if (ret < 0) + + /* ignore errors or packets without data */ + if (ret < min_length) return 0; /* only take the minimum amount of data it is safe to take */ - actual_length = min3((size_t)ret - offsetof(struct u2f_hid_msg, - init.data), U2F_HID_MSG_LEN(resp), max); + actual_length = min3((size_t)ret - min_length, + U2F_HID_MSG_LEN(resp), max); memcpy(data, resp.init.data, actual_length); @@ -286,7 +290,7 @@ unsigned int minor; int ret; - if (!hid_is_using_ll_driver(hdev, &usb_hid_driver)) + if (!hid_is_usb(hdev)) return -EINVAL; dev = devm_kzalloc(&hdev->dev, sizeof(*dev), GFP_KERNEL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/intel-ish-hid/ishtp-hid.h +++ linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp-hid.h @@ -110,7 +110,7 @@ * @multi_packet_cnt: Count of fragmented packet count * * This structure is used to store completion flags and per client data like - * like report description, number of HID devices etc. + * report description, number of HID devices etc. */ struct ishtp_cl_data { /* completion flags */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/intel-ish-hid/ishtp/client.c +++ linux-azure-5.4.0/drivers/hid/intel-ish-hid/ishtp/client.c @@ -626,13 +626,14 @@ } /** - * ipc_tx_callback() - IPC tx callback function + * ipc_tx_send() - IPC tx send function * @prm: Pointer to client device instance * - * Send message over IPC either first time or on callback on previous message - * completion + * Send message over IPC. Message will be split into fragments + * if message size is bigger than IPC FIFO size, and all + * fragments will be sent one by one. */ -static void ipc_tx_callback(void *prm) +static void ipc_tx_send(void *prm) { struct ishtp_cl *cl = prm; struct ishtp_cl_tx_ring *cl_msg; @@ -677,32 +678,41 @@ list); rem = cl_msg->send_buf.size - cl->tx_offs; - ishtp_hdr.host_addr = cl->host_client_id; - ishtp_hdr.fw_addr = cl->fw_client_id; - ishtp_hdr.reserved = 0; - pmsg = cl_msg->send_buf.data + cl->tx_offs; - - if (rem <= dev->mtu) { - ishtp_hdr.length = rem; - ishtp_hdr.msg_complete = 1; - cl->sending = 0; - list_del_init(&cl_msg->list); /* Must be before write */ - spin_unlock_irqrestore(&cl->tx_list_spinlock, tx_flags); - /* Submit to IPC queue with no callback */ - ishtp_write_message(dev, &ishtp_hdr, pmsg); - spin_lock_irqsave(&cl->tx_free_list_spinlock, tx_free_flags); - list_add_tail(&cl_msg->list, &cl->tx_free_list.list); - ++cl->tx_ring_free_size; - spin_unlock_irqrestore(&cl->tx_free_list_spinlock, - tx_free_flags); - } else { - /* Send IPC fragment */ - spin_unlock_irqrestore(&cl->tx_list_spinlock, tx_flags); - cl->tx_offs += dev->mtu; - ishtp_hdr.length = dev->mtu; - ishtp_hdr.msg_complete = 0; - ishtp_send_msg(dev, &ishtp_hdr, pmsg, ipc_tx_callback, cl); + while (rem > 0) { + ishtp_hdr.host_addr = cl->host_client_id; + ishtp_hdr.fw_addr = cl->fw_client_id; + ishtp_hdr.reserved = 0; + pmsg = cl_msg->send_buf.data + cl->tx_offs; + + if (rem <= dev->mtu) { + /* Last fragment or only one packet */ + ishtp_hdr.length = rem; + ishtp_hdr.msg_complete = 1; + /* Submit to IPC queue with no callback */ + ishtp_write_message(dev, &ishtp_hdr, pmsg); + cl->tx_offs = 0; + cl->sending = 0; + + break; + } else { + /* Send ipc fragment */ + ishtp_hdr.length = dev->mtu; + ishtp_hdr.msg_complete = 0; + /* All fregments submitted to IPC queue with no callback */ + ishtp_write_message(dev, &ishtp_hdr, pmsg); + cl->tx_offs += dev->mtu; + rem = cl_msg->send_buf.size - cl->tx_offs; + } } + + list_del_init(&cl_msg->list); + spin_unlock_irqrestore(&cl->tx_list_spinlock, tx_flags); + + spin_lock_irqsave(&cl->tx_free_list_spinlock, tx_free_flags); + list_add_tail(&cl_msg->list, &cl->tx_free_list.list); + ++cl->tx_ring_free_size; + spin_unlock_irqrestore(&cl->tx_free_list_spinlock, + tx_free_flags); } /** @@ -720,7 +730,7 @@ return; cl->tx_offs = 0; - ipc_tx_callback(cl); + ipc_tx_send(cl); ++cl->send_msg_cnt_ipc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hid/usbhid/hid-pidff.c +++ linux-azure-5.4.0/drivers/hid/usbhid/hid-pidff.c @@ -1292,6 +1292,7 @@ if (pidff->pool[PID_DEVICE_MANAGED_POOL].value && pidff->pool[PID_DEVICE_MANAGED_POOL].value[0] == 0) { + error = -EPERM; hid_notice(hid, "device does not support device managed pool\n"); goto fail; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hsi/controllers/omap_ssi_port.c +++ linux-azure-5.4.0/drivers/hsi/controllers/omap_ssi_port.c @@ -230,10 +230,10 @@ if (msg->ttype == HSI_MSG_READ) { err = dma_map_sg(&ssi->device, msg->sgt.sgl, msg->sgt.nents, DMA_FROM_DEVICE); - if (err < 0) { + if (!err) { dev_dbg(&ssi->device, "DMA map SG failed !\n"); pm_runtime_put_autosuspend(omap_port->pdev); - return err; + return -EIO; } csdp = SSI_DST_BURST_4x32_BIT | SSI_DST_MEMORY_PORT | SSI_SRC_SINGLE_ACCESS0 | SSI_SRC_PERIPHERAL_PORT | @@ -247,10 +247,10 @@ } else { err = dma_map_sg(&ssi->device, msg->sgt.sgl, msg->sgt.nents, DMA_TO_DEVICE); - if (err < 0) { + if (!err) { dev_dbg(&ssi->device, "DMA map SG failed !\n"); pm_runtime_put_autosuspend(omap_port->pdev); - return err; + return -EIO; } csdp = SSI_SRC_BURST_4x32_BIT | SSI_SRC_MEMORY_PORT | SSI_DST_SINGLE_ACCESS0 | SSI_DST_PERIPHERAL_PORT | only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/Kconfig +++ linux-azure-5.4.0/drivers/hv/Kconfig @@ -4,15 +4,16 @@ config HYPERV tristate "Microsoft Hyper-V client drivers" - depends on X86 && ACPI && X86_LOCAL_APIC && HYPERVISOR_GUEST + depends on ACPI && ((X86 && X86_LOCAL_APIC && HYPERVISOR_GUEST) \ + || (ARM64 && !CPU_BIG_ENDIAN)) select PARAVIRT - select X86_HV_CALLBACK_VECTOR + select X86_HV_CALLBACK_VECTOR if X86 help Select this option to run Linux as a Hyper-V client operating system. config HYPERV_TIMER - def_bool HYPERV + def_bool HYPERV && X86 config HYPERV_UTILS tristate "Microsoft Hyper-V Utilities driver" @@ -26,4 +27,15 @@ help Select this option to enable Hyper-V Balloon driver. +config HYPERV_AZURE_BLOB + tristate "Microsoft Azure Blob driver" + depends on HYPERV && X86_64 + help + Select this option to enable Microsoft Azure Blob driver. + + This driver implements a fast datapath over Hyper-V to support + accelerated access to Microsoft Azure Blob services. + To compile this driver as a module, choose M here. The module will be + called azure_blob. + endmenu only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/Makefile +++ linux-azure-5.4.0/drivers/hv/Makefile @@ -2,6 +2,7 @@ obj-$(CONFIG_HYPERV) += hv_vmbus.o obj-$(CONFIG_HYPERV_UTILS) += hv_utils.o obj-$(CONFIG_HYPERV_BALLOON) += hv_balloon.o +obj-$(CONFIG_HYPERV_AZURE_BLOB) += hv_azure_blob.o CFLAGS_hv_trace.o = -I$(src) CFLAGS_hv_balloon.o = -I$(src) @@ -10,3 +11,6 @@ hv.o connection.o channel.o \ channel_mgmt.o ring_buffer.o hv_trace.o hv_utils-y := hv_util.o hv_kvp.o hv_snapshot.o hv_fcopy.o hv_utils_transport.o + +# Code that must be built-in +obj-$(subst m,y,$(CONFIG_HYPERV)) += hv_common.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/hv_azure_blob.c +++ linux-azure-5.4.0/drivers/hv/hv_azure_blob.c @@ -0,0 +1,599 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* Copyright (c) 2021 Microsoft Corporation. */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +struct az_blob_device { + struct kref kref; + + struct hv_device *device; + struct miscdevice misc; + + /* Lock for protecting pending_requests */ + spinlock_t request_lock; + struct list_head pending_requests; + wait_queue_head_t waiting_to_drain; + + bool removing; +}; + +/* VSP messages */ +enum az_blob_vsp_request_type { + AZ_BLOB_DRIVER_REQUEST_FIRST = 0x100, + AZ_BLOB_DRIVER_USER_REQUEST = 0x100, + AZ_BLOB_DRIVER_REGISTER_BUFFER = 0x101, + AZ_BLOB_DRIVER_DEREGISTER_BUFFER = 0x102, +}; + +/* VSC->VSP request */ +struct az_blob_vsp_request { + u32 version; + u32 timeout_ms; + u32 data_buffer_offset; + u32 data_buffer_length; + u32 data_buffer_valid; + u32 operation_type; + u32 request_buffer_offset; + u32 request_buffer_length; + u32 response_buffer_offset; + u32 response_buffer_length; + guid_t transaction_id; +} __packed; + +/* VSP->VSC response */ +struct az_blob_vsp_response { + u32 length; + u32 error; + u32 response_len; +} __packed; + +struct az_blob_vsp_request_ctx { + struct list_head list_device; + struct completion wait_vsp; + struct az_blob_request_sync *request; +}; + +/* The maximum number of pages we can pass to VSP in a single packet */ +#define AZ_BLOB_MAX_PAGES 8192 + +/* Ring buffer size in bytes */ +#define AZ_BLOB_RING_SIZE (128 * 1024) + +/* System wide device queue depth */ +#define AZ_BLOB_QUEUE_DEPTH 1024 + +/* The VSP protocol version this driver understands */ +#define VSP_PROTOCOL_VERSION_V1 0 + +static const struct hv_vmbus_device_id id_table[] = { + { HV_AZURE_BLOB_GUID, + .driver_data = 0 + }, + { }, +}; + +static void az_blob_device_get(struct az_blob_device *dev) +{ + kref_get(&dev->kref); +} + +static void az_blob_release(struct kref *kref) +{ + struct az_blob_device *dev = + container_of(kref, struct az_blob_device, kref); + + kfree(dev); +} + +static void az_blob_device_put(struct az_blob_device *dev) +{ + kref_put(&dev->kref, az_blob_release); +} + +static void az_blob_on_channel_callback(void *context) +{ + struct vmbus_channel *channel = (struct vmbus_channel *)context; + const struct vmpacket_descriptor *desc; + + foreach_vmbus_pkt(desc, channel) { + struct az_blob_vsp_request_ctx *request_ctx; + struct az_blob_vsp_response *response; + u64 cmd_rqst = desc->trans_id; + + request_ctx = (struct az_blob_vsp_request_ctx *)cmd_rqst; + response = hv_pkt_data(desc); + + dev_dbg(&channel->device_obj->device, + "response for request %pUb status %u " + "response_len %u\n", + &request_ctx->request->guid, response->error, + response->response_len); + request_ctx->request->response.status = response->error; + request_ctx->request->response.response_len = + response->response_len; + complete(&request_ctx->wait_vsp); + } +} + +static int az_blob_fop_open(struct inode *inode, struct file *file) +{ + struct az_blob_device *dev = + container_of(file->private_data, struct az_blob_device, misc); + + az_blob_device_get(dev); + + return 0; +} + +static int az_blob_fop_release(struct inode *inode, struct file *file) +{ + struct az_blob_device *dev = + container_of(file->private_data, struct az_blob_device, misc); + + az_blob_device_put(dev); + + return 0; +} + +static inline bool az_blob_safe_file_access(struct file *file) +{ + return file->f_cred == current_cred() && !uaccess_kernel(); +} + +/* Pin the user buffer pages into memory for passing to VSP */ +static int get_buffer_pages(int rw, void __user *buffer, u32 buffer_len, + struct page ***ppages, size_t *start, + size_t *num_pages) +{ + struct iovec iov; + struct iov_iter iter; + int ret; + ssize_t result; + struct page **pages; + int i; + + ret = import_single_range(rw, buffer, buffer_len, &iov, &iter); + if (ret) + return ret; + + result = iov_iter_get_pages_alloc(&iter, &pages, buffer_len, start); + if (result < 0) + return result; + + *num_pages = (result + *start + PAGE_SIZE - 1) / PAGE_SIZE; + if (result != buffer_len) { + for (i = 0; i < *num_pages; i++) + put_page(pages[i]); + kvfree(pages); + return -EFAULT; + } + + *ppages = pages; + return 0; +} + +static void fill_in_page_buffer(u64 *pfn_array, int *index, + struct page **pages, unsigned long num_pages) +{ + int i, page_idx = *index; + + for (i = 0; i < num_pages; i++) + pfn_array[page_idx++] = page_to_pfn(pages[i]); + *index = page_idx; +} + +static void free_buffer_pages(size_t num_pages, struct page **pages) +{ + unsigned long i; + + for (i = 0; i < num_pages; i++) + if (pages && pages[i]) + put_page(pages[i]); + kvfree(pages); +} + +static long az_blob_ioctl_user_request(struct file *filp, unsigned long arg) +{ + struct az_blob_device *dev = + container_of(filp->private_data, struct az_blob_device, misc); + struct az_blob_request_sync __user *request_user = + (struct az_blob_request_sync __user *)arg; + struct az_blob_request_sync request; + struct az_blob_vsp_request_ctx request_ctx; + unsigned long flags; + int ret; + size_t request_start, request_num_pages = 0; + size_t response_start, response_num_pages = 0; + size_t data_start, data_num_pages = 0, total_num_pages; + struct page **request_pages = NULL, **response_pages = NULL; + struct page **data_pages = NULL; + struct vmbus_packet_mpb_array *desc; + u64 *pfn_array; + int desc_size; + int page_idx; + struct az_blob_vsp_request *vsp_request; + + if (dev->removing) + return -ENODEV; + + if (!az_blob_safe_file_access(filp)) { + dev_dbg(&dev->device->device, + "process %d(%s) changed security contexts after" + " opening file descriptor\n", + task_tgid_vnr(current), current->comm); + return -EACCES; + } + + if (copy_from_user(&request, request_user, sizeof(request))) { + dev_dbg(&dev->device->device, + "don't have permission to user provided buffer\n"); + return -EFAULT; + } + + dev_dbg(&dev->device->device, + "az_blob ioctl request guid %pUb timeout %u request_len %u" + " response_len %u data_len %u request_buffer %llx " + "response_buffer %llx data_buffer %llx\n", + &request.guid, request.timeout, request.request_len, + request.response_len, request.data_len, request.request_buffer, + request.response_buffer, request.data_buffer); + + if (!request.request_len || !request.response_len) + return -EINVAL; + + if (request.data_len && request.data_len < request.data_valid) + return -EINVAL; + + if (request.data_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES || + request.request_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES || + request.response_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES) + return -EINVAL; + + init_completion(&request_ctx.wait_vsp); + request_ctx.request = &request; + + ret = get_buffer_pages(READ, (void __user *)request.request_buffer, + request.request_len, &request_pages, + &request_start, &request_num_pages); + if (ret) + goto get_user_page_failed; + + ret = get_buffer_pages(READ | WRITE, + (void __user *)request.response_buffer, + request.response_len, &response_pages, + &response_start, &response_num_pages); + if (ret) + goto get_user_page_failed; + + if (request.data_len) { + ret = get_buffer_pages(READ | WRITE, + (void __user *)request.data_buffer, + request.data_len, &data_pages, + &data_start, &data_num_pages); + if (ret) + goto get_user_page_failed; + } + + total_num_pages = request_num_pages + response_num_pages + + data_num_pages; + if (total_num_pages > AZ_BLOB_MAX_PAGES) { + dev_dbg(&dev->device->device, + "number of DMA pages %lu buffer exceeding %u\n", + total_num_pages, AZ_BLOB_MAX_PAGES); + ret = -EINVAL; + goto get_user_page_failed; + } + + /* Construct a VMBUS packet and send it over to VSP */ + desc_size = struct_size(desc, range.pfn_array, total_num_pages); + desc = kzalloc(desc_size, GFP_KERNEL); + vsp_request = kzalloc(sizeof(*vsp_request), GFP_KERNEL); + if (!desc || !vsp_request) { + kfree(desc); + kfree(vsp_request); + ret = -ENOMEM; + goto get_user_page_failed; + } + + desc->range.offset = 0; + desc->range.len = total_num_pages * PAGE_SIZE; + pfn_array = desc->range.pfn_array; + page_idx = 0; + + if (request.data_len) { + fill_in_page_buffer(pfn_array, &page_idx, data_pages, + data_num_pages); + vsp_request->data_buffer_offset = data_start; + vsp_request->data_buffer_length = request.data_len; + vsp_request->data_buffer_valid = request.data_valid; + } + + fill_in_page_buffer(pfn_array, &page_idx, request_pages, + request_num_pages); + vsp_request->request_buffer_offset = request_start + + data_num_pages * PAGE_SIZE; + vsp_request->request_buffer_length = request.request_len; + + fill_in_page_buffer(pfn_array, &page_idx, response_pages, + response_num_pages); + vsp_request->response_buffer_offset = response_start + + (data_num_pages + request_num_pages) * PAGE_SIZE; + vsp_request->response_buffer_length = request.response_len; + + vsp_request->version = VSP_PROTOCOL_VERSION_V1; + vsp_request->timeout_ms = request.timeout; + vsp_request->operation_type = AZ_BLOB_DRIVER_USER_REQUEST; + guid_copy(&vsp_request->transaction_id, &request.guid); + + spin_lock_irqsave(&dev->request_lock, flags); + list_add_tail(&request_ctx.list_device, &dev->pending_requests); + spin_unlock_irqrestore(&dev->request_lock, flags); + + dev_dbg(&dev->device->device, "sending request to VSP\n"); + dev_dbg(&dev->device->device, "desc_size %u desc->range.len %u " + "desc->range.offset %u\n", + desc_size, desc->range.len, desc->range.offset); + dev_dbg(&dev->device->device, "vsp_request data_buffer_offset %u " + "data_buffer_length %u " + "data_buffer_valid %u request_buffer_offset %u " + "request_buffer_length %u response_buffer_offset %u " + "response_buffer_length %u\n", + vsp_request->data_buffer_offset, + vsp_request->data_buffer_length, + vsp_request->data_buffer_valid, + vsp_request->request_buffer_offset, + vsp_request->request_buffer_length, + vsp_request->response_buffer_offset, + vsp_request->response_buffer_length); + + ret = vmbus_sendpacket_mpb_desc(dev->device->channel, desc, desc_size, + vsp_request, sizeof(*vsp_request), + (u64)&request_ctx); + + kfree(desc); + kfree(vsp_request); + if (ret) + goto vmbus_send_failed; + + wait_for_completion(&request_ctx.wait_vsp); + + /* + * At this point, the response is already written to request + * by VMBUS completion handler, copy them to user-mode buffers + * and return to user-mode + */ + if (copy_to_user(&request_user->response, &request.response, + sizeof(request.response))) + ret = -EFAULT; + +vmbus_send_failed: + + spin_lock_irqsave(&dev->request_lock, flags); + list_del(&request_ctx.list_device); + if (list_empty(&dev->pending_requests)) + wake_up(&dev->waiting_to_drain); + spin_unlock_irqrestore(&dev->request_lock, flags); + +get_user_page_failed: + free_buffer_pages(request_num_pages, request_pages); + free_buffer_pages(response_num_pages, response_pages); + free_buffer_pages(data_num_pages, data_pages); + + return ret; +} + +static long az_blob_fop_ioctl(struct file *filp, unsigned int cmd, + unsigned long arg) +{ + struct az_blob_device *dev = + container_of(filp->private_data, struct az_blob_device, misc); + + switch (cmd) { + case IOCTL_AZ_BLOB_DRIVER_USER_REQUEST: + return az_blob_ioctl_user_request(filp, arg); + + default: + dev_dbg(&dev->device->device, + "unrecognized IOCTL code %u\n", cmd); + } + + return -EINVAL; +} + +static const struct file_operations az_blob_client_fops = { + .owner = THIS_MODULE, + .open = az_blob_fop_open, + .unlocked_ioctl = az_blob_fop_ioctl, + .release = az_blob_fop_release, +}; + +#if defined(CONFIG_DEBUG_FS) +static int az_blob_show_pending_requests(struct seq_file *m, void *v) +{ + unsigned long flags; + struct az_blob_vsp_request_ctx *request_ctx; + struct az_blob_device *dev = m->private; + + seq_puts(m, "List of pending requests\n"); + seq_puts(m, "UUID request_len response_len data_len data_valid " + "request_buffer response_buffer data_buffer\n"); + spin_lock_irqsave(&dev->request_lock, flags); + list_for_each_entry(request_ctx, &dev->pending_requests, list_device) { + seq_printf(m, "%pUb ", &request_ctx->request->guid); + seq_printf(m, "%u ", request_ctx->request->request_len); + seq_printf(m, "%u ", request_ctx->request->response_len); + seq_printf(m, "%u ", request_ctx->request->data_len); + seq_printf(m, "%u ", request_ctx->request->data_valid); + seq_printf(m, "%llx ", request_ctx->request->request_buffer); + seq_printf(m, "%llx ", request_ctx->request->response_buffer); + seq_printf(m, "%llx\n", request_ctx->request->data_buffer); + } + spin_unlock_irqrestore(&dev->request_lock, flags); + + return 0; +} + +static int az_blob_debugfs_open(struct inode *inode, struct file *file) +{ + return single_open(file, az_blob_show_pending_requests, + inode->i_private); +} + +static const struct file_operations az_blob_debugfs_fops = { + .open = az_blob_debugfs_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release +}; +#endif + +static void az_blob_remove_device(struct az_blob_device *dev) +{ + struct dentry *debugfs_root = debugfs_lookup("az_blob", NULL); + + debugfs_remove_recursive(debugfs_root); + misc_deregister(&dev->misc); +} + +static int az_blob_create_device(struct az_blob_device *dev) +{ + int ret; + struct dentry *debugfs_root; + + dev->misc.minor = MISC_DYNAMIC_MINOR, + dev->misc.name = "azure_blob", + dev->misc.fops = &az_blob_client_fops, + + ret = misc_register(&dev->misc); + if (ret) + return ret; + + debugfs_root = debugfs_create_dir("az_blob", NULL); + debugfs_create_file("pending_requests", 0400, debugfs_root, dev, + &az_blob_debugfs_fops); + + return 0; +} + +static int az_blob_connect_to_vsp(struct hv_device *device, + struct az_blob_device *dev, u32 ring_size) +{ + int ret; + + dev->device = device; + + ret = vmbus_open(device->channel, ring_size, ring_size, NULL, 0, + az_blob_on_channel_callback, device->channel); + + if (ret) + return ret; + + hv_set_drvdata(device, dev); + + return ret; +} + +static void az_blob_remove_vmbus(struct hv_device *device) +{ + hv_set_drvdata(device, NULL); + vmbus_close(device->channel); +} + +static int az_blob_probe(struct hv_device *device, + const struct hv_vmbus_device_id *dev_id) +{ + int ret; + struct az_blob_device *dev; + + dev = kzalloc(sizeof(*dev), GFP_KERNEL); + if (!dev) + return -ENOMEM; + + spin_lock_init(&dev->request_lock); + INIT_LIST_HEAD(&dev->pending_requests); + init_waitqueue_head(&dev->waiting_to_drain); + + kref_init(&dev->kref); + + ret = az_blob_connect_to_vsp(device, dev, AZ_BLOB_RING_SIZE); + if (ret) { + dev_err(&dev->device->device, + "failed to connect to VSP ret %d\n", ret); + goto fail; + } + + /* create user-mode client library facing device */ + ret = az_blob_create_device(dev); + if (ret) { + dev_err(&dev->device->device, + "failed to create device ret=%d\n", ret); + az_blob_remove_vmbus(device); + goto fail; + } + + dev_info(&dev->device->device, "successfully probed\n"); + + return 0; + +fail: + az_blob_device_put(dev); + return ret; +} + +static int az_blob_remove(struct hv_device *device) +{ + struct az_blob_device *dev = hv_get_drvdata(device); + + dev->removing = true; + + az_blob_remove_device(dev); + + /* + * The Hyper-V VSP still owns the user buffers of those pending + * requests. Wait until all the user buffers are released to + * the original owner before proceeding to remove the bus device. + */ + dev_dbg(&device->device, "wait for vsp_pending_list\n"); + wait_event(dev->waiting_to_drain, list_empty(&dev->pending_requests)); + + az_blob_remove_vmbus(device); + az_blob_device_put(dev); + + dev_info(&device->device, "device removed\n"); + + return 0; +} + +static struct hv_driver az_blob_drv = { + .name = KBUILD_MODNAME, + .id_table = id_table, + .probe = az_blob_probe, + .remove = az_blob_remove, + .driver = { + .probe_type = PROBE_PREFER_ASYNCHRONOUS, + }, +}; + +static int __init az_blob_drv_init(void) +{ + return vmbus_driver_register(&az_blob_drv); +} + +static void __exit az_blob_drv_exit(void) +{ + vmbus_driver_unregister(&az_blob_drv); +} + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Microsoft Azure Blob driver"); +module_init(az_blob_drv_init); +module_exit(az_blob_drv_exit); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/hv_common.c +++ linux-azure-5.4.0/drivers/hv/hv_common.c @@ -0,0 +1,295 @@ +// SPDX-License-Identifier: GPL-2.0 + +/* + * Architecture neutral utility routines for interacting with + * Hyper-V. This file is specifically for code that must be + * built-in to the kernel image when CONFIG_HYPERV is set + * (vs. being in a module) because it is called from architecture + * specific code under arch/. + * + * Copyright (C) 2021, Microsoft, Inc. + * + * Author : Michael Kelley + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * hv_root_partition and ms_hyperv are defined here with other Hyper-V + * specific globals so they are shared across all architectures and are + * built only when CONFIG_HYPERV is defined. But on x86, + * ms_hyperv_init_platform() is built even when CONFIG_HYPERV is not + * defined, and it uses these two variables. So mark them as __weak + * here, allowing for an overriding definition in the module containing + * ms_hyperv_init_platform(). + */ +bool __weak hv_root_partition; +EXPORT_SYMBOL_GPL(hv_root_partition); + +struct ms_hyperv_info __weak ms_hyperv; +EXPORT_SYMBOL_GPL(ms_hyperv); + +u32 *hv_vp_index; +EXPORT_SYMBOL_GPL(hv_vp_index); + +u32 hv_max_vp_index; +EXPORT_SYMBOL_GPL(hv_max_vp_index); + +void __percpu **hyperv_pcpu_input_arg; +EXPORT_SYMBOL_GPL(hyperv_pcpu_input_arg); + +void __percpu **hyperv_pcpu_output_arg; +EXPORT_SYMBOL_GPL(hyperv_pcpu_output_arg); + +/* + * Hyper-V specific initialization and shutdown code that is + * common across all architectures. Called from architecture + * specific initialization functions. + */ + +void __init hv_common_free(void) +{ + kfree(hv_vp_index); + hv_vp_index = NULL; + + free_percpu(hyperv_pcpu_output_arg); + hyperv_pcpu_output_arg = NULL; + + free_percpu(hyperv_pcpu_input_arg); + hyperv_pcpu_input_arg = NULL; +} + +int __init hv_common_init(void) +{ + int i; + + /* + * Hyper-V expects to get crash register data or kmsg when + * crash enlightment is available and system crashes. Set + * crash_kexec_post_notifiers to be true to make sure that + * calling crash enlightment interface before running kdump + * kernel. + */ + if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) + crash_kexec_post_notifiers = true; + + /* + * Allocate the per-CPU state for the hypercall input arg. + * If this allocation fails, we will not be able to setup + * (per-CPU) hypercall input page and thus this failure is + * fatal on Hyper-V. + */ + hyperv_pcpu_input_arg = alloc_percpu(void *); + BUG_ON(!hyperv_pcpu_input_arg); + + /* Allocate the per-CPU state for output arg for root */ + if (hv_root_partition) { + hyperv_pcpu_output_arg = alloc_percpu(void *); + BUG_ON(!hyperv_pcpu_output_arg); + } + + hv_vp_index = kmalloc_array(num_possible_cpus(), sizeof(*hv_vp_index), + GFP_KERNEL); + if (!hv_vp_index) { + hv_common_free(); + return -ENOMEM; + } + + for (i = 0; i < num_possible_cpus(); i++) + hv_vp_index[i] = VP_INVAL; + + return 0; +} + +/* + * Hyper-V specific initialization and die code for + * individual CPUs that is common across all architectures. + * Called by the CPU hotplug mechanism. + */ + +int hv_common_cpu_init(unsigned int cpu) +{ + void **inputarg, **outputarg; + u64 msr_vp_index; + gfp_t flags; + int pgcount = hv_root_partition ? 2 : 1; + + /* hv_cpu_init() can be called with IRQs disabled from hv_resume() */ + flags = irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL; + + inputarg = (void **)this_cpu_ptr(hyperv_pcpu_input_arg); + *inputarg = kmalloc(pgcount * HV_HYP_PAGE_SIZE, flags); + if (!(*inputarg)) + return -ENOMEM; + + if (hv_root_partition) { + outputarg = (void **)this_cpu_ptr(hyperv_pcpu_output_arg); + *outputarg = (char *)(*inputarg) + HV_HYP_PAGE_SIZE; + } + + msr_vp_index = hv_get_register(HV_REGISTER_VP_INDEX); + + hv_vp_index[cpu] = msr_vp_index; + + if (msr_vp_index > hv_max_vp_index) + hv_max_vp_index = msr_vp_index; + + return 0; +} + +int hv_common_cpu_die(unsigned int cpu) +{ + unsigned long flags; + void **inputarg, **outputarg; + void *mem; + + local_irq_save(flags); + + inputarg = (void **)this_cpu_ptr(hyperv_pcpu_input_arg); + mem = *inputarg; + *inputarg = NULL; + + if (hv_root_partition) { + outputarg = (void **)this_cpu_ptr(hyperv_pcpu_output_arg); + *outputarg = NULL; + } + + local_irq_restore(flags); + + kfree(mem); + + return 0; +} + +/* Bit mask of the extended capability to query: see HV_EXT_CAPABILITY_xxx */ +bool hv_query_ext_cap(u64 cap_query) +{ + /* + * The address of the 'hv_extended_cap' variable will be used as an + * output parameter to the hypercall below and so it should be + * compatible with 'virt_to_phys'. Which means, it's address should be + * directly mapped. Use 'static' to keep it compatible; stack variables + * can be virtually mapped, making them imcompatible with + * 'virt_to_phys'. + * Hypercall input/output addresses should also be 8-byte aligned. + */ + static u64 hv_extended_cap __aligned(8); + static bool hv_extended_cap_queried; + u64 status; + + /* + * Querying extended capabilities is an extended hypercall. Check if the + * partition supports extended hypercall, first. + */ + if (!(ms_hyperv.priv_high & HV_ENABLE_EXTENDED_HYPERCALLS)) + return false; + + /* Extended capabilities do not change at runtime. */ + if (hv_extended_cap_queried) + return hv_extended_cap & cap_query; + + status = hv_do_hypercall(HV_EXT_CALL_QUERY_CAPABILITIES, NULL, + &hv_extended_cap); + + /* + * The query extended capabilities hypercall should not fail under + * any normal circumstances. Avoid repeatedly making the hypercall, on + * error. + */ + hv_extended_cap_queried = true; + if (!hv_result_success(status)) { + pr_err("Hyper-V: Extended query capabilities hypercall failed 0x%llx\n", + status); + return false; + } + + return hv_extended_cap & cap_query; +} +EXPORT_SYMBOL_GPL(hv_query_ext_cap); + +void hv_setup_dma_ops(struct device *dev, bool coherent) +{ + /* + * Hyper-V does not offer a vIOMMU in the guest + * VM, so pass 0/NULL for the IOMMU settings + */ + arch_setup_dma_ops(dev, 0, 0, NULL, coherent); +} +EXPORT_SYMBOL_GPL(hv_setup_dma_ops); + +bool hv_is_hibernation_supported(void) +{ + return !hv_root_partition && acpi_sleep_state_supported(ACPI_STATE_S4); +} +EXPORT_SYMBOL_GPL(hv_is_hibernation_supported); + +/* + * Default function to read the Hyper-V reference counter, independent + * of whether Hyper-V enlightened clocks/timers are being used. But on + * architectures where it is used, Hyper-V enlightenment code in + * hyperv_timer.c may override this function. + */ +static u64 __hv_read_ref_counter(void) +{ + return hv_get_register(HV_REGISTER_TIME_REF_COUNT); +} + +u64 (*hv_read_reference_counter)(void) = __hv_read_ref_counter; +EXPORT_SYMBOL_GPL(hv_read_reference_counter); + +/* These __weak functions provide default "no-op" behavior and + * may be overridden by architecture specific versions. Architectures + * for which the default "no-op" behavior is sufficient can leave + * them unimplemented and not be cluttered with a bunch of stub + * functions in arch-specific code. + */ + +bool __weak hv_is_isolation_supported(void) +{ + return false; +} +EXPORT_SYMBOL_GPL(hv_is_isolation_supported); + +void __weak hv_setup_vmbus_handler(void (*handler)(void)) +{ +} +EXPORT_SYMBOL_GPL(hv_setup_vmbus_handler); + +void __weak hv_remove_vmbus_handler(void) +{ +} +EXPORT_SYMBOL_GPL(hv_remove_vmbus_handler); + +void __weak hv_setup_kexec_handler(void (*handler)(void)) +{ +} +EXPORT_SYMBOL_GPL(hv_setup_kexec_handler); + +void __weak hv_remove_kexec_handler(void) +{ +} +EXPORT_SYMBOL_GPL(hv_remove_kexec_handler); + +void __weak hv_setup_crash_handler(void (*handler)(struct pt_regs *regs)) +{ +} +EXPORT_SYMBOL_GPL(hv_setup_crash_handler); + +void __weak hv_remove_crash_handler(void) +{ +} +EXPORT_SYMBOL_GPL(hv_remove_crash_handler); + +void __weak hyperv_cleanup(void) +{ +} +EXPORT_SYMBOL_GPL(hyperv_cleanup); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/hv_trace.h +++ linux-azure-5.4.0/drivers/hv/hv_trace.h @@ -296,6 +296,25 @@ ) ); +TRACE_EVENT(vmbus_send_modifychannel, + TP_PROTO(const struct vmbus_channel_modifychannel *msg, + int ret), + TP_ARGS(msg, ret), + TP_STRUCT__entry( + __field(u32, child_relid) + __field(u32, target_vp) + __field(int, ret) + ), + TP_fast_assign( + __entry->child_relid = msg->child_relid; + __entry->target_vp = msg->target_vp; + __entry->ret = ret; + ), + TP_printk("binding child_relid 0x%x to target_vp 0x%x, ret %d", + __entry->child_relid, __entry->target_vp, __entry->ret + ) + ); + DECLARE_EVENT_CLASS(vmbus_channel, TP_PROTO(const struct vmbus_channel *channel), TP_ARGS(channel), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hv/ring_buffer.c +++ linux-azure-5.4.0/drivers/hv/ring_buffer.c @@ -378,7 +378,16 @@ static u32 hv_pkt_iter_avail(const struct hv_ring_buffer_info *rbi) { u32 priv_read_loc = rbi->priv_read_index; - u32 write_loc = READ_ONCE(rbi->ring_buffer->write_index); + u32 write_loc; + + /* + * The Hyper-V host writes the packet data, then uses + * store_release() to update the write_index. Use load_acquire() + * here to prevent loads of the packet data from being re-ordered + * before the read of the write_index and potentially getting + * stale data. + */ + write_loc = virt_load_acquire(&rbi->ring_buffer->write_index); if (write_loc >= priv_read_loc) return write_loc - priv_read_loc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/adt7470.c +++ linux-azure-5.4.0/drivers/hwmon/adt7470.c @@ -20,6 +20,7 @@ #include #include #include +#include /* Addresses to scan */ static const unsigned short normal_i2c[] = { 0x2C, 0x2E, 0x2F, I2C_CLIENT_END }; @@ -260,11 +261,10 @@ adt7470_read_temperatures(client, data); mutex_unlock(&data->lock); - set_current_state(TASK_INTERRUPTIBLE); if (kthread_should_stop()) break; - schedule_timeout(msecs_to_jiffies(data->auto_update_interval)); + schedule_timeout_interruptible(msecs_to_jiffies(data->auto_update_interval)); } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/coretemp.c +++ linux-azure-5.4.0/drivers/hwmon/coretemp.c @@ -46,9 +46,6 @@ #define TOTAL_ATTRS (MAX_CORE_ATTRS + 1) #define MAX_CORE_DATA (NUM_REAL_CORES + BASE_SYSFS_ATTR_NO) -#define TO_CORE_ID(cpu) (cpu_data(cpu).cpu_core_id) -#define TO_ATTR_NO(cpu) (TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO) - #ifdef CONFIG_SMP #define for_each_sibling(i, cpu) \ for_each_cpu(i, topology_sibling_cpumask(cpu)) @@ -91,6 +88,8 @@ struct platform_data { struct device *hwmon_dev; u16 pkg_id; + u16 cpu_map[NUM_REAL_CORES]; + struct ida ida; struct cpumask cpumask; struct temp_data *core_data[MAX_CORE_DATA]; struct device_attribute name_attr; @@ -441,7 +440,7 @@ MSR_IA32_THERM_STATUS; tdata->is_pkg_data = pkg_flag; tdata->cpu = cpu; - tdata->cpu_core_id = TO_CORE_ID(cpu); + tdata->cpu_core_id = topology_core_id(cpu); tdata->attr_size = MAX_CORE_ATTRS; mutex_init(&tdata->update_lock); return tdata; @@ -454,7 +453,7 @@ struct platform_data *pdata = platform_get_drvdata(pdev); struct cpuinfo_x86 *c = &cpu_data(cpu); u32 eax, edx; - int err, attr_no; + int err, index, attr_no; /* * Find attr number for sysfs: @@ -462,14 +461,26 @@ * The attr number is always core id + 2 * The Pkgtemp will always show up as temp1_*, if available */ - attr_no = pkg_flag ? PKG_SYSFS_ATTR_NO : TO_ATTR_NO(cpu); + if (pkg_flag) { + attr_no = PKG_SYSFS_ATTR_NO; + } else { + index = ida_alloc(&pdata->ida, GFP_KERNEL); + if (index < 0) + return index; + pdata->cpu_map[index] = topology_core_id(cpu); + attr_no = index + BASE_SYSFS_ATTR_NO; + } - if (attr_no > MAX_CORE_DATA - 1) - return -ERANGE; + if (attr_no > MAX_CORE_DATA - 1) { + err = -ERANGE; + goto ida_free; + } tdata = init_temp_data(cpu, pkg_flag); - if (!tdata) - return -ENOMEM; + if (!tdata) { + err = -ENOMEM; + goto ida_free; + } /* Test if we can access the status register */ err = rdmsr_safe_on_cpu(cpu, tdata->status_reg, &eax, &edx); @@ -505,6 +516,9 @@ exit_free: pdata->core_data[attr_no] = NULL; kfree(tdata); +ida_free: + if (!pkg_flag) + ida_free(&pdata->ida, index); return err; } @@ -524,6 +538,9 @@ kfree(pdata->core_data[indx]); pdata->core_data[indx] = NULL; + + if (indx >= BASE_SYSFS_ATTR_NO) + ida_free(&pdata->ida, indx - BASE_SYSFS_ATTR_NO); } static int coretemp_probe(struct platform_device *pdev) @@ -537,6 +554,7 @@ return -ENOMEM; pdata->pkg_id = pdev->id; + ida_init(&pdata->ida); platform_set_drvdata(pdev, pdata); pdata->hwmon_dev = devm_hwmon_device_register_with_groups(dev, DRVNAME, @@ -553,6 +571,7 @@ if (pdata->core_data[i]) coretemp_remove_core(pdata, i); + ida_destroy(&pdata->ida); return 0; } @@ -647,7 +666,7 @@ struct platform_device *pdev = coretemp_get_pdev(cpu); struct platform_data *pd; struct temp_data *tdata; - int indx, target; + int i, indx = -1, target; /* * Don't execute this on suspend as the device remove locks @@ -660,12 +679,19 @@ if (!pdev) return 0; - /* The core id is too big, just return */ - indx = TO_ATTR_NO(cpu); - if (indx > MAX_CORE_DATA - 1) + pd = platform_get_drvdata(pdev); + + for (i = 0; i < NUM_REAL_CORES; i++) { + if (pd->cpu_map[i] == topology_core_id(cpu)) { + indx = i + BASE_SYSFS_ATTR_NO; + break; + } + } + + /* Too many cores and this core is not populated, just return */ + if (indx < 0) return 0; - pd = platform_get_drvdata(pdev); tdata = pd->core_data[indx]; cpumask_clear_cpu(cpu, &pd->cpumask); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/dell-smm-hwmon.c +++ linux-azure-5.4.0/drivers/hwmon/dell-smm-hwmon.c @@ -301,7 +301,7 @@ } /* - * Set the fan speed (off, low, high). Returns the new fan status. + * Set the fan speed (off, low, high, ...). */ static int i8k_set_fan(int fan, int speed) { @@ -313,7 +313,7 @@ speed = (speed < 0) ? 0 : ((speed > i8k_fan_max) ? i8k_fan_max : speed); regs.ebx = (fan & 0xff) | (speed << 8); - return i8k_smm(®s) ? : i8k_get_fan_status(fan); + return i8k_smm(®s); } static int i8k_get_temp_type(int sensor) @@ -427,7 +427,7 @@ i8k_ioctl_unlocked(struct file *fp, unsigned int cmd, unsigned long arg) { int val = 0; - int speed; + int speed, err; unsigned char buff[16]; int __user *argp = (int __user *)arg; @@ -488,7 +488,11 @@ if (copy_from_user(&speed, argp + 1, sizeof(int))) return -EFAULT; - val = i8k_set_fan(val, speed); + err = i8k_set_fan(val, speed); + if (err < 0) + return err; + + val = i8k_get_fan_status(val); break; default: @@ -588,15 +592,18 @@ .unlocked_ioctl = i8k_ioctl, }; +static struct proc_dir_entry *entry; + static void __init i8k_init_procfs(void) { /* Register the proc entry */ - proc_create("i8k", 0, NULL, &i8k_fops); + entry = proc_create("i8k", 0, NULL, &i8k_fops); } static void __exit i8k_exit_procfs(void) { - remove_proc_entry("i8k", NULL); + if (entry) + remove_proc_entry("i8k", NULL); } #else @@ -792,10 +799,10 @@ static umode_t i8k_is_visible(struct kobject *kobj, struct attribute *attr, int index) { - if (disallow_fan_support && index >= 8) + if (disallow_fan_support && index >= 20) return 0; if (disallow_fan_type_call && - (index == 9 || index == 12 || index == 15)) + (index == 21 || index == 25 || index == 28)) return 0; if (index >= 0 && index <= 1 && !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP1)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/f71882fg.c +++ linux-azure-5.4.0/drivers/hwmon/f71882fg.c @@ -1577,8 +1577,9 @@ temp *= 125; if (sign) temp -= 128000; - } else - temp = data->temp[nr] * 1000; + } else { + temp = ((s8)data->temp[nr]) * 1000; + } return sprintf(buf, "%d\n", temp); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/gpio-fan.c +++ linux-azure-5.4.0/drivers/hwmon/gpio-fan.c @@ -391,6 +391,9 @@ if (!fan_data) return -EINVAL; + if (state >= fan_data->num_speed) + return -EINVAL; + set_fan_speed(fan_data, state); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/ibmaem.c +++ linux-azure-5.4.0/drivers/hwmon/ibmaem.c @@ -550,7 +550,7 @@ res = platform_device_add(data->pdev); if (res) - goto ipmi_err; + goto dev_add_err; platform_set_drvdata(data->pdev, data); @@ -598,7 +598,9 @@ ipmi_destroy_user(data->ipmi.user); ipmi_err: platform_set_drvdata(data->pdev, NULL); - platform_device_unregister(data->pdev); + platform_device_del(data->pdev); +dev_add_err: + platform_device_put(data->pdev); dev_err: ida_simple_remove(&aem_ida, data->id); id_err: @@ -690,7 +692,7 @@ res = platform_device_add(data->pdev); if (res) - goto ipmi_err; + goto dev_add_err; platform_set_drvdata(data->pdev, data); @@ -738,7 +740,9 @@ ipmi_destroy_user(data->ipmi.user); ipmi_err: platform_set_drvdata(data->pdev, NULL); - platform_device_unregister(data->pdev); + platform_device_del(data->pdev); +dev_add_err: + platform_device_put(data->pdev); dev_err: ida_simple_remove(&aem_ida, data->id); id_err: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/lm90.c +++ linux-azure-5.4.0/drivers/hwmon/lm90.c @@ -35,6 +35,15 @@ * explicitly as max6659, or if its address is not 0x4c. * These chips lack the remote temperature offset feature. * + * This driver also supports the MAX6654 chip made by Maxim. This chip can be + * at 9 different addresses, similar to MAX6680/MAX6681. The MAX6654 is similar + * to MAX6657/MAX6658/MAX6659, but does not support critical temperature + * limits. Extended range is available by setting the configuration register + * accordingly, and is done during initialization. Extended precision is only + * available at conversion rates of 1 Hz and slower. Note that extended + * precision is not enabled by default, as this driver initializes all chips + * to 2 Hz by design. + * * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and * MAX6692 chips made by Maxim. These are again similar to the LM86, * but they use unsigned temperature values and can report temperatures @@ -61,10 +70,10 @@ * This driver also supports the G781 from GMT. This device is compatible * with the ADM1032. * - * This driver also supports TMP451 from Texas Instruments. This device is - * supported in both compatibility and extended mode. It's mostly compatible - * with ADT7461 except for local temperature low byte register and max - * conversion rate. + * This driver also supports TMP451 and TMP461 from Texas Instruments. + * Those devices are supported in both compatibility and extended mode. + * They are mostly compatible with ADT7461 except for local temperature + * low byte register and max conversion rate. * * Since the LM90 was the first chipset supported by this driver, most * comments will refer to this chipset, but are actually general and @@ -94,8 +103,8 @@ * have address 0x4d. * MAX6647 has address 0x4e. * MAX6659 can have address 0x4c, 0x4d or 0x4e. - * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, - * 0x4c, 0x4d or 0x4e. + * MAX6654, MAX6680, and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, + * 0x2a, 0x2b, 0x4c, 0x4d or 0x4e. * SA56004 can have address 0x48 through 0x4F. */ @@ -104,7 +113,7 @@ 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680, - max6646, w83l771, max6696, sa56004, g781, tmp451 }; + max6646, w83l771, max6696, sa56004, g781, tmp451, tmp461, max6654 }; /* * The LM90 registers @@ -145,7 +154,7 @@ #define LM90_REG_R_TCRIT_HYST 0x21 #define LM90_REG_W_TCRIT_HYST 0x21 -/* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */ +/* MAX6646/6647/6649/6654/6657/6658/6659/6695/6696 registers */ #define MAX6657_REG_R_LOCAL_TEMPL 0x11 #define MAX6696_REG_R_STATUS2 0x12 @@ -160,8 +169,12 @@ #define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */ -/* TMP451 registers */ +/* TMP451/TMP461 registers */ #define TMP451_REG_R_LOCAL_TEMPL 0x15 +#define TMP451_REG_CONALERT 0x22 + +#define TMP461_REG_CHEN 0x16 +#define TMP461_REG_DFC 0x24 /* * Device flags @@ -174,7 +187,10 @@ #define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm */ #define LM90_HAVE_TEMP3 (1 << 6) /* 3rd temperature sensor */ #define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */ -#define LM90_PAUSE_FOR_CONFIG (1 << 8) /* Pause conversion for config */ +#define LM90_HAVE_EXTENDED_TEMP (1 << 8) /* extended temperature support*/ +#define LM90_PAUSE_FOR_CONFIG (1 << 9) /* Pause conversion for config */ +#define LM90_HAVE_CRIT (1 << 10)/* Chip supports CRIT/OVERT register */ +#define LM90_HAVE_CRIT_ALRM_SWP (1 << 11)/* critical alarm bits swapped */ /* LM90 status */ #define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */ @@ -184,6 +200,7 @@ #define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */ #define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */ #define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */ +#define LM90_STATUS_BUSY (1 << 7) /* conversion is ongoing */ #define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */ #define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */ @@ -209,6 +226,7 @@ { "max6646", max6646 }, { "max6647", max6646 }, { "max6649", max6646 }, + { "max6654", max6654 }, { "max6657", max6657 }, { "max6658", max6657 }, { "max6659", max6659 }, @@ -220,6 +238,7 @@ { "w83l771", w83l771 }, { "sa56004", sa56004 }, { "tmp451", tmp451 }, + { "tmp461", tmp461 }, { } }; MODULE_DEVICE_TABLE(i2c, lm90_id); @@ -270,6 +289,10 @@ .data = (void *)max6646 }, { + .compatible = "dallas,max6654", + .data = (void *)max6654 + }, + { .compatible = "dallas,max6657", .data = (void *)max6657 }, @@ -313,6 +336,10 @@ .compatible = "ti,tmp451", .data = (void *)tmp451 }, + { + .compatible = "ti,tmp461", + .data = (void *)tmp461 + }, { }, }; MODULE_DEVICE_TABLE(of, lm90_of_match); @@ -331,80 +358,99 @@ static const struct lm90_params lm90_params[] = { [adm1032] = { .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT - | LM90_HAVE_BROKEN_ALERT, + | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 10, }, [adt7461] = { .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT - | LM90_HAVE_BROKEN_ALERT, + | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP + | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 10, }, [g781] = { .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT - | LM90_HAVE_BROKEN_ALERT, + | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT, .alert_alarms = 0x7c, - .max_convrate = 8, + .max_convrate = 7, }, [lm86] = { - .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT + | LM90_HAVE_CRIT, .alert_alarms = 0x7b, .max_convrate = 9, }, [lm90] = { - .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT + | LM90_HAVE_CRIT, .alert_alarms = 0x7b, .max_convrate = 9, }, [lm99] = { - .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT + | LM90_HAVE_CRIT, .alert_alarms = 0x7b, .max_convrate = 9, }, [max6646] = { + .flags = LM90_HAVE_CRIT | LM90_HAVE_BROKEN_ALERT, .alert_alarms = 0x7c, .max_convrate = 6, .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL, }, + [max6654] = { + .flags = LM90_HAVE_BROKEN_ALERT, + .alert_alarms = 0x7c, + .max_convrate = 7, + .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL, + }, [max6657] = { - .flags = LM90_PAUSE_FOR_CONFIG, + .flags = LM90_PAUSE_FOR_CONFIG | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 8, .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL, }, [max6659] = { - .flags = LM90_HAVE_EMERGENCY, + .flags = LM90_HAVE_EMERGENCY | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 8, .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL, }, [max6680] = { - .flags = LM90_HAVE_OFFSET, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_CRIT + | LM90_HAVE_CRIT_ALRM_SWP | LM90_HAVE_BROKEN_ALERT, .alert_alarms = 0x7c, .max_convrate = 7, }, [max6696] = { .flags = LM90_HAVE_EMERGENCY - | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3, + | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3 | LM90_HAVE_CRIT, .alert_alarms = 0x1c7c, .max_convrate = 6, .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL, }, [w83l771] = { - .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 8, }, [sa56004] = { - .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT, + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT | LM90_HAVE_CRIT, .alert_alarms = 0x7b, .max_convrate = 9, .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL, }, [tmp451] = { .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT - | LM90_HAVE_BROKEN_ALERT, + | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP | LM90_HAVE_CRIT, + .alert_alarms = 0x7c, + .max_convrate = 9, + .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL, + }, + [tmp461] = { + .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT + | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP | LM90_HAVE_CRIT, .alert_alarms = 0x7c, .max_convrate = 9, .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL, @@ -632,20 +678,22 @@ struct i2c_client *client = data->client; int val; - val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT); - if (val < 0) - return val; - data->temp8[LOCAL_CRIT] = val; + if (data->flags & LM90_HAVE_CRIT) { + val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT); + if (val < 0) + return val; + data->temp8[LOCAL_CRIT] = val; - val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT); - if (val < 0) - return val; - data->temp8[REMOTE_CRIT] = val; + val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT); + if (val < 0) + return val; + data->temp8[REMOTE_CRIT] = val; - val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST); - if (val < 0) - return val; - data->temp_hyst = val; + val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST); + if (val < 0) + return val; + data->temp_hyst = val; + } val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH); if (val < 0) @@ -773,7 +821,7 @@ val = lm90_read_reg(client, LM90_REG_R_STATUS); if (val < 0) return val; - data->alarms = val; /* lower 8 bit of alarms */ + data->alarms = val & ~LM90_STATUS_BUSY; if (data->kind == max6696) { val = lm90_select_remote_channel(data, 1); @@ -979,7 +1027,7 @@ s16 temp11 = data->temp11[index]; int temp; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) temp = temp_from_u16_adt7461(data, temp11); else if (data->kind == max6646) temp = temp_from_u16(temp11); @@ -1013,7 +1061,7 @@ if (data->kind == lm99 && index <= 2) val -= 16000; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) data->temp11[index] = temp_to_u16_adt7461(data, val); else if (data->kind == max6646) data->temp11[index] = temp_to_u8(val) << 8; @@ -1040,7 +1088,7 @@ s8 temp8 = data->temp8[index]; int temp; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) temp = temp_from_u8_adt7461(data, temp8); else if (data->kind == max6646) temp = temp_from_u8(temp8); @@ -1073,7 +1121,7 @@ if (data->kind == lm99 && index == 3) val -= 16000; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) data->temp8[index] = temp_to_u8_adt7461(data, val); else if (data->kind == max6646) data->temp8[index] = temp_to_u8(val); @@ -1091,7 +1139,7 @@ { int temp; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) temp = temp_from_u8_adt7461(data, data->temp8[index]); else if (data->kind == max6646) temp = temp_from_u8(data->temp8[index]); @@ -1111,7 +1159,7 @@ int temp; int err; - if (data->kind == adt7461 || data->kind == tmp451) + if (data->flags & LM90_HAVE_EXTENDED_TEMP) temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]); else if (data->kind == max6646) temp = temp_from_u8(data->temp8[LOCAL_CRIT]); @@ -1147,6 +1195,7 @@ static const u8 lm90_min_alarm_bits[3] = { 5, 3, 11 }; static const u8 lm90_max_alarm_bits[3] = { 6, 4, 12 }; static const u8 lm90_crit_alarm_bits[3] = { 0, 1, 9 }; +static const u8 lm90_crit_alarm_bits_swapped[3] = { 1, 0, 9 }; static const u8 lm90_emergency_alarm_bits[3] = { 15, 13, 14 }; static const u8 lm90_fault_bits[3] = { 0, 2, 10 }; @@ -1172,7 +1221,10 @@ *val = (data->alarms >> lm90_max_alarm_bits[channel]) & 1; break; case hwmon_temp_crit_alarm: - *val = (data->alarms >> lm90_crit_alarm_bits[channel]) & 1; + if (data->flags & LM90_HAVE_CRIT_ALRM_SWP) + *val = (data->alarms >> lm90_crit_alarm_bits_swapped[channel]) & 1; + else + *val = (data->alarms >> lm90_crit_alarm_bits[channel]) & 1; break; case hwmon_temp_emergency_alarm: *val = (data->alarms >> lm90_emergency_alarm_bits[channel]) & 1; @@ -1420,12 +1472,11 @@ if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0) return -ENODEV; - if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) { + if (man_id == 0x01 || man_id == 0x5C || man_id == 0xA1) { config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2); if (config2 < 0) return -ENODEV; - } else - config2 = 0; /* Make compiler happy */ + } if ((address == 0x4C || address == 0x4D) && man_id == 0x01) { /* National Semiconductor */ @@ -1557,6 +1608,16 @@ && (config1 & 0x3f) == 0x00 && convrate <= 0x07) { name = "max6646"; + } else + /* + * The chip_id of the MAX6654 holds the revision of the chip. + * The lowest 3 bits of the config1 register are unused and + * should return zero when read. + */ + if (chip_id == 0x08 + && (config1 & 0x07) == 0x00 + && convrate <= 0x07) { + name = "max6654"; } } else if (address == 0x4C @@ -1589,18 +1650,26 @@ && convrate <= 0x08) name = "g781"; } else - if (address == 0x4C - && man_id == 0x55) { /* Texas Instruments */ - int local_ext; + if (man_id == 0x55 && chip_id == 0x00 && + (config1 & 0x1B) == 0x00 && convrate <= 0x09) { + int local_ext, conalert, chen, dfc; local_ext = i2c_smbus_read_byte_data(client, TMP451_REG_R_LOCAL_TEMPL); - - if (chip_id == 0x00 /* TMP451 */ - && (config1 & 0x1B) == 0x00 - && convrate <= 0x09 - && (local_ext & 0x0F) == 0x00) - name = "tmp451"; + conalert = i2c_smbus_read_byte_data(client, + TMP451_REG_CONALERT); + chen = i2c_smbus_read_byte_data(client, TMP461_REG_CHEN); + dfc = i2c_smbus_read_byte_data(client, TMP461_REG_DFC); + + if ((local_ext & 0x0F) == 0x00 && + (conalert & 0xf1) == 0x01 && + (chen & 0xfc) == 0x00 && + (dfc & 0xfc) == 0x00) { + if (address == 0x4c && !(chen & 0x03)) + name = "tmp451"; + else if (address >= 0x48 && address <= 0x4f) + name = "tmp461"; + } } if (!name) { /* identification failed */ @@ -1647,7 +1716,7 @@ lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */ /* Check Temperature Range Select */ - if (data->kind == adt7461 || data->kind == tmp451) { + if (data->flags & LM90_HAVE_EXTENDED_TEMP) { if (config & 0x04) data->flags |= LM90_FLAG_ADT7461_EXT; } @@ -1661,6 +1730,15 @@ config |= 0x18; /* + * Put MAX6654 into extended range (0x20, extend minimum range from + * 0 degrees to -64 degrees). Note that extended resolution is not + * possible on the MAX6654 unless conversion rate is set to 1 Hz or + * slower, which is intentionally not done by default. + */ + if (data->kind == max6654) + config |= 0x20; + + /* * Select external channel 0 for max6695/96 */ if (data->kind == max6696) @@ -1806,11 +1884,14 @@ info->config = data->channel_config; data->channel_config[0] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX | - HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM | - HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM; + HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM; data->channel_config[1] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX | - HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM | - HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM | HWMON_T_FAULT; + HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM | HWMON_T_FAULT; + + if (data->flags & LM90_HAVE_CRIT) { + data->channel_config[0] |= HWMON_T_CRIT | HWMON_T_CRIT_ALARM | HWMON_T_CRIT_HYST; + data->channel_config[1] |= HWMON_T_CRIT | HWMON_T_CRIT_ALARM | HWMON_T_CRIT_HYST; + } if (data->flags & LM90_HAVE_OFFSET) data->channel_config[1] |= HWMON_T_OFFSET; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/max31722.c +++ linux-azure-5.4.0/drivers/hwmon/max31722.c @@ -6,7 +6,6 @@ * Copyright (c) 2016, Intel Corporation. */ -#include #include #include #include @@ -133,20 +132,12 @@ {"max31723", 0}, {} }; - -static const struct acpi_device_id __maybe_unused max31722_acpi_id[] = { - {"MAX31722", 0}, - {"MAX31723", 0}, - {} -}; - MODULE_DEVICE_TABLE(spi, max31722_spi_id); static struct spi_driver max31722_driver = { .driver = { .name = "max31722", .pm = &max31722_pm_ops, - .acpi_match_table = ACPI_PTR(max31722_acpi_id), }, .probe = max31722_probe, .remove = max31722_remove, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/max31790.c +++ linux-azure-5.4.0/drivers/hwmon/max31790.c @@ -27,6 +27,7 @@ /* Fan Config register bits */ #define MAX31790_FAN_CFG_RPM_MODE 0x80 +#define MAX31790_FAN_CFG_CTRL_MON 0x10 #define MAX31790_FAN_CFG_TACH_INPUT_EN 0x08 #define MAX31790_FAN_CFG_TACH_INPUT 0x01 @@ -104,7 +105,7 @@ data->tach[NR_CHANNEL + i] = rv; } else { rv = i2c_smbus_read_word_swapped(client, - MAX31790_REG_PWMOUT(i)); + MAX31790_REG_PWM_DUTY_CYCLE(i)); if (rv < 0) goto abort; data->pwm[i] = rv; @@ -170,7 +171,7 @@ switch (attr) { case hwmon_fan_input: - sr = get_tach_period(data->fan_dynamics[channel]); + sr = get_tach_period(data->fan_dynamics[channel % NR_CHANNEL]); rpm = RPM_FROM_REG(data->tach[channel], sr); *val = rpm; return 0; @@ -271,12 +272,12 @@ *val = data->pwm[channel] >> 8; return 0; case hwmon_pwm_enable: - if (fan_config & MAX31790_FAN_CFG_RPM_MODE) + if (fan_config & MAX31790_FAN_CFG_CTRL_MON) + *val = 0; + else if (fan_config & MAX31790_FAN_CFG_RPM_MODE) *val = 2; - else if (fan_config & MAX31790_FAN_CFG_TACH_INPUT_EN) - *val = 1; else - *val = 0; + *val = 1; return 0; default: return -EOPNOTSUPP; @@ -299,31 +300,41 @@ err = -EINVAL; break; } - data->pwm[channel] = val << 8; + data->valid = false; err = i2c_smbus_write_word_swapped(client, MAX31790_REG_PWMOUT(channel), - data->pwm[channel]); + val << 8); break; case hwmon_pwm_enable: fan_config = data->fan_config[channel]; if (val == 0) { - fan_config &= ~(MAX31790_FAN_CFG_TACH_INPUT_EN | - MAX31790_FAN_CFG_RPM_MODE); + fan_config |= MAX31790_FAN_CFG_CTRL_MON; + /* + * Disable RPM mode; otherwise disabling fan speed + * monitoring is not possible. + */ + fan_config &= ~MAX31790_FAN_CFG_RPM_MODE; } else if (val == 1) { - fan_config = (fan_config | - MAX31790_FAN_CFG_TACH_INPUT_EN) & - ~MAX31790_FAN_CFG_RPM_MODE; + fan_config &= ~(MAX31790_FAN_CFG_CTRL_MON | MAX31790_FAN_CFG_RPM_MODE); } else if (val == 2) { - fan_config |= MAX31790_FAN_CFG_TACH_INPUT_EN | - MAX31790_FAN_CFG_RPM_MODE; + fan_config &= ~MAX31790_FAN_CFG_CTRL_MON; + /* + * The chip sets MAX31790_FAN_CFG_TACH_INPUT_EN on its + * own if MAX31790_FAN_CFG_RPM_MODE is set. + * Do it here as well to reflect the actual register + * value in the cache. + */ + fan_config |= (MAX31790_FAN_CFG_RPM_MODE | MAX31790_FAN_CFG_TACH_INPUT_EN); } else { err = -EINVAL; break; } - data->fan_config[channel] = fan_config; - err = i2c_smbus_write_byte_data(client, - MAX31790_REG_FAN_CONFIG(channel), - fan_config); + if (fan_config != data->fan_config[channel]) { + err = i2c_smbus_write_byte_data(client, MAX31790_REG_FAN_CONFIG(channel), + fan_config); + if (!err) + data->fan_config[channel] = fan_config; + } break; default: err = -EOPNOTSUPP; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/mlxreg-fan.c +++ linux-azure-5.4.0/drivers/hwmon/mlxreg-fan.c @@ -291,8 +291,8 @@ { struct mlxreg_fan *fan = cdev->devdata; unsigned long cur_state; + int i, config = 0; u32 regval; - int i; int err; /* @@ -305,6 +305,12 @@ * overwritten. */ if (state >= MLXREG_FAN_SPEED_MIN && state <= MLXREG_FAN_SPEED_MAX) { + /* + * This is configuration change, which is only supported through sysfs. + * For configuration non-zero value is to be returned to avoid thermal + * statistics update. + */ + config = 1; state -= MLXREG_FAN_MAX_STATE; for (i = 0; i < state; i++) fan->cooling_levels[i] = state; @@ -319,7 +325,7 @@ cur_state = MLXREG_FAN_PWM_DUTY2STATE(regval); if (state < cur_state) - return 0; + return config; state = cur_state; } @@ -335,7 +341,7 @@ dev_err(fan->dev, "Failed to write PWM duty\n"); return err; } - return 0; + return config; } static const struct thermal_cooling_device_ops mlxreg_fan_cooling_ops = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/pmbus/lm25066.c +++ linux-azure-5.4.0/drivers/hwmon/pmbus/lm25066.c @@ -51,26 +51,31 @@ #define PSC_CURRENT_IN_L (PSC_NUM_CLASSES) #define PSC_POWER_L (PSC_NUM_CLASSES + 1) -static struct __coeff lm25066_coeff[6][PSC_NUM_CLASSES + 2] = { +static struct __coeff lm25066_coeff[][PSC_NUM_CLASSES + 2] = { [lm25056] = { [PSC_VOLTAGE_IN] = { .m = 16296, + .b = 1343, .R = -2, }, [PSC_CURRENT_IN] = { .m = 13797, + .b = -1833, .R = -2, }, [PSC_CURRENT_IN_L] = { .m = 6726, + .b = -537, .R = -2, }, [PSC_POWER] = { .m = 5501, + .b = -2908, .R = -3, }, [PSC_POWER_L] = { .m = 26882, + .b = -5646, .R = -4, }, [PSC_TEMPERATURE] = { @@ -82,26 +87,32 @@ [lm25066] = { [PSC_VOLTAGE_IN] = { .m = 22070, + .b = -1800, .R = -2, }, [PSC_VOLTAGE_OUT] = { .m = 22070, + .b = -1800, .R = -2, }, [PSC_CURRENT_IN] = { .m = 13661, + .b = -5200, .R = -2, }, [PSC_CURRENT_IN_L] = { .m = 6852, + .b = -3100, .R = -2, }, [PSC_POWER] = { .m = 736, + .b = -3300, .R = -2, }, [PSC_POWER_L] = { .m = 369, + .b = -1900, .R = -2, }, [PSC_TEMPERATURE] = { @@ -111,26 +122,32 @@ [lm5064] = { [PSC_VOLTAGE_IN] = { .m = 4611, + .b = -642, .R = -2, }, [PSC_VOLTAGE_OUT] = { .m = 4621, + .b = 423, .R = -2, }, [PSC_CURRENT_IN] = { .m = 10742, + .b = 1552, .R = -2, }, [PSC_CURRENT_IN_L] = { .m = 5456, + .b = 2118, .R = -2, }, [PSC_POWER] = { .m = 1204, + .b = 8524, .R = -3, }, [PSC_POWER_L] = { .m = 612, + .b = 11202, .R = -3, }, [PSC_TEMPERATURE] = { @@ -140,26 +157,32 @@ [lm5066] = { [PSC_VOLTAGE_IN] = { .m = 4587, + .b = -1200, .R = -2, }, [PSC_VOLTAGE_OUT] = { .m = 4587, + .b = -2400, .R = -2, }, [PSC_CURRENT_IN] = { .m = 10753, + .b = -1200, .R = -2, }, [PSC_CURRENT_IN_L] = { .m = 5405, + .b = -600, .R = -2, }, [PSC_POWER] = { .m = 1204, + .b = -6000, .R = -3, }, [PSC_POWER_L] = { .m = 605, + .b = -8000, .R = -3, }, [PSC_TEMPERATURE] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/pmbus/pmbus.h +++ linux-azure-5.4.0/drivers/hwmon/pmbus/pmbus.h @@ -292,6 +292,7 @@ /* * STATUS_VOUT, STATUS_INPUT */ +#define PB_VOLTAGE_VIN_OFF BIT(3) #define PB_VOLTAGE_UV_FAULT BIT(4) #define PB_VOLTAGE_UV_WARNING BIT(5) #define PB_VOLTAGE_OV_WARNING BIT(6) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/pmbus/pmbus_core.c +++ linux-azure-5.4.0/drivers/hwmon/pmbus/pmbus_core.c @@ -1324,7 +1324,7 @@ .reg = PMBUS_VIN_UV_FAULT_LIMIT, .attr = "lcrit", .alarm = "lcrit_alarm", - .sbit = PB_VOLTAGE_UV_FAULT, + .sbit = PB_VOLTAGE_UV_FAULT | PB_VOLTAGE_VIN_OFF, }, { .reg = PMBUS_VIN_OV_WARN_LIMIT, .attr = "max", @@ -2174,10 +2174,14 @@ { struct device *dev = rdev_get_dev(rdev); struct i2c_client *client = to_i2c_client(dev->parent); + struct pmbus_data *data = i2c_get_clientdata(client); u8 page = rdev_get_id(rdev); int ret; + mutex_lock(&data->update_lock); ret = pmbus_read_byte_data(client, page, PMBUS_OPERATION); + mutex_unlock(&data->update_lock); + if (ret < 0) return ret; @@ -2188,11 +2192,17 @@ { struct device *dev = rdev_get_dev(rdev); struct i2c_client *client = to_i2c_client(dev->parent); + struct pmbus_data *data = i2c_get_clientdata(client); u8 page = rdev_get_id(rdev); + int ret; - return pmbus_update_byte_data(client, page, PMBUS_OPERATION, - PB_OPERATION_CONTROL_ON, - enable ? PB_OPERATION_CONTROL_ON : 0); + mutex_lock(&data->update_lock); + ret = pmbus_update_byte_data(client, page, PMBUS_OPERATION, + PB_OPERATION_CONTROL_ON, + enable ? PB_OPERATION_CONTROL_ON : 0); + mutex_unlock(&data->update_lock); + + return ret; } static int pmbus_regulator_enable(struct regulator_dev *rdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/sch56xx-common.c +++ linux-azure-5.4.0/drivers/hwmon/sch56xx-common.c @@ -424,7 +424,7 @@ if (nowayout) set_bit(WDOG_NO_WAY_OUT, &data->wddev.status); if (output_enable & SCH56XX_WDOG_OUTPUT_ENABLE) - set_bit(WDOG_ACTIVE, &data->wddev.status); + set_bit(WDOG_HW_RUNNING, &data->wddev.status); /* Since the watchdog uses a downcounter there is no register to read the BIOS set timeout from (if any was set at all) -> only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/scpi-hwmon.c +++ linux-azure-5.4.0/drivers/hwmon/scpi-hwmon.c @@ -99,6 +99,15 @@ scpi_scale_reading(&value, sensor); + /* + * Temperature sensor values are treated as signed values based on + * observation even though that is not explicitly specified, and + * because an unsigned u64 temperature does not really make practical + * sense especially when the temperature is below zero degrees Celsius. + */ + if (sensor->info.class == TEMPERATURE) + return sprintf(buf, "%lld\n", (s64)value); + return sprintf(buf, "%llu\n", value); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/tmp401.c +++ linux-azure-5.4.0/drivers/hwmon/tmp401.c @@ -731,10 +731,21 @@ return 0; } +static const struct of_device_id __maybe_unused tmp4xx_of_match[] = { + { .compatible = "ti,tmp401", }, + { .compatible = "ti,tmp411", }, + { .compatible = "ti,tmp431", }, + { .compatible = "ti,tmp432", }, + { .compatible = "ti,tmp435", }, + { }, +}; +MODULE_DEVICE_TABLE(of, tmp4xx_of_match); + static struct i2c_driver tmp401_driver = { .class = I2C_CLASS_HWMON, .driver = { .name = "tmp401", + .of_match_table = of_match_ptr(tmp4xx_of_match), }, .probe = tmp401_probe, .id_table = tmp401_id, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/tmp421.c +++ linux-azure-5.4.0/drivers/hwmon/tmp421.c @@ -100,23 +100,17 @@ s16 temp[4]; }; -static int temp_from_s16(s16 reg) +static int temp_from_raw(u16 reg, bool extended) { /* Mask out status bits */ int temp = reg & ~0xf; - return (temp * 1000 + 128) / 256; -} + if (extended) + temp = temp - 64 * 256; + else + temp = (s16)temp; -static int temp_from_u16(u16 reg) -{ - /* Mask out status bits */ - int temp = reg & ~0xf; - - /* Add offset for extended temperature range. */ - temp -= 64 * 256; - - return (temp * 1000 + 128) / 256; + return DIV_ROUND_CLOSEST(temp * 1000, 256); } static struct tmp421_data *tmp421_update_device(struct device *dev) @@ -153,17 +147,15 @@ switch (attr) { case hwmon_temp_input: - if (tmp421->config & TMP421_CONFIG_RANGE) - *val = temp_from_u16(tmp421->temp[channel]); - else - *val = temp_from_s16(tmp421->temp[channel]); + *val = temp_from_raw(tmp421->temp[channel], + tmp421->config & TMP421_CONFIG_RANGE); return 0; case hwmon_temp_fault: /* - * The OPEN bit signals a fault. This is bit 0 of the temperature - * register (low byte). + * Any of OPEN or /PVLD bits indicate a hardware mulfunction + * and the conversion result may be incorrect */ - *val = tmp421->temp[channel] & 0x01; + *val = !!(tmp421->temp[channel] & 0x03); return 0; default: return -EOPNOTSUPP; @@ -176,9 +168,6 @@ { switch (attr) { case hwmon_temp_fault: - if (channel == 0) - return 0; - return 0444; case hwmon_temp_input: return 0444; default: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/w83791d.c +++ linux-azure-5.4.0/drivers/hwmon/w83791d.c @@ -273,9 +273,6 @@ char valid; /* !=0 if following fields are valid */ unsigned long last_updated; /* In jiffies */ - /* array of 2 pointers to subclients */ - struct i2c_client *lm75[2]; - /* volts */ u8 in[NUMBER_OF_VIN]; /* Register value */ u8 in_max[NUMBER_OF_VIN]; /* Register value */ @@ -1258,7 +1255,6 @@ static int w83791d_detect_subclients(struct i2c_client *client) { struct i2c_adapter *adapter = client->adapter; - struct w83791d_data *data = i2c_get_clientdata(client); int address = client->addr; int i, id; u8 val; @@ -1281,22 +1277,19 @@ } val = w83791d_read(client, W83791D_REG_I2C_SUBADDR); - if (!(val & 0x08)) - data->lm75[0] = devm_i2c_new_dummy_device(&client->dev, adapter, - 0x48 + (val & 0x7)); - if (!(val & 0x80)) { - if (!IS_ERR(data->lm75[0]) && - ((val & 0x7) == ((val >> 4) & 0x7))) { - dev_err(&client->dev, - "duplicate addresses 0x%x, " - "use force_subclient\n", - data->lm75[0]->addr); - return -ENODEV; - } - data->lm75[1] = devm_i2c_new_dummy_device(&client->dev, adapter, - 0x48 + ((val >> 4) & 0x7)); + + if (!(val & 0x88) && (val & 0x7) == ((val >> 4) & 0x7)) { + dev_err(&client->dev, + "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (val & 0x7)); + return -ENODEV; } + if (!(val & 0x08)) + devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + (val & 0x7)); + + if (!(val & 0x80)) + devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + ((val >> 4) & 0x7)); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/w83792d.c +++ linux-azure-5.4.0/drivers/hwmon/w83792d.c @@ -264,9 +264,6 @@ char valid; /* !=0 if following fields are valid */ unsigned long last_updated; /* In jiffies */ - /* array of 2 pointers to subclients */ - struct i2c_client *lm75[2]; - u8 in[9]; /* Register value */ u8 in_max[9]; /* Register value */ u8 in_min[9]; /* Register value */ @@ -928,7 +925,6 @@ int address = new_client->addr; u8 val; struct i2c_adapter *adapter = new_client->adapter; - struct w83792d_data *data = i2c_get_clientdata(new_client); id = i2c_adapter_id(adapter); if (force_subclients[0] == id && force_subclients[1] == address) { @@ -947,21 +943,19 @@ } val = w83792d_read_value(new_client, W83792D_REG_I2C_SUBADDR); - if (!(val & 0x08)) - data->lm75[0] = devm_i2c_new_dummy_device(&new_client->dev, adapter, - 0x48 + (val & 0x7)); - if (!(val & 0x80)) { - if (!IS_ERR(data->lm75[0]) && - ((val & 0x7) == ((val >> 4) & 0x7))) { - dev_err(&new_client->dev, - "duplicate addresses 0x%x, use force_subclient\n", - data->lm75[0]->addr); - return -ENODEV; - } - data->lm75[1] = devm_i2c_new_dummy_device(&new_client->dev, adapter, - 0x48 + ((val >> 4) & 0x7)); + + if (!(val & 0x88) && (val & 0x7) == ((val >> 4) & 0x7)) { + dev_err(&new_client->dev, + "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (val & 0x7)); + return -ENODEV; } + if (!(val & 0x08)) + devm_i2c_new_dummy_device(&new_client->dev, adapter, 0x48 + (val & 0x7)); + + if (!(val & 0x80)) + devm_i2c_new_dummy_device(&new_client->dev, adapter, 0x48 + ((val >> 4) & 0x7)); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwmon/w83793.c +++ linux-azure-5.4.0/drivers/hwmon/w83793.c @@ -202,7 +202,6 @@ } struct w83793_data { - struct i2c_client *lm75[2]; struct device *hwmon_dev; struct mutex update_lock; char valid; /* !=0 if following fields are valid */ @@ -1566,7 +1565,6 @@ int address = client->addr; u8 tmp; struct i2c_adapter *adapter = client->adapter; - struct w83793_data *data = i2c_get_clientdata(client); id = i2c_adapter_id(adapter); if (force_subclients[0] == id && force_subclients[1] == address) { @@ -1586,21 +1584,19 @@ } tmp = w83793_read_value(client, W83793_REG_I2C_SUBADDR); - if (!(tmp & 0x08)) - data->lm75[0] = devm_i2c_new_dummy_device(&client->dev, adapter, - 0x48 + (tmp & 0x7)); - if (!(tmp & 0x80)) { - if (!IS_ERR(data->lm75[0]) - && ((tmp & 0x7) == ((tmp >> 4) & 0x7))) { - dev_err(&client->dev, - "duplicate addresses 0x%x, " - "use force_subclients\n", data->lm75[0]->addr); - return -ENODEV; - } - data->lm75[1] = devm_i2c_new_dummy_device(&client->dev, adapter, - 0x48 + ((tmp >> 4) & 0x7)); + + if (!(tmp & 0x88) && (tmp & 0x7) == ((tmp >> 4) & 0x7)) { + dev_err(&client->dev, + "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (tmp & 0x7)); + return -ENODEV; } + if (!(tmp & 0x08)) + devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + (tmp & 0x7)); + + if (!(tmp & 0x80)) + devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + ((tmp >> 4) & 0x7)); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwtracing/coresight/coresight-cpu-debug.c +++ linux-azure-5.4.0/drivers/hwtracing/coresight/coresight-cpu-debug.c @@ -379,9 +379,10 @@ int cpu; struct debug_drvdata *drvdata; - mutex_lock(&debug_lock); + /* Bail out if we can't acquire the mutex or the functionality is off */ + if (!mutex_trylock(&debug_lock)) + return NOTIFY_DONE; - /* Bail out if the functionality is disabled */ if (!debug_enable) goto skip_dump; @@ -400,7 +401,7 @@ skip_dump: mutex_unlock(&debug_lock); - return 0; + return NOTIFY_DONE; } static struct notifier_block debug_notifier = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/hwtracing/intel_th/msu-sink.c +++ linux-azure-5.4.0/drivers/hwtracing/intel_th/msu-sink.c @@ -71,6 +71,9 @@ block = dma_alloc_coherent(priv->dev->parent->parent, PAGE_SIZE, &sg_dma_address(sg_ptr), GFP_KERNEL); + if (!block) + return -ENOMEM; + sg_set_buf(sg_ptr, block, PAGE_SIZE); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-at91-master.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-at91-master.c @@ -609,6 +609,7 @@ unsigned int_addr_flag = 0; struct i2c_msg *m_start = msg; bool is_read; + u8 *dma_buf = NULL; dev_dbg(&adap->dev, "at91_xfer: processing %d messages:\n", num); @@ -656,7 +657,17 @@ dev->msg = m_start; dev->recv_len_abort = false; + if (dev->use_dma) { + dma_buf = i2c_get_dma_safe_msg_buf(m_start, 1); + if (!dma_buf) { + ret = -ENOMEM; + goto out; + } + dev->buf = dma_buf; + } + ret = at91_do_twi_transfer(dev); + i2c_put_dma_safe_msg_buf(dma_buf, m_start, !ret); ret = (ret < 0) ? ret : num; out: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-cbus-gpio.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-cbus-gpio.c @@ -195,8 +195,9 @@ } static const struct i2c_algorithm cbus_i2c_algo = { - .smbus_xfer = cbus_i2c_smbus_xfer, - .functionality = cbus_i2c_func, + .smbus_xfer = cbus_i2c_smbus_xfer, + .smbus_xfer_atomic = cbus_i2c_smbus_xfer, + .functionality = cbus_i2c_func, }; static int cbus_i2c_remove(struct platform_device *pdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-designware-common.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-designware-common.c @@ -253,9 +253,6 @@ { int ret; - if (IS_ERR(dev->clk)) - return PTR_ERR(dev->clk); - if (prepare) { /* Optional interface clock */ ret = clk_prepare_enable(dev->pclk); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-highlander.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-highlander.c @@ -379,7 +379,7 @@ platform_set_drvdata(pdev, dev); dev->irq = platform_get_irq(pdev, 0); - if (iic_force_poll) + if (dev->irq < 0 || iic_force_poll) dev->irq = 0; if (dev->irq) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-ismt.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-ismt.c @@ -81,6 +81,7 @@ #define ISMT_DESC_ENTRIES 2 /* number of descriptor entries */ #define ISMT_MAX_RETRIES 3 /* number of SMBus retries to attempt */ +#define ISMT_LOG_ENTRIES 3 /* number of interrupt cause log entries */ /* Hardware Descriptor Constants - Control Field */ #define ISMT_DESC_CWRL 0x01 /* Command/Write Length */ @@ -174,6 +175,8 @@ u8 head; /* ring buffer head pointer */ struct completion cmp; /* interrupt completion */ u8 buffer[I2C_SMBUS_BLOCK_MAX + 16]; /* temp R/W data buffer */ + dma_addr_t log_dma; + u32 *log; }; /** @@ -408,6 +411,9 @@ memset(desc, 0, sizeof(struct ismt_desc)); desc->tgtaddr_rw = ISMT_DESC_ADDR_RW(addr, read_write); + /* Always clear the log entries */ + memset(priv->log, 0, ISMT_LOG_ENTRIES * sizeof(u32)); + /* Initialize common control bits */ if (likely(pci_dev_msi_enabled(priv->pci_dev))) desc->control = ISMT_DESC_INT | ISMT_DESC_FAIR; @@ -697,6 +703,8 @@ /* initialize the Master Descriptor Base Address (MDBA) */ writeq(priv->io_rng_dma, priv->smba + ISMT_MSTR_MDBA); + writeq(priv->log_dma, priv->smba + ISMT_GR_SMTICL); + /* initialize the Master Control Register (MCTRL) */ writel(ISMT_MCTRL_MEIE, priv->smba + ISMT_MSTR_MCTRL); @@ -784,6 +792,12 @@ priv->head = 0; init_completion(&priv->cmp); + priv->log = dmam_alloc_coherent(&priv->pci_dev->dev, + ISMT_LOG_ENTRIES * sizeof(u32), + &priv->log_dma, GFP_KERNEL); + if (!priv->log) + return -ENOMEM; + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-mpc.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-mpc.c @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -49,6 +50,7 @@ #define CCR_MTX 0x10 #define CCR_TXAK 0x08 #define CCR_RSTA 0x04 +#define CCR_RSVD 0x02 #define CSR_MCF 0x80 #define CSR_MAAS 0x40 @@ -70,6 +72,7 @@ u8 fdr, dfsrr; #endif struct clk *clk_per; + bool has_errata_A004447; }; struct mpc_i2c_divider { @@ -102,23 +105,30 @@ /* Sometimes 9th clock pulse isn't generated, and slave doesn't release * the bus, because it wants to send ACK. * Following sequence of enabling/disabling and sending start/stop generates - * the 9 pulses, so it's all OK. + * the 9 pulses, each with a START then ending with STOP, so it's all OK. */ static void mpc_i2c_fixup(struct mpc_i2c *i2c) { int k; - u32 delay_val = 1000000 / i2c->real_clk + 1; - - if (delay_val < 2) - delay_val = 2; + unsigned long flags; for (k = 9; k; k--) { writeccr(i2c, 0); - writeccr(i2c, CCR_MSTA | CCR_MTX | CCR_MEN); + writeb(0, i2c->base + MPC_I2C_SR); /* clear any status bits */ + writeccr(i2c, CCR_MEN | CCR_MSTA); /* START */ + readb(i2c->base + MPC_I2C_DR); /* init xfer */ + udelay(15); /* let it hit the bus */ + local_irq_save(flags); /* should not be delayed further */ + writeccr(i2c, CCR_MEN | CCR_MSTA | CCR_RSTA); /* delay SDA */ readb(i2c->base + MPC_I2C_DR); - writeccr(i2c, CCR_MEN); - udelay(delay_val << 1); - } + if (k != 1) + udelay(5); + local_irq_restore(flags); + } + writeccr(i2c, CCR_MEN); /* Initiate STOP */ + readb(i2c->base + MPC_I2C_DR); + udelay(15); /* Let STOP propagate */ + writeccr(i2c, 0); } static int i2c_wait(struct mpc_i2c *i2c, unsigned timeout, int writing) @@ -176,6 +186,75 @@ return 0; } +static int i2c_mpc_wait_sr(struct mpc_i2c *i2c, int mask) +{ + void __iomem *addr = i2c->base + MPC_I2C_SR; + u8 val; + + return readb_poll_timeout(addr, val, val & mask, 0, 100); +} + +/* + * Workaround for Erratum A004447. From the P2040CE Rev Q + * + * 1. Set up the frequency divider and sampling rate. + * 2. I2CCR - a0h + * 3. Poll for I2CSR[MBB] to get set. + * 4. If I2CSR[MAL] is set (an indication that SDA is stuck low), then go to + * step 5. If MAL is not set, then go to step 13. + * 5. I2CCR - 00h + * 6. I2CCR - 22h + * 7. I2CCR - a2h + * 8. Poll for I2CSR[MBB] to get set. + * 9. Issue read to I2CDR. + * 10. Poll for I2CSR[MIF] to be set. + * 11. I2CCR - 82h + * 12. Workaround complete. Skip the next steps. + * 13. Issue read to I2CDR. + * 14. Poll for I2CSR[MIF] to be set. + * 15. I2CCR - 80h + */ +static void mpc_i2c_fixup_A004447(struct mpc_i2c *i2c) +{ + int ret; + u32 val; + + writeccr(i2c, CCR_MEN | CCR_MSTA); + ret = i2c_mpc_wait_sr(i2c, CSR_MBB); + if (ret) { + dev_err(i2c->dev, "timeout waiting for CSR_MBB\n"); + return; + } + + val = readb(i2c->base + MPC_I2C_SR); + + if (val & CSR_MAL) { + writeccr(i2c, 0x00); + writeccr(i2c, CCR_MSTA | CCR_RSVD); + writeccr(i2c, CCR_MEN | CCR_MSTA | CCR_RSVD); + ret = i2c_mpc_wait_sr(i2c, CSR_MBB); + if (ret) { + dev_err(i2c->dev, "timeout waiting for CSR_MBB\n"); + return; + } + val = readb(i2c->base + MPC_I2C_DR); + ret = i2c_mpc_wait_sr(i2c, CSR_MIF); + if (ret) { + dev_err(i2c->dev, "timeout waiting for CSR_MIF\n"); + return; + } + writeccr(i2c, CCR_MEN | CCR_RSVD); + } else { + val = readb(i2c->base + MPC_I2C_DR); + ret = i2c_mpc_wait_sr(i2c, CSR_MIF); + if (ret) { + dev_err(i2c->dev, "timeout waiting for CSR_MIF\n"); + return; + } + writeccr(i2c, CCR_MEN); + } +} + #if defined(CONFIG_PPC_MPC52xx) || defined(CONFIG_PPC_MPC512x) static const struct mpc_i2c_divider mpc_i2c_dividers_52xx[] = { {20, 0x20}, {22, 0x21}, {24, 0x22}, {26, 0x23}, @@ -586,7 +665,7 @@ if ((status & (CSR_MCF | CSR_MBB | CSR_RXAK)) != 0) { writeb(status & ~CSR_MAL, i2c->base + MPC_I2C_SR); - mpc_i2c_fixup(i2c); + i2c_recover_bus(&i2c->adap); } return -EIO; } @@ -622,7 +701,7 @@ if ((status & (CSR_MCF | CSR_MBB | CSR_RXAK)) != 0) { writeb(status & ~CSR_MAL, i2c->base + MPC_I2C_SR); - mpc_i2c_fixup(i2c); + i2c_recover_bus(&i2c->adap); } return -EIO; } @@ -637,6 +716,18 @@ | I2C_FUNC_SMBUS_READ_BLOCK_DATA | I2C_FUNC_SMBUS_BLOCK_PROC_CALL; } +static int fsl_i2c_bus_recovery(struct i2c_adapter *adap) +{ + struct mpc_i2c *i2c = i2c_get_adapdata(adap); + + if (i2c->has_errata_A004447) + mpc_i2c_fixup_A004447(i2c); + else + mpc_i2c_fixup(i2c); + + return 0; +} + static const struct i2c_algorithm mpc_algo = { .master_xfer = mpc_xfer, .functionality = mpc_functionality, @@ -648,6 +739,10 @@ .timeout = HZ, }; +static struct i2c_bus_recovery_info fsl_i2c_recovery_info = { + .recover_bus = fsl_i2c_bus_recovery, +}; + static const struct of_device_id mpc_i2c_of_match[]; static int fsl_i2c_probe(struct platform_device *op) { @@ -732,6 +827,8 @@ dev_info(i2c->dev, "timeout %u us\n", mpc_ops.timeout * 1000000 / HZ); platform_set_drvdata(op, i2c); + if (of_property_read_bool(op->dev.of_node, "fsl,i2c-erratum-a004447")) + i2c->has_errata_A004447 = true; i2c->adap = mpc_ops; of_address_to_resource(op->dev.of_node, 0, &res); @@ -740,6 +837,7 @@ i2c_set_adapdata(&i2c->adap, i2c); i2c->adap.dev.parent = &op->dev; i2c->adap.dev.of_node = of_node_get(op->dev.of_node); + i2c->adap.bus_recovery_info = &fsl_i2c_recovery_info; result = i2c_add_adapter(&i2c->adap); if (result < 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-mt7621.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-mt7621.c @@ -304,7 +304,8 @@ if (i2c->bus_freq == 0) { dev_warn(i2c->dev, "clock-frequency 0 not supported\n"); - return -EINVAL; + ret = -EINVAL; + goto err_disable_clk; } adap = &i2c->adap; @@ -322,10 +323,15 @@ ret = i2c_add_adapter(adap); if (ret < 0) - return ret; + goto err_disable_clk; dev_info(&pdev->dev, "clock %u kHz\n", i2c->bus_freq / 1000); + return 0; + +err_disable_clk: + clk_disable_unprepare(i2c->clk); + return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-pasemi.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-pasemi.c @@ -137,6 +137,12 @@ TXFIFO_WR(smbus, msg->buf[msg->len-1] | (stop ? MTXFIFO_STOP : 0)); + + if (stop) { + err = pasemi_smb_waitready(smbus); + if (err) + goto reset_out; + } } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-rk3x.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-rk3x.c @@ -422,8 +422,8 @@ if (!(ipd & REG_INT_MBRF)) return; - /* ack interrupt */ - i2c_writel(i2c, REG_INT_MBRF, REG_IPD); + /* ack interrupt (read also produces a spurious START flag, clear it too) */ + i2c_writel(i2c, REG_INT_MBRF | REG_INT_START, REG_IPD); /* Can only handle a maximum of 32 bytes at a time */ if (len > 32) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-robotfuzz-osif.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-robotfuzz-osif.c @@ -83,7 +83,7 @@ } } - ret = osif_usb_read(adapter, OSIFI2C_STOP, 0, 0, NULL, 0); + ret = osif_usb_write(adapter, OSIFI2C_STOP, 0, 0, NULL, 0); if (ret) { dev_err(&adapter->dev, "failure sending STOP\n"); return -EREMOTEIO; @@ -153,7 +153,7 @@ * Set bus frequency. The frequency is: * 120,000,000 / ( 16 + 2 * div * 4^prescale). * Using dev = 52, prescale = 0 give 100KHz */ - ret = osif_usb_read(&priv->adapter, OSIFI2C_SET_BIT_RATE, 52, 0, + ret = osif_usb_write(&priv->adapter, OSIFI2C_SET_BIT_RATE, 52, 0, NULL, 0); if (ret) { dev_err(&interface->dev, "failure sending bit rate"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-thunderx-pcidrv.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-thunderx-pcidrv.c @@ -208,6 +208,7 @@ i2c->adap.bus_recovery_info = &octeon_i2c_recovery_info; i2c->adap.dev.parent = dev; i2c->adap.dev.of_node = pdev->dev.of_node; + i2c->adap.dev.fwnode = dev->fwnode; snprintf(i2c->adap.name, sizeof(i2c->adap.name), "Cavium ThunderX i2c adapter at %s", dev_name(dev)); i2c_set_adapdata(&i2c->adap, i2c); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-xiic.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-xiic.c @@ -715,7 +715,6 @@ static const struct i2c_adapter xiic_adapter = { .owner = THIS_MODULE, - .name = DRIVER_NAME, .class = I2C_CLASS_DEPRECATED, .algo = &xiic_algorithm, .quirks = &xiic_quirks, @@ -752,6 +751,8 @@ i2c_set_adapdata(&i2c->adap, i2c); i2c->adap.dev.parent = &pdev->dev; i2c->adap.dev.of_node = pdev->dev.of_node; + snprintf(i2c->adap.name, sizeof(i2c->adap.name), + DRIVER_NAME " %s", pdev->name); mutex_init(&i2c->lock); init_waitqueue_head(&i2c->wait); @@ -883,6 +884,7 @@ module_platform_driver(xiic_i2c_driver); +MODULE_ALIAS("platform:" DRIVER_NAME); MODULE_AUTHOR("info@mocean-labs.com"); MODULE_DESCRIPTION("Xilinx I2C bus driver"); MODULE_LICENSE("GPL v2"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/busses/i2c-xlr.c +++ linux-azure-5.4.0/drivers/i2c/busses/i2c-xlr.c @@ -433,11 +433,15 @@ i2c_set_adapdata(&priv->adap, priv); ret = i2c_add_numbered_adapter(&priv->adap); if (ret < 0) - return ret; + goto err_unprepare_clk; platform_set_drvdata(pdev, priv); dev_info(&priv->adap.dev, "Added I2C Bus.\n"); return 0; + +err_unprepare_clk: + clk_unprepare(clk); + return ret; } static int xlr_i2c_remove(struct platform_device *pdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/i2c/muxes/i2c-mux-gpmux.c +++ linux-azure-5.4.0/drivers/i2c/muxes/i2c-mux-gpmux.c @@ -138,6 +138,7 @@ return 0; err_children: + of_node_put(child); i2c_mux_del_adapters(muxc); err_parent: i2c_put_adapter(parent); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/idle/intel_idle.c +++ linux-azure-5.4.0/drivers/idle/intel_idle.c @@ -46,11 +46,13 @@ #include #include #include +#include #include #include #include #include #include +#include #include #include @@ -98,6 +100,12 @@ #define CPUIDLE_FLAG_TLB_FLUSHED 0x10000 /* + * Disable IBRS across idle (when KERNEL_IBRS), is exclusive vs IRQ_ENABLE + * above. + */ +#define CPUIDLE_FLAG_IBRS BIT(16) + +/* * MWAIT takes an 8-bit "hint" in EAX "suggesting" * the C-state (top nibble) and sub-state (bottom nibble) * 0x00 means "MWAIT(C1)", 0x10 means "MWAIT(C2)" etc. @@ -107,6 +115,24 @@ #define flg2MWAIT(flags) (((flags) >> 24) & 0xFF) #define MWAIT2flg(eax) ((eax & 0xFF) << 24) +static __cpuidle int intel_idle_ibrs(struct cpuidle_device *dev, + struct cpuidle_driver *drv, int index) +{ + bool smt_active = sched_smt_active(); + u64 spec_ctrl = spec_ctrl_current(); + int ret; + + if (smt_active) + wrmsrl(MSR_IA32_SPEC_CTRL, 0); + + ret = intel_idle(dev, drv, index); + + if (smt_active) + wrmsrl(MSR_IA32_SPEC_CTRL, spec_ctrl); + + return ret; +} + /* * States are indexed by the cstate number, * which is also the index into the MWAIT hint array. @@ -605,7 +631,7 @@ { .name = "C6", .desc = "MWAIT 0x20", - .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 85, .target_residency = 200, .enter = &intel_idle, @@ -613,7 +639,7 @@ { .name = "C7s", .desc = "MWAIT 0x33", - .flags = MWAIT2flg(0x33) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x33) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 124, .target_residency = 800, .enter = &intel_idle, @@ -621,7 +647,7 @@ { .name = "C8", .desc = "MWAIT 0x40", - .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 200, .target_residency = 800, .enter = &intel_idle, @@ -629,7 +655,7 @@ { .name = "C9", .desc = "MWAIT 0x50", - .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 480, .target_residency = 5000, .enter = &intel_idle, @@ -637,7 +663,7 @@ { .name = "C10", .desc = "MWAIT 0x60", - .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 890, .target_residency = 5000, .enter = &intel_idle, @@ -666,7 +692,7 @@ { .name = "C6", .desc = "MWAIT 0x20", - .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, + .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED | CPUIDLE_FLAG_IBRS, .exit_latency = 133, .target_residency = 600, .enter = &intel_idle, @@ -1370,6 +1396,11 @@ drv->states[drv->state_count] = /* structure copy */ cpuidle_state_table[cstate]; + if (cpu_feature_enabled(X86_FEATURE_KERNEL_IBRS) && + cpuidle_state_table[cstate].flags & CPUIDLE_FLAG_IBRS) { + drv->states[drv->state_count].enter = intel_idle_ibrs; + } + drv->state_count += 1; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/bma180.c +++ linux-azure-5.4.0/drivers/iio/accel/bma180.c @@ -47,7 +47,7 @@ u8 int_reset_reg, int_reset_mask; u8 sleep_reg, sleep_mask; - u8 bw_reg, bw_mask; + u8 bw_reg, bw_mask, bw_offset; u8 scale_reg, scale_mask; u8 power_reg, power_mask, lowpower_val; u8 int_enable_reg, int_enable_mask; @@ -103,6 +103,7 @@ #define BMA250_RANGE_MASK GENMASK(3, 0) /* Range of accel values */ #define BMA250_BW_MASK GENMASK(4, 0) /* Accel bandwidth */ +#define BMA250_BW_OFFSET 8 #define BMA250_SUSPEND_MASK BIT(7) /* chip will sleep */ #define BMA250_LOWPOWER_MASK BIT(6) #define BMA250_DATA_INTEN_MASK BIT(4) @@ -119,7 +120,11 @@ int scale; int bw; bool pmode; - u8 buff[16]; /* 3x 16-bit + 8-bit + padding + timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + s16 chan[4]; + s64 timestamp __aligned(8); + } scan; }; enum bma180_chan { @@ -237,7 +242,8 @@ for (i = 0; i < data->part_info->num_bw; ++i) { if (data->part_info->bw_table[i] == val) { ret = bma180_set_bits(data, data->part_info->bw_reg, - data->part_info->bw_mask, i); + data->part_info->bw_mask, + i + data->part_info->bw_offset); if (ret) { dev_err(&data->client->dev, "failed to set bandwidth\n"); @@ -629,32 +635,53 @@ static const struct bma180_part_info bma180_part_info[] = { [BMA180] = { - bma180_channels, ARRAY_SIZE(bma180_channels), - bma180_scale_table, ARRAY_SIZE(bma180_scale_table), - bma180_bw_table, ARRAY_SIZE(bma180_bw_table), - BMA180_CTRL_REG0, BMA180_RESET_INT, - BMA180_CTRL_REG0, BMA180_SLEEP, - BMA180_BW_TCS, BMA180_BW, - BMA180_OFFSET_LSB1, BMA180_RANGE, - BMA180_TCO_Z, BMA180_MODE_CONFIG, BMA180_LOW_POWER, - BMA180_CTRL_REG3, BMA180_NEW_DATA_INT, - BMA180_RESET, - bma180_chip_config, - bma180_chip_disable, + .channels = bma180_channels, + .num_channels = ARRAY_SIZE(bma180_channels), + .scale_table = bma180_scale_table, + .num_scales = ARRAY_SIZE(bma180_scale_table), + .bw_table = bma180_bw_table, + .num_bw = ARRAY_SIZE(bma180_bw_table), + .int_reset_reg = BMA180_CTRL_REG0, + .int_reset_mask = BMA180_RESET_INT, + .sleep_reg = BMA180_CTRL_REG0, + .sleep_mask = BMA180_SLEEP, + .bw_reg = BMA180_BW_TCS, + .bw_mask = BMA180_BW, + .scale_reg = BMA180_OFFSET_LSB1, + .scale_mask = BMA180_RANGE, + .power_reg = BMA180_TCO_Z, + .power_mask = BMA180_MODE_CONFIG, + .lowpower_val = BMA180_LOW_POWER, + .int_enable_reg = BMA180_CTRL_REG3, + .int_enable_mask = BMA180_NEW_DATA_INT, + .softreset_reg = BMA180_RESET, + .chip_config = bma180_chip_config, + .chip_disable = bma180_chip_disable, }, [BMA250] = { - bma250_channels, ARRAY_SIZE(bma250_channels), - bma250_scale_table, ARRAY_SIZE(bma250_scale_table), - bma250_bw_table, ARRAY_SIZE(bma250_bw_table), - BMA250_INT_RESET_REG, BMA250_INT_RESET_MASK, - BMA250_POWER_REG, BMA250_SUSPEND_MASK, - BMA250_BW_REG, BMA250_BW_MASK, - BMA250_RANGE_REG, BMA250_RANGE_MASK, - BMA250_POWER_REG, BMA250_LOWPOWER_MASK, 1, - BMA250_INT_ENABLE_REG, BMA250_DATA_INTEN_MASK, - BMA250_RESET_REG, - bma250_chip_config, - bma250_chip_disable, + .channels = bma250_channels, + .num_channels = ARRAY_SIZE(bma250_channels), + .scale_table = bma250_scale_table, + .num_scales = ARRAY_SIZE(bma250_scale_table), + .bw_table = bma250_bw_table, + .num_bw = ARRAY_SIZE(bma250_bw_table), + .int_reset_reg = BMA250_INT_RESET_REG, + .int_reset_mask = BMA250_INT_RESET_MASK, + .sleep_reg = BMA250_POWER_REG, + .sleep_mask = BMA250_SUSPEND_MASK, + .bw_reg = BMA250_BW_REG, + .bw_mask = BMA250_BW_MASK, + .bw_offset = BMA250_BW_OFFSET, + .scale_reg = BMA250_RANGE_REG, + .scale_mask = BMA250_RANGE_MASK, + .power_reg = BMA250_POWER_REG, + .power_mask = BMA250_LOWPOWER_MASK, + .lowpower_val = 1, + .int_enable_reg = BMA250_INT_ENABLE_REG, + .int_enable_mask = BMA250_DATA_INTEN_MASK, + .softreset_reg = BMA250_RESET_REG, + .chip_config = bma250_chip_config, + .chip_disable = bma250_chip_disable, }, }; @@ -675,12 +702,12 @@ mutex_unlock(&data->mutex); goto err; } - ((s16 *)data->buff)[i++] = ret; + data->scan.chan[i++] = ret; } mutex_unlock(&data->mutex); - iio_push_to_buffers_with_timestamp(indio_dev, data->buff, time_ns); + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, time_ns); err: iio_trigger_notify_done(indio_dev->trig); @@ -766,11 +793,12 @@ data->trig->dev.parent = &client->dev; data->trig->ops = &bma180_trigger_ops; iio_trigger_set_drvdata(data->trig, indio_dev); - indio_dev->trig = iio_trigger_get(data->trig); ret = iio_trigger_register(data->trig); if (ret) goto err_trigger_free; + + indio_dev->trig = iio_trigger_get(data->trig); } ret = iio_triggered_buffer_setup(indio_dev, NULL, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/bma220_spi.c +++ linux-azure-5.4.0/drivers/iio/accel/bma220_spi.c @@ -73,7 +73,11 @@ struct bma220_data { struct spi_device *spi_device; struct mutex lock; - s8 buffer[16]; /* 3x8-bit channels + 5x8 padding + 8x8 timestamp */ + struct { + s8 chans[3]; + /* Ensure timestamp is naturally aligned. */ + s64 timestamp __aligned(8); + } scan; u8 tx_buf[2] ____cacheline_aligned; }; @@ -104,12 +108,12 @@ mutex_lock(&data->lock); data->tx_buf[0] = BMA220_REG_ACCEL_X | BMA220_READ_MASK; - ret = spi_write_then_read(spi, data->tx_buf, 1, data->buffer, + ret = spi_write_then_read(spi, data->tx_buf, 1, &data->scan.chans, ARRAY_SIZE(bma220_channels) - 1); if (ret < 0) goto err; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: mutex_unlock(&data->lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/hid-sensor-accel-3d.c +++ linux-azure-5.4.0/drivers/iio/accel/hid-sensor-accel-3d.c @@ -29,8 +29,11 @@ struct hid_sensor_hub_callbacks callbacks; struct hid_sensor_common common_attributes; struct hid_sensor_hub_attribute_info accel[ACCEL_3D_CHANNEL_MAX]; - /* Reserve for 3 channels + padding + timestamp */ - u32 accel_val[ACCEL_3D_CHANNEL_MAX + 3]; + /* Ensure timestamp is naturally aligned */ + struct { + u32 accel_val[3]; + s64 timestamp __aligned(8); + } scan; int scale_pre_decml; int scale_post_decml; int scale_precision; @@ -241,8 +244,8 @@ accel_state->timestamp = iio_get_time_ns(indio_dev); hid_sensor_push_data(indio_dev, - accel_state->accel_val, - sizeof(accel_state->accel_val), + &accel_state->scan, + sizeof(accel_state->scan), accel_state->timestamp); accel_state->timestamp = 0; @@ -267,7 +270,7 @@ case HID_USAGE_SENSOR_ACCEL_Y_AXIS: case HID_USAGE_SENSOR_ACCEL_Z_AXIS: offset = usage_id - HID_USAGE_SENSOR_ACCEL_X_AXIS; - accel_state->accel_val[CHANNEL_SCAN_INDEX_X + offset] = + accel_state->scan.accel_val[CHANNEL_SCAN_INDEX_X + offset] = *(u32 *)raw_data; ret = 0; break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/mma9551.c +++ linux-azure-5.4.0/drivers/iio/accel/mma9551.c @@ -496,11 +496,14 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(&client->dev, "unable to register iio device\n"); - goto out_poweroff; + goto err_pm_cleanup; } return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(&client->dev); + pm_runtime_disable(&client->dev); out_poweroff: mma9551_set_device_state(client, false); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/mma9553.c +++ linux-azure-5.4.0/drivers/iio/accel/mma9553.c @@ -1135,12 +1135,15 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(&client->dev, "unable to register iio device\n"); - goto out_poweroff; + goto err_pm_cleanup; } dev_dbg(&indio_dev->dev, "Registered device %s\n", name); return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(&client->dev); + pm_runtime_disable(&client->dev); out_poweroff: mma9551_set_device_state(client, false); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/mxc4005.c +++ linux-azure-5.4.0/drivers/iio/accel/mxc4005.c @@ -56,7 +56,11 @@ struct mutex mutex; struct regmap *regmap; struct iio_trigger *dready_trig; - __be16 buffer[8]; + /* Ensure timestamp is naturally aligned */ + struct { + __be16 chans[3]; + s64 timestamp __aligned(8); + } scan; bool trigger_enabled; }; @@ -135,7 +139,7 @@ int ret; ret = regmap_bulk_read(data->regmap, MXC4005_REG_XOUT_UPPER, - (u8 *) data->buffer, sizeof(data->buffer)); + data->scan.chans, sizeof(data->scan.chans)); if (ret < 0) { dev_err(data->dev, "failed to read axes\n"); return ret; @@ -150,7 +154,7 @@ __be16 reg; int ret; - ret = regmap_bulk_read(data->regmap, addr, (u8 *) ®, sizeof(reg)); + ret = regmap_bulk_read(data->regmap, addr, ®, sizeof(reg)); if (ret < 0) { dev_err(data->dev, "failed to read reg %02x\n", addr); return ret; @@ -301,7 +305,7 @@ if (ret < 0) goto err; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: @@ -458,8 +462,6 @@ data->dready_trig->dev.parent = &client->dev; data->dready_trig->ops = &mxc4005_trigger_ops; iio_trigger_set_drvdata(data->dready_trig, indio_dev); - indio_dev->trig = data->dready_trig; - iio_trigger_get(indio_dev->trig); ret = devm_iio_trigger_register(&client->dev, data->dready_trig); if (ret) { @@ -467,6 +469,8 @@ "failed to register trigger\n"); return ret; } + + indio_dev->trig = iio_trigger_get(data->dready_trig); } return devm_iio_device_register(&client->dev, indio_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/stk8312.c +++ linux-azure-5.4.0/drivers/iio/accel/stk8312.c @@ -103,7 +103,11 @@ u8 mode; struct iio_trigger *dready_trig; bool dready_trigger_on; - s8 buffer[16]; /* 3x8-bit channels + 5x8 padding + 64-bit timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + s8 chans[3]; + s64 timestamp __aligned(8); + } scan; }; static IIO_CONST_ATTR(in_accel_scale_available, STK8312_SCALE_AVAIL); @@ -438,7 +442,7 @@ ret = i2c_smbus_read_i2c_block_data(data->client, STK8312_REG_XOUT, STK8312_ALL_CHANNEL_SIZE, - data->buffer); + data->scan.chans); if (ret < STK8312_ALL_CHANNEL_SIZE) { dev_err(&data->client->dev, "register read failed\n"); mutex_unlock(&data->lock); @@ -452,12 +456,12 @@ mutex_unlock(&data->lock); goto err; } - data->buffer[i++] = ret; + data->scan.chans[i++] = ret; } } mutex_unlock(&data->lock); - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: iio_trigger_notify_done(indio_dev->trig); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/accel/stk8ba50.c +++ linux-azure-5.4.0/drivers/iio/accel/stk8ba50.c @@ -91,12 +91,11 @@ u8 sample_rate_idx; struct iio_trigger *dready_trig; bool dready_trigger_on; - /* - * 3 x 16-bit channels (10-bit data, 6-bit padding) + - * 1 x 16 padding + - * 4 x 16 64-bit timestamp - */ - s16 buffer[8]; + /* Ensure timestamp is naturally aligned */ + struct { + s16 chans[3]; + s64 timetamp __aligned(8); + } scan; }; #define STK8BA50_ACCEL_CHANNEL(index, reg, axis) { \ @@ -324,7 +323,7 @@ ret = i2c_smbus_read_i2c_block_data(data->client, STK8BA50_REG_XOUT, STK8BA50_ALL_CHANNEL_SIZE, - (u8 *)data->buffer); + (u8 *)data->scan.chans); if (ret < STK8BA50_ALL_CHANNEL_SIZE) { dev_err(&data->client->dev, "register read failed\n"); goto err; @@ -337,10 +336,10 @@ if (ret < 0) goto err; - data->buffer[i++] = ret; + data->scan.chans[i++] = ret; } } - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: mutex_unlock(&data->lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/aspeed_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/aspeed_adc.c @@ -184,6 +184,7 @@ data = iio_priv(indio_dev); data->dev = &pdev->dev; + platform_set_drvdata(pdev, indio_dev); res = platform_get_resource(pdev, IORESOURCE_MEM, 0); data->base = devm_ioremap_resource(&pdev->dev, res); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/axp20x_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/axp20x_adc.c @@ -251,19 +251,8 @@ struct iio_chan_spec const *chan, int *val) { struct axp20x_adc_iio *info = iio_priv(indio_dev); - int size; - /* - * N.B.: Unlike the Chinese datasheets tell, the charging current is - * stored on 12 bits, not 13 bits. Only discharging current is on 13 - * bits. - */ - if (chan->type == IIO_CURRENT && chan->channel == AXP22X_BATT_DISCHRG_I) - size = 13; - else - size = 12; - - *val = axp20x_read_variable_width(info->regmap, chan->address, size); + *val = axp20x_read_variable_width(info->regmap, chan->address, 12); if (*val < 0) return *val; @@ -386,9 +375,8 @@ return IIO_VAL_INT_PLUS_MICRO; case IIO_CURRENT: - *val = 0; - *val2 = 500000; - return IIO_VAL_INT_PLUS_MICRO; + *val = 1; + return IIO_VAL_INT; case IIO_TEMP: *val = 100; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/axp288_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/axp288_adc.c @@ -196,6 +196,14 @@ }, .driver_data = (void *)(uintptr_t)AXP288_ADC_TS_BIAS_80UA, }, + { + /* Nuvision Solo 10 Draw */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TMAX"), + DMI_MATCH(DMI_PRODUCT_NAME, "TM101W610L"), + }, + .driver_data = (void *)(uintptr_t)AXP288_ADC_TS_BIAS_80UA, + }, {} }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/hx711.c +++ linux-azure-5.4.0/drivers/iio/adc/hx711.c @@ -85,9 +85,9 @@ struct mutex lock; /* * triggered buffer - * 2x32-bit channel + 64-bit timestamp + * 2x32-bit channel + 64-bit naturally aligned timestamp */ - u32 buffer[4]; + u32 buffer[4] __aligned(8); /* * delay after a rising edge on SCK until the data is ready DOUT * this is dependent on the hx711 where the datasheet tells a only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/mcp3911.c +++ linux-azure-5.4.0/drivers/iio/adc/mcp3911.c @@ -38,8 +38,8 @@ #define MCP3911_CHANNEL(x) (MCP3911_REG_CHANNEL0 + x * 3) #define MCP3911_OFFCAL(x) (MCP3911_REG_OFFCAL_CH0 + x * 6) -/* Internal voltage reference in uV */ -#define MCP3911_INT_VREF_UV 1200000 +/* Internal voltage reference in mV */ +#define MCP3911_INT_VREF_MV 1200 #define MCP3911_REG_READ(reg, id) ((((reg) << 1) | ((id) << 5) | (1 << 0)) & 0xff) #define MCP3911_REG_WRITE(reg, id) ((((reg) << 1) | ((id) << 5) | (0 << 0)) & 0xff) @@ -111,6 +111,8 @@ if (ret) goto out; + *val = sign_extend32(*val, 23); + ret = IIO_VAL_INT; break; @@ -135,11 +137,18 @@ *val = ret / 1000; } else { - *val = MCP3911_INT_VREF_UV; + *val = MCP3911_INT_VREF_MV; } - *val2 = 24; - ret = IIO_VAL_FRACTIONAL_LOG2; + /* + * For 24bit Conversion + * Raw = ((Voltage)/(Vref) * 2^23 * Gain * 1.5 + * Voltage = Raw * (Vref)/(2^23 * Gain * 1.5) + */ + + /* val2 = (2^23 * 1.5) */ + *val2 = 12582912; + ret = IIO_VAL_FRACTIONAL; break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/men_z188_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/men_z188_adc.c @@ -103,6 +103,7 @@ struct z188_adc *adc; struct iio_dev *indio_dev; struct resource *mem; + int ret; indio_dev = devm_iio_device_alloc(&dev->dev, sizeof(struct z188_adc)); if (!indio_dev) @@ -129,8 +130,14 @@ adc->mem = mem; mcb_set_drvdata(dev, indio_dev); - return iio_device_register(indio_dev); + ret = iio_device_register(indio_dev); + if (ret) + goto err_unmap; + return 0; + +err_unmap: + iounmap(adc->base); err: mcb_release_mem(mem); return -ENXIO; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/mxs-lradc-adc.c +++ linux-azure-5.4.0/drivers/iio/adc/mxs-lradc-adc.c @@ -115,7 +115,8 @@ struct device *dev; void __iomem *base; - u32 buffer[10]; + /* Maximum of 8 channels + 8 byte ts */ + u32 buffer[10] __aligned(8); struct iio_trigger *trig; struct completion completion; spinlock_t lock; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/palmas_gpadc.c +++ linux-azure-5.4.0/drivers/iio/adc/palmas_gpadc.c @@ -656,8 +656,8 @@ adc_period = adc->auto_conversion_period; for (i = 0; i < 16; ++i) { - if (((1000 * (1 << i)) / 32) < adc_period) - continue; + if (((1000 * (1 << i)) / 32) >= adc_period) + break; } if (i > 0) i--; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/sc27xx_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/sc27xx_adc.c @@ -36,8 +36,8 @@ /* Bits and mask definition for SC27XX_ADC_CH_CFG register */ #define SC27XX_ADC_CHN_ID_MASK GENMASK(4, 0) -#define SC27XX_ADC_SCALE_MASK GENMASK(10, 8) -#define SC27XX_ADC_SCALE_SHIFT 8 +#define SC27XX_ADC_SCALE_MASK GENMASK(10, 9) +#define SC27XX_ADC_SCALE_SHIFT 9 /* Bits definitions for SC27XX_ADC_INT_EN registers */ #define SC27XX_ADC_IRQ_EN BIT(0) @@ -103,14 +103,14 @@ 100, 341, }; -static const struct sc27xx_adc_linear_graph big_scale_graph_calib = { - 4200, 856, - 3600, 733, +static const struct sc27xx_adc_linear_graph sc2731_big_scale_graph_calib = { + 4200, 850, + 3600, 728, }; -static const struct sc27xx_adc_linear_graph small_scale_graph_calib = { - 1000, 833, - 100, 80, +static const struct sc27xx_adc_linear_graph sc2731_small_scale_graph_calib = { + 1000, 838, + 100, 84, }; static int sc27xx_adc_get_calib_data(u32 calib_data, int calib_adc) @@ -130,11 +130,11 @@ size_t len; if (big_scale) { - calib_graph = &big_scale_graph_calib; + calib_graph = &sc2731_big_scale_graph_calib; graph = &big_scale_graph; cell_name = "big_scale_calib"; } else { - calib_graph = &small_scale_graph_calib; + calib_graph = &sc2731_small_scale_graph_calib; graph = &small_scale_graph; cell_name = "small_scale_calib"; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/stmpe-adc.c +++ linux-azure-5.4.0/drivers/iio/adc/stmpe-adc.c @@ -61,7 +61,7 @@ static int stmpe_read_voltage(struct stmpe_adc *info, struct iio_chan_spec const *chan, int *val) { - long ret; + unsigned long ret; mutex_lock(&info->lock); @@ -79,7 +79,7 @@ ret = wait_for_completion_timeout(&info->completion, STMPE_ADC_TIMEOUT); - if (ret <= 0) { + if (ret == 0) { stmpe_reg_write(info->stmpe, STMPE_REG_ADC_INT_STA, STMPE_ADC_CH(info->channel)); mutex_unlock(&info->lock); @@ -96,7 +96,7 @@ static int stmpe_read_temp(struct stmpe_adc *info, struct iio_chan_spec const *chan, int *val) { - long ret; + unsigned long ret; mutex_lock(&info->lock); @@ -114,7 +114,7 @@ ret = wait_for_completion_timeout(&info->completion, STMPE_ADC_TIMEOUT); - if (ret <= 0) { + if (ret == 0) { mutex_unlock(&info->lock); return -ETIMEDOUT; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/ti-adc128s052.c +++ linux-azure-5.4.0/drivers/iio/adc/ti-adc128s052.c @@ -172,7 +172,13 @@ mutex_init(&adc->lock); ret = iio_device_register(indio_dev); + if (ret) + goto err_disable_regulator; + return 0; + +err_disable_regulator: + regulator_disable(adc->reg); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/ti-ads7950.c +++ linux-azure-5.4.0/drivers/iio/adc/ti-ads7950.c @@ -569,7 +569,6 @@ st->ring_xfer.tx_buf = &st->tx_buf[0]; st->ring_xfer.rx_buf = &st->rx_buf[0]; /* len will be set later */ - st->ring_xfer.cs_change = true; spi_message_add_tail(&st->ring_xfer, &st->ring_msg); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/ti-ads8688.c +++ linux-azure-5.4.0/drivers/iio/adc/ti-ads8688.c @@ -383,7 +383,8 @@ { struct iio_poll_func *pf = p; struct iio_dev *indio_dev = pf->indio_dev; - u16 buffer[ADS8688_MAX_CHANNELS + sizeof(s64)/sizeof(u16)]; + /* Ensure naturally aligned timestamp */ + u16 buffer[ADS8688_MAX_CHANNELS + sizeof(s64)/sizeof(u16)] __aligned(8); int i, j = 0; for (i = 0; i < indio_dev->masklength; i++) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/twl6030-gpadc.c +++ linux-azure-5.4.0/drivers/iio/adc/twl6030-gpadc.c @@ -911,6 +911,8 @@ ret = devm_request_threaded_irq(dev, irq, NULL, twl6030_gpadc_irq_handler, IRQF_ONESHOT, "twl6030_gpadc", indio_dev); + if (ret) + return ret; ret = twl6030_gpadc_enable_irq(TWL6030_GPADC_RT_SW1_EOC_MASK); if (ret < 0) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/adc/vf610_adc.c +++ linux-azure-5.4.0/drivers/iio/adc/vf610_adc.c @@ -167,7 +167,11 @@ u32 sample_freq_avail[5]; struct completion completion; - u16 buffer[8]; + /* Ensure the timestamp is naturally aligned */ + struct { + u16 chan; + s64 timestamp __aligned(8); + } scan; }; static const u32 vf610_hw_avgs[] = { 1, 4, 8, 16, 32 }; @@ -579,9 +583,9 @@ if (coco & VF610_ADC_HS_COCO0) { info->value = vf610_adc_read_data(info); if (iio_buffer_enabled(indio_dev)) { - info->buffer[0] = info->value; + info->scan.chan = info->value; iio_push_to_buffers_with_timestamp(indio_dev, - info->buffer, + &info->scan, iio_get_time_ns(indio_dev)); iio_trigger_notify_done(indio_dev->trig); } else only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/afe/iio-rescale.c +++ linux-azure-5.4.0/drivers/iio/afe/iio-rescale.c @@ -38,7 +38,7 @@ int *val, int *val2, long mask) { struct rescale *rescale = iio_priv(indio_dev); - unsigned long long tmp; + s64 tmp; int ret; switch (mask) { @@ -59,10 +59,10 @@ *val2 = rescale->denominator; return IIO_VAL_FRACTIONAL; case IIO_VAL_FRACTIONAL_LOG2: - tmp = *val * 1000000000LL; - do_div(tmp, rescale->denominator); + tmp = (s64)*val * 1000000000LL; + tmp = div_s64(tmp, rescale->denominator); tmp *= rescale->numerator; - do_div(tmp, 1000000000LL); + tmp = div_s64(tmp, 1000000000LL); *val = tmp; return ret; default: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/common/ssp_sensors/ssp_spi.c +++ linux-azure-5.4.0/drivers/iio/common/ssp_sensors/ssp_spi.c @@ -137,7 +137,7 @@ if (length > received_len - *data_index || length <= 0) { ssp_dbg("[SSP]: MSG From MCU-invalid debug length(%d/%d)\n", length, received_len); - return length ? length : -EPROTO; + return -EPROTO; } ssp_dbg("[SSP]: MSG From MCU - %s\n", &data_frame[*data_index]); @@ -273,6 +273,8 @@ for (idx = 0; idx < len;) { switch (dataframe[idx++]) { case SSP_MSG2AP_INST_BYPASS_DATA: + if (idx >= len) + return -EPROTO; sd = dataframe[idx++]; if (sd < 0 || sd >= SSP_SENSOR_MAX) { dev_err(SSP_DEV, @@ -282,10 +284,13 @@ if (indio_devs[sd]) { spd = iio_priv(indio_devs[sd]); - if (spd->process_data) + if (spd->process_data) { + if (idx >= len) + return -EPROTO; spd->process_data(indio_devs[sd], &dataframe[idx], data->timestamp); + } } else { dev_err(SSP_DEV, "no client for frame\n"); } @@ -293,6 +298,8 @@ idx += ssp_offset_map[sd]; break; case SSP_MSG2AP_INST_DEBUG_DATA: + if (idx >= len) + return -EPROTO; sd = ssp_print_mcu_debug(dataframe, &idx, len); if (sd) { dev_err(SSP_DEV, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/dac/ad5593r.c +++ linux-azure-5.4.0/drivers/iio/dac/ad5593r.c @@ -14,6 +14,8 @@ #include #include +#include + #define AD5593R_MODE_CONF (0 << 4) #define AD5593R_MODE_DAC_WRITE (1 << 4) #define AD5593R_MODE_ADC_READBACK (4 << 4) @@ -21,6 +23,24 @@ #define AD5593R_MODE_GPIO_READBACK (6 << 4) #define AD5593R_MODE_REG_READBACK (7 << 4) +static int ad5593r_read_word(struct i2c_client *i2c, u8 reg, u16 *value) +{ + int ret; + u8 buf[2]; + + ret = i2c_smbus_write_byte(i2c, reg); + if (ret < 0) + return ret; + + ret = i2c_master_recv(i2c, buf, sizeof(buf)); + if (ret < 0) + return ret; + + *value = get_unaligned_be16(buf); + + return 0; +} + static int ad5593r_write_dac(struct ad5592r_state *st, unsigned chan, u16 value) { struct i2c_client *i2c = to_i2c_client(st->dev); @@ -39,13 +59,7 @@ if (val < 0) return (int) val; - val = i2c_smbus_read_word_swapped(i2c, AD5593R_MODE_ADC_READBACK); - if (val < 0) - return (int) val; - - *value = (u16) val; - - return 0; + return ad5593r_read_word(i2c, AD5593R_MODE_ADC_READBACK, value); } static int ad5593r_reg_write(struct ad5592r_state *st, u8 reg, u16 value) @@ -59,25 +73,19 @@ static int ad5593r_reg_read(struct ad5592r_state *st, u8 reg, u16 *value) { struct i2c_client *i2c = to_i2c_client(st->dev); - s32 val; - - val = i2c_smbus_read_word_swapped(i2c, AD5593R_MODE_REG_READBACK | reg); - if (val < 0) - return (int) val; - *value = (u16) val; - - return 0; + return ad5593r_read_word(i2c, AD5593R_MODE_REG_READBACK | reg, value); } static int ad5593r_gpio_read(struct ad5592r_state *st, u8 *value) { struct i2c_client *i2c = to_i2c_client(st->dev); - s32 val; + u16 val; + int ret; - val = i2c_smbus_read_word_swapped(i2c, AD5593R_MODE_GPIO_READBACK); - if (val < 0) - return (int) val; + ret = ad5593r_read_word(i2c, AD5593R_MODE_GPIO_READBACK, &val); + if (ret) + return ret; *value = (u8) val; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/dac/ad5624r_spi.c +++ linux-azure-5.4.0/drivers/iio/dac/ad5624r_spi.c @@ -229,7 +229,7 @@ if (!indio_dev) return -ENOMEM; st = iio_priv(indio_dev); - st->reg = devm_regulator_get(&spi->dev, "vcc"); + st->reg = devm_regulator_get_optional(&spi->dev, "vref"); if (!IS_ERR(st->reg)) { ret = regulator_enable(st->reg); if (ret) @@ -240,6 +240,22 @@ goto error_disable_reg; voltage_uv = ret; + } else { + if (PTR_ERR(st->reg) != -ENODEV) + return PTR_ERR(st->reg); + /* Backwards compatibility. This naming is not correct */ + st->reg = devm_regulator_get_optional(&spi->dev, "vcc"); + if (!IS_ERR(st->reg)) { + ret = regulator_enable(st->reg); + if (ret) + return ret; + + ret = regulator_get_voltage(st->reg); + if (ret < 0) + goto error_disable_reg; + + voltage_uv = ret; + } } spi_set_drvdata(spi, indio_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/dac/ti-dac5571.c +++ linux-azure-5.4.0/drivers/iio/dac/ti-dac5571.c @@ -352,6 +352,7 @@ data->dac5571_pwrdwn = dac5571_pwrdwn_quad; break; default: + ret = -EINVAL; goto err; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/dummy/iio_simple_dummy.c +++ linux-azure-5.4.0/drivers/iio/dummy/iio_simple_dummy.c @@ -568,10 +568,9 @@ struct iio_sw_device *swd; swd = kzalloc(sizeof(*swd), GFP_KERNEL); - if (!swd) { - ret = -ENOMEM; - goto error_kzalloc; - } + if (!swd) + return ERR_PTR(-ENOMEM); + /* * Allocate an IIO device. * @@ -583,7 +582,7 @@ indio_dev = iio_device_alloc(sizeof(*st)); if (!indio_dev) { ret = -ENOMEM; - goto error_ret; + goto error_free_swd; } st = iio_priv(indio_dev); @@ -614,6 +613,10 @@ * indio_dev->name = spi_get_device_id(spi)->name; */ indio_dev->name = kstrdup(name, GFP_KERNEL); + if (!indio_dev->name) { + ret = -ENOMEM; + goto error_free_device; + } /* Provide description of available channels */ indio_dev->channels = iio_dummy_channels; @@ -630,7 +633,7 @@ ret = iio_simple_dummy_events_register(indio_dev); if (ret < 0) - goto error_free_device; + goto error_free_name; ret = iio_simple_dummy_configure_buffer(indio_dev); if (ret < 0) @@ -647,11 +650,12 @@ iio_simple_dummy_unconfigure_buffer(indio_dev); error_unregister_events: iio_simple_dummy_events_unregister(indio_dev); +error_free_name: + kfree(indio_dev->name); error_free_device: iio_device_free(indio_dev); -error_ret: +error_free_swd: kfree(swd); -error_kzalloc: return ERR_PTR(ret); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/gyro/bmg160_core.c +++ linux-azure-5.4.0/drivers/iio/gyro/bmg160_core.c @@ -96,7 +96,11 @@ struct iio_trigger *motion_trig; struct iio_mount_matrix orientation; struct mutex mutex; - s16 buffer[8]; + /* Ensure naturally aligned timestamp */ + struct { + s16 chans[3]; + s64 timestamp __aligned(8); + } scan; u32 dps_range; int ev_enable_state; int slope_thres; @@ -880,12 +884,12 @@ mutex_lock(&data->mutex); ret = regmap_bulk_read(data->regmap, BMG160_REG_XOUT_L, - data->buffer, AXIS_MAX * 2); + data->scan.chans, AXIS_MAX * 2); mutex_unlock(&data->mutex); if (ret < 0) goto err; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: iio_trigger_notify_done(indio_dev->trig); @@ -1169,11 +1173,14 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(dev, "unable to register iio device\n"); - goto err_buffer_cleanup; + goto err_pm_cleanup; } return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(dev); + pm_runtime_disable(dev); err_buffer_cleanup: iio_triggered_buffer_cleanup(indio_dev); err_trigger_unregister: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/humidity/am2315.c +++ linux-azure-5.4.0/drivers/iio/humidity/am2315.c @@ -33,7 +33,11 @@ struct am2315_data { struct i2c_client *client; struct mutex lock; - s16 buffer[8]; /* 2x16-bit channels + 2x16 padding + 4x16 timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + s16 chans[2]; + s64 timestamp __aligned(8); + } scan; }; struct am2315_sensor_data { @@ -167,20 +171,20 @@ mutex_lock(&data->lock); if (*(indio_dev->active_scan_mask) == AM2315_ALL_CHANNEL_MASK) { - data->buffer[0] = sensor_data.hum_data; - data->buffer[1] = sensor_data.temp_data; + data->scan.chans[0] = sensor_data.hum_data; + data->scan.chans[1] = sensor_data.temp_data; } else { i = 0; for_each_set_bit(bit, indio_dev->active_scan_mask, indio_dev->masklength) { - data->buffer[i] = (bit ? sensor_data.temp_data : - sensor_data.hum_data); + data->scan.chans[i] = (bit ? sensor_data.temp_data : + sensor_data.hum_data); i++; } } mutex_unlock(&data->lock); - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: iio_trigger_notify_done(indio_dev->trig); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/imu/adis_buffer.c +++ linux-azure-5.4.0/drivers/iio/imu/adis_buffer.c @@ -125,9 +125,6 @@ struct adis *adis = iio_device_get_drvdata(indio_dev); int ret; - if (!adis->buffer) - return -ENOMEM; - if (adis->data->has_paging) { mutex_lock(&adis->txrx_lock); if (adis->current_page != 0) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/imu/kmx61.c +++ linux-azure-5.4.0/drivers/iio/imu/kmx61.c @@ -1393,7 +1393,7 @@ ret = iio_device_register(data->acc_indio_dev); if (ret < 0) { dev_err(&client->dev, "Failed to register acc iio device\n"); - goto err_buffer_cleanup_mag; + goto err_pm_cleanup; } ret = iio_device_register(data->mag_indio_dev); @@ -1406,6 +1406,9 @@ err_iio_unregister_acc: iio_device_unregister(data->acc_indio_dev); +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(&client->dev); + pm_runtime_disable(&client->dev); err_buffer_cleanup_mag: if (client->irq > 0) iio_triggered_buffer_cleanup(data->mag_indio_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/industrialio-trigger.c +++ linux-azure-5.4.0/drivers/iio/industrialio-trigger.c @@ -549,7 +549,6 @@ irq_modify_status(trig->subirq_base + i, IRQ_NOREQUEST | IRQ_NOAUTOEN, IRQ_NOPROBE); } - get_device(&trig->dev); return trig; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/inkern.c +++ linux-azure-5.4.0/drivers/iio/inkern.c @@ -136,9 +136,10 @@ idev = bus_find_device(&iio_bus_type, NULL, iiospec.np, iio_dev_node_match); - of_node_put(iiospec.np); - if (idev == NULL) + if (idev == NULL) { + of_node_put(iiospec.np); return -EPROBE_DEFER; + } indio_dev = dev_to_iio_dev(idev); channel->indio_dev = indio_dev; @@ -146,6 +147,7 @@ index = indio_dev->info->of_xlate(indio_dev, &iiospec); else index = __of_iio_simple_xlate(indio_dev, &iiospec); + of_node_put(iiospec.np); if (index < 0) goto err_put; channel->channel = &indio_dev->channels[index]; @@ -588,28 +590,50 @@ static int iio_convert_raw_to_processed_unlocked(struct iio_channel *chan, int raw, int *processed, unsigned int scale) { - int scale_type, scale_val, scale_val2, offset; + int scale_type, scale_val, scale_val2; + int offset_type, offset_val, offset_val2; s64 raw64 = raw; - int ret; - ret = iio_channel_read(chan, &offset, NULL, IIO_CHAN_INFO_OFFSET); - if (ret >= 0) - raw64 += offset; + offset_type = iio_channel_read(chan, &offset_val, &offset_val2, + IIO_CHAN_INFO_OFFSET); + if (offset_type >= 0) { + switch (offset_type) { + case IIO_VAL_INT: + break; + case IIO_VAL_INT_PLUS_MICRO: + case IIO_VAL_INT_PLUS_NANO: + /* + * Both IIO_VAL_INT_PLUS_MICRO and IIO_VAL_INT_PLUS_NANO + * implicitely truncate the offset to it's integer form. + */ + break; + case IIO_VAL_FRACTIONAL: + offset_val /= offset_val2; + break; + case IIO_VAL_FRACTIONAL_LOG2: + offset_val >>= offset_val2; + break; + default: + return -EINVAL; + } + + raw64 += offset_val; + } scale_type = iio_channel_read(chan, &scale_val, &scale_val2, IIO_CHAN_INFO_SCALE); if (scale_type < 0) { /* - * Just pass raw values as processed if no scaling is - * available. + * If no channel scaling is available apply consumer scale to + * raw value and return. */ - *processed = raw; + *processed = raw * scale; return 0; } switch (scale_type) { case IIO_VAL_INT: - *processed = raw64 * scale_val; + *processed = raw64 * scale_val * scale; break; case IIO_VAL_INT_PLUS_MICRO: if (scale_val2 < 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/isl29028.c +++ linux-azure-5.4.0/drivers/iio/light/isl29028.c @@ -628,7 +628,7 @@ ISL29028_POWER_OFF_DELAY_MS); pm_runtime_use_autosuspend(&client->dev); - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev); + ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(&client->dev, "%s(): iio registration failed with error %d\n", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/isl29125.c +++ linux-azure-5.4.0/drivers/iio/light/isl29125.c @@ -51,7 +51,11 @@ struct isl29125_data { struct i2c_client *client; u8 conf1; - u16 buffer[8]; /* 3x 16-bit, padding, 8 bytes timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + u16 chans[3]; + s64 timestamp __aligned(8); + } scan; }; #define ISL29125_CHANNEL(_color, _si) { \ @@ -184,10 +188,10 @@ if (ret < 0) goto done; - data->buffer[j++] = ret; + data->scan.chans[j++] = ret; } - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, iio_get_time_ns(indio_dev)); done: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/opt3001.c +++ linux-azure-5.4.0/drivers/iio/light/opt3001.c @@ -275,6 +275,8 @@ ret = wait_event_timeout(opt->result_ready_queue, opt->result_ready, msecs_to_jiffies(OPT3001_RESULT_READY_LONG)); + if (ret == 0) + return -ETIMEDOUT; } else { /* Sleep for result ready time */ timeout = (opt->int_time == OPT3001_INT_TIME_SHORT) ? @@ -311,9 +313,7 @@ /* Disallow IRQ to access the device while lock is active */ opt->ok_to_ignore_lock = false; - if (ret == 0) - return -ETIMEDOUT; - else if (ret < 0) + if (ret < 0) return ret; if (opt->use_irq) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/stk3310.c +++ linux-azure-5.4.0/drivers/iio/light/stk3310.c @@ -544,9 +544,8 @@ mutex_lock(&data->lock); ret = regmap_field_read(data->reg_flag_nf, &dir); if (ret < 0) { - dev_err(&data->client->dev, "register read failed\n"); - mutex_unlock(&data->lock); - return ret; + dev_err(&data->client->dev, "register read failed: %d\n", ret); + goto out; } event = IIO_UNMOD_EVENT_CODE(IIO_PROXIMITY, 1, IIO_EV_TYPE_THRESH, @@ -558,6 +557,7 @@ ret = regmap_field_write(data->reg_flag_psint, 0); if (ret < 0) dev_err(&data->client->dev, "failed to reset interrupts\n"); +out: mutex_unlock(&data->lock); return IRQ_HANDLED; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/tcs3414.c +++ linux-azure-5.4.0/drivers/iio/light/tcs3414.c @@ -53,7 +53,11 @@ u8 control; u8 gain; u8 timing; - u16 buffer[8]; /* 4x 16-bit + 8 bytes timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + u16 chans[4]; + s64 timestamp __aligned(8); + } scan; }; #define TCS3414_CHANNEL(_color, _si, _addr) { \ @@ -209,10 +213,10 @@ if (ret < 0) goto done; - data->buffer[j++] = ret; + data->scan.chans[j++] = ret; } - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, iio_get_time_ns(indio_dev)); done: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/tcs3472.c +++ linux-azure-5.4.0/drivers/iio/light/tcs3472.c @@ -64,7 +64,11 @@ u8 control; u8 atime; u8 apers; - u16 buffer[8]; /* 4 16-bit channels + 64-bit timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + u16 chans[4]; + s64 timestamp __aligned(8); + } scan; }; static const struct iio_event_spec tcs3472_events[] = { @@ -386,10 +390,10 @@ if (ret < 0) goto done; - data->buffer[j++] = ret; + data->scan.chans[j++] = ret; } - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, iio_get_time_ns(indio_dev)); done: @@ -532,7 +536,8 @@ return 0; free_irq: - free_irq(client->irq, indio_dev); + if (client->irq) + free_irq(client->irq, indio_dev); buffer_cleanup: iio_triggered_buffer_cleanup(indio_dev); return ret; @@ -560,7 +565,8 @@ struct iio_dev *indio_dev = i2c_get_clientdata(client); iio_device_unregister(indio_dev); - free_irq(client->irq, indio_dev); + if (client->irq) + free_irq(client->irq, indio_dev); iio_triggered_buffer_cleanup(indio_dev); tcs3472_powerdown(iio_priv(indio_dev)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/light/vcnl4035.c +++ linux-azure-5.4.0/drivers/iio/light/vcnl4035.c @@ -102,7 +102,8 @@ struct iio_poll_func *pf = p; struct iio_dev *indio_dev = pf->indio_dev; struct vcnl4035_data *data = iio_priv(indio_dev); - u8 buffer[ALIGN(sizeof(u16), sizeof(s64)) + sizeof(s64)]; + /* Ensure naturally aligned timestamp */ + u8 buffer[ALIGN(sizeof(u16), sizeof(s64)) + sizeof(s64)] __aligned(8); int ret; ret = regmap_read(data->regmap, VCNL4035_ALS_DATA, (int *)buffer); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/magnetometer/bmc150_magn.c +++ linux-azure-5.4.0/drivers/iio/magnetometer/bmc150_magn.c @@ -136,8 +136,11 @@ struct mutex mutex; struct regmap *regmap; struct iio_mount_matrix orientation; - /* 4 x 32 bits for x, y z, 4 bytes align, 64 bits timestamp */ - s32 buffer[6]; + /* Ensure timestamp is naturally aligned */ + struct { + s32 chans[3]; + s64 timestamp __aligned(8); + } scan; struct iio_trigger *dready_trig; bool dready_trigger_on; int max_odr; @@ -260,7 +263,7 @@ int ret; if (on) { - ret = pm_runtime_get_sync(data->dev); + ret = pm_runtime_resume_and_get(data->dev); } else { pm_runtime_mark_last_busy(data->dev); ret = pm_runtime_put_autosuspend(data->dev); @@ -269,9 +272,6 @@ if (ret < 0) { dev_err(data->dev, "failed to change power state to %d\n", on); - if (on) - pm_runtime_put_noidle(data->dev); - return ret; } #endif @@ -673,11 +673,11 @@ int ret; mutex_lock(&data->mutex); - ret = bmc150_magn_read_xyz(data, data->buffer); + ret = bmc150_magn_read_xyz(data, data->scan.chans); if (ret < 0) goto err; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, pf->timestamp); err: @@ -944,12 +944,15 @@ ret = iio_device_register(indio_dev); if (ret < 0) { dev_err(dev, "unable to register iio device\n"); - goto err_buffer_cleanup; + goto err_pm_cleanup; } dev_dbg(dev, "Registered device %s\n", name); return 0; +err_pm_cleanup: + pm_runtime_dont_use_autosuspend(dev); + pm_runtime_disable(dev); err_buffer_cleanup: iio_triggered_buffer_cleanup(indio_dev); err_free_irq: @@ -973,7 +976,6 @@ pm_runtime_disable(dev); pm_runtime_set_suspended(dev); - pm_runtime_put_noidle(dev); iio_triggered_buffer_cleanup(indio_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/magnetometer/hmc5843.h +++ linux-azure-5.4.0/drivers/iio/magnetometer/hmc5843.h @@ -33,7 +33,8 @@ * @lock: update and read regmap data * @regmap: hardware access register maps * @variant: describe chip variants - * @buffer: 3x 16-bit channels + padding + 64-bit timestamp + * @scan: buffer to pack data for passing to + * iio_push_to_buffers_with_timestamp() */ struct hmc5843_data { struct device *dev; @@ -41,7 +42,10 @@ struct regmap *regmap; const struct hmc5843_chip_info *variant; struct iio_mount_matrix orientation; - __be16 buffer[8]; + struct { + __be16 chans[3]; + s64 timestamp __aligned(8); + } scan; }; int hmc5843_common_probe(struct device *dev, struct regmap *regmap, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/magnetometer/hmc5843_core.c +++ linux-azure-5.4.0/drivers/iio/magnetometer/hmc5843_core.c @@ -446,13 +446,13 @@ } ret = regmap_bulk_read(data->regmap, HMC5843_DATA_OUT_MSB_REGS, - data->buffer, 3 * sizeof(__be16)); + data->scan.chans, sizeof(data->scan.chans)); mutex_unlock(&data->lock); if (ret < 0) goto done; - iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, + iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, iio_get_time_ns(indio_dev)); done: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/magnetometer/rm3100-core.c +++ linux-azure-5.4.0/drivers/iio/magnetometer/rm3100-core.c @@ -76,7 +76,8 @@ bool use_interrupt; int conversion_time; int scale; - u8 buffer[RM3100_SCAN_BYTES]; + /* Ensure naturally aligned timestamp */ + u8 buffer[RM3100_SCAN_BYTES] __aligned(8); struct iio_trigger *drdy_trig; /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/potentiostat/lmp91000.c +++ linux-azure-5.4.0/drivers/iio/potentiostat/lmp91000.c @@ -71,8 +71,8 @@ struct completion completion; u8 chan_select; - - u32 buffer[4]; /* 64-bit data + 64-bit timestamp */ + /* 64-bit data + 64-bit naturally aligned timestamp */ + u32 buffer[4] __aligned(8); }; static const struct iio_chan_spec lmp91000_channels[] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/pressure/dps310.c +++ linux-azure-5.4.0/drivers/iio/pressure/dps310.c @@ -89,6 +89,7 @@ s32 c00, c10, c20, c30, c01, c11, c21; s32 pressure_raw; s32 temp_raw; + bool timeout_recovery_failed; }; static const struct iio_chan_spec dps310_channels[] = { @@ -159,6 +160,102 @@ return 0; } +/* + * Some versions of the chip will read temperatures in the ~60C range when + * it's actually ~20C. This is the manufacturer recommended workaround + * to correct the issue. The registers used below are undocumented. + */ +static int dps310_temp_workaround(struct dps310_data *data) +{ + int rc; + int reg; + + rc = regmap_read(data->regmap, 0x32, ®); + if (rc) + return rc; + + /* + * If bit 1 is set then the device is okay, and the workaround does not + * need to be applied + */ + if (reg & BIT(1)) + return 0; + + rc = regmap_write(data->regmap, 0x0e, 0xA5); + if (rc) + return rc; + + rc = regmap_write(data->regmap, 0x0f, 0x96); + if (rc) + return rc; + + rc = regmap_write(data->regmap, 0x62, 0x02); + if (rc) + return rc; + + rc = regmap_write(data->regmap, 0x0e, 0x00); + if (rc) + return rc; + + return regmap_write(data->regmap, 0x0f, 0x00); +} + +static int dps310_startup(struct dps310_data *data) +{ + int rc; + int ready; + + /* + * Set up pressure sensor in single sample, one measurement per second + * mode + */ + rc = regmap_write(data->regmap, DPS310_PRS_CFG, 0); + if (rc) + return rc; + + /* + * Set up external (MEMS) temperature sensor in single sample, one + * measurement per second mode + */ + rc = regmap_write(data->regmap, DPS310_TMP_CFG, DPS310_TMP_EXT); + if (rc) + return rc; + + /* Temp and pressure shifts are disabled when PRC <= 8 */ + rc = regmap_write_bits(data->regmap, DPS310_CFG_REG, + DPS310_PRS_SHIFT_EN | DPS310_TMP_SHIFT_EN, 0); + if (rc) + return rc; + + /* MEAS_CFG doesn't update correctly unless first written with 0 */ + rc = regmap_write_bits(data->regmap, DPS310_MEAS_CFG, + DPS310_MEAS_CTRL_BITS, 0); + if (rc) + return rc; + + /* Turn on temperature and pressure measurement in the background */ + rc = regmap_write_bits(data->regmap, DPS310_MEAS_CFG, + DPS310_MEAS_CTRL_BITS, DPS310_PRS_EN | + DPS310_TEMP_EN | DPS310_BACKGROUND); + if (rc) + return rc; + + /* + * Calibration coefficients required for reporting temperature. + * They are available 40ms after the device has started + */ + rc = regmap_read_poll_timeout(data->regmap, DPS310_MEAS_CFG, ready, + ready & DPS310_COEF_RDY, 10000, 40000); + if (rc) + return rc; + + rc = dps310_get_coefs(data); + if (rc) + return rc; + + return dps310_temp_workaround(data); +} + static int dps310_get_pres_precision(struct dps310_data *data) { int rc; @@ -297,11 +394,69 @@ return scale_factors[ilog2(rc)]; } +static int dps310_reset_wait(struct dps310_data *data) +{ + int rc; + + rc = regmap_write(data->regmap, DPS310_RESET, DPS310_RESET_MAGIC); + if (rc) + return rc; + + /* Wait for device chip access: 2.5ms in specification */ + usleep_range(2500, 12000); + return 0; +} + +static int dps310_reset_reinit(struct dps310_data *data) +{ + int rc; + + rc = dps310_reset_wait(data); + if (rc) + return rc; + + return dps310_startup(data); +} + +static int dps310_ready_status(struct dps310_data *data, int ready_bit, int timeout) +{ + int sleep = DPS310_POLL_SLEEP_US(timeout); + int ready; + + return regmap_read_poll_timeout(data->regmap, DPS310_MEAS_CFG, ready, ready & ready_bit, + sleep, timeout); +} + +static int dps310_ready(struct dps310_data *data, int ready_bit, int timeout) +{ + int rc; + + rc = dps310_ready_status(data, ready_bit, timeout); + if (rc) { + if (rc == -ETIMEDOUT && !data->timeout_recovery_failed) { + /* Reset and reinitialize the chip. */ + if (dps310_reset_reinit(data)) { + data->timeout_recovery_failed = true; + } else { + /* Try again to get sensor ready status. */ + if (dps310_ready_status(data, ready_bit, timeout)) + data->timeout_recovery_failed = true; + else + return 0; + } + } + + return rc; + } + + data->timeout_recovery_failed = false; + return 0; +} + static int dps310_read_pres_raw(struct dps310_data *data) { int rc; int rate; - int ready; int timeout; s32 raw; u8 val[3]; @@ -313,9 +468,7 @@ timeout = DPS310_POLL_TIMEOUT_US(rate); /* Poll for sensor readiness; base the timeout upon the sample rate. */ - rc = regmap_read_poll_timeout(data->regmap, DPS310_MEAS_CFG, ready, - ready & DPS310_PRS_RDY, - DPS310_POLL_SLEEP_US(timeout), timeout); + rc = dps310_ready(data, DPS310_PRS_RDY, timeout); if (rc) goto done; @@ -352,7 +505,6 @@ { int rc; int rate; - int ready; int timeout; if (mutex_lock_interruptible(&data->lock)) @@ -362,10 +514,8 @@ timeout = DPS310_POLL_TIMEOUT_US(rate); /* Poll for sensor readiness; base the timeout upon the sample rate. */ - rc = regmap_read_poll_timeout(data->regmap, DPS310_MEAS_CFG, ready, - ready & DPS310_TMP_RDY, - DPS310_POLL_SLEEP_US(timeout), timeout); - if (rc < 0) + rc = dps310_ready(data, DPS310_TMP_RDY, timeout); + if (rc) goto done; rc = dps310_read_temp_ready(data); @@ -660,7 +810,7 @@ { struct dps310_data *data = action_data; - regmap_write(data->regmap, DPS310_RESET, DPS310_RESET_MAGIC); + dps310_reset_wait(data); } static const struct regmap_config dps310_regmap_config = { @@ -677,52 +827,12 @@ .write_raw = dps310_write_raw, }; -/* - * Some verions of chip will read temperatures in the ~60C range when - * its actually ~20C. This is the manufacturer recommended workaround - * to correct the issue. The registers used below are undocumented. - */ -static int dps310_temp_workaround(struct dps310_data *data) -{ - int rc; - int reg; - - rc = regmap_read(data->regmap, 0x32, ®); - if (rc < 0) - return rc; - - /* - * If bit 1 is set then the device is okay, and the workaround does not - * need to be applied - */ - if (reg & BIT(1)) - return 0; - - rc = regmap_write(data->regmap, 0x0e, 0xA5); - if (rc < 0) - return rc; - - rc = regmap_write(data->regmap, 0x0f, 0x96); - if (rc < 0) - return rc; - - rc = regmap_write(data->regmap, 0x62, 0x02); - if (rc < 0) - return rc; - - rc = regmap_write(data->regmap, 0x0e, 0x00); - if (rc < 0) - return rc; - - return regmap_write(data->regmap, 0x0f, 0x00); -} - static int dps310_probe(struct i2c_client *client, const struct i2c_device_id *id) { struct dps310_data *data; struct iio_dev *iio; - int rc, ready; + int rc; iio = devm_iio_device_alloc(&client->dev, sizeof(*data)); if (!iio) @@ -748,54 +858,8 @@ if (rc) return rc; - /* - * Set up pressure sensor in single sample, one measurement per second - * mode - */ - rc = regmap_write(data->regmap, DPS310_PRS_CFG, 0); - - /* - * Set up external (MEMS) temperature sensor in single sample, one - * measurement per second mode - */ - rc = regmap_write(data->regmap, DPS310_TMP_CFG, DPS310_TMP_EXT); - if (rc < 0) - return rc; - - /* Temp and pressure shifts are disabled when PRC <= 8 */ - rc = regmap_write_bits(data->regmap, DPS310_CFG_REG, - DPS310_PRS_SHIFT_EN | DPS310_TMP_SHIFT_EN, 0); - if (rc < 0) - return rc; - - /* MEAS_CFG doesn't update correctly unless first written with 0 */ - rc = regmap_write_bits(data->regmap, DPS310_MEAS_CFG, - DPS310_MEAS_CTRL_BITS, 0); - if (rc < 0) - return rc; - - /* Turn on temperature and pressure measurement in the background */ - rc = regmap_write_bits(data->regmap, DPS310_MEAS_CFG, - DPS310_MEAS_CTRL_BITS, DPS310_PRS_EN | - DPS310_TEMP_EN | DPS310_BACKGROUND); - if (rc < 0) - return rc; - - /* - * Calibration coefficients required for reporting temperature. - * They are available 40ms after the device has started - */ - rc = regmap_read_poll_timeout(data->regmap, DPS310_MEAS_CFG, ready, - ready & DPS310_COEF_RDY, 10000, 40000); - if (rc < 0) - return rc; - - rc = dps310_get_coefs(data); - if (rc < 0) - return rc; - - rc = dps310_temp_workaround(data); - if (rc < 0) + rc = dps310_startup(data); + if (rc) return rc; rc = devm_iio_device_register(&client->dev, iio); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/proximity/as3935.c +++ linux-azure-5.4.0/drivers/iio/proximity/as3935.c @@ -61,7 +61,11 @@ unsigned long noise_tripped; u32 tune_cap; u32 nflwdth_reg; - u8 buffer[16]; /* 8-bit data + 56-bit padding + 64-bit timestamp */ + /* Ensure timestamp is naturally aligned */ + struct { + u8 chan; + s64 timestamp __aligned(8); + } scan; u8 buf[2] ____cacheline_aligned; }; @@ -227,8 +231,8 @@ if (ret) goto err_read; - st->buffer[0] = val & AS3935_DATA_MASK; - iio_push_to_buffers_with_timestamp(indio_dev, &st->buffer, + st->scan.chan = val & AS3935_DATA_MASK; + iio_push_to_buffers_with_timestamp(indio_dev, &st->scan, iio_get_time_ns(indio_dev)); err_read: iio_trigger_notify_done(indio_dev->trig); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/proximity/isl29501.c +++ linux-azure-5.4.0/drivers/iio/proximity/isl29501.c @@ -938,7 +938,7 @@ struct iio_dev *indio_dev = pf->indio_dev; struct isl29501_private *isl29501 = iio_priv(indio_dev); const unsigned long *active_mask = indio_dev->active_scan_mask; - u32 buffer[4] = {}; /* 1x16-bit + ts */ + u32 buffer[4] __aligned(8) = {}; /* 1x16-bit + naturally aligned ts */ if (test_bit(ISL29501_DISTANCE_SCAN_INDEX, active_mask)) isl29501_register_read(isl29501, REG_DISTANCE, buffer); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/proximity/srf08.c +++ linux-azure-5.4.0/drivers/iio/proximity/srf08.c @@ -63,11 +63,11 @@ int range_mm; struct mutex lock; - /* - * triggered buffer - * 1x16-bit channel + 3x16 padding + 4x16 timestamp - */ - s16 buffer[8]; + /* Ensure timestamp is naturally aligned */ + struct { + s16 chan; + s64 timestamp __aligned(8); + } scan; /* Sensor-Type */ enum srf08_sensor_type sensor_type; @@ -190,9 +190,9 @@ mutex_lock(&data->lock); - data->buffer[0] = sensor_data; + data->scan.chan = sensor_data; iio_push_to_buffers_with_timestamp(indio_dev, - data->buffer, pf->timestamp); + &data->scan, pf->timestamp); mutex_unlock(&data->lock); err: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iio/trigger/iio-trig-sysfs.c +++ linux-azure-5.4.0/drivers/iio/trigger/iio-trig-sysfs.c @@ -196,6 +196,7 @@ } iio_trigger_unregister(t->trig); + irq_work_sync(&t->work); iio_trigger_free(t->trig); list_del(&t->l); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/core/ib_peer_mem.h +++ linux-azure-5.4.0/drivers/infiniband/core/ib_peer_mem.h @@ -0,0 +1,58 @@ +/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */ +/* + * Copyright (c) 2014-2020, Mellanox Technologies. All rights reserved. + */ +#ifndef RDMA_IB_PEER_MEM_H +#define RDMA_IB_PEER_MEM_H + +#include +#include +#include +#include + +struct ib_peer_memory_statistics { + atomic64_t num_alloc_mrs; + atomic64_t num_dealloc_mrs; + atomic64_t num_reg_pages; + atomic64_t num_dereg_pages; + atomic64_t num_reg_bytes; + atomic64_t num_dereg_bytes; + unsigned long num_free_callbacks; +}; + +struct ib_peer_memory_client { + struct kobject kobj; + refcount_t usecnt; + struct completion usecnt_zero; + const struct peer_memory_client *peer_mem; + struct list_head core_peer_list; + struct ib_peer_memory_statistics stats; + struct xarray umem_xa; + u32 xa_cyclic_next; + bool invalidation_required; +}; + +enum ib_umem_mapped_state { + UMEM_PEER_UNMAPPED, + UMEM_PEER_MAPPED, + UMEM_PEER_INVALIDATED, +}; + +struct ib_umem_peer { + struct ib_umem umem; + struct kref kref; + /* peer memory that manages this umem */ + struct ib_peer_memory_client *ib_peer_client; + void *peer_client_context; + umem_invalidate_func_t invalidation_func; + void *invalidation_private; + struct mutex mapping_lock; + enum ib_umem_mapped_state mapped_state; + u32 xa_id; +}; + +struct ib_umem *ib_peer_umem_get(struct ib_umem *old_umem, int old_ret, + unsigned long peer_mem_flags); +void ib_peer_umem_release(struct ib_umem *umem); + +#endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/core/peer_mem.c +++ linux-azure-5.4.0/drivers/infiniband/core/peer_mem.c @@ -0,0 +1,559 @@ +// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB +/* + * Copyright (c) 2014-2020, Mellanox Technologies. All rights reserved. + */ +#include +#include +#include +#include "ib_peer_mem.h" +static DEFINE_MUTEX(peer_memory_mutex); +static LIST_HEAD(peer_memory_list); +static struct kobject *peers_kobj; +#define PEER_NO_INVALIDATION_ID U32_MAX +static int ib_invalidate_peer_memory(void *reg_handle, u64 core_context); +struct peer_mem_attribute { + struct attribute attr; + ssize_t (*show)(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf); + ssize_t (*store)(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, const char *buf, + size_t count); +}; + +#define PEER_ATTR_RO(_name) \ + struct peer_mem_attribute peer_attr_ ## _name = __ATTR_RO(_name) + +static ssize_t version_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf(buf, PAGE_SIZE, "%s\n", + ib_peer_client->peer_mem->version); +} + +static PEER_ATTR_RO(version); +static ssize_t num_alloc_mrs_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_alloc_mrs)); +} + +static PEER_ATTR_RO(num_alloc_mrs); +static ssize_t +num_dealloc_mrs_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_dealloc_mrs)); +} + +static PEER_ATTR_RO(num_dealloc_mrs); +static ssize_t num_reg_pages_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_reg_pages)); +} + +static PEER_ATTR_RO(num_reg_pages); +static ssize_t +num_dereg_pages_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_dereg_pages)); +} + +static PEER_ATTR_RO(num_dereg_pages); +static ssize_t num_reg_bytes_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_reg_bytes)); +} + +static PEER_ATTR_RO(num_reg_bytes); +static ssize_t +num_dereg_bytes_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf( + buf, PAGE_SIZE, "%llu\n", + (u64)atomic64_read(&ib_peer_client->stats.num_dereg_bytes)); +} + +static PEER_ATTR_RO(num_dereg_bytes); +static ssize_t +num_free_callbacks_show(struct ib_peer_memory_client *ib_peer_client, + struct peer_mem_attribute *attr, char *buf) +{ + return scnprintf(buf, PAGE_SIZE, "%lu\n", + ib_peer_client->stats.num_free_callbacks); +} + +static PEER_ATTR_RO(num_free_callbacks); +static struct attribute *peer_mem_attrs[] = { + &peer_attr_version.attr, + &peer_attr_num_alloc_mrs.attr, + &peer_attr_num_dealloc_mrs.attr, + &peer_attr_num_reg_pages.attr, + &peer_attr_num_dereg_pages.attr, + &peer_attr_num_reg_bytes.attr, + &peer_attr_num_dereg_bytes.attr, + &peer_attr_num_free_callbacks.attr, + NULL, +}; + +static const struct attribute_group peer_mem_attr_group = { + .attrs = peer_mem_attrs, +}; + +static ssize_t peer_attr_show(struct kobject *kobj, struct attribute *attr, + char *buf) +{ + struct peer_mem_attribute *peer_attr = + container_of(attr, struct peer_mem_attribute, attr); + if (!peer_attr->show) + return -EIO; + return peer_attr->show(container_of(kobj, struct ib_peer_memory_client, + kobj), + peer_attr, buf); +} + +static const struct sysfs_ops peer_mem_sysfs_ops = { + .show = peer_attr_show, +}; + +static void ib_peer_memory_client_release(struct kobject *kobj) +{ + struct ib_peer_memory_client *ib_peer_client = + container_of(kobj, struct ib_peer_memory_client, kobj); + kfree(ib_peer_client); +} + +static struct kobj_type peer_mem_type = { + .sysfs_ops = &peer_mem_sysfs_ops, + .release = ib_peer_memory_client_release, +}; + +static int ib_memory_peer_check_mandatory(const struct peer_memory_client + *peer_client) +{ +#define PEER_MEM_MANDATORY_FUNC(x) {offsetof(struct peer_memory_client, x), #x} + int i; + static const struct { + size_t offset; + char *name; + } mandatory_table[] = { + PEER_MEM_MANDATORY_FUNC(acquire), + PEER_MEM_MANDATORY_FUNC(get_pages), + PEER_MEM_MANDATORY_FUNC(put_pages), + PEER_MEM_MANDATORY_FUNC(dma_map), + PEER_MEM_MANDATORY_FUNC(dma_unmap), + }; + for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) { + if (!*(void **)((void *)peer_client + + mandatory_table[i].offset)) { + pr_err("Peer memory %s is missing mandatory function %s\n", + peer_client->name, mandatory_table[i].name); + return -EINVAL; + } + } + return 0; +} + +void * +ib_register_peer_memory_client(const struct peer_memory_client *peer_client, + invalidate_peer_memory *invalidate_callback) +{ + struct ib_peer_memory_client *ib_peer_client; + int ret; + if (ib_memory_peer_check_mandatory(peer_client)) + return NULL; + ib_peer_client = kzalloc(sizeof(*ib_peer_client), GFP_KERNEL); + if (!ib_peer_client) + return NULL; + kobject_init(&ib_peer_client->kobj, &peer_mem_type); + refcount_set(&ib_peer_client->usecnt, 1); + init_completion(&ib_peer_client->usecnt_zero); + ib_peer_client->peer_mem = peer_client; + xa_init_flags(&ib_peer_client->umem_xa, XA_FLAGS_ALLOC); + /* + * If the peer wants the invalidation_callback then all memory users + * linked to that peer must support invalidation. + */ + if (invalidate_callback) { + *invalidate_callback = ib_invalidate_peer_memory; + ib_peer_client->invalidation_required = true; + } + mutex_lock(&peer_memory_mutex); + if (!peers_kobj) { + /* Created under /sys/kernel/mm */ + peers_kobj = kobject_create_and_add("memory_peers", mm_kobj); + if (!peers_kobj) + goto err_unlock; + } + ret = kobject_add(&ib_peer_client->kobj, peers_kobj, peer_client->name); + if (ret) + goto err_parent; + ret = sysfs_create_group(&ib_peer_client->kobj, + &peer_mem_attr_group); + if (ret) + goto err_parent; + list_add_tail(&ib_peer_client->core_peer_list, &peer_memory_list); + mutex_unlock(&peer_memory_mutex); + return ib_peer_client; +err_parent: + if (list_empty(&peer_memory_list)) { + kobject_put(peers_kobj); + peers_kobj = NULL; + } +err_unlock: + mutex_unlock(&peer_memory_mutex); + kobject_put(&ib_peer_client->kobj); + return NULL; +} +EXPORT_SYMBOL(ib_register_peer_memory_client); + +void ib_unregister_peer_memory_client(void *reg_handle) +{ + struct ib_peer_memory_client *ib_peer_client = reg_handle; + mutex_lock(&peer_memory_mutex); + list_del(&ib_peer_client->core_peer_list); + if (list_empty(&peer_memory_list)) { + kobject_put(peers_kobj); + peers_kobj = NULL; + } + mutex_unlock(&peer_memory_mutex); + /* + * Wait for all umems to be destroyed before returning. Once + * ib_unregister_peer_memory_client() returns no umems will call any + * peer_mem ops. + */ + if (refcount_dec_and_test(&ib_peer_client->usecnt)) + complete(&ib_peer_client->usecnt_zero); + wait_for_completion(&ib_peer_client->usecnt_zero); + kobject_put(&ib_peer_client->kobj); +} +EXPORT_SYMBOL(ib_unregister_peer_memory_client); + +static struct ib_peer_memory_client * +ib_get_peer_client(unsigned long addr, size_t size, + unsigned long peer_mem_flags, void **peer_client_context) +{ + struct ib_peer_memory_client *ib_peer_client; + int ret = 0; + mutex_lock(&peer_memory_mutex); + list_for_each_entry(ib_peer_client, &peer_memory_list, + core_peer_list) { + if (ib_peer_client->invalidation_required && + (!(peer_mem_flags & IB_PEER_MEM_INVAL_SUPP))) + continue; + ret = ib_peer_client->peer_mem->acquire(addr, size, NULL, NULL, + peer_client_context); + if (ret > 0) { + refcount_inc(&ib_peer_client->usecnt); + mutex_unlock(&peer_memory_mutex); + return ib_peer_client; + } + } + mutex_unlock(&peer_memory_mutex); + return NULL; +} + +static void ib_put_peer_client(struct ib_peer_memory_client *ib_peer_client, + void *peer_client_context) +{ + if (ib_peer_client->peer_mem->release) + ib_peer_client->peer_mem->release(peer_client_context); + if (refcount_dec_and_test(&ib_peer_client->usecnt)) + complete(&ib_peer_client->usecnt_zero); +} + +static void ib_peer_umem_kref_release(struct kref *kref) +{ + struct ib_umem_peer *umem_p = + container_of(kref, struct ib_umem_peer, kref); + + mutex_destroy(&umem_p->mapping_lock); + kfree(umem_p); +} + +static void ib_unmap_peer_client(struct ib_umem_peer *umem_p, + enum ib_umem_mapped_state cur_state, + enum ib_umem_mapped_state to_state) +{ + struct ib_peer_memory_client *ib_peer_client = umem_p->ib_peer_client; + const struct peer_memory_client *peer_mem = ib_peer_client->peer_mem; + struct ib_umem *umem = &umem_p->umem; + + if (cur_state == UMEM_PEER_MAPPED && + (to_state == UMEM_PEER_UNMAPPED || + to_state == UMEM_PEER_INVALIDATED)) { + if (to_state == UMEM_PEER_UNMAPPED) { + peer_mem->dma_unmap(&umem_p->umem.sg_head, umem_p->peer_client_context, + umem_p->umem.ibdev->dma_device); + peer_mem->put_pages(&umem_p->umem.sg_head, umem_p->peer_client_context); + } + memset(&umem->sg_head, 0, sizeof(umem->sg_head)); + atomic64_inc(&ib_peer_client->stats.num_dealloc_mrs); + } + + if ((cur_state == UMEM_PEER_MAPPED && to_state == UMEM_PEER_UNMAPPED) || + (cur_state == UMEM_PEER_INVALIDATED && + to_state == UMEM_PEER_UNMAPPED)) { + atomic64_add(umem->nmap, &ib_peer_client->stats.num_dereg_pages); + atomic64_add(umem->length, &ib_peer_client->stats.num_dereg_bytes); + } + + umem_p->mapped_state = to_state; +} + +static bool ib_peer_unmap_on_invalidate(struct ib_umem_peer *umem_p) +{ + const struct peer_memory_client *peer_mem = + umem_p->ib_peer_client->peer_mem; + const struct peer_memory_client_ex *peer_mem_ex; + + if (peer_mem->version[IB_PEER_MEMORY_VER_MAX - 1] == 0) + return false; + peer_mem_ex = container_of(peer_mem, const struct peer_memory_client_ex, + client); + if (peer_mem_ex->ex_size < + offsetofend(struct peer_memory_client_ex, flags)) + return false; + return peer_mem_ex->flags & PEER_MEM_INVALIDATE_UNMAPS; +} + + +static int ib_invalidate_peer_memory(void *reg_handle, u64 core_context) +{ + struct ib_peer_memory_client *ib_peer_client = reg_handle; + struct ib_umem_peer *umem_p; + + /* + * The client is not required to fence against invalidation during + * put_pages() as that would deadlock when we call put_pages() here. + * Thus the core_context cannot be a umem pointer as we have no control + * over the lifetime. Since we won't change the kABI for this to add a + * proper kref, an xarray is used. + */ + xa_lock(&ib_peer_client->umem_xa); + ib_peer_client->stats.num_free_callbacks += 1; + umem_p = xa_load(&ib_peer_client->umem_xa, core_context); + if (!umem_p) + goto out_unlock; + kref_get(&umem_p->kref); + xa_unlock(&ib_peer_client->umem_xa); + mutex_lock(&umem_p->mapping_lock); + /* + * For flows that require invalidation the invalidation_func should not + * be NULL while the device can be doing DMA. The mapping_lock ensures + * that the device is ready to receive an invalidation before one is + * triggered here. + */ + if (umem_p->mapped_state == UMEM_PEER_MAPPED && + umem_p->invalidation_func) + umem_p->invalidation_func(&umem_p->umem, + umem_p->invalidation_private); + if (ib_peer_unmap_on_invalidate(umem_p)) + ib_unmap_peer_client(umem_p, umem_p->mapped_state, + UMEM_PEER_INVALIDATED); + else + ib_unmap_peer_client(umem_p, umem_p->mapped_state, + UMEM_PEER_UNMAPPED); + mutex_unlock(&umem_p->mapping_lock); + kref_put(&umem_p->kref, ib_peer_umem_kref_release); + return 0; +out_unlock: + xa_unlock(&ib_peer_client->umem_xa); + return 0; +} + +void ib_umem_activate_invalidation_notifier(struct ib_umem *umem, + umem_invalidate_func_t func, + void *priv) +{ + struct ib_umem_peer *umem_p = + container_of(umem, struct ib_umem_peer, umem); + + if (WARN_ON(!umem->is_peer)) + return; + if (umem_p->xa_id == PEER_NO_INVALIDATION_ID) + return; + + umem_p->invalidation_func = func; + umem_p->invalidation_private = priv; + /* Pairs with the lock in ib_peer_umem_get() */ + mutex_unlock(&umem_p->mapping_lock); + + /* At this point func can be called asynchronously */ +} +EXPORT_SYMBOL(ib_umem_activate_invalidation_notifier); + +/* + * Caller has blocked DMA and will no longer be able to handle invalidate + * callbacks. Callers using invalidation must call this function before calling + * ib_peer_umem_release(). ib_umem_activate_invalidation_notifier() is optional + * before doing this. + */ +void ib_umem_stop_invalidation_notifier(struct ib_umem *umem) +{ + struct ib_umem_peer *umem_p = + container_of(umem, struct ib_umem_peer, umem); + bool unmap_on_invalidate = ib_peer_unmap_on_invalidate(umem_p); + enum ib_umem_mapped_state cur_state; + + if (umem_p->invalidation_func) { + mutex_lock(&umem_p->mapping_lock); + umem_p->invalidation_func = NULL; + } else if (umem_p->xa_id != PEER_NO_INVALIDATION_ID) { + mutex_lock(&umem_p->mapping_lock); + } else { + /* + * Haven't called ib_umem_activate_invalidation_notifier() yet, + * still have the lock + */ + } + + if (!unmap_on_invalidate) { + ib_unmap_peer_client(umem_p, umem_p->mapped_state, + UMEM_PEER_UNMAPPED); + } else { + /* Block ib_invalidate_peer_memory() */ + cur_state = umem_p->mapped_state; + umem_p->mapped_state = UMEM_PEER_UNMAPPED; + } + mutex_unlock(&umem_p->mapping_lock); + + if (unmap_on_invalidate) + ib_unmap_peer_client(umem_p, cur_state, UMEM_PEER_UNMAPPED); + +} +EXPORT_SYMBOL(ib_umem_stop_invalidation_notifier); + +struct ib_umem *ib_peer_umem_get(struct ib_umem *old_umem, int old_ret, + unsigned long peer_mem_flags) +{ + struct ib_peer_memory_client *ib_peer_client; + void *peer_client_context; + struct ib_umem_peer *umem_p; + int ret; + ib_peer_client = + ib_get_peer_client(old_umem->address, old_umem->length, + peer_mem_flags, &peer_client_context); + if (!ib_peer_client) + return ERR_PTR(old_ret); + umem_p = kzalloc(sizeof(*umem_p), GFP_KERNEL); + if (!umem_p) { + ret = -ENOMEM; + goto err_client; + } + + kref_init(&umem_p->kref); + umem_p->umem = *old_umem; + memset(&umem_p->umem.sg_head, 0, sizeof(umem_p->umem.sg_head)); + umem_p->umem.is_peer = 1; + umem_p->ib_peer_client = ib_peer_client; + umem_p->peer_client_context = peer_client_context; + mutex_init(&umem_p->mapping_lock); + umem_p->xa_id = PEER_NO_INVALIDATION_ID; + + mutex_lock(&umem_p->mapping_lock); + if (ib_peer_client->invalidation_required) { + ret = xa_alloc_cyclic(&ib_peer_client->umem_xa, &umem_p->xa_id, + umem_p, + XA_LIMIT(0, PEER_NO_INVALIDATION_ID - 1), + &ib_peer_client->xa_cyclic_next, + GFP_KERNEL); + if (ret < 0) + goto err_umem; + } + + /* + * We always request write permissions to the pages, to force breaking + * of any CoW during the registration of the MR. For read-only MRs we + * use the "force" flag to indicate that CoW breaking is required but + * the registration should not fail if referencing read-only areas. + */ + ret = ib_peer_client->peer_mem->get_pages(umem_p->umem.address, + umem_p->umem.length, 1, + !umem_p->umem.writable, NULL, + peer_client_context, + umem_p->xa_id); + if (ret) + goto err_xa; + + umem_p->umem.page_shift = + ilog2(ib_peer_client->peer_mem->get_page_size(peer_client_context)); + + ret = ib_peer_client->peer_mem->dma_map(&umem_p->umem.sg_head, + peer_client_context, + umem_p->umem.ibdev->dma_device, + 0, &umem_p->umem.nmap); + if (ret) + goto err_pages; + + umem_p->mapped_state = UMEM_PEER_MAPPED; + atomic64_add(umem_p->umem.nmap, &ib_peer_client->stats.num_reg_pages); + atomic64_add(umem_p->umem.length, &ib_peer_client->stats.num_reg_bytes); + atomic64_inc(&ib_peer_client->stats.num_alloc_mrs); + + /* + * If invalidation is allowed then the caller must call + * ib_umem_activate_invalidation_notifier() or ib_peer_umem_release() to + * unlock this mutex. The call to should be done after the last + * read to sg_head, once the caller is ready for the invalidation + * function to be called. + */ + if (umem_p->xa_id == PEER_NO_INVALIDATION_ID) + mutex_unlock(&umem_p->mapping_lock); + /* + * On success the old umem is replaced with the new, larger, allocation + */ + kfree(old_umem); + return &umem_p->umem; +err_pages: + ib_peer_client->peer_mem->put_pages(&umem_p->umem.sg_head, + umem_p->peer_client_context); +err_xa: + if (umem_p->xa_id != PEER_NO_INVALIDATION_ID) + xa_erase(&umem_p->ib_peer_client->umem_xa, umem_p->xa_id); +err_umem: + mutex_unlock(&umem_p->mapping_lock); + kref_put(&umem_p->kref, ib_peer_umem_kref_release); +err_client: + ib_put_peer_client(ib_peer_client, peer_client_context); + return ERR_PTR(ret); +} + +void ib_peer_umem_release(struct ib_umem *umem) +{ + struct ib_umem_peer *umem_p = + container_of(umem, struct ib_umem_peer, umem); + /* + * If ib_umem_activate_invalidation_notifier() is called then + * ib_umem_stop_invalidation_notifier() must be called before release. + */ + WARN_ON(umem_p->invalidation_func); + + /* For no invalidation cases, make sure it is unmapped */ + ib_unmap_peer_client(umem_p, umem_p->mapped_state, UMEM_PEER_UNMAPPED); + + if (umem_p->xa_id != PEER_NO_INVALIDATION_ID) + xa_erase(&umem_p->ib_peer_client->umem_xa, umem_p->xa_id); + ib_put_peer_client(umem_p->ib_peer_client, umem_p->peer_client_context); + umem_p->ib_peer_client = NULL; + + /* Must match ib_umem_release() */ + atomic64_sub(ib_umem_num_pages(umem), &umem->owning_mm->pinned_vm); + mmdrop(umem->owning_mm); + + kref_put(&umem_p->kref, ib_peer_umem_kref_release); +} + only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/core/uverbs_marshall.c +++ linux-azure-5.4.0/drivers/infiniband/core/uverbs_marshall.c @@ -66,7 +66,7 @@ struct rdma_ah_attr *src = ah_attr; struct rdma_ah_attr conv_ah; - memset(&dst->grh.reserved, 0, sizeof(dst->grh.reserved)); + memset(&dst->grh, 0, sizeof(dst->grh)); if ((ah_attr->type == RDMA_AH_ATTR_TYPE_OPA) && (rdma_ah_get_dlid(ah_attr) > be16_to_cpu(IB_LID_PERMISSIVE)) && only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/core/uverbs_uapi.c +++ linux-azure-5.4.0/drivers/infiniband/core/uverbs_uapi.c @@ -450,6 +450,9 @@ uapi->num_write_ex = max_write_ex + 1; data = kmalloc_array(uapi->num_write + uapi->num_write_ex, sizeof(*uapi->write_methods), GFP_KERNEL); + if (!data) + return -ENOMEM; + for (i = 0; i != uapi->num_write + uapi->num_write_ex; i++) data[i] = &uapi->notsupp_method; uapi->write_methods = data; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/hw/hfi1/pio.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hfi1/pio.c @@ -920,6 +920,7 @@ { u64 reg; struct pio_buf *pbuf; + LIST_HEAD(wake_list); if (!sc) return; @@ -954,19 +955,20 @@ spin_unlock(&sc->release_lock); write_seqlock(&sc->waitlock); - while (!list_empty(&sc->piowait)) { + list_splice_init(&sc->piowait, &wake_list); + write_sequnlock(&sc->waitlock); + while (!list_empty(&wake_list)) { struct iowait *wait; struct rvt_qp *qp; struct hfi1_qp_priv *priv; - wait = list_first_entry(&sc->piowait, struct iowait, list); + wait = list_first_entry(&wake_list, struct iowait, list); qp = iowait_to_qp(wait); priv = qp->priv; list_del_init(&priv->s_iowait.list); priv->s_iowait.lock = NULL; hfi1_qp_wakeup(qp, RVT_S_WAIT_PIO | HFI1_S_WAIT_PIO_DRAIN); } - write_sequnlock(&sc->waitlock); spin_unlock_irq(&sc->alloc_lock); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/hw/hfi1/sdma.c +++ linux-azure-5.4.0/drivers/infiniband/hw/hfi1/sdma.c @@ -1329,11 +1329,13 @@ kvfree(sde->tx_ring); sde->tx_ring = NULL; } - spin_lock_irq(&dd->sde_map_lock); - sdma_map_free(rcu_access_pointer(dd->sdma_map)); - RCU_INIT_POINTER(dd->sdma_map, NULL); - spin_unlock_irq(&dd->sde_map_lock); - synchronize_rcu(); + if (rcu_access_pointer(dd->sdma_map)) { + spin_lock_irq(&dd->sde_map_lock); + sdma_map_free(rcu_access_pointer(dd->sdma_map)); + RCU_INIT_POINTER(dd->sdma_map, NULL); + spin_unlock_irq(&dd->sde_map_lock); + synchronize_rcu(); + } kfree(dd->per_sdma); dd->per_sdma = NULL; @@ -3056,6 +3058,7 @@ static int _extend_sdma_tx_descs(struct hfi1_devdata *dd, struct sdma_txreq *tx) { int i; + struct sdma_desc *descp; /* Handle last descriptor */ if (unlikely((tx->num_desc == (MAX_DESC - 1)))) { @@ -3076,12 +3079,10 @@ if (unlikely(tx->num_desc == MAX_DESC)) goto enomem; - tx->descp = kmalloc_array( - MAX_DESC, - sizeof(struct sdma_desc), - GFP_ATOMIC); - if (!tx->descp) + descp = kmalloc_array(MAX_DESC, sizeof(struct sdma_desc), GFP_ATOMIC); + if (!descp) goto enomem; + tx->descp = descp; /* reserve last descriptor for coalescing */ tx->desc_limit = MAX_DESC - 1; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/hw/mlx5/mad.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/mad.c @@ -219,6 +219,12 @@ mdev = dev->mdev; mdev_port_num = 1; } + if (MLX5_CAP_GEN(dev->mdev, num_ports) == 1) { + /* set local port to one for Function-Per-Port HCA. */ + mdev = dev->mdev; + mdev_port_num = 1; + } + /* Declaring support of extended counters */ if (in_mad->mad_hdr.attr_id == IB_PMA_CLASS_PORT_INFO) { struct ib_class_port_info cpi = {}; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/hw/mlx5/odp.c +++ linux-azure-5.4.0/drivers/infiniband/hw/mlx5/odp.c @@ -553,7 +553,7 @@ struct mlx5_ib_mr *imr; struct ib_umem_odp *umem_odp; - umem_odp = ib_umem_odp_alloc_implicit(udata, access_flags); + umem_odp = ib_umem_odp_alloc_implicit(pd->ibpd.device, access_flags); if (IS_ERR(umem_odp)) return ERR_CAST(umem_odp); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/hw/qib/qib_user_sdma.c +++ linux-azure-5.4.0/drivers/infiniband/hw/qib/qib_user_sdma.c @@ -602,7 +602,7 @@ /* * How many pages in this iovec element? */ -static int qib_user_sdma_num_pages(const struct iovec *iov) +static size_t qib_user_sdma_num_pages(const struct iovec *iov) { const unsigned long addr = (unsigned long) iov->iov_base; const unsigned long len = iov->iov_len; @@ -658,7 +658,7 @@ static int qib_user_sdma_pin_pages(const struct qib_devdata *dd, struct qib_user_sdma_queue *pq, struct qib_user_sdma_pkt *pkt, - unsigned long addr, int tlen, int npages) + unsigned long addr, int tlen, size_t npages) { struct page *pages[8]; int i, j; @@ -722,7 +722,7 @@ unsigned long idx; for (idx = 0; idx < niov; idx++) { - const int npages = qib_user_sdma_num_pages(iov + idx); + const size_t npages = qib_user_sdma_num_pages(iov + idx); const unsigned long addr = (unsigned long) iov[idx].iov_base; ret = qib_user_sdma_pin_pages(dd, pq, pkt, addr, @@ -824,8 +824,8 @@ unsigned pktnw; unsigned pktnwc; int nfrags = 0; - int npages = 0; - int bytes_togo = 0; + size_t npages = 0; + size_t bytes_togo = 0; int tiddma = 0; int cfur; @@ -885,7 +885,11 @@ npages += qib_user_sdma_num_pages(&iov[idx]); - bytes_togo += slen; + if (check_add_overflow(bytes_togo, slen, &bytes_togo) || + bytes_togo > type_max(typeof(pkt->bytes_togo))) { + ret = -EINVAL; + goto free_pbc; + } pktnwc += slen >> 2; idx++; nfrags++; @@ -904,8 +908,7 @@ } if (frag_size) { - int tidsmsize, n; - size_t pktsize; + size_t tidsmsize, n, pktsize, sz, addrlimit; n = npages*((2*PAGE_SIZE/frag_size)+1); pktsize = struct_size(pkt, addr, n); @@ -923,14 +926,24 @@ else tidsmsize = 0; - pkt = kmalloc(pktsize+tidsmsize, GFP_KERNEL); + if (check_add_overflow(pktsize, tidsmsize, &sz)) { + ret = -EINVAL; + goto free_pbc; + } + pkt = kmalloc(sz, GFP_KERNEL); if (!pkt) { ret = -ENOMEM; goto free_pbc; } pkt->largepkt = 1; pkt->frag_size = frag_size; - pkt->addrlimit = n + ARRAY_SIZE(pkt->addr); + if (check_add_overflow(n, ARRAY_SIZE(pkt->addr), + &addrlimit) || + addrlimit > type_max(typeof(pkt->addrlimit))) { + ret = -EINVAL; + goto free_pkt; + } + pkt->addrlimit = addrlimit; if (tiddma) { char *tidsm = (char *)pkt + pktsize; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/sw/rxe/rxe_opcode.c +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_opcode.c @@ -137,7 +137,7 @@ } }, [IB_OPCODE_RC_SEND_MIDDLE] = { - .name = "IB_OPCODE_RC_SEND_MIDDLE]", + .name = "IB_OPCODE_RC_SEND_MIDDLE", .mask = RXE_PAYLOAD_MASK | RXE_REQ_MASK | RXE_SEND_MASK | RXE_MIDDLE_MASK, .length = RXE_BTH_BYTES, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/infiniband/sw/rxe/rxe_param.h +++ linux-azure-5.4.0/drivers/infiniband/sw/rxe/rxe_param.h @@ -140,7 +140,7 @@ /* default/initial rxe port parameters */ enum rxe_port_param { RXE_PORT_GID_TBL_LEN = 1024, - RXE_PORT_PORT_CAP_FLAGS = RDMA_CORE_CAP_PROT_ROCE_UDP_ENCAP, + RXE_PORT_PORT_CAP_FLAGS = IB_PORT_CM_SUP, RXE_PORT_MAX_MSG_SZ = 0x800000, RXE_PORT_BAD_PKEY_CNTR = 0, RXE_PORT_QKEY_VIOL_CNTR = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/joystick/iforce/iforce-main.c +++ linux-azure-5.4.0/drivers/input/joystick/iforce/iforce-main.c @@ -50,6 +50,7 @@ { 0x046d, 0xc291, "Logitech WingMan Formula Force", btn_wheel, abs_wheel, ff_iforce }, { 0x05ef, 0x020a, "AVB Top Shot Pegasus", btn_joystick_avb, abs_avb_pegasus, ff_iforce }, { 0x05ef, 0x8884, "AVB Mag Turbo Force", btn_wheel, abs_wheel, ff_iforce }, + { 0x05ef, 0x8886, "Boeder Force Feedback Wheel", btn_wheel, abs_wheel, ff_iforce }, { 0x05ef, 0x8888, "AVB Top Shot Force Feedback Racing Wheel", btn_wheel, abs_wheel, ff_iforce }, //? { 0x061c, 0xc0a4, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce }, //? { 0x061c, 0xc084, "ACT LABS Force RS", btn_wheel, abs_wheel, ff_iforce }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/joystick/iforce/iforce-serio.c +++ linux-azure-5.4.0/drivers/input/joystick/iforce/iforce-serio.c @@ -39,7 +39,7 @@ again: if (iforce->xmit.head == iforce->xmit.tail) { - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); + iforce_clear_xmit_and_wake(iforce); spin_unlock_irqrestore(&iforce->xmit_lock, flags); return; } @@ -64,7 +64,7 @@ if (test_and_clear_bit(IFORCE_XMIT_AGAIN, iforce->xmit_flags)) goto again; - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); + iforce_clear_xmit_and_wake(iforce); spin_unlock_irqrestore(&iforce->xmit_lock, flags); } @@ -169,7 +169,7 @@ iforce_serio->cmd_response_len = iforce_serio->len; /* Signal that command is done */ - wake_up(&iforce->wait); + wake_up_all(&iforce->wait); } else if (likely(iforce->type)) { iforce_process_packet(iforce, iforce_serio->id, iforce_serio->data_in, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/joystick/iforce/iforce-usb.c +++ linux-azure-5.4.0/drivers/input/joystick/iforce/iforce-usb.c @@ -30,7 +30,7 @@ spin_lock_irqsave(&iforce->xmit_lock, flags); if (iforce->xmit.head == iforce->xmit.tail) { - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); + iforce_clear_xmit_and_wake(iforce); spin_unlock_irqrestore(&iforce->xmit_lock, flags); return; } @@ -58,9 +58,9 @@ XMIT_INC(iforce->xmit.tail, n); if ( (n=usb_submit_urb(iforce_usb->out, GFP_ATOMIC)) ) { - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); dev_warn(&iforce_usb->intf->dev, "usb_submit_urb failed %d\n", n); + iforce_clear_xmit_and_wake(iforce); } /* The IFORCE_XMIT_RUNNING bit is not cleared here. That's intended. @@ -92,7 +92,7 @@ id, USB_TYPE_VENDOR | USB_DIR_IN | USB_RECIP_INTERFACE, - 0, 0, buf, IFORCE_MAX_LENGTH, HZ); + 0, 0, buf, IFORCE_MAX_LENGTH, 1000); if (status < 0) { dev_err(&iforce_usb->intf->dev, "usb_submit_urb failed: %d\n", status); @@ -175,15 +175,15 @@ struct iforce *iforce = &iforce_usb->iforce; if (urb->status) { - clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); dev_dbg(&iforce_usb->intf->dev, "urb->status %d, exiting\n", urb->status); + iforce_clear_xmit_and_wake(iforce); return; } __iforce_usb_xmit(iforce); - wake_up(&iforce->wait); + wake_up_all(&iforce->wait); } static int iforce_usb_probe(struct usb_interface *intf, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/joystick/iforce/iforce.h +++ linux-azure-5.4.0/drivers/input/joystick/iforce/iforce.h @@ -119,6 +119,12 @@ response_data, response_len); } +static inline void iforce_clear_xmit_and_wake(struct iforce *iforce) +{ + clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags); + wake_up_all(&iforce->wait); +} + /* Public functions */ /* iforce-main.c */ int iforce_init_device(struct device *parent, u16 bustype, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/joystick/spaceball.c +++ linux-azure-5.4.0/drivers/input/joystick/spaceball.c @@ -19,6 +19,7 @@ #include #include #include +#include #define DRIVER_DESC "SpaceTec SpaceBall 2003/3003/4000 FLX driver" @@ -75,9 +76,15 @@ case 'D': /* Ball data */ if (spaceball->idx != 15) return; - for (i = 0; i < 6; i++) + /* + * Skip first three bytes; read six axes worth of data. + * Axis values are signed 16-bit big-endian. + */ + data += 3; + for (i = 0; i < ARRAY_SIZE(spaceball_axes); i++) { input_report_abs(dev, spaceball_axes[i], - (__s16)((data[2 * i + 3] << 8) | data[2 * i + 2])); + (__s16)get_unaligned_be16(&data[i * 2])); + } break; case 'K': /* Button data */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/keyboard/Kconfig +++ linux-azure-5.4.0/drivers/input/keyboard/Kconfig @@ -68,9 +68,6 @@ To compile this driver as a module, choose M here: the module will be called amikbd. -config ATARI_KBD_CORE - bool - config KEYBOARD_APPLESPI tristate "Apple SPI keyboard and trackpad" depends on ACPI && EFI only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/keyboard/hil_kbd.c +++ linux-azure-5.4.0/drivers/input/keyboard/hil_kbd.c @@ -512,6 +512,7 @@ HIL_IDD_NUM_AXES_PER_SET(*idd)) { printk(KERN_INFO PREFIX "combo devices are not supported.\n"); + error = -EINVAL; goto bail1; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/keyboard/snvs_pwrkey.c +++ linux-azure-5.4.0/drivers/input/keyboard/snvs_pwrkey.c @@ -3,6 +3,7 @@ // Driver for the IMX SNVS ON/OFF Power Key // Copyright (C) 2015 Freescale Semiconductor, Inc. All Rights Reserved. +#include #include #include #include @@ -81,6 +82,11 @@ return IRQ_HANDLED; } +static void imx_snvs_pwrkey_disable_clk(void *data) +{ + clk_disable_unprepare(data); +} + static void imx_snvs_pwrkey_act(void *pdata) { struct pwrkey_drv_data *pd = pdata; @@ -93,6 +99,7 @@ struct pwrkey_drv_data *pdata = NULL; struct input_dev *input = NULL; struct device_node *np; + struct clk *clk; int error; /* Get SNVS register Page */ @@ -115,6 +122,28 @@ dev_warn(&pdev->dev, "KEY_POWER without setting in dts\n"); } + clk = devm_clk_get_optional(&pdev->dev, NULL); + if (IS_ERR(clk)) { + dev_err(&pdev->dev, "Failed to get snvs clock (%pe)\n", clk); + return PTR_ERR(clk); + } + + error = clk_prepare_enable(clk); + if (error) { + dev_err(&pdev->dev, "Failed to enable snvs clock (%pe)\n", + ERR_PTR(error)); + return error; + } + + error = devm_add_action_or_reset(&pdev->dev, + imx_snvs_pwrkey_disable_clk, clk); + if (error) { + dev_err(&pdev->dev, + "Failed to register clock cleanup handler (%pe)\n", + ERR_PTR(error)); + return error; + } + pdata->wakeup = of_property_read_bool(np, "wakeup-source"); pdata->irq = platform_get_irq(pdev, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/misc/rk805-pwrkey.c +++ linux-azure-5.4.0/drivers/input/misc/rk805-pwrkey.c @@ -98,6 +98,7 @@ }; module_platform_driver(rk805_pwrkey_driver); +MODULE_ALIAS("platform:rk805-pwrkey"); MODULE_AUTHOR("Joseph Chen "); MODULE_DESCRIPTION("RK805 PMIC Power Key driver"); MODULE_LICENSE("GPL"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/misc/sparcspkr.c +++ linux-azure-5.4.0/drivers/input/misc/sparcspkr.c @@ -205,6 +205,7 @@ info = &state->u.bbc; info->clock_freq = of_getintprop_default(dp, "clock-frequency", 0); + of_node_put(dp); if (!info->clock_freq) goto out_free; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/mouse/appletouch.c +++ linux-azure-5.4.0/drivers/input/mouse/appletouch.c @@ -916,6 +916,8 @@ set_bit(BTN_TOOL_TRIPLETAP, input_dev->keybit); set_bit(BTN_LEFT, input_dev->keybit); + INIT_WORK(&dev->work, atp_reinit); + error = input_register_device(dev->input); if (error) goto err_free_buffer; @@ -923,8 +925,6 @@ /* save our data pointer in this interface device */ usb_set_intfdata(iface, dev); - INIT_WORK(&dev->work, atp_reinit); - return 0; err_free_buffer: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/mouse/bcm5974.c +++ linux-azure-5.4.0/drivers/input/mouse/bcm5974.c @@ -942,17 +942,22 @@ if (!dev->tp_data) goto err_free_bt_buffer; - if (dev->bt_urb) + if (dev->bt_urb) { usb_fill_int_urb(dev->bt_urb, udev, usb_rcvintpipe(udev, cfg->bt_ep), dev->bt_data, dev->cfg.bt_datalen, bcm5974_irq_button, dev, 1); + dev->bt_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; + } + usb_fill_int_urb(dev->tp_urb, udev, usb_rcvintpipe(udev, cfg->tp_ep), dev->tp_data, dev->cfg.tp_datalen, bcm5974_irq_trackpad, dev, 1); + dev->tp_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; + /* create bcm5974 device */ usb_make_path(udev, dev->phys, sizeof(dev->phys)); strlcat(dev->phys, "/input0", sizeof(dev->phys)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/touchscreen/hideep.c +++ linux-azure-5.4.0/drivers/input/touchscreen/hideep.c @@ -361,13 +361,16 @@ return -EIO; } -static void hideep_nvm_unlock(struct hideep_ts *ts) +static int hideep_nvm_unlock(struct hideep_ts *ts) { u32 unmask_code; + int error; hideep_pgm_w_reg(ts, HIDEEP_FLASH_CFG, HIDEEP_NVM_SFR_RPAGE); - hideep_pgm_r_reg(ts, 0x0000000C, &unmask_code); + error = hideep_pgm_r_reg(ts, 0x0000000C, &unmask_code); hideep_pgm_w_reg(ts, HIDEEP_FLASH_CFG, HIDEEP_NVM_DEFAULT_PAGE); + if (error) + return error; /* make it unprotected code */ unmask_code &= ~HIDEEP_PROT_MODE; @@ -384,6 +387,8 @@ NVM_W_SFR(HIDEEP_NVM_MASK_OFS, ts->nvm_mask); SET_FLASH_HWCONTROL(); hideep_pgm_w_reg(ts, HIDEEP_FLASH_CFG, HIDEEP_NVM_DEFAULT_PAGE); + + return 0; } static int hideep_check_status(struct hideep_ts *ts) @@ -462,7 +467,9 @@ u32 addr = 0; int error; - hideep_nvm_unlock(ts); + error = hideep_nvm_unlock(ts); + if (error) + return error; while (ucode_len > 0) { xfer_len = min_t(size_t, ucode_len, HIDEEP_NVM_PAGE_SIZE); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/touchscreen/melfas_mip4.c +++ linux-azure-5.4.0/drivers/input/touchscreen/melfas_mip4.c @@ -1453,7 +1453,7 @@ "ce", GPIOD_OUT_LOW); if (IS_ERR(ts->gpio_ce)) { error = PTR_ERR(ts->gpio_ce); - if (error != EPROBE_DEFER) + if (error != -EPROBE_DEFER) dev_err(&client->dev, "Failed to get gpio: %d\n", error); return error; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/input/touchscreen/of_touchscreen.c +++ linux-azure-5.4.0/drivers/input/touchscreen/of_touchscreen.c @@ -77,12 +77,12 @@ axis = multitouch ? ABS_MT_POSITION_X : ABS_X; data_present = touchscreen_get_prop_u32(dev, "touchscreen-min-x", input_abs_get_min(input, axis), - &minimum) | - touchscreen_get_prop_u32(dev, "touchscreen-size-x", + &minimum); + data_present |= touchscreen_get_prop_u32(dev, "touchscreen-size-x", input_abs_get_max(input, axis) + 1, - &maximum) | - touchscreen_get_prop_u32(dev, "touchscreen-fuzz-x", + &maximum); + data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-x", input_abs_get_fuzz(input, axis), &fuzz); if (data_present) @@ -91,12 +91,12 @@ axis = multitouch ? ABS_MT_POSITION_Y : ABS_Y; data_present = touchscreen_get_prop_u32(dev, "touchscreen-min-y", input_abs_get_min(input, axis), - &minimum) | - touchscreen_get_prop_u32(dev, "touchscreen-size-y", + &minimum); + data_present |= touchscreen_get_prop_u32(dev, "touchscreen-size-y", input_abs_get_max(input, axis) + 1, - &maximum) | - touchscreen_get_prop_u32(dev, "touchscreen-fuzz-y", + &maximum); + data_present |= touchscreen_get_prop_u32(dev, "touchscreen-fuzz-y", input_abs_get_fuzz(input, axis), &fuzz); if (data_present) @@ -106,11 +106,11 @@ data_present = touchscreen_get_prop_u32(dev, "touchscreen-max-pressure", input_abs_get_max(input, axis), - &maximum) | - touchscreen_get_prop_u32(dev, - "touchscreen-fuzz-pressure", - input_abs_get_fuzz(input, axis), - &fuzz); + &maximum); + data_present |= touchscreen_get_prop_u32(dev, + "touchscreen-fuzz-pressure", + input_abs_get_fuzz(input, axis), + &fuzz); if (data_present) touchscreen_set_params(input, axis, 0, maximum, fuzz); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iommu/arm-smmu.c +++ linux-azure-5.4.0/drivers/iommu/arm-smmu.c @@ -114,7 +114,7 @@ static inline int arm_smmu_rpm_get(struct arm_smmu_device *smmu) { if (pm_runtime_enabled(smmu->dev)) - return pm_runtime_get_sync(smmu->dev); + return pm_runtime_resume_and_get(smmu->dev); return 0; } @@ -1231,6 +1231,7 @@ u64 phys; unsigned long va, flags; int ret, idx = cfg->cbndx; + phys_addr_t addr = 0; ret = arm_smmu_rpm_get(smmu); if (ret < 0) @@ -1249,6 +1250,7 @@ dev_err(dev, "iova to phys timed out on %pad. Falling back to software table walk.\n", &iova); + arm_smmu_rpm_put(smmu); return ops->iova_to_phys(ops, iova); } @@ -1257,12 +1259,14 @@ if (phys & CB_PAR_F) { dev_err(dev, "translation fault!\n"); dev_err(dev, "PAR = 0x%llx\n", phys); - return 0; + goto out; } + addr = (phys & GENMASK_ULL(39, 12)) | (iova & 0xfff); +out: arm_smmu_rpm_put(smmu); - return (phys & GENMASK_ULL(39, 12)) | (iova & 0xfff); + return addr; } static phys_addr_t arm_smmu_iova_to_phys(struct iommu_domain *domain, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iommu/io-pgtable-arm-v7s.c +++ linux-azure-5.4.0/drivers/iommu/io-pgtable-arm-v7s.c @@ -244,13 +244,17 @@ __GFP_ZERO | ARM_V7S_TABLE_GFP_DMA, get_order(size)); else if (lvl == 2) table = kmem_cache_zalloc(data->l2_tables, gfp); + + if (!table) + return NULL; + phys = virt_to_phys(table); if (phys != (arm_v7s_iopte)phys) { /* Doesn't fit in PTE */ dev_err(dev, "Page table does not fit in PTE: %pa", &phys); goto out_free; } - if (table && !cfg->coherent_walk) { + if (!cfg->coherent_walk) { dma = dma_map_single(dev, table, size, DMA_TO_DEVICE); if (dma_mapping_error(dev, dma)) goto out_free; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iommu/io-pgtable-arm.c +++ linux-azure-5.4.0/drivers/iommu/io-pgtable-arm.c @@ -351,11 +351,12 @@ static arm_lpae_iopte arm_lpae_install_table(arm_lpae_iopte *table, arm_lpae_iopte *ptep, arm_lpae_iopte curr, - struct io_pgtable_cfg *cfg) + struct arm_lpae_io_pgtable *data) { arm_lpae_iopte old, new; + struct io_pgtable_cfg *cfg = &data->iop.cfg; - new = __pa(table) | ARM_LPAE_PTE_TYPE_TABLE; + new = paddr_to_iopte(__pa(table), data) | ARM_LPAE_PTE_TYPE_TABLE; if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS) new |= ARM_LPAE_PTE_NSTABLE; @@ -406,7 +407,7 @@ if (!cptep) return -ENOMEM; - pte = arm_lpae_install_table(cptep, ptep, 0, cfg); + pte = arm_lpae_install_table(cptep, ptep, 0, data); if (pte) __arm_lpae_free_pages(cptep, tblsz, cfg); } else if (!cfg->coherent_walk && !(pte & ARM_LPAE_PTE_SW_SYNC)) { @@ -575,7 +576,7 @@ __arm_lpae_init_pte(data, blk_paddr, pte, lvl, &tablep[i]); } - pte = arm_lpae_install_table(tablep, ptep, blk_pte, cfg); + pte = arm_lpae_install_table(tablep, ptep, blk_pte, data); if (pte != blk_pte) { __arm_lpae_free_pages(tablep, tablesz, cfg); /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iommu/ipmmu-vmsa.c +++ linux-azure-5.4.0/drivers/iommu/ipmmu-vmsa.c @@ -1061,7 +1061,9 @@ bitmap_zero(mmu->ctx, IPMMU_CTX_MAX); mmu->features = of_device_get_match_data(&pdev->dev); memset(mmu->utlb_ctx, IPMMU_CTX_INVALID, mmu->features->num_utlbs); - dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(40)); + ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(40)); + if (ret) + return ret; /* Map I/O memory and request IRQ. */ res = platform_get_resource(pdev, IORESOURCE_MEM, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/iommu/msm_iommu.c +++ linux-azure-5.4.0/drivers/iommu/msm_iommu.c @@ -636,16 +636,19 @@ static int qcom_iommu_of_xlate(struct device *dev, struct of_phandle_args *spec) { - struct msm_iommu_dev *iommu; + struct msm_iommu_dev *iommu = NULL, *iter; unsigned long flags; int ret = 0; spin_lock_irqsave(&msm_iommu_lock, flags); - list_for_each_entry(iommu, &qcom_iommu_devices, dev_node) - if (iommu->dev->of_node == spec->np) + list_for_each_entry(iter, &qcom_iommu_devices, dev_node) { + if (iter->dev->of_node == spec->np) { + iommu = iter; break; + } + } - if (!iommu || iommu->dev->of_node != spec->np) { + if (!iommu) { ret = -ENODEV; goto fail; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ipack/devices/ipoctal.c +++ linux-azure-5.4.0/drivers/ipack/devices/ipoctal.c @@ -35,6 +35,7 @@ unsigned int pointer_read; unsigned int pointer_write; struct tty_port tty_port; + bool tty_registered; union scc2698_channel __iomem *regs; union scc2698_block __iomem *block_regs; unsigned int board_id; @@ -83,22 +84,34 @@ return 0; } -static int ipoctal_open(struct tty_struct *tty, struct file *file) +static int ipoctal_install(struct tty_driver *driver, struct tty_struct *tty) { struct ipoctal_channel *channel = dev_get_drvdata(tty->dev); struct ipoctal *ipoctal = chan_to_ipoctal(channel, tty->index); - int err; - - tty->driver_data = channel; + int res; if (!ipack_get_carrier(ipoctal->dev)) return -EBUSY; - err = tty_port_open(&channel->tty_port, tty, file); - if (err) - ipack_put_carrier(ipoctal->dev); + res = tty_standard_install(driver, tty); + if (res) + goto err_put_carrier; + + tty->driver_data = channel; + + return 0; + +err_put_carrier: + ipack_put_carrier(ipoctal->dev); + + return res; +} + +static int ipoctal_open(struct tty_struct *tty, struct file *file) +{ + struct ipoctal_channel *channel = tty->driver_data; - return err; + return tty_port_open(&channel->tty_port, tty, file); } static void ipoctal_reset_stats(struct ipoctal_stats *stats) @@ -266,7 +279,6 @@ int res; int i; struct tty_driver *tty; - char name[20]; struct ipoctal_channel *channel; struct ipack_region *region; void __iomem *addr; @@ -357,8 +369,11 @@ /* Fill struct tty_driver with ipoctal data */ tty->owner = THIS_MODULE; tty->driver_name = KBUILD_MODNAME; - sprintf(name, KBUILD_MODNAME ".%d.%d.", bus_nr, slot); - tty->name = name; + tty->name = kasprintf(GFP_KERNEL, KBUILD_MODNAME ".%d.%d.", bus_nr, slot); + if (!tty->name) { + res = -ENOMEM; + goto err_put_driver; + } tty->major = 0; tty->minor_start = 0; @@ -374,8 +389,7 @@ res = tty_register_driver(tty); if (res) { dev_err(&ipoctal->dev->dev, "Can't register tty driver.\n"); - put_tty_driver(tty); - return res; + goto err_free_name; } /* Save struct tty_driver for use it when uninstalling the device */ @@ -386,7 +400,9 @@ channel = &ipoctal->channel[i]; tty_port_init(&channel->tty_port); - tty_port_alloc_xmit_buf(&channel->tty_port); + res = tty_port_alloc_xmit_buf(&channel->tty_port); + if (res) + continue; channel->tty_port.ops = &ipoctal_tty_port_ops; ipoctal_reset_stats(&channel->stats); @@ -394,13 +410,15 @@ spin_lock_init(&channel->lock); channel->pointer_read = 0; channel->pointer_write = 0; - tty_dev = tty_port_register_device(&channel->tty_port, tty, i, NULL); + tty_dev = tty_port_register_device_attr(&channel->tty_port, tty, + i, NULL, channel, NULL); if (IS_ERR(tty_dev)) { dev_err(&ipoctal->dev->dev, "Failed to register tty device.\n"); + tty_port_free_xmit_buf(&channel->tty_port); tty_port_destroy(&channel->tty_port); continue; } - dev_set_drvdata(tty_dev, channel); + channel->tty_registered = true; } /* @@ -412,6 +430,13 @@ ipoctal_irq_handler, ipoctal); return 0; + +err_free_name: + kfree(tty->name); +err_put_driver: + put_tty_driver(tty); + + return res; } static inline int ipoctal_copy_write_buffer(struct ipoctal_channel *channel, @@ -652,6 +677,7 @@ static const struct tty_operations ipoctal_fops = { .ioctl = NULL, + .install = ipoctal_install, .open = ipoctal_open, .close = ipoctal_close, .write = ipoctal_write_tty, @@ -694,12 +720,17 @@ for (i = 0; i < NR_CHANNELS; i++) { struct ipoctal_channel *channel = &ipoctal->channel[i]; + + if (!channel->tty_registered) + continue; + tty_unregister_device(ipoctal->tty_drv, i); tty_port_free_xmit_buf(&channel->tty_port); tty_port_destroy(&channel->tty_port); } tty_unregister_driver(ipoctal->tty_drv); + kfree(ipoctal->tty_drv->name); put_tty_driver(ipoctal->tty_drv); kfree(ipoctal); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-armada-370-xp.c +++ linux-azure-5.4.0/drivers/irqchip/irq-armada-370-xp.c @@ -232,16 +232,12 @@ int hwirq, i; mutex_lock(&msi_used_lock); + hwirq = bitmap_find_free_region(msi_used, PCI_MSI_DOORBELL_NR, + order_base_2(nr_irqs)); + mutex_unlock(&msi_used_lock); - hwirq = bitmap_find_next_zero_area(msi_used, PCI_MSI_DOORBELL_NR, - 0, nr_irqs, 0); - if (hwirq >= PCI_MSI_DOORBELL_NR) { - mutex_unlock(&msi_used_lock); + if (hwirq < 0) return -ENOSPC; - } - - bitmap_set(msi_used, hwirq, nr_irqs); - mutex_unlock(&msi_used_lock); for (i = 0; i < nr_irqs; i++) { irq_domain_set_info(domain, virq + i, hwirq + i, @@ -250,7 +246,7 @@ NULL, NULL); } - return hwirq; + return 0; } static void armada_370_xp_msi_free(struct irq_domain *domain, @@ -259,7 +255,7 @@ struct irq_data *d = irq_domain_get_irq_data(domain, virq); mutex_lock(&msi_used_lock); - bitmap_clear(msi_used, d->hwirq, nr_irqs); + bitmap_release_region(msi_used, d->hwirq, order_base_2(nr_irqs)); mutex_unlock(&msi_used_lock); } @@ -396,7 +392,16 @@ static void armada_xp_mpic_perf_init(void) { - unsigned long cpuid = cpu_logical_map(smp_processor_id()); + unsigned long cpuid; + + /* + * This Performance Counter Overflow interrupt is specific for + * Armada 370 and XP. It is not available on Armada 375, 38x and 39x. + */ + if (!of_machine_is_compatible("marvell,armada-370-xp")) + return; + + cpuid = cpu_logical_map(smp_processor_id()); /* Enable Performance Counter Overflow interrupts */ writel(ARMADA_370_XP_INT_CAUSE_PERF(cpuid), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-aspeed-i2c-ic.c +++ linux-azure-5.4.0/drivers/irqchip/irq-aspeed-i2c-ic.c @@ -79,8 +79,8 @@ } i2c_ic->parent_irq = irq_of_parse_and_map(node, 0); - if (i2c_ic->parent_irq < 0) { - ret = i2c_ic->parent_irq; + if (!i2c_ic->parent_irq) { + ret = -EINVAL; goto err_iounmap; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-bcm6345-l1.c +++ linux-azure-5.4.0/drivers/irqchip/irq-bcm6345-l1.c @@ -140,7 +140,7 @@ for_each_set_bit(hwirq, &pending, IRQS_PER_WORD) { irq = irq_linear_revmap(intc->domain, base + hwirq); if (irq) - do_IRQ(irq); + generic_handle_irq(irq); else spurious_interrupt(); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-gic-realview.c +++ linux-azure-5.4.0/drivers/irqchip/irq-gic-realview.c @@ -57,6 +57,7 @@ /* The PB11MPCore GIC needs to be configured in the syscon */ map = syscon_node_to_regmap(np); + of_node_put(np); if (!IS_ERR(map)) { /* new irq mode with no DCC */ regmap_write(map, REALVIEW_SYS_LOCK_OFFSET, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-nvic.c +++ linux-azure-5.4.0/drivers/irqchip/irq-nvic.c @@ -26,7 +26,7 @@ #define NVIC_ISER 0x000 #define NVIC_ICER 0x080 -#define NVIC_IPR 0x300 +#define NVIC_IPR 0x400 #define NVIC_MAX_BANKS 16 /* @@ -105,6 +105,7 @@ if (!nvic_irq_domain) { pr_warn("Failed to allocate irq domain\n"); + iounmap(nvic_base); return -ENOMEM; } @@ -114,6 +115,7 @@ if (ret) { pr_warn("Failed to allocate irq chips\n"); irq_domain_remove(nvic_irq_domain); + iounmap(nvic_base); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-or1k-pic.c +++ linux-azure-5.4.0/drivers/irqchip/irq-or1k-pic.c @@ -66,7 +66,6 @@ .name = "or1k-PIC-level", .irq_unmask = or1k_pic_unmask, .irq_mask = or1k_pic_mask, - .irq_mask_ack = or1k_pic_mask_ack, }, .handle = handle_level_irq, .flags = IRQ_LEVEL | IRQ_NOPROBE, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-s3c24xx.c +++ linux-azure-5.4.0/drivers/irqchip/irq-s3c24xx.c @@ -359,11 +359,25 @@ asmlinkage void __exception_irq_entry s3c24xx_handle_irq(struct pt_regs *regs) { do { - if (likely(s3c_intc[0])) - if (s3c24xx_handle_intc(s3c_intc[0], regs, 0)) - continue; + /* + * For platform based machines, neither ERR nor NULL can happen here. + * The s3c24xx_handle_irq() will be set as IRQ handler iff this succeeds: + * + * s3c_intc[0] = s3c24xx_init_intc() + * + * If this fails, the next calls to s3c24xx_init_intc() won't be executed. + * + * For DT machine, s3c_init_intc_of() could set the IRQ handler without + * setting s3c_intc[0] only if it was called with num_ctrl=0. There is no + * such code path, so again the s3c_intc[0] will have a valid pointer if + * set_handle_irq() is called. + * + * Therefore in s3c24xx_handle_irq(), the s3c_intc[0] is always something. + */ + if (s3c24xx_handle_intc(s3c_intc[0], regs, 0)) + continue; - if (s3c_intc[2]) + if (!IS_ERR_OR_NULL(s3c_intc[2])) if (s3c24xx_handle_intc(s3c_intc[2], regs, 64)) continue; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-sifive-plic.c +++ linux-azure-5.4.0/drivers/irqchip/irq-sifive-plic.c @@ -138,7 +138,13 @@ { struct plic_handler *handler = this_cpu_ptr(&plic_handlers); - writel(d->hwirq, handler->hart_base + CONTEXT_CLAIM); + if (irqd_irq_masked(d)) { + plic_irq_unmask(d); + writel(d->hwirq, handler->hart_base + CONTEXT_CLAIM); + plic_irq_mask(d); + } else { + writel(d->hwirq, handler->hart_base + CONTEXT_CLAIM); + } } static struct irq_chip plic_chip = { @@ -307,3 +313,4 @@ IRQCHIP_DECLARE(sifive_plic, "sifive,plic-1.0.0", plic_init); IRQCHIP_DECLARE(riscv_plic0, "riscv,plic0", plic_init); /* for legacy systems */ +IRQCHIP_DECLARE(thead_c900_plic, "thead,c900-plic", plic_init); /* for firmware driver */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-tegra.c +++ linux-azure-5.4.0/drivers/irqchip/irq-tegra.c @@ -148,10 +148,10 @@ lic->cop_iep[i] = readl_relaxed(ictlr + ICTLR_COP_IEP_CLASS); /* Disable COP interrupts */ - writel_relaxed(~0ul, ictlr + ICTLR_COP_IER_CLR); + writel_relaxed(GENMASK(31, 0), ictlr + ICTLR_COP_IER_CLR); /* Disable CPU interrupts */ - writel_relaxed(~0ul, ictlr + ICTLR_CPU_IER_CLR); + writel_relaxed(GENMASK(31, 0), ictlr + ICTLR_CPU_IER_CLR); /* Enable the wakeup sources of ictlr */ writel_relaxed(lic->ictlr_wake_mask[i], ictlr + ICTLR_CPU_IER_SET); @@ -172,12 +172,12 @@ writel_relaxed(lic->cpu_iep[i], ictlr + ICTLR_CPU_IEP_CLASS); - writel_relaxed(~0ul, ictlr + ICTLR_CPU_IER_CLR); + writel_relaxed(GENMASK(31, 0), ictlr + ICTLR_CPU_IER_CLR); writel_relaxed(lic->cpu_ier[i], ictlr + ICTLR_CPU_IER_SET); writel_relaxed(lic->cop_iep[i], ictlr + ICTLR_COP_IEP_CLASS); - writel_relaxed(~0ul, ictlr + ICTLR_COP_IER_CLR); + writel_relaxed(GENMASK(31, 0), ictlr + ICTLR_COP_IER_CLR); writel_relaxed(lic->cop_ier[i], ictlr + ICTLR_COP_IER_SET); } @@ -312,7 +312,7 @@ lic->base[i] = base; /* Disable all interrupts */ - writel_relaxed(~0UL, base + ICTLR_CPU_IER_CLR); + writel_relaxed(GENMASK(31, 0), base + ICTLR_CPU_IER_CLR); /* All interrupts target IRQ */ writel_relaxed(0, base + ICTLR_CPU_IEP_CLASS); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/irq-xtensa-mx.c +++ linux-azure-5.4.0/drivers/irqchip/irq-xtensa-mx.c @@ -151,14 +151,25 @@ .irq_set_affinity = xtensa_mx_irq_set_affinity, }; +static void __init xtensa_mx_init_common(struct irq_domain *root_domain) +{ + unsigned int i; + + irq_set_default_host(root_domain); + secondary_init_irq(); + + /* Initialize default IRQ routing to CPU 0 */ + for (i = 0; i < XCHAL_NUM_EXTINTERRUPTS; ++i) + set_er(1, MIROUT(i)); +} + int __init xtensa_mx_init_legacy(struct device_node *interrupt_parent) { struct irq_domain *root_domain = irq_domain_add_legacy(NULL, NR_IRQS - 1, 1, 0, &xtensa_mx_irq_domain_ops, &xtensa_mx_irq_chip); - irq_set_default_host(root_domain); - secondary_init_irq(); + xtensa_mx_init_common(root_domain); return 0; } @@ -168,8 +179,7 @@ struct irq_domain *root_domain = irq_domain_add_linear(np, NR_IRQS, &xtensa_mx_irq_domain_ops, &xtensa_mx_irq_chip); - irq_set_default_host(root_domain); - secondary_init_irq(); + xtensa_mx_init_common(root_domain); return 0; } IRQCHIP_DECLARE(xtensa_mx_irq_chip, "cdns,xtensa-mx", xtensa_mx_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/irqchip/qcom-pdc.c +++ linux-azure-5.4.0/drivers/irqchip/qcom-pdc.c @@ -50,17 +50,18 @@ static void pdc_enable_intr(struct irq_data *d, bool on) { int pin_out = d->hwirq; + unsigned long flags; u32 index, mask; u32 enable; index = pin_out / 32; mask = pin_out % 32; - raw_spin_lock(&pdc_lock); + raw_spin_lock_irqsave(&pdc_lock, flags); enable = pdc_reg_read(IRQ_ENABLE_BANK, index); enable = on ? ENABLE_INTR(enable, mask) : CLEAR_INTR(enable, mask); pdc_reg_write(IRQ_ENABLE_BANK, index, enable); - raw_spin_unlock(&pdc_lock); + raw_spin_unlock_irqrestore(&pdc_lock, flags); } static void qcom_pdc_gic_mask(struct irq_data *d) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/hardware/mISDN/hfcpci.c +++ linux-azure-5.4.0/drivers/isdn/hardware/mISDN/hfcpci.c @@ -2341,7 +2341,7 @@ HFC_cleanup(void) { if (timer_pending(&hfc_tl)) - del_timer(&hfc_tl); + del_timer_sync(&hfc_tl); pci_unregister_driver(&hfc_driver); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/hardware/mISDN/netjet.c +++ linux-azure-5.4.0/drivers/isdn/hardware/mISDN/netjet.c @@ -949,14 +949,14 @@ nj_disable_hwirq(card); mode_tiger(&card->bc[0], ISDN_P_NONE); mode_tiger(&card->bc[1], ISDN_P_NONE); - card->isac.release(&card->isac); spin_unlock_irqrestore(&card->lock, flags); + card->isac.release(&card->isac); release_region(card->base, card->base_s); card->base_s = 0; } if (card->irq > 0) free_irq(card->irq, card); - if (card->isac.dch.dev.dev.class) + if (device_is_registered(&card->isac.dch.dev.dev)) mISDN_unregister_device(&card->isac.dch.dev); for (i = 0; i < 2; i++) { @@ -1100,7 +1100,6 @@ card->typ = NETJET_S_TJ300; card->base = pci_resource_start(pdev, 0); - card->irq = pdev->irq; pci_set_drvdata(pdev, card); err = setup_instance(card); if (err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/mISDN/core.c +++ linux-azure-5.4.0/drivers/isdn/mISDN/core.c @@ -233,11 +233,12 @@ if (debug & DEBUG_CORE) printk(KERN_DEBUG "mISDN_register %s %d\n", dev_name(&dev->dev), dev->id); + dev->dev.class = &mISDN_class; + err = create_stack(dev); if (err) goto error1; - dev->dev.class = &mISDN_class; dev->dev.platform_data = dev; dev->dev.parent = parent; dev_set_drvdata(&dev->dev, dev); @@ -249,8 +250,8 @@ error3: delete_stack(dev); - return err; error1: + put_device(&dev->dev); return err; } @@ -381,7 +382,7 @@ err = mISDN_inittimer(&debug); if (err) goto error2; - err = l1_init(&debug); + err = Isdnl1_Init(&debug); if (err) goto error3; err = Isdnl2_Init(&debug); @@ -395,7 +396,7 @@ error5: Isdnl2_cleanup(); error4: - l1_cleanup(); + Isdnl1_cleanup(); error3: mISDN_timer_cleanup(); error2: @@ -408,7 +409,7 @@ { misdn_sock_cleanup(); Isdnl2_cleanup(); - l1_cleanup(); + Isdnl1_cleanup(); mISDN_timer_cleanup(); class_unregister(&mISDN_class); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/mISDN/core.h +++ linux-azure-5.4.0/drivers/isdn/mISDN/core.h @@ -60,8 +60,8 @@ extern int mISDN_inittimer(u_int *); extern void mISDN_timer_cleanup(void); -extern int l1_init(u_int *); -extern void l1_cleanup(void); +extern int Isdnl1_Init(u_int *); +extern void Isdnl1_cleanup(void); extern int Isdnl2_Init(u_int *); extern void Isdnl2_cleanup(void); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/mISDN/l1oip.h +++ linux-azure-5.4.0/drivers/isdn/mISDN/l1oip.h @@ -59,6 +59,7 @@ int bundle; /* bundle channels in one frm */ int codec; /* codec to use for transmis. */ int limit; /* limit number of bchannels */ + bool shutdown; /* if card is released */ /* timer */ struct timer_list keep_tl; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/mISDN/l1oip_core.c +++ linux-azure-5.4.0/drivers/isdn/mISDN/l1oip_core.c @@ -275,7 +275,7 @@ p = frame; /* restart timer */ - if (time_before(hc->keep_tl.expires, jiffies + 5 * HZ)) + if (time_before(hc->keep_tl.expires, jiffies + 5 * HZ) && !hc->shutdown) mod_timer(&hc->keep_tl, jiffies + L1OIP_KEEPALIVE * HZ); else hc->keep_tl.expires = jiffies + L1OIP_KEEPALIVE * HZ; @@ -601,7 +601,9 @@ goto multiframe; /* restart timer */ - if (time_before(hc->timeout_tl.expires, jiffies + 5 * HZ) || !hc->timeout_on) { + if ((time_before(hc->timeout_tl.expires, jiffies + 5 * HZ) || + !hc->timeout_on) && + !hc->shutdown) { hc->timeout_on = 1; mod_timer(&hc->timeout_tl, jiffies + L1OIP_TIMEOUT * HZ); } else /* only adjust timer */ @@ -1232,11 +1234,10 @@ { int ch; - if (timer_pending(&hc->keep_tl)) - del_timer(&hc->keep_tl); + hc->shutdown = true; - if (timer_pending(&hc->timeout_tl)) - del_timer(&hc->timeout_tl); + del_timer_sync(&hc->keep_tl); + del_timer_sync(&hc->timeout_tl); cancel_work_sync(&hc->workq); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/isdn/mISDN/layer1.c +++ linux-azure-5.4.0/drivers/isdn/mISDN/layer1.c @@ -398,7 +398,7 @@ EXPORT_SYMBOL(create_l1); int -l1_init(u_int *deb) +Isdnl1_Init(u_int *deb) { debug = deb; l1fsm_s.state_count = L1S_STATE_COUNT; @@ -409,7 +409,7 @@ } void -l1_cleanup(void) +Isdnl1_cleanup(void) { mISDN_FsmFree(&l1fsm_s); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/leds/leds-as3645a.c +++ linux-azure-5.4.0/drivers/leds/leds-as3645a.c @@ -544,6 +544,7 @@ if (!flash->indicator_node) { dev_warn(&flash->client->dev, "can't find indicator node\n"); + rval = -ENODEV; goto out_err; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/leds/leds-ktd2692.c +++ linux-azure-5.4.0/drivers/leds/leds-ktd2692.c @@ -256,6 +256,17 @@ | KTD2692_REG_FLASH_CURRENT_BASE); } +static void regulator_disable_action(void *_data) +{ + struct device *dev = _data; + struct ktd2692_context *led = dev_get_drvdata(dev); + int ret; + + ret = regulator_disable(led->regulator); + if (ret) + dev_err(dev, "Failed to disable supply: %d\n", ret); +} + static int ktd2692_parse_dt(struct ktd2692_context *led, struct device *dev, struct ktd2692_led_config_data *cfg) { @@ -286,8 +297,14 @@ if (led->regulator) { ret = regulator_enable(led->regulator); - if (ret) + if (ret) { dev_err(dev, "Failed to enable supply: %d\n", ret); + } else { + ret = devm_add_action_or_reset(dev, + regulator_disable_action, dev); + if (ret) + return ret; + } } child_node = of_get_next_available_child(np, NULL); @@ -377,17 +394,9 @@ static int ktd2692_remove(struct platform_device *pdev) { struct ktd2692_context *led = platform_get_drvdata(pdev); - int ret; led_classdev_flash_unregister(&led->fled_cdev); - if (led->regulator) { - ret = regulator_disable(led->regulator); - if (ret) - dev_err(&pdev->dev, - "Failed to disable supply: %d\n", ret); - } - mutex_destroy(&led->lock); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/leds/leds-lt3593.c +++ linux-azure-5.4.0/drivers/leds/leds-lt3593.c @@ -103,10 +103,9 @@ init_data.default_label = ":"; ret = devm_led_classdev_register_ext(dev, &led_data->cdev, &init_data); - if (ret < 0) { - fwnode_handle_put(child); + fwnode_handle_put(child); + if (ret < 0) return ret; - } led_data->cdev.dev->of_node = dev->of_node; platform_set_drvdata(pdev, led_data); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/leds/trigger/ledtrig-audio.c +++ linux-azure-5.4.0/drivers/leds/trigger/ledtrig-audio.c @@ -6,10 +6,33 @@ #include #include #include +#include "../leds.h" -static struct led_trigger *ledtrig_audio[NUM_AUDIO_LEDS]; static enum led_brightness audio_state[NUM_AUDIO_LEDS]; +static int ledtrig_audio_mute_activate(struct led_classdev *led_cdev) +{ + led_set_brightness_nosleep(led_cdev, audio_state[LED_AUDIO_MUTE]); + return 0; +} + +static int ledtrig_audio_micmute_activate(struct led_classdev *led_cdev) +{ + led_set_brightness_nosleep(led_cdev, audio_state[LED_AUDIO_MICMUTE]); + return 0; +} + +static struct led_trigger ledtrig_audio[NUM_AUDIO_LEDS] = { + [LED_AUDIO_MUTE] = { + .name = "audio-mute", + .activate = ledtrig_audio_mute_activate, + }, + [LED_AUDIO_MICMUTE] = { + .name = "audio-micmute", + .activate = ledtrig_audio_micmute_activate, + }, +}; + enum led_brightness ledtrig_audio_get(enum led_audio type) { return audio_state[type]; @@ -19,24 +42,22 @@ void ledtrig_audio_set(enum led_audio type, enum led_brightness state) { audio_state[type] = state; - led_trigger_event(ledtrig_audio[type], state); + led_trigger_event(&ledtrig_audio[type], state); } EXPORT_SYMBOL_GPL(ledtrig_audio_set); static int __init ledtrig_audio_init(void) { - led_trigger_register_simple("audio-mute", - &ledtrig_audio[LED_AUDIO_MUTE]); - led_trigger_register_simple("audio-micmute", - &ledtrig_audio[LED_AUDIO_MICMUTE]); + led_trigger_register(&ledtrig_audio[LED_AUDIO_MUTE]); + led_trigger_register(&ledtrig_audio[LED_AUDIO_MICMUTE]); return 0; } module_init(ledtrig_audio_init); static void __exit ledtrig_audio_exit(void) { - led_trigger_unregister_simple(ledtrig_audio[LED_AUDIO_MUTE]); - led_trigger_unregister_simple(ledtrig_audio[LED_AUDIO_MICMUTE]); + led_trigger_unregister(&ledtrig_audio[LED_AUDIO_MUTE]); + led_trigger_unregister(&ledtrig_audio[LED_AUDIO_MICMUTE]); } module_exit(ledtrig_audio_exit); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/macintosh/Kconfig +++ linux-azure-5.4.0/drivers/macintosh/Kconfig @@ -44,6 +44,7 @@ config ADB_CUDA bool "Support for Cuda/Egret based Macs and PowerMacs" depends on (ADB || PPC_PMAC) && !PPC_PMAC64 + select RTC_LIB help This provides support for Cuda/Egret based Macintosh and Power Macintosh systems. This includes most m68k based Macs, @@ -57,6 +58,7 @@ config ADB_PMU bool "Support for PMU based PowerMacs and PowerBooks" depends on PPC_PMAC || MAC + select RTC_LIB help On PowerBooks, iBooks, and recent iMacs and Power Macintoshes, the PMU is an embedded microprocessor whose primary function is to @@ -67,6 +69,10 @@ this device; you should do so if your machine is one of those mentioned above. +config ADB_PMU_EVENT + def_bool y + depends on ADB_PMU && INPUT=y + config ADB_PMU_LED bool "Support for the Power/iBook front LED" depends on PPC_PMAC && ADB_PMU only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/macintosh/Makefile +++ linux-azure-5.4.0/drivers/macintosh/Makefile @@ -12,7 +12,8 @@ obj-$(CONFIG_INPUT_ADBHID) += adbhid.o obj-$(CONFIG_ANSLCD) += ans-lcd.o -obj-$(CONFIG_ADB_PMU) += via-pmu.o via-pmu-event.o +obj-$(CONFIG_ADB_PMU) += via-pmu.o +obj-$(CONFIG_ADB_PMU_EVENT) += via-pmu-event.o obj-$(CONFIG_ADB_PMU_LED) += via-pmu-led.o obj-$(CONFIG_PMAC_BACKLIGHT) += via-pmu-backlight.o obj-$(CONFIG_ADB_CUDA) += via-cuda.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/macintosh/adb.c +++ linux-azure-5.4.0/drivers/macintosh/adb.c @@ -647,7 +647,7 @@ switch(req->data[1]) { case ADB_QUERY_GETDEVINFO: - if (req->nbytes < 3) + if (req->nbytes < 3 || req->data[2] >= 16) break; mutex_lock(&adb_handler_mutex); req->reply[0] = adb_handler[req->data[2]].original_address; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/macintosh/via-pmu.c +++ linux-azure-5.4.0/drivers/macintosh/via-pmu.c @@ -1464,7 +1464,7 @@ pmu_pass_intr(data, len); /* len == 6 is probably a bad check. But how do I * know what PMU versions send what events here? */ - if (len == 6) { + if (IS_ENABLED(CONFIG_ADB_PMU_EVENT) && len == 6) { via_pmu_event(PMU_EVT_POWER, !!(data[1]&8)); via_pmu_event(PMU_EVT_LID, data[1]&1); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mailbox/bcm-flexrm-mailbox.c +++ linux-azure-5.4.0/drivers/mailbox/bcm-flexrm-mailbox.c @@ -632,15 +632,15 @@ rc = dma_map_sg(dev, msg->spu.src, sg_nents(msg->spu.src), DMA_TO_DEVICE); - if (rc < 0) - return rc; + if (!rc) + return -EIO; rc = dma_map_sg(dev, msg->spu.dst, sg_nents(msg->spu.dst), DMA_FROM_DEVICE); - if (rc < 0) { + if (!rc) { dma_unmap_sg(dev, msg->spu.src, sg_nents(msg->spu.src), DMA_TO_DEVICE); - return rc; + return -EIO; } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mcb/mcb-core.c +++ linux-azure-5.4.0/drivers/mcb/mcb-core.c @@ -277,8 +277,8 @@ bus_nr = ida_simple_get(&mcb_ida, 0, 0, GFP_KERNEL); if (bus_nr < 0) { - rc = bus_nr; - goto err_free; + kfree(bus); + return ERR_PTR(bus_nr); } bus->bus_nr = bus_nr; @@ -293,12 +293,12 @@ dev_set_name(&bus->dev, "mcb:%d", bus_nr); rc = device_add(&bus->dev); if (rc) - goto err_free; + goto err_put; return bus; -err_free: - put_device(carrier); - kfree(bus); + +err_put: + put_device(&bus->dev); return ERR_PTR(rc); } EXPORT_SYMBOL_GPL(mcb_alloc_bus); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/md/dm-log.c +++ linux-azure-5.4.0/drivers/md/dm-log.c @@ -415,8 +415,7 @@ /* * Work out how many "unsigned long"s we need to hold the bitset. */ - bitset_size = dm_round_up(region_count, - sizeof(*lc->clean_bits) << BYTE_SHIFT); + bitset_size = dm_round_up(region_count, BITS_PER_LONG); bitset_size >>= BYTE_SHIFT; lc->bitset_uint32_count = bitset_size / sizeof(*lc->clean_bits); @@ -616,7 +615,7 @@ log_clear_bit(lc, lc->clean_bits, i); /* clear any old bits -- device has shrunk */ - for (i = lc->region_count; i % (sizeof(*lc->clean_bits) << BYTE_SHIFT); i++) + for (i = lc->region_count; i % BITS_PER_LONG; i++) log_clear_bit(lc, lc->clean_bits, i); /* copy clean across to sync */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/md/dm-stats.c +++ linux-azure-5.4.0/drivers/md/dm-stats.c @@ -224,6 +224,7 @@ atomic_read(&shared->in_flight[READ]), atomic_read(&shared->in_flight[WRITE])); } + cond_resched(); } dm_stat_free(&s->rcu_head); } @@ -313,6 +314,7 @@ for (ni = 0; ni < n_entries; ni++) { atomic_set(&s->stat_shared[ni].in_flight[READ], 0); atomic_set(&s->stat_shared[ni].in_flight[WRITE], 0); + cond_resched(); } if (s->n_histogram_entries) { @@ -325,6 +327,7 @@ for (ni = 0; ni < n_entries; ni++) { s->stat_shared[ni].tmp.histogram = hi; hi += s->n_histogram_entries + 1; + cond_resched(); } } @@ -345,6 +348,7 @@ for (ni = 0; ni < n_entries; ni++) { p[ni].histogram = hi; hi += s->n_histogram_entries + 1; + cond_resched(); } } } @@ -474,6 +478,7 @@ } DMEMIT("\n"); } + cond_resched(); } mutex_unlock(&stats->mutex); @@ -750,6 +755,7 @@ local_irq_enable(); } } + cond_resched(); } } @@ -865,6 +871,8 @@ if (unlikely(sz + 1 >= maxlen)) goto buffer_overflow; + + cond_resched(); } if (clear) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/md/dm-verity-verify-sig.c +++ linux-azure-5.4.0/drivers/md/dm-verity-verify-sig.c @@ -15,7 +15,7 @@ #define DM_VERITY_VERIFY_ERR(s) DM_VERITY_ROOT_HASH_VERIFICATION " " s static bool require_signatures; -module_param(require_signatures, bool, false); +module_param(require_signatures, bool, 0444); MODULE_PARM_DESC(require_signatures, "Verify the roothash of dm-verity hash tree"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/md/persistent-data/dm-btree.c +++ linux-azure-5.4.0/drivers/md/persistent-data/dm-btree.c @@ -83,14 +83,16 @@ } static int insert_at(size_t value_size, struct btree_node *node, unsigned index, - uint64_t key, void *value) - __dm_written_to_disk(value) + uint64_t key, void *value) + __dm_written_to_disk(value) { uint32_t nr_entries = le32_to_cpu(node->header.nr_entries); + uint32_t max_entries = le32_to_cpu(node->header.max_entries); __le64 key_le = cpu_to_le64(key); if (index > nr_entries || - index >= le32_to_cpu(node->header.max_entries)) { + index >= max_entries || + nr_entries >= max_entries) { DMERR("too many entries in btree node for insert"); __dm_unbless_for_disk(value); return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/common/saa7146/saa7146_fops.c +++ linux-azure-5.4.0/drivers/media/common/saa7146/saa7146_fops.c @@ -525,7 +525,7 @@ ERR("out of memory. aborting.\n"); kfree(vv); v4l2_ctrl_handler_free(hdl); - return -1; + return -ENOMEM; } saa7146_video_uops.init(dev,vv); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/common/siano/smscoreapi.c +++ linux-azure-5.4.0/drivers/media/common/siano/smscoreapi.c @@ -908,7 +908,7 @@ void *buffer, size_t size) { struct sms_firmware *firmware = (struct sms_firmware *) buffer; - struct sms_msg_data4 *msg; + struct sms_msg_data5 *msg; u32 mem_address, calc_checksum = 0; u32 i, *ptr; u8 *payload = firmware->payload; @@ -989,24 +989,20 @@ goto exit_fw_download; if (coredev->mode == DEVICE_MODE_NONE) { - struct sms_msg_data *trigger_msg = - (struct sms_msg_data *) msg; - pr_debug("sending MSG_SMS_SWDOWNLOAD_TRIGGER_REQ\n"); SMS_INIT_MSG(&msg->x_msg_header, MSG_SMS_SWDOWNLOAD_TRIGGER_REQ, - sizeof(struct sms_msg_hdr) + - sizeof(u32) * 5); + sizeof(*msg)); - trigger_msg->msg_data[0] = firmware->start_address; + msg->msg_data[0] = firmware->start_address; /* Entry point */ - trigger_msg->msg_data[1] = 6; /* Priority */ - trigger_msg->msg_data[2] = 0x200; /* Stack size */ - trigger_msg->msg_data[3] = 0; /* Parameter */ - trigger_msg->msg_data[4] = 4; /* Task ID */ + msg->msg_data[1] = 6; /* Priority */ + msg->msg_data[2] = 0x200; /* Stack size */ + msg->msg_data[3] = 0; /* Parameter */ + msg->msg_data[4] = 4; /* Task ID */ - rc = smscore_sendrequest_and_wait(coredev, trigger_msg, - trigger_msg->x_msg_header.msg_length, + rc = smscore_sendrequest_and_wait(coredev, msg, + msg->x_msg_header.msg_length, &coredev->trigger_done); } else { SMS_INIT_MSG(&msg->x_msg_header, MSG_SW_RELOAD_EXEC_REQ, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/common/siano/smscoreapi.h +++ linux-azure-5.4.0/drivers/media/common/siano/smscoreapi.h @@ -629,9 +629,9 @@ u32 msg_data[2]; }; -struct sms_msg_data4 { +struct sms_msg_data5 { struct sms_msg_hdr x_msg_header; - u32 msg_data[4]; + u32 msg_data[5]; }; struct sms_data_download { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/common/videobuf2/videobuf2-core.c +++ linux-azure-5.4.0/drivers/media/common/videobuf2/videobuf2-core.c @@ -1512,6 +1512,7 @@ struct media_request *req) { struct vb2_buffer *vb; + enum vb2_buffer_state orig_state; int ret; if (q->error) { @@ -1611,6 +1612,7 @@ * Add to the queued buffers list, a buffer will stay on it until * dequeued in dqbuf. */ + orig_state = vb->state; list_add_tail(&vb->queued_entry, &q->queued_list); q->queued_count++; q->waiting_for_buffers = false; @@ -1641,8 +1643,17 @@ if (q->streaming && !q->start_streaming_called && q->queued_count >= q->min_buffers_needed) { ret = vb2_start_streaming(q); - if (ret) + if (ret) { + /* + * Since vb2_core_qbuf will return with an error, + * we should return it to state DEQUEUED since + * the error indicates that the buffer wasn't queued. + */ + list_del(&vb->queued_entry); + q->queued_count--; + vb->state = orig_state; return ret; + } } dprintk(2, "qbuf of buffer %d succeeded\n", vb->index); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/common/videobuf2/videobuf2-dma-contig.c +++ linux-azure-5.4.0/drivers/media/common/videobuf2/videobuf2-dma-contig.c @@ -154,7 +154,7 @@ buf->cookie = dma_alloc_attrs(dev, size, &buf->dma_addr, GFP_KERNEL | gfp_flags, buf->attrs); if (!buf->cookie) { - dev_err(dev, "dma_alloc_coherent of size %ld failed\n", size); + dev_err(dev, "dma_alloc_coherent of size %lu failed\n", size); kfree(buf); return ERR_PTR(-ENOMEM); } @@ -200,9 +200,9 @@ vma->vm_ops->open(vma); - pr_debug("%s: mapped dma addr 0x%08lx at 0x%08lx, size %ld\n", - __func__, (unsigned long)buf->dma_addr, vma->vm_start, - buf->size); + pr_debug("%s: mapped dma addr 0x%08lx at 0x%08lx, size %lu\n", + __func__, (unsigned long)buf->dma_addr, vma->vm_start, + buf->size); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-core/dmxdev.c +++ linux-azure-5.4.0/drivers/media/dvb-core/dmxdev.c @@ -1413,7 +1413,7 @@ }; int dvb_dmxdev_init(struct dmxdev *dmxdev, struct dvb_adapter *dvb_adapter) { - int i; + int i, ret; if (dmxdev->demux->open(dmxdev->demux) < 0) return -EUSERS; @@ -1432,14 +1432,26 @@ DMXDEV_STATE_FREE); } - dvb_register_device(dvb_adapter, &dmxdev->dvbdev, &dvbdev_demux, dmxdev, + ret = dvb_register_device(dvb_adapter, &dmxdev->dvbdev, &dvbdev_demux, dmxdev, DVB_DEVICE_DEMUX, dmxdev->filternum); - dvb_register_device(dvb_adapter, &dmxdev->dvr_dvbdev, &dvbdev_dvr, + if (ret < 0) + goto err_register_dvbdev; + + ret = dvb_register_device(dvb_adapter, &dmxdev->dvr_dvbdev, &dvbdev_dvr, dmxdev, DVB_DEVICE_DVR, dmxdev->filternum); + if (ret < 0) + goto err_register_dvr_dvbdev; dvb_ringbuffer_init(&dmxdev->dvr_buffer, NULL, 8192); return 0; + +err_register_dvr_dvbdev: + dvb_unregister_device(dmxdev->dvbdev); +err_register_dvbdev: + vfree(dmxdev->filter); + dmxdev->filter = NULL; + return ret; } EXPORT_SYMBOL(dvb_dmxdev_init); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-core/dvb_net.c +++ linux-azure-5.4.0/drivers/media/dvb-core/dvb_net.c @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -1462,14 +1463,20 @@ struct net_device *netdev; struct dvb_net_priv *priv_data; struct dvb_net_if *dvbnetif = parg; + int if_num = dvbnetif->if_num; - if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX || - !dvbnet->state[dvbnetif->if_num]) { + if (if_num >= DVB_NET_DEVICES_MAX) { ret = -EINVAL; goto ioctl_error; } + if_num = array_index_nospec(if_num, DVB_NET_DEVICES_MAX); - netdev = dvbnet->device[dvbnetif->if_num]; + if (!dvbnet->state[if_num]) { + ret = -EINVAL; + goto ioctl_error; + } + + netdev = dvbnet->device[if_num]; priv_data = netdev_priv(netdev); dvbnetif->pid=priv_data->pid; @@ -1522,14 +1529,20 @@ struct net_device *netdev; struct dvb_net_priv *priv_data; struct __dvb_net_if_old *dvbnetif = parg; + int if_num = dvbnetif->if_num; + + if (if_num >= DVB_NET_DEVICES_MAX) { + ret = -EINVAL; + goto ioctl_error; + } + if_num = array_index_nospec(if_num, DVB_NET_DEVICES_MAX); - if (dvbnetif->if_num >= DVB_NET_DEVICES_MAX || - !dvbnet->state[dvbnetif->if_num]) { + if (!dvbnet->state[if_num]) { ret = -EINVAL; goto ioctl_error; } - netdev = dvbnet->device[dvbnetif->if_num]; + netdev = dvbnet->device[if_num]; priv_data = netdev_priv(netdev); dvbnetif->pid=priv_data->pid; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-core/dvb_vb2.c +++ linux-azure-5.4.0/drivers/media/dvb-core/dvb_vb2.c @@ -358,6 +358,12 @@ int dvb_vb2_querybuf(struct dvb_vb2_ctx *ctx, struct dmx_buffer *b) { + struct vb2_queue *q = &ctx->vb_q; + + if (b->index >= q->num_buffers) { + dprintk(1, "[%s] buffer index out of range\n", ctx->name); + return -EINVAL; + } vb2_core_querybuf(&ctx->vb_q, b->index, b); dprintk(3, "[%s] index=%d\n", ctx->name, b->index); return 0; @@ -382,8 +388,13 @@ int dvb_vb2_qbuf(struct dvb_vb2_ctx *ctx, struct dmx_buffer *b) { + struct vb2_queue *q = &ctx->vb_q; int ret; + if (b->index >= q->num_buffers) { + dprintk(1, "[%s] buffer index out of range\n", ctx->name); + return -EINVAL; + } ret = vb2_core_qbuf(&ctx->vb_q, b->index, b, NULL); if (ret) { dprintk(1, "[%s] index=%d errno=%d\n", ctx->name, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-frontends/dib8000.c +++ linux-azure-5.4.0/drivers/media/dvb-frontends/dib8000.c @@ -2107,32 +2107,55 @@ dib8000_write_word(state, 117 + mode, ana_fe[mode]); } -static const u16 lut_prbs_2k[14] = { - 0, 0x423, 0x009, 0x5C7, 0x7A6, 0x3D8, 0x527, 0x7FF, 0x79B, 0x3D6, 0x3A2, 0x53B, 0x2F4, 0x213 +static const u16 lut_prbs_2k[13] = { + 0x423, 0x009, 0x5C7, + 0x7A6, 0x3D8, 0x527, + 0x7FF, 0x79B, 0x3D6, + 0x3A2, 0x53B, 0x2F4, + 0x213 }; -static const u16 lut_prbs_4k[14] = { - 0, 0x208, 0x0C3, 0x7B9, 0x423, 0x5C7, 0x3D8, 0x7FF, 0x3D6, 0x53B, 0x213, 0x029, 0x0D0, 0x48E + +static const u16 lut_prbs_4k[13] = { + 0x208, 0x0C3, 0x7B9, + 0x423, 0x5C7, 0x3D8, + 0x7FF, 0x3D6, 0x53B, + 0x213, 0x029, 0x0D0, + 0x48E }; -static const u16 lut_prbs_8k[14] = { - 0, 0x740, 0x069, 0x7DD, 0x208, 0x7B9, 0x5C7, 0x7FF, 0x53B, 0x029, 0x48E, 0x4C4, 0x367, 0x684 + +static const u16 lut_prbs_8k[13] = { + 0x740, 0x069, 0x7DD, + 0x208, 0x7B9, 0x5C7, + 0x7FF, 0x53B, 0x029, + 0x48E, 0x4C4, 0x367, + 0x684 }; static u16 dib8000_get_init_prbs(struct dib8000_state *state, u16 subchannel) { int sub_channel_prbs_group = 0; + int prbs_group; - sub_channel_prbs_group = (subchannel / 3) + 1; - dprintk("sub_channel_prbs_group = %d , subchannel =%d prbs = 0x%04x\n", sub_channel_prbs_group, subchannel, lut_prbs_8k[sub_channel_prbs_group]); + sub_channel_prbs_group = subchannel / 3; + if (sub_channel_prbs_group >= ARRAY_SIZE(lut_prbs_2k)) + return 0; switch (state->fe[0]->dtv_property_cache.transmission_mode) { case TRANSMISSION_MODE_2K: - return lut_prbs_2k[sub_channel_prbs_group]; + prbs_group = lut_prbs_2k[sub_channel_prbs_group]; + break; case TRANSMISSION_MODE_4K: - return lut_prbs_4k[sub_channel_prbs_group]; + prbs_group = lut_prbs_4k[sub_channel_prbs_group]; + break; default: case TRANSMISSION_MODE_8K: - return lut_prbs_8k[sub_channel_prbs_group]; + prbs_group = lut_prbs_8k[sub_channel_prbs_group]; } + + dprintk("sub_channel_prbs_group = %d , subchannel =%d prbs = 0x%04x\n", + sub_channel_prbs_group, subchannel, prbs_group); + + return prbs_group; } static void dib8000_set_13seg_channel(struct dib8000_state *state) @@ -2409,10 +2432,8 @@ /* TSB or ISDBT ? apply it now */ if (c->isdbt_sb_mode) { dib8000_set_sb_channel(state); - if (c->isdbt_sb_subchannel < 14) - init_prbs = dib8000_get_init_prbs(state, c->isdbt_sb_subchannel); - else - init_prbs = 0; + init_prbs = dib8000_get_init_prbs(state, + c->isdbt_sb_subchannel); } else { dib8000_set_13seg_channel(state); init_prbs = 0xfff; @@ -3004,6 +3025,7 @@ unsigned long *timeout = &state->timeout; unsigned long now = jiffies; + u16 init_prbs; #ifdef DIB8000_AGC_FREEZE u16 agc1, agc2; #endif @@ -3302,8 +3324,10 @@ break; case CT_DEMOD_STEP_11: /* 41 : init prbs autosearch */ - if (state->subchannel <= 41) { - dib8000_set_subchannel_prbs(state, dib8000_get_init_prbs(state, state->subchannel)); + init_prbs = dib8000_get_init_prbs(state, state->subchannel); + + if (init_prbs) { + dib8000_set_subchannel_prbs(state, init_prbs); *tune_state = CT_DEMOD_STEP_9; } else { *tune_state = CT_DEMOD_STOP; @@ -4449,8 +4473,10 @@ state->timf_default = cfg->pll->timf; - if (dib8000_identify(&state->i2c) == 0) + if (dib8000_identify(&state->i2c) == 0) { + kfree(fe); goto error; + } dibx000_init_i2c_master(&state->i2c_master, DIB8000, state->i2c.adap, state->i2c.addr); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-frontends/drxk_hard.c +++ linux-azure-5.4.0/drivers/media/dvb-frontends/drxk_hard.c @@ -6684,7 +6684,7 @@ static int drxk_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks) { struct drxk_state *state = fe->demodulator_priv; - u16 err; + u16 err = 0; dprintk(1, "\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/dvb-frontends/mn88443x.c +++ linux-azure-5.4.0/drivers/media/dvb-frontends/mn88443x.c @@ -204,11 +204,18 @@ struct regmap *regmap_t; }; -static void mn88443x_cmn_power_on(struct mn88443x_priv *chip) +static int mn88443x_cmn_power_on(struct mn88443x_priv *chip) { + struct device *dev = &chip->client_s->dev; struct regmap *r_t = chip->regmap_t; + int ret; - clk_prepare_enable(chip->mclk); + ret = clk_prepare_enable(chip->mclk); + if (ret) { + dev_err(dev, "Failed to prepare and enable mclk: %d\n", + ret); + return ret; + } gpiod_set_value_cansleep(chip->reset_gpio, 1); usleep_range(100, 1000); @@ -222,6 +229,8 @@ } else { regmap_write(r_t, HIZSET3, 0x8f); } + + return 0; } static void mn88443x_cmn_power_off(struct mn88443x_priv *chip) @@ -738,7 +747,10 @@ chip->fe.demodulator_priv = chip; i2c_set_clientdata(client, chip); - mn88443x_cmn_power_on(chip); + ret = mn88443x_cmn_power_on(chip); + if (ret) + goto err_i2c_t; + mn88443x_s_sleep(chip); mn88443x_t_sleep(chip); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/firewire/firedtv-avc.c +++ linux-azure-5.4.0/drivers/media/firewire/firedtv-avc.c @@ -1165,7 +1165,11 @@ read_pos += program_info_length; write_pos += program_info_length; } - while (read_pos < length) { + while (read_pos + 4 < length) { + if (write_pos + 4 >= sizeof(c->operand) - 4) { + ret = -EINVAL; + goto out; + } c->operand[write_pos++] = msg[read_pos++]; c->operand[write_pos++] = msg[read_pos++]; c->operand[write_pos++] = msg[read_pos++]; @@ -1177,13 +1181,17 @@ c->operand[write_pos++] = es_info_length >> 8; c->operand[write_pos++] = es_info_length & 0xff; if (es_info_length > 0) { + if (read_pos >= length) { + ret = -EINVAL; + goto out; + } pmt_cmd_id = msg[read_pos++]; if (pmt_cmd_id != 1 && pmt_cmd_id != 4) dev_err(fdtv->device, "invalid pmt_cmd_id %d at stream level\n", pmt_cmd_id); - if (es_info_length > sizeof(c->operand) - 4 - - write_pos) { + if (es_info_length > sizeof(c->operand) - 4 - write_pos || + es_info_length > length - read_pos) { ret = -EINVAL; goto out; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/firewire/firedtv-ci.c +++ linux-azure-5.4.0/drivers/media/firewire/firedtv-ci.c @@ -134,6 +134,8 @@ } else { data_length = msg->msg[3]; } + if (data_length > sizeof(msg->msg) - data_pos) + return -EINVAL; return avc_ca_pmt(fdtv, &msg->msg[data_pos], data_length); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/imx258.c +++ linux-azure-5.4.0/drivers/media/i2c/imx258.c @@ -22,7 +22,7 @@ #define IMX258_CHIP_ID 0x0258 /* V_TIMING internal */ -#define IMX258_VTS_30FPS 0x0c98 +#define IMX258_VTS_30FPS 0x0c50 #define IMX258_VTS_30FPS_2K 0x0638 #define IMX258_VTS_30FPS_VGA 0x034c #define IMX258_VTS_MAX 0xffff @@ -46,7 +46,7 @@ /* Analog gain control */ #define IMX258_REG_ANALOG_GAIN 0x0204 #define IMX258_ANA_GAIN_MIN 0 -#define IMX258_ANA_GAIN_MAX 0x1fff +#define IMX258_ANA_GAIN_MAX 480 #define IMX258_ANA_GAIN_STEP 1 #define IMX258_ANA_GAIN_DEFAULT 0x0 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/ir-kbd-i2c.c +++ linux-azure-5.4.0/drivers/media/i2c/ir-kbd-i2c.c @@ -678,8 +678,8 @@ goto out_unlock; } - i = i2c_master_recv(ir->tx_c, buf, 1); - if (i != 1) { + ret = i2c_master_recv(ir->tx_c, buf, 1); + if (ret != 1) { dev_err(&ir->rc->dev, "i2c_master_recv failed with %d\n", ret); ret = -EIO; goto out_unlock; @@ -791,6 +791,7 @@ rc_proto = RC_PROTO_BIT_RC5 | RC_PROTO_BIT_RC6_MCE | RC_PROTO_BIT_RC6_6A_32; ir_codes = RC_MAP_HAUPPAUGE; + ir->polling_interval = 125; probe_tx = true; break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/mt9p031.c +++ linux-azure-5.4.0/drivers/media/i2c/mt9p031.c @@ -78,7 +78,9 @@ #define MT9P031_PIXEL_CLOCK_INVERT (1 << 15) #define MT9P031_PIXEL_CLOCK_SHIFT(n) ((n) << 8) #define MT9P031_PIXEL_CLOCK_DIVIDE(n) ((n) << 0) -#define MT9P031_FRAME_RESTART 0x0b +#define MT9P031_RESTART 0x0b +#define MT9P031_FRAME_PAUSE_RESTART (1 << 1) +#define MT9P031_FRAME_RESTART (1 << 0) #define MT9P031_SHUTTER_DELAY 0x0c #define MT9P031_RST 0x0d #define MT9P031_RST_ENABLE 1 @@ -445,9 +447,23 @@ static int mt9p031_s_stream(struct v4l2_subdev *subdev, int enable) { struct mt9p031 *mt9p031 = to_mt9p031(subdev); + struct i2c_client *client = v4l2_get_subdevdata(subdev); + int val; int ret; if (!enable) { + /* enable pause restart */ + val = MT9P031_FRAME_PAUSE_RESTART; + ret = mt9p031_write(client, MT9P031_RESTART, val); + if (ret < 0) + return ret; + + /* enable restart + keep pause restart set */ + val |= MT9P031_FRAME_RESTART; + ret = mt9p031_write(client, MT9P031_RESTART, val); + if (ret < 0) + return ret; + /* Stop sensor readout */ ret = mt9p031_set_output_control(mt9p031, MT9P031_OUTPUT_CONTROL_CEN, 0); @@ -467,6 +483,16 @@ if (ret < 0) return ret; + /* + * - clear pause restart + * - don't clear restart as clearing restart manually can cause + * undefined behavior + */ + val = MT9P031_FRAME_RESTART; + ret = mt9p031_write(client, MT9P031_RESTART, val); + if (ret < 0) + return ret; + return mt9p031_pll_enable(mt9p031); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/ov7670.c +++ linux-azure-5.4.0/drivers/media/i2c/ov7670.c @@ -2000,7 +2000,6 @@ v4l2_async_unregister_subdev(sd); v4l2_ctrl_handler_free(&info->hdl); media_entity_cleanup(&info->sd.entity); - ov7670_power_off(sd); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/s5c73m3/s5c73m3-core.c +++ linux-azure-5.4.0/drivers/media/i2c/s5c73m3/s5c73m3-core.c @@ -1386,7 +1386,7 @@ s5c73m3_gpio_deassert(state, STBY); usleep_range(100, 200); - s5c73m3_gpio_deassert(state, RST); + s5c73m3_gpio_deassert(state, RSET); usleep_range(50, 100); return 0; @@ -1401,7 +1401,7 @@ { int i, ret; - if (s5c73m3_gpio_assert(state, RST)) + if (s5c73m3_gpio_assert(state, RSET)) usleep_range(10, 50); if (s5c73m3_gpio_assert(state, STBY)) @@ -1606,7 +1606,7 @@ state->mclk_frequency = pdata->mclk_frequency; state->gpio[STBY] = pdata->gpio_stby; - state->gpio[RST] = pdata->gpio_reset; + state->gpio[RSET] = pdata->gpio_reset; return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/s5c73m3/s5c73m3.h +++ linux-azure-5.4.0/drivers/media/i2c/s5c73m3/s5c73m3.h @@ -353,7 +353,7 @@ enum s5c73m3_gpio_id { STBY, - RST, + RSET, GPIO_NUM, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/s5k4ecgx.c +++ linux-azure-5.4.0/drivers/media/i2c/s5k4ecgx.c @@ -173,7 +173,7 @@ enum s5k4ecgx_gpio_id { STBY, - RST, + RSET, GPIO_NUM, }; @@ -476,7 +476,7 @@ if (s5k4ecgx_gpio_set_value(priv, STBY, priv->gpio[STBY].level)) usleep_range(30, 50); - if (s5k4ecgx_gpio_set_value(priv, RST, priv->gpio[RST].level)) + if (s5k4ecgx_gpio_set_value(priv, RSET, priv->gpio[RSET].level)) usleep_range(30, 50); return 0; @@ -484,7 +484,7 @@ static int __s5k4ecgx_power_off(struct s5k4ecgx *priv) { - if (s5k4ecgx_gpio_set_value(priv, RST, !priv->gpio[RST].level)) + if (s5k4ecgx_gpio_set_value(priv, RSET, !priv->gpio[RSET].level)) usleep_range(30, 50); if (s5k4ecgx_gpio_set_value(priv, STBY, !priv->gpio[STBY].level)) @@ -872,7 +872,7 @@ int ret; priv->gpio[STBY].gpio = -EINVAL; - priv->gpio[RST].gpio = -EINVAL; + priv->gpio[RSET].gpio = -EINVAL; ret = s5k4ecgx_config_gpio(gpio->gpio, gpio->level, "S5K4ECGX_STBY"); @@ -891,7 +891,7 @@ s5k4ecgx_free_gpios(priv); return ret; } - priv->gpio[RST] = *gpio; + priv->gpio[RSET] = *gpio; if (gpio_is_valid(gpio->gpio)) gpio_set_value(gpio->gpio, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/s5k5baf.c +++ linux-azure-5.4.0/drivers/media/i2c/s5k5baf.c @@ -235,7 +235,7 @@ enum s5k5baf_gpio_id { STBY, - RST, + RSET, NUM_GPIOS, }; @@ -970,7 +970,7 @@ s5k5baf_gpio_deassert(state, STBY); usleep_range(50, 100); - s5k5baf_gpio_deassert(state, RST); + s5k5baf_gpio_deassert(state, RSET); return 0; err_reg_dis: @@ -988,7 +988,7 @@ state->apply_cfg = 0; state->apply_crop = 0; - s5k5baf_gpio_assert(state, RST); + s5k5baf_gpio_assert(state, RSET); s5k5baf_gpio_assert(state, STBY); if (!IS_ERR(state->clock)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/s5k6aa.c +++ linux-azure-5.4.0/drivers/media/i2c/s5k6aa.c @@ -177,7 +177,7 @@ enum s5k6aa_gpio_id { STBY, - RST, + RSET, GPIO_NUM, }; @@ -841,7 +841,7 @@ ret = s5k6aa->s_power(1); usleep_range(4000, 5000); - if (s5k6aa_gpio_deassert(s5k6aa, RST)) + if (s5k6aa_gpio_deassert(s5k6aa, RSET)) msleep(20); return ret; @@ -851,7 +851,7 @@ { int ret; - if (s5k6aa_gpio_assert(s5k6aa, RST)) + if (s5k6aa_gpio_assert(s5k6aa, RSET)) usleep_range(100, 150); if (s5k6aa->s_power) { @@ -1510,7 +1510,7 @@ int ret; s5k6aa->gpio[STBY].gpio = -EINVAL; - s5k6aa->gpio[RST].gpio = -EINVAL; + s5k6aa->gpio[RSET].gpio = -EINVAL; gpio = &pdata->gpio_stby; if (gpio_is_valid(gpio->gpio)) { @@ -1533,7 +1533,7 @@ if (ret < 0) return ret; - s5k6aa->gpio[RST] = *gpio; + s5k6aa->gpio[RSET] = *gpio; } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/i2c/saa6588.c +++ linux-azure-5.4.0/drivers/media/i2c/saa6588.c @@ -380,7 +380,7 @@ /* ---------------------------------------------------------------------- */ -static long saa6588_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg) +static long saa6588_command(struct v4l2_subdev *sd, unsigned int cmd, void *arg) { struct saa6588 *s = to_saa6588(sd); struct saa6588_command *a = arg; @@ -433,7 +433,7 @@ /* ----------------------------------------------------------------------- */ static const struct v4l2_subdev_core_ops saa6588_core_ops = { - .ioctl = saa6588_ioctl, + .command = saa6588_command, }; static const struct v4l2_subdev_tuner_ops saa6588_tuner_ops = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/mc/Makefile +++ linux-azure-5.4.0/drivers/media/mc/Makefile @@ -3,7 +3,7 @@ mc-objs := mc-device.o mc-devnode.o mc-entity.o \ mc-request.o -ifeq ($(CONFIG_USB),y) +ifneq ($(CONFIG_USB),) mc-objs += mc-dev-allocator.o endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/b2c2/flexcop-pci.c +++ linux-azure-5.4.0/drivers/media/pci/b2c2/flexcop-pci.c @@ -185,6 +185,8 @@ dma_addr_t cur_addr = fc->read_ibi_reg(fc,dma1_008).dma_0x8.dma_cur_addr << 2; u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0; + if (cur_pos > fc_pci->dma[0].size * 2) + goto error; deb_irq("%u irq: %08x cur_addr: %llx: cur_pos: %08x, last_cur_pos: %08x ", jiffies_to_usecs(jiffies - fc_pci->last_irq), @@ -225,6 +227,7 @@ ret = IRQ_NONE; } +error: spin_unlock_irqrestore(&fc_pci->irq_lock, flags); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/bt8xx/bt878.c +++ linux-azure-5.4.0/drivers/media/pci/bt8xx/bt878.c @@ -477,6 +477,9 @@ btwrite(0, BT878_AINT_MASK); bt878_num++; + if (!bt->tasklet.func) + tasklet_disable(&bt->tasklet); + return 0; fail2: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/cobalt/cobalt-driver.c +++ linux-azure-5.4.0/drivers/media/pci/cobalt/cobalt-driver.c @@ -667,6 +667,7 @@ return -ENOMEM; cobalt->pci_dev = pci_dev; cobalt->instance = i; + mutex_init(&cobalt->pci_lock); retval = v4l2_device_register(&pci_dev->dev, &cobalt->v4l2_dev); if (retval) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/cobalt/cobalt-driver.h +++ linux-azure-5.4.0/drivers/media/pci/cobalt/cobalt-driver.h @@ -251,6 +251,8 @@ int instance; struct pci_dev *pci_dev; struct v4l2_device v4l2_dev; + /* serialize PCI access in cobalt_s_bit_sysctrl() */ + struct mutex pci_lock; void __iomem *bar0, *bar1; @@ -320,10 +322,13 @@ static inline void cobalt_s_bit_sysctrl(struct cobalt *cobalt, int bit, int val) { - u32 ctrl = cobalt_read_bar1(cobalt, COBALT_SYS_CTRL_BASE); + u32 ctrl; + mutex_lock(&cobalt->pci_lock); + ctrl = cobalt_read_bar1(cobalt, COBALT_SYS_CTRL_BASE); cobalt_write_bar1(cobalt, COBALT_SYS_CTRL_BASE, (ctrl & ~(1UL << bit)) | (val << bit)); + mutex_unlock(&cobalt->pci_lock); } static inline u32 cobalt_g_sysstat(struct cobalt *cobalt) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/cx23885/cx23885-alsa.c +++ linux-azure-5.4.0/drivers/media/pci/cx23885/cx23885-alsa.c @@ -550,7 +550,7 @@ SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, THIS_MODULE, sizeof(struct cx23885_audio_dev), &card); if (err < 0) - goto error; + goto error_msg; chip = (struct cx23885_audio_dev *) card->private_data; chip->dev = dev; @@ -576,6 +576,7 @@ error: snd_card_free(card); +error_msg: pr_err("%s(): Failed to register analog audio adapter\n", __func__); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/cx88/cx88-mpeg.c +++ linux-azure-5.4.0/drivers/media/pci/cx88/cx88-mpeg.c @@ -162,6 +162,9 @@ cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET); q->count = 0; + /* clear interrupt status register */ + cx_write(MO_TS_INTSTAT, 0x1f1111); + /* enable irqs */ dprintk(1, "setting the interrupt mask\n"); cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/cx88/cx88-vbi.c +++ linux-azure-5.4.0/drivers/media/pci/cx88/cx88-vbi.c @@ -144,11 +144,10 @@ return -EINVAL; vb2_set_plane_payload(vb, 0, size); - cx88_risc_buffer(dev->pci, &buf->risc, sgt->sgl, - 0, VBI_LINE_LENGTH * lines, - VBI_LINE_LENGTH, 0, - lines); - return 0; + return cx88_risc_buffer(dev->pci, &buf->risc, sgt->sgl, + 0, VBI_LINE_LENGTH * lines, + VBI_LINE_LENGTH, 0, + lines); } static void buffer_finish(struct vb2_buffer *vb) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/ivtv/ivtv-driver.h +++ linux-azure-5.4.0/drivers/media/pci/ivtv/ivtv-driver.h @@ -333,7 +333,6 @@ struct ivtv *itv; /* for ease of use */ const char *name; /* name of the stream */ int type; /* stream type */ - u32 caps; /* V4L2 capabilities */ struct v4l2_fh *fh; /* pointer to the streaming filehandle */ spinlock_t qlock; /* locks access to the queues */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/ivtv/ivtv-ioctl.c +++ linux-azure-5.4.0/drivers/media/pci/ivtv/ivtv-ioctl.c @@ -443,7 +443,7 @@ struct ivtv_stream *s = &itv->streams[fh2id(fh)->type]; struct v4l2_window *winfmt = &fmt->fmt.win; - if (!(s->caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) + if (!(s->vdev.device_caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) return -EINVAL; if (!itv->osd_video_pbase) return -EINVAL; @@ -554,7 +554,7 @@ u32 chromakey = fmt->fmt.win.chromakey; u8 global_alpha = fmt->fmt.win.global_alpha; - if (!(s->caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) + if (!(s->vdev.device_caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) return -EINVAL; if (!itv->osd_video_pbase) return -EINVAL; @@ -1386,7 +1386,7 @@ 0, }; - if (!(s->caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) + if (!(s->vdev.device_caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) return -ENOTTY; if (!itv->osd_video_pbase) return -ENOTTY; @@ -1453,7 +1453,7 @@ struct ivtv_stream *s = &itv->streams[fh2id(fh)->type]; struct yuv_playback_info *yi = &itv->yuv_info; - if (!(s->caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) + if (!(s->vdev.device_caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) return -ENOTTY; if (!itv->osd_video_pbase) return -ENOTTY; @@ -1473,7 +1473,7 @@ struct ivtv *itv = id->itv; struct ivtv_stream *s = &itv->streams[fh2id(fh)->type]; - if (!(s->caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) + if (!(s->vdev.device_caps & V4L2_CAP_VIDEO_OUTPUT_OVERLAY)) return -ENOTTY; if (!itv->osd_video_pbase) return -ENOTTY; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/ivtv/ivtv-streams.c +++ linux-azure-5.4.0/drivers/media/pci/ivtv/ivtv-streams.c @@ -176,7 +176,7 @@ s->itv = itv; s->type = type; s->name = ivtv_stream_info[type].name; - s->caps = ivtv_stream_info[type].v4l2_caps; + s->vdev.device_caps = ivtv_stream_info[type].v4l2_caps; if (ivtv_stream_info[type].pio) s->dma = PCI_DMA_NONE; @@ -299,12 +299,9 @@ if (s_mpg->vdev.v4l2_dev) num = s_mpg->vdev.num + ivtv_stream_info[type].num_offset; } - s->vdev.device_caps = s->caps; - if (itv->osd_video_pbase) { - itv->streams[IVTV_DEC_STREAM_TYPE_YUV].vdev.device_caps |= - V4L2_CAP_VIDEO_OUTPUT_OVERLAY; - itv->streams[IVTV_DEC_STREAM_TYPE_MPG].vdev.device_caps |= - V4L2_CAP_VIDEO_OUTPUT_OVERLAY; + if (itv->osd_video_pbase && (type == IVTV_DEC_STREAM_TYPE_YUV || + type == IVTV_DEC_STREAM_TYPE_MPG)) { + s->vdev.device_caps |= V4L2_CAP_VIDEO_OUTPUT_OVERLAY; itv->v4l2_cap |= V4L2_CAP_VIDEO_OUTPUT_OVERLAY; } video_set_drvdata(&s->vdev, s); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/netup_unidvb/netup_unidvb_core.c +++ linux-azure-5.4.0/drivers/media/pci/netup_unidvb/netup_unidvb_core.c @@ -258,19 +258,24 @@ if ((reg40 & AVL_IRQ_ASSERTED) != 0) { /* IRQ is being signaled */ reg_isr = readw(ndev->bmmio0 + REG_ISR); - if (reg_isr & NETUP_UNIDVB_IRQ_I2C0) { - iret = netup_i2c_interrupt(&ndev->i2c[0]); - } else if (reg_isr & NETUP_UNIDVB_IRQ_I2C1) { - iret = netup_i2c_interrupt(&ndev->i2c[1]); - } else if (reg_isr & NETUP_UNIDVB_IRQ_SPI) { + if (reg_isr & NETUP_UNIDVB_IRQ_SPI) iret = netup_spi_interrupt(ndev->spi); - } else if (reg_isr & NETUP_UNIDVB_IRQ_DMA1) { - iret = netup_dma_interrupt(&ndev->dma[0]); - } else if (reg_isr & NETUP_UNIDVB_IRQ_DMA2) { - iret = netup_dma_interrupt(&ndev->dma[1]); - } else if (reg_isr & NETUP_UNIDVB_IRQ_CI) { - iret = netup_ci_interrupt(ndev); + else if (!ndev->old_fw) { + if (reg_isr & NETUP_UNIDVB_IRQ_I2C0) { + iret = netup_i2c_interrupt(&ndev->i2c[0]); + } else if (reg_isr & NETUP_UNIDVB_IRQ_I2C1) { + iret = netup_i2c_interrupt(&ndev->i2c[1]); + } else if (reg_isr & NETUP_UNIDVB_IRQ_DMA1) { + iret = netup_dma_interrupt(&ndev->dma[0]); + } else if (reg_isr & NETUP_UNIDVB_IRQ_DMA2) { + iret = netup_dma_interrupt(&ndev->dma[1]); + } else if (reg_isr & NETUP_UNIDVB_IRQ_CI) { + iret = netup_ci_interrupt(ndev); + } else { + goto err; + } } else { +err: dev_err(&pci_dev->dev, "%s(): unknown interrupt 0x%x\n", __func__, reg_isr); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/ngene/ngene-core.c +++ linux-azure-5.4.0/drivers/media/pci/ngene/ngene-core.c @@ -385,7 +385,7 @@ com.cmd.hdr.Opcode = CMD_CONFIGURE_FREE_BUFFER; com.cmd.hdr.Length = 6; - memcpy(&com.cmd.ConfigureBuffers.config, config, 6); + memcpy(&com.cmd.ConfigureFreeBuffers.config, config, 6); com.in_len = 6; com.out_len = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/ngene/ngene.h +++ linux-azure-5.4.0/drivers/media/pci/ngene/ngene.h @@ -407,12 +407,14 @@ struct FW_CONFIGURE_FREE_BUFFERS { struct FW_HEADER hdr; - u8 UVI1_BufferLength; - u8 UVI2_BufferLength; - u8 TVO_BufferLength; - u8 AUD1_BufferLength; - u8 AUD2_BufferLength; - u8 TVA_BufferLength; + struct { + u8 UVI1_BufferLength; + u8 UVI2_BufferLength; + u8 TVO_BufferLength; + u8 AUD1_BufferLength; + u8 AUD2_BufferLength; + u8 TVA_BufferLength; + } __packed config; } __attribute__ ((__packed__)); struct FW_CONFIGURE_UART { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/saa7134/saa7134-video.c +++ linux-azure-5.4.0/drivers/media/pci/saa7134/saa7134-video.c @@ -1179,7 +1179,7 @@ saa_call_all(dev, tuner, standby); if (vdev->vfl_type == VFL_TYPE_RADIO) - saa_call_all(dev, core, ioctl, SAA6588_CMD_CLOSE, &cmd); + saa_call_all(dev, core, command, SAA6588_CMD_CLOSE, &cmd); mutex_unlock(&dev->lock); return 0; @@ -1198,7 +1198,7 @@ cmd.result = -ENODEV; mutex_lock(&dev->lock); - saa_call_all(dev, core, ioctl, SAA6588_CMD_READ, &cmd); + saa_call_all(dev, core, command, SAA6588_CMD_READ, &cmd); mutex_unlock(&dev->lock); return cmd.result; @@ -1214,7 +1214,7 @@ cmd.event_list = wait; cmd.poll_mask = 0; mutex_lock(&dev->lock); - saa_call_all(dev, core, ioctl, SAA6588_CMD_POLL, &cmd); + saa_call_all(dev, core, command, SAA6588_CMD_POLL, &cmd); mutex_unlock(&dev->lock); return rc | cmd.poll_mask; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/saa7146/hexium_gemini.c +++ linux-azure-5.4.0/drivers/media/pci/saa7146/hexium_gemini.c @@ -284,7 +284,12 @@ hexium_set_input(hexium, 0); hexium->cur_input = 0; - saa7146_vv_init(dev, &vv_data); + ret = saa7146_vv_init(dev, &vv_data); + if (ret) { + i2c_del_adapter(&hexium->i2c_adapter); + kfree(hexium); + return ret; + } vv_data.vid_ops.vidioc_enum_input = vidioc_enum_input; vv_data.vid_ops.vidioc_g_input = vidioc_g_input; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/saa7146/hexium_orion.c +++ linux-azure-5.4.0/drivers/media/pci/saa7146/hexium_orion.c @@ -355,10 +355,16 @@ static int hexium_attach(struct saa7146_dev *dev, struct saa7146_pci_extension_data *info) { struct hexium *hexium = (struct hexium *) dev->ext_priv; + int ret; DEB_EE("\n"); - saa7146_vv_init(dev, &vv_data); + ret = saa7146_vv_init(dev, &vv_data); + if (ret) { + pr_err("Error in saa7146_vv_init()\n"); + return ret; + } + vv_data.vid_ops.vidioc_enum_input = vidioc_enum_input; vv_data.vid_ops.vidioc_g_input = vidioc_g_input; vv_data.vid_ops.vidioc_s_input = vidioc_s_input; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/pci/tw686x/tw686x-core.c +++ linux-azure-5.4.0/drivers/media/pci/tw686x/tw686x-core.c @@ -315,13 +315,6 @@ spin_lock_init(&dev->lock); - err = request_irq(pci_dev->irq, tw686x_irq, IRQF_SHARED, - dev->name, dev); - if (err < 0) { - dev_err(&pci_dev->dev, "unable to request interrupt\n"); - goto iounmap; - } - timer_setup(&dev->dma_delay_timer, tw686x_dma_delay, 0); /* @@ -333,18 +326,23 @@ err = tw686x_video_init(dev); if (err) { dev_err(&pci_dev->dev, "can't register video\n"); - goto free_irq; + goto iounmap; } err = tw686x_audio_init(dev); if (err) dev_warn(&pci_dev->dev, "can't register audio\n"); + err = request_irq(pci_dev->irq, tw686x_irq, IRQF_SHARED, + dev->name, dev); + if (err < 0) { + dev_err(&pci_dev->dev, "unable to request interrupt\n"); + goto iounmap; + } + pci_set_drvdata(pci_dev, dev); return 0; -free_irq: - free_irq(pci_dev->irq, dev); iounmap: pci_iounmap(pci_dev, dev->mmio); free_region: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/coda/coda-bit.c +++ linux-azure-5.4.0/drivers/media/platform/coda/coda-bit.c @@ -2023,17 +2023,25 @@ u32 src_fourcc, dst_fourcc; int ret; + q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); + q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); + src_fourcc = q_data_src->fourcc; + dst_fourcc = q_data_dst->fourcc; + if (!ctx->initialized) { ret = __coda_decoder_seq_init(ctx); if (ret < 0) return ret; + } else { + ctx->frame_mem_ctrl &= ~(CODA_FRAME_CHROMA_INTERLEAVE | (0x3 << 9) | + CODA9_FRAME_TILED2LINEAR); + if (dst_fourcc == V4L2_PIX_FMT_NV12 || dst_fourcc == V4L2_PIX_FMT_YUYV) + ctx->frame_mem_ctrl |= CODA_FRAME_CHROMA_INTERLEAVE; + if (ctx->tiled_map_type == GDI_TILED_FRAME_MB_RASTER_MAP) + ctx->frame_mem_ctrl |= (0x3 << 9) | + ((ctx->use_vdoa) ? 0 : CODA9_FRAME_TILED2LINEAR); } - q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); - q_data_dst = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); - src_fourcc = q_data_src->fourcc; - dst_fourcc = q_data_dst->fourcc; - coda_write(dev, ctx->parabuf.paddr, CODA_REG_BIT_PARA_BUF_ADDR); ret = coda_alloc_framebuffers(ctx, q_data_dst, src_fourcc); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/coda/imx-vdoa.c +++ linux-azure-5.4.0/drivers/media/platform/coda/imx-vdoa.c @@ -287,7 +287,11 @@ struct resource *res; int ret; - dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)); + ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)); + if (ret) { + dev_err(&pdev->dev, "DMA enable failed\n"); + return ret; + } vdoa = devm_kzalloc(&pdev->dev, sizeof(*vdoa), GFP_KERNEL); if (!vdoa) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/davinci/vpbe_display.c +++ linux-azure-5.4.0/drivers/media/platform/davinci/vpbe_display.c @@ -48,7 +48,7 @@ ret = v4l2_subdev_call(vpbe_dev->venc, core, - ioctl, + command, VENC_GET_FLD, &val); if (ret < 0) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/davinci/vpbe_venc.c +++ linux-azure-5.4.0/drivers/media/platform/davinci/vpbe_venc.c @@ -521,9 +521,7 @@ return ret; } -static long venc_ioctl(struct v4l2_subdev *sd, - unsigned int cmd, - void *arg) +static long venc_command(struct v4l2_subdev *sd, unsigned int cmd, void *arg) { u32 val; @@ -542,7 +540,7 @@ } static const struct v4l2_subdev_core_ops venc_core_ops = { - .ioctl = venc_ioctl, + .command = venc_command, }; static const struct v4l2_subdev_video_ops venc_video_ops = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/davinci/vpif.c +++ linux-azure-5.4.0/drivers/media/platform/davinci/vpif.c @@ -496,6 +496,7 @@ static int vpif_remove(struct platform_device *pdev) { + pm_runtime_put(&pdev->dev); pm_runtime_disable(&pdev->dev); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/exynos-gsc/gsc-m2m.c +++ linux-azure-5.4.0/drivers/media/platform/exynos-gsc/gsc-m2m.c @@ -56,10 +56,8 @@ static int gsc_m2m_start_streaming(struct vb2_queue *q, unsigned int count) { struct gsc_ctx *ctx = q->drv_priv; - int ret; - ret = pm_runtime_get_sync(&ctx->gsc_dev->pdev->dev); - return ret > 0 ? 0 : ret; + return pm_runtime_resume_and_get(&ctx->gsc_dev->pdev->dev); } static void __gsc_m2m_cleanup_queue(struct gsc_ctx *ctx) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/exynos4-is/fimc-is.c +++ linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-is.c @@ -141,7 +141,7 @@ dev_err(&is->pdev->dev, "clock %s enable failed\n", fimc_is_clocks[i]); for (--i; i >= 0; i--) - clk_disable(is->clocks[i]); + clk_disable_unprepare(is->clocks[i]); return ret; } pr_debug("enabled clock: %s\n", fimc_is_clocks[i]); @@ -214,6 +214,7 @@ if (ret < 0 || index >= FIMC_IS_SENSORS_NUM) { of_node_put(child); + of_node_put(i2c_bus); return ret; } index++; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/exynos4-is/fimc-isp-video.h +++ linux-azure-5.4.0/drivers/media/platform/exynos4-is/fimc-isp-video.h @@ -32,7 +32,7 @@ return 0; } -void fimc_isp_video_device_unregister(struct fimc_isp *isp, +static inline void fimc_isp_video_device_unregister(struct fimc_isp *isp, enum v4l2_buf_type type) { } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/imx-pxp.c +++ linux-azure-5.4.0/drivers/media/platform/imx-pxp.c @@ -1664,6 +1664,8 @@ if (irq < 0) return irq; + spin_lock_init(&dev->irqlock); + ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, pxp_irq_handler, IRQF_ONESHOT, dev_name(&pdev->dev), dev); if (ret < 0) { @@ -1681,8 +1683,6 @@ goto err_clk; } - spin_lock_init(&dev->irqlock); - ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev); if (ret) goto err_clk; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-mdp/mtk_mdp_ipi.h +++ linux-azure-5.4.0/drivers/media/platform/mtk-mdp/mtk_mdp_ipi.h @@ -40,12 +40,14 @@ * @ipi_id : IPI_MDP * @ap_inst : AP mtk_mdp_vpu address * @vpu_inst_addr : VPU MDP instance address + * @padding : Alignment padding */ struct mdp_ipi_comm { uint32_t msg_id; uint32_t ipi_id; uint64_t ap_inst; uint32_t vpu_inst_addr; + uint32_t padding; }; /** only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-mdp/mtk_mdp_m2m.c +++ linux-azure-5.4.0/drivers/media/platform/mtk-mdp/mtk_mdp_m2m.c @@ -402,12 +402,12 @@ struct mtk_mdp_ctx *ctx = q->drv_priv; int ret; - ret = pm_runtime_get_sync(&ctx->mdp_dev->pdev->dev); + ret = pm_runtime_resume_and_get(&ctx->mdp_dev->pdev->dev); if (ret < 0) - mtk_mdp_dbg(1, "[%d] pm_runtime_get_sync failed:%d", + mtk_mdp_dbg(1, "[%d] pm_runtime_resume_and_get failed:%d", ctx->id, ret); - return 0; + return ret; } static void *mtk_mdp_m2m_buf_remove(struct mtk_mdp_ctx *ctx, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c +++ linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c @@ -142,7 +142,9 @@ mtk_vcodec_dec_set_default_params(ctx); if (v4l2_fh_is_singular(&ctx->fh)) { - mtk_vcodec_dec_pw_on(&dev->pm); + ret = mtk_vcodec_dec_pw_on(&dev->pm); + if (ret < 0) + goto err_load_fw; /* * vpu_load_firmware checks if it was loaded already and * does nothing in that case only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.h +++ linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.h @@ -12,7 +12,7 @@ int mtk_vcodec_init_dec_pm(struct mtk_vcodec_dev *dev); void mtk_vcodec_release_dec_pm(struct mtk_vcodec_dev *dev); -void mtk_vcodec_dec_pw_on(struct mtk_vcodec_pm *pm); +int mtk_vcodec_dec_pw_on(struct mtk_vcodec_pm *pm); void mtk_vcodec_dec_pw_off(struct mtk_vcodec_pm *pm); void mtk_vcodec_dec_clock_on(struct mtk_vcodec_pm *pm); void mtk_vcodec_dec_clock_off(struct mtk_vcodec_pm *pm); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c +++ linux-azure-5.4.0/drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c @@ -209,11 +209,11 @@ mtk_v4l2_debug(1, "[%d] encoder", ctx->id); mutex_lock(&dev->dev_mutex); + v4l2_m2m_ctx_release(ctx->m2m_ctx); mtk_vcodec_enc_release(ctx); v4l2_fh_del(&ctx->fh); v4l2_fh_exit(&ctx->fh); v4l2_ctrl_handler_free(&ctx->ctrl_hdl); - v4l2_m2m_ctx_release(ctx->m2m_ctx); list_del_init(&ctx->list); kfree(ctx); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/mtk-vpu/mtk_vpu.c +++ linux-azure-5.4.0/drivers/media/platform/mtk-vpu/mtk_vpu.c @@ -809,7 +809,8 @@ vpu->wdt.wq = create_singlethread_workqueue("vpu_wdt"); if (!vpu->wdt.wq) { dev_err(dev, "initialize wdt workqueue failed\n"); - return -ENOMEM; + ret = -ENOMEM; + goto clk_unprepare; } INIT_WORK(&vpu->wdt.ws, vpu_wdt_reset_func); mutex_init(&vpu->vpu_mutex); @@ -908,6 +909,8 @@ vpu_clock_disable(vpu); workqueue_destroy: destroy_workqueue(vpu->wdt.wq); +clk_unprepare: + clk_unprepare(vpu->clk); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/qcom/venus/hfi.c +++ linux-azure-5.4.0/drivers/media/platform/qcom/venus/hfi.c @@ -104,6 +104,9 @@ mutex_lock(&core->lock); } + if (!core->ops) + goto unlock; + ret = core->ops->core_deinit(core); if (!ret) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/s5p-cec/s5p_cec.c +++ linux-azure-5.4.0/drivers/media/platform/s5p-cec/s5p_cec.c @@ -35,10 +35,13 @@ static int s5p_cec_adap_enable(struct cec_adapter *adap, bool enable) { + int ret; struct s5p_cec_dev *cec = cec_get_drvdata(adap); if (enable) { - pm_runtime_get_sync(cec->dev); + ret = pm_runtime_resume_and_get(cec->dev); + if (ret < 0) + return ret; s5p_cec_reset(cec); @@ -51,7 +54,7 @@ } else { s5p_cec_mask_tx_interrupts(cec); s5p_cec_mask_rx_interrupts(cec); - pm_runtime_disable(cec->dev); + pm_runtime_put(cec->dev); } return 0; @@ -112,6 +115,8 @@ dev_dbg(cec->dev, "Buffer overrun (worker did not process previous message)\n"); cec->rx = STATE_BUSY; cec->msg.len = status >> 24; + if (cec->msg.len > CEC_MAX_MSG_SIZE) + cec->msg.len = CEC_MAX_MSG_SIZE; cec->msg.rx_status = CEC_RX_STATUS_OK; s5p_cec_get_rx_buf(cec, cec->msg.len, cec->msg.msg); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/s5p-g2d/g2d.c +++ linux-azure-5.4.0/drivers/media/platform/s5p-g2d/g2d.c @@ -276,6 +276,9 @@ struct g2d_dev *dev = video_drvdata(file); struct g2d_ctx *ctx = fh2ctx(file->private_data); + mutex_lock(&dev->mutex); + v4l2_m2m_ctx_release(ctx->fh.m2m_ctx); + mutex_unlock(&dev->mutex); v4l2_ctrl_handler_free(&ctx->ctrl_handler); v4l2_fh_del(&ctx->fh); v4l2_fh_exit(&ctx->fh); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/s5p-jpeg/jpeg-core.c +++ linux-azure-5.4.0/drivers/media/platform/s5p-jpeg/jpeg-core.c @@ -2579,11 +2579,8 @@ static int s5p_jpeg_start_streaming(struct vb2_queue *q, unsigned int count) { struct s5p_jpeg_ctx *ctx = vb2_get_drv_priv(q); - int ret; - ret = pm_runtime_get_sync(ctx->jpeg->dev); - - return ret > 0 ? 0 : ret; + return pm_runtime_resume_and_get(ctx->jpeg->dev); } static void s5p_jpeg_stop_streaming(struct vb2_queue *q) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/s5p-mfc/s5p_mfc.c +++ linux-azure-5.4.0/drivers/media/platform/s5p-mfc/s5p_mfc.c @@ -1279,11 +1279,15 @@ spin_lock_init(&dev->condlock); dev->plat_dev = pdev; if (!dev->plat_dev) { - dev_err(&pdev->dev, "No platform data specified\n"); + mfc_err("No platform data specified\n"); return -ENODEV; } dev->variant = of_device_get_match_data(&pdev->dev); + if (!dev->variant) { + dev_err(&pdev->dev, "Failed to get device MFC hardware variant information\n"); + return -ENOENT; + } res = platform_get_resource(pdev, IORESOURCE_MEM, 0); dev->regs_base = devm_ioremap_resource(&pdev->dev, res); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/sh_vou.c +++ linux-azure-5.4.0/drivers/media/platform/sh_vou.c @@ -1133,7 +1133,11 @@ if (v4l2_fh_is_singular_file(file) && vou_dev->status == SH_VOU_INITIALISING) { /* First open */ - pm_runtime_get_sync(vou_dev->v4l2_dev.dev); + err = pm_runtime_resume_and_get(vou_dev->v4l2_dev.dev); + if (err < 0) { + v4l2_fh_release(file); + goto done_open; + } err = sh_vou_hw_init(vou_dev); if (err < 0) { pm_runtime_put(vou_dev->v4l2_dev.dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/sti/bdisp/Makefile +++ linux-azure-5.4.0/drivers/media/platform/sti/bdisp/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_VIDEO_STI_BDISP) := bdisp.o +obj-$(CONFIG_VIDEO_STI_BDISP) += bdisp.o bdisp-objs := bdisp-v4l2.o bdisp-hw.o bdisp-debug.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/sti/delta/Makefile +++ linux-azure-5.4.0/drivers/media/platform/sti/delta/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_VIDEO_STI_DELTA_DRIVER) := st-delta.o +obj-$(CONFIG_VIDEO_STI_DELTA_DRIVER) += st-delta.o st-delta-y := delta-v4l2.o delta-mem.o delta-ipc.o delta-debug.o # MJPEG support only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/sti/hva/Makefile +++ linux-azure-5.4.0/drivers/media/platform/sti/hva/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_VIDEO_STI_HVA) := st-hva.o +obj-$(CONFIG_VIDEO_STI_HVA) += st-hva.o st-hva-y := hva-v4l2.o hva-hw.o hva-mem.o hva-h264.o st-hva-$(CONFIG_VIDEO_STI_HVA_DEBUGFS) += hva-debugfs.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/tegra-cec/tegra_cec.c +++ linux-azure-5.4.0/drivers/media/platform/tegra-cec/tegra_cec.c @@ -366,7 +366,11 @@ return -ENOENT; } - clk_prepare_enable(cec->clk); + ret = clk_prepare_enable(cec->clk); + if (ret) { + dev_err(&pdev->dev, "Unable to prepare clock for CEC\n"); + return ret; + } /* set context info. */ cec->dev = &pdev->dev; @@ -446,9 +450,7 @@ dev_notice(&pdev->dev, "Resuming\n"); - clk_prepare_enable(cec->clk); - - return 0; + return clk_prepare_enable(cec->clk); } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/vivid/vivid-core.h +++ linux-azure-5.4.0/drivers/media/platform/vivid/vivid-core.h @@ -564,4 +564,6 @@ return dev->output_type[dev->output] == HDMI; } +bool vivid_validate_fb(const struct v4l2_framebuffer *a); + #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/vsp1/vsp1_rpf.c +++ linux-azure-5.4.0/drivers/media/platform/vsp1/vsp1_rpf.c @@ -291,11 +291,11 @@ + crop.left * fmtinfo->bpp[0] / 8; if (format->num_planes > 1) { + unsigned int bpl = format->plane_fmt[1].bytesperline; unsigned int offset; - offset = crop.top * format->plane_fmt[1].bytesperline - + crop.left / fmtinfo->hsub - * fmtinfo->bpp[1] / 8; + offset = crop.top / fmtinfo->vsub * bpl + + crop.left / fmtinfo->hsub * fmtinfo->bpp[1] / 8; mem.addr[1] += offset; mem.addr[2] += offset; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/platform/xilinx/xilinx-vipp.c +++ linux-azure-5.4.0/drivers/media/platform/xilinx/xilinx-vipp.c @@ -472,7 +472,7 @@ { struct device_node *ports; struct device_node *port; - int ret; + int ret = 0; ports = of_get_child_by_name(xdev->dev->of_node, "ports"); if (ports == NULL) { @@ -482,13 +482,14 @@ for_each_child_of_node(ports, port) { ret = xvip_graph_dma_init_one(xdev, port); - if (ret < 0) { + if (ret) { of_node_put(port); - return ret; + break; } } - return 0; + of_node_put(ports); + return ret; } static void xvip_graph_cleanup(struct xvip_composite_device *xdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/radio/si470x/radio-si470x-usb.c +++ linux-azure-5.4.0/drivers/media/radio/si470x/radio-si470x-usb.c @@ -16,7 +16,7 @@ /* driver definitions */ #define DRIVER_AUTHOR "Tobias Lorenz " -#define DRIVER_CARD "Silicon Labs Si470x FM Radio Receiver" +#define DRIVER_CARD "Silicon Labs Si470x FM Radio" #define DRIVER_DESC "USB radio driver for Si470x FM Radio Receivers" #define DRIVER_VERSION "1.0.10" only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/rc/bpf-lirc.c +++ linux-azure-5.4.0/drivers/media/rc/bpf-lirc.c @@ -329,7 +329,8 @@ } if (attr->query.prog_cnt != 0 && prog_ids && cnt) - ret = bpf_prog_array_copy_to_user(progs, prog_ids, cnt); + ret = bpf_prog_array_copy_to_user(progs, prog_ids, + attr->query.prog_cnt); unlock: mutex_unlock(&ir_raw_handler_lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/rc/igorplugusb.c +++ linux-azure-5.4.0/drivers/media/rc/igorplugusb.c @@ -64,9 +64,11 @@ if (start >= len) { dev_err(ir->dev, "receive overflow invalid: %u", overflow); } else { - if (overflow > 0) + if (overflow > 0) { dev_warn(ir->dev, "receive overflow, at least %u lost", overflow); + ir_raw_event_reset(ir->rc); + } do { rawir.duration = ir->buf_in[i] * 85333; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/rc/rc-loopback.c +++ linux-azure-5.4.0/drivers/media/rc/rc-loopback.c @@ -42,7 +42,7 @@ if ((mask & (RXMASK_REGULAR | RXMASK_LEARNING)) != mask) { dprintk("invalid tx mask: %u\n", mask); - return -EINVAL; + return 2; } dprintk("setting tx mask: %u\n", mask); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/rc/redrat3.c +++ linux-azure-5.4.0/drivers/media/rc/redrat3.c @@ -405,7 +405,7 @@ udev = rr3->udev; res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, - 0x0000, 0x0000, data, sizeof(u8), HZ * 10); + 0x0000, 0x0000, data, sizeof(u8), 10000); if (res < 0) { dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d", @@ -481,7 +481,7 @@ pipe = usb_rcvctrlpipe(rr3->udev, 0); ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, - RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5); + RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, 5000); if (ret != len) dev_warn(rr3->dev, "Failed to read timeout from hardware\n"); else { @@ -511,7 +511,7 @@ ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), RR3_SET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, RR3_IR_IO_SIG_TIMEOUT, 0, timeout, sizeof(*timeout), - HZ * 25); + 25000); dev_dbg(dev, "set ir parm timeout %d ret 0x%02x\n", be32_to_cpu(*timeout), ret); @@ -543,32 +543,32 @@ *val = 0x01; rc = usb_control_msg(udev, rxpipe, RR3_RESET, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, - RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25); + RR3_CPUCS_REG_ADDR, 0, val, len, 25000); dev_dbg(dev, "reset returned 0x%02x\n", rc); *val = length_fuzz; rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, - RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25); + RR3_IR_IO_LENGTH_FUZZ, 0, val, len, 25000); dev_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc); *val = (65536 - (minimum_pause * 2000)) / 256; rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, - RR3_IR_IO_MIN_PAUSE, 0, val, len, HZ * 25); + RR3_IR_IO_MIN_PAUSE, 0, val, len, 25000); dev_dbg(dev, "set ir parm min pause %d rc 0x%02x\n", *val, rc); *val = periods_measure_carrier; rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, - RR3_IR_IO_PERIODS_MF, 0, val, len, HZ * 25); + RR3_IR_IO_PERIODS_MF, 0, val, len, 25000); dev_dbg(dev, "set ir parm periods measure carrier %d rc 0x%02x", *val, rc); *val = RR3_DRIVER_MAXLENS; rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, - RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25); + RR3_IR_IO_MAX_LENGTHS, 0, val, len, 25000); dev_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc); kfree(val); @@ -586,7 +586,7 @@ rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0), RR3_FW_VERSION, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, - 0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5); + 0, 0, buffer, RR3_FW_VERSION_LEN, 5000); if (rc >= 0) dev_info(rr3->dev, "Firmware rev: %s", buffer); @@ -826,14 +826,14 @@ pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress); ret = usb_bulk_msg(rr3->udev, pipe, irdata, - sendbuf_len, &ret_len, 10 * HZ); + sendbuf_len, &ret_len, 10000); dev_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, ret); /* now tell the hardware to transmit what we sent it */ pipe = usb_rcvctrlpipe(rr3->udev, 0); ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, - 0, 0, irdata, 2, HZ * 10); + 0, 0, irdata, 2, 10000); if (ret < 0) dev_err(dev, "Error: control msg send failed, rc %d\n", ret); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/spi/cxd2880-spi.c +++ linux-azure-5.4.0/drivers/media/spi/cxd2880-spi.c @@ -524,13 +524,13 @@ if (IS_ERR(dvb_spi->vcc_supply)) { if (PTR_ERR(dvb_spi->vcc_supply) == -EPROBE_DEFER) { ret = -EPROBE_DEFER; - goto fail_adapter; + goto fail_regulator; } dvb_spi->vcc_supply = NULL; } else { ret = regulator_enable(dvb_spi->vcc_supply); if (ret) - goto fail_adapter; + goto fail_regulator; } dvb_spi->spi = spi; @@ -618,6 +618,9 @@ fail_attach: dvb_unregister_adapter(&dvb_spi->adapter); fail_adapter: + if (dvb_spi->vcc_supply) + regulator_disable(dvb_spi->vcc_supply); +fail_regulator: kfree(dvb_spi); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/tuners/msi001.c +++ linux-azure-5.4.0/drivers/media/tuners/msi001.c @@ -442,6 +442,13 @@ V4L2_CID_RF_TUNER_BANDWIDTH_AUTO, 0, 1, 1, 1); dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, V4L2_CID_RF_TUNER_BANDWIDTH, 200000, 8000000, 1, 200000); + if (dev->hdl.error) { + ret = dev->hdl.error; + dev_err(&spi->dev, "Could not initialize controls\n"); + /* control init failed, free handler */ + goto err_ctrl_handler_free; + } + v4l2_ctrl_auto_cluster(2, &dev->bandwidth_auto, 0, false); dev->lna_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, V4L2_CID_RF_TUNER_LNA_GAIN, 0, 1, 1, 1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/au0828/au0828-core.c +++ linux-azure-5.4.0/drivers/media/usb/au0828/au0828-core.c @@ -199,8 +199,8 @@ struct media_device *mdev; mdev = media_device_usb_allocate(udev, KBUILD_MODNAME, THIS_MODULE); - if (!mdev) - return -ENOMEM; + if (IS_ERR(mdev)) + return PTR_ERR(mdev); dev->media_dev = mdev; #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/b2c2/flexcop-usb.h +++ linux-azure-5.4.0/drivers/media/usb/b2c2/flexcop-usb.h @@ -91,13 +91,13 @@ UTILITY_SRAM_TESTVERIFY = 0x16, } flexcop_usb_utility_function_t; -#define B2C2_WAIT_FOR_OPERATION_RW (1*HZ) -#define B2C2_WAIT_FOR_OPERATION_RDW (3*HZ) -#define B2C2_WAIT_FOR_OPERATION_WDW (1*HZ) +#define B2C2_WAIT_FOR_OPERATION_RW 1000 +#define B2C2_WAIT_FOR_OPERATION_RDW 3000 +#define B2C2_WAIT_FOR_OPERATION_WDW 1000 -#define B2C2_WAIT_FOR_OPERATION_V8READ (3*HZ) -#define B2C2_WAIT_FOR_OPERATION_V8WRITE (3*HZ) -#define B2C2_WAIT_FOR_OPERATION_V8FLASH (3*HZ) +#define B2C2_WAIT_FOR_OPERATION_V8READ 3000 +#define B2C2_WAIT_FOR_OPERATION_V8WRITE 3000 +#define B2C2_WAIT_FOR_OPERATION_V8FLASH 3000 typedef enum { V8_MEMORY_PAGE_DVB_CI = 0x20, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/cpia2/cpia2.h +++ linux-azure-5.4.0/drivers/media/usb/cpia2/cpia2.h @@ -429,6 +429,7 @@ int cpia2_do_command(struct camera_data *cam, unsigned int command, unsigned char direction, unsigned char param); +void cpia2_deinit_camera_struct(struct camera_data *cam, struct usb_interface *intf); struct camera_data *cpia2_init_camera_struct(struct usb_interface *intf); int cpia2_init_camera(struct camera_data *cam); int cpia2_allocate_buffers(struct camera_data *cam); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/cpia2/cpia2_core.c +++ linux-azure-5.4.0/drivers/media/usb/cpia2/cpia2_core.c @@ -2167,6 +2167,18 @@ * * cpia2_init_camera_struct * + * Deinitialize camera struct + *****************************************************************************/ +void cpia2_deinit_camera_struct(struct camera_data *cam, struct usb_interface *intf) +{ + v4l2_device_unregister(&cam->v4l2_dev); + kfree(cam); +} + +/****************************************************************************** + * + * cpia2_init_camera_struct + * * Initializes camera struct, does not call reset to fill in defaults. *****************************************************************************/ struct camera_data *cpia2_init_camera_struct(struct usb_interface *intf) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/cpia2/cpia2_usb.c +++ linux-azure-5.4.0/drivers/media/usb/cpia2/cpia2_usb.c @@ -550,7 +550,7 @@ 0, /* index */ buf, /* buffer */ size, - HZ); + 1000); kfree(buf); return ret; @@ -582,7 +582,7 @@ 0, /* index */ buf, /* buffer */ size, - HZ); + 1000); if (ret >= 0) memcpy(registers, buf, size); @@ -844,15 +844,13 @@ ret = set_alternate(cam, USBIF_CMDONLY); if (ret < 0) { ERR("%s: usb_set_interface error (ret = %d)\n", __func__, ret); - kfree(cam); - return ret; + goto alt_err; } if((ret = cpia2_init_camera(cam)) < 0) { ERR("%s: failed to initialize cpia2 camera (ret = %d)\n", __func__, ret); - kfree(cam); - return ret; + goto alt_err; } LOG(" CPiA Version: %d.%02d (%d.%d)\n", cam->params.version.firmware_revision_hi, @@ -872,11 +870,14 @@ ret = cpia2_register_camera(cam); if (ret < 0) { ERR("%s: Failed to register cpia2 camera (ret = %d)\n", __func__, ret); - kfree(cam); - return ret; + goto alt_err; } return 0; + +alt_err: + cpia2_deinit_camera_struct(cam, intf); + return ret; } /****************************************************************************** only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb-v2/mxl111sf.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb-v2/mxl111sf.c @@ -931,8 +931,6 @@ .len = sizeof(eeprom), .buf = eeprom }, }; - mutex_init(&state->msg_lock); - ret = get_chip_info(state); if (mxl_fail(ret)) pr_err("failed to get chip info during probe"); @@ -1074,6 +1072,14 @@ return 0; } +static int mxl111sf_probe(struct dvb_usb_device *dev) +{ + struct mxl111sf_state *state = d_to_priv(dev); + + mutex_init(&state->msg_lock); + return 0; +} + static struct dvb_usb_device_properties mxl111sf_props_dvbt = { .driver_name = KBUILD_MODNAME, .owner = THIS_MODULE, @@ -1083,6 +1089,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_dvbt, .tuner_attach = mxl111sf_attach_tuner, @@ -1124,6 +1131,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_atsc, .tuner_attach = mxl111sf_attach_tuner, @@ -1165,6 +1173,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_mh, .tuner_attach = mxl111sf_attach_tuner, @@ -1233,6 +1242,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_atsc_mh, .tuner_attach = mxl111sf_attach_tuner, @@ -1311,6 +1321,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_mercury, .tuner_attach = mxl111sf_attach_tuner, @@ -1381,6 +1392,7 @@ .generic_bulk_ctrl_endpoint = 0x02, .generic_bulk_ctrl_endpoint_response = 0x81, + .probe = mxl111sf_probe, .i2c_algo = &mxl111sf_i2c_algo, .frontend_attach = mxl111sf_frontend_attach_mercury_mh, .tuner_attach = mxl111sf_attach_tuner, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb-v2/rtl28xxu.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb-v2/rtl28xxu.c @@ -37,7 +37,16 @@ } else { /* read */ requesttype = (USB_TYPE_VENDOR | USB_DIR_IN); - pipe = usb_rcvctrlpipe(d->udev, 0); + + /* + * Zero-length transfers must use usb_sndctrlpipe() and + * rtl28xxu_identify_state() uses a zero-length i2c read + * command to determine the chip type. + */ + if (req->size) + pipe = usb_rcvctrlpipe(d->udev, 0); + else + pipe = usb_sndctrlpipe(d->udev, 0); } ret = usb_control_msg(d->udev, pipe, 0, requesttype, req->value, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/az6027.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/az6027.c @@ -391,6 +391,7 @@ /* remote control stuff (does not work with my box) */ static int az6027_rc_query(struct dvb_usb_device *d, u32 *event, int *state) { + *state = REMOTE_NO_KEY_PRESSED; return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/cinergyT2-core.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/cinergyT2-core.c @@ -78,6 +78,8 @@ ret = dvb_usb_generic_rw(d, st->data, 1, st->data, 3, 0); if (ret < 0) { + if (adap->fe_adap[0].fe) + adap->fe_adap[0].fe->ops.release(adap->fe_adap[0].fe); deb_rc("cinergyt2_power_ctrl() Failed to retrieve sleep state info\n"); } mutex_unlock(&d->data_mutex); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/dibusb-common.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dibusb-common.c @@ -223,7 +223,7 @@ u8 *buf; int rc; - buf = kmalloc(2, GFP_KERNEL); + buf = kzalloc(2, GFP_KERNEL); if (!buf) return -ENOMEM; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/dtv5100.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dtv5100.c @@ -26,6 +26,7 @@ u8 *wbuf, u16 wlen, u8 *rbuf, u16 rlen) { struct dtv5100_state *st = d->priv; + unsigned int pipe; u8 request; u8 type; u16 value; @@ -34,6 +35,7 @@ switch (wlen) { case 1: /* write { reg }, read { value } */ + pipe = usb_rcvctrlpipe(d->udev, 0); request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_READ : DTV5100_TUNER_READ); type = USB_TYPE_VENDOR | USB_DIR_IN; @@ -41,6 +43,7 @@ break; case 2: /* write { reg, value } */ + pipe = usb_sndctrlpipe(d->udev, 0); request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_WRITE : DTV5100_TUNER_WRITE); type = USB_TYPE_VENDOR | USB_DIR_OUT; @@ -54,7 +57,7 @@ memcpy(st->data, rbuf, rlen); msleep(1); /* avoid I2C errors */ - return usb_control_msg(d->udev, usb_rcvctrlpipe(d->udev, 0), request, + return usb_control_msg(d->udev, pipe, request, type, value, index, st->data, rlen, DTV5100_USB_TIMEOUT); } @@ -141,7 +144,7 @@ /* initialize non qt1010/zl10353 part? */ for (i = 0; dtv5100_init[i].request; i++) { - ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), + ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), dtv5100_init[i].request, USB_TYPE_VENDOR | USB_DIR_OUT, dtv5100_init[i].value, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/dvb-usb-i2c.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dvb-usb-i2c.c @@ -17,7 +17,8 @@ if (d->props.i2c_algo == NULL) { err("no i2c algorithm specified"); - return -EINVAL; + ret = -EINVAL; + goto err; } strscpy(d->i2c_adap.name, d->desc->name, sizeof(d->i2c_adap.name)); @@ -27,11 +28,15 @@ i2c_set_adapdata(&d->i2c_adap, d); - if ((ret = i2c_add_adapter(&d->i2c_adap)) < 0) + ret = i2c_add_adapter(&d->i2c_adap); + if (ret < 0) { err("could not add i2c adapter"); + goto err; + } d->state |= DVB_USB_STATE_I2C; +err: return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/dw2102.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/dw2102.c @@ -2098,46 +2098,153 @@ } }; -static const struct dvb_usb_device_description d1100 = { - "Prof 1100 USB ", - {&dw2102_table[PROF_1100], NULL}, - {NULL}, -}; +static struct dvb_usb_device_properties p1100_properties = { + .caps = DVB_USB_IS_AN_I2C_ADAPTER, + .usb_ctrl = DEVICE_SPECIFIC, + .size_of_priv = sizeof(struct dw2102_state), + .firmware = P1100_FIRMWARE, + .no_reconnect = 1, -static const struct dvb_usb_device_description d660 = { - "TeVii S660 USB", - {&dw2102_table[TEVII_S660], NULL}, - {NULL}, -}; + .i2c_algo = &s6x0_i2c_algo, + .rc.core = { + .rc_interval = 150, + .rc_codes = RC_MAP_TBS_NEC, + .module_name = "dw2102", + .allowed_protos = RC_PROTO_BIT_NEC, + .rc_query = prof_rc_query, + }, -static const struct dvb_usb_device_description d480_1 = { - "TeVii S480.1 USB", - {&dw2102_table[TEVII_S480_1], NULL}, - {NULL}, + .generic_bulk_ctrl_endpoint = 0x81, + .num_adapters = 1, + .download_firmware = dw2102_load_firmware, + .read_mac_address = s6x0_read_mac_address, + .adapter = { + { + .num_frontends = 1, + .fe = {{ + .frontend_attach = stv0288_frontend_attach, + .stream = { + .type = USB_BULK, + .count = 8, + .endpoint = 0x82, + .u = { + .bulk = { + .buffersize = 4096, + } + } + }, + } }, + } + }, + .num_device_descs = 1, + .devices = { + {"Prof 1100 USB ", + {&dw2102_table[PROF_1100], NULL}, + {NULL}, + }, + } }; -static const struct dvb_usb_device_description d480_2 = { - "TeVii S480.2 USB", - {&dw2102_table[TEVII_S480_2], NULL}, - {NULL}, -}; +static struct dvb_usb_device_properties s660_properties = { + .caps = DVB_USB_IS_AN_I2C_ADAPTER, + .usb_ctrl = DEVICE_SPECIFIC, + .size_of_priv = sizeof(struct dw2102_state), + .firmware = S660_FIRMWARE, + .no_reconnect = 1, -static const struct dvb_usb_device_description d7500 = { - "Prof 7500 USB DVB-S2", - {&dw2102_table[PROF_7500], NULL}, - {NULL}, -}; + .i2c_algo = &s6x0_i2c_algo, + .rc.core = { + .rc_interval = 150, + .rc_codes = RC_MAP_TEVII_NEC, + .module_name = "dw2102", + .allowed_protos = RC_PROTO_BIT_NEC, + .rc_query = dw2102_rc_query, + }, -static const struct dvb_usb_device_description d421 = { - "TeVii S421 PCI", - {&dw2102_table[TEVII_S421], NULL}, - {NULL}, + .generic_bulk_ctrl_endpoint = 0x81, + .num_adapters = 1, + .download_firmware = dw2102_load_firmware, + .read_mac_address = s6x0_read_mac_address, + .adapter = { + { + .num_frontends = 1, + .fe = {{ + .frontend_attach = ds3000_frontend_attach, + .stream = { + .type = USB_BULK, + .count = 8, + .endpoint = 0x82, + .u = { + .bulk = { + .buffersize = 4096, + } + } + }, + } }, + } + }, + .num_device_descs = 3, + .devices = { + {"TeVii S660 USB", + {&dw2102_table[TEVII_S660], NULL}, + {NULL}, + }, + {"TeVii S480.1 USB", + {&dw2102_table[TEVII_S480_1], NULL}, + {NULL}, + }, + {"TeVii S480.2 USB", + {&dw2102_table[TEVII_S480_2], NULL}, + {NULL}, + }, + } }; -static const struct dvb_usb_device_description d632 = { - "TeVii S632 USB", - {&dw2102_table[TEVII_S632], NULL}, - {NULL}, +static struct dvb_usb_device_properties p7500_properties = { + .caps = DVB_USB_IS_AN_I2C_ADAPTER, + .usb_ctrl = DEVICE_SPECIFIC, + .size_of_priv = sizeof(struct dw2102_state), + .firmware = P7500_FIRMWARE, + .no_reconnect = 1, + + .i2c_algo = &s6x0_i2c_algo, + .rc.core = { + .rc_interval = 150, + .rc_codes = RC_MAP_TBS_NEC, + .module_name = "dw2102", + .allowed_protos = RC_PROTO_BIT_NEC, + .rc_query = prof_rc_query, + }, + + .generic_bulk_ctrl_endpoint = 0x81, + .num_adapters = 1, + .download_firmware = dw2102_load_firmware, + .read_mac_address = s6x0_read_mac_address, + .adapter = { + { + .num_frontends = 1, + .fe = {{ + .frontend_attach = prof_7500_frontend_attach, + .stream = { + .type = USB_BULK, + .count = 8, + .endpoint = 0x82, + .u = { + .bulk = { + .buffersize = 4096, + } + } + }, + } }, + } + }, + .num_device_descs = 1, + .devices = { + {"Prof 7500 USB DVB-S2", + {&dw2102_table[PROF_7500], NULL}, + {NULL}, + }, + } }; static struct dvb_usb_device_properties su3000_properties = { @@ -2209,6 +2316,59 @@ } }; +static struct dvb_usb_device_properties s421_properties = { + .caps = DVB_USB_IS_AN_I2C_ADAPTER, + .usb_ctrl = DEVICE_SPECIFIC, + .size_of_priv = sizeof(struct dw2102_state), + .power_ctrl = su3000_power_ctrl, + .num_adapters = 1, + .identify_state = su3000_identify_state, + .i2c_algo = &su3000_i2c_algo, + + .rc.core = { + .rc_interval = 150, + .rc_codes = RC_MAP_SU3000, + .module_name = "dw2102", + .allowed_protos = RC_PROTO_BIT_RC5, + .rc_query = su3000_rc_query, + }, + + .read_mac_address = su3000_read_mac_address, + + .generic_bulk_ctrl_endpoint = 0x01, + + .adapter = { + { + .num_frontends = 1, + .fe = {{ + .streaming_ctrl = su3000_streaming_ctrl, + .frontend_attach = m88rs2000_frontend_attach, + .stream = { + .type = USB_BULK, + .count = 8, + .endpoint = 0x82, + .u = { + .bulk = { + .buffersize = 4096, + } + } + } + } }, + } + }, + .num_device_descs = 2, + .devices = { + { "TeVii S421 PCI", + { &dw2102_table[TEVII_S421], NULL }, + { NULL }, + }, + { "TeVii S632 USB", + { &dw2102_table[TEVII_S632], NULL }, + { NULL }, + }, + } +}; + static struct dvb_usb_device_properties t220_properties = { .caps = DVB_USB_IS_AN_I2C_ADAPTER, .usb_ctrl = DEVICE_SPECIFIC, @@ -2326,101 +2486,33 @@ static int dw2102_probe(struct usb_interface *intf, const struct usb_device_id *id) { - int retval = -ENOMEM; - struct dvb_usb_device_properties *p1100; - struct dvb_usb_device_properties *s660; - struct dvb_usb_device_properties *p7500; - struct dvb_usb_device_properties *s421; - - p1100 = kmemdup(&s6x0_properties, - sizeof(struct dvb_usb_device_properties), GFP_KERNEL); - if (!p1100) - goto err0; - - /* copy default structure */ - /* fill only different fields */ - p1100->firmware = P1100_FIRMWARE; - p1100->devices[0] = d1100; - p1100->rc.core.rc_query = prof_rc_query; - p1100->rc.core.rc_codes = RC_MAP_TBS_NEC; - p1100->adapter->fe[0].frontend_attach = stv0288_frontend_attach; - - s660 = kmemdup(&s6x0_properties, - sizeof(struct dvb_usb_device_properties), GFP_KERNEL); - if (!s660) - goto err1; - - s660->firmware = S660_FIRMWARE; - s660->num_device_descs = 3; - s660->devices[0] = d660; - s660->devices[1] = d480_1; - s660->devices[2] = d480_2; - s660->adapter->fe[0].frontend_attach = ds3000_frontend_attach; - - p7500 = kmemdup(&s6x0_properties, - sizeof(struct dvb_usb_device_properties), GFP_KERNEL); - if (!p7500) - goto err2; - - p7500->firmware = P7500_FIRMWARE; - p7500->devices[0] = d7500; - p7500->rc.core.rc_query = prof_rc_query; - p7500->rc.core.rc_codes = RC_MAP_TBS_NEC; - p7500->adapter->fe[0].frontend_attach = prof_7500_frontend_attach; - - - s421 = kmemdup(&su3000_properties, - sizeof(struct dvb_usb_device_properties), GFP_KERNEL); - if (!s421) - goto err3; - - s421->num_device_descs = 2; - s421->devices[0] = d421; - s421->devices[1] = d632; - s421->adapter->fe[0].frontend_attach = m88rs2000_frontend_attach; - - if (0 == dvb_usb_device_init(intf, &dw2102_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &dw2104_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &dw3101_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &s6x0_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, p1100, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, s660, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, p7500, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, s421, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &su3000_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &t220_properties, - THIS_MODULE, NULL, adapter_nr) || - 0 == dvb_usb_device_init(intf, &tt_s2_4600_properties, - THIS_MODULE, NULL, adapter_nr)) { - - /* clean up copied properties */ - kfree(s421); - kfree(p7500); - kfree(s660); - kfree(p1100); + if (!(dvb_usb_device_init(intf, &dw2102_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &dw2104_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &dw3101_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &s6x0_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &p1100_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &s660_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &p7500_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &s421_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &su3000_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &t220_properties, + THIS_MODULE, NULL, adapter_nr) && + dvb_usb_device_init(intf, &tt_s2_4600_properties, + THIS_MODULE, NULL, adapter_nr))) { return 0; } - retval = -ENODEV; - kfree(s421); -err3: - kfree(p7500); -err2: - kfree(s660); -err1: - kfree(p1100); -err0: - return retval; + return -ENODEV; } static void dw2102_disconnect(struct usb_interface *intf) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/m920x.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/m920x.c @@ -274,6 +274,13 @@ /* Should check for ack here, if we knew how. */ } if (msg[i].flags & I2C_M_RD) { + char *read = kmalloc(1, GFP_KERNEL); + if (!read) { + ret = -ENOMEM; + kfree(read); + goto unlock; + } + for (j = 0; j < msg[i].len; j++) { /* Last byte of transaction? * Send STOP, otherwise send ACK. */ @@ -281,9 +288,12 @@ if ((ret = m920x_read(d->udev, M9206_I2C, 0x0, 0x20 | stop, - &msg[i].buf[j], 1)) != 0) + read, 1)) != 0) goto unlock; + msg[i].buf[j] = read[0]; } + + kfree(read); } else { for (j = 0; j < msg[i].len; j++) { /* Last byte of transaction? Then send STOP. */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/nova-t-usb2.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/nova-t-usb2.c @@ -130,7 +130,7 @@ static int nova_t_read_mac_address (struct dvb_usb_device *d, u8 mac[6]) { - int i; + int i, ret; u8 b; mac[0] = 0x00; @@ -139,7 +139,9 @@ /* this is a complete guess, but works for my box */ for (i = 136; i < 139; i++) { - dibusb_read_eeprom_byte(d,i, &b); + ret = dibusb_read_eeprom_byte(d, i, &b); + if (ret) + return ret; mac[5 - (i - 136)] = b; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/dvb-usb/vp702x.c +++ linux-azure-5.4.0/drivers/media/usb/dvb-usb/vp702x.c @@ -291,16 +291,22 @@ static int vp702x_read_mac_addr(struct dvb_usb_device *d,u8 mac[6]) { u8 i, *buf; + int ret; struct vp702x_device_state *st = d->priv; mutex_lock(&st->buf_mutex); buf = st->buf; - for (i = 6; i < 12; i++) - vp702x_usb_in_op(d, READ_EEPROM_REQ, i, 1, &buf[i - 6], 1); + for (i = 6; i < 12; i++) { + ret = vp702x_usb_in_op(d, READ_EEPROM_REQ, i, 1, + &buf[i - 6], 1); + if (ret < 0) + goto err; + } memcpy(mac, buf, 6); +err: mutex_unlock(&st->buf_mutex); - return 0; + return ret; } static int vp702x_frontend_attach(struct dvb_usb_adapter *adap) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/em28xx/em28xx-cards.c +++ linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-cards.c @@ -3515,8 +3515,10 @@ if (dev->is_audio_only) { retval = em28xx_audio_setup(dev); - if (retval) - return -ENODEV; + if (retval) { + retval = -ENODEV; + goto err_deinit_media; + } em28xx_init_extension(dev); return 0; @@ -3535,7 +3537,7 @@ dev_err(&dev->intf->dev, "%s: em28xx_i2c_register bus 0 - error [%d]!\n", __func__, retval); - return retval; + goto err_deinit_media; } /* register i2c bus 1 */ @@ -3551,9 +3553,7 @@ "%s: em28xx_i2c_register bus 1 - error [%d]!\n", __func__, retval); - em28xx_i2c_unregister(dev, 0); - - return retval; + goto err_unreg_i2c; } } @@ -3561,6 +3561,12 @@ em28xx_card_setup(dev); return 0; + +err_unreg_i2c: + em28xx_i2c_unregister(dev, 0); +err_deinit_media: + em28xx_unregister_media_device(dev); + return retval; } static int em28xx_duplicate_dev(struct em28xx *dev) @@ -3815,6 +3821,8 @@ goto err_free; } + kref_init(&dev->ref); + dev->devno = nr; dev->model = id->driver_info; dev->alt = -1; @@ -3915,6 +3923,8 @@ } if (dev->board.has_dual_ts && em28xx_duplicate_dev(dev) == 0) { + kref_init(&dev->dev_next->ref); + dev->dev_next->ts = SECONDARY_TS; dev->dev_next->alt = -1; dev->dev_next->is_audio_only = has_vendor_audio && @@ -3969,12 +3979,8 @@ em28xx_write_reg(dev, 0x0b, 0x82); mdelay(100); } - - kref_init(&dev->dev_next->ref); } - kref_init(&dev->ref); - request_modules(dev); /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/em28xx/em28xx-input.c +++ linux-azure-5.4.0/drivers/media/usb/em28xx/em28xx-input.c @@ -720,7 +720,8 @@ dev->board.has_ir_i2c = 0; dev_warn(&dev->intf->dev, "No i2c IR remote control device found.\n"); - return -ENODEV; + err = -ENODEV; + goto ref_put; } } @@ -735,7 +736,7 @@ ir = kzalloc(sizeof(*ir), GFP_KERNEL); if (!ir) - return -ENOMEM; + goto ref_put; rc = rc_allocate_device(RC_DRIVER_SCANCODE); if (!rc) goto error; @@ -839,6 +840,8 @@ dev->ir = NULL; rc_free_device(rc); kfree(ir); +ref_put: + em28xx_shutdown_buttons(dev); return err; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/go7007/go7007-driver.c +++ linux-azure-5.4.0/drivers/media/usb/go7007/go7007-driver.c @@ -691,49 +691,23 @@ struct device *dev) { struct go7007 *go; - int i; go = kzalloc(sizeof(struct go7007), GFP_KERNEL); if (go == NULL) return NULL; go->dev = dev; go->board_info = board; - go->board_id = 0; go->tuner_type = -1; - go->channel_number = 0; - go->name[0] = 0; mutex_init(&go->hw_lock); init_waitqueue_head(&go->frame_waitq); spin_lock_init(&go->spinlock); go->status = STATUS_INIT; - memset(&go->i2c_adapter, 0, sizeof(go->i2c_adapter)); - go->i2c_adapter_online = 0; - go->interrupt_available = 0; init_waitqueue_head(&go->interrupt_waitq); - go->input = 0; go7007_update_board(go); - go->encoder_h_halve = 0; - go->encoder_v_halve = 0; - go->encoder_subsample = 0; go->format = V4L2_PIX_FMT_MJPEG; go->bitrate = 1500000; go->fps_scale = 1; - go->pali = 0; go->aspect_ratio = GO7007_RATIO_1_1; - go->gop_size = 0; - go->ipb = 0; - go->closed_gop = 0; - go->repeat_seqhead = 0; - go->seq_header_enable = 0; - go->gop_header_enable = 0; - go->dvd_mode = 0; - go->interlace_coding = 0; - for (i = 0; i < 4; ++i) - go->modet[i].enable = 0; - for (i = 0; i < 1624; ++i) - go->modet_map[i] = 0; - go->audio_deliver = NULL; - go->audio_enabled = 0; return go; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/go7007/s2250-board.c +++ linux-azure-5.4.0/drivers/media/usb/go7007/s2250-board.c @@ -504,6 +504,7 @@ u8 *data; struct go7007 *go = i2c_get_adapdata(adapter); struct go7007_usb *usb = go->hpi_context; + int err = -EIO; audio = i2c_new_dummy_device(adapter, TLV320_ADDRESS >> 1); if (IS_ERR(audio)) @@ -532,11 +533,8 @@ V4L2_CID_HUE, -512, 511, 1, 0); sd->ctrl_handler = &state->hdl; if (state->hdl.error) { - int err = state->hdl.error; - - v4l2_ctrl_handler_free(&state->hdl); - kfree(state); - return err; + err = state->hdl.error; + goto fail; } state->std = V4L2_STD_NTSC; @@ -600,7 +598,7 @@ i2c_unregister_device(audio); v4l2_ctrl_handler_free(&state->hdl); kfree(state); - return -EIO; + return err; } static int s2250_remove(struct i2c_client *client) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/gspca/gl860/gl860.c +++ linux-azure-5.4.0/drivers/media/usb/gspca/gl860/gl860.c @@ -561,8 +561,8 @@ len, 400 + 200 * (len > 1)); memcpy(pdata, gspca_dev->usb_buf, len); } else { - r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), - req, pref, val, index, NULL, len, 400); + gspca_err(gspca_dev, "zero-length read request\n"); + r = -EINVAL; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/gspca/sunplus.c +++ linux-azure-5.4.0/drivers/media/usb/gspca/sunplus.c @@ -242,6 +242,10 @@ gspca_err(gspca_dev, "reg_r: buffer overflow\n"); return; } + if (len == 0) { + gspca_err(gspca_dev, "reg_r: zero-length read\n"); + return; + } if (gspca_dev->usb_err < 0) return; ret = usb_control_msg(gspca_dev->dev, @@ -250,7 +254,7 @@ USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0, /* value */ index, - len ? gspca_dev->usb_buf : NULL, len, + gspca_dev->usb_buf, len, 500); if (ret < 0) { pr_err("reg_r err %d\n", ret); @@ -727,7 +731,7 @@ case MegaImageVI: reg_w_riv(gspca_dev, 0xf0, 0, 0); spca504B_WaitCmdStatus(gspca_dev); - reg_r(gspca_dev, 0xf0, 4, 0); + reg_w_riv(gspca_dev, 0xf0, 4, 0); spca504B_WaitCmdStatus(gspca_dev); break; default: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/hdpvr/hdpvr-video.c +++ linux-azure-5.4.0/drivers/media/usb/hdpvr/hdpvr-video.c @@ -308,7 +308,6 @@ dev->status = STATUS_STREAMING; - INIT_WORK(&dev->worker, hdpvr_transmit_buffers); schedule_work(&dev->worker); v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev, @@ -410,7 +409,7 @@ struct hdpvr_device *dev = video_drvdata(file); struct hdpvr_buffer *buf = NULL; struct urb *urb; - unsigned int ret = 0; + int ret = 0; int rem, cnt; if (*pos) @@ -1165,6 +1164,9 @@ bool ac3 = dev->flags & HDPVR_FLAG_AC3_CAP; int res; + // initialize dev->worker + INIT_WORK(&dev->worker, hdpvr_transmit_buffers); + dev->cur_std = V4L2_STD_525_60; dev->width = 720; dev->height = 480; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/pvrusb2/pvrusb2-hdw.c +++ linux-azure-5.4.0/drivers/media/usb/pvrusb2/pvrusb2-hdw.c @@ -1468,7 +1468,7 @@ for (address = 0; address < fwsize; address += 0x800) { memcpy(fw_ptr, fw_entry->data + address, 0x800); ret += usb_control_msg(hdw->usb_dev, pipe, 0xa0, 0x40, address, - 0, fw_ptr, 0x800, HZ); + 0, fw_ptr, 0x800, 1000); } trace_firmware("Upload done, releasing device's CPU"); @@ -1606,7 +1606,7 @@ ((u32 *)fw_ptr)[icnt] = swab32(((u32 *)fw_ptr)[icnt]); ret |= usb_bulk_msg(hdw->usb_dev, pipe, fw_ptr,bcnt, - &actual_length, HZ); + &actual_length, 1000); ret |= (actual_length != bcnt); if (ret) break; fw_done += bcnt; @@ -2570,6 +2570,11 @@ } while (0); mutex_unlock(&pvr2_unit_mtx); + INIT_WORK(&hdw->workpoll, pvr2_hdw_worker_poll); + + if (hdw->unit_number == -1) + goto fail; + cnt1 = 0; cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2"); cnt1 += cnt2; @@ -2581,8 +2586,6 @@ if (cnt1 >= sizeof(hdw->name)) cnt1 = sizeof(hdw->name)-1; hdw->name[cnt1] = 0; - INIT_WORK(&hdw->workpoll,pvr2_hdw_worker_poll); - pvr2_trace(PVR2_TRACE_INIT,"Driver unit number is %d, name is %s", hdw->unit_number,hdw->name); @@ -2608,6 +2611,7 @@ del_timer_sync(&hdw->encoder_run_timer); del_timer_sync(&hdw->encoder_wait_timer); flush_work(&hdw->workpoll); + v4l2_device_unregister(&hdw->v4l2_dev); usb_free_urb(hdw->ctl_read_urb); usb_free_urb(hdw->ctl_write_urb); kfree(hdw->ctl_read_buffer); @@ -2677,9 +2681,8 @@ pvr2_stream_destroy(hdw->vid_stream); hdw->vid_stream = NULL; } - pvr2_i2c_core_done(hdw); v4l2_device_unregister(&hdw->v4l2_dev); - pvr2_hdw_remove_usb_stuff(hdw); + pvr2_hdw_disconnect(hdw); mutex_lock(&pvr2_unit_mtx); do { if ((hdw->unit_number >= 0) && @@ -2706,6 +2709,7 @@ { pvr2_trace(PVR2_TRACE_INIT,"pvr2_hdw_disconnect(hdw=%p)",hdw); LOCK_TAKE(hdw->big_lock); + pvr2_i2c_core_done(hdw); LOCK_TAKE(hdw->ctl_lock); pvr2_hdw_remove_usb_stuff(hdw); LOCK_GIVE(hdw->ctl_lock); @@ -3439,7 +3443,7 @@ 0xa0,0xc0, address,0, hdw->fw_buffer+address, - 0x800,HZ); + 0x800,1000); if (ret < 0) break; } @@ -3978,7 +3982,7 @@ /* Write the CPUCS register on the 8051. The lsb of the register is the reset bit; a 1 asserts reset while a 0 clears it. */ pipe = usb_sndctrlpipe(hdw->usb_dev, 0); - ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,HZ); + ret = usb_control_msg(hdw->usb_dev,pipe,0xa0,0x40,0xe600,0,da,1,1000); if (ret < 0) { pvr2_trace(PVR2_TRACE_ERROR_LEGS, "cpureset_assert(%d) error=%d",val,ret); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/s2255/s2255drv.c +++ linux-azure-5.4.0/drivers/media/usb/s2255/s2255drv.c @@ -1884,7 +1884,7 @@ USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, Value, Index, buf, - TransferBufferLength, HZ * 5); + TransferBufferLength, USB_CTRL_SET_TIMEOUT); if (r >= 0) memcpy(TransferBuffer, buf, TransferBufferLength); @@ -1893,7 +1893,7 @@ r = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), Request, USB_TYPE_VENDOR | USB_RECIP_DEVICE, Value, Index, buf, - TransferBufferLength, HZ * 5); + TransferBufferLength, USB_CTRL_SET_TIMEOUT); } kfree(buf); return r; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/stk1160/stk1160-core.c +++ linux-azure-5.4.0/drivers/media/usb/stk1160/stk1160-core.c @@ -65,7 +65,7 @@ return -ENOMEM; ret = usb_control_msg(dev->udev, pipe, 0x00, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x00, reg, buf, sizeof(u8), HZ); + 0x00, reg, buf, sizeof(u8), 1000); if (ret < 0) { stk1160_err("read failed on reg 0x%x (%d)\n", reg, ret); @@ -85,7 +85,7 @@ ret = usb_control_msg(dev->udev, pipe, 0x01, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - value, reg, NULL, 0, HZ); + value, reg, NULL, 0, 1000); if (ret < 0) { stk1160_err("write failed on reg 0x%x (%d)\n", reg, ret); @@ -403,7 +403,7 @@ /* Here is the only place where isoc get released */ stk1160_uninit_isoc(dev); - stk1160_clear_queue(dev); + stk1160_clear_queue(dev, VB2_BUF_STATE_ERROR); video_unregister_device(&dev->vdev); v4l2_device_disconnect(&dev->v4l2_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/stk1160/stk1160-v4l.c +++ linux-azure-5.4.0/drivers/media/usb/stk1160/stk1160-v4l.c @@ -258,7 +258,7 @@ stk1160_uninit_isoc(dev); out_stop_hw: usb_set_interface(dev->udev, 0, 0); - stk1160_clear_queue(dev); + stk1160_clear_queue(dev, VB2_BUF_STATE_QUEUED); mutex_unlock(&dev->v4l_lock); @@ -306,7 +306,7 @@ stk1160_stop_hw(dev); - stk1160_clear_queue(dev); + stk1160_clear_queue(dev, VB2_BUF_STATE_ERROR); stk1160_dbg("streaming stopped\n"); @@ -745,7 +745,7 @@ /********************************************************************/ /* Must be called with both v4l_lock and vb_queue_lock hold */ -void stk1160_clear_queue(struct stk1160 *dev) +void stk1160_clear_queue(struct stk1160 *dev, enum vb2_buffer_state vb2_state) { struct stk1160_buffer *buf; unsigned long flags; @@ -756,7 +756,7 @@ buf = list_first_entry(&dev->avail_bufs, struct stk1160_buffer, list); list_del(&buf->list); - vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); + vb2_buffer_done(&buf->vb.vb2_buf, vb2_state); stk1160_dbg("buffer [%p/%d] aborted\n", buf, buf->vb.vb2_buf.index); } @@ -766,7 +766,7 @@ buf = dev->isoc_ctl.buf; dev->isoc_ctl.buf = NULL; - vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); + vb2_buffer_done(&buf->vb.vb2_buf, vb2_state); stk1160_dbg("buffer [%p/%d] aborted\n", buf, buf->vb.vb2_buf.index); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/stk1160/stk1160.h +++ linux-azure-5.4.0/drivers/media/usb/stk1160/stk1160.h @@ -166,7 +166,7 @@ int stk1160_vb2_setup(struct stk1160 *dev); int stk1160_video_register(struct stk1160 *dev); void stk1160_video_unregister(struct stk1160 *dev); -void stk1160_clear_queue(struct stk1160 *dev); +void stk1160_clear_queue(struct stk1160 *dev, enum vb2_buffer_state vb2_state); /* Provided by stk1160-video.c */ int stk1160_alloc_isoc(struct stk1160 *dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/stkwebcam/stk-webcam.c +++ linux-azure-5.4.0/drivers/media/usb/stkwebcam/stk-webcam.c @@ -1346,7 +1346,7 @@ if (!dev->isoc_ep) { pr_err("Could not find isoc-in endpoint\n"); err = -ENODEV; - goto error; + goto error_put; } dev->vsettings.palette = V4L2_PIX_FMT_RGB565; dev->vsettings.mode = MODE_VGA; @@ -1359,10 +1359,12 @@ err = stk_register_video_device(dev); if (err) - goto error; + goto error_put; return 0; +error_put: + usb_put_intf(interface); error: v4l2_ctrl_handler_free(hdl); v4l2_device_unregister(&dev->v4l2_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/uvc/uvc_video.c +++ linux-azure-5.4.0/drivers/media/usb/uvc/uvc_video.c @@ -112,6 +112,11 @@ case 5: /* Invalid unit */ case 6: /* Invalid control */ case 7: /* Invalid Request */ + /* + * The firmware has not properly implemented + * the control or there has been a HW error. + */ + return -EIO; case 8: /* Invalid value within range */ return -EINVAL; default: /* reserved or unknown */ @@ -124,10 +129,37 @@ static void uvc_fixup_video_ctrl(struct uvc_streaming *stream, struct uvc_streaming_control *ctrl) { + static const struct usb_device_id elgato_cam_link_4k = { + USB_DEVICE(0x0fd9, 0x0066) + }; struct uvc_format *format = NULL; struct uvc_frame *frame = NULL; unsigned int i; + /* + * The response of the Elgato Cam Link 4K is incorrect: The second byte + * contains bFormatIndex (instead of being the second byte of bmHint). + * The first byte is always zero. The third byte is always 1. + * + * The UVC 1.5 class specification defines the first five bits in the + * bmHint bitfield. The remaining bits are reserved and should be zero. + * Therefore a valid bmHint will be less than 32. + * + * Latest Elgato Cam Link 4K firmware as of 2021-03-23 needs this fix. + * MCU: 20.02.19, FPGA: 67 + */ + if (usb_match_one_id(stream->dev->intf, &elgato_cam_link_4k) && + ctrl->bmHint > 255) { + u8 corrected_format_index = ctrl->bmHint >> 8; + + uvc_trace(UVC_TRACE_VIDEO, + "Correct USB video probe response from {bmHint: 0x%04x, bFormatIndex: %u} to {bmHint: 0x%04x, bFormatIndex: %u}\n", + ctrl->bmHint, ctrl->bFormatIndex, + 1, corrected_format_index); + ctrl->bmHint = 1; + ctrl->bFormatIndex = corrected_format_index; + } + for (i = 0; i < stream->nformats; ++i) { if (stream->format[i].index == ctrl->bFormatIndex) { format = &stream->format[i]; @@ -1883,6 +1915,10 @@ if (ep == NULL) return -EIO; + /* Reject broken descriptors. */ + if (usb_endpoint_maxp(&ep->desc) == 0) + return -EIO; + ret = uvc_init_video_bulk(stream, ep, gfp_flags); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/usb/zr364xx/zr364xx.c +++ linux-azure-5.4.0/drivers/media/usb/zr364xx/zr364xx.c @@ -1037,6 +1037,7 @@ DBG("submitting URB %p\n", pipe_info->stream_urb); retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL); if (retval) { + usb_free_urb(pipe_info->stream_urb); printk(KERN_ERR KBUILD_MODNAME ": start read pipe failed\n"); return retval; } @@ -1186,15 +1187,11 @@ return err; } -static void zr364xx_release(struct v4l2_device *v4l2_dev) +static void zr364xx_board_uninit(struct zr364xx_camera *cam) { - struct zr364xx_camera *cam = - container_of(v4l2_dev, struct zr364xx_camera, v4l2_dev); unsigned long i; - v4l2_device_unregister(&cam->v4l2_dev); - - videobuf_mmap_free(&cam->vb_vidq); + zr364xx_stop_readpipe(cam); /* release sys buffers */ for (i = 0; i < FRAMES; i++) { @@ -1205,9 +1202,19 @@ cam->buffer.frame[i].lpvbits = NULL; } - v4l2_ctrl_handler_free(&cam->ctrl_handler); /* release transfer buffer */ kfree(cam->pipe->transfer_buffer); +} + +static void zr364xx_release(struct v4l2_device *v4l2_dev) +{ + struct zr364xx_camera *cam = + container_of(v4l2_dev, struct zr364xx_camera, v4l2_dev); + + videobuf_mmap_free(&cam->vb_vidq); + v4l2_ctrl_handler_free(&cam->ctrl_handler); + zr364xx_board_uninit(cam); + v4l2_device_unregister(&cam->v4l2_dev); kfree(cam); } @@ -1330,6 +1337,7 @@ { struct zr364xx_pipeinfo *pipe = cam->pipe; unsigned long i; + int err; DBG("board init: %p\n", cam); memset(pipe, 0, sizeof(*pipe)); @@ -1362,9 +1370,8 @@ if (i == 0) { printk(KERN_INFO KBUILD_MODNAME ": out of memory. Aborting\n"); - kfree(cam->pipe->transfer_buffer); - cam->pipe->transfer_buffer = NULL; - return -ENOMEM; + err = -ENOMEM; + goto err_free; } else cam->buffer.dwFrames = i; @@ -1379,9 +1386,20 @@ /*** end create system buffers ***/ /* start read pipe */ - zr364xx_start_readpipe(cam); + err = zr364xx_start_readpipe(cam); + if (err) + goto err_free_frames; + DBG(": board initialized\n"); return 0; + +err_free_frames: + for (i = 0; i < FRAMES; i++) + vfree(cam->buffer.frame[i].lpvbits); +err_free: + kfree(cam->pipe->transfer_buffer); + cam->pipe->transfer_buffer = NULL; + return err; } static int zr364xx_probe(struct usb_interface *intf, @@ -1406,12 +1424,10 @@ if (!cam) return -ENOMEM; - cam->v4l2_dev.release = zr364xx_release; err = v4l2_device_register(&intf->dev, &cam->v4l2_dev); if (err < 0) { dev_err(&udev->dev, "couldn't register v4l2_device\n"); - kfree(cam); - return err; + goto free_cam; } hdl = &cam->ctrl_handler; v4l2_ctrl_handler_init(hdl, 1); @@ -1420,7 +1436,7 @@ if (hdl->error) { err = hdl->error; dev_err(&udev->dev, "couldn't register control\n"); - goto fail; + goto free_hdlr_and_unreg_dev; } /* save the init method used by this camera */ cam->method = id->driver_info; @@ -1493,7 +1509,7 @@ if (!cam->read_endpoint) { err = -ENOMEM; dev_err(&intf->dev, "Could not find bulk-in endpoint\n"); - goto fail; + goto free_hdlr_and_unreg_dev; } /* v4l */ @@ -1504,10 +1520,11 @@ /* load zr364xx board specific */ err = zr364xx_board_init(cam); - if (!err) - err = v4l2_ctrl_handler_setup(hdl); if (err) - goto fail; + goto free_hdlr_and_unreg_dev; + err = v4l2_ctrl_handler_setup(hdl); + if (err) + goto board_uninit; spin_lock_init(&cam->slock); @@ -1522,16 +1539,20 @@ err = video_register_device(&cam->vdev, VFL_TYPE_GRABBER, -1); if (err) { dev_err(&udev->dev, "video_register_device failed\n"); - goto fail; + goto board_uninit; } + cam->v4l2_dev.release = zr364xx_release; dev_info(&udev->dev, DRIVER_DESC " controlling device %s\n", video_device_node_name(&cam->vdev)); return 0; -fail: +board_uninit: + zr364xx_board_uninit(cam); +free_hdlr_and_unreg_dev: v4l2_ctrl_handler_free(hdl); v4l2_device_unregister(&cam->v4l2_dev); +free_cam: kfree(cam); return err; } @@ -1578,10 +1599,19 @@ if (!cam->was_streaming) return 0; - zr364xx_start_readpipe(cam); + res = zr364xx_start_readpipe(cam); + if (res) + return res; + res = zr364xx_prepare(cam); - if (!res) - zr364xx_start_acquire(cam); + if (res) + goto err_prepare; + + zr364xx_start_acquire(cam); + return 0; + +err_prepare: + zr364xx_stop_readpipe(cam); return res; } #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/v4l2-core/v4l2-dv-timings.c +++ linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-dv-timings.c @@ -161,6 +161,20 @@ (bt->interlaced && !(caps & V4L2_DV_BT_CAP_INTERLACED)) || (!bt->interlaced && !(caps & V4L2_DV_BT_CAP_PROGRESSIVE))) return false; + + /* sanity checks for the blanking timings */ + if (!bt->interlaced && + (bt->il_vbackporch || bt->il_vsync || bt->il_vfrontporch)) + return false; + if (bt->hfrontporch > 2 * bt->width || + bt->hsync > 1024 || bt->hbackporch > 1024) + return false; + if (bt->vfrontporch > 4096 || + bt->vsync > 128 || bt->vbackporch > 4096) + return false; + if (bt->interlaced && (bt->il_vfrontporch > 4096 || + bt->il_vsync > 128 || bt->il_vbackporch > 4096)) + return false; return fnc == NULL || fnc(t, fnc_handle); } EXPORT_SYMBOL_GPL(v4l2_valid_dv_timings); @@ -196,7 +210,7 @@ if (!v4l2_valid_dv_timings(t, cap, fnc, fnc_handle)) return false; - for (i = 0; i < v4l2_dv_timings_presets[i].bt.width; i++) { + for (i = 0; v4l2_dv_timings_presets[i].bt.width; i++) { if (v4l2_valid_dv_timings(v4l2_dv_timings_presets + i, cap, fnc, fnc_handle) && v4l2_match_dv_timings(t, v4l2_dv_timings_presets + i, @@ -218,7 +232,7 @@ { unsigned int i; - for (i = 0; i < v4l2_dv_timings_presets[i].bt.width; i++) { + for (i = 0; v4l2_dv_timings_presets[i].bt.width; i++) { const struct v4l2_bt_timings *bt = &v4l2_dv_timings_presets[i].bt; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/media/v4l2-core/v4l2-fh.c +++ linux-azure-5.4.0/drivers/media/v4l2-core/v4l2-fh.c @@ -96,6 +96,7 @@ v4l2_fh_del(fh); v4l2_fh_exit(fh); kfree(fh); + filp->private_data = NULL; } return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memory/atmel-ebi.c +++ linux-azure-5.4.0/drivers/memory/atmel-ebi.c @@ -545,20 +545,27 @@ smc_np = of_parse_phandle(dev->of_node, "atmel,smc", 0); ebi->smc.regmap = syscon_node_to_regmap(smc_np); - if (IS_ERR(ebi->smc.regmap)) - return PTR_ERR(ebi->smc.regmap); + if (IS_ERR(ebi->smc.regmap)) { + ret = PTR_ERR(ebi->smc.regmap); + goto put_node; + } ebi->smc.layout = atmel_hsmc_get_reg_layout(smc_np); - if (IS_ERR(ebi->smc.layout)) - return PTR_ERR(ebi->smc.layout); + if (IS_ERR(ebi->smc.layout)) { + ret = PTR_ERR(ebi->smc.layout); + goto put_node; + } ebi->smc.clk = of_clk_get(smc_np, 0); if (IS_ERR(ebi->smc.clk)) { - if (PTR_ERR(ebi->smc.clk) != -ENOENT) - return PTR_ERR(ebi->smc.clk); + if (PTR_ERR(ebi->smc.clk) != -ENOENT) { + ret = PTR_ERR(ebi->smc.clk); + goto put_node; + } ebi->smc.clk = NULL; } + of_node_put(smc_np); ret = clk_prepare_enable(ebi->smc.clk); if (ret) return ret; @@ -601,12 +608,18 @@ child); ret = atmel_ebi_dev_disable(ebi, child); - if (ret) + if (ret) { + of_node_put(child); return ret; + } } } return of_platform_populate(np, NULL, NULL, dev); + +put_node: + of_node_put(smc_np); + return ret; } static __maybe_unused int atmel_ebi_resume(struct device *dev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memory/fsl_ifc.c +++ linux-azure-5.4.0/drivers/memory/fsl_ifc.c @@ -96,7 +96,6 @@ iounmap(ctrl->gregs); dev_set_drvdata(&dev->dev, NULL); - kfree(ctrl); return 0; } @@ -208,7 +207,8 @@ dev_info(&dev->dev, "Freescale Integrated Flash Controller\n"); - fsl_ifc_ctrl_dev = kzalloc(sizeof(*fsl_ifc_ctrl_dev), GFP_KERNEL); + fsl_ifc_ctrl_dev = devm_kzalloc(&dev->dev, sizeof(*fsl_ifc_ctrl_dev), + GFP_KERNEL); if (!fsl_ifc_ctrl_dev) return -ENOMEM; @@ -218,8 +218,7 @@ fsl_ifc_ctrl_dev->gregs = of_iomap(dev->dev.of_node, 0); if (!fsl_ifc_ctrl_dev->gregs) { dev_err(&dev->dev, "failed to get memory region\n"); - ret = -ENODEV; - goto err; + return -ENODEV; } if (of_property_read_bool(dev->dev.of_node, "little-endian")) { @@ -264,7 +263,7 @@ ret = fsl_ifc_ctrl_init(fsl_ifc_ctrl_dev); if (ret < 0) - goto err; + goto err_unmap_nandirq; init_waitqueue_head(&fsl_ifc_ctrl_dev->nand_wait); @@ -273,7 +272,7 @@ if (ret != 0) { dev_err(&dev->dev, "failed to install irq (%d)\n", fsl_ifc_ctrl_dev->irq); - goto err_irq; + goto err_unmap_nandirq; } if (fsl_ifc_ctrl_dev->nand_irq) { @@ -282,19 +281,19 @@ if (ret != 0) { dev_err(&dev->dev, "failed to install irq (%d)\n", fsl_ifc_ctrl_dev->nand_irq); - goto err_nandirq; + goto err_free_irq; } } return 0; -err_nandirq: - free_irq(fsl_ifc_ctrl_dev->nand_irq, fsl_ifc_ctrl_dev); - irq_dispose_mapping(fsl_ifc_ctrl_dev->nand_irq); -err_irq: +err_free_irq: free_irq(fsl_ifc_ctrl_dev->irq, fsl_ifc_ctrl_dev); +err_unmap_nandirq: + irq_dispose_mapping(fsl_ifc_ctrl_dev->nand_irq); irq_dispose_mapping(fsl_ifc_ctrl_dev->irq); err: + iounmap(fsl_ifc_ctrl_dev->gregs); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memory/of_memory.c +++ linux-azure-5.4.0/drivers/memory/of_memory.c @@ -132,6 +132,7 @@ for_each_child_of_node(np_ddr, np_tim) { if (of_device_is_compatible(np_tim, tim_compat)) { if (of_do_get_timings(np_tim, &timings[i])) { + of_node_put(np_tim); devm_kfree(dev, timings); goto default_timings; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memstick/core/ms_block.c +++ linux-azure-5.4.0/drivers/memstick/core/ms_block.c @@ -1335,17 +1335,17 @@ msb->zone_count = msb->block_count / MS_BLOCKS_IN_ZONE; msb->logical_block_count = msb->zone_count * 496 - 2; - msb->used_blocks_bitmap = kzalloc(msb->block_count / 8, GFP_KERNEL); - msb->erased_blocks_bitmap = kzalloc(msb->block_count / 8, GFP_KERNEL); + msb->used_blocks_bitmap = bitmap_zalloc(msb->block_count, GFP_KERNEL); + msb->erased_blocks_bitmap = bitmap_zalloc(msb->block_count, GFP_KERNEL); msb->lba_to_pba_table = kmalloc_array(msb->logical_block_count, sizeof(u16), GFP_KERNEL); if (!msb->used_blocks_bitmap || !msb->lba_to_pba_table || !msb->erased_blocks_bitmap) { - kfree(msb->used_blocks_bitmap); + bitmap_free(msb->used_blocks_bitmap); + bitmap_free(msb->erased_blocks_bitmap); kfree(msb->lba_to_pba_table); - kfree(msb->erased_blocks_bitmap); return -ENOMEM; } @@ -1727,7 +1727,7 @@ msb->pages_in_block = boot_block->attr.block_size * 2; msb->block_size = msb->page_size * msb->pages_in_block; - if (msb->page_size > PAGE_SIZE) { + if ((size_t)msb->page_size > PAGE_SIZE) { /* this isn't supported by linux at all, anyway*/ dbg("device page %d size isn't supported", msb->page_size); return -EINVAL; @@ -1953,7 +1953,8 @@ static void msb_data_clear(struct msb_data *msb) { kfree(msb->boot_page); - kfree(msb->used_blocks_bitmap); + bitmap_free(msb->used_blocks_bitmap); + bitmap_free(msb->erased_blocks_bitmap); kfree(msb->lba_to_pba_table); kfree(msb->cache); msb->card = NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memstick/host/jmb38x_ms.c +++ linux-azure-5.4.0/drivers/memstick/host/jmb38x_ms.c @@ -899,7 +899,7 @@ iounmap(host->addr); err_out_free: - kfree(msh); + memstick_free_host(msh); return NULL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/memstick/host/rtsx_usb_ms.c +++ linux-azure-5.4.0/drivers/memstick/host/rtsx_usb_ms.c @@ -799,9 +799,9 @@ return 0; err_out: - memstick_free_host(msh); pm_runtime_disable(ms_dev(host)); pm_runtime_put_noidle(ms_dev(host)); + memstick_free_host(msh); return err; } @@ -828,9 +828,6 @@ } mutex_unlock(&host->host_mutex); - memstick_remove_host(msh); - memstick_free_host(msh); - /* Balance possible unbalanced usage count * e.g. unconditional module removal */ @@ -838,10 +835,11 @@ pm_runtime_put(ms_dev(host)); pm_runtime_disable(ms_dev(host)); - platform_set_drvdata(pdev, NULL); - + memstick_remove_host(msh); dev_dbg(ms_dev(host), ": Realtek USB Memstick controller has been removed\n"); + memstick_free_host(msh); + platform_set_drvdata(pdev, NULL); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/ab8500-core.c +++ linux-azure-5.4.0/drivers/mfd/ab8500-core.c @@ -493,7 +493,7 @@ if (line == AB8540_INT_GPIO43F || line == AB8540_INT_GPIO44F) line += 1; - handle_nested_irq(irq_create_mapping(ab8500->domain, line)); + handle_nested_irq(irq_find_mapping(ab8500->domain, line)); } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/asic3.c +++ linux-azure-5.4.0/drivers/mfd/asic3.c @@ -914,14 +914,14 @@ ret = mfd_add_devices(&pdev->dev, pdev->id, &asic3_cell_ds1wm, 1, mem, asic->irq_base, NULL); if (ret < 0) - goto out; + goto out_unmap; } if (mem_sdio && (irq >= 0)) { ret = mfd_add_devices(&pdev->dev, pdev->id, &asic3_cell_mmc, 1, mem_sdio, irq, NULL); if (ret < 0) - goto out; + goto out_unmap; } ret = 0; @@ -935,8 +935,12 @@ ret = mfd_add_devices(&pdev->dev, 0, asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0, NULL); } + return ret; - out: +out_unmap: + if (asic->tmio_cnf) + iounmap(asic->tmio_cnf); +out: return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/da9052-i2c.c +++ linux-azure-5.4.0/drivers/mfd/da9052-i2c.c @@ -113,6 +113,7 @@ {"da9053-bc", DA9053_BC}, {} }; +MODULE_DEVICE_TABLE(i2c, da9052_i2c_id); #ifdef CONFIG_OF static const struct of_device_id dialog_dt_ids[] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/davinci_voicecodec.c +++ linux-azure-5.4.0/drivers/mfd/davinci_voicecodec.c @@ -46,14 +46,12 @@ } clk_enable(davinci_vc->clk); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - - fifo_base = (dma_addr_t)res->start; - davinci_vc->base = devm_ioremap_resource(&pdev->dev, res); + davinci_vc->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res); if (IS_ERR(davinci_vc->base)) { ret = PTR_ERR(davinci_vc->base); goto fail; } + fifo_base = (dma_addr_t)res->start; davinci_vc->regmap = devm_regmap_init_mmio(&pdev->dev, davinci_vc->base, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/db8500-prcmu.c +++ linux-azure-5.4.0/drivers/mfd/db8500-prcmu.c @@ -1695,22 +1695,20 @@ } static const unsigned long db8500_armss_freqs[] = { - 200000000, - 400000000, - 800000000, + 199680000, + 399360000, + 798720000, 998400000 }; /* The DB8520 has slightly higher ARMSS max frequency */ static const unsigned long db8520_armss_freqs[] = { - 200000000, - 400000000, - 800000000, + 199680000, + 399360000, + 798720000, 1152000000 }; - - static long round_armss_rate(unsigned long rate) { unsigned long freq = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/fsl-imx25-tsadc.c +++ linux-azure-5.4.0/drivers/mfd/fsl-imx25-tsadc.c @@ -69,7 +69,7 @@ int irq; irq = platform_get_irq(pdev, 0); - if (irq <= 0) + if (irq < 0) return irq; tsadc->domain = irq_domain_add_simple(np, 2, 0, &mx25_tsadc_domain_ops, @@ -84,6 +84,19 @@ return 0; } +static int mx25_tsadc_unset_irq(struct platform_device *pdev) +{ + struct mx25_tsadc *tsadc = platform_get_drvdata(pdev); + int irq = platform_get_irq(pdev, 0); + + if (irq >= 0) { + irq_set_chained_handler_and_data(irq, NULL, NULL); + irq_domain_remove(tsadc->domain); + } + + return 0; +} + static void mx25_tsadc_setup_clk(struct platform_device *pdev, struct mx25_tsadc *tsadc) { @@ -171,18 +184,21 @@ platform_set_drvdata(pdev, tsadc); - return devm_of_platform_populate(dev); + ret = devm_of_platform_populate(dev); + if (ret) + goto err_irq; + + return 0; + +err_irq: + mx25_tsadc_unset_irq(pdev); + + return ret; } static int mx25_tsadc_remove(struct platform_device *pdev) { - struct mx25_tsadc *tsadc = platform_get_drvdata(pdev); - int irq = platform_get_irq(pdev, 0); - - if (irq) { - irq_set_chained_handler_and_data(irq, NULL, NULL); - irq_domain_remove(tsadc->domain); - } + mx25_tsadc_unset_irq(pdev); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/intel-lpss-acpi.c +++ linux-azure-5.4.0/drivers/mfd/intel-lpss-acpi.c @@ -102,6 +102,7 @@ { struct intel_lpss_platform_info *info; const struct acpi_device_id *id; + int ret; id = acpi_match_device(intel_lpss_acpi_ids, &pdev->dev); if (!id) @@ -115,10 +116,14 @@ info->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); info->irq = platform_get_irq(pdev, 0); + ret = intel_lpss_probe(&pdev->dev, info); + if (ret) + return ret; + pm_runtime_set_active(&pdev->dev); pm_runtime_enable(&pdev->dev); - return intel_lpss_probe(&pdev->dev, info); + return 0; } static int intel_lpss_acpi_remove(struct platform_device *pdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/intel_soc_pmic_core.c +++ linux-azure-5.4.0/drivers/mfd/intel_soc_pmic_core.c @@ -111,6 +111,7 @@ return 0; err_del_irq_chip: + pwm_remove_table(crc_pwm_lookup, ARRAY_SIZE(crc_pwm_lookup)); regmap_del_irq_chip(pmic->irq, pmic->irq_chip_data); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/ipaq-micro.c +++ linux-azure-5.4.0/drivers/mfd/ipaq-micro.c @@ -407,7 +407,7 @@ micro_reset_comm(micro); irq = platform_get_irq(pdev, 0); - if (!irq) + if (irq < 0) return -EINVAL; ret = devm_request_irq(&pdev->dev, irq, micro_serial_isr, IRQF_SHARED, "ipaq-micro", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/lp8788-irq.c +++ linux-azure-5.4.0/drivers/mfd/lp8788-irq.c @@ -175,6 +175,7 @@ IRQF_TRIGGER_FALLING | IRQF_ONESHOT, "lp8788-irq", irqd); if (ret) { + irq_domain_remove(lp->irqdm); dev_err(lp->dev, "failed to create a thread for IRQ_N\n"); return ret; } @@ -188,4 +189,6 @@ { if (lp->irq) free_irq(lp->irq, lp->irqdm); + if (lp->irqdm) + irq_domain_remove(lp->irqdm); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/lp8788.c +++ linux-azure-5.4.0/drivers/mfd/lp8788.c @@ -195,8 +195,16 @@ if (ret) return ret; - return mfd_add_devices(lp->dev, -1, lp8788_devs, - ARRAY_SIZE(lp8788_devs), NULL, 0, NULL); + ret = mfd_add_devices(lp->dev, -1, lp8788_devs, + ARRAY_SIZE(lp8788_devs), NULL, 0, NULL); + if (ret) + goto err_exit_irq; + + return 0; + +err_exit_irq: + lp8788_irq_exit(lp); + return ret; } static int lp8788_remove(struct i2c_client *cl) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/max77620.c +++ linux-azure-5.4.0/drivers/mfd/max77620.c @@ -418,9 +418,11 @@ ret = max77620_config_fps(chip, fps_child); if (ret < 0) { of_node_put(fps_child); + of_node_put(fps_np); return ret; } } + of_node_put(fps_np); config = chip->enable_global_lpm ? MAX77620_ONOFFCNFG2_SLP_LPM_MSK : 0; ret = regmap_update_bits(chip->rmap, MAX77620_REG_ONOFFCNFG2, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/mc13xxx-core.c +++ linux-azure-5.4.0/drivers/mfd/mc13xxx-core.c @@ -323,8 +323,10 @@ adc1 |= MC13783_ADC1_ATOX; dev_dbg(mc13xxx->dev, "%s: request irq\n", __func__); - mc13xxx_irq_request(mc13xxx, MC13XXX_IRQ_ADCDONE, + ret = mc13xxx_irq_request(mc13xxx, MC13XXX_IRQ_ADCDONE, mc13xxx_handler_adcdone, __func__, &adcdone_data); + if (ret) + goto out; mc13xxx_reg_write(mc13xxx, MC13XXX_ADC0, adc0); mc13xxx_reg_write(mc13xxx, MC13XXX_ADC1, adc1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/motorola-cpcap.c +++ linux-azure-5.4.0/drivers/mfd/motorola-cpcap.c @@ -305,6 +305,10 @@ if (ret) return ret; + /* Parent SPI controller uses DMA, CPCAP and child devices do not */ + spi->dev.coherent_dma_mask = 0; + spi->dev.dma_mask = &spi->dev.coherent_dma_mask; + return devm_mfd_add_devices(&spi->dev, 0, cpcap_mfd_devices, ARRAY_SIZE(cpcap_mfd_devices), NULL, 0, NULL); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/stmpe-i2c.c +++ linux-azure-5.4.0/drivers/mfd/stmpe-i2c.c @@ -109,7 +109,7 @@ { "stmpe2403", STMPE2403 }, { } }; -MODULE_DEVICE_TABLE(i2c, stmpe_id); +MODULE_DEVICE_TABLE(i2c, stmpe_i2c_id); static struct i2c_driver stmpe_i2c_driver = { .driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/stmpe.c +++ linux-azure-5.4.0/drivers/mfd/stmpe.c @@ -1091,7 +1091,7 @@ if (variant->id_val == STMPE801_ID || variant->id_val == STMPE1600_ID) { - int base = irq_create_mapping(stmpe->domain, 0); + int base = irq_find_mapping(stmpe->domain, 0); handle_nested_irq(base); return IRQ_HANDLED; @@ -1119,7 +1119,7 @@ while (status) { int bit = __ffs(status); int line = bank * 8 + bit; - int nestedirq = irq_create_mapping(stmpe->domain, line); + int nestedirq = irq_find_mapping(stmpe->domain, line); handle_nested_irq(nestedirq); status &= ~(1 << bit); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/t7l66xb.c +++ linux-azure-5.4.0/drivers/mfd/t7l66xb.c @@ -405,11 +405,8 @@ static int t7l66xb_remove(struct platform_device *dev) { - struct t7l66xb_platform_data *pdata = dev_get_platdata(&dev->dev); struct t7l66xb *t7l66xb = platform_get_drvdata(dev); - int ret; - ret = pdata->disable(dev); clk_disable_unprepare(t7l66xb->clk48m); clk_put(t7l66xb->clk48m); clk_disable_unprepare(t7l66xb->clk32k); @@ -420,8 +417,7 @@ mfd_remove_devices(&dev->dev); kfree(t7l66xb); - return ret; - + return 0; } static struct platform_driver t7l66xb_platform_driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/tc3589x.c +++ linux-azure-5.4.0/drivers/mfd/tc3589x.c @@ -187,7 +187,7 @@ while (status) { int bit = __ffs(status); - int virq = irq_create_mapping(tc3589x->domain, bit); + int virq = irq_find_mapping(tc3589x->domain, bit); handle_nested_irq(virq); status &= ~(1 << bit); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/tqmx86.c +++ linux-azure-5.4.0/drivers/mfd/tqmx86.c @@ -210,6 +210,8 @@ /* Assumes the IRQ resource is first. */ tqmx_gpio_resources[0].start = gpio_irq; + } else { + tqmx_gpio_resources[0].flags = 0; } ocores_platfom_data.clock_khz = tqmx86_board_id_to_clk_rate(board_id); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mfd/wm8994-irq.c +++ linux-azure-5.4.0/drivers/mfd/wm8994-irq.c @@ -154,7 +154,7 @@ struct wm8994 *wm8994 = data; while (gpio_get_value_cansleep(wm8994->pdata.irq_gpio)) - handle_nested_irq(irq_create_mapping(wm8994->edge_irq, 0)); + handle_nested_irq(irq_find_mapping(wm8994->edge_irq, 0)); return IRQ_HANDLED; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/cardreader/alcor_pci.c +++ linux-azure-5.4.0/drivers/misc/cardreader/alcor_pci.c @@ -133,7 +133,13 @@ u32 val32; priv->pdev_cap_off = alcor_pci_find_cap_offset(priv, priv->pdev); - priv->parent_cap_off = alcor_pci_find_cap_offset(priv, + /* + * A device might be attached to root complex directly and + * priv->parent_pdev will be NULL. In this case we don't check its + * capability and disable ASPM completely. + */ + if (priv->parent_pdev) + priv->parent_cap_off = alcor_pci_find_cap_offset(priv, priv->parent_pdev); if ((priv->pdev_cap_off == 0) || (priv->parent_cap_off == 0)) { @@ -254,7 +260,7 @@ if (!priv) return -ENOMEM; - ret = ida_simple_get(&alcor_pci_idr, 0, 0, GFP_KERNEL); + ret = ida_alloc(&alcor_pci_idr, GFP_KERNEL); if (ret < 0) return ret; priv->id = ret; @@ -268,7 +274,8 @@ ret = pci_request_regions(pdev, DRV_NAME_ALCOR_PCI); if (ret) { dev_err(&pdev->dev, "Cannot request region\n"); - return -ENOMEM; + ret = -ENOMEM; + goto error_free_ida; } if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) { @@ -312,6 +319,8 @@ error_release_regions: pci_release_regions(pdev); +error_free_ida: + ida_free(&alcor_pci_idr, priv->id); return ret; } @@ -325,7 +334,7 @@ mfd_remove_devices(&pdev->dev); - ida_simple_remove(&alcor_pci_idr, priv->id); + ida_free(&alcor_pci_idr, priv->id); pci_release_regions(pdev); pci_set_drvdata(pdev, NULL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/cardreader/rtsx_usb.c +++ linux-azure-5.4.0/drivers/misc/cardreader/rtsx_usb.c @@ -631,16 +631,20 @@ ucr->pusb_dev = usb_dev; - ucr->iobuf = usb_alloc_coherent(ucr->pusb_dev, IOBUF_SIZE, - GFP_KERNEL, &ucr->iobuf_dma); - if (!ucr->iobuf) + ucr->cmd_buf = kmalloc(IOBUF_SIZE, GFP_KERNEL); + if (!ucr->cmd_buf) return -ENOMEM; + ucr->rsp_buf = kmalloc(IOBUF_SIZE, GFP_KERNEL); + if (!ucr->rsp_buf) { + ret = -ENOMEM; + goto out_free_cmd_buf; + } + usb_set_intfdata(intf, ucr); ucr->vendor_id = id->idVendor; ucr->product_id = id->idProduct; - ucr->cmd_buf = ucr->rsp_buf = ucr->iobuf; mutex_init(&ucr->dev_mutex); @@ -667,8 +671,12 @@ return 0; out_init_fail: - usb_free_coherent(ucr->pusb_dev, IOBUF_SIZE, ucr->iobuf, - ucr->iobuf_dma); + usb_set_intfdata(ucr->pusb_intf, NULL); + kfree(ucr->rsp_buf); + ucr->rsp_buf = NULL; +out_free_cmd_buf: + kfree(ucr->cmd_buf); + ucr->cmd_buf = NULL; return ret; } @@ -681,8 +689,12 @@ mfd_remove_devices(&intf->dev); usb_set_intfdata(ucr->pusb_intf, NULL); - usb_free_coherent(ucr->pusb_dev, IOBUF_SIZE, ucr->iobuf, - ucr->iobuf_dma); + + kfree(ucr->cmd_buf); + ucr->cmd_buf = NULL; + + kfree(ucr->rsp_buf); + ucr->rsp_buf = NULL; } #ifdef CONFIG_PM only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/cb710/sgbuf2.c +++ linux-azure-5.4.0/drivers/misc/cb710/sgbuf2.c @@ -47,7 +47,7 @@ #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS return false; #else - return ((ptr - NULL) & 3) != 0; + return ((uintptr_t)ptr & 3) != 0; #endif } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/cxl/irq.c +++ linux-azure-5.4.0/drivers/misc/cxl/irq.c @@ -349,6 +349,7 @@ out: cxl_ops->release_irq_ranges(&ctx->irqs, ctx->afu->adapter); + bitmap_free(ctx->irq_bitmap); afu_irq_name_free(ctx); return -ENOMEM; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/eeprom/ee1004.c +++ linux-azure-5.4.0/drivers/misc/eeprom/ee1004.c @@ -82,6 +82,9 @@ if (unlikely(offset + count > EE1004_PAGE_SIZE)) count = EE1004_PAGE_SIZE - offset; + if (count > I2C_SMBUS_BLOCK_MAX) + count = I2C_SMBUS_BLOCK_MAX; + status = i2c_smbus_read_i2c_block_data_or_emulated(client, offset, count, buf); dev_dbg(&client->dev, "read %zu@%d --> %d\n", count, offset, status); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/eeprom/idt_89hpesx.c +++ linux-azure-5.4.0/drivers/misc/eeprom/idt_89hpesx.c @@ -1126,11 +1126,10 @@ device_for_each_child_node(dev, fwnode) { ee_id = idt_ee_match_id(fwnode); - if (!ee_id) { - dev_warn(dev, "Skip unsupported EEPROM device"); - continue; - } else + if (ee_id) break; + + dev_warn(dev, "Skip unsupported EEPROM device %pfw\n", fwnode); } /* If there is no fwnode EEPROM device, then set zero size */ @@ -1161,6 +1160,7 @@ else /* if (!fwnode_property_read_bool(node, "read-only")) */ pdev->eero = false; + fwnode_handle_put(fwnode); dev_info(dev, "EEPROM of %d bytes found by 0x%x", pdev->eesize, pdev->eeaddr); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/ibmasm/module.c +++ linux-azure-5.4.0/drivers/misc/ibmasm/module.c @@ -111,7 +111,7 @@ result = ibmasm_init_remote_input_dev(sp); if (result) { dev_err(sp->dev, "Failed to initialize remote queue\n"); - goto error_send_message; + goto error_init_remote; } result = ibmasm_send_driver_vpd(sp); @@ -131,8 +131,9 @@ return 0; error_send_message: - disable_sp_interrupts(sp->base_address); ibmasm_free_remote_input_dev(sp); +error_init_remote: + disable_sp_interrupts(sp->base_address); free_irq(sp->irq, (void *)sp); error_request_irq: iounmap(sp->base_address); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/lattice-ecp3-config.c +++ linux-azure-5.4.0/drivers/misc/lattice-ecp3-config.c @@ -77,12 +77,12 @@ if (fw == NULL) { dev_err(&spi->dev, "Cannot load firmware, aborting\n"); - return; + goto out; } if (fw->size == 0) { dev_err(&spi->dev, "Error: Firmware size is 0!\n"); - return; + goto out; } /* Fill dummy data (24 stuffing bits for commands) */ @@ -104,7 +104,7 @@ dev_err(&spi->dev, "Error: No supported FPGA detected (JEDEC_ID=%08x)!\n", jedec_id); - return; + goto out; } dev_info(&spi->dev, "FPGA %s detected\n", ecp3_dev[i].name); @@ -117,7 +117,7 @@ buffer = kzalloc(fw->size + 8, GFP_KERNEL); if (!buffer) { dev_err(&spi->dev, "Error: Can't allocate memory!\n"); - return; + goto out; } /* @@ -156,7 +156,7 @@ "Error: Timeout waiting for FPGA to clear (status=%08x)!\n", status); kfree(buffer); - return; + goto out; } dev_info(&spi->dev, "Configuring the FPGA...\n"); @@ -182,7 +182,7 @@ release_firmware(fw); kfree(buffer); - +out: complete(&data->fw_loaded); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/lkdtm/refcount.c +++ linux-azure-5.4.0/drivers/misc/lkdtm/refcount.c @@ -6,14 +6,6 @@ #include "lkdtm.h" #include -#ifdef CONFIG_REFCOUNT_FULL -#define REFCOUNT_MAX (UINT_MAX - 1) -#define REFCOUNT_SATURATED UINT_MAX -#else -#define REFCOUNT_MAX INT_MAX -#define REFCOUNT_SATURATED (INT_MIN / 2) -#endif - static void overflow_check(refcount_t *ref) { switch (refcount_read(ref)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/misc/lkdtm/usercopy.c +++ linux-azure-5.4.0/drivers/misc/lkdtm/usercopy.c @@ -30,12 +30,12 @@ */ static noinline unsigned char *trick_compiler(unsigned char *stack) { - return stack + 0; + return stack + unconst; } static noinline unsigned char *do_usercopy_stack_callee(int value) { - unsigned char buf[32]; + unsigned char buf[128]; int i; /* Exercise stack to avoid everything living in registers. */ @@ -43,7 +43,12 @@ buf[i] = value & 0xff; } - return trick_compiler(buf); + /* + * Put the target buffer in the middle of stack allocation + * so that we don't step on future stack users regardless + * of stack growth direction. + */ + return trick_compiler(&buf[(128/2)-32]); } static noinline void do_usercopy_stack(bool to_user, bool bad_frame) @@ -66,6 +71,12 @@ bad_stack -= sizeof(unsigned long); } +#ifdef ARCH_HAS_CURRENT_STACK_POINTER + pr_info("stack : %px\n", (void *)current_stack_pointer); +#endif + pr_info("good_stack: %px-%px\n", good_stack, good_stack + sizeof(good_stack)); + pr_info("bad_stack : %px-%px\n", bad_stack, bad_stack + sizeof(good_stack)); + user_addr = vm_mmap(NULL, 0, PAGE_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANONYMOUS | MAP_PRIVATE, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/Kconfig +++ linux-azure-5.4.0/drivers/mmc/host/Kconfig @@ -449,7 +449,7 @@ config MMC_WBSD tristate "Winbond W83L51xD SD/MMC Card Interface support" - depends on ISA_DMA_API + depends on ISA_DMA_API && !M68K help This selects the Winbond(R) W83L51xD Secure digital and Multimedia card Interface. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/au1xmmc.c +++ linux-azure-5.4.0/drivers/mmc/host/au1xmmc.c @@ -1116,8 +1116,9 @@ if (host->platdata && host->platdata->cd_setup && !(mmc->caps & MMC_CAP_NEEDS_POLL)) host->platdata->cd_setup(mmc, 0); -out_clk: + clk_disable_unprepare(host->clk); +out_clk: clk_put(host->clk); out_irq: free_irq(host->irq, host); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/cavium-octeon.c +++ linux-azure-5.4.0/drivers/mmc/host/cavium-octeon.c @@ -288,6 +288,7 @@ if (ret) { dev_err(&pdev->dev, "Error populating slots\n"); octeon_mmc_set_shared_power(host, 0); + of_node_put(cn); goto error; } i++; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/cavium-thunderx.c +++ linux-azure-5.4.0/drivers/mmc/host/cavium-thunderx.c @@ -138,8 +138,10 @@ continue; ret = cvm_mmc_of_slot_probe(&host->slot_pdev[i]->dev, host); - if (ret) + if (ret) { + of_node_put(child_node); goto error; + } } i++; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/davinci_mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/davinci_mmc.c @@ -1376,8 +1376,12 @@ static int davinci_mmcsd_resume(struct device *dev) { struct mmc_davinci_host *host = dev_get_drvdata(dev); + int ret; + + ret = clk_enable(host->clk); + if (ret) + return ret; - clk_enable(host->clk); mmc_davinci_reset_ctrl(host, 0); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/dw_mmc-exynos.c +++ linux-azure-5.4.0/drivers/mmc/host/dw_mmc-exynos.c @@ -462,6 +462,18 @@ } } + /* + * If there is no cadiates value, then it needs to return -EIO. + * If there are candiates values and don't find bset clk sample value, + * then use a first candiates clock sample value. + */ + for (i = 0; i < iter; i++) { + __c = ror8(candiates, i); + if ((__c & 0x1) == 0x1) { + loc = i; + goto out; + } + } out: return loc; } @@ -492,6 +504,8 @@ priv->tuned_sample = found; } else { ret = -EIO; + dev_warn(&mmc->class_dev, + "There is no candiates value about clksmpl!\n"); } return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/dw_mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/dw_mmc.c @@ -782,6 +782,7 @@ int ret = 0; /* Set external dma config: burst size, burst width */ + memset(&cfg, 0, sizeof(cfg)); cfg.dst_addr = host->phy_regs + fifo_offset; cfg.src_addr = cfg.dst_addr; cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; @@ -2012,13 +2013,14 @@ * delayed. Allowing the transfer to take place * avoids races and keeps things simple. */ - if (err != -ETIMEDOUT) { + if (err != -ETIMEDOUT && + host->dir_status == DW_MCI_RECV_STATUS) { state = STATE_SENDING_DATA; continue; } - dw_mci_stop_dma(host); send_stop_abort(host, data); + dw_mci_stop_dma(host); state = STATE_SENDING_STOP; break; } @@ -2042,10 +2044,10 @@ */ if (test_and_clear_bit(EVENT_DATA_ERROR, &host->pending_events)) { - dw_mci_stop_dma(host); if (!(host->data_status & (SDMMC_INT_DRTO | SDMMC_INT_EBE))) send_stop_abort(host, data); + dw_mci_stop_dma(host); state = STATE_DATA_ERROR; break; } @@ -2078,10 +2080,10 @@ */ if (test_and_clear_bit(EVENT_DATA_ERROR, &host->pending_events)) { - dw_mci_stop_dma(host); if (!(host->data_status & (SDMMC_INT_DRTO | SDMMC_INT_EBE))) send_stop_abort(host, data); + dw_mci_stop_dma(host); state = STATE_DATA_ERROR; break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/jz4740_mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/jz4740_mmc.c @@ -224,6 +224,26 @@ return PTR_ERR(host->dma_rx); } + /* + * Limit the maximum segment size in any SG entry according to + * the parameters of the DMA engine device. + */ + if (host->dma_tx) { + struct device *dev = host->dma_tx->device->dev; + unsigned int max_seg_size = dma_get_max_seg_size(dev); + + if (max_seg_size < host->mmc->max_seg_size) + host->mmc->max_seg_size = max_seg_size; + } + + if (host->dma_rx) { + struct device *dev = host->dma_rx->device->dev; + unsigned int max_seg_size = dma_get_max_seg_size(dev); + + if (max_seg_size < host->mmc->max_seg_size) + host->mmc->max_seg_size = max_seg_size; + } + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/moxart-mmc.c +++ linux-azure-5.4.0/drivers/mmc/host/moxart-mmc.c @@ -111,8 +111,8 @@ #define CLK_DIV_MASK 0x7f /* REG_BUS_WIDTH */ -#define BUS_WIDTH_8 BIT(2) -#define BUS_WIDTH_4 BIT(1) +#define BUS_WIDTH_4_SUPPORT BIT(3) +#define BUS_WIDTH_4 BIT(2) #define BUS_WIDTH_1 BIT(0) #define MMC_VDD_360 23 @@ -527,9 +527,6 @@ case MMC_BUS_WIDTH_4: writel(BUS_WIDTH_4, host->base + REG_BUS_WIDTH); break; - case MMC_BUS_WIDTH_8: - writel(BUS_WIDTH_8, host->base + REG_BUS_WIDTH); - break; default: writel(BUS_WIDTH_1, host->base + REG_BUS_WIDTH); break; @@ -631,6 +628,7 @@ host->dma_chan_tx, host->dma_chan_rx); host->have_dma = true; + memset(&cfg, 0, sizeof(cfg)); cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; @@ -645,16 +643,8 @@ dmaengine_slave_config(host->dma_chan_rx, &cfg); } - switch ((readl(host->base + REG_BUS_WIDTH) >> 3) & 3) { - case 1: + if (readl(host->base + REG_BUS_WIDTH) & BUS_WIDTH_4_SUPPORT) mmc->caps |= MMC_CAP_4_BIT_DATA; - break; - case 2: - mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA; - break; - default: - break; - } writel(0, host->base + REG_INTERRUPT_MASK); @@ -695,12 +685,12 @@ if (!IS_ERR(host->dma_chan_rx)) dma_release_channel(host->dma_chan_rx); mmc_remove_host(mmc); - mmc_free_host(mmc); writel(0, host->base + REG_INTERRUPT_MASK); writel(0, host->base + REG_POWER_CONTROL); writel(readl(host->base + REG_CLOCK_CONTROL) | CLK_OFF, host->base + REG_CLOCK_CONTROL); + mmc_free_host(mmc); } return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/sdhci-of-arasan.c +++ linux-azure-5.4.0/drivers/mmc/host/sdhci-of-arasan.c @@ -192,7 +192,12 @@ * through low speeds without power cycling. */ sdhci_set_clock(host, host->max_clk); - phy_power_on(sdhci_arasan->phy); + if (phy_power_on(sdhci_arasan->phy)) { + pr_err("%s: Cannot power on phy.\n", + mmc_hostname(host->mmc)); + return; + } + sdhci_arasan->is_phy_on = true; /* @@ -228,7 +233,12 @@ msleep(20); if (ctrl_phy) { - phy_power_on(sdhci_arasan->phy); + if (phy_power_on(sdhci_arasan->phy)) { + pr_err("%s: Cannot power on phy.\n", + mmc_hostname(host->mmc)); + return; + } + sdhci_arasan->is_phy_on = true; } } @@ -416,7 +426,9 @@ ret = phy_power_off(sdhci_arasan->phy); if (ret) { dev_err(dev, "Cannot power off phy.\n"); - sdhci_resume_host(host); + if (sdhci_resume_host(host)) + dev_err(dev, "Cannot resume host.\n"); + return ret; } sdhci_arasan->is_phy_on = false; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/vub300.c +++ linux-azure-5.4.0/drivers/mmc/host/vub300.c @@ -576,7 +576,7 @@ GET_SYSTEM_PORT_STATUS, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0x0000, 0x0000, &vub300->system_port_status, - sizeof(vub300->system_port_status), HZ); + sizeof(vub300->system_port_status), 1000); if (sizeof(vub300->system_port_status) == retval) new_system_port_status(vub300); } @@ -1241,7 +1241,7 @@ SET_INTERRUPT_PSEUDOCODE, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0x0000, 0x0000, - xfer_buffer, xfer_length, HZ); + xfer_buffer, xfer_length, 1000); kfree(xfer_buffer); if (retval < 0) goto copy_error_message; @@ -1284,7 +1284,7 @@ SET_TRANSFER_PSEUDOCODE, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0x0000, 0x0000, - xfer_buffer, xfer_length, HZ); + xfer_buffer, xfer_length, 1000); kfree(xfer_buffer); if (retval < 0) goto copy_error_message; @@ -1991,7 +1991,7 @@ usb_control_msg(vub300->udev, usb_sndctrlpipe(vub300->udev, 0), SET_CLOCK_SPEED, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x00, 0x00, buf, buf_array_size, HZ); + 0x00, 0x00, buf, buf_array_size, 1000); if (retval != 8) { dev_err(&vub300->udev->dev, "SET_CLOCK_SPEED" " %dkHz failed with retval=%d\n", kHzClock, retval); @@ -2013,14 +2013,14 @@ usb_control_msg(vub300->udev, usb_sndctrlpipe(vub300->udev, 0), SET_SD_POWER, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x0000, 0x0000, NULL, 0, HZ); + 0x0000, 0x0000, NULL, 0, 1000); /* must wait for the VUB300 u-proc to boot up */ msleep(600); } else if ((ios->power_mode == MMC_POWER_UP) && !vub300->card_powered) { usb_control_msg(vub300->udev, usb_sndctrlpipe(vub300->udev, 0), SET_SD_POWER, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - 0x0001, 0x0000, NULL, 0, HZ); + 0x0001, 0x0000, NULL, 0, 1000); msleep(600); vub300->card_powered = 1; } else if (ios->power_mode == MMC_POWER_ON) { @@ -2282,14 +2282,14 @@ GET_HC_INF0, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0x0000, 0x0000, &vub300->hc_info, - sizeof(vub300->hc_info), HZ); + sizeof(vub300->hc_info), 1000); if (retval < 0) goto error5; retval = - usb_control_msg(vub300->udev, usb_rcvctrlpipe(vub300->udev, 0), + usb_control_msg(vub300->udev, usb_sndctrlpipe(vub300->udev, 0), SET_ROM_WAIT_STATES, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, - firmware_rom_wait_states, 0x0000, NULL, 0, HZ); + firmware_rom_wait_states, 0x0000, NULL, 0, 1000); if (retval < 0) goto error5; dev_info(&vub300->udev->dev, @@ -2304,7 +2304,7 @@ GET_SYSTEM_PORT_STATUS, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0x0000, 0x0000, &vub300->system_port_status, - sizeof(vub300->system_port_status), HZ); + sizeof(vub300->system_port_status), 1000); if (retval < 0) { goto error4; } else if (sizeof(vub300->system_port_status) == retval) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mmc/host/wmt-sdmmc.c +++ linux-azure-5.4.0/drivers/mmc/host/wmt-sdmmc.c @@ -849,7 +849,7 @@ if (IS_ERR(priv->clk_sdmmc)) { dev_err(&pdev->dev, "Error getting clock\n"); ret = PTR_ERR(priv->clk_sdmmc); - goto fail5; + goto fail5_and_a_half; } ret = clk_prepare_enable(priv->clk_sdmmc); @@ -866,6 +866,9 @@ return 0; fail6: clk_put(priv->clk_sdmmc); +fail5_and_a_half: + dma_free_coherent(&pdev->dev, mmc->max_blk_count * 16, + priv->dma_desc_buffer, priv->dma_desc_device_addr); fail5: free_irq(dma_irq, priv); fail4: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/chips/Kconfig +++ linux-azure-5.4.0/drivers/mtd/chips/Kconfig @@ -55,12 +55,14 @@ LITTLE_ENDIAN_BYTE, if the bytes are reversed. config MTD_CFI_NOSWAP + depends on !ARCH_IXP4XX || CPU_BIG_ENDIAN bool "NO" config MTD_CFI_BE_BYTE_SWAP bool "BIG_ENDIAN_BYTE" config MTD_CFI_LE_BYTE_SWAP + depends on !ARCH_IXP4XX bool "LITTLE_ENDIAN_BYTE" endchoice only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/devices/docg3.c +++ linux-azure-5.4.0/drivers/mtd/devices/docg3.c @@ -1975,9 +1975,14 @@ dev_err(dev, "No I/O memory resource defined\n"); return ret; } - base = devm_ioremap(dev, ress->start, DOC_IOSPACE_SIZE); ret = -ENOMEM; + base = devm_ioremap(dev, ress->start, DOC_IOSPACE_SIZE); + if (!base) { + dev_err(dev, "devm_ioremap dev failed\n"); + return ret; + } + cascade = devm_kcalloc(dev, DOC_MAX_NBFLOORS, sizeof(*cascade), GFP_KERNEL); if (!cascade) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/devices/st_spi_fsm.c +++ linux-azure-5.4.0/drivers/mtd/devices/st_spi_fsm.c @@ -2116,10 +2116,12 @@ (long long)fsm->mtd.size, (long long)(fsm->mtd.size >> 20), fsm->mtd.erasesize, (fsm->mtd.erasesize >> 10)); - return mtd_device_register(&fsm->mtd, NULL, 0); - + ret = mtd_device_register(&fsm->mtd, NULL, 0); + if (ret) { err_clk_unprepare: - clk_disable_unprepare(fsm->clk); + clk_disable_unprepare(fsm->clk); + } + return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/maps/Kconfig +++ linux-azure-5.4.0/drivers/mtd/maps/Kconfig @@ -303,7 +303,7 @@ config MTD_IXP4XX tristate "CFI Flash device mapped on Intel IXP4xx based systems" - depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX + depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX && MTD_CFI_ADV_OPTIONS help This enables MTD access to flash devices on platforms based on Intel's IXP4xx family of network processors such as the only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/maps/physmap-versatile.c +++ linux-azure-5.4.0/drivers/mtd/maps/physmap-versatile.c @@ -93,6 +93,7 @@ return -ENODEV; } ebi_base = of_iomap(ebi, 0); + of_node_put(ebi); if (!ebi_base) return -ENODEV; @@ -207,6 +208,7 @@ versatile_flashprot = (enum versatile_flashprot)devid->data; rmap = syscon_node_to_regmap(sysnp); + of_node_put(sysnp); if (IS_ERR(rmap)) return PTR_ERR(rmap); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/bbt.c +++ linux-azure-5.4.0/drivers/mtd/nand/bbt.c @@ -123,7 +123,7 @@ unsigned int rbits = bits_per_block + offs - BITS_PER_LONG; pos[1] &= ~GENMASK(rbits - 1, 0); - pos[1] |= val >> rbits; + pos[1] |= val >> (bits_per_block - rbits); } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/onenand/generic.c +++ linux-azure-5.4.0/drivers/mtd/nand/onenand/generic.c @@ -53,7 +53,12 @@ } info->onenand.mmcontrol = pdata ? pdata->mmcontrol : NULL; - info->onenand.irq = platform_get_irq(pdev, 0); + + err = platform_get_irq(pdev, 0); + if (err < 0) + goto out_iounmap; + + info->onenand.irq = err; info->mtd.dev.parent = &pdev->dev; info->mtd.priv = &info->onenand; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/raw/cafe_nand.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/cafe_nand.c @@ -757,7 +757,7 @@ "CAFE NAND", mtd); if (err) { dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq); - goto out_ior; + goto out_free_rs; } /* Disable master reset, enable NAND clock */ @@ -801,6 +801,8 @@ /* Disable NAND IRQ in global IRQ mask register */ cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK); free_irq(pdev->irq, mtd); + out_free_rs: + free_rs(cafe->rs); out_ior: pci_iounmap(pdev, cafe->mmio); out_free_mtd: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/raw/mpc5121_nfc.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/mpc5121_nfc.c @@ -290,7 +290,6 @@ /* Control chips select signal on ADS5121 board */ static void ads5121_select_chip(struct nand_chip *nand, int chip) { - struct mtd_info *mtd = nand_to_mtd(nand); struct mpc5121_nfc_prv *prv = nand_get_controller_data(nand); u8 v; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/raw/mtk_ecc.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/mtk_ecc.c @@ -43,6 +43,7 @@ struct mtk_ecc_caps { u32 err_mask; + u32 err_shift; const u8 *ecc_strength; const u32 *ecc_regs; u8 num_ecc_strength; @@ -76,7 +77,7 @@ }; static const u8 ecc_strength_mt7622[] = { - 4, 6, 8, 10, 12, 14, 16 + 4, 6, 8, 10, 12 }; enum mtk_ecc_regs { @@ -221,7 +222,7 @@ for (i = 0; i < sectors; i++) { offset = (i >> 2) << 2; err = readl(ecc->regs + ECC_DECENUM0 + offset); - err = err >> ((i % 4) * 8); + err = err >> ((i % 4) * ecc->caps->err_shift); err &= ecc->caps->err_mask; if (err == ecc->caps->err_mask) { /* uncorrectable errors */ @@ -449,6 +450,7 @@ static const struct mtk_ecc_caps mtk_ecc_caps_mt2701 = { .err_mask = 0x3f, + .err_shift = 8, .ecc_strength = ecc_strength_mt2701, .ecc_regs = mt2701_ecc_regs, .num_ecc_strength = 20, @@ -459,6 +461,7 @@ static const struct mtk_ecc_caps mtk_ecc_caps_mt2712 = { .err_mask = 0x7f, + .err_shift = 8, .ecc_strength = ecc_strength_mt2712, .ecc_regs = mt2712_ecc_regs, .num_ecc_strength = 23, @@ -468,10 +471,11 @@ }; static const struct mtk_ecc_caps mtk_ecc_caps_mt7622 = { - .err_mask = 0x3f, + .err_mask = 0x1f, + .err_shift = 5, .ecc_strength = ecc_strength_mt7622, .ecc_regs = mt7622_ecc_regs, - .num_ecc_strength = 7, + .num_ecc_strength = 5, .ecc_mode_shift = 4, .parity_bits = 13, .pg_irq_sel = 0, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/nand/raw/sh_flctl.c +++ linux-azure-5.4.0/drivers/mtd/nand/raw/sh_flctl.c @@ -384,7 +384,8 @@ dma_addr_t dma_addr; dma_cookie_t cookie; uint32_t reg; - int ret; + int ret = 0; + unsigned long time_left; if (dir == DMA_FROM_DEVICE) { chan = flctl->chan_fifo0_rx; @@ -425,13 +426,14 @@ goto out; } - ret = + time_left = wait_for_completion_timeout(&flctl->dma_complete, msecs_to_jiffies(3000)); - if (ret <= 0) { + if (time_left == 0) { dmaengine_terminate_all(chan); dev_err(&flctl->pdev->dev, "wait_for_completion_timeout\n"); + ret = -ETIMEDOUT; } out: @@ -441,7 +443,7 @@ dma_unmap_single(chan->device->dev, dma_addr, len, dir); - /* ret > 0 is success */ + /* ret == 0 is success */ return ret; } @@ -465,7 +467,7 @@ /* initiate DMA transfer */ if (flctl->chan_fifo0_rx && rlen >= 32 && - flctl_dma_fifo0_transfer(flctl, buf, rlen, DMA_FROM_DEVICE) > 0) + !flctl_dma_fifo0_transfer(flctl, buf, rlen, DMA_FROM_DEVICE)) goto convert; /* DMA success */ /* do polling transfer */ @@ -524,7 +526,7 @@ /* initiate DMA transfer */ if (flctl->chan_fifo0_tx && rlen >= 32 && - flctl_dma_fifo0_transfer(flctl, buf, rlen, DMA_TO_DEVICE) > 0) + !flctl_dma_fifo0_transfer(flctl, buf, rlen, DMA_TO_DEVICE)) return; /* DMA success */ /* do polling transfer */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/parsers/redboot.c +++ linux-azure-5.4.0/drivers/mtd/parsers/redboot.c @@ -45,6 +45,7 @@ static void parse_redboot_of(struct mtd_info *master) { struct device_node *np; + struct device_node *npart; u32 dirblock; int ret; @@ -52,7 +53,12 @@ if (!np) return; - ret = of_property_read_u32(np, "fis-index-block", &dirblock); + npart = of_get_child_by_name(np, "partitions"); + if (!npart) + return; + + ret = of_property_read_u32(npart, "fis-index-block", &dirblock); + of_node_put(npart); if (ret) return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/sm_ftl.c +++ linux-azure-5.4.0/drivers/mtd/sm_ftl.c @@ -1097,9 +1097,9 @@ { struct sm_ftl *ftl = dev->priv; - mutex_lock(&ftl->mutex); del_timer_sync(&ftl->timer); cancel_work_sync(&ftl->flush_work); + mutex_lock(&ftl->mutex); sm_cache_flush(ftl); mutex_unlock(&ftl->mutex); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/ubi/build.c +++ linux-azure-5.4.0/drivers/mtd/ubi/build.c @@ -350,9 +350,6 @@ * we still can use 'ubi->ubi_num'. */ ubi = container_of(dev, struct ubi_device, dev); - ubi = ubi_get_device(ubi->ubi_num); - if (!ubi) - return -ENODEV; if (attr == &dev_eraseblock_size) ret = sprintf(buf, "%d\n", ubi->leb_size); @@ -381,7 +378,6 @@ else ret = -EINVAL; - ubi_put_device(ubi); return ret; } @@ -956,9 +952,6 @@ goto out_detach; } - /* Make device "available" before it becomes accessible via sysfs */ - ubi_devices[ubi_num] = ubi; - err = uif_init(ubi); if (err) goto out_detach; @@ -1003,6 +996,7 @@ wake_up_process(ubi->bgt_thread); spin_unlock(&ubi->wl_lock); + ubi_devices[ubi_num] = ubi; ubi_notify_all(ubi, UBI_VOLUME_ADDED, NULL); return ubi_num; @@ -1011,7 +1005,6 @@ out_uif: uif_close(ubi); out_detach: - ubi_devices[ubi_num] = NULL; ubi_wl_close(ubi); ubi_free_internal_volumes(ubi); vfree(ubi->vtbl); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/mtd/ubi/vmt.c +++ linux-azure-5.4.0/drivers/mtd/ubi/vmt.c @@ -56,16 +56,11 @@ { int ret; struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev); - struct ubi_device *ubi; - - ubi = ubi_get_device(vol->ubi->ubi_num); - if (!ubi) - return -ENODEV; + struct ubi_device *ubi = vol->ubi; spin_lock(&ubi->volumes_lock); if (!ubi->volumes[vol->vol_id]) { spin_unlock(&ubi->volumes_lock); - ubi_put_device(ubi); return -ENODEV; } /* Take a reference to prevent volume removal */ @@ -103,7 +98,6 @@ vol->ref_count -= 1; ubi_assert(vol->ref_count >= 0); spin_unlock(&ubi->volumes_lock); - ubi_put_device(ubi); return ret; } @@ -315,7 +309,6 @@ ubi->volumes[vol_id] = NULL; ubi->vol_count -= 1; spin_unlock(&ubi->volumes_lock); - ubi_eba_destroy_table(eba_tbl); out_acc: spin_lock(&ubi->volumes_lock); ubi->rsvd_pebs -= vol->reserved_pebs; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/appletalk/cops.c +++ linux-azure-5.4.0/drivers/net/appletalk/cops.c @@ -325,6 +325,8 @@ break; } + dev->base_addr = ioaddr; + /* Reserve any actual interrupt. */ if (dev->irq) { retval = request_irq(dev->irq, cops_interrupt, 0, dev->name, dev); @@ -332,8 +334,6 @@ goto err_out; } - dev->base_addr = ioaddr; - lp = netdev_priv(dev); spin_lock_init(&lp->lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/arcnet/com20020-pci.c +++ linux-azure-5.4.0/drivers/net/arcnet/com20020-pci.c @@ -136,6 +136,9 @@ return -ENOMEM; ci = (struct com20020_pci_card_info *)id->driver_data; + if (!ci) + return -EINVAL; + priv->ci = ci; mm = &ci->misc_map; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/bonding/bond_3ad.c +++ linux-azure-5.4.0/drivers/net/bonding/bond_3ad.c @@ -233,7 +233,7 @@ if (bond == NULL) return 0; - return BOND_AD_INFO(bond).agg_select_timer ? 1 : 0; + return atomic_read(&BOND_AD_INFO(bond).agg_select_timer) ? 1 : 0; } /** @@ -1013,8 +1013,8 @@ if (port->aggregator && port->aggregator->is_active && !__port_is_enabled(port)) { - __enable_port(port); + *update_slave_arr = true; } } break; @@ -1770,6 +1770,7 @@ port = port->next_port_in_aggregator) { __enable_port(port); } + *update_slave_arr = true; } } @@ -1984,7 +1985,7 @@ */ void bond_3ad_initiate_agg_selection(struct bonding *bond, int timeout) { - BOND_AD_INFO(bond).agg_select_timer = timeout; + atomic_set(&BOND_AD_INFO(bond).agg_select_timer, timeout); } /** @@ -1996,30 +1997,24 @@ */ void bond_3ad_initialize(struct bonding *bond, u16 tick_resolution) { - /* check that the bond is not initialized yet */ - if (!MAC_ADDRESS_EQUAL(&(BOND_AD_INFO(bond).system.sys_mac_addr), - bond->dev->dev_addr)) { - - BOND_AD_INFO(bond).aggregator_identifier = 0; - - BOND_AD_INFO(bond).system.sys_priority = - bond->params.ad_actor_sys_prio; - if (is_zero_ether_addr(bond->params.ad_actor_system)) - BOND_AD_INFO(bond).system.sys_mac_addr = - *((struct mac_addr *)bond->dev->dev_addr); - else - BOND_AD_INFO(bond).system.sys_mac_addr = - *((struct mac_addr *)bond->params.ad_actor_system); + BOND_AD_INFO(bond).aggregator_identifier = 0; + BOND_AD_INFO(bond).system.sys_priority = + bond->params.ad_actor_sys_prio; + if (is_zero_ether_addr(bond->params.ad_actor_system)) + BOND_AD_INFO(bond).system.sys_mac_addr = + *((struct mac_addr *)bond->dev->dev_addr); + else + BOND_AD_INFO(bond).system.sys_mac_addr = + *((struct mac_addr *)bond->params.ad_actor_system); - /* initialize how many times this module is called in one - * second (should be about every 100ms) - */ - ad_ticks_per_sec = tick_resolution; + /* initialize how many times this module is called in one + * second (should be about every 100ms) + */ + ad_ticks_per_sec = tick_resolution; - bond_3ad_initiate_agg_selection(bond, - AD_AGGREGATOR_SELECTION_TIMER * - ad_ticks_per_sec); - } + bond_3ad_initiate_agg_selection(bond, + AD_AGGREGATOR_SELECTION_TIMER * + ad_ticks_per_sec); } /** @@ -2217,7 +2212,8 @@ temp_aggregator->num_of_ports--; if (__agg_active_ports(temp_aggregator) == 0) { select_new_active_agg = temp_aggregator->is_active; - ad_clear_agg(temp_aggregator); + if (temp_aggregator->num_of_ports == 0) + ad_clear_agg(temp_aggregator); if (select_new_active_agg) { slave_info(bond->dev, slave->dev, "Removing an active aggregator\n"); /* select new active aggregator */ @@ -2268,6 +2264,28 @@ } /** + * bond_agg_timer_advance - advance agg_select_timer + * @bond: bonding structure + * + * Return true when agg_select_timer reaches 0. + */ +static bool bond_agg_timer_advance(struct bonding *bond) +{ + int val, nval; + + while (1) { + val = atomic_read(&BOND_AD_INFO(bond).agg_select_timer); + if (!val) + return false; + nval = val - 1; + if (atomic_cmpxchg(&BOND_AD_INFO(bond).agg_select_timer, + val, nval) == val) + break; + } + return nval == 0; +} + +/** * bond_3ad_state_machine_handler - handle state machines timeout * @bond: bonding struct to work on * @@ -2302,9 +2320,7 @@ if (!bond_has_slaves(bond)) goto re_arm; - /* check if agg_select_timer timer after initialize is timed out */ - if (BOND_AD_INFO(bond).agg_select_timer && - !(--BOND_AD_INFO(bond).agg_select_timer)) { + if (bond_agg_timer_advance(bond)) { slave = bond_first_slave_rcu(bond); port = slave ? &(SLAVE_AD_INFO(slave)->port) : NULL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/caif/caif_virtio.c +++ linux-azure-5.4.0/drivers/net/caif/caif_virtio.c @@ -723,13 +723,21 @@ /* Carrier is off until netdevice is opened */ netif_carrier_off(netdev); + /* serialize netdev register + virtio_device_ready() with ndo_open() */ + rtnl_lock(); + /* register Netdev */ - err = register_netdev(netdev); + err = register_netdevice(netdev); if (err) { + rtnl_unlock(); dev_err(&vdev->dev, "Unable to register netdev (%d)\n", err); goto err; } + virtio_device_ready(vdev); + + rtnl_unlock(); + debugfs_init(cfv); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/grcan.c +++ linux-azure-5.4.0/drivers/net/can/grcan.c @@ -241,13 +241,14 @@ .rxsize = GRCAN_DEFAULT_BUFFER_SIZE, \ } -#define GRCAN_TXBUG_SAFE_GRLIB_VERSION 0x4100 +#define GRCAN_TXBUG_SAFE_GRLIB_VERSION 4100 #define GRLIB_VERSION_MASK 0xffff /* GRCAN private data structure */ struct grcan_priv { struct can_priv can; /* must be the first member */ struct net_device *dev; + struct device *ofdev_dev; struct napi_struct napi; struct grcan_registers __iomem *regs; /* ioremap'ed registers */ @@ -924,7 +925,7 @@ struct grcan_priv *priv = netdev_priv(dev); struct grcan_dma *dma = &priv->dma; - dma_free_coherent(&dev->dev, dma->base_size, dma->base_buf, + dma_free_coherent(priv->ofdev_dev, dma->base_size, dma->base_buf, dma->base_handle); memset(dma, 0, sizeof(*dma)); } @@ -949,7 +950,7 @@ /* Extra GRCAN_BUFFER_ALIGNMENT to allow for alignment */ dma->base_size = lsize + ssize + GRCAN_BUFFER_ALIGNMENT; - dma->base_buf = dma_alloc_coherent(&dev->dev, + dma->base_buf = dma_alloc_coherent(priv->ofdev_dev, dma->base_size, &dma->base_handle, GFP_KERNEL); @@ -1113,8 +1114,10 @@ priv->closing = true; if (priv->need_txbug_workaround) { + spin_unlock_irqrestore(&priv->lock, flags); del_timer_sync(&priv->hang_timer); del_timer_sync(&priv->rr_timer); + spin_lock_irqsave(&priv->lock, flags); } netif_stop_queue(dev); grcan_stop_hardware(dev); @@ -1134,7 +1137,7 @@ return 0; } -static int grcan_transmit_catch_up(struct net_device *dev, int budget) +static void grcan_transmit_catch_up(struct net_device *dev) { struct grcan_priv *priv = netdev_priv(dev); unsigned long flags; @@ -1142,7 +1145,7 @@ spin_lock_irqsave(&priv->lock, flags); - work_done = catch_up_echo_skb(dev, budget, true); + work_done = catch_up_echo_skb(dev, -1, true); if (work_done) { if (!priv->resetting && !priv->closing && !(priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)) @@ -1156,8 +1159,6 @@ } spin_unlock_irqrestore(&priv->lock, flags); - - return work_done; } static int grcan_receive(struct net_device *dev, int budget) @@ -1239,19 +1240,13 @@ struct net_device *dev = priv->dev; struct grcan_registers __iomem *regs = priv->regs; unsigned long flags; - int tx_work_done, rx_work_done; - int rx_budget = budget / 2; - int tx_budget = budget - rx_budget; + int work_done; - /* Half of the budget for receiveing messages */ - rx_work_done = grcan_receive(dev, rx_budget); + work_done = grcan_receive(dev, budget); - /* Half of the budget for transmitting messages as that can trigger echo - * frames being received - */ - tx_work_done = grcan_transmit_catch_up(dev, tx_budget); + grcan_transmit_catch_up(dev); - if (rx_work_done < rx_budget && tx_work_done < tx_budget) { + if (work_done < budget) { napi_complete(napi); /* Guarantee no interference with a running reset that otherwise @@ -1268,7 +1263,7 @@ spin_unlock_irqrestore(&priv->lock, flags); } - return rx_work_done + tx_work_done; + return work_done; } /* Work tx bug by waiting while for the risky situation to clear. If that fails, @@ -1600,6 +1595,7 @@ memcpy(&priv->config, &grcan_module_config, sizeof(struct grcan_device_config)); priv->dev = dev; + priv->ofdev_dev = &ofdev->dev; priv->regs = base; priv->can.bittiming_const = &grcan_bittiming_const; priv->can.do_set_bittiming = grcan_set_bittiming; @@ -1652,6 +1648,7 @@ static int grcan_probe(struct platform_device *ofdev) { struct device_node *np = ofdev->dev.of_node; + struct device_node *sysid_parent; struct resource *res; u32 sysid, ambafreq; int irq, err; @@ -1661,10 +1658,14 @@ /* Compare GRLIB version number with the first that does not * have the tx bug (see start_xmit) */ - err = of_property_read_u32(np, "systemid", &sysid); - if (!err && ((sysid & GRLIB_VERSION_MASK) - >= GRCAN_TXBUG_SAFE_GRLIB_VERSION)) - txbug = false; + sysid_parent = of_find_node_by_path("/ambapp0"); + if (sysid_parent) { + err = of_property_read_u32(sysid_parent, "systemid", &sysid); + if (!err && ((sysid & GRLIB_VERSION_MASK) >= + GRCAN_TXBUG_SAFE_GRLIB_VERSION)) + txbug = false; + of_node_put(sysid_parent); + } err = of_property_read_u32(np, "freq", &ambafreq); if (err) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/mscan/mpc5xxx_can.c +++ linux-azure-5.4.0/drivers/net/can/mscan/mpc5xxx_can.c @@ -325,14 +325,14 @@ &mscan_clksrc); if (!priv->can.clock.freq) { dev_err(&ofdev->dev, "couldn't get MSCAN clock properties\n"); - goto exit_free_mscan; + goto exit_put_clock; } err = register_mscandev(dev, mscan_clksrc); if (err) { dev_err(&ofdev->dev, "registering %s failed (err=%d)\n", DRV_NAME, err); - goto exit_free_mscan; + goto exit_put_clock; } dev_info(&ofdev->dev, "MSCAN at 0x%p, irq %d, clock %d Hz\n", @@ -340,7 +340,9 @@ return 0; -exit_free_mscan: +exit_put_clock: + if (data->put_clock) + data->put_clock(ofdev); free_candev(dev); exit_dispose_irq: irq_dispose_mapping(irq); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/pch_can.c +++ linux-azure-5.4.0/drivers/net/can/pch_can.c @@ -489,6 +489,7 @@ if (!skb) return; + errc = ioread32(&priv->regs->errc); if (status & PCH_BUS_OFF) { pch_can_set_tx_all(priv, 0); pch_can_set_rx_all(priv, 0); @@ -496,9 +497,11 @@ cf->can_id |= CAN_ERR_BUSOFF; priv->can.can_stats.bus_off++; can_bus_off(ndev); + } else { + cf->data[6] = errc & PCH_TEC; + cf->data[7] = (errc & PCH_REC) >> 8; } - errc = ioread32(&priv->regs->errc); /* Warning interrupt. */ if (status & PCH_EWARN) { state = CAN_STATE_ERROR_WARNING; @@ -556,9 +559,6 @@ break; } - cf->data[6] = errc & PCH_TEC; - cf->data[7] = (errc & PCH_REC) >> 8; - priv->can.state = state; netif_receive_skb(skb); @@ -692,11 +692,11 @@ cf->data[i + 1] = data_reg >> 8; } - netif_receive_skb(skb); rcv_pkts++; stats->rx_packets++; quota--; stats->rx_bytes += cf->can_dlc; + netif_receive_skb(skb); pch_fifo_thresh(priv, obj_num); obj_num++; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/rcar/rcar_can.c +++ linux-azure-5.4.0/drivers/net/can/rcar/rcar_can.c @@ -235,11 +235,8 @@ if (eifr & (RCAR_CAN_EIFR_EWIF | RCAR_CAN_EIFR_EPIF)) { txerr = readb(&priv->regs->tecr); rxerr = readb(&priv->regs->recr); - if (skb) { + if (skb) cf->can_id |= CAN_ERR_CRTL; - cf->data[6] = txerr; - cf->data[7] = rxerr; - } } if (eifr & RCAR_CAN_EIFR_BEIF) { int rx_errors = 0, tx_errors = 0; @@ -339,6 +336,9 @@ can_bus_off(ndev); if (skb) cf->can_id |= CAN_ERR_BUSOFF; + } else if (skb) { + cf->data[6] = txerr; + cf->data[7] = rxerr; } if (eifr & RCAR_CAN_EIFR_ORIF) { netdev_dbg(priv->ndev, "Receive overrun error interrupt\n"); @@ -848,10 +848,12 @@ struct rcar_can_priv *priv = netdev_priv(ndev); u16 ctlr; - if (netif_running(ndev)) { - netif_stop_queue(ndev); - netif_device_detach(ndev); - } + if (!netif_running(ndev)) + return 0; + + netif_stop_queue(ndev); + netif_device_detach(ndev); + ctlr = readw(&priv->regs->ctlr); ctlr |= RCAR_CAN_CTLR_CANM_HALT; writew(ctlr, &priv->regs->ctlr); @@ -870,6 +872,9 @@ u16 ctlr; int err; + if (!netif_running(ndev)) + return 0; + err = clk_enable(priv->clk); if (err) { netdev_err(ndev, "clk_enable() failed, error %d\n", err); @@ -883,10 +888,9 @@ writew(ctlr, &priv->regs->ctlr); priv->can.state = CAN_STATE_ERROR_ACTIVE; - if (netif_running(ndev)) { - netif_device_attach(ndev); - netif_start_queue(ndev); - } + netif_device_attach(ndev); + netif_start_queue(ndev); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/rcar/rcar_canfd.c +++ linux-azure-5.4.0/drivers/net/can/rcar/rcar_canfd.c @@ -1075,7 +1075,7 @@ struct rcar_canfd_global *gpriv = dev_id; struct net_device *ndev; struct rcar_canfd_channel *priv; - u32 sts, gerfl; + u32 sts, cc, gerfl; u32 ch, ridx; /* Global error interrupts still indicate a condition specific @@ -1093,7 +1093,9 @@ /* Handle Rx interrupts */ sts = rcar_canfd_read(priv->base, RCANFD_RFSTS(ridx)); - if (likely(sts & RCANFD_RFSTS_RFIF)) { + cc = rcar_canfd_read(priv->base, RCANFD_RFCC(ridx)); + if (likely(sts & RCANFD_RFSTS_RFIF && + cc & RCANFD_RFCC_RFIE)) { if (napi_schedule_prep(&priv->napi)) { /* Disable Rx FIFO interrupts */ rcar_canfd_clear_bit(priv->base, @@ -1598,15 +1600,15 @@ netif_napi_add(ndev, &priv->napi, rcar_canfd_rx_poll, RCANFD_NAPI_WEIGHT); + spin_lock_init(&priv->tx_lock); + devm_can_led_init(ndev); + gpriv->ch[priv->channel] = priv; err = register_candev(ndev); if (err) { dev_err(&pdev->dev, "register_candev() failed, error %d\n", err); goto fail_candev; } - spin_lock_init(&priv->tx_lock); - devm_can_led_init(ndev); - gpriv->ch[priv->channel] = priv; dev_info(&pdev->dev, "device registered (channel %u)\n", priv->channel); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/sja1000/ems_pcmcia.c +++ linux-azure-5.4.0/drivers/net/can/sja1000/ems_pcmcia.c @@ -235,7 +235,12 @@ free_sja1000dev(dev); } - err = request_irq(dev->irq, &ems_pcmcia_interrupt, IRQF_SHARED, + if (!card->channels) { + err = -ENODEV; + goto failure_cleanup; + } + + err = request_irq(pdev->irq, &ems_pcmcia_interrupt, IRQF_SHARED, DRV_NAME, card); if (!err) return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/sja1000/peak_pci.c +++ linux-azure-5.4.0/drivers/net/can/sja1000/peak_pci.c @@ -731,16 +731,15 @@ struct net_device *prev_dev = chan->prev_dev; dev_info(&pdev->dev, "removing device %s\n", dev->name); + /* do that only for first channel */ + if (!prev_dev && chan->pciec_card) + peak_pciec_remove(chan->pciec_card); unregister_sja1000dev(dev); free_sja1000dev(dev); dev = prev_dev; - if (!dev) { - /* do that only for first channel */ - if (chan->pciec_card) - peak_pciec_remove(chan->pciec_card); + if (!dev) break; - } priv = netdev_priv(dev); chan = priv->priv; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/sja1000/sja1000.c +++ linux-azure-5.4.0/drivers/net/can/sja1000/sja1000.c @@ -405,9 +405,6 @@ txerr = priv->read_reg(priv, SJA1000_TXERR); rxerr = priv->read_reg(priv, SJA1000_RXERR); - cf->data[6] = txerr; - cf->data[7] = rxerr; - if (isrc & IRQ_DOI) { /* data overrun interrupt */ netdev_dbg(dev, "data overrun interrupt\n"); @@ -429,6 +426,10 @@ else state = CAN_STATE_ERROR_ACTIVE; } + if (state != CAN_STATE_BUS_OFF) { + cf->data[6] = txerr; + cf->data[7] = rxerr; + } if (isrc & IRQ_BEI) { /* bus error interrupt */ priv->can.can_stats.bus_error++; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/softing/softing_cs.c +++ linux-azure-5.4.0/drivers/net/can/softing/softing_cs.c @@ -293,7 +293,7 @@ return 0; platform_failed: - kfree(dev); + platform_device_put(pdev); mem_failed: pcmcia_bad: pcmcia_failed: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/softing/softing_fw.c +++ linux-azure-5.4.0/drivers/net/can/softing/softing_fw.c @@ -565,18 +565,19 @@ if (ret < 0) goto failed; } - /* enable_error_frame */ - /* + + /* enable_error_frame + * * Error reporting is switched off at the moment since * the receiving of them is not yet 100% verified * This should be enabled sooner or later - * - if (error_reporting) { + */ + if (0 && error_reporting) { ret = softing_fct_cmd(card, 51, "enable_error_frame"); if (ret < 0) goto failed; } - */ + /* initialize interface */ iowrite16(1, &card->dpram[DPRAM_FCT_PARAM + 2]); iowrite16(1, &card->dpram[DPRAM_FCT_PARAM + 4]); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/spi/hi311x.c +++ linux-azure-5.4.0/drivers/net/can/spi/hi311x.c @@ -218,7 +218,7 @@ return ret; } -static u8 hi3110_cmd(struct spi_device *spi, u8 command) +static int hi3110_cmd(struct spi_device *spi, u8 command) { struct hi3110_priv *priv = spi_get_drvdata(spi); @@ -670,8 +670,6 @@ txerr = hi3110_read(spi, HI3110_READ_TEC); rxerr = hi3110_read(spi, HI3110_READ_REC); - cf->data[6] = txerr; - cf->data[7] = rxerr; tx_state = txerr >= rxerr ? new_state : 0; rx_state = txerr <= rxerr ? new_state : 0; can_change_state(net, cf, tx_state, rx_state); @@ -684,6 +682,9 @@ hi3110_hw_sleep(spi); break; } + } else { + cf->data[6] = txerr; + cf->data[7] = rxerr; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/spi/mcp251x.c +++ linux-azure-5.4.0/drivers/net/can/spi/mcp251x.c @@ -756,9 +756,6 @@ mcp251x_read_2regs(spi, CANINTF, &intf, &eflag); - /* mask out flags we don't care about */ - intf &= CANINTF_RX | CANINTF_TX | CANINTF_ERR; - /* receive buffer 0 */ if (intf & CANINTF_RX0IF) { mcp251x_hw_rx(spi, 0); @@ -768,6 +765,18 @@ if (mcp251x_is_2510(spi)) mcp251x_write_bits(spi, CANINTF, CANINTF_RX0IF, 0x00); + + /* check if buffer 1 is already known to be full, no need to re-read */ + if (!(intf & CANINTF_RX1IF)) { + u8 intf1, eflag1; + + /* intf needs to be read again to avoid a race condition */ + mcp251x_read_2regs(spi, CANINTF, &intf1, &eflag1); + + /* combine flags from both operations for error handling */ + intf |= intf1; + eflag |= eflag1; + } } /* receive buffer 1 */ @@ -778,6 +787,9 @@ clear_intf |= CANINTF_RX1IF; } + /* mask out flags we don't care about */ + intf &= CANINTF_RX | CANINTF_TX | CANINTF_ERR; + /* any error or tx interrupt we need to clear? */ if (intf & (CANINTF_ERR | CANINTF_TX)) clear_intf |= intf & (CANINTF_ERR | CANINTF_TX); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/sun4i_can.c +++ linux-azure-5.4.0/drivers/net/can/sun4i_can.c @@ -525,11 +525,6 @@ rxerr = (errc >> 16) & 0xFF; txerr = errc & 0xFF; - if (skb) { - cf->data[6] = txerr; - cf->data[7] = rxerr; - } - if (isrc & SUN4I_INT_DATA_OR) { /* data overrun interrupt */ netdev_dbg(dev, "data overrun interrupt\n"); @@ -560,6 +555,10 @@ else state = CAN_STATE_ERROR_ACTIVE; } + if (skb && state != CAN_STATE_BUS_OFF) { + cf->data[6] = txerr; + cf->data[7] = rxerr; + } if (isrc & SUN4I_INT_BUS_ERR) { /* bus error interrupt */ netdev_dbg(dev, "bus error interrupt\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/usb/ems_usb.c +++ linux-azure-5.4.0/drivers/net/can/usb/ems_usb.c @@ -194,7 +194,7 @@ __le32 ts_sec; /* timestamp in seconds */ __le32 ts_nsec; /* timestamp in nano seconds */ - union { + union __packed { u8 generic[64]; struct cpc_can_msg can_msg; struct cpc_can_params can_params; @@ -255,6 +255,8 @@ unsigned int free_slots; /* remember number of available slots */ struct ems_cpc_msg active_params; /* active controller parameters */ + void *rxbuf[MAX_RX_URBS]; + dma_addr_t rxbuf_dma[MAX_RX_URBS]; }; static void ems_usb_read_interrupt_callback(struct urb *urb) @@ -587,6 +589,7 @@ for (i = 0; i < MAX_RX_URBS; i++) { struct urb *urb = NULL; u8 *buf = NULL; + dma_addr_t buf_dma; /* create a URB, and a buffer for it */ urb = usb_alloc_urb(0, GFP_KERNEL); @@ -596,7 +599,7 @@ } buf = usb_alloc_coherent(dev->udev, RX_BUFFER_SIZE, GFP_KERNEL, - &urb->transfer_dma); + &buf_dma); if (!buf) { netdev_err(netdev, "No memory left for USB buffer\n"); usb_free_urb(urb); @@ -604,6 +607,8 @@ break; } + urb->transfer_dma = buf_dma; + usb_fill_bulk_urb(urb, dev->udev, usb_rcvbulkpipe(dev->udev, 2), buf, RX_BUFFER_SIZE, ems_usb_read_bulk_callback, dev); @@ -619,6 +624,9 @@ break; } + dev->rxbuf[i] = buf; + dev->rxbuf_dma[i] = buf_dma; + /* Drop reference, USB core will take care of freeing it */ usb_free_urb(urb); } @@ -684,6 +692,10 @@ usb_kill_anchored_urbs(&dev->rx_submitted); + for (i = 0; i < MAX_RX_URBS; ++i) + usb_free_coherent(dev->udev, RX_BUFFER_SIZE, + dev->rxbuf[i], dev->rxbuf_dma[i]); + usb_kill_anchored_urbs(&dev->tx_submitted); atomic_set(&dev->active_tx_urbs, 0); @@ -811,7 +823,6 @@ usb_unanchor_urb(urb); usb_free_coherent(dev->udev, size, buf, urb->transfer_dma); - dev_kfree_skb(skb); atomic_dec(&dev->active_tx_urbs); @@ -1053,7 +1064,6 @@ if (dev) { unregister_netdev(dev->netdev); - free_candev(dev->netdev); unlink_all_urbs(dev); @@ -1061,6 +1071,8 @@ kfree(dev->intr_in_buffer); kfree(dev->tx_msg_buffer); + + free_candev(dev->netdev); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/usb/esd_usb2.c +++ linux-azure-5.4.0/drivers/net/can/usb/esd_usb2.c @@ -195,6 +195,8 @@ int net_count; u32 version; int rxinitdone; + void *rxbuf[MAX_RX_URBS]; + dma_addr_t rxbuf_dma[MAX_RX_URBS]; }; struct esd_usb2_net_priv { @@ -222,8 +224,8 @@ if (id == ESD_EV_CAN_ERROR_EXT) { u8 state = msg->msg.rx.data[0]; u8 ecc = msg->msg.rx.data[1]; - u8 txerr = msg->msg.rx.data[2]; - u8 rxerr = msg->msg.rx.data[3]; + u8 rxerr = msg->msg.rx.data[2]; + u8 txerr = msg->msg.rx.data[3]; skb = alloc_can_err_skb(priv->netdev, &cf); if (skb == NULL) { @@ -544,6 +546,7 @@ for (i = 0; i < MAX_RX_URBS; i++) { struct urb *urb = NULL; u8 *buf = NULL; + dma_addr_t buf_dma; /* create a URB, and a buffer for it */ urb = usb_alloc_urb(0, GFP_KERNEL); @@ -553,7 +556,7 @@ } buf = usb_alloc_coherent(dev->udev, RX_BUFFER_SIZE, GFP_KERNEL, - &urb->transfer_dma); + &buf_dma); if (!buf) { dev_warn(dev->udev->dev.parent, "No memory left for USB buffer\n"); @@ -561,6 +564,8 @@ goto freeurb; } + urb->transfer_dma = buf_dma; + usb_fill_bulk_urb(urb, dev->udev, usb_rcvbulkpipe(dev->udev, 1), buf, RX_BUFFER_SIZE, @@ -573,8 +578,12 @@ usb_unanchor_urb(urb); usb_free_coherent(dev->udev, RX_BUFFER_SIZE, buf, urb->transfer_dma); + goto freeurb; } + dev->rxbuf[i] = buf; + dev->rxbuf_dma[i] = buf_dma; + freeurb: /* Drop reference, USB core will take care of freeing it */ usb_free_urb(urb); @@ -662,6 +671,11 @@ int i, j; usb_kill_anchored_urbs(&dev->rx_submitted); + + for (i = 0; i < MAX_RX_URBS; ++i) + usb_free_coherent(dev->udev, RX_BUFFER_SIZE, + dev->rxbuf[i], dev->rxbuf_dma[i]); + for (i = 0; i < dev->net_count; i++) { priv = dev->nets[i]; if (priv) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/usb/kvaser_usb/kvaser_usb.h +++ linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb.h @@ -35,9 +35,10 @@ #define KVASER_USB_RX_BUFFER_SIZE 3072 #define KVASER_USB_MAX_NET_DEVICES 5 -/* USB devices features */ -#define KVASER_USB_HAS_SILENT_MODE BIT(0) -#define KVASER_USB_HAS_TXRX_ERRORS BIT(1) +/* Kvaser USB device quirks */ +#define KVASER_USB_QUIRK_HAS_SILENT_MODE BIT(0) +#define KVASER_USB_QUIRK_HAS_TXRX_ERRORS BIT(1) +#define KVASER_USB_QUIRK_IGNORE_CLK_FREQ BIT(2) /* Device capabilities */ #define KVASER_USB_CAP_BERR_CAP 0x01 @@ -65,12 +66,7 @@ struct kvaser_usb_dev_card_data { u32 ctrlmode_supported; u32 capabilities; - union { - struct { - enum kvaser_usb_leaf_family family; - } leaf; - struct kvaser_usb_dev_card_data_hydra hydra; - }; + struct kvaser_usb_dev_card_data_hydra hydra; }; /* Context for an outstanding, not yet ACKed, transmission */ @@ -84,7 +80,7 @@ struct usb_device *udev; struct usb_interface *intf; struct kvaser_usb_net_priv *nets[KVASER_USB_MAX_NET_DEVICES]; - const struct kvaser_usb_dev_ops *ops; + const struct kvaser_usb_driver_info *driver_info; const struct kvaser_usb_dev_cfg *cfg; struct usb_endpoint_descriptor *bulk_in, *bulk_out; @@ -166,6 +162,12 @@ int *cmd_len, u16 transid); }; +struct kvaser_usb_driver_info { + u32 quirks; + enum kvaser_usb_leaf_family family; + const struct kvaser_usb_dev_ops *ops; +}; + struct kvaser_usb_dev_cfg { const struct can_clock clock; const unsigned int timestamp_freq; @@ -176,6 +178,8 @@ extern const struct kvaser_usb_dev_ops kvaser_usb_hydra_dev_ops; extern const struct kvaser_usb_dev_ops kvaser_usb_leaf_dev_ops; +void kvaser_usb_unlink_tx_urbs(struct kvaser_usb_net_priv *priv); + int kvaser_usb_recv_cmd(const struct kvaser_usb *dev, void *cmd, int len, int *actual_len); @@ -185,4 +189,7 @@ int len); int kvaser_usb_can_rx_over_error(struct net_device *netdev); + +extern const struct can_bittiming_const kvaser_usb_flexc_bittiming_const; + #endif /* KVASER_USB_H */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c +++ linux-azure-5.4.0/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c @@ -79,104 +79,134 @@ #define USB_ATI_MEMO_PRO_2HS_V2_PRODUCT_ID 269 #define USB_HYBRID_PRO_CANLIN_PRODUCT_ID 270 -static inline bool kvaser_is_leaf(const struct usb_device_id *id) -{ - return (id->idProduct >= USB_LEAF_DEVEL_PRODUCT_ID && - id->idProduct <= USB_CAN_R_PRODUCT_ID) || - (id->idProduct >= USB_LEAF_LITE_V2_PRODUCT_ID && - id->idProduct <= USB_MINI_PCIE_2HS_PRODUCT_ID); -} +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_hydra = { + .quirks = 0, + .ops = &kvaser_usb_hydra_dev_ops, +}; -static inline bool kvaser_is_usbcan(const struct usb_device_id *id) -{ - return id->idProduct >= USB_USBCAN_REVB_PRODUCT_ID && - id->idProduct <= USB_MEMORATOR_PRODUCT_ID; -} +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_usbcan = { + .quirks = KVASER_USB_QUIRK_HAS_TXRX_ERRORS | + KVASER_USB_QUIRK_HAS_SILENT_MODE, + .family = KVASER_USBCAN, + .ops = &kvaser_usb_leaf_dev_ops, +}; -static inline bool kvaser_is_hydra(const struct usb_device_id *id) -{ - return id->idProduct >= USB_BLACKBIRD_V2_PRODUCT_ID && - id->idProduct <= USB_HYBRID_PRO_CANLIN_PRODUCT_ID; -} +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_leaf = { + .quirks = KVASER_USB_QUIRK_IGNORE_CLK_FREQ, + .family = KVASER_LEAF, + .ops = &kvaser_usb_leaf_dev_ops, +}; + +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_leaf_err = { + .quirks = KVASER_USB_QUIRK_HAS_TXRX_ERRORS | + KVASER_USB_QUIRK_IGNORE_CLK_FREQ, + .family = KVASER_LEAF, + .ops = &kvaser_usb_leaf_dev_ops, +}; + +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_leaf_err_listen = { + .quirks = KVASER_USB_QUIRK_HAS_TXRX_ERRORS | + KVASER_USB_QUIRK_HAS_SILENT_MODE | + KVASER_USB_QUIRK_IGNORE_CLK_FREQ, + .family = KVASER_LEAF, + .ops = &kvaser_usb_leaf_dev_ops, +}; + +static const struct kvaser_usb_driver_info kvaser_usb_driver_info_leafimx = { + .quirks = 0, + .ops = &kvaser_usb_leaf_dev_ops, +}; static const struct usb_device_id kvaser_usb_table[] = { - /* Leaf USB product IDs */ - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_DEVEL_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_PRODUCT_ID) }, + /* Leaf M32C USB product IDs */ + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_DEVEL_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_SPRO_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_LS_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_SWC_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_LIN_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_SPRO_LS_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_SPRO_SWC_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO2_DEVEL_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO2_HSHS_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_UPRO_HSHS_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_GI_PRODUCT_ID) }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_GI_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_OBDII_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS | - KVASER_USB_HAS_SILENT_MODE }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err_listen }, { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO2_HSLS_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_CH_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, { USB_DEVICE(KVASER_VENDOR_ID, USB_BLACKBIRD_SPRO_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, { USB_DEVICE(KVASER_VENDOR_ID, USB_OEM_MERCURY_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, { USB_DEVICE(KVASER_VENDOR_ID, USB_OEM_LEAF_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, { USB_DEVICE(KVASER_VENDOR_ID, USB_CAN_R_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_MINI_PCIE_HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LIGHT_HS_V2_OEM_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_LIGHT_2HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_MINI_PCIE_2HS_PRODUCT_ID) }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leaf_err }, + + /* Leaf i.MX28 USB product IDs */ + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LITE_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leafimx }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_MINI_PCIE_HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leafimx }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_LIGHT_HS_V2_OEM_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leafimx }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_LIGHT_2HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leafimx }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_MINI_PCIE_2HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_leafimx }, /* USBCANII USB product IDs */ { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN2_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_usbcan }, { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_REVB_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_usbcan }, { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMORATOR_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_usbcan }, { USB_DEVICE(KVASER_VENDOR_ID, USB_VCI2_PRODUCT_ID), - .driver_info = KVASER_USB_HAS_TXRX_ERRORS }, + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_usbcan }, /* Minihydra USB product IDs */ - { USB_DEVICE(KVASER_VENDOR_ID, USB_BLACKBIRD_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_PRO_5HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_PRO_5HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_LIGHT_4HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_HS_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_PRO_2HS_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_2HS_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_PRO_2HS_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_HYBRID_CANLIN_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_ATI_USBCAN_PRO_2HS_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_ATI_MEMO_PRO_2HS_V2_PRODUCT_ID) }, - { USB_DEVICE(KVASER_VENDOR_ID, USB_HYBRID_PRO_CANLIN_PRODUCT_ID) }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_BLACKBIRD_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_PRO_5HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_PRO_5HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_LIGHT_4HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_LEAF_PRO_HS_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_USBCAN_PRO_2HS_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_2HS_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_MEMO_PRO_2HS_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_HYBRID_CANLIN_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_ATI_USBCAN_PRO_2HS_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_ATI_MEMO_PRO_2HS_V2_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, + { USB_DEVICE(KVASER_VENDOR_ID, USB_HYBRID_PRO_CANLIN_PRODUCT_ID), + .driver_info = (kernel_ulong_t)&kvaser_usb_driver_info_hydra }, { } }; MODULE_DEVICE_TABLE(usb, kvaser_usb_table); @@ -267,6 +297,7 @@ static void kvaser_usb_read_bulk_callback(struct urb *urb) { struct kvaser_usb *dev = urb->context; + const struct kvaser_usb_dev_ops *ops = dev->driver_info->ops; int err; unsigned int i; @@ -283,8 +314,8 @@ goto resubmit_urb; } - dev->ops->dev_read_bulk_callback(dev, urb->transfer_buffer, - urb->actual_length); + ops->dev_read_bulk_callback(dev, urb->transfer_buffer, + urb->actual_length); resubmit_urb: usb_fill_bulk_urb(urb, dev->udev, @@ -378,6 +409,7 @@ { struct kvaser_usb_net_priv *priv = netdev_priv(netdev); struct kvaser_usb *dev = priv->dev; + const struct kvaser_usb_dev_ops *ops = dev->driver_info->ops; int err; err = open_candev(netdev); @@ -388,11 +420,11 @@ if (err) goto error; - err = dev->ops->dev_set_opt_mode(priv); + err = ops->dev_set_opt_mode(priv); if (err) goto error; - err = dev->ops->dev_start_chip(priv); + err = ops->dev_start_chip(priv); if (err) { netdev_warn(netdev, "Cannot start device, error %d\n", err); goto error; @@ -421,7 +453,7 @@ /* This method might sleep. Do not call it in the atomic context * of URB completions. */ -static void kvaser_usb_unlink_tx_urbs(struct kvaser_usb_net_priv *priv) +void kvaser_usb_unlink_tx_urbs(struct kvaser_usb_net_priv *priv) { usb_kill_anchored_urbs(&priv->tx_submitted); kvaser_usb_reset_tx_urb_contexts(priv); @@ -449,22 +481,23 @@ { struct kvaser_usb_net_priv *priv = netdev_priv(netdev); struct kvaser_usb *dev = priv->dev; + const struct kvaser_usb_dev_ops *ops = dev->driver_info->ops; int err; netif_stop_queue(netdev); - err = dev->ops->dev_flush_queue(priv); + err = ops->dev_flush_queue(priv); if (err) netdev_warn(netdev, "Cannot flush queue, error %d\n", err); - if (dev->ops->dev_reset_chip) { - err = dev->ops->dev_reset_chip(dev, priv->channel); + if (ops->dev_reset_chip) { + err = ops->dev_reset_chip(dev, priv->channel); if (err) netdev_warn(netdev, "Cannot reset card, error %d\n", err); } - err = dev->ops->dev_stop_chip(priv); + err = ops->dev_stop_chip(priv); if (err) netdev_warn(netdev, "Cannot stop device, error %d\n", err); @@ -503,6 +536,7 @@ { struct kvaser_usb_net_priv *priv = netdev_priv(netdev); struct kvaser_usb *dev = priv->dev; + const struct kvaser_usb_dev_ops *ops = dev->driver_info->ops; struct net_device_stats *stats = &netdev->stats; struct kvaser_usb_tx_urb_context *context = NULL; struct urb *urb; @@ -545,8 +579,8 @@ goto freeurb; } - buf = dev->ops->dev_frame_to_cmd(priv, skb, &context->dlc, &cmd_len, - context->echo_index); + buf = ops->dev_frame_to_cmd(priv, skb, &context->dlc, &cmd_len, + context->echo_index); if (!buf) { stats->tx_dropped++; dev_kfree_skb(skb); @@ -630,15 +664,16 @@ } } -static int kvaser_usb_init_one(struct kvaser_usb *dev, - const struct usb_device_id *id, int channel) +static int kvaser_usb_init_one(struct kvaser_usb *dev, int channel) { struct net_device *netdev; struct kvaser_usb_net_priv *priv; + const struct kvaser_usb_driver_info *driver_info = dev->driver_info; + const struct kvaser_usb_dev_ops *ops = driver_info->ops; int err; - if (dev->ops->dev_reset_chip) { - err = dev->ops->dev_reset_chip(dev, channel); + if (ops->dev_reset_chip) { + err = ops->dev_reset_chip(dev, channel); if (err) return err; } @@ -655,6 +690,7 @@ init_usb_anchor(&priv->tx_submitted); init_completion(&priv->start_comp); init_completion(&priv->stop_comp); + init_completion(&priv->flush_comp); priv->can.ctrlmode_supported = 0; priv->dev = dev; @@ -667,20 +703,19 @@ priv->can.state = CAN_STATE_STOPPED; priv->can.clock.freq = dev->cfg->clock.freq; priv->can.bittiming_const = dev->cfg->bittiming_const; - priv->can.do_set_bittiming = dev->ops->dev_set_bittiming; - priv->can.do_set_mode = dev->ops->dev_set_mode; - if ((id->driver_info & KVASER_USB_HAS_TXRX_ERRORS) || + priv->can.do_set_bittiming = ops->dev_set_bittiming; + priv->can.do_set_mode = ops->dev_set_mode; + if ((driver_info->quirks & KVASER_USB_QUIRK_HAS_TXRX_ERRORS) || (priv->dev->card_data.capabilities & KVASER_USB_CAP_BERR_CAP)) - priv->can.do_get_berr_counter = dev->ops->dev_get_berr_counter; - if (id->driver_info & KVASER_USB_HAS_SILENT_MODE) + priv->can.do_get_berr_counter = ops->dev_get_berr_counter; + if (driver_info->quirks & KVASER_USB_QUIRK_HAS_SILENT_MODE) priv->can.ctrlmode_supported |= CAN_CTRLMODE_LISTENONLY; priv->can.ctrlmode_supported |= dev->card_data.ctrlmode_supported; if (priv->can.ctrlmode_supported & CAN_CTRLMODE_FD) { priv->can.data_bittiming_const = dev->cfg->data_bittiming_const; - priv->can.do_set_data_bittiming = - dev->ops->dev_set_data_bittiming; + priv->can.do_set_data_bittiming = ops->dev_set_data_bittiming; } netdev->flags |= IFF_ECHO; @@ -711,29 +746,22 @@ struct kvaser_usb *dev; int err; int i; + const struct kvaser_usb_driver_info *driver_info; + const struct kvaser_usb_dev_ops *ops; + + driver_info = (const struct kvaser_usb_driver_info *)id->driver_info; + if (!driver_info) + return -ENODEV; dev = devm_kzalloc(&intf->dev, sizeof(*dev), GFP_KERNEL); if (!dev) return -ENOMEM; - if (kvaser_is_leaf(id)) { - dev->card_data.leaf.family = KVASER_LEAF; - dev->ops = &kvaser_usb_leaf_dev_ops; - } else if (kvaser_is_usbcan(id)) { - dev->card_data.leaf.family = KVASER_USBCAN; - dev->ops = &kvaser_usb_leaf_dev_ops; - } else if (kvaser_is_hydra(id)) { - dev->ops = &kvaser_usb_hydra_dev_ops; - } else { - dev_err(&intf->dev, - "Product ID (%d) is not a supported Kvaser USB device\n", - id->idProduct); - return -ENODEV; - } - dev->intf = intf; + dev->driver_info = driver_info; + ops = driver_info->ops; - err = dev->ops->dev_setup_endpoints(dev); + err = ops->dev_setup_endpoints(dev); if (err) { dev_err(&intf->dev, "Cannot get usb endpoint(s)"); return err; @@ -747,22 +775,22 @@ dev->card_data.ctrlmode_supported = 0; dev->card_data.capabilities = 0; - err = dev->ops->dev_init_card(dev); + err = ops->dev_init_card(dev); if (err) { dev_err(&intf->dev, "Failed to initialize card, error %d\n", err); return err; } - err = dev->ops->dev_get_software_info(dev); + err = ops->dev_get_software_info(dev); if (err) { dev_err(&intf->dev, "Cannot get software info, error %d\n", err); return err; } - if (dev->ops->dev_get_software_details) { - err = dev->ops->dev_get_software_details(dev); + if (ops->dev_get_software_details) { + err = ops->dev_get_software_details(dev); if (err) { dev_err(&intf->dev, "Cannot get software details, error %d\n", err); @@ -780,14 +808,14 @@ dev_dbg(&intf->dev, "Max outstanding tx = %d URBs\n", dev->max_tx_urbs); - err = dev->ops->dev_get_card_info(dev); + err = ops->dev_get_card_info(dev); if (err) { dev_err(&intf->dev, "Cannot get card info, error %d\n", err); return err; } - if (dev->ops->dev_get_capabilities) { - err = dev->ops->dev_get_capabilities(dev); + if (ops->dev_get_capabilities) { + err = ops->dev_get_capabilities(dev); if (err) { dev_err(&intf->dev, "Cannot get capabilities, error %d\n", err); @@ -797,7 +825,7 @@ } for (i = 0; i < dev->nchannels; i++) { - err = kvaser_usb_init_one(dev, id, i); + err = kvaser_usb_init_one(dev, i); if (err) { kvaser_usb_remove_interfaces(dev); return err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/can/usb/usb_8dev.c +++ linux-azure-5.4.0/drivers/net/can/usb/usb_8dev.c @@ -137,7 +137,8 @@ u8 *cmd_msg_buffer; struct mutex usb_8dev_cmd_lock; - + void *rxbuf[MAX_RX_URBS]; + dma_addr_t rxbuf_dma[MAX_RX_URBS]; }; /* tx frame */ @@ -441,9 +442,10 @@ if (rx_errors) stats->rx_errors++; - - cf->data[6] = txerr; - cf->data[7] = rxerr; + if (priv->can.state != CAN_STATE_BUS_OFF) { + cf->data[6] = txerr; + cf->data[7] = rxerr; + } priv->bec.txerr = txerr; priv->bec.rxerr = rxerr; @@ -669,9 +671,20 @@ atomic_inc(&priv->active_tx_urbs); err = usb_submit_urb(urb, GFP_ATOMIC); - if (unlikely(err)) - goto failed; - else if (atomic_read(&priv->active_tx_urbs) >= MAX_TX_URBS) + if (unlikely(err)) { + can_free_echo_skb(netdev, context->echo_index); + + usb_unanchor_urb(urb); + usb_free_coherent(priv->udev, size, buf, urb->transfer_dma); + + atomic_dec(&priv->active_tx_urbs); + + if (err == -ENODEV) + netif_device_detach(netdev); + else + netdev_warn(netdev, "failed tx_urb %d\n", err); + stats->tx_dropped++; + } else if (atomic_read(&priv->active_tx_urbs) >= MAX_TX_URBS) /* Slow down tx path */ netif_stop_queue(netdev); @@ -690,19 +703,6 @@ return NETDEV_TX_BUSY; -failed: - can_free_echo_skb(netdev, context->echo_index); - - usb_unanchor_urb(urb); - usb_free_coherent(priv->udev, size, buf, urb->transfer_dma); - - atomic_dec(&priv->active_tx_urbs); - - if (err == -ENODEV) - netif_device_detach(netdev); - else - netdev_warn(netdev, "failed tx_urb %d\n", err); - nomembuf: usb_free_urb(urb); @@ -733,6 +733,7 @@ for (i = 0; i < MAX_RX_URBS; i++) { struct urb *urb = NULL; u8 *buf; + dma_addr_t buf_dma; /* create a URB, and a buffer for it */ urb = usb_alloc_urb(0, GFP_KERNEL); @@ -742,7 +743,7 @@ } buf = usb_alloc_coherent(priv->udev, RX_BUFFER_SIZE, GFP_KERNEL, - &urb->transfer_dma); + &buf_dma); if (!buf) { netdev_err(netdev, "No memory left for USB buffer\n"); usb_free_urb(urb); @@ -750,6 +751,8 @@ break; } + urb->transfer_dma = buf_dma; + usb_fill_bulk_urb(urb, priv->udev, usb_rcvbulkpipe(priv->udev, USB_8DEV_ENDP_DATA_RX), @@ -767,6 +770,9 @@ break; } + priv->rxbuf[i] = buf; + priv->rxbuf_dma[i] = buf_dma; + /* Drop reference, USB core will take care of freeing it */ usb_free_urb(urb); } @@ -836,6 +842,10 @@ usb_kill_anchored_urbs(&priv->rx_submitted); + for (i = 0; i < MAX_RX_URBS; ++i) + usb_free_coherent(priv->udev, RX_BUFFER_SIZE, + priv->rxbuf[i], priv->rxbuf_dma[i]); + usb_kill_anchored_urbs(&priv->tx_submitted); atomic_set(&priv->active_tx_urbs, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/dsa/lan9303-core.c +++ linux-azure-5.4.0/drivers/net/dsa/lan9303-core.c @@ -557,12 +557,12 @@ return 0; } -typedef void alr_loop_cb_t(struct lan9303 *chip, u32 dat0, u32 dat1, - int portmap, void *ctx); +typedef int alr_loop_cb_t(struct lan9303 *chip, u32 dat0, u32 dat1, + int portmap, void *ctx); -static void lan9303_alr_loop(struct lan9303 *chip, alr_loop_cb_t *cb, void *ctx) +static int lan9303_alr_loop(struct lan9303 *chip, alr_loop_cb_t *cb, void *ctx) { - int i; + int ret = 0, i; mutex_lock(&chip->alr_mutex); lan9303_write_switch_reg(chip, LAN9303_SWE_ALR_CMD, @@ -582,13 +582,17 @@ LAN9303_ALR_DAT1_PORT_BITOFFS; portmap = alrport_2_portmap[alrport]; - cb(chip, dat0, dat1, portmap, ctx); + ret = cb(chip, dat0, dat1, portmap, ctx); + if (ret) + break; lan9303_write_switch_reg(chip, LAN9303_SWE_ALR_CMD, LAN9303_ALR_CMD_GET_NEXT); lan9303_write_switch_reg(chip, LAN9303_SWE_ALR_CMD, 0); } mutex_unlock(&chip->alr_mutex); + + return ret; } static void alr_reg_to_mac(u32 dat0, u32 dat1, u8 mac[6]) @@ -606,18 +610,20 @@ }; /* Clear learned (non-static) entry on given port */ -static void alr_loop_cb_del_port_learned(struct lan9303 *chip, u32 dat0, - u32 dat1, int portmap, void *ctx) +static int alr_loop_cb_del_port_learned(struct lan9303 *chip, u32 dat0, + u32 dat1, int portmap, void *ctx) { struct del_port_learned_ctx *del_ctx = ctx; int port = del_ctx->port; if (((BIT(port) & portmap) == 0) || (dat1 & LAN9303_ALR_DAT1_STATIC)) - return; + return 0; /* learned entries has only one port, we can just delete */ dat1 &= ~LAN9303_ALR_DAT1_VALID; /* delete entry */ lan9303_alr_make_entry_raw(chip, dat0, dat1); + + return 0; } struct port_fdb_dump_ctx { @@ -626,19 +632,19 @@ dsa_fdb_dump_cb_t *cb; }; -static void alr_loop_cb_fdb_port_dump(struct lan9303 *chip, u32 dat0, - u32 dat1, int portmap, void *ctx) +static int alr_loop_cb_fdb_port_dump(struct lan9303 *chip, u32 dat0, + u32 dat1, int portmap, void *ctx) { struct port_fdb_dump_ctx *dump_ctx = ctx; u8 mac[ETH_ALEN]; bool is_static; if ((BIT(dump_ctx->port) & portmap) == 0) - return; + return 0; alr_reg_to_mac(dat0, dat1, mac); is_static = !!(dat1 & LAN9303_ALR_DAT1_STATIC); - dump_ctx->cb(mac, 0, is_static, dump_ctx->data); + return dump_ctx->cb(mac, 0, is_static, dump_ctx->data); } /* Set a static ALR entry. Delete entry if port_map is zero */ @@ -1210,9 +1216,7 @@ }; dev_dbg(chip->dev, "%s(%d)\n", __func__, port); - lan9303_alr_loop(chip, alr_loop_cb_fdb_port_dump, &dump_ctx); - - return 0; + return lan9303_alr_loop(chip, alr_loop_cb_fdb_port_dump, &dump_ctx); } static int lan9303_port_mdb_prepare(struct dsa_switch *ds, int port, @@ -1299,7 +1303,7 @@ struct device_node *np) { chip->reset_gpio = devm_gpiod_get_optional(chip->dev, "reset", - GPIOD_OUT_LOW); + GPIOD_OUT_HIGH); if (IS_ERR(chip->reset_gpio)) return PTR_ERR(chip->reset_gpio); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/dsa/microchip/ksz8795_spi.c +++ linux-azure-5.4.0/drivers/net/dsa/microchip/ksz8795_spi.c @@ -86,12 +86,23 @@ }; MODULE_DEVICE_TABLE(of, ksz8795_dt_ids); +static const struct spi_device_id ksz8795_spi_ids[] = { + { "ksz8765" }, + { "ksz8794" }, + { "ksz8795" }, + { "ksz8863" }, + { "ksz8873" }, + { }, +}; +MODULE_DEVICE_TABLE(spi, ksz8795_spi_ids); + static struct spi_driver ksz8795_spi_driver = { .driver = { .name = "ksz8795-switch", .owner = THIS_MODULE, .of_match_table = of_match_ptr(ksz8795_dt_ids), }, + .id_table = ksz8795_spi_ids, .probe = ksz8795_spi_probe, .remove = ksz8795_spi_remove, .shutdown = ksz8795_spi_shutdown, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/dsa/mv88e6060.c +++ linux-azure-5.4.0/drivers/net/dsa/mv88e6060.c @@ -117,6 +117,9 @@ int addr = REG_PORT(p); int ret; + if (dsa_is_unused_port(priv->ds, p)) + return 0; + /* Do not force flow control, disable Ingress and Egress * Header tagging, disable VLAN tunneling, and set the port * state to Forwarding. Additionally, if this is the CPU only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/8390/mcf8390.c +++ linux-azure-5.4.0/drivers/net/ethernet/8390/mcf8390.c @@ -406,12 +406,12 @@ static int mcf8390_probe(struct platform_device *pdev) { struct net_device *dev; - struct resource *mem, *irq; + struct resource *mem; resource_size_t msize; - int ret; + int ret, irq; - irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); - if (irq == NULL) { + irq = platform_get_irq(pdev, 0); + if (irq < 0) { dev_err(&pdev->dev, "no IRQ specified?\n"); return -ENXIO; } @@ -434,7 +434,7 @@ SET_NETDEV_DEV(dev, &pdev->dev); platform_set_drvdata(pdev, dev); - dev->irq = irq->start; + dev->irq = irq; dev->base_addr = mem->start; ret = mcf8390_init(dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/aeroflex/greth.c +++ linux-azure-5.4.0/drivers/net/ethernet/aeroflex/greth.c @@ -1541,10 +1541,11 @@ mdiobus_unregister(greth->mdio); unregister_netdev(ndev); - free_netdev(ndev); of_iounmap(&of_dev->resource[0], greth->regs, resource_size(&of_dev->resource[0])); + free_netdev(ndev); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/altera/altera_tse_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/altera/altera_tse_main.c @@ -163,7 +163,8 @@ mdio = mdiobus_alloc(); if (mdio == NULL) { netdev_err(dev, "Error allocating MDIO bus\n"); - return -ENOMEM; + ret = -ENOMEM; + goto put_node; } mdio->name = ALTERA_TSE_RESOURCE_NAME; @@ -180,6 +181,7 @@ mdio->id); goto out_free_mdio; } + of_node_put(mdio_node); if (netif_msg_drv(priv)) netdev_info(dev, "MDIO bus %s: created\n", mdio->id); @@ -189,6 +191,8 @@ out_free_mdio: mdiobus_free(mdio); mdio = NULL; +put_node: + of_node_put(mdio_node); return ret; } @@ -1431,16 +1435,19 @@ priv->rxdescmem_busaddr = dma_res->start; } else { + ret = -ENODEV; goto err_free_netdev; } - if (!dma_set_mask(priv->device, DMA_BIT_MASK(priv->dmaops->dmamask))) + if (!dma_set_mask(priv->device, DMA_BIT_MASK(priv->dmaops->dmamask))) { dma_set_coherent_mask(priv->device, DMA_BIT_MASK(priv->dmaops->dmamask)); - else if (!dma_set_mask(priv->device, DMA_BIT_MASK(32))) + } else if (!dma_set_mask(priv->device, DMA_BIT_MASK(32))) { dma_set_coherent_mask(priv->device, DMA_BIT_MASK(32)); - else + } else { + ret = -EIO; goto err_free_netdev; + } /* MAC address space */ ret = request_and_map(pdev, "control_port", &control_port, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/amd/xgbe/xgbe-pci.c +++ linux-azure-5.4.0/drivers/net/ethernet/amd/xgbe/xgbe-pci.c @@ -418,6 +418,9 @@ pci_free_irq_vectors(pdata->pcidev); + /* Disable all interrupts in the hardware */ + XP_IOWRITE(pdata, XP_INT_EN, 0x0); + xgbe_free_pdata(pdata); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/apm/xgene-v2/main.c +++ linux-azure-5.4.0/drivers/net/ethernet/apm/xgene-v2/main.c @@ -677,11 +677,13 @@ ret = register_netdev(ndev); if (ret) { netdev_err(ndev, "Failed to register netdev\n"); - goto err; + goto err_mdio_remove; } return 0; +err_mdio_remove: + xge_mdio_remove(ndev); err: free_netdev(ndev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/arc/Kconfig +++ linux-azure-5.4.0/drivers/net/ethernet/arc/Kconfig @@ -21,6 +21,7 @@ depends on ARC || ARCH_ROCKCHIP || COMPILE_TEST select MII select PHYLIB + select CRC32 config ARC_EMAC tristate "ARC EMAC support" only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/Makefile +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/Makefile @@ -16,3 +16,8 @@ obj-$(CONFIG_BGMAC_PLATFORM) += bgmac-platform.o obj-$(CONFIG_SYSTEMPORT) += bcmsysport.o obj-$(CONFIG_BNXT) += bnxt/ + +# FIXME: temporarily silence -Warray-bounds on non W=1+ builds +ifndef KBUILD_EXTRA_WARN +CFLAGS_tg3.o += -Wno-array-bounds +endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bcmsysport.h +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bcmsysport.h @@ -742,6 +742,7 @@ int wol_irq; /* Transmit rings */ + spinlock_t desc_lock; struct bcm_sysport_tx_ring *tx_rings; /* Receive queue */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bgmac-bcma.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bgmac-bcma.c @@ -323,7 +323,6 @@ bcma_mdio_mii_unregister(bgmac->mii_bus); bgmac_enet_remove(bgmac); bcma_set_drvdata(core, NULL); - kfree(bgmac); } static struct bcma_driver bgmac_bcma_driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bgmac.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bgmac.c @@ -189,8 +189,8 @@ } slot->skb = skb; - ring->end += nr_frags + 1; netdev_sent_queue(net_dev, skb->len); + ring->end += nr_frags + 1; wmb(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c @@ -787,6 +787,7 @@ BNX2X_ERR("skb_put is about to fail... pad %d len %d rx_buf_size %d\n", pad, len, fp->rx_buf_size); bnx2x_panic(); + bnx2x_frag_free(fp, new_data); return; } #endif @@ -2666,7 +2667,8 @@ } /* Allocated memory for FW statistics */ - if (bnx2x_alloc_fw_stats_mem(bp)) + rc = bnx2x_alloc_fw_stats_mem(bp); + if (rc) LOAD_ERROR_EXIT(bp, load_error0); /* request pf to initialize status blocks */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_init_ops.h +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_init_ops.h @@ -635,11 +635,13 @@ { int i, rc; struct bnx2x_ilt *ilt = BP_ILT(bp); - struct ilt_client_info *ilt_cli = &ilt->clients[cli_num]; + struct ilt_client_info *ilt_cli; if (!ilt || !ilt->lines) return -1; + ilt_cli = &ilt->clients[cli_num]; + if (ilt_cli->flags & (ILT_CLIENT_SKIP_INIT | ILT_CLIENT_SKIP_MEM)) return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h @@ -64,6 +64,7 @@ #define BNXT_EN_FLAG_ROCE_CAP (BNXT_EN_FLAG_ROCEV1_CAP | \ BNXT_EN_FLAG_ROCEV2_CAP) #define BNXT_EN_FLAG_MSIX_REQUESTED 0x4 + #define BNXT_EN_FLAG_ULP_STOPPED 0x8 const struct bnxt_en_ops *en_ops; struct bnxt_ulp ulp_tbl[BNXT_MAX_ULP]; }; @@ -92,7 +93,7 @@ int bnxt_get_ulp_msix_base(struct bnxt *bp); int bnxt_get_ulp_stat_ctxs(struct bnxt *bp); void bnxt_ulp_stop(struct bnxt *bp); -void bnxt_ulp_start(struct bnxt *bp); +void bnxt_ulp_start(struct bnxt *bp, int err); void bnxt_ulp_sriov_cfg(struct bnxt *bp, int num_vfs); void bnxt_ulp_shutdown(struct bnxt *bp); void bnxt_ulp_irq_stop(struct bnxt *bp); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/broadcom/genet/bcmmii.c +++ linux-azure-5.4.0/drivers/net/ethernet/broadcom/genet/bcmmii.c @@ -426,6 +426,10 @@ int id, ret; pres = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!pres) { + dev_err(&pdev->dev, "Invalid resource\n"); + return -EINVAL; + } memset(&res, 0, sizeof(res)); memset(&ppd, 0, sizeof(ppd)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/cadence/macb_pci.c +++ linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_pci.c @@ -112,9 +112,9 @@ struct platform_device *plat_dev = pci_get_drvdata(pdev); struct macb_platform_data *plat_data = dev_get_platdata(&plat_dev->dev); - platform_device_unregister(plat_dev); clk_unregister(plat_data->pclk); clk_unregister(plat_data->hclk); + platform_device_unregister(plat_dev); } static const struct pci_device_id dev_id_table[] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/cadence/macb_ptp.c +++ linux-azure-5.4.0/drivers/net/ethernet/cadence/macb_ptp.c @@ -275,6 +275,12 @@ if (GEM_BFEXT(DMA_RXVALID, desc->addr)) { desc_ptp = macb_ptp_desc(bp, desc); + /* Unlikely but check */ + if (!desc_ptp) { + dev_warn_ratelimited(&bp->pdev->dev, + "Timestamp not supported in BD\n"); + return; + } gem_hw_timestamp(bp, desc_ptp->ts_1, desc_ptp->ts_2, &ts); memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps)); shhwtstamps->hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec); @@ -307,8 +313,11 @@ if (CIRC_SPACE(head, tail, PTP_TS_BUFFER_SIZE) == 0) return -ENOMEM; - skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; desc_ptp = macb_ptp_desc(queue->bp, desc); + /* Unlikely but check */ + if (!desc_ptp) + return -EINVAL; + skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; tx_timestamp = &queue->tx_timestamps[head]; tx_timestamp->skb = skb; /* ensure ts_1/ts_2 is loaded after ctrl (TX_USED check) */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/cavium/thunder/nic_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/cavium/thunder/nic_main.c @@ -1193,7 +1193,7 @@ dev_err(&nic->pdev->dev, "Request for #%d msix vectors failed, returned %d\n", nic->num_vec, ret); - return 1; + return ret; } /* Register mailbox interrupt handler */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/chelsio/cxgb/cxgb2.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb/cxgb2.c @@ -1153,6 +1153,7 @@ if (!adapter->registered_device_map) { pr_err("%s: could not register any net devices\n", pci_name(pdev)); + err = -EINVAL; goto out_release_adapter_res; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/chelsio/cxgb3/t3_hw.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb3/t3_hw.c @@ -3677,6 +3677,8 @@ MAC_STATS_ACCUM_SECS : (MAC_STATS_ACCUM_SECS * 10); adapter->params.pci.vpd_cap_addr = pci_find_capability(adapter->pdev, PCI_CAP_ID_VPD); + if (!adapter->params.pci.vpd_cap_addr) + return -ENODEV; ret = get_vpd_params(adapter, &adapter->params.vpd); if (ret < 0) return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c @@ -638,6 +638,9 @@ { unsigned int i; + if (!is_uld(adap)) + return; + mutex_lock(&uld_mutex); for (i = 0; i < CXGB4_ULD_MAX; i++) { if (!adap->uld[i].handle) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/chelsio/cxgb4/t4_hw.h +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.h @@ -293,6 +293,8 @@ #define I2C_PAGE_SIZE 0x100 #define SFP_DIAG_TYPE_ADDR 0x5c #define SFP_DIAG_TYPE_LEN 0x1 +#define SFP_DIAG_ADDRMODE BIT(2) +#define SFP_DIAG_IMPLEMENTED BIT(6) #define SFF_8472_COMP_ADDR 0x5e #define SFF_8472_COMP_LEN 0x1 #define SFF_REV_ADDR 0x1 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c +++ linux-azure-5.4.0/drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c @@ -32,6 +32,7 @@ #include #include +#include #include #include @@ -99,7 +100,7 @@ rt = ip_route_output_ports(&init_net, &fl4, NULL, peer_ip, local_ip, peer_port, local_port, IPPROTO_TCP, - tos, 0); + tos & ~INET_ECN_MASK, 0); if (IS_ERR(rt)) return NULL; n = dst_neigh_lookup(&rt->dst, &peer_ip); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/dec/tulip/tulip_core.c +++ linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/tulip_core.c @@ -1410,8 +1410,10 @@ /* alloc_etherdev ensures aligned and zeroed private structures */ dev = alloc_etherdev (sizeof (*tp)); - if (!dev) + if (!dev) { + pci_disable_device(pdev); return -ENOMEM; + } SET_NETDEV_DEV(dev, &pdev->dev); if (pci_resource_len (pdev, 0) < tulip_tbl[chip_idx].io_size) { @@ -1788,6 +1790,7 @@ err_out_free_netdev: free_netdev (dev); + pci_disable_device(pdev); return -ENODEV; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/dec/tulip/winbond-840.c +++ linux-azure-5.4.0/drivers/net/ethernet/dec/tulip/winbond-840.c @@ -367,7 +367,7 @@ int i, option = find_cnt < MAX_UNITS ? options[find_cnt] : 0; void __iomem *ioaddr; - i = pci_enable_device(pdev); + i = pcim_enable_device(pdev); if (i) return i; pci_set_master(pdev); @@ -389,7 +389,7 @@ ioaddr = pci_iomap(pdev, TULIP_BAR, netdev_res_size); if (!ioaddr) - goto err_out_free_res; + goto err_out_netdev; for (i = 0; i < 3; i++) ((__le16 *)dev->dev_addr)[i] = cpu_to_le16(eeprom_read(ioaddr, i)); @@ -468,8 +468,6 @@ err_out_cleardev: pci_iounmap(pdev, ioaddr); -err_out_free_res: - pci_release_regions(pdev); err_out_netdev: free_netdev (dev); return -ENODEV; @@ -1535,7 +1533,6 @@ if (dev) { struct netdev_private *np = netdev_priv(dev); unregister_netdev(dev); - pci_release_regions(pdev); pci_iounmap(pdev, np->base_addr); free_netdev(dev); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/ec_bhf.c +++ linux-azure-5.4.0/drivers/net/ethernet/ec_bhf.c @@ -576,10 +576,12 @@ struct ec_bhf_priv *priv = netdev_priv(net_dev); unregister_netdev(net_dev); - free_netdev(net_dev); pci_iounmap(dev, priv->dma_io); pci_iounmap(dev, priv->io); + + free_netdev(net_dev); + pci_release_regions(dev); pci_clear_master(dev); pci_disable_device(dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/emulex/benet/be_cmds.c +++ linux-azure-5.4.0/drivers/net/ethernet/emulex/benet/be_cmds.c @@ -550,7 +550,7 @@ int num = 0, status = 0; struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; - spin_lock_bh(&adapter->mcc_cq_lock); + spin_lock(&adapter->mcc_cq_lock); while ((compl = be_mcc_compl_get(adapter))) { if (compl->flags & CQE_FLAGS_ASYNC_MASK) { @@ -566,7 +566,7 @@ if (num) be_cq_notify(adapter, mcc_obj->cq.id, mcc_obj->rearm_cq, num); - spin_unlock_bh(&adapter->mcc_cq_lock); + spin_unlock(&adapter->mcc_cq_lock); return status; } @@ -581,7 +581,9 @@ if (be_check_error(adapter, BE_ERROR_ANY)) return -EIO; + local_bh_disable(); status = be_process_mcc(adapter); + local_bh_enable(); if (atomic_read(&mcc_obj->q.used) == 0) break; @@ -2285,7 +2287,7 @@ /* Uses sync mcc */ int be_cmd_read_port_transceiver_data(struct be_adapter *adapter, - u8 page_num, u8 *data) + u8 page_num, u32 off, u32 len, u8 *data) { struct be_dma_mem cmd; struct be_mcc_wrb *wrb; @@ -2319,10 +2321,10 @@ req->port = cpu_to_le32(adapter->hba_port_num); req->page_num = cpu_to_le32(page_num); status = be_mcc_notify_wait(adapter); - if (!status) { + if (!status && len > 0) { struct be_cmd_resp_port_type *resp = cmd.va; - memcpy(data, resp->page_data, PAGE_DATA_LEN); + memcpy(data, resp->page_data + off, len); } err: mutex_unlock(&adapter->mcc_lock); @@ -2413,7 +2415,7 @@ int status; status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, - page_data); + 0, PAGE_DATA_LEN, page_data); if (!status) { switch (adapter->phy.interface_type) { case PHY_TYPE_QSFP: @@ -2438,7 +2440,7 @@ int status; status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, - page_data); + 0, PAGE_DATA_LEN, page_data); if (!status) { strlcpy(adapter->phy.vendor_name, page_data + SFP_VENDOR_NAME_OFFSET, SFP_VENDOR_NAME_LEN - 1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/emulex/benet/be_cmds.h +++ linux-azure-5.4.0/drivers/net/ethernet/emulex/benet/be_cmds.h @@ -2427,7 +2427,7 @@ int be_cmd_get_beacon_state(struct be_adapter *adapter, u8 port_num, u32 *state); int be_cmd_read_port_transceiver_data(struct be_adapter *adapter, - u8 page_num, u8 *data); + u8 page_num, u32 off, u32 len, u8 *data); int be_cmd_query_cable_type(struct be_adapter *adapter); int be_cmd_query_sfp_info(struct be_adapter *adapter); int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/emulex/benet/be_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/emulex/benet/be_ethtool.c @@ -1339,7 +1339,7 @@ return -EOPNOTSUPP; status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, - page_data); + 0, PAGE_DATA_LEN, page_data); if (!status) { if (!page_data[SFP_PLUS_SFF_8472_COMP]) { modinfo->type = ETH_MODULE_SFF_8079; @@ -1357,25 +1357,32 @@ { struct be_adapter *adapter = netdev_priv(netdev); int status; + u32 begin, end; if (!check_privilege(adapter, MAX_PRIVILEGES)) return -EOPNOTSUPP; - status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, - data); - if (status) - goto err; - - if (eeprom->offset + eeprom->len > PAGE_DATA_LEN) { - status = be_cmd_read_port_transceiver_data(adapter, - TR_PAGE_A2, - data + - PAGE_DATA_LEN); + begin = eeprom->offset; + end = eeprom->offset + eeprom->len; + + if (begin < PAGE_DATA_LEN) { + status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A0, begin, + min_t(u32, end, PAGE_DATA_LEN) - begin, + data); + if (status) + goto err; + + data += PAGE_DATA_LEN - begin; + begin = PAGE_DATA_LEN; + } + + if (end > PAGE_DATA_LEN) { + status = be_cmd_read_port_transceiver_data(adapter, TR_PAGE_A2, + begin - PAGE_DATA_LEN, + end - begin, data); if (status) goto err; } - if (eeprom->offset) - memcpy(data, data + eeprom->offset, eeprom->len); err: return be_cmd_status(status); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/emulex/benet/be_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/emulex/benet/be_main.c @@ -5631,7 +5631,9 @@ * mcc completions */ if (!netif_running(adapter->netdev)) { + local_bh_disable(); be_process_mcc(adapter); + local_bh_enable(); goto reschedule; } @@ -6030,6 +6032,7 @@ unmap_bars: be_unmap_pci_bars(adapter); free_netdev: + pci_disable_pcie_error_reporting(pdev); free_netdev(netdev); rel_reg: pci_release_regions(pdev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/ezchip/nps_enet.c +++ linux-azure-5.4.0/drivers/net/ethernet/ezchip/nps_enet.c @@ -610,7 +610,7 @@ /* Get IRQ number */ priv->irq = platform_get_irq(pdev, 0); - if (!priv->irq) { + if (priv->irq < 0) { dev_err(dev, "failed to retrieve value from device tree\n"); err = -ENODEV; goto out_netdev; @@ -645,8 +645,8 @@ struct nps_enet_priv *priv = netdev_priv(ndev); unregister_netdev(ndev); - free_netdev(ndev); netif_napi_del(&priv->napi); + free_netdev(ndev); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c @@ -506,11 +506,15 @@ info->phc_index = -1; fman_node = of_get_parent(mac_node); - if (fman_node) + if (fman_node) { ptp_node = of_parse_phandle(fman_node, "ptimer-handle", 0); + of_node_put(fman_node); + } - if (ptp_node) + if (ptp_node) { ptp_dev = of_find_device_by_node(ptp_node); + of_node_put(ptp_node); + } if (ptp_dev) ptp = platform_get_drvdata(ptp_dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/freescale/fman/mac.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fman/mac.c @@ -94,14 +94,17 @@ __func__, ex); } -static void set_fman_mac_params(struct mac_device *mac_dev, - struct fman_mac_params *params) +static int set_fman_mac_params(struct mac_device *mac_dev, + struct fman_mac_params *params) { struct mac_priv_s *priv = mac_dev->priv; params->base_addr = (typeof(params->base_addr)) devm_ioremap(priv->dev, mac_dev->res->start, resource_size(mac_dev->res)); + if (!params->base_addr) + return -ENOMEM; + memcpy(¶ms->addr, mac_dev->addr, sizeof(mac_dev->addr)); params->max_speed = priv->max_speed; params->phy_if = mac_dev->phy_if; @@ -112,6 +115,8 @@ params->event_cb = mac_exception; params->dev_id = mac_dev; params->internal_phy_node = priv->internal_phy_node; + + return 0; } static int tgec_initialization(struct mac_device *mac_dev) @@ -123,7 +128,9 @@ priv = mac_dev->priv; - set_fman_mac_params(mac_dev, ¶ms); + err = set_fman_mac_params(mac_dev, ¶ms); + if (err) + goto _return; mac_dev->fman_mac = tgec_config(¶ms); if (!mac_dev->fman_mac) { @@ -169,7 +176,9 @@ priv = mac_dev->priv; - set_fman_mac_params(mac_dev, ¶ms); + err = set_fman_mac_params(mac_dev, ¶ms); + if (err) + goto _return; mac_dev->fman_mac = dtsec_config(¶ms); if (!mac_dev->fman_mac) { @@ -218,7 +227,9 @@ priv = mac_dev->priv; - set_fman_mac_params(mac_dev, ¶ms); + err = set_fman_mac_params(mac_dev, ¶ms); + if (err) + goto _return; if (priv->max_speed == SPEED_10000) params.phy_if = PHY_INTERFACE_MODE_XGMII; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/freescale/fs_enet/mac-fec.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/fs_enet/mac-fec.c @@ -98,7 +98,7 @@ return -EINVAL; fep->fec.fecp = of_iomap(ofdev->dev.of_node, 0); - if (!fep->fcc.fccp) + if (!fep->fec.fecp) return -EINVAL; return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/freescale/gianfar_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/freescale/gianfar_ethtool.c @@ -1489,6 +1489,7 @@ ptp_node = of_find_compatible_node(NULL, NULL, "fsl,etsec-ptp"); if (ptp_node) { ptp_dev = of_find_device_by_node(ptp_node); + of_node_put(ptp_node); if (ptp_dev) ptp = platform_get_drvdata(ptp_dev); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/google/gve/gve.h +++ linux-azure-5.4.0/drivers/net/ethernet/google/gve/gve.h @@ -391,7 +391,7 @@ gve_num_tx_qpls(priv)); /* we are out of rx qpls */ - if (id == priv->qpl_cfg.qpl_map_size) + if (id == gve_num_tx_qpls(priv) + gve_num_rx_qpls(priv)) return NULL; set_bit(id, priv->qpl_cfg.qpl_id_map); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/hisilicon/hns/hnae.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns/hnae.c @@ -419,8 +419,10 @@ hdev->cls_dev.release = hnae_release; (void)dev_set_name(&hdev->cls_dev, "hnae%d", hdev->id); ret = device_register(&hdev->cls_dev); - if (ret) + if (ret) { + put_device(&hdev->cls_dev); return ret; + } __module_get(THIS_MODULE); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c +++ linux-azure-5.4.0/drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c @@ -398,6 +398,10 @@ return; if (!HNS_DSAF_IS_DEBUG(dsaf_dev)) { + /* DSAF_MAX_PORT_NUM is 6, but DSAF_GE_NUM is 8. + We need check to prevent array overflow */ + if (port >= DSAF_MAX_PORT_NUM) + return; reg_val_1 = 0x1 << port; port_rst_off = dsaf_dev->mac_cb[port]->port_rst_off; /* there is difference between V1 and V2 in register.*/ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/i825xx/82596.c +++ linux-azure-5.4.0/drivers/net/ethernet/i825xx/82596.c @@ -1155,7 +1155,7 @@ err = -ENODEV; goto out; } - memcpy(eth_addr, (void *) 0xfffc1f2c, ETH_ALEN); /* YUCK! Get addr from NOVRAM */ + memcpy(eth_addr, absolute_pointer(0xfffc1f2c), ETH_ALEN); /* YUCK! Get addr from NOVRAM */ dev->base_addr = MVME_I596_BASE; dev->irq = (unsigned) MVME16x_IRQ_I596; goto found; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/i825xx/sni_82596.c +++ linux-azure-5.4.0/drivers/net/ethernet/i825xx/sni_82596.c @@ -123,9 +123,10 @@ netdevice->dev_addr[5] = readb(eth_addr + 0x06); iounmap(eth_addr); - if (!netdevice->irq) { + if (netdevice->irq < 0) { printk(KERN_ERR "%s: IRQ not found for i82596 at 0x%lx\n", __FILE__, netdevice->base_addr); + retval = netdevice->irq; goto probe_failed; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/ibm/ehea/ehea_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/ibm/ehea/ehea_main.c @@ -2617,10 +2617,8 @@ u16 dummy16 = 0; cb0 = (void *)get_zeroed_page(GFP_KERNEL); - if (!cb0) { - ret = -ENOMEM; - goto out; - } + if (!cb0) + return -ENOMEM; for (i = 0; i < (port->num_def_qps); i++) { struct ehea_port_res *pr = &port->port_res[i]; @@ -2640,6 +2638,7 @@ cb0); if (hret != H_SUCCESS) { netdev_err(dev, "query_ehea_qp failed (1)\n"); + ret = -EFAULT; goto out; } @@ -2652,6 +2651,7 @@ &dummy64, &dummy16, &dummy16); if (hret != H_SUCCESS) { netdev_err(dev, "modify_ehea_qp failed (1)\n"); + ret = -EFAULT; goto out; } @@ -2660,6 +2660,7 @@ cb0); if (hret != H_SUCCESS) { netdev_err(dev, "query_ehea_qp failed (2)\n"); + ret = -EFAULT; goto out; } @@ -2896,6 +2897,7 @@ ret = of_device_register(&port->ofdev); if (ret) { pr_err("failed to register device. ret=%d\n", ret); + put_device(&port->ofdev.dev); goto out; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/e100.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/e100.c @@ -1398,7 +1398,7 @@ u8 phy_type; int without_mii; - phy_type = (nic->eeprom[eeprom_phy_iface] >> 8) & 0x0f; + phy_type = (le16_to_cpu(nic->eeprom[eeprom_phy_iface]) >> 8) & 0x0f; switch (phy_type) { case NoSuchPhy: /* Non-MII PHY; UNTESTED! */ @@ -1518,7 +1518,7 @@ mdio_write(netdev, nic->mii.phy_id, MII_BMCR, bmcr); } else if ((nic->mac >= mac_82550_D102) || ((nic->flags & ich) && (mdio_read(netdev, nic->mii.phy_id, MII_TPISTATUS) & 0x8000) && - (nic->eeprom[eeprom_cnfg_mdix] & eeprom_mdix_enabled))) { + (le16_to_cpu(nic->eeprom[eeprom_cnfg_mdix]) & eeprom_mdix_enabled))) { /* enable/disable MDI/MDI-X auto-switching. */ mdio_write(netdev, nic->mii.phy_id, MII_NCONFIG, nic->mii.force_media ? 0 : NCONFIG_AUTO_SWITCH); @@ -2266,9 +2266,9 @@ { /* ASF can be enabled from eeprom */ return (nic->pdev->device >= 0x1050) && (nic->pdev->device <= 0x1057) && - (nic->eeprom[eeprom_config_asf] & eeprom_asf) && - !(nic->eeprom[eeprom_config_asf] & eeprom_gcl) && - ((nic->eeprom[eeprom_smbus_addr] & 0xFF) != 0xFE); + (le16_to_cpu(nic->eeprom[eeprom_config_asf]) & eeprom_asf) && + !(le16_to_cpu(nic->eeprom[eeprom_config_asf]) & eeprom_gcl) && + ((le16_to_cpu(nic->eeprom[eeprom_smbus_addr]) & 0xFF) != 0xFE); } static int e100_up(struct nic *nic) @@ -2435,11 +2435,15 @@ sizeof(info->bus_info)); } -#define E100_PHY_REGS 0x1C +#define E100_PHY_REGS 0x1D static int e100_get_regs_len(struct net_device *netdev) { struct nic *nic = netdev_priv(netdev); - return 1 + E100_PHY_REGS + sizeof(nic->mem->dump_buf); + + /* We know the number of registers, and the size of the dump buffer. + * Calculate the total size in bytes. + */ + return (1 + E100_PHY_REGS) * sizeof(u32) + sizeof(nic->mem->dump_buf); } static void e100_get_regs(struct net_device *netdev, @@ -2453,14 +2457,18 @@ buff[0] = ioread8(&nic->csr->scb.cmd_hi) << 24 | ioread8(&nic->csr->scb.cmd_lo) << 16 | ioread16(&nic->csr->scb.status); - for (i = E100_PHY_REGS; i >= 0; i--) - buff[1 + E100_PHY_REGS - i] = - mdio_read(netdev, nic->mii.phy_id, i); + for (i = 0; i < E100_PHY_REGS; i++) + /* Note that we read the registers in reverse order. This + * ordering is the ABI apparently used by ethtool and other + * applications. + */ + buff[1 + i] = mdio_read(netdev, nic->mii.phy_id, + E100_PHY_REGS - 1 - i); memset(nic->mem->dump_buf, 0, sizeof(nic->mem->dump_buf)); e100_exec_cb(nic, NULL, e100_dump); msleep(10); - memcpy(&buff[2 + E100_PHY_REGS], nic->mem->dump_buf, - sizeof(nic->mem->dump_buf)); + memcpy(&buff[1 + E100_PHY_REGS], nic->mem->dump_buf, + sizeof(nic->mem->dump_buf)); } static void e100_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) @@ -2924,7 +2932,7 @@ /* Wol magic packet can be enabled from eeprom */ if ((nic->mac >= mac_82558_D101_A4) && - (nic->eeprom[eeprom_id] & eeprom_id_wol)) { + (le16_to_cpu(nic->eeprom[eeprom_id]) & eeprom_id_wol)) { nic->flags |= wol_magic; device_set_wakeup_enable(&pdev->dev, true); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/e1000e/ich8lan.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/e1000e/ich8lan.h @@ -274,8 +274,11 @@ /* Latency Tolerance Reporting */ #define E1000_LTRV 0x000F8 +#define E1000_LTRV_VALUE_MASK 0x000003FF #define E1000_LTRV_SCALE_MAX 5 #define E1000_LTRV_SCALE_FACTOR 5 +#define E1000_LTRV_SCALE_SHIFT 10 +#define E1000_LTRV_SCALE_MASK 0x00001C00 #define E1000_LTRV_REQ_SHIFT 15 #define E1000_LTRV_NOSNOOP_SHIFT 16 #define E1000_LTRV_SEND (1 << 30) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/fm10k/fm10k_pci.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/fm10k/fm10k_pci.c @@ -2230,6 +2230,7 @@ err_ioremap: free_netdev(netdev); err_alloc_netdev: + pci_disable_pcie_error_reporting(pdev); pci_release_mem_regions(pdev); err_pci_reg: err_dma: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/i40e/i40e_debugfs.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_debugfs.c @@ -234,7 +234,7 @@ (unsigned long int)vsi->net_stats_offsets.rx_compressed, (unsigned long int)vsi->net_stats_offsets.tx_compressed); dev_info(&pf->pdev->dev, - " tx_restart = %d, tx_busy = %d, rx_buf_failed = %d, rx_page_failed = %d\n", + " tx_restart = %llu, tx_busy = %llu, rx_buf_failed = %llu, rx_page_failed = %llu\n", vsi->tx_restart, vsi->tx_busy, vsi->rx_buf_failed, vsi->rx_page_failed); rcu_read_lock(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/i40e/i40e_txrx.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/i40e/i40e_txrx.h @@ -481,6 +481,8 @@ bool i40e_alloc_rx_buffers(struct i40e_ring *rxr, u16 cleaned_count); netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev); +u16 i40e_lan_select_queue(struct net_device *netdev, struct sk_buff *skb, + struct net_device *sb_dev); void i40e_clean_tx_ring(struct i40e_ring *tx_ring); void i40e_clean_rx_ring(struct i40e_ring *rx_ring); int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/iavf/iavf_adminq.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_adminq.c @@ -324,6 +324,7 @@ static enum iavf_status iavf_init_asq(struct iavf_hw *hw) { enum iavf_status ret_code = 0; + int i; if (hw->aq.asq.count > 0) { /* queue already initialized */ @@ -354,12 +355,17 @@ /* initialize base registers */ ret_code = iavf_config_asq_regs(hw); if (ret_code) - goto init_adminq_free_rings; + goto init_free_asq_bufs; /* success! */ hw->aq.asq.count = hw->aq.num_asq_entries; goto init_adminq_exit; +init_free_asq_bufs: + for (i = 0; i < hw->aq.num_asq_entries; i++) + iavf_free_dma_mem(hw, &hw->aq.asq.r.asq_bi[i]); + iavf_free_virt_mem(hw, &hw->aq.asq.dma_head); + init_adminq_free_rings: iavf_free_adminq_asq(hw); @@ -383,6 +389,7 @@ static enum iavf_status iavf_init_arq(struct iavf_hw *hw) { enum iavf_status ret_code = 0; + int i; if (hw->aq.arq.count > 0) { /* queue already initialized */ @@ -413,12 +420,16 @@ /* initialize base registers */ ret_code = iavf_config_arq_regs(hw); if (ret_code) - goto init_adminq_free_rings; + goto init_free_arq_bufs; /* success! */ hw->aq.arq.count = hw->aq.num_arq_entries; goto init_adminq_exit; +init_free_arq_bufs: + for (i = 0; i < hw->aq.num_arq_entries; i++) + iavf_free_dma_mem(hw, &hw->aq.arq.r.arq_bi[i]); + iavf_free_virt_mem(hw, &hw->aq.arq.dma_head); init_adminq_free_rings: iavf_free_adminq_arq(hw); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/iavf/iavf_txrx.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/iavf/iavf_txrx.c @@ -114,8 +114,11 @@ { u32 head, tail; + /* underlying hardware might not allow access and/or always return + * 0 for the head/tail registers so just use the cached values + */ head = ring->next_to_clean; - tail = readl(ring->tail); + tail = ring->next_to_use; if (head != tail) return (head < tail) ? @@ -1263,11 +1266,10 @@ { struct iavf_rx_buffer *rx_buffer; - if (!size) - return NULL; - rx_buffer = &rx_ring->rx_bi[rx_ring->next_to_clean]; prefetchw(rx_buffer->page); + if (!size) + return rx_buffer; /* we are reusing so sync this buffer for CPU use */ dma_sync_single_range_for_cpu(rx_ring->dev, @@ -1372,7 +1374,7 @@ #endif struct sk_buff *skb; - if (!rx_buffer) + if (!rx_buffer || !size) return NULL; /* prefetch first cache line of first page */ va = page_address(rx_buffer->page) + rx_buffer->page_offset; @@ -1532,7 +1534,7 @@ /* exit if we failed to retrieve a buffer */ if (!skb) { rx_ring->rx_stats.alloc_buff_failed++; - if (rx_buffer) + if (rx_buffer && size) rx_buffer->pagecnt_bias++; break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ice/ice_txrx.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_txrx.c @@ -2109,6 +2109,7 @@ struct ice_tx_offload_params offload = { 0 }; struct ice_vsi *vsi = tx_ring->vsi; struct ice_tx_buf *first; + struct ethhdr *eth; unsigned int count; int tso, csum; @@ -2156,7 +2157,9 @@ goto out_drop; /* allow CONTROL frames egress from main VSI if FW LLDP disabled */ - if (unlikely(skb->priority == TC_PRIO_CONTROL && + eth = (struct ethhdr *)skb_mac_header(skb); + if (unlikely((skb->priority == TC_PRIO_CONTROL || + eth->h_proto == htons(ETH_P_LLDP)) && vsi->type == ICE_VSI_PF && vsi->port_info->is_sw_lldp)) offload.cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX | only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ice/ice_type.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ice/ice_type.h @@ -48,7 +48,7 @@ /* FW update timeout definitions are in milliseconds */ #define ICE_NVM_TIMEOUT 180000 #define ICE_CHANGE_LOCK_TIMEOUT 1000 -#define ICE_GLOBAL_CFG_LOCK_TIMEOUT 3000 +#define ICE_GLOBAL_CFG_LOCK_TIMEOUT 5000 enum ice_aq_res_access_type { ICE_RES_READ = 1, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/igb/igb.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igb/igb.h @@ -594,6 +594,8 @@ struct igb_mac_addr *mac_table; struct vf_mac_filter vf_macs; struct vf_mac_filter *vf_mac_list; + /* lock for VF resources */ + spinlock_t vfs_lock; }; /* flags controlling PTP/1588 function */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/igbvf/netdev.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igbvf/netdev.c @@ -83,14 +83,14 @@ static void igbvf_receive_skb(struct igbvf_adapter *adapter, struct net_device *netdev, struct sk_buff *skb, - u32 status, u16 vlan) + u32 status, __le16 vlan) { u16 vid; if (status & E1000_RXD_STAT_VP) { if ((adapter->flags & IGBVF_FLAG_RX_LB_VLAN_BSWAP) && (status & E1000_RXDEXT_STATERR_LB)) - vid = be16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK; + vid = be16_to_cpu((__force __be16)vlan) & E1000_RXD_SPC_VLAN_MASK; else vid = le16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK; if (test_bit(vid, adapter->active_vlans)) @@ -2887,6 +2887,7 @@ return 0; err_hw_init: + netif_napi_del(&adapter->rx_ring->napi); kfree(adapter->tx_ring); kfree(adapter->rx_ring); err_sw_init: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/igc/igc.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc.h @@ -504,7 +504,7 @@ if (hw->phy.ops.read_reg) return hw->phy.ops.read_reg(hw, offset, data); - return 0; + return -EOPNOTSUPP; } /* forward declaration */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/igc/igc_base.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/igc/igc_base.c @@ -187,15 +187,7 @@ igc_check_for_copper_link(hw); - /* Verify phy id and set remaining function pointers */ - switch (phy->id) { - case I225_I_PHY_ID: - phy->type = igc_phy_i225; - break; - default: - ret_val = -IGC_ERR_PHY; - goto out; - } + phy->type = igc_phy_i225; out: return ret_val; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe.h @@ -177,11 +177,14 @@ u16 pf_vlan; /* When set, guest VLAN config not allowed. */ u16 pf_qos; u16 tx_rate; + int link_enable; + int link_state; u8 spoofchk_enabled; bool rss_query_enabled; u8 trusted; int xcast_mode; unsigned int vf_api; + u8 primary_abort_count; }; enum ixgbevf_xcast_modes { @@ -553,6 +556,8 @@ #define IXGBE_TRY_LINK_TIMEOUT (4 * HZ) #define IXGBE_SFP_POLL_JIFFIES (2 * HZ) /* SFP poll every 2 seconds */ +#define IXGBE_PRIMARY_ABORT_LIMIT 5 + /* board specific private data structure */ struct ixgbe_adapter { unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)]; @@ -614,6 +619,7 @@ #define IXGBE_FLAG2_RX_LEGACY BIT(16) #define IXGBE_FLAG2_IPSEC_ENABLED BIT(17) #define IXGBE_FLAG2_VF_IPSEC_ENABLED BIT(18) +#define IXGBE_FLAG2_AUTO_DISABLE_VF BIT(19) /* Tx fast path data */ int num_tx_queues; @@ -773,6 +779,7 @@ #ifdef CONFIG_IXGBE_IPSEC struct ixgbe_ipsec *ipsec; #endif /* CONFIG_IXGBE_IPSEC */ + spinlock_t vfs_lock; }; static inline u8 ixgbe_max_rss_indices(struct ixgbe_adapter *adapter) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c @@ -138,6 +138,8 @@ "legacy-rx", #define IXGBE_PRIV_FLAGS_VF_IPSEC_EN BIT(1) "vf-ipsec", +#define IXGBE_PRIV_FLAGS_AUTO_DISABLE_VF BIT(2) + "mdd-disable-vf", }; #define IXGBE_PRIV_FLAGS_STR_LEN ARRAY_SIZE(ixgbe_priv_flags_strings) @@ -3416,6 +3418,9 @@ if (adapter->flags2 & IXGBE_FLAG2_VF_IPSEC_ENABLED) priv_flags |= IXGBE_PRIV_FLAGS_VF_IPSEC_EN; + if (adapter->flags2 & IXGBE_FLAG2_AUTO_DISABLE_VF) + priv_flags |= IXGBE_PRIV_FLAGS_AUTO_DISABLE_VF; + return priv_flags; } @@ -3423,6 +3428,7 @@ { struct ixgbe_adapter *adapter = netdev_priv(netdev); unsigned int flags2 = adapter->flags2; + unsigned int i; flags2 &= ~IXGBE_FLAG2_RX_LEGACY; if (priv_flags & IXGBE_PRIV_FLAGS_LEGACY_RX) @@ -3432,6 +3438,21 @@ if (priv_flags & IXGBE_PRIV_FLAGS_VF_IPSEC_EN) flags2 |= IXGBE_FLAG2_VF_IPSEC_ENABLED; + flags2 &= ~IXGBE_FLAG2_AUTO_DISABLE_VF; + if (priv_flags & IXGBE_PRIV_FLAGS_AUTO_DISABLE_VF) { + if (adapter->hw.mac.type == ixgbe_mac_82599EB) { + /* Reset primary abort counter */ + for (i = 0; i < adapter->num_vfs; i++) + adapter->vfinfo[i].primary_abort_count = 0; + + flags2 |= IXGBE_FLAG2_AUTO_DISABLE_VF; + } else { + e_info(probe, + "Cannot set private flags: Operation not supported\n"); + return -EOPNOTSUPP; + } + } + if (flags2 != adapter->flags2) { adapter->flags2 = flags2; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h @@ -85,6 +85,8 @@ #define IXGBE_VF_IPSEC_ADD 0x0d #define IXGBE_VF_IPSEC_DEL 0x0e +#define IXGBE_VF_GET_LINK_STATE 0x10 /* get vf link state */ + /* length of permanent address message returned from PF */ #define IXGBE_VF_PERMADDR_MSG_LEN 4 /* word in permanent address message with the current multicast type */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c @@ -1211,7 +1211,6 @@ struct cyclecounter cc; unsigned long flags; u32 incval = 0; - u32 tsauxc = 0; u32 fuse0 = 0; /* For some of the boards below this mask is technically incorrect. @@ -1246,18 +1245,6 @@ case ixgbe_mac_x550em_a: case ixgbe_mac_X550: cc.read = ixgbe_ptp_read_X550; - - /* enable SYSTIME counter */ - IXGBE_WRITE_REG(hw, IXGBE_SYSTIMR, 0); - IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0); - IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0); - tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC); - IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, - tsauxc & ~IXGBE_TSAUXC_DISABLE_SYSTIME); - IXGBE_WRITE_REG(hw, IXGBE_TSIM, IXGBE_TSIM_TXTS); - IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_TIMESYNC); - - IXGBE_WRITE_FLUSH(hw); break; case ixgbe_mac_X540: cc.read = ixgbe_ptp_read_82599; @@ -1290,6 +1277,50 @@ } /** + * ixgbe_ptp_init_systime - Initialize SYSTIME registers + * @adapter: the ixgbe private board structure + * + * Initialize and start the SYSTIME registers. + */ +static void ixgbe_ptp_init_systime(struct ixgbe_adapter *adapter) +{ + struct ixgbe_hw *hw = &adapter->hw; + u32 tsauxc; + + switch (hw->mac.type) { + case ixgbe_mac_X550EM_x: + case ixgbe_mac_x550em_a: + case ixgbe_mac_X550: + tsauxc = IXGBE_READ_REG(hw, IXGBE_TSAUXC); + + /* Reset SYSTIME registers to 0 */ + IXGBE_WRITE_REG(hw, IXGBE_SYSTIMR, 0); + IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0); + IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0); + + /* Reset interrupt settings */ + IXGBE_WRITE_REG(hw, IXGBE_TSIM, IXGBE_TSIM_TXTS); + IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_TIMESYNC); + + /* Activate the SYSTIME counter */ + IXGBE_WRITE_REG(hw, IXGBE_TSAUXC, + tsauxc & ~IXGBE_TSAUXC_DISABLE_SYSTIME); + break; + case ixgbe_mac_X540: + case ixgbe_mac_82599EB: + /* Reset SYSTIME registers to 0 */ + IXGBE_WRITE_REG(hw, IXGBE_SYSTIML, 0); + IXGBE_WRITE_REG(hw, IXGBE_SYSTIMH, 0); + break; + default: + /* Other devices aren't supported */ + return; + }; + + IXGBE_WRITE_FLUSH(hw); +} + +/** * ixgbe_ptp_reset * @adapter: the ixgbe private board structure * @@ -1315,6 +1346,8 @@ ixgbe_ptp_start_cyclecounter(adapter); + ixgbe_ptp_init_systime(adapter); + spin_lock_irqsave(&adapter->tmreg_lock, flags); timecounter_init(&adapter->hw_tc, &adapter->hw_cc, ktime_to_ns(ktime_get_real())); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.h @@ -17,8 +17,8 @@ #endif void ixgbe_msg_task(struct ixgbe_adapter *adapter); int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask); -void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter); void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter); +void ixgbe_set_all_vfs(struct ixgbe_adapter *adapter); int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int queue, u8 *mac); int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int queue, u16 vlan, u8 qos, __be16 vlan_proto); @@ -31,7 +31,9 @@ int ixgbe_ndo_set_vf_trust(struct net_device *netdev, int vf, bool setting); int ixgbe_ndo_get_vf_config(struct net_device *netdev, int vf, struct ifla_vf_info *ivi); +int ixgbe_ndo_set_vf_link_state(struct net_device *netdev, int vf, int state); void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter); +void ixgbe_set_vf_link_state(struct ixgbe_adapter *adapter, int vf, int state); int ixgbe_disable_sriov(struct ixgbe_adapter *adapter); #ifdef CONFIG_PCI_IOV void ixgbe_enable_sriov(struct ixgbe_adapter *adapter, unsigned int max_vfs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c @@ -3405,6 +3405,9 @@ /* flush pending Tx transactions */ ixgbe_clear_tx_pending(hw); + /* set MDIO speed before talking to the PHY in case it's the 1st time */ + ixgbe_set_mdio_speed(hw); + /* PHY ops must be identified and initialized prior to reset */ status = hw->phy.ops.init(hw); if (status == IXGBE_ERR_SFP_NOT_SUPPORTED || only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbevf/ixgbevf.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/ixgbevf.h @@ -387,6 +387,8 @@ u32 *rss_key; u8 rss_indir_tbl[IXGBEVF_X550_VFRETA_SIZE]; u32 flags; + bool link_state; + #define IXGBEVF_FLAGS_LEGACY_RX BIT(1) #ifdef CONFIG_XFRM only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbevf/mbx.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/mbx.h @@ -51,6 +51,16 @@ /* bits 23:16 are used for exra info for certain messages */ #define IXGBE_VT_MSGINFO_MASK (0xFF << IXGBE_VT_MSGINFO_SHIFT) +/* IXGBE_VT_MSGTYPE_NACK and IXGBE_VT_MSGTYPE_ACK were renamed to + * IXGBE_VT_MSGTYPE_FAILURE and IXGBE_VT_MSGTYPE_SUCCESS respectively + * with commit 0edbecd57057 upstream. + * + * One of the backported fixes use them with their new names. These + * aliases enable them to work with both older and newer names. + */ +#define IXGBE_VT_MSGTYPE_SUCCESS IXGBE_VT_MSGTYPE_ACK +#define IXGBE_VT_MSGTYPE_FAILURE IXGBE_VT_MSGTYPE_NACK + /* definitions to support mailbox API version negotiation */ /* each element denotes a version of the API; existing numbers may not @@ -97,6 +107,8 @@ #define IXGBE_VF_IPSEC_ADD 0x0d #define IXGBE_VF_IPSEC_DEL 0x0e +#define IXGBE_VF_GET_LINK_STATE 0x10 /* get vf link state */ + /* length of permanent address message returned from PF */ #define IXGBE_VF_PERMADDR_MSG_LEN 4 /* word in permanent address message with the current multicast type */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbevf/vf.c +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/vf.c @@ -574,6 +574,46 @@ } /** + * ixgbevf_get_link_state_vf - Get VF link state from PF + * @hw: pointer to the HW structure + * @link_state: link state storage + * + * Returns state of the operation error or success. + */ +static s32 ixgbevf_get_link_state_vf(struct ixgbe_hw *hw, bool *link_state) +{ + u32 msgbuf[2]; + s32 ret_val; + s32 err; + + msgbuf[0] = IXGBE_VF_GET_LINK_STATE; + msgbuf[1] = 0x0; + + err = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 2); + + if (err || (msgbuf[0] & IXGBE_VT_MSGTYPE_FAILURE)) { + ret_val = IXGBE_ERR_MBX; + } else { + ret_val = 0; + *link_state = msgbuf[1]; + } + + return ret_val; +} + +/** + * ixgbevf_hv_get_link_state_vf - * Hyper-V variant - just a stub. + * @hw: unused + * @link_state: unused + * + * Hyper-V variant; there is no mailbox communication. + */ +static s32 ixgbevf_hv_get_link_state_vf(struct ixgbe_hw *hw, bool *link_state) +{ + return -EOPNOTSUPP; +} + +/** * ixgbevf_set_vfta_vf - Set/Unset VLAN filter table address * @hw: pointer to the HW structure * @vlan: 12 bit VLAN ID @@ -950,6 +990,7 @@ .set_rar = ixgbevf_set_rar_vf, .update_mc_addr_list = ixgbevf_update_mc_addr_list_vf, .update_xcast_mode = ixgbevf_update_xcast_mode, + .get_link_state = ixgbevf_get_link_state_vf, .set_uc_addr = ixgbevf_set_uc_addr_vf, .set_vfta = ixgbevf_set_vfta_vf, .set_rlpml = ixgbevf_set_rlpml_vf, @@ -967,6 +1008,7 @@ .set_rar = ixgbevf_hv_set_rar_vf, .update_mc_addr_list = ixgbevf_hv_update_mc_addr_list_vf, .update_xcast_mode = ixgbevf_hv_update_xcast_mode, + .get_link_state = ixgbevf_hv_get_link_state_vf, .set_uc_addr = ixgbevf_hv_set_uc_addr_vf, .set_vfta = ixgbevf_hv_set_vfta_vf, .set_rlpml = ixgbevf_hv_set_rlpml_vf, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/intel/ixgbevf/vf.h +++ linux-azure-5.4.0/drivers/net/ethernet/intel/ixgbevf/vf.h @@ -42,6 +42,7 @@ s32 (*init_rx_addrs)(struct ixgbe_hw *); s32 (*update_mc_addr_list)(struct ixgbe_hw *, struct net_device *); s32 (*update_xcast_mode)(struct ixgbe_hw *, int); + s32 (*get_link_state)(struct ixgbe_hw *hw, bool *link_state); s32 (*enable_mc)(struct ixgbe_hw *); s32 (*disable_mc)(struct ixgbe_hw *); s32 (*clear_vfta)(struct ixgbe_hw *); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/lantiq_etop.c +++ linux-azure-5.4.0/drivers/net/ethernet/lantiq_etop.c @@ -466,7 +466,6 @@ len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len; if ((desc->ctl & (LTQ_DMA_OWN | LTQ_DMA_C)) || ch->skb[ch->dma.desc]) { - dev_kfree_skb_any(skb); netdev_err(dev, "tx ring full\n"); netif_tx_stop_queue(txq); return NETDEV_TX_BUSY; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/marvell/mvpp2/mvpp2.h +++ linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2.h @@ -1202,5 +1202,6 @@ void mvpp2_dbgfs_init(struct mvpp2 *priv, const char *name); void mvpp2_dbgfs_cleanup(struct mvpp2 *priv); +void mvpp2_dbgfs_exit(void); #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c +++ linux-azure-5.4.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c @@ -691,6 +691,13 @@ return 0; } +static struct dentry *mvpp2_root; + +void mvpp2_dbgfs_exit(void) +{ + debugfs_remove(mvpp2_root); +} + void mvpp2_dbgfs_cleanup(struct mvpp2 *priv) { debugfs_remove_recursive(priv->dbgfs_dir); @@ -700,10 +707,9 @@ void mvpp2_dbgfs_init(struct mvpp2 *priv, const char *name) { - struct dentry *mvpp2_dir, *mvpp2_root; + struct dentry *mvpp2_dir; int ret, i; - mvpp2_root = debugfs_lookup(MVPP2_DRIVER_NAME, NULL); if (!mvpp2_root) mvpp2_root = debugfs_create_dir(MVPP2_DRIVER_NAME, NULL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mediatek/mtk_sgmii.c +++ linux-azure-5.4.0/drivers/net/ethernet/mediatek/mtk_sgmii.c @@ -26,6 +26,7 @@ break; ss->regmap[i] = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(ss->regmap[i])) return PTR_ERR(ss->regmap[i]); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c @@ -117,7 +117,6 @@ struct xfrm_replay_state_esn *replay_esn; u32 seq_bottom; u8 overlap; - u32 *esn; if (!(sa_entry->x->props.flags & XFRM_STATE_ESN)) { sa_entry->esn_state.trigger = 0; @@ -130,11 +129,9 @@ sa_entry->esn_state.esn = xfrm_replay_seqhi(sa_entry->x, htonl(seq_bottom)); - esn = &sa_entry->esn_state.esn; sa_entry->esn_state.trigger = 1; if (unlikely(overlap && seq_bottom < MLX5E_IPSEC_ESN_SCOPE_MID)) { - ++(*esn); sa_entry->esn_state.overlap = 0; return true; } else if (unlikely(!overlap && @@ -515,9 +512,6 @@ struct mlx5_core_dev *mdev = priv->mdev; struct net_device *netdev = priv->netdev; - if (!priv->ipsec) - return; - if (!(mlx5_accel_ipsec_device_caps(mdev) & MLX5_ACCEL_IPSEC_CAP_ESP) || !MLX5_CAP_ETH(mdev, swp)) { mlx5_core_dbg(mdev, "mlx5e: ESP and SWP offload not supported\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mellanox/mlx5/core/transobj.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlx5/core/transobj.c @@ -457,6 +457,15 @@ return err; } +static void mlx5_hairpin_unpair_peer_sq(struct mlx5_hairpin *hp) +{ + int i; + + for (i = 0; i < hp->num_channels; i++) + mlx5_hairpin_modify_sq(hp->peer_mdev, hp->sqn[i], MLX5_SQC_STATE_RDY, + MLX5_SQC_STATE_RST, 0, 0); +} + static void mlx5_hairpin_unpair_queues(struct mlx5_hairpin *hp) { int i; @@ -465,13 +474,9 @@ for (i = 0; i < hp->num_channels; i++) mlx5_hairpin_modify_rq(hp->func_mdev, hp->rqn[i], MLX5_RQC_STATE_RDY, MLX5_RQC_STATE_RST, 0, 0); - /* unset peer SQs */ - if (hp->peer_gone) - return; - for (i = 0; i < hp->num_channels; i++) - mlx5_hairpin_modify_sq(hp->peer_mdev, hp->sqn[i], MLX5_SQC_STATE_RDY, - MLX5_SQC_STATE_RST, 0, 0); + if (!hp->peer_gone) + mlx5_hairpin_unpair_peer_sq(hp); } struct mlx5_hairpin * @@ -518,3 +523,16 @@ mlx5_hairpin_destroy_queues(hp); kfree(hp); } + +void mlx5_core_hairpin_clear_dead_peer(struct mlx5_hairpin *hp) +{ + int i; + + mlx5_hairpin_unpair_peer_sq(hp); + + /* destroy peer SQ */ + for (i = 0; i < hp->num_channels; i++) + mlx5_core_destroy_sq(hp->peer_mdev, hp->sqn[i]); + + hp->peer_gone = true; +} only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mellanox/mlxsw/i2c.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/i2c.c @@ -649,6 +649,7 @@ return 0; errout: + mutex_destroy(&mlxsw_i2c->cmd.lock); i2c_set_clientdata(client, NULL); return err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.h +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.h @@ -7,8 +7,8 @@ #include "spectrum.h" enum mlxsw_sp_counter_sub_pool_id { - MLXSW_SP_COUNTER_SUB_POOL_FLOW, MLXSW_SP_COUNTER_SUB_POOL_RIF, + MLXSW_SP_COUNTER_SUB_POOL_FLOW, }; int mlxsw_sp_counter_alloc(struct mlxsw_sp *mlxsw_sp, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.c +++ linux-azure-5.4.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.c @@ -227,8 +227,6 @@ static int mlxsw_sp_dcbnl_app_validate(struct net_device *dev, struct dcb_app *app) { - int prio; - if (app->priority >= IEEE_8021QAZ_MAX_TCS) { netdev_err(dev, "APP entry with priority value %u is invalid\n", app->priority); @@ -242,17 +240,6 @@ app->protocol); return -EINVAL; } - - /* Warn about any DSCP APP entries with the same PID. */ - prio = fls(dcb_ieee_getapp_mask(dev, app)); - if (prio--) { - if (prio < app->priority) - netdev_warn(dev, "Choosing priority %d for DSCP %d in favor of previously-active value of %d\n", - app->priority, app->protocol, prio); - else if (prio > app->priority) - netdev_warn(dev, "Ignoring new priority %d for DSCP %d in favor of current value of %d\n", - app->priority, app->protocol, prio); - } break; case IEEE_8021QAZ_APP_SEL_ETHERTYPE: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/micrel/ks8842.c +++ linux-azure-5.4.0/drivers/net/ethernet/micrel/ks8842.c @@ -1136,6 +1136,10 @@ unsigned i; iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!iomem) { + dev_err(&pdev->dev, "Invalid resource\n"); + return -EINVAL; + } if (!request_mem_region(iomem->start, resource_size(iomem), DRV_NAME)) goto err_mem_region; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/microchip/encx24j600-regmap.c +++ linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600-regmap.c @@ -502,13 +502,19 @@ .reg_read = regmap_encx24j600_phy_reg_read, }; -void devm_regmap_init_encx24j600(struct device *dev, - struct encx24j600_context *ctx) +int devm_regmap_init_encx24j600(struct device *dev, + struct encx24j600_context *ctx) { mutex_init(&ctx->mutex); regcfg.lock_arg = ctx; ctx->regmap = devm_regmap_init(dev, ®map_encx24j600, ctx, ®cfg); + if (IS_ERR(ctx->regmap)) + return PTR_ERR(ctx->regmap); ctx->phymap = devm_regmap_init(dev, &phymap_encx24j600, ctx, &phycfg); + if (IS_ERR(ctx->phymap)) + return PTR_ERR(ctx->phymap); + + return 0; } EXPORT_SYMBOL_GPL(devm_regmap_init_encx24j600); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/microchip/encx24j600_hw.h +++ linux-azure-5.4.0/drivers/net/ethernet/microchip/encx24j600_hw.h @@ -15,8 +15,8 @@ int bank; }; -void devm_regmap_init_encx24j600(struct device *dev, - struct encx24j600_context *ctx); +int devm_regmap_init_encx24j600(struct device *dev, + struct encx24j600_context *ctx); /* Single-byte instructions */ #define BANK_SELECT(bank) (0xC0 | ((bank & (BANK_MASK >> BANK_SHIFT)) << 1)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/myricom/myri10ge/myri10ge.c +++ linux-azure-5.4.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c @@ -3849,6 +3849,7 @@ dev_err(&pdev->dev, "invalid sram_size %dB or board span %ldB\n", mgp->sram_size, mgp->board_span); + status = -EINVAL; goto abort_with_ioremap; } memcpy_fromio(mgp->eeprom_strings, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/natsemi/natsemi.c +++ linux-azure-5.4.0/drivers/net/ethernet/natsemi/natsemi.c @@ -819,7 +819,7 @@ printk(version); #endif - i = pci_enable_device(pdev); + i = pcim_enable_device(pdev); if (i) return i; /* natsemi has a non-standard PM control register @@ -852,7 +852,7 @@ ioaddr = ioremap(iostart, iosize); if (!ioaddr) { i = -ENOMEM; - goto err_ioremap; + goto err_pci_request_regions; } /* Work around the dropped serial bit. */ @@ -974,9 +974,6 @@ err_register_netdev: iounmap(ioaddr); - err_ioremap: - pci_release_regions(pdev); - err_pci_request_regions: free_netdev(dev); return i; @@ -3242,7 +3239,6 @@ NATSEMI_REMOVE_FILE(pdev, dspcfg_workaround); unregister_netdev (dev); - pci_release_regions (pdev); iounmap(ioaddr); free_netdev (dev); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/neterion/s2io.c +++ linux-azure-5.4.0/drivers/net/ethernet/neterion/s2io.c @@ -8565,7 +8565,7 @@ return; } - if (s2io_set_mac_addr(netdev, netdev->dev_addr) == FAILURE) { + if (do_s2io_prog_unicast(netdev, netdev->dev_addr) == FAILURE) { s2io_card_down(sp); pr_err("Can't restore mac addr after reset.\n"); return; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/bpf/main.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/bpf/main.c @@ -182,15 +182,21 @@ nfp_bpf_check_mtu(struct nfp_app *app, struct net_device *netdev, int new_mtu) { struct nfp_net *nn = netdev_priv(netdev); - unsigned int max_mtu; + struct nfp_bpf_vnic *bv; + struct bpf_prog *prog; if (~nn->dp.ctrl & NFP_NET_CFG_CTRL_BPF) return 0; - max_mtu = nn_readb(nn, NFP_NET_CFG_BPF_INL_MTU) * 64 - 32; - if (new_mtu > max_mtu) { - nn_info(nn, "BPF offload active, MTU over %u not supported\n", - max_mtu); + if (nn->xdp_hw.prog) { + prog = nn->xdp_hw.prog; + } else { + bv = nn->app_priv; + prog = bv->tc_prog; + } + + if (nfp_bpf_offload_check_mtu(nn, prog, new_mtu)) { + nn_info(nn, "BPF offload active, potential packet access beyond hardware packet boundary"); return -EBUSY; } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/bpf/main.h +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/bpf/main.h @@ -560,6 +560,8 @@ void nfp_bpf_jit_prepare(struct nfp_prog *nfp_prog); int nfp_bpf_jit(struct nfp_prog *prog); bool nfp_bpf_supported_opcode(u8 code); +bool nfp_bpf_offload_check_mtu(struct nfp_net *nn, struct bpf_prog *prog, + unsigned int mtu); int nfp_verify_insn(struct bpf_verifier_env *env, int insn_idx, int prev_insn_idx); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/bpf/offload.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/bpf/offload.c @@ -477,19 +477,28 @@ return 0; } +bool nfp_bpf_offload_check_mtu(struct nfp_net *nn, struct bpf_prog *prog, + unsigned int mtu) +{ + unsigned int fw_mtu, pkt_off; + + fw_mtu = nn_readb(nn, NFP_NET_CFG_BPF_INL_MTU) * 64 - 32; + pkt_off = min(prog->aux->max_pkt_offset, mtu); + + return fw_mtu < pkt_off; +} + static int nfp_net_bpf_load(struct nfp_net *nn, struct bpf_prog *prog, struct netlink_ext_ack *extack) { struct nfp_prog *nfp_prog = prog->aux->offload->dev_priv; - unsigned int fw_mtu, pkt_off, max_stack, max_prog_len; + unsigned int max_stack, max_prog_len; dma_addr_t dma_addr; void *img; int err; - fw_mtu = nn_readb(nn, NFP_NET_CFG_BPF_INL_MTU) * 64 - 32; - pkt_off = min(prog->aux->max_pkt_offset, nn->dp.netdev->mtu); - if (fw_mtu < pkt_off) { + if (nfp_bpf_offload_check_mtu(nn, prog, nn->dp.netdev->mtu)) { NL_SET_ERR_MSG_MOD(extack, "BPF offload not supported with potential packet access beyond HW packet split boundary"); return -EOPNOTSUPP; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c @@ -588,8 +588,8 @@ int port, bool mod) { struct nfp_flower_priv *priv = app->priv; - int ida_idx = NFP_MAX_MAC_INDEX, err; struct nfp_tun_offloaded_mac *entry; + int ida_idx = -1, err; u16 nfp_mac_idx = 0; entry = nfp_tunnel_lookup_offloaded_macs(app, netdev->dev_addr); @@ -663,7 +663,7 @@ err_free_entry: kfree(entry); err_free_ida: - if (ida_idx != NFP_MAX_MAC_INDEX) + if (ida_idx != -1) ida_simple_remove(&priv->tun.mac_off_ids, ida_idx); return err; @@ -677,6 +677,7 @@ struct nfp_flower_repr_priv *repr_priv; struct nfp_tun_offloaded_mac *entry; struct nfp_repr *repr; + u16 nfp_mac_idx; int ida_idx; entry = nfp_tunnel_lookup_offloaded_macs(app, mac); @@ -695,8 +696,6 @@ entry->bridge_count--; if (!entry->bridge_count && entry->ref_count) { - u16 nfp_mac_idx; - nfp_mac_idx = entry->index & ~NFP_TUN_PRE_TUN_IDX_BIT; if (__nfp_tunnel_offload_mac(app, mac, nfp_mac_idx, false)) { @@ -712,7 +711,6 @@ /* If MAC is now used by 1 repr set the offloaded MAC index to port. */ if (entry->ref_count == 1 && list_is_singular(&entry->repr_list)) { - u16 nfp_mac_idx; int port, err; repr_priv = list_first_entry(&entry->repr_list, @@ -740,8 +738,14 @@ WARN_ON_ONCE(rhashtable_remove_fast(&priv->tun.offloaded_macs, &entry->ht_node, offloaded_macs_params)); + + if (nfp_flower_is_supported_bridge(netdev)) + nfp_mac_idx = entry->index & ~NFP_TUN_PRE_TUN_IDX_BIT; + else + nfp_mac_idx = entry->index; + /* If MAC has global ID then extract and free the ida entry. */ - if (nfp_tunnel_is_mac_idx_global(entry->index)) { + if (nfp_tunnel_is_mac_idx_global(nfp_mac_idx)) { ida_idx = nfp_tunnel_get_ida_from_global_mac_idx(entry->index); ida_simple_remove(&priv->tun.mac_off_ids, ida_idx); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/nfp_asm.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_asm.c @@ -196,7 +196,7 @@ } reg->dst_lmextn = swreg_lmextn(dst); - reg->src_lmextn = swreg_lmextn(lreg) | swreg_lmextn(rreg); + reg->src_lmextn = swreg_lmextn(lreg) || swreg_lmextn(rreg); return 0; } @@ -277,7 +277,7 @@ } reg->dst_lmextn = swreg_lmextn(dst); - reg->src_lmextn = swreg_lmextn(lreg) | swreg_lmextn(rreg); + reg->src_lmextn = swreg_lmextn(lreg) || swreg_lmextn(rreg); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/nfp_net.h +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfp_net.h @@ -557,7 +557,6 @@ * @exn_name: Name for Exception interrupt * @shared_handler: Handler for shared interrupts * @shared_name: Name for shared interrupt - * @me_freq_mhz: ME clock_freq (MHz) * @reconfig_lock: Protects @reconfig_posted, @reconfig_timer_active, * @reconfig_sync_present and HW reconfiguration request * regs/machinery from async requests (sync must take @@ -639,8 +638,6 @@ irq_handler_t shared_handler; char shared_name[IFNAMSIZ + 8]; - u32 me_freq_mhz; - bool link_up; spinlock_t link_status_lock; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.c +++ linux-azure-5.4.0/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.c @@ -803,8 +803,10 @@ return -ENOMEM; cache = kzalloc(sizeof(*cache), GFP_KERNEL); - if (!cache) + if (!cache) { + nfp_cpp_area_free(area); return -ENOMEM; + } cache->id = 0; cache->addr = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c +++ linux-azure-5.4.0/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c @@ -107,7 +107,7 @@ { u8 *data = skb->data; unsigned int offset; - u16 *hi, *id; + u16 hi, id; u32 lo; if (ptp_classify_raw(skb) == PTP_CLASS_NONE) @@ -118,14 +118,11 @@ if (skb->len < offset + OFF_PTP_SEQUENCE_ID + sizeof(seqid)) return 0; - hi = (u16 *)(data + offset + OFF_PTP_SOURCE_UUID); - id = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID); + hi = get_unaligned_be16(data + offset + OFF_PTP_SOURCE_UUID + 0); + lo = get_unaligned_be32(data + offset + OFF_PTP_SOURCE_UUID + 2); + id = get_unaligned_be16(data + offset + OFF_PTP_SEQUENCE_ID); - memcpy(&lo, &hi[1], sizeof(lo)); - - return (uid_hi == *hi && - uid_lo == lo && - seqid == *id); + return (uid_hi == hi && uid_lo == lo && seqid == id); } static void @@ -135,7 +132,6 @@ struct pci_dev *pdev; u64 ns; u32 hi, lo, val; - u16 uid, seq; if (!adapter->hwts_rx_en) return; @@ -151,10 +147,7 @@ lo = pch_src_uuid_lo_read(pdev); hi = pch_src_uuid_hi_read(pdev); - uid = hi & 0xffff; - seq = (hi >> 16) & 0xffff; - - if (!pch_ptp_match(skb, htons(uid), htonl(lo), htons(seq))) + if (!pch_ptp_match(skb, hi, lo, hi >> 16)) goto out; ns = pch_rx_snap_read(pdev); @@ -2535,9 +2528,13 @@ adapter->pdev = pdev; adapter->hw.back = adapter; adapter->hw.reg = pcim_iomap_table(pdev)[PCH_GBE_PCI_BAR]; + adapter->pdata = (struct pch_gbe_privdata *)pci_id->driver_data; - if (adapter->pdata && adapter->pdata->platform_init) - adapter->pdata->platform_init(pdev); + if (adapter->pdata && adapter->pdata->platform_init) { + ret = adapter->pdata->platform_init(pdev); + if (ret) + goto err_free_netdev; + } adapter->ptp_pdev = pci_get_domain_bus_and_slot(pci_domain_nr(adapter->pdev->bus), @@ -2632,7 +2629,7 @@ */ static int pch_gbe_minnow_platform_init(struct pci_dev *pdev) { - unsigned long flags = GPIOF_DIR_OUT | GPIOF_INIT_HIGH | GPIOF_EXPORT; + unsigned long flags = GPIOF_OUT_INIT_HIGH; unsigned gpio = MINNOW_PHY_RESET_GPIO; int ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qed/qed_dcbx.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_dcbx.c @@ -1293,9 +1293,11 @@ p_hwfn->p_dcbx_info->set.ver_num |= DCBX_CONFIG_VERSION_STATIC; p_hwfn->p_dcbx_info->set.enabled = dcbx_info->operational.enabled; + BUILD_BUG_ON(sizeof(dcbx_info->operational.params) != + sizeof(p_hwfn->p_dcbx_info->set.config.params)); memcpy(&p_hwfn->p_dcbx_info->set.config.params, &dcbx_info->operational.params, - sizeof(struct qed_dcbx_admin_params)); + sizeof(p_hwfn->p_dcbx_info->set.config.params)); p_hwfn->p_dcbx_info->set.config.valid = true; memcpy(params, &p_hwfn->p_dcbx_info->set, sizeof(struct qed_dcbx_set)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qed/qed_ll2.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_ll2.c @@ -353,6 +353,9 @@ unsigned long flags; int rc = -EINVAL; + if (!p_ll2_conn) + return rc; + spin_lock_irqsave(&p_tx->lock, flags); if (p_tx->b_completing_packet) { rc = -EBUSY; @@ -526,7 +529,16 @@ unsigned long flags = 0; int rc = 0; + if (!p_ll2_conn) + return rc; + spin_lock_irqsave(&p_rx->lock, flags); + + if (!QED_LL2_RX_REGISTERED(p_ll2_conn)) { + spin_unlock_irqrestore(&p_rx->lock, flags); + return 0; + } + cq_new_idx = le16_to_cpu(*p_rx->p_fw_cons); cq_old_idx = qed_chain_get_cons_idx(&p_rx->rcq_chain); @@ -847,6 +859,9 @@ struct qed_ll2_info *p_ll2_conn = (struct qed_ll2_info *)p_cookie; int rc; + if (!p_ll2_conn) + return 0; + if (!QED_LL2_RX_REGISTERED(p_ll2_conn)) return 0; @@ -870,6 +885,9 @@ u16 new_idx = 0, num_bds = 0; int rc; + if (!p_ll2_conn) + return 0; + if (!QED_LL2_TX_REGISTERED(p_ll2_conn)) return 0; @@ -1642,6 +1660,8 @@ if (!p_ll2_conn) return -EINVAL; p_rx = &p_ll2_conn->rx_queue; + if (!p_rx->set_prod_addr) + return -EIO; spin_lock_irqsave(&p_rx->lock, flags); if (!list_empty(&p_rx->free_descq)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qed/qed_rdma.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_rdma.c @@ -1245,8 +1245,7 @@ if (!rdma_cxt || !in_params || !out_params || !p_hwfn->p_rdma_info->active) { - DP_ERR(p_hwfn->cdev, - "qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n", + pr_err("qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n", rdma_cxt, in_params, out_params); return NULL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qed/qed_sriov.h +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qed/qed_sriov.h @@ -88,6 +88,7 @@ bool is_trusted_request; u8 rx_accept_mode; u8 tx_accept_mode; + bool accept_any_vlan; }; struct qed_iov_vf_init_params { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.h +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.h @@ -52,7 +52,7 @@ if (dcb && dcb->ops->get_hw_capability) return dcb->ops->get_hw_capability(dcb); - return 0; + return -EOPNOTSUPP; } static inline void qlcnic_dcb_free(struct qlcnic_dcb *dcb) @@ -66,7 +66,7 @@ if (dcb && dcb->ops->attach) return dcb->ops->attach(dcb); - return 0; + return -EOPNOTSUPP; } static inline int @@ -75,7 +75,7 @@ if (dcb && dcb->ops->query_hw_capability) return dcb->ops->query_hw_capability(dcb, buf); - return 0; + return -EOPNOTSUPP; } static inline void qlcnic_dcb_get_info(struct qlcnic_dcb *dcb) @@ -90,7 +90,7 @@ if (dcb && dcb->ops->query_cee_param) return dcb->ops->query_cee_param(dcb, buf, type); - return 0; + return -EOPNOTSUPP; } static inline int qlcnic_dcb_get_cee_cfg(struct qlcnic_dcb *dcb) @@ -98,7 +98,7 @@ if (dcb && dcb->ops->get_cee_cfg) return dcb->ops->get_cee_cfg(dcb); - return 0; + return -EOPNOTSUPP; } static inline void qlcnic_dcb_aen_handler(struct qlcnic_dcb *dcb, void *msg) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.c @@ -440,7 +440,6 @@ QLCWR32(adapter, QLCNIC_CRB_PEG_NET_4 + 0x3c, 1); msleep(20); - qlcnic_rom_unlock(adapter); /* big hammer don't reset CAM block on reset */ QLCWR32(adapter, QLCNIC_ROMUSB_GLB_SW_RESET, 0xfeffffff); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov.h +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov.h @@ -202,7 +202,7 @@ struct qlcnic_info *, u16); int qlcnic_sriov_cfg_vf_guest_vlan(struct qlcnic_adapter *, u16, u8); void qlcnic_sriov_free_vlans(struct qlcnic_adapter *); -void qlcnic_sriov_alloc_vlans(struct qlcnic_adapter *); +int qlcnic_sriov_alloc_vlans(struct qlcnic_adapter *); bool qlcnic_sriov_check_any_vlan(struct qlcnic_vf_info *); void qlcnic_sriov_del_vlan_id(struct qlcnic_sriov *, struct qlcnic_vf_info *, u16); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c @@ -433,7 +433,7 @@ struct qlcnic_cmd_args *cmd) { struct qlcnic_sriov *sriov = adapter->ahw->sriov; - int i, num_vlans; + int i, num_vlans, ret; u16 *vlans; if (sriov->allowed_vlans) @@ -444,7 +444,9 @@ dev_info(&adapter->pdev->dev, "Number of allowed Guest VLANs = %d\n", sriov->num_allowed_vlans); - qlcnic_sriov_alloc_vlans(adapter); + ret = qlcnic_sriov_alloc_vlans(adapter); + if (ret) + return ret; if (!sriov->any_vlan) return 0; @@ -2160,7 +2162,7 @@ return err; } -void qlcnic_sriov_alloc_vlans(struct qlcnic_adapter *adapter) +int qlcnic_sriov_alloc_vlans(struct qlcnic_adapter *adapter) { struct qlcnic_sriov *sriov = adapter->ahw->sriov; struct qlcnic_vf_info *vf; @@ -2170,7 +2172,11 @@ vf = &sriov->vf_info[i]; vf->sriov_vlans = kcalloc(sriov->num_allowed_vlans, sizeof(*vf->sriov_vlans), GFP_KERNEL); + if (!vf->sriov_vlans) + return -ENOMEM; } + + return 0; } void qlcnic_sriov_free_vlans(struct qlcnic_adapter *adapter) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.c +++ linux-azure-5.4.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.c @@ -598,7 +598,9 @@ if (err) goto del_flr_queue; - qlcnic_sriov_alloc_vlans(adapter); + err = qlcnic_sriov_alloc_vlans(adapter); + if (err) + goto del_flr_queue; return err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qualcomm/qca_spi.c +++ linux-azure-5.4.0/drivers/net/ethernet/qualcomm/qca_spi.c @@ -434,7 +434,7 @@ skb_put(qca->rx_skb, retcode); qca->rx_skb->protocol = eth_type_trans( qca->rx_skb, qca->rx_skb->dev); - qca->rx_skb->ip_summed = CHECKSUM_UNNECESSARY; + skb_checksum_none_assert(qca->rx_skb); netif_rx_ni(qca->rx_skb); qca->rx_skb = netdev_alloc_skb_ip_align(net_dev, net_dev->mtu + VLAN_ETH_HLEN); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/qualcomm/qca_uart.c +++ linux-azure-5.4.0/drivers/net/ethernet/qualcomm/qca_uart.c @@ -107,7 +107,7 @@ skb_put(qca->rx_skb, retcode); qca->rx_skb->protocol = eth_type_trans( qca->rx_skb, qca->rx_skb->dev); - qca->rx_skb->ip_summed = CHECKSUM_UNNECESSARY; + skb_checksum_none_assert(qca->rx_skb); netif_rx_ni(qca->rx_skb); qca->rx_skb = netdev_alloc_skb_ip_align(netdev, netdev->mtu + only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/rdc/r6040.c +++ linux-azure-5.4.0/drivers/net/ethernet/rdc/r6040.c @@ -119,6 +119,8 @@ #define PHY_ST 0x8A /* PHY status register */ #define MAC_SM 0xAC /* MAC status machine */ #define MAC_SM_RST 0x0002 /* MAC status machine reset */ +#define MD_CSC 0xb6 /* MDC speed control register */ +#define MD_CSC_DEFAULT 0x0030 #define MAC_ID 0xBE /* Identifier register */ #define TX_DCNT 0x80 /* TX descriptor count */ @@ -354,8 +356,9 @@ { void __iomem *ioaddr = lp->base; int limit = MAC_DEF_TIMEOUT; - u16 cmd; + u16 cmd, md_csc; + md_csc = ioread16(ioaddr + MD_CSC); iowrite16(MAC_RST, ioaddr + MCR1); while (limit--) { cmd = ioread16(ioaddr + MCR1); @@ -367,6 +370,10 @@ iowrite16(MAC_SM_RST, ioaddr + MAC_SM); iowrite16(0, ioaddr + MAC_SM); mdelay(5); + + /* Restore MDIO clock frequency */ + if (md_csc != MD_CSC_DEFAULT) + iowrite16(md_csc, ioaddr + MD_CSC); } static void r6040_init_mac_regs(struct net_device *dev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/rocker/rocker_ofdpa.c +++ linux-azure-5.4.0/drivers/net/ethernet/rocker/rocker_ofdpa.c @@ -1273,7 +1273,7 @@ bool removing; int err = 0; - entry = kzalloc(sizeof(*entry), GFP_KERNEL); + entry = kzalloc(sizeof(*entry), GFP_ATOMIC); if (!entry) return -ENOMEM; @@ -2795,7 +2795,8 @@ if (!ofdpa_port) continue; nh->fib_nh_flags &= ~RTNH_F_OFFLOAD; - ofdpa_flow_tbl_del(ofdpa_port, OFDPA_OP_FLAG_REMOVE, + ofdpa_flow_tbl_del(ofdpa_port, + OFDPA_OP_FLAG_REMOVE | OFDPA_OP_FLAG_NOWAIT, flow_entry); } spin_unlock_irqrestore(&ofdpa->flow_tbl_lock, flags); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/ef10.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/ef10.c @@ -2056,7 +2056,10 @@ efx_update_sw_stats(efx, stats); out: + /* releasing a DMA coherent buffer with BH disabled can panic */ + spin_unlock_bh(&efx->stats_lock); efx_nic_free_buffer(efx, &stats_buf); + spin_lock_bh(&efx->stats_lock); return rc; } @@ -6160,6 +6163,11 @@ n_parts++; } + if (!n_parts) { + kfree(parts); + return 0; + } + rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); fail: if (rc) @@ -6593,6 +6601,30 @@ return rc; } +static unsigned int efx_ef10_recycle_ring_size(const struct efx_nic *efx) +{ + unsigned int ret = EFX_RECYCLE_RING_SIZE_10G; + + /* There is no difference between PFs and VFs. The side is based on + * the maximum link speed of a given NIC. + */ + switch (efx->pci_dev->device & 0xfff) { + case 0x0903: /* Farmingdale can do up to 10G */ + break; + case 0x0923: /* Greenport can do up to 40G */ + case 0x0a03: /* Medford can do up to 40G */ + ret *= 4; + break; + default: /* Medford2 can do up to 100G */ + ret *= 10; + } + + if (IS_ENABLED(CONFIG_PPC64)) + ret *= 4; + + return ret; +} + #define EF10_OFFLOAD_FEATURES \ (NETIF_F_IP_CSUM | \ NETIF_F_HW_VLAN_CTAG_FILTER | \ @@ -6705,6 +6737,7 @@ .hwtstamp_filters = 1 << HWTSTAMP_FILTER_NONE | 1 << HWTSTAMP_FILTER_ALL, .rx_hash_key_size = 40, + .rx_recycle_ring_size = efx_ef10_recycle_ring_size, }; const struct efx_nic_type efx_hunt_a0_nic_type = { @@ -6840,4 +6873,5 @@ .hwtstamp_filters = 1 << HWTSTAMP_FILTER_NONE | 1 << HWTSTAMP_FILTER_ALL, .rx_hash_key_size = 40, + .rx_recycle_ring_size = efx_ef10_recycle_ring_size, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/ef10_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/ef10_sriov.c @@ -403,12 +403,18 @@ return rc; } +/* Disable SRIOV and remove VFs + * If some VFs are attached to a guest (using Xen, only) nothing is + * done if force=false, and vports are freed if force=true (for the non + * attachedc ones, only) but SRIOV is not disabled and VFs are not + * removed in either case. + */ static int efx_ef10_pci_sriov_disable(struct efx_nic *efx, bool force) { struct pci_dev *dev = efx->pci_dev; - unsigned int vfs_assigned = 0; - - vfs_assigned = pci_vfs_assigned(dev); + struct efx_ef10_nic_data *nic_data = efx->nic_data; + unsigned int vfs_assigned = pci_vfs_assigned(dev); + int i, rc = 0; if (vfs_assigned && !force) { netif_info(efx, drv, efx->net_dev, "VFs are assigned to guests; " @@ -416,12 +422,17 @@ return -EBUSY; } - if (!vfs_assigned) + if (!vfs_assigned) { + for (i = 0; i < efx->vf_count; i++) + nic_data->vf[i].pci_dev = NULL; pci_disable_sriov(dev); + } else { + rc = -EBUSY; + } efx_ef10_sriov_free_vf_vswitching(efx); efx->vf_count = 0; - return 0; + return rc; } int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs) @@ -440,7 +451,6 @@ void efx_ef10_sriov_fini(struct efx_nic *efx) { struct efx_ef10_nic_data *nic_data = efx->nic_data; - unsigned int i; int rc; if (!nic_data->vf) { @@ -450,14 +460,7 @@ return; } - /* Remove any VFs in the host */ - for (i = 0; i < efx->vf_count; ++i) { - struct efx_nic *vf_efx = nic_data->vf[i].efx; - - if (vf_efx) - vf_efx->pci_dev->driver->remove(vf_efx->pci_dev); - } - + /* Disable SRIOV and remove any VFs in the host */ rc = efx_ef10_pci_sriov_disable(efx, true); if (rc) netif_dbg(efx, drv, efx->net_dev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/efx.h +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/efx.h @@ -57,6 +57,12 @@ #define EFX_MAX_EVQ_SIZE 16384UL #define EFX_MIN_EVQ_SIZE 512UL +/* Number of RX buffers to recycle pages for. When creating the RX page recycle + * ring, this number is divided by the number of buffers per page to calculate + * the number of pages to store in the RX page recycle ring. + */ +#define EFX_RECYCLE_RING_SIZE_10G 256 + /* Maximum number of TCP segments we support for soft-TSO */ #define EFX_TSO_MAX_SEGS 100 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/ethtool.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/ethtool.c @@ -128,20 +128,14 @@ { struct efx_nic *efx = netdev_priv(net_dev); struct efx_link_state *link_state = &efx->link_state; - u32 supported; mutex_lock(&efx->mac_lock); efx->phy_op->get_link_ksettings(efx, cmd); mutex_unlock(&efx->mac_lock); /* Both MACs support pause frames (bidirectional and respond-only) */ - ethtool_convert_link_mode_to_legacy_u32(&supported, - cmd->link_modes.supported); - - supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause; - - ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported, - supported); + ethtool_link_ksettings_add_link_mode(cmd, supported, Pause); + ethtool_link_ksettings_add_link_mode(cmd, supported, Asym_Pause); if (LOOPBACK_INTERNAL(efx)) { cmd->base.speed = link_state->speed; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/falcon/rx.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/falcon/rx.c @@ -726,7 +726,10 @@ efx->rx_bufs_per_page); rx_queue->page_ring = kcalloc(page_ring_size, sizeof(*rx_queue->page_ring), GFP_KERNEL); - rx_queue->page_ptr_mask = page_ring_size - 1; + if (!rx_queue->page_ring) + rx_queue->page_ptr_mask = 0; + else + rx_queue->page_ptr_mask = page_ring_size - 1; } void ef4_init_rx_queue(struct ef4_rx_queue *rx_queue) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/mcdi.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/mcdi.c @@ -163,9 +163,9 @@ /* Serialise with efx_mcdi_ev_cpl() and efx_mcdi_ev_death() */ spin_lock_bh(&mcdi->iface_lock); ++mcdi->seqno; + seqno = mcdi->seqno & SEQ_MASK; spin_unlock_bh(&mcdi->iface_lock); - seqno = mcdi->seqno & SEQ_MASK; xflags = 0; if (mcdi->mode == MCDI_MODE_EVENTS) xflags |= MCDI_HEADER_XFLAGS_EVREQ; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/net_driver.h +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/net_driver.h @@ -1243,6 +1243,7 @@ * @udp_tnl_add_port: Add a UDP tunnel port * @udp_tnl_has_port: Check if a port has been added as UDP tunnel * @udp_tnl_del_port: Remove a UDP tunnel port + * @rx_recycle_ring_size: Size of the RX recycle ring * @revision: Hardware architecture revision * @txd_ptr_tbl_base: TX descriptor ring base address * @rxd_ptr_tbl_base: RX descriptor ring base address @@ -1413,6 +1414,7 @@ int (*udp_tnl_add_port)(struct efx_nic *efx, struct efx_udp_tunnel tnl); bool (*udp_tnl_has_port)(struct efx_nic *efx, __be16 port); int (*udp_tnl_del_port)(struct efx_nic *efx, struct efx_udp_tunnel tnl); + unsigned int (*rx_recycle_ring_size)(const struct efx_nic *efx); int revision; unsigned int txd_ptr_tbl_base; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/nic.h +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/nic.h @@ -607,6 +607,11 @@ bool efx_nic_event_present(struct efx_channel *channel); +static inline unsigned int efx_rx_recycle_ring_size(const struct efx_nic *efx) +{ + return efx->type->rx_recycle_ring_size(efx); +} + /* Some statistics are computed as A - B where A and B each increase * linearly with some hardware counter(s) and the counters are read * asynchronously. If the counters contributing to B are always read only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/rx.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/rx.c @@ -27,13 +27,6 @@ /* Preferred number of descriptors to fill at once */ #define EFX_RX_PREFERRED_BATCH 8U -/* Number of RX buffers to recycle pages for. When creating the RX page recycle - * ring, this number is divided by the number of buffers per page to calculate - * the number of pages to store in the RX page recycle ring. - */ -#define EFX_RECYCLE_RING_SIZE_IOMMU 4096 -#define EFX_RECYCLE_RING_SIZE_NOIOMMU (2 * EFX_RX_PREFERRED_BATCH) - /* Size of buffer allocated for skb header area. */ #define EFX_SKB_HEADERS 128u @@ -710,16 +703,7 @@ { unsigned int bufs_in_recycle_ring, page_ring_size; - /* Set the RX recycle ring size */ -#ifdef CONFIG_PPC64 - bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; -#else - if (iommu_present(&pci_bus_type)) - bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; - else - bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU; -#endif /* CONFIG_PPC64 */ - + bufs_in_recycle_ring = efx_rx_recycle_ring_size(efx); page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring / efx->rx_bufs_per_page); rx_queue->page_ring = kcalloc(page_ring_size, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/siena.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/siena.c @@ -946,6 +946,12 @@ #endif /* CONFIG_SFC_MTD */ +static unsigned int efx_siena_recycle_ring_size(const struct efx_nic *efx) +{ + /* Maximum link speed is 10G */ + return EFX_RECYCLE_RING_SIZE_10G; +} + /************************************************************************** * * Revision-dependent attributes used by efx.c and nic.c @@ -1084,4 +1090,5 @@ 1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT | 1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT), .rx_hash_key_size = 16, + .rx_recycle_ring_size = efx_siena_recycle_ring_size, }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sfc/siena_sriov.c +++ linux-azure-5.4.0/drivers/net/ethernet/sfc/siena_sriov.c @@ -1056,7 +1056,7 @@ return; if (efx_siena_sriov_cmd(efx, false, &efx->vi_scale, &count)) { - netif_info(efx, probe, efx->net_dev, "no SR-IOV VFs probed\n"); + pci_info(efx->pci_dev, "no SR-IOV VFs probed\n"); return; } if (count > 0 && count > max_vfs) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.c @@ -57,10 +57,6 @@ #define TSE_PCS_USE_SGMII_ENA BIT(0) #define TSE_PCS_IF_USE_SGMII 0x03 -#define SGMII_ADAPTER_CTRL_REG 0x00 -#define SGMII_ADAPTER_DISABLE 0x0001 -#define SGMII_ADAPTER_ENABLE 0x0000 - #define AUTONEGO_LINK_TIMER 20 static int tse_pcs_reset(void __iomem *base, struct tse_pcs *pcs) @@ -202,12 +198,8 @@ unsigned int speed) { void __iomem *tse_pcs_base = pcs->tse_pcs_base; - void __iomem *sgmii_adapter_base = pcs->sgmii_adapter_base; u32 val; - writew(SGMII_ADAPTER_ENABLE, - sgmii_adapter_base + SGMII_ADAPTER_CTRL_REG); - pcs->autoneg = phy_dev->autoneg; if (phy_dev->autoneg == AUTONEG_ENABLE) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.h +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.h @@ -10,6 +10,10 @@ #include #include +#define SGMII_ADAPTER_CTRL_REG 0x00 +#define SGMII_ADAPTER_ENABLE 0x0000 +#define SGMII_ADAPTER_DISABLE 0x0001 + struct tse_pcs { struct device *dev; void __iomem *tse_pcs_base; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c @@ -357,6 +357,7 @@ data->fix_mac_speed = tegra_eqos_fix_speed; data->init = tegra_eqos_init; data->bsp_priv = eqos; + data->sph_disable = 1; err = tegra_eqos_init(pdev, eqos); if (err < 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac-generic.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac-generic.c @@ -71,6 +71,7 @@ static const struct of_device_id dwmac_generic_match[] = { { .compatible = "st,spear600-gmac"}, + { .compatible = "snps,dwmac-3.40a"}, { .compatible = "snps,dwmac-3.50a"}, { .compatible = "snps,dwmac-3.610"}, { .compatible = "snps,dwmac-3.70a"}, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac1000.h +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac1000.h @@ -76,10 +76,10 @@ #define LPI_CTRL_STATUS_TLPIEN 0x00000001 /* Transmit LPI Entry */ /* GMAC HW ADDR regs */ -#define GMAC_ADDR_HIGH(reg) (((reg > 15) ? 0x00000800 : 0x00000040) + \ - (reg * 8)) -#define GMAC_ADDR_LOW(reg) (((reg > 15) ? 0x00000804 : 0x00000044) + \ - (reg * 8)) +#define GMAC_ADDR_HIGH(reg) ((reg > 15) ? 0x00000800 + (reg - 16) * 8 : \ + 0x00000040 + (reg * 8)) +#define GMAC_ADDR_LOW(reg) ((reg > 15) ? 0x00000804 + (reg - 16) * 8 : \ + 0x00000044 + (reg * 8)) #define GMAC_MAX_PERFECT_ADDRESSES 1 #define GMAC_PCS_BASE 0x000000c0 /* PCS register base */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.c @@ -218,11 +218,18 @@ readl(ioaddr + DMA_BUS_MODE + i * 4); } -static void dwmac1000_get_hw_feature(void __iomem *ioaddr, - struct dma_features *dma_cap) +static int dwmac1000_get_hw_feature(void __iomem *ioaddr, + struct dma_features *dma_cap) { u32 hw_cap = readl(ioaddr + DMA_HW_FEATURE); + if (!hw_cap) { + /* 0x00000000 is the value read on old hardware that does not + * implement this register + */ + return -EOPNOTSUPP; + } + dma_cap->mbps_10_100 = (hw_cap & DMA_HW_FEAT_MIISEL); dma_cap->mbps_1000 = (hw_cap & DMA_HW_FEAT_GMIISEL) >> 1; dma_cap->half_duplex = (hw_cap & DMA_HW_FEAT_HDSEL) >> 2; @@ -252,6 +259,8 @@ dma_cap->number_tx_channel = (hw_cap & DMA_HW_FEAT_TXCHCNT) >> 22; /* Alternate (enhanced) DESC mode */ dma_cap->enh_desc = (hw_cap & DMA_HW_FEAT_ENHDESSEL) >> 24; + + return 0; } static void dwmac1000_rx_watchdog(void __iomem *ioaddr, u32 riwt, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c @@ -215,6 +215,9 @@ if (queue == 0 || queue == 4) { value &= ~MTL_RXQ_DMA_Q04MDMACH_MASK; value |= MTL_RXQ_DMA_Q04MDMACH(chan); + } else if (queue > 4) { + value &= ~MTL_RXQ_DMA_QXMDMACH_MASK(queue - 4); + value |= MTL_RXQ_DMA_QXMDMACH(chan, queue - 4); } else { value &= ~MTL_RXQ_DMA_QXMDMACH_MASK(queue); value |= MTL_RXQ_DMA_QXMDMACH(chan, queue); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac_dma.h +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/dwmac_dma.h @@ -128,6 +128,7 @@ #define NUM_DWMAC100_DMA_REGS 9 #define NUM_DWMAC1000_DMA_REGS 23 +#define NUM_DWMAC4_DMA_REGS 27 void dwmac_enable_dma_transmission(void __iomem *ioaddr); void dwmac_enable_dma_irq(void __iomem *ioaddr, u32 chan); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/hwif.h +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/hwif.h @@ -196,8 +196,8 @@ int (*dma_interrupt) (void __iomem *ioaddr, struct stmmac_extra_stats *x, u32 chan); /* If supported then get the optional core features */ - void (*get_hw_feature)(void __iomem *ioaddr, - struct dma_features *dma_cap); + int (*get_hw_feature)(void __iomem *ioaddr, + struct dma_features *dma_cap); /* Program the HW RX Watchdog */ void (*rx_watchdog)(void __iomem *ioaddr, u32 riwt, u32 number_chan); void (*set_tx_ring_len)(void __iomem *ioaddr, u32 len, u32 chan); @@ -247,7 +247,7 @@ #define stmmac_dma_interrupt_status(__priv, __args...) \ stmmac_do_callback(__priv, dma, dma_interrupt, __args) #define stmmac_get_hw_feature(__priv, __args...) \ - stmmac_do_void_callback(__priv, dma, get_hw_feature, __args) + stmmac_do_callback(__priv, dma, get_hw_feature, __args) #define stmmac_rx_watchdog(__priv, __args...) \ stmmac_do_void_callback(__priv, dma, rx_watchdog, __args) #define stmmac_set_tx_ring_len(__priv, __args...) \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c +++ linux-azure-5.4.0/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c @@ -119,6 +119,7 @@ plat->has_gmac4 = 1; plat->force_sf_dma_mode = 0; plat->tso_en = 1; + plat->sph_disable = 1; plat->rx_sched_algorithm = MTL_RX_ALGORITHM_SP; @@ -481,7 +482,7 @@ return -ENOMEM; /* Enable pci device */ - ret = pci_enable_device(pdev); + ret = pcim_enable_device(pdev); if (ret) { dev_err(&pdev->dev, "%s: ERROR: failed to enable device\n", __func__); @@ -538,8 +539,6 @@ pcim_iounmap_regions(pdev, BIT(i)); break; } - - pci_disable_device(pdev); } static int __maybe_unused stmmac_pci_suspend(struct device *dev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sun/Kconfig +++ linux-azure-5.4.0/drivers/net/ethernet/sun/Kconfig @@ -73,6 +73,7 @@ config SUNVNET_COMMON tristate "Common routines to support Sun Virtual Networking" depends on SUN_LDOMS + depends on INET default m config SUNVNET only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/sun/sunhme.c +++ linux-azure-5.4.0/drivers/net/ethernet/sun/sunhme.c @@ -2064,9 +2064,9 @@ skb_reserve(copy_skb, 2); skb_put(copy_skb, len); - dma_sync_single_for_cpu(hp->dma_dev, dma_addr, len, DMA_FROM_DEVICE); + dma_sync_single_for_cpu(hp->dma_dev, dma_addr, len + 2, DMA_FROM_DEVICE); skb_copy_from_linear_data(skb, copy_skb->data, len); - dma_sync_single_for_device(hp->dma_dev, dma_addr, len, DMA_FROM_DEVICE); + dma_sync_single_for_device(hp->dma_dev, dma_addr, len + 2, DMA_FROM_DEVICE); /* Reuse original ring buffer. */ hme_write_rxd(hp, this, (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)), @@ -3164,7 +3164,7 @@ if (err) { printk(KERN_ERR "happymeal(PCI): Cannot register net device, " "aborting.\n"); - goto err_out_iounmap; + goto err_out_free_coherent; } pci_set_drvdata(pdev, hp); @@ -3197,6 +3197,10 @@ return 0; +err_out_free_coherent: + dma_free_coherent(hp->dma_dev, PAGE_SIZE, + hp->happy_block, hp->hblock_dvma); + err_out_iounmap: iounmap(hp->gregs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/wiznet/w5100.c +++ linux-azure-5.4.0/drivers/net/ethernet/wiznet/w5100.c @@ -1052,6 +1052,8 @@ mac_addr = data->mac_addr; mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!mem) + return -EINVAL; if (resource_size(mem) < W5100_BUS_DIRECT_SIZE) ops = &w5100_mmio_indirect_ops; else only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ linux-azure-5.4.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -820,10 +820,10 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev) { struct mii_bus *bus; - int rc; struct resource res; struct device_node *np = of_get_parent(lp->phy_node); struct device_node *npp; + int rc, ret; /* Don't register the MDIO bus if the phy_node or its parent node * can't be found. @@ -833,8 +833,14 @@ return -ENODEV; } npp = of_get_parent(np); - - of_address_to_resource(npp, 0, &res); + ret = of_address_to_resource(npp, 0, &res); + of_node_put(npp); + if (ret) { + dev_err(dev, "%s resource error!\n", + dev->of_node->full_name); + of_node_put(np); + return ret; + } if (lp->ndev->mem_start != res.start) { struct phy_device *phydev; phydev = of_phy_find_device(lp->phy_node); @@ -843,6 +849,7 @@ "MDIO of the phy is not registered yet\n"); else put_device(&phydev->mdio.dev); + of_node_put(np); return 0; } @@ -855,6 +862,7 @@ bus = mdiobus_alloc(); if (!bus) { dev_err(dev, "Failed to allocate mdiobus\n"); + of_node_put(np); return -ENOMEM; } @@ -867,6 +875,7 @@ bus->parent = dev; rc = of_mdiobus_register(bus, np); + of_node_put(np); if (rc) { dev_err(dev, "Failed to register mdio bus.\n"); goto err_register; @@ -923,8 +932,6 @@ xemaclite_disable_interrupts(lp); if (lp->phy_node) { - u32 bmcr; - lp->phy_dev = of_phy_connect(lp->ndev, lp->phy_node, xemaclite_adjust_link, 0, PHY_INTERFACE_MODE_MII); @@ -935,19 +942,6 @@ /* EmacLite doesn't support giga-bit speeds */ phy_set_max_speed(lp->phy_dev, SPEED_100); - - /* Don't advertise 1000BASE-T Full/Half duplex speeds */ - phy_write(lp->phy_dev, MII_CTRL1000, 0); - - /* Advertise only 10 and 100mbps full/half duplex speeds */ - phy_write(lp->phy_dev, MII_ADVERTISE, ADVERTISE_ALL | - ADVERTISE_CSMA); - - /* Restart auto negotiation */ - bmcr = phy_read(lp->phy_dev, MII_BMCR); - bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART); - phy_write(lp->phy_dev, MII_BMCR, bmcr); - phy_start(lp->phy_dev); } @@ -1187,15 +1181,16 @@ if (rc) { dev_err(dev, "Cannot register network device, aborting\n"); - goto error; + goto put_node; } dev_info(dev, - "Xilinx EmacLite at 0x%08X mapped to 0x%08X, irq=%d\n", - (unsigned int __force)ndev->mem_start, - (unsigned int __force)lp->base_addr, ndev->irq); + "Xilinx EmacLite at 0x%08X mapped to 0x%p, irq=%d\n", + (unsigned int __force)ndev->mem_start, lp->base_addr, ndev->irq); return 0; +put_node: + of_node_put(lp->phy_node); error: free_netdev(ndev); return rc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/fddi/defza.c +++ linux-azure-5.4.0/drivers/net/fddi/defza.c @@ -1504,9 +1504,8 @@ release_mem_region(start, len); err_out_kfree: - free_netdev(dev); - pr_err("%s: initialization failure, aborting!\n", fp->name); + free_netdev(dev); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ieee802154/at86rf230.c +++ linux-azure-5.4.0/drivers/net/ieee802154/at86rf230.c @@ -100,6 +100,7 @@ unsigned long cal_timeout; bool is_tx; bool is_tx_from_off; + bool was_tx; u8 tx_retry; struct sk_buff *tx_skb; struct at86rf230_state_change tx; @@ -343,7 +344,11 @@ if (ctx->free) kfree(ctx); - ieee802154_wake_queue(lp->hw); + if (lp->was_tx) { + lp->was_tx = 0; + dev_kfree_skb_any(lp->tx_skb); + ieee802154_wake_queue(lp->hw); + } } static void @@ -352,7 +357,11 @@ struct at86rf230_state_change *ctx = context; struct at86rf230_local *lp = ctx->lp; - lp->is_tx = 0; + if (lp->is_tx) { + lp->was_tx = 1; + lp->is_tx = 0; + } + at86rf230_async_state_change(lp, ctx, STATE_RX_AACK_ON, at86rf230_async_error_recover_complete); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ieee802154/cc2520.c +++ linux-azure-5.4.0/drivers/net/ieee802154/cc2520.c @@ -507,6 +507,7 @@ goto err_tx; if (status & CC2520_STATUS_TX_UNDERFLOW) { + rc = -EINVAL; dev_err(&priv->spi->dev, "cc2520 tx underflow exception\n"); goto err_tx; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ieee802154/mac802154_hwsim.c +++ linux-azure-5.4.0/drivers/net/ieee802154/mac802154_hwsim.c @@ -418,7 +418,7 @@ struct hwsim_edge *e; u32 v0, v1; - if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] && + if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] || !info->attrs[MAC802154_HWSIM_ATTR_RADIO_EDGE]) return -EINVAL; @@ -480,7 +480,7 @@ struct hwsim_edge *e; u32 v0, v1; - if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] && + if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] || !info->attrs[MAC802154_HWSIM_ATTR_RADIO_EDGE]) return -EINVAL; @@ -528,14 +528,14 @@ u32 v0, v1; u8 lqi; - if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] && + if (!info->attrs[MAC802154_HWSIM_ATTR_RADIO_ID] || !info->attrs[MAC802154_HWSIM_ATTR_RADIO_EDGE]) return -EINVAL; if (nla_parse_nested_deprecated(edge_attrs, MAC802154_HWSIM_EDGE_ATTR_MAX, info->attrs[MAC802154_HWSIM_ATTR_RADIO_EDGE], hwsim_edge_policy, NULL)) return -EINVAL; - if (!edge_attrs[MAC802154_HWSIM_EDGE_ATTR_ENDPOINT_ID] && + if (!edge_attrs[MAC802154_HWSIM_EDGE_ATTR_ENDPOINT_ID] || !edge_attrs[MAC802154_HWSIM_EDGE_ATTR_LQI]) return -EINVAL; @@ -715,6 +715,8 @@ return 0; +sub_fail: + hwsim_edge_unsubscribe_me(phy); me_fail: rcu_read_lock(); list_for_each_entry_rcu(e, &phy->edges, list) { @@ -722,8 +724,6 @@ hwsim_free_edge(e); } rcu_read_unlock(); -sub_fail: - hwsim_edge_unsubscribe_me(phy); return -ENOMEM; } @@ -786,6 +786,7 @@ goto err_pib; } + pib->channel = 13; rcu_assign_pointer(phy->pib, pib); phy->idx = idx; INIT_LIST_HEAD(&phy->edges); @@ -824,12 +825,17 @@ static void hwsim_del(struct hwsim_phy *phy) { struct hwsim_pib *pib; + struct hwsim_edge *e; hwsim_edge_unsubscribe_me(phy); list_del(&phy->list); rcu_read_lock(); + list_for_each_entry_rcu(e, &phy->edges, list) { + list_del_rcu(&e->list); + hwsim_free_edge(e); + } pib = rcu_dereference(phy->pib); rcu_read_unlock(); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ieee802154/mcr20a.c +++ linux-azure-5.4.0/drivers/net/ieee802154/mcr20a.c @@ -976,8 +976,8 @@ dev_dbg(printdev(lp), "%s\n", __func__); phy->symbol_duration = 16; - phy->lifs_period = 40; - phy->sifs_period = 12; + phy->lifs_period = 40 * phy->symbol_duration; + phy->sifs_period = 12 * phy->symbol_duration; hw->flags = IEEE802154_HW_TX_OMIT_CKSUM | IEEE802154_HW_AFILT | only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ipvlan/ipvtap.c +++ linux-azure-5.4.0/drivers/net/ipvlan/ipvtap.c @@ -194,7 +194,7 @@ .notifier_call = ipvtap_device_event, }; -static int ipvtap_init(void) +static int __init ipvtap_init(void) { int err; @@ -228,7 +228,7 @@ } module_init(ipvtap_init); -static void ipvtap_exit(void) +static void __exit ipvtap_exit(void) { rtnl_link_unregister(&ipvtap_link_ops); unregister_netdevice_notifier(&ipvtap_notifier_block); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/macvtap.c +++ linux-azure-5.4.0/drivers/net/macvtap.c @@ -133,11 +133,17 @@ dev->tx_queue_len = TUN_READQ_SIZE; } +static struct net *macvtap_link_net(const struct net_device *dev) +{ + return dev_net(macvlan_dev_real_dev(dev)); +} + static struct rtnl_link_ops macvtap_link_ops __read_mostly = { .kind = "macvtap", .setup = macvtap_setup, .newlink = macvtap_newlink, .dellink = macvtap_dellink, + .get_link_net = macvtap_link_net, .priv_size = sizeof(struct macvtap_dev), }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/netdevsim/bpf.c +++ linux-azure-5.4.0/drivers/net/netdevsim/bpf.c @@ -347,10 +347,12 @@ { struct nsim_bpf_bound_map *nmap = offmap->dev_priv; - nmap->entry[idx].key = kmalloc(offmap->map.key_size, GFP_USER); + nmap->entry[idx].key = kmalloc(offmap->map.key_size, + GFP_KERNEL_ACCOUNT | __GFP_NOWARN); if (!nmap->entry[idx].key) return -ENOMEM; - nmap->entry[idx].value = kmalloc(offmap->map.value_size, GFP_USER); + nmap->entry[idx].value = kmalloc(offmap->map.value_size, + GFP_KERNEL_ACCOUNT | __GFP_NOWARN); if (!nmap->entry[idx].value) { kfree(nmap->entry[idx].key); nmap->entry[idx].key = NULL; @@ -492,7 +494,7 @@ if (offmap->map.map_flags) return -EINVAL; - nmap = kzalloc(sizeof(*nmap), GFP_USER); + nmap = kzalloc(sizeof(*nmap), GFP_KERNEL_ACCOUNT); if (!nmap) return -ENOMEM; @@ -510,6 +512,7 @@ goto err_free; key = nmap->entry[i].key; *key = i; + memset(nmap->entry[i].value, 0, offmap->map.value_size); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/bcm7xxx.c +++ linux-azure-5.4.0/drivers/net/phy/bcm7xxx.c @@ -26,7 +26,12 @@ #define MII_BCM7XXX_SHD_2_ADDR_CTRL 0xe #define MII_BCM7XXX_SHD_2_CTRL_STAT 0xf #define MII_BCM7XXX_SHD_2_BIAS_TRIM 0x1a +#define MII_BCM7XXX_SHD_3_PCS_CTRL 0x0 +#define MII_BCM7XXX_SHD_3_PCS_STATUS 0x1 +#define MII_BCM7XXX_SHD_3_EEE_CAP 0x2 #define MII_BCM7XXX_SHD_3_AN_EEE_ADV 0x3 +#define MII_BCM7XXX_SHD_3_EEE_LP 0x4 +#define MII_BCM7XXX_SHD_3_EEE_WK_ERR 0x5 #define MII_BCM7XXX_SHD_3_PCS_CTRL_2 0x6 #define MII_BCM7XXX_PCS_CTRL_2_DEF 0x4400 #define MII_BCM7XXX_SHD_3_AN_STAT 0xb @@ -210,25 +215,37 @@ return genphy_config_aneg(phydev); } -static int phy_set_clr_bits(struct phy_device *dev, int location, - int set_mask, int clr_mask) +static int __phy_set_clr_bits(struct phy_device *dev, int location, + int set_mask, int clr_mask) { int v, ret; - v = phy_read(dev, location); + v = __phy_read(dev, location); if (v < 0) return v; v &= ~clr_mask; v |= set_mask; - ret = phy_write(dev, location, v); + ret = __phy_write(dev, location, v); if (ret < 0) return ret; return v; } +static int phy_set_clr_bits(struct phy_device *dev, int location, + int set_mask, int clr_mask) +{ + int ret; + + mutex_lock(&dev->mdio.bus->mdio_lock); + ret = __phy_set_clr_bits(dev, location, set_mask, clr_mask); + mutex_unlock(&dev->mdio.bus->mdio_lock); + + return ret; +} + static int bcm7xxx_28nm_ephy_01_afe_config_init(struct phy_device *phydev) { int ret; @@ -392,6 +409,93 @@ return bcm7xxx_28nm_ephy_apd_enable(phydev); } +#define MII_BCM7XXX_REG_INVALID 0xff + +static u8 bcm7xxx_28nm_ephy_regnum_to_shd(u16 regnum) +{ + switch (regnum) { + case MDIO_CTRL1: + return MII_BCM7XXX_SHD_3_PCS_CTRL; + case MDIO_STAT1: + return MII_BCM7XXX_SHD_3_PCS_STATUS; + case MDIO_PCS_EEE_ABLE: + return MII_BCM7XXX_SHD_3_EEE_CAP; + case MDIO_AN_EEE_ADV: + return MII_BCM7XXX_SHD_3_AN_EEE_ADV; + case MDIO_AN_EEE_LPABLE: + return MII_BCM7XXX_SHD_3_EEE_LP; + case MDIO_PCS_EEE_WK_ERR: + return MII_BCM7XXX_SHD_3_EEE_WK_ERR; + default: + return MII_BCM7XXX_REG_INVALID; + } +} + +static bool bcm7xxx_28nm_ephy_dev_valid(int devnum) +{ + return devnum == MDIO_MMD_AN || devnum == MDIO_MMD_PCS; +} + +static int bcm7xxx_28nm_ephy_read_mmd(struct phy_device *phydev, + int devnum, u16 regnum) +{ + u8 shd = bcm7xxx_28nm_ephy_regnum_to_shd(regnum); + int ret; + + if (!bcm7xxx_28nm_ephy_dev_valid(devnum) || + shd == MII_BCM7XXX_REG_INVALID) + return -EOPNOTSUPP; + + /* set shadow mode 2 */ + ret = __phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, + MII_BCM7XXX_SHD_MODE_2, 0); + if (ret < 0) + return ret; + + /* Access the desired shadow register address */ + ret = __phy_write(phydev, MII_BCM7XXX_SHD_2_ADDR_CTRL, shd); + if (ret < 0) + goto reset_shadow_mode; + + ret = __phy_read(phydev, MII_BCM7XXX_SHD_2_CTRL_STAT); + +reset_shadow_mode: + /* reset shadow mode 2 */ + __phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, 0, + MII_BCM7XXX_SHD_MODE_2); + return ret; +} + +static int bcm7xxx_28nm_ephy_write_mmd(struct phy_device *phydev, + int devnum, u16 regnum, u16 val) +{ + u8 shd = bcm7xxx_28nm_ephy_regnum_to_shd(regnum); + int ret; + + if (!bcm7xxx_28nm_ephy_dev_valid(devnum) || + shd == MII_BCM7XXX_REG_INVALID) + return -EOPNOTSUPP; + + /* set shadow mode 2 */ + ret = __phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, + MII_BCM7XXX_SHD_MODE_2, 0); + if (ret < 0) + return ret; + + /* Access the desired shadow register address */ + ret = __phy_write(phydev, MII_BCM7XXX_SHD_2_ADDR_CTRL, shd); + if (ret < 0) + goto reset_shadow_mode; + + /* Write the desired value in the shadow register */ + __phy_write(phydev, MII_BCM7XXX_SHD_2_CTRL_STAT, val); + +reset_shadow_mode: + /* reset shadow mode 2 */ + return __phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, 0, + MII_BCM7XXX_SHD_MODE_2); +} + static int bcm7xxx_28nm_ephy_resume(struct phy_device *phydev) { int ret; @@ -563,6 +667,8 @@ .get_strings = bcm_phy_get_strings, \ .get_stats = bcm7xxx_28nm_get_phy_stats, \ .probe = bcm7xxx_28nm_probe, \ + .read_mmd = bcm7xxx_28nm_ephy_read_mmd, \ + .write_mmd = bcm7xxx_28nm_ephy_write_mmd, \ } #define BCM7XXX_40NM_EPHY(_oui, _name) \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/dp83640_reg.h +++ linux-azure-5.4.0/drivers/net/phy/dp83640_reg.h @@ -5,7 +5,7 @@ #ifndef HAVE_DP83640_REGISTERS #define HAVE_DP83640_REGISTERS -#define PAGE0 0x0000 +/* #define PAGE0 0x0000 */ #define PHYCR2 0x001c /* PHY Control Register 2 */ #define PAGE4 0x0004 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/dp83822.c +++ linux-azure-5.4.0/drivers/net/phy/dp83822.c @@ -197,9 +197,7 @@ if (misr_status < 0) return misr_status; - misr_status |= (DP83822_RX_ERR_HF_INT_EN | - DP83822_FALSE_CARRIER_HF_INT_EN | - DP83822_ANEG_COMPLETE_INT_EN | + misr_status |= (DP83822_ANEG_COMPLETE_INT_EN | DP83822_DUP_MODE_CHANGE_INT_EN | DP83822_SPEED_CHANGED_INT_EN | DP83822_LINK_STAT_INT_EN | @@ -238,7 +236,7 @@ if (err < 0) return err; - err = phy_write(phydev, MII_DP83822_MISR1, 0); + err = phy_write(phydev, MII_DP83822_MISR2, 0); if (err < 0) return err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/mdio-aspeed.c +++ linux-azure-5.4.0/drivers/net/phy/mdio-aspeed.c @@ -61,6 +61,13 @@ iowrite32(ctrl, ctx->base + ASPEED_MDIO_CTRL); + rc = readl_poll_timeout(ctx->base + ASPEED_MDIO_CTRL, ctrl, + !(ctrl & ASPEED_MDIO_CTRL_FIRE), + ASPEED_MDIO_INTERVAL_US, + ASPEED_MDIO_TIMEOUT_US); + if (rc < 0) + return rc; + rc = readl_poll_timeout(ctx->base + ASPEED_MDIO_DATA, data, data & ASPEED_MDIO_DATA_IDLE, ASPEED_MDIO_INTERVAL_US, @@ -141,6 +148,7 @@ { .compatible = "aspeed,ast2600-mdio", }, { }, }; +MODULE_DEVICE_TABLE(of, aspeed_mdio_of_match); static struct platform_driver aspeed_mdio_driver = { .driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/mdio-mux.c +++ linux-azure-5.4.0/drivers/net/phy/mdio-mux.c @@ -82,6 +82,17 @@ static int parent_count; +static void mdio_mux_uninit_children(struct mdio_mux_parent_bus *pb) +{ + struct mdio_mux_child_bus *cb = pb->children; + + while (cb) { + mdiobus_unregister(cb->mii_bus); + mdiobus_free(cb->mii_bus); + cb = cb->next; + } +} + int mdio_mux_init(struct device *dev, struct device_node *mux_node, int (*switch_fn)(int cur, int desired, void *data), @@ -144,7 +155,7 @@ cb = devm_kzalloc(dev, sizeof(*cb), GFP_KERNEL); if (!cb) { ret_val = -ENOMEM; - continue; + goto err_loop; } cb->bus_number = v; cb->parent = pb; @@ -152,8 +163,7 @@ cb->mii_bus = mdiobus_alloc(); if (!cb->mii_bus) { ret_val = -ENOMEM; - devm_kfree(dev, cb); - continue; + goto err_loop; } cb->mii_bus->priv = cb; @@ -165,11 +175,15 @@ cb->mii_bus->write = mdio_mux_write; r = of_mdiobus_register(cb->mii_bus, child_bus_node); if (r) { + mdiobus_free(cb->mii_bus); + if (r == -EPROBE_DEFER) { + ret_val = r; + goto err_loop; + } + devm_kfree(dev, cb); dev_err(dev, "Error: Failed to register MDIO bus for child %pOF\n", child_bus_node); - mdiobus_free(cb->mii_bus); - devm_kfree(dev, cb); } else { cb->next = pb->children; pb->children = cb; @@ -182,6 +196,10 @@ dev_err(dev, "Error: No acceptable child buses found\n"); devm_kfree(dev, pb); + +err_loop: + mdio_mux_uninit_children(pb); + of_node_put(child_bus_node); err_pb_kz: put_device(&parent_bus->dev); err_parent_bus: @@ -193,14 +211,8 @@ void mdio_mux_uninit(void *mux_handle) { struct mdio_mux_parent_bus *pb = mux_handle; - struct mdio_mux_child_bus *cb = pb->children; - - while (cb) { - mdiobus_unregister(cb->mii_bus); - mdiobus_free(cb->mii_bus); - cb = cb->next; - } + mdio_mux_uninit_children(pb); put_device(&pb->mii_bus->dev); } EXPORT_SYMBOL_GPL(mdio_mux_uninit); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/mdio_device.c +++ linux-azure-5.4.0/drivers/net/phy/mdio_device.c @@ -180,6 +180,16 @@ return 0; } +static void mdio_shutdown(struct device *dev) +{ + struct mdio_device *mdiodev = to_mdio_device(dev); + struct device_driver *drv = mdiodev->dev.driver; + struct mdio_driver *mdiodrv = to_mdio_driver(drv); + + if (mdiodrv->shutdown) + mdiodrv->shutdown(mdiodev); +} + /** * mdio_driver_register - register an mdio_driver with the MDIO layer * @new_driver: new mdio_driver to register @@ -194,6 +204,7 @@ mdiodrv->driver.bus = &mdio_bus_type; mdiodrv->driver.probe = mdio_probe; mdiodrv->driver.remove = mdio_remove; + mdiodrv->driver.shutdown = mdio_shutdown; retval = driver_register(&mdiodrv->driver); if (retval) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/phy-c45.c +++ linux-azure-5.4.0/drivers/net/phy/phy-c45.c @@ -239,9 +239,10 @@ /* The link state is latched low so that momentary link * drops can be detected. Do not double-read the status - * in polling mode to detect such short link drops. + * in polling mode to detect such short link drops except + * the link was already down. */ - if (!phy_polling_mode(phydev)) { + if (!phy_polling_mode(phydev) || !phydev->link) { val = phy_read_mmd(phydev, devad, MDIO_STAT1); if (val < 0) return val; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/phy/phy-core.c +++ linux-azure-5.4.0/drivers/net/phy/phy-core.c @@ -128,11 +128,11 @@ PHY_SETTING( 2500, FULL, 2500baseT_Full ), PHY_SETTING( 2500, FULL, 2500baseX_Full ), /* 1G */ - PHY_SETTING( 1000, FULL, 1000baseKX_Full ), PHY_SETTING( 1000, FULL, 1000baseT_Full ), PHY_SETTING( 1000, HALF, 1000baseT_Half ), PHY_SETTING( 1000, FULL, 1000baseT1_Full ), PHY_SETTING( 1000, FULL, 1000baseX_Full ), + PHY_SETTING( 1000, FULL, 1000baseKX_Full ), /* 100M */ PHY_SETTING( 100, FULL, 100baseT_Full ), PHY_SETTING( 100, FULL, 100baseT1_Full ), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/plip/plip.c +++ linux-azure-5.4.0/drivers/net/plip/plip.c @@ -1103,7 +1103,7 @@ /* Any address will do - we take the first. We already have the first two bytes filled with 0xfc, from plip_init_dev(). */ - const struct in_ifaddr *ifa = rcu_dereference(in_dev->ifa_list); + const struct in_ifaddr *ifa = rtnl_dereference(in_dev->ifa_list); if (ifa != NULL) { memcpy(dev->dev_addr+2, &ifa->ifa_local, 4); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/ppp/ppp_generic.c +++ linux-azure-5.4.0/drivers/net/ppp/ppp_generic.c @@ -69,6 +69,8 @@ #define MPHDRLEN 6 /* multilink protocol header length */ #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */ +#define PPP_PROTO_LEN 2 + /* * An instance of /dev/ppp can be associated with either a ppp * interface unit or a ppp channel. In both cases, file->private_data @@ -283,7 +285,7 @@ static int ppp_connect_channel(struct channel *pch, int unit); static int ppp_disconnect_channel(struct channel *pch); static void ppp_destroy_channel(struct channel *pch); -static int unit_get(struct idr *p, void *ptr); +static int unit_get(struct idr *p, void *ptr, int min); static int unit_set(struct idr *p, void *ptr, int n); static void unit_put(struct idr *p, int n); static void *unit_find(struct idr *p, int n); @@ -498,6 +500,9 @@ if (!pf) return -ENXIO; + /* All PPP packets should start with the 2-byte protocol */ + if (count < PPP_PROTO_LEN) + return -EINVAL; ret = -ENOMEM; skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL); if (!skb) @@ -959,9 +964,20 @@ mutex_lock(&pn->all_ppp_mutex); if (unit < 0) { - ret = unit_get(&pn->units_idr, ppp); + ret = unit_get(&pn->units_idr, ppp, 0); if (ret < 0) goto err; + if (!ifname_is_set) { + while (1) { + snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ret); + if (!__dev_get_by_name(ppp->ppp_net, ppp->dev->name)) + break; + unit_put(&pn->units_idr, ret); + ret = unit_get(&pn->units_idr, ppp, ret + 1); + if (ret < 0) + goto err; + } + } } else { /* Caller asked for a specific unit number. Fail with -EEXIST * if unavailable. For backward compatibility, return -EEXIST @@ -1110,7 +1126,7 @@ * the PPP unit identifer as suffix (i.e. ppp). This allows * userspace to infer the device name using to the PPPIOCGUNIT ioctl. */ - if (!tb[IFLA_IFNAME]) + if (!tb[IFLA_IFNAME] || !nla_len(tb[IFLA_IFNAME]) || !*(char *)nla_data(tb[IFLA_IFNAME])) conf.ifname_is_set = false; err = ppp_dev_configure(src_net, dev, &conf); @@ -1533,7 +1549,7 @@ } ++ppp->stats64.tx_packets; - ppp->stats64.tx_bytes += skb->len - 2; + ppp->stats64.tx_bytes += skb->len - PPP_PROTO_LEN; switch (proto) { case PPP_IP: @@ -3294,9 +3310,9 @@ } /* get new free unit number and associate pointer with it */ -static int unit_get(struct idr *p, void *ptr) +static int unit_get(struct idr *p, void *ptr, int min) { - return idr_alloc(p, ptr, 0, 0, GFP_KERNEL); + return idr_alloc(p, ptr, min, 0, GFP_KERNEL); } /* put unit number back to a pool */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/sungem_phy.c +++ linux-azure-5.4.0/drivers/net/sungem_phy.c @@ -454,6 +454,7 @@ int can_low_power = 1; if (np == NULL || of_get_property(np, "no-autolowpower", NULL)) can_low_power = 0; + of_node_put(np); if (can_low_power) { /* Enable automatic low-power */ sungem_phy_write(phy, 0x1c, 0x9002); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/Kconfig +++ linux-azure-5.4.0/drivers/net/usb/Kconfig @@ -99,6 +99,10 @@ config USB_RTL8152 tristate "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters" select MII + select CRC32 + select CRYPTO + select CRYPTO_HASH + select CRYPTO_SHA256 help This option adds support for Realtek RTL8152 based USB 2.0 10/100 Ethernet adapters and RTL8153 based USB 3.0 10/100/1000 @@ -113,6 +117,7 @@ select PHYLIB select MICROCHIP_PHY select FIXED_PHY + select CRC32 help This option adds support for Microchip LAN78XX based USB 2 & USB 3 10/100/1000 Ethernet adapters. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/aqc111.c +++ linux-azure-5.4.0/drivers/net/usb/aqc111.c @@ -1102,10 +1102,15 @@ if (start_of_descs != desc_offset) goto err; - /* self check desc_offset from header*/ - if (desc_offset >= skb_len) + /* self check desc_offset from header and make sure that the + * bounds of the metadata array are inside the SKB + */ + if (pkt_count * 2 + desc_offset >= skb_len) goto err; + /* Packets must not overlap the metadata array */ + skb_trim(skb, desc_offset); + if (pkt_count == 0) goto err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/cdc_eem.c +++ linux-azure-5.4.0/drivers/net/usb/cdc_eem.c @@ -123,10 +123,10 @@ } skb2 = skb_copy_expand(skb, EEM_HEAD, ETH_FCS_LEN + padlen, flags); + dev_kfree_skb_any(skb); if (!skb2) return NULL; - dev_kfree_skb_any(skb); skb = skb2; done: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/cdc_mbim.c +++ linux-azure-5.4.0/drivers/net/usb/cdc_mbim.c @@ -653,6 +653,16 @@ .driver_info = (unsigned long)&cdc_mbim_info_avoid_altsetting_toggle, }, + /* Telit LN920 */ + { USB_DEVICE_AND_INTERFACE_INFO(0x1bc7, 0x1061, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), + .driver_info = (unsigned long)&cdc_mbim_info_avoid_altsetting_toggle, + }, + + /* Telit FN990 */ + { USB_DEVICE_AND_INTERFACE_INFO(0x1bc7, 0x1071, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), + .driver_info = (unsigned long)&cdc_mbim_info_avoid_altsetting_toggle, + }, + /* default entry */ { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE), .driver_info = (unsigned long)&cdc_mbim_info_zlp, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/mcs7830.c +++ linux-azure-5.4.0/drivers/net/usb/mcs7830.c @@ -108,8 +108,16 @@ static int mcs7830_get_reg(struct usbnet *dev, u16 index, u16 size, void *data) { - return usbnet_read_cmd(dev, MCS7830_RD_BREQ, MCS7830_RD_BMREQ, - 0x0000, index, data, size); + int ret; + + ret = usbnet_read_cmd(dev, MCS7830_RD_BREQ, MCS7830_RD_BMREQ, + 0x0000, index, data, size); + if (ret < 0) + return ret; + else if (ret < size) + return -ENODATA; + + return ret; } static int mcs7830_set_reg(struct usbnet *dev, u16 index, u16 size, const void *data) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/pegasus.c +++ linux-azure-5.4.0/drivers/net/usb/pegasus.c @@ -495,11 +495,11 @@ goto goon; rx_status = buf[count - 2]; - if (rx_status & 0x1e) { + if (rx_status & 0x1c) { netif_dbg(pegasus, rx_err, net, "RX packet error %x\n", rx_status); net->stats.rx_errors++; - if (rx_status & 0x06) /* long or runt */ + if (rx_status & 0x04) /* runt */ net->stats.rx_length_errors++; if (rx_status & 0x08) net->stats.rx_crc_errors++; @@ -747,12 +747,16 @@ set_registers(pegasus, EthCtrl0, sizeof(tmp), &tmp); } -static inline void get_interrupt_interval(pegasus_t *pegasus) +static inline int get_interrupt_interval(pegasus_t *pegasus) { u16 data; u8 interval; + int ret; + + ret = read_eprom_word(pegasus, 4, &data); + if (ret < 0) + return ret; - read_eprom_word(pegasus, 4, &data); interval = data >> 8; if (pegasus->usb->speed != USB_SPEED_HIGH) { if (interval < 0x80) { @@ -767,6 +771,8 @@ } } pegasus->intr_interval = interval; + + return 0; } static void set_carrier(struct net_device *net) @@ -1186,7 +1192,9 @@ | NETIF_MSG_PROBE | NETIF_MSG_LINK); pegasus->features = usb_dev_id[dev_index].private; - get_interrupt_interval(pegasus); + res = get_interrupt_interval(pegasus); + if (res) + goto out2; if (reset_mac(pegasus)) { dev_err(&intf->dev, "can't reset MAC\n"); res = -EIO; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/sr9700.c +++ linux-azure-5.4.0/drivers/net/usb/sr9700.c @@ -410,7 +410,7 @@ /* ignore the CRC length */ len = (skb->data[1] | (skb->data[2] << 8)) - 4; - if (len > ETH_FRAME_LEN) + if (len > ETH_FRAME_LEN || len > skb->len) return 0; /* the last packet of current skb */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/usbnet.c +++ linux-azure-5.4.0/drivers/net/usb/usbnet.c @@ -833,13 +833,11 @@ mpn = !test_and_clear_bit(EVENT_NO_RUNTIME_PM, &dev->flags); - /* deferred work (task, timer, softirq) must also stop. - * can't flush_scheduled_work() until we drop rtnl (later), - * else workers could deadlock; so make workers a NOP. - */ + /* deferred work (timer, softirq, task) must also stop */ dev->flags = 0; del_timer_sync (&dev->delay); tasklet_kill (&dev->bh); + cancel_work_sync(&dev->kevent); if (!pm) usb_autopm_put_interface(dev->intf); @@ -1587,6 +1585,7 @@ struct usbnet *dev; struct usb_device *xdev; struct net_device *net; + struct urb *urb; dev = usb_get_intfdata(intf); usb_set_intfdata(intf, NULL); @@ -1603,9 +1602,11 @@ net = dev->net; unregister_netdev (net); - cancel_work_sync(&dev->kevent); - - usb_scuttle_anchored_urbs(&dev->deferred); + while ((urb = usb_get_from_anchor(&dev->deferred))) { + dev_kfree_skb(urb->context); + kfree(urb->sg); + usb_free_urb(urb); + } if (dev->driver_info->unbind) dev->driver_info->unbind (dev, intf); @@ -1773,6 +1774,11 @@ if (!dev->rx_urb_size) dev->rx_urb_size = dev->hard_mtu; dev->maxpacket = usb_maxpacket (dev->udev, dev->out, 1); + if (dev->maxpacket == 0) { + /* that is a broken device */ + status = -ENODEV; + goto out4; + } /* let userspace know we have a random address */ if (ether_addr_equal(net->dev_addr, node_id)) @@ -1982,7 +1988,7 @@ cmd, reqtype, value, index, size); if (size) { - buf = kmalloc(size, GFP_KERNEL); + buf = kmalloc(size, GFP_NOIO); if (!buf) goto out; } @@ -2014,7 +2020,7 @@ cmd, reqtype, value, index, size); if (data) { - buf = kmemdup(data, size, GFP_KERNEL); + buf = kmemdup(data, size, GFP_NOIO); if (!buf) goto out; } else { @@ -2115,7 +2121,7 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype, u16 value, u16 index, const void *data, u16 size) { - struct usb_ctrlrequest *req = NULL; + struct usb_ctrlrequest *req; struct urb *urb; int err = -ENOMEM; void *buf = NULL; @@ -2133,7 +2139,7 @@ if (!buf) { netdev_err(dev->net, "Error allocating buffer" " in %s!\n", __func__); - goto fail_free; + goto fail_free_urb; } } @@ -2157,14 +2163,21 @@ if (err < 0) { netdev_err(dev->net, "Error submitting the control" " message: status=%d\n", err); - goto fail_free; + goto fail_free_all; } return 0; +fail_free_all: + kfree(req); fail_free_buf: kfree(buf); -fail_free: - kfree(req); + /* + * avoid a double free + * needed because the flag can be set only + * after filling the URB + */ + urb->transfer_flags = 0; +fail_free_urb: usb_free_urb(urb); fail: return err; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/usb/zaurus.c +++ linux-azure-5.4.0/drivers/net/usb/zaurus.c @@ -256,6 +256,11 @@ .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \ .bInterfaceProtocol = USB_CDC_PROTO_NONE +#define ZAURUS_FAKE_INTERFACE \ + .bInterfaceClass = USB_CLASS_COMM, \ + .bInterfaceSubClass = USB_CDC_SUBCLASS_MDLM, \ + .bInterfaceProtocol = USB_CDC_PROTO_NONE + /* SA-1100 based Sharp Zaurus ("collie"), or compatible. */ { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO @@ -315,6 +320,13 @@ .driver_info = ZAURUS_PXA_INFO, }, { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO + | USB_DEVICE_ID_MATCH_DEVICE, + .idVendor = 0x04DD, + .idProduct = 0x9032, /* SL-6000 */ + ZAURUS_FAKE_INTERFACE, + .driver_info = (unsigned long)&bogus_mdlm_info, +}, { + .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | USB_DEVICE_ID_MATCH_DEVICE, .idVendor = 0x04DD, /* reported with some C860 units */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath.h +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath.h @@ -197,12 +197,13 @@ bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr); void ath_hw_setbssidmask(struct ath_common *common); -void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key); +void ath_key_delete(struct ath_common *common, u8 hw_key_idx); int ath_key_config(struct ath_common *common, struct ieee80211_vif *vif, struct ieee80211_sta *sta, struct ieee80211_key_conf *key); bool ath_hw_keyreset(struct ath_common *common, u16 entry); +bool ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac); void ath_hw_cycle_counters_update(struct ath_common *common); int32_t ath_hw_get_listen_time(struct ath_common *common); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath10k/wow.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath10k/wow.c @@ -337,14 +337,15 @@ if (patterns[i].mask[j / 8] & BIT(j % 8)) bitmask[j] = 0xff; old_pattern.mask = bitmask; - new_pattern = old_pattern; if (ar->wmi.rx_decap_mode == ATH10K_HW_TXRX_NATIVE_WIFI) { - if (patterns[i].pkt_offset < ETH_HLEN) + if (patterns[i].pkt_offset < ETH_HLEN) { ath10k_wow_convert_8023_to_80211(&new_pattern, &old_pattern); - else + } else { + new_pattern = old_pattern; new_pattern.pkt_offset += WOW_HDR_LEN - ETH_HLEN; + } } if (WARN_ON(new_pattern.pattern_len > WOW_MAX_PATTERN_SIZE)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath5k/eeprom.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath5k/eeprom.c @@ -746,6 +746,9 @@ } } + if (idx == AR5K_EEPROM_N_PD_CURVES) + goto err_out; + ee->ee_pd_gains[mode] = 1; pd = &chinfo[pier].pd_curves[idx]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath5k/mac80211-ops.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath5k/mac80211-ops.c @@ -521,7 +521,7 @@ } break; case DISABLE_KEY: - ath_key_delete(common, key); + ath_key_delete(common, key->hw_key_idx); break; default: ret = -EINVAL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath6kl/usb.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath6kl/usb.c @@ -340,6 +340,11 @@ le16_to_cpu(endpoint->wMaxPacketSize), endpoint->bInterval); } + + /* Ignore broken descriptors. */ + if (usb_endpoint_maxp(endpoint) == 0) + continue; + urbcount = 0; pipe_num = @@ -907,7 +912,7 @@ req, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, value, index, buf, - size, 2 * HZ); + size, 2000); if (ret < 0) { ath6kl_warn("Failed to read usb control message: %d\n", ret); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath9k/ar9003_phy.h +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/ar9003_phy.h @@ -720,7 +720,7 @@ #define AR_CH0_TOP2 (AR_SREV_9300(ah) ? 0x1628c : \ (AR_SREV_9462(ah) ? 0x16290 : 0x16284)) #define AR_CH0_TOP2_XPABIASLVL (AR_SREV_9561(ah) ? 0x1e00 : 0xf000) -#define AR_CH0_TOP2_XPABIASLVL_S 12 +#define AR_CH0_TOP2_XPABIASLVL_S (AR_SREV_9561(ah) ? 9 : 12) #define AR_CH0_XTAL (AR_SREV_9300(ah) ? 0x16294 : \ ((AR_SREV_9462(ah) || AR_SREV_9565(ah)) ? 0x16298 : \ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath9k/htc.h +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/htc.h @@ -325,11 +325,11 @@ } #ifdef CONFIG_ATH9K_HTC_DEBUGFS - -#define TX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) -#define TX_STAT_ADD(c, a) (hif_dev->htc_handle->drv_priv->debug.tx_stats.c += a) -#define RX_STAT_INC(c) (hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c++) -#define RX_STAT_ADD(c, a) (hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c += a) +#define __STAT_SAFE(expr) (hif_dev->htc_handle->drv_priv ? (expr) : 0) +#define TX_STAT_INC(c) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.tx_stats.c++) +#define TX_STAT_ADD(c, a) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.tx_stats.c += a) +#define RX_STAT_INC(c) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c++) +#define RX_STAT_ADD(c, a) __STAT_SAFE(hif_dev->htc_handle->drv_priv->debug.skbrx_stats.c += a) #define CAB_STAT_INC priv->debug.tx_stats.cab_queued++ #define TX_QSTAT_INC(q) (priv->debug.tx_stats.queue_stats[q]++) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/ath9k/hw.h +++ linux-azure-5.4.0/drivers/net/wireless/ath/ath9k/hw.h @@ -819,6 +819,7 @@ struct ath9k_pacal_info pacal_info; struct ar5416Stats stats; struct ath9k_tx_queue_info txq[ATH9K_NUM_TX_QUEUES]; + DECLARE_BITMAP(pending_del_keymap, ATH_KEYMAX); enum ath9k_int imask; u32 imrs2_reg; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/carl9170/Kconfig +++ linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/Kconfig @@ -16,13 +16,11 @@ config CARL9170_LEDS bool "SoftLED Support" - depends on CARL9170 - select MAC80211_LEDS - select LEDS_CLASS - select NEW_LEDS default y + depends on CARL9170 + depends on MAC80211_LEDS help - This option is necessary, if you want your device' LEDs to blink + This option is necessary, if you want your device's LEDs to blink. Say Y, unless you need the LEDs for firmware debugging. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/carl9170/tx.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/carl9170/tx.c @@ -1557,6 +1557,9 @@ goto out; } } while (ar->beacon_enabled && i--); + + /* no entry found in list */ + return NULL; } out: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/dfs_pattern_detector.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/dfs_pattern_detector.c @@ -182,10 +182,12 @@ if (cd == NULL) return; list_del(&cd->head); - for (i = 0; i < dpd->num_radar_types; i++) { - struct pri_detector *de = cd->detectors[i]; - if (de != NULL) - de->exit(de); + if (cd->detectors) { + for (i = 0; i < dpd->num_radar_types; i++) { + struct pri_detector *de = cd->detectors[i]; + if (de != NULL) + de->exit(de); + } } kfree(cd->detectors); kfree(cd); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/key.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/key.c @@ -84,8 +84,7 @@ } EXPORT_SYMBOL(ath_hw_keyreset); -static bool ath_hw_keysetmac(struct ath_common *common, - u16 entry, const u8 *mac) +bool ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac) { u32 macHi, macLo; u32 unicast_flag = AR_KEYTABLE_VALID; @@ -125,6 +124,7 @@ return true; } +EXPORT_SYMBOL(ath_hw_keysetmac); static bool ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, const struct ath_keyval *k, @@ -581,29 +581,38 @@ /* * Delete Key. */ -void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key) +void ath_key_delete(struct ath_common *common, u8 hw_key_idx) { - ath_hw_keyreset(common, key->hw_key_idx); - if (key->hw_key_idx < IEEE80211_WEP_NKID) + /* Leave CCMP and TKIP (main key) configured to avoid disabling + * encryption for potentially pending frames already in a TXQ with the + * keyix pointing to this key entry. Instead, only clear the MAC address + * to prevent RX processing from using this key cache entry. + */ + if (test_bit(hw_key_idx, common->ccmp_keymap) || + test_bit(hw_key_idx, common->tkip_keymap)) + ath_hw_keysetmac(common, hw_key_idx, NULL); + else + ath_hw_keyreset(common, hw_key_idx); + if (hw_key_idx < IEEE80211_WEP_NKID) return; - clear_bit(key->hw_key_idx, common->keymap); - clear_bit(key->hw_key_idx, common->ccmp_keymap); - if (key->cipher != WLAN_CIPHER_SUITE_TKIP) + clear_bit(hw_key_idx, common->keymap); + clear_bit(hw_key_idx, common->ccmp_keymap); + if (!test_bit(hw_key_idx, common->tkip_keymap)) return; - clear_bit(key->hw_key_idx + 64, common->keymap); + clear_bit(hw_key_idx + 64, common->keymap); - clear_bit(key->hw_key_idx, common->tkip_keymap); - clear_bit(key->hw_key_idx + 64, common->tkip_keymap); + clear_bit(hw_key_idx, common->tkip_keymap); + clear_bit(hw_key_idx + 64, common->tkip_keymap); if (!(common->crypt_caps & ATH_CRYPT_CAP_MIC_COMBINED)) { - ath_hw_keyreset(common, key->hw_key_idx + 32); - clear_bit(key->hw_key_idx + 32, common->keymap); - clear_bit(key->hw_key_idx + 64 + 32, common->keymap); + ath_hw_keyreset(common, hw_key_idx + 32); + clear_bit(hw_key_idx + 32, common->keymap); + clear_bit(hw_key_idx + 64 + 32, common->keymap); - clear_bit(key->hw_key_idx + 32, common->tkip_keymap); - clear_bit(key->hw_key_idx + 64 + 32, common->tkip_keymap); + clear_bit(hw_key_idx + 32, common->tkip_keymap); + clear_bit(hw_key_idx + 64 + 32, common->tkip_keymap); } } EXPORT_SYMBOL(ath_key_delete); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/wcn36xx/dxe.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/dxe.c @@ -563,6 +563,10 @@ dxe = ctl->desc; while (!(READ_ONCE(dxe->ctrl) & WCN36xx_DXE_CTRL_VLD)) { + /* do not read until we own DMA descriptor */ + dma_rmb(); + + /* read/modify DMA descriptor */ skb = ctl->skb; dma_addr = dxe->dst_addr_l; ret = wcn36xx_dxe_fill_skb(wcn->dev, ctl, GFP_ATOMIC); @@ -573,9 +577,15 @@ dma_unmap_single(wcn->dev, dma_addr, WCN36XX_PKT_SIZE, DMA_FROM_DEVICE); wcn36xx_rx_skb(wcn, skb); - } /* else keep old skb not submitted and use it for rx DMA */ + } + /* else keep old skb not submitted and reuse it for rx DMA + * (dropping the packet that it contained) + */ + /* flush descriptor changes before re-marking as valid */ + dma_wmb(); dxe->ctrl = ctrl; + ctl = ctl->next; dxe = ctl->desc; } @@ -942,4 +952,9 @@ wcn36xx_dxe_ch_free_skbs(wcn, &wcn->dxe_rx_l_ch); wcn36xx_dxe_ch_free_skbs(wcn, &wcn->dxe_rx_h_ch); + + wcn36xx_dxe_deinit_descs(wcn->dev, &wcn->dxe_tx_l_ch); + wcn36xx_dxe_deinit_descs(wcn->dev, &wcn->dxe_tx_h_ch); + wcn36xx_dxe_deinit_descs(wcn->dev, &wcn->dxe_rx_l_ch); + wcn36xx_dxe_deinit_descs(wcn->dev, &wcn->dxe_rx_h_ch); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/wcn36xx/smd.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/wcn36xx/smd.c @@ -2311,7 +2311,7 @@ wcn36xx_dbg(WCN36XX_DBG_HAL, "beacon missed bss_index %d\n", tmp->bss_index); vif = wcn36xx_priv_to_vif(tmp); - ieee80211_connection_loss(vif); + ieee80211_beacon_loss(vif); } return 0; } @@ -2326,7 +2326,7 @@ wcn36xx_dbg(WCN36XX_DBG_HAL, "beacon missed bss_index %d\n", rsp->bss_index); vif = wcn36xx_priv_to_vif(tmp); - ieee80211_connection_loss(vif); + ieee80211_beacon_loss(vif); return 0; } } @@ -2340,30 +2340,52 @@ size_t len) { struct wcn36xx_hal_delete_sta_context_ind_msg *rsp = buf; - struct wcn36xx_vif *tmp; + struct wcn36xx_vif *vif_priv; + struct ieee80211_vif *vif; + struct ieee80211_bss_conf *bss_conf; struct ieee80211_sta *sta; + bool found = false; if (len != sizeof(*rsp)) { wcn36xx_warn("Corrupted delete sta indication\n"); return -EIO; } - wcn36xx_dbg(WCN36XX_DBG_HAL, "delete station indication %pM index %d\n", - rsp->addr2, rsp->sta_id); + wcn36xx_dbg(WCN36XX_DBG_HAL, + "delete station indication %pM index %d reason %d\n", + rsp->addr2, rsp->sta_id, rsp->reason_code); - list_for_each_entry(tmp, &wcn->vif_list, list) { + list_for_each_entry(vif_priv, &wcn->vif_list, list) { rcu_read_lock(); - sta = ieee80211_find_sta(wcn36xx_priv_to_vif(tmp), rsp->addr2); - if (sta) - ieee80211_report_low_ack(sta, 0); + vif = wcn36xx_priv_to_vif(vif_priv); + + if (vif->type == NL80211_IFTYPE_STATION) { + /* We could call ieee80211_find_sta too, but checking + * bss_conf is clearer. + */ + bss_conf = &vif->bss_conf; + if (vif_priv->sta_assoc && + !memcmp(bss_conf->bssid, rsp->addr2, ETH_ALEN)) { + found = true; + wcn36xx_dbg(WCN36XX_DBG_HAL, + "connection loss bss_index %d\n", + vif_priv->bss_index); + ieee80211_connection_loss(vif); + } + } else { + sta = ieee80211_find_sta(vif, rsp->addr2); + if (sta) { + found = true; + ieee80211_report_low_ack(sta, 0); + } + } + rcu_read_unlock(); - if (sta) + if (found) return 0; } - wcn36xx_warn("STA with addr %pM and index %d not found\n", - rsp->addr2, - rsp->sta_id); + wcn36xx_warn("BSS or STA with addr %pM not found\n", rsp->addr2); return -ENOENT; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ath/wil6210/debugfs.c +++ linux-azure-5.4.0/drivers/net/wireless/ath/wil6210/debugfs.c @@ -1021,20 +1021,14 @@ void *cmd; int cmdlen = len - sizeof(struct wmi_cmd_hdr); u16 cmdid; - int rc, rc1; + int rc1; - if (cmdlen < 0) + if (cmdlen < 0 || *ppos != 0) return -EINVAL; - wmi = kmalloc(len, GFP_KERNEL); - if (!wmi) - return -ENOMEM; - - rc = simple_write_to_buffer(wmi, len, ppos, buf, len); - if (rc < 0) { - kfree(wmi); - return rc; - } + wmi = memdup_user(buf, len); + if (IS_ERR(wmi)) + return PTR_ERR(wmi); cmd = (cmdlen > 0) ? &wmi[1] : NULL; cmdid = le16_to_cpu(wmi->command_id); @@ -1044,7 +1038,7 @@ wil_info(wil, "0x%04x[%d] -> %d\n", cmdid, cmdlen, rc1); - return rc; + return len; } static const struct file_operations fops_wmi = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/broadcom/b43/phy_g.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/b43/phy_g.c @@ -2297,7 +2297,7 @@ b43_phy_mask(dev, B43_PHY_G_CRS, 0x7FFF); b43_set_all_gains(dev, 3, 8, 1); - start = (channel - 5 > 0) ? channel - 5 : 1; + start = (channel > 5) ? channel - 5 : 1; end = (channel + 5 < 14) ? channel + 5 : 13; for (i = start; i <= end; i++) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/broadcom/b43legacy/phy.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/b43legacy/phy.c @@ -1123,7 +1123,7 @@ struct b43legacy_phy *phy = &dev->phy; u16 regstack[12] = { 0 }; u16 mls; - u16 fval; + s16 fval; int i; int j; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/broadcom/b43legacy/radio.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/b43legacy/radio.c @@ -283,7 +283,7 @@ & 0x7FFF); b43legacy_set_all_gains(dev, 3, 8, 1); - start = (channel - 5 > 0) ? channel - 5 : 1; + start = (channel > 5) ? channel - 5 : 1; end = (channel + 5 < 14) ? channel + 5 : 13; for (i = start; i <= end; i++) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.c @@ -207,6 +207,8 @@ size = BRCMF_FW_MAX_NVRAM_SIZE; else size = data_len; + /* Add space for properties we may add */ + size += strlen(BRCMF_FW_DEFAULT_BOARDREV) + 1; /* Alloc for extra 0 byte + roundup by 4 + length field */ size += 1 + 3 + sizeof(u32); nvp->nvram = kzalloc(size, GFP_KERNEL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.c +++ linux-azure-5.4.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.c @@ -154,12 +154,12 @@ struct brcmf_pno_macaddr_le pfn_mac; u8 *mac_addr = NULL; u8 *mac_mask = NULL; - int err, i; + int err, i, ri; - for (i = 0; i < pi->n_reqs; i++) - if (pi->reqs[i]->flags & NL80211_SCAN_FLAG_RANDOM_ADDR) { - mac_addr = pi->reqs[i]->mac_addr; - mac_mask = pi->reqs[i]->mac_addr_mask; + for (ri = 0; ri < pi->n_reqs; ri++) + if (pi->reqs[ri]->flags & NL80211_SCAN_FLAG_RANDOM_ADDR) { + mac_addr = pi->reqs[ri]->mac_addr; + mac_mask = pi->reqs[ri]->mac_addr_mask; break; } @@ -181,7 +181,7 @@ pfn_mac.mac[0] |= 0x02; brcmf_dbg(SCAN, "enabling random mac: reqid=%llu mac=%pM\n", - pi->reqs[i]->reqid, pfn_mac.mac); + pi->reqs[ri]->reqid, pfn_mac.mac); err = brcmf_fil_iovar_data_set(ifp, "pfn_macaddr", &pfn_mac, sizeof(pfn_mac)); if (err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/ipw2x00/libipw_tx.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/ipw2x00/libipw_tx.c @@ -383,7 +383,7 @@ /* Each fragment may need to have room for encryption * pre/postfix */ - if (host_encrypt) + if (host_encrypt && crypt && crypt->ops) bytes_per_frag -= crypt->ops->extra_mpdu_prefix_len + crypt->ops->extra_mpdu_postfix_len; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/iwlwifi/dvm/mac80211.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/dvm/mac80211.c @@ -303,7 +303,7 @@ priv->is_open = 1; IWL_DEBUG_MAC80211(priv, "leave\n"); - return 0; + return ret; } static void iwlagn_mac_stop(struct ieee80211_hw *hw) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/iwlwifi/iwl-drv.h +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/iwl-drv.h @@ -145,4 +145,7 @@ #define IWL_EXPORT_SYMBOL(sym) #endif +/* max retry for init flow */ +#define IWL_MAX_INIT_RETRY 2 + #endif /* __iwl_drv_h__ */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c @@ -1043,8 +1043,10 @@ return -ENOMEM; #ifdef CONFIG_IWLWIFI_DEBUGFS - if (mvm->beacon_inject_active) + if (mvm->beacon_inject_active) { + dev_kfree_skb(beacon); return -EBUSY; + } #endif ret = iwl_mvm_mac_ctxt_send_beacon(mvm, vif, beacon); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/power.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/power.c @@ -626,6 +626,9 @@ struct iwl_power_vifs *power_iterator = _data; bool active = mvmvif->phy_ctxt && mvmvif->phy_ctxt->id < NUM_PHY_CTX; + if (!mvmvif->uploaded) + return; + switch (ieee80211_vif_type_p2p(vif)) { case NL80211_IFTYPE_P2P_DEVICE: break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/utils.c +++ linux-azure-5.4.0/drivers/net/wireless/intel/iwlwifi/mvm/utils.c @@ -758,6 +758,9 @@ lockdep_assert_held(&mvm->mutex); + if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM) + return false; + if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1) return false; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intersil/p54/main.c +++ linux-azure-5.4.0/drivers/net/wireless/intersil/p54/main.c @@ -682,7 +682,7 @@ * queues have already been stopped and no new frames can sneak * up from behind. */ - while ((total = p54_flush_count(priv) && i--)) { + while ((total = p54_flush_count(priv)) && i--) { /* waste time */ msleep(20); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/intersil/p54/p54spi.c +++ linux-azure-5.4.0/drivers/net/wireless/intersil/p54/p54spi.c @@ -164,7 +164,7 @@ ret = p54_parse_firmware(dev, priv->firmware); if (ret) { - release_firmware(priv->firmware); + /* the firmware is released by the caller */ return ret; } @@ -659,6 +659,7 @@ return 0; err_free_common: + release_firmware(priv->firmware); free_irq(gpio_to_irq(p54spi_gpio_irq), spi); err_free_gpio_irq: gpio_free(p54spi_gpio_irq); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/marvell/libertas/if_usb.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/libertas/if_usb.c @@ -287,11 +287,13 @@ return 0; err_get_fw: + usb_put_dev(udev); lbs_remove_card(priv); err_add_card: if_usb_reset_device(cardp); dealloc: if_usb_free(cardp); + kfree(cardp); error: return r; @@ -316,6 +318,7 @@ /* Unlink and free urb */ if_usb_free(cardp); + kfree(cardp); usb_set_intfdata(intf, NULL); usb_put_dev(interface_to_usbdev(intf)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/marvell/mwifiex/11h.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/11h.c @@ -303,5 +303,7 @@ mwifiex_dbg(priv->adapter, MSG, "indicating channel switch completion to kernel\n"); + mutex_lock(&priv->wdev.mtx); cfg80211_ch_switch_notify(priv->netdev, &priv->dfs_chandef); + mutex_unlock(&priv->wdev.mtx); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/marvell/mwifiex/11n.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/11n.c @@ -657,14 +657,15 @@ uint16_t del_ba_param_set; memset(&delba, 0, sizeof(delba)); - delba.del_ba_param_set = cpu_to_le16(tid << DELBA_TID_POS); - del_ba_param_set = le16_to_cpu(delba.del_ba_param_set); + del_ba_param_set = tid << DELBA_TID_POS; + if (initiator) del_ba_param_set |= IEEE80211_DELBA_PARAM_INITIATOR_MASK; else del_ba_param_set &= ~IEEE80211_DELBA_PARAM_INITIATOR_MASK; + delba.del_ba_param_set = cpu_to_le16(del_ba_param_set); memcpy(&delba.peer_mac_addr, peer_mac, ETH_ALEN); /* We don't wait for the response of this command */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/marvell/mwifiex/cmdevt.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/cmdevt.c @@ -322,9 +322,9 @@ adapter->seq_num++; sleep_cfm_buf->seq_num = - cpu_to_le16((HostCmd_SET_SEQ_NO_BSS_INFO + cpu_to_le16(HostCmd_SET_SEQ_NO_BSS_INFO (adapter->seq_num, priv->bss_num, - priv->bss_type))); + priv->bss_type)); mwifiex_dbg(adapter, CMD, "cmd: DNLD_CMD: %#x, act %#x, len %d, seqno %#x\n", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/marvell/mwifiex/sta_event.c +++ linux-azure-5.4.0/drivers/net/wireless/marvell/mwifiex/sta_event.c @@ -364,10 +364,12 @@ sta_ptr = mwifiex_get_sta_entry(priv, tp->peermac); if (sta_ptr && sta_ptr->tx_pause != tp->tx_pause) { sta_ptr->tx_pause = tp->tx_pause; + spin_unlock_bh(&priv->sta_list_spinlock); mwifiex_update_ralist_tx_pause(priv, tp->peermac, tp->tx_pause); + } else { + spin_unlock_bh(&priv->sta_list_spinlock); } - spin_unlock_bh(&priv->sta_list_spinlock); } } @@ -399,11 +401,13 @@ sta_ptr = mwifiex_get_sta_entry(priv, tp->peermac); if (sta_ptr && sta_ptr->tx_pause != tp->tx_pause) { sta_ptr->tx_pause = tp->tx_pause; + spin_unlock_bh(&priv->sta_list_spinlock); mwifiex_update_ralist_tx_pause(priv, tp->peermac, tp->tx_pause); + } else { + spin_unlock_bh(&priv->sta_list_spinlock); } - spin_unlock_bh(&priv->sta_list_spinlock); } } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/mediatek/mt76/mt76x02_mac.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt76x02_mac.c @@ -154,7 +154,7 @@ mt76_wr(dev, MT_WCID_DROP(idx), (val & ~bit) | (bit * drop)); } -static __le16 +static u16 mt76x02_mac_tx_rate_val(struct mt76x02_dev *dev, const struct ieee80211_tx_rate *rate, u8 *nss_val) { @@ -200,14 +200,14 @@ rateval |= MT_RXWI_RATE_SGI; *nss_val = nss; - return cpu_to_le16(rateval); + return rateval; } void mt76x02_mac_wcid_set_rate(struct mt76x02_dev *dev, struct mt76_wcid *wcid, const struct ieee80211_tx_rate *rate) { s8 max_txpwr_adj = mt76x02_tx_get_max_txpwr_adj(dev, rate); - __le16 rateval; + u16 rateval; u32 tx_info; s8 nss; @@ -320,7 +320,7 @@ struct ieee80211_key_conf *key = info->control.hw_key; u32 wcid_tx_info; u16 rate_ht_mask = FIELD_PREP(MT_RXWI_RATE_PHY, BIT(1) | BIT(2)); - u16 txwi_flags = 0; + u16 txwi_flags = 0, rateval; u8 nss; s8 txpwr_adj, max_txpwr_adj; u8 ccmp_pn[8], nstreams = dev->mt76.chainmask & 0xf; @@ -356,14 +356,15 @@ if (wcid && (rate->idx < 0 || !rate->count)) { wcid_tx_info = wcid->tx_info; - txwi->rate = FIELD_GET(MT_WCID_TX_INFO_RATE, wcid_tx_info); + rateval = FIELD_GET(MT_WCID_TX_INFO_RATE, wcid_tx_info); max_txpwr_adj = FIELD_GET(MT_WCID_TX_INFO_TXPWR_ADJ, wcid_tx_info); nss = FIELD_GET(MT_WCID_TX_INFO_NSS, wcid_tx_info); } else { - txwi->rate = mt76x02_mac_tx_rate_val(dev, rate, &nss); + rateval = mt76x02_mac_tx_rate_val(dev, rate, &nss); max_txpwr_adj = mt76x02_tx_get_max_txpwr_adj(dev, rate); } + txwi->rate = cpu_to_le16(rateval); txpwr_adj = mt76x02_tx_get_txpwr_adj(dev, dev->mt76.txpower_conf, max_txpwr_adj); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/mediatek/mt76/mt76x2/pci.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt76/mt76x2/pci.c @@ -76,7 +76,7 @@ mt76_rmw_field(dev, 0x15a10, 0x1f << 16, 0x9); /* RG_SSUSB_G1_CDR_BIC_LTR = 0xf */ - mt76_rmw_field(dev, 0x15a0c, 0xf << 28, 0xf); + mt76_rmw_field(dev, 0x15a0c, 0xfU << 28, 0xf); /* RG_SSUSB_CDR_BR_PE1D = 0x3 */ mt76_rmw_field(dev, 0x15c58, 0x3 << 6, 0x3); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/mediatek/mt7601u/usb.c +++ linux-azure-5.4.0/drivers/net/wireless/mediatek/mt7601u/usb.c @@ -26,6 +26,7 @@ { USB_DEVICE(0x2717, 0x4106) }, { USB_DEVICE(0x2955, 0x0001) }, { USB_DEVICE(0x2955, 0x1001) }, + { USB_DEVICE(0x2955, 0x1003) }, { USB_DEVICE(0x2a5f, 0x1000) }, { USB_DEVICE(0x7392, 0x7710) }, { 0, } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ralink/rt2x00/rt2x00usb.c +++ linux-azure-5.4.0/drivers/net/wireless/ralink/rt2x00/rt2x00usb.c @@ -25,6 +25,9 @@ if (status == -ENODEV || status == -ENOENT) return true; + if (!test_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags)) + return false; + if (status == -EPROTO || status == -ETIMEDOUT) rt2x00dev->num_proto_errs++; else only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ray_cs.c +++ linux-azure-5.4.0/drivers/net/wireless/ray_cs.c @@ -382,6 +382,8 @@ goto failed; local->sram = ioremap(link->resource[2]->start, resource_size(link->resource[2])); + if (!local->sram) + goto failed; /*** Set up 16k window for shared memory (receive buffer) ***************/ link->resource[3]->flags |= @@ -396,6 +398,8 @@ goto failed; local->rmem = ioremap(link->resource[3]->start, resource_size(link->resource[3])); + if (!local->rmem) + goto failed; /*** Set up window for attribute memory ***********************************/ link->resource[4]->flags |= @@ -410,6 +414,8 @@ goto failed; local->amem = ioremap(link->resource[4]->start, resource_size(link->resource[4])); + if (!local->amem) + goto failed; dev_dbg(&link->dev, "ray_config sram=%p\n", local->sram); dev_dbg(&link->dev, "ray_config rmem=%p\n", local->rmem); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/realtek/rtl818x/rtl8180/dev.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtl818x/rtl8180/dev.c @@ -460,8 +460,10 @@ struct rtl8180_priv *priv = dev->priv; struct rtl8180_tx_ring *ring; struct rtl8180_tx_desc *entry; + unsigned int prio = 0; unsigned long flags; - unsigned int idx, prio, hw_prio; + unsigned int idx, hw_prio; + dma_addr_t mapping; u32 tx_flags; u8 rc_flags; @@ -470,7 +472,9 @@ /* do arithmetic and then convert to le16 */ u16 frame_duration = 0; - prio = skb_get_queue_mapping(skb); + /* rtl8180/rtl8185 only has one useable tx queue */ + if (dev->queues > IEEE80211_AC_BK) + prio = skb_get_queue_mapping(skb); ring = &priv->tx_ring[prio]; mapping = pci_map_single(priv->pdev, skb->data, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.c @@ -28,7 +28,7 @@ usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), RTL8187_REQ_GET_REG, RTL8187_REQT_READ, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits8, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits8, sizeof(val), 500); val = priv->io_dmabuf->bits8; mutex_unlock(&priv->io_mutex); @@ -45,7 +45,7 @@ usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), RTL8187_REQ_GET_REG, RTL8187_REQT_READ, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits16, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits16, sizeof(val), 500); val = priv->io_dmabuf->bits16; mutex_unlock(&priv->io_mutex); @@ -62,7 +62,7 @@ usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), RTL8187_REQ_GET_REG, RTL8187_REQT_READ, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits32, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits32, sizeof(val), 500); val = priv->io_dmabuf->bits32; mutex_unlock(&priv->io_mutex); @@ -79,7 +79,7 @@ usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits8, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits8, sizeof(val), 500); mutex_unlock(&priv->io_mutex); } @@ -93,7 +93,7 @@ usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits16, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits16, sizeof(val), 500); mutex_unlock(&priv->io_mutex); } @@ -107,7 +107,7 @@ usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, (unsigned long)addr, idx & 0x03, - &priv->io_dmabuf->bits32, sizeof(val), HZ / 2); + &priv->io_dmabuf->bits32, sizeof(val), 500); mutex_unlock(&priv->io_mutex); } @@ -183,7 +183,7 @@ usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, addr, 0x8225, &priv->io_dmabuf->bits16, sizeof(data), - HZ / 2); + 500); mutex_unlock(&priv->io_mutex); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c @@ -554,9 +554,43 @@ } } +static void rtl8192eu_log_next_device_info(struct rtl8xxxu_priv *priv, + char *record_name, + char *device_info, + unsigned int *record_offset) +{ + char *record = device_info + *record_offset; + + /* A record is [ total length | 0x03 | value ] */ + unsigned char l = record[0]; + + /* + * The whole device info section seems to be 80 characters, make sure + * we don't read further. + */ + if (*record_offset + l > 80) { + dev_warn(&priv->udev->dev, + "invalid record length %d while parsing \"%s\" at offset %u.\n", + l, record_name, *record_offset); + return; + } + + if (l >= 2) { + char value[80]; + + memcpy(value, &record[2], l - 2); + value[l - 2] = '\0'; + dev_info(&priv->udev->dev, "%s: %s\n", record_name, value); + *record_offset = *record_offset + l; + } else { + dev_info(&priv->udev->dev, "%s not available.\n", record_name); + } +} + static int rtl8192eu_parse_efuse(struct rtl8xxxu_priv *priv) { struct rtl8192eu_efuse *efuse = &priv->efuse_wifi.efuse8192eu; + unsigned int record_offset; int i; if (efuse->rtl_id != cpu_to_le16(0x8129)) @@ -604,12 +638,25 @@ priv->has_xtalk = 1; priv->xtalk = priv->efuse_wifi.efuse8192eu.xtal_k & 0x3f; - dev_info(&priv->udev->dev, "Vendor: %.7s\n", efuse->vendor_name); - dev_info(&priv->udev->dev, "Product: %.11s\n", efuse->device_name); - if (memchr_inv(efuse->serial, 0xff, 11)) - dev_info(&priv->udev->dev, "Serial: %.11s\n", efuse->serial); - else - dev_info(&priv->udev->dev, "Serial not available.\n"); + /* + * device_info section seems to be laid out as records + * [ total length | 0x03 | value ] so: + * - vendor length + 2 + * - 0x03 + * - vendor string (not null terminated) + * - product length + 2 + * - 0x03 + * - product string (not null terminated) + * Then there is one or 2 0x00 on all the 4 devices I own or found + * dumped online. + * As previous version of the code handled an optional serial + * string, I now assume there may be a third record if the + * length is not 0. + */ + record_offset = 0; + rtl8192eu_log_next_device_info(priv, "Vendor", efuse->device_info, &record_offset); + rtl8192eu_log_next_device_info(priv, "Product", efuse->device_info, &record_offset); + rtl8192eu_log_next_device_info(priv, "Serial", efuse->device_info, &record_offset); if (rtl8xxxu_debug & RTL8XXXU_DEBUG_EFUSE) { unsigned char *raw = priv->efuse_wifi.raw; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/realtek/rtlwifi/debug.c +++ linux-azure-5.4.0/drivers/net/wireless/realtek/rtlwifi/debug.c @@ -349,8 +349,8 @@ tmp_len = (count > sizeof(tmp) - 1 ? sizeof(tmp) - 1 : count); - if (!buffer || copy_from_user(tmp, buffer, tmp_len)) - return count; + if (copy_from_user(tmp, buffer, tmp_len)) + return -EFAULT; tmp[tmp_len] = '\0'; @@ -360,8 +360,8 @@ &h2c_data[4], &h2c_data[5], &h2c_data[6], &h2c_data[7]); - if (h2c_len <= 0) - return count; + if (h2c_len == 0) + return -EINVAL; for (i = 0; i < h2c_len; i++) h2c_data_packed[i] = (u8)h2c_data[i]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/rsi/rsi_91x_core.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_core.c @@ -400,6 +400,8 @@ info = IEEE80211_SKB_CB(skb); tx_params = (struct skb_info *)info->driver_data; + /* info->driver_data and info->control part of union so make copy */ + tx_params->have_key = !!info->control.hw_key; wh = (struct ieee80211_hdr *)&skb->data[0]; tx_params->sta_id = 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/rsi/rsi_91x_main.c +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_91x_main.c @@ -23,6 +23,7 @@ #include "rsi_common.h" #include "rsi_coex.h" #include "rsi_hal.h" +#include "rsi_usb.h" u32 rsi_zone_enabled = /* INFO_ZONE | INIT_ZONE | @@ -167,6 +168,9 @@ frame_desc = &rx_pkt[index]; actual_length = *(u16 *)&frame_desc[0]; offset = *(u16 *)&frame_desc[2]; + if (!rcv_pkt_len && offset > + RSI_MAX_RX_USB_PKT_SIZE - FRAME_DESC_SZ) + goto fail; queueno = rsi_get_queueno(frame_desc, offset); length = rsi_get_length(frame_desc, offset); @@ -210,9 +214,10 @@ bt_pkt_type = frame_desc[offset + BT_RX_PKT_TYPE_OFST]; if (bt_pkt_type == BT_CARD_READY_IND) { rsi_dbg(INFO_ZONE, "BT Card ready recvd\n"); - if (rsi_bt_ops.attach(common, &g_proto_ops)) - rsi_dbg(ERR_ZONE, - "Failed to attach BT module\n"); + if (common->fsm_state == FSM_MAC_INIT_DONE) + rsi_attach_bt(common); + else + common->bt_defer_attach = true; } else { if (common->bt_adapter) rsi_bt_ops.recv_pkt(common->bt_adapter, @@ -277,6 +282,15 @@ } #endif +void rsi_attach_bt(struct rsi_common *common) +{ +#ifdef CONFIG_RSI_COEX + if (rsi_bt_ops.attach(common, &g_proto_ops)) + rsi_dbg(ERR_ZONE, + "Failed to attach BT module\n"); +#endif +} + /** * rsi_91x_init() - This function initializes os interface operations. * @void: Void. @@ -358,6 +372,7 @@ if (common->coex_mode > 1) { if (rsi_coex_attach(common)) { rsi_dbg(ERR_ZONE, "Failed to init coex module\n"); + rsi_kill_thread(&common->tx_thread); goto err; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/rsi/rsi_hal.h +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_hal.h @@ -28,6 +28,17 @@ #define DEV_OPMODE_AP_BT 6 #define DEV_OPMODE_AP_BT_DUAL 14 +#define DEV_OPMODE_PARAM_DESC \ + __stringify(DEV_OPMODE_WIFI_ALONE) "[Wi-Fi alone], " \ + __stringify(DEV_OPMODE_BT_ALONE) "[BT classic alone], " \ + __stringify(DEV_OPMODE_BT_LE_ALONE) "[BT LE alone], " \ + __stringify(DEV_OPMODE_BT_DUAL) "[BT classic + BT LE alone], " \ + __stringify(DEV_OPMODE_STA_BT) "[Wi-Fi STA + BT classic], " \ + __stringify(DEV_OPMODE_STA_BT_LE) "[Wi-Fi STA + BT LE], " \ + __stringify(DEV_OPMODE_STA_BT_DUAL) "[Wi-Fi STA + BT classic + BT LE], " \ + __stringify(DEV_OPMODE_AP_BT) "[Wi-Fi AP + BT classic], " \ + __stringify(DEV_OPMODE_AP_BT_DUAL) "[Wi-Fi AP + BT classic + BT LE]" + #define FLASH_WRITE_CHUNK_SIZE (4 * 1024) #define FLASH_SECTOR_SIZE (4 * 1024) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/rsi/rsi_main.h +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_main.h @@ -61,6 +61,7 @@ extern u32 rsi_zone_enabled; extern __printf(2, 3) void rsi_dbg(u32 zone, const char *fmt, ...); +#define RSI_MAX_BANDS 2 #define RSI_MAX_VIFS 3 #define NUM_EDCA_QUEUES 4 #define IEEE80211_ADDR_LEN 6 @@ -139,6 +140,7 @@ u8 internal_hdr_size; struct ieee80211_vif *vif; u8 vap_id; + bool have_key; }; enum edca_queue { @@ -151,7 +153,6 @@ }; struct security_info { - bool security_enable; u32 ptk_cipher; u32 gtk_cipher; }; @@ -230,6 +231,12 @@ u32 ps_options; }; +struct rsi_rate_config { + u32 configured_mask; /* configured by mac80211 bits 0-11=legacy 12+ mcs */ + u16 fixed_hw_rate; + bool fixed_enabled; +}; + struct rsi_common { struct rsi_hw *priv; struct vif_priv vif_info[RSI_MAX_VIFS]; @@ -255,8 +262,8 @@ u8 channel_width; u16 rts_threshold; - u16 bitrate_mask[2]; - u32 fixedrate_mask[2]; + u32 bitrate_mask[RSI_MAX_BANDS]; + struct rsi_rate_config rate_config[RSI_MAX_BANDS]; u8 rf_reset; struct transmit_q_stats tx_stats; @@ -277,7 +284,6 @@ u8 mac_id; u8 radio_id; u16 rate_pwr[20]; - u16 min_rate; /* WMM algo related */ u8 selected_qnum; @@ -321,6 +327,7 @@ struct ieee80211_vif *roc_vif; bool eapol4_confirm; + bool bt_defer_attach; void *bt_adapter; struct cfg80211_scan_request *hwscan; @@ -402,5 +409,6 @@ enum rsi_host_intf rsi_get_host_intf(void *priv); void rsi_set_bt_context(void *priv, void *bt_context); +void rsi_attach_bt(struct rsi_common *common); #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/rsi/rsi_usb.h +++ linux-azure-5.4.0/drivers/net/wireless/rsi/rsi_usb.h @@ -44,6 +44,8 @@ #define RSI_USB_BUF_SIZE 4096 #define RSI_USB_CTRL_BUF_SIZE 0x04 +#define RSI_MAX_RX_USB_PKT_SIZE 3000 + struct rx_usb_ctrl_block { u8 *data; struct urb *rx_urb; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/st/cw1200/cw1200_sdio.c +++ linux-azure-5.4.0/drivers/net/wireless/st/cw1200/cw1200_sdio.c @@ -60,6 +60,7 @@ { SDIO_DEVICE(SDIO_VENDOR_ID_STE, SDIO_DEVICE_ID_STE_CW1200) }, { /* end: all zeroes */ }, }; +MODULE_DEVICE_TABLE(sdio, cw1200_sdio_ids); /* hwbus_ops implemetation */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/net/wireless/ti/wl1251/cmd.c +++ linux-azure-5.4.0/drivers/net/wireless/ti/wl1251/cmd.c @@ -466,9 +466,12 @@ cmd->channels[i].channel = channels[i]->hw_value; } - cmd->params.ssid_len = ssid_len; - if (ssid) - memcpy(cmd->params.ssid, ssid, ssid_len); + if (ssid) { + int len = clamp_val(ssid_len, 0, IEEE80211_MAX_SSID_LEN); + + cmd->params.ssid_len = len; + memcpy(cmd->params.ssid, ssid, len); + } ret = wl1251_cmd_send(wl, CMD_SCAN, cmd, sizeof(*cmd)); if (ret < 0) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/nfcmrvl/i2c.c +++ linux-azure-5.4.0/drivers/nfc/nfcmrvl/i2c.c @@ -151,10 +151,15 @@ ret = -EREMOTEIO; } else ret = 0; + } + + if (ret) { kfree_skb(skb); + return ret; } - return ret; + consume_skb(skb); + return 0; } static void nfcmrvl_i2c_nci_update_config(struct nfcmrvl_private *priv, @@ -186,9 +191,9 @@ pdata->irq_polarity = IRQF_TRIGGER_RISING; ret = irq_of_parse_and_map(node, 0); - if (ret < 0) { - pr_err("Unable to get irq, error: %d\n", ret); - return ret; + if (!ret) { + pr_err("Unable to get irq\n"); + return -EINVAL; } pdata->irq = ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/nfcmrvl/main.c +++ linux-azure-5.4.0/drivers/nfc/nfcmrvl/main.c @@ -194,6 +194,7 @@ { struct nci_dev *ndev = priv->ndev; + nci_unregister_device(ndev); if (priv->ndev->nfc_dev->fw_download_in_progress) nfcmrvl_fw_dnld_abort(priv); @@ -202,7 +203,6 @@ if (gpio_is_valid(priv->config.reset_n_io)) gpio_free(priv->config.reset_n_io); - nci_unregister_device(ndev); nci_free_device(ndev); kfree(priv); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/nfcmrvl/spi.c +++ linux-azure-5.4.0/drivers/nfc/nfcmrvl/spi.c @@ -129,9 +129,9 @@ } ret = irq_of_parse_and_map(node, 0); - if (ret < 0) { - pr_err("Unable to get irq, error: %d\n", ret); - return ret; + if (!ret) { + pr_err("Unable to get irq\n"); + return -EINVAL; } pdata->irq = ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/nfcmrvl/usb.c +++ linux-azure-5.4.0/drivers/nfc/nfcmrvl/usb.c @@ -401,13 +401,25 @@ int err; while ((urb = usb_get_from_anchor(&drv_data->deferred))) { + usb_anchor_urb(urb, &drv_data->tx_anchor); + err = usb_submit_urb(urb, GFP_ATOMIC); - if (err) + if (err) { + kfree(urb->setup_packet); + usb_unanchor_urb(urb); + usb_free_urb(urb); break; + } drv_data->tx_in_flight++; + usb_free_urb(urb); + } + + /* Cleanup the rest deferred urbs. */ + while ((urb = usb_get_from_anchor(&drv_data->deferred))) { + kfree(urb->setup_packet); + usb_free_urb(urb); } - usb_scuttle_anchored_urbs(&drv_data->deferred); } static int nfcmrvl_resume(struct usb_interface *intf) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/nfcsim.c +++ linux-azure-5.4.0/drivers/nfc/nfcsim.c @@ -192,8 +192,7 @@ if (!IS_ERR(skb)) dev_kfree_skb(skb); - - skb = ERR_PTR(-ENODEV); + return; } dev->cb(dev->nfc_digital_dev, dev->arg, skb); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/st21nfca/i2c.c +++ linux-azure-5.4.0/drivers/nfc/st21nfca/i2c.c @@ -533,7 +533,8 @@ phy->gpiod_ena = devm_gpiod_get(dev, "enable", GPIOD_OUT_LOW); if (IS_ERR(phy->gpiod_ena)) { nfc_err(dev, "Unable to get ENABLE GPIO\n"); - return PTR_ERR(phy->gpiod_ena); + r = PTR_ERR(phy->gpiod_ena); + goto out_free; } phy->se_status.is_ese_present = @@ -544,7 +545,7 @@ r = st21nfca_hci_platform_init(phy); if (r < 0) { nfc_err(&client->dev, "Unable to reboot st21nfca\n"); - return r; + goto out_free; } r = devm_request_threaded_irq(&client->dev, client->irq, NULL, @@ -553,15 +554,23 @@ ST21NFCA_HCI_DRIVER_NAME, phy); if (r < 0) { nfc_err(&client->dev, "Unable to register IRQ handler\n"); - return r; + goto out_free; } - return st21nfca_hci_probe(phy, &i2c_phy_ops, LLC_SHDLC_NAME, - ST21NFCA_FRAME_HEADROOM, - ST21NFCA_FRAME_TAILROOM, - ST21NFCA_HCI_LLC_MAX_PAYLOAD, - &phy->hdev, - &phy->se_status); + r = st21nfca_hci_probe(phy, &i2c_phy_ops, LLC_SHDLC_NAME, + ST21NFCA_FRAME_HEADROOM, + ST21NFCA_FRAME_TAILROOM, + ST21NFCA_HCI_LLC_MAX_PAYLOAD, + &phy->hdev, + &phy->se_status); + if (r) + goto out_free; + + return 0; + +out_free: + kfree_skb(phy->pending_skb); + return r; } static int st21nfca_hci_i2c_remove(struct i2c_client *client) @@ -574,6 +583,8 @@ if (phy->powered) st21nfca_hci_i2c_disable(phy); + if (phy->pending_skb) + kfree_skb(phy->pending_skb); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/st21nfca/se.c +++ linux-azure-5.4.0/drivers/nfc/st21nfca/se.c @@ -241,7 +241,7 @@ } EXPORT_SYMBOL(st21nfca_hci_se_io); -static void st21nfca_se_wt_timeout(struct timer_list *t) +static void st21nfca_se_wt_work(struct work_struct *work) { /* * No answer from the secure element @@ -254,8 +254,9 @@ */ /* hardware reset managed through VCC_UICC_OUT power supply */ u8 param = 0x01; - struct st21nfca_hci_info *info = from_timer(info, t, - se_info.bwi_timer); + struct st21nfca_hci_info *info = container_of(work, + struct st21nfca_hci_info, + se_info.timeout_work); pr_debug("\n"); @@ -273,6 +274,13 @@ info->se_info.cb(info->se_info.cb_context, NULL, 0, -ETIME); } +static void st21nfca_se_wt_timeout(struct timer_list *t) +{ + struct st21nfca_hci_info *info = from_timer(info, t, se_info.bwi_timer); + + schedule_work(&info->se_info.timeout_work); +} + static void st21nfca_se_activation_timeout(struct timer_list *t) { struct st21nfca_hci_info *info = from_timer(info, t, @@ -296,6 +304,8 @@ int r = 0; struct device *dev = &hdev->ndev->dev; struct nfc_evt_transaction *transaction; + u32 aid_len; + u8 params_len; pr_debug("connectivity gate event: %x\n", event); @@ -304,34 +314,48 @@ r = nfc_se_connectivity(hdev->ndev, host); break; case ST21NFCA_EVT_TRANSACTION: - /* - * According to specification etsi 102 622 + /* According to specification etsi 102 622 * 11.2.2.4 EVT_TRANSACTION Table 52 * Description Tag Length * AID 81 5 to 16 * PARAMETERS 82 0 to 255 + * + * The key differences are aid storage length is variably sized + * in the packet, but fixed in nfc_evt_transaction, and that the aid_len + * is u8 in the packet, but u32 in the structure, and the tags in + * the packet are not included in nfc_evt_transaction. + * + * size in bytes: 1 1 5-16 1 1 0-255 + * offset: 0 1 2 aid_len + 2 aid_len + 3 aid_len + 4 + * member name: aid_tag(M) aid_len aid params_tag(M) params_len params + * example: 0x81 5-16 X 0x82 0-255 X */ - if (skb->len < NFC_MIN_AID_LENGTH + 2 && - skb->data[0] != NFC_EVT_TRANSACTION_AID_TAG) + if (skb->len < 2 || skb->data[0] != NFC_EVT_TRANSACTION_AID_TAG) return -EPROTO; - transaction = (struct nfc_evt_transaction *)devm_kzalloc(dev, - skb->len - 2, GFP_KERNEL); + aid_len = skb->data[1]; + + if (skb->len < aid_len + 4 || aid_len > sizeof(transaction->aid)) + return -EPROTO; + + params_len = skb->data[aid_len + 3]; + + /* Verify PARAMETERS tag is (82), and final check that there is enough + * space in the packet to read everything. + */ + if ((skb->data[aid_len + 2] != NFC_EVT_TRANSACTION_PARAMS_TAG) || + (skb->len < aid_len + 4 + params_len)) + return -EPROTO; + + transaction = devm_kzalloc(dev, sizeof(*transaction) + params_len, GFP_KERNEL); if (!transaction) return -ENOMEM; - transaction->aid_len = skb->data[1]; - memcpy(transaction->aid, &skb->data[2], - transaction->aid_len); - - /* Check next byte is PARAMETERS tag (82) */ - if (skb->data[transaction->aid_len + 2] != - NFC_EVT_TRANSACTION_PARAMS_TAG) - return -EPROTO; + transaction->aid_len = aid_len; + transaction->params_len = params_len; - transaction->params_len = skb->data[transaction->aid_len + 3]; - memcpy(transaction->params, skb->data + - transaction->aid_len + 4, transaction->params_len); + memcpy(transaction->aid, &skb->data[2], aid_len); + memcpy(transaction->params, &skb->data[aid_len + 4], params_len); r = nfc_se_transaction(hdev->ndev, host, transaction); break; @@ -355,6 +379,7 @@ switch (event) { case ST21NFCA_EVT_TRANSMIT_DATA: del_timer_sync(&info->se_info.bwi_timer); + cancel_work_sync(&info->se_info.timeout_work); info->se_info.bwi_active = false; r = nfc_hci_send_event(hdev, ST21NFCA_DEVICE_MGNT_GATE, ST21NFCA_EVT_SE_END_OF_APDU_TRANSFER, NULL, 0); @@ -384,6 +409,7 @@ struct st21nfca_hci_info *info = nfc_hci_get_clientdata(hdev); init_completion(&info->se_info.req_completion); + INIT_WORK(&info->se_info.timeout_work, st21nfca_se_wt_work); /* initialize timers */ timer_setup(&info->se_info.bwi_timer, st21nfca_se_wt_timeout, 0); info->se_info.bwi_active = false; @@ -411,6 +437,7 @@ if (info->se_info.se_active) del_timer_sync(&info->se_info.se_active_timer); + cancel_work_sync(&info->se_info.timeout_work); info->se_info.bwi_active = false; info->se_info.se_active = false; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nfc/st21nfca/st21nfca.h +++ linux-azure-5.4.0/drivers/nfc/st21nfca/st21nfca.h @@ -141,6 +141,7 @@ se_io_cb_t cb; void *cb_context; + struct work_struct timeout_work; }; struct st21nfca_hci_info { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ntb/test/ntb_msi_test.c +++ linux-azure-5.4.0/drivers/ntb/test/ntb_msi_test.c @@ -372,8 +372,10 @@ if (ret) goto remove_dbgfs; - if (!nm->isr_ctx) + if (!nm->isr_ctx) { + ret = -ENOMEM; goto remove_dbgfs; + } ntb_link_enable(ntb, NTB_SPEED_AUTO, NTB_WIDTH_AUTO); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nvdimm/namespace_devs.c +++ linux-azure-5.4.0/drivers/nvdimm/namespace_devs.c @@ -2486,7 +2486,7 @@ static int init_active_labels(struct nd_region *nd_region) { - int i; + int i, rc = 0; for (i = 0; i < nd_region->ndr_mappings; i++) { struct nd_mapping *nd_mapping = &nd_region->mapping[i]; @@ -2505,13 +2505,14 @@ else if (test_bit(NDD_ALIASING, &nvdimm->flags)) /* fail, labels needed to disambiguate dpa */; else - return 0; + continue; dev_err(&nd_region->dev, "%s: is %s, failing probe\n", dev_name(&nd_mapping->nvdimm->dev), test_bit(NDD_LOCKED, &nvdimm->flags) ? "locked" : "disabled"); - return -ENXIO; + rc = -ENXIO; + goto out; } nd_mapping->ndd = ndd; atomic_inc(&nvdimm->busy); @@ -2545,13 +2546,17 @@ break; } - if (i < nd_region->ndr_mappings) { + if (i < nd_region->ndr_mappings) + rc = -ENOMEM; + +out: + if (rc) { deactivate_labels(nd_region); - return -ENOMEM; + return rc; } return devm_add_action_or_reset(&nd_region->dev, deactivate_labels, - nd_region); + nd_region); } int nd_region_register_namespaces(struct nd_region *nd_region, int *err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nvdimm/pmem.c +++ linux-azure-5.4.0/drivers/nvdimm/pmem.c @@ -423,11 +423,11 @@ pmem->pfn_flags |= PFN_MAP; memcpy(&bb_res, &pmem->pgmap.res, sizeof(bb_res)); } else { + addr = devm_memremap(dev, pmem->phys_addr, + pmem->size, ARCH_MEMREMAP_PMEM); if (devm_add_action_or_reset(dev, pmem_release_queue, &pmem->pgmap)) return -ENOMEM; - addr = devm_memremap(dev, pmem->phys_addr, - pmem->size, ARCH_MEMREMAP_PMEM); memcpy(&bb_res, &nsio->res, sizeof(bb_res)); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nvme/host/trace.h +++ linux-azure-5.4.0/drivers/nvme/host/trace.h @@ -56,7 +56,7 @@ __field(u8, fctype) __field(u16, cid) __field(u32, nsid) - __field(u64, metadata) + __field(bool, metadata) __array(u8, cdw10, 24) ), TP_fast_assign( @@ -66,13 +66,13 @@ __entry->flags = cmd->common.flags; __entry->cid = cmd->common.command_id; __entry->nsid = le32_to_cpu(cmd->common.nsid); - __entry->metadata = le64_to_cpu(cmd->common.metadata); + __entry->metadata = !!blk_integrity_rq(req); __entry->fctype = cmd->fabrics.fctype; __assign_disk_name(__entry->disk, req->rq_disk); memcpy(__entry->cdw10, &cmd->common.cdw10, sizeof(__entry->cdw10)); ), - TP_printk("nvme%d: %sqid=%d, cmdid=%u, nsid=%u, flags=0x%x, meta=0x%llx, cmd=(%s %s)", + TP_printk("nvme%d: %sqid=%d, cmdid=%u, nsid=%u, flags=0x%x, meta=0x%x, cmd=(%s %s)", __entry->ctrl_id, __print_disk_name(__entry->disk), __entry->qid, __entry->cid, __entry->nsid, __entry->flags, __entry->metadata, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/nvme/target/configfs.c +++ linux-azure-5.4.0/drivers/nvme/target/configfs.c @@ -1148,6 +1148,8 @@ { struct nvmet_port *port = to_nvmet_port(item); + /* Let inflight controllers teardown complete */ + flush_scheduled_work(); list_del(&port->global_entry); kfree(port->ana_state); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/of/base.c +++ linux-azure-5.4.0/drivers/of/base.c @@ -1366,9 +1366,14 @@ * property data length */ if (it->cur + count > it->list_end) { - pr_err("%pOF: %s = %d found %d\n", - it->parent, it->cells_name, - count, it->cell_count); + if (it->cells_name) + pr_err("%pOF: %s = %d found %td\n", + it->parent, it->cells_name, + count, it->list_end - it->cur); + else + pr_err("%pOF: phandle %s needs %d, found %td\n", + it->parent, of_node_full_name(it->node), + count, it->list_end - it->cur); goto err; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/of/fdt.c +++ linux-azure-5.4.0/drivers/of/fdt.c @@ -315,7 +315,7 @@ for (offset = 0; offset >= 0 && depth >= initial_depth; offset = fdt_next_node(blob, offset, &depth)) { - if (WARN_ON_ONCE(depth >= FDT_MAX_DEPTH)) + if (WARN_ON_ONCE(depth >= FDT_MAX_DEPTH - 1)) continue; if (!IS_ENABLED(CONFIG_OF_KOBJ) && @@ -501,11 +501,11 @@ if (size && early_init_dt_reserve_memory_arch(base, size, nomap) == 0) - pr_debug("Reserved memory: reserved region for node '%s': base %pa, size %ld MiB\n", - uname, &base, (unsigned long)size / SZ_1M); + pr_debug("Reserved memory: reserved region for node '%s': base %pa, size %lu MiB\n", + uname, &base, (unsigned long)(size / SZ_1M)); else - pr_info("Reserved memory: failed to reserve memory for node '%s': base %pa, size %ld MiB\n", - uname, &base, (unsigned long)size / SZ_1M); + pr_info("Reserved memory: failed to reserve memory for node '%s': base %pa, size %lu MiB\n", + uname, &base, (unsigned long)(size / SZ_1M)); len -= t_len; if (first) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/ccio-dma.c +++ linux-azure-5.4.0/drivers/parisc/ccio-dma.c @@ -1003,7 +1003,7 @@ ioc->usg_calls++; #endif - while(sg_dma_len(sglist) && nents--) { + while (nents && sg_dma_len(sglist)) { #ifdef CCIO_COLLECT_STATS ioc->usg_pages += sg_dma_len(sglist) >> PAGE_SHIFT; @@ -1011,6 +1011,7 @@ ccio_unmap_page(dev, sg_dma_address(sglist), sg_dma_len(sglist), direction, 0); ++sglist; + nents--; } DBG_RUN_SG("%s() DONE (nents %d)\n", __func__, nents); @@ -1377,15 +1378,17 @@ } } -static void __init ccio_init_resources(struct ioc *ioc) +static int __init ccio_init_resources(struct ioc *ioc) { struct resource *res = ioc->mmio_region; char *name = kmalloc(14, GFP_KERNEL); - + if (unlikely(!name)) + return -ENOMEM; snprintf(name, 14, "GSC Bus [%d/]", ioc->hw_path); ccio_init_resource(res, name, &ioc->ioc_regs->io_io_low); ccio_init_resource(res + 1, name, &ioc->ioc_regs->io_io_low_hv); + return 0; } static int new_ioc_area(struct resource *res, unsigned long size, @@ -1540,7 +1543,11 @@ return -ENOMEM; } ccio_ioc_init(ioc); - ccio_init_resources(ioc); + if (ccio_init_resources(ioc)) { + iounmap(ioc->ioc_regs); + kfree(ioc); + return -ENOMEM; + } hppa_dma_ops = &ccio_ops; hba = kzalloc(sizeof(*hba), GFP_KERNEL); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/dino.c +++ linux-azure-5.4.0/drivers/parisc/dino.c @@ -142,9 +142,8 @@ { struct pci_hba_data hba; /* 'C' inheritance - must be first */ spinlock_t dinosaur_pen; - unsigned long txn_addr; /* EIR addr to generate interrupt */ - u32 txn_data; /* EIR data assign to each dino */ u32 imr; /* IRQ's which are enabled */ + struct gsc_irq gsc_irq; int global_irq[DINO_LOCAL_IRQS]; /* map IMR bit to global irq */ #ifdef DINO_DEBUG unsigned int dino_irr0; /* save most recent IRQ line stat */ @@ -156,15 +155,6 @@ return container_of(hba, struct dino_device, hba); } -/* Check if PCI device is behind a Card-mode Dino. */ -static int pci_dev_is_behind_card_dino(struct pci_dev *dev) -{ - struct dino_device *dino_dev; - - dino_dev = DINO_DEV(parisc_walk_tree(dev->bus->bridge)); - return is_card_dino(&dino_dev->hba.dev->id); -} - /* * Dino Configuration Space Accessor Functions */ @@ -348,14 +338,43 @@ if (tmp & DINO_MASK_IRQ(local_irq)) { DBG(KERN_WARNING "%s(): IRQ asserted! (ILR 0x%x)\n", __func__, tmp); - gsc_writel(dino_dev->txn_data, dino_dev->txn_addr); + gsc_writel(dino_dev->gsc_irq.txn_data, dino_dev->gsc_irq.txn_addr); } } +#ifdef CONFIG_SMP +static int dino_set_affinity_irq(struct irq_data *d, const struct cpumask *dest, + bool force) +{ + struct dino_device *dino_dev = irq_data_get_irq_chip_data(d); + struct cpumask tmask; + int cpu_irq; + u32 eim; + + if (!cpumask_and(&tmask, dest, cpu_online_mask)) + return -EINVAL; + + cpu_irq = cpu_check_affinity(d, &tmask); + if (cpu_irq < 0) + return cpu_irq; + + dino_dev->gsc_irq.txn_addr = txn_affinity_addr(d->irq, cpu_irq); + eim = ((u32) dino_dev->gsc_irq.txn_addr) | dino_dev->gsc_irq.txn_data; + __raw_writel(eim, dino_dev->hba.base_addr+DINO_IAR0); + + irq_data_update_effective_affinity(d, &tmask); + + return IRQ_SET_MASK_OK; +} +#endif + static struct irq_chip dino_interrupt_type = { .name = "GSC-PCI", .irq_unmask = dino_unmask_irq, .irq_mask = dino_mask_irq, +#ifdef CONFIG_SMP + .irq_set_affinity = dino_set_affinity_irq, +#endif }; @@ -447,6 +466,15 @@ DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_6832, quirk_cirrus_cardbus ); #ifdef CONFIG_TULIP +/* Check if PCI device is behind a Card-mode Dino. */ +static int pci_dev_is_behind_card_dino(struct pci_dev *dev) +{ + struct dino_device *dino_dev; + + dino_dev = DINO_DEV(parisc_walk_tree(dev->bus->bridge)); + return is_card_dino(&dino_dev->hba.dev->id); +} + static void pci_fixup_tulip(struct pci_dev *dev) { if (!pci_dev_is_behind_card_dino(dev)) @@ -806,7 +834,6 @@ { int status; u32 eim; - struct gsc_irq gsc_irq; struct resource *res; pcibios_register_hba(&dino_dev->hba); @@ -821,10 +848,8 @@ ** still only has 11 IRQ input lines - just map some of them ** to a different processor. */ - dev->irq = gsc_alloc_irq(&gsc_irq); - dino_dev->txn_addr = gsc_irq.txn_addr; - dino_dev->txn_data = gsc_irq.txn_data; - eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data; + dev->irq = gsc_alloc_irq(&dino_dev->gsc_irq); + eim = ((u32) dino_dev->gsc_irq.txn_addr) | dino_dev->gsc_irq.txn_data; /* ** Dino needs a PA "IRQ" to get a processor's attention. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/gsc.c +++ linux-azure-5.4.0/drivers/parisc/gsc.c @@ -135,10 +135,41 @@ */ } +#ifdef CONFIG_SMP +static int gsc_set_affinity_irq(struct irq_data *d, const struct cpumask *dest, + bool force) +{ + struct gsc_asic *gsc_dev = irq_data_get_irq_chip_data(d); + struct cpumask tmask; + int cpu_irq; + + if (!cpumask_and(&tmask, dest, cpu_online_mask)) + return -EINVAL; + + cpu_irq = cpu_check_affinity(d, &tmask); + if (cpu_irq < 0) + return cpu_irq; + + gsc_dev->gsc_irq.txn_addr = txn_affinity_addr(d->irq, cpu_irq); + gsc_dev->eim = ((u32) gsc_dev->gsc_irq.txn_addr) | gsc_dev->gsc_irq.txn_data; + + /* switch IRQ's for devices below LASI/WAX to other CPU */ + gsc_writel(gsc_dev->eim, gsc_dev->hpa + OFFSET_IAR); + + irq_data_update_effective_affinity(d, &tmask); + + return IRQ_SET_MASK_OK; +} +#endif + + static struct irq_chip gsc_asic_interrupt_type = { .name = "GSC-ASIC", .irq_unmask = gsc_asic_unmask_irq, .irq_mask = gsc_asic_mask_irq, +#ifdef CONFIG_SMP + .irq_set_affinity = gsc_set_affinity_irq, +#endif }; int gsc_assign_irq(struct irq_chip *type, void *data) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/gsc.h +++ linux-azure-5.4.0/drivers/parisc/gsc.h @@ -31,6 +31,7 @@ int version; int type; int eim; + struct gsc_irq gsc_irq; int global_irq[32]; }; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/iosapic.c +++ linux-azure-5.4.0/drivers/parisc/iosapic.c @@ -875,6 +875,7 @@ return vi->txn_irq; } +EXPORT_SYMBOL(iosapic_serial_irq); #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/lasi.c +++ linux-azure-5.4.0/drivers/parisc/lasi.c @@ -163,7 +163,6 @@ { extern void (*chassis_power_off)(void); struct gsc_asic *lasi; - struct gsc_irq gsc_irq; int ret; lasi = kzalloc(sizeof(*lasi), GFP_KERNEL); @@ -185,7 +184,7 @@ lasi_init_irq(lasi); /* the IRQ lasi should use */ - dev->irq = gsc_alloc_irq(&gsc_irq); + dev->irq = gsc_alloc_irq(&lasi->gsc_irq); if (dev->irq < 0) { printk(KERN_ERR "%s(): cannot get GSC irq\n", __func__); @@ -193,9 +192,9 @@ return -EBUSY; } - lasi->eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data; + lasi->eim = ((u32) lasi->gsc_irq.txn_addr) | lasi->gsc_irq.txn_data; - ret = request_irq(gsc_irq.irq, gsc_asic_intr, 0, "lasi", lasi); + ret = request_irq(lasi->gsc_irq.irq, gsc_asic_intr, 0, "lasi", lasi); if (ret < 0) { kfree(lasi); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/pdc_stable.c +++ linux-azure-5.4.0/drivers/parisc/pdc_stable.c @@ -979,8 +979,10 @@ entry->kobj.kset = paths_kset; err = kobject_init_and_add(&entry->kobj, &ktype_pdcspath, NULL, "%s", entry->name); - if (err) + if (err) { + kobject_put(&entry->kobj); return err; + } /* kobject is now registered */ write_lock(&entry->rw_lock); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parisc/wax.c +++ linux-azure-5.4.0/drivers/parisc/wax.c @@ -68,7 +68,6 @@ { struct gsc_asic *wax; struct parisc_device *parent; - struct gsc_irq gsc_irq; int ret; wax = kzalloc(sizeof(*wax), GFP_KERNEL); @@ -85,7 +84,7 @@ wax_init_irq(wax); /* the IRQ wax should use */ - dev->irq = gsc_claim_irq(&gsc_irq, WAX_GSC_IRQ); + dev->irq = gsc_claim_irq(&wax->gsc_irq, WAX_GSC_IRQ); if (dev->irq < 0) { printk(KERN_ERR "%s(): cannot get GSC irq\n", __func__); @@ -93,9 +92,9 @@ return -EBUSY; } - wax->eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data; + wax->eim = ((u32) wax->gsc_irq.txn_addr) | wax->gsc_irq.txn_data; - ret = request_irq(gsc_irq.irq, gsc_asic_intr, 0, "wax", wax); + ret = request_irq(wax->gsc_irq.irq, gsc_asic_intr, 0, "wax", wax); if (ret < 0) { kfree(wax); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/parport/ieee1284_ops.c +++ linux-azure-5.4.0/drivers/parport/ieee1284_ops.c @@ -535,7 +535,7 @@ goto out; /* Yield the port for a while. */ - if (count && dev->port->irq != PARPORT_IRQ_NONE) { + if (dev->port->irq != PARPORT_IRQ_NONE) { parport_release (dev); schedule_timeout_interruptible(msecs_to_jiffies(40)); parport_claim_or_block (dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/Kconfig +++ linux-azure-5.4.0/drivers/pci/Kconfig @@ -180,8 +180,8 @@ select NLS config PCI_HYPERV - tristate "Hyper-V PCI Frontend" - depends on X86_64 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS + tristate "Hyper-V PCI Frontend" + depends on ((X86 && X86_64) || ARM64) && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS select PCI_HYPERV_INTERFACE help The PCI device frontend driver allows the kernel to import arbitrary only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/Kconfig +++ linux-azure-5.4.0/drivers/pci/controller/Kconfig @@ -283,7 +283,7 @@ config PCI_HYPERV_INTERFACE tristate "Hyper-V PCI Interface" - depends on X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64 + depends on ((X86 && X86_64) || ARM64) && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN help The Hyper-V PCI Interface is a helper driver allows other drivers to have a common interface with the Hyper-V PCI frontend driver. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/dwc/pci-imx6.c +++ linux-azure-5.4.0/drivers/pci/controller/dwc/pci-imx6.c @@ -413,6 +413,11 @@ dev_err(dev, "failed to disable vpcie regulator: %d\n", ret); } + + /* Some boards don't have PCIe reset GPIO. */ + if (gpio_is_valid(imx6_pcie->reset_gpio)) + gpio_set_value_cansleep(imx6_pcie->reset_gpio, + imx6_pcie->gpio_active_high); } static unsigned int imx6_pcie_grp_offset(const struct imx6_pcie *imx6_pcie) @@ -535,15 +540,6 @@ /* allow the clocks to stabilize */ usleep_range(200, 500); - /* Some boards don't have PCIe reset GPIO. */ - if (gpio_is_valid(imx6_pcie->reset_gpio)) { - gpio_set_value_cansleep(imx6_pcie->reset_gpio, - imx6_pcie->gpio_active_high); - msleep(100); - gpio_set_value_cansleep(imx6_pcie->reset_gpio, - !imx6_pcie->gpio_active_high); - } - switch (imx6_pcie->drvdata->variant) { case IMX8MQ: reset_control_deassert(imx6_pcie->pciephy_reset); @@ -586,6 +582,15 @@ break; } + /* Some boards don't have PCIe reset GPIO. */ + if (gpio_is_valid(imx6_pcie->reset_gpio)) { + msleep(100); + gpio_set_value_cansleep(imx6_pcie->reset_gpio, + !imx6_pcie->gpio_active_high); + /* Wait for 100ms after PERST# deassertion (PCIe r5.0, 6.6.1) */ + msleep(100); + } + return; err_ref_clk: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/pci-mvebu.c +++ linux-azure-5.4.0/drivers/pci/controller/pci-mvebu.c @@ -105,6 +105,7 @@ struct mvebu_pcie_window memwin; struct mvebu_pcie_window iowin; u32 saved_pcie_stat; + struct resource regs; }; static inline void mvebu_writel(struct mvebu_pcie_port *port, u32 val, u32 reg) @@ -149,7 +150,9 @@ /* * Setup PCIE BARs and Address Decode Wins: - * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks + * BAR[0] -> internal registers (needed for MSI) + * BAR[1] -> covers all DRAM banks + * BAR[2] -> Disabled * WIN[0-3] -> DRAM bank[0-3] */ static void mvebu_pcie_setup_wins(struct mvebu_pcie_port *port) @@ -203,6 +206,12 @@ mvebu_writel(port, 0, PCIE_BAR_HI_OFF(1)); mvebu_writel(port, ((size - 1) & 0xffff0000) | 1, PCIE_BAR_CTRL_OFF(1)); + + /* + * Point BAR[0] to the device's internal registers. + */ + mvebu_writel(port, round_down(port->regs.start, SZ_1M), PCIE_BAR_LO_OFF(0)); + mvebu_writel(port, 0, PCIE_BAR_HI_OFF(0)); } static void mvebu_pcie_setup_hw(struct mvebu_pcie_port *port) @@ -567,6 +576,8 @@ static void mvebu_pci_bridge_emul_init(struct mvebu_pcie_port *port) { struct pci_bridge_emul *bridge = &port->bridge; + u32 pcie_cap = mvebu_readl(port, PCIE_CAP_PCIEXP); + u8 pcie_cap_ver = ((pcie_cap >> 16) & PCI_EXP_FLAGS_VERS); bridge->conf.vendor = PCI_VENDOR_ID_MARVELL; bridge->conf.device = mvebu_readl(port, PCIE_DEV_ID_OFF) >> 16; @@ -579,6 +590,12 @@ bridge->conf.iolimit = PCI_IO_RANGE_TYPE_32; } + /* + * Older mvebu hardware provides PCIe Capability structure only in + * version 1. New hardware provides it in version 2. + */ + bridge->pcie_conf.cap = cpu_to_le16(pcie_cap_ver); + bridge->has_pcie = true; bridge->data = port; bridge->ops = &mvebu_pci_bridge_emul_ops; @@ -708,14 +725,13 @@ struct device_node *np, struct mvebu_pcie_port *port) { - struct resource regs; int ret = 0; - ret = of_address_to_resource(np, 0, ®s); + ret = of_address_to_resource(np, 0, &port->regs); if (ret) return ERR_PTR(ret); - return devm_ioremap_resource(&pdev->dev, ®s); + return devm_ioremap_resource(&pdev->dev, &port->regs); } #define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/pcie-cadence-ep.c +++ linux-azure-5.4.0/drivers/pci/controller/pcie-cadence-ep.c @@ -178,8 +178,7 @@ struct cdns_pcie *pcie = &ep->pcie; u32 r; - r = find_first_zero_bit(&ep->ob_region_map, - sizeof(ep->ob_region_map) * BITS_PER_LONG); + r = find_first_zero_bit(&ep->ob_region_map, BITS_PER_LONG); if (r >= ep->max_regions - 1) { dev_err(&epc->dev, "no free outbound region\n"); return -EINVAL; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/pcie-rockchip-ep.c +++ linux-azure-5.4.0/drivers/pci/controller/pcie-rockchip-ep.c @@ -263,8 +263,7 @@ struct rockchip_pcie *pcie = &ep->rockchip; u32 r; - r = find_first_zero_bit(&ep->ob_region_map, - sizeof(ep->ob_region_map) * BITS_PER_LONG); + r = find_first_zero_bit(&ep->ob_region_map, BITS_PER_LONG); /* * Region 0 is reserved for configuration space and shouldn't * be used elsewhere per TRM, so leave it out. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/controller/pcie-xilinx-nwl.c +++ linux-azure-5.4.0/drivers/pci/controller/pcie-xilinx-nwl.c @@ -6,6 +6,7 @@ * (C) Copyright 2014 - 2015, Xilinx, Inc. */ +#include #include #include #include @@ -169,6 +170,7 @@ u8 root_busno; struct nwl_msi msi; struct irq_domain *legacy_irq_domain; + struct clk *clk; raw_spinlock_t leg_mask_lock; }; @@ -839,6 +841,16 @@ return err; } + pcie->clk = devm_clk_get(dev, NULL); + if (IS_ERR(pcie->clk)) + return PTR_ERR(pcie->clk); + + err = clk_prepare_enable(pcie->clk); + if (err) { + dev_err(dev, "can't enable PCIe ref clock\n"); + return err; + } + err = nwl_pcie_bridge_init(pcie); if (err) { dev_err(dev, "HW Initialization failed\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/ecam.c +++ linux-azure-5.4.0/drivers/pci/ecam.c @@ -164,4 +164,14 @@ .write = pci_generic_config_write32, } }; + +/* ECAM ops for 32-bit read only (non-compliant) */ +struct pci_ecam_ops pci_32b_read_ops = { + .bus_shift = 20, + .pci_ops = { + .map_bus = pci_ecam_map_bus, + .read = pci_generic_config_read32, + .write = pci_generic_config_write, + } +}; #endif only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/hotplug/TODO +++ linux-azure-5.4.0/drivers/pci/hotplug/TODO @@ -40,9 +40,6 @@ * The return value of pci_hp_register() is not checked. -* iounmap(io_mem) is called in the error path of ebda_rsrc_controller() - and once more in the error path of its caller ibmphp_access_ebda(). - * The various slot data structures are difficult to follow and need to be simplified. A lot of functions are too large and too complex, they need to be broken up into smaller, manageable pieces. Negative examples are only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/hotplug/ibmphp_ebda.c +++ linux-azure-5.4.0/drivers/pci/hotplug/ibmphp_ebda.c @@ -714,8 +714,7 @@ /* init hpc structure */ hpc_ptr = alloc_ebda_hpc(slot_num, bus_num); if (!hpc_ptr) { - rc = -ENOMEM; - goto error_no_hpc; + return -ENOMEM; } hpc_ptr->ctlr_id = ctlr_id; hpc_ptr->ctlr_relative_id = ctlr; @@ -910,8 +909,6 @@ kfree(tmp_slot); error_no_slot: free_ebda_hpc(hpc_ptr); -error_no_hpc: - iounmap(io_mem); return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/p2pdma.c +++ linux-azure-5.4.0/drivers/pci/p2pdma.c @@ -292,10 +292,41 @@ {} }; +/* + * This lookup function tries to find the PCI device corresponding to a given + * host bridge. + * + * It assumes the host bridge device is the first PCI device in the + * bus->devices list and that the devfn is 00.0. These assumptions should hold + * for all the devices in the whitelist above. + * + * This function is equivalent to pci_get_slot(host->bus, 0), however it does + * not take the pci_bus_sem lock seeing __host_bridge_whitelist() must not + * sleep. + * + * For this to be safe, the caller should hold a reference to a device on the + * bridge, which should ensure the host_bridge device will not be freed + * or removed from the head of the devices list. + */ +static struct pci_dev *pci_host_bridge_dev(struct pci_host_bridge *host) +{ + struct pci_dev *root; + + root = list_first_entry_or_null(&host->bus->devices, + struct pci_dev, bus_list); + + if (!root) + return NULL; + if (root->devfn != PCI_DEVFN(0, 0)) + return NULL; + + return root; +} + static bool __host_bridge_whitelist(struct pci_host_bridge *host, bool same_host_bridge) { - struct pci_dev *root = pci_get_slot(host->bus, PCI_DEVFN(0, 0)); + struct pci_dev *root = pci_host_bridge_dev(host); const struct pci_p2pdma_whitelist_entry *entry; unsigned short vendor, device; @@ -304,7 +335,6 @@ vendor = root->vendor; device = root->device; - pci_dev_put(root); for (entry = pci_p2pdma_whitelist; entry->vendor; entry++) { if (vendor != entry->vendor || device != entry->device) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/pci-bridge-emul.h +++ linux-azure-5.4.0/drivers/pci/pci-bridge-emul.h @@ -6,65 +6,65 @@ /* PCI configuration space of a PCI-to-PCI bridge. */ struct pci_bridge_emul_conf { - u16 vendor; - u16 device; - u16 command; - u16 status; - u32 class_revision; + __le16 vendor; + __le16 device; + __le16 command; + __le16 status; + __le32 class_revision; u8 cache_line_size; u8 latency_timer; u8 header_type; u8 bist; - u32 bar[2]; + __le32 bar[2]; u8 primary_bus; u8 secondary_bus; u8 subordinate_bus; u8 secondary_latency_timer; u8 iobase; u8 iolimit; - u16 secondary_status; - u16 membase; - u16 memlimit; - u16 pref_mem_base; - u16 pref_mem_limit; - u32 prefbaseupper; - u32 preflimitupper; - u16 iobaseupper; - u16 iolimitupper; + __le16 secondary_status; + __le16 membase; + __le16 memlimit; + __le16 pref_mem_base; + __le16 pref_mem_limit; + __le32 prefbaseupper; + __le32 preflimitupper; + __le16 iobaseupper; + __le16 iolimitupper; u8 capabilities_pointer; u8 reserve[3]; - u32 romaddr; + __le32 romaddr; u8 intline; u8 intpin; - u16 bridgectrl; + __le16 bridgectrl; }; /* PCI configuration space of the PCIe capabilities */ struct pci_bridge_emul_pcie_conf { u8 cap_id; u8 next; - u16 cap; - u32 devcap; - u16 devctl; - u16 devsta; - u32 lnkcap; - u16 lnkctl; - u16 lnksta; - u32 slotcap; - u16 slotctl; - u16 slotsta; - u16 rootctl; - u16 rsvd; - u32 rootsta; - u32 devcap2; - u16 devctl2; - u16 devsta2; - u32 lnkcap2; - u16 lnkctl2; - u16 lnksta2; - u32 slotcap2; - u16 slotctl2; - u16 slotsta2; + __le16 cap; + __le32 devcap; + __le16 devctl; + __le16 devsta; + __le32 lnkcap; + __le16 lnkctl; + __le16 lnksta; + __le32 slotcap; + __le16 slotctl; + __le16 slotsta; + __le16 rootctl; + __le16 rootcap; + __le32 rootsta; + __le32 devcap2; + __le16 devctl2; + __le16 devsta2; + __le32 lnkcap2; + __le16 lnkctl2; + __le16 lnksta2; + __le32 slotcap2; + __le16 slotctl2; + __le16 slotsta2; }; struct pci_bridge_emul; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/pci-label.c +++ linux-azure-5.4.0/drivers/pci/pci-label.c @@ -162,7 +162,7 @@ len = utf16s_to_utf8s((const wchar_t *)obj->buffer.pointer, obj->buffer.length, UTF16_LITTLE_ENDIAN, - buf, PAGE_SIZE); + buf, PAGE_SIZE - 1); buf[len] = '\n'; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pci/remove.c +++ linux-azure-5.4.0/drivers/pci/remove.c @@ -160,6 +160,6 @@ host_bridge->bus = NULL; /* remove the host bridge */ - device_unregister(&host_bridge->dev); + device_del(&host_bridge->dev); } EXPORT_SYMBOL_GPL(pci_remove_root_bus); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pcmcia/Kconfig +++ linux-azure-5.4.0/drivers/pcmcia/Kconfig @@ -151,7 +151,7 @@ config PCMCIA_ALCHEMY_DEVBOARD tristate "Alchemy Db/Pb1xxx PCMCIA socket services" - depends on MIPS_ALCHEMY && PCMCIA + depends on MIPS_DB1XXX && PCMCIA help Enable this driver of you want PCMCIA support on your Alchemy Db1000, Db/Pb1100, Db/Pb1500, Db/Pb1550, Db/Pb1200, DB1300 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pcmcia/cs.c +++ linux-azure-5.4.0/drivers/pcmcia/cs.c @@ -666,18 +666,16 @@ if (events || sysfs_events) continue; + set_current_state(TASK_INTERRUPTIBLE); if (kthread_should_stop()) break; - set_current_state(TASK_INTERRUPTIBLE); - schedule(); - /* make sure we are running */ - __set_current_state(TASK_RUNNING); - try_to_freeze(); } + /* make sure we are running before we exit */ + __set_current_state(TASK_RUNNING); /* shut down socket, if a device is still present */ if (skt->state & SOCKET_PRESENT) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pcmcia/i82092.c +++ linux-azure-5.4.0/drivers/pcmcia/i82092.c @@ -106,6 +106,7 @@ for (i = 0;iio_db; @@ -809,6 +812,9 @@ unsigned long min, max; int ret, i, j; + if (!res) + return NULL; + low = low || !(s->features & SS_CAP_PAGE_REGS); data.mask = align - 1; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/perf/Kconfig +++ linux-azure-5.4.0/drivers/perf/Kconfig @@ -79,13 +79,6 @@ can give information about memory throughput and other related events. -config HISI_PMU - bool "HiSilicon SoC PMU" - depends on ARM64 && ACPI - help - Support for HiSilicon SoC uncore performance monitoring - unit (PMU), such as: L3C, HHA and DDRC. - config QCOM_L2_PMU bool "Qualcomm Technologies L2-cache PMU" depends on ARCH_QCOM && ARM64 && ACPI @@ -129,4 +122,6 @@ Extension, which provides periodic sampling of operations in the CPU pipeline and reports this via the perf AUX interface. +source "drivers/perf/hisilicon/Kconfig" + endmenu only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/perf/arm_pmu.c +++ linux-azure-5.4.0/drivers/perf/arm_pmu.c @@ -322,6 +322,9 @@ if (!validate_event(event->pmu, &fake_pmu, leader)) return -EINVAL; + if (event == leader) + return 0; + for_each_sibling_event(sibling, leader) { if (!validate_event(event->pmu, &fake_pmu, sibling)) return -EINVAL; @@ -411,12 +414,7 @@ local64_set(&hwc->period_left, hwc->sample_period); } - if (event->group_leader != event) { - if (validate_group(event) != 0) - return -EINVAL; - } - - return 0; + return validate_group(event); } static int armpmu_event_init(struct perf_event *event) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/perf/hisilicon/Kconfig +++ linux-azure-5.4.0/drivers/perf/hisilicon/Kconfig @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0-only +config HISI_PMU + tristate "HiSilicon SoC PMU drivers" + depends on ARM64 && ACPI + help + Support for HiSilicon SoC L3 Cache performance monitor, Hydra Home + Agent performance monitor and DDR Controller performance monitor. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/perf/hisilicon/Makefile +++ linux-azure-5.4.0/drivers/perf/hisilicon/Makefile @@ -1,2 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_HISI_PMU) += hisi_uncore_pmu.o hisi_uncore_l3c_pmu.o hisi_uncore_hha_pmu.o hisi_uncore_ddrc_pmu.o +obj-$(CONFIG_HISI_PMU) += hisi_uncore_pmu.o hisi_uncore_l3c_pmu.o \ + hisi_uncore_hha_pmu.o hisi_uncore_ddrc_pmu.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/perf/hisilicon/hisi_uncore_pmu.c +++ linux-azure-5.4.0/drivers/perf/hisilicon/hisi_uncore_pmu.c @@ -34,6 +34,7 @@ return sprintf(buf, "%s\n", (char *)eattr->var); } +EXPORT_SYMBOL_GPL(hisi_format_sysfs_show); /* * PMU event attributes @@ -47,6 +48,7 @@ return sprintf(page, "config=0x%lx\n", (unsigned long)eattr->var); } +EXPORT_SYMBOL_GPL(hisi_event_sysfs_show); /* * sysfs cpumask attributes. For uncore PMU, we only have a single CPU to show @@ -58,6 +60,7 @@ return sprintf(buf, "%d\n", hisi_pmu->on_cpu); } +EXPORT_SYMBOL_GPL(hisi_cpumask_sysfs_show); static bool hisi_validate_event_group(struct perf_event *event) { @@ -96,6 +99,7 @@ { return idx >= 0 && idx < hisi_pmu->num_counters; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_counter_valid); int hisi_uncore_pmu_get_event_idx(struct perf_event *event) { @@ -112,6 +116,7 @@ return idx; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_get_event_idx); static void hisi_uncore_pmu_clear_event_idx(struct hisi_pmu *hisi_pmu, int idx) { @@ -172,6 +177,7 @@ return 0; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_event_init); /* * Set the counter to count the event that we're interested in, @@ -219,6 +225,7 @@ /* Write start value to the hardware event counter */ hisi_pmu->ops->write_counter(hisi_pmu, hwc, val); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_set_event_period); void hisi_uncore_pmu_event_update(struct perf_event *event) { @@ -239,6 +246,7 @@ HISI_MAX_PERIOD(hisi_pmu->counter_bits); local64_add(delta, &event->count); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_event_update); void hisi_uncore_pmu_start(struct perf_event *event, int flags) { @@ -261,6 +269,7 @@ hisi_uncore_pmu_enable_event(event); perf_event_update_userpage(event); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_start); void hisi_uncore_pmu_stop(struct perf_event *event, int flags) { @@ -277,6 +286,7 @@ hisi_uncore_pmu_event_update(event); hwc->state |= PERF_HES_UPTODATE; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_stop); int hisi_uncore_pmu_add(struct perf_event *event, int flags) { @@ -299,6 +309,7 @@ return 0; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_add); void hisi_uncore_pmu_del(struct perf_event *event, int flags) { @@ -310,12 +321,14 @@ perf_event_update_userpage(event); hisi_pmu->pmu_events.hw_events[hwc->idx] = NULL; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_del); void hisi_uncore_pmu_read(struct perf_event *event) { /* Read hardware counter and update the perf counter statistics */ hisi_uncore_pmu_event_update(event); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_read); void hisi_uncore_pmu_enable(struct pmu *pmu) { @@ -328,6 +341,7 @@ hisi_pmu->ops->start_counters(hisi_pmu); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_enable); void hisi_uncore_pmu_disable(struct pmu *pmu) { @@ -335,6 +349,7 @@ hisi_pmu->ops->stop_counters(hisi_pmu); } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_disable); /* * Read Super CPU cluster and CPU cluster ID from MPIDR_EL1. @@ -398,10 +413,11 @@ hisi_pmu->on_cpu = cpu; /* Overflow interrupt also should use the same CPU */ - WARN_ON(irq_set_affinity(hisi_pmu->irq, cpumask_of(cpu))); + WARN_ON(irq_set_affinity_hint(hisi_pmu->irq, cpumask_of(cpu))); return 0; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_online_cpu); int hisi_uncore_pmu_offline_cpu(unsigned int cpu, struct hlist_node *node) { @@ -430,7 +446,10 @@ perf_pmu_migrate_context(&hisi_pmu->pmu, cpu, target); /* Use this CPU for event counting */ hisi_pmu->on_cpu = target; - WARN_ON(irq_set_affinity(hisi_pmu->irq, cpumask_of(target))); + WARN_ON(irq_set_affinity_hint(hisi_pmu->irq, cpumask_of(target))); return 0; } +EXPORT_SYMBOL_GPL(hisi_uncore_pmu_offline_cpu); + +MODULE_LICENSE("GPL v2"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/phy-core-mipi-dphy.c +++ linux-azure-5.4.0/drivers/phy/phy-core-mipi-dphy.c @@ -66,10 +66,10 @@ cfg->hs_trail = max(4 * 8 * ui, 60000 + 4 * 4 * ui); cfg->init = 100; - cfg->lpx = 60000; + cfg->lpx = 50000; cfg->ta_get = 5 * cfg->lpx; cfg->ta_go = 4 * cfg->lpx; - cfg->ta_sure = 2 * cfg->lpx; + cfg->ta_sure = cfg->lpx; cfg->wakeup = 1000; cfg->hs_clk_rate = hs_clk_rate; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/qualcomm/phy-qcom-qusb2.c +++ linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-qusb2.c @@ -432,7 +432,7 @@ { struct device *dev = &qphy->phy->dev; const struct qusb2_phy_cfg *cfg = qphy->cfg; - u8 *val; + u8 *val, hstx_trim; /* efuse register is optional */ if (!qphy->cell) @@ -446,7 +446,13 @@ * set while configuring the phy. */ val = nvmem_cell_read(qphy->cell, NULL); - if (IS_ERR(val) || !val[0]) { + if (IS_ERR(val)) { + dev_dbg(dev, "failed to read a valid hs-tx trim value\n"); + return; + } + hstx_trim = val[0]; + kfree(val); + if (!hstx_trim) { dev_dbg(dev, "failed to read a valid hs-tx trim value\n"); return; } @@ -454,12 +460,10 @@ /* Fused TUNE1/2 value is the higher nibble only */ if (cfg->update_tune1_with_efuse) qusb2_write_mask(qphy->base, cfg->regs[QUSB2PHY_PORT_TUNE1], - val[0] << HSTX_TRIM_SHIFT, - HSTX_TRIM_MASK); + hstx_trim << HSTX_TRIM_SHIFT, HSTX_TRIM_MASK); else qusb2_write_mask(qphy->base, cfg->regs[QUSB2PHY_PORT_TUNE2], - val[0] << HSTX_TRIM_SHIFT, - HSTX_TRIM_MASK); + hstx_trim << HSTX_TRIM_SHIFT, HSTX_TRIM_MASK); } static int qusb2_phy_set_mode(struct phy *phy, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/qualcomm/phy-qcom-usb-hsic.c +++ linux-azure-5.4.0/drivers/phy/qualcomm/phy-qcom-usb-hsic.c @@ -54,8 +54,10 @@ /* Configure pins for HSIC functionality */ pins_default = pinctrl_lookup_state(uphy->pctl, PINCTRL_STATE_DEFAULT); - if (IS_ERR(pins_default)) - return PTR_ERR(pins_default); + if (IS_ERR(pins_default)) { + ret = PTR_ERR(pins_default); + goto err_ulpi; + } ret = pinctrl_select_state(uphy->pctl, pins_default); if (ret) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/samsung/phy-exynos5250-sata.c +++ linux-azure-5.4.0/drivers/phy/samsung/phy-exynos5250-sata.c @@ -190,6 +190,7 @@ return -EINVAL; sata_phy->client = of_find_i2c_device_by_node(node); + of_node_put(node); if (!sata_phy->client) return -EPROBE_DEFER; @@ -198,20 +199,21 @@ sata_phy->phyclk = devm_clk_get(dev, "sata_phyctrl"); if (IS_ERR(sata_phy->phyclk)) { dev_err(dev, "failed to get clk for PHY\n"); - return PTR_ERR(sata_phy->phyclk); + ret = PTR_ERR(sata_phy->phyclk); + goto put_dev; } ret = clk_prepare_enable(sata_phy->phyclk); if (ret < 0) { dev_err(dev, "failed to enable source clk\n"); - return ret; + goto put_dev; } sata_phy->phy = devm_phy_create(dev, NULL, &exynos_sata_phy_ops); if (IS_ERR(sata_phy->phy)) { - clk_disable_unprepare(sata_phy->phyclk); dev_err(dev, "failed to create PHY\n"); - return PTR_ERR(sata_phy->phy); + ret = PTR_ERR(sata_phy->phy); + goto clk_disable; } phy_set_drvdata(sata_phy->phy, sata_phy); @@ -219,11 +221,18 @@ phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate); if (IS_ERR(phy_provider)) { - clk_disable_unprepare(sata_phy->phyclk); - return PTR_ERR(phy_provider); + ret = PTR_ERR(phy_provider); + goto clk_disable; } return 0; + +clk_disable: + clk_disable_unprepare(sata_phy->phyclk); +put_dev: + put_device(&sata_phy->client->dev); + + return ret; } static const struct of_device_id exynos_sata_phy_of_match[] = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/socionext/phy-uniphier-pcie.c +++ linux-azure-5.4.0/drivers/phy/socionext/phy-uniphier-pcie.c @@ -20,11 +20,13 @@ /* PHY */ #define PCL_PHY_TEST_I 0x2000 -#define PCL_PHY_TEST_O 0x2004 #define TESTI_DAT_MASK GENMASK(13, 6) #define TESTI_ADR_MASK GENMASK(5, 1) #define TESTI_WR_EN BIT(0) +#define PCL_PHY_TEST_O 0x2004 +#define TESTO_DAT_MASK GENMASK(7, 0) + #define PCL_PHY_RESET 0x200c #define PCL_PHY_RESET_N_MNMODE BIT(8) /* =1:manual */ #define PCL_PHY_RESET_N BIT(0) /* =1:deasssert */ @@ -72,11 +74,12 @@ val = FIELD_PREP(TESTI_DAT_MASK, 1); val |= FIELD_PREP(TESTI_ADR_MASK, reg); uniphier_pciephy_testio_write(priv, val); - val = readl(priv->base + PCL_PHY_TEST_O); + val = readl(priv->base + PCL_PHY_TEST_O) & TESTO_DAT_MASK; /* update value */ - val &= ~FIELD_PREP(TESTI_DAT_MASK, mask); - val = FIELD_PREP(TESTI_DAT_MASK, mask & param); + val &= ~mask; + val |= mask & param; + val = FIELD_PREP(TESTI_DAT_MASK, val); val |= FIELD_PREP(TESTI_ADR_MASK, reg); uniphier_pciephy_testio_write(priv, val); uniphier_pciephy_testio_write(priv, val | TESTI_WR_EN); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/ti/phy-dm816x-usb.c +++ linux-azure-5.4.0/drivers/phy/ti/phy-dm816x-usb.c @@ -246,19 +246,28 @@ pm_runtime_enable(phy->dev); generic_phy = devm_phy_create(phy->dev, NULL, &ops); - if (IS_ERR(generic_phy)) - return PTR_ERR(generic_phy); + if (IS_ERR(generic_phy)) { + error = PTR_ERR(generic_phy); + goto clk_unprepare; + } phy_set_drvdata(generic_phy, phy); phy_provider = devm_of_phy_provider_register(phy->dev, of_phy_simple_xlate); - if (IS_ERR(phy_provider)) - return PTR_ERR(phy_provider); + if (IS_ERR(phy_provider)) { + error = PTR_ERR(phy_provider); + goto clk_unprepare; + } usb_add_phy_dev(&phy->phy); return 0; + +clk_unprepare: + pm_runtime_disable(phy->dev); + clk_unprepare(phy->refclk); + return error; } static int dm816x_usb_phy_remove(struct platform_device *pdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/phy/ti/phy-omap-usb2.c +++ linux-azure-5.4.0/drivers/phy/ti/phy-omap-usb2.c @@ -157,7 +157,7 @@ return 0; err1: - clk_disable(phy->wkupclk); + clk_disable_unprepare(phy->wkupclk); err0: return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/bcm/pinctrl-bcm2835.c +++ linux-azure-5.4.0/drivers/pinctrl/bcm/pinctrl-bcm2835.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -37,12 +38,10 @@ #define MODULE_NAME "pinctrl-bcm2835" #define BCM2835_NUM_GPIOS 54 +#define BCM2711_NUM_GPIOS 58 #define BCM2835_NUM_BANKS 2 #define BCM2835_NUM_IRQS 3 -#define BCM2835_PIN_BITMAP_SZ \ - DIV_ROUND_UP(BCM2835_NUM_GPIOS, sizeof(unsigned long) * 8) - /* GPIO register offsets */ #define GPFSEL0 0x0 /* Function Select */ #define GPSET0 0x1c /* Pin Output Set */ @@ -78,13 +77,15 @@ struct bcm2835_pinctrl { struct device *dev; void __iomem *base; + int *wake_irq; /* note: locking assumes each bank will have its own unsigned long */ unsigned long enabled_irq_map[BCM2835_NUM_BANKS]; - unsigned int irq_type[BCM2835_NUM_GPIOS]; + unsigned int irq_type[BCM2711_NUM_GPIOS]; struct pinctrl_dev *pctl_dev; struct gpio_chip gpio_chip; + struct pinctrl_desc pctl_desc; struct pinctrl_gpio_range gpio_range; raw_spinlock_t irq_lock[BCM2835_NUM_BANKS]; @@ -147,6 +148,10 @@ BCM2835_GPIO_PIN(51), BCM2835_GPIO_PIN(52), BCM2835_GPIO_PIN(53), + BCM2835_GPIO_PIN(54), + BCM2835_GPIO_PIN(55), + BCM2835_GPIO_PIN(56), + BCM2835_GPIO_PIN(57), }; /* one pin per group */ @@ -205,6 +210,10 @@ "gpio51", "gpio52", "gpio53", + "gpio54", + "gpio55", + "gpio56", + "gpio57", }; enum bcm2835_fsel { @@ -355,6 +364,22 @@ .can_sleep = false, }; +static const struct gpio_chip bcm2711_gpio_chip = { + .label = "pinctrl-bcm2711", + .owner = THIS_MODULE, + .request = gpiochip_generic_request, + .free = gpiochip_generic_free, + .direction_input = bcm2835_gpio_direction_input, + .direction_output = bcm2835_gpio_direction_output, + .get_direction = bcm2835_gpio_get_direction, + .get = bcm2835_gpio_get, + .set = bcm2835_gpio_set, + .set_config = gpiochip_generic_config, + .base = -1, + .ngpio = BCM2711_NUM_GPIOS, + .can_sleep = false, +}; + static void bcm2835_gpio_irq_handle_bank(struct bcm2835_pinctrl *pc, unsigned int bank, u32 mask) { @@ -401,7 +426,7 @@ bcm2835_gpio_irq_handle_bank(pc, 0, 0xf0000000); bcm2835_gpio_irq_handle_bank(pc, 1, 0x00003fff); break; - case 2: /* IRQ2 covers GPIOs 46-53 */ + case 2: /* IRQ2 covers GPIOs 46-57 */ bcm2835_gpio_irq_handle_bank(pc, 1, 0x003fc000); break; } @@ -409,6 +434,11 @@ chained_irq_exit(host_chip, desc); } +static irqreturn_t bcm2835_gpio_wake_irq_handler(int irq, void *dev_id) +{ + return IRQ_HANDLED; +} + static inline void __bcm2835_gpio_irq_config(struct bcm2835_pinctrl *pc, unsigned reg, unsigned offset, bool enable) { @@ -608,6 +638,34 @@ bcm2835_gpio_set_bit(pc, GPEDS0, gpio); } +static int bcm2835_gpio_irq_set_wake(struct irq_data *data, unsigned int on) +{ + struct gpio_chip *chip = irq_data_get_irq_chip_data(data); + struct bcm2835_pinctrl *pc = gpiochip_get_data(chip); + unsigned gpio = irqd_to_hwirq(data); + unsigned int irqgroup; + int ret = -EINVAL; + + if (!pc->wake_irq) + return ret; + + if (gpio <= 27) + irqgroup = 0; + else if (gpio >= 28 && gpio <= 45) + irqgroup = 1; + else if (gpio >= 46 && gpio <= 57) + irqgroup = 2; + else + return ret; + + if (on) + ret = enable_irq_wake(pc->wake_irq[irqgroup]); + else + ret = disable_irq_wake(pc->wake_irq[irqgroup]); + + return ret; +} + static struct irq_chip bcm2835_gpio_irq_chip = { .name = MODULE_NAME, .irq_enable = bcm2835_gpio_irq_enable, @@ -616,11 +674,13 @@ .irq_ack = bcm2835_gpio_irq_ack, .irq_mask = bcm2835_gpio_irq_disable, .irq_unmask = bcm2835_gpio_irq_enable, + .irq_set_wake = bcm2835_gpio_irq_set_wake, + .flags = IRQCHIP_MASK_ON_SUSPEND, }; static int bcm2835_pctl_get_groups_count(struct pinctrl_dev *pctldev) { - return ARRAY_SIZE(bcm2835_gpio_groups); + return BCM2835_NUM_GPIOS; } static const char *bcm2835_pctl_get_group_name(struct pinctrl_dev *pctldev, @@ -778,7 +838,7 @@ err = of_property_read_u32_index(np, "brcm,pins", i, &pin); if (err) goto out; - if (pin >= ARRAY_SIZE(bcm2835_gpio_pins)) { + if (pin >= pc->pctl_desc.npins) { dev_err(pc->dev, "%pOF: invalid brcm,pins value %d\n", np, pin); err = -EINVAL; @@ -854,7 +914,7 @@ { /* every pin can do every function */ *groups = bcm2835_gpio_groups; - *num_groups = ARRAY_SIZE(bcm2835_gpio_groups); + *num_groups = BCM2835_NUM_GPIOS; return 0; } @@ -1054,29 +1114,66 @@ .pin_config_set = bcm2711_pinconf_set, }; -static struct pinctrl_desc bcm2835_pinctrl_desc = { +static const struct pinctrl_desc bcm2835_pinctrl_desc = { .name = MODULE_NAME, .pins = bcm2835_gpio_pins, - .npins = ARRAY_SIZE(bcm2835_gpio_pins), + .npins = BCM2835_NUM_GPIOS, .pctlops = &bcm2835_pctl_ops, .pmxops = &bcm2835_pmx_ops, .confops = &bcm2835_pinconf_ops, .owner = THIS_MODULE, }; -static struct pinctrl_gpio_range bcm2835_pinctrl_gpio_range = { +static const struct pinctrl_desc bcm2711_pinctrl_desc = { + .name = "pinctrl-bcm2711", + .pins = bcm2835_gpio_pins, + .npins = BCM2711_NUM_GPIOS, + .pctlops = &bcm2835_pctl_ops, + .pmxops = &bcm2835_pmx_ops, + .confops = &bcm2711_pinconf_ops, + .owner = THIS_MODULE, +}; + +static const struct pinctrl_gpio_range bcm2835_pinctrl_gpio_range = { .name = MODULE_NAME, .npins = BCM2835_NUM_GPIOS, }; +static const struct pinctrl_gpio_range bcm2711_pinctrl_gpio_range = { + .name = "pinctrl-bcm2711", + .npins = BCM2711_NUM_GPIOS, +}; + +struct bcm_plat_data { + const struct gpio_chip *gpio_chip; + const struct pinctrl_desc *pctl_desc; + const struct pinctrl_gpio_range *gpio_range; +}; + +static const struct bcm_plat_data bcm2835_plat_data = { + .gpio_chip = &bcm2835_gpio_chip, + .pctl_desc = &bcm2835_pinctrl_desc, + .gpio_range = &bcm2835_pinctrl_gpio_range, +}; + +static const struct bcm_plat_data bcm2711_plat_data = { + .gpio_chip = &bcm2711_gpio_chip, + .pctl_desc = &bcm2711_pinctrl_desc, + .gpio_range = &bcm2711_pinctrl_gpio_range, +}; + static const struct of_device_id bcm2835_pinctrl_match[] = { { .compatible = "brcm,bcm2835-gpio", - .data = &bcm2835_pinconf_ops, + .data = &bcm2835_plat_data, }, { .compatible = "brcm,bcm2711-gpio", - .data = &bcm2711_pinconf_ops, + .data = &bcm2711_plat_data, + }, + { + .compatible = "brcm,bcm7211-gpio", + .data = &bcm2711_plat_data, }, {} }; @@ -1085,14 +1182,16 @@ { struct device *dev = &pdev->dev; struct device_node *np = dev->of_node; + const struct bcm_plat_data *pdata; struct bcm2835_pinctrl *pc; struct gpio_irq_chip *girq; struct resource iomem; int err, i; const struct of_device_id *match; + int is_7211 = 0; - BUILD_BUG_ON(ARRAY_SIZE(bcm2835_gpio_pins) != BCM2835_NUM_GPIOS); - BUILD_BUG_ON(ARRAY_SIZE(bcm2835_gpio_groups) != BCM2835_NUM_GPIOS); + BUILD_BUG_ON(ARRAY_SIZE(bcm2835_gpio_pins) != BCM2711_NUM_GPIOS); + BUILD_BUG_ON(ARRAY_SIZE(bcm2835_gpio_groups) != BCM2711_NUM_GPIOS); pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL); if (!pc) @@ -1111,7 +1210,14 @@ if (IS_ERR(pc->base)) return PTR_ERR(pc->base); - pc->gpio_chip = bcm2835_gpio_chip; + match = of_match_node(bcm2835_pinctrl_match, pdev->dev.of_node); + if (!match) + return -EINVAL; + + pdata = match->data; + is_7211 = of_device_is_compatible(np, "brcm,bcm7211-gpio"); + + pc->gpio_chip = *pdata->gpio_chip; pc->gpio_chip.parent = dev; pc->gpio_chip.of_node = np; @@ -1135,6 +1241,18 @@ raw_spin_lock_init(&pc->irq_lock[i]); } + pc->pctl_desc = *pdata->pctl_desc; + pc->pctl_dev = devm_pinctrl_register(dev, &pc->pctl_desc, pc); + if (IS_ERR(pc->pctl_dev)) { + gpiochip_remove(&pc->gpio_chip); + return PTR_ERR(pc->pctl_dev); + } + + pc->gpio_range = *pdata->gpio_range; + pc->gpio_range.base = pc->gpio_chip.base; + pc->gpio_range.gc = &pc->gpio_chip; + pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range); + girq = &pc->gpio_chip.irq; girq->chip = &bcm2835_gpio_irq_chip; girq->parent_handler = bcm2835_gpio_irq_handler; @@ -1142,8 +1260,21 @@ girq->parents = devm_kcalloc(dev, BCM2835_NUM_IRQS, sizeof(*girq->parents), GFP_KERNEL); - if (!girq->parents) - return -ENOMEM; + if (!girq->parents) { + err = -ENOMEM; + goto out_remove; + } + + if (is_7211) { + pc->wake_irq = devm_kcalloc(dev, BCM2835_NUM_IRQS, + sizeof(*pc->wake_irq), + GFP_KERNEL); + if (!pc->wake_irq) { + err = -ENOMEM; + goto out_remove; + } + } + /* * Use the same handler for all groups: this is necessary * since we use one gpiochip to cover all lines - the @@ -1151,35 +1282,50 @@ * bank that was firing the IRQ and look up the per-group * and bank data. */ - for (i = 0; i < BCM2835_NUM_IRQS; i++) + for (i = 0; i < BCM2835_NUM_IRQS; i++) { + int len; + char *name; + girq->parents[i] = irq_of_parse_and_map(np, i); + if (!is_7211) + continue; + + /* Skip over the all banks interrupts */ + pc->wake_irq[i] = irq_of_parse_and_map(np, i + + BCM2835_NUM_IRQS + 1); + + len = strlen(dev_name(pc->dev)) + 16; + name = devm_kzalloc(pc->dev, len, GFP_KERNEL); + if (!name) { + err = -ENOMEM; + goto out_remove; + } + + snprintf(name, len, "%s:bank%d", dev_name(pc->dev), i); + + /* These are optional interrupts */ + err = devm_request_irq(dev, pc->wake_irq[i], + bcm2835_gpio_wake_irq_handler, + IRQF_SHARED, name, pc); + if (err) + dev_warn(dev, "unable to request wake IRQ %d\n", + pc->wake_irq[i]); + } + girq->default_type = IRQ_TYPE_NONE; girq->handler = handle_level_irq; err = gpiochip_add_data(&pc->gpio_chip, pc); if (err) { dev_err(dev, "could not add GPIO chip\n"); - return err; - } - - match = of_match_node(bcm2835_pinctrl_match, pdev->dev.of_node); - if (match) { - bcm2835_pinctrl_desc.confops = - (const struct pinconf_ops *)match->data; + goto out_remove; } - pc->pctl_dev = devm_pinctrl_register(dev, &bcm2835_pinctrl_desc, pc); - if (IS_ERR(pc->pctl_dev)) { - gpiochip_remove(&pc->gpio_chip); - return PTR_ERR(pc->pctl_dev); - } - - pc->gpio_range = bcm2835_pinctrl_gpio_range; - pc->gpio_range.base = pc->gpio_chip.base; - pc->gpio_range.gc = &pc->gpio_chip; - pinctrl_add_gpio_range(pc->pctl_dev, &pc->gpio_range); - return 0; + +out_remove: + pinctrl_remove_gpio_range(pc->pctl_dev, &pc->gpio_range); + return err; } static struct platform_driver bcm2835_pinctrl_driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/bcm/pinctrl-ns.c +++ linux-azure-5.4.0/drivers/pinctrl/bcm/pinctrl-ns.c @@ -5,7 +5,6 @@ #include #include -#include #include #include #include @@ -13,7 +12,6 @@ #include #include #include -#include #include #define FLAG_BCM4708 BIT(1) @@ -24,8 +22,7 @@ struct device *dev; unsigned int chipset_flag; struct pinctrl_dev *pctldev; - struct regmap *regmap; - u32 offset; + void __iomem *base; struct pinctrl_desc pctldesc; struct ns_pinctrl_group *groups; @@ -232,9 +229,9 @@ unset |= BIT(pin_number); } - regmap_read(ns_pinctrl->regmap, ns_pinctrl->offset, &tmp); + tmp = readl(ns_pinctrl->base); tmp &= ~unset; - regmap_write(ns_pinctrl->regmap, ns_pinctrl->offset, tmp); + writel(tmp, ns_pinctrl->base); return 0; } @@ -266,13 +263,13 @@ static int ns_pinctrl_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; - struct device_node *np = dev->of_node; const struct of_device_id *of_id; struct ns_pinctrl *ns_pinctrl; struct pinctrl_desc *pctldesc; struct pinctrl_pin_desc *pin; struct ns_pinctrl_group *group; struct ns_pinctrl_function *function; + struct resource *res; int i; ns_pinctrl = devm_kzalloc(dev, sizeof(*ns_pinctrl), GFP_KERNEL); @@ -290,18 +287,12 @@ return -EINVAL; ns_pinctrl->chipset_flag = (uintptr_t)of_id->data; - ns_pinctrl->regmap = syscon_node_to_regmap(of_get_parent(np)); - if (IS_ERR(ns_pinctrl->regmap)) { - int err = PTR_ERR(ns_pinctrl->regmap); - - dev_err(dev, "Failed to map pinctrl regs: %d\n", err); - - return err; - } - - if (of_property_read_u32(np, "offset", &ns_pinctrl->offset)) { - dev_err(dev, "Failed to get register offset\n"); - return -ENOENT; + res = platform_get_resource_byname(pdev, IORESOURCE_MEM, + "cru_gpio_control"); + ns_pinctrl->base = devm_ioremap_resource(dev, res); + if (IS_ERR(ns_pinctrl->base)) { + dev_err(dev, "Failed to map pinctrl regs\n"); + return PTR_ERR(ns_pinctrl->base); } memcpy(pctldesc, &ns_pinctrl_desc, sizeof(*pctldesc)); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c +++ linux-azure-5.4.0/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c @@ -236,8 +236,12 @@ desc = (const struct mtk_pin_desc *)hw->soc->pins; *gpio_chip = &hw->chip; - /* Be greedy to guess first gpio_n is equal to eint_n */ - if (desc[eint_n].eint.eint_n == eint_n) + /* + * Be greedy to guess first gpio_n is equal to eint_n. + * Only eint virtual eint number is greater than gpio number. + */ + if (hw->soc->npins > eint_n && + desc[eint_n].eint.eint_n == eint_n) *gpio_n = eint_n; else *gpio_n = mtk_xt_find_eint_num(hw, eint_n); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/mediatek/pinctrl-mtk-common.c +++ linux-azure-5.4.0/drivers/pinctrl/mediatek/pinctrl-mtk-common.c @@ -1038,6 +1038,7 @@ node = of_parse_phandle(np, "mediatek,pctl-regmap", 0); if (node) { pctl->regmap1 = syscon_node_to_regmap(node); + of_node_put(node); if (IS_ERR(pctl->regmap1)) return PTR_ERR(pctl->regmap1); } else if (regmap) { @@ -1051,6 +1052,7 @@ node = of_parse_phandle(np, "mediatek,pctl-regmap", 1); if (node) { pctl->regmap2 = syscon_node_to_regmap(node); + of_node_put(node); if (IS_ERR(pctl->regmap2)) return PTR_ERR(pctl->regmap2); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/mediatek/pinctrl-paris.c +++ linux-azure-5.4.0/drivers/pinctrl/mediatek/pinctrl-paris.c @@ -198,8 +198,7 @@ } static int mtk_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin, - enum pin_config_param param, - enum pin_config_param arg) + enum pin_config_param param, u32 arg) { struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); const struct mtk_pin_desc *desc; @@ -647,10 +646,10 @@ unsigned long *config) { struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); + struct mtk_pinctrl_group *grp = &hw->groups[group]; - *config = hw->groups[group].config; - - return 0; + /* One pin per group only */ + return mtk_pinconf_get(pctldev, grp->pin, config); } static int mtk_pconf_group_set(struct pinctrl_dev *pctldev, unsigned group, @@ -666,8 +665,6 @@ pinconf_to_config_argument(configs[i])); if (ret < 0) return ret; - - grp->config = configs[i]; } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/nomadik/pinctrl-nomadik.c +++ linux-azure-5.4.0/drivers/pinctrl/nomadik/pinctrl-nomadik.c @@ -1461,8 +1461,10 @@ has_config = nmk_pinctrl_dt_get_config(np, &configs); np_config = of_parse_phandle(np, "ste,config", 0); - if (np_config) + if (np_config) { has_config |= nmk_pinctrl_dt_get_config(np_config, &configs); + of_node_put(np_config); + } if (has_config) { const char *gpio_name; const char *pin; @@ -1923,8 +1925,10 @@ } prcm_np = of_parse_phandle(np, "prcm", 0); - if (prcm_np) + if (prcm_np) { npct->prcm_base = of_iomap(prcm_np, 0); + of_node_put(prcm_np); + } if (!npct->prcm_base) { if (version == PINCTRL_NMK_STN8815) { dev_info(&pdev->dev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c +++ linux-azure-5.4.0/drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c @@ -78,7 +78,6 @@ struct gpio_chip gc; int irqbase; int irq; - void *priv; struct irq_chip irq_chip; u32 pinctrl_id; int (*direction_input)(struct gpio_chip *chip, unsigned offset); @@ -226,7 +225,7 @@ chained_irq_enter(chip, desc); sts = ioread32(bank->base + NPCM7XX_GP_N_EVST); en = ioread32(bank->base + NPCM7XX_GP_N_EVEN); - dev_dbg(chip->parent_device, "==> got irq sts %.8x %.8x\n", sts, + dev_dbg(bank->gc.parent, "==> got irq sts %.8x %.8x\n", sts, en); sts &= en; @@ -241,33 +240,33 @@ gpiochip_get_data(irq_data_get_irq_chip_data(d)); unsigned int gpio = BIT(d->hwirq); - dev_dbg(d->chip->parent_device, "setirqtype: %u.%u = %u\n", gpio, + dev_dbg(bank->gc.parent, "setirqtype: %u.%u = %u\n", gpio, d->irq, type); switch (type) { case IRQ_TYPE_EDGE_RISING: - dev_dbg(d->chip->parent_device, "edge.rising\n"); + dev_dbg(bank->gc.parent, "edge.rising\n"); npcm_gpio_clr(&bank->gc, bank->base + NPCM7XX_GP_N_EVBE, gpio); npcm_gpio_clr(&bank->gc, bank->base + NPCM7XX_GP_N_POL, gpio); break; case IRQ_TYPE_EDGE_FALLING: - dev_dbg(d->chip->parent_device, "edge.falling\n"); + dev_dbg(bank->gc.parent, "edge.falling\n"); npcm_gpio_clr(&bank->gc, bank->base + NPCM7XX_GP_N_EVBE, gpio); npcm_gpio_set(&bank->gc, bank->base + NPCM7XX_GP_N_POL, gpio); break; case IRQ_TYPE_EDGE_BOTH: - dev_dbg(d->chip->parent_device, "edge.both\n"); + dev_dbg(bank->gc.parent, "edge.both\n"); npcm_gpio_set(&bank->gc, bank->base + NPCM7XX_GP_N_EVBE, gpio); break; case IRQ_TYPE_LEVEL_LOW: - dev_dbg(d->chip->parent_device, "level.low\n"); + dev_dbg(bank->gc.parent, "level.low\n"); npcm_gpio_set(&bank->gc, bank->base + NPCM7XX_GP_N_POL, gpio); break; case IRQ_TYPE_LEVEL_HIGH: - dev_dbg(d->chip->parent_device, "level.high\n"); + dev_dbg(bank->gc.parent, "level.high\n"); npcm_gpio_clr(&bank->gc, bank->base + NPCM7XX_GP_N_POL, gpio); break; default: - dev_dbg(d->chip->parent_device, "invalid irq type\n"); + dev_dbg(bank->gc.parent, "invalid irq type\n"); return -EINVAL; } @@ -289,7 +288,7 @@ gpiochip_get_data(irq_data_get_irq_chip_data(d)); unsigned int gpio = d->hwirq; - dev_dbg(d->chip->parent_device, "irq_ack: %u.%u\n", gpio, d->irq); + dev_dbg(bank->gc.parent, "irq_ack: %u.%u\n", gpio, d->irq); iowrite32(BIT(gpio), bank->base + NPCM7XX_GP_N_EVST); } @@ -301,7 +300,7 @@ unsigned int gpio = d->hwirq; /* Clear events */ - dev_dbg(d->chip->parent_device, "irq_mask: %u.%u\n", gpio, d->irq); + dev_dbg(bank->gc.parent, "irq_mask: %u.%u\n", gpio, d->irq); iowrite32(BIT(gpio), bank->base + NPCM7XX_GP_N_EVENC); } @@ -313,7 +312,7 @@ unsigned int gpio = d->hwirq; /* Enable events */ - dev_dbg(d->chip->parent_device, "irq_unmask: %u.%u\n", gpio, d->irq); + dev_dbg(bank->gc.parent, "irq_unmask: %u.%u\n", gpio, d->irq); iowrite32(BIT(gpio), bank->base + NPCM7XX_GP_N_EVENS); } @@ -323,7 +322,7 @@ unsigned int gpio = d->hwirq; /* active-high, input, clear interrupt, enable interrupt */ - dev_dbg(d->chip->parent_device, "startup: %u.%u\n", gpio, d->irq); + dev_dbg(gc->parent, "startup: %u.%u\n", gpio, d->irq); npcmgpio_direction_input(gc, gpio); npcmgpio_irq_ack(d); npcmgpio_irq_unmask(d); @@ -905,7 +904,7 @@ #define DRIVE_STRENGTH_HI_SHIFT 12 #define DRIVE_STRENGTH_MASK 0x0000FF00 -#define DS(lo, hi) (((lo) << DRIVE_STRENGTH_LO_SHIFT) | \ +#define DSTR(lo, hi) (((lo) << DRIVE_STRENGTH_LO_SHIFT) | \ ((hi) << DRIVE_STRENGTH_HI_SHIFT)) #define DSLO(x) (((x) >> DRIVE_STRENGTH_LO_SHIFT) & 0xF) #define DSHI(x) (((x) >> DRIVE_STRENGTH_HI_SHIFT) & 0xF) @@ -925,31 +924,31 @@ static const struct npcm7xx_pincfg pincfg[] = { /* PIN FUNCTION 1 FUNCTION 2 FUNCTION 3 FLAGS */ NPCM7XX_PINCFG(0, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(1, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(2, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(1, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(2, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(3, iox1, MFSEL1, 30, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(4, iox2, MFSEL3, 14, smb1d, I2CSEGSEL, 7, none, NONE, 0, SLEW), NPCM7XX_PINCFG(5, iox2, MFSEL3, 14, smb1d, I2CSEGSEL, 7, none, NONE, 0, SLEW), NPCM7XX_PINCFG(6, iox2, MFSEL3, 14, smb2d, I2CSEGSEL, 10, none, NONE, 0, SLEW), NPCM7XX_PINCFG(7, iox2, MFSEL3, 14, smb2d, I2CSEGSEL, 10, none, NONE, 0, SLEW), - NPCM7XX_PINCFG(8, lkgpo1, FLOCKR1, 4, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(9, lkgpo2, FLOCKR1, 8, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(10, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(11, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(8, lkgpo1, FLOCKR1, 4, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(9, lkgpo2, FLOCKR1, 8, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(10, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(11, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(12, gspi, MFSEL1, 24, smb5b, I2CSEGSEL, 19, none, NONE, 0, SLEW), NPCM7XX_PINCFG(13, gspi, MFSEL1, 24, smb5b, I2CSEGSEL, 19, none, NONE, 0, SLEW), NPCM7XX_PINCFG(14, gspi, MFSEL1, 24, smb5c, I2CSEGSEL, 20, none, NONE, 0, SLEW), NPCM7XX_PINCFG(15, gspi, MFSEL1, 24, smb5c, I2CSEGSEL, 20, none, NONE, 0, SLEW), - NPCM7XX_PINCFG(16, lkgpo0, FLOCKR1, 0, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(17, pspi2, MFSEL3, 13, smb4den, I2CSEGSEL, 23, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(18, pspi2, MFSEL3, 13, smb4b, I2CSEGSEL, 14, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(19, pspi2, MFSEL3, 13, smb4b, I2CSEGSEL, 14, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(16, lkgpo0, FLOCKR1, 0, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(17, pspi2, MFSEL3, 13, smb4den, I2CSEGSEL, 23, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(18, pspi2, MFSEL3, 13, smb4b, I2CSEGSEL, 14, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(19, pspi2, MFSEL3, 13, smb4b, I2CSEGSEL, 14, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(20, smb4c, I2CSEGSEL, 15, smb15, MFSEL3, 8, none, NONE, 0, 0), NPCM7XX_PINCFG(21, smb4c, I2CSEGSEL, 15, smb15, MFSEL3, 8, none, NONE, 0, 0), NPCM7XX_PINCFG(22, smb4d, I2CSEGSEL, 16, smb14, MFSEL3, 7, none, NONE, 0, 0), NPCM7XX_PINCFG(23, smb4d, I2CSEGSEL, 16, smb14, MFSEL3, 7, none, NONE, 0, 0), - NPCM7XX_PINCFG(24, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(25, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(24, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(25, ioxh, MFSEL3, 18, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(26, smb5, MFSEL1, 2, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(27, smb5, MFSEL1, 2, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(28, smb4, MFSEL1, 1, none, NONE, 0, none, NONE, 0, 0), @@ -965,12 +964,12 @@ NPCM7XX_PINCFG(39, smb3b, I2CSEGSEL, 11, none, NONE, 0, none, NONE, 0, SLEW), NPCM7XX_PINCFG(40, smb3b, I2CSEGSEL, 11, none, NONE, 0, none, NONE, 0, SLEW), NPCM7XX_PINCFG(41, bmcuart0a, MFSEL1, 9, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(42, bmcuart0a, MFSEL1, 9, none, NONE, 0, none, NONE, 0, DS(2, 4) | GPO), + NPCM7XX_PINCFG(42, bmcuart0a, MFSEL1, 9, none, NONE, 0, none, NONE, 0, DSTR(2, 4) | GPO), NPCM7XX_PINCFG(43, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, bmcuart1, MFSEL3, 24, 0), NPCM7XX_PINCFG(44, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, bmcuart1, MFSEL3, 24, 0), NPCM7XX_PINCFG(45, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(46, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, none, NONE, 0, DS(2, 8)), - NPCM7XX_PINCFG(47, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, none, NONE, 0, DS(2, 8)), + NPCM7XX_PINCFG(46, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, none, NONE, 0, DSTR(2, 8)), + NPCM7XX_PINCFG(47, uart1, MFSEL1, 10, jtag2, MFSEL4, 0, none, NONE, 0, DSTR(2, 8)), NPCM7XX_PINCFG(48, uart2, MFSEL1, 11, bmcuart0b, MFSEL4, 1, none, NONE, 0, GPO), NPCM7XX_PINCFG(49, uart2, MFSEL1, 11, bmcuart0b, MFSEL4, 1, none, NONE, 0, 0), NPCM7XX_PINCFG(50, uart2, MFSEL1, 11, none, NONE, 0, none, NONE, 0, 0), @@ -980,8 +979,8 @@ NPCM7XX_PINCFG(54, uart2, MFSEL1, 11, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(55, uart2, MFSEL1, 11, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(56, r1err, MFSEL1, 12, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(57, r1md, MFSEL1, 13, none, NONE, 0, none, NONE, 0, DS(2, 4)), - NPCM7XX_PINCFG(58, r1md, MFSEL1, 13, none, NONE, 0, none, NONE, 0, DS(2, 4)), + NPCM7XX_PINCFG(57, r1md, MFSEL1, 13, none, NONE, 0, none, NONE, 0, DSTR(2, 4)), + NPCM7XX_PINCFG(58, r1md, MFSEL1, 13, none, NONE, 0, none, NONE, 0, DSTR(2, 4)), NPCM7XX_PINCFG(59, smb3d, I2CSEGSEL, 13, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(60, smb3d, I2CSEGSEL, 13, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(61, uart1, MFSEL1, 10, none, NONE, 0, none, NONE, 0, GPO), @@ -1004,19 +1003,19 @@ NPCM7XX_PINCFG(77, fanin13, MFSEL2, 13, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(78, fanin14, MFSEL2, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(79, fanin15, MFSEL2, 15, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(80, pwm0, MFSEL2, 16, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(81, pwm1, MFSEL2, 17, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(82, pwm2, MFSEL2, 18, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(83, pwm3, MFSEL2, 19, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(84, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(85, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(86, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(80, pwm0, MFSEL2, 16, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(81, pwm1, MFSEL2, 17, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(82, pwm2, MFSEL2, 18, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(83, pwm3, MFSEL2, 19, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(84, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(85, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(86, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(87, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(88, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(89, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(90, r2err, MFSEL1, 15, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(91, r2md, MFSEL1, 16, none, NONE, 0, none, NONE, 0, DS(2, 4)), - NPCM7XX_PINCFG(92, r2md, MFSEL1, 16, none, NONE, 0, none, NONE, 0, DS(2, 4)), + NPCM7XX_PINCFG(91, r2md, MFSEL1, 16, none, NONE, 0, none, NONE, 0, DSTR(2, 4)), + NPCM7XX_PINCFG(92, r2md, MFSEL1, 16, none, NONE, 0, none, NONE, 0, DSTR(2, 4)), NPCM7XX_PINCFG(93, ga20kbc, MFSEL1, 17, smb5d, I2CSEGSEL, 21, none, NONE, 0, 0), NPCM7XX_PINCFG(94, ga20kbc, MFSEL1, 17, smb5d, I2CSEGSEL, 21, none, NONE, 0, 0), NPCM7XX_PINCFG(95, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, 0), @@ -1062,34 +1061,34 @@ NPCM7XX_PINCFG(133, smb10, MFSEL4, 13, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(134, smb11, MFSEL4, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(135, smb11, MFSEL4, 14, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(136, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(137, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(138, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(139, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(140, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(136, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(137, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(138, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(139, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(140, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(141, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(142, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(142, sd1, MFSEL3, 12, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(143, sd1, MFSEL3, 12, sd1pwr, MFSEL4, 5, none, NONE, 0, 0), - NPCM7XX_PINCFG(144, pwm4, MFSEL2, 20, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(145, pwm5, MFSEL2, 21, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(146, pwm6, MFSEL2, 22, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(147, pwm7, MFSEL2, 23, none, NONE, 0, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(148, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(149, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(150, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(151, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(152, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(144, pwm4, MFSEL2, 20, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(145, pwm5, MFSEL2, 21, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(146, pwm6, MFSEL2, 22, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(147, pwm7, MFSEL2, 23, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(148, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(149, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(150, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(151, mmc8, MFSEL3, 11, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(152, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(153, mmcwp, FLOCKR1, 24, none, NONE, 0, none, NONE, 0, 0), /* Z1/A1 */ - NPCM7XX_PINCFG(154, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(154, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(155, mmccd, MFSEL3, 25, mmcrst, MFSEL4, 6, none, NONE, 0, 0), /* Z1/A1 */ - NPCM7XX_PINCFG(156, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(157, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(158, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(159, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - - NPCM7XX_PINCFG(160, clkout, MFSEL1, 21, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(161, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, DS(8, 12)), - NPCM7XX_PINCFG(162, serirq, NONE, 0, gpio, MFSEL1, 31, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(156, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(157, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(158, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(159, mmc, MFSEL3, 10, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + + NPCM7XX_PINCFG(160, clkout, MFSEL1, 21, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(161, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, DSTR(8, 12)), + NPCM7XX_PINCFG(162, serirq, NONE, 0, gpio, MFSEL1, 31, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(163, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, 0), NPCM7XX_PINCFG(164, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, SLEWLPC), NPCM7XX_PINCFG(165, lpc, NONE, 0, espi, MFSEL4, 8, gpio, MFSEL1, 26, SLEWLPC), @@ -1102,25 +1101,25 @@ NPCM7XX_PINCFG(172, smb6, MFSEL3, 1, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(173, smb7, MFSEL3, 2, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(174, smb7, MFSEL3, 2, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(175, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(176, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(177, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(178, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(179, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(180, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), + NPCM7XX_PINCFG(175, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(176, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(177, pspi1, MFSEL3, 4, faninx, MFSEL3, 3, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(178, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(179, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(180, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), NPCM7XX_PINCFG(181, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(182, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(183, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(184, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW | GPO), - NPCM7XX_PINCFG(185, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW | GPO), - NPCM7XX_PINCFG(186, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(187, spi3cs1, MFSEL4, 17, none, NONE, 0, none, NONE, 0, DS(8, 12)), - NPCM7XX_PINCFG(188, spi3quad, MFSEL4, 20, spi3cs2, MFSEL4, 18, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(189, spi3quad, MFSEL4, 20, spi3cs3, MFSEL4, 19, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(190, gpio, FLOCKR1, 20, nprd_smi, NONE, 0, none, NONE, 0, DS(2, 4)), - NPCM7XX_PINCFG(191, none, NONE, 0, none, NONE, 0, none, NONE, 0, DS(8, 12)), /* XX */ + NPCM7XX_PINCFG(183, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(184, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW | GPO), + NPCM7XX_PINCFG(185, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW | GPO), + NPCM7XX_PINCFG(186, spi3, MFSEL4, 16, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(187, spi3cs1, MFSEL4, 17, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), + NPCM7XX_PINCFG(188, spi3quad, MFSEL4, 20, spi3cs2, MFSEL4, 18, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(189, spi3quad, MFSEL4, 20, spi3cs3, MFSEL4, 19, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(190, gpio, FLOCKR1, 20, nprd_smi, NONE, 0, none, NONE, 0, DSTR(2, 4)), + NPCM7XX_PINCFG(191, none, NONE, 0, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), /* XX */ - NPCM7XX_PINCFG(192, none, NONE, 0, none, NONE, 0, none, NONE, 0, DS(8, 12)), /* XX */ + NPCM7XX_PINCFG(192, none, NONE, 0, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), /* XX */ NPCM7XX_PINCFG(193, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(194, smb0b, I2CSEGSEL, 0, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(195, smb0b, I2CSEGSEL, 0, none, NONE, 0, none, NONE, 0, 0), @@ -1131,11 +1130,11 @@ NPCM7XX_PINCFG(200, r2, MFSEL1, 14, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(201, r1, MFSEL3, 9, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(202, smb0c, I2CSEGSEL, 1, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(203, faninx, MFSEL3, 3, none, NONE, 0, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(203, faninx, MFSEL3, 3, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(204, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, SLEW), NPCM7XX_PINCFG(205, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, SLEW), - NPCM7XX_PINCFG(206, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, DS(4, 8)), - NPCM7XX_PINCFG(207, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, DS(4, 8)), + NPCM7XX_PINCFG(206, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, DSTR(4, 8)), + NPCM7XX_PINCFG(207, ddc, NONE, 0, gpio, MFSEL3, 22, none, NONE, 0, DSTR(4, 8)), NPCM7XX_PINCFG(208, rg2, MFSEL4, 24, ddr, MFSEL3, 26, none, NONE, 0, 0), NPCM7XX_PINCFG(209, rg2, MFSEL4, 24, ddr, MFSEL3, 26, none, NONE, 0, 0), NPCM7XX_PINCFG(210, rg2, MFSEL4, 24, ddr, MFSEL3, 26, none, NONE, 0, 0), @@ -1147,20 +1146,20 @@ NPCM7XX_PINCFG(216, rg2mdio, MFSEL4, 23, ddr, MFSEL3, 26, none, NONE, 0, 0), NPCM7XX_PINCFG(217, rg2mdio, MFSEL4, 23, ddr, MFSEL3, 26, none, NONE, 0, 0), NPCM7XX_PINCFG(218, wdog1, MFSEL3, 19, none, NONE, 0, none, NONE, 0, 0), - NPCM7XX_PINCFG(219, wdog2, MFSEL3, 20, none, NONE, 0, none, NONE, 0, DS(4, 8)), + NPCM7XX_PINCFG(219, wdog2, MFSEL3, 20, none, NONE, 0, none, NONE, 0, DSTR(4, 8)), NPCM7XX_PINCFG(220, smb12, MFSEL3, 5, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(221, smb12, MFSEL3, 5, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(222, smb13, MFSEL3, 6, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(223, smb13, MFSEL3, 6, none, NONE, 0, none, NONE, 0, 0), NPCM7XX_PINCFG(224, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, SLEW), - NPCM7XX_PINCFG(225, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW | GPO), - NPCM7XX_PINCFG(226, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW | GPO), - NPCM7XX_PINCFG(227, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(228, spixcs1, MFSEL4, 28, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(229, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(230, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DS(8, 12) | SLEW), - NPCM7XX_PINCFG(231, clkreq, MFSEL4, 9, none, NONE, 0, none, NONE, 0, DS(8, 12)), + NPCM7XX_PINCFG(225, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW | GPO), + NPCM7XX_PINCFG(226, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW | GPO), + NPCM7XX_PINCFG(227, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(228, spixcs1, MFSEL4, 28, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(229, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(230, spix, MFSEL4, 27, none, NONE, 0, none, NONE, 0, DSTR(8, 12) | SLEW), + NPCM7XX_PINCFG(231, clkreq, MFSEL4, 9, none, NONE, 0, none, NONE, 0, DSTR(8, 12)), NPCM7XX_PINCFG(253, none, NONE, 0, none, NONE, 0, none, NONE, 0, GPI), /* SDHC1 power */ NPCM7XX_PINCFG(254, none, NONE, 0, none, NONE, 0, none, NONE, 0, GPI), /* SDHC2 power */ NPCM7XX_PINCFG(255, none, NONE, 0, none, NONE, 0, none, NONE, 0, GPI), /* DACOSEL */ @@ -1561,7 +1560,7 @@ { struct npcm7xx_pinctrl *npcm = pinctrl_dev_get_drvdata(pctldev); - dev_dbg(npcm->dev, "group size: %d\n", ARRAY_SIZE(npcm7xx_groups)); + dev_dbg(npcm->dev, "group size: %zu\n", ARRAY_SIZE(npcm7xx_groups)); return ARRAY_SIZE(npcm7xx_groups); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/pinconf-generic.c +++ linux-azure-5.4.0/drivers/pinctrl/pinconf-generic.c @@ -30,10 +30,10 @@ PCONFDUMP(PIN_CONFIG_BIAS_BUS_HOLD, "input bias bus hold", NULL, false), PCONFDUMP(PIN_CONFIG_BIAS_DISABLE, "input bias disabled", NULL, false), PCONFDUMP(PIN_CONFIG_BIAS_HIGH_IMPEDANCE, "input bias high impedance", NULL, false), - PCONFDUMP(PIN_CONFIG_BIAS_PULL_DOWN, "input bias pull down", NULL, false), + PCONFDUMP(PIN_CONFIG_BIAS_PULL_DOWN, "input bias pull down", "ohms", true), PCONFDUMP(PIN_CONFIG_BIAS_PULL_PIN_DEFAULT, - "input bias pull to pin specific state", NULL, false), - PCONFDUMP(PIN_CONFIG_BIAS_PULL_UP, "input bias pull up", NULL, false), + "input bias pull to pin specific state", "ohms", true), + PCONFDUMP(PIN_CONFIG_BIAS_PULL_UP, "input bias pull up", "ohms", true), PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_DRAIN, "output drive open drain", NULL, false), PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_SOURCE, "output drive open source", NULL, false), PCONFDUMP(PIN_CONFIG_DRIVE_PUSH_PULL, "output drive push pull", NULL, false), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/pinctrl-pistachio.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-pistachio.c @@ -1370,10 +1370,10 @@ } irq = irq_of_parse_and_map(child, 0); - if (irq < 0) { - dev_err(pctl->dev, "No IRQ for bank %u: %d\n", i, irq); + if (!irq) { + dev_err(pctl->dev, "No IRQ for bank %u\n", i); of_node_put(child); - ret = irq; + ret = -EINVAL; goto err; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/pinctrl-stmfx.c +++ linux-azure-5.4.0/drivers/pinctrl/pinctrl-stmfx.c @@ -540,7 +540,7 @@ u8 pending[NR_GPIO_REGS]; u8 src[NR_GPIO_REGS] = {0, 0, 0}; unsigned long n, status; - int ret; + int i, ret; ret = regmap_bulk_read(pctl->stmfx->map, STMFX_REG_IRQ_GPI_PENDING, &pending, NR_GPIO_REGS); @@ -550,7 +550,9 @@ regmap_bulk_write(pctl->stmfx->map, STMFX_REG_IRQ_GPI_SRC, src, NR_GPIO_REGS); - status = *(unsigned long *)pending; + BUILD_BUG_ON(NR_GPIO_REGS > sizeof(status)); + for (i = 0, status = 0; i < NR_GPIO_REGS; i++) + status |= (unsigned long)pending[i] << (i * 8); for_each_set_bit(n, &status, gc->ngpio) { handle_nested_irq(irq_find_mapping(gc->irq.domain, n)); stmfx_pinctrl_irq_toggle_trigger(pctl, n); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/qcom/pinctrl-msm8916.c +++ linux-azure-5.4.0/drivers/pinctrl/qcom/pinctrl-msm8916.c @@ -844,8 +844,8 @@ PINGROUP(28, pwr_modem_enabled_a, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac), PINGROUP(29, cci_i2c, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac), PINGROUP(30, cci_i2c, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), - PINGROUP(31, cci_timer0, NA, NA, NA, NA, NA, NA, NA, NA), - PINGROUP(32, cci_timer1, NA, NA, NA, NA, NA, NA, NA, NA), + PINGROUP(31, cci_timer0, flash_strobe, NA, NA, NA, NA, NA, NA, NA), + PINGROUP(32, cci_timer1, flash_strobe, NA, NA, NA, NA, NA, NA, NA), PINGROUP(33, cci_async, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), PINGROUP(34, pwr_nav_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), PINGROUP(35, pwr_crypto_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/sh-pfc/pfc-r8a77470.c +++ linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a77470.c @@ -2121,7 +2121,7 @@ VI0_CLK_MARK, }; /* - VIN1 ------------------------------------------------------------------- */ -static const union vin_data vin1_data_pins = { +static const union vin_data12 vin1_data_pins = { .data12 = { RCAR_GP_PIN(3, 1), RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 4), @@ -2131,7 +2131,7 @@ RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16), }, }; -static const union vin_data vin1_data_mux = { +static const union vin_data12 vin1_data_mux = { .data12 = { VI1_DATA0_MARK, VI1_DATA1_MARK, VI1_DATA2_MARK, VI1_DATA3_MARK, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/sh-pfc/pfc-r8a7796.c +++ linux-azure-5.4.0/drivers/pinctrl/sh-pfc/pfc-r8a7796.c @@ -68,6 +68,7 @@ PIN_NOGP_CFG(QSPI1_MOSI_IO0, "QSPI1_MOSI_IO0", fn, CFG_FLAGS), \ PIN_NOGP_CFG(QSPI1_SPCLK, "QSPI1_SPCLK", fn, CFG_FLAGS), \ PIN_NOGP_CFG(QSPI1_SSL, "QSPI1_SSL", fn, CFG_FLAGS), \ + PIN_NOGP_CFG(PRESET_N, "PRESET#", fn, SH_PFC_PIN_CFG_PULL_DOWN),\ PIN_NOGP_CFG(RPC_INT_N, "RPC_INT#", fn, CFG_FLAGS), \ PIN_NOGP_CFG(RPC_RESET_N, "RPC_RESET#", fn, CFG_FLAGS), \ PIN_NOGP_CFG(RPC_WP_N, "RPC_WP#", fn, CFG_FLAGS), \ @@ -6109,7 +6110,7 @@ [ 4] = RCAR_GP_PIN(6, 29), /* USB30_OVC */ [ 5] = RCAR_GP_PIN(6, 30), /* GP6_30 */ [ 6] = RCAR_GP_PIN(6, 31), /* GP6_31 */ - [ 7] = SH_PFC_PIN_NONE, + [ 7] = PIN_PRESET_N, /* PRESET# */ [ 8] = SH_PFC_PIN_NONE, [ 9] = SH_PFC_PIN_NONE, [10] = SH_PFC_PIN_NONE, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/stm32/pinctrl-stm32.c +++ linux-azure-5.4.0/drivers/pinctrl/stm32/pinctrl-stm32.c @@ -1153,7 +1153,7 @@ struct resource res; struct reset_control *rstc; int npins = STM32_GPIO_PINS_PER_BANK; - int bank_nr, err; + int bank_nr, err, i = 0; rstc = of_reset_control_get_exclusive(np, NULL); if (!IS_ERR(rstc)) @@ -1182,9 +1182,14 @@ of_property_read_string(np, "st,bank-name", &bank->gpio_chip.label); - if (!of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, 0, &args)) { + if (!of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, i, &args)) { bank_nr = args.args[1] / STM32_GPIO_PINS_PER_BANK; bank->gpio_chip.base = args.args[1]; + + /* get the last defined gpio line (offset + nb of pins) */ + npins = args.args[0] + args.args[2]; + while (!of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, ++i, &args)) + npins = max(npins, (int)(args.args[0] + args.args[2])); } else { bank_nr = pctl->nbanks; bank->gpio_chip.base = bank_nr * STM32_GPIO_PINS_PER_BANK; @@ -1210,15 +1215,17 @@ bank->bank_ioport_nr = bank_ioport_nr; spin_lock_init(&bank->lock); - /* create irq hierarchical domain */ - bank->fwnode = of_node_to_fwnode(np); + if (pctl->domain) { + /* create irq hierarchical domain */ + bank->fwnode = of_node_to_fwnode(np); - bank->domain = irq_domain_create_hierarchy(pctl->domain, 0, - STM32_GPIO_IRQ_LINE, bank->fwnode, - &stm32_gpio_domain_ops, bank); + bank->domain = irq_domain_create_hierarchy(pctl->domain, 0, STM32_GPIO_IRQ_LINE, + bank->fwnode, &stm32_gpio_domain_ops, + bank); - if (!bank->domain) - return -ENODEV; + if (!bank->domain) + return -ENODEV; + } err = gpiochip_add_data(&bank->gpio_chip, bank); if (err) { @@ -1388,6 +1395,8 @@ pctl->domain = stm32_pctrl_get_irq_domain(np); if (IS_ERR(pctl->domain)) return PTR_ERR(pctl->domain); + if (!pctl->domain) + dev_warn(dev, "pinctrl without interrupt support\n"); /* hwspinlock is optional */ hwlock_id = of_hwspin_lock_get_id(pdev->dev.of_node, 0); @@ -1549,8 +1558,8 @@ struct stm32_pinctrl_group *g = pctl->groups; int i; - for (i = g->pin; i < g->pin + pctl->ngroups; i++) - stm32_pinctrl_restore_gpio_regs(pctl, i); + for (i = 0; i < pctl->ngroups; i++, g++) + stm32_pinctrl_restore_gpio_regs(pctl, g->pin); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun50i-h6-r.c +++ linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sun50i-h6-r.c @@ -105,6 +105,7 @@ .npins = ARRAY_SIZE(sun50i_h6_r_pins), .pin_base = PL_BASE, .irq_banks = 2, + .io_bias_cfg_variant = BIAS_VOLTAGE_PIO_POW_MODE_SEL, }; static int sun50i_h6_r_pinctrl_probe(struct platform_device *pdev) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c +++ linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c @@ -158,26 +158,26 @@ SUNXI_PIN(SUNXI_PINCTRL_PIN(C, 14), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x2, "nand"), /* DQ6 */ + SUNXI_FUNCTION(0x2, "nand0"), /* DQ6 */ SUNXI_FUNCTION(0x3, "mmc2")), /* D6 */ SUNXI_PIN(SUNXI_PINCTRL_PIN(C, 15), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x2, "nand"), /* DQ7 */ + SUNXI_FUNCTION(0x2, "nand0"), /* DQ7 */ SUNXI_FUNCTION(0x3, "mmc2")), /* D7 */ SUNXI_PIN(SUNXI_PINCTRL_PIN(C, 16), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x2, "nand"), /* DQS */ + SUNXI_FUNCTION(0x2, "nand0"), /* DQS */ SUNXI_FUNCTION(0x3, "mmc2")), /* RST */ SUNXI_PIN(SUNXI_PINCTRL_PIN(C, 17), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x2, "nand")), /* CE2 */ + SUNXI_FUNCTION(0x2, "nand0")), /* CE2 */ SUNXI_PIN(SUNXI_PINCTRL_PIN(C, 18), SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), - SUNXI_FUNCTION(0x2, "nand")), /* CE3 */ + SUNXI_FUNCTION(0x2, "nand0")), /* CE3 */ /* Hole */ SUNXI_PIN(SUNXI_PINCTRL_PIN(D, 2), SUNXI_FUNCTION(0x0, "gpio_in"), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pinctrl/sunxi/pinctrl-suniv-f1c100s.c +++ linux-azure-5.4.0/drivers/pinctrl/sunxi/pinctrl-suniv-f1c100s.c @@ -204,7 +204,7 @@ SUNXI_FUNCTION(0x0, "gpio_in"), SUNXI_FUNCTION(0x1, "gpio_out"), SUNXI_FUNCTION(0x2, "lcd"), /* D20 */ - SUNXI_FUNCTION(0x3, "lvds1"), /* RX */ + SUNXI_FUNCTION(0x3, "uart2"), /* RX */ SUNXI_FUNCTION_IRQ_BANK(0x6, 0, 14)), SUNXI_PIN(SUNXI_PINCTRL_PIN(D, 15), SUNXI_FUNCTION(0x0, "gpio_in"), only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/chrome/chromeos_laptop.c +++ linux-azure-5.4.0/drivers/platform/chrome/chromeos_laptop.c @@ -716,6 +716,7 @@ chromeos_laptop_prepare_i2c_peripherals(struct chromeos_laptop *cros_laptop, const struct chromeos_laptop *src) { + struct i2c_peripheral *i2c_peripherals; struct i2c_peripheral *i2c_dev; struct i2c_board_info *info; int i; @@ -724,17 +725,15 @@ if (!src->num_i2c_peripherals) return 0; - cros_laptop->i2c_peripherals = kmemdup(src->i2c_peripherals, - src->num_i2c_peripherals * - sizeof(*src->i2c_peripherals), - GFP_KERNEL); - if (!cros_laptop->i2c_peripherals) + i2c_peripherals = kmemdup(src->i2c_peripherals, + src->num_i2c_peripherals * + sizeof(*src->i2c_peripherals), + GFP_KERNEL); + if (!i2c_peripherals) return -ENOMEM; - cros_laptop->num_i2c_peripherals = src->num_i2c_peripherals; - - for (i = 0; i < cros_laptop->num_i2c_peripherals; i++) { - i2c_dev = &cros_laptop->i2c_peripherals[i]; + for (i = 0; i < src->num_i2c_peripherals; i++) { + i2c_dev = &i2c_peripherals[i]; info = &i2c_dev->board_info; error = chromeos_laptop_setup_irq(i2c_dev); @@ -752,16 +751,19 @@ } } + cros_laptop->i2c_peripherals = i2c_peripherals; + cros_laptop->num_i2c_peripherals = src->num_i2c_peripherals; + return 0; err_out: while (--i >= 0) { - i2c_dev = &cros_laptop->i2c_peripherals[i]; + i2c_dev = &i2c_peripherals[i]; info = &i2c_dev->board_info; if (info->properties) property_entries_free(info->properties); } - kfree(cros_laptop->i2c_peripherals); + kfree(i2c_peripherals); return error; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/chrome/cros_ec_chardev.c +++ linux-azure-5.4.0/drivers/platform/chrome/cros_ec_chardev.c @@ -328,6 +328,9 @@ if (copy_from_user(&s_mem, arg, sizeof(s_mem))) return -EFAULT; + if (s_mem.bytes > sizeof(s_mem.buffer)) + return -EINVAL; + num = ec_dev->cmd_readmem(ec_dev, s_mem.offset, s_mem.bytes, s_mem.buffer); if (num <= 0) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/chrome/cros_ec_debugfs.c +++ linux-azure-5.4.0/drivers/platform/chrome/cros_ec_debugfs.c @@ -26,6 +26,9 @@ #define CIRC_ADD(idx, size, value) (((idx) + (value)) & ((size) - 1)) +/* waitqueue for log readers */ +static DECLARE_WAIT_QUEUE_HEAD(cros_ec_debugfs_log_wq); + /** * struct cros_ec_debugfs - EC debugging information. * @@ -34,7 +37,6 @@ * @log_buffer: circular buffer for console log information * @read_msg: preallocated EC command and buffer to read console log * @log_mutex: mutex to protect circular buffer - * @log_wq: waitqueue for log readers * @log_poll_work: recurring task to poll EC for new console log data * @panicinfo_blob: panicinfo debugfs blob */ @@ -45,7 +47,6 @@ struct circ_buf log_buffer; struct cros_ec_command *read_msg; struct mutex log_mutex; - wait_queue_head_t log_wq; struct delayed_work log_poll_work; /* EC panicinfo */ struct debugfs_blob_wrapper panicinfo_blob; @@ -108,7 +109,7 @@ buf_space--; } - wake_up(&debug_info->log_wq); + wake_up(&cros_ec_debugfs_log_wq); } mutex_unlock(&debug_info->log_mutex); @@ -142,7 +143,7 @@ mutex_unlock(&debug_info->log_mutex); - ret = wait_event_interruptible(debug_info->log_wq, + ret = wait_event_interruptible(cros_ec_debugfs_log_wq, CIRC_CNT(cb->head, cb->tail, LOG_SIZE)); if (ret < 0) return ret; @@ -174,7 +175,7 @@ struct cros_ec_debugfs *debug_info = file->private_data; __poll_t mask = 0; - poll_wait(file, &debug_info->log_wq, wait); + poll_wait(file, &cros_ec_debugfs_log_wq, wait); mutex_lock(&debug_info->log_mutex); if (CIRC_CNT(debug_info->log_buffer.head, @@ -359,7 +360,6 @@ debug_info->log_buffer.tail = 0; mutex_init(&debug_info->log_mutex); - init_waitqueue_head(&debug_info->log_wq); debugfs_create_file("console_log", S_IFREG | 0444, debug_info->dir, debug_info, &cros_ec_console_log_fops); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/chrome/cros_ec_proto.c +++ linux-azure-5.4.0/drivers/platform/chrome/cros_ec_proto.c @@ -213,6 +213,15 @@ msg->insize = sizeof(struct ec_response_get_protocol_info); ret = send_command(ec_dev, msg); + /* + * Send command once again when timeout occurred. + * Fingerprint MCU (FPMCU) is restarted during system boot which + * introduces small window in which FPMCU won't respond for any + * messages sent by kernel. There is no need to wait before next + * attempt because we waited at least EC_MSG_DEADLINE_MS. + */ + if (ret == -ETIMEDOUT) + ret = send_command(ec_dev, msg); if (ret < 0) { dev_dbg(ec_dev->dev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/mellanox/mlxreg-io.c +++ linux-azure-5.4.0/drivers/platform/mellanox/mlxreg-io.c @@ -123,7 +123,7 @@ return -EINVAL; /* Convert buffer to input value. */ - ret = kstrtou32(buf, len, &input_val); + ret = kstrtou32(buf, 0, &input_val); if (ret) return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/x86/apple-gmux.c +++ linux-azure-5.4.0/drivers/platform/x86/apple-gmux.c @@ -625,7 +625,7 @@ } gmux_data->iostart = res->start; - gmux_data->iolen = res->end - res->start; + gmux_data->iolen = resource_size(res); if (gmux_data->iolen < GMUX_MIN_IO_LEN) { pr_err("gmux I/O region too small (%lu < %u)\n", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/x86/intel_speed_select_if/isst_if_common.c +++ linux-azure-5.4.0/drivers/platform/x86/intel_speed_select_if/isst_if_common.c @@ -529,7 +529,10 @@ return ret; } -static DEFINE_MUTEX(punit_misc_dev_lock); +/* Lock to prevent module registration when already opened by user space */ +static DEFINE_MUTEX(punit_misc_dev_open_lock); +/* Lock to allow one share misc device for all ISST interace */ +static DEFINE_MUTEX(punit_misc_dev_reg_lock); static int misc_usage_count; static int misc_device_ret; static int misc_device_open; @@ -539,7 +542,7 @@ int i, ret = 0; /* Fail open, if a module is going away */ - mutex_lock(&punit_misc_dev_lock); + mutex_lock(&punit_misc_dev_open_lock); for (i = 0; i < ISST_IF_DEV_MAX; ++i) { struct isst_if_cmd_cb *cb = &punit_callbacks[i]; @@ -561,7 +564,7 @@ } else { misc_device_open++; } - mutex_unlock(&punit_misc_dev_lock); + mutex_unlock(&punit_misc_dev_open_lock); return ret; } @@ -570,7 +573,7 @@ { int i; - mutex_lock(&punit_misc_dev_lock); + mutex_lock(&punit_misc_dev_open_lock); misc_device_open--; for (i = 0; i < ISST_IF_DEV_MAX; ++i) { struct isst_if_cmd_cb *cb = &punit_callbacks[i]; @@ -578,7 +581,7 @@ if (cb->registered) module_put(cb->owner); } - mutex_unlock(&punit_misc_dev_lock); + mutex_unlock(&punit_misc_dev_open_lock); return 0; } @@ -595,6 +598,43 @@ .fops = &isst_if_char_driver_ops, }; +static int isst_misc_reg(void) +{ + mutex_lock(&punit_misc_dev_reg_lock); + if (misc_device_ret) + goto unlock_exit; + + if (!misc_usage_count) { + misc_device_ret = isst_if_cpu_info_init(); + if (misc_device_ret) + goto unlock_exit; + + misc_device_ret = misc_register(&isst_if_char_driver); + if (misc_device_ret) { + isst_if_cpu_info_exit(); + goto unlock_exit; + } + } + misc_usage_count++; + +unlock_exit: + mutex_unlock(&punit_misc_dev_reg_lock); + + return misc_device_ret; +} + +static void isst_misc_unreg(void) +{ + mutex_lock(&punit_misc_dev_reg_lock); + if (misc_usage_count) + misc_usage_count--; + if (!misc_usage_count && !misc_device_ret) { + misc_deregister(&isst_if_char_driver); + isst_if_cpu_info_exit(); + } + mutex_unlock(&punit_misc_dev_reg_lock); +} + /** * isst_if_cdev_register() - Register callback for IOCTL * @device_type: The device type this callback handling. @@ -612,38 +652,31 @@ */ int isst_if_cdev_register(int device_type, struct isst_if_cmd_cb *cb) { - if (misc_device_ret) - return misc_device_ret; + int ret; if (device_type >= ISST_IF_DEV_MAX) return -EINVAL; - mutex_lock(&punit_misc_dev_lock); + mutex_lock(&punit_misc_dev_open_lock); + /* Device is already open, we don't want to add new callbacks */ if (misc_device_open) { - mutex_unlock(&punit_misc_dev_lock); + mutex_unlock(&punit_misc_dev_open_lock); return -EAGAIN; } - if (!misc_usage_count) { - int ret; - - misc_device_ret = misc_register(&isst_if_char_driver); - if (misc_device_ret) - goto unlock_exit; - - ret = isst_if_cpu_info_init(); - if (ret) { - misc_deregister(&isst_if_char_driver); - misc_device_ret = ret; - goto unlock_exit; - } - } memcpy(&punit_callbacks[device_type], cb, sizeof(*cb)); punit_callbacks[device_type].registered = 1; - misc_usage_count++; -unlock_exit: - mutex_unlock(&punit_misc_dev_lock); + mutex_unlock(&punit_misc_dev_open_lock); - return misc_device_ret; + ret = isst_misc_reg(); + if (ret) { + /* + * No need of mutex as the misc device register failed + * as no one can open device yet. Hence no contention. + */ + punit_callbacks[device_type].registered = 0; + return ret; + } + return 0; } EXPORT_SYMBOL_GPL(isst_if_cdev_register); @@ -658,16 +691,12 @@ */ void isst_if_cdev_unregister(int device_type) { - mutex_lock(&punit_misc_dev_lock); - misc_usage_count--; + isst_misc_unreg(); + mutex_lock(&punit_misc_dev_open_lock); punit_callbacks[device_type].registered = 0; if (device_type == ISST_IF_DEV_MBOX) isst_delete_hash(); - if (!misc_usage_count && !misc_device_ret) { - misc_deregister(&isst_if_char_driver); - isst_if_cpu_info_exit(); - } - mutex_unlock(&punit_misc_dev_lock); + mutex_unlock(&punit_misc_dev_open_lock); } EXPORT_SYMBOL_GPL(isst_if_cdev_unregister); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/x86/msi-laptop.c +++ linux-azure-5.4.0/drivers/platform/x86/msi-laptop.c @@ -596,11 +596,10 @@ { .ident = "MSI S270", .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"), + DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT"), DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"), DMI_MATCH(DMI_PRODUCT_VERSION, "0131"), - DMI_MATCH(DMI_CHASSIS_VENDOR, - "MICRO-STAR INT'L CO.,LTD") + DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT") }, .driver_data = &quirk_old_ec_model, .callback = dmi_check_cb @@ -633,8 +632,7 @@ DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"), DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"), DMI_MATCH(DMI_PRODUCT_VERSION, "0131"), - DMI_MATCH(DMI_CHASSIS_VENDOR, - "MICRO-STAR INT'L CO.,LTD") + DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT") }, .driver_data = &quirk_old_ec_model, .callback = dmi_check_cb @@ -1048,8 +1046,7 @@ return -EINVAL; /* Register backlight stuff */ - - if (quirks->old_ec_model || + if (quirks->old_ec_model && acpi_video_get_backlight_type() == acpi_backlight_vendor) { struct backlight_properties props; memset(&props, 0, sizeof(struct backlight_properties)); @@ -1117,6 +1114,8 @@ fail_create_group: if (quirks->load_scm_model) { i8042_remove_filter(msi_laptop_i8042_filter); + cancel_delayed_work_sync(&msi_touchpad_dwork); + input_unregister_device(msi_laptop_input_dev); cancel_delayed_work_sync(&msi_rfkill_dwork); cancel_work_sync(&msi_rfkill_work); rfkill_cleanup(); @@ -1137,6 +1136,7 @@ { if (quirks->load_scm_model) { i8042_remove_filter(msi_laptop_i8042_filter); + cancel_delayed_work_sync(&msi_touchpad_dwork); input_unregister_device(msi_laptop_input_dev); cancel_delayed_work_sync(&msi_rfkill_dwork); cancel_work_sync(&msi_rfkill_work); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/x86/samsung-laptop.c +++ linux-azure-5.4.0/drivers/platform/x86/samsung-laptop.c @@ -1121,8 +1121,6 @@ if (value > samsung->kbd_led.max_brightness) value = samsung->kbd_led.max_brightness; - else if (value < 0) - value = 0; samsung->kbd_led_wk = value; queue_work(samsung->led_workqueue, &samsung->kbd_led_work); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/platform/x86/wmi.c +++ linux-azure-5.4.0/drivers/platform/x86/wmi.c @@ -353,7 +353,14 @@ * the WQxx method failed - we should disable collection anyway. */ if ((block->flags & ACPI_WMI_EXPENSIVE) && ACPI_SUCCESS(wc_status)) { - status = acpi_execute_simple_method(handle, wc_method, 0); + /* + * Ignore whether this WCxx call succeeds or not since + * the previously executed WQxx method call might have + * succeeded, and returning the failing status code + * of this call would throw away the result of the WQxx + * call, potentially leaking memory. + */ + acpi_execute_simple_method(handle, wc_method, 0); } return status; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/reset/arm-versatile-reboot.c +++ linux-azure-5.4.0/drivers/power/reset/arm-versatile-reboot.c @@ -146,6 +146,7 @@ versatile_reboot_type = (enum versatile_reboot)reboot_id->data; syscon_regmap = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(syscon_regmap)) return PTR_ERR(syscon_regmap); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/reset/gemini-poweroff.c +++ linux-azure-5.4.0/drivers/power/reset/gemini-poweroff.c @@ -107,8 +107,8 @@ return PTR_ERR(gpw->base); irq = platform_get_irq(pdev, 0); - if (!irq) - return -EINVAL; + if (irq < 0) + return irq; gpw->dev = dev; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/reset/gpio-poweroff.c +++ linux-azure-5.4.0/drivers/power/reset/gpio-poweroff.c @@ -90,6 +90,7 @@ { .compatible = "gpio-poweroff", }, {}, }; +MODULE_DEVICE_TABLE(of, of_gpio_poweroff_match); static struct platform_driver gpio_poweroff_driver = { .probe = gpio_poweroff_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/reset/ltc2952-poweroff.c +++ linux-azure-5.4.0/drivers/power/reset/ltc2952-poweroff.c @@ -160,8 +160,8 @@ static void ltc2952_poweroff_default(struct ltc2952_poweroff *data) { - data->wde_interval = 300L * 1E6L; - data->trigger_delay = ktime_set(2, 500L*1E6L); + data->wde_interval = 300L * NSEC_PER_MSEC; + data->trigger_delay = ktime_set(2, 500L * NSEC_PER_MSEC); hrtimer_init(&data->timer_trigger, CLOCK_MONOTONIC, HRTIMER_MODE_REL); data->timer_trigger.function = ltc2952_poweroff_timer_trigger; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/ab8500_btemp.c +++ linux-azure-5.4.0/drivers/power/supply/ab8500_btemp.c @@ -1120,6 +1120,7 @@ { .compatible = "stericsson,ab8500-btemp", }, { }, }; +MODULE_DEVICE_TABLE(of, ab8500_btemp_match); static struct platform_driver ab8500_btemp_driver = { .probe = ab8500_btemp_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/ab8500_charger.c +++ linux-azure-5.4.0/drivers/power/supply/ab8500_charger.c @@ -407,6 +407,14 @@ static void ab8500_power_supply_changed(struct ab8500_charger *di, struct power_supply *psy) { + /* + * This happens if we get notifications or interrupts and + * the platform has been configured not to support one or + * other type of charging. + */ + if (!psy) + return; + if (di->autopower_cfg) { if (!di->usb.charger_connected && !di->ac.charger_connected && @@ -433,7 +441,15 @@ if (!connected) di->flags.vbus_drop_end = false; - sysfs_notify(&di->usb_chg.psy->dev.kobj, NULL, "present"); + /* + * Sometimes the platform is configured not to support + * USB charging and no psy has been created, but we still + * will get these notifications. + */ + if (di->usb_chg.psy) { + sysfs_notify(&di->usb_chg.psy->dev.kobj, NULL, + "present"); + } if (connected) { mutex_lock(&di->charger_attached_mutex); @@ -3617,6 +3633,7 @@ { .compatible = "stericsson,ab8500-charger", }, { }, }; +MODULE_DEVICE_TABLE(of, ab8500_charger_match); static struct platform_driver ab8500_charger_driver = { .probe = ab8500_charger_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/ab8500_fg.c +++ linux-azure-5.4.0/drivers/power/supply/ab8500_fg.c @@ -2541,8 +2541,10 @@ ret = kobject_init_and_add(&di->fg_kobject, &ab8500_fg_ktype, NULL, "battery"); - if (ret < 0) + if (ret < 0) { + kobject_put(&di->fg_kobject); dev_err(di->dev, "failed to create sysfs entry\n"); + } return ret; } @@ -3230,6 +3232,7 @@ { .compatible = "stericsson,ab8500-fg", }, { }, }; +MODULE_DEVICE_TABLE(of, ab8500_fg_match); static struct platform_driver ab8500_fg_driver = { .probe = ab8500_fg_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/adp5061.c +++ linux-azure-5.4.0/drivers/power/supply/adp5061.c @@ -427,11 +427,11 @@ if (ret < 0) return ret; - chg_type = adp5061_chg_type[ADP5061_CHG_STATUS_1_CHG_STATUS(status1)]; - if (chg_type > ADP5061_CHG_FAST_CV) + chg_type = ADP5061_CHG_STATUS_1_CHG_STATUS(status1); + if (chg_type >= ARRAY_SIZE(adp5061_chg_type)) val->intval = POWER_SUPPLY_STATUS_UNKNOWN; else - val->intval = chg_type; + val->intval = adp5061_chg_type[chg_type]; return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/axp20x_battery.c +++ linux-azure-5.4.0/drivers/power/supply/axp20x_battery.c @@ -185,7 +185,6 @@ union power_supply_propval *val) { struct axp20x_batt_ps *axp20x_batt = power_supply_get_drvdata(psy); - struct iio_channel *chan; int ret = 0, reg, val1; switch (psp) { @@ -265,12 +264,12 @@ if (ret) return ret; - if (reg & AXP20X_PWR_STATUS_BAT_CHARGING) - chan = axp20x_batt->batt_chrg_i; - else - chan = axp20x_batt->batt_dischrg_i; - - ret = iio_read_channel_processed(chan, &val->intval); + if (reg & AXP20X_PWR_STATUS_BAT_CHARGING) { + ret = iio_read_channel_processed(axp20x_batt->batt_chrg_i, &val->intval); + } else { + ret = iio_read_channel_processed(axp20x_batt->batt_dischrg_i, &val1); + val->intval = -val1; + } if (ret) return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/bq25890_charger.c +++ linux-azure-5.4.0/drivers/power/supply/bq25890_charger.c @@ -531,12 +531,12 @@ if (!new_state->online) { /* power removed */ /* disable ADC */ - ret = bq25890_field_write(bq, F_CONV_START, 0); + ret = bq25890_field_write(bq, F_CONV_RATE, 0); if (ret < 0) goto error; } else if (!old_state.online) { /* power inserted */ /* enable ADC, to have control of charge current/voltage */ - ret = bq25890_field_write(bq, F_CONV_START, 1); + ret = bq25890_field_write(bq, F_CONV_RATE, 1); if (ret < 0) goto error; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/bq27xxx_battery_i2c.c +++ linux-azure-5.4.0/drivers/power/supply/bq27xxx_battery_i2c.c @@ -195,7 +195,8 @@ dev_err(&client->dev, "Unable to register IRQ %d error %d\n", client->irq, ret); - return ret; + bq27xxx_battery_teardown(di); + goto err_failed; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/charger-manager.c +++ linux-azure-5.4.0/drivers/power/supply/charger-manager.c @@ -1470,6 +1470,7 @@ }, {}, }; +MODULE_DEVICE_TABLE(of, charger_manager_match); static struct charger_desc *of_cm_parse_desc(struct device *dev) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/max17042_battery.c +++ linux-azure-5.4.0/drivers/power/supply/max17042_battery.c @@ -312,7 +312,10 @@ val->intval = data * 625 / 8; break; case POWER_SUPPLY_PROP_CAPACITY: - ret = regmap_read(map, MAX17042_RepSOC, &data); + if (chip->pdata->enable_current_sense) + ret = regmap_read(map, MAX17042_RepSOC, &data); + else + ret = regmap_read(map, MAX17042_VFSOC, &data); if (ret < 0) return ret; @@ -726,7 +729,7 @@ struct max17042_config_data *config = chip->pdata->config_data; max17042_override_por(map, MAX17042_TGAIN, config->tgain); - max17042_override_por(map, MAx17042_TOFF, config->toff); + max17042_override_por(map, MAX17042_TOFF, config->toff); max17042_override_por(map, MAX17042_CGAIN, config->cgain); max17042_override_por(map, MAX17042_COFF, config->coff); @@ -834,7 +837,8 @@ regmap_read(map, MAX17042_RepSOC, &soc); soc >>= 8; soc_tr = (soc + off) << 8; - soc_tr |= (soc - off); + if (off < soc) + soc_tr |= soc - off; regmap_write(map, MAX17042_SALRT_Th, soc_tr); } @@ -842,8 +846,12 @@ { struct max17042_chip *chip = dev; u32 val; + int ret; + + ret = regmap_read(chip->regmap, MAX17042_STATUS, &val); + if (ret) + return IRQ_HANDLED; - regmap_read(chip->regmap, MAX17042_STATUS, &val); if ((val & STATUS_INTR_SOCMIN_BIT) || (val & STATUS_INTR_SOCMAX_BIT)) { dev_info(&chip->client->dev, "SOC threshold INTR\n"); @@ -1076,7 +1084,7 @@ } if (client->irq) { - unsigned int flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT; + unsigned int flags = IRQF_ONESHOT; /* * On ACPI systems the IRQ may be handled by ACPI-event code, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/power_supply_core.c +++ linux-azure-5.4.0/drivers/power/supply/power_supply_core.c @@ -742,6 +742,10 @@ return NULL; for (i = 0; i < POWER_SUPPLY_OCV_TEMP_MAX; i++) { + /* Out of capacity tables */ + if (!info->ocv_table[i]) + break; + temp_diff = abs(info->ocv_temp[i] - temp); if (temp_diff < best_temp_diff) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/rt5033_battery.c +++ linux-azure-5.4.0/drivers/power/supply/rt5033_battery.c @@ -60,7 +60,7 @@ regmap_read(battery->regmap, regh, &msb); regmap_read(battery->regmap, regl, &lsb); - ret = ((msb << 4) + (lsb >> 4)) * 1250 / 1000; + ret = ((msb << 4) + (lsb >> 4)) * 1250; return ret; } @@ -164,9 +164,16 @@ }; MODULE_DEVICE_TABLE(i2c, rt5033_battery_id); +static const struct of_device_id rt5033_battery_of_match[] = { + { .compatible = "richtek,rt5033-battery", }, + { } +}; +MODULE_DEVICE_TABLE(of, rt5033_battery_of_match); + static struct i2c_driver rt5033_battery_driver = { .driver = { .name = "rt5033-battery", + .of_match_table = rt5033_battery_of_match, }, .probe = rt5033_battery_probe, .remove = rt5033_battery_remove, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/sc2731_charger.c +++ linux-azure-5.4.0/drivers/power/supply/sc2731_charger.c @@ -524,6 +524,7 @@ { .compatible = "sprd,sc2731-charger", }, { } }; +MODULE_DEVICE_TABLE(of, sc2731_charger_of_match); static struct platform_driver sc2731_charger_driver = { .driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/sc27xx_fuel_gauge.c +++ linux-azure-5.4.0/drivers/power/supply/sc27xx_fuel_gauge.c @@ -1215,6 +1215,7 @@ { .compatible = "sprd,sc2731-fgu", }, { } }; +MODULE_DEVICE_TABLE(of, sc27xx_fgu_of_match); static struct platform_driver sc27xx_fgu_driver = { .probe = sc27xx_fgu_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/power/supply/wm8350_power.c +++ linux-azure-5.4.0/drivers/power/supply/wm8350_power.c @@ -408,44 +408,112 @@ * Initialisation *********************************************************************/ -static void wm8350_init_charger(struct wm8350 *wm8350) +static int wm8350_init_charger(struct wm8350 *wm8350) { + int ret; + /* register our interest in charger events */ - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_HOT, + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_HOT, wm8350_charger_handler, 0, "Battery hot", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_COLD, + if (ret) + goto err; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_COLD, wm8350_charger_handler, 0, "Battery cold", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_FAIL, + if (ret) + goto free_chg_bat_hot; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_BAT_FAIL, wm8350_charger_handler, 0, "Battery fail", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_TO, + if (ret) + goto free_chg_bat_cold; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_TO, wm8350_charger_handler, 0, "Charger timeout", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_END, + if (ret) + goto free_chg_bat_fail; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_END, wm8350_charger_handler, 0, "Charge end", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_START, + if (ret) + goto free_chg_to; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_START, wm8350_charger_handler, 0, "Charge start", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_FAST_RDY, + if (ret) + goto free_chg_end; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_FAST_RDY, wm8350_charger_handler, 0, "Fast charge ready", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P9, + if (ret) + goto free_chg_start; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P9, wm8350_charger_handler, 0, "Battery <3.9V", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P1, + if (ret) + goto free_chg_fast_rdy; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P1, wm8350_charger_handler, 0, "Battery <3.1V", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_2P85, + if (ret) + goto free_chg_vbatt_lt_3p9; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_2P85, wm8350_charger_handler, 0, "Battery <2.85V", wm8350); + if (ret) + goto free_chg_vbatt_lt_3p1; /* and supply change events */ - wm8350_register_irq(wm8350, WM8350_IRQ_EXT_USB_FB, + ret = wm8350_register_irq(wm8350, WM8350_IRQ_EXT_USB_FB, wm8350_charger_handler, 0, "USB", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_EXT_WALL_FB, + if (ret) + goto free_chg_vbatt_lt_2p85; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_EXT_WALL_FB, wm8350_charger_handler, 0, "Wall", wm8350); - wm8350_register_irq(wm8350, WM8350_IRQ_EXT_BAT_FB, + if (ret) + goto free_ext_usb_fb; + + ret = wm8350_register_irq(wm8350, WM8350_IRQ_EXT_BAT_FB, wm8350_charger_handler, 0, "Battery", wm8350); + if (ret) + goto free_ext_wall_fb; + + return 0; + +free_ext_wall_fb: + wm8350_free_irq(wm8350, WM8350_IRQ_EXT_WALL_FB, wm8350); +free_ext_usb_fb: + wm8350_free_irq(wm8350, WM8350_IRQ_EXT_USB_FB, wm8350); +free_chg_vbatt_lt_2p85: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_2P85, wm8350); +free_chg_vbatt_lt_3p1: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P1, wm8350); +free_chg_vbatt_lt_3p9: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P9, wm8350); +free_chg_fast_rdy: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_FAST_RDY, wm8350); +free_chg_start: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_START, wm8350); +free_chg_end: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_END, wm8350); +free_chg_to: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_TO, wm8350); +free_chg_bat_fail: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_BAT_FAIL, wm8350); +free_chg_bat_cold: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_BAT_COLD, wm8350); +free_chg_bat_hot: + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_BAT_HOT, wm8350); +err: + return ret; } static void free_charger_irq(struct wm8350 *wm8350) @@ -456,6 +524,7 @@ wm8350_free_irq(wm8350, WM8350_IRQ_CHG_TO, wm8350); wm8350_free_irq(wm8350, WM8350_IRQ_CHG_END, wm8350); wm8350_free_irq(wm8350, WM8350_IRQ_CHG_START, wm8350); + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_FAST_RDY, wm8350); wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P9, wm8350); wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P1, wm8350); wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_2P85, wm8350); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ptp/Kconfig +++ linux-azure-5.4.0/drivers/ptp/Kconfig @@ -92,7 +92,8 @@ config PTP_1588_CLOCK_PCH tristate "Intel PCH EG20T as PTP clock" depends on X86_32 || COMPILE_TEST - depends on HAS_IOMEM && NET + depends on HAS_IOMEM && PCI + depends on NET imply PTP_1588_CLOCK help This driver adds support for using the PCH EG20T as a PTP only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ptp/ptp_pch.c +++ linux-azure-5.4.0/drivers/ptp/ptp_pch.c @@ -683,6 +683,7 @@ }, {0} }; +MODULE_DEVICE_TABLE(pci, pch_ieee1588_pcidev_id); static struct pci_driver pch_driver = { .name = KBUILD_MODNAME, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ptp/ptp_sysfs.c +++ linux-azure-5.4.0/drivers/ptp/ptp_sysfs.c @@ -13,7 +13,7 @@ struct device_attribute *attr, char *page) { struct ptp_clock *ptp = dev_get_drvdata(dev); - return snprintf(page, PAGE_SIZE-1, "%s\n", ptp->info->name); + return sysfs_emit(page, "%s\n", ptp->info->name); } static DEVICE_ATTR_RO(clock_name); @@ -227,7 +227,7 @@ mutex_unlock(&ptp->pincfg_mux); - return snprintf(page, PAGE_SIZE, "%u %u\n", func, chan); + return sysfs_emit(page, "%u %u\n", func, chan); } static ssize_t ptp_pin_store(struct device *dev, struct device_attribute *attr, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-imx1.c +++ linux-azure-5.4.0/drivers/pwm/pwm-imx1.c @@ -180,8 +180,6 @@ { struct pwm_imx1_chip *imx = platform_get_drvdata(pdev); - pwm_imx1_clk_disable_unprepare(&imx->chip); - return pwmchip_remove(&imx->chip); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-lpc18xx-sct.c +++ linux-azure-5.4.0/drivers/pwm/pwm-lpc18xx-sct.c @@ -400,12 +400,6 @@ lpc18xx_pwm_writel(lpc18xx_pwm, LPC18XX_PWM_LIMIT, BIT(lpc18xx_pwm->period_event)); - ret = pwmchip_add(&lpc18xx_pwm->chip); - if (ret < 0) { - dev_err(&pdev->dev, "pwmchip_add failed: %d\n", ret); - goto disable_pwmclk; - } - for (i = 0; i < lpc18xx_pwm->chip.npwm; i++) { struct lpc18xx_pwm_data *data; @@ -415,14 +409,12 @@ GFP_KERNEL); if (!data) { ret = -ENOMEM; - goto remove_pwmchip; + goto disable_pwmclk; } pwm_set_chip_data(pwm, data); } - platform_set_drvdata(pdev, lpc18xx_pwm); - val = lpc18xx_pwm_readl(lpc18xx_pwm, LPC18XX_PWM_CTRL); val &= ~LPC18XX_PWM_BIDIR; val &= ~LPC18XX_PWM_CTRL_HALT; @@ -430,10 +422,16 @@ val |= LPC18XX_PWM_PRE(0); lpc18xx_pwm_writel(lpc18xx_pwm, LPC18XX_PWM_CTRL, val); + ret = pwmchip_add(&lpc18xx_pwm->chip); + if (ret < 0) { + dev_err(&pdev->dev, "pwmchip_add failed: %d\n", ret); + goto disable_pwmclk; + } + + platform_set_drvdata(pdev, lpc18xx_pwm); + return 0; -remove_pwmchip: - pwmchip_remove(&lpc18xx_pwm->chip); disable_pwmclk: clk_disable_unprepare(lpc18xx_pwm->pwm_clk); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-lpc32xx.c +++ linux-azure-5.4.0/drivers/pwm/pwm-lpc32xx.c @@ -120,17 +120,17 @@ lpc32xx->chip.npwm = 1; lpc32xx->chip.base = -1; + /* If PWM is disabled, configure the output to the default value */ + val = readl(lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + val &= ~PWM_PIN_LEVEL; + writel(val, lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + ret = pwmchip_add(&lpc32xx->chip); if (ret < 0) { dev_err(&pdev->dev, "failed to add PWM chip, error %d\n", ret); return ret; } - /* When PWM is disable, configure the output to the default value */ - val = readl(lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); - val &= ~PWM_PIN_LEVEL; - writel(val, lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); - platform_set_drvdata(pdev, lpc32xx); return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-spear.c +++ linux-azure-5.4.0/drivers/pwm/pwm-spear.c @@ -231,10 +231,6 @@ static int spear_pwm_remove(struct platform_device *pdev) { struct spear_pwm_chip *pc = platform_get_drvdata(pdev); - int i; - - for (i = 0; i < NUM_PWM; i++) - pwm_disable(&pc->chip.pwms[i]); /* clk was prepared in probe, hence unprepare it here */ clk_unprepare(pc->clk); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-sprd.c +++ linux-azure-5.4.0/drivers/pwm/pwm-sprd.c @@ -180,13 +180,10 @@ } } - if (state->period != cstate->period || - state->duty_cycle != cstate->duty_cycle) { - ret = sprd_pwm_config(spc, pwm, state->duty_cycle, - state->period); - if (ret) - return ret; - } + ret = sprd_pwm_config(spc, pwm, state->duty_cycle, + state->period); + if (ret) + return ret; sprd_pwm_write(spc, pwm->hwpwm, SPRD_PWM_ENABLE, 1); } else if (cstate->enabled) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-stm32-lp.c +++ linux-azure-5.4.0/drivers/pwm/pwm-stm32-lp.c @@ -225,8 +225,6 @@ { struct stm32_pwm_lp *priv = platform_get_drvdata(pdev); - pwm_disable(&priv->chip.pwms[0]); - return pwmchip_remove(&priv->chip); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/pwm/pwm-tegra.c +++ linux-azure-5.4.0/drivers/pwm/pwm-tegra.c @@ -232,7 +232,6 @@ static int tegra_pwm_remove(struct platform_device *pdev) { struct tegra_pwm_chip *pc = platform_get_drvdata(pdev); - unsigned int i; int err; if (WARN_ON(!pc)) @@ -242,18 +241,6 @@ if (err < 0) return err; - for (i = 0; i < pc->chip.npwm; i++) { - struct pwm_device *pwm = &pc->chip.pwms[i]; - - if (!pwm_is_enabled(pwm)) - if (clk_prepare_enable(pc->clk) < 0) - continue; - - pwm_writel(pc, i, 0); - - clk_disable_unprepare(pc->clk); - } - reset_control_assert(pc->rst); clk_disable_unprepare(pc->clk); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/da9052-regulator.c +++ linux-azure-5.4.0/drivers/regulator/da9052-regulator.c @@ -250,7 +250,8 @@ case DA9052_ID_BUCK3: case DA9052_ID_LDO2: case DA9052_ID_LDO3: - ret = (new_sel - old_sel) * info->step_uV / 6250; + ret = DIV_ROUND_UP(abs(new_sel - old_sel) * info->step_uV, + 6250); break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/hi6421-regulator.c +++ linux-azure-5.4.0/drivers/regulator/hi6421-regulator.c @@ -366,9 +366,8 @@ static int hi6421_regulator_enable(struct regulator_dev *rdev) { - struct hi6421_regulator_pdata *pdata; + struct hi6421_regulator_pdata *pdata = rdev_get_drvdata(rdev); - pdata = dev_get_drvdata(rdev->dev.parent); /* hi6421 spec requires regulator enablement must be serialized: * - Because when BUCK, LDO switching from off to on, it will have * a huge instantaneous current; so you can not turn on two or @@ -385,9 +384,10 @@ static unsigned int hi6421_regulator_ldo_get_mode(struct regulator_dev *rdev) { - struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); - u32 reg_val; + struct hi6421_regulator_info *info; + unsigned int reg_val; + info = container_of(rdev->desc, struct hi6421_regulator_info, desc); regmap_read(rdev->regmap, rdev->desc->enable_reg, ®_val); if (reg_val & info->mode_mask) return REGULATOR_MODE_IDLE; @@ -397,9 +397,10 @@ static unsigned int hi6421_regulator_buck_get_mode(struct regulator_dev *rdev) { - struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); - u32 reg_val; + struct hi6421_regulator_info *info; + unsigned int reg_val; + info = container_of(rdev->desc, struct hi6421_regulator_info, desc); regmap_read(rdev->regmap, rdev->desc->enable_reg, ®_val); if (reg_val & info->mode_mask) return REGULATOR_MODE_STANDBY; @@ -410,9 +411,10 @@ static int hi6421_regulator_ldo_set_mode(struct regulator_dev *rdev, unsigned int mode) { - struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); - u32 new_mode; + struct hi6421_regulator_info *info; + unsigned int new_mode; + info = container_of(rdev->desc, struct hi6421_regulator_info, desc); switch (mode) { case REGULATOR_MODE_NORMAL: new_mode = 0; @@ -434,9 +436,10 @@ static int hi6421_regulator_buck_set_mode(struct regulator_dev *rdev, unsigned int mode) { - struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); - u32 new_mode; + struct hi6421_regulator_info *info; + unsigned int new_mode; + info = container_of(rdev->desc, struct hi6421_regulator_info, desc); switch (mode) { case REGULATOR_MODE_NORMAL: new_mode = 0; @@ -459,7 +462,9 @@ hi6421_regulator_ldo_get_optimum_mode(struct regulator_dev *rdev, int input_uV, int output_uV, int load_uA) { - struct hi6421_regulator_info *info = rdev_get_drvdata(rdev); + struct hi6421_regulator_info *info; + + info = container_of(rdev->desc, struct hi6421_regulator_info, desc); if (load_uA > info->eco_microamp) return REGULATOR_MODE_NORMAL; @@ -543,14 +548,13 @@ if (!pdata) return -ENOMEM; mutex_init(&pdata->lock); - platform_set_drvdata(pdev, pdata); for (i = 0; i < ARRAY_SIZE(hi6421_regulator_info); i++) { /* assign per-regulator data */ info = &hi6421_regulator_info[i]; config.dev = pdev->dev.parent; - config.driver_data = info; + config.driver_data = pdata; config.regmap = pmic->regmap; rdev = devm_regulator_register(&pdev->dev, &info->desc, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/hi655x-regulator.c +++ linux-azure-5.4.0/drivers/regulator/hi655x-regulator.c @@ -72,7 +72,7 @@ static int hi655x_is_enabled(struct regulator_dev *rdev) { unsigned int value = 0; - struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); + const struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); regmap_read(rdev->regmap, regulator->status_reg, &value); return (value & rdev->desc->enable_mask); @@ -80,7 +80,7 @@ static int hi655x_disable(struct regulator_dev *rdev) { - struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); + const struct hi655x_regulator *regulator = rdev_get_drvdata(rdev); return regmap_write(rdev->regmap, regulator->disable_reg, rdev->desc->enable_mask); @@ -169,7 +169,6 @@ static int hi655x_regulator_probe(struct platform_device *pdev) { unsigned int i; - struct hi655x_regulator *regulator; struct hi655x_pmic *pmic; struct regulator_config config = { }; struct regulator_dev *rdev; @@ -180,22 +179,17 @@ return -ENODEV; } - regulator = devm_kzalloc(&pdev->dev, sizeof(*regulator), GFP_KERNEL); - if (!regulator) - return -ENOMEM; - - platform_set_drvdata(pdev, regulator); - config.dev = pdev->dev.parent; config.regmap = pmic->regmap; - config.driver_data = regulator; for (i = 0; i < ARRAY_SIZE(regulators); i++) { + config.driver_data = (void *) ®ulators[i]; + rdev = devm_regulator_register(&pdev->dev, ®ulators[i].rdesc, &config); if (IS_ERR(rdev)) { dev_err(&pdev->dev, "failed to register regulator %s\n", - regulator->rdesc.name); + regulators[i].rdesc.name); return PTR_ERR(rdev); } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/max77620-regulator.c +++ linux-azure-5.4.0/drivers/regulator/max77620-regulator.c @@ -814,6 +814,13 @@ config.dev = dev; config.driver_data = pmic; + /* + * Set of_node_reuse flag to prevent driver core from attempting to + * claim any pinmux resources already claimed by the parent device. + * Otherwise PMIC driver will fail to re-probe. + */ + device_set_of_node_from_dev(&pdev->dev, pdev->dev.parent); + for (id = 0; id < MAX77620_NUM_REGS; id++) { struct regulator_dev *rdev; struct regulator_desc *rdesc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/mt6358-regulator.c +++ linux-azure-5.4.0/drivers/regulator/mt6358-regulator.c @@ -457,7 +457,7 @@ MT6358_REG_FIXED("ldo_vaud28", VAUD28, MT6358_LDO_VAUD28_CON0, 0, 2800000), MT6358_LDO("ldo_vdram2", VDRAM2, vdram2_voltages, vdram2_idx, - MT6358_LDO_VDRAM2_CON0, 0, MT6358_LDO_VDRAM2_ELR0, 0x10, 0), + MT6358_LDO_VDRAM2_CON0, 0, MT6358_LDO_VDRAM2_ELR0, 0xf, 0), MT6358_LDO("ldo_vsim1", VSIM1, vsim_voltages, vsim_idx, MT6358_LDO_VSIM1_CON0, 0, MT6358_VSIM1_ANA_CON0, 0xf00, 8), MT6358_LDO("ldo_vibr", VIBR, vibr_voltages, vibr_idx, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/of_regulator.c +++ linux-azure-5.4.0/drivers/regulator/of_regulator.c @@ -206,8 +206,12 @@ } suspend_np = of_get_child_by_name(np, regulator_states[i]); - if (!suspend_np || !suspend_state) + if (!suspend_np) continue; + if (!suspend_state) { + of_node_put(suspend_np); + continue; + } if (!of_property_read_u32(suspend_np, "regulator-mode", &pval)) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/qcom_rpm-regulator.c +++ linux-azure-5.4.0/drivers/regulator/qcom_rpm-regulator.c @@ -812,6 +812,12 @@ }; static const struct rpm_regulator_data rpm_pm8058_regulators[] = { + { "s0", QCOM_RPM_PM8058_SMPS0, &pm8058_smps, "vdd_s0" }, + { "s1", QCOM_RPM_PM8058_SMPS1, &pm8058_smps, "vdd_s1" }, + { "s2", QCOM_RPM_PM8058_SMPS2, &pm8058_smps, "vdd_s2" }, + { "s3", QCOM_RPM_PM8058_SMPS3, &pm8058_smps, "vdd_s3" }, + { "s4", QCOM_RPM_PM8058_SMPS4, &pm8058_smps, "vdd_s4" }, + { "l0", QCOM_RPM_PM8058_LDO0, &pm8058_nldo, "vdd_l0_l1_lvs" }, { "l1", QCOM_RPM_PM8058_LDO1, &pm8058_nldo, "vdd_l0_l1_lvs" }, { "l2", QCOM_RPM_PM8058_LDO2, &pm8058_pldo, "vdd_l2_l11_l12" }, @@ -839,12 +845,6 @@ { "l24", QCOM_RPM_PM8058_LDO24, &pm8058_nldo, "vdd_l23_l24_l25" }, { "l25", QCOM_RPM_PM8058_LDO25, &pm8058_nldo, "vdd_l23_l24_l25" }, - { "s0", QCOM_RPM_PM8058_SMPS0, &pm8058_smps, "vdd_s0" }, - { "s1", QCOM_RPM_PM8058_SMPS1, &pm8058_smps, "vdd_s1" }, - { "s2", QCOM_RPM_PM8058_SMPS2, &pm8058_smps, "vdd_s2" }, - { "s3", QCOM_RPM_PM8058_SMPS3, &pm8058_smps, "vdd_s3" }, - { "s4", QCOM_RPM_PM8058_SMPS4, &pm8058_smps, "vdd_s4" }, - { "lvs0", QCOM_RPM_PM8058_LVS0, &pm8058_switch, "vdd_l0_l1_lvs" }, { "lvs1", QCOM_RPM_PM8058_LVS1, &pm8058_switch, "vdd_l0_l1_lvs" }, @@ -853,6 +853,12 @@ }; static const struct rpm_regulator_data rpm_pm8901_regulators[] = { + { "s0", QCOM_RPM_PM8901_SMPS0, &pm8901_ftsmps, "vdd_s0" }, + { "s1", QCOM_RPM_PM8901_SMPS1, &pm8901_ftsmps, "vdd_s1" }, + { "s2", QCOM_RPM_PM8901_SMPS2, &pm8901_ftsmps, "vdd_s2" }, + { "s3", QCOM_RPM_PM8901_SMPS3, &pm8901_ftsmps, "vdd_s3" }, + { "s4", QCOM_RPM_PM8901_SMPS4, &pm8901_ftsmps, "vdd_s4" }, + { "l0", QCOM_RPM_PM8901_LDO0, &pm8901_nldo, "vdd_l0" }, { "l1", QCOM_RPM_PM8901_LDO1, &pm8901_pldo, "vdd_l1" }, { "l2", QCOM_RPM_PM8901_LDO2, &pm8901_pldo, "vdd_l2" }, @@ -861,12 +867,6 @@ { "l5", QCOM_RPM_PM8901_LDO5, &pm8901_pldo, "vdd_l5" }, { "l6", QCOM_RPM_PM8901_LDO6, &pm8901_pldo, "vdd_l6" }, - { "s0", QCOM_RPM_PM8901_SMPS0, &pm8901_ftsmps, "vdd_s0" }, - { "s1", QCOM_RPM_PM8901_SMPS1, &pm8901_ftsmps, "vdd_s1" }, - { "s2", QCOM_RPM_PM8901_SMPS2, &pm8901_ftsmps, "vdd_s2" }, - { "s3", QCOM_RPM_PM8901_SMPS3, &pm8901_ftsmps, "vdd_s3" }, - { "s4", QCOM_RPM_PM8901_SMPS4, &pm8901_ftsmps, "vdd_s4" }, - { "lvs0", QCOM_RPM_PM8901_LVS0, &pm8901_switch, "lvs0_in" }, { "lvs1", QCOM_RPM_PM8901_LVS1, &pm8901_switch, "lvs1_in" }, { "lvs2", QCOM_RPM_PM8901_LVS2, &pm8901_switch, "lvs2_in" }, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/qcom_smd-regulator.c +++ linux-azure-5.4.0/drivers/regulator/qcom_smd-regulator.c @@ -9,6 +9,7 @@ #include #include #include +#include #include struct qcom_rpm_reg { @@ -776,52 +777,93 @@ }; MODULE_DEVICE_TABLE(of, rpm_of_match); -static int rpm_reg_probe(struct platform_device *pdev) +/** + * rpm_regulator_init_vreg() - initialize all attributes of a qcom_smd-regulator + * @vreg: Pointer to the individual qcom_smd-regulator resource + * @dev: Pointer to the top level qcom_smd-regulator PMIC device + * @node: Pointer to the individual qcom_smd-regulator resource + * device node + * @rpm: Pointer to the rpm bus node + * @pmic_rpm_data: Pointer to a null-terminated array of qcom_smd-regulator + * resources defined for the top level PMIC device + * + * Return: 0 on success, errno on failure + */ +static int rpm_regulator_init_vreg(struct qcom_rpm_reg *vreg, struct device *dev, + struct device_node *node, struct qcom_smd_rpm *rpm, + const struct rpm_regulator_data *pmic_rpm_data) { - const struct rpm_regulator_data *reg; - const struct of_device_id *match; - struct regulator_config config = { }; + struct regulator_config config = {}; + const struct rpm_regulator_data *rpm_data; struct regulator_dev *rdev; + int ret; + + for (rpm_data = pmic_rpm_data; rpm_data->name; rpm_data++) + if (of_node_name_eq(node, rpm_data->name)) + break; + + if (!rpm_data->name) { + dev_err(dev, "Unknown regulator %pOFn\n", node); + return -EINVAL; + } + + vreg->dev = dev; + vreg->rpm = rpm; + vreg->type = rpm_data->type; + vreg->id = rpm_data->id; + + memcpy(&vreg->desc, rpm_data->desc, sizeof(vreg->desc)); + vreg->desc.name = rpm_data->name; + vreg->desc.supply_name = rpm_data->supply; + vreg->desc.owner = THIS_MODULE; + vreg->desc.type = REGULATOR_VOLTAGE; + vreg->desc.of_match = rpm_data->name; + + config.dev = dev; + config.of_node = node; + config.driver_data = vreg; + + rdev = devm_regulator_register(dev, &vreg->desc, &config); + if (IS_ERR(rdev)) { + ret = PTR_ERR(rdev); + dev_err(dev, "%pOFn: devm_regulator_register() failed, ret=%d\n", node, ret); + return ret; + } + + return 0; +} + +static int rpm_reg_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + const struct rpm_regulator_data *vreg_data; + struct device_node *node; struct qcom_rpm_reg *vreg; struct qcom_smd_rpm *rpm; + int ret; rpm = dev_get_drvdata(pdev->dev.parent); if (!rpm) { - dev_err(&pdev->dev, "unable to retrieve handle to rpm\n"); + dev_err(&pdev->dev, "Unable to retrieve handle to rpm\n"); return -ENODEV; } - match = of_match_device(rpm_of_match, &pdev->dev); - if (!match) { - dev_err(&pdev->dev, "failed to match device\n"); + vreg_data = of_device_get_match_data(dev); + if (!vreg_data) return -ENODEV; - } - for (reg = match->data; reg->name; reg++) { + for_each_available_child_of_node(dev->of_node, node) { vreg = devm_kzalloc(&pdev->dev, sizeof(*vreg), GFP_KERNEL); - if (!vreg) + if (!vreg) { + of_node_put(node); return -ENOMEM; + } + + ret = rpm_regulator_init_vreg(vreg, dev, node, rpm, vreg_data); - vreg->dev = &pdev->dev; - vreg->type = reg->type; - vreg->id = reg->id; - vreg->rpm = rpm; - - memcpy(&vreg->desc, reg->desc, sizeof(vreg->desc)); - - vreg->desc.id = -1; - vreg->desc.owner = THIS_MODULE; - vreg->desc.type = REGULATOR_VOLTAGE; - vreg->desc.name = reg->name; - vreg->desc.supply_name = reg->supply; - vreg->desc.of_match = reg->name; - - config.dev = &pdev->dev; - config.driver_data = vreg; - rdev = devm_regulator_register(&pdev->dev, &vreg->desc, &config); - if (IS_ERR(rdev)) { - dev_err(&pdev->dev, "failed to register %s\n", reg->name); - return PTR_ERR(rdev); + if (ret < 0) { + of_node_put(node); + return ret; } } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/uniphier-regulator.c +++ linux-azure-5.4.0/drivers/regulator/uniphier-regulator.c @@ -203,6 +203,7 @@ }, { /* Sentinel */ }, }; +MODULE_DEVICE_TABLE(of, uniphier_regulator_match); static struct platform_driver uniphier_regulator_driver = { .probe = uniphier_regulator_probe, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/regulator/wm8994-regulator.c +++ linux-azure-5.4.0/drivers/regulator/wm8994-regulator.c @@ -82,6 +82,35 @@ .min_uV = 2400000, .uV_step = 100000, .enable_time = 3000, + .off_on_delay = 36000, + .owner = THIS_MODULE, + }, + { + .name = "LDO2", + .id = 2, + .type = REGULATOR_VOLTAGE, + .n_voltages = WM8994_LDO2_MAX_SELECTOR + 1, + .vsel_reg = WM8994_LDO_2, + .vsel_mask = WM8994_LDO2_VSEL_MASK, + .ops = &wm8994_ldo2_ops, + .enable_time = 3000, + .off_on_delay = 36000, + .owner = THIS_MODULE, + }, +}; + +static const struct regulator_desc wm8958_ldo_desc[] = { + { + .name = "LDO1", + .id = 1, + .type = REGULATOR_VOLTAGE, + .n_voltages = WM8994_LDO1_MAX_SELECTOR + 1, + .vsel_reg = WM8994_LDO_1, + .vsel_mask = WM8994_LDO1_VSEL_MASK, + .ops = &wm8994_ldo1_ops, + .min_uV = 2400000, + .uV_step = 100000, + .enable_time = 3000, .owner = THIS_MODULE, }, { @@ -172,9 +201,16 @@ * regulator core and we need not worry about it on the * error path. */ - ldo->regulator = devm_regulator_register(&pdev->dev, - &wm8994_ldo_desc[id], - &config); + if (ldo->wm8994->type == WM8994) { + ldo->regulator = devm_regulator_register(&pdev->dev, + &wm8994_ldo_desc[id], + &config); + } else { + ldo->regulator = devm_regulator_register(&pdev->dev, + &wm8958_ldo_desc[id], + &config); + } + if (IS_ERR(ldo->regulator)) { ret = PTR_ERR(ldo->regulator); dev_err(wm8994->dev, "Failed to register LDO%d: %d\n", only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/remoteproc/qcom_wcnss.c +++ linux-azure-5.4.0/drivers/remoteproc/qcom_wcnss.c @@ -407,6 +407,7 @@ irq_handler_t thread_fn) { int ret; + int irq_number; ret = platform_get_irq_byname(pdev, name); if (ret < 0 && optional) { @@ -417,14 +418,19 @@ return ret; } + irq_number = ret; + ret = devm_request_threaded_irq(&pdev->dev, ret, NULL, thread_fn, IRQF_TRIGGER_RISING | IRQF_ONESHOT, "wcnss", wcnss); - if (ret) + if (ret) { dev_err(&pdev->dev, "request %s IRQ failed\n", name); + return ret; + } - return ret; + /* Return the IRQ number if the IRQ was successfully acquired */ + return irq_number; } static int wcnss_alloc_memory_region(struct qcom_wcnss *wcnss) @@ -440,6 +446,7 @@ } ret = of_address_to_resource(node, 0, &r); + of_node_put(node); if (ret) return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/reset/reset-a10sr.c +++ linux-azure-5.4.0/drivers/reset/reset-a10sr.c @@ -118,6 +118,7 @@ .probe = a10sr_reset_probe, .driver = { .name = "altr_a10sr_reset", + .of_match_table = a10sr_reset_of_match, }, }; module_platform_driver(a10sr_reset_driver); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/reset/reset-socfpga.c +++ linux-azure-5.4.0/drivers/reset/reset-socfpga.c @@ -86,3 +86,29 @@ for_each_matching_node(np, socfpga_early_reset_dt_ids) a10_reset_init(np); } + +/* + * The early driver is problematic, because it doesn't register + * itself as a driver. This causes certain device links to prevent + * consumer devices from probing. The hacky solution is to register + * an empty driver, whose only job is to attach itself to the reset + * manager and call probe. + */ +static const struct of_device_id socfpga_reset_dt_ids[] = { + { .compatible = "altr,rst-mgr", }, + { /* sentinel */ }, +}; + +static int reset_simple_probe(struct platform_device *pdev) +{ + return 0; +} + +static struct platform_driver reset_socfpga_driver = { + .probe = reset_simple_probe, + .driver = { + .name = "socfpga-reset", + .of_match_table = socfpga_reset_dt_ids, + }, +}; +builtin_platform_driver(reset_socfpga_driver); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/reset/reset-ti-syscon.c +++ linux-azure-5.4.0/drivers/reset/reset-ti-syscon.c @@ -58,8 +58,8 @@ unsigned int nr_controls; }; -#define to_ti_syscon_reset_data(rcdev) \ - container_of(rcdev, struct ti_syscon_reset_data, rcdev) +#define to_ti_syscon_reset_data(_rcdev) \ + container_of(_rcdev, struct ti_syscon_reset_data, rcdev) /** * ti_syscon_reset_assert() - assert device reset only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/reset/reset-zynqmp.c +++ linux-azure-5.4.0/drivers/reset/reset-zynqmp.c @@ -46,7 +46,8 @@ unsigned long id) { struct zynqmp_reset_data *priv = to_zynqmp_reset_data(rcdev); - int val, err; + int err; + u32 val; err = priv->eemi_ops->reset_get_status(ZYNQMP_RESET_ID + id, &val); if (err) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/reset/tegra/reset-bpmp.c +++ linux-azure-5.4.0/drivers/reset/tegra/reset-bpmp.c @@ -20,6 +20,7 @@ struct tegra_bpmp *bpmp = to_tegra_bpmp(rstc); struct mrq_reset_request request; struct tegra_bpmp_message msg; + int err; memset(&request, 0, sizeof(request)); request.cmd = command; @@ -30,7 +31,13 @@ msg.tx.data = &request; msg.tx.size = sizeof(request); - return tegra_bpmp_transfer(bpmp, &msg); + err = tegra_bpmp_transfer(bpmp, &msg); + if (err) + return err; + if (msg.rx.ret) + return -EINVAL; + + return 0; } static int tegra_bpmp_reset_module(struct reset_controller_dev *rstc, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rpmsg/rpmsg_core.c +++ linux-azure-5.4.0/drivers/rpmsg/rpmsg_core.c @@ -473,13 +473,25 @@ err = rpdrv->probe(rpdev); if (err) { dev_err(dev, "%s: failed: %d\n", __func__, err); - if (ept) - rpmsg_destroy_ept(ept); - goto out; + goto destroy_ept; } - if (ept && rpdev->ops->announce_create) + if (ept && rpdev->ops->announce_create) { err = rpdev->ops->announce_create(rpdev); + if (err) { + dev_err(dev, "failed to announce creation\n"); + goto remove_rpdev; + } + } + + return 0; + +remove_rpdev: + if (rpdrv->remove) + rpdrv->remove(rpdev); +destroy_ept: + if (ept) + rpmsg_destroy_ept(ept); out: return err; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/class.c +++ linux-azure-5.4.0/drivers/rtc/class.c @@ -26,6 +26,15 @@ static void rtc_device_release(struct device *dev) { struct rtc_device *rtc = to_rtc_device(dev); + struct timerqueue_head *head = &rtc->timerqueue; + struct timerqueue_node *node; + + mutex_lock(&rtc->ops_lock); + while ((node = timerqueue_getnext(head))) + timerqueue_del(head, node); + mutex_unlock(&rtc->ops_lock); + + cancel_work_sync(&rtc->irqwork); ida_simple_remove(&rtc_ida, rtc->id); kfree(rtc); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/proc.c +++ linux-azure-5.4.0/drivers/rtc/proc.c @@ -23,8 +23,8 @@ int size; char name[NAME_SIZE]; - size = scnprintf(name, NAME_SIZE, "rtc%d", rtc->id); - if (size > NAME_SIZE) + size = snprintf(name, NAME_SIZE, "rtc%d", rtc->id); + if (size >= NAME_SIZE) return false; return !strncmp(name, CONFIG_RTC_HCTOSYS_DEVICE, NAME_SIZE); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-max77686.c +++ linux-azure-5.4.0/drivers/rtc/rtc-max77686.c @@ -707,8 +707,8 @@ add_rtc_irq: ret = regmap_add_irq_chip(info->rtc_regmap, info->rtc_irq, - IRQF_TRIGGER_FALLING | IRQF_ONESHOT | - IRQF_SHARED, 0, info->drv_data->rtc_irq_chip, + IRQF_ONESHOT | IRQF_SHARED, + 0, info->drv_data->rtc_irq_chip, &info->rtc_irq_data); if (ret < 0) { dev_err(info->dev, "Failed to add RTC irq chip: %d\n", ret); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-mc146818-lib.c +++ linux-azure-5.4.0/drivers/rtc/rtc-mc146818-lib.c @@ -83,7 +83,7 @@ time->tm_year += real_year - 72; #endif - if (century > 20) + if (century > 19) time->tm_year += (century - 19) * 100; /* @@ -99,6 +99,17 @@ } EXPORT_SYMBOL_GPL(mc146818_get_time); +/* AMD systems don't allow access to AltCentury with DV1 */ +static bool apply_amd_register_a_behavior(void) +{ +#ifdef CONFIG_X86 + if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD || + boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) + return true; +#endif + return false; +} + /* Set the current date and time in the real time clock. */ int mc146818_set_time(struct rtc_time *time) { @@ -172,7 +183,10 @@ save_control = CMOS_READ(RTC_CONTROL); CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL); save_freq_select = CMOS_READ(RTC_FREQ_SELECT); - CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); + if (apply_amd_register_a_behavior()) + CMOS_WRITE((save_freq_select & ~RTC_AMD_BANK_SELECT), RTC_FREQ_SELECT); + else + CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); #ifdef CONFIG_MACH_DECSTATION CMOS_WRITE(real_yrs, RTC_DEC_YEAR); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-mxc_v2.c +++ linux-azure-5.4.0/drivers/rtc/rtc-mxc_v2.c @@ -373,6 +373,7 @@ { .compatible = "fsl,imx53-rtc", }, {} }; +MODULE_DEVICE_TABLE(of, mxc_ids); static struct platform_driver mxc_rtc_driver = { .driver = { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-pxa.c +++ linux-azure-5.4.0/drivers/rtc/rtc-pxa.c @@ -330,6 +330,10 @@ if (sa1100_rtc->irq_alarm < 0) return -ENXIO; + sa1100_rtc->rtc = devm_rtc_allocate_device(&pdev->dev); + if (IS_ERR(sa1100_rtc->rtc)) + return PTR_ERR(sa1100_rtc->rtc); + pxa_rtc->base = devm_ioremap(dev, pxa_rtc->ress->start, resource_size(pxa_rtc->ress)); if (!pxa_rtc->base) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-stm32.c +++ linux-azure-5.4.0/drivers/rtc/rtc-stm32.c @@ -756,7 +756,7 @@ ret = clk_prepare_enable(rtc->rtc_ck); if (ret) - goto err; + goto err_no_rtc_ck; if (rtc->data->need_dbp) regmap_update_bits(rtc->dbp, rtc->dbp_reg, @@ -832,10 +832,12 @@ } return 0; + err: + clk_disable_unprepare(rtc->rtc_ck); +err_no_rtc_ck: if (rtc->data->has_pclk) clk_disable_unprepare(rtc->pclk); - clk_disable_unprepare(rtc->rtc_ck); if (rtc->data->need_dbp) regmap_update_bits(rtc->dbp, rtc->dbp_reg, rtc->dbp_mask, 0); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-tps65910.c +++ linux-azure-5.4.0/drivers/rtc/rtc-tps65910.c @@ -460,6 +460,6 @@ }; module_platform_driver(tps65910_rtc_driver); -MODULE_ALIAS("platform:rtc-tps65910"); +MODULE_ALIAS("platform:tps65910-rtc"); MODULE_AUTHOR("Venu Byravarasu "); MODULE_LICENSE("GPL"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/rtc/rtc-wm8350.c +++ linux-azure-5.4.0/drivers/rtc/rtc-wm8350.c @@ -432,14 +432,21 @@ return ret; } - wm8350_register_irq(wm8350, WM8350_IRQ_RTC_SEC, + ret = wm8350_register_irq(wm8350, WM8350_IRQ_RTC_SEC, wm8350_rtc_update_handler, 0, "RTC Seconds", wm8350); + if (ret) + return ret; + wm8350_mask_irq(wm8350, WM8350_IRQ_RTC_SEC); - wm8350_register_irq(wm8350, WM8350_IRQ_RTC_ALM, + ret = wm8350_register_irq(wm8350, WM8350_IRQ_RTC_ALM, wm8350_rtc_alarm_handler, 0, "RTC Alarm", wm8350); + if (ret) { + wm8350_free_irq(wm8350, WM8350_IRQ_RTC_SEC, wm8350); + return ret; + } return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/block/dasd_eckd.h +++ linux-azure-5.4.0/drivers/s390/block/dasd_eckd.h @@ -220,7 +220,7 @@ __u8 imbedded_count; __u8 extended_operation; __u16 extended_parameter_length; - __u8 extended_parameter[0]; + __u8 extended_parameter[]; } __attribute__ ((packed)); /* Prefix data for format 0x00 and 0x01 */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/block/scm_blk.c +++ linux-azure-5.4.0/drivers/s390/block/scm_blk.c @@ -256,7 +256,8 @@ for (i = 0; i < nr_requests_per_io && scmrq->request[i]; i++) { error = blk_mq_rq_to_pdu(scmrq->request[i]); *error = scmrq->error; - blk_mq_complete_request(scmrq->request[i]); + if (likely(!blk_should_fake_timeout(scmrq->request[i]->q))) + blk_mq_complete_request(scmrq->request[i]); } atomic_dec(&bdev->queued_reqs); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/Makefile +++ linux-azure-5.4.0/drivers/s390/char/Makefile @@ -34,6 +34,8 @@ obj-$(CONFIG_PCI) += sclp_pci.o +obj-$(subst m,y,$(CONFIG_ZCRYPT)) += sclp_ap.o + obj-$(CONFIG_VMLOGRDR) += vmlogrdr.o obj-$(CONFIG_VMCP) += vmcp.o only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/keyboard.h +++ linux-azure-5.4.0/drivers/s390/char/keyboard.h @@ -56,7 +56,7 @@ kbd_put_queue(struct tty_port *port, int ch) { tty_insert_flip_char(port, ch, 0); - tty_schedule_flip(port); + tty_flip_buffer_push(port); } static inline void @@ -64,5 +64,5 @@ { while (*cp) tty_insert_flip_char(port, *cp++, 0); - tty_schedule_flip(port); + tty_flip_buffer_push(port); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/raw3270.h +++ linux-azure-5.4.0/drivers/s390/char/raw3270.h @@ -211,7 +211,7 @@ struct list_head update; unsigned long size; unsigned long len; - char string[0]; + char string[]; } __attribute__ ((aligned(8))); static inline struct string * only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/sclp.h +++ linux-azure-5.4.0/drivers/s390/char/sclp.h @@ -229,7 +229,7 @@ #define SCLP_HAS_CPU_INFO (sclp.facilities & 0x0800000000000000ULL) #define SCLP_HAS_CPU_RECONFIG (sclp.facilities & 0x0400000000000000ULL) #define SCLP_HAS_PCI_RECONFIG (sclp.facilities & 0x0000000040000000ULL) - +#define SCLP_HAS_AP_RECONFIG (sclp.facilities & 0x0000000100000000ULL) struct gds_subvector { u8 length; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/sclp_ap.c +++ linux-azure-5.4.0/drivers/s390/char/sclp_ap.c @@ -0,0 +1,63 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * s390 crypto adapter related sclp functions. + * + * Copyright IBM Corp. 2020 + */ +#define KMSG_COMPONENT "sclp_cmd" +#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt + +#include +#include +#include +#include "sclp.h" + +#define SCLP_CMDW_CONFIGURE_AP 0x001f0001 +#define SCLP_CMDW_DECONFIGURE_AP 0x001e0001 + +struct ap_cfg_sccb { + struct sccb_header header; +} __packed; + +static int do_ap_configure(sclp_cmdw_t cmd, u32 apid) +{ + struct ap_cfg_sccb *sccb; + int rc; + + if (!SCLP_HAS_AP_RECONFIG) + return -EOPNOTSUPP; + + sccb = (struct ap_cfg_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA); + if (!sccb) + return -ENOMEM; + + sccb->header.length = PAGE_SIZE; + cmd |= (apid & 0xFF) << 8; + rc = sclp_sync_request(cmd, sccb); + if (rc) + goto out; + switch (sccb->header.response_code) { + case 0x0020: case 0x0120: case 0x0440: case 0x0450: + break; + default: + pr_warn("configure AP adapter %u failed: cmd=0x%08x response=0x%04x\n", + apid, cmd, sccb->header.response_code); + rc = -EIO; + break; + } +out: + free_page((unsigned long) sccb); + return rc; +} + +int sclp_ap_configure(u32 apid) +{ + return do_ap_configure(SCLP_CMDW_CONFIGURE_AP, apid); +} +EXPORT_SYMBOL(sclp_ap_configure); + +int sclp_ap_deconfigure(u32 apid) +{ + return do_ap_configure(SCLP_CMDW_DECONFIGURE_AP, apid); +} +EXPORT_SYMBOL(sclp_ap_deconfigure); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/sclp_early.c +++ linux-azure-5.4.0/drivers/s390/char/sclp_early.c @@ -40,13 +40,14 @@ sclp.has_gisaf = !!(sccb->fac118 & 0x08); sclp.has_hvs = !!(sccb->fac119 & 0x80); sclp.has_kss = !!(sccb->fac98 & 0x01); - sclp.has_sipl = !!(sccb->cbl & 0x4000); if (sccb->fac85 & 0x02) S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP; if (sccb->fac91 & 0x40) S390_lowcore.machine_flags |= MACHINE_FLAG_TLB_GUEST; if (sccb->cpuoff > 134) sclp.has_diag318 = !!(sccb->byte_134 & 0x80); + if (sccb->cpuoff > 137) + sclp.has_sipl = !!(sccb->cbl & 0x4000); sclp.rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2; sclp.rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2; sclp.rzm <<= 20; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/sclp_pci.c +++ linux-azure-5.4.0/drivers/s390/char/sclp_pci.c @@ -39,7 +39,7 @@ u8 atype; u32 fh; u32 fid; - u8 data[0]; + u8 data[]; } __packed; struct err_notify_sccb { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/sclp_vt220.c +++ linux-azure-5.4.0/drivers/s390/char/sclp_vt220.c @@ -35,8 +35,8 @@ #define SCLP_VT220_MINOR 65 #define SCLP_VT220_DRIVER_NAME "sclp_vt220" #define SCLP_VT220_DEVICE_NAME "ttysclp" -#define SCLP_VT220_CONSOLE_NAME "ttyS" -#define SCLP_VT220_CONSOLE_INDEX 1 /* console=ttyS1 */ +#define SCLP_VT220_CONSOLE_NAME "ttysclp" +#define SCLP_VT220_CONSOLE_INDEX 0 /* console=ttysclp0 */ /* Representation of a single write request */ struct sclp_vt220_request { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/tape_std.c +++ linux-azure-5.4.0/drivers/s390/char/tape_std.c @@ -53,7 +53,6 @@ tape_std_assign(struct tape_device *device) { int rc; - struct timer_list timeout; struct tape_request *request; request = tape_alloc_request(2, 11); @@ -70,7 +69,7 @@ * So we set up a timeout for this call. */ timer_setup(&request->timer, tape_std_assign_timeout, 0); - mod_timer(&timeout, jiffies + 2 * HZ); + mod_timer(&request->timer, jiffies + msecs_to_jiffies(2000)); rc = tape_do_io_interruptible(device, request); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/char/zcore.c +++ linux-azure-5.4.0/drivers/s390/char/zcore.c @@ -53,6 +53,7 @@ static struct dentry *zcore_hsa_file; static struct ipl_parameter_block *zcore_ipl_block; +static DEFINE_MUTEX(hsa_buf_mutex); static char hsa_buf[PAGE_SIZE] __aligned(PAGE_SIZE); /* @@ -69,19 +70,24 @@ if (!hsa_available) return -ENODATA; + mutex_lock(&hsa_buf_mutex); while (count) { if (sclp_sdias_copy(hsa_buf, src / PAGE_SIZE + 2, 1)) { TRACE("sclp_sdias_copy() failed\n"); + mutex_unlock(&hsa_buf_mutex); return -EIO; } offset = src % PAGE_SIZE; bytes = min(PAGE_SIZE - offset, count); - if (copy_to_user(dest, hsa_buf + offset, bytes)) + if (copy_to_user(dest, hsa_buf + offset, bytes)) { + mutex_unlock(&hsa_buf_mutex); return -EFAULT; + } src += bytes; dest += bytes; count -= bytes; } + mutex_unlock(&hsa_buf_mutex); return 0; } @@ -99,9 +105,11 @@ if (!hsa_available) return -ENODATA; + mutex_lock(&hsa_buf_mutex); while (count) { if (sclp_sdias_copy(hsa_buf, src / PAGE_SIZE + 2, 1)) { TRACE("sclp_sdias_copy() failed\n"); + mutex_unlock(&hsa_buf_mutex); return -EIO; } offset = src % PAGE_SIZE; @@ -111,6 +119,7 @@ dest += bytes; count -= bytes; } + mutex_unlock(&hsa_buf_mutex); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/cio/chp.c +++ linux-azure-5.4.0/drivers/s390/cio/chp.c @@ -255,6 +255,9 @@ if (!num_args) return count; + /* Wait until previous actions have settled. */ + css_wait_for_slow_path(); + if (!strncasecmp(cmd, "on", 2) || !strcmp(cmd, "1")) { mutex_lock(&cp->lock); error = s390_vary_chpid(cp->chpid, 1); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/cio/chsc.c +++ linux-azure-5.4.0/drivers/s390/cio/chsc.c @@ -753,8 +753,6 @@ { struct channel_path *chp = chpid_to_chp(chpid); - /* Wait until previous actions have settled. */ - css_wait_for_slow_path(); /* * Redo PathVerification on the devices the chpid connects to */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/cio/idset.c +++ linux-azure-5.4.0/drivers/s390/cio/idset.c @@ -13,7 +13,7 @@ struct idset { int num_ssid; int num_id; - unsigned long bitmap[0]; + unsigned long bitmap[]; }; static inline unsigned long bitmap_size(int num_ssid, int num_id) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/ap_debug.h +++ linux-azure-5.4.0/drivers/s390/crypto/ap_debug.h @@ -20,6 +20,14 @@ #define AP_DBF(...) \ debug_sprintf_event(ap_dbf_info, ##__VA_ARGS__) +#define AP_DBF_ERR(...) \ + debug_sprintf_event(ap_dbf_info, DBF_ERR, ##__VA_ARGS__) +#define AP_DBF_WARN(...) \ + debug_sprintf_event(ap_dbf_info, DBF_WARN, ##__VA_ARGS__) +#define AP_DBF_INFO(...) \ + debug_sprintf_event(ap_dbf_info, DBF_INFO, ##__VA_ARGS__) +#define AP_DBF_DBG(...) \ + debug_sprintf_event(ap_dbf_info, DBF_DEBUG, ##__VA_ARGS__) extern debug_info_t *ap_dbf_info; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_card.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_card.c @@ -41,7 +41,7 @@ { struct zcrypt_card *zc = to_ap_card(dev)->private; - return snprintf(buf, PAGE_SIZE, "%s\n", zc->type_string); + return scnprintf(buf, PAGE_SIZE, "%s\n", zc->type_string); } static DEVICE_ATTR_RO(type); @@ -50,22 +50,28 @@ struct device_attribute *attr, char *buf) { - struct zcrypt_card *zc = to_ap_card(dev)->private; + struct ap_card *ac = to_ap_card(dev); + struct zcrypt_card *zc = ac->private; + int online = ac->config && zc->online ? 1 : 0; - return snprintf(buf, PAGE_SIZE, "%d\n", zc->online); + return scnprintf(buf, PAGE_SIZE, "%d\n", online); } static ssize_t online_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - struct zcrypt_card *zc = to_ap_card(dev)->private; + struct ap_card *ac = to_ap_card(dev); + struct zcrypt_card *zc = ac->private; struct zcrypt_queue *zq; int online, id; if (sscanf(buf, "%d\n", &online) != 1 || online < 0 || online > 1) return -EINVAL; + if (online && !ac->config) + return -ENODEV; + zc->online = online; id = zc->card->id; @@ -86,7 +92,7 @@ { struct zcrypt_card *zc = to_ap_card(dev)->private; - return snprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&zc->load)); + return scnprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&zc->load)); } static DEVICE_ATTR_RO(load); @@ -151,11 +157,6 @@ { int rc; - rc = sysfs_create_group(&zc->card->ap_dev.device.kobj, - &zcrypt_card_attr_group); - if (rc) - return rc; - spin_lock(&zcrypt_list_lock); list_add_tail(&zc->list, &zcrypt_card_list); spin_unlock(&zcrypt_list_lock); @@ -164,6 +165,14 @@ ZCRYPT_DBF(DBF_INFO, "card=%02x register online=1\n", zc->card->id); + rc = sysfs_create_group(&zc->card->ap_dev.device.kobj, + &zcrypt_card_attr_group); + if (rc) { + spin_lock(&zcrypt_list_lock); + list_del_init(&zc->list); + spin_unlock(&zcrypt_list_lock); + } + return rc; } EXPORT_SYMBOL(zcrypt_card_register); @@ -183,5 +192,6 @@ spin_unlock(&zcrypt_list_lock); sysfs_remove_group(&zc->card->ap_dev.device.kobj, &zcrypt_card_attr_group); + zcrypt_card_put(zc); } EXPORT_SYMBOL(zcrypt_card_unregister); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_debug.h +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_debug.h @@ -21,6 +21,14 @@ #define ZCRYPT_DBF(...) \ debug_sprintf_event(zcrypt_dbf_info, ##__VA_ARGS__) +#define ZCRYPT_DBF_ERR(...) \ + debug_sprintf_event(zcrypt_dbf_info, DBF_ERR, ##__VA_ARGS__) +#define ZCRYPT_DBF_WARN(...) \ + debug_sprintf_event(zcrypt_dbf_info, DBF_WARN, ##__VA_ARGS__) +#define ZCRYPT_DBF_INFO(...) \ + debug_sprintf_event(zcrypt_dbf_info, DBF_INFO, ##__VA_ARGS__) +#define ZCRYPT_DBF_DBG(...) \ + debug_sprintf_event(zcrypt_dbf_info, DBF_DEBUG, ##__VA_ARGS__) extern debug_info_t *zcrypt_dbf_info; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_msgtype50.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_msgtype50.c @@ -207,10 +207,10 @@ mod_len = mex->inputdatalength; if (mod_len <= 128) { - struct type50_meb1_msg *meb1 = ap_msg->message; + struct type50_meb1_msg *meb1 = ap_msg->msg; memset(meb1, 0, sizeof(*meb1)); - ap_msg->length = sizeof(*meb1); + ap_msg->len = sizeof(*meb1); meb1->header.msg_type_code = TYPE50_TYPE_CODE; meb1->header.msg_len = sizeof(*meb1); meb1->keyblock_type = TYPE50_MEB1_FMT; @@ -218,10 +218,10 @@ exp = meb1->exponent + sizeof(meb1->exponent) - mod_len; inp = meb1->message + sizeof(meb1->message) - mod_len; } else if (mod_len <= 256) { - struct type50_meb2_msg *meb2 = ap_msg->message; + struct type50_meb2_msg *meb2 = ap_msg->msg; memset(meb2, 0, sizeof(*meb2)); - ap_msg->length = sizeof(*meb2); + ap_msg->len = sizeof(*meb2); meb2->header.msg_type_code = TYPE50_TYPE_CODE; meb2->header.msg_len = sizeof(*meb2); meb2->keyblock_type = TYPE50_MEB2_FMT; @@ -229,10 +229,10 @@ exp = meb2->exponent + sizeof(meb2->exponent) - mod_len; inp = meb2->message + sizeof(meb2->message) - mod_len; } else if (mod_len <= 512) { - struct type50_meb3_msg *meb3 = ap_msg->message; + struct type50_meb3_msg *meb3 = ap_msg->msg; memset(meb3, 0, sizeof(*meb3)); - ap_msg->length = sizeof(*meb3); + ap_msg->len = sizeof(*meb3); meb3->header.msg_type_code = TYPE50_TYPE_CODE; meb3->header.msg_len = sizeof(*meb3); meb3->keyblock_type = TYPE50_MEB3_FMT; @@ -246,6 +246,12 @@ copy_from_user(exp, mex->b_key, mod_len) || copy_from_user(inp, mex->inputdata, mod_len)) return -EFAULT; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (ap_msg->fi.flags & AP_FI_FLAG_TOGGLE_SPECIAL) + ap_msg->flags ^= AP_MSG_FLAG_SPECIAL; +#endif + return 0; } @@ -275,10 +281,10 @@ * 512 byte modulus (4k keys). */ if (mod_len <= 128) { /* up to 1024 bit key size */ - struct type50_crb1_msg *crb1 = ap_msg->message; + struct type50_crb1_msg *crb1 = ap_msg->msg; memset(crb1, 0, sizeof(*crb1)); - ap_msg->length = sizeof(*crb1); + ap_msg->len = sizeof(*crb1); crb1->header.msg_type_code = TYPE50_TYPE_CODE; crb1->header.msg_len = sizeof(*crb1); crb1->keyblock_type = TYPE50_CRB1_FMT; @@ -289,10 +295,10 @@ u = crb1->u + sizeof(crb1->u) - short_len; inp = crb1->message + sizeof(crb1->message) - mod_len; } else if (mod_len <= 256) { /* up to 2048 bit key size */ - struct type50_crb2_msg *crb2 = ap_msg->message; + struct type50_crb2_msg *crb2 = ap_msg->msg; memset(crb2, 0, sizeof(*crb2)); - ap_msg->length = sizeof(*crb2); + ap_msg->len = sizeof(*crb2); crb2->header.msg_type_code = TYPE50_TYPE_CODE; crb2->header.msg_len = sizeof(*crb2); crb2->keyblock_type = TYPE50_CRB2_FMT; @@ -304,10 +310,10 @@ inp = crb2->message + sizeof(crb2->message) - mod_len; } else if ((mod_len <= 512) && /* up to 4096 bit key size */ (zq->zcard->max_mod_size == CEX3A_MAX_MOD_SIZE)) { - struct type50_crb3_msg *crb3 = ap_msg->message; + struct type50_crb3_msg *crb3 = ap_msg->msg; memset(crb3, 0, sizeof(*crb3)); - ap_msg->length = sizeof(*crb3); + ap_msg->len = sizeof(*crb3); crb3->header.msg_type_code = TYPE50_TYPE_CODE; crb3->header.msg_len = sizeof(*crb3); crb3->keyblock_type = TYPE50_CRB3_FMT; @@ -332,6 +338,11 @@ copy_from_user(inp, crt->inputdata, mod_len)) return -EFAULT; +#ifdef CONFIG_ZCRYPT_DEBUG + if (ap_msg->fi.flags & AP_FI_FLAG_TOGGLE_SPECIAL) + ap_msg->flags ^= AP_MSG_FLAG_SPECIAL; +#endif + return 0; } @@ -350,39 +361,39 @@ char __user *outputdata, unsigned int outputdatalength) { - struct type80_hdr *t80h = reply->message; + struct type80_hdr *t80h = reply->msg; unsigned char *data; if (t80h->len < sizeof(*t80h) + outputdatalength) { /* The result is too short, the CEXxA card may not do that.. */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x code=0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x code=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - t80h->code); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + t80h->code); + ZCRYPT_DBF_ERR("dev=%02x.%04x code=0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + t80h->code); + return -EAGAIN; } if (zq->zcard->user_space_type == ZCRYPT_CEX2A) BUG_ON(t80h->len > CEX2A_MAX_RESPONSE_SIZE); else BUG_ON(t80h->len > CEX3A_MAX_RESPONSE_SIZE); - data = reply->message + t80h->len - outputdatalength; + data = reply->msg + t80h->len - outputdatalength; if (copy_to_user(outputdata, data, outputdatalength)) return -EFAULT; return 0; } -static int convert_response(struct zcrypt_queue *zq, - struct ap_message *reply, - char __user *outputdata, - unsigned int outputdatalength) +static int convert_response_cex2a(struct zcrypt_queue *zq, + struct ap_message *reply, + char __user *outputdata, + unsigned int outputdatalength) { /* Response type byte is the second byte in the response. */ - unsigned char rtype = ((unsigned char *) reply->message)[1]; + unsigned char rtype = ((unsigned char *) reply->msg)[1]; switch (rtype) { case TYPE82_RSP_CODE: @@ -393,15 +404,15 @@ outputdata, outputdatalength); default: /* Unknown response type, this should NEVER EVER happen */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rtype=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (unsigned int) rtype); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) rtype); + ZCRYPT_DBF_ERR("dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) rtype); + return -EAGAIN; } } @@ -422,22 +433,22 @@ .reply_code = REP82_ERROR_MACHINE_FAILURE, }; struct type80_hdr *t80h; - int length; + int len; /* Copy the reply message to the request message buffer. */ if (!reply) goto out; /* ap_msg->rc indicates the error */ - t80h = reply->message; + t80h = reply->msg; if (t80h->type == TYPE80_RSP_CODE) { - if (aq->ap_dev.device_type == AP_DEVICE_TYPE_CEX2A) - length = min_t(int, - CEX2A_MAX_RESPONSE_SIZE, t80h->len); - else - length = min_t(int, - CEX3A_MAX_RESPONSE_SIZE, t80h->len); - memcpy(msg->message, reply->message, length); + len = t80h->len; + if (len > reply->bufsize || len > msg->bufsize) { + msg->rc = -EMSGSIZE; + } else { + memcpy(msg->msg, reply->msg, len); + msg->len = len; + } } else - memcpy(msg->message, reply->message, sizeof(error_reply)); + memcpy(msg->msg, reply->msg, sizeof(error_reply)); out: complete((struct completion *) msg->private); } @@ -452,41 +463,40 @@ * @mex: pointer to the modexpo request buffer */ static long zcrypt_cex2a_modexpo(struct zcrypt_queue *zq, - struct ica_rsa_modexpo *mex) + struct ica_rsa_modexpo *mex, + struct ap_message *ap_msg) { - struct ap_message ap_msg; struct completion work; int rc; - ap_init_message(&ap_msg); - if (zq->zcard->user_space_type == ZCRYPT_CEX2A) - ap_msg.message = kmalloc(MSGTYPE50_CRB2_MAX_MSG_SIZE, - GFP_KERNEL); - else - ap_msg.message = kmalloc(MSGTYPE50_CRB3_MAX_MSG_SIZE, - GFP_KERNEL); - if (!ap_msg.message) + ap_msg->bufsize = (zq->zcard->user_space_type == ZCRYPT_CEX2A) ? + MSGTYPE50_CRB2_MAX_MSG_SIZE : MSGTYPE50_CRB3_MAX_MSG_SIZE; + ap_msg->msg = kmalloc(ap_msg->bufsize, GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; - ap_msg.receive = zcrypt_cex2a_receive; - ap_msg.psmid = (((unsigned long long) current->pid) << 32) + - atomic_inc_return(&zcrypt_step); - ap_msg.private = &work; - rc = ICAMEX_msg_to_type50MEX_msg(zq, &ap_msg, mex); + ap_msg->receive = zcrypt_cex2a_receive; + ap_msg->psmid = (((unsigned long long) current->pid) << 32) + + atomic_inc_return(&zcrypt_step); + ap_msg->private = &work; + rc = ICAMEX_msg_to_type50MEX_msg(zq, ap_msg, mex); if (rc) - goto out_free; + goto out; init_completion(&work); - ap_queue_message(zq->queue, &ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out; rc = wait_for_completion_interruptible(&work); if (rc == 0) { - rc = ap_msg.rc; + rc = ap_msg->rc; if (rc == 0) - rc = convert_response(zq, &ap_msg, mex->outputdata, - mex->outputdatalength); + rc = convert_response_cex2a(zq, ap_msg, + mex->outputdata, + mex->outputdatalength); } else /* Signal pending. */ - ap_cancel_message(zq->queue, &ap_msg); -out_free: - kfree(ap_msg.message); + ap_cancel_message(zq->queue, ap_msg); +out: + ap_msg->private = NULL; return rc; } @@ -498,41 +508,40 @@ * @crt: pointer to the modexpoc_crt request buffer */ static long zcrypt_cex2a_modexpo_crt(struct zcrypt_queue *zq, - struct ica_rsa_modexpo_crt *crt) + struct ica_rsa_modexpo_crt *crt, + struct ap_message *ap_msg) { - struct ap_message ap_msg; struct completion work; int rc; - ap_init_message(&ap_msg); - if (zq->zcard->user_space_type == ZCRYPT_CEX2A) - ap_msg.message = kmalloc(MSGTYPE50_CRB2_MAX_MSG_SIZE, - GFP_KERNEL); - else - ap_msg.message = kmalloc(MSGTYPE50_CRB3_MAX_MSG_SIZE, - GFP_KERNEL); - if (!ap_msg.message) + ap_msg->bufsize = (zq->zcard->user_space_type == ZCRYPT_CEX2A) ? + MSGTYPE50_CRB2_MAX_MSG_SIZE : MSGTYPE50_CRB3_MAX_MSG_SIZE; + ap_msg->msg = kmalloc(ap_msg->bufsize, GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; - ap_msg.receive = zcrypt_cex2a_receive; - ap_msg.psmid = (((unsigned long long) current->pid) << 32) + - atomic_inc_return(&zcrypt_step); - ap_msg.private = &work; - rc = ICACRT_msg_to_type50CRT_msg(zq, &ap_msg, crt); + ap_msg->receive = zcrypt_cex2a_receive; + ap_msg->psmid = (((unsigned long long) current->pid) << 32) + + atomic_inc_return(&zcrypt_step); + ap_msg->private = &work; + rc = ICACRT_msg_to_type50CRT_msg(zq, ap_msg, crt); if (rc) - goto out_free; + goto out; init_completion(&work); - ap_queue_message(zq->queue, &ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out; rc = wait_for_completion_interruptible(&work); if (rc == 0) { - rc = ap_msg.rc; + rc = ap_msg->rc; if (rc == 0) - rc = convert_response(zq, &ap_msg, crt->outputdata, - crt->outputdatalength); + rc = convert_response_cex2a(zq, ap_msg, + crt->outputdata, + crt->outputdatalength); } else /* Signal pending. */ - ap_cancel_message(zq->queue, &ap_msg); -out_free: - kfree(ap_msg.message); + ap_cancel_message(zq->queue, ap_msg); +out: + ap_msg->private = NULL; return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_msgtype6.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_msgtype6.c @@ -266,7 +266,7 @@ struct function_and_rules_block fr; unsigned short length; char text[0]; - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; int size; /* @@ -301,7 +301,7 @@ msg->cprbx.req_parml = size - sizeof(msg->hdr) - sizeof(msg->cprbx); - ap_msg->length = size; + ap_msg->len = size; return 0; } @@ -336,7 +336,7 @@ struct function_and_rules_block fr; unsigned short length; char text[0]; - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; int size; /* @@ -370,7 +370,7 @@ msg->fr = static_pkd_fnr; - ap_msg->length = size; + ap_msg->len = size; return 0; } @@ -388,7 +388,7 @@ struct type86_fmt2_ext fmt2; } __packed; -static int XCRB_msg_to_type6CPRB_msgX(struct ap_message *ap_msg, +static int XCRB_msg_to_type6CPRB_msgX(bool userspace, struct ap_message *ap_msg, struct ica_xcRB *xcRB, unsigned int *fcode, unsigned short **dom) @@ -400,11 +400,11 @@ struct { struct type6_hdr hdr; struct CPRBX cprbx; - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; int rcblen = CEIL4(xcRB->request_control_blk_length); - int replylen, req_sumlen, resp_sumlen; - char *req_data = ap_msg->message + sizeof(struct type6_hdr) + rcblen; + int req_sumlen, resp_sumlen; + char *req_data = ap_msg->msg + sizeof(struct type6_hdr) + rcblen; char *function_code; if (CEIL4(xcRB->request_control_blk_length) < @@ -412,10 +412,10 @@ return -EINVAL; /* overflow after alignment*/ /* length checks */ - ap_msg->length = sizeof(struct type6_hdr) + + ap_msg->len = sizeof(struct type6_hdr) + CEIL4(xcRB->request_control_blk_length) + xcRB->request_data_length; - if (ap_msg->length > MSGTYPE06_MAX_MSG_SIZE) + if (ap_msg->len > ap_msg->bufsize) return -EINVAL; /* @@ -435,12 +435,6 @@ xcRB->reply_control_blk_length) return -EINVAL; /* overflow after alignment*/ - replylen = sizeof(struct type86_fmt2_msg) + - CEIL4(xcRB->reply_control_blk_length) + - xcRB->reply_data_length; - if (replylen > MSGTYPE06_MAX_MSG_SIZE) - return -EINVAL; - /* * Overflow check * sum must be greater (or equal) than the largest operand @@ -465,8 +459,8 @@ msg->hdr.FromCardLen2 = xcRB->reply_data_length; /* prepare CPRB */ - if (copy_from_user(&(msg->cprbx), xcRB->request_control_blk_addr, - xcRB->request_control_blk_length)) + if (z_copy_from_user(userspace, &(msg->cprbx), xcRB->request_control_blk_addr, + xcRB->request_control_blk_length)) return -EFAULT; if (msg->cprbx.cprb_len + sizeof(msg->hdr.function_code) > xcRB->request_control_blk_length) @@ -480,22 +474,25 @@ if (memcmp(function_code, "US", 2) == 0 || memcmp(function_code, "AU", 2) == 0) - ap_msg->special = 1; - else - ap_msg->special = 0; + ap_msg->flags |= AP_MSG_FLAG_SPECIAL; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (ap_msg->fi.flags & AP_FI_FLAG_TOGGLE_SPECIAL) + ap_msg->flags ^= AP_MSG_FLAG_SPECIAL; +#endif /* copy data block */ if (xcRB->request_data_length && - copy_from_user(req_data, xcRB->request_data_address, - xcRB->request_data_length)) + z_copy_from_user(userspace, req_data, xcRB->request_data_address, + xcRB->request_data_length)) return -EFAULT; return 0; } -static int xcrb_msg_to_type6_ep11cprb_msgx(struct ap_message *ap_msg, - struct ep11_urb *xcRB, - unsigned int *fcode) +static int xcrb_msg_to_type6_ep11cprb_msgx(bool userspace, struct ap_message *ap_msg, + struct ep11_urb *xcRB, + unsigned int *fcode) { unsigned int lfmt; static struct type6_hdr static_type6_ep11_hdr = { @@ -512,7 +509,7 @@ struct ep11_cprb cprbx; unsigned char pld_tag; /* fixed value 0x30 */ unsigned char pld_lenfmt; /* payload length format */ - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; struct pld_hdr { unsigned char func_tag; /* fixed value 0x4 */ @@ -527,26 +524,21 @@ return -EINVAL; /* overflow after alignment*/ /* length checks */ - ap_msg->length = sizeof(struct type6_hdr) + xcRB->req_len; - if (CEIL4(xcRB->req_len) > MSGTYPE06_MAX_MSG_SIZE - - (sizeof(struct type6_hdr))) + ap_msg->len = sizeof(struct type6_hdr) + CEIL4(xcRB->req_len); + if (ap_msg->len > ap_msg->bufsize) return -EINVAL; if (CEIL4(xcRB->resp_len) < xcRB->resp_len) return -EINVAL; /* overflow after alignment*/ - if (CEIL4(xcRB->resp_len) > MSGTYPE06_MAX_MSG_SIZE - - (sizeof(struct type86_fmt2_msg))) - return -EINVAL; - /* prepare type6 header */ msg->hdr = static_type6_ep11_hdr; msg->hdr.ToCardLen1 = xcRB->req_len; msg->hdr.FromCardLen1 = xcRB->resp_len; /* Import CPRB data from the ioctl input parameter */ - if (copy_from_user(&(msg->cprbx.cprb_len), - (char __force __user *)xcRB->req, xcRB->req_len)) { + if (z_copy_from_user(userspace, &(msg->cprbx.cprb_len), + (char __force __user *)xcRB->req, xcRB->req_len)) { return -EFAULT; } @@ -569,7 +561,12 @@ /* enable special processing based on the cprbs flags special bit */ if (msg->cprbx.flags & 0x20) - ap_msg->special = 1; + ap_msg->flags |= AP_MSG_FLAG_SPECIAL; + +#ifdef CONFIG_ZCRYPT_DEBUG + if (ap_msg->fi.flags & AP_FI_FLAG_TOGGLE_SPECIAL) + ap_msg->flags ^= AP_MSG_FLAG_SPECIAL; +#endif return 0; } @@ -590,7 +587,7 @@ struct CPRBX cprbx; unsigned char pad[4]; /* 4 byte function code/rules block ? */ unsigned short length; - char text[0]; + char text[]; } __packed; struct type86_ep11_reply { @@ -639,7 +636,7 @@ 0x35, 0x9D, 0xD3, 0xD3, 0xA7, 0x9D, 0x5D, 0x41, 0x6F, 0x65, 0x1B, 0xCF, 0xA9, 0x87, 0x91, 0x09 }; - struct type86x_reply *msg = reply->message; + struct type86x_reply *msg = reply->msg; unsigned short service_rc, service_rs; unsigned int reply_len, pad_len; char *data; @@ -652,23 +649,22 @@ (service_rc == 8 && service_rs == 72) || (service_rc == 8 && service_rs == 770) || (service_rc == 12 && service_rs == 769)) { - ZCRYPT_DBF(DBF_DEBUG, - "device=%02x.%04x rc/rs=%d/%d => rc=EINVAL\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) service_rc, (int) service_rs); + ZCRYPT_DBF_WARN("dev=%02x.%04x rc/rs=%d/%d => rc=EINVAL\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) service_rc, (int) service_rs); return -EINVAL; } zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x rc/rs=%d/%d online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rc/rs=%d/%d => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) service_rc, (int) service_rs); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) service_rc, (int) service_rs); + ZCRYPT_DBF_ERR("dev=%02x.%04x rc/rs=%d/%d => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) service_rc, (int) service_rs); + return -EAGAIN; } data = msg->text; reply_len = msg->length - 2; @@ -709,23 +705,23 @@ * * Returns 0 on success or -EINVAL, -EFAULT, -EAGAIN in case of an error. */ -static int convert_type86_xcrb(struct zcrypt_queue *zq, +static int convert_type86_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ica_xcRB *xcRB) { - struct type86_fmt2_msg *msg = reply->message; - char *data = reply->message; + struct type86_fmt2_msg *msg = reply->msg; + char *data = reply->msg; /* Copy CPRB to user */ - if (copy_to_user(xcRB->reply_control_blk_addr, - data + msg->fmt2.offset1, msg->fmt2.count1)) + if (z_copy_to_user(userspace, xcRB->reply_control_blk_addr, + data + msg->fmt2.offset1, msg->fmt2.count1)) return -EFAULT; xcRB->reply_control_blk_length = msg->fmt2.count1; /* Copy data buffer to user */ if (msg->fmt2.count2) - if (copy_to_user(xcRB->reply_data_addr, - data + msg->fmt2.offset2, msg->fmt2.count2)) + if (z_copy_to_user(userspace, xcRB->reply_data_addr, + data + msg->fmt2.offset2, msg->fmt2.count2)) return -EFAULT; xcRB->reply_data_length = msg->fmt2.count2; return 0; @@ -740,19 +736,19 @@ * * Returns 0 on success or -EINVAL, -EFAULT, -EAGAIN in case of an error. */ -static int convert_type86_ep11_xcrb(struct zcrypt_queue *zq, +static int convert_type86_ep11_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ep11_urb *xcRB) { - struct type86_fmt2_msg *msg = reply->message; - char *data = reply->message; + struct type86_fmt2_msg *msg = reply->msg; + char *data = reply->msg; if (xcRB->resp_len < msg->fmt2.count1) return -EINVAL; /* Copy response CPRB to user */ - if (copy_to_user((char __force __user *)xcRB->resp, - data + msg->fmt2.offset1, msg->fmt2.count1)) + if (z_copy_to_user(userspace, (char __force __user *)xcRB->resp, + data + msg->fmt2.offset1, msg->fmt2.count1)) return -EFAULT; xcRB->resp_len = msg->fmt2.count1; return 0; @@ -766,8 +762,8 @@ struct type86_hdr hdr; struct type86_fmt2_ext fmt2; struct CPRBX cprbx; - } __packed * msg = reply->message; - char *data = reply->message; + } __packed * msg = reply->msg; + char *data = reply->msg; if (msg->cprbx.ccp_rtcode != 0 || msg->cprbx.ccp_rscode != 0) return -EINVAL; @@ -780,7 +776,7 @@ char __user *outputdata, unsigned int outputdatalength) { - struct type86x_reply *msg = reply->message; + struct type86x_reply *msg = reply->msg; switch (msg->hdr.type) { case TYPE82_RSP_CODE: @@ -801,26 +797,27 @@ if (msg->cprbx.cprb_ver_id == 0x02) return convert_type86_ica(zq, reply, outputdata, outputdatalength); - /* fall through - wrong cprb version is an unknown response */ - default: /* Unknown response type, this should NEVER EVER happen */ + fallthrough; /* wrong cprb version is an unknown response */ + default: + /* Unknown response type, this should NEVER EVER happen */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rtype=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) msg->hdr.type); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + ZCRYPT_DBF_ERR("dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + return -EAGAIN; } } -static int convert_response_xcrb(struct zcrypt_queue *zq, - struct ap_message *reply, - struct ica_xcRB *xcRB) +static int convert_response_xcrb(bool userspace, struct zcrypt_queue *zq, + struct ap_message *reply, + struct ica_xcRB *xcRB) { - struct type86x_reply *msg = reply->message; + struct type86x_reply *msg = reply->msg; switch (msg->hdr.type) { case TYPE82_RSP_CODE: @@ -833,27 +830,27 @@ return convert_error(zq, reply); } if (msg->cprbx.cprb_ver_id == 0x02) - return convert_type86_xcrb(zq, reply, xcRB); - /* fall through - wrong cprb version is an unknown response */ + return convert_type86_xcrb(userspace, zq, reply, xcRB); + fallthrough; /* wrong cprb version is an unknown response */ default: /* Unknown response type, this should NEVER EVER happen */ xcRB->status = 0x0008044DL; /* HDD_InvalidParm */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rtype=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) msg->hdr.type); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + ZCRYPT_DBF_ERR("dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + return -EAGAIN; } } -static int convert_response_ep11_xcrb(struct zcrypt_queue *zq, - struct ap_message *reply, struct ep11_urb *xcRB) +static int convert_response_ep11_xcrb(bool userspace, struct zcrypt_queue *zq, + struct ap_message *reply, struct ep11_urb *xcRB) { - struct type86_ep11_reply *msg = reply->message; + struct type86_ep11_reply *msg = reply->msg; switch (msg->hdr.type) { case TYPE82_RSP_CODE: @@ -863,19 +860,19 @@ if (msg->hdr.reply_code) return convert_error(zq, reply); if (msg->cprbx.cprb_ver_id == 0x04) - return convert_type86_ep11_xcrb(zq, reply, xcRB); - /* fall through - wrong cprb version is an unknown resp */ + return convert_type86_ep11_xcrb(userspace, zq, reply, xcRB); + fallthrough; /* wrong cprb version is an unknown resp */ default: /* Unknown response type, this should NEVER EVER happen */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rtype=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) msg->hdr.type); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + ZCRYPT_DBF_ERR("dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + return -EAGAIN; } } @@ -883,7 +880,7 @@ struct ap_message *reply, char *data) { - struct type86x_reply *msg = reply->message; + struct type86x_reply *msg = reply->msg; switch (msg->hdr.type) { case TYPE82_RSP_CODE: @@ -894,18 +891,18 @@ return -EINVAL; if (msg->cprbx.cprb_ver_id == 0x02) return convert_type86_rng(zq, reply, data); - /* fall through - wrong cprb version is an unknown response */ + fallthrough; /* wrong cprb version is an unknown response */ default: /* Unknown response type, this should NEVER EVER happen */ zq->online = 0; - pr_err("Cryptographic device %02x.%04x failed and was set offline\n", + pr_err("Crypto dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid)); - ZCRYPT_DBF(DBF_ERR, - "device=%02x.%04x rtype=0x%02x => online=0 rc=EAGAIN\n", - AP_QID_CARD(zq->queue->qid), - AP_QID_QUEUE(zq->queue->qid), - (int) msg->hdr.type); - return -EAGAIN; /* repeat the request on a different device. */ + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + ZCRYPT_DBF_ERR("dev=%02x.%04x unknown response type 0x%02x => online=0 rc=EAGAIN\n", + AP_QID_CARD(zq->queue->qid), + AP_QID_QUEUE(zq->queue->qid), + (int) msg->hdr.type); + return -EAGAIN; } } @@ -928,32 +925,38 @@ struct response_type *resp_type = (struct response_type *) msg->private; struct type86x_reply *t86r; - int length; + int len; /* Copy the reply message to the request message buffer. */ if (!reply) goto out; /* ap_msg->rc indicates the error */ - t86r = reply->message; + t86r = reply->msg; if (t86r->hdr.type == TYPE86_RSP_CODE && t86r->cprbx.cprb_ver_id == 0x02) { switch (resp_type->type) { case CEXXC_RESPONSE_TYPE_ICA: - length = sizeof(struct type86x_reply) - + t86r->length - 2; - length = min(CEXXC_MAX_ICA_RESPONSE_SIZE, length); - memcpy(msg->message, reply->message, length); + len = sizeof(struct type86x_reply) + t86r->length - 2; + if (len > reply->bufsize || len > msg->bufsize) { + msg->rc = -EMSGSIZE; + } else { + memcpy(msg->msg, reply->msg, len); + msg->len = len; + } break; case CEXXC_RESPONSE_TYPE_XCRB: - length = t86r->fmt2.offset2 + t86r->fmt2.count2; - length = min(MSGTYPE06_MAX_MSG_SIZE, length); - memcpy(msg->message, reply->message, length); + len = t86r->fmt2.offset2 + t86r->fmt2.count2; + if (len > reply->bufsize || len > msg->bufsize) { + msg->rc = -EMSGSIZE; + } else { + memcpy(msg->msg, reply->msg, len); + msg->len = len; + } break; default: - memcpy(msg->message, &error_reply, - sizeof(error_reply)); + memcpy(msg->msg, &error_reply, sizeof(error_reply)); } } else - memcpy(msg->message, reply->message, sizeof(error_reply)); + memcpy(msg->msg, reply->msg, sizeof(error_reply)); out: complete(&(resp_type->work)); } @@ -977,25 +980,29 @@ struct response_type *resp_type = (struct response_type *)msg->private; struct type86_ep11_reply *t86r; - int length; + int len; /* Copy the reply message to the request message buffer. */ if (!reply) goto out; /* ap_msg->rc indicates the error */ - t86r = reply->message; + t86r = reply->msg; if (t86r->hdr.type == TYPE86_RSP_CODE && t86r->cprbx.cprb_ver_id == 0x04) { switch (resp_type->type) { case CEXXC_RESPONSE_TYPE_EP11: - length = t86r->fmt2.offset1 + t86r->fmt2.count1; - length = min(MSGTYPE06_MAX_MSG_SIZE, length); - memcpy(msg->message, reply->message, length); + len = t86r->fmt2.offset1 + t86r->fmt2.count1; + if (len > reply->bufsize || len > msg->bufsize) { + msg->rc = -EMSGSIZE; + } else { + memcpy(msg->msg, reply->msg, len); + msg->len = len; + } break; default: - memcpy(msg->message, &error_reply, sizeof(error_reply)); + memcpy(msg->msg, &error_reply, sizeof(error_reply)); } } else { - memcpy(msg->message, reply->message, sizeof(error_reply)); + memcpy(msg->msg, reply->msg, sizeof(error_reply)); } out: complete(&(resp_type->work)); @@ -1011,39 +1018,43 @@ * @mex: pointer to the modexpo request buffer */ static long zcrypt_msgtype6_modexpo(struct zcrypt_queue *zq, - struct ica_rsa_modexpo *mex) + struct ica_rsa_modexpo *mex, + struct ap_message *ap_msg) { - struct ap_message ap_msg; struct response_type resp_type = { .type = CEXXC_RESPONSE_TYPE_ICA, }; int rc; - ap_init_message(&ap_msg); - ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL); - if (!ap_msg.message) + ap_msg->msg = (void *) get_zeroed_page(GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; - ap_msg.receive = zcrypt_msgtype6_receive; - ap_msg.psmid = (((unsigned long long) current->pid) << 32) + - atomic_inc_return(&zcrypt_step); - ap_msg.private = &resp_type; - rc = ICAMEX_msg_to_type6MEX_msgX(zq, &ap_msg, mex); + ap_msg->bufsize = PAGE_SIZE; + ap_msg->receive = zcrypt_msgtype6_receive; + ap_msg->psmid = (((unsigned long long) current->pid) << 32) + + atomic_inc_return(&zcrypt_step); + ap_msg->private = &resp_type; + rc = ICAMEX_msg_to_type6MEX_msgX(zq, ap_msg, mex); if (rc) goto out_free; init_completion(&resp_type.work); - ap_queue_message(zq->queue, &ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out_free; rc = wait_for_completion_interruptible(&resp_type.work); if (rc == 0) { - rc = ap_msg.rc; + rc = ap_msg->rc; if (rc == 0) - rc = convert_response_ica(zq, &ap_msg, + rc = convert_response_ica(zq, ap_msg, mex->outputdata, mex->outputdatalength); } else /* Signal pending. */ - ap_cancel_message(zq->queue, &ap_msg); + ap_cancel_message(zq->queue, ap_msg); out_free: - free_page((unsigned long) ap_msg.message); + free_page((unsigned long) ap_msg->msg); + ap_msg->private = NULL; + ap_msg->msg = NULL; return rc; } @@ -1055,40 +1066,44 @@ * @crt: pointer to the modexpoc_crt request buffer */ static long zcrypt_msgtype6_modexpo_crt(struct zcrypt_queue *zq, - struct ica_rsa_modexpo_crt *crt) + struct ica_rsa_modexpo_crt *crt, + struct ap_message *ap_msg) { - struct ap_message ap_msg; struct response_type resp_type = { .type = CEXXC_RESPONSE_TYPE_ICA, }; int rc; - ap_init_message(&ap_msg); - ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL); - if (!ap_msg.message) + ap_msg->msg = (void *) get_zeroed_page(GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; - ap_msg.receive = zcrypt_msgtype6_receive; - ap_msg.psmid = (((unsigned long long) current->pid) << 32) + - atomic_inc_return(&zcrypt_step); - ap_msg.private = &resp_type; - rc = ICACRT_msg_to_type6CRT_msgX(zq, &ap_msg, crt); + ap_msg->bufsize = PAGE_SIZE; + ap_msg->receive = zcrypt_msgtype6_receive; + ap_msg->psmid = (((unsigned long long) current->pid) << 32) + + atomic_inc_return(&zcrypt_step); + ap_msg->private = &resp_type; + rc = ICACRT_msg_to_type6CRT_msgX(zq, ap_msg, crt); if (rc) goto out_free; init_completion(&resp_type.work); - ap_queue_message(zq->queue, &ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out_free; rc = wait_for_completion_interruptible(&resp_type.work); if (rc == 0) { - rc = ap_msg.rc; + rc = ap_msg->rc; if (rc == 0) - rc = convert_response_ica(zq, &ap_msg, + rc = convert_response_ica(zq, ap_msg, crt->outputdata, crt->outputdatalength); } else { /* Signal pending. */ - ap_cancel_message(zq->queue, &ap_msg); + ap_cancel_message(zq->queue, ap_msg); } out_free: - free_page((unsigned long) ap_msg.message); + free_page((unsigned long) ap_msg->msg); + ap_msg->private = NULL; + ap_msg->msg = NULL; return rc; } @@ -1099,16 +1114,17 @@ * by the caller with ap_init_message(). Also the caller has to * make sure ap_release_message() is always called even on failure. */ -unsigned int get_cprb_fc(struct ica_xcRB *xcRB, - struct ap_message *ap_msg, - unsigned int *func_code, unsigned short **dom) +unsigned int get_cprb_fc(bool userspace, struct ica_xcRB *xcRB, + struct ap_message *ap_msg, + unsigned int *func_code, unsigned short **dom) { struct response_type resp_type = { .type = CEXXC_RESPONSE_TYPE_XCRB, }; - ap_msg->message = kmalloc(MSGTYPE06_MAX_MSG_SIZE, GFP_KERNEL); - if (!ap_msg->message) + ap_msg->bufsize = atomic_read(&ap_max_msg_size); + ap_msg->msg = kmalloc(ap_msg->bufsize, GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; ap_msg->receive = zcrypt_msgtype6_receive; ap_msg->psmid = (((unsigned long long) current->pid) << 32) + @@ -1116,7 +1132,7 @@ ap_msg->private = kmemdup(&resp_type, sizeof(resp_type), GFP_KERNEL); if (!ap_msg->private) return -ENOMEM; - return XCRB_msg_to_type6CPRB_msgX(ap_msg, xcRB, func_code, dom); + return XCRB_msg_to_type6CPRB_msgX(userspace, ap_msg, xcRB, func_code, dom); } /** @@ -1126,24 +1142,26 @@ * CEXxC device to the request distributor * @xcRB: pointer to the send_cprb request buffer */ -static long zcrypt_msgtype6_send_cprb(struct zcrypt_queue *zq, - struct ica_xcRB *xcRB, - struct ap_message *ap_msg) +static long zcrypt_msgtype6_send_cprb(bool userspace, struct zcrypt_queue *zq, + struct ica_xcRB *xcRB, + struct ap_message *ap_msg) { int rc; struct response_type *rtype = (struct response_type *)(ap_msg->private); init_completion(&rtype->work); - ap_queue_message(zq->queue, ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out; rc = wait_for_completion_interruptible(&rtype->work); if (rc == 0) { rc = ap_msg->rc; if (rc == 0) - rc = convert_response_xcrb(zq, ap_msg, xcRB); + rc = convert_response_xcrb(userspace, zq, ap_msg, xcRB); } else /* Signal pending. */ ap_cancel_message(zq->queue, ap_msg); - +out: return rc; } @@ -1154,16 +1172,17 @@ * by the caller with ap_init_message(). Also the caller has to * make sure ap_release_message() is always called even on failure. */ -unsigned int get_ep11cprb_fc(struct ep11_urb *xcrb, - struct ap_message *ap_msg, - unsigned int *func_code) +unsigned int get_ep11cprb_fc(bool userspace, struct ep11_urb *xcrb, + struct ap_message *ap_msg, + unsigned int *func_code) { struct response_type resp_type = { .type = CEXXC_RESPONSE_TYPE_EP11, }; - ap_msg->message = kmalloc(MSGTYPE06_MAX_MSG_SIZE, GFP_KERNEL); - if (!ap_msg->message) + ap_msg->bufsize = atomic_read(&ap_max_msg_size); + ap_msg->msg = kmalloc(ap_msg->bufsize, GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; ap_msg->receive = zcrypt_msgtype6_receive_ep11; ap_msg->psmid = (((unsigned long long) current->pid) << 32) + @@ -1171,7 +1190,7 @@ ap_msg->private = kmemdup(&resp_type, sizeof(resp_type), GFP_KERNEL); if (!ap_msg->private) return -ENOMEM; - return xcrb_msg_to_type6_ep11cprb_msgx(ap_msg, xcrb, func_code); + return xcrb_msg_to_type6_ep11cprb_msgx(userspace, ap_msg, xcrb, func_code); } /** @@ -1181,7 +1200,7 @@ * CEX4P device to the request distributor * @xcRB: pointer to the ep11 user request block */ -static long zcrypt_msgtype6_send_ep11_cprb(struct zcrypt_queue *zq, +static long zcrypt_msgtype6_send_ep11_cprb(bool userspace, struct zcrypt_queue *zq, struct ep11_urb *xcrb, struct ap_message *ap_msg) { @@ -1193,7 +1212,7 @@ struct ep11_cprb cprbx; unsigned char pld_tag; /* fixed value 0x30 */ unsigned char pld_lenfmt; /* payload length format */ - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; struct pld_hdr { unsigned char func_tag; /* fixed value 0x4 */ unsigned char func_len; /* fixed value 0x4 */ @@ -1236,16 +1255,18 @@ } init_completion(&rtype->work); - ap_queue_message(zq->queue, ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out; rc = wait_for_completion_interruptible(&rtype->work); if (rc == 0) { rc = ap_msg->rc; if (rc == 0) - rc = convert_response_ep11_xcrb(zq, ap_msg, xcrb); + rc = convert_response_ep11_xcrb(userspace, zq, ap_msg, xcrb); } else /* Signal pending. */ ap_cancel_message(zq->queue, ap_msg); - +out: return rc; } @@ -1256,8 +1277,9 @@ .type = CEXXC_RESPONSE_TYPE_XCRB, }; - ap_msg->message = kmalloc(MSGTYPE06_MAX_MSG_SIZE, GFP_KERNEL); - if (!ap_msg->message) + ap_msg->bufsize = AP_DEFAULT_MAX_MSG_SIZE; + ap_msg->msg = kmalloc(ap_msg->bufsize, GFP_KERNEL); + if (!ap_msg->msg) return -ENOMEM; ap_msg->receive = zcrypt_msgtype6_receive; ap_msg->psmid = (((unsigned long long) current->pid) << 32) + @@ -1290,14 +1312,16 @@ char rule[8]; short int verb_length; short int key_length; - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; struct response_type *rtype = (struct response_type *)(ap_msg->private); int rc; msg->cprbx.domain = AP_QID_QUEUE(zq->queue->qid); init_completion(&rtype->work); - ap_queue_message(zq->queue, ap_msg); + rc = ap_queue_message(zq->queue, ap_msg); + if (rc) + goto out; rc = wait_for_completion_interruptible(&rtype->work); if (rc == 0) { rc = ap_msg->rc; @@ -1306,7 +1330,7 @@ } else /* Signal pending. */ ap_cancel_message(zq->queue, ap_msg); - +out: return rc; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_msgtype6.h +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_msgtype6.h @@ -19,8 +19,6 @@ #define MSGTYPE06_VARIANT_NORNG 1 #define MSGTYPE06_VARIANT_EP11 2 -#define MSGTYPE06_MAX_MSG_SIZE (12*1024) - /** * The type 6 message family is associated with CEXxC/CEXxP cards. * @@ -96,9 +94,9 @@ unsigned int offset4; /* 0x00000000 */ } __packed; -unsigned int get_cprb_fc(struct ica_xcRB *, struct ap_message *, +unsigned int get_cprb_fc(bool userspace, struct ica_xcRB *, struct ap_message *, unsigned int *, unsigned short **); -unsigned int get_ep11cprb_fc(struct ep11_urb *, struct ap_message *, +unsigned int get_ep11cprb_fc(bool userspace, struct ep11_urb *, struct ap_message *, unsigned int *); unsigned int get_rng_fc(struct ap_message *, int *, unsigned int *); @@ -127,7 +125,7 @@ char rule[8]; short int verb_length; short int key_length; - } __packed * msg = ap_msg->message; + } __packed * msg = ap_msg->msg; static struct type6_hdr static_type6_hdrX = { .type = 0x06, .offset1 = 0x00000058, @@ -154,7 +152,7 @@ memcpy(msg->rule, "RANDOM ", 8); msg->verb_length = 0x02; msg->key_length = 0x02; - ap_msg->length = sizeof(*msg); + ap_msg->len = sizeof(*msg); *domain = (unsigned short)msg->cprbx.domain; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/crypto/zcrypt_queue.c +++ linux-azure-5.4.0/drivers/s390/crypto/zcrypt_queue.c @@ -40,22 +40,27 @@ struct device_attribute *attr, char *buf) { - struct zcrypt_queue *zq = to_ap_queue(dev)->private; + struct ap_queue *aq = to_ap_queue(dev); + struct zcrypt_queue *zq = aq->private; + int online = aq->config && zq->online ? 1 : 0; - return snprintf(buf, PAGE_SIZE, "%d\n", zq->online); + return scnprintf(buf, PAGE_SIZE, "%d\n", online); } static ssize_t online_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - struct zcrypt_queue *zq = to_ap_queue(dev)->private; + struct ap_queue *aq = to_ap_queue(dev); + struct zcrypt_queue *zq = aq->private; struct zcrypt_card *zc = zq->zcard; int online; if (sscanf(buf, "%d\n", &online) != 1 || online < 0 || online > 1) return -EINVAL; + if (online && (!aq->config || !aq->card->config)) + return -ENODEV; if (online && !zc->online) return -EINVAL; zq->online = online; @@ -78,7 +83,7 @@ { struct zcrypt_queue *zq = to_ap_queue(dev)->private; - return snprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&zq->load)); + return scnprintf(buf, PAGE_SIZE, "%d\n", atomic_read(&zq->load)); } static DEVICE_ATTR_RO(load); @@ -100,17 +105,17 @@ ap_flush_queue(zq->queue); } -struct zcrypt_queue *zcrypt_queue_alloc(size_t max_response_size) +struct zcrypt_queue *zcrypt_queue_alloc(size_t reply_buf_size) { struct zcrypt_queue *zq; zq = kzalloc(sizeof(struct zcrypt_queue), GFP_KERNEL); if (!zq) return NULL; - zq->reply.message = kmalloc(max_response_size, GFP_KERNEL); - if (!zq->reply.message) + zq->reply.msg = kmalloc(reply_buf_size, GFP_KERNEL); + if (!zq->reply.msg) goto out_free; - zq->reply.length = max_response_size; + zq->reply.bufsize = reply_buf_size; INIT_LIST_HEAD(&zq->list); kref_init(&zq->refcount); return zq; @@ -123,7 +128,7 @@ void zcrypt_queue_free(struct zcrypt_queue *zq) { - kfree(zq->reply.message); + kfree(zq->reply.msg); kfree(zq); } EXPORT_SYMBOL(zcrypt_queue_free); @@ -175,7 +180,6 @@ &zcrypt_queue_attr_group); if (rc) goto out; - get_device(&zq->queue->ap_dev.device); if (zq->ops->rng) { rc = zcrypt_rng_device_add(); @@ -187,7 +191,6 @@ out_unregister: sysfs_remove_group(&zq->queue->ap_dev.device.kobj, &zcrypt_queue_attr_group); - put_device(&zq->queue->ap_dev.device); out: spin_lock(&zcrypt_list_lock); list_del_init(&zq->list); @@ -215,12 +218,11 @@ list_del_init(&zq->list); zcrypt_device_count--; spin_unlock(&zcrypt_list_lock); - zcrypt_card_put(zc); if (zq->ops->rng) zcrypt_rng_device_remove(); sysfs_remove_group(&zq->queue->ap_dev.device.kobj, &zcrypt_queue_attr_group); - put_device(&zq->queue->ap_dev.device); + zcrypt_card_put(zc); zcrypt_queue_put(zq); } EXPORT_SYMBOL(zcrypt_queue_unregister); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/net/ctcm_mpc.c +++ linux-azure-5.4.0/drivers/s390/net/ctcm_mpc.c @@ -626,8 +626,6 @@ ctcm_clear_busy_do(dev); } - kfree(mpcginfo); - return; } @@ -1206,10 +1204,10 @@ CTCM_FUNTAIL, dev->name); priv->stats.rx_dropped++; /* mpcginfo only used for non-data transfers */ - kfree(mpcginfo); if (do_debug_data) ctcmpc_dump_skb(pskb, -8); } + kfree(mpcginfo); } done: @@ -1991,7 +1989,6 @@ } break; } - kfree(mpcginfo); CTCM_PR_DEBUG("ctcmpc:%s() %s xid2:%i xid7:%i xidt_p2:%i \n", __func__, ch->id, grp->outstanding_xid2, @@ -2052,7 +2049,6 @@ mpc_validate_xid(mpcginfo); break; } - kfree(mpcginfo); return; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/net/ctcm_sysfs.c +++ linux-azure-5.4.0/drivers/s390/net/ctcm_sysfs.c @@ -39,11 +39,12 @@ struct ctcm_priv *priv = dev_get_drvdata(dev); int rc; - ndev = priv->channel[CTCM_READ]->netdev; - if (!(priv && priv->channel[CTCM_READ] && ndev)) { + if (!(priv && priv->channel[CTCM_READ] && + priv->channel[CTCM_READ]->netdev)) { CTCM_DBF_TEXT(SETUP, CTC_DBF_ERROR, "bfnondev"); return -ENODEV; } + ndev = priv->channel[CTCM_READ]->netdev; rc = kstrtouint(buf, 0, &bs1); if (rc) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/net/lcs.c +++ linux-azure-5.4.0/drivers/s390/net/lcs.c @@ -1735,10 +1735,11 @@ lcs_schedule_recovery(card); break; case LCS_CMD_STOPLAN: - pr_warn("Stoplan for %s initiated by LGW\n", - card->dev->name); - if (card->dev) + if (card->dev) { + pr_warn("Stoplan for %s initiated by LGW\n", + card->dev->name); netif_carrier_off(card->dev); + } break; default: LCS_DBF_TEXT(5, trace, "noLGWcmd"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/scsi/zfcp_fc.c +++ linux-azure-5.4.0/drivers/s390/scsi/zfcp_fc.c @@ -145,27 +145,33 @@ static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port) { + int ret = -EIO; + if (mutex_lock_interruptible(&wka_port->mutex)) return -ERESTARTSYS; if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE || wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) { wka_port->status = ZFCP_FC_WKA_PORT_OPENING; - if (zfcp_fsf_open_wka_port(wka_port)) + if (zfcp_fsf_open_wka_port(wka_port)) { + /* could not even send request, nothing to wait for */ wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; + goto out; + } } - mutex_unlock(&wka_port->mutex); - - wait_event(wka_port->completion_wq, + wait_event(wka_port->opened, wka_port->status == ZFCP_FC_WKA_PORT_ONLINE || wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE); if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) { atomic_inc(&wka_port->refcount); - return 0; + ret = 0; + goto out; } - return -EIO; +out: + mutex_unlock(&wka_port->mutex); + return ret; } static void zfcp_fc_wka_port_offline(struct work_struct *work) @@ -181,9 +187,12 @@ wka_port->status = ZFCP_FC_WKA_PORT_CLOSING; if (zfcp_fsf_close_wka_port(wka_port)) { + /* could not even send request, nothing to wait for */ wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; - wake_up(&wka_port->completion_wq); + goto out; } + wait_event(wka_port->closed, + wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE); out: mutex_unlock(&wka_port->mutex); } @@ -193,13 +202,15 @@ if (atomic_dec_return(&wka_port->refcount) != 0) return; /* wait 10 milliseconds, other reqs might pop in */ - schedule_delayed_work(&wka_port->work, HZ / 100); + queue_delayed_work(wka_port->adapter->work_queue, &wka_port->work, + msecs_to_jiffies(10)); } static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id, struct zfcp_adapter *adapter) { - init_waitqueue_head(&wka_port->completion_wq); + init_waitqueue_head(&wka_port->opened); + init_waitqueue_head(&wka_port->closed); wka_port->adapter = adapter; wka_port->d_id = d_id; @@ -521,6 +532,8 @@ goto out; } + /* re-init to undo drop from zfcp_fc_adisc() */ + port->d_id = ntoh24(adisc_resp->adisc_port_id); /* port is good, unblock rport without going through erp */ zfcp_scsi_schedule_rport_register(port); out: @@ -534,6 +547,7 @@ struct zfcp_fc_req *fc_req; struct zfcp_adapter *adapter = port->adapter; struct Scsi_Host *shost = adapter->scsi_host; + u32 d_id; int ret; fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC); @@ -558,7 +572,15 @@ fc_req->u.adisc.req.adisc_cmd = ELS_ADISC; hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost)); - ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els, + d_id = port->d_id; /* remember as destination for send els below */ + /* + * Force fresh GID_PN lookup on next port recovery. + * Must happen after request setup and before sending request, + * to prevent race with port->d_id re-init in zfcp_fc_adisc_handler(). + */ + port->d_id = 0; + + ret = zfcp_fsf_send_els(adapter, d_id, &fc_req->ct_els, ZFCP_FC_CTELS_TMO); if (ret) kmem_cache_free(zfcp_fc_req_cache, fc_req); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/s390/scsi/zfcp_fc.h +++ linux-azure-5.4.0/drivers/s390/scsi/zfcp_fc.h @@ -185,7 +185,8 @@ /** * struct zfcp_fc_wka_port - representation of well-known-address (WKA) FC port * @adapter: Pointer to adapter structure this WKA port belongs to - * @completion_wq: Wait for completion of open/close command + * @opened: Wait for completion of open command + * @closed: Wait for completion of close command * @status: Current status of WKA port * @refcount: Reference count to keep port open as long as it is in use * @d_id: FC destination id or well-known-address @@ -195,7 +196,8 @@ */ struct zfcp_fc_wka_port { struct zfcp_adapter *adapter; - wait_queue_head_t completion_wq; + wait_queue_head_t opened; + wait_queue_head_t closed; enum zfcp_fc_wka_status status; atomic_t refcount; u32 d_id; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/3w-9xxx.c +++ linux-azure-5.4.0/drivers/scsi/3w-9xxx.c @@ -2014,7 +2014,7 @@ retval = pci_enable_device(pdev); if (retval) { TW_PRINTK(host, TW_DRIVER, 0x34, "Failed to enable pci device"); - goto out_disable_device; + return -ENODEV; } pci_set_master(pdev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/FlashPoint.c +++ linux-azure-5.4.0/drivers/scsi/FlashPoint.c @@ -40,7 +40,7 @@ u16 si_per_targ_ultra_nego; u16 si_per_targ_no_disc; u16 si_per_targ_wide_nego; - u16 si_flags; + u16 si_mflags; unsigned char si_card_family; unsigned char si_bustype; unsigned char si_card_model[3]; @@ -1070,22 +1070,22 @@ ScamFlg = (unsigned char)FPT_utilEERead(ioport, SCAM_CONFIG / 2); - pCardInfo->si_flags = 0x0000; + pCardInfo->si_mflags = 0x0000; if (i & 0x01) - pCardInfo->si_flags |= SCSI_PARITY_ENA; + pCardInfo->si_mflags |= SCSI_PARITY_ENA; if (!(i & 0x02)) - pCardInfo->si_flags |= SOFT_RESET; + pCardInfo->si_mflags |= SOFT_RESET; if (i & 0x10) - pCardInfo->si_flags |= EXTENDED_TRANSLATION; + pCardInfo->si_mflags |= EXTENDED_TRANSLATION; if (ScamFlg & SCAM_ENABLED) - pCardInfo->si_flags |= FLAG_SCAM_ENABLED; + pCardInfo->si_mflags |= FLAG_SCAM_ENABLED; if (ScamFlg & SCAM_LEVEL2) - pCardInfo->si_flags |= FLAG_SCAM_LEVEL2; + pCardInfo->si_mflags |= FLAG_SCAM_LEVEL2; j = (RD_HARPOON(ioport + hp_bm_ctrl) & ~SCSI_TERM_ENA_L); if (i & 0x04) { @@ -1101,7 +1101,7 @@ if (!(RD_HARPOON(ioport + hp_page_ctrl) & NARROW_SCSI_CARD)) - pCardInfo->si_flags |= SUPPORT_16TAR_32LUN; + pCardInfo->si_mflags |= SUPPORT_16TAR_32LUN; pCardInfo->si_card_family = HARPOON_FAMILY; pCardInfo->si_bustype = BUSTYPE_PCI; @@ -1137,15 +1137,15 @@ if (pCardInfo->si_card_model[1] == '3') { if (RD_HARPOON(ioport + hp_ee_ctrl) & BIT(7)) - pCardInfo->si_flags |= LOW_BYTE_TERM; + pCardInfo->si_mflags |= LOW_BYTE_TERM; } else if (pCardInfo->si_card_model[2] == '0') { temp = RD_HARPOON(ioport + hp_xfer_pad); WR_HARPOON(ioport + hp_xfer_pad, (temp & ~BIT(4))); if (RD_HARPOON(ioport + hp_ee_ctrl) & BIT(7)) - pCardInfo->si_flags |= LOW_BYTE_TERM; + pCardInfo->si_mflags |= LOW_BYTE_TERM; WR_HARPOON(ioport + hp_xfer_pad, (temp | BIT(4))); if (RD_HARPOON(ioport + hp_ee_ctrl) & BIT(7)) - pCardInfo->si_flags |= HIGH_BYTE_TERM; + pCardInfo->si_mflags |= HIGH_BYTE_TERM; WR_HARPOON(ioport + hp_xfer_pad, temp); } else { temp = RD_HARPOON(ioport + hp_ee_ctrl); @@ -1163,9 +1163,9 @@ WR_HARPOON(ioport + hp_ee_ctrl, temp); WR_HARPOON(ioport + hp_xfer_pad, temp2); if (!(temp3 & BIT(7))) - pCardInfo->si_flags |= LOW_BYTE_TERM; + pCardInfo->si_mflags |= LOW_BYTE_TERM; if (!(temp3 & BIT(6))) - pCardInfo->si_flags |= HIGH_BYTE_TERM; + pCardInfo->si_mflags |= HIGH_BYTE_TERM; } ARAM_ACCESS(ioport); @@ -1272,7 +1272,7 @@ WR_HARPOON(ioport + hp_arb_id, pCardInfo->si_id); CurrCard->ourId = pCardInfo->si_id; - i = (unsigned char)pCardInfo->si_flags; + i = (unsigned char)pCardInfo->si_mflags; if (i & SCSI_PARITY_ENA) WR_HARPOON(ioport + hp_portctrl_1, (HOST_MODE8 | CHK_SCSI_P)); @@ -1286,14 +1286,14 @@ j |= SCSI_TERM_ENA_H; WR_HARPOON(ioport + hp_ee_ctrl, j); - if (!(pCardInfo->si_flags & SOFT_RESET)) { + if (!(pCardInfo->si_mflags & SOFT_RESET)) { FPT_sresb(ioport, thisCard); FPT_scini(thisCard, pCardInfo->si_id, 0); } - if (pCardInfo->si_flags & POST_ALL_UNDERRRUNS) + if (pCardInfo->si_mflags & POST_ALL_UNDERRRUNS) CurrCard->globalFlags |= F_NO_FILTER; if (pCurrNvRam) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/advansys.c +++ linux-azure-5.4.0/drivers/scsi/advansys.c @@ -3366,8 +3366,8 @@ shost->host_no); seq_printf(m, - " iop_base 0x%lx, cable_detect: %X, err_code %u\n", - (unsigned long)v->iop_base, + " iop_base 0x%p, cable_detect: %X, err_code %u\n", + v->iop_base, AdvReadWordRegister(iop_base,IOPW_SCSI_CFG1) & CABLE_DETECT, v->err_code); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/aha152x.c +++ linux-azure-5.4.0/drivers/scsi/aha152x.c @@ -3368,13 +3368,11 @@ setup[setup_count].synchronous = ints[0] >= 6 ? ints[6] : 1; setup[setup_count].delay = ints[0] >= 7 ? ints[7] : DELAY_DEFAULT; setup[setup_count].ext_trans = ints[0] >= 8 ? ints[8] : 0; - if (ints[0] > 8) { /*}*/ + if (ints[0] > 8) printk(KERN_NOTICE "aha152x: usage: aha152x=[,[," "[,[,[,[,[,]]]]]]]\n"); - } else { + else setup_count++; - return 0; - } return 1; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/aic94xx/aic94xx_init.c +++ linux-azure-5.4.0/drivers/scsi/aic94xx/aic94xx_init.c @@ -52,6 +52,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .track_queue_depth = 1, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/be2iscsi/be_main.c +++ linux-azure-5.4.0/drivers/scsi/be2iscsi/be_main.c @@ -416,7 +416,7 @@ "beiscsi_hba_alloc - iscsi_host_alloc failed\n"); return NULL; } - shost->max_id = BE2_MAX_SESSIONS; + shost->max_id = BE2_MAX_SESSIONS - 1; shost->max_channel = 0; shost->max_cmd_len = BEISCSI_MAX_CMD_LEN; shost->max_lun = BEISCSI_NUM_MAX_LUN; @@ -5318,7 +5318,7 @@ /* Re-enable UER. If different TPE occurs then it is recoverable. */ beiscsi_set_uer_feature(phba); - phba->shost->max_id = phba->params.cxns_per_ctrl; + phba->shost->max_id = phba->params.cxns_per_ctrl - 1; phba->shost->can_queue = phba->params.ios_per_ctrl; ret = beiscsi_init_port(phba); if (ret < 0) { @@ -5745,6 +5745,7 @@ pci_disable_msix(phba->pcidev); pci_dev_put(phba->pcidev); iscsi_host_free(phba->shost); + pci_disable_pcie_error_reporting(pcidev); pci_set_drvdata(pcidev, NULL); disable_pci: pci_release_regions(pcidev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ linux-azure-5.4.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c @@ -80,7 +80,7 @@ static void bnx2fc_unbind_pcidev(struct bnx2fc_hba *hba); static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface, struct device *parent, int npiv); -static void bnx2fc_destroy_work(struct work_struct *work); +static void bnx2fc_port_destroy(struct fcoe_port *port); static struct bnx2fc_hba *bnx2fc_hba_lookup(struct net_device *phys_dev); static struct bnx2fc_interface *bnx2fc_interface_lookup(struct net_device @@ -506,7 +506,8 @@ static void bnx2fc_recv_frame(struct sk_buff *skb) { - u32 fr_len; + u64 crc_err; + u32 fr_len, fr_crc; struct fc_lport *lport; struct fcoe_rcv_info *fr; struct fc_stats *stats; @@ -540,6 +541,11 @@ skb_pull(skb, sizeof(struct fcoe_hdr)); fr_len = skb->len - sizeof(struct fcoe_crc_eof); + stats = per_cpu_ptr(lport->stats, get_cpu()); + stats->RxFrames++; + stats->RxWords += fr_len / FCOE_WORD_TO_BYTE; + put_cpu(); + fp = (struct fc_frame *)skb; fc_frame_init(fp); fr_dev(fp) = lport; @@ -622,16 +628,15 @@ return; } - stats = per_cpu_ptr(lport->stats, smp_processor_id()); - stats->RxFrames++; - stats->RxWords += fr_len / FCOE_WORD_TO_BYTE; + fr_crc = le32_to_cpu(fr_crc(fp)); - if (le32_to_cpu(fr_crc(fp)) != - ~crc32(~0, skb->data, fr_len)) { - if (stats->InvalidCRCCount < 5) + if (unlikely(fr_crc != ~crc32(~0, skb->data, fr_len))) { + stats = per_cpu_ptr(lport->stats, get_cpu()); + crc_err = (stats->InvalidCRCCount++); + put_cpu(); + if (crc_err < 5) printk(KERN_WARNING PFX "dropping frame with " "CRC error\n"); - stats->InvalidCRCCount++; kfree_skb(skb); return; } @@ -902,9 +907,6 @@ __bnx2fc_destroy(interface); } mutex_unlock(&bnx2fc_dev_lock); - - /* Ensure ALL destroy work has been completed before return */ - flush_workqueue(bnx2fc_wq); return; default: @@ -1211,8 +1213,8 @@ mutex_unlock(&n_port->lp_mutex); bnx2fc_free_vport(interface->hba, port->lport); bnx2fc_port_shutdown(port->lport); + bnx2fc_port_destroy(port); bnx2fc_interface_put(interface); - queue_work(bnx2fc_wq, &port->destroy_work); return 0; } @@ -1521,7 +1523,6 @@ port->lport = lport; port->priv = interface; port->get_netdev = bnx2fc_netdev; - INIT_WORK(&port->destroy_work, bnx2fc_destroy_work); /* Configure fcoe_port */ rc = bnx2fc_lport_config(lport); @@ -1649,8 +1650,8 @@ bnx2fc_interface_cleanup(interface); bnx2fc_stop(interface); list_del(&interface->list); + bnx2fc_port_destroy(port); bnx2fc_interface_put(interface); - queue_work(bnx2fc_wq, &port->destroy_work); } /** @@ -1691,15 +1692,12 @@ return rc; } -static void bnx2fc_destroy_work(struct work_struct *work) +static void bnx2fc_port_destroy(struct fcoe_port *port) { - struct fcoe_port *port; struct fc_lport *lport; - port = container_of(work, struct fcoe_port, destroy_work); lport = port->lport; - - BNX2FC_HBA_DBG(lport, "Entered bnx2fc_destroy_work\n"); + BNX2FC_HBA_DBG(lport, "Entered %s, destroying lport %p\n", __func__, lport); bnx2fc_if_destroy(lport); } @@ -2553,9 +2551,6 @@ __bnx2fc_destroy(interface); mutex_unlock(&bnx2fc_dev_lock); - /* Ensure ALL destroy work has been completed before return */ - flush_workqueue(bnx2fc_wq); - bnx2fc_ulp_stop(hba); /* unregister cnic device */ if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED, &hba->reg_with_cnic)) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/bnx2fc/bnx2fc_io.c +++ linux-azure-5.4.0/drivers/scsi/bnx2fc/bnx2fc_io.c @@ -1219,6 +1219,7 @@ was a result from the ABTS request rather than the CLEANUP request */ set_bit(BNX2FC_FLAG_IO_CLEANUP, &io_req->req_flags); + rc = FAILED; goto done; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/csiostor/csio_init.c +++ linux-azure-5.4.0/drivers/scsi/csiostor/csio_init.c @@ -1257,3 +1257,4 @@ MODULE_VERSION(CSIO_DRV_VERSION); MODULE_FIRMWARE(FW_FNAME_T5); MODULE_FIRMWARE(FW_FNAME_T6); +MODULE_SOFTDEP("pre: cxgb4"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/dc395x.c +++ linux-azure-5.4.0/drivers/scsi/dc395x.c @@ -3664,10 +3664,19 @@ #endif if (dcb->target_lun != 0) { /* Copy settings */ - struct DeviceCtlBlk *p; - list_for_each_entry(p, &acb->dcb_list, list) - if (p->target_id == dcb->target_id) + struct DeviceCtlBlk *p = NULL, *iter; + + list_for_each_entry(iter, &acb->dcb_list, list) + if (iter->target_id == dcb->target_id) { + p = iter; break; + } + + if (!p) { + kfree(dcb); + return NULL; + } + dprintkdbg(DBG_1, "device_alloc: <%02i-%i> copy from <%02i-%i>\n", dcb->target_id, dcb->target_lun, @@ -4698,6 +4707,7 @@ /* initialise the adapter and everything we need */ if (adapter_init(acb, io_port_base, io_port_len, irq)) { dprintkl(KERN_INFO, "adapter init failed\n"); + acb = NULL; goto fail; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/device_handler/scsi_dh_rdac.c +++ linux-azure-5.4.0/drivers/scsi/device_handler/scsi_dh_rdac.c @@ -453,8 +453,8 @@ if (!h->ctlr) err = SCSI_DH_RES_TEMP_UNAVAIL; else { - list_add_rcu(&h->node, &h->ctlr->dh_list); h->sdev = sdev; + list_add_rcu(&h->node, &h->ctlr->dh_list); } spin_unlock(&list_lock); err = SCSI_DH_OK; @@ -778,11 +778,11 @@ spin_lock(&list_lock); if (h->ctlr) { list_del_rcu(&h->node); - h->sdev = NULL; kref_put(&h->ctlr->kref, release_controller); } spin_unlock(&list_lock); sdev->handler_data = NULL; + synchronize_rcu(); kfree(h); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/fnic/fnic.h +++ linux-azure-5.4.0/drivers/scsi/fnic/fnic.h @@ -39,7 +39,7 @@ #define DRV_NAME "fnic" #define DRV_DESCRIPTION "Cisco FCoE HBA Driver" -#define DRV_VERSION "1.6.0.47" +#define DRV_VERSION "1.6.0.53" #define PFX DRV_NAME ": " #define DFX DRV_NAME "%d: " @@ -245,6 +245,7 @@ u32 vlan_hw_insert:1; /* let hw insert the tag */ u32 in_remove:1; /* fnic device in removal */ u32 stop_rx_link_events:1; /* stop proc. rx frames, link events */ + u32 link_events:1; /* set when we get any link event*/ struct completion *remove_wait; /* device remove thread blocks */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/fnic/fnic_fcs.c +++ linux-azure-5.4.0/drivers/scsi/fnic/fnic_fcs.c @@ -56,6 +56,8 @@ spin_lock_irqsave(&fnic->fnic_lock, flags); + fnic->link_events = 1; /* less work to just set everytime*/ + if (fnic->stop_rx_link_events) { spin_unlock_irqrestore(&fnic->fnic_lock, flags); return; @@ -73,7 +75,7 @@ atomic64_set(&fnic->fnic_stats.misc_stats.current_port_speed, new_port_speed); if (old_port_speed != new_port_speed) - shost_printk(KERN_INFO, fnic->lport->host, + FNIC_MAIN_DBG(KERN_INFO, fnic->lport->host, "Current vnic speed set to : %llu\n", new_port_speed); @@ -1358,7 +1360,7 @@ } vlan = list_first_entry(&fnic->vlans, struct fcoe_vlan, list); - shost_printk(KERN_DEBUG, fnic->lport->host, + FNIC_FCS_DBG(KERN_DEBUG, fnic->lport->host, "fip_timer: vlan %d state %d sol_count %d\n", vlan->vid, vlan->state, vlan->sol_count); switch (vlan->state) { @@ -1381,7 +1383,7 @@ * no response on this vlan, remove from the list. * Try the next vlan */ - shost_printk(KERN_INFO, fnic->lport->host, + FNIC_FCS_DBG(KERN_INFO, fnic->lport->host, "Dequeue this VLAN ID %d from list\n", vlan->vid); list_del(&vlan->list); @@ -1391,7 +1393,7 @@ /* we exhausted all vlans, restart vlan disc */ spin_unlock_irqrestore(&fnic->vlans_lock, flags); - shost_printk(KERN_INFO, fnic->lport->host, + FNIC_FCS_DBG(KERN_INFO, fnic->lport->host, "fip_timer: vlan list empty, " "trigger vlan disc\n"); fnic_event_enq(fnic, FNIC_EVT_START_VLAN_DISC); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/hosts.c +++ linux-azure-5.4.0/drivers/scsi/hosts.c @@ -219,6 +219,10 @@ goto fail; } + /* Use min_t(int, ...) in case shost->can_queue exceeds SHRT_MAX */ + shost->cmd_per_lun = min_t(int, shost->cmd_per_lun, + shost->can_queue); + error = scsi_init_sense_cache(shost); if (error) goto fail; @@ -253,12 +257,11 @@ device_enable_async_suspend(&shost->shost_dev); + get_device(&shost->shost_gendev); error = device_add(&shost->shost_dev); if (error) goto out_del_gendev; - get_device(&shost->shost_gendev); - if (shost->transportt->host_size) { shost->shost_data = kzalloc(shost->transportt->host_size, GFP_KERNEL); @@ -275,33 +278,36 @@ shost->work_q_name); if (!shost->work_q) { error = -EINVAL; - goto out_free_shost_data; + goto out_del_dev; } } error = scsi_sysfs_add_host(shost); if (error) - goto out_destroy_host; + goto out_del_dev; scsi_proc_host_add(shost); scsi_autopm_put_host(shost); return error; - out_destroy_host: - if (shost->work_q) - destroy_workqueue(shost->work_q); - out_free_shost_data: - kfree(shost->shost_data); + /* + * Any host allocation in this function will be freed in + * scsi_host_dev_release(). + */ out_del_dev: device_del(&shost->shost_dev); out_del_gendev: + /* + * Host state is SHOST_RUNNING so we have to explicitly release + * ->shost_dev. + */ + put_device(&shost->shost_dev); device_del(&shost->shost_gendev); out_disable_runtime_pm: device_disable_async_suspend(&shost->shost_gendev); pm_runtime_disable(&shost->shost_gendev); pm_runtime_set_suspended(&shost->shost_gendev); pm_runtime_put_noidle(&shost->shost_gendev); - scsi_mq_destroy_tags(shost); fail: return error; } @@ -342,7 +348,7 @@ ida_simple_remove(&host_index_ida, shost->host_no); - if (parent) + if (shost->shost_state != SHOST_CREATED) put_device(parent); kfree(shost); } @@ -389,8 +395,10 @@ mutex_init(&shost->scan_mutex); index = ida_simple_get(&host_index_ida, 0, 0, GFP_KERNEL); - if (index < 0) - goto fail_kfree; + if (index < 0) { + kfree(shost); + return NULL; + } shost->host_no = index; shost->dma_channel = 0xff; @@ -482,7 +490,8 @@ shost_printk(KERN_WARNING, shost, "error handler thread failed to spawn, error = %ld\n", PTR_ERR(shost->ehandler)); - goto fail_index_remove; + shost->ehandler = NULL; + goto fail; } shost->tmf_work_q = alloc_workqueue("scsi_tmf_%d", @@ -491,17 +500,18 @@ if (!shost->tmf_work_q) { shost_printk(KERN_WARNING, shost, "failed to create tmf workq\n"); - goto fail_kthread; + goto fail; } scsi_proc_hostdir_add(shost->hostt); return shost; + fail: + /* + * Host state is still SHOST_CREATED and that is enough to release + * ->shost_gendev. scsi_host_dev_release() will free + * dev_name(&shost->shost_dev). + */ + put_device(&shost->shost_gendev); - fail_kthread: - kthread_stop(shost->ehandler); - fail_index_remove: - ida_simple_remove(&host_index_ida, shost->host_no); - fail_kfree: - kfree(shost); return NULL; } EXPORT_SYMBOL(scsi_host_alloc); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c +++ linux-azure-5.4.0/drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c @@ -35,7 +35,7 @@ #define IBMVSCSIS_VERSION "v0.2" -#define INITIAL_SRP_LIMIT 800 +#define INITIAL_SRP_LIMIT 1024 #define DEFAULT_MAX_SECTORS 256 #define MAX_TXU 1024 * 1024 only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/isci/init.c +++ linux-azure-5.4.0/drivers/scsi/isci/init.c @@ -166,6 +166,7 @@ .eh_abort_handler = sas_eh_abort_handler, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = isci_host_attrs, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/libsas/sas_expander.c +++ linux-azure-5.4.0/drivers/scsi/libsas/sas_expander.c @@ -85,7 +85,7 @@ res = i->dft->lldd_execute_task(task, GFP_KERNEL); if (res) { - del_timer(&task->slow_task->timer); + del_timer_sync(&task->slow_task->timer); pr_notice("executing SMP task failed:%d\n", res); break; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/megaraid.c +++ linux-azure-5.4.0/drivers/scsi/megaraid.c @@ -4635,7 +4635,7 @@ * major number allocation. */ major = register_chrdev(0, "megadev_legacy", &megadev_fops); - if (!major) { + if (major < 0) { printk(KERN_WARNING "megaraid: failed to register char device\n"); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/mvsas/mv_init.c +++ linux-azure-5.4.0/drivers/scsi/mvsas/mv_init.c @@ -45,6 +45,7 @@ .max_sectors = SCSI_DEFAULT_MAX_SECTORS, .eh_device_reset_handler = sas_eh_device_reset_handler, .eh_target_reset_handler = sas_eh_target_reset_handler, + .slave_alloc = sas_slave_alloc, .target_destroy = sas_target_destroy, .ioctl = sas_ioctl, .shost_attrs = mvst_host_attrs, @@ -645,6 +646,7 @@ { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1300), chip_1300 }, { PCI_VDEVICE(ARECA, PCI_DEVICE_ID_ARECA_1320), chip_1320 }, { PCI_VDEVICE(ADAPTEC2, 0x0450), chip_6440 }, + { PCI_VDEVICE(TTI, 0x2640), chip_6440 }, { PCI_VDEVICE(TTI, 0x2710), chip_9480 }, { PCI_VDEVICE(TTI, 0x2720), chip_9480 }, { PCI_VDEVICE(TTI, 0x2721), chip_9480 }, @@ -696,7 +698,7 @@ mvs_show_driver_version(struct device *cdev, struct device_attribute *attr, char *buffer) { - return snprintf(buffer, PAGE_SIZE, "%s\n", DRV_VERSION); + return sysfs_emit(buffer, "%s\n", DRV_VERSION); } static DEVICE_ATTR(driver_version, @@ -748,7 +750,7 @@ static ssize_t mvs_show_interrupt_coalescing(struct device *cdev, struct device_attribute *attr, char *buffer) { - return snprintf(buffer, PAGE_SIZE, "%d\n", interrupt_coalescing); + return sysfs_emit(buffer, "%d\n", interrupt_coalescing); } static DEVICE_ATTR(interrupt_coalescing, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/myrb.c +++ linux-azure-5.4.0/drivers/scsi/myrb.c @@ -1241,7 +1241,8 @@ myrb_unmap(cb); if (cb->mmio_base) { - cb->disable_intr(cb->io_base); + if (cb->disable_intr) + cb->disable_intr(cb->io_base); iounmap(cb->mmio_base); } if (cb->irq) @@ -3516,9 +3517,13 @@ mutex_init(&cb->dcmd_mutex); mutex_init(&cb->dma_mutex); cb->pdev = pdev; + cb->host = shost; - if (pci_enable_device(pdev)) - goto failure; + if (pci_enable_device(pdev)) { + dev_err(&pdev->dev, "Failed to enable PCI device\n"); + scsi_host_put(shost); + return NULL; + } if (privdata->hw_init == DAC960_PD_hw_init || privdata->hw_init == DAC960_P_hw_init) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/pcmcia/fdomain_cs.c +++ linux-azure-5.4.0/drivers/scsi/pcmcia/fdomain_cs.c @@ -45,8 +45,10 @@ goto fail_disable; if (!request_region(link->resource[0]->start, FDOMAIN_REGION_SIZE, - "fdomain_cs")) + "fdomain_cs")) { + ret = -EBUSY; goto fail_disable; + } sh = fdomain_create(link->resource[0]->start, link->irq, 7, &link->dev); if (!sh) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/pm8001/pm8001_hwi.c +++ linux-azure-5.4.0/drivers/scsi/pm8001/pm8001_hwi.c @@ -1750,6 +1750,7 @@ ccb->device = pm8001_ha_dev; ccb->ccb_tag = ccb_tag; ccb->task = task; + ccb->n_elem = 0; circularQ = &pm8001_ha->inbnd_q_tbl[0]; @@ -1812,6 +1813,7 @@ ccb->device = pm8001_ha_dev; ccb->ccb_tag = ccb_tag; ccb->task = task; + ccb->n_elem = 0; pm8001_ha_dev->id |= NCQ_READ_LOG_FLAG; pm8001_ha_dev->id |= NCQ_2ND_RLE_FLAG; @@ -1828,7 +1830,7 @@ sata_cmd.tag = cpu_to_le32(ccb_tag); sata_cmd.device_id = cpu_to_le32(pm8001_ha_dev->device_id); - sata_cmd.ncqtag_atap_dir_m |= ((0x1 << 7) | (0x5 << 9)); + sata_cmd.ncqtag_atap_dir_m = cpu_to_le32((0x1 << 7) | (0x5 << 9)); memcpy(&sata_cmd.sata_fis, &fis, sizeof(struct host_to_dev_fis)); res = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &sata_cmd, 0); @@ -3773,12 +3775,11 @@ mb(); if (pm8001_dev->id & NCQ_ABORT_ALL_FLAG) { - pm8001_tag_free(pm8001_ha, tag); sas_free_task(t); - /* clear the flag */ - pm8001_dev->id &= 0xBFFFFFFF; - } else + pm8001_dev->id &= ~NCQ_ABORT_ALL_FLAG; + } else { t->task_done(t); + } return 0; } @@ -4727,7 +4728,7 @@ memcpy(sspTMCmd.lun, task->ssp_task.LUN, 8); sspTMCmd.tag = cpu_to_le32(ccb->ccb_tag); if (pm8001_ha->chip_id != chip_8001) - sspTMCmd.ds_ads_m = 0x08; + sspTMCmd.ds_ads_m = cpu_to_le32(0x08); circularQ = &pm8001_ha->inbnd_q_tbl[0]; ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &sspTMCmd, 0); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/pmcraid.c +++ linux-azure-5.4.0/drivers/scsi/pmcraid.c @@ -4532,7 +4532,7 @@ return 0; out_unwind: - while (--i > 0) + while (--i >= 0) free_irq(pci_irq_vector(pdev, i), &pinstance->hrrq_vector[i]); pci_free_irq_vectors(pdev); return rc; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/qedf/qedf_io.c +++ linux-azure-5.4.0/drivers/scsi/qedf/qedf_io.c @@ -1504,9 +1504,19 @@ { int rval; + if (io_req == NULL) { + QEDF_INFO(NULL, QEDF_LOG_IO, "io_req is NULL.\n"); + return; + } + + if (io_req->fcport == NULL) { + QEDF_INFO(NULL, QEDF_LOG_IO, "fcport is NULL.\n"); + return; + } + if (!cqe) { QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_IO, - "cqe is NULL for io_req %p\n", io_req); + "cqe is NULL for io_req %p\n", io_req); return; } @@ -1522,6 +1532,16 @@ le32_to_cpu(cqe->cqe_info.err_info.rx_buf_off), le32_to_cpu(cqe->cqe_info.err_info.rx_id)); + /* When flush is active, let the cmds be flushed out from the cleanup context */ + if (test_bit(QEDF_RPORT_IN_TARGET_RESET, &io_req->fcport->flags) || + (test_bit(QEDF_RPORT_IN_LUN_RESET, &io_req->fcport->flags) && + io_req->sc_cmd->device->lun == (u64)io_req->fcport->lun_reset_lun)) { + QEDF_ERR(&qedf->dbg_ctx, + "Dropping EQE for xid=0x%x as fcport is flushing", + io_req->xid); + return; + } + if (qedf->stop_io_on_error) { qedf_stop_all_io(qedf); return; @@ -2233,6 +2253,7 @@ io_req->tm_flags == FCP_TMF_TGT_RESET) { clear_bit(QEDF_CMD_OUTSTANDING, &io_req->flags); io_req->sc_cmd = NULL; + kref_put(&io_req->refcount, qedf_release_cmd); complete(&io_req->tm_done); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/qla2xxx/qla_mr.c +++ linux-azure-5.4.0/drivers/scsi/qla2xxx/qla_mr.c @@ -741,29 +741,6 @@ } int -qlafx00_loop_reset(scsi_qla_host_t *vha) -{ - int ret; - struct fc_port *fcport; - struct qla_hw_data *ha = vha->hw; - - if (ql2xtargetreset) { - list_for_each_entry(fcport, &vha->vp_fcports, list) { - if (fcport->port_type != FCT_TARGET) - continue; - - ret = ha->isp_ops->target_reset(fcport, 0, 0); - if (ret != QLA_SUCCESS) { - ql_dbg(ql_dbg_taskm, vha, 0x803d, - "Bus Reset failed: Reset=%d " - "d_id=%x.\n", ret, fcport->d_id.b24); - } - } - } - return QLA_SUCCESS; -} - -int qlafx00_iospace_config(struct qla_hw_data *ha) { if (pci_request_selected_regions(ha->pdev, ha->bars, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/scsi.c +++ linux-azure-5.4.0/drivers/scsi/scsi.c @@ -555,8 +555,10 @@ */ void scsi_device_put(struct scsi_device *sdev) { - module_put(sdev->host->hostt->module); + struct module *mod = sdev->host->hostt->module; + put_device(&sdev->sdev_gendev); + module_put(mod); } EXPORT_SYMBOL(scsi_device_put); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/scsi_debugfs.c +++ linux-azure-5.4.0/drivers/scsi/scsi_debugfs.c @@ -10,6 +10,7 @@ SCSI_CMD_FLAG_NAME(TAGGED), SCSI_CMD_FLAG_NAME(UNCHECKED_ISA_DMA), SCSI_CMD_FLAG_NAME(INITIALIZED), + SCSI_CMD_FLAG_NAME(LAST), }; #undef SCSI_CMD_FLAG_NAME only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/scsi_sysfs.c +++ linux-azure-5.4.0/drivers/scsi/scsi_sysfs.c @@ -438,9 +438,12 @@ struct list_head *this, *tmp; struct scsi_vpd *vpd_pg80 = NULL, *vpd_pg83 = NULL; unsigned long flags; + struct module *mod; sdev = container_of(work, struct scsi_device, ew.work); + mod = sdev->host->hostt->module; + scsi_dh_release_device(sdev); parent = sdev->sdev_gendev.parent; @@ -481,11 +484,17 @@ if (parent) put_device(parent); + module_put(mod); } static void scsi_device_dev_release(struct device *dev) { struct scsi_device *sdp = to_scsi_device(dev); + + /* Set module pointer as NULL in case of module unloading */ + if (!try_module_get(sdp->host->hostt->module)) + sdp->host->hostt->module = NULL; + execute_in_process_context(scsi_device_dev_release_usercontext, &sdp->ew); } @@ -767,6 +776,7 @@ int i, ret; struct scsi_device *sdev = to_scsi_device(dev); enum scsi_device_state state = 0; + bool rescan_dev = false; for (i = 0; i < ARRAY_SIZE(sdev_states); i++) { const int len = strlen(sdev_states[i].name); @@ -785,15 +795,36 @@ } mutex_lock(&sdev->state_mutex); - ret = scsi_device_set_state(sdev, state); - /* - * If the device state changes to SDEV_RUNNING, we need to run - * the queue to avoid I/O hang. - */ - if (ret == 0 && state == SDEV_RUNNING) - blk_mq_run_hw_queues(sdev->request_queue, true); + switch (sdev->sdev_state) { + case SDEV_RUNNING: + case SDEV_OFFLINE: + break; + default: + mutex_unlock(&sdev->state_mutex); + return -EINVAL; + } + if (sdev->sdev_state == SDEV_RUNNING && state == SDEV_RUNNING) { + ret = 0; + } else { + ret = scsi_device_set_state(sdev, state); + if (ret == 0 && state == SDEV_RUNNING) + rescan_dev = true; + } mutex_unlock(&sdev->state_mutex); + if (rescan_dev) { + /* + * If the device state changes to SDEV_RUNNING, we need to + * run the queue to avoid I/O hang, and rescan the device + * to revalidate it. Running the queue first is necessary + * because another thread may be waiting inside + * blk_mq_freeze_queue_wait() and because that call may be + * waiting for pending I/O to finish. + */ + blk_mq_run_hw_queues(sdev->request_queue, true); + scsi_rescan_device(dev); + } + return ret == 0 ? count : -EINVAL; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/ses.c +++ linux-azure-5.4.0/drivers/scsi/ses.c @@ -87,9 +87,16 @@ 0 }; unsigned char recv_page_code; + unsigned int retries = SES_RETRIES; + struct scsi_sense_hdr sshdr; + + do { + ret = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, bufflen, + &sshdr, SES_TIMEOUT, 1, NULL); + } while (ret > 0 && --retries && scsi_sense_valid(&sshdr) && + (sshdr.sense_key == NOT_READY || + (sshdr.sense_key == UNIT_ATTENTION && sshdr.asc == 0x29))); - ret = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, bufflen, - NULL, SES_TIMEOUT, SES_RETRIES, NULL); if (unlikely(ret)) return ret; @@ -111,7 +118,7 @@ static int ses_send_diag(struct scsi_device *sdev, int page_code, void *buf, int bufflen) { - u32 result; + int result; unsigned char cmd[] = { SEND_DIAGNOSTIC, @@ -121,9 +128,16 @@ bufflen & 0xff, 0 }; + struct scsi_sense_hdr sshdr; + unsigned int retries = SES_RETRIES; + + do { + result = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, buf, bufflen, + &sshdr, SES_TIMEOUT, 1, NULL); + } while (result > 0 && --retries && scsi_sense_valid(&sshdr) && + (sshdr.sense_key == NOT_READY || + (sshdr.sense_key == UNIT_ATTENTION && sshdr.asc == 0x29))); - result = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, buf, bufflen, - NULL, SES_TIMEOUT, SES_RETRIES, NULL); if (result) sdev_printk(KERN_ERR, sdev, "SEND DIAGNOSTIC result: %8x\n", result); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/stex.c +++ linux-azure-5.4.0/drivers/scsi/stex.c @@ -668,16 +668,17 @@ return 0; case PASSTHRU_CMD: if (cmd->cmnd[1] == PASSTHRU_GET_DRVVER) { - struct st_drvver ver; + const struct st_drvver ver = { + .major = ST_VER_MAJOR, + .minor = ST_VER_MINOR, + .oem = ST_OEM, + .build = ST_BUILD_VER, + .signature[0] = PASSTHRU_SIGNATURE, + .console_id = host->max_id - 1, + .host_no = hba->host->host_no, + }; size_t cp_len = sizeof(ver); - ver.major = ST_VER_MAJOR; - ver.minor = ST_VER_MINOR; - ver.oem = ST_OEM; - ver.build = ST_BUILD_VER; - ver.signature[0] = PASSTHRU_SIGNATURE; - ver.console_id = host->max_id - 1; - ver.host_no = hba->host->host_no; cp_len = scsi_sg_copy_from_buffer(cmd, &ver, cp_len); cmd->result = sizeof(ver) == cp_len ? DID_OK << 16 | COMMAND_COMPLETE << 8 : only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/ufs/tc-dwc-g210-pci.c +++ linux-azure-5.4.0/drivers/scsi/ufs/tc-dwc-g210-pci.c @@ -135,7 +135,6 @@ return err; } - pci_set_drvdata(pdev, hba); pm_runtime_put_noidle(&pdev->dev); pm_runtime_allow(&pdev->dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/ufs/ufshcd-pltfrm.c +++ linux-azure-5.4.0/drivers/scsi/ufs/ufshcd-pltfrm.c @@ -125,9 +125,20 @@ return ret; } +static bool phandle_exists(const struct device_node *np, + const char *phandle_name, int index) +{ + struct device_node *parse_np = of_parse_phandle(np, phandle_name, index); + + if (parse_np) + of_node_put(parse_np); + + return parse_np != NULL; +} + #define MAX_PROP_SIZE 32 static int ufshcd_populate_vreg(struct device *dev, const char *name, - struct ufs_vreg **out_vreg) + struct ufs_vreg **out_vreg) { int ret = 0; char prop_name[MAX_PROP_SIZE]; @@ -140,7 +151,7 @@ } snprintf(prop_name, MAX_PROP_SIZE, "%s-supply", name); - if (!of_parse_phandle(np, prop_name, 0)) { + if (!phandle_exists(np, prop_name, 0)) { dev_info(dev, "%s: Unable to find %s regulator, assuming enabled\n", __func__, prop_name); goto out; @@ -436,8 +447,6 @@ goto dealloc_host; } - platform_set_drvdata(pdev, hba); - pm_runtime_set_active(&pdev->dev); pm_runtime_enable(&pdev->dev); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/virtio_scsi.c +++ linux-azure-5.4.0/drivers/scsi/virtio_scsi.c @@ -297,7 +297,7 @@ } break; default: - pr_info("Unsupport virtio scsi event reason %x\n", event->reason); + pr_info("Unsupported virtio scsi event reason %x\n", event->reason); } } @@ -381,7 +381,7 @@ virtscsi_handle_param_change(vscsi, event); break; default: - pr_err("Unsupport virtio scsi event %x\n", event->event); + pr_err("Unsupported virtio scsi event %x\n", event->event); } virtscsi_kick_event(vscsi, event_node); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/vmw_pvscsi.c +++ linux-azure-5.4.0/drivers/scsi/vmw_pvscsi.c @@ -574,7 +574,16 @@ case BTSTAT_SUCCESS: case BTSTAT_LINKED_COMMAND_COMPLETED: case BTSTAT_LINKED_COMMAND_COMPLETED_WITH_FLAG: - /* If everything went fine, let's move on.. */ + /* + * Commands like INQUIRY may transfer less data than + * requested by the initiator via bufflen. Set residual + * count to make upper layer aware of the actual amount + * of data returned. There are cases when controller + * returns zero dataLen with non zero data - do not set + * residual count in that case. + */ + if (e->dataLen && (e->dataLen < scsi_bufflen(cmd))) + scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen); cmd->result = (DID_OK << 16); break; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/vmw_pvscsi.h +++ linux-azure-5.4.0/drivers/scsi/vmw_pvscsi.h @@ -333,8 +333,8 @@ u8 tag; u8 bus; u8 target; - u8 vcpuHint; - u8 unused[59]; + u16 vcpuHint; + u8 unused[58]; } __packed; /* only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/xen-scsifront.c +++ linux-azure-5.4.0/drivers/scsi/xen-scsifront.c @@ -233,12 +233,11 @@ return; for (i = 0; i < shadow->nr_grants; i++) { - if (unlikely(gnttab_query_foreign_access(shadow->gref[i]))) { + if (unlikely(!gnttab_try_end_foreign_access(shadow->gref[i]))) { shost_printk(KERN_ALERT, info->host, KBUILD_MODNAME "grant still in use by backend\n"); BUG(); } - gnttab_end_foreign_access(shadow->gref[i], 0, 0UL); } kfree(shadow->sg); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/scsi/zorro7xx.c +++ linux-azure-5.4.0/drivers/scsi/zorro7xx.c @@ -159,6 +159,8 @@ scsi_remove_host(host); NCR_700_release(host); + if (host->base > 0x01000000) + iounmap(hostdata->base); kfree(hostdata); free_irq(host->irq, host); zorro_release_device(z); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/sh/maple/maple.c +++ linux-azure-5.4.0/drivers/sh/maple/maple.c @@ -835,8 +835,10 @@ maple_queue_cache = KMEM_CACHE(maple_buffer, SLAB_HWCACHE_ALIGN); - if (!maple_queue_cache) + if (!maple_queue_cache) { + retval = -ENOMEM; goto cleanup_bothirqs; + } INIT_LIST_HEAD(&maple_waitq); INIT_LIST_HEAD(&maple_sentq); @@ -849,6 +851,7 @@ if (!mdev[i]) { while (i-- > 0) maple_free_dev(mdev[i]); + retval = -ENOMEM; goto cleanup_cache; } baseunits[i] = mdev[i]; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/slimbus/messaging.c +++ linux-azure-5.4.0/drivers/slimbus/messaging.c @@ -66,7 +66,7 @@ int ret = 0; spin_lock_irqsave(&ctrl->txn_lock, flags); - ret = idr_alloc_cyclic(&ctrl->tid_idr, txn, 0, + ret = idr_alloc_cyclic(&ctrl->tid_idr, txn, 1, SLIM_MAX_TIDS, GFP_ATOMIC); if (ret < 0) { spin_unlock_irqrestore(&ctrl->txn_lock, flags); @@ -131,7 +131,8 @@ goto slim_xfer_err; } } - + /* Initialize tid to invalid value */ + txn->tid = 0; need_tid = slim_tid_txn(txn->mt, txn->mc); if (need_tid) { @@ -163,7 +164,7 @@ txn->mt, txn->mc, txn->la, ret); slim_xfer_err: - if (!clk_pause_msg && (!need_tid || ret == -ETIMEDOUT)) { + if (!clk_pause_msg && (txn->tid == 0 || ret == -ETIMEDOUT)) { /* * remove runtime-pm vote if this was TX only, or * if there was error during this transaction only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/slimbus/qcom-ctrl.c +++ linux-azure-5.4.0/drivers/slimbus/qcom-ctrl.c @@ -515,9 +515,9 @@ } ctrl->irq = platform_get_irq(pdev, 0); - if (!ctrl->irq) { + if (ctrl->irq < 0) { dev_err(&pdev->dev, "no slimbus IRQ\n"); - return -ENODEV; + return ctrl->irq; } sctrl = &ctrl->ctrl; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/amlogic/meson-mx-socinfo.c +++ linux-azure-5.4.0/drivers/soc/amlogic/meson-mx-socinfo.c @@ -126,6 +126,7 @@ np = of_find_matching_node(NULL, meson_mx_socinfo_analog_top_ids); if (np) { analog_top_regmap = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(analog_top_regmap)) return PTR_ERR(analog_top_regmap); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/aspeed/aspeed-lpc-ctrl.c +++ linux-azure-5.4.0/drivers/soc/aspeed/aspeed-lpc-ctrl.c @@ -46,7 +46,7 @@ unsigned long vsize = vma->vm_end - vma->vm_start; pgprot_t prot = vma->vm_page_prot; - if (vma->vm_pgoff + vsize > lpc_ctrl->mem_base + lpc_ctrl->mem_size) + if (vma->vm_pgoff + vma_pages(vma) > lpc_ctrl->mem_size >> PAGE_SHIFT) return -EINVAL; /* ast2400/2500 AHB accesses are not cache coherent */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/aspeed/aspeed-p2a-ctrl.c +++ linux-azure-5.4.0/drivers/soc/aspeed/aspeed-p2a-ctrl.c @@ -110,7 +110,7 @@ vsize = vma->vm_end - vma->vm_start; prot = vma->vm_page_prot; - if (vma->vm_pgoff + vsize > ctrl->mem_base + ctrl->mem_size) + if (vma->vm_pgoff + vma_pages(vma) > ctrl->mem_size >> PAGE_SHIFT) return -EINVAL; /* ast2400/2500 AHB accesses are not cache coherent */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/bcm/brcmstb/pm/pm-arm.c +++ linux-azure-5.4.0/drivers/soc/bcm/brcmstb/pm/pm-arm.c @@ -681,13 +681,14 @@ const struct of_device_id *of_id = NULL; struct device_node *dn; void __iomem *base; - int ret, i; + int ret, i, s; /* AON ctrl registers */ base = brcmstb_ioremap_match(aon_ctrl_dt_ids, 0, NULL); if (IS_ERR(base)) { pr_err("error mapping AON_CTRL\n"); - return PTR_ERR(base); + ret = PTR_ERR(base); + goto aon_err; } ctrl.aon_ctrl_base = base; @@ -697,8 +698,10 @@ /* Assume standard offset */ ctrl.aon_sram = ctrl.aon_ctrl_base + AON_CTRL_SYSTEM_DATA_RAM_OFS; + s = 0; } else { ctrl.aon_sram = base; + s = 1; } writel_relaxed(0, ctrl.aon_sram + AON_REG_PANIC); @@ -708,7 +711,8 @@ (const void **)&ddr_phy_data); if (IS_ERR(base)) { pr_err("error mapping DDR PHY\n"); - return PTR_ERR(base); + ret = PTR_ERR(base); + goto ddr_phy_err; } ctrl.support_warm_boot = ddr_phy_data->supports_warm_boot; ctrl.pll_status_offset = ddr_phy_data->pll_status_offset; @@ -728,17 +732,20 @@ for_each_matching_node(dn, ddr_shimphy_dt_ids) { i = ctrl.num_memc; if (i >= MAX_NUM_MEMC) { + of_node_put(dn); pr_warn("too many MEMCs (max %d)\n", MAX_NUM_MEMC); break; } base = of_io_request_and_map(dn, 0, dn->full_name); if (IS_ERR(base)) { + of_node_put(dn); if (!ctrl.support_warm_boot) break; pr_err("error mapping DDR SHIMPHY %d\n", i); - return PTR_ERR(base); + ret = PTR_ERR(base); + goto ddr_shimphy_err; } ctrl.memcs[i].ddr_shimphy_base = base; ctrl.num_memc++; @@ -749,14 +756,18 @@ for_each_matching_node(dn, brcmstb_memc_of_match) { base = of_iomap(dn, 0); if (!base) { + of_node_put(dn); pr_err("error mapping DDR Sequencer %d\n", i); - return -ENOMEM; + ret = -ENOMEM; + goto brcmstb_memc_err; } of_id = of_match_node(brcmstb_memc_of_match, dn); if (!of_id) { iounmap(base); - return -EINVAL; + of_node_put(dn); + ret = -EINVAL; + goto brcmstb_memc_err; } ddr_seq_data = of_id->data; @@ -776,20 +787,24 @@ dn = of_find_matching_node(NULL, sram_dt_ids); if (!dn) { pr_err("SRAM not found\n"); - return -EINVAL; + ret = -EINVAL; + goto brcmstb_memc_err; } ret = brcmstb_init_sram(dn); + of_node_put(dn); if (ret) { pr_err("error setting up SRAM for PM\n"); - return ret; + goto brcmstb_memc_err; } ctrl.pdev = pdev; ctrl.s3_params = kmalloc(sizeof(*ctrl.s3_params), GFP_KERNEL); - if (!ctrl.s3_params) - return -ENOMEM; + if (!ctrl.s3_params) { + ret = -ENOMEM; + goto s3_params_err; + } ctrl.s3_params_pa = dma_map_single(&pdev->dev, ctrl.s3_params, sizeof(*ctrl.s3_params), DMA_TO_DEVICE); @@ -809,7 +824,21 @@ out: kfree(ctrl.s3_params); - +s3_params_err: + iounmap(ctrl.boot_sram); +brcmstb_memc_err: + for (i--; i >= 0; i--) + iounmap(ctrl.memcs[i].ddr_ctrl); +ddr_shimphy_err: + for (i = 0; i < ctrl.num_memc; i++) + iounmap(ctrl.memcs[i].ddr_shimphy_base); + + iounmap(ctrl.memcs[0].ddr_phy_base); +ddr_phy_err: + iounmap(ctrl.aon_ctrl_base); + if (s) + iounmap(ctrl.aon_sram); +aon_err: pr_warn("PM: initialization failed with code %d\n", ret); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/fsl/Kconfig +++ linux-azure-5.4.0/drivers/soc/fsl/Kconfig @@ -24,6 +24,7 @@ tristate "QorIQ DPAA2 DPIO driver" depends on FSL_MC_BUS select SOC_BUS + select FSL_GUTS help Driver for the DPAA2 DPIO object. A DPIO provides queue and buffer management facilities for software to interact with only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/fsl/dpaa2-console.c +++ linux-azure-5.4.0/drivers/soc/fsl/dpaa2-console.c @@ -231,6 +231,7 @@ cd->cur_ptr += bytes; written += bytes; + kfree(kbuf); return written; err_free_buf: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/fsl/guts.c +++ linux-azure-5.4.0/drivers/soc/fsl/guts.c @@ -142,7 +142,7 @@ struct device *dev = &pdev->dev; struct resource *res; const struct fsl_soc_die_attr *soc_die; - const char *machine; + const char *machine = NULL; u32 svr; /* Initialize guts */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/fsl/qe/qe_io.c +++ linux-azure-5.4.0/drivers/soc/fsl/qe/qe_io.c @@ -37,6 +37,8 @@ if (ret) return ret; par_io = ioremap(res.start, resource_size(&res)); + if (!par_io) + return -ENOMEM; num_ports = of_get_property(np, "num-ports", NULL); if (num_ports) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/ixp4xx/ixp4xx-npe.c +++ linux-azure-5.4.0/drivers/soc/ixp4xx/ixp4xx-npe.c @@ -690,8 +690,8 @@ if (!(ixp4xx_read_feature_bits() & (IXP4XX_FEATURE_RESET_NPEA << i))) { - dev_info(dev, "NPE%d at 0x%08x-0x%08x not available\n", - i, res->start, res->end); + dev_info(dev, "NPE%d at %pR not available\n", + i, res); continue; /* NPE already disabled or not present */ } npe->regs = devm_ioremap_resource(dev, res); @@ -699,13 +699,12 @@ return PTR_ERR(npe->regs); if (npe_reset(npe)) { - dev_info(dev, "NPE%d at 0x%08x-0x%08x does not reset\n", - i, res->start, res->end); + dev_info(dev, "NPE%d at %pR does not reset\n", + i, res); continue; } npe->valid = 1; - dev_info(dev, "NPE%d at 0x%08x-0x%08x registered\n", - i, res->start, res->end); + dev_info(dev, "NPE%d at %pR registered\n", i, res); found++; } @@ -736,7 +735,7 @@ static struct platform_driver ixp4xx_npe_driver = { .driver = { .name = "ixp4xx-npe", - .of_match_table = of_match_ptr(ixp4xx_npe_of_match), + .of_match_table = ixp4xx_npe_of_match, }, .probe = ixp4xx_npe_probe, .remove = ixp4xx_npe_remove, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/ixp4xx/ixp4xx-qmgr.c +++ linux-azure-5.4.0/drivers/soc/ixp4xx/ixp4xx-qmgr.c @@ -145,12 +145,12 @@ /* ACK - it may clear any bits so don't rely on it */ __raw_writel(0xFFFFFFFF, &qmgr_regs->irqstat[0]); - en_bitmap = qmgr_regs->irqen[0]; + en_bitmap = __raw_readl(&qmgr_regs->irqen[0]); while (en_bitmap) { i = __fls(en_bitmap); /* number of the last "low" queue */ en_bitmap &= ~BIT(i); - src = qmgr_regs->irqsrc[i >> 3]; - stat = qmgr_regs->stat1[i >> 3]; + src = __raw_readl(&qmgr_regs->irqsrc[i >> 3]); + stat = __raw_readl(&qmgr_regs->stat1[i >> 3]); if (src & 4) /* the IRQ condition is inverted */ stat = ~stat; if (stat & BIT(src & 3)) { @@ -170,7 +170,8 @@ /* ACK - it may clear any bits so don't rely on it */ __raw_writel(0xFFFFFFFF, &qmgr_regs->irqstat[1]); - req_bitmap = qmgr_regs->irqen[1] & qmgr_regs->statne_h; + req_bitmap = __raw_readl(&qmgr_regs->irqen[1]) & + __raw_readl(&qmgr_regs->statne_h); while (req_bitmap) { i = __fls(req_bitmap); /* number of the last "high" queue */ req_bitmap &= ~BIT(i); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/qcom/qcom_aoss.c +++ linux-azure-5.4.0/drivers/soc/qcom/qcom_aoss.c @@ -472,12 +472,12 @@ static int qmp_cooling_devices_register(struct qmp *qmp) { struct device_node *np, *child; - int count = QMP_NUM_COOLING_RESOURCES; + int count = 0; int ret; np = qmp->dev->of_node; - qmp->cooling_devs = devm_kcalloc(qmp->dev, count, + qmp->cooling_devs = devm_kcalloc(qmp->dev, QMP_NUM_COOLING_RESOURCES, sizeof(*qmp->cooling_devs), GFP_KERNEL); @@ -489,16 +489,22 @@ continue; ret = qmp_cooling_device_add(qmp, &qmp->cooling_devs[count++], child); - if (ret) + if (ret) { + of_node_put(child); goto unroll; + } } + if (!count) + devm_kfree(qmp->dev, qmp->cooling_devs); + return 0; unroll: while (--count >= 0) thermal_cooling_device_unregister (qmp->cooling_devs[count].cdev); + devm_kfree(qmp->dev, qmp->cooling_devs); return ret; } @@ -540,7 +546,7 @@ } irq = platform_get_irq(pdev, 0); - ret = devm_request_irq(&pdev->dev, irq, qmp_intr, IRQF_ONESHOT, + ret = devm_request_irq(&pdev->dev, irq, qmp_intr, 0, "aoss-qmp", qmp); if (ret < 0) { dev_err(&pdev->dev, "failed to request interrupt\n"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/qcom/rpmpd.c +++ linux-azure-5.4.0/drivers/soc/qcom/rpmpd.c @@ -362,6 +362,9 @@ data->domains = devm_kcalloc(&pdev->dev, num, sizeof(*data->domains), GFP_KERNEL); + if (!data->domains) + return -ENOMEM; + data->num_domains = num; for (i = 0; i < num; i++) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/qcom/smem_state.c +++ linux-azure-5.4.0/drivers/soc/qcom/smem_state.c @@ -136,6 +136,7 @@ struct qcom_smem_state *state = container_of(ref, struct qcom_smem_state, refcount); list_del(&state->list); + of_node_put(state->of_node); kfree(state); } @@ -169,7 +170,7 @@ kref_init(&state->refcount); - state->of_node = of_node; + state->of_node = of_node_get(of_node); state->ops = *ops; state->priv = priv; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/qcom/smsm.c +++ linux-azure-5.4.0/drivers/soc/qcom/smsm.c @@ -109,7 +109,7 @@ DECLARE_BITMAP(irq_enabled, 32); DECLARE_BITMAP(irq_rising, 32); DECLARE_BITMAP(irq_falling, 32); - u32 last_value; + unsigned long last_value; u32 *remote_state; u32 *subscription; @@ -204,8 +204,7 @@ u32 val; val = readl(entry->remote_state); - changed = val ^ entry->last_value; - entry->last_value = val; + changed = val ^ xchg(&entry->last_value, val); for_each_set_bit(i, entry->irq_enabled, 32) { if (!(changed & BIT(i))) @@ -266,6 +265,12 @@ struct qcom_smsm *smsm = entry->smsm; u32 val; + /* Make sure our last cached state is up-to-date */ + if (readl(entry->remote_state) & BIT(irq)) + set_bit(irq, &entry->last_value); + else + clear_bit(irq, &entry->last_value); + set_bit(irq, entry->irq_enabled); if (entry->subscription) { @@ -354,6 +359,7 @@ return 0; host->ipc_regmap = syscon_node_to_regmap(syscon); + of_node_put(syscon); if (IS_ERR(host->ipc_regmap)) return PTR_ERR(host->ipc_regmap); @@ -505,7 +511,7 @@ for (id = 0; id < smsm->num_hosts; id++) { ret = smsm_parse_ipc(smsm, id); if (ret < 0) - return ret; + goto out_put; } /* Acquire the main SMSM state vector */ @@ -513,13 +519,14 @@ smsm->num_entries * sizeof(u32)); if (ret < 0 && ret != -EEXIST) { dev_err(&pdev->dev, "unable to allocate shared state entry\n"); - return ret; + goto out_put; } states = qcom_smem_get(QCOM_SMEM_HOST_ANY, SMEM_SMSM_SHARED_STATE, NULL); if (IS_ERR(states)) { dev_err(&pdev->dev, "Unable to acquire shared state entry\n"); - return PTR_ERR(states); + ret = PTR_ERR(states); + goto out_put; } /* Acquire the list of interrupt mask vectors */ @@ -527,13 +534,14 @@ ret = qcom_smem_alloc(QCOM_SMEM_HOST_ANY, SMEM_SMSM_CPU_INTR_MASK, size); if (ret < 0 && ret != -EEXIST) { dev_err(&pdev->dev, "unable to allocate smsm interrupt mask\n"); - return ret; + goto out_put; } intr_mask = qcom_smem_get(QCOM_SMEM_HOST_ANY, SMEM_SMSM_CPU_INTR_MASK, NULL); if (IS_ERR(intr_mask)) { dev_err(&pdev->dev, "unable to acquire shared memory interrupt mask\n"); - return PTR_ERR(intr_mask); + ret = PTR_ERR(intr_mask); + goto out_put; } /* Setup the reference to the local state bits */ @@ -544,7 +552,8 @@ smsm->state = qcom_smem_state_register(local_node, &smsm_state_ops, smsm); if (IS_ERR(smsm->state)) { dev_err(smsm->dev, "failed to register qcom_smem_state\n"); - return PTR_ERR(smsm->state); + ret = PTR_ERR(smsm->state); + goto out_put; } /* Register handlers for remote processor entries of interest. */ @@ -574,16 +583,19 @@ } platform_set_drvdata(pdev, smsm); + of_node_put(local_node); return 0; unwind_interfaces: + of_node_put(node); for (id = 0; id < smsm->num_entries; id++) if (smsm->entries[id].domain) irq_domain_remove(smsm->entries[id].domain); qcom_smem_state_unregister(smsm->state); - +out_put: + of_node_put(local_node); return ret; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/rockchip/Kconfig +++ linux-azure-5.4.0/drivers/soc/rockchip/Kconfig @@ -6,8 +6,8 @@ # config ROCKCHIP_GRF - bool - default y + bool "Rockchip General Register Files support" if COMPILE_TEST + default y if ARCH_ROCKCHIP help The General Register Files are a central component providing special additional settings registers for a lot of soc-components. only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/rockchip/grf.c +++ linux-azure-5.4.0/drivers/soc/rockchip/grf.c @@ -148,12 +148,14 @@ return -ENODEV; if (!match || !match->data) { pr_err("%s: missing grf data\n", __func__); + of_node_put(np); return -EINVAL; } grf_info = match->data; grf = syscon_node_to_regmap(np); + of_node_put(np); if (IS_ERR(grf)) { pr_err("%s: could not get grf syscon\n", __func__); return PTR_ERR(grf); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/sunxi/sunxi_sram.c +++ linux-azure-5.4.0/drivers/soc/sunxi/sunxi_sram.c @@ -78,8 +78,8 @@ static struct sunxi_sram_desc sun50i_a64_sram_c = { .data = SUNXI_SRAM_DATA("C", 0x4, 24, 1, - SUNXI_SRAM_MAP(0, 1, "cpu"), - SUNXI_SRAM_MAP(1, 0, "de2")), + SUNXI_SRAM_MAP(1, 0, "cpu"), + SUNXI_SRAM_MAP(0, 1, "de2")), }; static const struct of_device_id sunxi_sram_dt_ids[] = { @@ -254,6 +254,7 @@ writel(val | ((device << sram_data->offset) & mask), base + sram_data->reg); + sram_desc->claimed = true; spin_unlock(&sram_lock); return 0; @@ -318,12 +319,11 @@ .writeable_reg = sunxi_sram_regmap_accessible_reg, }; -static int sunxi_sram_probe(struct platform_device *pdev) +static int __init sunxi_sram_probe(struct platform_device *pdev) { - struct resource *res; - struct dentry *d; struct regmap *emac_clock; const struct sunxi_sramc_variant *variant; + struct device *dev = &pdev->dev; sram_dev = &pdev->dev; @@ -331,18 +331,10 @@ if (!variant) return -EINVAL; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - base = devm_ioremap_resource(&pdev->dev, res); + base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(base)) return PTR_ERR(base); - of_platform_populate(pdev->dev.of_node, NULL, NULL, &pdev->dev); - - d = debugfs_create_file("sram", S_IRUGO, NULL, NULL, - &sunxi_sram_fops); - if (!d) - return -ENOMEM; - if (variant->has_emac_clock) { emac_clock = devm_regmap_init_mmio(&pdev->dev, base, &sunxi_sram_emac_clock_regmap); @@ -351,6 +343,10 @@ return PTR_ERR(emac_clock); } + of_platform_populate(dev->of_node, NULL, NULL, dev); + + debugfs_create_file("sram", 0444, NULL, NULL, &sunxi_sram_fops); + return 0; } @@ -396,9 +392,8 @@ .name = "sunxi-sram", .of_match_table = sunxi_sram_dt_match, }, - .probe = sunxi_sram_probe, }; -module_platform_driver(sunxi_sram_driver); +builtin_platform_driver_probe(sunxi_sram_driver, sunxi_sram_probe); MODULE_AUTHOR("Maxime Ripard "); MODULE_DESCRIPTION("Allwinner sunXi SRAM Controller Driver"); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/tegra/fuse/fuse-tegra.c +++ linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse-tegra.c @@ -172,7 +172,7 @@ }; builtin_platform_driver(tegra_fuse_driver); -bool __init tegra_fuse_read_spare(unsigned int spare) +u32 __init tegra_fuse_read_spare(unsigned int spare) { unsigned int offset = fuse->soc->info->spare + spare * 4; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soc/tegra/fuse/fuse.h +++ linux-azure-5.4.0/drivers/soc/tegra/fuse/fuse.h @@ -53,7 +53,7 @@ void tegra_init_revision(void); void tegra_init_apbmisc(void); -bool __init tegra_fuse_read_spare(unsigned int spare); +u32 __init tegra_fuse_read_spare(unsigned int spare); u32 __init tegra_fuse_read_early(unsigned int offset); #ifdef CONFIG_ARCH_TEGRA_2x_SOC only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/soundwire/bus_type.c +++ linux-azure-5.4.0/drivers/soundwire/bus_type.c @@ -155,12 +155,8 @@ drv->driver.owner = owner; drv->driver.probe = sdw_drv_probe; - - if (drv->remove) - drv->driver.remove = sdw_drv_remove; - - if (drv->shutdown) - drv->driver.shutdown = sdw_drv_shutdown; + drv->driver.remove = sdw_drv_remove; + drv->driver.shutdown = sdw_drv_shutdown; return driver_register(&drv->driver); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-armada-3700.c +++ linux-azure-5.4.0/drivers/spi/spi-armada-3700.c @@ -906,7 +906,7 @@ return 0; error_clk: - clk_disable_unprepare(spi->clk); + clk_unprepare(spi->clk); error: spi_master_put(master); out: only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-bitbang.c +++ linux-azure-5.4.0/drivers/spi/spi-bitbang.c @@ -181,6 +181,8 @@ { struct spi_bitbang_cs *cs = spi->controller_state; struct spi_bitbang *bitbang; + bool initial_setup = false; + int retval; bitbang = spi_master_get_devdata(spi->master); @@ -189,22 +191,30 @@ if (!cs) return -ENOMEM; spi->controller_state = cs; + initial_setup = true; } /* per-word shift register access, in hardware or bitbanging */ cs->txrx_word = bitbang->txrx_word[spi->mode & (SPI_CPOL|SPI_CPHA)]; - if (!cs->txrx_word) - return -EINVAL; + if (!cs->txrx_word) { + retval = -EINVAL; + goto err_free; + } if (bitbang->setup_transfer) { - int retval = bitbang->setup_transfer(spi, NULL); + retval = bitbang->setup_transfer(spi, NULL); if (retval < 0) - return retval; + goto err_free; } dev_dbg(&spi->dev, "%s, %u nsec/bit\n", __func__, 2 * cs->nsecs); return 0; + +err_free: + if (initial_setup) + kfree(cs); + return retval; } EXPORT_SYMBOL_GPL(spi_bitbang_setup); only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-imx.c +++ linux-azure-5.4.0/drivers/spi/spi-imx.c @@ -64,8 +64,7 @@ struct spi_imx_devtype_data { void (*intctrl)(struct spi_imx_data *, int); int (*prepare_message)(struct spi_imx_data *, struct spi_message *); - int (*prepare_transfer)(struct spi_imx_data *, struct spi_device *, - struct spi_transfer *); + int (*prepare_transfer)(struct spi_imx_data *, struct spi_device *); void (*trigger)(struct spi_imx_data *); int (*rx_available)(struct spi_imx_data *); void (*reset)(struct spi_imx_data *); @@ -498,8 +497,10 @@ struct spi_message *msg) { struct spi_device *spi = msg->spi; + struct spi_transfer *xfer; u32 ctrl = MX51_ECSPI_CTRL_ENABLE; - u32 testreg; + u32 min_speed_hz = ~0U; + u32 testreg, delay; u32 cfg = readl(spi_imx->base + MX51_ECSPI_CONFIG); /* set Master or Slave mode */ @@ -560,15 +561,43 @@ writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG); + /* + * Wait until the changes in the configuration register CONFIGREG + * propagate into the hardware. It takes exactly one tick of the + * SCLK clock, but we will wait two SCLK clock just to be sure. The + * effect of the delay it takes for the hardware to apply changes + * is noticable if the SCLK clock run very slow. In such a case, if + * the polarity of SCLK should be inverted, the GPIO ChipSelect might + * be asserted before the SCLK polarity changes, which would disrupt + * the SPI communication as the device on the other end would consider + * the change of SCLK polarity as a clock tick already. + * + * Because spi_imx->spi_bus_clk is only set in bitbang prepare_message + * callback, iterate over all the transfers in spi_message, find the + * one with lowest bus frequency, and use that bus frequency for the + * delay calculation. In case all transfers have speed_hz == 0, then + * min_speed_hz is ~0 and the resulting delay is zero. + */ + list_for_each_entry(xfer, &msg->transfers, transfer_list) { + if (!xfer->speed_hz) + continue; + min_speed_hz = min(xfer->speed_hz, min_speed_hz); + } + + delay = (2 * 1000000) / min_speed_hz; + if (likely(delay < 10)) /* SCLK is faster than 100 kHz */ + udelay(delay); + else /* SCLK is _very_ slow */ + usleep_range(delay, delay + 10); + return 0; } static int mx51_ecspi_prepare_transfer(struct spi_imx_data *spi_imx, - struct spi_device *spi, - struct spi_transfer *t) + struct spi_device *spi) { u32 ctrl = readl(spi_imx->base + MX51_ECSPI_CTRL); - u32 clk = t->speed_hz, delay; + u32 clk; /* Clear BL field and set the right value */ ctrl &= ~MX51_ECSPI_CTRL_BL_MASK; @@ -582,7 +611,7 @@ /* set clock speed */ ctrl &= ~(0xf << MX51_ECSPI_CTRL_POSTDIV_OFFSET | 0xf << MX51_ECSPI_CTRL_PREDIV_OFFSET); - ctrl |= mx51_ecspi_clkdiv(spi_imx, t->speed_hz, &clk); + ctrl |= mx51_ecspi_clkdiv(spi_imx, spi_imx->spi_bus_clk, &clk); spi_imx->spi_bus_clk = clk; if (spi_imx->usedma) @@ -590,23 +619,6 @@ writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL); - /* - * Wait until the changes in the configuration register CONFIGREG - * propagate into the hardware. It takes exactly one tick of the - * SCLK clock, but we will wait two SCLK clock just to be sure. The - * effect of the delay it takes for the hardware to apply changes - * is noticable if the SCLK clock run very slow. In such a case, if - * the polarity of SCLK should be inverted, the GPIO ChipSelect might - * be asserted before the SCLK polarity changes, which would disrupt - * the SPI communication as the device on the other end would consider - * the change of SCLK polarity as a clock tick already. - */ - delay = (2 * 1000000) / clk; - if (likely(delay < 10)) /* SCLK is faster than 100 kHz */ - udelay(delay); - else /* SCLK is _very_ slow */ - usleep_range(delay, delay + 10); - return 0; } @@ -694,13 +706,12 @@ } static int mx31_prepare_transfer(struct spi_imx_data *spi_imx, - struct spi_device *spi, - struct spi_transfer *t) + struct spi_device *spi) { unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER; unsigned int clk; - reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, t->speed_hz, &clk) << + reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, spi_imx->spi_bus_clk, &clk) << MX31_CSPICTRL_DR_SHIFT; spi_imx->spi_bus_clk = clk; @@ -799,14 +810,13 @@ } static int mx21_prepare_transfer(struct spi_imx_data *spi_imx, - struct spi_device *spi, - struct spi_transfer *t) + struct spi_device *spi) { unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER; unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18; unsigned int clk; - reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, t->speed_hz, max, &clk) + reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, spi_imx->spi_bus_clk, max, &clk) << MX21_CSPICTRL_DR_SHIFT; spi_imx->spi_bus_clk = clk; @@ -875,13 +885,12 @@ } static int mx1_prepare_transfer(struct spi_imx_data *spi_imx, - struct spi_device *spi, - struct spi_transfer *t) + struct spi_device *spi) { unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER; unsigned int clk; - reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, t->speed_hz, &clk) << + reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, spi_imx->spi_bus_clk, &clk) << MX1_CSPICTRL_DR_SHIFT; spi_imx->spi_bus_clk = clk; @@ -1199,6 +1208,16 @@ if (!t) return 0; + if (!t->speed_hz) { + if (!spi->max_speed_hz) { + dev_err(&spi->dev, "no speed_hz provided!\n"); + return -EINVAL; + } + dev_dbg(&spi->dev, "using spi->max_speed_hz!\n"); + spi_imx->spi_bus_clk = spi->max_speed_hz; + } else + spi_imx->spi_bus_clk = t->speed_hz; + spi_imx->bits_per_word = t->bits_per_word; /* @@ -1240,7 +1259,7 @@ spi_imx->slave_burst = t->len; } - spi_imx->devtype_data->prepare_transfer(spi_imx, spi, t); + spi_imx->devtype_data->prepare_transfer(spi_imx, spi); return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-meson-spicc.c +++ linux-azure-5.4.0/drivers/spi/spi-meson-spicc.c @@ -527,6 +527,11 @@ writel_relaxed(0, spicc->base + SPICC_INTREG); irq = platform_get_irq(pdev, 0); + if (irq < 0) { + ret = irq; + goto out_master; + } + ret = devm_request_irq(&pdev->dev, irq, meson_spicc_irq, 0, NULL, spicc); if (ret) { @@ -597,6 +602,8 @@ clk_disable_unprepare(spicc->core); + spi_master_put(spicc->master); + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-meson-spifc.c +++ linux-azure-5.4.0/drivers/spi/spi-meson-spifc.c @@ -349,6 +349,7 @@ return 0; out_clk: clk_disable_unprepare(spifc->clk); + pm_runtime_disable(spifc->dev); out_err: spi_master_put(master); return ret; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-omap-uwire.c +++ linux-azure-5.4.0/drivers/spi/spi-omap-uwire.c @@ -424,15 +424,22 @@ static int uwire_setup(struct spi_device *spi) { struct uwire_state *ust = spi->controller_state; + bool initial_setup = false; + int status; if (ust == NULL) { ust = kzalloc(sizeof(*ust), GFP_KERNEL); if (ust == NULL) return -ENOMEM; spi->controller_state = ust; + initial_setup = true; } - return uwire_setup_transfer(spi, NULL); + status = uwire_setup_transfer(spi, NULL); + if (status && initial_setup) + kfree(ust); + + return status; } static void uwire_cleanup(struct spi_device *spi) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-pl022.c +++ linux-azure-5.4.0/drivers/spi/spi-pl022.c @@ -1720,12 +1720,13 @@ return -EINVAL; } } else { - if (chip_info->duplex != SSP_MICROWIRE_CHANNEL_FULL_DUPLEX) + if (chip_info->duplex != SSP_MICROWIRE_CHANNEL_FULL_DUPLEX) { dev_err(&pl022->adev->dev, "Microwire half duplex mode requested," " but this is only available in the" " ST version of PL022\n"); - return -EINVAL; + return -EINVAL; + } } } return 0; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-topcliff-pch.c +++ linux-azure-5.4.0/drivers/spi/spi-topcliff-pch.c @@ -576,8 +576,10 @@ data->pkt_tx_buff = kzalloc(size, GFP_KERNEL); if (data->pkt_tx_buff != NULL) { data->pkt_rx_buff = kzalloc(size, GFP_KERNEL); - if (!data->pkt_rx_buff) + if (!data->pkt_rx_buff) { kfree(data->pkt_tx_buff); + data->pkt_tx_buff = NULL; + } } if (!data->pkt_rx_buff) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/spi/spi-zynq-qspi.c +++ linux-azure-5.4.0/drivers/spi/spi-zynq-qspi.c @@ -533,7 +533,7 @@ zynq_qspi_write_op(xqspi, ZYNQ_QSPI_FIFO_DEPTH, true); zynq_qspi_write(xqspi, ZYNQ_QSPI_IEN_OFFSET, ZYNQ_QSPI_IXR_RXTX_MASK); - if (!wait_for_completion_interruptible_timeout(&xqspi->data_completion, + if (!wait_for_completion_timeout(&xqspi->data_completion, msecs_to_jiffies(1000))) err = -ETIMEDOUT; } @@ -551,13 +551,16 @@ zynq_qspi_write_op(xqspi, ZYNQ_QSPI_FIFO_DEPTH, true); zynq_qspi_write(xqspi, ZYNQ_QSPI_IEN_OFFSET, ZYNQ_QSPI_IXR_RXTX_MASK); - if (!wait_for_completion_interruptible_timeout(&xqspi->data_completion, + if (!wait_for_completion_timeout(&xqspi->data_completion, msecs_to_jiffies(1000))) err = -ETIMEDOUT; } if (op->dummy.nbytes) { tmpbuf = kzalloc(op->dummy.nbytes, GFP_KERNEL); + if (!tmpbuf) + return -ENOMEM; + memset(tmpbuf, 0xff, op->dummy.nbytes); reinit_completion(&xqspi->data_completion); xqspi->txbuf = tmpbuf; @@ -567,7 +570,7 @@ zynq_qspi_write_op(xqspi, ZYNQ_QSPI_FIFO_DEPTH, true); zynq_qspi_write(xqspi, ZYNQ_QSPI_IEN_OFFSET, ZYNQ_QSPI_IXR_RXTX_MASK); - if (!wait_for_completion_interruptible_timeout(&xqspi->data_completion, + if (!wait_for_completion_timeout(&xqspi->data_completion, msecs_to_jiffies(1000))) err = -ETIMEDOUT; @@ -591,7 +594,7 @@ zynq_qspi_write_op(xqspi, ZYNQ_QSPI_FIFO_DEPTH, true); zynq_qspi_write(xqspi, ZYNQ_QSPI_IEN_OFFSET, ZYNQ_QSPI_IXR_RXTX_MASK); - if (!wait_for_completion_interruptible_timeout(&xqspi->data_completion, + if (!wait_for_completion_timeout(&xqspi->data_completion, msecs_to_jiffies(1000))) err = -ETIMEDOUT; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ssb/scan.c +++ linux-azure-5.4.0/drivers/ssb/scan.c @@ -325,6 +325,7 @@ if (bus->nr_devices > ARRAY_SIZE(bus->devices)) { pr_err("More than %d ssb cores found (%d)\n", SSB_MAX_NR_CORES, bus->nr_devices); + err = -EINVAL; goto err_unmap; } if (bus->bustype == SSB_BUSTYPE_SSB) { only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/ssb/sdio.c +++ linux-azure-5.4.0/drivers/ssb/sdio.c @@ -411,7 +411,6 @@ sdio_claim_host(bus->host_sdio); if (unlikely(ssb_sdio_switch_core(bus, dev))) { error = -EIO; - memset((void *)buffer, 0xff, count); goto err_out; } offset |= bus->sdio_sbaddr & 0xffff; only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/android/ion/ion.c +++ linux-azure-5.4.0/drivers/staging/android/ion/ion.c @@ -114,6 +114,9 @@ void *vaddr; if (buffer->kmap_cnt) { + if (buffer->kmap_cnt == INT_MAX) + return ERR_PTR(-EOVERFLOW); + buffer->kmap_cnt++; return buffer->vaddr; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/board/board.c +++ linux-azure-5.4.0/drivers/staging/board/board.c @@ -136,6 +136,7 @@ static int board_staging_add_dev_domain(struct platform_device *pdev, const char *domain) { + struct device *dev = &pdev->dev; struct of_phandle_args pd_args; struct device_node *np; @@ -148,7 +149,11 @@ pd_args.np = np; pd_args.args_count = 0; - return of_genpd_add_device(&pd_args, &pdev->dev); + /* Initialization similar to device_pm_init_common() */ + spin_lock_init(&dev->power.lock); + dev->power.early_init = true; + + return of_genpd_add_device(&pd_args, dev); } #else static inline int board_staging_add_dev_domain(struct platform_device *pdev, only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/comedi/drivers/dt9812.c +++ linux-azure-5.4.0/drivers/staging/comedi/drivers/dt9812.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include "../comedi_usb.h" @@ -237,22 +238,42 @@ { struct usb_device *usb = comedi_to_usb_dev(dev); struct dt9812_private *devpriv = dev->private; - struct dt9812_usb_cmd cmd; + struct dt9812_usb_cmd *cmd; + size_t tbuf_size; int count, ret; + void *tbuf; - cmd.cmd = cpu_to_le32(DT9812_R_FLASH_DATA); - cmd.u.flash_data_info.address = + tbuf_size = max(sizeof(*cmd), buf_size); + + tbuf = kzalloc(tbuf_size, GFP_KERNEL); + if (!tbuf) + return -ENOMEM; + + cmd = tbuf; + + cmd->cmd = cpu_to_le32(DT9812_R_FLASH_DATA); + cmd->u.flash_data_info.address = cpu_to_le16(DT9812_DIAGS_BOARD_INFO_ADDR + offset); - cmd.u.flash_data_info.numbytes = cpu_to_le16(buf_size); + cmd->u.flash_data_info.numbytes = cpu_to_le16(buf_size); /* DT9812 only responds to 32 byte writes!! */ ret = usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), - &cmd, 32, &count, DT9812_USB_TIMEOUT); + cmd, sizeof(*cmd), &count, DT9812_USB_TIMEOUT); if (ret) - return ret; + goto out; + + ret = usb_bulk_msg(usb, usb_rcvbulkpipe(usb, devpriv->cmd_rd.addr), + tbuf, buf_size, &count, DT9812_USB_TIMEOUT); + if (!ret) { + if (count == buf_size) + memcpy(buf, tbuf, buf_size); + else + ret = -EREMOTEIO; + } +out: + kfree(tbuf); - return usb_bulk_msg(usb, usb_rcvbulkpipe(usb, devpriv->cmd_rd.addr), - buf, buf_size, &count, DT9812_USB_TIMEOUT); + return ret; } static int dt9812_read_multiple_registers(struct comedi_device *dev, @@ -261,22 +282,42 @@ { struct usb_device *usb = comedi_to_usb_dev(dev); struct dt9812_private *devpriv = dev->private; - struct dt9812_usb_cmd cmd; + struct dt9812_usb_cmd *cmd; int i, count, ret; + size_t buf_size; + void *buf; + + buf_size = max_t(size_t, sizeof(*cmd), reg_count); + + buf = kzalloc(buf_size, GFP_KERNEL); + if (!buf) + return -ENOMEM; + + cmd = buf; - cmd.cmd = cpu_to_le32(DT9812_R_MULTI_BYTE_REG); - cmd.u.read_multi_info.count = reg_count; + cmd->cmd = cpu_to_le32(DT9812_R_MULTI_BYTE_REG); + cmd->u.read_multi_info.count = reg_count; for (i = 0; i < reg_count; i++) - cmd.u.read_multi_info.address[i] = address[i]; + cmd->u.read_multi_info.address[i] = address[i]; /* DT9812 only responds to 32 byte writes!! */ ret = usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), - &cmd, 32, &count, DT9812_USB_TIMEOUT); + cmd, sizeof(*cmd), &count, DT9812_USB_TIMEOUT); if (ret) - return ret; + goto out; - return usb_bulk_msg(usb, usb_rcvbulkpipe(usb, devpriv->cmd_rd.addr), - value, reg_count, &count, DT9812_USB_TIMEOUT); + ret = usb_bulk_msg(usb, usb_rcvbulkpipe(usb, devpriv->cmd_rd.addr), + buf, reg_count, &count, DT9812_USB_TIMEOUT); + if (!ret) { + if (count == reg_count) + memcpy(value, buf, reg_count); + else + ret = -EREMOTEIO; + } +out: + kfree(buf); + + return ret; } static int dt9812_write_multiple_registers(struct comedi_device *dev, @@ -285,19 +326,27 @@ { struct usb_device *usb = comedi_to_usb_dev(dev); struct dt9812_private *devpriv = dev->private; - struct dt9812_usb_cmd cmd; + struct dt9812_usb_cmd *cmd; int i, count; + int ret; - cmd.cmd = cpu_to_le32(DT9812_W_MULTI_BYTE_REG); - cmd.u.read_multi_info.count = reg_count; + cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); + if (!cmd) + return -ENOMEM; + + cmd->cmd = cpu_to_le32(DT9812_W_MULTI_BYTE_REG); + cmd->u.read_multi_info.count = reg_count; for (i = 0; i < reg_count; i++) { - cmd.u.write_multi_info.write[i].address = address[i]; - cmd.u.write_multi_info.write[i].value = value[i]; + cmd->u.write_multi_info.write[i].address = address[i]; + cmd->u.write_multi_info.write[i].value = value[i]; } /* DT9812 only responds to 32 byte writes!! */ - return usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), - &cmd, 32, &count, DT9812_USB_TIMEOUT); + ret = usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), + cmd, sizeof(*cmd), &count, DT9812_USB_TIMEOUT); + kfree(cmd); + + return ret; } static int dt9812_rmw_multiple_registers(struct comedi_device *dev, @@ -306,17 +355,25 @@ { struct usb_device *usb = comedi_to_usb_dev(dev); struct dt9812_private *devpriv = dev->private; - struct dt9812_usb_cmd cmd; + struct dt9812_usb_cmd *cmd; int i, count; + int ret; + + cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); + if (!cmd) + return -ENOMEM; - cmd.cmd = cpu_to_le32(DT9812_RMW_MULTI_BYTE_REG); - cmd.u.rmw_multi_info.count = reg_count; + cmd->cmd = cpu_to_le32(DT9812_RMW_MULTI_BYTE_REG); + cmd->u.rmw_multi_info.count = reg_count; for (i = 0; i < reg_count; i++) - cmd.u.rmw_multi_info.rmw[i] = rmw[i]; + cmd->u.rmw_multi_info.rmw[i] = rmw[i]; /* DT9812 only responds to 32 byte writes!! */ - return usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), - &cmd, 32, &count, DT9812_USB_TIMEOUT); + ret = usb_bulk_msg(usb, usb_sndbulkpipe(usb, devpriv->cmd_wr.addr), + cmd, sizeof(*cmd), &count, DT9812_USB_TIMEOUT); + kfree(cmd); + + return ret; } static int dt9812_digital_in(struct comedi_device *dev, u8 *bits) only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/comedi/drivers/ni_usb6501.c +++ linux-azure-5.4.0/drivers/staging/comedi/drivers/ni_usb6501.c @@ -144,6 +144,10 @@ 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00}; +/* Largest supported packets */ +static const size_t TX_MAX_SIZE = sizeof(SET_PORT_DIR_REQUEST); +static const size_t RX_MAX_SIZE = sizeof(READ_PORT_RESPONSE); + enum commands { READ_PORT, WRITE_PORT, @@ -501,6 +505,12 @@ if (!devpriv->ep_rx || !devpriv->ep_tx) return -ENODEV; + if (usb_endpoint_maxp(devpriv->ep_rx) < RX_MAX_SIZE) + return -ENODEV; + + if (usb_endpoint_maxp(devpriv->ep_tx) < TX_MAX_SIZE) + return -ENODEV; + return 0; } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/fbtft/fb_agm1264k-fl.c +++ linux-azure-5.4.0/drivers/staging/fbtft/fb_agm1264k-fl.c @@ -84,9 +84,9 @@ dev_dbg(par->info->device, "%s()\n", __func__); - gpiod_set_value(par->gpio.reset, 0); - udelay(20); gpiod_set_value(par->gpio.reset, 1); + udelay(20); + gpiod_set_value(par->gpio.reset, 0); mdelay(120); } @@ -194,12 +194,12 @@ /* select chip */ if (*buf) { /* cs1 */ - gpiod_set_value(par->CS0, 1); - gpiod_set_value(par->CS1, 0); - } else { - /* cs0 */ gpiod_set_value(par->CS0, 0); gpiod_set_value(par->CS1, 1); + } else { + /* cs0 */ + gpiod_set_value(par->CS0, 1); + gpiod_set_value(par->CS1, 0); } gpiod_set_value(par->RS, 0); /* RS->0 (command mode) */ @@ -397,8 +397,8 @@ } kfree(convert_buf); - gpiod_set_value(par->CS0, 1); - gpiod_set_value(par->CS1, 1); + gpiod_set_value(par->CS0, 0); + gpiod_set_value(par->CS1, 0); return ret; } @@ -419,10 +419,10 @@ for (i = 0; i < 8; ++i) gpiod_set_value(par->gpio.db[i], data & (1 << i)); /* set E */ - gpiod_set_value(par->EPIN, 1); + gpiod_set_value(par->EPIN, 0); udelay(5); /* unset E - write */ - gpiod_set_value(par->EPIN, 0); + gpiod_set_value(par->EPIN, 1); udelay(1); } only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/fbtft/fb_bd663474.c +++ linux-azure-5.4.0/drivers/staging/fbtft/fb_bd663474.c @@ -12,7 +12,6 @@ #include #include #include -#include #include #include "fbtft.h" @@ -24,9 +23,6 @@ static int init_display(struct fbtft_par *par) { - if (par->gpio.cs) - gpiod_set_value(par->gpio.cs, 0); /* Activate chip */ - par->fbtftops.reset(par); /* Initialization sequence from Lib_UTFT */ only in patch2: unchanged: --- linux-azure-5.4.0.orig/drivers/staging/fbtft/fb_ili9163.c +++ linux-azure-5.4.0/drivers/staging/fbtft/fb_ili9163.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include